blob: 939ea7ef0dc8063615ed9e1a2b5ca63626064d9e [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Deepthi Dharwar771dae82011-11-30 02:46:31 +000037unsigned long cpuidle_disable = IDLE_NO_OVERRIDE;
38EXPORT_SYMBOL(cpuidle_disable);
39
arnd@arndb.de302eca12006-10-24 18:31:26 +020040static int __init powersave_off(char *arg)
41{
42 ppc_md.power_save = NULL;
Deepthi Dharwar771dae82011-11-30 02:46:31 +000043 cpuidle_disable = IDLE_POWERSAVE_OFF;
arnd@arndb.de302eca12006-10-24 18:31:26 +020044 return 0;
45}
46__setup("powersave=off", powersave_off);
47
Thomas Gleixner799fef02013-03-21 22:49:56 +010048#ifdef CONFIG_HOTPLUG_CPU
49void arch_cpu_idle_dead(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
Thomas Gleixner799fef02013-03-21 22:49:56 +010051 sched_preempt_enable_no_resched();
52 cpu_die();
53}
54#endif
Frederic Weisbecker1268fbc2011-11-17 18:48:14 +010055
Thomas Gleixner799fef02013-03-21 22:49:56 +010056void arch_cpu_idle(void)
57{
58 ppc64_runlatch_off();
Anton Blanchardddafddc2006-04-02 19:54:09 +100059
Thomas Gleixner799fef02013-03-21 22:49:56 +010060 if (ppc_md.power_save) {
61 ppc_md.power_save();
62 /*
63 * Some power_save functions return with
64 * interrupts enabled, some don't.
65 */
66 if (irqs_disabled())
67 local_irq_enable();
68 } else {
69 local_irq_enable();
70 /*
71 * Go into low thread priority and possibly
72 * low power mode.
73 */
74 HMT_low();
75 HMT_very_low();
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 }
Thomas Gleixner799fef02013-03-21 22:49:56 +010077
78 HMT_medium();
79 ppc64_runlatch_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -070080}
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082int powersave_nap;
83
84#ifdef CONFIG_SYSCTL
85/*
86 * Register the sysctl to set/clear powersave_nap.
87 */
88static ctl_table powersave_nap_ctl_table[]={
89 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 .procname = "powersave-nap",
91 .data = &powersave_nap,
92 .maxlen = sizeof(int),
93 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -080094 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 },
Eric W. Biedermanf5f10672007-02-14 00:33:46 -080096 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -070097};
98static ctl_table powersave_nap_sysctl_root[] = {
Eric W. Biedermanf5f10672007-02-14 00:33:46 -080099 {
Eric W. Biedermanf5f10672007-02-14 00:33:46 -0800100 .procname = "kernel",
Alexey Dobriyanfb293ae2007-10-28 05:34:53 +1100101 .mode = 0555,
Eric W. Biedermanf5f10672007-02-14 00:33:46 -0800102 .child = powersave_nap_ctl_table,
103 },
104 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105};
106
107static int __init
108register_powersave_nap_sysctl(void)
109{
Eric W. Biederman0b4d4142007-02-14 00:34:09 -0800110 register_sysctl_table(powersave_nap_sysctl_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112 return 0;
113}
114__initcall(register_powersave_nap_sysctl);
115#endif