devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/6] arm64: dts: qcom: x1*: Fix vreg_l2j_1p2 voltage
@ 2025-04-23  7:30 Stephan Gerhold
  2025-04-23  7:30 ` [PATCH 1/6] arm64: dts: qcom: x1-crd: " Stephan Gerhold
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: Stephan Gerhold @ 2025-04-23  7:30 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio
  Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Abel Vesa,
	Rajendra Nayak, Sibi Sankar, Marc Zyngier, Xilin Wu, Jens Glathe,
	Srinivas Kandagatla, linux-arm-msm, devicetree, linux-kernel,
	Johan Hovold

Several of the Qualcomm X1* device trees upstream specify the wrong voltage
for the L2J regulator. In the ACPI DSDT table, PPP_RESOURCE_ID_LDO2_J is
configured with 1256000 uV instead of the 1200000 uV. Change all affected
device trees to use the same for consistency and correctness.

In the other device trees upstream, the voltage is already correct:
 - x1e78100-lenovo-thinkpad-t14s.dtsi
 - x1e80100-dell-xps13-9345.dts
 - x1e80100-microsoft-romulus.dtsi

Signed-off-by: Stephan Gerhold <stephan.gerhold@linaro.org>
---
Stephan Gerhold (6):
      arm64: dts: qcom: x1-crd: Fix vreg_l2j_1p2 voltage
      arm64: dts: qcom: x1e001de-devkit: Fix vreg_l2j_1p2 voltage
      arm64: dts: qcom: x1e80100-asus-vivobook-s15: Fix vreg_l2j_1p2 voltage
      arm64: dts: qcom: x1e80100-hp-omnibook-x14: Fix vreg_l2j_1p2 voltage
      arm64: dts: qcom: x1e80100-lenovo-yoga-slim7x: Fix vreg_l2j_1p2 voltage
      arm64: dts: qcom: x1e80100-qcp: Fix vreg_l2j_1p2 voltage

 arch/arm64/boot/dts/qcom/x1-crd.dtsi                     | 4 ++--
 arch/arm64/boot/dts/qcom/x1e001de-devkit.dts             | 4 ++--
 arch/arm64/boot/dts/qcom/x1e80100-asus-vivobook-s15.dts  | 4 ++--
 arch/arm64/boot/dts/qcom/x1e80100-hp-omnibook-x14.dts    | 4 ++--
 arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dts | 4 ++--
 arch/arm64/boot/dts/qcom/x1e80100-qcp.dts                | 4 ++--
 6 files changed, 12 insertions(+), 12 deletions(-)
---
base-commit: 39155a896925c3af2156ad61e821aa9fa5a1dbdb
change-id: 20250422-x1e-vreg-l2j-voltage-4281dd747278

Best regards,
-- 
Stephan Gerhold <stephan.gerhold@linaro.org>


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH 1/6] arm64: dts: qcom: x1-crd: Fix vreg_l2j_1p2 voltage
  2025-04-23  7:30 [PATCH 0/6] arm64: dts: qcom: x1*: Fix vreg_l2j_1p2 voltage Stephan Gerhold
@ 2025-04-23  7:30 ` Stephan Gerhold
  2025-04-23  7:30 ` [PATCH 2/6] arm64: dts: qcom: x1e001de-devkit: " Stephan Gerhold
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Stephan Gerhold @ 2025-04-23  7:30 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio
  Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Abel Vesa,
	Rajendra Nayak, Sibi Sankar, Marc Zyngier, Xilin Wu, Jens Glathe,
	Srinivas Kandagatla, linux-arm-msm, devicetree, linux-kernel,
	Johan Hovold

In the ACPI DSDT table, PPP_RESOURCE_ID_LDO2_J is configured with 1256000
uV instead of the 1200000 uV we have currently in the device tree. Use the
same for consistency and correctness.

Cc: stable@vger.kernel.org
Fixes: bd50b1f5b6f3 ("arm64: dts: qcom: x1e80100: Add Compute Reference Device")
Signed-off-by: Stephan Gerhold <stephan.gerhold@linaro.org>
---
 arch/arm64/boot/dts/qcom/x1-crd.dtsi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/x1-crd.dtsi b/arch/arm64/boot/dts/qcom/x1-crd.dtsi
index f73f053a46a08d875acdeeef9ac195a9b857ae3f..dbdf542c7ce5132ef37a68bfae293a09488b0a0a 100644
--- a/arch/arm64/boot/dts/qcom/x1-crd.dtsi
+++ b/arch/arm64/boot/dts/qcom/x1-crd.dtsi
@@ -846,8 +846,8 @@ vreg_l1j_0p8: ldo1 {
 
 		vreg_l2j_1p2: ldo2 {
 			regulator-name = "vreg_l2j_1p2";
-			regulator-min-microvolt = <1200000>;
-			regulator-max-microvolt = <1200000>;
+			regulator-min-microvolt = <1256000>;
+			regulator-max-microvolt = <1256000>;
 			regulator-initial-mode = <RPMH_REGULATOR_MODE_HPM>;
 		};
 

-- 
2.47.2


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 2/6] arm64: dts: qcom: x1e001de-devkit: Fix vreg_l2j_1p2 voltage
  2025-04-23  7:30 [PATCH 0/6] arm64: dts: qcom: x1*: Fix vreg_l2j_1p2 voltage Stephan Gerhold
  2025-04-23  7:30 ` [PATCH 1/6] arm64: dts: qcom: x1-crd: " Stephan Gerhold
