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