pll.h revision 1.1
1/*	$NetBSD: pll.h,v 1.1 2018/08/27 01:34:56 riastradh Exp $	*/
2
3#ifndef __NVKM_PLL_H__
4#define __NVKM_PLL_H__
5#include <core/os.h>
6struct nvkm_subdev;
7struct nvbios_pll;
8
9int nv04_pll_calc(struct nvkm_subdev *, struct nvbios_pll *, u32 freq,
10		  int *N1, int *M1, int *N2, int *M2, int *P);
11int gt215_pll_calc(struct nvkm_subdev *, struct nvbios_pll *, u32 freq,
12		  int *N, int *fN, int *M, int *P);
13#endif
14