@ 2025-04-23  7:30 ` Stephan Gerhold
  2025-04-23  7:30 ` [PATCH 3/6] arm64: dts: qcom: x1e80100-asus-vivobook-s15: " Stephan Gerhold
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Stephan Gerhold @ 2025-04-23  7:30 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio
  Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Abel Vesa,
	Rajendra Nayak, Sibi Sankar, Marc Zyngier, Xilin Wu, Jens Glathe,
	Srinivas Kandagatla, linux-arm-msm, devicetree, linux-kernel,
	Johan Hovold

In the ACPI DSDT table, PPP_RESOURCE_ID_LDO2_J is configured with 1256000
uV instead of the 1200000 uV we have currently in the device tree. Use the
same for consistency and correctness.

Cc: stable@vger.kernel.org
Fixes: 7b8a31e82b87 ("arm64: dts: qcom: Add X1E001DE Snapdragon Devkit for Windows")
Signed-off-by: Stephan Gerhold <stephan.gerhold@linaro.org>
---
 arch/arm64/boot/dts/qcom/x1e001de-devkit.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/x1e001de-devkit.dts b/arch/arm64/boot/dts/qcom/x1e001de-devkit.dts
index 74911861a3bf2606add8cf4aaa3816542e837513..4693e4c9986a6f7d14282fabd584cc16f43f0f80 100644
--- a/arch/arm64/boot/dts/qcom/x1e001de-devkit.dts
+++ b/arch/arm64/boot/dts/qcom/x1e001de-devkit.dts
@@ -747,8 +747,8 @@ vreg_l1j_0p8: ldo1 {
 
 		vreg_l2j_1p2: ldo2 {
 			regulator-name = "vreg_l2j_1p2";
-			regulator-min-microvolt = <1200000>;
-			regulator-max-microvolt = <1200000>;
+			regulator-min-microvolt = <1256000>;
+			regulator-max-microvolt = <1256000>;
 			regulator-initial-mode = <RPMH_REGULATOR_MODE_HPM>;
 		};
 

-- 
2.47.2


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 3/6] arm64: dts: qcom: x1e80100-asus-vivobook-s15: Fix vreg_l2j_1p2 voltage
  2025-04-23  7:30 [PATCH 0/6] arm64: dts: qcom: x1*: Fix vreg_l2j_1p2 voltage Stephan Gerhold
  2025-04-23  7:30 ` [PATCH 1/6] arm64: dts: qcom: x1-crd: " Stephan Gerhold
  2025-04-23  7:30 ` [PATCH 2/6] arm64: dts: qcom: x1e001de-devkit: " Stephan Gerhold
