Home
last modified time | relevance | path

Searched refs:pllvals (Results 1 – 5 of 5) sorted by relevance

/Linux-v5.4/drivers/gpu/drm/nouveau/dispnv04/
Dhw.c132 uint32_t pll2, struct nvkm_pll_vals *pllvals) in nouveau_hw_decode_pll() argument
139 pllvals->log2P = (pll1 >> 16) & 0x7; in nouveau_hw_decode_pll()
140 pllvals->N2 = pllvals->M2 = 1; in nouveau_hw_decode_pll()
143 pllvals->NM1 = pll2 & 0xffff; in nouveau_hw_decode_pll()
146 pllvals->NM2 = pll2 >> 16; in nouveau_hw_decode_pll()
148 pllvals->NM1 = pll1 & 0xffff; in nouveau_hw_decode_pll()
150 pllvals->NM2 = pll2 & 0xffff; in nouveau_hw_decode_pll()
152 pllvals->M1 &= 0xf; /* only 4 bits */ in nouveau_hw_decode_pll()
154 pllvals->M2 = (pll1 >> 4) & 0x7; in nouveau_hw_decode_pll()
155 pllvals->N2 = ((pll1 >> 21) & 0x18) | in nouveau_hw_decode_pll()
[all …]
Dhw.h44 struct nvkm_pll_vals *pllvals);
45 int nouveau_hw_pllvals_to_clk(struct nvkm_pll_vals *pllvals);
Ddisp.h40 struct nvkm_pll_vals pllvals; member
Ddfp.c603 (&nv04_display(dev)->saved_reg.crtc_reg[head].pllvals); in nv04_dfp_restore()
Dcrtc.c121 struct nvkm_pll_vals *pv = &regp->pllvals; in nv_crtc_calc_state_ext()