Commit a894990a authored by Alexander Syring's avatar Alexander Syring Committed by Maxime Ripard

clk: sunxi-ng: Fix missing CLK_SET_RATE_PARENT in ccu-sun4i-a10.c

When using cpufreq-dt with default govenor other than "performance"
system freezes while booting.
Adding CLK_SET_RATE_PARENT | CLK_IS_CRITICAL to clk_cpu fixes the
problem.

Tested on Cubietruck (A20).

Fixes: c84f5683f6E ("clk: sunxi-ng: Add sun4i/sun7i CCU driver")
Acked-by: default avatarChen-Yu Tsai <wens@csie.org>
Signed-off-by: default avatarAlexander Syring <alex@asyring.de>
Signed-off-by: default avatarMaxime Ripard <maxime.ripard@free-electrons.com>
parent 70641cca
...@@ -223,7 +223,7 @@ static struct ccu_mux cpu_clk = { ...@@ -223,7 +223,7 @@ static struct ccu_mux cpu_clk = {
.hw.init = CLK_HW_INIT_PARENTS("cpu", .hw.init = CLK_HW_INIT_PARENTS("cpu",
cpu_parents, cpu_parents,
&ccu_mux_ops, &ccu_mux_ops,
CLK_IS_CRITICAL), CLK_SET_RATE_PARENT | CLK_IS_CRITICAL),
} }
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment