* [PATCH 0/2] Add missing quirk for HS only USB controller
@ 2025-10-24 10:50 Krishna Kurapati
2025-10-24 10:50 ` [PATCH 1/2] arm64: dts: qcom: x1e80100: " Krishna Kurapati
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Krishna Kurapati @ 2025-10-24 10:50 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Abel Vesa, Rajendra Nayak, Sibi Sankar,
Shazad Hussain
Cc: linux-arm-msm, devicetree, linux-kernel, Krishna Kurapati
The PIPE clock is provided by the USB3 PHY, which is predictably not
connected to the HS-only controller. Add "qcom,select-utmi-as-pipe-clk"
quirk to HS only USB controller to disable pipe clock requirement.
This series has only been compile tested.
Krishna Kurapati (2):
arm64: dts: qcom: x1e80100: Add missing quirk for HS only USB
controller
arm64: dts: qcom: lemans: Add missing quirk for HS only USB controller
arch/arm64/boot/dts/qcom/lemans.dtsi | 1 +
arch/arm64/boot/dts/qcom/x1e80100.dtsi | 1 +
2 files changed, 2 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 1/2] arm64: dts: qcom: x1e80100: Add missing quirk for HS only USB controller
2025-10-24 10:50 [PATCH 0/2] Add missing quirk for HS only USB controller Krishna Kurapati
@ 2025-10-24 10:50 ` Krishna Kurapati
2025-10-24 13:14 ` Abel Vesa
2025-10-27 8:54 ` Konrad Dybcio
2025-10-24 10:50 ` [PATCH 2/2] arm64: dts: qcom: lemans: " Krishna Kurapati
2025-10-27 14:09 ` [PATCH 0/2] " Bjorn Andersson
2 siblings, 2 replies; 8+ messages in thread
From: Krishna Kurapati @ 2025-10-24 10:50 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Abel Vesa, Rajendra Nayak, Sibi Sankar,
Shazad Hussain
Cc: linux-arm-msm, devicetree, linux-kernel, Krishna Kurapati
The PIPE clock is provided by the USB3 PHY, which is predictably not
connected to the HS-only controller. Add "qcom,select-utmi-as-pipe-clk"
quirk to HS only USB controller to disable pipe clock requirement.
Fixes: 4af46b7bd66f ("arm64: dts: qcom: x1e80100: Add USB nodes")
Signed-off-by: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>
---
arch/arm64/boot/dts/qcom/x1e80100.dtsi | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm64/boot/dts/qcom/x1e80100.dtsi b/arch/arm64/boot/dts/qcom/x1e80100.dtsi
index 633b7402ae84..087465f028f5 100644
--- a/arch/arm64/boot/dts/qcom/x1e80100.dtsi
+++ b/arch/arm64/boot/dts/qcom/x1e80100.dtsi
@@ -4949,6 +4949,7 @@ &mc_virt SLAVE_EBI1 QCOM_ICC_TAG_ALWAYS>,
interconnect-names = "usb-ddr",
"apps-usb";
+ qcom,select-utmi-as-pipe-clk;
wakeup-source;
status = "disabled";
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 2/2] arm64: dts: qcom: lemans: Add missing quirk for HS only USB controller
2025-10-24 10:50 [PATCH 0/2] Add missing quirk for HS only USB controller Krishna Kurapati
2025-10-24 10:50 ` [PATCH 1/2] arm64: dts: qcom: x1e80100: " Krishna Kurapati
@ 2025-10-24 10:50 ` Krishna Kurapati
2025-10-24 13:15 ` Abel Vesa
2025-10-27 8:54 ` Konrad Dybcio
2025-10-27 14:09 ` [PATCH 0/2] " Bjorn Andersson
2 siblings, 2 replies; 8+ messages in thread
From: Krishna Kurapati @ 2025-10-24 10:50 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Abel Vesa, Rajendra Nayak, Sibi Sankar,
Shazad Hussain
Cc: linux-arm-msm, devicetree, linux-kernel, Krishna Kurapati
The PIPE clock is provided by the USB3 PHY, which is predictably not
connected to the HS-only controller. Add "qcom,select-utmi-as-pipe-clk"
quirk to HS only USB controller to disable pipe clock requirement.
Fixes: de1001525c1a ("arm64: dts: qcom: sa8775p: add USB nodes")
Signed-off-by: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>
---
arch/arm64/boot/dts/qcom/lemans.dtsi | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm64/boot/dts/qcom/lemans.dtsi b/arch/arm64/boot/dts/qcom/lemans.dtsi
index cf685cb186ed..c2d2200d845b 100644
--- a/arch/arm64/boot/dts/qcom/lemans.dtsi
+++ b/arch/arm64/boot/dts/qcom/lemans.dtsi
@@ -4106,6 +4106,7 @@ usb_2: usb@a400000 {
<&gem_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_USB2 0>;
interconnect-names = "usb-ddr", "apps-usb";
+ qcom,select-utmi-as-pipe-clk;
wakeup-source;
iommus = <&apps_smmu 0x020 0x0>;
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] arm64: dts: qcom: x1e80100: Add missing quirk for HS only USB controller
2025-10-24 10:50 ` [PATCH 1/2] arm64: dts: qcom: x1e80100: " Krishna Kurapati
@ 2025-10-24 13:14 ` Abel Vesa
2025-10-27 8:54 ` Konrad Dybcio
1 sibling, 0 replies; 8+ messages in thread
From: Abel Vesa @ 2025-10-24 13:14 UTC (permalink / raw)
To: Krishna Kurapati
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Rajendra Nayak, Sibi Sankar, Shazad Hussain,
linux-arm-msm, devicetree, linux-kernel
On 25-10-24 16:20:18, Krishna Kurapati wrote:
> The PIPE clock is provided by the USB3 PHY, which is predictably not
> connected to the HS-only controller. Add "qcom,select-utmi-as-pipe-clk"
> quirk to HS only USB controller to disable pipe clock requirement.
>
> Fixes: 4af46b7bd66f ("arm64: dts: qcom: x1e80100: Add USB nodes")
> Signed-off-by: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>
Reviewed-by: Abel Vesa <abel.vesa@linaro.org>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 2/2] arm64: dts: qcom: lemans: Add missing quirk for HS only USB controller
2025-10-24 10:50 ` [PATCH 2/2] arm64: dts: qcom: lemans: " Krishna Kurapati
@ 2025-10-24 13:15 ` Abel Vesa
2025-10-27 8:54 ` Konrad Dybcio
1 sibling, 0 replies; 8+ messages in thread
From: Abel Vesa @ 2025-10-24 13:15 UTC (permalink / raw)
To: Krishna Kurapati
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Rajendra Nayak, Sibi Sankar, Shazad Hussain,
linux-arm-msm, devicetree, linux-kernel
On 25-10-24 16:20:19, Krishna Kurapati wrote:
> The PIPE clock is provided by the USB3 PHY, which is predictably not
> connected to the HS-only controller. Add "qcom,select-utmi-as-pipe-clk"
> quirk to HS only USB controller to disable pipe clock requirement.
>
> Fixes: de1001525c1a ("arm64: dts: qcom: sa8775p: add USB nodes")
> Signed-off-by: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>
Reviewed-by: Abel Vesa <abel.vesa@linaro.org>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] arm64: dts: qcom: x1e80100: Add missing quirk for HS only USB controller
2025-10-24 10:50 ` [PATCH 1/2] arm64: dts: qcom: x1e80100: " Krishna Kurapati
2025-10-24 13:14 ` Abel Vesa
@ 2025-10-27 8:54 ` Konrad Dybcio
1 sibling, 0 replies; 8+ messages in thread
From: Konrad Dybcio @ 2025-10-27 8:54 UTC (permalink / raw)
To: Krishna Kurapati, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Abel Vesa, Rajendra Nayak,
Sibi Sankar, Shazad Hussain
Cc: linux-arm-msm, devicetree, linux-kernel
On 10/24/25 12:50 PM, Krishna Kurapati wrote:
> The PIPE clock is provided by the USB3 PHY, which is predictably not
> connected to the HS-only controller. Add "qcom,select-utmi-as-pipe-clk"
> quirk to HS only USB controller to disable pipe clock requirement.
>
> Fixes: 4af46b7bd66f ("arm64: dts: qcom: x1e80100: Add USB nodes")
> Signed-off-by: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Konrad
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 2/2] arm64: dts: qcom: lemans: Add missing quirk for HS only USB controller
2025-10-24 10:50 ` [PATCH 2/2] arm64: dts: qcom: lemans: " Krishna Kurapati
2025-10-24 13:15 ` Abel Vesa
@ 2025-10-27 8:54 ` Konrad Dybcio
1 sibling, 0 replies; 8+ messages in thread
From: Konrad Dybcio @ 2025-10-27 8:54 UTC (permalink / raw)
To: Krishna Kurapati, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Abel Vesa, Rajendra Nayak,
Sibi Sankar, Shazad Hussain
Cc: linux-arm-msm, devicetree, linux-kernel
On 10/24/25 12:50 PM, Krishna Kurapati wrote:
> The PIPE clock is provided by the USB3 PHY, which is predictably not
> connected to the HS-only controller. Add "qcom,select-utmi-as-pipe-clk"
> quirk to HS only USB controller to disable pipe clock requirement.
>
> Fixes: de1001525c1a ("arm64: dts: qcom: sa8775p: add USB nodes")
> Signed-off-by: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Konrad
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 0/2] Add missing quirk for HS only USB controller
2025-10-24 10:50 [PATCH 0/2] Add missing quirk for HS only USB controller Krishna Kurapati
2025-10-24 10:50 ` [PATCH 1/2] arm64: dts: qcom: x1e80100: " Krishna Kurapati
2025-10-24 10:50 ` [PATCH 2/2] arm64: dts: qcom: lemans: " Krishna Kurapati
@ 2025-10-27 14:09 ` Bjorn Andersson
2 siblings, 0 replies; 8+ messages in thread
From: Bjorn Andersson @ 2025-10-27 14:09 UTC (permalink / raw)
To: Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Abel Vesa, Rajendra Nayak, Sibi Sankar, Shazad Hussain,
Krishna Kurapati
Cc: linux-arm-msm, devicetree, linux-kernel
On Fri, 24 Oct 2025 16:20:17 +0530, Krishna Kurapati wrote:
> The PIPE clock is provided by the USB3 PHY, which is predictably not
> connected to the HS-only controller. Add "qcom,select-utmi-as-pipe-clk"
> quirk to HS only USB controller to disable pipe clock requirement.
>
> This series has only been compile tested.
>
> Krishna Kurapati (2):
> arm64: dts: qcom: x1e80100: Add missing quirk for HS only USB
> controller
> arm64: dts: qcom: lemans: Add missing quirk for HS only USB controller
>
> [...]
Applied, thanks!
[1/2] arm64: dts: qcom: x1e80100: Add missing quirk for HS only USB controller
commit: 6b3e8a5d6c88609d9ce93789524f818cca0aa485
[2/2] arm64: dts: qcom: lemans: Add missing quirk for HS only USB controller
commit: 0903296efd0b4e17c8d556ce8c33347147301870
Best regards,
--
Bjorn Andersson <andersson@kernel.org>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-10-27 14:06 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-24 10:50 [PATCH 0/2] Add missing quirk for HS only USB controller Krishna Kurapati
2025-10-24 10:50 ` [PATCH 1/2] arm64: dts: qcom: x1e80100: " Krishna Kurapati
2025-10-24 13:14 ` Abel Vesa
2025-10-27 8:54 ` Konrad Dybcio
2025-10-24 10:50 ` [PATCH 2/2] arm64: dts: qcom: lemans: " Krishna Kurapati
2025-10-24 13:15 ` Abel Vesa
2025-10-27 8:54 ` Konrad Dybcio
2025-10-27 14:09 ` [PATCH 0/2] " 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).