ARM: dts: meson8b: mxq: add the VDDEE regulator
authorMartin Blumenstingl <martin.blumenstingl@googlemail.com>
Sat, 27 Jul 2019 12:12:57 +0000 (14:12 +0200)
committerKevin Hilman <khilman@baylibre.com>
Mon, 5 Aug 2019 21:38:07 +0000 (14:38 -0700)
The VDDEE regulator is basically a copy of the VCCK regulator. VDDEE
supplies for example the Mali GPU and is controlled by PWM_D instead of
PWM_C.

Add the VDDEE PWM regulator and make it the supply of the Mali GPU.

Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
arch/arm/boot/dts/meson8b-mxq.dts

index bb27b34..6e39ad5 100644 (file)
                regulator-boot-on;
                regulator-always-on;
        };
+
+       vddee: regulator-vddee {
+               compatible = "pwm-regulator";
+
+               regulator-name = "VDDEE";
+               regulator-min-microvolt = <860000>;
+               regulator-max-microvolt = <1140000>;
+
+               vin-supply = <&vcc_5v>;
+
+               pwms = <&pwm_cd 1 1148 0>;
+               pwm-dutycycle-range = <100 0>;
+
+               regulator-boot-on;
+               regulator-always-on;
+       };
 };
 
 &cpu0 {
        };
 };
 
+&mali {
+       mali-supply = <&vddee>;
+};
+
 &saradc {
        status = "okay";
        vref-supply = <&vcc_1v8>;
 
 &pwm_cd {
        status = "okay";
-       pinctrl-0 = <&pwm_c1_pins>;
+       pinctrl-0 = <&pwm_c1_pins>, <&pwm_d_pins>;
        pinctrl-names = "default";
-       clocks = <&clkc CLKID_XTAL>;
-       clock-names = "clkin0";
+       clocks = <&clkc CLKID_XTAL>, <&clkc CLKID_XTAL>;
+       clock-names = "clkin0", "clkin1";
 };
 
 &uart_AO {