@ 2025-04-23  7:30 ` Stephan Gerhold
  2025-04-23  7:30 ` [PATCH 4/6] arm64: dts: qcom: x1e80100-hp-omnibook-x14: " Stephan Gerhold
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Stephan Gerhold @ 2025-04-23  7:30 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio
  Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Abel Vesa,
	Rajendra Nayak, Sibi Sankar, Marc Zyngier, Xilin Wu, Jens Glathe,
	Srinivas Kandagatla, linux-arm-msm, devicetree, linux-kernel,
	Johan Hovold

In the ACPI DSDT table, PPP_RESOURCE_ID_LDO2_J is configured with 1256000
uV instead of the 1200000 uV we have currently in the device tree. Use the
same for consistency and correctness.

Cc: stable@vger.kernel.org
Fixes: d0e2f8f62dff ("arm64: dts: qcom: Add device tree for ASUS Vivobook S 15")
Signed-off-by: Stephan Gerhold <stephan.gerhold@linaro.org>
---
 arch/arm64/boot/dts/qcom/x1e80100-asus-vivobook-s15.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/x1e80100-asus-vivobook-s15.dts b/arch/arm64/boot/dts/qcom/x1e80100-asus-vivobook-s15.dts
index fb9567817be6f887c9214cafbfbabda8b8cb8203..c94ddba5fbf1cb8ab2bf841cf51ac3553e1f95cb 100644
--- a/arch/arm64/boot/dts/qcom/x1e80100-asus-vivobook-s15.dts
+++ b/arch/arm64/boot/dts/qcom/x1e80100-asus-vivobook-s15.dts
@@ -351,8 +351,8 @@ vreg_l1j_0p8: ldo1 {
 
 		vreg_l2j_1p2: ldo2 {
 			regulator-name = "vreg_l2j_1p2";
-			regulator-min-microvolt = <1200000>;
-			regulator-max-microvolt = <1200000>;
+			regulator-min-microvolt = <1256000>;
+			regulator-max-microvolt = <1256000>;
 			regulator-initial-mode = <RPMH_REGULATOR_MODE_HPM>;
 		};
 

-- 
2.47.2


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 4/6] arm64: dts: qcom: x1e80100-hp-omnibook-x14: Fix vreg_l2j_1p2 voltage
  2025-04-23  7:30 [PATCH 0/6] arm64: dts: qcom: x1*: Fix vreg_l2j_1p2 voltage Stephan Gerhold
                   ` (2 preceding siblings ...)
  2025-04-23  7:30 ` [PATCH 3/6] arm64: dts: qcom: x1e80100-asus-vivobook-s15: " Stephan Gerhold
@ 2025-04-23  7:30 ` Stephan Gerhold
  2025-04-23  7:30 ` [PATCH 5/6] arm64: dts: qcom: x1e80100-lenovo-yoga-slim7x: " Stephan Gerhold
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Stephan Gerhold @ 2025-04-23  7:30 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio
  Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Abel Vesa,
	Rajendra Nayak, Sibi Sankar, Marc Zyngier, Xilin Wu, Jens Glathe,
	Srinivas Kandagatla, linux-arm-msm, devicetree, linux-kernel,
	Johan Hovold

In the ACPI DSDT table, PPP_RESOURCE_ID_LDO2_J is configured with 1256000
uV instead of the 1200000 uV we have currently in the device tree. Use the
same for consistency and correctness.

Cc: stable@vger.kernel.org
Fixes: 6f18b8d4142c ("arm64: dts: qcom: x1e80100-hp-x14: dt for HP Omnibook X Laptop 14")
Signed-off-by: Stephan Gerhold <stephan.gerhold@linaro.org>
---
 arch/arm64/boot/dts/qcom/x1e80100-hp-omnibook-x14.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/x1e80100-hp-omnibook-x14.dts b/arch/arm64/boot/dts/qcom/x1e80100-hp-omnibook-x14.dts
