linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] usb: cdns3: imx: simplify system pm using _force_suspend/_resume
@ 2024-07-25 21:28 Shenwei Wang
  2024-07-26  6:55 ` Greg Kroah-Hartman
  2024-07-26  6:56 ` Greg Kroah-Hartman
  0 siblings, 2 replies; 4+ messages in thread
From: Shenwei Wang @ 2024-07-25 21:28 UTC (permalink / raw)
  To: Peter Chen, Pawel Laszczak, Shawn Guo, Sascha Hauer
  Cc: Roger Quadros, Greg Kroah-Hartman, Pengutronix Kernel Team,
	Fabio Estevam, Shenwei Wang, Frank Li, linux-usb, imx,
	linux-arm-kernel, linux-imx

By utilizing _force_suspend and _force_resume, ensures a more consistent
and simple approach to handling system sleep states. It also aligns the
driver's PM behavior with the other drivers' common practices.

Fixes: db3c4e366287 ("usb: cdns3: imx: Rework system PM to avoid duplicated operations")
Reviewed-by: Frank Li <frank.li@nxp.com>
Signed-off-by: Shenwei Wang <shenwei.wang@nxp.com>
---
 drivers/usb/cdns3/cdns3-imx.c | 18 +++++++-----------
 1 file changed, 7 insertions(+), 11 deletions(-)

diff --git a/drivers/usb/cdns3/cdns3-imx.c b/drivers/usb/cdns3/cdns3-imx.c
index 281de47e2a3b..9051cbe9d68b 100644
--- a/drivers/usb/cdns3/cdns3-imx.c
+++ b/drivers/usb/cdns3/cdns3-imx.c
@@ -360,7 +360,6 @@ static int cdns_imx_suspend(struct device *dev)
 	return 0;
 }
 
-
 /* Indicate if the controller was power lost before */
 static inline bool cdns_imx_is_power_lost(struct cdns_imx *data)
 {
@@ -373,22 +372,18 @@ static inline bool cdns_imx_is_power_lost(struct cdns_imx *data)
 		return false;
 }
 
-static int __maybe_unused cdns_imx_system_suspend(struct device *dev)
-{
-	pm_runtime_put_sync(dev);
-	return 0;
-}
-
 static int __maybe_unused cdns_imx_system_resume(struct device *dev)
 {
 	struct cdns_imx *data = dev_get_drvdata(dev);
 	int ret;
 
+	ret = pm_runtime_force_resume(dev);
+	if (ret)
+		return ret;
+
 	ret = pm_runtime_resume_and_get(dev);
-	if (ret < 0) {
-		dev_err(dev, "Could not get runtime PM.\n");
+	if (ret)
 		return ret;
-	}
 
 	if (cdns_imx_is_power_lost(data)) {
 		dev_dbg(dev, "resume from power lost\n");
@@ -397,6 +392,7 @@ static int __maybe_unused cdns_imx_system_resume(struct device *dev)
 			cdns_imx_suspend(dev);
 	}
 
+	pm_runtime_put_autosuspend(dev);
 	return ret;
 }
 
@@ -411,7 +407,7 @@ static int cdns_imx_platform_suspend(struct device *dev,
 
 static const struct dev_pm_ops cdns_imx_pm_ops = {
 	SET_RUNTIME_PM_OPS(cdns_imx_suspend, cdns_imx_resume, NULL)
-	SET_SYSTEM_SLEEP_PM_OPS(cdns_imx_system_suspend, cdns_imx_system_resume)
+	SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend, cdns_imx_system_resume)
 };
 
 static const struct of_device_id cdns_imx_of_match[] = {
-- 
2.34.1



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

* Re: [PATCH] usb: cdns3: imx: simplify system pm using _force_suspend/_resume
  2024-07-25 21:28 [PATCH] usb: cdns3: imx: simplify system pm using _force_suspend/_resume Shenwei Wang
@ 2024-07-26  6:55 ` Greg Kroah-Hartman
  2024-07-26 14:35   ` [EXT] " Shenwei Wang
  2024-07-26  6:56 ` Greg Kroah-Hartman
  1 sibling, 1 reply; 4+ messages in thread
From: Greg Kroah-Hartman @ 2024-07-26  6:55 UTC (permalink / raw)
  To: Shenwei Wang
  Cc: Peter Chen, Pawel Laszczak, Shawn Guo, Sascha Hauer,
	Roger Quadros, Pengutronix Kernel Team, Fabio Estevam, Frank Li,
	linux-usb, imx, linux-arm-kernel, linux-imx

On Thu, Jul 25, 2024 at 04:28:11PM -0500, Shenwei Wang wrote:
> By utilizing _force_suspend and _force_resume, ensures a more consistent
> and simple approach to handling system sleep states. It also aligns the
> driver's PM behavior with the other drivers' common practices.
> 
> Fixes: db3c4e366287 ("usb: cdns3: imx: Rework system PM to avoid duplicated operations")
> Reviewed-by: Frank Li <frank.li@nxp.com>
> Signed-off-by: Shenwei Wang <shenwei.wang@nxp.com>
> ---
>  drivers/usb/cdns3/cdns3-imx.c | 18 +++++++-----------
>  1 file changed, 7 insertions(+), 11 deletions(-)
> 
> diff --git a/drivers/usb/cdns3/cdns3-imx.c b/drivers/usb/cdns3/cdns3-imx.c
> index 281de47e2a3b..9051cbe9d68b 100644
> --- a/drivers/usb/cdns3/cdns3-imx.c
> +++ b/drivers/usb/cdns3/cdns3-imx.c
> @@ -360,7 +360,6 @@ static int cdns_imx_suspend(struct device *dev)
>  	return 0;
>  }
>  
> -
>  /* Indicate if the controller was power lost before */
>  static inline bool cdns_imx_is_power_lost(struct cdns_imx *data)
>  {

Unneeded change here?



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

* Re: [PATCH] usb: cdns3: imx: simplify system pm using _force_suspend/_resume
  2024-07-25 21:28 [PATCH] usb: cdns3: imx: simplify system pm using _force_suspend/_resume Shenwei Wang
  2024-07-26  6:55 ` Greg Kroah-Hartman
@ 2024-07-26  6:56 ` Greg Kroah-Hartman
  1 sibling, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2024-07-26  6:56 UTC (permalink / raw)
  To: Shenwei Wang
  Cc: Peter Chen, Pawel Laszczak, Shawn Guo, Sascha Hauer,
	Roger Quadros, Pengutronix Kernel Team, Fabio Estevam, Frank Li,
	linux-usb, imx, linux-arm-kernel, linux-imx

On Thu, Jul 25, 2024 at 04:28:11PM -0500, Shenwei Wang wrote:
> By utilizing _force_suspend and _force_resume, ensures a more consistent
> and simple approach to handling system sleep states. It also aligns the
> driver's PM behavior with the other drivers' common practices.
> 
> Fixes: db3c4e366287 ("usb: cdns3: imx: Rework system PM to avoid duplicated operations")
> Reviewed-by: Frank Li <frank.li@nxp.com>
> Signed-off-by: Shenwei Wang <shenwei.wang@nxp.com>
> ---
>  drivers/usb/cdns3/cdns3-imx.c | 18 +++++++-----------
>  1 file changed, 7 insertions(+), 11 deletions(-)
> 

Hi,

This is the friendly patch-bot of Greg Kroah-Hartman.  You have sent him
a patch that has triggered this response.  He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created.  Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.

You are receiving this message because of the following common error(s)
as indicated below:

- You have marked a patch with a "Fixes:" tag for a commit that is in an
  older released kernel, yet you do not have a cc: stable line in the
  signed-off-by area at all, which means that the patch will not be
  applied to any older kernel releases.  To properly fix this, please
  follow the documented rules in the
  Documentation/process/stable-kernel-rules.rst file for how to resolve
  this.

If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.

thanks,

greg k-h's patch email bot


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

* RE: [EXT] Re: [PATCH] usb: cdns3: imx: simplify system pm using _force_suspend/_resume
  2024-07-26  6:55 ` Greg Kroah-Hartman
@ 2024-07-26 14:35   ` Shenwei Wang
  0 siblings, 0 replies; 4+ messages in thread
From: Shenwei Wang @ 2024-07-26 14:35 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Peter Chen, Pawel Laszczak, Shawn Guo, Sascha Hauer,
	Roger Quadros, Pengutronix Kernel Team, Fabio Estevam, Frank Li,
	linux-usb@vger.kernel.org, imx@lists.linux.dev,
	linux-arm-kernel@lists.infradead.org, dl-linux-imx



> -----Original Message-----
> From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Sent: Friday, July 26, 2024 1:56 AM
> To: Shenwei Wang <shenwei.wang@nxp.com>
> Cc: Peter Chen <peter.chen@kernel.org>; Pawel Laszczak
> <pawell@cadence.com>; Shawn Guo <shawnguo@kernel.org>; Sascha Hauer
> >
> > Fixes: db3c4e366287 ("usb: cdns3: imx: Rework system PM to avoid
> > duplicated operations")
> > Reviewed-by: Frank Li <frank.li@nxp.com>
> > Signed-off-by: Shenwei Wang <shenwei.wang@nxp.com>
> > ---
> >  drivers/usb/cdns3/cdns3-imx.c | 18 +++++++-----------
> >  1 file changed, 7 insertions(+), 11 deletions(-)
> >
> > diff --git a/drivers/usb/cdns3/cdns3-imx.c
> > b/drivers/usb/cdns3/cdns3-imx.c index 281de47e2a3b..9051cbe9d68b
> > 100644
> > --- a/drivers/usb/cdns3/cdns3-imx.c
> > +++ b/drivers/usb/cdns3/cdns3-imx.c
> > @@ -360,7 +360,6 @@ static int cdns_imx_suspend(struct device *dev)
> >       return 0;
> >  }
> >
> > -
> >  /* Indicate if the controller was power lost before */  static inline
> > bool cdns_imx_is_power_lost(struct cdns_imx *data)  {
> 
> Unneeded change here?
> 

That is an extraneous blank line was introduced in last commit and has been removed as part of this correction. 
If you prefer to maintain the original formatting with the extra blank line, please let me know, and I can revert this change.

Thanks,
Shenwei





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

end of thread, other threads:[~2024-07-26 14:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-25 21:28 [PATCH] usb: cdns3: imx: simplify system pm using _force_suspend/_resume Shenwei Wang
2024-07-26  6:55 ` Greg Kroah-Hartman
2024-07-26 14:35   ` [EXT] " Shenwei Wang
2024-07-26  6:56 ` Greg Kroah-Hartman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).