mtd: nand: pxa3xx: Set info->use_dma properly
[linux-2.6/btrfs-unstable.git] / kernel / cpu / idle.c
blobe695c0a0bcb5c84e79ee93e80de57e4fbab69b33
1 /*
2 * Generic entry point for the idle threads
3 */
4 #include <linux/sched.h>
5 #include <linux/cpu.h>
6 #include <linux/tick.h>
7 #include <linux/mm.h>
8 #include <linux/stackprotector.h>
10 #include <asm/tlb.h>
12 #include <trace/events/power.h>
14 static int __read_mostly cpu_idle_force_poll;
16 void cpu_idle_poll_ctrl(bool enable)
18 if (enable) {
19 cpu_idle_force_poll++;
20 } else {
21 cpu_idle_force_poll--;
22 WARN_ON_ONCE(cpu_idle_force_poll < 0);
26 #ifdef CONFIG_GENERIC_IDLE_POLL_SETUP
27 static int __init cpu_idle_poll_setup(char *__unused)
29 cpu_idle_force_poll = 1;
30 return 1;
32 __setup("nohlt", cpu_idle_poll_setup);
34 static int __init cpu_idle_nopoll_setup(char *__unused)
36 cpu_idle_force_poll = 0;
37 return 1;
39 __setup("hlt", cpu_idle_nopoll_setup);
40 #endif
42 static inline int cpu_idle_poll(void)
44 rcu_idle_enter();
45 trace_cpu_idle_rcuidle(0, smp_processor_id());
46 local_irq_enable();
47 while (!need_resched())
48 cpu_relax();
49 trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, smp_processor_id());
50 rcu_idle_exit();
51 return 1;
54 /* Weak implementations for optional arch specific functions */
55 void __weak arch_cpu_idle_prepare(void) { }
56 void __weak arch_cpu_idle_enter(void) { }
57 void __weak arch_cpu_idle_exit(void) { }
58 void __weak arch_cpu_idle_dead(void) { }
59 void __weak arch_cpu_idle(void)
61 cpu_idle_force_poll = 1;
62 local_irq_enable();
66 * Generic idle loop implementation
68 static void cpu_idle_loop(void)
70 while (1) {
71 tick_nohz_idle_enter();
73 while (!need_resched()) {
74 check_pgt_cache();
75 rmb();
77 if (cpu_is_offline(smp_processor_id()))
78 arch_cpu_idle_dead();
80 local_irq_disable();
81 arch_cpu_idle_enter();
84 * In poll mode we reenable interrupts and spin.
86 * Also if we detected in the wakeup from idle
87 * path that the tick broadcast device expired
88 * for us, we don't want to go deep idle as we
89 * know that the IPI is going to arrive right
90 * away
92 if (cpu_idle_force_poll || tick_check_broadcast_expired()) {
93 cpu_idle_poll();
94 } else {
95 current_clr_polling();
96 if (!need_resched()) {
97 stop_critical_timings();
98 rcu_idle_enter();
99 arch_cpu_idle();
100 WARN_ON_ONCE(irqs_disabled());
101 rcu_idle_exit();
102 start_critical_timings();
103 } else {
104 local_irq_enable();
106 current_set_polling();
108 arch_cpu_idle_exit();
110 tick_nohz_idle_exit();
111 schedule_preempt_disabled();
115 void cpu_startup_entry(enum cpuhp_state state)
118 * This #ifdef needs to die, but it's too late in the cycle to
119 * make this generic (arm and sh have never invoked the canary
120 * init for the non boot cpus!). Will be fixed in 3.11
122 #ifdef CONFIG_X86
124 * If we're the non-boot CPU, nothing set the stack canary up
125 * for us. The boot CPU already has it initialized but no harm
126 * in doing it again. This is a good place for updating it, as
127 * we wont ever return from this function (so the invalid
128 * canaries already on the stack wont ever trigger).
130 boot_init_stack_canary();
131 #endif
132 current_set_polling();
133 arch_cpu_idle_prepare();
134 cpu_idle_loop();