From: sashiko-bot@kernel.org
To: "Marek Vasut" <marek.vasut+renesas@mailbox.org>
Cc: devicetree@vger.kernel.org, robh@kernel.org, conor+dt@kernel.org,
wsa+renesas@sang-engineering.com
Subject: Re: [PATCH v5 2/2] usb: dwc3: dwc3-generic-plat: Add Renesas R-Car Gen5 DWC3 xHCI USB controller glue
Date: Fri, 28 Aug 2026 18:30:46 +0000 [thread overview]
Message-ID: <20260828183046.86F731F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260828182415.388367-2-marek.vasut+renesas@mailbox.org>
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [High] Missing 'maximum-speed' DT property incorrectly forces the controller into USB 2.0-only mode, overriding PHY-based detection.
--
commit 0727bb2cc9c155e4d5497db94c337bc5b2603464
Author: Thanh Quan <thanh.quan.xn@renesas.com>
usb: dwc3: dwc3-generic-plat: Add Renesas R-Car Gen5 DWC3 xHCI USB controller glue
This commit extends the generic DWC3 platform driver with glue logic for
Renesas R-Car Gen5 USB controllers. It handles hardware initialization and
evaluates PHY presence alongside device tree properties to determine maximum
supported USB speeds.
> diff --git a/drivers/usb/dwc3/dwc3-generic-plat.c b/drivers/usb/dwc3/dwc3-generic-plat.c
> index ca69ac0eb07ce..3994a6d93b9de 100644
> --- a/drivers/usb/dwc3/dwc3-generic-plat.c
> +++ b/drivers/usb/dwc3/dwc3-generic-plat.c
[ ... ]
> @@ -71,6 +71,55 @@ static int dwc3_eic7700_init(struct dwc3_generic *dwc3g)
> return 0;
> }
>
> +static int dwc3_renesas_rcar_gen5_init(struct dwc3_generic *dwc3g)
> +{
> + struct device *dev = dwc3g->dev;
> + struct platform_device *pdev = to_platform_device(dev);
> + enum usb_device_speed speed = usb_get_maximum_speed(dev);
> + bool usb2only = false;
> + void __iomem *glue;
> +
> + /* Wireless USB is not supported */
> + if (speed == USB_SPEED_WIRELESS)
> + return dev_err_probe(dev, -EINVAL, "Wireless USB not supported\n");
> +
> + /* No USB 3 PHY in DT means this is surely USB 2 controller */
> + if (device_property_match_string(dev, "phy-names", "usb3-phy") < 0)
> + usb2only = true;
> +
> + if (speed <= USB_SPEED_HIGH)
> + usb2only = true;
[Severity: High]
Will this condition inadvertently force the controller into USB 2.0 mode when
the maximum-speed property is missing from the device tree?
When the maximum-speed property is absent, usb_get_maximum_speed() returns
USB_SPEED_UNKNOWN, which evaluates to 0. Since 0 is less than USB_SPEED_HIGH,
this condition evaluates to true and unconditionally sets usb2only to true.
This appears to override the preceding logic that correctly checked the
phy-names property to detect USB 3 capabilities. Could this cause hardware
with a USB 3 PHY to be improperly downgraded to USB 2.0 mode?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260828182415.388367-1-marek.vasut+renesas@mailbox.org?part=2
next prev parent reply other threads:[~2026-08-28 18:30 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-28 18:23 [PATCH v5 1/2] dt-bindings: usb: dwc3: Document Renesas R-Car Gen5 DWC3 xHCI USB controller Marek Vasut
2026-08-28 18:23 ` [PATCH v5 2/2] usb: dwc3: dwc3-generic-plat: Add Renesas R-Car Gen5 DWC3 xHCI USB controller glue Marek Vasut
2026-08-28 18:30 ` sashiko-bot [this message]
2026-08-28 18:36 ` Marek Vasut
2026-08-28 22:40 ` Thinh Nguyen
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=20260828183046.86F731F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=marek.vasut+renesas@mailbox.org \
--cc=robh@kernel.org \
--cc=sashiko-reviews@lists.linux.dev \
--cc=wsa+renesas@sang-engineering.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox