From: Lina Iyer <lina.iyer@linaro.org>
To: Kevin Hilman <khilman@kernel.org>
Cc: linux-pm@vger.kernel.org, grygorii.strashko@ti.com,
ulf.hansson@linaro.org, daniel.lezcano@linaro.org,
tglx@linutronix.de, geert+renesas@glider.be,
lorenzo.pieralisi@arm.com, sboyd@codeaurora.org
Subject: Re: [RFC PATCH 1/2] PM / runtime: Add CPU runtime PM suspend/resume api
Date: Fri, 23 Oct 2015 16:13:39 -0600 [thread overview]
Message-ID: <20151023221339.GE3072@linaro.org> (raw)
In-Reply-To: <7hegglmgf3.fsf@deeprootsystems.com>
On Fri, Oct 23 2015 at 15:19 -0600, Kevin Hilman wrote:
>Lina Iyer <lina.iyer@linaro.org> writes:
>
>> CPU devices that use runtime PM, have the followign characteristics -
>> - Runs in a IRQs disabled context
>> - Every CPU does its own runtime PM
>> - CPUs do not access other CPU's runtime PM
>> - The runtime PM state of the CPU is determined by the CPU
>>
>> These allow for some interesting optimizations -
>> - The CPUs have a limited runtime PM states
>> - The runtime state of CPU need not be protected by spinlocks
>> - Options like auto-suspend/async are not relevant to CPU
>> devices
>>
>> A simplified runtime PM would therefore provide all that is needed for
>> the CPU devices.
>
>I like the idea of optimizing things for CPUs. I've assumed we would
>eventually run into latency issues when using runtime PM and genpd on
>CPUs, but I guess we're already there.
>
>> After making a quick check for the usage count of the
>> CPU devices (to allow for the CPU to not power down the domain), the
>> runtime PM could just call the PM callbacks for the CPU devices. Locking
>> is also avoided.
>
>This part is confusing (or more accurately, I am confused) more on that below...
>
>> Signed-off-by: Lina Iyer <lina.iyer@linaro.org>
>> ---
>> drivers/base/power/runtime.c | 61 ++++++++++++++++++++++++++++++++++++++++++++
>> include/linux/pm_runtime.h | 3 ++-
>> 2 files changed, 63 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/base/power/runtime.c b/drivers/base/power/runtime.c
>> index e1a10a0..5f7512c 100644
>> --- a/drivers/base/power/runtime.c
>> +++ b/drivers/base/power/runtime.c
>> @@ -13,6 +13,7 @@
>> #include <linux/pm_wakeirq.h>
>> #include <trace/events/rpm.h>
>> #include "power.h"
>> +#include <linux/cpu.h>
>>
>> typedef int (*pm_callback_t)(struct device *);
>>
>> @@ -577,6 +578,66 @@ static int rpm_suspend(struct device *dev, int rpmflags)
>> goto out;
>> }
>>
>> +void cpu_pm_runtime_suspend(void)
>> +{
>> + int ret;
>> + int (*callback)(struct device *);
>> + struct device *dev = get_cpu_device(smp_processor_id());
>> +
>> + trace_rpm_suspend(dev, 0);
>> +
>> + /**
>
>nit: the double '*' indicates kerneldoc, but this is just a multi-line
>comment.
>
>> + * Use device usage_count to disallow bubbling up suspend.
>
>I don't understand this comment.
>
>> + * This CPU has already decided to suspend, we cannot
>> + * prevent it here.
>> + */
>> + if (!atomic_dec_and_test(&dev->power.usage_count))
>
>Isn't this basically a _put_noidle() ?
>
>> + return 0;
>> +
>> + ret = rpm_check_suspend_allowed(dev);
>> + if (ret)
>> + return ret;
>> +
>> + __update_runtime_status(dev, RPM_SUSPENDING);
>> +
>> + pm_runtime_cancel_pending(dev);
>> + callback = RPM_GET_CALLBACK(dev, runtime_suspend);
>
>If the CPU device is part of a domain (e.g. cluster), then 'callback'
>here will be the domain callback, right?
>
Yes, thats correct.
>If that's true, I'm not sure I'm following the changelog description
>that talks about avoiding the calling into the domain.
>
Partly correct. Avoid calling into the domain if its not the last
device.
>It seems to me that you'll still call into the domain, but patch 2/2
>optimizes that path by only doing the *real* work of the domain for the
>last man standing. Am I understanding that correctly?
>
Yes
>Hmm, if that's the case though, where would the callbacks associated with the
>CPU (e.g. current CPU PM notifier stuff) get called?
>
They are called from cpuidle driver as it is today.
Thanks,
Lina
>> + ret = callback(dev);
>> + if (!ret)
>> + __update_runtime_status(dev, RPM_SUSPENDED);
>> + else
>> + __update_runtime_status(dev, RPM_ACTIVE);
>> +
>> + trace_rpm_return_int(dev, _THIS_IP_, ret);
>> +}
>
>Kevin
next prev parent reply other threads:[~2015-10-23 22:13 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-06 21:57 [RFC PATCH 0/2] Simplified runtime PM for CPU devices? Lina Iyer
2015-10-06 21:57 ` [RFC PATCH 1/2] PM / runtime: Add CPU runtime PM suspend/resume api Lina Iyer
2015-10-19 9:44 ` Ulf Hansson
2015-10-21 1:59 ` Lina Iyer
2015-10-28 10:43 ` Ulf Hansson
2015-10-28 21:12 ` Lina Iyer
2015-10-23 21:19 ` Kevin Hilman
2015-10-23 22:13 ` Lina Iyer [this message]
2015-10-23 23:46 ` Kevin Hilman
2015-10-28 21:14 ` Lina Iyer
2015-10-06 21:57 ` [RFC PATCH 2/2] PM / Domains: Atomic counters for domain usage count Lina Iyer
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=20151023221339.GE3072@linaro.org \
--to=lina.iyer@linaro.org \
--cc=daniel.lezcano@linaro.org \
--cc=geert+renesas@glider.be \
--cc=grygorii.strashko@ti.com \
--cc=khilman@kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=lorenzo.pieralisi@arm.com \
--cc=sboyd@codeaurora.org \
--cc=tglx@linutronix.de \
--cc=ulf.hansson@linaro.org \
/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;
as well as URLs for NNTP newsgroup(s).