All of lore.kernel.org
 help / color / mirror / Atom feed
From: sashiko-bot@kernel.org
To: "Sebastian Reichel" <sebastian.reichel@collabora.com>
Cc: devicetree@vger.kernel.org, olteanv@gmail.com,
	neil.armstrong@linaro.org, linux-phy@lists.infradead.org,
	conor+dt@kernel.org, vkoul@kernel.org, robh@kernel.org
Subject: Re: [PATCH v7 02/27] phy: rockchip: usbdp: Update mode_change after error handling
Date: Thu, 25 Jun 2026 18:00:00 +0000	[thread overview]
Message-ID: <20260625180000.CD5371F00A3D@smtp.kernel.org> (raw)
In-Reply-To: <20260625-rockchip-usbdp-cleanup-v7-2-38eb3cf654fd@collabora.com>

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:

Pre-existing issues:
- [High] Asynchronous mode changes orphan PHY status bits causing permanent clock and PHY power leaks.
--

commit 1706823bf92c7aae72801ef7a1f3c4258e09e79e
Author: Sebastian Reichel <sebastian.reichel@collabora.com>

phy: rockchip: usbdp: Update mode_change after error handling

This commit updates rk_udphy_power_on() to clear the mode_change flag
only after all potential errors have been handled. This ensures that
if initialization fails, the driver will correctly attempt to
reinitialize on the next try.

Closes: https://lore.kernel.org/linux-phy/20260612163835.8D5471F000E9@smtp.kernel.org/