index 1a187dc3684a967b42817e44ff0df10202fe3362..199e256743521de82d98b38699f96697c5570e66 100644
--- a/arch/arm64/boot/dts/qcom/x1e80100-hp-omnibook-x14.dts
+++ b/arch/arm64/boot/dts/qcom/x1e80100-hp-omnibook-x14.dts
@@ -873,8 +873,8 @@ vreg_l1j_0p8: ldo1 {
 
 		vreg_l2j_1p2: ldo2 {
 			regulator-name = "vreg_l2j_1p2";
-			regulator-min-microvolt = <1200000>;
-			regulator-max-microvolt = <1200000>;
+			regulator-min-microvolt = <1256000>;
+			regulator-max-microvolt = <1256000>;
 			regulator-initial-mode = <RPMH_REGULATOR_MODE_HPM>;
 		};
 

-- 
2.47.2


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 5/6] arm64: dts: qcom: x1e80100-lenovo-yoga-slim7x: Fix vreg_l2j_1p2 voltage
  2025-04-23  7:30 [PATCH 0/6] arm64: dts: qcom: x1*: Fix vreg_l2j_1p2 voltage Stephan Gerhold
                   ` (3 preceding siblings ...)
  2025-04-23  7:30 ` [PATCH 4/6] arm64: dts: qcom: x1e80100-hp-omnibook-x14: " Stephan Gerhold
@ 2025-04-23  7:30 ` Stephan Gerhold
  2025-04-23  7:30 ` [PATCH 6/6] arm64: dts: qcom: x1e80100-qcp: " Stephan Gerhold
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Stephan Gerhold @ 2025-04-23  7:30 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio
  Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Abel Vesa,
	Rajendra Nayak, Sibi Sankar, Marc Zyngier, Xilin Wu, Jens Glathe,
	Srinivas Kandagatla, linux-arm-msm, devicetree, linux-kernel,
	Johan Hovold

In the ACPI DSDT table, PPP_RESOURCE_ID_LDO2_J is configured with 1256000
uV instead of the 1200000 uV we have currently in the device tree. Use the
same for consistency and correctness.

Cc: stable@vger.kernel.org
Fixes: 45247fe17db2 ("arm64: dts: qcom: x1e80100: add Lenovo Thinkpad Yoga slim 7x devicetree")
Signed-off-by: Stephan Gerhold <stephan.gerhold@linaro.org>
---
 arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dts b/arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dts
index 445d97d67d325853b7dcd2060523e7469ed4e6ea..9fb306456e33a16db37522b3ce9099cfd58c14e2 100644
--- a/arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dts
+++ b/arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dts
@@ -513,8 +513,8 @@ vreg_l1j_0p8: ldo1 {
 
 		vreg_l2j_1p2: ldo2 {
 			regulator-name = "vreg_l2j_1p2";
-			regulator-min-microvolt = <1200000>;
-			regulator-max-microvolt = <1200000>;
+			regulator-min-microvolt = <1256000>;
+			regulator-max-microvolt = <1256000>;
 			regulator-initial-mode = <RPMH_REGULATOR_MODE_HPM>;
 		};
 

-- 
2.47.2


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 6/6] arm64: dts: qcom: x1e80100-qcp: Fix vreg_l2j_1p2 voltage
  2025-04-23  7:30 [PATCH 0/6] arm64: dts: qcom: x1*: Fix vreg_l2j_1p2 voltage Stephan Gerhold
                   ` (4 preceding siblings ...)
  2025-04-23  7:30 ` [PATCH 5/6] arm64: dts: qcom: x1e80100-lenovo-yoga-slim7x: " Stephan Gerhold
@ 2025-04-23  7:30 ` Stephan Gerhold
  2025-04-23  9:17 ` [PATCH 0/6] arm64: dts: qcom: x1*: " Konrad Dybcio
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Stephan Gerhold @ 2025-04-23  7:30 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio
  Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Abel Vesa,
	Rajendra Nayak, Sibi Sankar, Marc Zyngier, Xilin Wu, Jens Glathe,
	Srinivas Kandagatla, linux-arm-msm, devicetree, linux-kernel,
	Johan Hovold

In the ACPI DSDT table, PPP_RESOURCE_ID_LDO2_J is configured with 1256000
uV instead of the 1200000 uV we have currently in the device tree. Use the
same for consistency and correctness.

