summaryrefslogtreecommitdiffstats
path: root/drivers/clk/meson
diff options
context:
space:
mode:
authorNeil Armstrong2019-05-28 10:07:58 +0200
committerJerome Brunet2019-06-11 11:28:44 +0200
commiteda91833f099277998814105c77b5b12cbfab6db (patch)
tree14f34850e10c35deae120c1ccd2dc9e13c93cb9a /drivers/clk/meson
parentclk: meson: g12a: Add support for G12B CPUB clocks (diff)
downloadkernel-qcow2-linux-eda91833f099277998814105c77b5b12cbfab6db.tar.gz
kernel-qcow2-linux-eda91833f099277998814105c77b5b12cbfab6db.tar.xz
kernel-qcow2-linux-eda91833f099277998814105c77b5b12cbfab6db.zip
clk: meson: g12a: mark fclk_div3 as critical
On Amlogic Meson G12b platform, the fclk_div3 seems to be necessary for the system to operate correctly. Disabling it cause the entire system to freeze, including peripherals. Let's mark this clock as critical, fixing boot on G12b platforms. Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
Diffstat (limited to 'drivers/clk/meson')
-rw-r--r--drivers/clk/meson/g12a.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/clk/meson/g12a.c b/drivers/clk/meson/g12a.c
index 3ab83e5497a0..db1c4ed9d54e 100644
--- a/drivers/clk/meson/g12a.c
+++ b/drivers/clk/meson/g12a.c
@@ -1350,6 +1350,16 @@ static struct clk_regmap g12a_fclk_div3 = {
.ops = &clk_regmap_gate_ops,
.parent_names = (const char *[]){ "fclk_div3_div" },
.num_parents = 1,
+ /*
+ * This clock is used by the resident firmware and is required
+ * by the platform to operate correctly.
+ * Until the following condition are met, we need this clock to
+ * be marked as critical:
+ * a) Mark the clock used by a firmware resource, if possible
+ * b) CCF has a clock hand-off mechanism to make the sure the
+ * clock stays on until the proper driver comes along
+ */
+ .flags = CLK_IS_CRITICAL,
},
};