Searched refs:vco1 (Results 1 – 8 of 8) sorted by relevance
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/bios/ |
D | pll.c | 250 info->vco1.min_freq = nvbios_rd32(bios, data + 0); in nvbios_pll_parse() 251 info->vco1.max_freq = nvbios_rd32(bios, data + 4); in nvbios_pll_parse() 254 info->vco1.min_inputfreq = nvbios_rd32(bios, data + 16); in nvbios_pll_parse() 256 info->vco1.max_inputfreq = INT_MAX; in nvbios_pll_parse() 265 info->vco1.min_n = 0x5; in nvbios_pll_parse() 268 info->vco1.min_n = 0x1; in nvbios_pll_parse() 271 info->vco1.max_n = 0xff; in nvbios_pll_parse() 272 info->vco1.min_m = 0x1; in nvbios_pll_parse() 273 info->vco1.max_m = 0xd; in nvbios_pll_parse() 296 info->vco1.min_freq = nvbios_rd16(bios, data + 4) * 1000; in nvbios_pll_parse() [all …]
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/clk/ |
D | pllnv04.c | 41 int minvco = info->vco1.min_freq, maxvco = info->vco1.max_freq; in getMNP_single() 42 int minM = info->vco1.min_m, maxM = info->vco1.max_m; in getMNP_single() 43 int minN = info->vco1.min_n, maxN = info->vco1.max_n; in getMNP_single() 44 int minU = info->vco1.min_inputfreq; in getMNP_single() 45 int maxU = info->vco1.max_inputfreq; in getMNP_single() 140 int minvco1 = info->vco1.min_freq, maxvco1 = info->vco1.max_freq; in getMNP_double() 142 int minU1 = info->vco1.min_inputfreq, minU2 = info->vco2.min_inputfreq; in getMNP_double() 143 int maxU1 = info->vco1.max_inputfreq, maxU2 = info->vco2.max_inputfreq; in getMNP_double() 144 int minM1 = info->vco1.min_m, maxM1 = info->vco1.max_m; in getMNP_double() 145 int minN1 = info->vco1.min_n, maxN1 = info->vco1.max_n; in getMNP_double()
|
D | pllgt215.c | 36 *P = info->vco1.max_freq / freq; in gt215_pll_calc() 42 lM = (info->refclk + info->vco1.max_inputfreq) / info->vco1.max_inputfreq; in gt215_pll_calc() 43 lM = max(lM, (int)info->vco1.min_m); in gt215_pll_calc() 44 hM = (info->refclk + info->vco1.min_inputfreq) / info->vco1.min_inputfreq; in gt215_pll_calc() 45 hM = min(hM, (int)info->vco1.max_m); in gt215_pll_calc() 62 if (N < info->vco1.min_n) in gt215_pll_calc() 64 if (N > info->vco1.max_n) in gt215_pll_calc()
|
D | nv40.c | 135 if (khz < pll.vco1.max_freq) in nv40_clk_calc_pll()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/ |
D | pll.h | 71 } vco1, vco2; member
|
/linux-4.4.14/drivers/gpu/drm/nouveau/dispnv04/ |
D | hw.c | 266 if (pv.M1 >= pll_lim.vco1.min_m && pv.M1 <= pll_lim.vco1.max_m && in nouveau_hw_fix_bad_vpll() 267 pv.N1 >= pll_lim.vco1.min_n && pv.N1 <= pll_lim.vco1.max_n && in nouveau_hw_fix_bad_vpll() 274 pv.M1 = pll_lim.vco1.max_m; in nouveau_hw_fix_bad_vpll() 275 pv.N1 = pll_lim.vco1.min_n; in nouveau_hw_fix_bad_vpll()
|
D | crtc.c | 140 if (drm->device.info.chipset > 0x40 && dot_clock <= (pll_lim.vco1.max_freq / 2)) in nv_crtc_calc_state_ext()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/fb/ |
D | ramgk104.c | 1046 ram->mode = (next->freq > fuc->refpll.vco1.max_freq) ? 2 : 1; in gk104_ram_calc_xits()
|