blob: bf2ee1aafa0ef0e0859a9006cf51a51aa7150452 [file] [log] [blame]
Thomas Gleixnera1a04ec2013-03-21 22:49:34 +01001/*
2 * Generic entry point for the idle threads
3 */
4#include <linux/sched.h>
5#include <linux/cpu.h>
Thomas Gleixnerd1669912013-03-21 22:49:35 +01006#include <linux/tick.h>
7#include <linux/mm.h>
Thomas Gleixnerd7880812013-06-10 16:52:03 +02008#include <linux/stackprotector.h>
Thomas Gleixnera1a04ec2013-03-21 22:49:34 +01009
Thomas Gleixnerd1669912013-03-21 22:49:35 +010010#include <asm/tlb.h>
11
12#include <trace/events/power.h>
13
Thomas Gleixnerd1669912013-03-21 22:49:35 +010014static int __read_mostly cpu_idle_force_poll;
15
16void cpu_idle_poll_ctrl(bool enable)
17{
18 if (enable) {
19 cpu_idle_force_poll++;
20 } else {
21 cpu_idle_force_poll--;
22 WARN_ON_ONCE(cpu_idle_force_poll < 0);
23 }
24}
25
26#ifdef CONFIG_GENERIC_IDLE_POLL_SETUP
27static int __init cpu_idle_poll_setup(char *__unused)
28{
29 cpu_idle_force_poll = 1;
30 return 1;
31}
32__setup("nohlt", cpu_idle_poll_setup);
33
34static int __init cpu_idle_nopoll_setup(char *__unused)
35{
36 cpu_idle_force_poll = 0;
37 return 1;
38}
39__setup("hlt", cpu_idle_nopoll_setup);
40#endif
41
42static inline int cpu_idle_poll(void)
43{
Srivatsa S. Bhatb47430d2013-05-14 04:01:27 +053044 rcu_idle_enter();
Thomas Gleixnerd1669912013-03-21 22:49:35 +010045 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());
Srivatsa S. Bhatb47430d2013-05-14 04:01:27 +053050 rcu_idle_exit();
Thomas Gleixnerd1669912013-03-21 22:49:35 +010051 return 1;
52}
53
54/* Weak implementations for optional arch specific functions */
55void __weak arch_cpu_idle_prepare(void) { }
56void __weak arch_cpu_idle_enter(void) { }
57void __weak arch_cpu_idle_exit(void) { }
58void __weak arch_cpu_idle_dead(void) { }
59void __weak arch_cpu_idle(void)
60{
61 cpu_idle_force_poll = 1;
62}
63
64/*
65 * Generic idle loop implementation
66 */
67static void cpu_idle_loop(void)
68{
69 while (1) {
70 tick_nohz_idle_enter();
71
72 while (!need_resched()) {
73 check_pgt_cache();
74 rmb();
75
76 if (cpu_is_offline(smp_processor_id()))
77 arch_cpu_idle_dead();
78
79 local_irq_disable();
80 arch_cpu_idle_enter();
81
Linus Torvaldsab86e972013-04-30 08:15:40 -070082 /*
83 * In poll mode we reenable interrupts and spin.
84 *
85 * Also if we detected in the wakeup from idle
86 * path that the tick broadcast device expired
87 * for us, we don't want to go deep idle as we
88 * know that the IPI is going to arrive right
89 * away
90 */
91 if (cpu_idle_force_poll || tick_check_broadcast_expired()) {
Thomas Gleixnerd1669912013-03-21 22:49:35 +010092 cpu_idle_poll();
93 } else {
94 current_clr_polling();
95 if (!need_resched()) {
96 stop_critical_timings();
97 rcu_idle_enter();
98 arch_cpu_idle();
99 WARN_ON_ONCE(irqs_disabled());
100 rcu_idle_exit();
101 start_critical_timings();
102 } else {
103 local_irq_enable();
104 }
105 current_set_polling();
106 }
107 arch_cpu_idle_exit();
108 }
109 tick_nohz_idle_exit();
110 schedule_preempt_disabled();
111 }
112}
113
114void cpu_startup_entry(enum cpuhp_state state)
115{
Thomas Gleixnerd7880812013-06-10 16:52:03 +0200116 /*
117 * This #ifdef needs to die, but it's too late in the cycle to
118 * make this generic (arm and sh have never invoked the canary
119 * init for the non boot cpus!). Will be fixed in 3.11
120 */
121#ifdef CONFIG_X86
122 /*
123 * If we're the non-boot CPU, nothing set the stack canary up
124 * for us. The boot CPU already has it initialized but no harm
125 * in doing it again. This is a good place for updating it, as
126 * we wont ever return from this function (so the invalid
127 * canaries already on the stack wont ever trigger).
128 */
129 boot_init_stack_canary();
130#endif
Thomas Gleixnerd1669912013-03-21 22:49:35 +0100131 current_set_polling();
132 arch_cpu_idle_prepare();
133 cpu_idle_loop();
134}