Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: MIT */
0002 #ifndef __NVKM_PLL_H__
0003 #define __NVKM_PLL_H__
0004 #include <core/os.h>
0005 struct nvkm_subdev;
0006 struct nvbios_pll;
0007 
0008 int nv04_pll_calc(struct nvkm_subdev *, struct nvbios_pll *, u32 freq,
0009           int *N1, int *M1, int *N2, int *M2, int *P);
0010 int gt215_pll_calc(struct nvkm_subdev *, struct nvbios_pll *, u32 freq,
0011           int *N, int *fN, int *M, int *P);
0012 #endif