Home
last modified time | relevance | path

Searched refs:rounded_rate (Results 1 – 6 of 6) sorted by relevance

/openbmc/linux/drivers/gpu/drm/sun4i/
H A Dsun4i_rgb.c71 unsigned long long rounded_rate; in sun4i_rgb_mode_valid() local
123 rounded_rate = clk_round_rate(tcon->dclk, rate); in sun4i_rgb_mode_valid()
127 if (rounded_rate < lowest) in sun4i_rgb_mode_valid()
132 if (rounded_rate > highest) in sun4i_rgb_mode_valid()
H A Dsun4i_hdmi_enc.c183 long rounded_rate; in sun4i_hdmi_mode_valid() local
188 rounded_rate = clk_round_rate(hdmi->tmds_clk, rate); in sun4i_hdmi_mode_valid()
189 if (rounded_rate > 0 && in sun4i_hdmi_mode_valid()
190 max_t(unsigned long, rounded_rate, rate) - in sun4i_hdmi_mode_valid()
191 min_t(unsigned long, rounded_rate, rate) < diff) in sun4i_hdmi_mode_valid()
/openbmc/linux/drivers/gpu/drm/imx/ipuv3/
H A Dimx-tve.c248 unsigned long rounded_rate; in imx_tve_encoder_mode_set() local
260 rounded_rate = clk_get_rate(tve->clk); in imx_tve_encoder_mode_set()
261 if (rounded_rate >= rate) in imx_tve_encoder_mode_set()
263 clk_set_rate(tve->di_clk, rounded_rate / div); in imx_tve_encoder_mode_set()
/openbmc/linux/drivers/mfd/
H A Ddb8500-prcmu.c1598 long rounded_rate; in round_clock_rate() local
1618 rounded_rate = (src_rate / min(div, (u32)31)); in round_clock_rate()
1620 return rounded_rate; in round_clock_rate()
1669 long rounded_rate = 0; in round_plldsi_rate() local
1692 if (rounded_rate == 0) in round_plldsi_rate()
1693 rounded_rate = (long)d; in round_plldsi_rate()
1698 rounded_rate = (long)d; in round_plldsi_rate()
1701 return rounded_rate; in round_plldsi_rate()
1708 long rounded_rate; in round_dsiclk_rate() local
1713 rounded_rate = (src_rate / ((div > 2) ? 4 : div)); in round_dsiclk_rate()
[all …]
/openbmc/linux/drivers/clk/
H A Dclk_test.c293 long rounded_rate; in clk_test_round_set_get_rate() local
295 rounded_rate = clk_round_rate(clk, DUMMY_CLOCK_RATE_1); in clk_test_round_set_get_rate()
296 KUNIT_ASSERT_GT(test, rounded_rate, 0); in clk_test_round_set_get_rate()
297 KUNIT_EXPECT_EQ(test, rounded_rate, DUMMY_CLOCK_RATE_1); in clk_test_round_set_get_rate()
305 KUNIT_EXPECT_EQ(test, rounded_rate, set_rate); in clk_test_round_set_get_rate()
2483 long rounded_rate; in clk_mux_no_reparent_round_rate() local
2499 rounded_rate = clk_round_rate(clk, other_parent_rate); in clk_mux_no_reparent_round_rate()
2500 KUNIT_ASSERT_GT(test, rounded_rate, 0); in clk_mux_no_reparent_round_rate()
2501 KUNIT_EXPECT_EQ(test, rounded_rate, parent_rate); in clk_mux_no_reparent_round_rate()
/openbmc/u-boot/arch/arm/mach-tegra/tegra124/
H A Dclock.c1067 u32 cf, vco, rounded_rate = frequency; in clock_set_display_rate() local
1123 rounded_rate = (ref / best_m * best_n) >> best_p; in clock_set_display_rate()
1127 __func__, rounded_rate, ref, best_m, best_n, best_p, cpcon); in clock_set_display_rate()
1134 return rounded_rate; in clock_set_display_rate()