]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ARM: shmobile: ape6evm: Fix LAN9220 VDDVARIO voltage
authorLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Tue, 16 Dec 2014 23:17:25 +0000 (01:17 +0200)
committerSimon Horman <horms+renesas@verge.net.au>
Sun, 21 Dec 2014 10:07:25 +0000 (19:07 +0900)
The LAN9220 VDDVARIO supply is powered by a 1.8V source, not 3.3V. Fix
it in the device tree.

Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
arch/arm/boot/dts/r8a73a4-ape6evm.dts

index 6b7bc1fb842e83c7f2ccdd1bf8c721a2c8932184..0d50bef0123449f5763a3fbd0f38956ae8508d74 100644 (file)
@@ -55,8 +55,16 @@ vcc_sdhi0: regulator@1 {
                enable-active-high;
        };
 
-       /* Common 3.3V rail, used by several devices on APE6EVM */
-       ape6evm_fixed_3v3: regulator@2 {
+       /* Common 1.8V and 3.3V rails, used by several devices on APE6EVM */
+       ape6evm_fixed_1v8: regulator@2 {
+               compatible = "regulator-fixed";
+               regulator-name = "1V8";
+               regulator-min-microvolt = <1800000>;
+               regulator-max-microvolt = <1800000>;
+               regulator-always-on;
+       };
+
+       ape6evm_fixed_3v3: regulator@3 {
                compatible = "regulator-fixed";
                regulator-name = "3V3";
                regulator-min-microvolt = <3300000>;
@@ -80,7 +88,7 @@ ethernet@8000000 {
                        smsc,irq-active-high;
                        smsc,irq-push-pull;
                        vdd33a-supply = <&ape6evm_fixed_3v3>;
-                       vddvario-supply = <&ape6evm_fixed_3v3>;
+                       vddvario-supply = <&ape6evm_fixed_1v8>;
                };
        };