We are currently allowing ->rpm_idle() callbacks to be unassigned without
returning an error code from rpm_idle(). This has been useful to avoid
boilerplate code in drivers. Let's take this approach a step further, by
allowing unassigned ->runtime_suspend|resume() callbacks as well.
In this way, a consumer/supplier device link can be used to let a consumer
device be power managed through its supplier device, without requiring
assigned ->runtime_suspend|resume() callbacks for the consumer device, for
example.
Signed-off-by: Ulf Hansson <redacted>
---
drivers/base/power/runtime.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
From: Alan Stern <stern@rowland.harvard.edu> Date: 2021-05-28 15:27:23
On Fri, May 28, 2021 at 11:12:02AM +0200, Ulf Hansson wrote:
quoted hunk
We are currently allowing ->rpm_idle() callbacks to be unassigned without
returning an error code from rpm_idle(). This has been useful to avoid
boilerplate code in drivers. Let's take this approach a step further, by
allowing unassigned ->runtime_suspend|resume() callbacks as well.
In this way, a consumer/supplier device link can be used to let a consumer
device be power managed through its supplier device, without requiring
assigned ->runtime_suspend|resume() callbacks for the consumer device, for
example.
Signed-off-by: Ulf Hansson <redacted>
---
drivers/base/power/runtime.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
This is a change in behavior, right? What about drivers or subsystems
that don't support runtime PM and consequently don't have any RPM
callbacks assigned?
Also, assuming Rafael accepts this change, don't you also need to update
the runtime-PM documentation?
Alan Stern
-
if (dev->power.memalloc_noio) {
unsigned int noio_flag;
--
2.25.1
On Fri, 28 May 2021 at 17:27, Alan Stern [off-list ref] wrote:
On Fri, May 28, 2021 at 11:12:02AM +0200, Ulf Hansson wrote:
quoted
We are currently allowing ->rpm_idle() callbacks to be unassigned without
returning an error code from rpm_idle(). This has been useful to avoid
boilerplate code in drivers. Let's take this approach a step further, by
allowing unassigned ->runtime_suspend|resume() callbacks as well.
In this way, a consumer/supplier device link can be used to let a consumer
device be power managed through its supplier device, without requiring
assigned ->runtime_suspend|resume() callbacks for the consumer device, for
example.
Signed-off-by: Ulf Hansson <redacted>
---
drivers/base/power/runtime.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
This is a change in behavior, right? What about drivers or subsystems
that don't support runtime PM and consequently don't have any RPM
callbacks assigned?
Yes, you are right.
However, drivers/subsystems that support runtime PM should also call
pm_runtime_enable() and if they don't, the rpm_callback() should not
get called for them.
Then, at least to me, I think it would be quite odd that a
subsystem/driver that calls pm_runtime_enable(), would be checking
return values from pm_runtime_get|put_*() for -ENOSYS? I mean, why
bother calling pm_runtime_enable() in the first place?
Also, assuming Rafael accepts this change, don't you also need to update
the runtime-PM documentation?
Good point, thanks! Let me add a patch updating the docs.