aboutsummaryrefslogtreecommitdiffstats
path: root/fdts
diff options
context:
space:
mode:
authorVishnu Banavath <vishnu.banavath@arm.com>2020-03-04 12:13:08 +0000
committerVishnu Banavath <vishnu.banavath@arm.com>2020-03-04 14:53:37 +0000
commitc84cbf41f4a6448646cf92055ca037875fe01bc3 (patch)
tree4c94dee554e2b24da0e1087c7c766ad4e7a2ac40 /fdts
parent6e46981f841a5477700485f78956f1ec3c1c1f48 (diff)
downloadplatform_external_arm-trusted-firmware-c84cbf41f4a6448646cf92055ca037875fe01bc3.tar.gz
platform_external_arm-trusted-firmware-c84cbf41f4a6448646cf92055ca037875fe01bc3.tar.bz2
platform_external_arm-trusted-firmware-c84cbf41f4a6448646cf92055ca037875fe01bc3.zip
fdts: a5ds: add ethernet node in devicetree
This change is to add ethernet and voltage regulator nodes into a5ds devicetree. Change-Id: If9ed67040d54e76af1813c9f99835f51f617e9df Signed-off-by: Vishnu Banavath <vishnu.banavath@arm.com>
Diffstat (limited to 'fdts')
-rw-r--r--fdts/a5ds.dts19
1 files changed, 19 insertions, 0 deletions
diff --git a/fdts/a5ds.dts b/fdts/a5ds.dts
index 31d635ac8..7334c4559 100644
--- a/fdts/a5ds.dts
+++ b/fdts/a5ds.dts
@@ -136,4 +136,23 @@
reg = <0x1a050000 0x1000>;
};
};
+ v2m_fixed_3v3: fixed-regulator-0 {
+ compatible = "regulator-fixed";
+ regulator-name = "3V3";
+ regulator-min-microvolt = <3300000>;
+ regulator-max-microvolt = <3300000>;
+ regulator-always-on;
+ };
+
+ ethernet@4020000 {
+ compatible = "smsc,lan9220", "smsc,lan9115";
+ reg = <0x40200000 0x10000>;
+ interrupt-parent = <&gic>;
+ interrupts = <0 43 0xf04>;
+ reg-io-width = <4>;
+ phy-mode = "mii";
+ smsc,irq-active-high;
+ vdd33a-supply = <&v2m_fixed_3v3>;
+ vddvario-supply = <&v2m_fixed_3v3>;
+ };
};