Linux Audio

Check our new training course

Loading...
v5.14.15
 1/* SPDX-License-Identifier: MIT */
 2#ifndef __NVKM_PLL_H__
 3#define __NVKM_PLL_H__
 4#include <core/os.h>
 5struct nvkm_subdev;
 6struct nvbios_pll;
 7
 8int nv04_pll_calc(struct nvkm_subdev *, struct nvbios_pll *, u32 freq,
 9		  int *N1, int *M1, int *N2, int *M2, int *P);
10int gt215_pll_calc(struct nvkm_subdev *, struct nvbios_pll *, u32 freq,
11		  int *N, int *fN, int *M, int *P);
12#endif
v4.17
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef __NVKM_PLL_H__
 3#define __NVKM_PLL_H__
 4#include <core/os.h>
 5struct nvkm_subdev;
 6struct nvbios_pll;
 7
 8int nv04_pll_calc(struct nvkm_subdev *, struct nvbios_pll *, u32 freq,
 9		  int *N1, int *M1, int *N2, int *M2, int *P);
10int gt215_pll_calc(struct nvkm_subdev *, struct nvbios_pll *, u32 freq,
11		  int *N, int *fN, int *M, int *P);
12#endif