diff options
author | Linus Walleij <[email protected]> | 2019-12-17 22:05:04 +0100 |
---|---|---|
committer | Stephen Boyd <[email protected]> | 2020-01-04 23:27:15 -0800 |
commit | 248fdcc77a35dfe66f2f8771017e71385527ceff (patch) | |
tree | 189a65bd5cc29147d60db9ccb45469e7746ea539 | |
parent | e42617b825f8073569da76dc4510bfa019b1c35a (diff) |
clk: ux500: Fix up the SGA clock for some variants
Some of the special PRCMU firmware variants were not
properly detected in the Ux500 clock driver, resulting
in the wrong clock for the SGA.
Cc: Ulf Hansson <[email protected]>
Cc: Stephan Gerhold <[email protected]>
Signed-off-by: Linus Walleij <[email protected]>
Link: https://lkml.kernel.org/r/[email protected]
Acked-by: Ulf Hansson <[email protected]>
Reviewed-by: Stephan Gerhold <[email protected]>
Signed-off-by: Stephen Boyd <[email protected]>
-rw-r--r-- | drivers/clk/ux500/u8500_of_clk.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/clk/ux500/u8500_of_clk.c b/drivers/clk/ux500/u8500_of_clk.c index 72ed97c6662a..0aedd42fad52 100644 --- a/drivers/clk/ux500/u8500_of_clk.c +++ b/drivers/clk/ux500/u8500_of_clk.c @@ -99,8 +99,10 @@ static void u8500_clk_init(struct device_node *np) if (fw_version != NULL) { switch (fw_version->project) { case PRCMU_FW_PROJECT_U8500_C2: + case PRCMU_FW_PROJECT_U8500_MBL: case PRCMU_FW_PROJECT_U8520: case PRCMU_FW_PROJECT_U8420: + case PRCMU_FW_PROJECT_U8420_SYSCLK: sgaclk_parent = "soc0_pll"; break; default: |