pll.h 344 B

1234567891011
  1. #ifndef __NVKM_PLL_H__
  2. #define __NVKM_PLL_H__
  3. #include <core/os.h>
  4. struct nvkm_subdev;
  5. struct nvbios_pll;
  6. int nv04_pll_calc(struct nvkm_subdev *, struct nvbios_pll *, u32 freq,
  7. int *N1, int *M1, int *N2, int *M2, int *P);
  8. int gt215_pll_calc(struct nvkm_subdev *, struct nvbios_pll *, u32 freq,
  9. int *N, int *fN, int *M, int *P);
  10. #endif