LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH v2] cpufreq: suspend cpufreq governors on shutdown
@ 2014-12-24 6:09 Doug Anderson
2014-12-29 4:15 ` Viresh Kumar
0 siblings, 1 reply; 3+ messages in thread
From: Doug Anderson @ 2014-12-24 6:09 UTC (permalink / raw)
To: rjw, viresh.kumar
Cc: Heiko Stuebner, Dmitry Torokhov, Chris Zhong, linux-arm-kernel,
Sonny Rao, Dylan Reid, Doug Anderson, linux-pm, linux-kernel
We should stop cpufreq governors when we shut down the system. If we
don't do this, we can end up with this deadlock:
1. cpufreq governor may be running on a CPU other than CPU0.
2. In machine_restart() we call smp_send_stop() which stops CPUs.
If one of these CPUs was actively running a cpufreq governor
then it may have the mutex / spinlock needed to access the main
PMIC in the system (perhaps over I2C)
3. If a machine needs access to the main PMIC in order to shutdown
then it will never get it since the mutex was lost when the other
CPU stopped.
4. We'll hang (possibly eventually hitting the hard lockup detector).
Let's avoid the problem by stopping the cpufreq governor at shutdown,
which is a sensible thing to do anyway.
Signed-off-by: Doug Anderson <dianders@chromium.org>
---
Changes in v2:
- Add a comment about why we register
- Don't create cpufreq_shutdown() wrapper function
drivers/cpufreq/cpufreq.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
index a09a29c..33f3d65 100644
--- a/drivers/cpufreq/cpufreq.c
+++ b/drivers/cpufreq/cpufreq.c
@@ -27,6 +27,7 @@
#include <linux/mutex.h>
#include <linux/slab.h>
#include <linux/suspend.h>
+#include <linux/syscore_ops.h>
#include <linux/tick.h>
#include <trace/events/power.h>
@@ -2550,6 +2551,14 @@ int cpufreq_unregister_driver(struct cpufreq_driver *driver)
}
EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
+/*
+ * Stop cpufreq at shutdown to make sure it isn't holding any locks
+ * or mutexes when secondary CPUs are halted.
+ */
+static struct syscore_ops cpufreq_syscore_ops = {
+ .shutdown = cpufreq_suspend,
+};
+
static int __init cpufreq_core_init(void)
{
if (cpufreq_disabled())
@@ -2558,6 +2567,8 @@ static int __init cpufreq_core_init(void)
cpufreq_global_kobject = kobject_create();
BUG_ON(!cpufreq_global_kobject);
+ register_syscore_ops(&cpufreq_syscore_ops);
+
return 0;
}
core_initcall(cpufreq_core_init);
--
2.2.0.rc0.207.ga3a616c
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2] cpufreq: suspend cpufreq governors on shutdown
2014-12-24 6:09 [PATCH v2] cpufreq: suspend cpufreq governors on shutdown Doug Anderson
@ 2014-12-29 4:15 ` Viresh Kumar
2015-01-30 0:14 ` Rafael J. Wysocki
0 siblings, 1 reply; 3+ messages in thread
From: Viresh Kumar @ 2014-12-29 4:15 UTC (permalink / raw)
To: Doug Anderson
Cc: Rafael J. Wysocki, Heiko Stuebner, Dmitry Torokhov, Chris Zhong,
linux-arm-kernel, Sonny Rao, Dylan Reid, linux-pm,
Linux Kernel Mailing List
On 24 December 2014 at 11:39, Doug Anderson <dianders@chromium.org> wrote:
> We should stop cpufreq governors when we shut down the system. If we
> don't do this, we can end up with this deadlock:
>
> 1. cpufreq governor may be running on a CPU other than CPU0.
> 2. In machine_restart() we call smp_send_stop() which stops CPUs.
> If one of these CPUs was actively running a cpufreq governor
> then it may have the mutex / spinlock needed to access the main
> PMIC in the system (perhaps over I2C)
> 3. If a machine needs access to the main PMIC in order to shutdown
> then it will never get it since the mutex was lost when the other
> CPU stopped.
> 4. We'll hang (possibly eventually hitting the hard lockup detector).
>
> Let's avoid the problem by stopping the cpufreq governor at shutdown,
> which is a sensible thing to do anyway.
>
> Signed-off-by: Doug Anderson <dianders@chromium.org>
> ---
> Changes in v2:
> - Add a comment about why we register
> - Don't create cpufreq_shutdown() wrapper function
>
> drivers/cpufreq/cpufreq.c | 11 +++++++++++
> 1 file changed, 11 insertions(+)
>
> diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
> index a09a29c..33f3d65 100644
> --- a/drivers/cpufreq/cpufreq.c
> +++ b/drivers/cpufreq/cpufreq.c
> @@ -27,6 +27,7 @@
> #include <linux/mutex.h>
> #include <linux/slab.h>
> #include <linux/suspend.h>
> +#include <linux/syscore_ops.h>
> #include <linux/tick.h>
> #include <trace/events/power.h>
>
> @@ -2550,6 +2551,14 @@ int cpufreq_unregister_driver(struct cpufreq_driver *driver)
> }
> EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
>
> +/*
> + * Stop cpufreq at shutdown to make sure it isn't holding any locks
> + * or mutexes when secondary CPUs are halted.
> + */
> +static struct syscore_ops cpufreq_syscore_ops = {
> + .shutdown = cpufreq_suspend,
> +};
> +
> static int __init cpufreq_core_init(void)
> {
> if (cpufreq_disabled())
> @@ -2558,6 +2567,8 @@ static int __init cpufreq_core_init(void)
> cpufreq_global_kobject = kobject_create();
> BUG_ON(!cpufreq_global_kobject);
>
> + register_syscore_ops(&cpufreq_syscore_ops);
> +
> return 0;
> }
> core_initcall(cpufreq_core_init);
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] cpufreq: suspend cpufreq governors on shutdown
2014-12-29 4:15 ` Viresh Kumar
@ 2015-01-30 0:14 ` Rafael J. Wysocki
0 siblings, 0 replies; 3+ messages in thread
From: Rafael J. Wysocki @ 2015-01-30 0:14 UTC (permalink / raw)
To: Viresh Kumar
Cc: Doug Anderson, Heiko Stuebner, Dmitry Torokhov, Chris Zhong,
linux-arm-kernel, Sonny Rao, Dylan Reid, linux-pm,
Linux Kernel Mailing List
On Monday, December 29, 2014 09:45:42 AM Viresh Kumar wrote:
> On 24 December 2014 at 11:39, Doug Anderson <dianders@chromium.org> wrote:
> > We should stop cpufreq governors when we shut down the system. If we
> > don't do this, we can end up with this deadlock:
> >
> > 1. cpufreq governor may be running on a CPU other than CPU0.
> > 2. In machine_restart() we call smp_send_stop() which stops CPUs.
> > If one of these CPUs was actively running a cpufreq governor
> > then it may have the mutex / spinlock needed to access the main
> > PMIC in the system (perhaps over I2C)
> > 3. If a machine needs access to the main PMIC in order to shutdown
> > then it will never get it since the mutex was lost when the other
> > CPU stopped.
> > 4. We'll hang (possibly eventually hitting the hard lockup detector).
> >
> > Let's avoid the problem by stopping the cpufreq governor at shutdown,
> > which is a sensible thing to do anyway.
> >
> > Signed-off-by: Doug Anderson <dianders@chromium.org>
> > ---
> > Changes in v2:
> > - Add a comment about why we register
> > - Don't create cpufreq_shutdown() wrapper function
> >
> > drivers/cpufreq/cpufreq.c | 11 +++++++++++
> > 1 file changed, 11 insertions(+)
> >
> > diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
> > index a09a29c..33f3d65 100644
> > --- a/drivers/cpufreq/cpufreq.c
> > +++ b/drivers/cpufreq/cpufreq.c
> > @@ -27,6 +27,7 @@
> > #include <linux/mutex.h>
> > #include <linux/slab.h>
> > #include <linux/suspend.h>
> > +#include <linux/syscore_ops.h>
> > #include <linux/tick.h>
> > #include <trace/events/power.h>
> >
> > @@ -2550,6 +2551,14 @@ int cpufreq_unregister_driver(struct cpufreq_driver *driver)
> > }
> > EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
> >
> > +/*
> > + * Stop cpufreq at shutdown to make sure it isn't holding any locks
> > + * or mutexes when secondary CPUs are halted.
> > + */
> > +static struct syscore_ops cpufreq_syscore_ops = {
> > + .shutdown = cpufreq_suspend,
> > +};
> > +
> > static int __init cpufreq_core_init(void)
> > {
> > if (cpufreq_disabled())
> > @@ -2558,6 +2567,8 @@ static int __init cpufreq_core_init(void)
> > cpufreq_global_kobject = kobject_create();
> > BUG_ON(!cpufreq_global_kobject);
> >
> > + register_syscore_ops(&cpufreq_syscore_ops);
> > +
> > return 0;
> > }
> > core_initcall(cpufreq_core_init);
>
> Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Queued up for 3.20, thanks!
--
I speak only for myself.
Rafael J. Wysocki, Intel Open Source Technology Center.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-01-29 23:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-12-24 6:09 [PATCH v2] cpufreq: suspend cpufreq governors on shutdown Doug Anderson
2014-12-29 4:15 ` Viresh Kumar
2015-01-30 0:14 ` Rafael J. Wysocki
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).