[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <ZzSYU61pmFTcPf5_@hovoldconsulting.com>
Date: Wed, 13 Nov 2024 13:15:15 +0100
From: Johan Hovold <johan@...nel.org>
To: Varadarajan Narayanan <quic_varada@...cinc.com>
Cc: vkoul@...nel.org, kishon@...nel.org, robh@...nel.org,
krzk+dt@...nel.org, conor+dt@...nel.org, gregkh@...uxfoundation.org,
andersson@...nel.org, konradybcio@...nel.org,
dmitry.baryshkov@...aro.org, mantas@...vices.com,
quic_rohiagar@...cinc.com, quic_kriskura@...cinc.com,
manivannan.sadhasivam@...aro.org, abel.vesa@...aro.org,
quic_kbajaj@...cinc.com, quic_wcheng@...cinc.com,
linux-arm-msm@...r.kernel.org, linux-phy@...ts.infradead.org,
devicetree@...r.kernel.org, linux-kernel@...r.kernel.org,
linux-usb@...r.kernel.org
Subject: Re: [PATCH v2 6/6] arm64: dts: qcom: Add USB controller and phy
nodes for IPQ5424
On Wed, Nov 13, 2024 at 12:53:16PM +0530, Varadarajan Narayanan wrote:
> --- a/arch/arm64/boot/dts/qcom/ipq5424-rdp466.dts
> +++ b/arch/arm64/boot/dts/qcom/ipq5424-rdp466.dts
> @@ -16,12 +16,71 @@ / {
> aliases {
> serial0 = &uart1;
> };
> +
> + regulator_fixed_3p3: s3300 {
Fixed regulator nodes should have a "regulator-" prefix in their name.
And please use a shorter label, look at the existing DTs for
inspiration (e.g. "vreg_misc_3p3").
> + compatible = "regulator-fixed";
> + regulator-min-microvolt = <3300000>;
> + regulator-max-microvolt = <3300000>;
> + regulator-boot-on;
> + regulator-always-on;
> + regulator-name = "fixed_3p3";
> + };
But is this really an accurate description of these regulators? Are
they not part of some PMIC? Can they really not be turned off?
Also please use the names from the schematics for these. I doubt they
are named "fixed_3p3".
> +
> + regulator_fixed_1p8: s1800 {
> + compatible = "regulator-fixed";
> + regulator-min-microvolt = <1800000>;
> + regulator-max-microvolt = <1800000>;
> + regulator-boot-on;
> + regulator-always-on;
> + regulator-name = "fixed_1p8";
> + };
> +
> + regulator_fixed_0p925: s0925 {
> + compatible = "regulator-fixed";
> + regulator-min-microvolt = <925000>;
> + regulator-max-microvolt = <925000>;
> + regulator-boot-on;
> + regulator-always-on;
> + regulator-name = "fixed_0p925";
> + };
> +
Stray newline.
> +};
Johan
Powered by blists - more mailing lists