Cc: stable@vger.kernel.org
Fixes: af16b00578a7 ("arm64: dts: qcom: Add base X1E80100 dtsi and the QCP dts")
Signed-off-by: Stephan Gerhold <stephan.gerhold@linaro.org>
---
 arch/arm64/boot/dts/qcom/x1e80100-qcp.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/x1e80100-qcp.dts b/arch/arm64/boot/dts/qcom/x1e80100-qcp.dts
index 470c4f826d49866a2af87f5e109672d51c9bc9cd..c0c8ecb666e178752da8e1d5c22ec2b632776129 100644
--- a/arch/arm64/boot/dts/qcom/x1e80100-qcp.dts
+++ b/arch/arm64/boot/dts/qcom/x1e80100-qcp.dts
@@ -773,8 +773,8 @@ vreg_l1j_0p8: ldo1 {
 
 		vreg_l2j_1p2: ldo2 {
 			regulator-name = "vreg_l2j_1p2";
-			regulator-min-microvolt = <1200000>;
-			regulator-max-microvolt = <1200000>;
+			regulator-min-microvolt = <1256000>;
+			regulator-max-microvolt = <1256000>;
 			regulator-initial-mode = <RPMH_REGULATOR_MODE_HPM>;
 		};
 

-- 
2.47.2


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH 0/6] arm64: dts: qcom: x1*: Fix vreg_l2j_1p2 voltage
  2025-04-23  7:30 [PATCH 0/6] arm64: dts: qcom: x1*: Fix vreg_l2j_1p2 voltage Stephan Gerhold
                   ` (5 preceding siblings ...)
  2025-04-23  7:30 ` [PATCH 6/6] arm64: dts: qcom: x1e80100-qcp: " Stephan Gerhold
@ 2025-04-23  9:17 ` Konrad Dybcio
  2025-04-24  6:49 ` Abel Vesa
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Konrad Dybcio @ 2025-04-23  9:17 UTC (permalink / raw)
  To: Stephan Gerhold, Bjorn Andersson, Konrad Dybcio
  Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Abel Vesa,
	Rajendra Nayak, Sibi Sankar, Marc Zyngier, Xilin Wu, Jens Glathe,
	Srinivas Kandagatla, linux-arm-msm, devicetree, linux-kernel,
	Johan Hovold

On 4/23/25 9:30 AM, Stephan Gerhold wrote:
> Several of the Qualcomm X1* device trees upstream specify the wrong voltage
> for the L2J regulator. In the ACPI DSDT table, PPP_RESOURCE_ID_LDO2_J is
> configured with 1256000 uV instead of the 1200000 uV. Change all affected
> device trees to use the same for consistency and correctness.
> 
> In the other device trees upstream, the voltage is already correct:
>  - x1e78100-lenovo-thinkpad-t14s.dtsi
>  - x1e80100-dell-xps13-9345.dts
>  - x1e80100-microsoft-romulus.dtsi
> 
> Signed-off-by: Stephan Gerhold <stephan.gerhold@linaro.org>
> ---
> Stephan Gerhold (6):
>       arm64: dts: qcom: x1-crd: Fix vreg_l2j_1p2 voltage
>       arm64: dts: qcom: x1e001de-devkit: Fix vreg_l2j_1p2 voltage
>       arm64: dts: qcom: x1e80100-asus-vivobook-s15: Fix vreg_l2j_1p2 voltage
>       arm64: dts: qcom: x1e80100-hp-omnibook-x14: Fix vreg_l2j_1p2 voltage
>       arm64: dts: qcom: x1e80100-lenovo-yoga-slim7x: Fix vreg_l2j_1p2 voltage
>       arm64: dts: qcom: x1e80100-qcp: Fix vreg_l2j_1p2 voltage

This goes to some PHYs, so it better match what it's supposed to!

Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>

Konrad

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 0/6] arm64: dts: qcom: x1*: Fix vreg_l2j_1p2 voltage
  2025-04-23  7:30 [PATCH 0/6] arm64: dts: qcom: x1*: Fix vreg_l2j_1p2 voltage Stephan Gerhold
                   ` (6 preceding siblings ...)
  2025-04-23  9:17 ` [PATCH 0/6] arm64: dts: qcom: x1*: " Konrad Dybcio
