From: Hong Liu <hong.liu@intel.com>
To: Alan Stern <stern@rowland.harvard.edu>
Cc: Alan Cox <alan@linux.intel.com>,
Kernel development list <linux-kernel@vger.kernel.org>,
Linux-pm mailing list <linux-pm@lists.linux-foundation.org>
Subject: Re: [PATCH] apds9802als: add runtime PM support
Date: Tue, 26 Oct 2010 14:05:17 +0800 [thread overview]
Message-ID: <1288073117.19329.392.camel@hongdev> (raw)
In-Reply-To: <Pine.LNX.4.44L0.1010211418520.1718-100000@iolanthe.rowland.org>
On Fri, 2010-10-22 at 02:34 +0800, Alan Stern wrote:
> On Fri, 15 Oct 2010, Alan Cox wrote:
>
> > From: Hong Liu <hong.liu@intel.com>
> >
> >
> > Update the driver for the needed runtime power features. Remove the old
> > user controlled power functions.
> >
> > Signed-off-by: Hong Liu <hong.liu@intel.com>
> > Signed-off-by: Alan Cox <alan@linux.intel.com>
>
> > diff --git a/drivers/misc/apds9802als.c b/drivers/misc/apds9802als.c
> > index fbe4960..15f9436 100644
> > --- a/drivers/misc/apds9802als.c
> > +++ b/drivers/misc/apds9802als.c
>
> > @@ -265,13 +274,34 @@ static int apds9802als_suspend(struct i2c_client *client, pm_message_t mesg)
> >
> > static int apds9802als_resume(struct i2c_client *client)
> > {
> > - struct als_data *data = i2c_get_clientdata(client);
> > + als_set_default_config(client);
> > +
> > + pm_runtime_get(&client->dev);
> > + pm_runtime_put(&client->dev);
> > + return 0;
> > +}
>
Hi, Alan
Thanks for your review.
> This almost certainly does not do what you think.
>
> pm_runtime_get() will increment the device's usage count and queue an
> asynchronous resume request. However, since the PM workqueue is frozen
> during system sleep transitions, the device will remain suspended.
>
> The pm_runtime_put() will decrement the usage count again, but since
> there is already an async resume on the queue it will not queue an
> async suspend. The final result will be that when tasks are unfrozen,
> the device will finally be resumed -- long after it should have been.
>
> It looks like what you want to do here is simply call
> apds9802als_runtime_resume() directly.
You mean apds9802als_runtime_suspend()? I want to put the device into
runtime suspended state, can I just call pm_runtime_suspend() directly?
> And according to the advice in
> Documentation/power/runtime_pm.txt section 6, you should also call
>
> pm_runtime_disable(dev);
> pm_runtime_set_active(dev);
> pm_runtime_enable(dev);
>
> You probably also do not want the asynchronous calls to
> pm_runtime_get() and pm_runtime_put() in apds9802als_probe(). A more
> common sequence is:
>
> pm_runtime_set_active(dev);
> pm_runtime_enable(dev);
I want to put the device into runtime suspend state after probe, so
pm_runtime_suspend() after these two calls is OK?
Thanks,
Hong
>
> Alan Stern
>
next prev parent reply other threads:[~2010-10-26 6:00 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-10-21 18:34 [PATCH] apds9802als: add runtime PM support Alan Stern
2010-10-26 6:05 ` Hong Liu [this message]
2010-10-26 13:51 ` Alan Stern
2010-10-27 0:39 ` Hong Liu
2010-10-27 14:13 ` Alan Stern
-- strict thread matches above, loose matches on Subject: below --
2010-10-15 13:47 Alan Cox
2010-10-22 20:03 ` Andrew Morton
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=1288073117.19329.392.camel@hongdev \
--to=hong.liu@intel.com \
--cc=alan@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@lists.linux-foundation.org \
--cc=stern@rowland.harvard.edu \
/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