2 * The idle loop for all SuperH platforms.
4 * Copyright (C) 2002 - 2009 Paul Mundt
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
10 #include <linux/module.h>
11 #include <linux/init.h>
14 #include <linux/tick.h>
15 #include <linux/preempt.h>
16 #include <linux/thread_info.h>
17 #include <linux/irqflags.h>
18 #include <linux/smp.h>
19 #include <linux/cpuidle.h>
20 #include <linux/atomic.h>
21 #include <asm/pgalloc.h>
23 #include <asm/bl_bit.h>
25 void (*pm_idle
)(void);
27 static int hlt_counter
;
29 static int __init
nohlt_setup(char *__unused
)
34 __setup("nohlt", nohlt_setup
);
36 static int __init
hlt_setup(char *__unused
)
41 __setup("hlt", hlt_setup
);
43 static inline int hlt_works(void)
49 * On SMP it's slightly faster (but much more power-consuming!)
50 * to poll the ->work.need_resched flag instead of waiting for the
51 * cross-CPU IPI to arrive. Use this option with caution.
53 static void poll_idle(void)
56 while (!need_resched())
60 void default_idle(void)
63 clear_thread_flag(TIF_POLLING_NRFLAG
);
64 smp_mb__after_clear_bit();
67 if (!need_resched()) {
73 set_thread_flag(TIF_POLLING_NRFLAG
);
80 * The idle thread. There's no useful work to be done, so just try to conserve
81 * power and have a low exit latency (ie sit in a loop waiting for somebody to
82 * say that they'd like to reschedule)
86 unsigned int cpu
= smp_processor_id();
88 set_thread_flag(TIF_POLLING_NRFLAG
);
90 /* endless idle loop with no priority at all */
92 tick_nohz_idle_enter();
95 while (!need_resched()) {
99 if (cpu_is_offline(cpu
))
103 /* Don't trace irqs off for idle */
104 stop_critical_timings();
105 if (cpuidle_idle_call())
108 * Sanity check to ensure that pm_idle() returns
111 WARN_ON(irqs_disabled());
112 start_critical_timings();
116 tick_nohz_idle_exit();
117 schedule_preempt_disabled();
121 void __init
select_idle_routine(void)
124 * If a platform has set its own idle routine, leave it alone.
130 pm_idle
= default_idle
;
135 void stop_this_cpu(void *unused
)
138 set_cpu_online(smp_processor_id(), false);