All of lore.kernel.org
 help / color / mirror / Atom feed
From: sashiko-bot@kernel.org
To: "George Moussalem" <george.moussalem@outlook.com>
Cc: linux-phy@lists.infradead.org, olteanv@gmail.com,
	devicetree@vger.kernel.org, robh@kernel.org, vkoul@kernel.org,
	conor+dt@kernel.org, neil.armstrong@linaro.org
Subject: Re: [PATCH v2 04/14] arm64: dts: qcom: ipq5332: Flatten usb controller node
Date: Wed, 12 Aug 2026 10:25:52 +0000	[thread overview]
Message-ID: <20260812102553.183EC1F00A3A@smtp.kernel.org> (raw)
In-Reply-To: <20260812-ipq5018-usb3-v2-4-8f355d7ff0ef@outlook.com>

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [High] The flattened USB controller node specifies a 'reg' region that is too small, entirely excluding the QCOM wrapper register space that the driver relies on, which leads to probe failures.
--

--- Patch [4]: [PATCH v2 04/14] arm64: dts: qcom: ipq5332: Flatten usb controller node ---
commit 4c4cf3e503a7cae17e6181ac3e5f119bbfadc49e
Author: George Moussalem <george.moussalem@outlook.com>

arm64: dts: qcom: ipq5332: Flatten usb controller node

This commit flattens the usb controller node for ipq5332. It updates the
node to use the latest bindings and the flattened driver approach.

