blob: ea78761aa16972a71f00f6bf0824989995b7c841 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Idle daemon for PowerPC. Idle daemon will handle any action
3 * that needs to be taken when the system becomes idle.
4 *
Paul Mackerrasa0652fc2006-03-27 15:03:03 +11005 * Originally written by Cort Dougan (cort@cs.nmt.edu).
6 * Subsequent 32-bit hacking by Tom Rini, Armin Kuster,
7 * Paul Mackerras and others.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * iSeries supported added by Mike Corrigan <mikejc@us.ibm.com>
10 *
11 * Additional shared processor, SMT, and firmware support
12 * Copyright (c) 2003 Dave Engebretsen <engebret@us.ibm.com>
13 *
Paul Mackerrasa0652fc2006-03-27 15:03:03 +110014 * 32-bit and 64-bit versions merged by Paul Mackerras <paulus@samba.org>
15 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License
18 * as published by the Free Software Foundation; either version
19 * 2 of the License, or (at your option) any later version.
20 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/sched.h>
23#include <linux/kernel.h>
24#include <linux/smp.h>
25#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/sysctl.h>
Tony Breeds1ad74992007-09-21 13:26:03 +100027#include <linux/tick.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/cputable.h>
31#include <asm/time.h>
Michael Ellermanfd899c02005-07-07 17:56:28 -070032#include <asm/machdep.h>
David Howellsae3a1972012-03-28 18:30:02 +010033#include <asm/runlatch.h>
Paul Mackerras2249ca92005-11-07 13:18:13 +110034#include <asm/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Paul Mackerrasa0652fc2006-03-27 15:03:03 +110036#ifdef CONFIG_HOTPLUG_CPU
Johannes Berg61e99162008-09-24 22:56:25 +000037#define cpu_should_die() cpu_is_offline(smp_processor_id())
Paul Mackerrasa0652fc2006-03-27 15:03:03 +110038#else
39#define cpu_should_die() 0
40#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Deepthi Dharwar771dae82011-11-30 02:46:31 +000042unsigned long cpuidle_disable = IDLE_NO_OVERRIDE;
43EXPORT_SYMBOL(cpuidle_disable);
44
arnd@arndb.de302eca12006-10-24 18:31:26 +020045static int __init powersave_off(char *arg)
46{
47 ppc_md.power_save = NULL;
Deepthi Dharwar771dae82011-11-30 02:46:31 +000048 cpuidle_disable = IDLE_POWERSAVE_OFF;
arnd@arndb.de302eca12006-10-24 18:31:26 +020049 return 0;
50}
51__setup("powersave=off", powersave_off);
52
Paul Mackerrasa0652fc2006-03-27 15:03:03 +110053/*
54 * The body of the idle task.
55 */
56void cpu_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
Nick Piggin64c7c8f2005-11-08 21:39:04 -080058 set_thread_flag(TIF_POLLING_NRFLAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 while (1) {
Frederic Weisbecker1268fbc2011-11-17 18:48:14 +010060 tick_nohz_idle_enter();
Anton Blancharda5ccfee2012-01-09 14:29:15 +000061 rcu_idle_enter();
Frederic Weisbecker1268fbc2011-11-17 18:48:14 +010062
Paul Mackerrasa0652fc2006-03-27 15:03:03 +110063 while (!need_resched() && !cpu_should_die()) {
Anton Blanchardddafddc2006-04-02 19:54:09 +100064 ppc64_runlatch_off();
65
Paul Mackerrasa0652fc2006-03-27 15:03:03 +110066 if (ppc_md.power_save) {
67 clear_thread_flag(TIF_POLLING_NRFLAG);
68 /*
69 * smp_mb is so clearing of TIF_POLLING_NRFLAG
70 * is ordered w.r.t. need_resched() test.
71 */
72 smp_mb();
73 local_irq_disable();
74
Steven Rostedt6d07bb42008-11-14 16:21:19 -080075 /* Don't trace irqs off for idle */
76 stop_critical_timings();
77
Paul Mackerrasa0652fc2006-03-27 15:03:03 +110078 /* check again after disabling irqs */
79 if (!need_resched() && !cpu_should_die())
80 ppc_md.power_save();
81
Steven Rostedt6d07bb42008-11-14 16:21:19 -080082 start_critical_timings();
83
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +110084 /* Some power_save functions return with
85 * interrupts enabled, some don't.
86 */
87 if (irqs_disabled())
88 local_irq_enable();
Paul Mackerrasa0652fc2006-03-27 15:03:03 +110089 set_thread_flag(TIF_POLLING_NRFLAG);
90
91 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 /*
93 * Go into low thread priority and possibly
94 * low power mode.
95 */
96 HMT_low();
97 HMT_very_low();
98 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 }
100
Paul Mackerrasa0652fc2006-03-27 15:03:03 +1100101 HMT_medium();
Anton Blanchard45e75df2005-07-07 17:56:33 -0700102 ppc64_runlatch_on();
Anton Blancharda5ccfee2012-01-09 14:29:15 +0000103 rcu_idle_exit();
Frederic Weisbecker1268fbc2011-11-17 18:48:14 +0100104 tick_nohz_idle_exit();
Thomas Gleixnerbd2f5532011-03-21 12:33:18 +0100105 if (cpu_should_die()) {
Thomas Gleixnerba74c142011-03-21 13:32:17 +0100106 sched_preempt_enable_no_resched();
Paul Mackerrasa0652fc2006-03-27 15:03:03 +1100107 cpu_die();
Thomas Gleixnerbd2f5532011-03-21 12:33:18 +0100108 }
109 schedule_preempt_disabled();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113int powersave_nap;
114
115#ifdef CONFIG_SYSCTL
116/*
117 * Register the sysctl to set/clear powersave_nap.
118 */
119static ctl_table powersave_nap_ctl_table[]={
120 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 .procname = "powersave-nap",
122 .data = &powersave_nap,
123 .maxlen = sizeof(int),
124 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800125 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 },
Eric W. Biedermanf5f10672007-02-14 00:33:46 -0800127 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128};
129static ctl_table powersave_nap_sysctl_root[] = {
Eric W. Biedermanf5f10672007-02-14 00:33:46 -0800130 {
Eric W. Biedermanf5f10672007-02-14 00:33:46 -0800131 .procname = "kernel",
Alexey Dobriyanfb293ae2007-10-28 05:34:53 +1100132 .mode = 0555,
Eric W. Biedermanf5f10672007-02-14 00:33:46 -0800133 .child = powersave_nap_ctl_table,
134 },
135 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136};
137
138static int __init
139register_powersave_nap_sysctl(void)
140{
Eric W. Biederman0b4d4142007-02-14 00:34:09 -0800141 register_sysctl_table(powersave_nap_sysctl_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 return 0;
144}
145__initcall(register_powersave_nap_sysctl);
146#endif