clk: divider: fix calculation of initial best divider when rounding to closest
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Sat, 21 Feb 2015 10:40:25 +0000 (11:40 +0100)
committerMichael Turquette <mturquette@linaro.org>
Mon, 9 Mar 2015 21:20:17 +0000 (14:20 -0700)
commit9315514252a95bca37be3ef8a93f835ed91c2855
treea417b7e7a6bb53985e43927518ae2e108ee01f95
parent26bac95aa88c2b1747808c0b885abe7814c0165d
clk: divider: fix calculation of initial best divider when rounding to closest

Similar to the reasoning for the previous commit

DIV_ROUND_CLOSEST(parent_rate, rate)

might not be the best integer divisor to get a good approximation for
rate from parent_rate (given the metric for CLK_DIVIDER_ROUND_CLOSEST).

For example assume a parent rate of 1000 Hz and a target rate of 700.
Using DIV_ROUND_CLOSEST the suggested divisor gets calculated to 1
resulting in a target rate of 1000 with a delta of 300 to the desired
rate. With choosing 2 as divisor however the resulting rate is 500 which
is nearer to 700.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
Acked-by: Maxime Coquelin <maxime.coquelin@st.com>
Signed-off-by: Michael Turquette <mturquette@linaro.org>
drivers/clk/clk-divider.c