Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Idle daemon for PowerPC. Idle daemon will handle any action |
| 3 | * that needs to be taken when the system becomes idle. |
| 4 | * |
Paul Mackerras | a0652fc | 2006-03-27 15:03:03 +1100 | [diff] [blame] | 5 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * |
| 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 Mackerras | a0652fc | 2006-03-27 15:03:03 +1100 | [diff] [blame] | 14 | * 32-bit and 64-bit versions merged by Paul Mackerras <paulus@samba.org> |
| 15 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/sched.h> |
| 23 | #include <linux/kernel.h> |
| 24 | #include <linux/smp.h> |
| 25 | #include <linux/cpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/sysctl.h> |
Tony Breeds | 1ad7499 | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 27 | #include <linux/tick.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <asm/processor.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <asm/cputable.h> |
| 31 | #include <asm/time.h> |
Michael Ellerman | fd899c0 | 2005-07-07 17:56:28 -0700 | [diff] [blame] | 32 | #include <asm/machdep.h> |
David Howells | ae3a197 | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 33 | #include <asm/runlatch.h> |
Paul Mackerras | 2249ca9 | 2005-11-07 13:18:13 +1100 | [diff] [blame] | 34 | #include <asm/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
Deepthi Dharwar | 771dae8 | 2011-11-30 02:46:31 +0000 | [diff] [blame] | 37 | unsigned long cpuidle_disable = IDLE_NO_OVERRIDE; |
| 38 | EXPORT_SYMBOL(cpuidle_disable); |
| 39 | |
arnd@arndb.de | 302eca1 | 2006-10-24 18:31:26 +0200 | [diff] [blame] | 40 | static int __init powersave_off(char *arg) |
| 41 | { |
| 42 | ppc_md.power_save = NULL; |
Deepthi Dharwar | 771dae8 | 2011-11-30 02:46:31 +0000 | [diff] [blame] | 43 | cpuidle_disable = IDLE_POWERSAVE_OFF; |
arnd@arndb.de | 302eca1 | 2006-10-24 18:31:26 +0200 | [diff] [blame] | 44 | return 0; |
| 45 | } |
| 46 | __setup("powersave=off", powersave_off); |
| 47 | |
Thomas Gleixner | 799fef0 | 2013-03-21 22:49:56 +0100 | [diff] [blame^] | 48 | #ifdef CONFIG_HOTPLUG_CPU |
| 49 | void arch_cpu_idle_dead(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | { |
Thomas Gleixner | 799fef0 | 2013-03-21 22:49:56 +0100 | [diff] [blame^] | 51 | sched_preempt_enable_no_resched(); |
| 52 | cpu_die(); |
| 53 | } |
| 54 | #endif |
Frederic Weisbecker | 1268fbc | 2011-11-17 18:48:14 +0100 | [diff] [blame] | 55 | |
Thomas Gleixner | 799fef0 | 2013-03-21 22:49:56 +0100 | [diff] [blame^] | 56 | void arch_cpu_idle(void) |
| 57 | { |
| 58 | ppc64_runlatch_off(); |
Anton Blanchard | ddafddc | 2006-04-02 19:54:09 +1000 | [diff] [blame] | 59 | |
Thomas Gleixner | 799fef0 | 2013-03-21 22:49:56 +0100 | [diff] [blame^] | 60 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | } |
Thomas Gleixner | 799fef0 | 2013-03-21 22:49:56 +0100 | [diff] [blame^] | 77 | |
| 78 | HMT_medium(); |
| 79 | ppc64_runlatch_on(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | int powersave_nap; |
| 83 | |
| 84 | #ifdef CONFIG_SYSCTL |
| 85 | /* |
| 86 | * Register the sysctl to set/clear powersave_nap. |
| 87 | */ |
| 88 | static ctl_table powersave_nap_ctl_table[]={ |
| 89 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | .procname = "powersave-nap", |
| 91 | .data = &powersave_nap, |
| 92 | .maxlen = sizeof(int), |
| 93 | .mode = 0644, |
Eric W. Biederman | 6d45611 | 2009-11-16 03:11:48 -0800 | [diff] [blame] | 94 | .proc_handler = proc_dointvec, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | }, |
Eric W. Biederman | f5f1067 | 2007-02-14 00:33:46 -0800 | [diff] [blame] | 96 | {} |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | }; |
| 98 | static ctl_table powersave_nap_sysctl_root[] = { |
Eric W. Biederman | f5f1067 | 2007-02-14 00:33:46 -0800 | [diff] [blame] | 99 | { |
Eric W. Biederman | f5f1067 | 2007-02-14 00:33:46 -0800 | [diff] [blame] | 100 | .procname = "kernel", |
Alexey Dobriyan | fb293ae | 2007-10-28 05:34:53 +1100 | [diff] [blame] | 101 | .mode = 0555, |
Eric W. Biederman | f5f1067 | 2007-02-14 00:33:46 -0800 | [diff] [blame] | 102 | .child = powersave_nap_ctl_table, |
| 103 | }, |
| 104 | {} |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | }; |
| 106 | |
| 107 | static int __init |
| 108 | register_powersave_nap_sysctl(void) |
| 109 | { |
Eric W. Biederman | 0b4d414 | 2007-02-14 00:34:09 -0800 | [diff] [blame] | 110 | register_sysctl_table(powersave_nap_sysctl_root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
| 112 | return 0; |
| 113 | } |
| 114 | __initcall(register_powersave_nap_sysctl); |
| 115 | #endif |