Lines Matching refs:fint
42 unsigned long fint, clkdco, clkout; in hdmi_pll_compute() local
57 fint = clkin / n; in hdmi_pll_compute()
60 min_dco = roundup(hw->clkdco_min, fint); in hdmi_pll_compute()
66 m = target_clkdco / fint; in hdmi_pll_compute()
68 clkdco = fint * m; in hdmi_pll_compute()
71 if (WARN_ON(target_clkdco - clkdco > fint)) in hdmi_pll_compute()
74 mf = (u32)div_u64(262144ull * (target_clkdco - clkdco), fint); in hdmi_pll_compute()
77 clkdco += (u32)div_u64((u64)mf * fint, 262144); in hdmi_pll_compute()
82 sd = DIV_ROUND_UP(fint * m, 250000000); in hdmi_pll_compute()
86 DSSDBG("Fint %lu, clkdco %lu, clkout %lu\n", fint, clkdco, clkout); in hdmi_pll_compute()
94 pi->fint = fint; in hdmi_pll_compute()