Linux kernel -stable discussions
 help / color / mirror / Atom feed
* FAILED: patch "[PATCH] usb: dwc3: qcom: Don't leave BCR asserted" failed to apply to 5.4-stable tree
@ 2025-07-21  9:23 gregkh
  2025-07-21 15:51 ` [PATCH 5.4.y] usb: dwc3: qcom: Don't leave BCR asserted Sasha Levin
  2025-07-22  5:04 ` [PATCH 5.4.y v2] " Sasha Levin
  0 siblings, 2 replies; 5+ messages in thread
From: gregkh @ 2025-07-21  9:23 UTC (permalink / raw)
  To: krishna.kurapati, Thinh.Nguyen, gregkh, konrad.dybcio, stable; +Cc: stable


The patch below does not apply to the 5.4-stable tree.
If someone wants it applied there, or to any other stable or longterm
tree, then please email the backport, including the original git commit
id to <stable@vger.kernel.org>.

To reproduce the conflict and resubmit, you may use the following commands:

git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/ linux-5.4.y
git checkout FETCH_HEAD
git cherry-pick -x ef8abc0ba49ce717e6bc4124e88e59982671f3b5
# <resolve conflicts, build, test, etc.>
git commit -s
git send-email --to '<stable@vger.kernel.org>' --in-reply-to '2025072117-left-ground-e763@gregkh' --subject-prefix 'PATCH 5.4.y' HEAD^..

Possible dependencies:



thanks,

greg k-h

------------------ original commit in Linus's tree ------------------

From ef8abc0ba49ce717e6bc4124e88e59982671f3b5 Mon Sep 17 00:00:00 2001
From: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>
Date: Wed, 9 Jul 2025 18:59:00 +0530
Subject: [PATCH] usb: dwc3: qcom: Don't leave BCR asserted

Leaving the USB BCR asserted prevents the associated GDSC to turn on. This
blocks any subsequent attempts of probing the device, e.g. after a probe
deferral, with the following showing in the log:

[    1.332226] usb30_prim_gdsc status stuck at 'off'

Leave the BCR deasserted when exiting the driver to avoid this issue.

Cc: stable <stable@kernel.org>
Fixes: a4333c3a6ba9 ("usb: dwc3: Add Qualcomm DWC3 glue driver")
Acked-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Signed-off-by: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>
Link: https://lore.kernel.org/r/20250709132900.3408752-1-krishna.kurapati@oss.qualcomm.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

diff --git a/drivers/usb/dwc3/dwc3-qcom.c b/drivers/usb/dwc3/dwc3-qcom.c
index 7334de85ad10..ca7e1c02773a 100644
--- a/drivers/usb/dwc3/dwc3-qcom.c
+++ b/drivers/usb/dwc3/dwc3-qcom.c
@@ -680,12 +680,12 @@ static int dwc3_qcom_probe(struct platform_device *pdev)
 	ret = reset_control_deassert(qcom->resets);
 	if (ret) {
 		dev_err(&pdev->dev, "failed to deassert resets, err=%d\n", ret);
-		goto reset_assert;
+		return ret;
 	}
 
 	ret = clk_bulk_prepare_enable(qcom->num_clocks, qcom->clks);
 	if (ret < 0)
-		goto reset_assert;
+		return ret;
 
 	r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
 	if (!r) {
@@ -755,8 +755,6 @@ static int dwc3_qcom_probe(struct platform_device *pdev)
 	dwc3_core_remove(&qcom->dwc);
 clk_disable:
 	clk_bulk_disable_unprepare(qcom->num_clocks, qcom->clks);
-reset_assert:
-	reset_control_assert(qcom->resets);
 
 	return ret;
 }
@@ -771,7 +769,6 @@ static void dwc3_qcom_remove(struct platform_device *pdev)
 	clk_bulk_disable_unprepare(qcom->num_clocks, qcom->clks);
 
 	dwc3_qcom_interconnect_exit(qcom);
-	reset_control_assert(qcom->resets);
 }
 
 static int dwc3_qcom_pm_suspend(struct device *dev)


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 5.4.y] usb: dwc3: qcom: Don't leave BCR asserted
  2025-07-21  9:23 FAILED: patch "[PATCH] usb: dwc3: qcom: Don't leave BCR asserted" failed to apply to 5.4-stable tree gregkh
