From: Tomasz Figa <tomasz.figa@gmail.com>
To: Mark Brown <broonie@kernel.org>
Cc: Kukjin Kim <kgene.kim@samsung.com>,
linux-arm-kernel@lists.infradead.org,
linux-samsung-soc@vger.kernel.org,
Mark Brown <broonie@linaro.org>
Subject: Re: [PATCH 1/3] ARM: dts: Put Arndale fixed voltage regulators on a simple-bus
Date: Sat, 06 Jul 2013 01:36:57 +0200 [thread overview]
Message-ID: <2269980.iUpB0kJaI3@flatron> (raw)
In-Reply-To: <1372714599-17588-1-git-send-email-broonie@kernel.org>
Hi Mark,
On Monday 01 of July 2013 22:36:37 Mark Brown wrote:
> From: Mark Brown <broonie@linaro.org>
>
> Fixed voltage regulators (and other similar free standing things) are
> supposed to go on a simple-bus for DT correctness reasons.
>
> Signed-off-by: Mark Brown <broonie@linaro.org>
> ---
> arch/arm/boot/dts/exynos5250-arndale.dts | 28
> +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11
> deletions(-)
>
> diff --git a/arch/arm/boot/dts/exynos5250-arndale.dts
> b/arch/arm/boot/dts/exynos5250-arndale.dts index abc7272..68a13a6
> 100644
> --- a/arch/arm/boot/dts/exynos5250-arndale.dts
> +++ b/arch/arm/boot/dts/exynos5250-arndale.dts
> @@ -429,18 +429,24 @@
> vdd-supply = <&ldo8_reg>;
> };
>
> - mmc_reg: voltage-regulator {
> - compatible = "regulator-fixed";
> - regulator-name = "VDD_33ON_2.8V";
> - regulator-min-microvolt = <2800000>;
> - regulator-max-microvolt = <2800000>;
> - gpio = <&gpx1 1 1>;
> - enable-active-high;
> - };
> + regulators {
> + compatible = "simple-bus";
> + #address-cells = <1>;
> + #size-cells = <0>;
Are the two #properties above really necessary? The regulators that will
be placed here probably don't need any kind of addressing, so it should be
possible to omit them.
> +
> + mmc_reg: voltage-regulator {
I'd suggest suffixing name of this node with an index, like voltage-
regulator-0 to be more future proof, in case of further fixed regulators
being added.
> + compatible = "regulator-fixed";
> + regulator-name = "VDD_33ON_2.8V";
> + regulator-min-microvolt = <2800000>;
> + regulator-max-microvolt = <2800000>;
> + gpio = <&gpx1 1 1>;
> + enable-active-high;
> + };
>
> - reg_hdmi_en: fixedregulator@0 {
> - compatible = "regulator-fixed";
> - regulator-name = "hdmi-en";
> + reg_hdmi_en: fixedregulator@0 {
And here I'd use the same convention of suffixes, renaming the node to
voltage-regulator-1 for the sake of consistency.
Best regards,
Tomasz
> + compatible = "regulator-fixed";
> + regulator-name = "hdmi-en";
> + };
> };
>
> fixed-rate-clocks {
WARNING: multiple messages have this Message-ID (diff)
From: tomasz.figa@gmail.com (Tomasz Figa)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/3] ARM: dts: Put Arndale fixed voltage regulators on a simple-bus
Date: Sat, 06 Jul 2013 01:36:57 +0200 [thread overview]
Message-ID: <2269980.iUpB0kJaI3@flatron> (raw)
In-Reply-To: <1372714599-17588-1-git-send-email-broonie@kernel.org>
Hi Mark,
On Monday 01 of July 2013 22:36:37 Mark Brown wrote:
> From: Mark Brown <broonie@linaro.org>
>
> Fixed voltage regulators (and other similar free standing things) are
> supposed to go on a simple-bus for DT correctness reasons.
>
> Signed-off-by: Mark Brown <broonie@linaro.org>
> ---
> arch/arm/boot/dts/exynos5250-arndale.dts | 28
> +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11
> deletions(-)
>
> diff --git a/arch/arm/boot/dts/exynos5250-arndale.dts
> b/arch/arm/boot/dts/exynos5250-arndale.dts index abc7272..68a13a6
> 100644
> --- a/arch/arm/boot/dts/exynos5250-arndale.dts
> +++ b/arch/arm/boot/dts/exynos5250-arndale.dts
> @@ -429,18 +429,24 @@
> vdd-supply = <&ldo8_reg>;
> };
>
> - mmc_reg: voltage-regulator {
> - compatible = "regulator-fixed";
> - regulator-name = "VDD_33ON_2.8V";
> - regulator-min-microvolt = <2800000>;
> - regulator-max-microvolt = <2800000>;
> - gpio = <&gpx1 1 1>;
> - enable-active-high;
> - };
> + regulators {
> + compatible = "simple-bus";
> + #address-cells = <1>;
> + #size-cells = <0>;
Are the two #properties above really necessary? The regulators that will
be placed here probably don't need any kind of addressing, so it should be
possible to omit them.
> +
> + mmc_reg: voltage-regulator {
I'd suggest suffixing name of this node with an index, like voltage-
regulator-0 to be more future proof, in case of further fixed regulators
being added.
> + compatible = "regulator-fixed";
> + regulator-name = "VDD_33ON_2.8V";
> + regulator-min-microvolt = <2800000>;
> + regulator-max-microvolt = <2800000>;
> + gpio = <&gpx1 1 1>;
> + enable-active-high;
> + };
>
> - reg_hdmi_en: fixedregulator at 0 {
> - compatible = "regulator-fixed";
> - regulator-name = "hdmi-en";
> + reg_hdmi_en: fixedregulator at 0 {
And here I'd use the same convention of suffixes, renaming the node to
voltage-regulator-1 for the sake of consistency.
Best regards,
Tomasz
> + compatible = "regulator-fixed";
> + regulator-name = "hdmi-en";
> + };
> };
>
> fixed-rate-clocks {
next prev parent reply other threads:[~2013-07-05 23:37 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-01 21:36 [PATCH 1/3] ARM: dts: Put Arndale fixed voltage regulators on a simple-bus Mark Brown
2013-07-01 21:36 ` Mark Brown
2013-07-01 21:36 ` [PATCH 2/3] ARM: dts: Hook up supplies for Arndale S5M8767 Mark Brown
2013-07-01 21:36 ` Mark Brown
2013-07-01 21:36 ` [PATCH 3/3] ARM: dts: Add WM1811A audio CODEC to Arndale bindings Mark Brown
2013-07-01 21:36 ` Mark Brown
2013-07-01 21:47 ` Fabio Estevam
2013-07-01 21:47 ` Fabio Estevam
2013-07-01 22:38 ` Mark Brown
2013-07-01 22:38 ` Mark Brown
2013-07-02 5:21 ` Tushar Behera
2013-07-02 5:21 ` Tushar Behera
2013-07-02 9:25 ` Mark Brown
2013-07-02 9:25 ` Mark Brown
2013-07-24 1:50 ` Kukjin Kim
2013-07-24 1:50 ` Kukjin Kim
2013-07-05 23:36 ` Tomasz Figa [this message]
2013-07-05 23:36 ` [PATCH 1/3] ARM: dts: Put Arndale fixed voltage regulators on a simple-bus Tomasz Figa
2013-07-06 9:19 ` Mark Brown
2013-07-06 9:19 ` Mark Brown
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2269980.iUpB0kJaI3@flatron \
--to=tomasz.figa@gmail.com \
--cc=broonie@kernel.org \
--cc=broonie@linaro.org \
--cc=kgene.kim@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.