summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorAndrey Smirnov <andrew.smirnov@gmail.com>2018-06-29 20:47:35 -0700
committerSascha Hauer <s.hauer@pengutronix.de>2018-07-02 06:44:27 +0200
commit99b1fc1f517de01f4d198b5d124f84523b704e3f (patch)
tree9cbedd2e9d975948c4efd0b1decb443867418413 /arch
parente15ee51552fa12a34b5339077145fa20b2767ee0 (diff)
downloadbarebox-99b1fc1f517de01f4d198b5d124f84523b704e3f.tar.gz
barebox-99b1fc1f517de01f4d198b5d124f84523b704e3f.tar.xz
ARM: dts: rdu1: Add nodes for RAVE SP EEPROM
Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/dts/imx51-zii-rdu1.dts28
1 files changed, 28 insertions, 0 deletions
diff --git a/arch/arm/dts/imx51-zii-rdu1.dts b/arch/arm/dts/imx51-zii-rdu1.dts
index 7984e5b32f..b0e1d02760 100644
--- a/arch/arm/dts/imx51-zii-rdu1.dts
+++ b/arch/arm/dts/imx51-zii-rdu1.dts
@@ -24,6 +24,13 @@
device-path = &spinor, "partname:barebox-environment";
};
};
+ aliases {
+ /*
+ * Aliases to match Linux kernel naming in /dev/
+ */
+ main-eeprom = &main_eeprom;
+ dds-eeprom = &dds_eeprom;
+ };
};
&ecspi1 {
@@ -50,3 +57,24 @@
};
};
};
+
+&uart3 {
+ rave-sp {
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ dds_eeprom: eeprom@a3 {
+ compatible = "zii,rave-sp-eeprom";
+ reg = <0xa3 0x4000>;
+ #address-cells = <1>;
+ #size-cells = <1>;
+ };
+
+ main_eeprom: eeprom@a4 {
+ compatible = "zii,rave-sp-eeprom";
+ reg = <0xa4 0x4000>;
+ #address-cells = <1>;
+ #size-cells = <1>;
+ };
+ };
+};