Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Generic entry point for the idle threads |
| 3 | */ |
| 4 | #include <linux/sched.h> |
| 5 | #include <linux/cpu.h> |
| 6 | #include <linux/cpuidle.h> |
| 7 | #include <linux/tick.h> |
| 8 | #include <linux/mm.h> |
| 9 | #include <linux/stackprotector.h> |
| 10 | |
| 11 | #include <asm/tlb.h> |
| 12 | |
| 13 | #include <trace/events/power.h> |
| 14 | |
| 15 | static int __read_mostly cpu_idle_force_poll; |
| 16 | |
| 17 | void cpu_idle_poll_ctrl(bool enable) |
| 18 | { |
| 19 | if (enable) { |
| 20 | cpu_idle_force_poll++; |
| 21 | } else { |
| 22 | cpu_idle_force_poll--; |
| 23 | WARN_ON_ONCE(cpu_idle_force_poll < 0); |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | #ifdef CONFIG_GENERIC_IDLE_POLL_SETUP |
| 28 | static int __init cpu_idle_poll_setup(char *__unused) |
| 29 | { |
| 30 | cpu_idle_force_poll = 1; |
| 31 | return 1; |
| 32 | } |
| 33 | __setup("nohlt", cpu_idle_poll_setup); |
| 34 | |
| 35 | static int __init cpu_idle_nopoll_setup(char *__unused) |
| 36 | { |
| 37 | cpu_idle_force_poll = 0; |
| 38 | return 1; |
| 39 | } |
| 40 | __setup("hlt", cpu_idle_nopoll_setup); |
| 41 | #endif |
| 42 | |
| 43 | static inline int cpu_idle_poll(void) |
| 44 | { |
| 45 | rcu_idle_enter(); |
| 46 | trace_cpu_idle_rcuidle(0, smp_processor_id()); |
| 47 | local_irq_enable(); |
| 48 | while (!tif_need_resched()) |
| 49 | cpu_relax(); |
| 50 | trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, smp_processor_id()); |
| 51 | rcu_idle_exit(); |
| 52 | return 1; |
| 53 | } |
| 54 | |
| 55 | /* Weak implementations for optional arch specific functions */ |
| 56 | void __weak arch_cpu_idle_prepare(void) { } |
| 57 | void __weak arch_cpu_idle_enter(void) { } |
| 58 | void __weak arch_cpu_idle_exit(void) { } |
| 59 | void __weak arch_cpu_idle_dead(void) { } |
| 60 | void __weak arch_cpu_idle(void) |
| 61 | { |
| 62 | cpu_idle_force_poll = 1; |
| 63 | local_irq_enable(); |
| 64 | } |
| 65 | |
Daniel Lezcano | 30cdd69 | 2014-03-03 08:48:51 +0100 | [diff] [blame] | 66 | /** |
| 67 | * cpuidle_idle_call - the main idle function |
| 68 | * |
| 69 | * NOTE: no locks or semaphores should be used here |
| 70 | * return non-zero on failure |
| 71 | */ |
| 72 | static int cpuidle_idle_call(void) |
| 73 | { |
| 74 | struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices); |
| 75 | struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev); |
| 76 | int next_state, entered_state, ret; |
| 77 | bool broadcast; |
| 78 | |
Daniel Lezcano | 8ca3c64 | 2014-03-03 08:48:53 +0100 | [diff] [blame^] | 79 | if (current_clr_polling_and_test()) { |
| 80 | local_irq_enable(); |
| 81 | __current_set_polling(); |
| 82 | return 0; |
| 83 | } |
| 84 | |
Daniel Lezcano | c8cc7d4 | 2014-03-03 08:48:52 +0100 | [diff] [blame] | 85 | stop_critical_timings(); |
| 86 | rcu_idle_enter(); |
| 87 | |
Daniel Lezcano | 30cdd69 | 2014-03-03 08:48:51 +0100 | [diff] [blame] | 88 | ret = cpuidle_enabled(drv, dev); |
Daniel Lezcano | 8ca3c64 | 2014-03-03 08:48:53 +0100 | [diff] [blame^] | 89 | |
| 90 | if (!ret) { |
| 91 | /* ask the governor for the next state */ |
| 92 | next_state = cpuidle_select(drv, dev); |
| 93 | |
| 94 | if (current_clr_polling_and_test()) { |
| 95 | dev->last_residency = 0; |
| 96 | entered_state = next_state; |
| 97 | local_irq_enable(); |
| 98 | } else { |
| 99 | broadcast = !!(drv->states[next_state].flags & |
| 100 | CPUIDLE_FLAG_TIMER_STOP); |
| 101 | |
| 102 | if (broadcast) |
| 103 | ret = clockevents_notify( |
| 104 | CLOCK_EVT_NOTIFY_BROADCAST_ENTER, |
| 105 | &dev->cpu); |
| 106 | |
| 107 | if (!ret) { |
| 108 | trace_cpu_idle_rcuidle(next_state, dev->cpu); |
| 109 | |
| 110 | entered_state = cpuidle_enter(drv, dev, |
| 111 | next_state); |
| 112 | |
| 113 | trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, |
| 114 | dev->cpu); |
| 115 | |
| 116 | if (broadcast) |
| 117 | clockevents_notify( |
| 118 | CLOCK_EVT_NOTIFY_BROADCAST_EXIT, |
| 119 | &dev->cpu); |
| 120 | |
| 121 | /* give the governor an opportunity to reflect on the outcome */ |
| 122 | cpuidle_reflect(dev, entered_state); |
| 123 | } |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | if (ret) |
Daniel Lezcano | c8cc7d4 | 2014-03-03 08:48:52 +0100 | [diff] [blame] | 128 | arch_cpu_idle(); |
Daniel Lezcano | 30cdd69 | 2014-03-03 08:48:51 +0100 | [diff] [blame] | 129 | |
Daniel Lezcano | 8ca3c64 | 2014-03-03 08:48:53 +0100 | [diff] [blame^] | 130 | __current_set_polling(); |
Daniel Lezcano | 30cdd69 | 2014-03-03 08:48:51 +0100 | [diff] [blame] | 131 | |
Daniel Lezcano | c8cc7d4 | 2014-03-03 08:48:52 +0100 | [diff] [blame] | 132 | if (WARN_ON_ONCE(irqs_disabled())) |
| 133 | local_irq_enable(); |
| 134 | |
| 135 | rcu_idle_exit(); |
| 136 | start_critical_timings(); |
Daniel Lezcano | 30cdd69 | 2014-03-03 08:48:51 +0100 | [diff] [blame] | 137 | |
| 138 | return 0; |
| 139 | } |
Daniel Lezcano | 30cdd69 | 2014-03-03 08:48:51 +0100 | [diff] [blame] | 140 | |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 141 | /* |
| 142 | * Generic idle loop implementation |
| 143 | */ |
| 144 | static void cpu_idle_loop(void) |
| 145 | { |
| 146 | while (1) { |
| 147 | tick_nohz_idle_enter(); |
| 148 | |
| 149 | while (!need_resched()) { |
| 150 | check_pgt_cache(); |
| 151 | rmb(); |
| 152 | |
| 153 | if (cpu_is_offline(smp_processor_id())) |
| 154 | arch_cpu_idle_dead(); |
| 155 | |
| 156 | local_irq_disable(); |
| 157 | arch_cpu_idle_enter(); |
| 158 | |
| 159 | /* |
| 160 | * In poll mode we reenable interrupts and spin. |
| 161 | * |
| 162 | * Also if we detected in the wakeup from idle |
| 163 | * path that the tick broadcast device expired |
| 164 | * for us, we don't want to go deep idle as we |
| 165 | * know that the IPI is going to arrive right |
| 166 | * away |
| 167 | */ |
Daniel Lezcano | 8ca3c64 | 2014-03-03 08:48:53 +0100 | [diff] [blame^] | 168 | if (cpu_idle_force_poll || tick_check_broadcast_expired()) |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 169 | cpu_idle_poll(); |
Daniel Lezcano | 8ca3c64 | 2014-03-03 08:48:53 +0100 | [diff] [blame^] | 170 | else |
| 171 | cpuidle_idle_call(); |
| 172 | |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 173 | arch_cpu_idle_exit(); |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 174 | } |
Peter Zijlstra | 06d50c6 | 2014-02-24 18:22:07 +0100 | [diff] [blame] | 175 | |
| 176 | /* |
| 177 | * Since we fell out of the loop above, we know |
| 178 | * TIF_NEED_RESCHED must be set, propagate it into |
| 179 | * PREEMPT_NEED_RESCHED. |
| 180 | * |
| 181 | * This is required because for polling idle loops we will |
| 182 | * not have had an IPI to fold the state for us. |
| 183 | */ |
| 184 | preempt_set_need_resched(); |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 185 | tick_nohz_idle_exit(); |
| 186 | schedule_preempt_disabled(); |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | void cpu_startup_entry(enum cpuhp_state state) |
| 191 | { |
| 192 | /* |
| 193 | * This #ifdef needs to die, but it's too late in the cycle to |
| 194 | * make this generic (arm and sh have never invoked the canary |
| 195 | * init for the non boot cpus!). Will be fixed in 3.11 |
| 196 | */ |
| 197 | #ifdef CONFIG_X86 |
| 198 | /* |
| 199 | * If we're the non-boot CPU, nothing set the stack canary up |
| 200 | * for us. The boot CPU already has it initialized but no harm |
| 201 | * in doing it again. This is a good place for updating it, as |
| 202 | * we wont ever return from this function (so the invalid |
| 203 | * canaries already on the stack wont ever trigger). |
| 204 | */ |
| 205 | boot_init_stack_canary(); |
| 206 | #endif |
| 207 | __current_set_polling(); |
| 208 | arch_cpu_idle_prepare(); |
| 209 | cpu_idle_loop(); |
| 210 | } |