diff options
author | Jim Liu <jim.t90615@gmail.com> | 2023-06-13 15:45:55 +0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-07-14 12:52:18 -0400 |
commit | f4e086cdf1cc7e1e8c69e5d73eec2bda151ec9a1 (patch) | |
tree | ebea9d9066984734fac609c2f7059ff3195a6695 | |
parent | 178284a9cf63095f55830f2c10983169796e7de6 (diff) |
ARM: dts: npcm8xx: fix dts node error
The SHA and OTP should under the ahb node
Signed-off-by: Jim Liu <JJLIU0@nuvoton.com>
-rw-r--r-- | arch/arm/dts/nuvoton-npcm8xx-u-boot.dtsi | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/arch/arm/dts/nuvoton-npcm8xx-u-boot.dtsi b/arch/arm/dts/nuvoton-npcm8xx-u-boot.dtsi index be2ad0cf6cd..e49e564b790 100644 --- a/arch/arm/dts/nuvoton-npcm8xx-u-boot.dtsi +++ b/arch/arm/dts/nuvoton-npcm8xx-u-boot.dtsi @@ -289,6 +289,23 @@ status = "disable"; }; + aes: aes@f0858000 { + compatible = "nuvoton,npcm845-aes"; + reg = <0x0 0xf0858000 0x0 0x1000>, + <0x0 0xf0851000 0x0 0x1000>; + status = "disabled"; + clocks = <&clk NPCM8XX_CLK_AHB>; + clock-names = "clk_ahb"; + }; + + sha:sha@f085a000 { + compatible = "nuvoton,npcm845-sha"; + reg = <0x0 0xf085a000 0x0 0x1000>; + status = "disabled"; + clocks = <&clk NPCM8XX_CLK_AHB>; + clock-names = "clk_ahb"; + }; + apb { serial0: serial@0 { compatible = "nuvoton,npcm845-uart"; @@ -417,22 +434,6 @@ status = "disabled"; }; - aes: aes@f0858000 { - compatible = "nuvoton,npcm845-aes"; - reg = <0x0 0xf0858000 0x0 0x1000>, - <0x0 0xf0851000 0x0 0x1000>; - status = "disabled"; - clocks = <&clk NPCM8XX_CLK_AHB>; - clock-names = "clk_ahb"; - }; - - sha:sha@f085a000 { - compatible = "nuvoton,npcm845-sha"; - reg = <0x0 0xf085a000 0x0 0x1000>; - status = "disabled"; - clocks = <&clk NPCM8XX_CLK_AHB>; - clock-names = "clk_ahb"; - }; }; }; pinctrl: pinctrl@f0800000 { |