Re: [patch] pm: fix runtime powermanagement's /sys interface
From: Pavel Machek <hidden>
Date: 2006-01-05 22:44:24
Also in:
lkml
On Čt 05-01-06 14:15:39, Patrick Mochel wrote:
On Thu, 5 Jan 2006, Pavel Machek wrote:quoted
Do you have the patch to filter bad values? I submitted one. You rejected it, because it does not support D1. Never mind that original code does not support D1, either. [Should I retransmit the patch?]No, I offered guidance in one of the first emails. The code that exports a 'power' file for every single device from the driver model core should be removed. It should be replaced with a file exported by the bus driver that exports the actual states that the device supports. The parsing can easily happen at this point, because the bus knows what a good value is.
(1) would change core<->driver interface (2) is quite a lot of work (3) ...with very little benefit, until drivers support >2 states I want to fix invalid values being passed down to drivers, not rewrite half of driver model. If you want to rewrite driver model for >2 states, great, but that is going to take at least a year AFAICS, so please let me at least fix the bugs in meantime.
quoted
If you suggest to just add check for == 0 or == 2... I think I can do that, but that's going to break userspace, anyway (it passes _3_ there) and have no reasonable path to sane interface.The userspace interface is broken. We can keep it for compatability reasons, but there needs to be a new interface.
I assumed we could fix the interface without actually introducing >2 states support. That can be done in reasonable ammount of code.
quoted
quoted
If we export exactly the device states that a device supports, then we canExporting multiple states is quite a lot of code, and it needs driver changes. There's no clear benefit.I don't understand what you're saying. If I have a driver that Iwant to
~~~~~~~~~~~~~~~~~~
make support another power state and I'm willing to write that code, then there is a clear benefit to having the infrastructure for it to "just work".
I do not see such drivers around me, that's all. It seems fair to me that first driver author wanting that is the one who introduces >2 states support to generic infrastructure.
If you want a more concrete example, consider the possibility where it may be possible to reinitialize the device from D1 or D2, but not from D3. For the radeon, this is true in some cases (if I understand Ben H correctly).
...which seems like one more reason to only export "on" and "off" in radeon case. We don't want userspace to write "D3" to radeon, then wondering why it failed. Passing "on"/"off" down to radeon lets the driver decide what power state it should enter. Pavel -- Thanks, Sharp!