Thread (13 messages) 13 messages, 3 authors, 2016-01-12

[PATCH 1/5] arm64: dts: apq8016-sbc: add regulators support

From: arnd@arndb.de (Arnd Bergmann)
Date: 2016-01-12 14:00:34
Also in: linux-arm-msm, linux-devicetree, lkml

On Tuesday 12 January 2016 13:46:32 Srinivas Kandagatla wrote:
        };
 
+       smd {
+               rpm {
+                       rpm-requests {
+                               pm8916-regulators {
+
+                                       vdd_l1_l2_l3-supply = <&pm8916_s3>;
+                                       vdd_l5-supply = <&pm8916_s3>;
+                                       vdd_l4_l5_l6-supply = <&pm8916_s4>;
+                                       vdd_l7-supply = <&pm8916_s4>;
+
If you're nested this deeply, you should consider using labels, e.g.

/ {
       ...

       smd {
               rpm {
                      rpm-requests {
                               regulators: pm8916-regulators {

				};
			};
		};
	};

	...
};


&regulators {
        vdd_l1_l2_l3-supply = <&pm8916_s3>;
        vdd_l5-supply = <&pm8916_s3>;
        vdd_l4_l5_l6-supply = <&pm8916_s4>;
        vdd_l7-supply = <&pm8916_s4>;

	s1 {
                 regulator-min-microvolt = <375000>;
                 regulator-max-microvolt = <1562000>;
	};

        s3 {
	        regulator-min-microvolt = <375000>;
	        regulator-max-microvolt = <1562000>;
        };

	...
};

btw, it seems odd to me that all those nodes under 'smd'
have names but no addresses.

	Arnd
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help