Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1728143
| From | "Rafael J. Wysocki" <rjw@rjwysocki.net> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [RFC] PM: Using runtime PM callbacks for system suspend/resume |
| Date | 2017-09-07 13:00 +0200 |
| Message-ID | <un2Hp-7f3-21@gated-at.bofh.it> (permalink) |
| References | <umR9f-81I-11@gated-at.bofh.it> <umYX7-4NP-15@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Thursday, September 7, 2017 8:56:07 AM CEST Ulf Hansson wrote: > On 7 September 2017 at 00:14, Rafael J. Wysocki <rjw@rjwysocki.net> wrote: > > Hi, > > > > It occurred to me earlier today that it should be possible to modify the > > PM core to get the functionality of pm_runtime_force_suspend/resume() from it > > in a somewhat nicer way which should be possible to extend to middle layers > > (bus types, PM domains etc). > > > > Say we have a flag telling the PM core to use the runtime PM path at the > > late suspend and early resume stages of system suspend/resume directly if > > it can't find "proper" callbacks for that. It is called DPM_FLAG_USE_RPM in > > the prototype patch below. > > > > The idea is to set only ->runtime_suspend and ->runtime_resume in the driver's > > dev_pm_ops and then set that flag in ->probe and be done. If the core sees > > the flag and doesn't see any "original" system sleep callbacks at the stages > > in question, it will automatically switch over to the runtime PM path and > > leave the device alone if it is already runtime-suspended. > > > > One nice thing about it is that it will happen at the core level and not in > > a driver callback, so all of the concerns regarding layering violations are > > simply not relevant any more. Also, at least in principle, it should be > > possible to extend this to middle layers that need to do some non-trivial PM > > handling, simply by making them look at that flag and honor in the same way > > as the core does that. This way drivers may still be able to reuse their > > runtime PM stuff for handling system sleep transitions even if the middle > > layers they need to work with have different things to do for runtime PM > > and system suspend/resume. Even modifying *all* middle layers in the tree to > > do take DPM_FLAG_USE_RPM into accout if set is not out of the question as far > > as I'm concerned. > > > > On top of this it should be possible to add the optimization allowing devices > > to stay suspended after system resume even if they were not suspended before. > > IMO it is better to add a separate flag for enabling it in case some drivers > > don't want it, though. > > > > So the below is just the core part and mostly a prototype to illustrate the > > idea, but at this point it looks promising to me. > > > > Comments? Concerns? > > Yes, a couple so far. > > 1) I like the overall idea, which means the PM core gets the knowledge > of what to do, based on some instructions by the driver. Yeah, it's a > great idea I think. > 2) We need also a way to allow drivers to deal with additional > operations during system suspend (and resume etc), besides making it > possible to re-use the RPM callbacks to put the device into a low > power state. Could we allow the system sleep callbacks to be present > as well when using this flag? Yes, we could. It's perfectly fine to do that with the patch I posted. One can even provide ->suspend_late or ->resume_early and set this flag even though that wouldn't make a lot of sense. :-) > Let's bring up this also at LPC next week, we can make it a part of > the ACPI slot, if needed. Agreed, and we will. Thanks, Rafael
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[RFC] PM: Using runtime PM callbacks for system suspend/resume "Rafael J. Wysocki" <rjw@rjwysocki.net> - 2017-09-07 00:40 +0200
Re: [RFC] PM: Using runtime PM callbacks for system suspend/resume Ulf Hansson <ulf.hansson@linaro.org> - 2017-09-07 09:00 +0200
Re: [RFC] PM: Using runtime PM callbacks for system suspend/resume "Rafael J. Wysocki" <rjw@rjwysocki.net> - 2017-09-07 13:00 +0200
csiph-web