aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2021-11-18 09:19:39 +0100
committerStefan Roese <sr@denx.de>2021-12-19 09:50:47 +0100
commit4ee7dfba2feef4a36016cde60a04cac3c97e4d14 (patch)
treed4d5ebaf70ae133624636484be37262814858e95
parent0cbd3d8121189690130257009aa9363232c888d5 (diff)
downloadu-boot-4ee7dfba2feef4a36016cde60a04cac3c97e4d14.zip
u-boot-4ee7dfba2feef4a36016cde60a04cac3c97e4d14.tar.gz
u-boot-4ee7dfba2feef4a36016cde60a04cac3c97e4d14.tar.bz2
arm: mvebu: armada-xp-theadorable.dts: Add I2C DT nodes
Now with DM I2C support enabled we need to describe the I2C busses and devices in the DT. Signed-off-by: Stefan Roese <sr@denx.de>
-rw-r--r--arch/arm/dts/armada-xp-theadorable.dts12
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/arm/dts/armada-xp-theadorable.dts b/arch/arm/dts/armada-xp-theadorable.dts
index 6a1df87..24cc1cc 100644
--- a/arch/arm/dts/armada-xp-theadorable.dts
+++ b/arch/arm/dts/armada-xp-theadorable.dts
@@ -71,6 +71,8 @@
spi0 = &spi0;
spi1 = &spi1;
ethernet0 = &eth0;
+ i2c0 = &i2c0;
+ i2c1 = &i2c1;
};
memory {
@@ -156,6 +158,16 @@
};
};
+&i2c0 {
+ status = "okay";
+ clock-frequency = <100000>;
+};
+
+&i2c1 {
+ status = "okay";
+ clock-frequency = <100000>;
+};
+
&spi0 {
status = "okay";
u-boot,dm-pre-reloc;