> diff --git a/arch/arm64/boot/dts/qcom/ipq5332.dtsi b/arch/arm64/boot/dts/qcom/ipq5332.dtsi
> --- a/arch/arm64/boot/dts/qcom/ipq5332.dtsi
> +++ b/arch/arm64/boot/dts/qcom/ipq5332.dtsi
> @@ -456,16 +456,9 @@ qpic_nand: spi@79b0000 {
>  			status = "disabled";
>  		};
>  
> -		usb: usb@8af8800 {
> -			compatible = "qcom,ipq5332-dwc3", "qcom,dwc3";
> -			reg = <0x08af8800 0x400>;
> -
> -			interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>,
> -				     <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>,
> -				     <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
> -			interrupt-names = "pwr_event",
> -					  "dp_hs_phy_irq",
> -					  "dm_hs_phy_irq";
> +		usb: usb@8a00000 {
> +			compatible = "qcom,ipq5332-dwc3", "qcom,snps-dwc3";
> +			reg = <0x08a00000 0xe000>;

[Severity: High]
Does this reg size need to be larger to cover the QCOM wrapper registers?

When transitioning to the flattened qcom,snps-dwc3 binding, the reg size is
set to 0xe000, which only covers the DWC3 core registers.

The dwc3-qcom.c wrapper driver relies on the qscratch wrapper registers which
reside at an offset of 0xf8800. The driver modifies the requested resource end
address to include this offset, which means devm_ioremap_resource() will
request a region that exceeds the 0xe000 byte resource specified here.

Could this overlap mismatch cause a resource conflict during
__request_region() and fail the probe with -EBUSY, rendering USB unusable
on the SoC? Should the region be expanded to cover the wrapper registers?

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260812-ipq5018-usb3-v2-0-8f355d7ff0ef@outlook.com?part=4

WARNING: multiple messages have this Message-ID (diff)
From: sashiko-bot@kernel.org
To: "George Moussalem" <george.moussalem@outlook.com>
Cc: linux-phy@lists.infradead.org, olteanv@gmail.com,
	devicetree@vger.kernel.org, robh@kernel.org, vkoul@kernel.org,
	conor+dt@kernel.org, neil.armstrong@linaro.org
Subject: Re: [PATCH v2 04/14] arm64: dts: qcom: ipq5332: Flatten usb controller node
Date: Wed, 12 Aug 2026 10:25:52 +0000	[thread overview]
Message-ID: <20260812102553.183EC1F00A3A@smtp.kernel.org> (raw)
In-Reply-To: <20260812-ipq5018-usb3-v2-4-8f355d7ff0ef@outlook.com>

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [High] The flattened USB controller node specifies a 'reg' region that is too small, entirely excluding the QCOM wrapper register space that the driver relies on, which leads to probe failures.
--

--- Patch [4]: [PATCH v2 04/14] arm64: dts: qcom: ipq5332: Flatten usb controller node ---
commit 4c4cf3e503a7cae17e6181ac3e5f119bbfadc49e
Author: George Moussalem <george.moussalem@outlook.com>

arm64: dts: qcom: ipq5332: Flatten usb controller node

This commit flattens the usb controller node for ipq5332. It updates the
node to use the latest bindings and the flattened driver approach.

> diff --git a/arch/arm64/boot/dts/qcom/ipq5332.dtsi b/arch/arm64/boot/dts/qcom/ipq5332.dtsi
> --- a/arch/arm64/boot/dts/qcom/ipq5332.dtsi
> +++ b/arch/arm64/boot/dts/qcom/ipq5332.dtsi
> @@ -456,16 +456,9 @@ qpic_nand: spi@79b0000 {
>  			status = "disabled";
>  		};
>  
> -		usb: usb@8af8800 {
> -			compatible = "qcom,ipq5332-dwc3", "qcom,dwc3";
> -			reg = <0x08af8800 0x400>;
> -
> -			interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>,
> -				     <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>,
> -				     <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
> -			interrupt-names = "pwr_event",
> -					  "dp_hs_phy_irq",
> -					  "dm_hs_phy_irq";
> +		usb: usb@8a00000 {
> +			compatible = "qcom,ipq5332-dwc3", "qcom,snps-dwc3";
> +			reg = <0x08a00000 0xe000>;

[Severity: High]
Does this reg size need to be larger to cover the QCOM wrapper registers?

When transitioning to the flattened qcom,snps-dwc3 binding, the reg size is
set to 0xe000, which only covers the DWC3 core registers.

The dwc3-qcom.c wrapper driver relies on the qscratch wrapper registers which
reside at an offset of 0xf8800. The driver modifies the requested resource end
address to include this offset, which means devm_ioremap_resource() will
request a region that exceeds the 0xe000 byte resource specified here.

Could this overlap mismatch cause a resource conflict during
__request_region() and fail the probe with -EBUSY, rendering USB unusable
on the SoC? Should the region be expanded to cover the wrapper registers?

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260812-ipq5018-usb3-v2-0-8f355d7ff0ef@outlook.com?part=4

-- 
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy

  reply	other threads:[~2026-08-12 10:25 UTC|newest]

Thread overview: 73+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-12  9:34 [PATCH v2 00/14] Enable USB3 for Qualcomm IPQ5018 and IPQ5332 George Moussalem via B4 Relay
2026-08-12  9:34 ` George Moussalem via B4 Relay
2026-08-12  9:34 ` George Moussalem
2026-08-12  9:34 ` [PATCH v2 01/14] dt-bindings: phy: Document the Qualcomm IPQ5332 UNIPHY USB Super-speed PHY George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem
2026-08-12  9:41   ` sashiko-bot
2026-08-12  9:41     ` sashiko-bot
2026-08-12  9:34 ` [PATCH v2 02/14] phy: qcom: Introduce Qualcomm IPQ5332 Super-Speed USB UNIPHY driver George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem
2026-08-12  9:48   ` sashiko-bot
2026-08-12  9:48     ` sashiko-bot
2026-08-12  9:34 ` [PATCH v2 03/14] arm64: dts: qcom: ipq5018: Add USB Super-Speed PHY node George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem
2026-08-12  9:51   ` sashiko-bot
2026-08-12  9:51     ` sashiko-bot
2026-08-12  9:34 ` [PATCH v2 04/14] arm64: dts: qcom: ipq5332: Flatten usb controller node George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem
2026-08-12 10:25   ` sashiko-bot [this message]
2026-08-12 10:25     ` sashiko-bot
2026-08-12  9:34 ` [PATCH v2 05/14] arm64: dts: qcom: ipq5018: " George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem
2026-08-12  9:56   ` sashiko-bot
2026-08-12  9:56     ` sashiko-bot
2026-08-12  9:34 ` [PATCH v2 06/14] dt-bindings: usb: qcom,snps-dwc3: Add clocks for USB3 on Qualcomm IPQ5332 George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem
2026-08-12  9:46   ` sashiko-bot
2026-08-12  9:46     ` sashiko-bot
2026-08-12  9:34 ` [PATCH v2 07/14] dt-bindings: usb: qcom,snps-dwc3: Add clocks for USB3 on Qualcomm IPQ5018 George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem
2026-08-12  9:51   ` sashiko-bot
2026-08-12  9:51     ` sashiko-bot
2026-08-12  9:34 ` [PATCH v2 08/14] arm64: dts: qcom: ipq5332: Add clocks required for USB3 support George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem
2026-08-12  9:34 ` [PATCH v2 09/14] arm64: dts: qcom: ipq5018: " George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem
2026-08-12  9:48   ` sashiko-bot
2026-08-12  9:48     ` sashiko-bot
2026-08-12  9:34 ` [PATCH v2 10/14] arm64: dts: qcom: ipq5332: Add Super-Speed UNIPHY to USB node George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem
2026-08-12  9:55   ` sashiko-bot
2026-08-12  9:55     ` sashiko-bot
2026-08-12 10:56   ` Sergey Shtylyov
2026-08-12 10:56     ` Sergey Shtylyov
2026-08-12  9:34 ` [PATCH v2 11/14] arm64: dts: qcom: ipq5018: " George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem
2026-08-12  9:57   ` sashiko-bot
2026-08-12  9:57     ` sashiko-bot
2026-08-12 10:57   ` Sergey Shtylyov
2026-08-12 10:57     ` Sergey Shtylyov
2026-08-12  9:34 ` [PATCH v2 12/14] arm64: dts: qcom: ipq5332: Enable USB Super-Speed PHY George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem
2026-08-12  9:54   ` sashiko-bot
2026-08-12  9:54     ` sashiko-bot
2026-08-12  9:34 ` [PATCH v2 13/14] arm64: dts: qcom: ipq5018: " George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem
2026-08-12  9:57   ` sashiko-bot
2026-08-12  9:57     ` sashiko-bot
2026-08-12  9:34 ` [PATCH v2 14/14] arm64: defconfig: Enable qcom USB UNIPHY driver George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem via B4 Relay
2026-08-12  9:34   ` George Moussalem

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=20260812102553.183EC1F00A3A@smtp.kernel.org \
    --to=sashiko-bot@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=george.moussalem@outlook.com \
    --cc=linux-phy@lists.infradead.org \
    --cc=neil.armstrong@linaro.org \
    --cc=olteanv@gmail.com \
    --cc=robh@kernel.org \
    --cc=sashiko-reviews@lists.linux.dev \
    --cc=vkoul@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.