Thomas Gleixner | 457c899 | 2019-05-19 13:08:55 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 2 | /* |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 3 | * Generic entry points for the idle threads and |
| 4 | * implementation of the idle task scheduling class. |
| 5 | * |
| 6 | * (NOTE: these are not related to SCHED_IDLE batch scheduled |
| 7 | * tasks which are handled in sched/fair.c ) |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 8 | */ |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 9 | |
Chris Metcalf | 6727ad9 | 2016-10-07 17:02:55 -0700 | [diff] [blame] | 10 | /* Linker adds these: start and end of __cpuidle functions */ |
| 11 | extern char __cpuidle_text_start[], __cpuidle_text_end[]; |
| 12 | |
Rafael J. Wysocki | faad384 | 2015-05-10 01:18:03 +0200 | [diff] [blame] | 13 | /** |
| 14 | * sched_idle_set_state - Record idle state for the current CPU. |
| 15 | * @idle_state: State to record. |
| 16 | */ |
| 17 | void sched_idle_set_state(struct cpuidle_state *idle_state) |
| 18 | { |
| 19 | idle_set_state(this_rq(), idle_state); |
| 20 | } |
| 21 | |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 22 | static int __read_mostly cpu_idle_force_poll; |
| 23 | |
| 24 | void cpu_idle_poll_ctrl(bool enable) |
| 25 | { |
| 26 | if (enable) { |
| 27 | cpu_idle_force_poll++; |
| 28 | } else { |
| 29 | cpu_idle_force_poll--; |
| 30 | WARN_ON_ONCE(cpu_idle_force_poll < 0); |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | #ifdef CONFIG_GENERIC_IDLE_POLL_SETUP |
| 35 | static int __init cpu_idle_poll_setup(char *__unused) |
| 36 | { |
| 37 | cpu_idle_force_poll = 1; |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 38 | |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 39 | return 1; |
| 40 | } |
| 41 | __setup("nohlt", cpu_idle_poll_setup); |
| 42 | |
| 43 | static int __init cpu_idle_nopoll_setup(char *__unused) |
| 44 | { |
| 45 | cpu_idle_force_poll = 0; |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 46 | |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 47 | return 1; |
| 48 | } |
| 49 | __setup("hlt", cpu_idle_nopoll_setup); |
| 50 | #endif |
| 51 | |
Chris Metcalf | 6727ad9 | 2016-10-07 17:02:55 -0700 | [diff] [blame] | 52 | static noinline int __cpuidle cpu_idle_poll(void) |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 53 | { |
Peter Zijlstra | a01353c | 2023-01-12 20:43:27 +0100 | [diff] [blame] | 54 | instrumentation_begin(); |
Peter Zijlstra | 1098582 | 2020-08-07 20:50:19 +0200 | [diff] [blame] | 55 | trace_cpu_idle(0, smp_processor_id()); |
Daniel Bristot de Oliveira | 9babcd7 | 2015-10-08 15:36:06 -0300 | [diff] [blame] | 56 | stop_critical_timings(); |
Peter Zijlstra | a01353c | 2023-01-12 20:43:27 +0100 | [diff] [blame] | 57 | ct_cpuidle_enter(); |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 58 | |
Peter Zijlstra | a01353c | 2023-01-12 20:43:27 +0100 | [diff] [blame] | 59 | raw_local_irq_enable(); |
Preeti U Murthy | ff6f2d2 | 2015-01-21 16:27:25 +0530 | [diff] [blame] | 60 | while (!tif_need_resched() && |
Peter Zijlstra | 1098582 | 2020-08-07 20:50:19 +0200 | [diff] [blame] | 61 | (cpu_idle_force_poll || tick_check_broadcast_expired())) |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 62 | cpu_relax(); |
Peter Zijlstra | a01353c | 2023-01-12 20:43:27 +0100 | [diff] [blame] | 63 | raw_local_irq_disable(); |
Peter Zijlstra | 1098582 | 2020-08-07 20:50:19 +0200 | [diff] [blame] | 64 | |
Peter Zijlstra | a01353c | 2023-01-12 20:43:27 +0100 | [diff] [blame] | 65 | ct_cpuidle_exit(); |
Peter Zijlstra | 1098582 | 2020-08-07 20:50:19 +0200 | [diff] [blame] | 66 | start_critical_timings(); |
| 67 | trace_cpu_idle(PWR_EVENT_EXIT, smp_processor_id()); |
Peter Zijlstra | a01353c | 2023-01-12 20:43:27 +0100 | [diff] [blame] | 68 | local_irq_enable(); |
| 69 | instrumentation_end(); |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 70 | |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 71 | return 1; |
| 72 | } |
| 73 | |
| 74 | /* Weak implementations for optional arch specific functions */ |
| 75 | void __weak arch_cpu_idle_prepare(void) { } |
| 76 | void __weak arch_cpu_idle_enter(void) { } |
| 77 | void __weak arch_cpu_idle_exit(void) { } |
Josh Poimboeuf | 071c44e | 2023-02-13 23:05:58 -0800 | [diff] [blame] | 78 | void __weak __noreturn arch_cpu_idle_dead(void) { while (1); } |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 79 | void __weak arch_cpu_idle(void) |
| 80 | { |
| 81 | cpu_idle_force_poll = 1; |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 82 | } |
| 83 | |
Thomas Gleixner | 2be2a19 | 2024-02-29 15:23:36 +0100 | [diff] [blame] | 84 | #ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE |
| 85 | DEFINE_STATIC_KEY_FALSE(arch_needs_tick_broadcast); |
| 86 | |
| 87 | static inline void cond_tick_broadcast_enter(void) |
| 88 | { |
| 89 | if (static_branch_unlikely(&arch_needs_tick_broadcast)) |
| 90 | tick_broadcast_enter(); |
| 91 | } |
| 92 | |
| 93 | static inline void cond_tick_broadcast_exit(void) |
| 94 | { |
| 95 | if (static_branch_unlikely(&arch_needs_tick_broadcast)) |
| 96 | tick_broadcast_exit(); |
| 97 | } |
| 98 | #else |
| 99 | static inline void cond_tick_broadcast_enter(void) { } |
| 100 | static inline void cond_tick_broadcast_exit(void) { } |
| 101 | #endif |
| 102 | |
Rafael J. Wysocki | 827a5ae | 2015-05-10 01:18:46 +0200 | [diff] [blame] | 103 | /** |
| 104 | * default_idle_call - Default CPU idle routine. |
| 105 | * |
| 106 | * To use when the cpuidle framework cannot be used. |
| 107 | */ |
Chris Metcalf | 6727ad9 | 2016-10-07 17:02:55 -0700 | [diff] [blame] | 108 | void __cpuidle default_idle_call(void) |
Rafael J. Wysocki | 82f6632 | 2015-05-04 22:53:22 +0200 | [diff] [blame] | 109 | { |
Peter Zijlstra | a01353c | 2023-01-12 20:43:27 +0100 | [diff] [blame] | 110 | instrumentation_begin(); |
| 111 | if (!current_clr_polling_and_test()) { |
Thomas Gleixner | 2be2a19 | 2024-02-29 15:23:36 +0100 | [diff] [blame] | 112 | cond_tick_broadcast_enter(); |
Peter Zijlstra | 9864f5b5 | 2020-08-12 12:27:10 +0200 | [diff] [blame] | 113 | trace_cpu_idle(1, smp_processor_id()); |
Lucas Stach | 63caae8 | 2015-07-20 18:34:50 +0200 | [diff] [blame] | 114 | stop_critical_timings(); |
Peter Zijlstra | 58c644b | 2020-11-20 11:50:35 +0100 | [diff] [blame] | 115 | |
Peter Zijlstra | a01353c | 2023-01-12 20:43:27 +0100 | [diff] [blame] | 116 | ct_cpuidle_enter(); |
Rafael J. Wysocki | 82f6632 | 2015-05-04 22:53:22 +0200 | [diff] [blame] | 117 | arch_cpu_idle(); |
Peter Zijlstra | a01353c | 2023-01-12 20:43:27 +0100 | [diff] [blame] | 118 | ct_cpuidle_exit(); |
Peter Zijlstra | 58c644b | 2020-11-20 11:50:35 +0100 | [diff] [blame] | 119 | |
Lucas Stach | 63caae8 | 2015-07-20 18:34:50 +0200 | [diff] [blame] | 120 | start_critical_timings(); |
Peter Zijlstra | 9864f5b5 | 2020-08-12 12:27:10 +0200 | [diff] [blame] | 121 | trace_cpu_idle(PWR_EVENT_EXIT, smp_processor_id()); |
Thomas Gleixner | 2be2a19 | 2024-02-29 15:23:36 +0100 | [diff] [blame] | 122 | cond_tick_broadcast_exit(); |
Lucas Stach | 63caae8 | 2015-07-20 18:34:50 +0200 | [diff] [blame] | 123 | } |
Peter Zijlstra | a01353c | 2023-01-12 20:43:27 +0100 | [diff] [blame] | 124 | local_irq_enable(); |
| 125 | instrumentation_end(); |
Rafael J. Wysocki | 82f6632 | 2015-05-04 22:53:22 +0200 | [diff] [blame] | 126 | } |
| 127 | |
Rafael J. Wysocki | 10e8b11e | 2020-06-25 13:52:53 +0200 | [diff] [blame] | 128 | static int call_cpuidle_s2idle(struct cpuidle_driver *drv, |
| 129 | struct cpuidle_device *dev) |
| 130 | { |
| 131 | if (current_clr_polling_and_test()) |
| 132 | return -EBUSY; |
| 133 | |
| 134 | return cpuidle_enter_s2idle(drv, dev); |
| 135 | } |
| 136 | |
Rafael J. Wysocki | bcf6ad8 | 2015-05-04 22:53:35 +0200 | [diff] [blame] | 137 | static int call_cpuidle(struct cpuidle_driver *drv, struct cpuidle_device *dev, |
| 138 | int next_state) |
| 139 | { |
Rafael J. Wysocki | bcf6ad8 | 2015-05-04 22:53:35 +0200 | [diff] [blame] | 140 | /* |
| 141 | * The idle task must be scheduled, it is pointless to go to idle, just |
| 142 | * update no idle residency and return. |
| 143 | */ |
| 144 | if (current_clr_polling_and_test()) { |
Rafael J. Wysocki | c1d51f6 | 2019-11-07 15:25:12 +0100 | [diff] [blame] | 145 | dev->last_residency_ns = 0; |
Rafael J. Wysocki | bcf6ad8 | 2015-05-04 22:53:35 +0200 | [diff] [blame] | 146 | local_irq_enable(); |
| 147 | return -EBUSY; |
| 148 | } |
| 149 | |
Rafael J. Wysocki | bcf6ad8 | 2015-05-04 22:53:35 +0200 | [diff] [blame] | 150 | /* |
| 151 | * Enter the idle state previously returned by the governor decision. |
| 152 | * This function will block until an interrupt occurs and will take |
| 153 | * care of re-enabling the local interrupts |
| 154 | */ |
Rafael J. Wysocki | 827a5ae | 2015-05-10 01:18:46 +0200 | [diff] [blame] | 155 | return cpuidle_enter(drv, dev, next_state); |
Rafael J. Wysocki | bcf6ad8 | 2015-05-04 22:53:35 +0200 | [diff] [blame] | 156 | } |
| 157 | |
Daniel Lezcano | 30cdd69 | 2014-03-03 08:48:51 +0100 | [diff] [blame] | 158 | /** |
| 159 | * cpuidle_idle_call - the main idle function |
| 160 | * |
| 161 | * NOTE: no locks or semaphores should be used here |
Andy Lutomirski | 82c65d6 | 2014-06-04 10:31:16 -0700 | [diff] [blame] | 162 | * |
Ingo Molnar | 3b03706 | 2021-03-18 13:38:50 +0100 | [diff] [blame] | 163 | * On architectures that support TIF_POLLING_NRFLAG, is called with polling |
Andy Lutomirski | 82c65d6 | 2014-06-04 10:31:16 -0700 | [diff] [blame] | 164 | * set, and it returns with polling set. If it ever stops polling, it |
| 165 | * must clear the polling bit. |
Daniel Lezcano | 30cdd69 | 2014-03-03 08:48:51 +0100 | [diff] [blame] | 166 | */ |
Rafael J. Wysocki | 08c373e | 2014-04-21 01:26:58 +0200 | [diff] [blame] | 167 | static void cpuidle_idle_call(void) |
Daniel Lezcano | 30cdd69 | 2014-03-03 08:48:51 +0100 | [diff] [blame] | 168 | { |
Catalin Marinas | 9bd616e | 2016-06-01 18:52:16 +0100 | [diff] [blame] | 169 | struct cpuidle_device *dev = cpuidle_get_device(); |
Daniel Lezcano | 30cdd69 | 2014-03-03 08:48:51 +0100 | [diff] [blame] | 170 | struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev); |
Peter Zijlstra | 3735227 | 2014-04-11 13:55:48 +0200 | [diff] [blame] | 171 | int next_state, entered_state; |
Daniel Lezcano | 30cdd69 | 2014-03-03 08:48:51 +0100 | [diff] [blame] | 172 | |
Daniel Lezcano | a1d028b | 2014-03-03 08:48:54 +0100 | [diff] [blame] | 173 | /* |
| 174 | * Check if the idle task must be rescheduled. If it is the |
Ingo Molnar | 402de7f | 2024-05-27 16:54:52 +0200 | [diff] [blame] | 175 | * case, exit the function after re-enabling the local IRQ. |
Daniel Lezcano | a1d028b | 2014-03-03 08:48:54 +0100 | [diff] [blame] | 176 | */ |
Peter Zijlstra | c444117 | 2014-04-11 13:47:16 +0200 | [diff] [blame] | 177 | if (need_resched()) { |
Daniel Lezcano | 8ca3c64 | 2014-03-03 08:48:53 +0100 | [diff] [blame] | 178 | local_irq_enable(); |
Rafael J. Wysocki | 08c373e | 2014-04-21 01:26:58 +0200 | [diff] [blame] | 179 | return; |
Daniel Lezcano | 8ca3c64 | 2014-03-03 08:48:53 +0100 | [diff] [blame] | 180 | } |
| 181 | |
Rafael J. Wysocki | 82f6632 | 2015-05-04 22:53:22 +0200 | [diff] [blame] | 182 | if (cpuidle_not_available(drv, dev)) { |
Rafael J. Wysocki | ed98c34 | 2018-03-15 23:07:41 +0100 | [diff] [blame] | 183 | tick_nohz_idle_stop_tick(); |
Rafael J. Wysocki | ed98c34 | 2018-03-15 23:07:41 +0100 | [diff] [blame] | 184 | |
Rafael J. Wysocki | 82f6632 | 2015-05-04 22:53:22 +0200 | [diff] [blame] | 185 | default_idle_call(); |
| 186 | goto exit_idle; |
| 187 | } |
Rafael J. Wysocki | ef2b22a | 2015-03-02 22:26:55 +0100 | [diff] [blame] | 188 | |
Daniel Lezcano | a1d028b | 2014-03-03 08:48:54 +0100 | [diff] [blame] | 189 | /* |
Rafael J. Wysocki | f02f4f9 | 2017-08-10 00:13:56 +0200 | [diff] [blame] | 190 | * Suspend-to-idle ("s2idle") is a system state in which all user space |
Rafael J. Wysocki | 3810631 | 2015-02-12 23:33:15 +0100 | [diff] [blame] | 191 | * has been frozen, all I/O devices have been suspended and the only |
Hewenliang | 3e0de27 | 2020-01-09 21:56:04 -0500 | [diff] [blame] | 192 | * activity happens here and in interrupts (if any). In that case bypass |
Ingo Molnar | 3b03706 | 2021-03-18 13:38:50 +0100 | [diff] [blame] | 193 | * the cpuidle governor and go straight for the deepest idle state |
Rafael J. Wysocki | 3810631 | 2015-02-12 23:33:15 +0100 | [diff] [blame] | 194 | * available. Possibly also suspend the local tick and the entire |
| 195 | * timekeeping to prevent timer interrupts from kicking us out of idle |
| 196 | * until a proper wakeup interrupt happens. |
| 197 | */ |
Jacob Pan | bb8313b | 2016-11-28 23:03:04 -0800 | [diff] [blame] | 198 | |
Daniel Lezcano | c55b51a | 2019-11-16 14:16:12 +0100 | [diff] [blame] | 199 | if (idle_should_enter_s2idle() || dev->forced_idle_latency_limit_ns) { |
Daniel Lezcano | 5aa9ba6 | 2019-11-16 14:16:13 +0100 | [diff] [blame] | 200 | u64 max_latency_ns; |
| 201 | |
Rafael J. Wysocki | f02f4f9 | 2017-08-10 00:13:56 +0200 | [diff] [blame] | 202 | if (idle_should_enter_s2idle()) { |
Rafael J. Wysocki | ed98c34 | 2018-03-15 23:07:41 +0100 | [diff] [blame] | 203 | |
Rafael J. Wysocki | 10e8b11e | 2020-06-25 13:52:53 +0200 | [diff] [blame] | 204 | entered_state = call_cpuidle_s2idle(drv, dev); |
| 205 | if (entered_state > 0) |
Jacob Pan | bb8313b | 2016-11-28 23:03:04 -0800 | [diff] [blame] | 206 | goto exit_idle; |
Rafael J. Wysocki | ed98c34 | 2018-03-15 23:07:41 +0100 | [diff] [blame] | 207 | |
Daniel Lezcano | 5aa9ba6 | 2019-11-16 14:16:13 +0100 | [diff] [blame] | 208 | max_latency_ns = U64_MAX; |
| 209 | } else { |
| 210 | max_latency_ns = dev->forced_idle_latency_limit_ns; |
Rafael J. Wysocki | ef2b22a | 2015-03-02 22:26:55 +0100 | [diff] [blame] | 211 | } |
Rafael J. Wysocki | 3810631 | 2015-02-12 23:33:15 +0100 | [diff] [blame] | 212 | |
Rafael J. Wysocki | ed98c34 | 2018-03-15 23:07:41 +0100 | [diff] [blame] | 213 | tick_nohz_idle_stop_tick(); |
Rafael J. Wysocki | ed98c34 | 2018-03-15 23:07:41 +0100 | [diff] [blame] | 214 | |
Daniel Lezcano | 5aa9ba6 | 2019-11-16 14:16:13 +0100 | [diff] [blame] | 215 | next_state = cpuidle_find_deepest_state(drv, dev, max_latency_ns); |
Rafael J. Wysocki | bcf6ad8 | 2015-05-04 22:53:35 +0200 | [diff] [blame] | 216 | call_cpuidle(drv, dev, next_state); |
Rafael J. Wysocki | ef2b22a | 2015-03-02 22:26:55 +0100 | [diff] [blame] | 217 | } else { |
Rafael J. Wysocki | 45f1ff5 | 2018-03-22 17:50:49 +0100 | [diff] [blame] | 218 | bool stop_tick = true; |
| 219 | |
Rafael J. Wysocki | ef2b22a | 2015-03-02 22:26:55 +0100 | [diff] [blame] | 220 | /* |
| 221 | * Ask the cpuidle framework to choose a convenient idle state. |
| 222 | */ |
Rafael J. Wysocki | 45f1ff5 | 2018-03-22 17:50:49 +0100 | [diff] [blame] | 223 | next_state = cpuidle_select(drv, dev, &stop_tick); |
Rafael J. Wysocki | 554c8aa | 2018-04-03 23:17:11 +0200 | [diff] [blame] | 224 | |
Rafael J. Wysocki | 7059b36 | 2018-08-09 19:08:34 +0200 | [diff] [blame] | 225 | if (stop_tick || tick_nohz_tick_stopped()) |
Rafael J. Wysocki | 554c8aa | 2018-04-03 23:17:11 +0200 | [diff] [blame] | 226 | tick_nohz_idle_stop_tick(); |
| 227 | else |
| 228 | tick_nohz_idle_retain_tick(); |
| 229 | |
Rafael J. Wysocki | bcf6ad8 | 2015-05-04 22:53:35 +0200 | [diff] [blame] | 230 | entered_state = call_cpuidle(drv, dev, next_state); |
| 231 | /* |
| 232 | * Give the governor an opportunity to reflect on the outcome |
| 233 | */ |
Rafael J. Wysocki | ef2b22a | 2015-03-02 22:26:55 +0100 | [diff] [blame] | 234 | cpuidle_reflect(dev, entered_state); |
Rafael J. Wysocki | bcf6ad8 | 2015-05-04 22:53:35 +0200 | [diff] [blame] | 235 | } |
Peter Zijlstra | 3735227 | 2014-04-11 13:55:48 +0200 | [diff] [blame] | 236 | |
| 237 | exit_idle: |
Daniel Lezcano | 8ca3c64 | 2014-03-03 08:48:53 +0100 | [diff] [blame] | 238 | __current_set_polling(); |
Daniel Lezcano | 30cdd69 | 2014-03-03 08:48:51 +0100 | [diff] [blame] | 239 | |
Daniel Lezcano | a1d028b | 2014-03-03 08:48:54 +0100 | [diff] [blame] | 240 | /* |
Ingo Molnar | 402de7f | 2024-05-27 16:54:52 +0200 | [diff] [blame] | 241 | * It is up to the idle functions to re-enable local interrupts |
Daniel Lezcano | a1d028b | 2014-03-03 08:48:54 +0100 | [diff] [blame] | 242 | */ |
Daniel Lezcano | c8cc7d4 | 2014-03-03 08:48:52 +0100 | [diff] [blame] | 243 | if (WARN_ON_ONCE(irqs_disabled())) |
| 244 | local_irq_enable(); |
Daniel Lezcano | 30cdd69 | 2014-03-03 08:48:51 +0100 | [diff] [blame] | 245 | } |
Daniel Lezcano | 30cdd69 | 2014-03-03 08:48:51 +0100 | [diff] [blame] | 246 | |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 247 | /* |
| 248 | * Generic idle loop implementation |
Andy Lutomirski | 82c65d6 | 2014-06-04 10:31:16 -0700 | [diff] [blame] | 249 | * |
| 250 | * Called with polling cleared. |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 251 | */ |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 252 | static void do_idle(void) |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 253 | { |
Cheng Jian | 54b933c | 2017-10-25 19:28:27 +0800 | [diff] [blame] | 254 | int cpu = smp_processor_id(); |
Vincent Guittot | c6f8865 | 2021-02-24 14:30:06 +0100 | [diff] [blame] | 255 | |
| 256 | /* |
| 257 | * Check if we need to update blocked load |
| 258 | */ |
| 259 | nohz_run_idle_balance(cpu); |
| 260 | |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 261 | /* |
| 262 | * If the arch has a polling bit, we maintain an invariant: |
| 263 | * |
| 264 | * Our polling bit is clear if we're not scheduled (i.e. if rq->curr != |
| 265 | * rq->idle). This means that, if rq->idle has the polling bit set, |
| 266 | * then setting need_resched is guaranteed to cause the CPU to |
| 267 | * reschedule. |
| 268 | */ |
Gaurav Jindal (Gaurav Jindal) | df55f46 | 2016-05-12 10:13:33 +0000 | [diff] [blame] | 269 | |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 270 | __current_set_polling(); |
| 271 | tick_nohz_idle_enter(); |
Andy Lutomirski | 82c65d6 | 2014-06-04 10:31:16 -0700 | [diff] [blame] | 272 | |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 273 | while (!need_resched()) { |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 274 | rmb(); |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 275 | |
Frederic Weisbecker | dd54038 | 2023-11-14 14:38:39 -0500 | [diff] [blame] | 276 | /* |
| 277 | * Interrupts shouldn't be re-enabled from that point on until |
| 278 | * the CPU sleeping instruction is reached. Otherwise an interrupt |
| 279 | * may fire and queue a timer that would be ignored until the CPU |
| 280 | * wakes from the sleeping instruction. And testing need_resched() |
| 281 | * doesn't tell about pending needed timer reprogram. |
| 282 | * |
| 283 | * Several cases to consider: |
| 284 | * |
| 285 | * - SLEEP-UNTIL-PENDING-INTERRUPT based instructions such as |
| 286 | * "wfi" or "mwait" are fine because they can be entered with |
| 287 | * interrupt disabled. |
| 288 | * |
| 289 | * - sti;mwait() couple is fine because the interrupts are |
| 290 | * re-enabled only upon the execution of mwait, leaving no gap |
| 291 | * in-between. |
| 292 | * |
| 293 | * - ROLLBACK based idle handlers with the sleeping instruction |
| 294 | * called with interrupts enabled are NOT fine. In this scheme |
| 295 | * when the interrupt detects it has interrupted an idle handler, |
| 296 | * it rolls back to its beginning which performs the |
| 297 | * need_resched() check before re-executing the sleeping |
| 298 | * instruction. This can leak a pending needed timer reprogram. |
| 299 | * If such a scheme is really mandatory due to the lack of an |
| 300 | * appropriate CPU sleeping instruction, then a FAST-FORWARD |
| 301 | * must instead be applied: when the interrupt detects it has |
| 302 | * interrupted an idle handler, it must resume to the end of |
| 303 | * this idle handler so that the generic idle loop is iterated |
| 304 | * again to reprogram the tick. |
| 305 | */ |
Peter Zijlstra | e78a761 | 2019-06-05 07:46:43 -0700 | [diff] [blame] | 306 | local_irq_disable(); |
| 307 | |
Cheng Jian | 54b933c | 2017-10-25 19:28:27 +0800 | [diff] [blame] | 308 | if (cpu_is_offline(cpu)) { |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 309 | cpuhp_report_idle_dead(); |
| 310 | arch_cpu_idle_dead(); |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 311 | } |
Peter Zijlstra | 06d50c6 | 2014-02-24 18:22:07 +0100 | [diff] [blame] | 312 | |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 313 | arch_cpu_idle_enter(); |
Frederic Weisbecker | 43789ef | 2021-02-01 00:05:45 +0100 | [diff] [blame] | 314 | rcu_nocb_flush_deferred_wakeup(); |
Andy Lutomirski | 82c65d6 | 2014-06-04 10:31:16 -0700 | [diff] [blame] | 315 | |
| 316 | /* |
Ingo Molnar | 402de7f | 2024-05-27 16:54:52 +0200 | [diff] [blame] | 317 | * In poll mode we re-enable interrupts and spin. Also if we |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 318 | * detected in the wakeup from idle path that the tick |
| 319 | * broadcast device expired for us, we don't want to go deep |
| 320 | * idle as we know that the IPI is going to arrive right away. |
Andy Lutomirski | 82c65d6 | 2014-06-04 10:31:16 -0700 | [diff] [blame] | 321 | */ |
Rafael J. Wysocki | 2aaf709 | 2018-03-15 23:05:50 +0100 | [diff] [blame] | 322 | if (cpu_idle_force_poll || tick_check_broadcast_expired()) { |
| 323 | tick_nohz_idle_restart_tick(); |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 324 | cpu_idle_poll(); |
Rafael J. Wysocki | 2aaf709 | 2018-03-15 23:05:50 +0100 | [diff] [blame] | 325 | } else { |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 326 | cpuidle_idle_call(); |
Rafael J. Wysocki | 2aaf709 | 2018-03-15 23:05:50 +0100 | [diff] [blame] | 327 | } |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 328 | arch_cpu_idle_exit(); |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 329 | } |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 330 | |
| 331 | /* |
| 332 | * Since we fell out of the loop above, we know TIF_NEED_RESCHED must |
| 333 | * be set, propagate it into PREEMPT_NEED_RESCHED. |
| 334 | * |
| 335 | * This is required because for polling idle loops we will not have had |
| 336 | * an IPI to fold the state for us. |
| 337 | */ |
| 338 | preempt_set_need_resched(); |
| 339 | tick_nohz_idle_exit(); |
| 340 | __current_clr_polling(); |
| 341 | |
| 342 | /* |
| 343 | * We promise to call sched_ttwu_pending() and reschedule if |
| 344 | * need_resched() is set while polling is set. That means that clearing |
| 345 | * polling needs to be visible before doing these things. |
| 346 | */ |
| 347 | smp_mb__after_atomic(); |
| 348 | |
Peter Zijlstra | b2a02fc | 2020-05-26 18:11:01 +0200 | [diff] [blame] | 349 | /* |
| 350 | * RCU relies on this call to be done outside of an RCU read-side |
| 351 | * critical section. |
| 352 | */ |
Thomas Gleixner | 16bf5a5 | 2022-04-13 15:31:03 +0200 | [diff] [blame] | 353 | flush_smp_call_function_queue(); |
Steven Rostedt (VMware) | 8663eff | 2017-04-14 08:48:09 -0400 | [diff] [blame] | 354 | schedule_idle(); |
Josh Poimboeuf | d83a7cb | 2017-02-13 19:42:40 -0600 | [diff] [blame] | 355 | |
| 356 | if (unlikely(klp_patch_pending(current))) |
| 357 | klp_update_patch_state(current); |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 358 | } |
| 359 | |
Chris Metcalf | 6727ad9 | 2016-10-07 17:02:55 -0700 | [diff] [blame] | 360 | bool cpu_in_idle(unsigned long pc) |
| 361 | { |
| 362 | return pc >= (unsigned long)__cpuidle_text_start && |
| 363 | pc < (unsigned long)__cpuidle_text_end; |
| 364 | } |
| 365 | |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 366 | struct idle_timer { |
| 367 | struct hrtimer timer; |
| 368 | int done; |
| 369 | }; |
| 370 | |
| 371 | static enum hrtimer_restart idle_inject_timer_fn(struct hrtimer *timer) |
| 372 | { |
| 373 | struct idle_timer *it = container_of(timer, struct idle_timer, timer); |
| 374 | |
| 375 | WRITE_ONCE(it->done, 1); |
| 376 | set_tsk_need_resched(current); |
| 377 | |
| 378 | return HRTIMER_NORESTART; |
| 379 | } |
| 380 | |
Daniel Lezcano | c55b51a | 2019-11-16 14:16:12 +0100 | [diff] [blame] | 381 | void play_idle_precise(u64 duration_ns, u64 latency_ns) |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 382 | { |
| 383 | struct idle_timer it; |
| 384 | |
| 385 | /* |
| 386 | * Only FIFO tasks can disable the tick since they don't need the forced |
| 387 | * preemption. |
| 388 | */ |
| 389 | WARN_ON_ONCE(current->policy != SCHED_FIFO); |
| 390 | WARN_ON_ONCE(current->nr_cpus_allowed != 1); |
| 391 | WARN_ON_ONCE(!(current->flags & PF_KTHREAD)); |
| 392 | WARN_ON_ONCE(!(current->flags & PF_NO_SETAFFINITY)); |
Daniel Lezcano | c55b51a | 2019-11-16 14:16:12 +0100 | [diff] [blame] | 393 | WARN_ON_ONCE(!duration_ns); |
Mathieu Desnoyers | 618758e | 2020-10-20 09:47:14 -0400 | [diff] [blame] | 394 | WARN_ON_ONCE(current->mm); |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 395 | |
| 396 | rcu_sleep_check(); |
| 397 | preempt_disable(); |
| 398 | current->flags |= PF_IDLE; |
Daniel Lezcano | c55b51a | 2019-11-16 14:16:12 +0100 | [diff] [blame] | 399 | cpuidle_use_deepest_state(latency_ns); |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 400 | |
| 401 | it.done = 0; |
Sebastian Andrzej Siewior | 9848417 | 2021-09-06 13:30:34 +0200 | [diff] [blame] | 402 | hrtimer_init_on_stack(&it.timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_HARD); |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 403 | it.timer.function = idle_inject_timer_fn; |
Daniel Lezcano | c55b51a | 2019-11-16 14:16:12 +0100 | [diff] [blame] | 404 | hrtimer_start(&it.timer, ns_to_ktime(duration_ns), |
Sebastian Andrzej Siewior | 9848417 | 2021-09-06 13:30:34 +0200 | [diff] [blame] | 405 | HRTIMER_MODE_REL_PINNED_HARD); |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 406 | |
| 407 | while (!READ_ONCE(it.done)) |
| 408 | do_idle(); |
| 409 | |
Daniel Lezcano | c55b51a | 2019-11-16 14:16:12 +0100 | [diff] [blame] | 410 | cpuidle_use_deepest_state(0); |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 411 | current->flags &= ~PF_IDLE; |
| 412 | |
| 413 | preempt_fold_need_resched(); |
| 414 | preempt_enable(); |
| 415 | } |
Daniel Lezcano | c55b51a | 2019-11-16 14:16:12 +0100 | [diff] [blame] | 416 | EXPORT_SYMBOL_GPL(play_idle_precise); |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 417 | |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 418 | void cpu_startup_entry(enum cpuhp_state state) |
| 419 | { |
Liam R. Howlett | cff9b23 | 2023-09-15 13:44:44 -0400 | [diff] [blame] | 420 | current->flags |= PF_IDLE; |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 421 | arch_cpu_idle_prepare(); |
Thomas Gleixner | 8df3e07 | 2016-02-26 18:43:41 +0000 | [diff] [blame] | 422 | cpuhp_online_idle(state); |
Peter Zijlstra | c1de45c | 2016-11-28 23:03:05 -0800 | [diff] [blame] | 423 | while (1) |
| 424 | do_idle(); |
Nicolas Pitre | cf37b6b | 2014-01-26 23:42:01 -0500 | [diff] [blame] | 425 | } |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 426 | |
| 427 | /* |
| 428 | * idle-task scheduling class. |
| 429 | */ |
| 430 | |
| 431 | #ifdef CONFIG_SMP |
| 432 | static int |
Valentin Schneider | 3aef1551 | 2020-11-02 18:45:13 +0000 | [diff] [blame] | 433 | select_task_rq_idle(struct task_struct *p, int cpu, int flags) |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 434 | { |
| 435 | return task_cpu(p); /* IDLE tasks as never migrated */ |
| 436 | } |
Peter Zijlstra | 6e2df05 | 2019-11-08 11:11:52 +0100 | [diff] [blame] | 437 | |
| 438 | static int |
| 439 | balance_idle(struct rq *rq, struct task_struct *prev, struct rq_flags *rf) |
| 440 | { |
| 441 | return WARN_ON_ONCE(1); |
| 442 | } |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 443 | #endif |
| 444 | |
| 445 | /* |
| 446 | * Idle tasks are unconditionally rescheduled: |
| 447 | */ |
Ingo Molnar | e23edc8 | 2023-09-19 10:38:21 +0200 | [diff] [blame] | 448 | static void wakeup_preempt_idle(struct rq *rq, struct task_struct *p, int flags) |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 449 | { |
| 450 | resched_curr(rq); |
| 451 | } |
| 452 | |
Peter Zijlstra | 6e2df05 | 2019-11-08 11:11:52 +0100 | [diff] [blame] | 453 | static void put_prev_task_idle(struct rq *rq, struct task_struct *prev) |
Peter Zijlstra | 03b7fad | 2019-05-29 20:36:41 +0000 | [diff] [blame] | 454 | { |
| 455 | } |
| 456 | |
Peter Zijlstra | a0e813f | 2019-11-08 14:16:00 +0100 | [diff] [blame] | 457 | static void set_next_task_idle(struct rq *rq, struct task_struct *next, bool first) |
Peter Zijlstra | 03b7fad | 2019-05-29 20:36:41 +0000 | [diff] [blame] | 458 | { |
| 459 | update_idle_core(rq); |
| 460 | schedstat_inc(rq->sched_goidle); |
| 461 | } |
| 462 | |
Peter Zijlstra | 21f56ffe | 2020-11-17 18:19:32 -0500 | [diff] [blame] | 463 | #ifdef CONFIG_SMP |
| 464 | static struct task_struct *pick_task_idle(struct rq *rq) |
| 465 | { |
| 466 | return rq->idle; |
| 467 | } |
| 468 | #endif |
| 469 | |
Peter Zijlstra | 98c2f70 | 2019-11-08 14:15:58 +0100 | [diff] [blame] | 470 | struct task_struct *pick_next_task_idle(struct rq *rq) |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 471 | { |
Peter Zijlstra | 03b7fad | 2019-05-29 20:36:41 +0000 | [diff] [blame] | 472 | struct task_struct *next = rq->idle; |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 473 | |
Peter Zijlstra | a0e813f | 2019-11-08 14:16:00 +0100 | [diff] [blame] | 474 | set_next_task_idle(rq, next, true); |
Peter Zijlstra | 03b7fad | 2019-05-29 20:36:41 +0000 | [diff] [blame] | 475 | |
| 476 | return next; |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 477 | } |
| 478 | |
| 479 | /* |
| 480 | * It is not legal to sleep in the idle task - print a warning |
| 481 | * message if some code attempts to do it: |
| 482 | */ |
| 483 | static void |
| 484 | dequeue_task_idle(struct rq *rq, struct task_struct *p, int flags) |
| 485 | { |
Peter Zijlstra | 5cb9eaa | 2020-11-17 18:19:31 -0500 | [diff] [blame] | 486 | raw_spin_rq_unlock_irq(rq); |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 487 | printk(KERN_ERR "bad: scheduling from the idle thread!\n"); |
| 488 | dump_stack(); |
Peter Zijlstra | 5cb9eaa | 2020-11-17 18:19:31 -0500 | [diff] [blame] | 489 | raw_spin_rq_lock_irq(rq); |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 490 | } |
| 491 | |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 492 | /* |
| 493 | * scheduler tick hitting a task of our scheduling class. |
| 494 | * |
| 495 | * NOTE: This function can be called remotely by the tick offload that |
| 496 | * goes along full dynticks. Therefore no local assumption can be made |
| 497 | * and everything must be accessed through the @rq and @curr passed in |
| 498 | * parameters. |
| 499 | */ |
| 500 | static void task_tick_idle(struct rq *rq, struct task_struct *curr, int queued) |
| 501 | { |
| 502 | } |
| 503 | |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 504 | static void switched_to_idle(struct rq *rq, struct task_struct *p) |
| 505 | { |
| 506 | BUG(); |
| 507 | } |
| 508 | |
| 509 | static void |
| 510 | prio_changed_idle(struct rq *rq, struct task_struct *p, int oldprio) |
| 511 | { |
| 512 | BUG(); |
| 513 | } |
| 514 | |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 515 | static void update_curr_idle(struct rq *rq) |
| 516 | { |
| 517 | } |
| 518 | |
| 519 | /* |
| 520 | * Simple, special scheduling class for the per-CPU idle tasks: |
| 521 | */ |
Peter Zijlstra | 43c31ac | 2020-10-21 15:45:33 +0200 | [diff] [blame] | 522 | DEFINE_SCHED_CLASS(idle) = { |
| 523 | |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 524 | /* no enqueue/yield_task for idle tasks */ |
| 525 | |
| 526 | /* dequeue is not valid, we print a debug message there: */ |
| 527 | .dequeue_task = dequeue_task_idle, |
| 528 | |
Ingo Molnar | e23edc8 | 2023-09-19 10:38:21 +0200 | [diff] [blame] | 529 | .wakeup_preempt = wakeup_preempt_idle, |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 530 | |
| 531 | .pick_next_task = pick_next_task_idle, |
| 532 | .put_prev_task = put_prev_task_idle, |
Peter Zijlstra | 03b7fad | 2019-05-29 20:36:41 +0000 | [diff] [blame] | 533 | .set_next_task = set_next_task_idle, |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 534 | |
| 535 | #ifdef CONFIG_SMP |
Peter Zijlstra | 6e2df05 | 2019-11-08 11:11:52 +0100 | [diff] [blame] | 536 | .balance = balance_idle, |
Peter Zijlstra | 21f56ffe | 2020-11-17 18:19:32 -0500 | [diff] [blame] | 537 | .pick_task = pick_task_idle, |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 538 | .select_task_rq = select_task_rq_idle, |
| 539 | .set_cpus_allowed = set_cpus_allowed_common, |
| 540 | #endif |
| 541 | |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 542 | .task_tick = task_tick_idle, |
| 543 | |
Ingo Molnar | a92057e | 2018-03-03 15:44:39 +0100 | [diff] [blame] | 544 | .prio_changed = prio_changed_idle, |
| 545 | .switched_to = switched_to_idle, |
| 546 | .update_curr = update_curr_idle, |
| 547 | }; |