]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ARM: mvebu: Armada 385 GP: Add regulators to the SATA port
authorGregory CLEMENT <gregory.clement@free-electrons.com>
Thu, 15 Jan 2015 14:09:38 +0000 (15:09 +0100)
committerAndrew Lunn <andrew@lunn.ch>
Thu, 22 Jan 2015 00:36:14 +0000 (18:36 -0600)
Add the regulators to each SATA port.

Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
arch/arm/boot/dts/armada-388-gp.dts

index 4df22bf91683bbabfe125db3936fc6a5a5472e7e..590b383db323a75a1041080951d32dbf27e3e9fa 100644 (file)
                                status = "okay";
                                #address-cells = <1>;
                                #size-cells = <0>;
+
+                               sata0: sata-port@0 {
+                                       reg = <0>;
+                                       target-supply = <&reg_5v_sata0>;
+                               };
+
+                               sata1: sata-port@1 {
+                                       reg = <1>;
+                                       target-supply = <&reg_5v_sata1>;
+                               };
                        };
 
                        sata@e0000 {
                                status = "okay";
                                #address-cells = <1>;
                                #size-cells = <0>;
+
+                               sata2: sata-port@0 {
+                                       reg = <0>;
+                                       target-supply = <&reg_5v_sata2>;
+                               };
+
+                               sata3: sata-port@1 {
+                                       reg = <1>;
+                                       target-supply = <&reg_5v_sata3>;
+                               };
                        };
 
                        sdhci@d8000 {
                regulator-always-on;
                gpio = <&expander0 4 GPIO_ACTIVE_HIGH>;
        };
+
+       reg_sata0: pwr-sata0 {
+               compatible = "regulator-fixed";
+               regulator-name = "pwr_en_sata0";
+               enable-active-high;
+               regulator-always-on;
+
+       };
+
+       reg_5v_sata0: v5-sata0 {
+               compatible = "regulator-fixed";
+               regulator-name = "v5.0-sata0";
+               regulator-min-microvolt = <5000000>;
+               regulator-max-microvolt = <5000000>;
+               regulator-always-on;
+               vin-supply = <&reg_sata0>;
+       };
+
+       reg_12v_sata0: v12-sata0 {
+               compatible = "regulator-fixed";
+               regulator-name = "v12.0-sata0";
+               regulator-min-microvolt = <12000000>;
+               regulator-max-microvolt = <12000000>;
+               regulator-always-on;
+               vin-supply = <&reg_sata0>;
+       };
+
+       reg_sata1: pwr-sata1 {
+               regulator-name = "pwr_en_sata1";
+               compatible = "regulator-fixed";
+               regulator-min-microvolt = <12000000>;
+               regulator-max-microvolt = <12000000>;
+               enable-active-high;
+               regulator-always-on;
+               gpio = <&expander0 3 GPIO_ACTIVE_HIGH>;
+       };
+
+       reg_5v_sata1: v5-sata1 {
+               compatible = "regulator-fixed";
+               regulator-name = "v5.0-sata1";
+               regulator-min-microvolt = <5000000>;
+               regulator-max-microvolt = <5000000>;
+               regulator-always-on;
+               vin-supply = <&reg_sata1>;
+       };
+
+       reg_12v_sata1: v12-sata1 {
+               compatible = "regulator-fixed";
+               regulator-name = "v12.0-sata1";
+               regulator-min-microvolt = <12000000>;
+               regulator-max-microvolt = <12000000>;
+               regulator-always-on;
+               vin-supply = <&reg_sata1>;
+       };
+
+       reg_sata2: pwr-sata2 {
+               compatible = "regulator-fixed";
+               regulator-name = "pwr_en_sata2";
+               enable-active-high;
+               regulator-always-on;
+               gpio = <&expander0 11 GPIO_ACTIVE_HIGH>;
+       };
+
+       reg_5v_sata2: v5-sata2 {
+               compatible = "regulator-fixed";
+               regulator-name = "v5.0-sata2";
+               regulator-min-microvolt = <5000000>;
+               regulator-max-microvolt = <5000000>;
+               regulator-always-on;
+               vin-supply = <&reg_sata2>;
+       };
+
+       reg_12v_sata2: v12-sata2 {
+               compatible = "regulator-fixed";
+               regulator-name = "v12.0-sata2";
+               regulator-min-microvolt = <12000000>;
+               regulator-max-microvolt = <12000000>;
+               regulator-always-on;
+               vin-supply = <&reg_sata2>;
+       };
+
+       reg_sata3: pwr-sata3 {
+               compatible = "regulator-fixed";
+               regulator-name = "pwr_en_sata3";
+               enable-active-high;
+               regulator-always-on;
+               gpio = <&expander0 12 GPIO_ACTIVE_HIGH>;
+       };
+
+       reg_5v_sata3: v5-sata3 {
+               compatible = "regulator-fixed";
+               regulator-name = "v5.0-sata3";
+               regulator-min-microvolt = <5000000>;
+               regulator-max-microvolt = <5000000>;
+               regulator-always-on;
+               vin-supply = <&reg_sata3>;
+       };
+
+       reg_12v_sata3: v12-sata3 {
+               compatible = "regulator-fixed";
+               regulator-name = "v12.0-sata3";
+               regulator-min-microvolt = <12000000>;
+               regulator-max-microvolt = <12000000>;
+               regulator-always-on;
+               vin-supply = <&reg_sata3>;
+       };
 };
 
 &pinctrl {