ARM: mvebu: helios4 dts changes to enable SPI
authorDennis Gilmore <dennis@ausil.us>
Wed, 9 Dec 2020 03:07:37 +0000 (21:07 -0600)
committerStefan Roese <sr@denx.de>
Wed, 27 Jan 2021 06:25:39 +0000 (07:25 +0100)
Move all aliases defintions into the main dts file
Add u-boot definiton to i2c0 based on clearfog
set spi1 status to okay

Signed-off-by: Dennis Gilmore <dennis@ausil.us>
arch/arm/dts/armada-388-helios4-u-boot.dtsi
arch/arm/dts/armada-388-helios4.dts

index 0753889..1047c1a 100644 (file)
@@ -1,13 +1,5 @@
 // SPDX-License-Identifier: GPL-2.0+
 
-/ {
-       aliases {
-               i2c0 = &i2c0;
-               i2c1 = &i2c1;
-               spi1 = &spi1;
-       };
-};
-
 &eth0 {
        phy-reset-gpios = <&gpio0 19 GPIO_ACTIVE_LOW>;
 };
@@ -20,7 +12,6 @@
 };
 
 &w25q32 {
-       status = "okay";
        u-boot,dm-spl;
 };
 
 };
 
 &sdhci {
-       u-boot,dm-spl;
+       u-boot,dm-spl;
+};
+
+&i2c0 {
+       u-boot,dm-spl;
+
+       eeprom@52 {
+               u-boot,dm-spl;
+       };
+
+       eeprom@53 {
+               u-boot,dm-spl;
+       };
 };
index fb49df2..cbc296a 100644 (file)
        };
 
        aliases {
-               /* So that mvebu u-boot can update the MAC addresses */
+               /* So that mvebu u-boot can update the MAC address */
                ethernet1 = &eth0;
+               spi1 = &spi1;
+               i2c0 = &i2c0;
+               i2c1 = &i2c1;
        };
 
+
        chosen {
                stdout-path = "serial0:115200n8";
        };
                };
        };
 };
+
+&w25q32 {
+       status = "okay";
+};
+
+&spi1 {
+       status = "okay";
+};