]> asedeno.scripts.mit.edu Git - linux.git/commit
clk: rockchip: Ignore frac divisor for PLL equivalence when it's unused
authorJulius Werner <jwerner@chromium.org>
Wed, 2 Nov 2016 23:43:24 +0000 (16:43 -0700)
committerHeiko Stuebner <heiko@sntech.de>
Sat, 5 Nov 2016 22:16:29 +0000 (23:16 +0100)
commitbf92384b6d729b22916ba832b4a225ca196e98ba
tree1873a84c8a466895be6a607786c7ba557ab8b34b
parent161baaea7c34e5b91174d994b82570ef0555eb1d
clk: rockchip: Ignore frac divisor for PLL equivalence when it's unused

Rockchip RK3399 PLLs can be used in two separate modes: integral and
fractional. We can select between these two modes with the unambiguously
named DSMPD bit.

During boot, we check all PLL settings to confirm that they match our
PLL table for that frequency, and reinitialize the PLLs where they
don't. The settings checked for this include the fractional divider
field that is only used in fractional mode, even if we're in integral
mode (DSMPD = 1) and that field has no effect.

This patch changes the check to only compare the fractional divider if
we're actually in fractional mode. This way, we won't reinitialize the
PLL in cases where there's absolutely no reason for that, which may
avoid glitching child clocks that should better not be glitched (e.g.
PWM regulators).

Signed-off-by: Julius Werner <jwerner@chromium.org>
[cloned the fix to the pretty similar rk3036 pll]
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
drivers/clk/rockchip/clk-pll.c