@ 2025-07-21 15:51 ` Sasha Levin
  2025-07-21 16:03   ` Harshit Mogalapalli
  2025-07-22  5:04 ` [PATCH 5.4.y v2] " Sasha Levin
  1 sibling, 1 reply; 5+ messages in thread
From: Sasha Levin @ 2025-07-21 15:51 UTC (permalink / raw)
  To: stable
  Cc: Krishna Kurapati, stable, Thinh Nguyen, Konrad Dybcio,
	Greg Kroah-Hartman, Sasha Levin

From: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>

[ Upstream commit ef8abc0ba49ce717e6bc4124e88e59982671f3b5 ]

Leaving the USB BCR asserted prevents the associated GDSC to turn on. This
blocks any subsequent attempts of probing the device, e.g. after a probe
deferral, with the following showing in the log:

[    1.332226] usb30_prim_gdsc status stuck at 'off'

Leave the BCR deasserted when exiting the driver to avoid this issue.

Cc: stable <stable@kernel.org>
Fixes: a4333c3a6ba9 ("usb: dwc3: Add Qualcomm DWC3 glue driver")
Acked-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Signed-off-by: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>
Link: https://lore.kernel.org/r/20250709132900.3408752-1-krishna.kurapati@oss.qualcomm.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
[ adapted to individual clock management API instead of bulk clock operations ]
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/usb/dwc3/dwc3-qcom.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/drivers/usb/dwc3/dwc3-qcom.c b/drivers/usb/dwc3/dwc3-qcom.c
index 742be1e07a01d..4874a6442c806 100644
--- a/drivers/usb/dwc3/dwc3-qcom.c
+++ b/drivers/usb/dwc3/dwc3-qcom.c
@@ -615,13 +615,13 @@ static int dwc3_qcom_probe(struct platform_device *pdev)
 	ret = reset_control_deassert(qcom->resets);
 	if (ret) {
 		dev_err(&pdev->dev, "failed to deassert resets, err=%d\n", ret);
-		goto reset_assert;
+		return ret;
 	}
 
 	ret = dwc3_qcom_clk_init(qcom, of_clk_get_parent_count(np));
 	if (ret) {
 		dev_err(dev, "failed to get clocks\n");
-		goto reset_assert;
+		return ret;
 	}
 
 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
@@ -700,8 +700,6 @@ static int dwc3_qcom_probe(struct platform_device *pdev)
 		clk_disable_unprepare(qcom->clks[i]);
 		clk_put(qcom->clks[i]);
 	}
-reset_assert:
-	reset_control_assert(qcom->resets);
 
 	return ret;
 }
@@ -725,7 +723,7 @@ static int dwc3_qcom_remove(struct platform_device *pdev)
 	}
 	qcom->num_clocks = 0;
 
-	reset_control_assert(qcom->resets);
+	dwc3_qcom_interconnect_exit(qcom);
 
 	pm_runtime_allow(dev);
 	pm_runtime_disable(dev);
-- 
2.39.5


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 5.4.y] usb: dwc3: qcom: Don't leave BCR asserted
  2025-07-21 15:51 ` [PATCH 5.4.y] usb: dwc3: qcom: Don't leave BCR asserted Sasha Levin
@ 2025-07-21 16:03   ` Harshit Mogalapalli
  2025-07-22  5:01     ` Sasha Levin
  0 siblings, 1 reply; 5+ messages in thread
From: Harshit Mogalapalli @ 2025-07-21 16:03 UTC (permalink / raw)
  To: Sasha Levin, stable
  Cc: Krishna Kurapati, stable, Thinh Nguyen, Konrad Dybcio,
	Greg Kroah-Hartman

Hi Sasha,

