diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2013-03-21 17:49:35 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2013-04-08 11:39:23 -0400 |
commit | d166991234347215dc23fc9dc15a63a83a1a54e1 (patch) | |
tree | 5ca0351d7271b7591ab2a73bcad127cf8944ad63 /arch/Kconfig | |
parent | a1a04ec3c7c27a682473fd9beb2c996316a64649 (diff) |
idle: Implement generic idle function
All idle functions in arch/* are more or less the same, plus minus a
few bugs and extra instrumentation, tickless support and other
optional items.
Implement a generic idle function which resembles the functionality
found in arch/. Provide weak arch_cpu_idle_* functions which can be
overridden by the architecture code if needed.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Cc: Paul McKenney <paulmck@linux.vnet.ibm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Reviewed-by: Cc: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Cc: Magnus Damm <magnus.damm@gmail.com>
Link: http://lkml.kernel.org/r/20130321215233.646635455@linutronix.de
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/Kconfig')
-rw-r--r-- | arch/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/Kconfig b/arch/Kconfig index 1455579791ec..a699f3767be4 100644 --- a/arch/Kconfig +++ b/arch/Kconfig | |||
@@ -216,6 +216,9 @@ config USE_GENERIC_SMP_HELPERS | |||
216 | config GENERIC_SMP_IDLE_THREAD | 216 | config GENERIC_SMP_IDLE_THREAD |
217 | bool | 217 | bool |
218 | 218 | ||
219 | config GENERIC_IDLE_LOOP | ||
220 | bool | ||
221 | |||
219 | # Select if arch init_task initializer is different to init/init_task.c | 222 | # Select if arch init_task initializer is different to init/init_task.c |
220 | config ARCH_INIT_TASK | 223 | config ARCH_INIT_TASK |
221 | bool | 224 | bool |