diff options
author | Michael Walle <michael@walle.cc> | 2021-10-13 18:14:04 +0200 |
---|---|---|
committer | Priyanka Jain <priyanka.jain@nxp.com> | 2021-11-09 17:18:23 +0530 |
commit | 9b38ba584670325a255d7f227a78e323d80c647b (patch) | |
tree | 7e04801bc0ab0b4619d2a7fae41a8885b614d85e /arch | |
parent | cd80d5d924cf070b1ae35a43ed78d1054eedef00 (diff) | |
download | u-boot-9b38ba584670325a255d7f227a78e323d80c647b.zip u-boot-9b38ba584670325a255d7f227a78e323d80c647b.tar.gz u-boot-9b38ba584670325a255d7f227a78e323d80c647b.tar.bz2 |
arm: dts: ls1028a: move the clockgen node into /soc
Populate the /soc node with the first device node.
Signed-off-by: Michael Walle <michael@walle.cc>
Reviewed-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/dts/fsl-ls1028a.dtsi | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/arch/arm/dts/fsl-ls1028a.dtsi b/arch/arm/dts/fsl-ls1028a.dtsi index 1f562cf..54f9701 100644 --- a/arch/arm/dts/fsl-ls1028a.dtsi +++ b/arch/arm/dts/fsl-ls1028a.dtsi @@ -21,13 +21,6 @@ clock-output-names = "sysclk"; }; - clockgen: clocking@1300000 { - compatible = "fsl,ls1028a-clockgen"; - reg = <0x0 0x1300000 0x0 0xa0000>; - #clock-cells = <2>; - clocks = <&sysclk>; - }; - gic: interrupt-controller@6000000 { compatible = "arm,gic-v3"; reg = <0x0 0x06000000 0 0x10000>, /* GIC Dist */ @@ -484,5 +477,12 @@ #address-cells = <2>; #size-cells = <2>; ranges; + + clockgen: clocking@1300000 { + compatible = "fsl,ls1028a-clockgen"; + reg = <0x0 0x1300000 0x0 0xa0000>; + #clock-cells = <2>; + clocks = <&sysclk>; + }; }; }; |