summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Anderson <seanga2@gmail.com>2021-04-09 05:13:12 +0300
committerLeo Yu-Chi Liang <ycliang@andestech.com>2021-05-14 11:20:49 +0300
commit2111f4e8bf09386c849a6273c3b21b6eb1a3fc3c (patch)
treea7d991294006647a1702ba8c62b02987c6405735
parent2d64e3829b19fd5c8337296d6410551e4a753a3a (diff)
downloadu-boot-2111f4e8bf09386c849a6273c3b21b6eb1a3fc3c.tar.xz
riscv: k210: Use AI as the parent clock of aisram, not PLL1
Testing showed that disabling AI while leaving PLL1 enabled disabled the aisram. This suggests that AI is a more appropriate clock for that ram bank. Signed-off-by: Sean Anderson <seanga2@gmail.com>
-rw-r--r--arch/riscv/dts/k210.dtsi2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/dts/k210.dtsi b/arch/riscv/dts/k210.dtsi
index 2032f1e5c2..75e101530b 100644
--- a/arch/riscv/dts/k210.dtsi
+++ b/arch/riscv/dts/k210.dtsi
@@ -89,7 +89,7 @@
reg-names = "sram0", "sram1", "aisram";
clocks = <&sysclk K210_CLK_SRAM0>,
<&sysclk K210_CLK_SRAM1>,
- <&sysclk K210_CLK_PLL1>;
+ <&sysclk K210_CLK_AI>;
clock-names = "sram0", "sram1", "aisram";
u-boot,dm-pre-reloc;
};