On 21/07/25 21:21, Sasha Levin wrote:
> From: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>
> 
> [ Upstream commit ef8abc0ba49ce717e6bc4124e88e59982671f3b5 ]
> 
> Leaving the USB BCR asserted prevents the associated GDSC to turn on. This
> blocks any subsequent attempts of probing the device, e.g. after a probe
> deferral, with the following showing in the log:
> 
> [    1.332226] usb30_prim_gdsc status stuck at 'off'
> 
> Leave the BCR deasserted when exiting the driver to avoid this issue.
> 
> Cc: stable <stable@kernel.org>
> Fixes: a4333c3a6ba9 ("usb: dwc3: Add Qualcomm DWC3 glue driver")
> Acked-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
> Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
> Signed-off-by: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>
> Link: https://lore.kernel.org/r/20250709132900.3408752-1-krishna.kurapati@oss.qualcomm.com
> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> [ adapted to individual clock management API instead of bulk clock operations ]
> Signed-off-by: Sasha Levin <sashal@kernel.org>
> ---
>   drivers/usb/dwc3/dwc3-qcom.c | 8 +++-----
>   1 file changed, 3 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/usb/dwc3/dwc3-qcom.c b/drivers/usb/dwc3/dwc3-qcom.c
> index 742be1e07a01d..4874a6442c806 100644
> --- a/drivers/usb/dwc3/dwc3-qcom.c
> +++ b/drivers/usb/dwc3/dwc3-qcom.c
> @@ -615,13 +615,13 @@ static int dwc3_qcom_probe(struct platform_device *pdev)
>   	ret = reset_control_deassert(qcom->resets);
>   	if (ret) {
>   		dev_err(&pdev->dev, "failed to deassert resets, err=%d\n", ret);
> -		goto reset_assert;
> +		return ret;
>   	}
>   
>   	ret = dwc3_qcom_clk_init(qcom, of_clk_get_parent_count(np));
>   	if (ret) {
>   		dev_err(dev, "failed to get clocks\n");
> -		goto reset_assert;
> +		return ret;
>   	}
>   
>   	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> @@ -700,8 +700,6 @@ static int dwc3_qcom_probe(struct platform_device *pdev)
>   		clk_disable_unprepare(qcom->clks[i]);
>   		clk_put(qcom->clks[i]);
>   	}
> -reset_assert:
> -	reset_control_assert(qcom->resets);
>   
>   	return ret;
>   }
> @@ -725,7 +723,7 @@ static int dwc3_qcom_remove(struct platform_device *pdev)
>   	}
>   	qcom->num_clocks = 0;
>   
> -	reset_control_assert(qcom->resets);
> +	dwc3_qcom_interconnect_exit(qcom);
>   

^^ This part of diff doesn't look good to me. Can you please double 
check the conflict resolution ? (Probably shouldn't have addition in 
this hunk)

Thanks,
Harshit
>   	pm_runtime_allow(dev);
>   	pm_runtime_disable(dev);


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 5.4.y] usb: dwc3: qcom: Don't leave BCR asserted
  2025-07-21 16:03   ` Harshit Mogalapalli
@ 2025-07-22  5:01     ` Sasha Levin
  0 siblings, 0 replies; 5+ messages in thread
From: Sasha Levin @ 2025-07-22  5:01 UTC (permalink / raw)
  To: Harshit Mogalapalli
  Cc: stable, Krishna Kurapati, stable, Thinh Nguyen, Konrad Dybcio,
	Greg Kroah-Hartman

On Mon, Jul 21, 2025 at 09:33:11PM +0530, Harshit Mogalapalli wrote:
>Hi Sasha,
>
>On 21/07/25 21:21, Sasha Levin wrote:
>>From: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>
>>
>>[ Upstream commit ef8abc0ba49ce717e6bc4124e88e59982671f3b5 ]
>>
>>Leaving the USB BCR asserted prevents the associated GDSC to turn on. This
>>blocks any subsequent attempts of probing the device, e.g. after a probe
>>deferral, with the following showing in the log:
>>
>>[    1.332226] usb30_prim_gdsc status stuck at 'off'
>>
>>Leave the BCR deasserted when exiting the driver to avoid this issue.
>>
>>Cc: stable <stable@kernel.org>
>>Fixes: a4333c3a6ba9 ("usb: dwc3: Add Qualcomm DWC3 glue driver")
>>Acked-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
>>Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
>>Signed-off-by: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>
>>Link: https://lore.kernel.org/r/20250709132900.3408752-1-krishna.kurapati@oss.qualcomm.com
>>Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
>>[ adapted to individual clock management API instead of bulk clock operations ]
>>Signed-off-by: Sasha Levin <sashal@kernel.org>
>>---
>>  drivers/usb/dwc3/dwc3-qcom.c | 8 +++-----
>>  1 file changed, 3 insertions(+), 5 deletions(-)
>>
>>diff --git a/drivers/usb/dwc3/dwc3-qcom.c b/drivers/usb/dwc3/dwc3-qcom.c
>>index 742be1e07a01d..4874a6442c806 100644
>>--- a/drivers/usb/dwc3/dwc3-qcom.c
>>+++ b/drivers/usb/dwc3/dwc3-qcom.c
>>@@ -615,13 +615,13 @@ static int dwc3_qcom_probe(struct platform_device *pdev)
>>  	ret = reset_control_deassert(qcom->resets);
>>  	if (ret) {
>>  		dev_err(&pdev->dev, "failed to deassert resets, err=%d\n", ret);
>>-		goto reset_assert;
>>+		return ret;
>>  	}
>>  	ret = dwc3_qcom_clk_init(qcom, of_clk_get_parent_count(np));
>>  	if (ret) {
>>  		dev_err(dev, "failed to get clocks\n");
>>-		goto reset_assert;
>>+		return ret;
>>  	}
>>  	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
>>@@ -700,8 +700,6 @@ static int dwc3_qcom_probe(struct platform_device *pdev)
>>  		clk_disable_unprepare(qcom->clks[i]);
>>  		clk_put(qcom->clks[i]);
>>  	}
>>-reset_assert:
>>-	reset_control_assert(qcom->resets);
>>  	return ret;
>>  }
>>@@ -725,7 +723,7 @@ static int dwc3_qcom_remove(struct platform_device *pdev)
>>  	}
>>  	qcom->num_clocks = 0;
>>-	reset_control_assert(qcom->resets);
>>+	dwc3_qcom_interconnect_exit(qcom);
>
>^^ This part of diff doesn't look good to me. Can you please double 
>check the conflict resolution ? (Probably shouldn't have addition in 
>this hunk)

