Commit 47b06e6e authored by Stefan Agner's avatar Stefan Agner Committed by Shawn Guo

ARM: dts: vf-colibri: add basic supply regulators

Colibri modules need to be powered using the power pins 3V3 and
AVDD_AUDIO. Add fixed regulators which represent this power rails.
Potentially, those power rails could be switched on a carrier
board. A carrier board device tree could add a own regulator with
a GPIO, and reference that regulator in a vin-supply property of
those new module level system regulators.
Signed-off-by: default avatarStefan Agner <stefan@agner.ch>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent 4f41525b
...@@ -48,14 +48,30 @@ bl: backlight { ...@@ -48,14 +48,30 @@ bl: backlight {
enable-gpios = <&gpio1 13 GPIO_ACTIVE_HIGH>; enable-gpios = <&gpio1 13 GPIO_ACTIVE_HIGH>;
status = "disabled"; status = "disabled";
}; };
reg_module_3v3: regulator-module-3v3 {
compatible = "regulator-fixed";
regulator-name = "+V3.3";
regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>;
};
reg_module_3v3_avdd: regulator-module-3v3-avdd {
compatible = "regulator-fixed";
regulator-name = "+V3.3_AVDD_AUDIO";
regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>;
};
}; };
&adc0 { &adc0 {
status = "okay"; status = "okay";
vref-supply = <&reg_module_3v3_avdd>;
}; };
&adc1 { &adc1 {
status = "okay"; status = "okay";
vref-supply = <&reg_module_3v3_avdd>;
}; };
&can0 { &can0 {
...@@ -96,6 +112,7 @@ &esdhc1 { ...@@ -96,6 +112,7 @@ &esdhc1 {
&fec1 { &fec1 {
phy-mode = "rmii"; phy-mode = "rmii";
phy-supply = <&reg_module_3v3>;
pinctrl-names = "default"; pinctrl-names = "default";
pinctrl-0 = <&pinctrl_fec1>; pinctrl-0 = <&pinctrl_fec1>;
}; };
......
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