Lines Matching refs:fint
44 unsigned long fint, clkdco, clkout; in hdmi_pll_compute() local
59 fint = clkin / n; in hdmi_pll_compute()
62 min_dco = roundup(hw->clkdco_min, fint); in hdmi_pll_compute()
68 m = target_clkdco / fint; in hdmi_pll_compute()
70 clkdco = fint * m; in hdmi_pll_compute()
73 if (WARN_ON(target_clkdco - clkdco > fint)) in hdmi_pll_compute()
76 mf = (u32)div_u64(262144ull * (target_clkdco - clkdco), fint); in hdmi_pll_compute()
79 clkdco += (u32)div_u64((u64)mf * fint, 262144); in hdmi_pll_compute()
84 sd = DIV_ROUND_UP(fint * m, 250000000); in hdmi_pll_compute()
88 DSSDBG("Fint %lu, clkdco %lu, clkout %lu\n", fint, clkdco, clkout); in hdmi_pll_compute()
96 pi->fint = fint; in hdmi_pll_compute()