nohz: Prevent clocksource wrapping during idle
[deliverable/linux.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>
20#include <linux/profile.h>
21#include <linux/sched.h>
22#include <linux/tick.h>
8083e4ad 23#include <linux/module.h>
79bf2bb3 24
9e203bcc
DM
25#include <asm/irq_regs.h>
26
79bf2bb3
TG
27#include "tick-internal.h"
28
29/*
30 * Per cpu nohz control structure
31 */
32static DEFINE_PER_CPU(struct tick_sched, tick_cpu_sched);
33
34/*
35 * The time, when the last jiffy update happened. Protected by xtime_lock.
36 */
37static ktime_t last_jiffies_update;
38
289f480a
IM
39struct tick_sched *tick_get_tick_sched(int cpu)
40{
41 return &per_cpu(tick_cpu_sched, cpu);
42}
43
79bf2bb3
TG
44/*
45 * Must be called with interrupts disabled !
46 */
47static void tick_do_update_jiffies64(ktime_t now)
48{
49 unsigned long ticks = 0;
50 ktime_t delta;
51
7a14ce1d
IM
52 /*
53 * Do a quick check without holding xtime_lock:
54 */
55 delta = ktime_sub(now, last_jiffies_update);
56 if (delta.tv64 < tick_period.tv64)
57 return;
58
79bf2bb3
TG
59 /* Reevalute with xtime_lock held */
60 write_seqlock(&xtime_lock);
61
62 delta = ktime_sub(now, last_jiffies_update);
63 if (delta.tv64 >= tick_period.tv64) {
64
65 delta = ktime_sub(delta, tick_period);
66 last_jiffies_update = ktime_add(last_jiffies_update,
67 tick_period);
68
69 /* Slow path for long timeouts */
70 if (unlikely(delta.tv64 >= tick_period.tv64)) {
71 s64 incr = ktime_to_ns(tick_period);
72
73 ticks = ktime_divns(delta, incr);
74
75 last_jiffies_update = ktime_add_ns(last_jiffies_update,
76 incr * ticks);
77 }
78 do_timer(++ticks);
49d670fb
TG
79
80 /* Keep the tick_next_period variable up to date */
81 tick_next_period = ktime_add(last_jiffies_update, tick_period);
79bf2bb3
TG
82 }
83 write_sequnlock(&xtime_lock);
84}
85
86/*
87 * Initialize and return retrieve the jiffies update.
88 */
89static ktime_t tick_init_jiffy_update(void)
90{
91 ktime_t period;
92
93 write_seqlock(&xtime_lock);
94 /* Did we start the jiffies update yet ? */
95 if (last_jiffies_update.tv64 == 0)
96 last_jiffies_update = tick_next_period;
97 period = last_jiffies_update;
98 write_sequnlock(&xtime_lock);
99 return period;
100}
101
102/*
103 * NOHZ - aka dynamic tick functionality
104 */
105#ifdef CONFIG_NO_HZ
106/*
107 * NO HZ enabled ?
108 */
109static int tick_nohz_enabled __read_mostly = 1;
110
111/*
112 * Enable / Disable tickless mode
113 */
114static int __init setup_tick_nohz(char *str)
115{
116 if (!strcmp(str, "off"))
117 tick_nohz_enabled = 0;
118 else if (!strcmp(str, "on"))
119 tick_nohz_enabled = 1;
120 else
121 return 0;
122 return 1;
123}
124
125__setup("nohz=", setup_tick_nohz);
126
127/**
128 * tick_nohz_update_jiffies - update jiffies when idle was interrupted
129 *
130 * Called from interrupt entry when the CPU was idle
131 *
132 * In case the sched_tick was stopped on this CPU, we have to check if jiffies
133 * must be updated. Otherwise an interrupt handler could use a stale jiffy
134 * value. We do this unconditionally on any cpu, as we don't know whether the
135 * cpu, which has the update task assigned is in a long sleep.
136 */
eed3b9cf 137static void tick_nohz_update_jiffies(ktime_t now)
79bf2bb3
TG
138{
139 int cpu = smp_processor_id();
140 struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu);
141 unsigned long flags;
79bf2bb3 142
6a7b3dc3 143 cpumask_clear_cpu(cpu, nohz_cpu_mask);
5df7fa1c 144 ts->idle_waketime = now;
79bf2bb3
TG
145
146 local_irq_save(flags);
147 tick_do_update_jiffies64(now);
148 local_irq_restore(flags);
02ff3755
IM
149
150 touch_softlockup_watchdog();
79bf2bb3
TG
151}
152
eed3b9cf 153static void tick_nohz_stop_idle(int cpu, ktime_t now)
6378ddb5
VP
154{
155 struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu);
eed3b9cf 156 ktime_t delta;
6378ddb5 157
eed3b9cf
MS
158 delta = ktime_sub(now, ts->idle_entrytime);
159 ts->idle_lastupdate = now;
160 ts->idle_sleeptime = ktime_add(ts->idle_sleeptime, delta);
161 ts->idle_active = 0;
56c7426b 162
eed3b9cf 163 sched_clock_idle_wakeup_event(0);
6378ddb5
VP
164}
165
903b8a8d 166static ktime_t tick_nohz_start_idle(struct tick_sched *ts)
6378ddb5 167{
6378ddb5
VP
168 ktime_t now, delta;
169
170 now = ktime_get();
171 if (ts->idle_active) {
172 delta = ktime_sub(now, ts->idle_entrytime);
173 ts->idle_lastupdate = now;
174 ts->idle_sleeptime = ktime_add(ts->idle_sleeptime, delta);
175 }
176 ts->idle_entrytime = now;
177 ts->idle_active = 1;
56c7426b 178 sched_clock_idle_sleep_event();
6378ddb5
VP
179 return now;
180}
181
182u64 get_cpu_idle_time_us(int cpu, u64 *last_update_time)
183{
184 struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu);
185
8083e4ad 186 if (!tick_nohz_enabled)
187 return -1;
188
189 if (ts->idle_active)
190 *last_update_time = ktime_to_us(ts->idle_lastupdate);
191 else
192 *last_update_time = ktime_to_us(ktime_get());
193
6378ddb5
VP
194 return ktime_to_us(ts->idle_sleeptime);
195}
8083e4ad 196EXPORT_SYMBOL_GPL(get_cpu_idle_time_us);
6378ddb5 197
79bf2bb3
TG
198/**
199 * tick_nohz_stop_sched_tick - stop the idle tick from the idle task
200 *
201 * When the next event is more than a tick into the future, stop the idle tick
202 * Called either from the idle loop or from irq_exit() when an idle period was
203 * just interrupted by an interrupt which did not cause a reschedule.
204 */
b8f8c3cf 205void tick_nohz_stop_sched_tick(int inidle)
79bf2bb3
TG
206{
207 unsigned long seq, last_jiffies, next_jiffies, delta_jiffies, flags;
208 struct tick_sched *ts;
6378ddb5 209 ktime_t last_update, expires, now;
4f86d3a8 210 struct clock_event_device *dev = __get_cpu_var(tick_cpu_device).evtdev;
98962465 211 u64 time_delta;
79bf2bb3
TG
212 int cpu;
213
214 local_irq_save(flags);
215
216 cpu = smp_processor_id();
217 ts = &per_cpu(tick_cpu_sched, cpu);
f2e21c96
EN
218
219 /*
220 * Call to tick_nohz_start_idle stops the last_update_time from being
221 * updated. Thus, it must not be called in the event we are called from
222 * irq_exit() with the prior state different than idle.
223 */
224 if (!inidle && !ts->inidle)
225 goto end;
226
903b8a8d 227 now = tick_nohz_start_idle(ts);
79bf2bb3 228
5e41d0d6
TG
229 /*
230 * If this cpu is offline and it is the one which updates
231 * jiffies, then give up the assignment and let it be taken by
232 * the cpu which runs the tick timer next. If we don't drop
233 * this here the jiffies might be stale and do_timer() never
234 * invoked.
235 */
236 if (unlikely(!cpu_online(cpu))) {
237 if (cpu == tick_do_timer_cpu)
6441402b 238 tick_do_timer_cpu = TICK_DO_TIMER_NONE;
5e41d0d6
TG
239 }
240
79bf2bb3
TG
241 if (unlikely(ts->nohz_mode == NOHZ_MODE_INACTIVE))
242 goto end;
243
b8f8c3cf
TG
244 ts->inidle = 1;
245
79bf2bb3
TG
246 if (need_resched())
247 goto end;
248
fa116ea3 249 if (unlikely(local_softirq_pending() && cpu_online(cpu))) {
35282316
TG
250 static int ratelimit;
251
252 if (ratelimit < 10) {
253 printk(KERN_ERR "NOHZ: local_softirq_pending %02x\n",
529eaccd 254 (unsigned int) local_softirq_pending());
35282316
TG
255 ratelimit++;
256 }
857f3fd7 257 goto end;
35282316 258 }
79bf2bb3 259
79bf2bb3 260 ts->idle_calls++;
79bf2bb3
TG
261 /* Read jiffies and the time when jiffies were updated last */
262 do {
263 seq = read_seqbegin(&xtime_lock);
264 last_update = last_jiffies_update;
265 last_jiffies = jiffies;
98962465
JH
266
267 /*
268 * On SMP we really should only care for the CPU which
269 * has the do_timer duty assigned. All other CPUs can
270 * sleep as long as they want.
271 */
272 if (cpu == tick_do_timer_cpu ||
273 tick_do_timer_cpu == TICK_DO_TIMER_NONE)
274 time_delta = timekeeping_max_deferment();
275 else
276 time_delta = KTIME_MAX;
79bf2bb3
TG
277 } while (read_seqretry(&xtime_lock, seq));
278
3c5d92a0
MS
279 if (rcu_needs_cpu(cpu) || printk_needs_cpu(cpu) ||
280 arch_needs_cpu(cpu)) {
281 next_jiffies = last_jiffies + 1;
6ba9b346 282 delta_jiffies = 1;
3c5d92a0
MS
283 } else {
284 /* Get the next timer wheel timer */
285 next_jiffies = get_next_timer_interrupt(last_jiffies);
286 delta_jiffies = next_jiffies - last_jiffies;
287 }
79bf2bb3
TG
288 /*
289 * Do not stop the tick, if we are only one off
290 * or if the cpu is required for rcu
291 */
6ba9b346 292 if (!ts->tick_stopped && delta_jiffies == 1)
79bf2bb3
TG
293 goto out;
294
295 /* Schedule the tick, if we are at least one jiffie off */
296 if ((long)delta_jiffies >= 1) {
297
00147449 298 /*
98962465
JH
299 * calculate the expiry time for the next timer wheel
300 * timer. delta_jiffies >= NEXT_TIMER_MAX_DELTA signals
301 * that there is no timer pending or at least extremely
302 * far into the future (12 days for HZ=1000). In this
303 * case we set the expiry to the end of time.
304 */
305 if (likely(delta_jiffies < NEXT_TIMER_MAX_DELTA)) {
306 /*
307 * Calculate the time delta for the next timer event.
308 * If the time delta exceeds the maximum time delta
309 * permitted by the current clocksource then adjust
310 * the time delta accordingly to ensure the
311 * clocksource does not wrap.
312 */
313 time_delta = min_t(u64, time_delta,
314 tick_period.tv64 * delta_jiffies);
315 expires = ktime_add_ns(last_update, time_delta);
316 } else {
317 expires.tv64 = KTIME_MAX;
318 }
00147449
WR
319
320 /*
321 * If this cpu is the one which updates jiffies, then
322 * give up the assignment and let it be taken by the
323 * cpu which runs the tick timer next, which might be
324 * this cpu as well. If we don't drop this here the
325 * jiffies might be stale and do_timer() never
326 * invoked.
327 */
328 if (cpu == tick_do_timer_cpu)
329 tick_do_timer_cpu = TICK_DO_TIMER_NONE;
330
6ba9b346 331 if (delta_jiffies > 1)
6a7b3dc3 332 cpumask_set_cpu(cpu, nohz_cpu_mask);
00147449
WR
333
334 /* Skip reprogram of event if its not changed */
335 if (ts->tick_stopped && ktime_equal(expires, dev->next_event))
336 goto out;
337
79bf2bb3
TG
338 /*
339 * nohz_stop_sched_tick can be called several times before
340 * the nohz_restart_sched_tick is called. This happens when
341 * interrupts arrive which do not cause a reschedule. In the
342 * first call we save the current tick time, so we can restart
343 * the scheduler tick in nohz_restart_sched_tick.
344 */
345 if (!ts->tick_stopped) {
46cb4b7c
SS
346 if (select_nohz_load_balancer(1)) {
347 /*
348 * sched tick not stopped!
349 */
6a7b3dc3 350 cpumask_clear_cpu(cpu, nohz_cpu_mask);
46cb4b7c
SS
351 goto out;
352 }
353
cc584b21 354 ts->idle_tick = hrtimer_get_expires(&ts->sched_timer);
79bf2bb3
TG
355 ts->tick_stopped = 1;
356 ts->idle_jiffies = last_jiffies;
2232c2d8 357 rcu_enter_nohz();
79bf2bb3 358 }
d3ed7824 359
eaad084b
TG
360 ts->idle_sleeps++;
361
98962465
JH
362 /* Mark expires */
363 ts->idle_expires = expires;
364
eaad084b 365 /*
98962465
JH
366 * If the expiration time == KTIME_MAX, then
367 * in this case we simply stop the tick timer.
eaad084b 368 */
98962465 369 if (unlikely(expires.tv64 == KTIME_MAX)) {
eaad084b
TG
370 if (ts->nohz_mode == NOHZ_MODE_HIGHRES)
371 hrtimer_cancel(&ts->sched_timer);
372 goto out;
373 }
374
79bf2bb3
TG
375 if (ts->nohz_mode == NOHZ_MODE_HIGHRES) {
376 hrtimer_start(&ts->sched_timer, expires,
5c333864 377 HRTIMER_MODE_ABS_PINNED);
79bf2bb3
TG
378 /* Check, if the timer was already in the past */
379 if (hrtimer_active(&ts->sched_timer))
380 goto out;
4c9dc641 381 } else if (!tick_program_event(expires, 0))
79bf2bb3
TG
382 goto out;
383 /*
384 * We are past the event already. So we crossed a
385 * jiffie boundary. Update jiffies and raise the
386 * softirq.
387 */
388 tick_do_update_jiffies64(ktime_get());
6a7b3dc3 389 cpumask_clear_cpu(cpu, nohz_cpu_mask);
79bf2bb3
TG
390 }
391 raise_softirq_irqoff(TIMER_SOFTIRQ);
392out:
393 ts->next_jiffies = next_jiffies;
394 ts->last_jiffies = last_jiffies;
4f86d3a8 395 ts->sleep_length = ktime_sub(dev->next_event, now);
79bf2bb3
TG
396end:
397 local_irq_restore(flags);
398}
399
4f86d3a8
LB
400/**
401 * tick_nohz_get_sleep_length - return the length of the current sleep
402 *
403 * Called from power state control code with interrupts disabled
404 */
405ktime_t tick_nohz_get_sleep_length(void)
406{
407 struct tick_sched *ts = &__get_cpu_var(tick_cpu_sched);
408
409 return ts->sleep_length;
410}
411
c34bec5a
TG
412static void tick_nohz_restart(struct tick_sched *ts, ktime_t now)
413{
414 hrtimer_cancel(&ts->sched_timer);
268a3dcf 415 hrtimer_set_expires(&ts->sched_timer, ts->idle_tick);
c34bec5a
TG
416
417 while (1) {
418 /* Forward the time to expire in the future */
419 hrtimer_forward(&ts->sched_timer, now, tick_period);
420
421 if (ts->nohz_mode == NOHZ_MODE_HIGHRES) {
268a3dcf 422 hrtimer_start_expires(&ts->sched_timer,
5c333864 423 HRTIMER_MODE_ABS_PINNED);
c34bec5a
TG
424 /* Check, if the timer was already in the past */
425 if (hrtimer_active(&ts->sched_timer))
426 break;
427 } else {
268a3dcf
TG
428 if (!tick_program_event(
429 hrtimer_get_expires(&ts->sched_timer), 0))
c34bec5a
TG
430 break;
431 }
432 /* Update jiffies and reread time */
433 tick_do_update_jiffies64(now);
434 now = ktime_get();
435 }
436}
437
79bf2bb3 438/**
8dce39c2 439 * tick_nohz_restart_sched_tick - restart the idle tick from the idle task
79bf2bb3
TG
440 *
441 * Restart the idle tick when the CPU is woken up from idle
442 */
443void tick_nohz_restart_sched_tick(void)
444{
445 int cpu = smp_processor_id();
446 struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu);
79741dd3 447#ifndef CONFIG_VIRT_CPU_ACCOUNTING
79bf2bb3 448 unsigned long ticks;
79741dd3 449#endif
6378ddb5 450 ktime_t now;
79bf2bb3 451
6378ddb5 452 local_irq_disable();
eed3b9cf
MS
453 if (ts->idle_active || (ts->inidle && ts->tick_stopped))
454 now = ktime_get();
455
456 if (ts->idle_active)
457 tick_nohz_stop_idle(cpu, now);
6378ddb5 458
b8f8c3cf
TG
459 if (!ts->inidle || !ts->tick_stopped) {
460 ts->inidle = 0;
6378ddb5 461 local_irq_enable();
79bf2bb3 462 return;
6378ddb5 463 }
79bf2bb3 464
b8f8c3cf
TG
465 ts->inidle = 0;
466
2232c2d8
SR
467 rcu_exit_nohz();
468
79bf2bb3 469 /* Update jiffies first */
46cb4b7c 470 select_nohz_load_balancer(0);
79bf2bb3 471 tick_do_update_jiffies64(now);
6a7b3dc3 472 cpumask_clear_cpu(cpu, nohz_cpu_mask);
79bf2bb3 473
79741dd3 474#ifndef CONFIG_VIRT_CPU_ACCOUNTING
79bf2bb3
TG
475 /*
476 * We stopped the tick in idle. Update process times would miss the
477 * time we slept as update_process_times does only a 1 tick
478 * accounting. Enforce that this is accounted to idle !
479 */
480 ticks = jiffies - ts->idle_jiffies;
481 /*
482 * We might be one off. Do not randomly account a huge number of ticks!
483 */
79741dd3
MS
484 if (ticks && ticks < LONG_MAX)
485 account_idle_ticks(ticks);
486#endif
79bf2bb3 487
126e01bf 488 touch_softlockup_watchdog();
79bf2bb3
TG
489 /*
490 * Cancel the scheduled timer and restore the tick
491 */
492 ts->tick_stopped = 0;
5df7fa1c 493 ts->idle_exittime = now;
79bf2bb3 494
c34bec5a 495 tick_nohz_restart(ts, now);
79bf2bb3 496
79bf2bb3
TG
497 local_irq_enable();
498}
499
500static int tick_nohz_reprogram(struct tick_sched *ts, ktime_t now)
501{
502 hrtimer_forward(&ts->sched_timer, now, tick_period);
cc584b21 503 return tick_program_event(hrtimer_get_expires(&ts->sched_timer), 0);
79bf2bb3
TG
504}
505
506/*
507 * The nohz low res interrupt handler
508 */
509static void tick_nohz_handler(struct clock_event_device *dev)
510{
511 struct tick_sched *ts = &__get_cpu_var(tick_cpu_sched);
512 struct pt_regs *regs = get_irq_regs();
d3ed7824 513 int cpu = smp_processor_id();
79bf2bb3
TG
514 ktime_t now = ktime_get();
515
516 dev->next_event.tv64 = KTIME_MAX;
517
d3ed7824
TG
518 /*
519 * Check if the do_timer duty was dropped. We don't care about
520 * concurrency: This happens only when the cpu in charge went
521 * into a long sleep. If two cpus happen to assign themself to
522 * this duty, then the jiffies update is still serialized by
523 * xtime_lock.
524 */
6441402b 525 if (unlikely(tick_do_timer_cpu == TICK_DO_TIMER_NONE))
d3ed7824
TG
526 tick_do_timer_cpu = cpu;
527
79bf2bb3 528 /* Check, if the jiffies need an update */
d3ed7824
TG
529 if (tick_do_timer_cpu == cpu)
530 tick_do_update_jiffies64(now);
79bf2bb3
TG
531
532 /*
533 * When we are idle and the tick is stopped, we have to touch
534 * the watchdog as we might not schedule for a really long
535 * time. This happens on complete idle SMP systems while
536 * waiting on the login prompt. We also increment the "start
537 * of idle" jiffy stamp so the idle accounting adjustment we
538 * do when we go busy again does not account too much ticks.
539 */
540 if (ts->tick_stopped) {
541 touch_softlockup_watchdog();
542 ts->idle_jiffies++;
543 }
544
545 update_process_times(user_mode(regs));
546 profile_tick(CPU_PROFILING);
547
79bf2bb3
TG
548 while (tick_nohz_reprogram(ts, now)) {
549 now = ktime_get();
550 tick_do_update_jiffies64(now);
551 }
552}
553
554/**
555 * tick_nohz_switch_to_nohz - switch to nohz mode
556 */
557static void tick_nohz_switch_to_nohz(void)
558{
559 struct tick_sched *ts = &__get_cpu_var(tick_cpu_sched);
560 ktime_t next;
561
562 if (!tick_nohz_enabled)
563 return;
564
565 local_irq_disable();
566 if (tick_switch_to_oneshot(tick_nohz_handler)) {
567 local_irq_enable();
568 return;
569 }
570
571 ts->nohz_mode = NOHZ_MODE_LOWRES;
572
573 /*
574 * Recycle the hrtimer in ts, so we can share the
575 * hrtimer_forward with the highres code.
576 */
577 hrtimer_init(&ts->sched_timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
578 /* Get the next period */
579 next = tick_init_jiffy_update();
580
581 for (;;) {
cc584b21 582 hrtimer_set_expires(&ts->sched_timer, next);
79bf2bb3
TG
583 if (!tick_program_event(next, 0))
584 break;
585 next = ktime_add(next, tick_period);
586 }
587 local_irq_enable();
588
589 printk(KERN_INFO "Switched to NOHz mode on CPU #%d\n",
590 smp_processor_id());
591}
592
fb02fbc1
TG
593/*
594 * When NOHZ is enabled and the tick is stopped, we need to kick the
595 * tick timer from irq_enter() so that the jiffies update is kept
596 * alive during long running softirqs. That's ugly as hell, but
597 * correctness is key even if we need to fix the offending softirq in
598 * the first place.
599 *
600 * Note, this is different to tick_nohz_restart. We just kick the
601 * timer and do not touch the other magic bits which need to be done
602 * when idle is left.
603 */
eed3b9cf 604static void tick_nohz_kick_tick(int cpu, ktime_t now)
fb02fbc1 605{
ae99286b
TG
606#if 0
607 /* Switch back to 2.6.27 behaviour */
608
fb02fbc1 609 struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu);
eed3b9cf 610 ktime_t delta;
fb02fbc1 611
c4bd822e
TG
612 /*
613 * Do not touch the tick device, when the next expiry is either
614 * already reached or less/equal than the tick period.
615 */
268a3dcf 616 delta = ktime_sub(hrtimer_get_expires(&ts->sched_timer), now);
c4bd822e
TG
617 if (delta.tv64 <= tick_period.tv64)
618 return;
619
620 tick_nohz_restart(ts, now);
ae99286b 621#endif
fb02fbc1
TG
622}
623
eed3b9cf
MS
624static inline void tick_check_nohz(int cpu)
625{
626 struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu);
627 ktime_t now;
628
629 if (!ts->idle_active && !ts->tick_stopped)
630 return;
631 now = ktime_get();
632 if (ts->idle_active)
633 tick_nohz_stop_idle(cpu, now);
634 if (ts->tick_stopped) {
635 tick_nohz_update_jiffies(now);
636 tick_nohz_kick_tick(cpu, now);
637 }
638}
639
79bf2bb3
TG
640#else
641
642static inline void tick_nohz_switch_to_nohz(void) { }
eed3b9cf 643static inline void tick_check_nohz(int cpu) { }
79bf2bb3
TG
644
645#endif /* NO_HZ */
646
719254fa
TG
647/*
648 * Called from irq_enter to notify about the possible interruption of idle()
649 */
650void tick_check_idle(int cpu)
651{
fb02fbc1 652 tick_check_oneshot_broadcast(cpu);
eed3b9cf 653 tick_check_nohz(cpu);
719254fa
TG
654}
655
79bf2bb3
TG
656/*
657 * High resolution timer specific code
658 */
659#ifdef CONFIG_HIGH_RES_TIMERS
660/*
4c9dc641 661 * We rearm the timer until we get disabled by the idle code.
79bf2bb3
TG
662 * Called with interrupts disabled and timer->base->cpu_base->lock held.
663 */
664static enum hrtimer_restart tick_sched_timer(struct hrtimer *timer)
665{
666 struct tick_sched *ts =
667 container_of(timer, struct tick_sched, sched_timer);
79bf2bb3
TG
668 struct pt_regs *regs = get_irq_regs();
669 ktime_t now = ktime_get();
d3ed7824
TG
670 int cpu = smp_processor_id();
671
672#ifdef CONFIG_NO_HZ
673 /*
674 * Check if the do_timer duty was dropped. We don't care about
675 * concurrency: This happens only when the cpu in charge went
676 * into a long sleep. If two cpus happen to assign themself to
677 * this duty, then the jiffies update is still serialized by
678 * xtime_lock.
679 */
6441402b 680 if (unlikely(tick_do_timer_cpu == TICK_DO_TIMER_NONE))
d3ed7824
TG
681 tick_do_timer_cpu = cpu;
682#endif
79bf2bb3
TG
683
684 /* Check, if the jiffies need an update */
d3ed7824
TG
685 if (tick_do_timer_cpu == cpu)
686 tick_do_update_jiffies64(now);
79bf2bb3
TG
687
688 /*
689 * Do not call, when we are not in irq context and have
690 * no valid regs pointer
691 */
692 if (regs) {
693 /*
694 * When we are idle and the tick is stopped, we have to touch
695 * the watchdog as we might not schedule for a really long
696 * time. This happens on complete idle SMP systems while
697 * waiting on the login prompt. We also increment the "start of
698 * idle" jiffy stamp so the idle accounting adjustment we do
699 * when we go busy again does not account too much ticks.
700 */
701 if (ts->tick_stopped) {
702 touch_softlockup_watchdog();
703 ts->idle_jiffies++;
704 }
79bf2bb3
TG
705 update_process_times(user_mode(regs));
706 profile_tick(CPU_PROFILING);
79bf2bb3
TG
707 }
708
79bf2bb3
TG
709 hrtimer_forward(timer, now, tick_period);
710
711 return HRTIMER_RESTART;
712}
713
714/**
715 * tick_setup_sched_timer - setup the tick emulation timer
716 */
717void tick_setup_sched_timer(void)
718{
719 struct tick_sched *ts = &__get_cpu_var(tick_cpu_sched);
720 ktime_t now = ktime_get();
3704540b 721 u64 offset;
79bf2bb3
TG
722
723 /*
724 * Emulate tick processing via per-CPU hrtimers:
725 */
726 hrtimer_init(&ts->sched_timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
727 ts->sched_timer.function = tick_sched_timer;
79bf2bb3 728
3704540b 729 /* Get the next period (per cpu) */
cc584b21 730 hrtimer_set_expires(&ts->sched_timer, tick_init_jiffy_update());
3704540b 731 offset = ktime_to_ns(tick_period) >> 1;
b2d9323d 732 do_div(offset, num_possible_cpus());
3704540b 733 offset *= smp_processor_id();
cc584b21 734 hrtimer_add_expires_ns(&ts->sched_timer, offset);
79bf2bb3
TG
735
736 for (;;) {
737 hrtimer_forward(&ts->sched_timer, now, tick_period);
5c333864
AB
738 hrtimer_start_expires(&ts->sched_timer,
739 HRTIMER_MODE_ABS_PINNED);
79bf2bb3
TG
740 /* Check, if the timer was already in the past */
741 if (hrtimer_active(&ts->sched_timer))
742 break;
743 now = ktime_get();
744 }
745
746#ifdef CONFIG_NO_HZ
747 if (tick_nohz_enabled)
748 ts->nohz_mode = NOHZ_MODE_HIGHRES;
749#endif
750}
3c4fbe5e 751#endif /* HIGH_RES_TIMERS */
79bf2bb3 752
3c4fbe5e 753#if defined CONFIG_NO_HZ || defined CONFIG_HIGH_RES_TIMERS
79bf2bb3
TG
754void tick_cancel_sched_timer(int cpu)
755{
756 struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu);
757
3c4fbe5e 758# ifdef CONFIG_HIGH_RES_TIMERS
79bf2bb3
TG
759 if (ts->sched_timer.base)
760 hrtimer_cancel(&ts->sched_timer);
3c4fbe5e 761# endif
a7901766 762
79bf2bb3
TG
763 ts->nohz_mode = NOHZ_MODE_INACTIVE;
764}
3c4fbe5e 765#endif
79bf2bb3
TG
766
767/**
768 * Async notification about clocksource changes
769 */
770void tick_clock_notify(void)
771{
772 int cpu;
773
774 for_each_possible_cpu(cpu)
775 set_bit(0, &per_cpu(tick_cpu_sched, cpu).check_clocks);
776}
777
778/*
779 * Async notification about clock event changes
780 */
781void tick_oneshot_notify(void)
782{
783 struct tick_sched *ts = &__get_cpu_var(tick_cpu_sched);
784
785 set_bit(0, &ts->check_clocks);
786}
787
788/**
789 * Check, if a change happened, which makes oneshot possible.
790 *
791 * Called cyclic from the hrtimer softirq (driven by the timer
792 * softirq) allow_nohz signals, that we can switch into low-res nohz
793 * mode, because high resolution timers are disabled (either compile
794 * or runtime).
795 */
796int tick_check_oneshot_change(int allow_nohz)
797{
798 struct tick_sched *ts = &__get_cpu_var(tick_cpu_sched);
799
800 if (!test_and_clear_bit(0, &ts->check_clocks))
801 return 0;
802
803 if (ts->nohz_mode != NOHZ_MODE_INACTIVE)
804 return 0;
805
cf4fc6cb 806 if (!timekeeping_valid_for_hres() || !tick_is_oneshot_available())
79bf2bb3
TG
807 return 0;
808
809 if (!allow_nohz)
810 return 1;
811
812 tick_nohz_switch_to_nohz();
813 return 0;
814}
This page took 0.336814 seconds and 5 git commands to generate.