Home
last modified time | relevance | path

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

/linux-6.1.9/drivers/gpu/drm/sun4i/
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()
Dsun4i_hdmi_enc.c189 long rounded_rate; in sun4i_hdmi_mode_valid() local
194 rounded_rate = clk_round_rate(hdmi->tmds_clk, rate); in sun4i_hdmi_mode_valid()
195 if (rounded_rate > 0 && in sun4i_hdmi_mode_valid()
196 max_t(unsigned long, rounded_rate, rate) - in sun4i_hdmi_mode_valid()
197 min_t(unsigned long, rounded_rate, rate) < diff) in sun4i_hdmi_mode_valid()
/linux-6.1.9/drivers/gpu/drm/imx/
Dimx-tve.c249 unsigned long rounded_rate; in imx_tve_encoder_mode_set() local
261 rounded_rate = clk_get_rate(tve->clk); in imx_tve_encoder_mode_set()
262 if (rounded_rate >= rate) in imx_tve_encoder_mode_set()
264 clk_set_rate(tve->di_clk, rounded_rate / div); in imx_tve_encoder_mode_set()
/linux-6.1.9/drivers/mfd/
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 …]
/linux-6.1.9/drivers/clk/
Dclk_test.c269 unsigned long rounded_rate, set_rate; in clk_test_round_set_get_rate() local
271 rounded_rate = clk_round_rate(clk, DUMMY_CLOCK_RATE_1); in clk_test_round_set_get_rate()
272 KUNIT_ASSERT_GT(test, rounded_rate, 0); in clk_test_round_set_get_rate()
273 KUNIT_EXPECT_EQ(test, rounded_rate, DUMMY_CLOCK_RATE_1); in clk_test_round_set_get_rate()
281 KUNIT_EXPECT_EQ(test, rounded_rate, set_rate); in clk_test_round_set_get_rate()