Commit 087a1d8b authored by Martin Blumenstingl's avatar Martin Blumenstingl Committed by Kevin Hilman

ARM: dts: meson8b: ec100: add the VDDEE regulator

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: default avatarMartin Blumenstingl <martin.blumenstingl@googlemail.com>
Signed-off-by: default avatarKevin Hilman <khilman@baylibre.com>
parent ea241bdf
...@@ -219,6 +219,27 @@ vcc_rtc: regulator-vcc-rtc { ...@@ -219,6 +219,27 @@ vcc_rtc: regulator-vcc-rtc {
*/ */
vin-supply = <&vcc_3v3>; vin-supply = <&vcc_3v3>;
}; };
vddee: regulator-vddee {
/*
* Silergy SY8089AAC-GP 2A continuous, 3A peak, 1MHz
* Synchronous Step Down Regulator. Also called VDDAO
* in a part of the schematics.
*/
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 { &cpu0 {
...@@ -269,6 +290,10 @@ rt5640: codec@1c { ...@@ -269,6 +290,10 @@ rt5640: codec@1c {
}; };
}; };
&mali {
mali-supply = <&vddee>;
};
&saradc { &saradc {
status = "okay"; status = "okay";
vref-supply = <&vcc_1v8>; vref-supply = <&vcc_1v8>;
...@@ -350,10 +375,10 @@ &gpio { ...@@ -350,10 +375,10 @@ &gpio {
&pwm_cd { &pwm_cd {
status = "okay"; status = "okay";
pinctrl-0 = <&pwm_c1_pins>; pinctrl-0 = <&pwm_c1_pins>, <&pwm_d_pins>;
pinctrl-names = "default"; pinctrl-names = "default";
clocks = <&clkc CLKID_XTAL>; clocks = <&clkc CLKID_XTAL>, <&clkc CLKID_XTAL>;
clock-names = "clkin0"; clock-names = "clkin0", "clkin1";
}; };
&rtc { &rtc {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment