/linux-6.3-rc2/drivers/gpu/drm/amd/amdgpu/ |
A D | amdgpu_pll.c | 166 unsigned vco_min, vco_max; in amdgpu_pll_compute() local 170 vco_max = pll->lcd_pll_out_max; in amdgpu_pll_compute() 173 vco_max = pll->pll_out_max; in amdgpu_pll_compute() 178 vco_max *= 10; in amdgpu_pll_compute() 187 post_div_max = vco_max / target_clock; in amdgpu_pll_compute() 188 if ((target_clock * post_div_max) > vco_max) in amdgpu_pll_compute()
|
A D | si.c | 1715 unsigned vco_min, unsigned vco_max, in si_calc_upll_dividers() argument 1730 for (vco_freq = vco_min; vco_freq <= vco_max; vco_freq += 100) { in si_calc_upll_dividers()
|
/linux-6.3-rc2/drivers/clk/versatile/ |
A D | clk-versatile.c | 24 .vco_max = ICST525_VCO_MAX_5V, 41 .vco_max = ICST307_VCO_MAX,
|
A D | clk-icst.c | 411 .vco_max = ICST525_VCO_MAX_5V, 422 .vco_max = ICST307_VCO_MAX, 437 .vco_max = ICST525_VCO_MAX_5V, 455 .vco_max = ICST525_VCO_MAX_5V, 469 .vco_max = ICST525_VCO_MAX_5V,
|
A D | clk-impd1.c | 28 .vco_max = ICST525_VCO_MAX_3V, 46 .vco_max = ICST525_VCO_MAX_3V,
|
A D | icst.h | 14 unsigned long vco_max; /* inclusive */ member
|
A D | icst.c | 60 if (f > p->vco_min && f <= p->vco_max) in icst_hz_to_vco()
|
/linux-6.3-rc2/drivers/clk/tegra/ |
A D | clk-tegra124.c | 187 .vco_max = 3000000000UL, 221 .vco_max = 1400000000, 275 .vco_max = 1200000000, 297 .vco_max = 1200000000, 356 .vco_max = 1200000000, 419 .vco_max = 1066000000, 515 .vco_max = 600000000, 552 .vco_max = 700000000, 581 .vco_max = 700000000, 626 .vco_max = 1000000000, [all …]
|
A D | clk-tegra114.c | 183 .vco_max = 1400000000, 234 .vco_max = 1200000000, 256 .vco_max = 1200000000, 305 .vco_max = 1066000000, 345 .vco_max = 700000000, 375 .vco_max = 700000000, 411 .vco_max = 1000000000, 429 .vco_max = 1000000000, 471 .vco_max = 960000000, 500 .vco_max = 2400000000U, [all …]
|
A D | clk-tegra20.c | 284 .vco_max = 1400000000, 300 .vco_max = 1200000000, 316 .vco_max = 1400000000, 334 .vco_max = 1400000000, 350 .vco_max = 1000000000, 372 .vco_max = 960000000, 389 .vco_max = 1200000000, 407 .vco_max = 0,
|
A D | clk-tegra30.c | 359 .vco_max = 1400000000, 388 .vco_max = 1200000000, 409 .vco_max = 1400000000, 427 .vco_max = 1400000000, 444 .vco_max = 1000000000, 461 .vco_max = 1000000000, 478 .vco_max = 960000000, 496 .vco_max = 1700000000, 515 .vco_max = 2400000000U,
|
A D | clk-tegra210.c | 1710 .vco_max = 1200000000, 1749 .vco_max = 1200000000, 1779 .vco_max = 1200000000, 1844 .vco_max = 1080000000, 1898 .vco_max = 1866000000, 1925 .vco_max = 1866000000, 2007 .vco_max = 700000000, 2046 .vco_max = 700000000, 2069 .vco_max = 1200000000, 2119 .vco_max = 1000000000, [all …]
|
A D | clk.h | 306 unsigned long vco_max; member
|
A D | clk-pll.c | 600 cfg->output_rate > pll->params->vco_max) { in _calc_rate() 744 if (rate >= (pll->params->vco_max >> 1)) in _update_pll_cpcon() 1243 if (cfg->n > divn_max(pll) || cfg->output_rate > pll->params->vco_max) in _calc_dynamic_ramp_rate()
|
/linux-6.3-rc2/drivers/clk/ |
A D | clk-versaclock5.c | 164 const unsigned long vco_max; member 454 rate = clamp(rate, VC5_PLL_VCO_MIN, vc5->chip_info->vco_max); in vc5_pll_round_rate() 1214 .vco_max = 3000000000UL, 1222 .vco_max = 3000000000UL, 1230 .vco_max = 3000000000UL, 1238 .vco_max = 3000000000UL, 1246 .vco_max = 2700000000UL, 1254 .vco_max = 3000000000UL, 1262 .vco_max = 3000000000UL, 1270 .vco_max = 3000000000UL,
|
/linux-6.3-rc2/drivers/gpu/drm/radeon/ |
A D | radeon_display.c | 1004 unsigned vco_min, vco_max; in radeon_compute_pll_avivo() local 1008 vco_max = pll->lcd_pll_out_max; in radeon_compute_pll_avivo() 1011 vco_max = pll->pll_out_max; in radeon_compute_pll_avivo() 1016 vco_max *= 10; in radeon_compute_pll_avivo() 1025 post_div_max = vco_max / target_clock; in radeon_compute_pll_avivo() 1026 if ((target_clock * post_div_max) > vco_max) in radeon_compute_pll_avivo()
|
A D | radeon_uvd.c | 951 unsigned vco_min, unsigned vco_max, in radeon_uvd_calc_upll_dividers() argument 966 for (vco_freq = vco_min; vco_freq <= vco_max; vco_freq += 100) { in radeon_uvd_calc_upll_dividers()
|
A D | radeon.h | 1732 unsigned vco_min, unsigned vco_max,
|
/linux-6.3-rc2/drivers/media/tuners/ |
A D | r820t.c | 546 u32 vco_max = vco_min * 2; in r820t_set_pll() local 597 ((freq * mix_div) < vco_max)) { in r820t_set_pll()
|