]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
bfin: Use generic idle loop
authorThomas Gleixner <tglx@linutronix.de>
Thu, 21 Mar 2013 21:49:41 +0000 (22:49 +0100)
committerThomas Gleixner <tglx@linutronix.de>
Mon, 8 Apr 2013 15:39:24 +0000 (17:39 +0200)
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>
Cc: Mike Frysinger <vapier@gentoo.org>
Link: http://lkml.kernel.org/r/20130321215234.014923303@linutronix.de
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
arch/blackfin/Kconfig
arch/blackfin/kernel/process.c
arch/blackfin/mach-common/smp.c

index c3f2e0bc644aed0b64e86b7a801424d5cb239b9a..3d769a7c494103929f46efeb4eda59d8b3ec69ca 100644 (file)
@@ -41,6 +41,7 @@ config BLACKFIN
        select USE_GENERIC_SMP_HELPERS if SMP
        select HAVE_NMI_WATCHDOG if NMI_WATCHDOG
        select GENERIC_SMP_IDLE_THREAD
+       select GENERIC_IDLE_LOOP
        select ARCH_USES_GETTIMEOFFSET if !GENERIC_CLOCKEVENTS
        select HAVE_MOD_ARCH_SPECIFIC
        select MODULES_USE_ELF_RELA
index 9782c0329c1435295660dcd0c22ad00708dd6dff..f34323a9054188af26f570c7749bca81bd6ea009 100644 (file)
@@ -46,15 +46,14 @@ EXPORT_SYMBOL(pm_power_off);
  * The idle loop on BFIN
  */
 #ifdef CONFIG_IDLE_L1
-static void default_idle(void)__attribute__((l1_text));
-void cpu_idle(void)__attribute__((l1_text));
+void arch_cpu_idle(void)__attribute__((l1_text));
 #endif
 
 /*
  * This is our default idle handler.  We need to disable
  * interrupts here to ensure we don't miss a wakeup call.
  */
-static void default_idle(void)
+void arch_cpu_idle(void)
 {
 #ifdef CONFIG_IPIPE
        ipipe_suspend_domain();
@@ -66,31 +65,12 @@ static void default_idle(void)
        hard_local_irq_enable();
 }
 
-/*
- * The idle thread.  We try to conserve power, while trying to keep
- * overall latency low.  The architecture specific idle is passed
- * a value to indicate the level of "idleness" of the system.
- */
-void cpu_idle(void)
+#ufdef CONFIG_HOTPLUG_CPU
+void arch_cpu_idle_dead(void)
 {
-       /* endless idle loop with no priority at all */
-       while (1) {
-
-#ifdef CONFIG_HOTPLUG_CPU
-               if (cpu_is_offline(smp_processor_id()))
-                       cpu_die();
-#endif
-               tick_nohz_idle_enter();
-               rcu_idle_enter();
-               while (!need_resched())
-                       default_idle();
-               rcu_idle_exit();
-               tick_nohz_idle_exit();
-               preempt_enable_no_resched();
-               schedule();
-               preempt_disable();
-       }
+       cpu_die();
 }
+#endif
 
 /*
  * Do necessary setup to start up a newly executed thread.
index bb61ae4986e4fefc0963e726b536b1adb0547044..1bc2ce6f3c947a63601aa6bc0f1b92d4542ac8cd 100644 (file)
@@ -335,7 +335,7 @@ void __cpuinit secondary_start_kernel(void)
         */
        calibrate_delay();
 
-       cpu_idle();
+       cpu_startup_entry(CPUHP_ONLINE);
 }
 
 void __init smp_prepare_boot_cpu(void)