From: Johan Hovold <johan@kernel.org>
To: Stephen Boyd <swboyd@chromium.org>
Cc: stable@vger.kernel.org, Johan Hovold <johan+linaro@kernel.org>,
linux-kernel@vger.kernel.org, patches@lists.linux.dev,
Dmitry Baryshkov <dmitry.baryshkov@linaro.org>,
Vinod Koul <vkoul@kernel.org>
Subject: Re: [PATCH 5.15.y v2 5/5] phy: qcom-qmp-combo: fix runtime suspend
Date: Mon, 23 Jan 2023 11:48:01 +0100 [thread overview]
Message-ID: <Y85l4aQmEW0iOHHa@hovoldconsulting.com> (raw)
In-Reply-To: <20230113204548.578798-6-swboyd@chromium.org>
On Fri, Jan 13, 2023 at 12:45:48PM -0800, Stephen Boyd wrote:
> From: Johan Hovold <johan+linaro@kernel.org>
>
> commit c7b98de745cffdceefc077ad5cf9cda032ef8959 upstream.
>
> Drop the confused runtime-suspend type check which effectively broke
> runtime PM if the DP child node happens to be parsed before the USB
> child node during probe (e.g. due to order of child nodes in the
> devicetree).
>
> Instead use the new driver data USB PHY pointer to access the USB
> configuration and resources.
>
> Fixes: 52e013d0bffa ("phy: qcom-qmp: Add support for DP in USB3+DP combo phy")
> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
> Signed-off-by: Johan Hovold <johan+linaro@kernel.org>
> Link: https://lore.kernel.org/r/20221114081346.5116-6-johan+linaro@kernel.org
> Signed-off-by: Vinod Koul <vkoul@kernel.org>
> [swboyd@chromium.org: Backport to pre-split driver]
> Signed-off-by: Stephen Boyd <swboyd@chromium.org>
> ---
> drivers/phy/qualcomm/phy-qcom-qmp.c | 12 ++----------
> 1 file changed, 2 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/phy/qualcomm/phy-qcom-qmp.c b/drivers/phy/qualcomm/phy-qcom-qmp.c
> index b8646eaf1767..64a42e28e99f 100644
> --- a/drivers/phy/qualcomm/phy-qcom-qmp.c
> +++ b/drivers/phy/qualcomm/phy-qcom-qmp.c
> @@ -4985,15 +4985,11 @@ static void qcom_qmp_phy_disable_autonomous_mode(struct qmp_phy *qphy)
> static int __maybe_unused qcom_qmp_phy_runtime_suspend(struct device *dev)
> {
> struct qcom_qmp *qmp = dev_get_drvdata(dev);
> - struct qmp_phy *qphy = qmp->phys[0];
> + struct qmp_phy *qphy = qmp->usb_phy;
> const struct qmp_phy_cfg *cfg = qphy->cfg;
>
> dev_vdbg(dev, "Suspending QMP phy, mode:%d\n", qphy->mode);
>
> - /* Supported only for USB3 PHY and luckily USB3 is the first phy */
> - if (cfg->type != PHY_TYPE_USB3)
> - return 0;
This is still not correct as this code would now be executed also for
PCIe and UFS PHYs, which wasn't the case before.
> -
> if (!qmp->init_count) {
> dev_vdbg(dev, "PHY not initialized, bailing out\n");
> return 0;
Johan
next prev parent reply other threads:[~2023-01-23 10:48 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-13 20:45 [PATCH 5.15.y v2 0/5] phy: qcom-qmp-combo: Backport some stable fixes Stephen Boyd
2023-01-13 20:45 ` [PATCH 5.15.y v2 1/5] phy: qcom-qmp-combo: disable runtime PM on unbind Stephen Boyd
2023-01-13 20:45 ` [PATCH 5.15.y v2 2/5] phy: qcom-qmp-combo: fix memleak on probe deferral Stephen Boyd
2023-01-13 20:45 ` [PATCH 5.15.y v2 3/5] phy: qcom-qmp-usb: " Stephen Boyd
2023-01-13 20:45 ` [PATCH 5.15.y v2 4/5] phy: qcom-qmp-combo: fix broken power on Stephen Boyd
2023-01-13 20:45 ` [PATCH 5.15.y v2 5/5] phy: qcom-qmp-combo: fix runtime suspend Stephen Boyd
2023-01-23 10:48 ` Johan Hovold [this message]
2023-02-02 21:49 ` Stephen Boyd
2023-01-22 14:23 ` [PATCH 5.15.y v2 0/5] phy: qcom-qmp-combo: Backport some stable fixes Greg KH
2023-02-02 22:27 ` Stephen Boyd
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=Y85l4aQmEW0iOHHa@hovoldconsulting.com \
--to=johan@kernel.org \
--cc=dmitry.baryshkov@linaro.org \
--cc=johan+linaro@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=patches@lists.linux.dev \
--cc=stable@vger.kernel.org \
--cc=swboyd@chromium.org \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox