aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/boot
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2016-09-08 04:48:38 -0400
committerLinus Walleij <linus.walleij@linaro.org>2016-09-09 08:51:27 -0400
commitc4ad72560df11961d3e57fb0fadfe88a9863c9ad (patch)
tree3f0cec5bd93a6010d834d3062dac75213decd0dc /arch/arm/boot
parent29b4817d4018df78086157ea3a55c1d9424a7cfc (diff)
ARM: dts: fix RealView EB SMSC ethernet version
The ethernet version in the earlier RealView EB variants is LAN91C111 and not LAN9118 according to ARM DUI 0303E "RealView Emulation Baseboard User Guide" page 3-57. Make sure that this is used for the base variant of the board. As the DT bindings for LAN91C111 does not specify any power supplies, these need to be deleted from the DTS file. Fixes: 2440d29d2ae2 ("ARM: dts: realview: support all the RealView EB board variants") Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'arch/arm/boot')
-rw-r--r--arch/arm/boot/dts/arm-realview-eb.dtsi23
1 files changed, 7 insertions, 16 deletions
diff --git a/arch/arm/boot/dts/arm-realview-eb.dtsi b/arch/arm/boot/dts/arm-realview-eb.dtsi
index 1c6a040218e3..e2e9599596e2 100644
--- a/arch/arm/boot/dts/arm-realview-eb.dtsi
+++ b/arch/arm/boot/dts/arm-realview-eb.dtsi
@@ -51,14 +51,6 @@
51 regulator-boot-on; 51 regulator-boot-on;
52 }; 52 };
53 53
54 veth: fixedregulator@0 {
55 compatible = "regulator-fixed";
56 regulator-name = "veth";
57 regulator-min-microvolt = <3300000>;
58 regulator-max-microvolt = <3300000>;
59 regulator-boot-on;
60 };
61
62 xtal24mhz: xtal24mhz@24M { 54 xtal24mhz: xtal24mhz@24M {
63 #clock-cells = <0>; 55 #clock-cells = <0>;
64 compatible = "fixed-clock"; 56 compatible = "fixed-clock";
@@ -134,16 +126,15 @@
134 bank-width = <4>; 126 bank-width = <4>;
135 }; 127 };
136 128
137 /* SMSC 9118 ethernet with PHY and EEPROM */ 129 /* SMSC LAN91C111 ethernet with PHY and EEPROM */
138 ethernet: ethernet@4e000000 { 130 ethernet: ethernet@4e000000 {
139 compatible = "smsc,lan9118", "smsc,lan9115"; 131 compatible = "smsc,lan91c111";
140 reg = <0x4e000000 0x10000>; 132 reg = <0x4e000000 0x10000>;
141 phy-mode = "mii"; 133 /*
142 reg-io-width = <4>; 134 * This means the adapter can be accessed with 8, 16 or
143 smsc,irq-active-high; 135 * 32 bit reads/writes.
144 smsc,irq-push-pull; 136 */
145 vdd33a-supply = <&veth>; 137 reg-io-width = <7>;
146 vddvario-supply = <&veth>;
147 }; 138 };
148 139
149 usb: usb@4f000000 { 140 usb: usb@4f000000 {