nohz: Add TICK_DEP_BIT_RCU
[linux-2.6-block.git] / kernel / time / tick-sched.c
CommitLineData
35728b82 1// SPDX-License-Identifier: GPL-2.0
79bf2bb3 2/*
79bf2bb3
TG
3 * Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de>
4 * Copyright(C) 2005-2007, Red Hat, Inc., Ingo Molnar
5 * Copyright(C) 2006-2007 Timesys Corp., Thomas Gleixner
6 *
7 * No idle tick implementation for low and high resolution timers
8 *
9 * Started by: Thomas Gleixner and Ingo Molnar
79bf2bb3
TG
10 */
11#include <linux/cpu.h>
12#include <linux/err.h>
13#include <linux/hrtimer.h>
14#include <linux/interrupt.h>
15#include <linux/kernel_stat.h>
16#include <linux/percpu.h>
38b8d208 17#include <linux/nmi.h>
79bf2bb3 18#include <linux/profile.h>
3f07c014 19#include <linux/sched/signal.h>
e6017571 20#include <linux/sched/clock.h>
03441a34 21#include <linux/sched/stat.h>
370c9135 22#include <linux/sched/nohz.h>
8083e4ad 23#include <linux/module.h>
00b42959 24#include <linux/irq_work.h>
9014c45d 25#include <linux/posix-timers.h>
2e709338 26#include <linux/context_tracking.h>
62cb1188 27#include <linux/mm.h>
79bf2bb3 28
9e203bcc
DM
29#include <asm/irq_regs.h>
30
79bf2bb3
TG
31#include "tick-internal.h"
32
cb41a290
FW
33#include <trace/events/timer.h>
34
79bf2bb3 35/*
0de7611a 36 * Per-CPU nohz control structure
79bf2bb3 37 */
c1797baf 38static DEFINE_PER_CPU(struct tick_sched, tick_cpu_sched);
79bf2bb3 39
289f480a
IM
40struct tick_sched *tick_get_tick_sched(int cpu)
41{
42 return &per_cpu(tick_cpu_sched, cpu);
43}
44
7809998a
AB
45#if defined(CONFIG_NO_HZ_COMMON) || defined(CONFIG_HIGH_RES_TIMERS)
46/*
47 * The time, when the last jiffy update happened. Protected by jiffies_lock.
48 */
49static ktime_t last_jiffies_update;
50
79bf2bb3
TG
51/*
52 * Must be called with interrupts disabled !
53 */
54static void tick_do_update_jiffies64(ktime_t now)
55{
56 unsigned long ticks = 0;
57 ktime_t delta;
58
7a14ce1d 59 /*
d6ad4187 60 * Do a quick check without holding jiffies_lock:
7a14ce1d
IM
61 */
62 delta = ktime_sub(now, last_jiffies_update);
2456e855 63 if (delta < tick_period)
7a14ce1d
IM
64 return;
65
6168f8ed 66 /* Reevaluate with jiffies_lock held */
d6ad4187 67 write_seqlock(&jiffies_lock);
79bf2bb3
TG
68
69 delta = ktime_sub(now, last_jiffies_update);
2456e855 70 if (delta >= tick_period) {
79bf2bb3
TG
71
72 delta = ktime_sub(delta, tick_period);
73 last_jiffies_update = ktime_add(last_jiffies_update,
74 tick_period);
75
76 /* Slow path for long timeouts */
2456e855 77 if (unlikely(delta >= tick_period)) {
79bf2bb3
TG
78 s64 incr = ktime_to_ns(tick_period);
79
80 ticks = ktime_divns(delta, incr);
81
82 last_jiffies_update = ktime_add_ns(last_jiffies_update,
83 incr * ticks);
84 }
85 do_timer(++ticks);
49d670fb
TG
86
87 /* Keep the tick_next_period variable up to date */
88 tick_next_period = ktime_add(last_jiffies_update, tick_period);
03e6bdc5
VK
89 } else {
90 write_sequnlock(&jiffies_lock);
91 return;
79bf2bb3 92 }
d6ad4187 93 write_sequnlock(&jiffies_lock);
47a1b796 94 update_wall_time();
79bf2bb3
TG
95}
96
97/*
98 * Initialize and return retrieve the jiffies update.
99 */
100static ktime_t tick_init_jiffy_update(void)
101{
102 ktime_t period;
103
d6ad4187 104 write_seqlock(&jiffies_lock);
79bf2bb3 105 /* Did we start the jiffies update yet ? */
2456e855 106 if (last_jiffies_update == 0)
79bf2bb3
TG
107 last_jiffies_update = tick_next_period;
108 period = last_jiffies_update;
d6ad4187 109 write_sequnlock(&jiffies_lock);
79bf2bb3
TG
110 return period;
111}
112
ff7de620 113static void tick_sched_do_timer(struct tick_sched *ts, ktime_t now)
5bb96226
FW
114{
115 int cpu = smp_processor_id();
116
3451d024 117#ifdef CONFIG_NO_HZ_COMMON
5bb96226
FW
118 /*
119 * Check if the do_timer duty was dropped. We don't care about
0de7611a
IM
120 * concurrency: This happens only when the CPU in charge went
121 * into a long sleep. If two CPUs happen to assign themselves to
5bb96226 122 * this duty, then the jiffies update is still serialized by
9c3f9e28 123 * jiffies_lock.
08ae95f4
NP
124 *
125 * If nohz_full is enabled, this should not happen because the
126 * tick_do_timer_cpu never relinquishes.
5bb96226 127 */
08ae95f4
NP
128 if (unlikely(tick_do_timer_cpu == TICK_DO_TIMER_NONE)) {
129#ifdef CONFIG_NO_HZ_FULL
130 WARN_ON(tick_nohz_full_running);
131#endif
5bb96226 132 tick_do_timer_cpu = cpu;
08ae95f4 133 }
5bb96226
FW
134#endif
135
136 /* Check, if the jiffies need an update */
137 if (tick_do_timer_cpu == cpu)
138 tick_do_update_jiffies64(now);
ff7de620
RW
139
140 if (ts->inidle)
141 ts->got_idle_tick = 1;
5bb96226
FW
142}
143
9e8f559b
FW
144static void tick_sched_handle(struct tick_sched *ts, struct pt_regs *regs)
145{
3451d024 146#ifdef CONFIG_NO_HZ_COMMON
9e8f559b
FW
147 /*
148 * When we are idle and the tick is stopped, we have to touch
149 * the watchdog as we might not schedule for a really long
150 * time. This happens on complete idle SMP systems while
151 * waiting on the login prompt. We also increment the "start of
152 * idle" jiffy stamp so the idle accounting adjustment we do
153 * when we go busy again does not account too much ticks.
154 */
155 if (ts->tick_stopped) {
03e0d461 156 touch_softlockup_watchdog_sched();
9e8f559b
FW
157 if (is_idle_task(current))
158 ts->idle_jiffies++;
411fe24e
FW
159 /*
160 * In case the current tick fired too early past its expected
161 * expiration, make sure we don't bypass the next clock reprogramming
162 * to the same deadline.
163 */
164 ts->next_tick = 0;
9e8f559b 165 }
94a57140 166#endif
9e8f559b
FW
167 update_process_times(user_mode(regs));
168 profile_tick(CPU_PROFILING);
169}
7809998a 170#endif
9e8f559b 171
c5bfece2 172#ifdef CONFIG_NO_HZ_FULL
460775df 173cpumask_var_t tick_nohz_full_mask;
73867dcd 174bool tick_nohz_full_running;
f009a7a7 175static atomic_t tick_dep_mask;
a831881b 176
f009a7a7 177static bool check_tick_dependency(atomic_t *dep)
d027d45d 178{
f009a7a7
FW
179 int val = atomic_read(dep);
180
181 if (val & TICK_DEP_MASK_POSIX_TIMER) {
e6e6cc22 182 trace_tick_stop(0, TICK_DEP_MASK_POSIX_TIMER);
f009a7a7 183 return true;
d027d45d
FW
184 }
185
f009a7a7 186 if (val & TICK_DEP_MASK_PERF_EVENTS) {
e6e6cc22 187 trace_tick_stop(0, TICK_DEP_MASK_PERF_EVENTS);
f009a7a7 188 return true;
d027d45d
FW
189 }
190
f009a7a7 191 if (val & TICK_DEP_MASK_SCHED) {
e6e6cc22 192 trace_tick_stop(0, TICK_DEP_MASK_SCHED);
f009a7a7 193 return true;
d027d45d
FW
194 }
195
f009a7a7 196 if (val & TICK_DEP_MASK_CLOCK_UNSTABLE) {
e6e6cc22 197 trace_tick_stop(0, TICK_DEP_MASK_CLOCK_UNSTABLE);
f009a7a7
FW
198 return true;
199 }
200
01b4c399
FW
201 if (val & TICK_DEP_MASK_RCU) {
202 trace_tick_stop(0, TICK_DEP_MASK_RCU);
203 return true;
204 }
205
f009a7a7 206 return false;
d027d45d
FW
207}
208
57ccdf44 209static bool can_stop_full_tick(int cpu, struct tick_sched *ts)
9014c45d 210{
ebf3adba 211 lockdep_assert_irqs_disabled();
9014c45d 212
57ccdf44
WL
213 if (unlikely(!cpu_online(cpu)))
214 return false;
215
f009a7a7 216 if (check_tick_dependency(&tick_dep_mask))
d027d45d 217 return false;
d027d45d 218
f009a7a7 219 if (check_tick_dependency(&ts->tick_dep_mask))
d027d45d 220 return false;
d027d45d 221
f009a7a7 222 if (check_tick_dependency(&current->tick_dep_mask))
d027d45d 223 return false;
d027d45d 224
f009a7a7 225 if (check_tick_dependency(&current->signal->tick_dep_mask))
d027d45d 226 return false;
d027d45d 227
9014c45d
FW
228 return true;
229}
230
d027d45d 231static void nohz_full_kick_func(struct irq_work *work)
76c24fb0 232{
73738a95 233 /* Empty, the tick restart happens on tick_nohz_irq_exit() */
76c24fb0
FW
234}
235
236static DEFINE_PER_CPU(struct irq_work, nohz_full_kick_work) = {
d027d45d 237 .func = nohz_full_kick_func,
76c24fb0
FW
238};
239
40bea039
FW
240/*
241 * Kick this CPU if it's full dynticks in order to force it to
242 * re-evaluate its dependency on the tick and restart it if necessary.
243 * This kick, unlike tick_nohz_full_kick_cpu() and tick_nohz_full_kick_all(),
244 * is NMI safe.
245 */
555e0c1e 246static void tick_nohz_full_kick(void)
40bea039
FW
247{
248 if (!tick_nohz_full_cpu(smp_processor_id()))
249 return;
250
56e4dea8 251 irq_work_queue(this_cpu_ptr(&nohz_full_kick_work));
40bea039
FW
252}
253
76c24fb0 254/*
3d36aebc 255 * Kick the CPU if it's full dynticks in order to force it to
76c24fb0
FW
256 * re-evaluate its dependency on the tick and restart it if necessary.
257 */
3d36aebc 258void tick_nohz_full_kick_cpu(int cpu)
76c24fb0 259{
3d36aebc
FW
260 if (!tick_nohz_full_cpu(cpu))
261 return;
262
263 irq_work_queue_on(&per_cpu(nohz_full_kick_work, cpu), cpu);
76c24fb0
FW
264}
265
76c24fb0
FW
266/*
267 * Kick all full dynticks CPUs in order to force these to re-evaluate
268 * their dependency on the tick and restart it if necessary.
269 */
b7878300 270static void tick_nohz_full_kick_all(void)
76c24fb0 271{
8537bb95
FW
272 int cpu;
273
73867dcd 274 if (!tick_nohz_full_running)
76c24fb0
FW
275 return;
276
277 preempt_disable();
8537bb95
FW
278 for_each_cpu_and(cpu, tick_nohz_full_mask, cpu_online_mask)
279 tick_nohz_full_kick_cpu(cpu);
76c24fb0
FW
280 preempt_enable();
281}
282
f009a7a7 283static void tick_nohz_dep_set_all(atomic_t *dep,
d027d45d
FW
284 enum tick_dep_bits bit)
285{
f009a7a7 286 int prev;
d027d45d 287
a1cc5bcf 288 prev = atomic_fetch_or(BIT(bit), dep);
d027d45d
FW
289 if (!prev)
290 tick_nohz_full_kick_all();
291}
292
293/*
294 * Set a global tick dependency. Used by perf events that rely on freq and
295 * by unstable clock.
296 */
297void tick_nohz_dep_set(enum tick_dep_bits bit)
298{
299 tick_nohz_dep_set_all(&tick_dep_mask, bit);
300}
301
302void tick_nohz_dep_clear(enum tick_dep_bits bit)
303{
f009a7a7 304 atomic_andnot(BIT(bit), &tick_dep_mask);
d027d45d
FW
305}
306
307/*
308 * Set per-CPU tick dependency. Used by scheduler and perf events in order to
309 * manage events throttling.
310 */
311void tick_nohz_dep_set_cpu(int cpu, enum tick_dep_bits bit)
312{
f009a7a7 313 int prev;
d027d45d
FW
314 struct tick_sched *ts;
315
316 ts = per_cpu_ptr(&tick_cpu_sched, cpu);
317
a1cc5bcf 318 prev = atomic_fetch_or(BIT(bit), &ts->tick_dep_mask);
d027d45d
FW
319 if (!prev) {
320 preempt_disable();
321 /* Perf needs local kick that is NMI safe */
322 if (cpu == smp_processor_id()) {
323 tick_nohz_full_kick();
324 } else {
325 /* Remote irq work not NMI-safe */
326 if (!WARN_ON_ONCE(in_nmi()))
327 tick_nohz_full_kick_cpu(cpu);
328 }
329 preempt_enable();
330 }
331}
01b4c399 332EXPORT_SYMBOL_GPL(tick_nohz_dep_set_cpu);
d027d45d
FW
333
334void tick_nohz_dep_clear_cpu(int cpu, enum tick_dep_bits bit)
335{
336 struct tick_sched *ts = per_cpu_ptr(&tick_cpu_sched, cpu);
337
f009a7a7 338 atomic_andnot(BIT(bit), &ts->tick_dep_mask);
d027d45d 339}
01b4c399 340EXPORT_SYMBOL_GPL(tick_nohz_dep_clear_cpu);
d027d45d
FW
341
342/*
343 * Set a per-task tick dependency. Posix CPU timers need this in order to elapse
344 * per task timers.
345 */
346void tick_nohz_dep_set_task(struct task_struct *tsk, enum tick_dep_bits bit)
347{
348 /*
349 * We could optimize this with just kicking the target running the task
350 * if that noise matters for nohz full users.
351 */
352 tick_nohz_dep_set_all(&tsk->tick_dep_mask, bit);
353}
354
355void tick_nohz_dep_clear_task(struct task_struct *tsk, enum tick_dep_bits bit)
356{
f009a7a7 357 atomic_andnot(BIT(bit), &tsk->tick_dep_mask);
d027d45d
FW
358}
359
360/*
361 * Set a per-taskgroup tick dependency. Posix CPU timers need this in order to elapse
362 * per process timers.
363 */
364void tick_nohz_dep_set_signal(struct signal_struct *sig, enum tick_dep_bits bit)
365{
366 tick_nohz_dep_set_all(&sig->tick_dep_mask, bit);
367}
368
369void tick_nohz_dep_clear_signal(struct signal_struct *sig, enum tick_dep_bits bit)
370{
f009a7a7 371 atomic_andnot(BIT(bit), &sig->tick_dep_mask);
d027d45d
FW
372}
373
99e5ada9
FW
374/*
375 * Re-evaluate the need for the tick as we switch the current task.
376 * It might need the tick due to per task/process properties:
0de7611a 377 * perf events, posix CPU timers, ...
99e5ada9 378 */
de734f89 379void __tick_nohz_task_switch(void)
99e5ada9
FW
380{
381 unsigned long flags;
d027d45d 382 struct tick_sched *ts;
99e5ada9 383
99e5ada9
FW
384 local_irq_save(flags);
385
6296ace4
LZ
386 if (!tick_nohz_full_cpu(smp_processor_id()))
387 goto out;
388
d027d45d 389 ts = this_cpu_ptr(&tick_cpu_sched);
99e5ada9 390
d027d45d 391 if (ts->tick_stopped) {
f009a7a7
FW
392 if (atomic_read(&current->tick_dep_mask) ||
393 atomic_read(&current->signal->tick_dep_mask))
d027d45d
FW
394 tick_nohz_full_kick();
395 }
6296ace4 396out:
99e5ada9
FW
397 local_irq_restore(flags);
398}
399
6f1982fe
FW
400/* Get the boot-time nohz CPU list from the kernel parameters. */
401void __init tick_nohz_full_setup(cpumask_var_t cpumask)
a831881b 402{
73867dcd 403 alloc_bootmem_cpumask_var(&tick_nohz_full_mask);
6f1982fe 404 cpumask_copy(tick_nohz_full_mask, cpumask);
73867dcd 405 tick_nohz_full_running = true;
a831881b 406}
a831881b 407
31eff243 408static int tick_nohz_cpu_down(unsigned int cpu)
a382bf93 409{
31eff243 410 /*
08ae95f4
NP
411 * The tick_do_timer_cpu CPU handles housekeeping duty (unbound
412 * timers, workqueues, timekeeping, ...) on behalf of full dynticks
31eff243
SAS
413 * CPUs. It must remain online when nohz full is enabled.
414 */
415 if (tick_nohz_full_running && tick_do_timer_cpu == cpu)
416 return -EBUSY;
417 return 0;
a382bf93
FW
418}
419
d1e43fa5 420void __init tick_nohz_init(void)
a831881b 421{
31eff243 422 int cpu, ret;
d1e43fa5 423
a7c8655b
PM
424 if (!tick_nohz_full_running)
425 return;
d1e43fa5 426
9b01f5bf
FW
427 /*
428 * Full dynticks uses irq work to drive the tick rescheduling on safe
429 * locking contexts. But then we need irq work to raise its own
430 * interrupts to avoid circular dependency on the tick
431 */
432 if (!arch_irq_work_has_interrupt()) {
a395d6a7 433 pr_warn("NO_HZ: Can't run full dynticks because arch doesn't support irq work self-IPIs\n");
9b01f5bf 434 cpumask_clear(tick_nohz_full_mask);
9b01f5bf
FW
435 tick_nohz_full_running = false;
436 return;
437 }
438
08ae95f4
NP
439 if (IS_ENABLED(CONFIG_PM_SLEEP_SMP) &&
440 !IS_ENABLED(CONFIG_PM_SLEEP_SMP_NONZERO_CPU)) {
441 cpu = smp_processor_id();
4327b15f 442
08ae95f4
NP
443 if (cpumask_test_cpu(cpu, tick_nohz_full_mask)) {
444 pr_warn("NO_HZ: Clearing %d from nohz_full range "
445 "for timekeeping\n", cpu);
446 cpumask_clear_cpu(cpu, tick_nohz_full_mask);
447 }
4327b15f
FW
448 }
449
73867dcd 450 for_each_cpu(cpu, tick_nohz_full_mask)
2e709338
FW
451 context_tracking_cpu_set(cpu);
452
31eff243
SAS
453 ret = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN,
454 "kernel/nohz:predown", NULL,
455 tick_nohz_cpu_down);
456 WARN_ON(ret < 0);
ffda22c1
TH
457 pr_info("NO_HZ: Full dynticks CPUs: %*pbl.\n",
458 cpumask_pr_args(tick_nohz_full_mask));
a831881b 459}
a831881b
FW
460#endif
461
79bf2bb3
TG
462/*
463 * NOHZ - aka dynamic tick functionality
464 */
3451d024 465#ifdef CONFIG_NO_HZ_COMMON
79bf2bb3
TG
466/*
467 * NO HZ enabled ?
468 */
4cc7ecb7 469bool tick_nohz_enabled __read_mostly = true;
bc7a34b8 470unsigned long tick_nohz_active __read_mostly;
79bf2bb3
TG
471/*
472 * Enable / Disable tickless mode
473 */
474static int __init setup_tick_nohz(char *str)
475{
4cc7ecb7 476 return (kstrtobool(str, &tick_nohz_enabled) == 0);
79bf2bb3
TG
477}
478
479__setup("nohz=", setup_tick_nohz);
480
a3642983 481bool tick_nohz_tick_stopped(void)
c1797baf 482{
2bc629a6
FW
483 struct tick_sched *ts = this_cpu_ptr(&tick_cpu_sched);
484
485 return ts->tick_stopped;
c1797baf
TG
486}
487
22ab8bc0
FW
488bool tick_nohz_tick_stopped_cpu(int cpu)
489{
490 struct tick_sched *ts = per_cpu_ptr(&tick_cpu_sched, cpu);
491
492 return ts->tick_stopped;
493}
494
79bf2bb3
TG
495/**
496 * tick_nohz_update_jiffies - update jiffies when idle was interrupted
497 *
498 * Called from interrupt entry when the CPU was idle
499 *
500 * In case the sched_tick was stopped on this CPU, we have to check if jiffies
501 * must be updated. Otherwise an interrupt handler could use a stale jiffy
0de7611a
IM
502 * value. We do this unconditionally on any CPU, as we don't know whether the
503 * CPU, which has the update task assigned is in a long sleep.
79bf2bb3 504 */
eed3b9cf 505static void tick_nohz_update_jiffies(ktime_t now)
79bf2bb3 506{
79bf2bb3 507 unsigned long flags;
79bf2bb3 508
e8fcaa5c 509 __this_cpu_write(tick_cpu_sched.idle_waketime, now);
79bf2bb3
TG
510
511 local_irq_save(flags);
512 tick_do_update_jiffies64(now);
513 local_irq_restore(flags);
02ff3755 514
03e0d461 515 touch_softlockup_watchdog_sched();
79bf2bb3
TG
516}
517
595aac48 518/*
0de7611a 519 * Updates the per-CPU time idle statistics counters
595aac48 520 */
8d63bf94 521static void
8c215bd3 522update_ts_time_stats(int cpu, struct tick_sched *ts, ktime_t now, u64 *last_update_time)
6378ddb5 523{
eed3b9cf 524 ktime_t delta;
6378ddb5 525
595aac48
AV
526 if (ts->idle_active) {
527 delta = ktime_sub(now, ts->idle_entrytime);
8c215bd3 528 if (nr_iowait_cpu(cpu) > 0)
0224cf4c 529 ts->iowait_sleeptime = ktime_add(ts->iowait_sleeptime, delta);
6beea0cd
MH
530 else
531 ts->idle_sleeptime = ktime_add(ts->idle_sleeptime, delta);
8c7b09f4 532 ts->idle_entrytime = now;
595aac48 533 }
8d63bf94 534
e0e37c20 535 if (last_update_time)
8d63bf94
AV
536 *last_update_time = ktime_to_us(now);
537
595aac48
AV
538}
539
e8fcaa5c 540static void tick_nohz_stop_idle(struct tick_sched *ts, ktime_t now)
595aac48 541{
e8fcaa5c 542 update_ts_time_stats(smp_processor_id(), ts, now, NULL);
eed3b9cf 543 ts->idle_active = 0;
56c7426b 544
ac1e843f 545 sched_clock_idle_wakeup_event();
6378ddb5
VP
546}
547
0e776768 548static void tick_nohz_start_idle(struct tick_sched *ts)
6378ddb5 549{
0e776768 550 ts->idle_entrytime = ktime_get();
6378ddb5 551 ts->idle_active = 1;
56c7426b 552 sched_clock_idle_sleep_event();
6378ddb5
VP
553}
554
b1f724c3 555/**
0de7611a 556 * get_cpu_idle_time_us - get the total idle time of a CPU
b1f724c3 557 * @cpu: CPU number to query
09a1d34f
MH
558 * @last_update_time: variable to store update time in. Do not update
559 * counters if NULL.
b1f724c3 560 *
6168f8ed 561 * Return the cumulative idle time (since boot) for a given
6beea0cd 562 * CPU, in microseconds.
b1f724c3
AV
563 *
564 * This time is measured via accounting rather than sampling,
565 * and is as accurate as ktime_get() is.
566 *
567 * This function returns -1 if NOHZ is not enabled.
568 */
6378ddb5
VP
569u64 get_cpu_idle_time_us(int cpu, u64 *last_update_time)
570{
571 struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu);
09a1d34f 572 ktime_t now, idle;
6378ddb5 573
d689fe22 574 if (!tick_nohz_active)
8083e4ad 575 return -1;
576
09a1d34f
MH
577 now = ktime_get();
578 if (last_update_time) {
579 update_ts_time_stats(cpu, ts, now, last_update_time);
580 idle = ts->idle_sleeptime;
581 } else {
582 if (ts->idle_active && !nr_iowait_cpu(cpu)) {
583 ktime_t delta = ktime_sub(now, ts->idle_entrytime);
584
585 idle = ktime_add(ts->idle_sleeptime, delta);
586 } else {
587 idle = ts->idle_sleeptime;
588 }
589 }
590
591 return ktime_to_us(idle);
8083e4ad 592
6378ddb5 593}
8083e4ad 594EXPORT_SYMBOL_GPL(get_cpu_idle_time_us);
6378ddb5 595
6beea0cd 596/**
0de7611a 597 * get_cpu_iowait_time_us - get the total iowait time of a CPU
0224cf4c 598 * @cpu: CPU number to query
09a1d34f
MH
599 * @last_update_time: variable to store update time in. Do not update
600 * counters if NULL.
0224cf4c 601 *
6168f8ed 602 * Return the cumulative iowait time (since boot) for a given
0224cf4c
AV
603 * CPU, in microseconds.
604 *
605 * This time is measured via accounting rather than sampling,
606 * and is as accurate as ktime_get() is.
607 *
608 * This function returns -1 if NOHZ is not enabled.
609 */
610u64 get_cpu_iowait_time_us(int cpu, u64 *last_update_time)
611{
612 struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu);
09a1d34f 613 ktime_t now, iowait;
0224cf4c 614
d689fe22 615 if (!tick_nohz_active)
0224cf4c
AV
616 return -1;
617
09a1d34f
MH
618 now = ktime_get();
619 if (last_update_time) {
620 update_ts_time_stats(cpu, ts, now, last_update_time);
621 iowait = ts->iowait_sleeptime;
622 } else {
623 if (ts->idle_active && nr_iowait_cpu(cpu) > 0) {
624 ktime_t delta = ktime_sub(now, ts->idle_entrytime);
0224cf4c 625
09a1d34f
MH
626 iowait = ktime_add(ts->iowait_sleeptime, delta);
627 } else {
628 iowait = ts->iowait_sleeptime;
629 }
630 }
0224cf4c 631
09a1d34f 632 return ktime_to_us(iowait);
0224cf4c
AV
633}
634EXPORT_SYMBOL_GPL(get_cpu_iowait_time_us);
635
0ff53d09
TG
636static void tick_nohz_restart(struct tick_sched *ts, ktime_t now)
637{
638 hrtimer_cancel(&ts->sched_timer);
639 hrtimer_set_expires(&ts->sched_timer, ts->last_tick);
640
641 /* Forward the time to expire in the future */
642 hrtimer_forward(&ts->sched_timer, now, tick_period);
643
902a9f9c
SAS
644 if (ts->nohz_mode == NOHZ_MODE_HIGHRES) {
645 hrtimer_start_expires(&ts->sched_timer,
646 HRTIMER_MODE_ABS_PINNED_HARD);
647 } else {
0ff53d09 648 tick_program_event(hrtimer_get_expires(&ts->sched_timer), 1);
902a9f9c 649 }
411fe24e
FW
650
651 /*
652 * Reset to make sure next tick stop doesn't get fooled by past
653 * cached clock deadline.
654 */
655 ts->next_tick = 0;
0ff53d09
TG
656}
657
5d62c183
TG
658static inline bool local_timer_softirq_pending(void)
659{
80d20d35 660 return local_softirq_pending() & BIT(TIMER_SOFTIRQ);
5d62c183
TG
661}
662
23a8d888 663static ktime_t tick_nohz_next_event(struct tick_sched *ts, int cpu)
79bf2bb3 664{
c1ad348b 665 u64 basemono, next_tick, next_tmr, next_rcu, delta, expires;
e1e41b6c
RV
666 unsigned long basejiff;
667 unsigned int seq;
855a0fc3 668
79bf2bb3
TG
669 /* Read jiffies and the time when jiffies were updated last */
670 do {
d6ad4187 671 seq = read_seqbegin(&jiffies_lock);
2456e855 672 basemono = last_jiffies_update;
c1ad348b 673 basejiff = jiffies;
d6ad4187 674 } while (read_seqretry(&jiffies_lock, seq));
c1ad348b 675 ts->last_jiffies = basejiff;
23a8d888 676 ts->timer_expires_base = basemono;
79bf2bb3 677
5d62c183
TG
678 /*
679 * Keep the periodic tick, when RCU, architecture or irq_work
680 * requests it.
681 * Aside of that check whether the local timer softirq is
682 * pending. If so its a bad idea to call get_next_timer_interrupt()
683 * because there is an already expired timer, so it will request
684 * immeditate expiry, which rearms the hardware timer with a
685 * minimal delta which brings us back to this place
686 * immediately. Lather, rinse and repeat...
687 */
688 if (rcu_needs_cpu(basemono, &next_rcu) || arch_needs_cpu() ||
689 irq_work_needs_cpu() || local_timer_softirq_pending()) {
c1ad348b 690 next_tick = basemono + TICK_NSEC;
3c5d92a0 691 } else {
c1ad348b
TG
692 /*
693 * Get the next pending timer. If high resolution
694 * timers are enabled this only takes the timer wheel
695 * timers into account. If high resolution timers are
696 * disabled this also looks at the next expiring
697 * hrtimer.
698 */
699 next_tmr = get_next_timer_interrupt(basejiff, basemono);
700 ts->next_timer = next_tmr;
701 /* Take the next rcu event into account */
702 next_tick = next_rcu < next_tmr ? next_rcu : next_tmr;
3c5d92a0 703 }
47aa8b6c 704
c1ad348b
TG
705 /*
706 * If the tick is due in the next period, keep it ticking or
82bbe34b 707 * force prod the timer.
c1ad348b
TG
708 */
709 delta = next_tick - basemono;
710 if (delta <= (u64)TICK_NSEC) {
a683f390
TG
711 /*
712 * Tell the timer code that the base is not idle, i.e. undo
713 * the effect of get_next_timer_interrupt():
714 */
715 timer_clear_idle();
82bbe34b
PZ
716 /*
717 * We've not stopped the tick yet, and there's a timer in the
718 * next period, so no point in stopping it either, bail.
719 */
f99973e1 720 if (!ts->tick_stopped) {
23a8d888 721 ts->timer_expires = 0;
157d29e1
TG
722 goto out;
723 }
724 }
725
23a8d888
RW
726 /*
727 * If this CPU is the one which had the do_timer() duty last, we limit
728 * the sleep time to the timekeeping max_deferment value.
729 * Otherwise we can sleep as long as we want.
730 */
731 delta = timekeeping_max_deferment();
732 if (cpu != tick_do_timer_cpu &&
733 (tick_do_timer_cpu != TICK_DO_TIMER_NONE || !ts->do_timer_last))
734 delta = KTIME_MAX;
735
736 /* Calculate the next expiry time */
737 if (delta < (KTIME_MAX - basemono))
738 expires = basemono + delta;
739 else
740 expires = KTIME_MAX;
741
742 ts->timer_expires = min_t(u64, expires, next_tick);
743
744out:
745 return ts->timer_expires;
746}
747
748static void tick_nohz_stop_tick(struct tick_sched *ts, int cpu)
749{
750 struct clock_event_device *dev = __this_cpu_read(tick_cpu_device.evtdev);
751 u64 basemono = ts->timer_expires_base;
752 u64 expires = ts->timer_expires;
753 ktime_t tick = expires;
754
755 /* Make sure we won't be trying to stop it twice in a row. */
756 ts->timer_expires_base = 0;
757
79bf2bb3 758 /*
0de7611a
IM
759 * If this CPU is the one which updates jiffies, then give up
760 * the assignment and let it be taken by the CPU which runs
761 * the tick timer next, which might be this CPU as well. If we
157d29e1
TG
762 * don't drop this here the jiffies might be stale and
763 * do_timer() never invoked. Keep track of the fact that it
23a8d888 764 * was the one which had the do_timer() duty last.
79bf2bb3 765 */
157d29e1
TG
766 if (cpu == tick_do_timer_cpu) {
767 tick_do_timer_cpu = TICK_DO_TIMER_NONE;
768 ts->do_timer_last = 1;
769 } else if (tick_do_timer_cpu != TICK_DO_TIMER_NONE) {
157d29e1 770 ts->do_timer_last = 0;
157d29e1 771 }
27185016 772
157d29e1 773 /* Skip reprogram of event if its not changed */
411fe24e
FW
774 if (ts->tick_stopped && (expires == ts->next_tick)) {
775 /* Sanity check: make sure clockevent is actually programmed */
d4af6d93 776 if (tick == KTIME_MAX || ts->next_tick == hrtimer_get_expires(&ts->sched_timer))
23a8d888 777 return;
411fe24e
FW
778
779 WARN_ON_ONCE(1);
780 printk_once("basemono: %llu ts->next_tick: %llu dev->next_event: %llu timer->active: %d timer->expires: %llu\n",
781 basemono, ts->next_tick, dev->next_event,
782 hrtimer_active(&ts->sched_timer), hrtimer_get_expires(&ts->sched_timer));
ce6cf9a1 783 }
84bf1bcc 784
157d29e1
TG
785 /*
786 * nohz_stop_sched_tick can be called several times before
787 * the nohz_restart_sched_tick is called. This happens when
788 * interrupts arrive which do not cause a reschedule. In the
789 * first call we save the current tick time, so we can restart
790 * the scheduler tick in nohz_restart_sched_tick.
791 */
792 if (!ts->tick_stopped) {
3c85d6db 793 calc_load_nohz_start();
62cb1188 794 quiet_vmstat();
d3ed7824 795
157d29e1
TG
796 ts->last_tick = hrtimer_get_expires(&ts->sched_timer);
797 ts->tick_stopped = 1;
e6e6cc22 798 trace_tick_stop(1, TICK_DEP_MASK_NONE);
157d29e1 799 }
eaad084b 800
411fe24e
FW
801 ts->next_tick = tick;
802
157d29e1 803 /*
c1ad348b
TG
804 * If the expiration time == KTIME_MAX, then we simply stop
805 * the tick timer.
157d29e1 806 */
c1ad348b 807 if (unlikely(expires == KTIME_MAX)) {
157d29e1
TG
808 if (ts->nohz_mode == NOHZ_MODE_HIGHRES)
809 hrtimer_cancel(&ts->sched_timer);
23a8d888 810 return;
79bf2bb3 811 }
0ff53d09 812
1f71addd 813 if (ts->nohz_mode == NOHZ_MODE_HIGHRES) {
902a9f9c
SAS
814 hrtimer_start(&ts->sched_timer, tick,
815 HRTIMER_MODE_ABS_PINNED_HARD);
1f71addd
TG
816 } else {
817 hrtimer_set_expires(&ts->sched_timer, tick);
c1ad348b 818 tick_program_event(tick, 1);
1f71addd 819 }
280f0677
FW
820}
821
23a8d888
RW
822static void tick_nohz_retain_tick(struct tick_sched *ts)
823{
824 ts->timer_expires_base = 0;
825}
826
827#ifdef CONFIG_NO_HZ_FULL
828static void tick_nohz_stop_sched_tick(struct tick_sched *ts, int cpu)
829{
830 if (tick_nohz_next_event(ts, cpu))
831 tick_nohz_stop_tick(ts, cpu);
832 else
833 tick_nohz_retain_tick(ts);
834}
835#endif /* CONFIG_NO_HZ_FULL */
836
1f41906a 837static void tick_nohz_restart_sched_tick(struct tick_sched *ts, ktime_t now)
59d2c7ca
FW
838{
839 /* Update jiffies first */
840 tick_do_update_jiffies64(now);
59d2c7ca 841
a683f390
TG
842 /*
843 * Clear the timer idle flag, so we avoid IPIs on remote queueing and
844 * the clock forward checks in the enqueue path:
845 */
846 timer_clear_idle();
847
3c85d6db 848 calc_load_nohz_stop();
03e0d461 849 touch_softlockup_watchdog_sched();
59d2c7ca
FW
850 /*
851 * Cancel the scheduled timer and restore the tick
852 */
853 ts->tick_stopped = 0;
854 ts->idle_exittime = now;
855
856 tick_nohz_restart(ts, now);
857}
73738a95
FW
858
859static void tick_nohz_full_update_tick(struct tick_sched *ts)
5811d996
FW
860{
861#ifdef CONFIG_NO_HZ_FULL
e9a2eb40 862 int cpu = smp_processor_id();
5811d996 863
59449359 864 if (!tick_nohz_full_cpu(cpu))
e9a2eb40 865 return;
5811d996 866
e9a2eb40
AS
867 if (!ts->tick_stopped && ts->nohz_mode == NOHZ_MODE_INACTIVE)
868 return;
5811d996 869
57ccdf44 870 if (can_stop_full_tick(cpu, ts))
23a8d888 871 tick_nohz_stop_sched_tick(ts, cpu);
73738a95 872 else if (ts->tick_stopped)
1f41906a 873 tick_nohz_restart_sched_tick(ts, ktime_get());
5811d996
FW
874#endif
875}
876
5b39939a
FW
877static bool can_stop_idle_tick(int cpu, struct tick_sched *ts)
878{
879 /*
0de7611a 880 * If this CPU is offline and it is the one which updates
5b39939a 881 * jiffies, then give up the assignment and let it be taken by
0de7611a 882 * the CPU which runs the tick timer next. If we don't drop
5b39939a
FW
883 * this here the jiffies might be stale and do_timer() never
884 * invoked.
885 */
886 if (unlikely(!cpu_online(cpu))) {
887 if (cpu == tick_do_timer_cpu)
888 tick_do_timer_cpu = TICK_DO_TIMER_NONE;
411fe24e
FW
889 /*
890 * Make sure the CPU doesn't get fooled by obsolete tick
891 * deadline if it comes back online later.
892 */
893 ts->next_tick = 0;
f7ea0fd6 894 return false;
5b39939a
FW
895 }
896
23a8d888 897 if (unlikely(ts->nohz_mode == NOHZ_MODE_INACTIVE))
5b39939a
FW
898 return false;
899
900 if (need_resched())
901 return false;
902
d59e0ba1 903 if (unlikely(local_softirq_pending())) {
5b39939a
FW
904 static int ratelimit;
905
803b0eba
PM
906 if (ratelimit < 10 &&
907 (local_softirq_pending() & SOFTIRQ_STOP_IDLE_MASK)) {
cfea7d7e
RV
908 pr_warn("NOHZ: local_softirq_pending %02x\n",
909 (unsigned int) local_softirq_pending());
5b39939a
FW
910 ratelimit++;
911 }
912 return false;
913 }
914
460775df 915 if (tick_nohz_full_enabled()) {
a382bf93
FW
916 /*
917 * Keep the tick alive to guarantee timekeeping progression
918 * if there are full dynticks CPUs around
919 */
920 if (tick_do_timer_cpu == cpu)
921 return false;
922 /*
923 * Boot safety: make sure the timekeeping duty has been
924 * assigned before entering dyntick-idle mode,
08ae95f4 925 * tick_do_timer_cpu is TICK_DO_TIMER_BOOT
a382bf93 926 */
08ae95f4
NP
927 if (unlikely(tick_do_timer_cpu == TICK_DO_TIMER_BOOT))
928 return false;
929
930 /* Should not happen for nohz-full */
931 if (WARN_ON_ONCE(tick_do_timer_cpu == TICK_DO_TIMER_NONE))
a382bf93
FW
932 return false;
933 }
934
5b39939a
FW
935 return true;
936}
937
0e776768 938static void __tick_nohz_idle_stop_tick(struct tick_sched *ts)
19f5f736 939{
0e776768 940 ktime_t expires;
5b39939a 941 int cpu = smp_processor_id();
19f5f736 942
554c8aa8
RW
943 /*
944 * If tick_nohz_get_sleep_length() ran tick_nohz_next_event(), the
945 * tick timer expiration time is known already.
946 */
947 if (ts->timer_expires_base)
948 expires = ts->timer_expires;
949 else if (can_stop_idle_tick(cpu, ts))
950 expires = tick_nohz_next_event(ts, cpu);
951 else
952 return;
23a8d888
RW
953
954 ts->idle_calls++;
08d07259 955
23a8d888 956 if (expires > 0LL) {
5b39939a
FW
957 int was_stopped = ts->tick_stopped;
958
23a8d888 959 tick_nohz_stop_tick(ts, cpu);
84bf1bcc 960
23a8d888
RW
961 ts->idle_sleeps++;
962 ts->idle_expires = expires;
5b39939a 963
a0db971e 964 if (!was_stopped && ts->tick_stopped) {
5b39939a 965 ts->idle_jiffies = ts->last_jiffies;
a0db971e
FW
966 nohz_balance_enter_idle(cpu);
967 }
23a8d888
RW
968 } else {
969 tick_nohz_retain_tick(ts);
5b39939a 970 }
280f0677
FW
971}
972
973/**
0e776768 974 * tick_nohz_idle_stop_tick - stop the idle tick from the idle task
280f0677
FW
975 *
976 * When the next event is more than a tick into the future, stop the idle tick
0e776768
RW
977 */
978void tick_nohz_idle_stop_tick(void)
979{
980 __tick_nohz_idle_stop_tick(this_cpu_ptr(&tick_cpu_sched));
981}
982
554c8aa8
RW
983void tick_nohz_idle_retain_tick(void)
984{
985 tick_nohz_retain_tick(this_cpu_ptr(&tick_cpu_sched));
986 /*
987 * Undo the effect of get_next_timer_interrupt() called from
988 * tick_nohz_next_event().
989 */
990 timer_clear_idle();
991}
992
0e776768
RW
993/**
994 * tick_nohz_idle_enter - prepare for entering idle on the current CPU
2bbb6817 995 *
0e776768 996 * Called when we start the idle loop.
280f0677 997 */
1268fbc7 998void tick_nohz_idle_enter(void)
280f0677
FW
999{
1000 struct tick_sched *ts;
1001
ebf3adba 1002 lockdep_assert_irqs_enabled();
0db49b72 1003
1268fbc7
FW
1004 local_irq_disable();
1005
22127e93 1006 ts = this_cpu_ptr(&tick_cpu_sched);
23a8d888
RW
1007
1008 WARN_ON_ONCE(ts->timer_expires_base);
1009
280f0677 1010 ts->inidle = 1;
0e776768 1011 tick_nohz_start_idle(ts);
1268fbc7
FW
1012
1013 local_irq_enable();
280f0677
FW
1014}
1015
1016/**
1017 * tick_nohz_irq_exit - update next tick event from interrupt exit
1018 *
1019 * When an interrupt fires while we are idle and it doesn't cause
1020 * a reschedule, it may still add, modify or delete a timer, enqueue
1021 * an RCU callback, etc...
1022 * So we need to re-calculate and reprogram the next tick event.
1023 */
1024void tick_nohz_irq_exit(void)
1025{
22127e93 1026 struct tick_sched *ts = this_cpu_ptr(&tick_cpu_sched);
280f0677 1027
14851912 1028 if (ts->inidle)
0e776768 1029 tick_nohz_start_idle(ts);
14851912 1030 else
73738a95 1031 tick_nohz_full_update_tick(ts);
79bf2bb3
TG
1032}
1033
4f86d3a8 1034/**
45f1ff59
RW
1035 * tick_nohz_idle_got_tick - Check whether or not the tick handler has run
1036 */
1037bool tick_nohz_idle_got_tick(void)
1038{
1039 struct tick_sched *ts = this_cpu_ptr(&tick_cpu_sched);
1040
2bc629a6
FW
1041 if (ts->got_idle_tick) {
1042 ts->got_idle_tick = 0;
45f1ff59
RW
1043 return true;
1044 }
1045 return false;
1046}
1047
6f9b83ac
UH
1048/**
1049 * tick_nohz_get_next_hrtimer - return the next expiration time for the hrtimer
1050 * or the tick, whatever that expires first. Note that, if the tick has been
1051 * stopped, it returns the next hrtimer.
1052 *
1053 * Called from power state control code with interrupts disabled
1054 */
1055ktime_t tick_nohz_get_next_hrtimer(void)
1056{
1057 return __this_cpu_read(tick_cpu_device.evtdev)->next_event;
1058}
1059
4f86d3a8 1060/**
554c8aa8 1061 * tick_nohz_get_sleep_length - return the expected length of the current sleep
296bb1e5 1062 * @delta_next: duration until the next event if the tick cannot be stopped
4f86d3a8
LB
1063 *
1064 * Called from power state control code with interrupts disabled
1065 */
296bb1e5 1066ktime_t tick_nohz_get_sleep_length(ktime_t *delta_next)
4f86d3a8 1067{
554c8aa8 1068 struct clock_event_device *dev = __this_cpu_read(tick_cpu_device.evtdev);
22127e93 1069 struct tick_sched *ts = this_cpu_ptr(&tick_cpu_sched);
554c8aa8
RW
1070 int cpu = smp_processor_id();
1071 /*
1072 * The idle entry time is expected to be a sufficient approximation of
1073 * the current time at this point.
1074 */
1075 ktime_t now = ts->idle_entrytime;
1076 ktime_t next_event;
1077
1078 WARN_ON_ONCE(!ts->inidle);
1079
296bb1e5
RW
1080 *delta_next = ktime_sub(dev->next_event, now);
1081
554c8aa8 1082 if (!can_stop_idle_tick(cpu, ts))
296bb1e5 1083 return *delta_next;
554c8aa8
RW
1084
1085 next_event = tick_nohz_next_event(ts, cpu);
1086 if (!next_event)
296bb1e5 1087 return *delta_next;
554c8aa8
RW
1088
1089 /*
1090 * If the next highres timer to expire is earlier than next_event, the
1091 * idle governor needs to know that.
1092 */
1093 next_event = min_t(u64, next_event,
1094 hrtimer_next_event_without(&ts->sched_timer));
4f86d3a8 1095
554c8aa8 1096 return ktime_sub(next_event, now);
4f86d3a8
LB
1097}
1098
466a2b42
JF
1099/**
1100 * tick_nohz_get_idle_calls_cpu - return the current idle calls counter value
1101 * for a particular CPU.
1102 *
1103 * Called from the schedutil frequency scaling governor in scheduler context.
1104 */
1105unsigned long tick_nohz_get_idle_calls_cpu(int cpu)
1106{
1107 struct tick_sched *ts = tick_get_tick_sched(cpu);
1108
1109 return ts->idle_calls;
1110}
1111
b7eaf1aa
RW
1112/**
1113 * tick_nohz_get_idle_calls - return the current idle calls counter value
1114 *
1115 * Called from the schedutil frequency scaling governor in scheduler context.
1116 */
1117unsigned long tick_nohz_get_idle_calls(void)
1118{
1119 struct tick_sched *ts = this_cpu_ptr(&tick_cpu_sched);
1120
1121 return ts->idle_calls;
1122}
1123
2ac0d98f
FW
1124static void tick_nohz_account_idle_ticks(struct tick_sched *ts)
1125{
3f4724ea 1126#ifndef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
2ac0d98f 1127 unsigned long ticks;
3f4724ea 1128
55dbdcfa 1129 if (vtime_accounting_cpu_enabled())
3f4724ea 1130 return;
79bf2bb3
TG
1131 /*
1132 * We stopped the tick in idle. Update process times would miss the
1133 * time we slept as update_process_times does only a 1 tick
1134 * accounting. Enforce that this is accounted to idle !
1135 */
1136 ticks = jiffies - ts->idle_jiffies;
1137 /*
1138 * We might be one off. Do not randomly account a huge number of ticks!
1139 */
79741dd3
MS
1140 if (ticks && ticks < LONG_MAX)
1141 account_idle_ticks(ticks);
1142#endif
19f5f736
FW
1143}
1144
2aaf709a
RW
1145static void __tick_nohz_idle_restart_tick(struct tick_sched *ts, ktime_t now)
1146{
1147 tick_nohz_restart_sched_tick(ts, now);
1148 tick_nohz_account_idle_ticks(ts);
1149}
1150
1151void tick_nohz_idle_restart_tick(void)
1152{
1153 struct tick_sched *ts = this_cpu_ptr(&tick_cpu_sched);
1154
1155 if (ts->tick_stopped)
1156 __tick_nohz_idle_restart_tick(ts, ktime_get());
1157}
1158
79bf2bb3 1159/**
280f0677 1160 * tick_nohz_idle_exit - restart the idle tick from the idle task
79bf2bb3
TG
1161 *
1162 * Restart the idle tick when the CPU is woken up from idle
280f0677
FW
1163 * This also exit the RCU extended quiescent state. The CPU
1164 * can use RCU again after this function is called.
79bf2bb3 1165 */
280f0677 1166void tick_nohz_idle_exit(void)
79bf2bb3 1167{
4a32fea9 1168 struct tick_sched *ts = this_cpu_ptr(&tick_cpu_sched);
bbe9a70a 1169 bool idle_active, tick_stopped;
6378ddb5 1170 ktime_t now;
79bf2bb3 1171
6378ddb5 1172 local_irq_disable();
2bbb6817 1173
15f827be 1174 WARN_ON_ONCE(!ts->inidle);
23a8d888 1175 WARN_ON_ONCE(ts->timer_expires_base);
15f827be
FW
1176
1177 ts->inidle = 0;
bbe9a70a
AB
1178 idle_active = ts->idle_active;
1179 tick_stopped = ts->tick_stopped;
15f827be 1180
bbe9a70a 1181 if (idle_active || tick_stopped)
eed3b9cf
MS
1182 now = ktime_get();
1183
bbe9a70a 1184 if (idle_active)
e8fcaa5c 1185 tick_nohz_stop_idle(ts, now);
6378ddb5 1186
bbe9a70a 1187 if (tick_stopped)
2aaf709a 1188 __tick_nohz_idle_restart_tick(ts, now);
79bf2bb3 1189
79bf2bb3
TG
1190 local_irq_enable();
1191}
1192
79bf2bb3
TG
1193/*
1194 * The nohz low res interrupt handler
1195 */
1196static void tick_nohz_handler(struct clock_event_device *dev)
1197{
22127e93 1198 struct tick_sched *ts = this_cpu_ptr(&tick_cpu_sched);
79bf2bb3
TG
1199 struct pt_regs *regs = get_irq_regs();
1200 ktime_t now = ktime_get();
1201
2456e855 1202 dev->next_event = KTIME_MAX;
79bf2bb3 1203
ff7de620 1204 tick_sched_do_timer(ts, now);
9e8f559b 1205 tick_sched_handle(ts, regs);
79bf2bb3 1206
b5e995e6
VK
1207 /* No need to reprogram if we are running tickless */
1208 if (unlikely(ts->tick_stopped))
1209 return;
1210
0ff53d09
TG
1211 hrtimer_forward(&ts->sched_timer, now, tick_period);
1212 tick_program_event(hrtimer_get_expires(&ts->sched_timer), 1);
79bf2bb3
TG
1213}
1214
bc7a34b8
TG
1215static inline void tick_nohz_activate(struct tick_sched *ts, int mode)
1216{
1217 if (!tick_nohz_enabled)
1218 return;
1219 ts->nohz_mode = mode;
1220 /* One update is enough */
1221 if (!test_and_set_bit(0, &tick_nohz_active))
ae67bada 1222 timers_update_nohz();
bc7a34b8
TG
1223}
1224
79bf2bb3
TG
1225/**
1226 * tick_nohz_switch_to_nohz - switch to nohz mode
1227 */
1228static void tick_nohz_switch_to_nohz(void)
1229{
22127e93 1230 struct tick_sched *ts = this_cpu_ptr(&tick_cpu_sched);
79bf2bb3
TG
1231 ktime_t next;
1232
27630532 1233 if (!tick_nohz_enabled)
79bf2bb3
TG
1234 return;
1235
6b442bc8 1236 if (tick_switch_to_oneshot(tick_nohz_handler))
79bf2bb3 1237 return;
6b442bc8 1238
79bf2bb3
TG
1239 /*
1240 * Recycle the hrtimer in ts, so we can share the
1241 * hrtimer_forward with the highres code.
1242 */
71fed982 1243 hrtimer_init(&ts->sched_timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_HARD);
79bf2bb3
TG
1244 /* Get the next period */
1245 next = tick_init_jiffy_update();
1246
0ff53d09 1247 hrtimer_set_expires(&ts->sched_timer, next);
1ca8ec53
WL
1248 hrtimer_forward_now(&ts->sched_timer, tick_period);
1249 tick_program_event(hrtimer_get_expires(&ts->sched_timer), 1);
bc7a34b8 1250 tick_nohz_activate(ts, NOHZ_MODE_LOWRES);
79bf2bb3
TG
1251}
1252
5acac1be 1253static inline void tick_nohz_irq_enter(void)
eed3b9cf 1254{
4a32fea9 1255 struct tick_sched *ts = this_cpu_ptr(&tick_cpu_sched);
eed3b9cf
MS
1256 ktime_t now;
1257
1258 if (!ts->idle_active && !ts->tick_stopped)
1259 return;
1260 now = ktime_get();
1261 if (ts->idle_active)
e8fcaa5c 1262 tick_nohz_stop_idle(ts, now);
ff006732 1263 if (ts->tick_stopped)
eed3b9cf 1264 tick_nohz_update_jiffies(now);
eed3b9cf
MS
1265}
1266
79bf2bb3
TG
1267#else
1268
1269static inline void tick_nohz_switch_to_nohz(void) { }
5acac1be 1270static inline void tick_nohz_irq_enter(void) { }
bc7a34b8 1271static inline void tick_nohz_activate(struct tick_sched *ts, int mode) { }
79bf2bb3 1272
3451d024 1273#endif /* CONFIG_NO_HZ_COMMON */
79bf2bb3 1274
719254fa
TG
1275/*
1276 * Called from irq_enter to notify about the possible interruption of idle()
1277 */
5acac1be 1278void tick_irq_enter(void)
719254fa 1279{
e8fcaa5c 1280 tick_check_oneshot_broadcast_this_cpu();
5acac1be 1281 tick_nohz_irq_enter();
719254fa
TG
1282}
1283
79bf2bb3
TG
1284/*
1285 * High resolution timer specific code
1286 */
1287#ifdef CONFIG_HIGH_RES_TIMERS
1288/*
4c9dc641 1289 * We rearm the timer until we get disabled by the idle code.
351f181f 1290 * Called with interrupts disabled.
79bf2bb3
TG
1291 */
1292static enum hrtimer_restart tick_sched_timer(struct hrtimer *timer)
1293{
1294 struct tick_sched *ts =
1295 container_of(timer, struct tick_sched, sched_timer);
79bf2bb3
TG
1296 struct pt_regs *regs = get_irq_regs();
1297 ktime_t now = ktime_get();
d3ed7824 1298
ff7de620 1299 tick_sched_do_timer(ts, now);
79bf2bb3
TG
1300
1301 /*
1302 * Do not call, when we are not in irq context and have
1303 * no valid regs pointer
1304 */
9e8f559b
FW
1305 if (regs)
1306 tick_sched_handle(ts, regs);
7c259045
FW
1307 else
1308 ts->next_tick = 0;
79bf2bb3 1309
2a16fc93
VK
1310 /* No need to reprogram if we are in idle or full dynticks mode */
1311 if (unlikely(ts->tick_stopped))
1312 return HRTIMER_NORESTART;
1313
79bf2bb3
TG
1314 hrtimer_forward(timer, now, tick_period);
1315
1316 return HRTIMER_RESTART;
1317}
1318
5307c955
MG
1319static int sched_skew_tick;
1320
62cf20b3
TG
1321static int __init skew_tick(char *str)
1322{
1323 get_option(&str, &sched_skew_tick);
1324
1325 return 0;
1326}
1327early_param("skew_tick", skew_tick);
1328
79bf2bb3
TG
1329/**
1330 * tick_setup_sched_timer - setup the tick emulation timer
1331 */
1332void tick_setup_sched_timer(void)
1333{
22127e93 1334 struct tick_sched *ts = this_cpu_ptr(&tick_cpu_sched);
79bf2bb3
TG
1335 ktime_t now = ktime_get();
1336
1337 /*
1338 * Emulate tick processing via per-CPU hrtimers:
1339 */
902a9f9c 1340 hrtimer_init(&ts->sched_timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_HARD);
79bf2bb3 1341 ts->sched_timer.function = tick_sched_timer;
79bf2bb3 1342
0de7611a 1343 /* Get the next period (per-CPU) */
cc584b21 1344 hrtimer_set_expires(&ts->sched_timer, tick_init_jiffy_update());
79bf2bb3 1345
9c3f9e28 1346 /* Offset the tick to avert jiffies_lock contention. */
5307c955
MG
1347 if (sched_skew_tick) {
1348 u64 offset = ktime_to_ns(tick_period) >> 1;
1349 do_div(offset, num_possible_cpus());
1350 offset *= smp_processor_id();
1351 hrtimer_add_expires_ns(&ts->sched_timer, offset);
1352 }
1353
afc08b15 1354 hrtimer_forward(&ts->sched_timer, now, tick_period);
902a9f9c 1355 hrtimer_start_expires(&ts->sched_timer, HRTIMER_MODE_ABS_PINNED_HARD);
bc7a34b8 1356 tick_nohz_activate(ts, NOHZ_MODE_HIGHRES);
79bf2bb3 1357}
3c4fbe5e 1358#endif /* HIGH_RES_TIMERS */
79bf2bb3 1359
3451d024 1360#if defined CONFIG_NO_HZ_COMMON || defined CONFIG_HIGH_RES_TIMERS
79bf2bb3
TG
1361void tick_cancel_sched_timer(int cpu)
1362{
1363 struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu);
1364
3c4fbe5e 1365# ifdef CONFIG_HIGH_RES_TIMERS
79bf2bb3
TG
1366 if (ts->sched_timer.base)
1367 hrtimer_cancel(&ts->sched_timer);
3c4fbe5e 1368# endif
a7901766 1369
4b0c0f29 1370 memset(ts, 0, sizeof(*ts));
79bf2bb3 1371}
3c4fbe5e 1372#endif
79bf2bb3
TG
1373
1374/**
1375 * Async notification about clocksource changes
1376 */
1377void tick_clock_notify(void)
1378{
1379 int cpu;
1380
1381 for_each_possible_cpu(cpu)
1382 set_bit(0, &per_cpu(tick_cpu_sched, cpu).check_clocks);
1383}
1384
1385/*
1386 * Async notification about clock event changes
1387 */
1388void tick_oneshot_notify(void)
1389{
22127e93 1390 struct tick_sched *ts = this_cpu_ptr(&tick_cpu_sched);
79bf2bb3
TG
1391
1392 set_bit(0, &ts->check_clocks);
1393}
1394
1395/**
1396 * Check, if a change happened, which makes oneshot possible.
1397 *
1398 * Called cyclic from the hrtimer softirq (driven by the timer
1399 * softirq) allow_nohz signals, that we can switch into low-res nohz
1400 * mode, because high resolution timers are disabled (either compile
6b442bc8 1401 * or runtime). Called with interrupts disabled.
79bf2bb3
TG
1402 */
1403int tick_check_oneshot_change(int allow_nohz)
1404{
22127e93 1405 struct tick_sched *ts = this_cpu_ptr(&tick_cpu_sched);
79bf2bb3
TG
1406
1407 if (!test_and_clear_bit(0, &ts->check_clocks))
1408 return 0;
1409
1410 if (ts->nohz_mode != NOHZ_MODE_INACTIVE)
1411 return 0;
1412
cf4fc6cb 1413 if (!timekeeping_valid_for_hres() || !tick_is_oneshot_available())
79bf2bb3
TG
1414 return 0;
1415
1416 if (!allow_nohz)
1417 return 1;
1418
1419 tick_nohz_switch_to_nohz();
1420 return 0;
1421}