blob: 6e78d071beb58ad26665be2c87e46bc7bab061b4 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Nicolas Pitrecf37b6b2014-01-26 23:42:01 -05002/*
Ingo Molnara92057e2018-03-03 15:44:39 +01003 * 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 Pitrecf37b6b2014-01-26 23:42:01 -05008 */
Nicolas Pitrecf37b6b2014-01-26 23:42:01 -05009
Chris Metcalf6727ad92016-10-07 17:02:55 -070010/* Linker adds these: start and end of __cpuidle functions */
11extern char __cpuidle_text_start[], __cpuidle_text_end[];
12
Rafael J. Wysockifaad3842015-05-10 01:18:03 +020013/**
14 * sched_idle_set_state - Record idle state for the current CPU.
15 * @idle_state: State to record.
16 */
17void sched_idle_set_state(struct cpuidle_state *idle_state)
18{
19 idle_set_state(this_rq(), idle_state);
20}
21
Nicolas Pitrecf37b6b2014-01-26 23:42:01 -050022static int __read_mostly cpu_idle_force_poll;
23
24void 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
35static int __init cpu_idle_poll_setup(char *__unused)
36{
37 cpu_idle_force_poll = 1;
Ingo Molnara92057e2018-03-03 15:44:39 +010038
Nicolas Pitrecf37b6b2014-01-26 23:42:01 -050039 return 1;
40}
41__setup("nohlt", cpu_idle_poll_setup);
42
43static int __init cpu_idle_nopoll_setup(char *__unused)
44{
45 cpu_idle_force_poll = 0;
Ingo Molnara92057e2018-03-03 15:44:39 +010046
Nicolas Pitrecf37b6b2014-01-26 23:42:01 -050047 return 1;
48}
49__setup("hlt", cpu_idle_nopoll_setup);
50#endif
51
Chris Metcalf6727ad92016-10-07 17:02:55 -070052static noinline int __cpuidle cpu_idle_poll(void)
Nicolas Pitrecf37b6b2014-01-26 23:42:01 -050053{
Peter Zijlstraa01353c2023-01-12 20:43:27 +010054 instrumentation_begin();
Peter Zijlstra10985822020-08-07 20:50:19 +020055 trace_cpu_idle(0, smp_processor_id());
Daniel Bristot de Oliveira9babcd72015-10-08 15:36:06 -030056 stop_critical_timings();
Peter Zijlstraa01353c2023-01-12 20:43:27 +010057 ct_cpuidle_enter();
Ingo Molnara92057e2018-03-03 15:44:39 +010058
Peter Zijlstraa01353c2023-01-12 20:43:27 +010059 raw_local_irq_enable();
Preeti U Murthyff6f2d22015-01-21 16:27:25 +053060 while (!tif_need_resched() &&
Peter Zijlstra10985822020-08-07 20:50:19 +020061 (cpu_idle_force_poll || tick_check_broadcast_expired()))
Nicolas Pitrecf37b6b2014-01-26 23:42:01 -050062 cpu_relax();
Peter Zijlstraa01353c2023-01-12 20:43:27 +010063 raw_local_irq_disable();
Peter Zijlstra10985822020-08-07 20:50:19 +020064
Peter Zijlstraa01353c2023-01-12 20:43:27 +010065 ct_cpuidle_exit();
Peter Zijlstra10985822020-08-07 20:50:19 +020066 start_critical_timings();
67 trace_cpu_idle(PWR_EVENT_EXIT, smp_processor_id());
Peter Zijlstraa01353c2023-01-12 20:43:27 +010068 local_irq_enable();
69 instrumentation_end();
Ingo Molnara92057e2018-03-03 15:44:39 +010070
Nicolas Pitrecf37b6b2014-01-26 23:42:01 -050071 return 1;
72}
73
74/* Weak implementations for optional arch specific functions */
75void __weak arch_cpu_idle_prepare(void) { }
76void __weak arch_cpu_idle_enter(void) { }
77void __weak arch_cpu_idle_exit(void) { }
Josh Poimboeuf071c44e2023-02-13 23:05:58 -080078void __weak __noreturn arch_cpu_idle_dead(void) { while (1); }
Nicolas Pitrecf37b6b2014-01-26 23:42:01 -050079void __weak arch_cpu_idle(void)
80{
81 cpu_idle_force_poll = 1;
Nicolas Pitrecf37b6b2014-01-26 23:42:01 -050082}
83
Thomas Gleixner2be2a192024-02-29 15:23:36 +010084#ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE
85DEFINE_STATIC_KEY_FALSE(arch_needs_tick_broadcast);
86
87static inline void cond_tick_broadcast_enter(void)
88{
89 if (static_branch_unlikely(&arch_needs_tick_broadcast))
90 tick_broadcast_enter();
91}
92
93static inline void cond_tick_broadcast_exit(void)
94{
95 if (static_branch_unlikely(&arch_needs_tick_broadcast))
96 tick_broadcast_exit();
97}
98#else
99static inline void cond_tick_broadcast_enter(void) { }
100static inline void cond_tick_broadcast_exit(void) { }
101#endif
102
Rafael J. Wysocki827a5ae2015-05-10 01:18:46 +0200103/**
104 * default_idle_call - Default CPU idle routine.
105 *
106 * To use when the cpuidle framework cannot be used.
107 */
Chris Metcalf6727ad92016-10-07 17:02:55 -0700108void __cpuidle default_idle_call(void)
Rafael J. Wysocki82f66322015-05-04 22:53:22 +0200109{
Peter Zijlstraa01353c2023-01-12 20:43:27 +0100110 instrumentation_begin();
111 if (!current_clr_polling_and_test()) {
Thomas Gleixner2be2a192024-02-29 15:23:36 +0100112 cond_tick_broadcast_enter();
Peter Zijlstra9864f5b52020-08-12 12:27:10 +0200113 trace_cpu_idle(1, smp_processor_id());
Lucas Stach63caae82015-07-20 18:34:50 +0200114 stop_critical_timings();
Peter Zijlstra58c644b2020-11-20 11:50:35 +0100115
Peter Zijlstraa01353c2023-01-12 20:43:27 +0100116 ct_cpuidle_enter();
Rafael J. Wysocki82f66322015-05-04 22:53:22 +0200117 arch_cpu_idle();
Peter Zijlstraa01353c2023-01-12 20:43:27 +0100118 ct_cpuidle_exit();
Peter Zijlstra58c644b2020-11-20 11:50:35 +0100119
Lucas Stach63caae82015-07-20 18:34:50 +0200120 start_critical_timings();
Peter Zijlstra9864f5b52020-08-12 12:27:10 +0200121 trace_cpu_idle(PWR_EVENT_EXIT, smp_processor_id());
Thomas Gleixner2be2a192024-02-29 15:23:36 +0100122 cond_tick_broadcast_exit();
Lucas Stach63caae82015-07-20 18:34:50 +0200123 }
Peter Zijlstraa01353c2023-01-12 20:43:27 +0100124 local_irq_enable();
125 instrumentation_end();
Rafael J. Wysocki82f66322015-05-04 22:53:22 +0200126}
127
Rafael J. Wysocki10e8b11e2020-06-25 13:52:53 +0200128static 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. Wysockibcf6ad82015-05-04 22:53:35 +0200137static int call_cpuidle(struct cpuidle_driver *drv, struct cpuidle_device *dev,
138 int next_state)
139{
Rafael J. Wysockibcf6ad82015-05-04 22:53:35 +0200140 /*
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. Wysockic1d51f62019-11-07 15:25:12 +0100145 dev->last_residency_ns = 0;
Rafael J. Wysockibcf6ad82015-05-04 22:53:35 +0200146 local_irq_enable();
147 return -EBUSY;
148 }
149
Rafael J. Wysockibcf6ad82015-05-04 22:53:35 +0200150 /*
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. Wysocki827a5ae2015-05-10 01:18:46 +0200155 return cpuidle_enter(drv, dev, next_state);
Rafael J. Wysockibcf6ad82015-05-04 22:53:35 +0200156}
157
Daniel Lezcano30cdd692014-03-03 08:48:51 +0100158/**
159 * cpuidle_idle_call - the main idle function
160 *
161 * NOTE: no locks or semaphores should be used here
Andy Lutomirski82c65d62014-06-04 10:31:16 -0700162 *
Ingo Molnar3b037062021-03-18 13:38:50 +0100163 * On architectures that support TIF_POLLING_NRFLAG, is called with polling
Andy Lutomirski82c65d62014-06-04 10:31:16 -0700164 * set, and it returns with polling set. If it ever stops polling, it
165 * must clear the polling bit.
Daniel Lezcano30cdd692014-03-03 08:48:51 +0100166 */
Rafael J. Wysocki08c373e2014-04-21 01:26:58 +0200167static void cpuidle_idle_call(void)
Daniel Lezcano30cdd692014-03-03 08:48:51 +0100168{
Catalin Marinas9bd616e2016-06-01 18:52:16 +0100169 struct cpuidle_device *dev = cpuidle_get_device();
Daniel Lezcano30cdd692014-03-03 08:48:51 +0100170 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
Peter Zijlstra37352272014-04-11 13:55:48 +0200171 int next_state, entered_state;
Daniel Lezcano30cdd692014-03-03 08:48:51 +0100172
Daniel Lezcanoa1d028b2014-03-03 08:48:54 +0100173 /*
174 * Check if the idle task must be rescheduled. If it is the
Ingo Molnar402de7f2024-05-27 16:54:52 +0200175 * case, exit the function after re-enabling the local IRQ.
Daniel Lezcanoa1d028b2014-03-03 08:48:54 +0100176 */
Peter Zijlstrac4441172014-04-11 13:47:16 +0200177 if (need_resched()) {
Daniel Lezcano8ca3c642014-03-03 08:48:53 +0100178 local_irq_enable();
Rafael J. Wysocki08c373e2014-04-21 01:26:58 +0200179 return;
Daniel Lezcano8ca3c642014-03-03 08:48:53 +0100180 }
181
Rafael J. Wysocki82f66322015-05-04 22:53:22 +0200182 if (cpuidle_not_available(drv, dev)) {
Rafael J. Wysockied98c342018-03-15 23:07:41 +0100183 tick_nohz_idle_stop_tick();
Rafael J. Wysockied98c342018-03-15 23:07:41 +0100184
Rafael J. Wysocki82f66322015-05-04 22:53:22 +0200185 default_idle_call();
186 goto exit_idle;
187 }
Rafael J. Wysockief2b22a2015-03-02 22:26:55 +0100188
Daniel Lezcanoa1d028b2014-03-03 08:48:54 +0100189 /*
Rafael J. Wysockif02f4f92017-08-10 00:13:56 +0200190 * Suspend-to-idle ("s2idle") is a system state in which all user space
Rafael J. Wysocki38106312015-02-12 23:33:15 +0100191 * has been frozen, all I/O devices have been suspended and the only
Hewenliang3e0de272020-01-09 21:56:04 -0500192 * activity happens here and in interrupts (if any). In that case bypass
Ingo Molnar3b037062021-03-18 13:38:50 +0100193 * the cpuidle governor and go straight for the deepest idle state
Rafael J. Wysocki38106312015-02-12 23:33:15 +0100194 * 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 Panbb8313b2016-11-28 23:03:04 -0800198
Daniel Lezcanoc55b51a2019-11-16 14:16:12 +0100199 if (idle_should_enter_s2idle() || dev->forced_idle_latency_limit_ns) {
Daniel Lezcano5aa9ba62019-11-16 14:16:13 +0100200 u64 max_latency_ns;
201
Rafael J. Wysockif02f4f92017-08-10 00:13:56 +0200202 if (idle_should_enter_s2idle()) {
Rafael J. Wysockied98c342018-03-15 23:07:41 +0100203
Rafael J. Wysocki10e8b11e2020-06-25 13:52:53 +0200204 entered_state = call_cpuidle_s2idle(drv, dev);
205 if (entered_state > 0)
Jacob Panbb8313b2016-11-28 23:03:04 -0800206 goto exit_idle;
Rafael J. Wysockied98c342018-03-15 23:07:41 +0100207
Daniel Lezcano5aa9ba62019-11-16 14:16:13 +0100208 max_latency_ns = U64_MAX;
209 } else {
210 max_latency_ns = dev->forced_idle_latency_limit_ns;
Rafael J. Wysockief2b22a2015-03-02 22:26:55 +0100211 }
Rafael J. Wysocki38106312015-02-12 23:33:15 +0100212
Rafael J. Wysockied98c342018-03-15 23:07:41 +0100213 tick_nohz_idle_stop_tick();
Rafael J. Wysockied98c342018-03-15 23:07:41 +0100214
Daniel Lezcano5aa9ba62019-11-16 14:16:13 +0100215 next_state = cpuidle_find_deepest_state(drv, dev, max_latency_ns);
Rafael J. Wysockibcf6ad82015-05-04 22:53:35 +0200216 call_cpuidle(drv, dev, next_state);
Rafael J. Wysockief2b22a2015-03-02 22:26:55 +0100217 } else {
Rafael J. Wysocki45f1ff52018-03-22 17:50:49 +0100218 bool stop_tick = true;
219
Rafael J. Wysockief2b22a2015-03-02 22:26:55 +0100220 /*
221 * Ask the cpuidle framework to choose a convenient idle state.
222 */
Rafael J. Wysocki45f1ff52018-03-22 17:50:49 +0100223 next_state = cpuidle_select(drv, dev, &stop_tick);
Rafael J. Wysocki554c8aa2018-04-03 23:17:11 +0200224
Rafael J. Wysocki7059b362018-08-09 19:08:34 +0200225 if (stop_tick || tick_nohz_tick_stopped())
Rafael J. Wysocki554c8aa2018-04-03 23:17:11 +0200226 tick_nohz_idle_stop_tick();
227 else
228 tick_nohz_idle_retain_tick();
229
Rafael J. Wysockibcf6ad82015-05-04 22:53:35 +0200230 entered_state = call_cpuidle(drv, dev, next_state);
231 /*
232 * Give the governor an opportunity to reflect on the outcome
233 */
Rafael J. Wysockief2b22a2015-03-02 22:26:55 +0100234 cpuidle_reflect(dev, entered_state);
Rafael J. Wysockibcf6ad82015-05-04 22:53:35 +0200235 }
Peter Zijlstra37352272014-04-11 13:55:48 +0200236
237exit_idle:
Daniel Lezcano8ca3c642014-03-03 08:48:53 +0100238 __current_set_polling();
Daniel Lezcano30cdd692014-03-03 08:48:51 +0100239
Daniel Lezcanoa1d028b2014-03-03 08:48:54 +0100240 /*
Ingo Molnar402de7f2024-05-27 16:54:52 +0200241 * It is up to the idle functions to re-enable local interrupts
Daniel Lezcanoa1d028b2014-03-03 08:48:54 +0100242 */
Daniel Lezcanoc8cc7d42014-03-03 08:48:52 +0100243 if (WARN_ON_ONCE(irqs_disabled()))
244 local_irq_enable();
Daniel Lezcano30cdd692014-03-03 08:48:51 +0100245}
Daniel Lezcano30cdd692014-03-03 08:48:51 +0100246
Nicolas Pitrecf37b6b2014-01-26 23:42:01 -0500247/*
248 * Generic idle loop implementation
Andy Lutomirski82c65d62014-06-04 10:31:16 -0700249 *
250 * Called with polling cleared.
Nicolas Pitrecf37b6b2014-01-26 23:42:01 -0500251 */
Peter Zijlstrac1de45c2016-11-28 23:03:05 -0800252static void do_idle(void)
Nicolas Pitrecf37b6b2014-01-26 23:42:01 -0500253{
Cheng Jian54b933c2017-10-25 19:28:27 +0800254 int cpu = smp_processor_id();
Vincent Guittotc6f88652021-02-24 14:30:06 +0100255
256 /*
257 * Check if we need to update blocked load
258 */
259 nohz_run_idle_balance(cpu);
260
Peter Zijlstrac1de45c2016-11-28 23:03:05 -0800261 /*
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)df55f462016-05-12 10:13:33 +0000269
Peter Zijlstrac1de45c2016-11-28 23:03:05 -0800270 __current_set_polling();
271 tick_nohz_idle_enter();
Andy Lutomirski82c65d62014-06-04 10:31:16 -0700272
Peter Zijlstrac1de45c2016-11-28 23:03:05 -0800273 while (!need_resched()) {
Peter Zijlstrac1de45c2016-11-28 23:03:05 -0800274 rmb();
Nicolas Pitrecf37b6b2014-01-26 23:42:01 -0500275
Frederic Weisbeckerdd540382023-11-14 14:38:39 -0500276 /*
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 Zijlstrae78a7612019-06-05 07:46:43 -0700306 local_irq_disable();
307
Cheng Jian54b933c2017-10-25 19:28:27 +0800308 if (cpu_is_offline(cpu)) {
Peter Zijlstrac1de45c2016-11-28 23:03:05 -0800309 cpuhp_report_idle_dead();
310 arch_cpu_idle_dead();
Nicolas Pitrecf37b6b2014-01-26 23:42:01 -0500311 }
Peter Zijlstra06d50c62014-02-24 18:22:07 +0100312
Peter Zijlstrac1de45c2016-11-28 23:03:05 -0800313 arch_cpu_idle_enter();
Frederic Weisbecker43789ef2021-02-01 00:05:45 +0100314 rcu_nocb_flush_deferred_wakeup();
Andy Lutomirski82c65d62014-06-04 10:31:16 -0700315
316 /*
Ingo Molnar402de7f2024-05-27 16:54:52 +0200317 * In poll mode we re-enable interrupts and spin. Also if we
Peter Zijlstrac1de45c2016-11-28 23:03:05 -0800318 * 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 Lutomirski82c65d62014-06-04 10:31:16 -0700321 */
Rafael J. Wysocki2aaf7092018-03-15 23:05:50 +0100322 if (cpu_idle_force_poll || tick_check_broadcast_expired()) {
323 tick_nohz_idle_restart_tick();
Peter Zijlstrac1de45c2016-11-28 23:03:05 -0800324 cpu_idle_poll();
Rafael J. Wysocki2aaf7092018-03-15 23:05:50 +0100325 } else {
Peter Zijlstrac1de45c2016-11-28 23:03:05 -0800326 cpuidle_idle_call();
Rafael J. Wysocki2aaf7092018-03-15 23:05:50 +0100327 }
Peter Zijlstrac1de45c2016-11-28 23:03:05 -0800328 arch_cpu_idle_exit();
Nicolas Pitrecf37b6b2014-01-26 23:42:01 -0500329 }
Peter Zijlstrac1de45c2016-11-28 23:03:05 -0800330
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 Zijlstrab2a02fc2020-05-26 18:11:01 +0200349 /*
350 * RCU relies on this call to be done outside of an RCU read-side
351 * critical section.
352 */
Thomas Gleixner16bf5a52022-04-13 15:31:03 +0200353 flush_smp_call_function_queue();
Steven Rostedt (VMware)8663eff2017-04-14 08:48:09 -0400354 schedule_idle();
Josh Poimboeufd83a7cb2017-02-13 19:42:40 -0600355
356 if (unlikely(klp_patch_pending(current)))
357 klp_update_patch_state(current);
Nicolas Pitrecf37b6b2014-01-26 23:42:01 -0500358}
359
Chris Metcalf6727ad92016-10-07 17:02:55 -0700360bool 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 Zijlstrac1de45c2016-11-28 23:03:05 -0800366struct idle_timer {
367 struct hrtimer timer;
368 int done;
369};
370
371static 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 Lezcanoc55b51a2019-11-16 14:16:12 +0100381void play_idle_precise(u64 duration_ns, u64 latency_ns)
Peter Zijlstrac1de45c2016-11-28 23:03:05 -0800382{
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 Lezcanoc55b51a2019-11-16 14:16:12 +0100393 WARN_ON_ONCE(!duration_ns);
Mathieu Desnoyers618758e2020-10-20 09:47:14 -0400394 WARN_ON_ONCE(current->mm);
Peter Zijlstrac1de45c2016-11-28 23:03:05 -0800395
396 rcu_sleep_check();
397 preempt_disable();
398 current->flags |= PF_IDLE;
Daniel Lezcanoc55b51a2019-11-16 14:16:12 +0100399 cpuidle_use_deepest_state(latency_ns);
Peter Zijlstrac1de45c2016-11-28 23:03:05 -0800400
401 it.done = 0;
Sebastian Andrzej Siewior98484172021-09-06 13:30:34 +0200402 hrtimer_init_on_stack(&it.timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_HARD);
Peter Zijlstrac1de45c2016-11-28 23:03:05 -0800403 it.timer.function = idle_inject_timer_fn;
Daniel Lezcanoc55b51a2019-11-16 14:16:12 +0100404 hrtimer_start(&it.timer, ns_to_ktime(duration_ns),
Sebastian Andrzej Siewior98484172021-09-06 13:30:34 +0200405 HRTIMER_MODE_REL_PINNED_HARD);
Peter Zijlstrac1de45c2016-11-28 23:03:05 -0800406
407 while (!READ_ONCE(it.done))
408 do_idle();
409
Daniel Lezcanoc55b51a2019-11-16 14:16:12 +0100410 cpuidle_use_deepest_state(0);
Peter Zijlstrac1de45c2016-11-28 23:03:05 -0800411 current->flags &= ~PF_IDLE;
412
413 preempt_fold_need_resched();
414 preempt_enable();
415}
Daniel Lezcanoc55b51a2019-11-16 14:16:12 +0100416EXPORT_SYMBOL_GPL(play_idle_precise);
Peter Zijlstrac1de45c2016-11-28 23:03:05 -0800417
Nicolas Pitrecf37b6b2014-01-26 23:42:01 -0500418void cpu_startup_entry(enum cpuhp_state state)
419{
Liam R. Howlettcff9b232023-09-15 13:44:44 -0400420 current->flags |= PF_IDLE;
Nicolas Pitrecf37b6b2014-01-26 23:42:01 -0500421 arch_cpu_idle_prepare();
Thomas Gleixner8df3e072016-02-26 18:43:41 +0000422 cpuhp_online_idle(state);
Peter Zijlstrac1de45c2016-11-28 23:03:05 -0800423 while (1)
424 do_idle();
Nicolas Pitrecf37b6b2014-01-26 23:42:01 -0500425}
Ingo Molnara92057e2018-03-03 15:44:39 +0100426
427/*
428 * idle-task scheduling class.
429 */
430
431#ifdef CONFIG_SMP
432static int
Valentin Schneider3aef15512020-11-02 18:45:13 +0000433select_task_rq_idle(struct task_struct *p, int cpu, int flags)
Ingo Molnara92057e2018-03-03 15:44:39 +0100434{
435 return task_cpu(p); /* IDLE tasks as never migrated */
436}
Peter Zijlstra6e2df052019-11-08 11:11:52 +0100437
438static int
439balance_idle(struct rq *rq, struct task_struct *prev, struct rq_flags *rf)
440{
441 return WARN_ON_ONCE(1);
442}
Ingo Molnara92057e2018-03-03 15:44:39 +0100443#endif
444
445/*
446 * Idle tasks are unconditionally rescheduled:
447 */
Ingo Molnare23edc82023-09-19 10:38:21 +0200448static void wakeup_preempt_idle(struct rq *rq, struct task_struct *p, int flags)
Ingo Molnara92057e2018-03-03 15:44:39 +0100449{
450 resched_curr(rq);
451}
452
Peter Zijlstra6e2df052019-11-08 11:11:52 +0100453static void put_prev_task_idle(struct rq *rq, struct task_struct *prev)
Peter Zijlstra03b7fad2019-05-29 20:36:41 +0000454{
455}
456
Peter Zijlstraa0e813f2019-11-08 14:16:00 +0100457static void set_next_task_idle(struct rq *rq, struct task_struct *next, bool first)
Peter Zijlstra03b7fad2019-05-29 20:36:41 +0000458{
459 update_idle_core(rq);
460 schedstat_inc(rq->sched_goidle);
461}
462
Peter Zijlstra21f56ffe2020-11-17 18:19:32 -0500463#ifdef CONFIG_SMP
464static struct task_struct *pick_task_idle(struct rq *rq)
465{
466 return rq->idle;
467}
468#endif
469
Peter Zijlstra98c2f702019-11-08 14:15:58 +0100470struct task_struct *pick_next_task_idle(struct rq *rq)
Ingo Molnara92057e2018-03-03 15:44:39 +0100471{
Peter Zijlstra03b7fad2019-05-29 20:36:41 +0000472 struct task_struct *next = rq->idle;
Ingo Molnara92057e2018-03-03 15:44:39 +0100473
Peter Zijlstraa0e813f2019-11-08 14:16:00 +0100474 set_next_task_idle(rq, next, true);
Peter Zijlstra03b7fad2019-05-29 20:36:41 +0000475
476 return next;
Ingo Molnara92057e2018-03-03 15:44:39 +0100477}
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 */
483static void
484dequeue_task_idle(struct rq *rq, struct task_struct *p, int flags)
485{
Peter Zijlstra5cb9eaa2020-11-17 18:19:31 -0500486 raw_spin_rq_unlock_irq(rq);
Ingo Molnara92057e2018-03-03 15:44:39 +0100487 printk(KERN_ERR "bad: scheduling from the idle thread!\n");
488 dump_stack();
Peter Zijlstra5cb9eaa2020-11-17 18:19:31 -0500489 raw_spin_rq_lock_irq(rq);
Ingo Molnara92057e2018-03-03 15:44:39 +0100490}
491
Ingo Molnara92057e2018-03-03 15:44:39 +0100492/*
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 */
500static void task_tick_idle(struct rq *rq, struct task_struct *curr, int queued)
501{
502}
503
Ingo Molnara92057e2018-03-03 15:44:39 +0100504static void switched_to_idle(struct rq *rq, struct task_struct *p)
505{
506 BUG();
507}
508
509static void
510prio_changed_idle(struct rq *rq, struct task_struct *p, int oldprio)
511{
512 BUG();
513}
514
Ingo Molnara92057e2018-03-03 15:44:39 +0100515static void update_curr_idle(struct rq *rq)
516{
517}
518
519/*
520 * Simple, special scheduling class for the per-CPU idle tasks:
521 */
Peter Zijlstra43c31ac2020-10-21 15:45:33 +0200522DEFINE_SCHED_CLASS(idle) = {
523
Ingo Molnara92057e2018-03-03 15:44:39 +0100524 /* 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 Molnare23edc82023-09-19 10:38:21 +0200529 .wakeup_preempt = wakeup_preempt_idle,
Ingo Molnara92057e2018-03-03 15:44:39 +0100530
531 .pick_next_task = pick_next_task_idle,
532 .put_prev_task = put_prev_task_idle,
Peter Zijlstra03b7fad2019-05-29 20:36:41 +0000533 .set_next_task = set_next_task_idle,
Ingo Molnara92057e2018-03-03 15:44:39 +0100534
535#ifdef CONFIG_SMP
Peter Zijlstra6e2df052019-11-08 11:11:52 +0100536 .balance = balance_idle,
Peter Zijlstra21f56ffe2020-11-17 18:19:32 -0500537 .pick_task = pick_task_idle,
Ingo Molnara92057e2018-03-03 15:44:39 +0100538 .select_task_rq = select_task_rq_idle,
539 .set_cpus_allowed = set_cpus_allowed_common,
540#endif
541
Ingo Molnara92057e2018-03-03 15:44:39 +0100542 .task_tick = task_tick_idle,
543
Ingo Molnara92057e2018-03-03 15:44:39 +0100544 .prio_changed = prio_changed_idle,
545 .switched_to = switched_to_idle,
546 .update_curr = update_curr_idle,
547};