Re: [RFC PATCH] PM / Runtime: runtime: Add sysfs option for forcing runtime suspend
From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Date: 2015-09-21 18:00:59
Also in:
linux-pm, lkml
On Mon, Sep 21, 2015 at 01:32:38PM -0400, Alan Stern wrote:
On Mon, 21 Sep 2015, Dmitry Torokhov wrote:quoted
quoted
It sounds like you are suggesting there should be a general mechanism for userspace to tell the kernel (or the input core) to ignore all events from a particular input device -- or even from all input devices -- thereby allowing those devices to go to low power.Yes. In ChromeOS we have a custim "inhibit" control that: 1. Tells input core to ignore all events form a given device 2. Allows driver to put device in low power mode if driver desires to do so. The driver can do it via runtime PM or on it's own. Usually on it's own since when using runtime PM userspace may disable it, which may not be desirable. I would love to have something generic instead of input-specific.quoted
I don't like to think of this as "forcing runtime suspend". It's more like telling the kernel that a device is no longer being used, so the natural runtime PM mechanism can put it in runtime suspend.I'd call it "accelerating" runtime suspend. Userspace tells the kernel that it intends not to use given device and kernel reacts accordingly.Okay.quoted
quoted
Perhaps another way to think about it is that these input devices should not increment their runtime usage counter as part of the open routine; they should use something other than the number of open file references to indicate when they can go into runtime suspend. (I'm not sure what else they should use, though.)I do not really want input specific support; as I mentioned before we have something like that in ChromeOS kernels but I was hesitant bringing it upstream as I believe it is not necessarily input device specific and I would love to have it implemented at device core level.That's not a bad idea. On the other hand, there must be lots of devices which would not be suitable for this. Disk drives, for instance.
Of course.
What happens if the "inhibit" control is turned on and the driver puts the device into runtime suspend, but then an I/O request arrives? If the I/O request originated from userspace, it means the user is violating the terms of the "inhibit" control. Should the request simply fail?
What user? User that inhibited it or user that tried to use the device?
What if the I/O request originated from somewhere in the kernel, not from the user?
I think we should treat in-kernel users as all other users.
Or maybe the driver would want to carry out the request, overriding the "inhibit" control temporarily. Does it simply turn off the control, meaning that the device won't go back into runtime suspend until userspace turns the control on again? Or if the driver doesn't turn off the "inhibit" control, then how does it know when it can safely put the device back into runtime suspend? Qustions like these make me think that this mechanism is best suited for a kind of device that doesn't handle I/O requests. In other words, something that just reports events as they occur -- which is another way of describing an input device!
Or maybe IIO device. Or hwmon. Or something else. I think if we allow drivers (or subsystems) to opt in into this mechanism it will solve much of worries about disks and similar devices that indeed not very suitable for such mechanism. Thanks. - Dmitry