@ 2025-04-24  6:49 ` Abel Vesa
  2025-04-29 13:02 ` Johan Hovold
  2025-05-07  5:18 ` Bjorn Andersson
  9 siblings, 0 replies; 11+ messages in thread
From: Abel Vesa @ 2025-04-24  6:49 UTC (permalink / raw)
  To: Stephan Gerhold
  Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Rajendra Nayak, Sibi Sankar, Marc Zyngier, Xilin Wu,
	Jens Glathe, Srinivas Kandagatla, linux-arm-msm, devicetree,
	linux-kernel, Johan Hovold

On 25-04-23 09:30:06, Stephan Gerhold wrote:
> Several of the Qualcomm X1* device trees upstream specify the wrong voltage
> for the L2J regulator. In the ACPI DSDT table, PPP_RESOURCE_ID_LDO2_J is
> configured with 1256000 uV instead of the 1200000 uV. Change all affected
> device trees to use the same for consistency and correctness.
> 
> In the other device trees upstream, the voltage is already correct:
>  - x1e78100-lenovo-thinkpad-t14s.dtsi
>  - x1e80100-dell-xps13-9345.dts
>  - x1e80100-microsoft-romulus.dtsi
> 
> Signed-off-by: Stephan Gerhold <stephan.gerhold@linaro.org>

Reviewed-by: Abel Vesa <abel.vesa@linaro.org>

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 0/6] arm64: dts: qcom: x1*: Fix vreg_l2j_1p2 voltage
  2025-04-23  7:30 [PATCH 0/6] arm64: dts: qcom: x1*: Fix vreg_l2j_1p2 voltage Stephan Gerhold
                   ` (7 preceding siblings ...)
  2025-04-24  6:49 ` Abel Vesa
@ 2025-04-29 13:02 ` Johan Hovold
  2025-05-07  5:18 ` Bjorn Andersson
  9 siblings, 0 replies; 11+ messages in thread
From: Johan Hovold @ 2025-04-29 13:02 UTC (permalink / raw)
  To: Stephan Gerhold
  Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Abel Vesa, Rajendra Nayak, Sibi Sankar,
	Marc Zyngier, Xilin Wu, Jens Glathe, Srinivas Kandagatla,
	linux-arm-msm, devicetree, linux-kernel

On Wed, Apr 23, 2025 at 09:30:06AM +0200, Stephan Gerhold wrote:
> Several of the Qualcomm X1* device trees upstream specify the wrong voltage
> for the L2J regulator. In the ACPI DSDT table, PPP_RESOURCE_ID_LDO2_J is
> configured with 1256000 uV instead of the 1200000 uV. Change all affected
> device trees to use the same for consistency and correctness.
> 
> In the other device trees upstream, the voltage is already correct:
>  - x1e78100-lenovo-thinkpad-t14s.dtsi
>  - x1e80100-dell-xps13-9345.dts
>  - x1e80100-microsoft-romulus.dtsi
> 
> Signed-off-by: Stephan Gerhold <stephan.gerhold@linaro.org>
> ---
> Stephan Gerhold (6):
>       arm64: dts: qcom: x1-crd: Fix vreg_l2j_1p2 voltage
>       arm64: dts: qcom: x1e001de-devkit: Fix vreg_l2j_1p2 voltage
>       arm64: dts: qcom: x1e80100-asus-vivobook-s15: Fix vreg_l2j_1p2 voltage
>       arm64: dts: qcom: x1e80100-hp-omnibook-x14: Fix vreg_l2j_1p2 voltage
>       arm64: dts: qcom: x1e80100-lenovo-yoga-slim7x: Fix vreg_l2j_1p2 voltage
>       arm64: dts: qcom: x1e80100-qcp: Fix vreg_l2j_1p2 voltage

I only checked the CRD (and T14s) DSDT, but this looks correct:

Reviewed-by: Johan Hovold <johan+linaro@kernel.org>

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 0/6] arm64: dts: qcom: x1*: Fix vreg_l2j_1p2 voltage
  2025-04-23  7:30 [PATCH 0/6] arm64: dts: qcom: x1*: Fix vreg_l2j_1p2 voltage Stephan Gerhold
                   ` (8 preceding siblings ...)
  2025-04-29 13:02 ` Johan Hovold
@ 2025-05-07  5:18 ` Bjorn Andersson
  9 siblings, 0 replies; 11+ messages in thread