You're right! It came from the 5.10 backport which I've cherry picked
onto 5.4. I'll resend.

-- 
Thanks,
Sasha

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 5.4.y v2] usb: dwc3: qcom: Don't leave BCR asserted
  2025-07-21  9:23 FAILED: patch "[PATCH] usb: dwc3: qcom: Don't leave BCR asserted" failed to apply to 5.4-stable tree gregkh
  2025-07-21 15:51 ` [PATCH 5.4.y] usb: dwc3: qcom: Don't leave BCR asserted Sasha Levin
@ 2025-07-22  5:04 ` Sasha Levin
  1 sibling, 0 replies; 5+ messages in thread
From: Sasha Levin @ 2025-07-22  5:04 UTC (permalink / raw)
  To: stable
  Cc: Krishna Kurapati, stable, Thinh Nguyen, Konrad Dybcio,
	Greg Kroah-Hartman, Sasha Levin

From: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>

[ Upstream commit ef8abc0ba49ce717e6bc4124e88e59982671f3b5 ]

Leaving the USB BCR asserted prevents the associated GDSC to turn on. This
blocks any subsequent attempts of probing the device, e.g. after a probe
deferral, with the following showing in the log:

[    1.332226] usb30_prim_gdsc status stuck at 'off'

Leave the BCR deasserted when exiting the driver to avoid this issue.

Cc: stable <stable@kernel.org>
Fixes: a4333c3a6ba9 ("usb: dwc3: Add Qualcomm DWC3 glue driver")
Acked-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Signed-off-by: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>
Link: https://lore.kernel.org/r/20250709132900.3408752-1-krishna.kurapati@oss.qualcomm.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
[ adapted to individual clock management API instead of bulk clock operations ]
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/usb/dwc3/dwc3-qcom.c | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/drivers/usb/dwc3/dwc3-qcom.c b/drivers/usb/dwc3/dwc3-qcom.c
index 742be1e07a01d..8be05c7fc98b8 100644
--- a/drivers/usb/dwc3/dwc3-qcom.c
+++ b/drivers/usb/dwc3/dwc3-qcom.c
@@ -615,13 +615,13 @@ static int dwc3_qcom_probe(struct platform_device *pdev)
 	ret = reset_control_deassert(qcom->resets);
 	if (ret) {
 		dev_err(&pdev->dev, "failed to deassert resets, err=%d\n", ret);
-		goto reset_assert;
+		return ret;
 	}
 
 	ret = dwc3_qcom_clk_init(qcom, of_clk_get_parent_count(np));
 	if (ret) {
 		dev_err(dev, "failed to get clocks\n");
-		goto reset_assert;
+		return ret;
 	}
 
 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
@@ -700,8 +700,6 @@ static int dwc3_qcom_probe(struct platform_device *pdev)
 		clk_disable_unprepare(qcom->clks[i]);
 		clk_put(qcom->clks[i]);
 	}
-reset_assert:
-	reset_control_assert(qcom->resets);
 
 	return ret;
 }
@@ -725,8 +723,6 @@ static int dwc3_qcom_remove(struct platform_device *pdev)
 	}
 	qcom->num_clocks = 0;
 
-	reset_control_assert(qcom->resets);
-
 	pm_runtime_allow(dev);
 	pm_runtime_disable(dev);
 
-- 
2.39.5


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-07-22  5:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-21  9:23 FAILED: patch "[PATCH] usb: dwc3: qcom: Don't leave BCR asserted" failed to apply to 5.4-stable tree gregkh
2025-07-21 15:51 ` [PATCH 5.4.y] usb: dwc3: qcom: Don't leave BCR asserted Sasha Levin
2025-07-21 16:03   ` Harshit Mogalapalli
2025-07-22  5:01     ` Sasha Levin
2025-07-22  5:04 ` [PATCH 5.4.y v2] " Sasha Levin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox