public inbox for linux-mmc@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mmc: sdhci-pci: move suspend/resume hooks to dev_pm_ops
@ 2011-11-01 12:34 Manuel Lauss
  2011-11-02  9:45 ` Adrian Hunter
  0 siblings, 1 reply; 4+ messages in thread
From: Manuel Lauss @ 2011-11-01 12:34 UTC (permalink / raw)
  To: linux-mmc, Chris Ball; +Cc: Manuel Lauss

Move suspend/resume/freeze/thaw hooks from struct pci_driver to dev_pm_ops,
mainly to shut up the driver cores' complaints about this driver using
both new and legacy PM methods.

Signed-off-by: Manuel Lauss <manuel.lauss@googlemail.com>
---
I've only tested suspend to ram, but it works.

 drivers/mmc/host/sdhci-pci.c |   24 ++++++++++++++++++++----
 1 files changed, 20 insertions(+), 4 deletions(-)

diff --git a/drivers/mmc/host/sdhci-pci.c b/drivers/mmc/host/sdhci-pci.c
index d833d9c..53bfbe7 100644
--- a/drivers/mmc/host/sdhci-pci.c
+++ b/drivers/mmc/host/sdhci-pci.c
@@ -993,7 +993,7 @@ static struct sdhci_ops sdhci_pci_ops = {
 
 #ifdef CONFIG_PM
 
-static int sdhci_pci_suspend(struct pci_dev *pdev, pm_message_t state)
+static int sdhci_pci_do_suspend(struct pci_dev *pdev, pm_message_t state)
 {
 	struct sdhci_pci_chip *chip;
 	struct sdhci_pci_slot *slot;
@@ -1050,8 +1050,9 @@ static int sdhci_pci_suspend(struct pci_dev *pdev, pm_message_t state)
 	return 0;
 }
 
-static int sdhci_pci_resume(struct pci_dev *pdev)
+static int sdhci_pci_resume(struct device *dev)
 {
+	struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
 	struct sdhci_pci_chip *chip;
 	struct sdhci_pci_slot *slot;
 	int i, ret;
@@ -1085,9 +1086,22 @@ static int sdhci_pci_resume(struct pci_dev *pdev)
 	return 0;
 }
 
+static int sdhci_pci_suspend(struct device *dev)
+{
+	struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
+	return sdhci_pci_do_suspend(pdev, PMSG_SUSPEND);
+}
+
+static int sdhci_pci_freeze(struct device *dev)
+{
+	struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
+	return sdhci_pci_do_suspend(pdev, PMSG_FREEZE);
+}
+
 #else /* CONFIG_PM */
 
 #define sdhci_pci_suspend NULL
+#define sdhci_pci_freeze NULL
 #define sdhci_pci_resume NULL
 
 #endif /* CONFIG_PM */
@@ -1176,6 +1190,10 @@ static int sdhci_pci_runtime_idle(struct device *dev)
 #endif
 
 static const struct dev_pm_ops sdhci_pci_pm_ops = {
+	.suspend = sdhci_pci_suspend,
+	.freeze = sdhci_pci_freeze,
+	.resume = sdhci_pci_resume,
+	.thaw = sdhci_pci_resume,
 	.runtime_suspend = sdhci_pci_runtime_suspend,
 	.runtime_resume = sdhci_pci_runtime_resume,
 	.runtime_idle = sdhci_pci_runtime_idle,
@@ -1428,8 +1446,6 @@ static struct pci_driver sdhci_driver = {
 	.id_table =	pci_ids,
 	.probe =	sdhci_pci_probe,
 	.remove =	__devexit_p(sdhci_pci_remove),
-	.suspend =	sdhci_pci_suspend,
-	.resume	=	sdhci_pci_resume,
 	.driver =	{
 		.pm =   &sdhci_pci_pm_ops
 	},
-- 
1.7.7.1


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

* Re: [PATCH] mmc: sdhci-pci: move suspend/resume hooks to dev_pm_ops
  2011-11-01 12:34 [PATCH] mmc: sdhci-pci: move suspend/resume hooks to dev_pm_ops Manuel Lauss
@ 2011-11-02  9:45 ` Adrian Hunter
  2011-11-02 10:09   ` Adrian Hunter
  2011-11-02 11:12   ` Manuel Lauss
  0 siblings, 2 replies; 4+ messages in thread
From: Adrian Hunter @ 2011-11-02  9:45 UTC (permalink / raw)
  To: Manuel Lauss; +Cc: linux-mmc, Chris Ball

On 01/11/11 14:34, Manuel Lauss wrote:
> Move suspend/resume/freeze/thaw hooks from struct pci_driver to dev_pm_ops,
> mainly to shut up the driver cores' complaints about this driver using
> both new and legacy PM methods.

Thanks for picking up on this

> 
> Signed-off-by: Manuel Lauss <manuel.lauss@googlemail.com>
> ---
> I've only tested suspend to ram, but it works.
> 
>  drivers/mmc/host/sdhci-pci.c |   24 ++++++++++++++++++++----
>  1 files changed, 20 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/mmc/host/sdhci-pci.c b/drivers/mmc/host/sdhci-pci.c
> index d833d9c..53bfbe7 100644
> --- a/drivers/mmc/host/sdhci-pci.c
> +++ b/drivers/mmc/host/sdhci-pci.c
> @@ -993,7 +993,7 @@ static struct sdhci_ops sdhci_pci_ops = {
>  
>  #ifdef CONFIG_PM
>  
> -static int sdhci_pci_suspend(struct pci_dev *pdev, pm_message_t state)
> +static int sdhci_pci_do_suspend(struct pci_dev *pdev, pm_message_t state)
>  {
>  	struct sdhci_pci_chip *chip;
>  	struct sdhci_pci_slot *slot;
> @@ -1050,8 +1050,9 @@ static int sdhci_pci_suspend(struct pci_dev *pdev, pm_message_t state)
>  	return 0;
>  }
>  
> -static int sdhci_pci_resume(struct pci_dev *pdev)
> +static int sdhci_pci_resume(struct device *dev)
>  {
> +	struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
>  	struct sdhci_pci_chip *chip;
>  	struct sdhci_pci_slot *slot;
>  	int i, ret;
> @@ -1085,9 +1086,22 @@ static int sdhci_pci_resume(struct pci_dev *pdev)
>  	return 0;
>  }
>  
> +static int sdhci_pci_suspend(struct device *dev)
> +{
> +	struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
> +	return sdhci_pci_do_suspend(pdev, PMSG_SUSPEND);

We need to get rid of state entirely.  Unfortunately that means
changing sdhci_suspend_host() and all callers

> +}
> +
> +static int sdhci_pci_freeze(struct device *dev)
> +{
> +	struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
> +	return sdhci_pci_do_suspend(pdev, PMSG_FREEZE);
> +}
> +
>  #else /* CONFIG_PM */
>  
>  #define sdhci_pci_suspend NULL
> +#define sdhci_pci_freeze NULL
>  #define sdhci_pci_resume NULL
>  
>  #endif /* CONFIG_PM */
> @@ -1176,6 +1190,10 @@ static int sdhci_pci_runtime_idle(struct device *dev)
>  #endif
>  
>  static const struct dev_pm_ops sdhci_pci_pm_ops = {
> +	.suspend = sdhci_pci_suspend,
> +	.freeze = sdhci_pci_freeze,
> +	.resume = sdhci_pci_resume,
> +	.thaw = sdhci_pci_resume,

freeze and thaw are not needed

>  	.runtime_suspend = sdhci_pci_runtime_suspend,
>  	.runtime_resume = sdhci_pci_runtime_resume,
>  	.runtime_idle = sdhci_pci_runtime_idle,
> @@ -1428,8 +1446,6 @@ static struct pci_driver sdhci_driver = {
>  	.id_table =	pci_ids,
>  	.probe =	sdhci_pci_probe,
>  	.remove =	__devexit_p(sdhci_pci_remove),
> -	.suspend =	sdhci_pci_suspend,
> -	.resume	=	sdhci_pci_resume,
>  	.driver =	{
>  		.pm =   &sdhci_pci_pm_ops
>  	},


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

* Re: [PATCH] mmc: sdhci-pci: move suspend/resume hooks to dev_pm_ops
  2011-11-02  9:45 ` Adrian Hunter
@ 2011-11-02 10:09   ` Adrian Hunter
  2011-11-02 11:12   ` Manuel Lauss
  1 sibling, 0 replies; 4+ messages in thread
From: Adrian Hunter @ 2011-11-02 10:09 UTC (permalink / raw)
  To: Manuel Lauss; +Cc: linux-mmc, Chris Ball

On 02/11/11 11:45, Adrian Hunter wrote:
> On 01/11/11 14:34, Manuel Lauss wrote:
>> Move suspend/resume/freeze/thaw hooks from struct pci_driver to dev_pm_ops,
>> mainly to shut up the driver cores' complaints about this driver using
>> both new and legacy PM methods.
> 
> Thanks for picking up on this


Also use to_pci_dev(dev) instead of container_of(dev, struct pci_dev, dev)

> 
>>
>> Signed-off-by: Manuel Lauss <manuel.lauss@googlemail.com>
>> ---
>> I've only tested suspend to ram, but it works.
>>
>>  drivers/mmc/host/sdhci-pci.c |   24 ++++++++++++++++++++----
>>  1 files changed, 20 insertions(+), 4 deletions(-)
>>
>> diff --git a/drivers/mmc/host/sdhci-pci.c b/drivers/mmc/host/sdhci-pci.c
>> index d833d9c..53bfbe7 100644
>> --- a/drivers/mmc/host/sdhci-pci.c
>> +++ b/drivers/mmc/host/sdhci-pci.c
>> @@ -993,7 +993,7 @@ static struct sdhci_ops sdhci_pci_ops = {
>>  
>>  #ifdef CONFIG_PM
>>  
>> -static int sdhci_pci_suspend(struct pci_dev *pdev, pm_message_t state)
>> +static int sdhci_pci_do_suspend(struct pci_dev *pdev, pm_message_t state)
>>  {
>>  	struct sdhci_pci_chip *chip;
>>  	struct sdhci_pci_slot *slot;
>> @@ -1050,8 +1050,9 @@ static int sdhci_pci_suspend(struct pci_dev *pdev, pm_message_t state)
>>  	return 0;
>>  }
>>  
>> -static int sdhci_pci_resume(struct pci_dev *pdev)
>> +static int sdhci_pci_resume(struct device *dev)
>>  {
>> +	struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
>>  	struct sdhci_pci_chip *chip;
>>  	struct sdhci_pci_slot *slot;
>>  	int i, ret;
>> @@ -1085,9 +1086,22 @@ static int sdhci_pci_resume(struct pci_dev *pdev)
>>  	return 0;
>>  }
>>  
>> +static int sdhci_pci_suspend(struct device *dev)
>> +{
>> +	struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
>> +	return sdhci_pci_do_suspend(pdev, PMSG_SUSPEND);
> 
> We need to get rid of state entirely.  Unfortunately that means
> changing sdhci_suspend_host() and all callers
> 
>> +}
>> +
>> +static int sdhci_pci_freeze(struct device *dev)
>> +{
>> +	struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
>> +	return sdhci_pci_do_suspend(pdev, PMSG_FREEZE);
>> +}
>> +
>>  #else /* CONFIG_PM */
>>  
>>  #define sdhci_pci_suspend NULL
>> +#define sdhci_pci_freeze NULL
>>  #define sdhci_pci_resume NULL
>>  
>>  #endif /* CONFIG_PM */
>> @@ -1176,6 +1190,10 @@ static int sdhci_pci_runtime_idle(struct device *dev)
>>  #endif
>>  
>>  static const struct dev_pm_ops sdhci_pci_pm_ops = {
>> +	.suspend = sdhci_pci_suspend,
>> +	.freeze = sdhci_pci_freeze,
>> +	.resume = sdhci_pci_resume,
>> +	.thaw = sdhci_pci_resume,
> 
> freeze and thaw are not needed
> 
>>  	.runtime_suspend = sdhci_pci_runtime_suspend,
>>  	.runtime_resume = sdhci_pci_runtime_resume,
>>  	.runtime_idle = sdhci_pci_runtime_idle,
>> @@ -1428,8 +1446,6 @@ static struct pci_driver sdhci_driver = {
>>  	.id_table =	pci_ids,
>>  	.probe =	sdhci_pci_probe,
>>  	.remove =	__devexit_p(sdhci_pci_remove),
>> -	.suspend =	sdhci_pci_suspend,
>> -	.resume	=	sdhci_pci_resume,
>>  	.driver =	{
>>  		.pm =   &sdhci_pci_pm_ops
>>  	},
> 
> 


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

* Re: [PATCH] mmc: sdhci-pci: move suspend/resume hooks to dev_pm_ops
  2011-11-02  9:45 ` Adrian Hunter
  2011-11-02 10:09   ` Adrian Hunter
@ 2011-11-02 11:12   ` Manuel Lauss
  1 sibling, 0 replies; 4+ messages in thread
From: Manuel Lauss @ 2011-11-02 11:12 UTC (permalink / raw)
  To: Adrian Hunter; +Cc: linux-mmc, Chris Ball

Hi Adrian,

On Wed, Nov 2, 2011 at 10:45 AM, Adrian Hunter <adrian.hunter@intel.com> wrote:
> On 01/11/11 14:34, Manuel Lauss wrote:
>> Move suspend/resume/freeze/thaw hooks from struct pci_driver to dev_pm_ops,
>> mainly to shut up the driver cores' complaints about this driver using
>> both new and legacy PM methods.

[...]

>> +static int sdhci_pci_suspend(struct device *dev)
>> +{
>> +     struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
>> +     return sdhci_pci_do_suspend(pdev, PMSG_SUSPEND);
>
> We need to get rid of state entirely.  Unfortunately that means
> changing sdhci_suspend_host() and all callers

This first attempt was a quick hack to get rid of the annoying messages.
I'll cook up something more thorough, hang on.

Thanks!
      Manuel Lauss

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

end of thread, other threads:[~2011-11-02 11:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-01 12:34 [PATCH] mmc: sdhci-pci: move suspend/resume hooks to dev_pm_ops Manuel Lauss
2011-11-02  9:45 ` Adrian Hunter
2011-11-02 10:09   ` Adrian Hunter
2011-11-02 11:12   ` Manuel Lauss

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