From: Bjorn Andersson @ 2025-05-07  5:18 UTC (permalink / raw)
  To: Konrad Dybcio, Stephan Gerhold
  Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Abel Vesa,
	Rajendra Nayak, Sibi Sankar, Marc Zyngier, Xilin Wu, Jens Glathe,
	Srinivas Kandagatla, linux-arm-msm, devicetree, linux-kernel,
	Johan Hovold


On Wed, 23 Apr 2025 09:30:06 +0200, Stephan Gerhold wrote:
> Several of the Qualcomm X1* device trees upstream specify the wrong voltage
> for the L2J regulator. In the ACPI DSDT table, PPP_RESOURCE_ID_LDO2_J is
> configured with 1256000 uV instead of the 1200000 uV. Change all affected
> device trees to use the same for consistency and correctness.
> 
> In the other device trees upstream, the voltage is already correct:
>  - x1e78100-lenovo-thinkpad-t14s.dtsi
>  - x1e80100-dell-xps13-9345.dts
>  - x1e80100-microsoft-romulus.dtsi
> 
> [...]

Applied, thanks!

[1/6] arm64: dts: qcom: x1-crd: Fix vreg_l2j_1p2 voltage
      commit: 5ce920e6a8db40e4b094c0d863cbd19fdcfbbb7a
[2/6] arm64: dts: qcom: x1e001de-devkit: Fix vreg_l2j_1p2 voltage
      commit: 3ed2a9e03abfeece9e30ebc746f935536f661414
[3/6] arm64: dts: qcom: x1e80100-asus-vivobook-s15: Fix vreg_l2j_1p2 voltage
      commit: 0fb9ecf8713a7a458f7378c86e0703467db2ad22
[4/6] arm64: dts: qcom: x1e80100-hp-omnibook-x14: Fix vreg_l2j_1p2 voltage
      commit: 4a09dad9d437a13e9cd4383ff7791a816a6e1652
[5/6] arm64: dts: qcom: x1e80100-lenovo-yoga-slim7x: Fix vreg_l2j_1p2 voltage
      commit: 4f27ede34ca3369cdcde80c5a4ca84cdb28edbbb
[6/6] arm64: dts: qcom: x1e80100-qcp: Fix vreg_l2j_1p2 voltage
      commit: efdbeae860bf0278b050c6c9ad5921afba4596d0

Best regards,
-- 
Bjorn Andersson <andersson@kernel.org>

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2025-05-07  5:18 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-23  7:30 [PATCH 0/6] arm64: dts: qcom: x1*: Fix vreg_l2j_1p2 voltage Stephan Gerhold
2025-04-23  7:30 ` [PATCH 1/6] arm64: dts: qcom: x1-crd: " Stephan Gerhold
2025-04-23  7:30 ` [PATCH 2/6] arm64: dts: qcom: x1e001de-devkit: " Stephan Gerhold
2025-04-23  7:30 ` [PATCH 3/6] arm64: dts: qcom: x1e80100-asus-vivobook-s15: " Stephan Gerhold
2025-04-23  7:30 ` [PATCH 4/6] arm64: dts: qcom: x1e80100-hp-omnibook-x14: " Stephan Gerhold
2025-04-23  7:30 ` [PATCH 5/6] arm64: dts: qcom: x1e80100-lenovo-yoga-slim7x: " Stephan Gerhold
2025-04-23  7:30 ` [PATCH 6/6] arm64: dts: qcom: x1e80100-qcp: " Stephan Gerhold
2025-04-23  9:17 ` [PATCH 0/6] arm64: dts: qcom: x1*: " Konrad Dybcio
2025-04-24  6:49 ` Abel Vesa
2025-04-29 13:02 ` Johan Hovold
2025-05-07  5:18 ` Bjorn Andersson

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).