* [PATCH v2 01/10] dt-bindings: net: bluetooth: qualcomm: Fix WCN6855 regulator names
2026-01-19 11:42 [PATCH v2 00/10] Fix up WCN6855 RFA power supply name Konrad Dybcio
@ 2026-01-19 11:42 ` Konrad Dybcio
2026-01-19 17:11 ` Dmitry Baryshkov
2026-01-29 20:14 ` Fix up WCN6855 RFA power supply name bluez.test.bot
2026-01-19 11:42 ` [PATCH v2 02/10] arm64: dts: qcom: qcs615-ride: Fix BT RFA " Konrad Dybcio
` (8 subsequent siblings)
9 siblings, 2 replies; 15+ messages in thread
From: Konrad Dybcio @ 2026-01-19 11:42 UTC (permalink / raw)
To: Jeff Johnson, Bartosz Golaszewski, Marcel Holtmann,
Luiz Augusto von Dentz, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Balakrishna Godavarthi, Rocky Liao, Bjorn Andersson,
Konrad Dybcio, Bartosz Golaszewski
Cc: Luiz Augusto von Dentz, linux-arm-msm, linux-bluetooth,
devicetree, linux-kernel, Konrad Dybcio, Krzysztof Kozlowski,
Abel Vesa, Bartosz Golaszewski
From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Commit 5f4f954bba12 ("dt-bindings: bluetooth: bring the HW description
closer to reality for wcn6855") changed the vddrfa1p7-supply to 1p8
for whatever reason.
The schematics footprint for this chip definitely says 7 on the input
leg and the driver still expects 1p7. Bring it back.
Fixes: 5f4f954bba12 ("dt-bindings: bluetooth: bring the HW description closer to reality for wcn6855")
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Reviewed-by: Abel Vesa <abel.vesa@oss.qualcomm.com>
Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
---
.../devicetree/bindings/net/bluetooth/qcom,wcn6855-bt.yaml | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/Documentation/devicetree/bindings/net/bluetooth/qcom,wcn6855-bt.yaml b/Documentation/devicetree/bindings/net/bluetooth/qcom,wcn6855-bt.yaml
index 45630067d3c8..0beda26ae8bb 100644
--- a/Documentation/devicetree/bindings/net/bluetooth/qcom,wcn6855-bt.yaml
+++ b/Documentation/devicetree/bindings/net/bluetooth/qcom,wcn6855-bt.yaml
@@ -50,9 +50,6 @@ properties:
description: VDD_RFA_1P7 supply regulator handle
deprecated: true
- vddrfa1p8-supply:
- description: VDD_RFA_1P8 supply regulator handle
-
vddrfacmn-supply:
description: VDD_RFA_CMN supply regulator handle
@@ -68,7 +65,7 @@ required:
- vddbtcmx-supply
- vddrfa0p8-supply
- vddrfa1p2-supply
- - vddrfa1p8-supply
+ - vddrfa1p7-supply
- vddrfacmn-supply
- vddwlcx-supply
- vddwlmx-supply
@@ -91,7 +88,7 @@ examples:
vddbtcmx-supply = <&vreg_pmu_btcmx_0p8>;
vddrfa0p8-supply = <&vreg_pmu_rfa_0p8>;
vddrfa1p2-supply = <&vreg_pmu_rfa_1p2>;
- vddrfa1p8-supply = <&vreg_pmu_rfa_1p7>;
+ vddrfa1p7-supply = <&vreg_pmu_rfa_1p7>;
vddrfacmn-supply = <&vreg_pmu_rfa_cmn_0p8>;
vddwlcx-supply = <&vreg_pmu_wlcx_0p8>;
vddwlmx-supply = <&vreg_pmu_wlmx_0p8>;
--
2.52.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* Re: [PATCH v2 01/10] dt-bindings: net: bluetooth: qualcomm: Fix WCN6855 regulator names
2026-01-19 11:42 ` [PATCH v2 01/10] dt-bindings: net: bluetooth: qualcomm: Fix WCN6855 regulator names Konrad Dybcio
@ 2026-01-19 17:11 ` Dmitry Baryshkov
2026-01-29 20:14 ` Fix up WCN6855 RFA power supply name bluez.test.bot
1 sibling, 0 replies; 15+ messages in thread
From: Dmitry Baryshkov @ 2026-01-19 17:11 UTC (permalink / raw)
To: Konrad Dybcio
Cc: Jeff Johnson, Bartosz Golaszewski, Marcel Holtmann,
Luiz Augusto von Dentz, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Balakrishna Godavarthi, Rocky Liao, Bjorn Andersson,
Bartosz Golaszewski, Luiz Augusto von Dentz, linux-arm-msm,
linux-bluetooth, devicetree, linux-kernel, Konrad Dybcio,
Krzysztof Kozlowski, Abel Vesa, Bartosz Golaszewski
On Mon, Jan 19, 2026 at 12:42:23PM +0100, Konrad Dybcio wrote:
> From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
>
> Commit 5f4f954bba12 ("dt-bindings: bluetooth: bring the HW description
> closer to reality for wcn6855") changed the vddrfa1p7-supply to 1p8
> for whatever reason.
>
> The schematics footprint for this chip definitely says 7 on the input
> leg and the driver still expects 1p7. Bring it back.
The datasheet also describes "VDD17_RFA" and "RFA_VDD17" networks, so,
even if it has 1.8V, the net should be named 1p7.
Acked-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
>
> Fixes: 5f4f954bba12 ("dt-bindings: bluetooth: bring the HW description closer to reality for wcn6855")
> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
> Reviewed-by: Abel Vesa <abel.vesa@oss.qualcomm.com>
> Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
> Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
> ---
> .../devicetree/bindings/net/bluetooth/qcom,wcn6855-bt.yaml | 7 ++-----
> 1 file changed, 2 insertions(+), 5 deletions(-)
>
--
With best wishes
Dmitry
^ permalink raw reply [flat|nested] 15+ messages in thread* RE: Fix up WCN6855 RFA power supply name
2026-01-19 11:42 ` [PATCH v2 01/10] dt-bindings: net: bluetooth: qualcomm: Fix WCN6855 regulator names Konrad Dybcio
2026-01-19 17:11 ` Dmitry Baryshkov
@ 2026-01-29 20:14 ` bluez.test.bot
1 sibling, 0 replies; 15+ messages in thread
From: bluez.test.bot @ 2026-01-29 20:14 UTC (permalink / raw)
To: linux-bluetooth, konradybcio
[-- Attachment #1: Type: text/plain, Size: 3238 bytes --]
This is automated email and please do not reply to this email!
Dear submitter,
Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=1044101
---Test result---
Test Summary:
CheckPatch PENDING 0.41 seconds
GitLint PENDING 0.38 seconds
SubjectPrefix FAIL 1.36 seconds
BuildKernel PASS 26.15 seconds
CheckAllWarning PASS 28.36 seconds
CheckSparse PASS 32.40 seconds
BuildKernel32 PASS 25.08 seconds
TestRunnerSetup PASS 559.47 seconds
TestRunner_l2cap-tester PASS 28.48 seconds
TestRunner_iso-tester PASS 100.08 seconds
TestRunner_bnep-tester PASS 6.28 seconds
TestRunner_mgmt-tester FAIL 113.87 seconds
TestRunner_rfcomm-tester PASS 9.46 seconds
TestRunner_sco-tester FAIL 15.31 seconds
TestRunner_ioctl-tester PASS 10.25 seconds
TestRunner_mesh-tester FAIL 11.43 seconds
TestRunner_smp-tester PASS 8.87 seconds
TestRunner_userchan-tester PASS 6.75 seconds
IncrementalBuild PENDING 0.97 seconds
Details
##############################
Test: CheckPatch - PENDING
Desc: Run checkpatch.pl script
Output:
##############################
Test: GitLint - PENDING
Desc: Run gitlint
Output:
##############################
Test: SubjectPrefix - FAIL
Desc: Check subject contains "Bluetooth" prefix
Output:
"Bluetooth: " prefix is not specified in the subject
"Bluetooth: " prefix is not specified in the subject
"Bluetooth: " prefix is not specified in the subject
"Bluetooth: " prefix is not specified in the subject
"Bluetooth: " prefix is not specified in the subject
"Bluetooth: " prefix is not specified in the subject
"Bluetooth: " prefix is not specified in the subject
"Bluetooth: " prefix is not specified in the subject
"Bluetooth: " prefix is not specified in the subject
"Bluetooth: " prefix is not specified in the subject
##############################
Test: TestRunner_mgmt-tester - FAIL
Desc: Run mgmt-tester with test-runner
Output:
Total: 494, Passed: 489 (99.0%), Failed: 1, Not Run: 4
Failed Test Cases
Read Exp Feature - Success Failed 0.104 seconds
##############################
Test: TestRunner_sco-tester - FAIL
Desc: Run sco-tester with test-runner
Output:
WARNING: possible circular locking dependency detected
BUG: sleeping function called from invalid context at net/core/sock.c:3782
Total: 30, Passed: 30 (100.0%), Failed: 0, Not Run: 0
##############################
Test: TestRunner_mesh-tester - FAIL
Desc: Run mesh-tester with test-runner
Output:
Total: 10, Passed: 8 (80.0%), Failed: 2, Not Run: 0
Failed Test Cases
Mesh - Send cancel - 1 Timed out 1.796 seconds
Mesh - Send cancel - 2 Timed out 1.996 seconds
##############################
Test: IncrementalBuild - PENDING
Desc: Incremental build with the patches in the series
Output:
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v2 02/10] arm64: dts: qcom: qcs615-ride: Fix BT RFA supply name
2026-01-19 11:42 [PATCH v2 00/10] Fix up WCN6855 RFA power supply name Konrad Dybcio
2026-01-19 11:42 ` [PATCH v2 01/10] dt-bindings: net: bluetooth: qualcomm: Fix WCN6855 regulator names Konrad Dybcio
@ 2026-01-19 11:42 ` Konrad Dybcio
2026-01-19 17:12 ` Dmitry Baryshkov
2026-01-19 11:42 ` [PATCH v2 03/10] arm64: dts: qcom: sc8280xp-crd: " Konrad Dybcio
` (7 subsequent siblings)
9 siblings, 1 reply; 15+ messages in thread
From: Konrad Dybcio @ 2026-01-19 11:42 UTC (permalink / raw)
To: Jeff Johnson, Bartosz Golaszewski, Marcel Holtmann,
Luiz Augusto von Dentz, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Balakrishna Godavarthi, Rocky Liao, Bjorn Andersson,
Konrad Dybcio, Bartosz Golaszewski
Cc: Luiz Augusto von Dentz, linux-arm-msm, linux-bluetooth,
devicetree, linux-kernel, Konrad Dybcio, Abel Vesa,
Bartosz Golaszewski
From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Fix up the supply name to align with bindings.
Reviewed-by: Abel Vesa <abel.vesa@oss.qualcomm.com>
Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
---
arch/arm64/boot/dts/qcom/qcs615-ride.dts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/qcom/qcs615-ride.dts b/arch/arm64/boot/dts/qcom/qcs615-ride.dts
index 5a24c19c415e..3c204ccba052 100644
--- a/arch/arm64/boot/dts/qcom/qcs615-ride.dts
+++ b/arch/arm64/boot/dts/qcom/qcs615-ride.dts
@@ -628,7 +628,7 @@ bluetooth {
vddbtcmx-supply = <&vreg_pmu_btcmx_0p85>;
vddrfa0p8-supply = <&vreg_pmu_rfa_0p8>;
vddrfa1p2-supply = <&vreg_pmu_rfa_1p2>;
- vddrfa1p8-supply = <&vreg_pmu_rfa_1p7>;
+ vddrfa1p7-supply = <&vreg_pmu_rfa_1p7>;
};
};
--
2.52.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* Re: [PATCH v2 02/10] arm64: dts: qcom: qcs615-ride: Fix BT RFA supply name
2026-01-19 11:42 ` [PATCH v2 02/10] arm64: dts: qcom: qcs615-ride: Fix BT RFA " Konrad Dybcio
@ 2026-01-19 17:12 ` Dmitry Baryshkov
0 siblings, 0 replies; 15+ messages in thread
From: Dmitry Baryshkov @ 2026-01-19 17:12 UTC (permalink / raw)
To: Konrad Dybcio
Cc: Jeff Johnson, Bartosz Golaszewski, Marcel Holtmann,
Luiz Augusto von Dentz, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Balakrishna Godavarthi, Rocky Liao, Bjorn Andersson,
Bartosz Golaszewski, Luiz Augusto von Dentz, linux-arm-msm,
linux-bluetooth, devicetree, linux-kernel, Konrad Dybcio,
Abel Vesa, Bartosz Golaszewski
On Mon, Jan 19, 2026 at 12:42:24PM +0100, Konrad Dybcio wrote:
> From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
>
> Fix up the supply name to align with bindings.
>
> Reviewed-by: Abel Vesa <abel.vesa@oss.qualcomm.com>
> Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
> Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
> ---
> arch/arm64/boot/dts/qcom/qcs615-ride.dts | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
--
With best wishes
Dmitry
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v2 03/10] arm64: dts: qcom: sc8280xp-crd: Fix BT RFA supply name
2026-01-19 11:42 [PATCH v2 00/10] Fix up WCN6855 RFA power supply name Konrad Dybcio
2026-01-19 11:42 ` [PATCH v2 01/10] dt-bindings: net: bluetooth: qualcomm: Fix WCN6855 regulator names Konrad Dybcio
2026-01-19 11:42 ` [PATCH v2 02/10] arm64: dts: qcom: qcs615-ride: Fix BT RFA " Konrad Dybcio
@ 2026-01-19 11:42 ` Konrad Dybcio
2026-01-19 11:42 ` [PATCH v2 04/10] arm64: dts: qcom: sc8280xp-gaokun3: " Konrad Dybcio
` (6 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Konrad Dybcio @ 2026-01-19 11:42 UTC (permalink / raw)
To: Jeff Johnson, Bartosz Golaszewski, Marcel Holtmann,
Luiz Augusto von Dentz, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Balakrishna Godavarthi, Rocky Liao, Bjorn Andersson,
Konrad Dybcio, Bartosz Golaszewski
Cc: Luiz Augusto von Dentz, linux-arm-msm, linux-bluetooth,
devicetree, linux-kernel, Konrad Dybcio, Abel Vesa,
Bartosz Golaszewski
From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Fix up the supply name to align with bindings.
Reviewed-by: Abel Vesa <abel.vesa@oss.qualcomm.com>
Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
---
arch/arm64/boot/dts/qcom/sc8280xp-crd.dts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/qcom/sc8280xp-crd.dts b/arch/arm64/boot/dts/qcom/sc8280xp-crd.dts
index c53e00cae465..dcdeefd28728 100644
--- a/arch/arm64/boot/dts/qcom/sc8280xp-crd.dts
+++ b/arch/arm64/boot/dts/qcom/sc8280xp-crd.dts
@@ -787,7 +787,7 @@ bluetooth {
vddbtcmx-supply = <&vreg_pmu_btcmx_0p8>;
vddrfa0p8-supply = <&vreg_pmu_rfa_0p8>;
vddrfa1p2-supply = <&vreg_pmu_rfa_1p2>;
- vddrfa1p8-supply = <&vreg_pmu_rfa_1p7>;
+ vddrfa1p7-supply = <&vreg_pmu_rfa_1p7>;
};
};
--
2.52.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* [PATCH v2 04/10] arm64: dts: qcom: sc8280xp-gaokun3: Fix BT RFA supply name
2026-01-19 11:42 [PATCH v2 00/10] Fix up WCN6855 RFA power supply name Konrad Dybcio
` (2 preceding siblings ...)
2026-01-19 11:42 ` [PATCH v2 03/10] arm64: dts: qcom: sc8280xp-crd: " Konrad Dybcio
@ 2026-01-19 11:42 ` Konrad Dybcio
2026-01-19 11:42 ` [PATCH v2 05/10] arm64: dts: qcom: sc8280xp-x13s: " Konrad Dybcio
` (5 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Konrad Dybcio @ 2026-01-19 11:42 UTC (permalink / raw)
To: Jeff Johnson, Bartosz Golaszewski, Marcel Holtmann,
Luiz Augusto von Dentz, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Balakrishna Godavarthi, Rocky Liao, Bjorn Andersson,
Konrad Dybcio, Bartosz Golaszewski
Cc: Luiz Augusto von Dentz, linux-arm-msm, linux-bluetooth,
devicetree, linux-kernel, Konrad Dybcio, Abel Vesa,
Bartosz Golaszewski
From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Fix up the supply name to align with bindings.
Reviewed-by: Abel Vesa <abel.vesa@oss.qualcomm.com>
Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
---
arch/arm64/boot/dts/qcom/sc8280xp-huawei-gaokun3.dts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/qcom/sc8280xp-huawei-gaokun3.dts b/arch/arm64/boot/dts/qcom/sc8280xp-huawei-gaokun3.dts
index 9819454abe13..f3c00be67081 100644
--- a/arch/arm64/boot/dts/qcom/sc8280xp-huawei-gaokun3.dts
+++ b/arch/arm64/boot/dts/qcom/sc8280xp-huawei-gaokun3.dts
@@ -1122,7 +1122,7 @@ bluetooth {
vddbtcmx-supply = <&vreg_pmu_btcmx_0p8>;
vddrfa0p8-supply = <&vreg_pmu_rfa_0p8>;
vddrfa1p2-supply = <&vreg_pmu_rfa_1p2>;
- vddrfa1p8-supply = <&vreg_pmu_rfa_1p7>;
+ vddrfa1p7-supply = <&vreg_pmu_rfa_1p7>;
max-speed = <3200000>;
};
--
2.52.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* [PATCH v2 05/10] arm64: dts: qcom: sc8280xp-x13s: Fix BT RFA supply name
2026-01-19 11:42 [PATCH v2 00/10] Fix up WCN6855 RFA power supply name Konrad Dybcio
` (3 preceding siblings ...)
2026-01-19 11:42 ` [PATCH v2 04/10] arm64: dts: qcom: sc8280xp-gaokun3: " Konrad Dybcio
@ 2026-01-19 11:42 ` Konrad Dybcio
2026-01-19 11:42 ` [PATCH v2 06/10] arm64: dts: qcom: sc8280xp-blackrock: " Konrad Dybcio
` (4 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Konrad Dybcio @ 2026-01-19 11:42 UTC (permalink / raw)
To: Jeff Johnson, Bartosz Golaszewski, Marcel Holtmann,
Luiz Augusto von Dentz, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Balakrishna Godavarthi, Rocky Liao, Bjorn Andersson,
Konrad Dybcio, Bartosz Golaszewski
Cc: Luiz Augusto von Dentz, linux-arm-msm, linux-bluetooth,
devicetree, linux-kernel, Konrad Dybcio, Abel Vesa,
Bartosz Golaszewski
From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Fix up the supply name to align with bindings.
Reviewed-by: Abel Vesa <abel.vesa@oss.qualcomm.com>
Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
---
arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts b/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts
index d84ca010ab9d..abd9c5a67b9f 100644
--- a/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts
+++ b/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts
@@ -1331,7 +1331,7 @@ bluetooth {
vddbtcmx-supply = <&vreg_pmu_btcmx_0p8>;
vddrfa0p8-supply = <&vreg_pmu_rfa_0p8>;
vddrfa1p2-supply = <&vreg_pmu_rfa_1p2>;
- vddrfa1p8-supply = <&vreg_pmu_rfa_1p7>;
+ vddrfa1p7-supply = <&vreg_pmu_rfa_1p7>;
max-speed = <3200000>;
};
--
2.52.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* [PATCH v2 06/10] arm64: dts: qcom: sc8280xp-blackrock: Fix BT RFA supply name
2026-01-19 11:42 [PATCH v2 00/10] Fix up WCN6855 RFA power supply name Konrad Dybcio
` (4 preceding siblings ...)
2026-01-19 11:42 ` [PATCH v2 05/10] arm64: dts: qcom: sc8280xp-x13s: " Konrad Dybcio
@ 2026-01-19 11:42 ` Konrad Dybcio
2026-01-19 11:42 ` [PATCH v2 07/10] arm64: dts: qcom: sm8450-hdk: " Konrad Dybcio
` (3 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Konrad Dybcio @ 2026-01-19 11:42 UTC (permalink / raw)
To: Jeff Johnson, Bartosz Golaszewski, Marcel Holtmann,
Luiz Augusto von Dentz, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Balakrishna Godavarthi, Rocky Liao, Bjorn Andersson,
Konrad Dybcio, Bartosz Golaszewski
Cc: Luiz Augusto von Dentz, linux-arm-msm, linux-bluetooth,
devicetree, linux-kernel, Konrad Dybcio, Abel Vesa,
Bartosz Golaszewski
From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Fix up the supply name to align with bindings.
Reviewed-by: Abel Vesa <abel.vesa@oss.qualcomm.com>
Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
---
arch/arm64/boot/dts/qcom/sc8280xp-microsoft-blackrock.dts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/qcom/sc8280xp-microsoft-blackrock.dts b/arch/arm64/boot/dts/qcom/sc8280xp-microsoft-blackrock.dts
index 00bbeeef6f14..125af356e24b 100644
--- a/arch/arm64/boot/dts/qcom/sc8280xp-microsoft-blackrock.dts
+++ b/arch/arm64/boot/dts/qcom/sc8280xp-microsoft-blackrock.dts
@@ -976,7 +976,7 @@ bluetooth {
vddbtcmx-supply = <&vreg_pmu_btcmx_0p8>;
vddrfa0p8-supply = <&vreg_pmu_rfa_0p8>;
vddrfa1p2-supply = <&vreg_pmu_rfa_1p2>;
- vddrfa1p8-supply = <&vreg_pmu_rfa_1p7>;
+ vddrfa1p7-supply = <&vreg_pmu_rfa_1p7>;
max-speed = <3200000>;
};
--
2.52.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* [PATCH v2 07/10] arm64: dts: qcom: sm8450-hdk: Fix BT RFA supply name
2026-01-19 11:42 [PATCH v2 00/10] Fix up WCN6855 RFA power supply name Konrad Dybcio
` (5 preceding siblings ...)
2026-01-19 11:42 ` [PATCH v2 06/10] arm64: dts: qcom: sc8280xp-blackrock: " Konrad Dybcio
@ 2026-01-19 11:42 ` Konrad Dybcio
2026-01-19 11:42 ` [PATCH v2 08/10] arm64: dts: qcom: x1-omnibook-x14: " Konrad Dybcio
` (2 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Konrad Dybcio @ 2026-01-19 11:42 UTC (permalink / raw)
To: Jeff Johnson, Bartosz Golaszewski, Marcel Holtmann,
Luiz Augusto von Dentz, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Balakrishna Godavarthi, Rocky Liao, Bjorn Andersson,
Konrad Dybcio, Bartosz Golaszewski
Cc: Luiz Augusto von Dentz, linux-arm-msm, linux-bluetooth,
devicetree, linux-kernel, Konrad Dybcio, Abel Vesa,
Bartosz Golaszewski
From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Fix up the supply name to align with bindings.
Reviewed-by: Abel Vesa <abel.vesa@oss.qualcomm.com>
Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
---
arch/arm64/boot/dts/qcom/sm8450-hdk.dts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/qcom/sm8450-hdk.dts b/arch/arm64/boot/dts/qcom/sm8450-hdk.dts
index 268ae0cd642a..b37998cd9a2c 100644
--- a/arch/arm64/boot/dts/qcom/sm8450-hdk.dts
+++ b/arch/arm64/boot/dts/qcom/sm8450-hdk.dts
@@ -1172,7 +1172,7 @@ bluetooth {
vddbtcmx-supply = <&vreg_pmu_btcmx_0p8>;
vddrfa0p8-supply = <&vreg_pmu_rfa_0p8>;
vddrfa1p2-supply = <&vreg_pmu_rfa_1p2>;
- vddrfa1p8-supply = <&vreg_pmu_rfa_1p7>;
+ vddrfa1p7-supply = <&vreg_pmu_rfa_1p7>;
};
};
--
2.52.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* [PATCH v2 08/10] arm64: dts: qcom: x1-omnibook-x14: Fix BT RFA supply name
2026-01-19 11:42 [PATCH v2 00/10] Fix up WCN6855 RFA power supply name Konrad Dybcio
` (6 preceding siblings ...)
2026-01-19 11:42 ` [PATCH v2 07/10] arm64: dts: qcom: sm8450-hdk: " Konrad Dybcio
@ 2026-01-19 11:42 ` Konrad Dybcio
2026-01-19 11:42 ` [PATCH v2 09/10] arm64: dts: qcom: x1-zenbook-a14: " Konrad Dybcio
2026-01-19 11:42 ` [PATCH v2 10/10] arm64: dts: qcom: lemans-ride-common: Fix up WCN power grid Konrad Dybcio
9 siblings, 0 replies; 15+ messages in thread
From: Konrad Dybcio @ 2026-01-19 11:42 UTC (permalink / raw)
To: Jeff Johnson, Bartosz Golaszewski, Marcel Holtmann,
Luiz Augusto von Dentz, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Balakrishna Godavarthi, Rocky Liao, Bjorn Andersson,
Konrad Dybcio, Bartosz Golaszewski
Cc: Luiz Augusto von Dentz, linux-arm-msm, linux-bluetooth,
devicetree, linux-kernel, Konrad Dybcio, Abel Vesa,
Bartosz Golaszewski
From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Fix up the supply name to align with bindings.
Reviewed-by: Abel Vesa <abel.vesa@oss.qualcomm.com>
Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
---
arch/arm64/boot/dts/qcom/x1-hp-omnibook-x14.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/qcom/x1-hp-omnibook-x14.dtsi b/arch/arm64/boot/dts/qcom/x1-hp-omnibook-x14.dtsi
index a4075434162a..30f18c8cbcbc 100644
--- a/arch/arm64/boot/dts/qcom/x1-hp-omnibook-x14.dtsi
+++ b/arch/arm64/boot/dts/qcom/x1-hp-omnibook-x14.dtsi
@@ -1450,7 +1450,7 @@ bluetooth {
vddbtcmx-supply = <&vreg_pmu_btcmx_0p8>;
vddrfa0p8-supply = <&vreg_pmu_rfa_0p8>;
vddrfa1p2-supply = <&vreg_pmu_rfa_1p2>;
- vddrfa1p8-supply = <&vreg_pmu_rfa_1p7>;
+ vddrfa1p7-supply = <&vreg_pmu_rfa_1p7>;
};
};
--
2.52.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* [PATCH v2 09/10] arm64: dts: qcom: x1-zenbook-a14: Fix BT RFA supply name
2026-01-19 11:42 [PATCH v2 00/10] Fix up WCN6855 RFA power supply name Konrad Dybcio
` (7 preceding siblings ...)
2026-01-19 11:42 ` [PATCH v2 08/10] arm64: dts: qcom: x1-omnibook-x14: " Konrad Dybcio
@ 2026-01-19 11:42 ` Konrad Dybcio
2026-01-19 11:42 ` [PATCH v2 10/10] arm64: dts: qcom: lemans-ride-common: Fix up WCN power grid Konrad Dybcio
9 siblings, 0 replies; 15+ messages in thread
From: Konrad Dybcio @ 2026-01-19 11:42 UTC (permalink / raw)
To: Jeff Johnson, Bartosz Golaszewski, Marcel Holtmann,
Luiz Augusto von Dentz, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Balakrishna Godavarthi, Rocky Liao, Bjorn Andersson,
Konrad Dybcio, Bartosz Golaszewski
Cc: Luiz Augusto von Dentz, linux-arm-msm, linux-bluetooth,
devicetree, linux-kernel, Konrad Dybcio, Abel Vesa,
Bartosz Golaszewski
From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Fix up the supply name to align with bindings.
Reviewed-by: Abel Vesa <abel.vesa@oss.qualcomm.com>
Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
---
arch/arm64/boot/dts/qcom/x1p42100-asus-zenbook-a14.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/qcom/x1p42100-asus-zenbook-a14.dtsi b/arch/arm64/boot/dts/qcom/x1p42100-asus-zenbook-a14.dtsi
index 22470a97e1e3..7f5860d2b6cc 100644
--- a/arch/arm64/boot/dts/qcom/x1p42100-asus-zenbook-a14.dtsi
+++ b/arch/arm64/boot/dts/qcom/x1p42100-asus-zenbook-a14.dtsi
@@ -128,7 +128,7 @@ bluetooth {
vddbtcmx-supply = <&vreg_pmu_btcmx_0p8>;
vddrfa0p8-supply = <&vreg_pmu_rfa_0p8>;
vddrfa1p2-supply = <&vreg_pmu_rfa_1p2>;
- vddrfa1p8-supply = <&vreg_pmu_rfa_1p7>;
+ vddrfa1p7-supply = <&vreg_pmu_rfa_1p7>;
vddrfacmn-supply = <&vreg_pmu_rfa_cmn_0p8>;
vddwlcx-supply = <&vreg_pmu_wlcx_0p8>;
vddwlmx-supply = <&vreg_pmu_wlmx_0p8>;
--
2.52.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* [PATCH v2 10/10] arm64: dts: qcom: lemans-ride-common: Fix up WCN power grid
2026-01-19 11:42 [PATCH v2 00/10] Fix up WCN6855 RFA power supply name Konrad Dybcio
` (8 preceding siblings ...)
2026-01-19 11:42 ` [PATCH v2 09/10] arm64: dts: qcom: x1-zenbook-a14: " Konrad Dybcio
@ 2026-01-19 11:42 ` Konrad Dybcio
9 siblings, 0 replies; 15+ messages in thread
From: Konrad Dybcio @ 2026-01-19 11:42 UTC (permalink / raw)
To: Jeff Johnson, Bartosz Golaszewski, Marcel Holtmann,
Luiz Augusto von Dentz, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Balakrishna Godavarthi, Rocky Liao, Bjorn Andersson,
Konrad Dybcio, Bartosz Golaszewski
Cc: Luiz Augusto von Dentz, linux-arm-msm, linux-bluetooth,
devicetree, linux-kernel, Konrad Dybcio, Abel Vesa,
Bartosz Golaszewski
From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Make the dt checker happy by filling out the required properties in
line with the schematics.
Reviewed-by: Abel Vesa <abel.vesa@oss.qualcomm.com>
Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
---
arch/arm64/boot/dts/qcom/lemans-ride-common.dtsi | 32 ++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/lemans-ride-common.dtsi b/arch/arm64/boot/dts/qcom/lemans-ride-common.dtsi
index 8fb7d1fc6d56..7ae5f8447b42 100644
--- a/arch/arm64/boot/dts/qcom/lemans-ride-common.dtsi
+++ b/arch/arm64/boot/dts/qcom/lemans-ride-common.dtsi
@@ -79,6 +79,18 @@ vreg_3p0: vreg-3p0-regulator {
vin-supply = <&vreg_12p0>;
};
+ vreg_3p3: vreg-3p3-regulator {
+ compatible = "regulator-fixed";
+ regulator-name = "VREG_3P3";
+
+ regulator-always-on;
+ regulator-boot-on;
+ regulator-min-microvolt = <3300000>;
+ regulator-max-microvolt = <3300000>;
+
+ vin-supply = <&vreg_12p0>;
+ };
+
vreg_conn_1p8: vreg_conn_1p8 {
compatible = "regulator-fixed";
regulator-name = "vreg_conn_1p8";
@@ -95,6 +107,22 @@ vreg_conn_pa: vreg_conn_pa {
gpio = <&pmm8654au_1_gpios 6 GPIO_ACTIVE_HIGH>;
};
+ /*
+ * TODO: These two regulators are actually part of the removable M.2
+ * card and not the mainboard. Need to describe this differently.
+ * Functionally it works correctly, because all we need to do is to
+ * turn on the actual 3.3V supply above.
+ */
+ vreg_wcn_0p95: vreg-wcn-0p95-regulator {
+ compatible = "regulator-fixed";
+
+ regulator-name = "VREG_WCN_0P95";
+ regulator-min-microvolt = <950000>;
+ regulator-max-microvolt = <950000>;
+
+ vin-supply = <&vreg_3p3>;
+ };
+
wcn6855-pmu {
compatible = "qcom,wcn6855-pmu";
@@ -104,6 +132,8 @@ wcn6855-pmu {
vddio-supply = <&vreg_conn_pa>;
vddaon-supply = <&vreg_l2c>;
vddpmu-supply = <&vreg_conn_1p8>;
+ vddpmumx-supply = <&vreg_wcn_0p95>;
+ vddpmucx-supply = <&vreg_wcn_0p95>;
vddrfa0p95-supply = <&vreg_l2c>;
vddrfa1p3-supply = <&vreg_l6e>;
vddrfa1p9-supply = <&vreg_s5a>;
@@ -982,6 +1012,8 @@ bluetooth {
vddrfa0p8-supply = <&vreg_pmu_rfa_0p8>;
vddrfa1p2-supply = <&vreg_pmu_rfa_1p2>;
vddrfa1p7-supply = <&vreg_pmu_rfa_1p7>;
+ vddwlcx-supply = <&vreg_pmu_wlcx_0p8>;
+ vddwlmx-supply = <&vreg_pmu_wlmx_0p85>;
};
};
--
2.52.0
^ permalink raw reply related [flat|nested] 15+ messages in thread