* [PATCH v3 1/3] ARM: dts: vf-colibri: remove regulator container node
@ 2016-02-17 23:40 Stefan Agner
2016-02-17 23:40 ` [PATCH v3 2/3] ARM: dts: vf-colibri: add basic supply regulators Stefan Agner
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Stefan Agner @ 2016-02-17 23:40 UTC (permalink / raw)
To: shawnguo, kernel
Cc: devicetree, linux-arm-kernel, linux-kernel, marcel, Stefan Agner
Drop the fake simple-bus container 'regulators' and put the
regulators directly under the root node. This also makes the
artificial 'reg' properties superfluous. While at it, remove
the unnecessary regulator-always-on property and name the
regulators according to schematics.
Signed-off-by: Stefan Agner <stefan@agner.ch>
---
Changes since v2:
- remove regulator-always-on
Changes since v1:
- rename regulators according to schematics
- drop sys prefix
arch/arm/boot/dts/vf-colibri-eval-v3.dtsi | 42 ++++++++++++-------------------
1 file changed, 16 insertions(+), 26 deletions(-)
diff --git a/arch/arm/boot/dts/vf-colibri-eval-v3.dtsi b/arch/arm/boot/dts/vf-colibri-eval-v3.dtsi
index b494673..291e939 100644
--- a/arch/arm/boot/dts/vf-colibri-eval-v3.dtsi
+++ b/arch/arm/boot/dts/vf-colibri-eval-v3.dtsi
@@ -50,32 +50,22 @@
clock-frequency = <16000000>;
};
- regulators {
- compatible = "simple-bus";
- #address-cells = <1>;
- #size-cells = <0>;
-
- sys_5v0_reg: regulator@0 {
- compatible = "regulator-fixed";
- reg = <0>;
- regulator-name = "5v0";
- regulator-min-microvolt = <5000000>;
- regulator-max-microvolt = <5000000>;
- regulator-always-on;
- };
+ reg_5v0: regulator-5v0 {
+ compatible = "regulator-fixed";
+ regulator-name = "5V";
+ regulator-min-microvolt = <5000000>;
+ regulator-max-microvolt = <5000000>;
+ };
- /* USBH_PEN */
- usbh_vbus_reg: regulator@1 {
- compatible = "regulator-fixed";
- pinctrl-names = "default";
- pinctrl-0 = <&pinctrl_usbh1_reg>;
- reg = <1>;
- regulator-name = "usbh_vbus";
- regulator-min-microvolt = <5000000>;
- regulator-max-microvolt = <5000000>;
- gpio = <&gpio2 19 GPIO_ACTIVE_LOW>;
- vin-supply = <&sys_5v0_reg>;
- };
+ reg_usbh_vbus: regulator-usbh-vbus {
+ compatible = "regulator-fixed";
+ pinctrl-names = "default";
+ pinctrl-0 = <&pinctrl_usbh1_reg>;
+ regulator-name = "VCC_USB[1-4]";
+ regulator-min-microvolt = <5000000>;
+ regulator-max-microvolt = <5000000>;
+ gpio = <&gpio2 19 GPIO_ACTIVE_LOW>; /* USBH_PEN resp. USBH_P_EN */
+ vin-supply = <®_5v0>;
};
};
@@ -145,7 +135,7 @@
};
&usbh1 {
- vbus-supply = <&usbh_vbus_reg>;
+ vbus-supply = <®_usbh_vbus>;
};
&iomuxc {
--
2.7.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v3 2/3] ARM: dts: vf-colibri: add basic supply regulators
2016-02-17 23:40 [PATCH v3 1/3] ARM: dts: vf-colibri: remove regulator container node Stefan Agner
@ 2016-02-17 23:40 ` Stefan Agner
2016-02-17 23:41 ` [PATCH v3 3/3] ARM: dts: vf-colibri: add carrier boards 3.3V supply Stefan Agner
[not found] ` <1455752460-2770-1-git-send-email-stefan-XLVq0VzYD2Y@public.gmane.org>
2 siblings, 0 replies; 4+ messages in thread
From: Stefan Agner @ 2016-02-17 23:40 UTC (permalink / raw)
To: shawnguo, kernel
Cc: devicetree, linux-arm-kernel, linux-kernel, marcel, Stefan Agner
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: Stefan Agner <stefan@agner.ch>
---
Changes since v2:
- remove regulator-always-on
Changes since v1:
- Add module prefix to avoid namespace issue with Carrier Board regulators
- Name the regulators according to schematics
arch/arm/boot/dts/vf-colibri.dtsi | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/arch/arm/boot/dts/vf-colibri.dtsi b/arch/arm/boot/dts/vf-colibri.dtsi
index ff6f58e..ed4cfc5 100644
--- a/arch/arm/boot/dts/vf-colibri.dtsi
+++ b/arch/arm/boot/dts/vf-colibri.dtsi
@@ -48,14 +48,30 @@
enable-gpios = <&gpio1 13 GPIO_ACTIVE_HIGH>;
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 {
status = "okay";
+ vref-supply = <®_module_3v3_avdd>;
};
&adc1 {
status = "okay";
+ vref-supply = <®_module_3v3_avdd>;
};
&can0 {
@@ -96,6 +112,7 @@
&fec1 {
phy-mode = "rmii";
+ phy-supply = <®_module_3v3>;
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_fec1>;
};
--
2.7.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v3 3/3] ARM: dts: vf-colibri: add carrier boards 3.3V supply
2016-02-17 23:40 [PATCH v3 1/3] ARM: dts: vf-colibri: remove regulator container node Stefan Agner
2016-02-17 23:40 ` [PATCH v3 2/3] ARM: dts: vf-colibri: add basic supply regulators Stefan Agner
@ 2016-02-17 23:41 ` Stefan Agner
[not found] ` <1455752460-2770-1-git-send-email-stefan-XLVq0VzYD2Y@public.gmane.org>
2 siblings, 0 replies; 4+ messages in thread
From: Stefan Agner @ 2016-02-17 23:41 UTC (permalink / raw)
To: shawnguo, kernel
Cc: devicetree, linux-arm-kernel, linux-kernel, marcel, Stefan Agner
Add the carrier boards 3.3V supply as fixed regulator. This allows
to specify the power supply for nodes like backlight.
Signed-off-by: Stefan Agner <stefan@agner.ch>
---
Changes since v2:
- remove regulator-always-on
arch/arm/boot/dts/vf-colibri-eval-v3.dtsi | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/arch/arm/boot/dts/vf-colibri-eval-v3.dtsi b/arch/arm/boot/dts/vf-colibri-eval-v3.dtsi
index 291e939..4d8b7f6 100644
--- a/arch/arm/boot/dts/vf-colibri-eval-v3.dtsi
+++ b/arch/arm/boot/dts/vf-colibri-eval-v3.dtsi
@@ -50,6 +50,13 @@
clock-frequency = <16000000>;
};
+ reg_3v3: regulator-3v3 {
+ compatible = "regulator-fixed";
+ regulator-name = "3.3V";
+ regulator-min-microvolt = <3300000>;
+ regulator-max-microvolt = <3300000>;
+ };
+
reg_5v0: regulator-5v0 {
compatible = "regulator-fixed";
regulator-name = "5V";
@@ -72,6 +79,7 @@
&bl {
brightness-levels = <0 4 8 16 32 64 128 255>;
default-brightness-level = <6>;
+ power-supply = <®_3v3>;
status = "okay";
};
@@ -122,6 +130,10 @@
status = "okay";
};
+®_module_3v3 {
+ vin-supply = <®_3v3>;
+};
+
&uart0 {
status = "okay";
};
--
2.7.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v3 1/3] ARM: dts: vf-colibri: remove regulator container node
[not found] ` <1455752460-2770-1-git-send-email-stefan-XLVq0VzYD2Y@public.gmane.org>
@ 2016-02-18 14:23 ` Shawn Guo
0 siblings, 0 replies; 4+ messages in thread
From: Shawn Guo @ 2016-02-18 14:23 UTC (permalink / raw)
To: Stefan Agner
Cc: kernel-bIcnvbaLZ9MEGnE8C9+IrQ, devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
marcel-mitwqZ+T+m9Wk0Htik3J/w
On Wed, Feb 17, 2016 at 03:40:58PM -0800, Stefan Agner wrote:
> Drop the fake simple-bus container 'regulators' and put the
> regulators directly under the root node. This also makes the
> artificial 'reg' properties superfluous. While at it, remove
> the unnecessary regulator-always-on property and name the
> regulators according to schematics.
>
> Signed-off-by: Stefan Agner <stefan-XLVq0VzYD2Y@public.gmane.org>
> ---
> Changes since v2:
> - remove regulator-always-on
>
> Changes since v1:
> - rename regulators according to schematics
> - drop sys prefix
Okay. Replaced v1 with v3.
Shawn
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-02-18 14:23 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-17 23:40 [PATCH v3 1/3] ARM: dts: vf-colibri: remove regulator container node Stefan Agner
2016-02-17 23:40 ` [PATCH v3 2/3] ARM: dts: vf-colibri: add basic supply regulators Stefan Agner
2016-02-17 23:41 ` [PATCH v3 3/3] ARM: dts: vf-colibri: add carrier boards 3.3V supply Stefan Agner
[not found] ` <1455752460-2770-1-git-send-email-stefan-XLVq0VzYD2Y@public.gmane.org>
2016-02-18 14:23 ` [PATCH v3 1/3] ARM: dts: vf-colibri: remove regulator container node Shawn Guo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).