* [PATCH v2 1/3] ARM: dts: vf-colibri: remove regulator container node
@ 2016-02-17 0:18 Stefan Agner
[not found] ` <1455668317-15728-1-git-send-email-stefan-XLVq0VzYD2Y@public.gmane.org>
2016-02-17 0:18 ` [PATCH v2 3/3] ARM: dts: vf-colibri: add carrier boards 3.3V supply Stefan Agner
0 siblings, 2 replies; 6+ messages in thread
From: Stefan Agner @ 2016-02-17 0:18 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, name
the regulators according to schematics.
Signed-off-by: Stefan Agner <stefan@agner.ch>
---
Changes since v1:
- Rename regulators according to schematics
- Drop sys prefix
arch/arm/boot/dts/vf-colibri-eval-v3.dtsi | 43 ++++++++++++-------------------
1 file changed, 17 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..ca061c9 100644
--- a/arch/arm/boot/dts/vf-colibri-eval-v3.dtsi
+++ b/arch/arm/boot/dts/vf-colibri-eval-v3.dtsi
@@ -50,32 +50,23 @@
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>;
+ regulator-always-on;
+ };
- /* 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 +136,7 @@
};
&usbh1 {
- vbus-supply = <&usbh_vbus_reg>;
+ vbus-supply = <®_usbh_vbus>;
};
&iomuxc {
--
2.7.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v2 2/3] ARM: dts: vf-colibri: add basic supply regulators
[not found] ` <1455668317-15728-1-git-send-email-stefan-XLVq0VzYD2Y@public.gmane.org>
@ 2016-02-17 0:18 ` Stefan Agner
[not found] ` <1455668317-15728-2-git-send-email-stefan-XLVq0VzYD2Y@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Stefan Agner @ 2016-02-17 0:18 UTC (permalink / raw)
To: shawnguo-DgEjT+Ai2ygdnm+yROfE0A, kernel-bIcnvbaLZ9MEGnE8C9+IrQ
Cc: devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
marcel-mitwqZ+T+m9Wk0Htik3J/w, 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-XLVq0VzYD2Y@public.gmane.org>
---
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 | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/arch/arm/boot/dts/vf-colibri.dtsi b/arch/arm/boot/dts/vf-colibri.dtsi
index ff6f58e..dcc73b7 100644
--- a/arch/arm/boot/dts/vf-colibri.dtsi
+++ b/arch/arm/boot/dts/vf-colibri.dtsi
@@ -48,14 +48,32 @@
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>;
+ regulator-always-on;
+ };
+
+ 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>;
+ regulator-always-on;
+ };
};
&adc0 {
status = "okay";
+ vref-supply = <®_module_3v3_avdd>;
};
&adc1 {
status = "okay";
+ vref-supply = <®_module_3v3_avdd>;
};
&can0 {
@@ -96,6 +114,7 @@
&fec1 {
phy-mode = "rmii";
+ phy-supply = <®_module_3v3>;
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_fec1>;
};
--
2.7.1
--
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 related [flat|nested] 6+ messages in thread
* [PATCH v2 3/3] ARM: dts: vf-colibri: add carrier boards 3.3V supply
2016-02-17 0:18 [PATCH v2 1/3] ARM: dts: vf-colibri: remove regulator container node Stefan Agner
[not found] ` <1455668317-15728-1-git-send-email-stefan-XLVq0VzYD2Y@public.gmane.org>
@ 2016-02-17 0:18 ` Stefan Agner
1 sibling, 0 replies; 6+ messages in thread
From: Stefan Agner @ 2016-02-17 0:18 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>
---
arch/arm/boot/dts/vf-colibri-eval-v3.dtsi | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/arch/arm/boot/dts/vf-colibri-eval-v3.dtsi b/arch/arm/boot/dts/vf-colibri-eval-v3.dtsi
index ca061c9..f9598b8 100644
--- a/arch/arm/boot/dts/vf-colibri-eval-v3.dtsi
+++ b/arch/arm/boot/dts/vf-colibri-eval-v3.dtsi
@@ -50,6 +50,14 @@
clock-frequency = <16000000>;
};
+ reg_3v3: regulator-3v3 {
+ compatible = "regulator-fixed";
+ regulator-name = "3.3V";
+ regulator-min-microvolt = <3300000>;
+ regulator-max-microvolt = <3300000>;
+ regulator-always-on;
+ };
+
reg_5v0: regulator-5v0 {
compatible = "regulator-fixed";
regulator-name = "5V";
@@ -73,6 +81,7 @@
&bl {
brightness-levels = <0 4 8 16 32 64 128 255>;
default-brightness-level = <6>;
+ power-supply = <®_3v3>;
status = "okay";
};
@@ -123,6 +132,10 @@
status = "okay";
};
+®_module_3v3 {
+ vin-supply = <®_3v3>;
+};
+
&uart0 {
status = "okay";
};
--
2.7.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v2 2/3] ARM: dts: vf-colibri: add basic supply regulators
[not found] ` <1455668317-15728-2-git-send-email-stefan-XLVq0VzYD2Y@public.gmane.org>
@ 2016-02-17 0:28 ` Fabio Estevam
[not found] ` <CAOMZO5Bb1eGSinoNkUhB_2w8mWdA+RQA0Z4geJp8B-MfGryAHw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Fabio Estevam @ 2016-02-17 0:28 UTC (permalink / raw)
To: Stefan Agner
Cc: Shawn Guo, Sascha Hauer,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
linux-kernel, Marcel Ziswiler
On Tue, Feb 16, 2016 at 10:18 PM, Stefan Agner <stefan-XLVq0VzYD2Y@public.gmane.org> wrote:
> + reg_module_3v3: regulator-module-3v3 {
> + compatible = "regulator-fixed";
> + regulator-name = "+V3.3";
> + regulator-min-microvolt = <3300000>;
> + regulator-max-microvolt = <3300000>;
> + regulator-always-on;
This 'regulator-always-on' property can be removed.
> + };
> +
> + 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>;
> + regulator-always-on;
Same here.
--
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] 6+ messages in thread
* Re: [PATCH v2 2/3] ARM: dts: vf-colibri: add basic supply regulators
[not found] ` <CAOMZO5Bb1eGSinoNkUhB_2w8mWdA+RQA0Z4geJp8B-MfGryAHw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2016-02-17 21:52 ` Stefan Agner
[not found] ` <a07b405a5c73b092eaa6422b8562b56f-XLVq0VzYD2Y@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Stefan Agner @ 2016-02-17 21:52 UTC (permalink / raw)
To: Fabio Estevam
Cc: Shawn Guo, Sascha Hauer, devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-kernel,
Marcel Ziswiler
On 2016-02-16 16:28, Fabio Estevam wrote:
> On Tue, Feb 16, 2016 at 10:18 PM, Stefan Agner <stefan-XLVq0VzYD2Y@public.gmane.org> wrote:
>
>> + reg_module_3v3: regulator-module-3v3 {
>> + compatible = "regulator-fixed";
>> + regulator-name = "+V3.3";
>> + regulator-min-microvolt = <3300000>;
>> + regulator-max-microvolt = <3300000>;
>> + regulator-always-on;
>
> This 'regulator-always-on' property can be removed.
>
>> + };
>> +
>> + 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>;
>> + regulator-always-on;
>
> Same here.
Hm, should I remove them also in Patch 1/3? It's a fixed regulator too,
hence I guess regulator-always-on is pointless there too...?
--
Stefan
--
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] 6+ messages in thread
* Re: [PATCH v2 2/3] ARM: dts: vf-colibri: add basic supply regulators
[not found] ` <a07b405a5c73b092eaa6422b8562b56f-XLVq0VzYD2Y@public.gmane.org>
@ 2016-02-17 22:29 ` Fabio Estevam
0 siblings, 0 replies; 6+ messages in thread
From: Fabio Estevam @ 2016-02-17 22:29 UTC (permalink / raw)
To: Stefan Agner
Cc: Shawn Guo, Sascha Hauer,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
linux-kernel, Marcel Ziswiler
On Wed, Feb 17, 2016 at 7:52 PM, Stefan Agner <stefan-XLVq0VzYD2Y@public.gmane.org> wrote:
> Hm, should I remove them also in Patch 1/3? It's a fixed regulator too,
> hence I guess regulator-always-on is pointless there too...?
That's correct. And from 3/3 too.
--
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] 6+ messages in thread
end of thread, other threads:[~2016-02-17 22:29 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-17 0:18 [PATCH v2 1/3] ARM: dts: vf-colibri: remove regulator container node Stefan Agner
[not found] ` <1455668317-15728-1-git-send-email-stefan-XLVq0VzYD2Y@public.gmane.org>
2016-02-17 0:18 ` [PATCH v2 2/3] ARM: dts: vf-colibri: add basic supply regulators Stefan Agner
[not found] ` <1455668317-15728-2-git-send-email-stefan-XLVq0VzYD2Y@public.gmane.org>
2016-02-17 0:28 ` Fabio Estevam
[not found] ` <CAOMZO5Bb1eGSinoNkUhB_2w8mWdA+RQA0Z4geJp8B-MfGryAHw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-02-17 21:52 ` Stefan Agner
[not found] ` <a07b405a5c73b092eaa6422b8562b56f-XLVq0VzYD2Y@public.gmane.org>
2016-02-17 22:29 ` Fabio Estevam
2016-02-17 0:18 ` [PATCH v2 3/3] ARM: dts: vf-colibri: add carrier boards 3.3V supply Stefan Agner
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).