x86: xen: size struct xen_spinlock to always fit in arch_spinlock_t
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / sh / kernel / idle.c
blobdb4ecd731a003792783ddbc524fcc60f020d4bf7
1 /*
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
8 * for more details.
9 */
10 #include <linux/module.h>
11 #include <linux/init.h>
12 #include <linux/mm.h>
13 #include <linux/pm.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 <asm/pgalloc.h>
21 #include <asm/system.h>
22 #include <linux/atomic.h>
23 #include <asm/smp.h>
25 void (*pm_idle)(void);
27 static int hlt_counter;
29 static int __init nohlt_setup(char *__unused)
31 hlt_counter = 1;
32 return 1;
34 __setup("nohlt", nohlt_setup);
36 static int __init hlt_setup(char *__unused)
38 hlt_counter = 0;
39 return 1;
41 __setup("hlt", hlt_setup);
43 static inline int hlt_works(void)
45 return !hlt_counter;
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)
55 local_irq_enable();
56 while (!need_resched())
57 cpu_relax();
60 void default_idle(void)
62 if (hlt_works()) {
63 clear_thread_flag(TIF_POLLING_NRFLAG);
64 smp_mb__after_clear_bit();
66 set_bl_bit();
67 if (!need_resched()) {
68 local_irq_enable();
69 cpu_sleep();
70 } else
71 local_irq_enable();
73 set_thread_flag(TIF_POLLING_NRFLAG);
74 clear_bl_bit();
75 } else
76 poll_idle();
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)
84 void cpu_idle(void)
86 unsigned int cpu = smp_processor_id();
88 set_thread_flag(TIF_POLLING_NRFLAG);
90 /* endless idle loop with no priority at all */
91 while (1) {
92 tick_nohz_stop_sched_tick(1);
94 while (!need_resched()) {
95 check_pgt_cache();
96 rmb();
98 if (cpu_is_offline(cpu))
99 play_dead();
101 local_irq_disable();
102 /* Don't trace irqs off for idle */
103 stop_critical_timings();
104 if (cpuidle_idle_call())
105 pm_idle();
107 * Sanity check to ensure that pm_idle() returns
108 * with IRQs enabled
110 WARN_ON(irqs_disabled());
111 start_critical_timings();
114 tick_nohz_restart_sched_tick();
115 preempt_enable_no_resched();
116 schedule();
117 preempt_disable();
121 void __init select_idle_routine(void)
124 * If a platform has set its own idle routine, leave it alone.
126 if (pm_idle)
127 return;
129 if (hlt_works())
130 pm_idle = default_idle;
131 else
132 pm_idle = poll_idle;
135 static void do_nothing(void *unused)
139 void stop_this_cpu(void *unused)
141 local_irq_disable();
142 set_cpu_online(smp_processor_id(), false);
144 for (;;)
145 cpu_sleep();
149 * cpu_idle_wait - Used to ensure that all the CPUs discard old value of
150 * pm_idle and update to new pm_idle value. Required while changing pm_idle
151 * handler on SMP systems.
153 * Caller must have changed pm_idle to the new value before the call. Old
154 * pm_idle value will not be used by any CPU after the return of this function.
156 void cpu_idle_wait(void)
158 smp_mb();
159 /* kick all the CPUs so that they exit out of pm_idle */
160 smp_call_function(do_nothing, NULL, 1);
162 EXPORT_SYMBOL_GPL(cpu_idle_wait);