]> git.ipfire.org Git - thirdparty/kernel/linux.git/blame - drivers/gpu/drm/nouveau/nvkm/subdev/clk/pll.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[thirdparty/kernel/linux.git] / drivers / gpu / drm / nouveau / nvkm / subdev / clk / pll.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
7632b30e
BS
2#ifndef __NVKM_PLL_H__
3#define __NVKM_PLL_H__
4#include <core/os.h>
5struct nvkm_subdev;
6struct nvbios_pll;
70790f4f 7
7632b30e 8int nv04_pll_calc(struct nvkm_subdev *, struct nvbios_pll *, u32 freq,
70790f4f 9 int *N1, int *M1, int *N2, int *M2, int *P);
7632b30e 10int gt215_pll_calc(struct nvkm_subdev *, struct nvbios_pll *, u32 freq,
70790f4f 11 int *N, int *fN, int *M, int *P);
70790f4f 12#endif