> diff --git a/drivers/phy/rockchip/phy-rockchip-usbdp.c b/drivers/phy/rockchip/phy-rockchip-usbdp.c
> index fba35510d88ce..a5ffdf7a6e76b 100644
> --- a/drivers/phy/rockchip/phy-rockchip-usbdp.c
> +++ b/drivers/phy/rockchip/phy-rockchip-usbdp.c
> @@ -1000,15 +1000,14 @@ static int rk_udphy_power_on(struct rk_udphy *udphy, u8 mode)
>  	}
>  
>  	if (udphy->status == UDPHY_MODE_NONE) {
> -		udphy->mode_change = false;
>  		ret = rk_udphy_setup(udphy);
>  		if (ret)
>  			return ret;
>  
>  		if (udphy->mode & UDPHY_MODE_USB)
>  			rk_udphy_u3_port_disable(udphy, false);

[Severity: High]
This isn't a bug introduced by this patch, but could asynchronous mode
changes orphan PHY status bits here and cause permanent clock and power
leaks?

If a Type-C AltMode is negotiated that drops a previously available mode
(for example, dropping USB when transitioning to TYPEC_DP_STATE_C), the
Type-C mux callback in rk_udphy_typec_mux_set() updates the volatile
udphy->mode asynchronously:

    rk_udphy_set_typec_state(udphy, state->mode);

When the USB framework reacts and calls phy_exit(), rk_udphy_usb3_phy_exit()
checks the newly updated mode instead of the active status:

    if (!(udphy->mode & UDPHY_MODE_USB) || udphy->hs)
        return 0;

    rk_udphy_power_off(udphy, UDPHY_MODE_USB);

Because udphy->mode no longer contains the USB bit, the driver aborts early
without actually powering off the hardware.

Additionally, rk_udphy_power_off() itself redundantly checks udphy->mode:

    if (!(udphy->mode & mode)) {
        dev_info(udphy->dev, "mode 0x%02x is not support\n", mode);
        return;
    }

This leaves the active mode bit permanently orphaned in udphy->status,
which prevents rk_udphy_disable() from ever executing. Should the teardown
paths be validating against udphy->status instead of udphy->mode to avoid
this desynchronization?

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260625-rockchip-usbdp-cleanup-v7-0-38eb3cf654fd@collabora.com?part=2

WARNING: multiple messages have this Message-ID (diff)
From: sashiko-bot@kernel.org
To: "Sebastian Reichel" <sebastian.reichel@collabora.com>
Cc: devicetree@vger.kernel.org, olteanv@gmail.com,
	neil.armstrong@linaro.org, linux-phy@lists.infradead.org,
	conor+dt@kernel.org, vkoul@kernel.org, robh@kernel.org
Subject: Re: [PATCH v7 02/27] phy: rockchip: usbdp: Update mode_change after error handling
Date: Thu, 25 Jun 2026 18:00:00 +0000	[thread overview]
Message-ID: <20260625180000.CD5371F00A3D@smtp.kernel.org> (raw)
In-Reply-To: <20260625-rockchip-usbdp-cleanup-v7-2-38eb3cf654fd@collabora.com>

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:

Pre-existing issues:
- [High] Asynchronous mode changes orphan PHY status bits causing permanent clock and PHY power leaks.
--

commit 1706823bf92c7aae72801ef7a1f3c4258e09e79e
Author: Sebastian Reichel <sebastian.reichel@collabora.com>

phy: rockchip: usbdp: Update mode_change after error handling

This commit updates rk_udphy_power_on() to clear the mode_change flag
only after all potential errors have been handled. This ensures that
if initialization fails, the driver will correctly attempt to
reinitialize on the next try.

Closes: https://lore.kernel.org/linux-phy/20260612163835.8D5471F000E9@smtp.kernel.org/

> diff --git a/drivers/phy/rockchip/phy-rockchip-usbdp.c b/drivers/phy/rockchip/phy-rockchip-usbdp.c
> index fba35510d88ce..a5ffdf7a6e76b 100644
> --- a/drivers/phy/rockchip/phy-rockchip-usbdp.c
> +++ b/drivers/phy/rockchip/phy-rockchip-usbdp.c
> @@ -1000,15 +1000,14 @@ static int rk_udphy_power_on(struct rk_udphy *udphy, u8 mode)
>  	}
>  
>  	if (udphy->status == UDPHY_MODE_NONE) {
> -		udphy->mode_change = false;
>  		ret = rk_udphy_setup(udphy);
>  		if (ret)
>  			return ret;
>  
>  		if (udphy->mode & UDPHY_MODE_USB)
>  			rk_udphy_u3_port_disable(udphy, false);

[Severity: High]
This isn't a bug introduced by this patch, but could asynchronous mode
changes orphan PHY status bits here and cause permanent clock and power
leaks?

If a Type-C AltMode is negotiated that drops a previously available mode
(for example, dropping USB when transitioning to TYPEC_DP_STATE_C), the
Type-C mux callback in rk_udphy_typec_mux_set() updates the volatile
udphy->mode asynchronously:

    rk_udphy_set_typec_state(udphy, state->mode);

When the USB framework reacts and calls phy_exit(), rk_udphy_usb3_phy_exit()
checks the newly updated mode instead of the active status:

    if (!(udphy->mode & UDPHY_MODE_USB) || udphy->hs)
        return 0;

    rk_udphy_power_off(udphy, UDPHY_MODE_USB);

Because udphy->mode no longer contains the USB bit, the driver aborts early
without actually powering off the hardware.

Additionally, rk_udphy_power_off() itself redundantly checks udphy->mode:

    if (!(udphy->mode & mode)) {
        dev_info(udphy->dev, "mode 0x%02x is not support\n", mode);
        return;
    }

This leaves the active mode bit permanently orphaned in udphy->status,
which prevents rk_udphy_disable() from ever executing. Should the teardown
paths be validating against udphy->status instead of udphy->mode to avoid
this desynchronization?

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260625-rockchip-usbdp-cleanup-v7-0-38eb3cf654fd@collabora.com?part=2

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

  reply	other threads:[~2026-06-25 18:00 UTC|newest]

Thread overview: 102+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-25 17:39 [PATCH v7 00/27] phy: rockchip: usbdp: Fixes, DP 1-lane support and cleanups Sebastian Reichel
2026-06-25 17:39 ` Sebastian Reichel
2026-06-25 17:39 ` Sebastian Reichel
2026-06-25 17:39 ` [PATCH v7 01/27] dt-bindings: phy: rockchip-usbdp: add improved ports scheme Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39 ` [PATCH v7 02/27] phy: rockchip: usbdp: Update mode_change after error handling Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 18:00   ` sashiko-bot [this message]
2026-06-25 18:00     ` sashiko-bot
2026-06-25 17:39 ` [PATCH v7 03/27] phy: rockchip: usbdp: Do not lose USB3 PHY status Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 18:06   ` sashiko-bot
2026-06-25 18:06     ` sashiko-bot
2026-06-25 17:39 ` [PATCH v7 04/27] phy: rockchip: usbdp: Fix devm_clk_bulk_get_all check Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39 ` [PATCH v7 05/27] phy: rockchip: usbdp: Handle missing clock-names DT property gracefully Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:59   ` sashiko-bot
2026-06-25 17:59     ` sashiko-bot
2026-06-25 17:39 ` [PATCH v7 06/27] phy: rockchip: usbdp: Drop seamless DP takeover Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:58   ` sashiko-bot
2026-06-25 17:58     ` sashiko-bot
2026-06-25 17:39 ` [PATCH v7 07/27] phy: rockchip: usbdp: Handle rk_udphy_reset_deassert_all errors in init check Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39 ` [PATCH v7 08/27] phy: rockchip: usbdp: Limit DP lane count to muxed lanes Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 18:07   ` sashiko-bot
2026-06-25 18:07     ` sashiko-bot
2026-06-25 17:39 ` [PATCH v7 09/27] phy: rockchip: usbdp: Keep clocks running on PHY re-init Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39 ` [PATCH v7 10/27] phy: rockchip: usbdp: Amend SSC modulation deviation Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39 ` [PATCH v7 11/27] phy: rockchip: usbdp: Fix LFPS detect threshold control Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39 ` [PATCH v7 12/27] phy: rockchip: usbdp: Add missing mode_change update Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 18:02   ` sashiko-bot
2026-06-25 18:02     ` sashiko-bot
2026-06-25 17:39 ` [PATCH v7 13/27] phy: rockchip: usbdp: Support single-lane DP Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39 ` [PATCH v7 14/27] phy: rockchip: usbdp: Rename DP lane functions Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39 ` [PATCH v7 15/27] phy: rockchip: usbdp: Use FIELD_PREP_WM16_CONST Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39 ` [PATCH v7 16/27] phy: rockchip: usbdp: Cleanup DP lane selection function Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39 ` [PATCH v7 17/27] phy: rockchip: usbdp: Register DP aux bridge Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39 ` [PATCH v7 18/27] phy: rockchip: usbdp: Drop DP HPD handling Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39 ` [PATCH v7 19/27] phy: rockchip: usbdp: Rename mode_change to phy_needs_reinit Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39 ` [PATCH v7 20/27] phy: rockchip: usbdp: Re-init the PHY on orientation change Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 18:09   ` sashiko-bot
2026-06-25 18:09     ` sashiko-bot
2026-06-25 17:39 ` [PATCH v7 21/27] phy: rockchip: usbdp: Factor out lane_mux_sel setup Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39 ` [PATCH v7 22/27] phy: rockchip: usbdp: Properly handle TYPEC_STATE_SAFE and TYPEC_STATE_USB Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 18:11   ` sashiko-bot
2026-06-25 18:11     ` sashiko-bot
2026-06-25 17:39 ` [PATCH v7 23/27] phy: rockchip: usbdp: Use guard functions for mutex Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39 ` [PATCH v7 24/27] phy: rockchip: usbdp: Support going from DP-only mode to USB mode Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 18:12   ` sashiko-bot
2026-06-25 18:12     ` sashiko-bot
2026-06-25 17:39 ` [PATCH v7 25/27] phy: rockchip: usbdp: Hold mutex in DP PHY configure Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39 ` [PATCH v7 26/27] phy: rockchip: usbdp: Add some extra debug messages Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39 ` [PATCH v7 27/27] phy: rockchip: usbdp: Avoid xHCI SErrors Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel
2026-06-25 17:39   ` Sebastian Reichel

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=20260625180000.CD5371F00A3D@smtp.kernel.org \
    --to=sashiko-bot@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --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=sebastian.reichel@collabora.com \
    --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.