blob: b33be61c0f6bec1ece99784ba42f508f1bcaedc5 [file] [log] [blame]
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -08001/*
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 *
Pavel Machekb10db7f2008-01-30 13:30:00 +010012 * Distribute under GPLv2.
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -080013 */
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>
23
David S. Miller9e203bc2007-02-24 22:10:13 -080024#include <asm/irq_regs.h>
25
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -080026#include "tick-internal.h"
27
28/*
29 * Per cpu nohz control structure
30 */
31static DEFINE_PER_CPU(struct tick_sched, tick_cpu_sched);
32
33/*
34 * The time, when the last jiffy update happened. Protected by xtime_lock.
35 */
36static ktime_t last_jiffies_update;
37
Ingo Molnar289f4802007-02-16 01:28:15 -080038struct tick_sched *tick_get_tick_sched(int cpu)
39{
40 return &per_cpu(tick_cpu_sched, cpu);
41}
42
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -080043/*
44 * Must be called with interrupts disabled !
45 */
46static void tick_do_update_jiffies64(ktime_t now)
47{
48 unsigned long ticks = 0;
49 ktime_t delta;
50
Ingo Molnar7a14ce12008-05-12 15:43:53 +020051 /*
52 * Do a quick check without holding xtime_lock:
53 */
54 delta = ktime_sub(now, last_jiffies_update);
55 if (delta.tv64 < tick_period.tv64)
56 return;
57
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -080058 /* Reevalute with xtime_lock held */
59 write_seqlock(&xtime_lock);
60
61 delta = ktime_sub(now, last_jiffies_update);
62 if (delta.tv64 >= tick_period.tv64) {
63
64 delta = ktime_sub(delta, tick_period);
65 last_jiffies_update = ktime_add(last_jiffies_update,
66 tick_period);
67
68 /* Slow path for long timeouts */
69 if (unlikely(delta.tv64 >= tick_period.tv64)) {
70 s64 incr = ktime_to_ns(tick_period);
71
72 ticks = ktime_divns(delta, incr);
73
74 last_jiffies_update = ktime_add_ns(last_jiffies_update,
75 incr * ticks);
76 }
77 do_timer(++ticks);
78 }
79 write_sequnlock(&xtime_lock);
80}
81
82/*
83 * Initialize and return retrieve the jiffies update.
84 */
85static ktime_t tick_init_jiffy_update(void)
86{
87 ktime_t period;
88
89 write_seqlock(&xtime_lock);
90 /* Did we start the jiffies update yet ? */
91 if (last_jiffies_update.tv64 == 0)
92 last_jiffies_update = tick_next_period;
93 period = last_jiffies_update;
94 write_sequnlock(&xtime_lock);
95 return period;
96}
97
98/*
99 * NOHZ - aka dynamic tick functionality
100 */
101#ifdef CONFIG_NO_HZ
102/*
103 * NO HZ enabled ?
104 */
105static int tick_nohz_enabled __read_mostly = 1;
106
107/*
108 * Enable / Disable tickless mode
109 */
110static int __init setup_tick_nohz(char *str)
111{
112 if (!strcmp(str, "off"))
113 tick_nohz_enabled = 0;
114 else if (!strcmp(str, "on"))
115 tick_nohz_enabled = 1;
116 else
117 return 0;
118 return 1;
119}
120
121__setup("nohz=", setup_tick_nohz);
122
123/**
124 * tick_nohz_update_jiffies - update jiffies when idle was interrupted
125 *
126 * Called from interrupt entry when the CPU was idle
127 *
128 * In case the sched_tick was stopped on this CPU, we have to check if jiffies
129 * must be updated. Otherwise an interrupt handler could use a stale jiffy
130 * value. We do this unconditionally on any cpu, as we don't know whether the
131 * cpu, which has the update task assigned is in a long sleep.
132 */
133void tick_nohz_update_jiffies(void)
134{
135 int cpu = smp_processor_id();
136 struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu);
137 unsigned long flags;
138 ktime_t now;
139
140 if (!ts->tick_stopped)
141 return;
142
143 cpu_clear(cpu, nohz_cpu_mask);
144 now = ktime_get();
Thomas Gleixner5df7fa12008-02-01 17:45:14 +0100145 ts->idle_waketime = now;
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800146
147 local_irq_save(flags);
148 tick_do_update_jiffies64(now);
149 local_irq_restore(flags);
Ingo Molnar02ff3752008-05-12 15:43:53 +0200150
151 touch_softlockup_watchdog();
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800152}
153
Venki Pallipadi6378ddb2008-01-30 13:30:04 +0100154void tick_nohz_stop_idle(int cpu)
155{
156 struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu);
157
158 if (ts->idle_active) {
159 ktime_t now, delta;
160 now = ktime_get();
161 delta = ktime_sub(now, ts->idle_entrytime);
162 ts->idle_lastupdate = now;
163 ts->idle_sleeptime = ktime_add(ts->idle_sleeptime, delta);
164 ts->idle_active = 0;
Peter Zijlstra56c74262008-09-01 16:44:23 +0200165
166 sched_clock_idle_wakeup_event(0);
Venki Pallipadi6378ddb2008-01-30 13:30:04 +0100167 }
168}
169
Karsten Wiese903b8a82008-02-28 15:10:50 +0100170static ktime_t tick_nohz_start_idle(struct tick_sched *ts)
Venki Pallipadi6378ddb2008-01-30 13:30:04 +0100171{
Venki Pallipadi6378ddb2008-01-30 13:30:04 +0100172 ktime_t now, delta;
173
174 now = ktime_get();
175 if (ts->idle_active) {
176 delta = ktime_sub(now, ts->idle_entrytime);
177 ts->idle_lastupdate = now;
178 ts->idle_sleeptime = ktime_add(ts->idle_sleeptime, delta);
179 }
180 ts->idle_entrytime = now;
181 ts->idle_active = 1;
Peter Zijlstra56c74262008-09-01 16:44:23 +0200182 sched_clock_idle_sleep_event();
Venki Pallipadi6378ddb2008-01-30 13:30:04 +0100183 return now;
184}
185
186u64 get_cpu_idle_time_us(int cpu, u64 *last_update_time)
187{
188 struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu);
189
190 *last_update_time = ktime_to_us(ts->idle_lastupdate);
191 return ktime_to_us(ts->idle_sleeptime);
192}
193
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800194/**
195 * tick_nohz_stop_sched_tick - stop the idle tick from the idle task
196 *
197 * When the next event is more than a tick into the future, stop the idle tick
198 * Called either from the idle loop or from irq_exit() when an idle period was
199 * just interrupted by an interrupt which did not cause a reschedule.
200 */
Thomas Gleixnerb8f8c3c2008-07-18 17:27:28 +0200201void tick_nohz_stop_sched_tick(int inidle)
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800202{
203 unsigned long seq, last_jiffies, next_jiffies, delta_jiffies, flags;
204 struct tick_sched *ts;
Venki Pallipadi6378ddb2008-01-30 13:30:04 +0100205 ktime_t last_update, expires, now;
Len Brown4f86d3a2007-10-03 18:58:00 -0400206 struct clock_event_device *dev = __get_cpu_var(tick_cpu_device).evtdev;
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800207 int cpu;
208
209 local_irq_save(flags);
210
211 cpu = smp_processor_id();
212 ts = &per_cpu(tick_cpu_sched, cpu);
Karsten Wiese903b8a82008-02-28 15:10:50 +0100213 now = tick_nohz_start_idle(ts);
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800214
Thomas Gleixner5e41d0d2007-09-16 15:36:43 +0200215 /*
216 * If this cpu is offline and it is the one which updates
217 * jiffies, then give up the assignment and let it be taken by
218 * the cpu which runs the tick timer next. If we don't drop
219 * this here the jiffies might be stale and do_timer() never
220 * invoked.
221 */
222 if (unlikely(!cpu_online(cpu))) {
223 if (cpu == tick_do_timer_cpu)
224 tick_do_timer_cpu = -1;
225 }
226
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800227 if (unlikely(ts->nohz_mode == NOHZ_MODE_INACTIVE))
228 goto end;
229
Thomas Gleixnerb8f8c3c2008-07-18 17:27:28 +0200230 if (!inidle && !ts->inidle)
231 goto end;
232
233 ts->inidle = 1;
234
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800235 if (need_resched())
236 goto end;
237
Thomas Gleixner35282312007-05-23 13:57:37 -0700238 if (unlikely(local_softirq_pending())) {
239 static int ratelimit;
240
241 if (ratelimit < 10) {
242 printk(KERN_ERR "NOHZ: local_softirq_pending %02x\n",
243 local_softirq_pending());
244 ratelimit++;
245 }
Heiko Carstens857f3fd2008-07-11 11:09:22 +0200246 goto end;
Thomas Gleixner35282312007-05-23 13:57:37 -0700247 }
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800248
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800249 ts->idle_calls++;
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800250 /* Read jiffies and the time when jiffies were updated last */
251 do {
252 seq = read_seqbegin(&xtime_lock);
253 last_update = last_jiffies_update;
254 last_jiffies = jiffies;
255 } while (read_seqretry(&xtime_lock, seq));
256
257 /* Get the next timer wheel timer */
258 next_jiffies = get_next_timer_interrupt(last_jiffies);
259 delta_jiffies = next_jiffies - last_jiffies;
260
Ingo Molnar6ba9b342007-02-19 18:11:56 +0000261 if (rcu_needs_cpu(cpu))
262 delta_jiffies = 1;
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800263 /*
264 * Do not stop the tick, if we are only one off
265 * or if the cpu is required for rcu
266 */
Ingo Molnar6ba9b342007-02-19 18:11:56 +0000267 if (!ts->tick_stopped && delta_jiffies == 1)
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800268 goto out;
269
270 /* Schedule the tick, if we are at least one jiffie off */
271 if ((long)delta_jiffies >= 1) {
272
Ingo Molnar6ba9b342007-02-19 18:11:56 +0000273 if (delta_jiffies > 1)
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800274 cpu_set(cpu, nohz_cpu_mask);
275 /*
276 * nohz_stop_sched_tick can be called several times before
277 * the nohz_restart_sched_tick is called. This happens when
278 * interrupts arrive which do not cause a reschedule. In the
279 * first call we save the current tick time, so we can restart
280 * the scheduler tick in nohz_restart_sched_tick.
281 */
282 if (!ts->tick_stopped) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700283 if (select_nohz_load_balancer(1)) {
284 /*
285 * sched tick not stopped!
286 */
287 cpu_clear(cpu, nohz_cpu_mask);
288 goto out;
289 }
290
Arjan van de Vencc584b22008-09-01 15:02:30 -0700291 ts->idle_tick = hrtimer_get_expires(&ts->sched_timer);
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800292 ts->tick_stopped = 1;
293 ts->idle_jiffies = last_jiffies;
Steven Rostedt2232c2d2008-02-29 18:46:50 +0100294 rcu_enter_nohz();
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800295 }
Thomas Gleixnerd3ed7822007-05-08 00:30:03 -0700296
297 /*
298 * If this cpu is the one which updates jiffies, then
299 * give up the assignment and let it be taken by the
300 * cpu which runs the tick timer next, which might be
301 * this cpu as well. If we don't drop this here the
302 * jiffies might be stale and do_timer() never
303 * invoked.
304 */
305 if (cpu == tick_do_timer_cpu)
306 tick_do_timer_cpu = -1;
307
Thomas Gleixnereaad0842007-05-29 23:47:39 +0200308 ts->idle_sleeps++;
309
310 /*
311 * delta_jiffies >= NEXT_TIMER_MAX_DELTA signals that
312 * there is no timer pending or at least extremly far
313 * into the future (12 days for HZ=1000). In this case
314 * we simply stop the tick timer:
315 */
316 if (unlikely(delta_jiffies >= NEXT_TIMER_MAX_DELTA)) {
317 ts->idle_expires.tv64 = KTIME_MAX;
318 if (ts->nohz_mode == NOHZ_MODE_HIGHRES)
319 hrtimer_cancel(&ts->sched_timer);
320 goto out;
321 }
322
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800323 /*
324 * calculate the expiry time for the next timer wheel
325 * timer
326 */
327 expires = ktime_add_ns(last_update, tick_period.tv64 *
328 delta_jiffies);
329 ts->idle_expires = expires;
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800330
331 if (ts->nohz_mode == NOHZ_MODE_HIGHRES) {
332 hrtimer_start(&ts->sched_timer, expires,
333 HRTIMER_MODE_ABS);
334 /* Check, if the timer was already in the past */
335 if (hrtimer_active(&ts->sched_timer))
336 goto out;
Pavel Machek4c9dc642008-01-30 13:30:00 +0100337 } else if (!tick_program_event(expires, 0))
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800338 goto out;
339 /*
340 * We are past the event already. So we crossed a
341 * jiffie boundary. Update jiffies and raise the
342 * softirq.
343 */
344 tick_do_update_jiffies64(ktime_get());
345 cpu_clear(cpu, nohz_cpu_mask);
346 }
347 raise_softirq_irqoff(TIMER_SOFTIRQ);
348out:
349 ts->next_jiffies = next_jiffies;
350 ts->last_jiffies = last_jiffies;
Len Brown4f86d3a2007-10-03 18:58:00 -0400351 ts->sleep_length = ktime_sub(dev->next_event, now);
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800352end:
353 local_irq_restore(flags);
354}
355
356/**
Len Brown4f86d3a2007-10-03 18:58:00 -0400357 * tick_nohz_get_sleep_length - return the length of the current sleep
358 *
359 * Called from power state control code with interrupts disabled
360 */
361ktime_t tick_nohz_get_sleep_length(void)
362{
363 struct tick_sched *ts = &__get_cpu_var(tick_cpu_sched);
364
365 return ts->sleep_length;
366}
367
Len Brown4f86d3a2007-10-03 18:58:00 -0400368/**
Li Zefan8dce39c2007-11-05 14:51:10 -0800369 * tick_nohz_restart_sched_tick - restart the idle tick from the idle task
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800370 *
371 * Restart the idle tick when the CPU is woken up from idle
372 */
373void tick_nohz_restart_sched_tick(void)
374{
375 int cpu = smp_processor_id();
376 struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu);
377 unsigned long ticks;
Venki Pallipadi6378ddb2008-01-30 13:30:04 +0100378 ktime_t now;
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800379
380 local_irq_disable();
Venki Pallipadi6378ddb2008-01-30 13:30:04 +0100381 tick_nohz_stop_idle(cpu);
382
Thomas Gleixnerb8f8c3c2008-07-18 17:27:28 +0200383 if (!ts->inidle || !ts->tick_stopped) {
384 ts->inidle = 0;
Venki Pallipadi6378ddb2008-01-30 13:30:04 +0100385 local_irq_enable();
386 return;
387 }
388
Thomas Gleixnerb8f8c3c2008-07-18 17:27:28 +0200389 ts->inidle = 0;
390
Steven Rostedt2232c2d2008-02-29 18:46:50 +0100391 rcu_exit_nohz();
392
Venki Pallipadi6378ddb2008-01-30 13:30:04 +0100393 /* Update jiffies first */
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700394 select_nohz_load_balancer(0);
Venki Pallipadi6378ddb2008-01-30 13:30:04 +0100395 now = ktime_get();
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800396 tick_do_update_jiffies64(now);
397 cpu_clear(cpu, nohz_cpu_mask);
398
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800399 /*
400 * We stopped the tick in idle. Update process times would miss the
401 * time we slept as update_process_times does only a 1 tick
402 * accounting. Enforce that this is accounted to idle !
403 */
404 ticks = jiffies - ts->idle_jiffies;
405 /*
406 * We might be one off. Do not randomly account a huge number of ticks!
407 */
408 if (ticks && ticks < LONG_MAX) {
409 add_preempt_count(HARDIRQ_OFFSET);
410 account_system_time(current, HARDIRQ_OFFSET,
411 jiffies_to_cputime(ticks));
412 sub_preempt_count(HARDIRQ_OFFSET);
413 }
414
Ingo Molnar126e01b2008-04-25 00:25:08 +0200415 touch_softlockup_watchdog();
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800416 /*
417 * Cancel the scheduled timer and restore the tick
418 */
419 ts->tick_stopped = 0;
Thomas Gleixner5df7fa12008-02-01 17:45:14 +0100420 ts->idle_exittime = now;
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800421 hrtimer_cancel(&ts->sched_timer);
Arjan van de Vencc584b22008-09-01 15:02:30 -0700422 hrtimer_set_expires(&ts->sched_timer, ts->idle_tick);
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800423
424 while (1) {
425 /* Forward the time to expire in the future */
426 hrtimer_forward(&ts->sched_timer, now, tick_period);
427
428 if (ts->nohz_mode == NOHZ_MODE_HIGHRES) {
Arjan van de Vencc584b22008-09-01 15:02:30 -0700429 hrtimer_start_expires(&ts->sched_timer,
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800430 HRTIMER_MODE_ABS);
431 /* Check, if the timer was already in the past */
432 if (hrtimer_active(&ts->sched_timer))
433 break;
434 } else {
Arjan van de Vencc584b22008-09-01 15:02:30 -0700435 if (!tick_program_event(
436 hrtimer_get_expires(&ts->sched_timer), 0))
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800437 break;
438 }
439 /* Update jiffies and reread time */
440 tick_do_update_jiffies64(now);
441 now = ktime_get();
442 }
443 local_irq_enable();
444}
445
446static int tick_nohz_reprogram(struct tick_sched *ts, ktime_t now)
447{
448 hrtimer_forward(&ts->sched_timer, now, tick_period);
Arjan van de Vencc584b22008-09-01 15:02:30 -0700449 return tick_program_event(hrtimer_get_expires(&ts->sched_timer), 0);
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800450}
451
452/*
453 * The nohz low res interrupt handler
454 */
455static void tick_nohz_handler(struct clock_event_device *dev)
456{
457 struct tick_sched *ts = &__get_cpu_var(tick_cpu_sched);
458 struct pt_regs *regs = get_irq_regs();
Thomas Gleixnerd3ed7822007-05-08 00:30:03 -0700459 int cpu = smp_processor_id();
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800460 ktime_t now = ktime_get();
461
462 dev->next_event.tv64 = KTIME_MAX;
463
Thomas Gleixnerd3ed7822007-05-08 00:30:03 -0700464 /*
465 * Check if the do_timer duty was dropped. We don't care about
466 * concurrency: This happens only when the cpu in charge went
467 * into a long sleep. If two cpus happen to assign themself to
468 * this duty, then the jiffies update is still serialized by
469 * xtime_lock.
470 */
471 if (unlikely(tick_do_timer_cpu == -1))
472 tick_do_timer_cpu = cpu;
473
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800474 /* Check, if the jiffies need an update */
Thomas Gleixnerd3ed7822007-05-08 00:30:03 -0700475 if (tick_do_timer_cpu == cpu)
476 tick_do_update_jiffies64(now);
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800477
478 /*
479 * When we are idle and the tick is stopped, we have to touch
480 * the watchdog as we might not schedule for a really long
481 * time. This happens on complete idle SMP systems while
482 * waiting on the login prompt. We also increment the "start
483 * of idle" jiffy stamp so the idle accounting adjustment we
484 * do when we go busy again does not account too much ticks.
485 */
486 if (ts->tick_stopped) {
487 touch_softlockup_watchdog();
488 ts->idle_jiffies++;
489 }
490
491 update_process_times(user_mode(regs));
492 profile_tick(CPU_PROFILING);
493
494 /* Do not restart, when we are in the idle loop */
495 if (ts->tick_stopped)
496 return;
497
498 while (tick_nohz_reprogram(ts, now)) {
499 now = ktime_get();
500 tick_do_update_jiffies64(now);
501 }
502}
503
504/**
505 * tick_nohz_switch_to_nohz - switch to nohz mode
506 */
507static void tick_nohz_switch_to_nohz(void)
508{
509 struct tick_sched *ts = &__get_cpu_var(tick_cpu_sched);
510 ktime_t next;
511
512 if (!tick_nohz_enabled)
513 return;
514
515 local_irq_disable();
516 if (tick_switch_to_oneshot(tick_nohz_handler)) {
517 local_irq_enable();
518 return;
519 }
520
521 ts->nohz_mode = NOHZ_MODE_LOWRES;
522
523 /*
524 * Recycle the hrtimer in ts, so we can share the
525 * hrtimer_forward with the highres code.
526 */
527 hrtimer_init(&ts->sched_timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
528 /* Get the next period */
529 next = tick_init_jiffy_update();
530
531 for (;;) {
Arjan van de Vencc584b22008-09-01 15:02:30 -0700532 hrtimer_set_expires(&ts->sched_timer, next);
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800533 if (!tick_program_event(next, 0))
534 break;
535 next = ktime_add(next, tick_period);
536 }
537 local_irq_enable();
538
539 printk(KERN_INFO "Switched to NOHz mode on CPU #%d\n",
540 smp_processor_id());
541}
542
543#else
544
545static inline void tick_nohz_switch_to_nohz(void) { }
546
547#endif /* NO_HZ */
548
549/*
550 * High resolution timer specific code
551 */
552#ifdef CONFIG_HIGH_RES_TIMERS
553/*
Pavel Machek4c9dc642008-01-30 13:30:00 +0100554 * We rearm the timer until we get disabled by the idle code.
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800555 * Called with interrupts disabled and timer->base->cpu_base->lock held.
556 */
557static enum hrtimer_restart tick_sched_timer(struct hrtimer *timer)
558{
559 struct tick_sched *ts =
560 container_of(timer, struct tick_sched, sched_timer);
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800561 struct pt_regs *regs = get_irq_regs();
562 ktime_t now = ktime_get();
Thomas Gleixnerd3ed7822007-05-08 00:30:03 -0700563 int cpu = smp_processor_id();
564
565#ifdef CONFIG_NO_HZ
566 /*
567 * Check if the do_timer duty was dropped. We don't care about
568 * concurrency: This happens only when the cpu in charge went
569 * into a long sleep. If two cpus happen to assign themself to
570 * this duty, then the jiffies update is still serialized by
571 * xtime_lock.
572 */
573 if (unlikely(tick_do_timer_cpu == -1))
574 tick_do_timer_cpu = cpu;
575#endif
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800576
577 /* Check, if the jiffies need an update */
Thomas Gleixnerd3ed7822007-05-08 00:30:03 -0700578 if (tick_do_timer_cpu == cpu)
579 tick_do_update_jiffies64(now);
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800580
581 /*
582 * Do not call, when we are not in irq context and have
583 * no valid regs pointer
584 */
585 if (regs) {
586 /*
587 * When we are idle and the tick is stopped, we have to touch
588 * the watchdog as we might not schedule for a really long
589 * time. This happens on complete idle SMP systems while
590 * waiting on the login prompt. We also increment the "start of
591 * idle" jiffy stamp so the idle accounting adjustment we do
592 * when we go busy again does not account too much ticks.
593 */
594 if (ts->tick_stopped) {
595 touch_softlockup_watchdog();
596 ts->idle_jiffies++;
597 }
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800598 update_process_times(user_mode(regs));
599 profile_tick(CPU_PROFILING);
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800600 }
601
602 /* Do not restart, when we are in the idle loop */
603 if (ts->tick_stopped)
604 return HRTIMER_NORESTART;
605
606 hrtimer_forward(timer, now, tick_period);
607
608 return HRTIMER_RESTART;
609}
610
611/**
612 * tick_setup_sched_timer - setup the tick emulation timer
613 */
614void tick_setup_sched_timer(void)
615{
616 struct tick_sched *ts = &__get_cpu_var(tick_cpu_sched);
617 ktime_t now = ktime_get();
john stultz37045402007-07-21 04:37:35 -0700618 u64 offset;
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800619
620 /*
621 * Emulate tick processing via per-CPU hrtimers:
622 */
623 hrtimer_init(&ts->sched_timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
624 ts->sched_timer.function = tick_sched_timer;
625 ts->sched_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
626
john stultz37045402007-07-21 04:37:35 -0700627 /* Get the next period (per cpu) */
Arjan van de Vencc584b22008-09-01 15:02:30 -0700628 hrtimer_set_expires(&ts->sched_timer, tick_init_jiffy_update());
john stultz37045402007-07-21 04:37:35 -0700629 offset = ktime_to_ns(tick_period) >> 1;
john stultzb2d93232007-10-16 23:27:18 -0700630 do_div(offset, num_possible_cpus());
john stultz37045402007-07-21 04:37:35 -0700631 offset *= smp_processor_id();
Arjan van de Vencc584b22008-09-01 15:02:30 -0700632 hrtimer_add_expires_ns(&ts->sched_timer, offset);
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800633
634 for (;;) {
635 hrtimer_forward(&ts->sched_timer, now, tick_period);
Arjan van de Vencc584b22008-09-01 15:02:30 -0700636 hrtimer_start_expires(&ts->sched_timer, HRTIMER_MODE_ABS);
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800637 /* Check, if the timer was already in the past */
638 if (hrtimer_active(&ts->sched_timer))
639 break;
640 now = ktime_get();
641 }
642
643#ifdef CONFIG_NO_HZ
644 if (tick_nohz_enabled)
645 ts->nohz_mode = NOHZ_MODE_HIGHRES;
646#endif
647}
Miao Xie3c4fbe52008-08-20 16:37:38 -0700648#endif /* HIGH_RES_TIMERS */
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800649
Miao Xie3c4fbe52008-08-20 16:37:38 -0700650#if defined CONFIG_NO_HZ || defined CONFIG_HIGH_RES_TIMERS
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800651void tick_cancel_sched_timer(int cpu)
652{
653 struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu);
654
Miao Xie3c4fbe52008-08-20 16:37:38 -0700655# ifdef CONFIG_HIGH_RES_TIMERS
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800656 if (ts->sched_timer.base)
657 hrtimer_cancel(&ts->sched_timer);
Miao Xie3c4fbe52008-08-20 16:37:38 -0700658# endif
Karsten Wiesea7901762008-03-04 14:59:55 -0800659
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800660 ts->nohz_mode = NOHZ_MODE_INACTIVE;
661}
Miao Xie3c4fbe52008-08-20 16:37:38 -0700662#endif
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800663
664/**
665 * Async notification about clocksource changes
666 */
667void tick_clock_notify(void)
668{
669 int cpu;
670
671 for_each_possible_cpu(cpu)
672 set_bit(0, &per_cpu(tick_cpu_sched, cpu).check_clocks);
673}
674
675/*
676 * Async notification about clock event changes
677 */
678void tick_oneshot_notify(void)
679{
680 struct tick_sched *ts = &__get_cpu_var(tick_cpu_sched);
681
682 set_bit(0, &ts->check_clocks);
683}
684
685/**
686 * Check, if a change happened, which makes oneshot possible.
687 *
688 * Called cyclic from the hrtimer softirq (driven by the timer
689 * softirq) allow_nohz signals, that we can switch into low-res nohz
690 * mode, because high resolution timers are disabled (either compile
691 * or runtime).
692 */
693int tick_check_oneshot_change(int allow_nohz)
694{
695 struct tick_sched *ts = &__get_cpu_var(tick_cpu_sched);
696
697 if (!test_and_clear_bit(0, &ts->check_clocks))
698 return 0;
699
700 if (ts->nohz_mode != NOHZ_MODE_INACTIVE)
701 return 0;
702
Li Zefancf4fc6c2008-02-08 04:19:24 -0800703 if (!timekeeping_valid_for_hres() || !tick_is_oneshot_available())
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800704 return 0;
705
706 if (!allow_nohz)
707 return 1;
708
709 tick_nohz_switch_to_nohz();
710 return 0;
711}