From: "Rafael J. Wysocki" <rjw@sisk.pl>
To: linux-pm@lists.linux-foundation.org
Cc: Kevin Hilman <khilman@ti.com>,
"linux-omap@vger.kernel.org" <linux-omap@vger.kernel.org>,
Alan Stern <stern@rowland.harvard.edu>
Subject: Re: [linux-pm] runtime PM usage_count during driver_probe_device()?
Date: Fri, 1 Jul 2011 02:33:12 +0200 [thread overview]
Message-ID: <201107010233.12377.rjw@sisk.pl> (raw)
In-Reply-To: <87vcvmaml6.fsf@ti.com>
On Friday, July 01, 2011, Kevin Hilman wrote:
> Kevin Hilman <khilman@ti.com> writes:
>
> > Continuing on the theme of runtime PM interactions with other parts of
> > the driver core...
> >
> > In drivers/base/dd.c:driver_probe_device(), the driver core increments
> > the usage count around ->probe():
> >
> > [...]
> > pm_runtime_get_noresume(dev);
> > pm_runtime_barrier(dev);
> > ret = really_probe(dev, drv);
> > pm_runtime_put_sync(dev);
> >
> > I'm not following the reason for this. On driver's I'm familar with,
> > it's not until ->probe where pm_runtime_enable() is called. What is
> > being protected against here?
> >
> > These seem to exist since the introduction of the runtime PM core, but I
> > can't find any explanation.
> >
> > The documentation refers to the increment by the core, but not the
> > reasons why:
> >
> > If the device bus type's or driver's ->probe() or ->remove()
> > callback runs pm_runtime_suspend() or pm_runtime_idle() or their
> > asynchronous counterparts, they will fail returning -EAGAIN, because
> > the device's usage counter is incremented by the core before
> > executing ->probe() and ->remove(). Still, it may be desirable to
> > suspend the device as soon as ->probe() or ->remove() has finished,
> > so the PM core uses pm_runtime_idle_sync() to invoke the
> > subsystem-level idle callback for the device at that time.
> >
> > On a side note, the bit about -EAGAIN above is not accurate with today's
> > code. For example, __pm_runtime_suspend() returns zero when the usage
> > count decrement is non-zero, so callers can't currently know that doing
> > a pm_runtime_suspend() or pm_runtime_put_sync() in their ->probe()
> > actually didn't happen.
>
> Oops, I'm not quite right here.
>
> The doc is actually right here if the driver uses pm_runtime_suspend()
> or pm_runtime_idle() in ->probe(). It's only when drivers use
> pm_runtime_put_sync() where there wouldn't be an -EAGAIN, but that seems
> correct. Sorry for the noise.
>
> I'm still confused about the usage_count increment around ->probe
> though.
In theory it is possible that a subsystem (e.g. bus type) will enable
runtime PM for devices without drivers and will (for example) put them
into low power states until the drivers are loaded. Then, it makes
sense for the core to prevent such transitions from racing with .probe().
I'm not sure if this happens in practice, though, but also I'm not sure
whether or not that's used by USB. Moreover, even if that doesn't happen
right now, it may start to happen at one point.
Thanks,
Rafael
next prev parent reply other threads:[~2011-07-01 0:32 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-06-30 22:19 runtime PM usage_count during driver_probe_device()? Kevin Hilman
2011-07-01 0:09 ` Kevin Hilman
2011-07-01 0:33 ` Rafael J. Wysocki [this message]
2011-07-01 5:57 ` [linux-pm] " Ohad Ben-Cohen
2011-07-01 14:46 ` Kevin Hilman
2011-07-01 11:32 ` Ming Lei
2011-07-01 14:54 ` Alan Stern
2011-07-01 14:43 ` Alan Stern
2011-07-01 14:44 ` Kevin Hilman
2011-07-01 15:25 ` [linux-pm] " Alan Stern
2011-07-01 15:45 ` Kevin Hilman
2011-07-01 15:59 ` Alan Stern
2011-07-01 16:54 ` Kevin Hilman
2011-07-01 20:53 ` Rafael J. Wysocki
2011-07-01 21:12 ` Alan Stern
2011-07-01 21:44 ` Rafael J. Wysocki
2011-07-01 22:12 ` [PATCH] PM / Runtime: Update documentation regarding driver removal Rafael J. Wysocki
2011-07-01 22:49 ` Kevin Hilman
2011-07-01 21:42 ` [linux-pm] runtime PM usage_count during driver_probe_device()? Rafael J. Wysocki
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=201107010233.12377.rjw@sisk.pl \
--to=rjw@sisk.pl \
--cc=khilman@ti.com \
--cc=linux-omap@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