blob: 074b4bd5cfd8b62a9b92555514455a4a06f0416e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/timer.c
3 *
4 * Kernel internal timers, kernel timekeeping, basic process system calls
5 *
6 * Copyright (C) 1991, 1992 Linus Torvalds
7 *
8 * 1997-01-28 Modified by Finn Arne Gangstad to make timers scale better.
9 *
10 * 1997-09-10 Updated NTP code according to technical memorandum Jan '96
11 * "A Kernel Model for Precision Timekeeping" by Dave Mills
12 * 1998-12-24 Fixed a xtime SMP race (we need the xtime_lock rw spinlock to
13 * serialize accesses to xtime/lost_ticks).
14 * Copyright (C) 1998 Andrea Arcangeli
15 * 1999-03-10 Improved NTP compatibility by Ulrich Windl
16 * 2002-05-31 Move sys_sysinfo here and make its locking sane, Robert Love
17 * 2000-10-05 Implemented scalable SMP per-CPU timer handling.
18 * Copyright (C) 2000, 2001, 2002 Ingo Molnar
19 * Designed by David S. Miller, Alexey Kuznetsov and Ingo Molnar
20 */
21
22#include <linux/kernel_stat.h>
23#include <linux/module.h>
24#include <linux/interrupt.h>
25#include <linux/percpu.h>
26#include <linux/init.h>
27#include <linux/mm.h>
28#include <linux/swap.h>
29#include <linux/notifier.h>
30#include <linux/thread_info.h>
31#include <linux/time.h>
32#include <linux/jiffies.h>
33#include <linux/posix-timers.h>
34#include <linux/cpu.h>
35#include <linux/syscalls.h>
Adrian Bunk97a41e22006-01-08 01:02:17 -080036#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include <asm/uaccess.h>
39#include <asm/unistd.h>
40#include <asm/div64.h>
41#include <asm/timex.h>
42#include <asm/io.h>
43
44#ifdef CONFIG_TIME_INTERPOLATION
45static void time_interpolator_update(long delta_nsec);
46#else
47#define time_interpolator_update(x)
48#endif
49
Thomas Gleixnerecea8d12005-10-30 15:03:00 -080050u64 jiffies_64 __cacheline_aligned_in_smp = INITIAL_JIFFIES;
51
52EXPORT_SYMBOL(jiffies_64);
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054/*
55 * per-CPU timer vector definitions:
56 */
57
58#define TVN_BITS (CONFIG_BASE_SMALL ? 4 : 6)
59#define TVR_BITS (CONFIG_BASE_SMALL ? 6 : 8)
60#define TVN_SIZE (1 << TVN_BITS)
61#define TVR_SIZE (1 << TVR_BITS)
62#define TVN_MASK (TVN_SIZE - 1)
63#define TVR_MASK (TVR_SIZE - 1)
64
Oleg Nesterov55c888d2005-06-23 00:08:56 -070065struct timer_base_s {
66 spinlock_t lock;
67 struct timer_list *running_timer;
68};
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070typedef struct tvec_s {
71 struct list_head vec[TVN_SIZE];
72} tvec_t;
73
74typedef struct tvec_root_s {
75 struct list_head vec[TVR_SIZE];
76} tvec_root_t;
77
78struct tvec_t_base_s {
Oleg Nesterov55c888d2005-06-23 00:08:56 -070079 struct timer_base_s t_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 unsigned long timer_jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 tvec_root_t tv1;
82 tvec_t tv2;
83 tvec_t tv3;
84 tvec_t tv4;
85 tvec_t tv5;
86} ____cacheline_aligned_in_smp;
87
88typedef struct tvec_t_base_s tvec_base_t;
Oleg Nesterov55c888d2005-06-23 00:08:56 -070089static DEFINE_PER_CPU(tvec_base_t, tvec_bases);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91static inline void set_running_timer(tvec_base_t *base,
92 struct timer_list *timer)
93{
94#ifdef CONFIG_SMP
Oleg Nesterov55c888d2005-06-23 00:08:56 -070095 base->t_base.running_timer = timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#endif
97}
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static void internal_add_timer(tvec_base_t *base, struct timer_list *timer)
100{
101 unsigned long expires = timer->expires;
102 unsigned long idx = expires - base->timer_jiffies;
103 struct list_head *vec;
104
105 if (idx < TVR_SIZE) {
106 int i = expires & TVR_MASK;
107 vec = base->tv1.vec + i;
108 } else if (idx < 1 << (TVR_BITS + TVN_BITS)) {
109 int i = (expires >> TVR_BITS) & TVN_MASK;
110 vec = base->tv2.vec + i;
111 } else if (idx < 1 << (TVR_BITS + 2 * TVN_BITS)) {
112 int i = (expires >> (TVR_BITS + TVN_BITS)) & TVN_MASK;
113 vec = base->tv3.vec + i;
114 } else if (idx < 1 << (TVR_BITS + 3 * TVN_BITS)) {
115 int i = (expires >> (TVR_BITS + 2 * TVN_BITS)) & TVN_MASK;
116 vec = base->tv4.vec + i;
117 } else if ((signed long) idx < 0) {
118 /*
119 * Can happen if you add a timer with expires == jiffies,
120 * or you set a timer to go off in the past
121 */
122 vec = base->tv1.vec + (base->timer_jiffies & TVR_MASK);
123 } else {
124 int i;
125 /* If the timeout is larger than 0xffffffff on 64-bit
126 * architectures then we use the maximum timeout:
127 */
128 if (idx > 0xffffffffUL) {
129 idx = 0xffffffffUL;
130 expires = idx + base->timer_jiffies;
131 }
132 i = (expires >> (TVR_BITS + 3 * TVN_BITS)) & TVN_MASK;
133 vec = base->tv5.vec + i;
134 }
135 /*
136 * Timers are FIFO:
137 */
138 list_add_tail(&timer->entry, vec);
139}
140
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700141typedef struct timer_base_s timer_base_t;
142/*
143 * Used by TIMER_INITIALIZER, we can't use per_cpu(tvec_bases)
144 * at compile time, and we need timer->base to lock the timer.
145 */
146timer_base_t __init_timer_base
147 ____cacheline_aligned_in_smp = { .lock = SPIN_LOCK_UNLOCKED };
148EXPORT_SYMBOL(__init_timer_base);
149
150/***
151 * init_timer - initialize a timer.
152 * @timer: the timer to be initialized
153 *
154 * init_timer() must be done to a timer prior calling *any* of the
155 * other timer functions.
156 */
157void fastcall init_timer(struct timer_list *timer)
158{
159 timer->entry.next = NULL;
160 timer->base = &per_cpu(tvec_bases, raw_smp_processor_id()).t_base;
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700161}
162EXPORT_SYMBOL(init_timer);
163
164static inline void detach_timer(struct timer_list *timer,
165 int clear_pending)
166{
167 struct list_head *entry = &timer->entry;
168
169 __list_del(entry->prev, entry->next);
170 if (clear_pending)
171 entry->next = NULL;
172 entry->prev = LIST_POISON2;
173}
174
175/*
176 * We are using hashed locking: holding per_cpu(tvec_bases).t_base.lock
177 * means that all timers which are tied to this base via timer->base are
178 * locked, and the base itself is locked too.
179 *
180 * So __run_timers/migrate_timers can safely modify all timers which could
181 * be found on ->tvX lists.
182 *
183 * When the timer's base is locked, and the timer removed from list, it is
184 * possible to set timer->base = NULL and drop the lock: the timer remains
185 * locked.
186 */
187static timer_base_t *lock_timer_base(struct timer_list *timer,
188 unsigned long *flags)
189{
190 timer_base_t *base;
191
192 for (;;) {
193 base = timer->base;
194 if (likely(base != NULL)) {
195 spin_lock_irqsave(&base->lock, *flags);
196 if (likely(base == timer->base))
197 return base;
198 /* The timer has migrated to another CPU */
199 spin_unlock_irqrestore(&base->lock, *flags);
200 }
201 cpu_relax();
202 }
203}
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205int __mod_timer(struct timer_list *timer, unsigned long expires)
206{
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700207 timer_base_t *base;
208 tvec_base_t *new_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 unsigned long flags;
210 int ret = 0;
211
212 BUG_ON(!timer->function);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700214 base = lock_timer_base(timer, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700216 if (timer_pending(timer)) {
217 detach_timer(timer, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 ret = 1;
219 }
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700220
221 new_base = &__get_cpu_var(tvec_bases);
222
223 if (base != &new_base->t_base) {
224 /*
225 * We are trying to schedule the timer on the local CPU.
226 * However we can't change timer's base while it is running,
227 * otherwise del_timer_sync() can't detect that the timer's
228 * handler yet has not finished. This also guarantees that
229 * the timer is serialized wrt itself.
230 */
231 if (unlikely(base->running_timer == timer)) {
232 /* The timer remains on a former base */
233 new_base = container_of(base, tvec_base_t, t_base);
234 } else {
235 /* See the comment in lock_timer_base() */
236 timer->base = NULL;
237 spin_unlock(&base->lock);
238 spin_lock(&new_base->t_base.lock);
239 timer->base = &new_base->t_base;
240 }
241 }
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 timer->expires = expires;
244 internal_add_timer(new_base, timer);
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700245 spin_unlock_irqrestore(&new_base->t_base.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 return ret;
248}
249
250EXPORT_SYMBOL(__mod_timer);
251
252/***
253 * add_timer_on - start a timer on a particular CPU
254 * @timer: the timer to be added
255 * @cpu: the CPU to start it on
256 *
257 * This is not very scalable on SMP. Double adds are not possible.
258 */
259void add_timer_on(struct timer_list *timer, int cpu)
260{
261 tvec_base_t *base = &per_cpu(tvec_bases, cpu);
262 unsigned long flags;
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 BUG_ON(timer_pending(timer) || !timer->function);
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700265 spin_lock_irqsave(&base->t_base.lock, flags);
266 timer->base = &base->t_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 internal_add_timer(base, timer);
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700268 spin_unlock_irqrestore(&base->t_base.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271
272/***
273 * mod_timer - modify a timer's timeout
274 * @timer: the timer to be modified
275 *
276 * mod_timer is a more efficient way to update the expire field of an
277 * active timer (if the timer is inactive it will be activated)
278 *
279 * mod_timer(timer, expires) is equivalent to:
280 *
281 * del_timer(timer); timer->expires = expires; add_timer(timer);
282 *
283 * Note that if there are multiple unserialized concurrent users of the
284 * same timer, then mod_timer() is the only safe way to modify the timeout,
285 * since add_timer() cannot modify an already running timer.
286 *
287 * The function returns whether it has modified a pending timer or not.
288 * (ie. mod_timer() of an inactive timer returns 0, mod_timer() of an
289 * active timer returns 1.)
290 */
291int mod_timer(struct timer_list *timer, unsigned long expires)
292{
293 BUG_ON(!timer->function);
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 /*
296 * This is a common optimization triggered by the
297 * networking code - if the timer is re-modified
298 * to be the same thing then just return:
299 */
300 if (timer->expires == expires && timer_pending(timer))
301 return 1;
302
303 return __mod_timer(timer, expires);
304}
305
306EXPORT_SYMBOL(mod_timer);
307
308/***
309 * del_timer - deactive a timer.
310 * @timer: the timer to be deactivated
311 *
312 * del_timer() deactivates a timer - this works on both active and inactive
313 * timers.
314 *
315 * The function returns whether it has deactivated a pending timer or not.
316 * (ie. del_timer() of an inactive timer returns 0, del_timer() of an
317 * active timer returns 1.)
318 */
319int del_timer(struct timer_list *timer)
320{
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700321 timer_base_t *base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 unsigned long flags;
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700323 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700325 if (timer_pending(timer)) {
326 base = lock_timer_base(timer, &flags);
327 if (timer_pending(timer)) {
328 detach_timer(timer, 1);
329 ret = 1;
330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 spin_unlock_irqrestore(&base->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700334 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
337EXPORT_SYMBOL(del_timer);
338
339#ifdef CONFIG_SMP
Oleg Nesterovfd450b72005-06-23 00:08:59 -0700340/*
341 * This function tries to deactivate a timer. Upon successful (ret >= 0)
342 * exit the timer is not queued and the handler is not running on any CPU.
343 *
344 * It must not be called from interrupt contexts.
345 */
346int try_to_del_timer_sync(struct timer_list *timer)
347{
348 timer_base_t *base;
349 unsigned long flags;
350 int ret = -1;
351
352 base = lock_timer_base(timer, &flags);
353
354 if (base->running_timer == timer)
355 goto out;
356
357 ret = 0;
358 if (timer_pending(timer)) {
359 detach_timer(timer, 1);
360 ret = 1;
361 }
362out:
363 spin_unlock_irqrestore(&base->lock, flags);
364
365 return ret;
366}
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368/***
369 * del_timer_sync - deactivate a timer and wait for the handler to finish.
370 * @timer: the timer to be deactivated
371 *
372 * This function only differs from del_timer() on SMP: besides deactivating
373 * the timer it also makes sure the handler has finished executing on other
374 * CPUs.
375 *
376 * Synchronization rules: callers must prevent restarting of the timer,
377 * otherwise this function is meaningless. It must not be called from
378 * interrupt contexts. The caller must not hold locks which would prevent
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700379 * completion of the timer's handler. The timer's handler must not call
380 * add_timer_on(). Upon exit the timer is not queued and the handler is
381 * not running on any CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 *
383 * The function returns whether it has deactivated a pending timer or not.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 */
385int del_timer_sync(struct timer_list *timer)
386{
Oleg Nesterovfd450b72005-06-23 00:08:59 -0700387 for (;;) {
388 int ret = try_to_del_timer_sync(timer);
389 if (ret >= 0)
390 return ret;
391 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394EXPORT_SYMBOL(del_timer_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395#endif
396
397static int cascade(tvec_base_t *base, tvec_t *tv, int index)
398{
399 /* cascade all the timers from tv up one level */
400 struct list_head *head, *curr;
401
402 head = tv->vec + index;
403 curr = head->next;
404 /*
405 * We are removing _all_ timers from the list, so we don't have to
406 * detach them individually, just clear the list afterwards.
407 */
408 while (curr != head) {
409 struct timer_list *tmp;
410
411 tmp = list_entry(curr, struct timer_list, entry);
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700412 BUG_ON(tmp->base != &base->t_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 curr = curr->next;
414 internal_add_timer(base, tmp);
415 }
416 INIT_LIST_HEAD(head);
417
418 return index;
419}
420
421/***
422 * __run_timers - run all expired timers (if any) on this CPU.
423 * @base: the timer vector to be processed.
424 *
425 * This function cascades all vectors and executes all expired timer
426 * vectors.
427 */
428#define INDEX(N) (base->timer_jiffies >> (TVR_BITS + N * TVN_BITS)) & TVN_MASK
429
430static inline void __run_timers(tvec_base_t *base)
431{
432 struct timer_list *timer;
433
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700434 spin_lock_irq(&base->t_base.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 while (time_after_eq(jiffies, base->timer_jiffies)) {
436 struct list_head work_list = LIST_HEAD_INIT(work_list);
437 struct list_head *head = &work_list;
438 int index = base->timer_jiffies & TVR_MASK;
439
440 /*
441 * Cascade timers:
442 */
443 if (!index &&
444 (!cascade(base, &base->tv2, INDEX(0))) &&
445 (!cascade(base, &base->tv3, INDEX(1))) &&
446 !cascade(base, &base->tv4, INDEX(2)))
447 cascade(base, &base->tv5, INDEX(3));
448 ++base->timer_jiffies;
449 list_splice_init(base->tv1.vec + index, &work_list);
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700450 while (!list_empty(head)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 void (*fn)(unsigned long);
452 unsigned long data;
453
454 timer = list_entry(head->next,struct timer_list,entry);
455 fn = timer->function;
456 data = timer->data;
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 set_running_timer(base, timer);
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700459 detach_timer(timer, 1);
460 spin_unlock_irq(&base->t_base.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 {
Jesper Juhlbe5b4fb2005-06-23 00:09:09 -0700462 int preempt_count = preempt_count();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 fn(data);
464 if (preempt_count != preempt_count()) {
Jesper Juhlbe5b4fb2005-06-23 00:09:09 -0700465 printk(KERN_WARNING "huh, entered %p "
466 "with preempt_count %08x, exited"
467 " with %08x?\n",
468 fn, preempt_count,
469 preempt_count());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 BUG();
471 }
472 }
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700473 spin_lock_irq(&base->t_base.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 }
475 }
476 set_running_timer(base, NULL);
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700477 spin_unlock_irq(&base->t_base.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
480#ifdef CONFIG_NO_IDLE_HZ
481/*
482 * Find out when the next timer event is due to happen. This
483 * is used on S/390 to stop all activity when a cpus is idle.
484 * This functions needs to be called disabled.
485 */
486unsigned long next_timer_interrupt(void)
487{
488 tvec_base_t *base;
489 struct list_head *list;
490 struct timer_list *nte;
491 unsigned long expires;
492 tvec_t *varray[4];
493 int i, j;
494
495 base = &__get_cpu_var(tvec_bases);
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700496 spin_lock(&base->t_base.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 expires = base->timer_jiffies + (LONG_MAX >> 1);
498 list = 0;
499
500 /* Look for timer events in tv1. */
501 j = base->timer_jiffies & TVR_MASK;
502 do {
503 list_for_each_entry(nte, base->tv1.vec + j, entry) {
504 expires = nte->expires;
505 if (j < (base->timer_jiffies & TVR_MASK))
506 list = base->tv2.vec + (INDEX(0));
507 goto found;
508 }
509 j = (j + 1) & TVR_MASK;
510 } while (j != (base->timer_jiffies & TVR_MASK));
511
512 /* Check tv2-tv5. */
513 varray[0] = &base->tv2;
514 varray[1] = &base->tv3;
515 varray[2] = &base->tv4;
516 varray[3] = &base->tv5;
517 for (i = 0; i < 4; i++) {
518 j = INDEX(i);
519 do {
520 if (list_empty(varray[i]->vec + j)) {
521 j = (j + 1) & TVN_MASK;
522 continue;
523 }
524 list_for_each_entry(nte, varray[i]->vec + j, entry)
525 if (time_before(nte->expires, expires))
526 expires = nte->expires;
527 if (j < (INDEX(i)) && i < 3)
528 list = varray[i + 1]->vec + (INDEX(i + 1));
529 goto found;
530 } while (j != (INDEX(i)));
531 }
532found:
533 if (list) {
534 /*
535 * The search wrapped. We need to look at the next list
536 * from next tv element that would cascade into tv element
537 * where we found the timer element.
538 */
539 list_for_each_entry(nte, list, entry) {
540 if (time_before(nte->expires, expires))
541 expires = nte->expires;
542 }
543 }
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700544 spin_unlock(&base->t_base.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 return expires;
546}
547#endif
548
549/******************************************************************/
550
551/*
552 * Timekeeping variables
553 */
554unsigned long tick_usec = TICK_USEC; /* USER_HZ period (usec) */
555unsigned long tick_nsec = TICK_NSEC; /* ACTHZ period (nsec) */
556
557/*
558 * The current time
559 * wall_to_monotonic is what we need to add to xtime (or xtime corrected
560 * for sub jiffie times) to get to monotonic time. Monotonic is pegged
561 * at zero at system boot time, so wall_to_monotonic will be negative,
562 * however, we will ALWAYS keep the tv_nsec part positive so we can use
563 * the usual normalization.
564 */
565struct timespec xtime __attribute__ ((aligned (16)));
566struct timespec wall_to_monotonic __attribute__ ((aligned (16)));
567
568EXPORT_SYMBOL(xtime);
569
570/* Don't completely fail for HZ > 500. */
571int tickadj = 500/HZ ? : 1; /* microsecs */
572
573
574/*
575 * phase-lock loop variables
576 */
577/* TIME_ERROR prevents overwriting the CMOS clock */
578int time_state = TIME_OK; /* clock synchronization status */
579int time_status = STA_UNSYNC; /* clock status bits */
580long time_offset; /* time adjustment (us) */
581long time_constant = 2; /* pll time constant */
582long time_tolerance = MAXFREQ; /* frequency tolerance (ppm) */
583long time_precision = 1; /* clock precision (us) */
584long time_maxerror = NTP_PHASE_LIMIT; /* maximum error (us) */
585long time_esterror = NTP_PHASE_LIMIT; /* estimated error (us) */
586static long time_phase; /* phase offset (scaled us) */
587long time_freq = (((NSEC_PER_SEC + HZ/2) % HZ - HZ/2) << SHIFT_USEC) / NSEC_PER_USEC;
588 /* frequency offset (scaled ppm)*/
589static long time_adj; /* tick adjust (scaled 1 / HZ) */
590long time_reftime; /* time at last adjustment (s) */
591long time_adjust;
592long time_next_adjust;
593
594/*
595 * this routine handles the overflow of the microsecond field
596 *
597 * The tricky bits of code to handle the accurate clock support
598 * were provided by Dave Mills (Mills@UDEL.EDU) of NTP fame.
599 * They were originally developed for SUN and DEC kernels.
600 * All the kudos should go to Dave for this stuff.
601 *
602 */
603static void second_overflow(void)
604{
Andrew Mortona5a0d522005-10-30 15:01:42 -0800605 long ltemp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Andrew Mortona5a0d522005-10-30 15:01:42 -0800607 /* Bump the maxerror field */
608 time_maxerror += time_tolerance >> SHIFT_USEC;
609 if (time_maxerror > NTP_PHASE_LIMIT) {
610 time_maxerror = NTP_PHASE_LIMIT;
611 time_status |= STA_UNSYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Andrew Mortona5a0d522005-10-30 15:01:42 -0800614 /*
615 * Leap second processing. If in leap-insert state at the end of the
616 * day, the system clock is set back one second; if in leap-delete
617 * state, the system clock is set ahead one second. The microtime()
618 * routine or external clock driver will insure that reported time is
619 * always monotonic. The ugly divides should be replaced.
620 */
621 switch (time_state) {
622 case TIME_OK:
623 if (time_status & STA_INS)
624 time_state = TIME_INS;
625 else if (time_status & STA_DEL)
626 time_state = TIME_DEL;
627 break;
628 case TIME_INS:
629 if (xtime.tv_sec % 86400 == 0) {
630 xtime.tv_sec--;
631 wall_to_monotonic.tv_sec++;
632 /*
633 * The timer interpolator will make time change
634 * gradually instead of an immediate jump by one second
635 */
636 time_interpolator_update(-NSEC_PER_SEC);
637 time_state = TIME_OOP;
638 clock_was_set();
639 printk(KERN_NOTICE "Clock: inserting leap second "
640 "23:59:60 UTC\n");
641 }
642 break;
643 case TIME_DEL:
644 if ((xtime.tv_sec + 1) % 86400 == 0) {
645 xtime.tv_sec++;
646 wall_to_monotonic.tv_sec--;
647 /*
648 * Use of time interpolator for a gradual change of
649 * time
650 */
651 time_interpolator_update(NSEC_PER_SEC);
652 time_state = TIME_WAIT;
653 clock_was_set();
654 printk(KERN_NOTICE "Clock: deleting leap second "
655 "23:59:59 UTC\n");
656 }
657 break;
658 case TIME_OOP:
659 time_state = TIME_WAIT;
660 break;
661 case TIME_WAIT:
662 if (!(time_status & (STA_INS | STA_DEL)))
663 time_state = TIME_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Andrew Mortona5a0d522005-10-30 15:01:42 -0800666 /*
667 * Compute the phase adjustment for the next second. In PLL mode, the
668 * offset is reduced by a fixed factor times the time constant. In FLL
669 * mode the offset is used directly. In either mode, the maximum phase
670 * adjustment for each second is clamped so as to spread the adjustment
671 * over not more than the number of seconds between updates.
672 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 ltemp = time_offset;
674 if (!(time_status & STA_FLL))
john stultz1bb34a42005-10-30 15:01:42 -0800675 ltemp = shift_right(ltemp, SHIFT_KG + time_constant);
676 ltemp = min(ltemp, (MAXPHASE / MINSEC) << SHIFT_UPDATE);
677 ltemp = max(ltemp, -(MAXPHASE / MINSEC) << SHIFT_UPDATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 time_offset -= ltemp;
679 time_adj = ltemp << (SHIFT_SCALE - SHIFT_HZ - SHIFT_UPDATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Andrew Mortona5a0d522005-10-30 15:01:42 -0800681 /*
682 * Compute the frequency estimate and additional phase adjustment due
683 * to frequency error for the next second. When the PPS signal is
684 * engaged, gnaw on the watchdog counter and update the frequency
685 * computed by the pll and the PPS signal.
686 */
687 pps_valid++;
688 if (pps_valid == PPS_VALID) { /* PPS signal lost */
689 pps_jitter = MAXTIME;
690 pps_stabil = MAXFREQ;
691 time_status &= ~(STA_PPSSIGNAL | STA_PPSJITTER |
692 STA_PPSWANDER | STA_PPSERROR);
693 }
694 ltemp = time_freq + pps_freq;
695 time_adj += shift_right(ltemp,(SHIFT_USEC + SHIFT_HZ - SHIFT_SCALE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697#if HZ == 100
Andrew Mortona5a0d522005-10-30 15:01:42 -0800698 /*
699 * Compensate for (HZ==100) != (1 << SHIFT_HZ). Add 25% and 3.125% to
700 * get 128.125; => only 0.125% error (p. 14)
701 */
702 time_adj += shift_right(time_adj, 2) + shift_right(time_adj, 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703#endif
YOSHIFUJI Hideaki4b8f5732005-10-29 18:15:42 -0700704#if HZ == 250
Andrew Mortona5a0d522005-10-30 15:01:42 -0800705 /*
706 * Compensate for (HZ==250) != (1 << SHIFT_HZ). Add 1.5625% and
707 * 0.78125% to get 255.85938; => only 0.05% error (p. 14)
708 */
709 time_adj += shift_right(time_adj, 6) + shift_right(time_adj, 7);
YOSHIFUJI Hideaki4b8f5732005-10-29 18:15:42 -0700710#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711#if HZ == 1000
Andrew Mortona5a0d522005-10-30 15:01:42 -0800712 /*
713 * Compensate for (HZ==1000) != (1 << SHIFT_HZ). Add 1.5625% and
714 * 0.78125% to get 1023.4375; => only 0.05% error (p. 14)
715 */
716 time_adj += shift_right(time_adj, 6) + shift_right(time_adj, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717#endif
718}
719
720/* in the NTP reference this is called "hardclock()" */
721static void update_wall_time_one_tick(void)
722{
723 long time_adjust_step, delta_nsec;
724
Andrew Mortona5a0d522005-10-30 15:01:42 -0800725 if ((time_adjust_step = time_adjust) != 0 ) {
726 /*
727 * We are doing an adjtime thing. Prepare time_adjust_step to
728 * be within bounds. Note that a positive time_adjust means we
729 * want the clock to run faster.
730 *
731 * Limit the amount of the step to be in the range
732 * -tickadj .. +tickadj
733 */
734 time_adjust_step = min(time_adjust_step, (long)tickadj);
735 time_adjust_step = max(time_adjust_step, (long)-tickadj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Andrew Mortona5a0d522005-10-30 15:01:42 -0800737 /* Reduce by this step the amount of time left */
738 time_adjust -= time_adjust_step;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
740 delta_nsec = tick_nsec + time_adjust_step * 1000;
741 /*
742 * Advance the phase, once it gets to one microsecond, then
743 * advance the tick more.
744 */
745 time_phase += time_adj;
john stultz1bb34a42005-10-30 15:01:42 -0800746 if ((time_phase >= FINENSEC) || (time_phase <= -FINENSEC)) {
747 long ltemp = shift_right(time_phase, (SHIFT_SCALE - 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 time_phase -= ltemp << (SHIFT_SCALE - 10);
749 delta_nsec += ltemp;
750 }
751 xtime.tv_nsec += delta_nsec;
752 time_interpolator_update(delta_nsec);
753
754 /* Changes by adjtime() do not take effect till next tick. */
755 if (time_next_adjust != 0) {
756 time_adjust = time_next_adjust;
757 time_next_adjust = 0;
758 }
759}
760
761/*
762 * Using a loop looks inefficient, but "ticks" is
763 * usually just one (we shouldn't be losing ticks,
764 * we're doing this this way mainly for interrupt
765 * latency reasons, not because we think we'll
766 * have lots of lost timer ticks
767 */
768static void update_wall_time(unsigned long ticks)
769{
770 do {
771 ticks--;
772 update_wall_time_one_tick();
773 if (xtime.tv_nsec >= 1000000000) {
774 xtime.tv_nsec -= 1000000000;
775 xtime.tv_sec++;
776 second_overflow();
777 }
778 } while (ticks);
779}
780
781/*
782 * Called from the timer interrupt handler to charge one tick to the current
783 * process. user_tick is 1 if the tick is user time, 0 for system.
784 */
785void update_process_times(int user_tick)
786{
787 struct task_struct *p = current;
788 int cpu = smp_processor_id();
789
790 /* Note: this timer irq context must be accounted for as well. */
791 if (user_tick)
792 account_user_time(p, jiffies_to_cputime(1));
793 else
794 account_system_time(p, HARDIRQ_OFFSET, jiffies_to_cputime(1));
795 run_local_timers();
796 if (rcu_pending(cpu))
797 rcu_check_callbacks(cpu, user_tick);
798 scheduler_tick();
799 run_posix_cpu_timers(p);
800}
801
802/*
803 * Nr of active tasks - counted in fixed-point numbers
804 */
805static unsigned long count_active_tasks(void)
806{
807 return (nr_running() + nr_uninterruptible()) * FIXED_1;
808}
809
810/*
811 * Hmm.. Changed this, as the GNU make sources (load.c) seems to
812 * imply that avenrun[] is the standard name for this kind of thing.
813 * Nothing else seems to be standardized: the fractional size etc
814 * all seem to differ on different machines.
815 *
816 * Requires xtime_lock to access.
817 */
818unsigned long avenrun[3];
819
820EXPORT_SYMBOL(avenrun);
821
822/*
823 * calc_load - given tick count, update the avenrun load estimates.
824 * This is called while holding a write_lock on xtime_lock.
825 */
826static inline void calc_load(unsigned long ticks)
827{
828 unsigned long active_tasks; /* fixed-point */
829 static int count = LOAD_FREQ;
830
831 count -= ticks;
832 if (count < 0) {
833 count += LOAD_FREQ;
834 active_tasks = count_active_tasks();
835 CALC_LOAD(avenrun[0], EXP_1, active_tasks);
836 CALC_LOAD(avenrun[1], EXP_5, active_tasks);
837 CALC_LOAD(avenrun[2], EXP_15, active_tasks);
838 }
839}
840
841/* jiffies at the most recent update of wall time */
842unsigned long wall_jiffies = INITIAL_JIFFIES;
843
844/*
845 * This read-write spinlock protects us from races in SMP while
846 * playing with xtime and avenrun.
847 */
848#ifndef ARCH_HAVE_XTIME_LOCK
849seqlock_t xtime_lock __cacheline_aligned_in_smp = SEQLOCK_UNLOCKED;
850
851EXPORT_SYMBOL(xtime_lock);
852#endif
853
854/*
855 * This function runs timers and the timer-tq in bottom half context.
856 */
857static void run_timer_softirq(struct softirq_action *h)
858{
859 tvec_base_t *base = &__get_cpu_var(tvec_bases);
860
861 if (time_after_eq(jiffies, base->timer_jiffies))
862 __run_timers(base);
863}
864
865/*
866 * Called by the local, per-CPU timer interrupt on SMP.
867 */
868void run_local_timers(void)
869{
870 raise_softirq(TIMER_SOFTIRQ);
871}
872
873/*
874 * Called by the timer interrupt. xtime_lock must already be taken
875 * by the timer IRQ!
876 */
877static inline void update_times(void)
878{
879 unsigned long ticks;
880
881 ticks = jiffies - wall_jiffies;
882 if (ticks) {
883 wall_jiffies += ticks;
884 update_wall_time(ticks);
885 }
886 calc_load(ticks);
887}
888
889/*
890 * The 64-bit jiffies value is not atomic - you MUST NOT read it
891 * without sampling the sequence number in xtime_lock.
892 * jiffies is defined in the linker script...
893 */
894
895void do_timer(struct pt_regs *regs)
896{
897 jiffies_64++;
898 update_times();
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700899 softlockup_tick(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901
902#ifdef __ARCH_WANT_SYS_ALARM
903
904/*
905 * For backwards compatibility? This can be done in libc so Alpha
906 * and all newer ports shouldn't need it.
907 */
908asmlinkage unsigned long sys_alarm(unsigned int seconds)
909{
910 struct itimerval it_new, it_old;
911 unsigned int oldalarm;
912
913 it_new.it_interval.tv_sec = it_new.it_interval.tv_usec = 0;
914 it_new.it_value.tv_sec = seconds;
915 it_new.it_value.tv_usec = 0;
916 do_setitimer(ITIMER_REAL, &it_new, &it_old);
917 oldalarm = it_old.it_value.tv_sec;
918 /* ehhh.. We can't return 0 if we have an alarm pending.. */
919 /* And we'd better return too much than too little anyway */
920 if ((!oldalarm && it_old.it_value.tv_usec) || it_old.it_value.tv_usec >= 500000)
921 oldalarm++;
922 return oldalarm;
923}
924
925#endif
926
927#ifndef __alpha__
928
929/*
930 * The Alpha uses getxpid, getxuid, and getxgid instead. Maybe this
931 * should be moved into arch/i386 instead?
932 */
933
934/**
935 * sys_getpid - return the thread group id of the current process
936 *
937 * Note, despite the name, this returns the tgid not the pid. The tgid and
938 * the pid are identical unless CLONE_THREAD was specified on clone() in
939 * which case the tgid is the same in all threads of the same group.
940 *
941 * This is SMP safe as current->tgid does not change.
942 */
943asmlinkage long sys_getpid(void)
944{
945 return current->tgid;
946}
947
948/*
949 * Accessing ->group_leader->real_parent is not SMP-safe, it could
950 * change from under us. However, rather than getting any lock
951 * we can use an optimistic algorithm: get the parent
952 * pid, and go back and check that the parent is still
953 * the same. If it has changed (which is extremely unlikely
954 * indeed), we just try again..
955 *
956 * NOTE! This depends on the fact that even if we _do_
957 * get an old value of "parent", we can happily dereference
958 * the pointer (it was and remains a dereferencable kernel pointer
959 * no matter what): we just can't necessarily trust the result
960 * until we know that the parent pointer is valid.
961 *
962 * NOTE2: ->group_leader never changes from under us.
963 */
964asmlinkage long sys_getppid(void)
965{
966 int pid;
967 struct task_struct *me = current;
968 struct task_struct *parent;
969
970 parent = me->group_leader->real_parent;
971 for (;;) {
972 pid = parent->tgid;
David Meybohm4c5640c2005-08-22 13:11:08 -0700973#if defined(CONFIG_SMP) || defined(CONFIG_PREEMPT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
975 struct task_struct *old = parent;
976
977 /*
978 * Make sure we read the pid before re-reading the
979 * parent pointer:
980 */
akpm@osdl.orgd59dd462005-05-01 08:58:47 -0700981 smp_rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 parent = me->group_leader->real_parent;
983 if (old != parent)
984 continue;
985}
986#endif
987 break;
988 }
989 return pid;
990}
991
992asmlinkage long sys_getuid(void)
993{
994 /* Only we change this so SMP safe */
995 return current->uid;
996}
997
998asmlinkage long sys_geteuid(void)
999{
1000 /* Only we change this so SMP safe */
1001 return current->euid;
1002}
1003
1004asmlinkage long sys_getgid(void)
1005{
1006 /* Only we change this so SMP safe */
1007 return current->gid;
1008}
1009
1010asmlinkage long sys_getegid(void)
1011{
1012 /* Only we change this so SMP safe */
1013 return current->egid;
1014}
1015
1016#endif
1017
1018static void process_timeout(unsigned long __data)
1019{
1020 wake_up_process((task_t *)__data);
1021}
1022
1023/**
1024 * schedule_timeout - sleep until timeout
1025 * @timeout: timeout value in jiffies
1026 *
1027 * Make the current task sleep until @timeout jiffies have
1028 * elapsed. The routine will return immediately unless
1029 * the current task state has been set (see set_current_state()).
1030 *
1031 * You can set the task state as follows -
1032 *
1033 * %TASK_UNINTERRUPTIBLE - at least @timeout jiffies are guaranteed to
1034 * pass before the routine returns. The routine will return 0
1035 *
1036 * %TASK_INTERRUPTIBLE - the routine may return early if a signal is
1037 * delivered to the current task. In this case the remaining time
1038 * in jiffies will be returned, or 0 if the timer expired in time
1039 *
1040 * The current task state is guaranteed to be TASK_RUNNING when this
1041 * routine returns.
1042 *
1043 * Specifying a @timeout value of %MAX_SCHEDULE_TIMEOUT will schedule
1044 * the CPU away without a bound on the timeout. In this case the return
1045 * value will be %MAX_SCHEDULE_TIMEOUT.
1046 *
1047 * In all cases the return value is guaranteed to be non-negative.
1048 */
1049fastcall signed long __sched schedule_timeout(signed long timeout)
1050{
1051 struct timer_list timer;
1052 unsigned long expire;
1053
1054 switch (timeout)
1055 {
1056 case MAX_SCHEDULE_TIMEOUT:
1057 /*
1058 * These two special cases are useful to be comfortable
1059 * in the caller. Nothing more. We could take
1060 * MAX_SCHEDULE_TIMEOUT from one of the negative value
1061 * but I' d like to return a valid offset (>=0) to allow
1062 * the caller to do everything it want with the retval.
1063 */
1064 schedule();
1065 goto out;
1066 default:
1067 /*
1068 * Another bit of PARANOID. Note that the retval will be
1069 * 0 since no piece of kernel is supposed to do a check
1070 * for a negative retval of schedule_timeout() (since it
1071 * should never happens anyway). You just have the printk()
1072 * that will tell you if something is gone wrong and where.
1073 */
1074 if (timeout < 0)
1075 {
1076 printk(KERN_ERR "schedule_timeout: wrong timeout "
Andrew Mortona5a0d522005-10-30 15:01:42 -08001077 "value %lx from %p\n", timeout,
1078 __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 current->state = TASK_RUNNING;
1080 goto out;
1081 }
1082 }
1083
1084 expire = timeout + jiffies;
1085
Oleg Nesterova8db2db2005-10-30 15:01:38 -08001086 setup_timer(&timer, process_timeout, (unsigned long)current);
1087 __mod_timer(&timer, expire);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 schedule();
1089 del_singleshot_timer_sync(&timer);
1090
1091 timeout = expire - jiffies;
1092
1093 out:
1094 return timeout < 0 ? 0 : timeout;
1095}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096EXPORT_SYMBOL(schedule_timeout);
1097
Andrew Morton8a1c1752005-09-13 01:25:15 -07001098/*
1099 * We can use __set_current_state() here because schedule_timeout() calls
1100 * schedule() unconditionally.
1101 */
Nishanth Aravamudan64ed93a2005-09-10 00:27:21 -07001102signed long __sched schedule_timeout_interruptible(signed long timeout)
1103{
Andrew Mortona5a0d522005-10-30 15:01:42 -08001104 __set_current_state(TASK_INTERRUPTIBLE);
1105 return schedule_timeout(timeout);
Nishanth Aravamudan64ed93a2005-09-10 00:27:21 -07001106}
1107EXPORT_SYMBOL(schedule_timeout_interruptible);
1108
1109signed long __sched schedule_timeout_uninterruptible(signed long timeout)
1110{
Andrew Mortona5a0d522005-10-30 15:01:42 -08001111 __set_current_state(TASK_UNINTERRUPTIBLE);
1112 return schedule_timeout(timeout);
Nishanth Aravamudan64ed93a2005-09-10 00:27:21 -07001113}
1114EXPORT_SYMBOL(schedule_timeout_uninterruptible);
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116/* Thread ID - the internal kernel "pid" */
1117asmlinkage long sys_gettid(void)
1118{
1119 return current->pid;
1120}
1121
1122static long __sched nanosleep_restart(struct restart_block *restart)
1123{
1124 unsigned long expire = restart->arg0, now = jiffies;
1125 struct timespec __user *rmtp = (struct timespec __user *) restart->arg1;
1126 long ret;
1127
1128 /* Did it expire while we handled signals? */
1129 if (!time_after(expire, now))
1130 return 0;
1131
Nishanth Aravamudan75bcc8c2005-09-10 00:27:24 -07001132 expire = schedule_timeout_interruptible(expire - now);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
1134 ret = 0;
1135 if (expire) {
1136 struct timespec t;
1137 jiffies_to_timespec(expire, &t);
1138
1139 ret = -ERESTART_RESTARTBLOCK;
1140 if (rmtp && copy_to_user(rmtp, &t, sizeof(t)))
1141 ret = -EFAULT;
1142 /* The 'restart' block is already filled in */
1143 }
1144 return ret;
1145}
1146
1147asmlinkage long sys_nanosleep(struct timespec __user *rqtp, struct timespec __user *rmtp)
1148{
1149 struct timespec t;
1150 unsigned long expire;
1151 long ret;
1152
1153 if (copy_from_user(&t, rqtp, sizeof(t)))
1154 return -EFAULT;
1155
1156 if ((t.tv_nsec >= 1000000000L) || (t.tv_nsec < 0) || (t.tv_sec < 0))
1157 return -EINVAL;
1158
1159 expire = timespec_to_jiffies(&t) + (t.tv_sec || t.tv_nsec);
Nishanth Aravamudan75bcc8c2005-09-10 00:27:24 -07001160 expire = schedule_timeout_interruptible(expire);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
1162 ret = 0;
1163 if (expire) {
1164 struct restart_block *restart;
1165 jiffies_to_timespec(expire, &t);
1166 if (rmtp && copy_to_user(rmtp, &t, sizeof(t)))
1167 return -EFAULT;
1168
1169 restart = &current_thread_info()->restart_block;
1170 restart->fn = nanosleep_restart;
1171 restart->arg0 = jiffies + expire;
1172 restart->arg1 = (unsigned long) rmtp;
1173 ret = -ERESTART_RESTARTBLOCK;
1174 }
1175 return ret;
1176}
1177
1178/*
1179 * sys_sysinfo - fill in sysinfo struct
1180 */
1181asmlinkage long sys_sysinfo(struct sysinfo __user *info)
1182{
1183 struct sysinfo val;
1184 unsigned long mem_total, sav_total;
1185 unsigned int mem_unit, bitcount;
1186 unsigned long seq;
1187
1188 memset((char *)&val, 0, sizeof(struct sysinfo));
1189
1190 do {
1191 struct timespec tp;
1192 seq = read_seqbegin(&xtime_lock);
1193
1194 /*
1195 * This is annoying. The below is the same thing
1196 * posix_get_clock_monotonic() does, but it wants to
1197 * take the lock which we want to cover the loads stuff
1198 * too.
1199 */
1200
1201 getnstimeofday(&tp);
1202 tp.tv_sec += wall_to_monotonic.tv_sec;
1203 tp.tv_nsec += wall_to_monotonic.tv_nsec;
1204 if (tp.tv_nsec - NSEC_PER_SEC >= 0) {
1205 tp.tv_nsec = tp.tv_nsec - NSEC_PER_SEC;
1206 tp.tv_sec++;
1207 }
1208 val.uptime = tp.tv_sec + (tp.tv_nsec ? 1 : 0);
1209
1210 val.loads[0] = avenrun[0] << (SI_LOAD_SHIFT - FSHIFT);
1211 val.loads[1] = avenrun[1] << (SI_LOAD_SHIFT - FSHIFT);
1212 val.loads[2] = avenrun[2] << (SI_LOAD_SHIFT - FSHIFT);
1213
1214 val.procs = nr_threads;
1215 } while (read_seqretry(&xtime_lock, seq));
1216
1217 si_meminfo(&val);
1218 si_swapinfo(&val);
1219
1220 /*
1221 * If the sum of all the available memory (i.e. ram + swap)
1222 * is less than can be stored in a 32 bit unsigned long then
1223 * we can be binary compatible with 2.2.x kernels. If not,
1224 * well, in that case 2.2.x was broken anyways...
1225 *
1226 * -Erik Andersen <andersee@debian.org>
1227 */
1228
1229 mem_total = val.totalram + val.totalswap;
1230 if (mem_total < val.totalram || mem_total < val.totalswap)
1231 goto out;
1232 bitcount = 0;
1233 mem_unit = val.mem_unit;
1234 while (mem_unit > 1) {
1235 bitcount++;
1236 mem_unit >>= 1;
1237 sav_total = mem_total;
1238 mem_total <<= 1;
1239 if (mem_total < sav_total)
1240 goto out;
1241 }
1242
1243 /*
1244 * If mem_total did not overflow, multiply all memory values by
1245 * val.mem_unit and set it to 1. This leaves things compatible
1246 * with 2.2.x, and also retains compatibility with earlier 2.4.x
1247 * kernels...
1248 */
1249
1250 val.mem_unit = 1;
1251 val.totalram <<= bitcount;
1252 val.freeram <<= bitcount;
1253 val.sharedram <<= bitcount;
1254 val.bufferram <<= bitcount;
1255 val.totalswap <<= bitcount;
1256 val.freeswap <<= bitcount;
1257 val.totalhigh <<= bitcount;
1258 val.freehigh <<= bitcount;
1259
1260 out:
1261 if (copy_to_user(info, &val, sizeof(struct sysinfo)))
1262 return -EFAULT;
1263
1264 return 0;
1265}
1266
1267static void __devinit init_timers_cpu(int cpu)
1268{
1269 int j;
1270 tvec_base_t *base;
Oleg Nesterov55c888d2005-06-23 00:08:56 -07001271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 base = &per_cpu(tvec_bases, cpu);
Oleg Nesterov55c888d2005-06-23 00:08:56 -07001273 spin_lock_init(&base->t_base.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 for (j = 0; j < TVN_SIZE; j++) {
1275 INIT_LIST_HEAD(base->tv5.vec + j);
1276 INIT_LIST_HEAD(base->tv4.vec + j);
1277 INIT_LIST_HEAD(base->tv3.vec + j);
1278 INIT_LIST_HEAD(base->tv2.vec + j);
1279 }
1280 for (j = 0; j < TVR_SIZE; j++)
1281 INIT_LIST_HEAD(base->tv1.vec + j);
1282
1283 base->timer_jiffies = jiffies;
1284}
1285
1286#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterov55c888d2005-06-23 00:08:56 -07001287static void migrate_timer_list(tvec_base_t *new_base, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288{
1289 struct timer_list *timer;
1290
1291 while (!list_empty(head)) {
1292 timer = list_entry(head->next, struct timer_list, entry);
Oleg Nesterov55c888d2005-06-23 00:08:56 -07001293 detach_timer(timer, 0);
1294 timer->base = &new_base->t_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 internal_add_timer(new_base, timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
1298
1299static void __devinit migrate_timers(int cpu)
1300{
1301 tvec_base_t *old_base;
1302 tvec_base_t *new_base;
1303 int i;
1304
1305 BUG_ON(cpu_online(cpu));
1306 old_base = &per_cpu(tvec_bases, cpu);
1307 new_base = &get_cpu_var(tvec_bases);
1308
1309 local_irq_disable();
Oleg Nesterov55c888d2005-06-23 00:08:56 -07001310 spin_lock(&new_base->t_base.lock);
1311 spin_lock(&old_base->t_base.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Oleg Nesterov55c888d2005-06-23 00:08:56 -07001313 if (old_base->t_base.running_timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 BUG();
1315 for (i = 0; i < TVR_SIZE; i++)
Oleg Nesterov55c888d2005-06-23 00:08:56 -07001316 migrate_timer_list(new_base, old_base->tv1.vec + i);
1317 for (i = 0; i < TVN_SIZE; i++) {
1318 migrate_timer_list(new_base, old_base->tv2.vec + i);
1319 migrate_timer_list(new_base, old_base->tv3.vec + i);
1320 migrate_timer_list(new_base, old_base->tv4.vec + i);
1321 migrate_timer_list(new_base, old_base->tv5.vec + i);
1322 }
1323
1324 spin_unlock(&old_base->t_base.lock);
1325 spin_unlock(&new_base->t_base.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 local_irq_enable();
1327 put_cpu_var(tvec_bases);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328}
1329#endif /* CONFIG_HOTPLUG_CPU */
1330
1331static int __devinit timer_cpu_notify(struct notifier_block *self,
1332 unsigned long action, void *hcpu)
1333{
1334 long cpu = (long)hcpu;
1335 switch(action) {
1336 case CPU_UP_PREPARE:
1337 init_timers_cpu(cpu);
1338 break;
1339#ifdef CONFIG_HOTPLUG_CPU
1340 case CPU_DEAD:
1341 migrate_timers(cpu);
1342 break;
1343#endif
1344 default:
1345 break;
1346 }
1347 return NOTIFY_OK;
1348}
1349
1350static struct notifier_block __devinitdata timers_nb = {
1351 .notifier_call = timer_cpu_notify,
1352};
1353
1354
1355void __init init_timers(void)
1356{
1357 timer_cpu_notify(&timers_nb, (unsigned long)CPU_UP_PREPARE,
1358 (void *)(long)smp_processor_id());
1359 register_cpu_notifier(&timers_nb);
1360 open_softirq(TIMER_SOFTIRQ, run_timer_softirq, NULL);
1361}
1362
1363#ifdef CONFIG_TIME_INTERPOLATION
1364
1365struct time_interpolator *time_interpolator;
1366static struct time_interpolator *time_interpolator_list;
1367static DEFINE_SPINLOCK(time_interpolator_lock);
1368
1369static inline u64 time_interpolator_get_cycles(unsigned int src)
1370{
1371 unsigned long (*x)(void);
1372
1373 switch (src)
1374 {
1375 case TIME_SOURCE_FUNCTION:
1376 x = time_interpolator->addr;
1377 return x();
1378
1379 case TIME_SOURCE_MMIO64 :
1380 return readq((void __iomem *) time_interpolator->addr);
1381
1382 case TIME_SOURCE_MMIO32 :
1383 return readl((void __iomem *) time_interpolator->addr);
1384
1385 default: return get_cycles();
1386 }
1387}
1388
Alex Williamson486d46a2005-09-06 15:17:04 -07001389static inline u64 time_interpolator_get_counter(int writelock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390{
1391 unsigned int src = time_interpolator->source;
1392
1393 if (time_interpolator->jitter)
1394 {
1395 u64 lcycle;
1396 u64 now;
1397
1398 do {
1399 lcycle = time_interpolator->last_cycle;
1400 now = time_interpolator_get_cycles(src);
1401 if (lcycle && time_after(lcycle, now))
1402 return lcycle;
Alex Williamson486d46a2005-09-06 15:17:04 -07001403
1404 /* When holding the xtime write lock, there's no need
1405 * to add the overhead of the cmpxchg. Readers are
1406 * force to retry until the write lock is released.
1407 */
1408 if (writelock) {
1409 time_interpolator->last_cycle = now;
1410 return now;
1411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 /* Keep track of the last timer value returned. The use of cmpxchg here
1413 * will cause contention in an SMP environment.
1414 */
1415 } while (unlikely(cmpxchg(&time_interpolator->last_cycle, lcycle, now) != lcycle));
1416 return now;
1417 }
1418 else
1419 return time_interpolator_get_cycles(src);
1420}
1421
1422void time_interpolator_reset(void)
1423{
1424 time_interpolator->offset = 0;
Alex Williamson486d46a2005-09-06 15:17:04 -07001425 time_interpolator->last_counter = time_interpolator_get_counter(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426}
1427
1428#define GET_TI_NSECS(count,i) (((((count) - i->last_counter) & (i)->mask) * (i)->nsec_per_cyc) >> (i)->shift)
1429
1430unsigned long time_interpolator_get_offset(void)
1431{
1432 /* If we do not have a time interpolator set up then just return zero */
1433 if (!time_interpolator)
1434 return 0;
1435
1436 return time_interpolator->offset +
Alex Williamson486d46a2005-09-06 15:17:04 -07001437 GET_TI_NSECS(time_interpolator_get_counter(0), time_interpolator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438}
1439
1440#define INTERPOLATOR_ADJUST 65536
1441#define INTERPOLATOR_MAX_SKIP 10*INTERPOLATOR_ADJUST
1442
1443static void time_interpolator_update(long delta_nsec)
1444{
1445 u64 counter;
1446 unsigned long offset;
1447
1448 /* If there is no time interpolator set up then do nothing */
1449 if (!time_interpolator)
1450 return;
1451
Andrew Mortona5a0d522005-10-30 15:01:42 -08001452 /*
1453 * The interpolator compensates for late ticks by accumulating the late
1454 * time in time_interpolator->offset. A tick earlier than expected will
1455 * lead to a reset of the offset and a corresponding jump of the clock
1456 * forward. Again this only works if the interpolator clock is running
1457 * slightly slower than the regular clock and the tuning logic insures
1458 * that.
1459 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Alex Williamson486d46a2005-09-06 15:17:04 -07001461 counter = time_interpolator_get_counter(1);
Andrew Mortona5a0d522005-10-30 15:01:42 -08001462 offset = time_interpolator->offset +
1463 GET_TI_NSECS(counter, time_interpolator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
1465 if (delta_nsec < 0 || (unsigned long) delta_nsec < offset)
1466 time_interpolator->offset = offset - delta_nsec;
1467 else {
1468 time_interpolator->skips++;
1469 time_interpolator->ns_skipped += delta_nsec - offset;
1470 time_interpolator->offset = 0;
1471 }
1472 time_interpolator->last_counter = counter;
1473
1474 /* Tuning logic for time interpolator invoked every minute or so.
1475 * Decrease interpolator clock speed if no skips occurred and an offset is carried.
1476 * Increase interpolator clock speed if we skip too much time.
1477 */
1478 if (jiffies % INTERPOLATOR_ADJUST == 0)
1479 {
1480 if (time_interpolator->skips == 0 && time_interpolator->offset > TICK_NSEC)
1481 time_interpolator->nsec_per_cyc--;
1482 if (time_interpolator->ns_skipped > INTERPOLATOR_MAX_SKIP && time_interpolator->offset == 0)
1483 time_interpolator->nsec_per_cyc++;
1484 time_interpolator->skips = 0;
1485 time_interpolator->ns_skipped = 0;
1486 }
1487}
1488
1489static inline int
1490is_better_time_interpolator(struct time_interpolator *new)
1491{
1492 if (!time_interpolator)
1493 return 1;
1494 return new->frequency > 2*time_interpolator->frequency ||
1495 (unsigned long)new->drift < (unsigned long)time_interpolator->drift;
1496}
1497
1498void
1499register_time_interpolator(struct time_interpolator *ti)
1500{
1501 unsigned long flags;
1502
1503 /* Sanity check */
1504 if (ti->frequency == 0 || ti->mask == 0)
1505 BUG();
1506
1507 ti->nsec_per_cyc = ((u64)NSEC_PER_SEC << ti->shift) / ti->frequency;
1508 spin_lock(&time_interpolator_lock);
1509 write_seqlock_irqsave(&xtime_lock, flags);
1510 if (is_better_time_interpolator(ti)) {
1511 time_interpolator = ti;
1512 time_interpolator_reset();
1513 }
1514 write_sequnlock_irqrestore(&xtime_lock, flags);
1515
1516 ti->next = time_interpolator_list;
1517 time_interpolator_list = ti;
1518 spin_unlock(&time_interpolator_lock);
1519}
1520
1521void
1522unregister_time_interpolator(struct time_interpolator *ti)
1523{
1524 struct time_interpolator *curr, **prev;
1525 unsigned long flags;
1526
1527 spin_lock(&time_interpolator_lock);
1528 prev = &time_interpolator_list;
1529 for (curr = *prev; curr; curr = curr->next) {
1530 if (curr == ti) {
1531 *prev = curr->next;
1532 break;
1533 }
1534 prev = &curr->next;
1535 }
1536
1537 write_seqlock_irqsave(&xtime_lock, flags);
1538 if (ti == time_interpolator) {
1539 /* we lost the best time-interpolator: */
1540 time_interpolator = NULL;
1541 /* find the next-best interpolator */
1542 for (curr = time_interpolator_list; curr; curr = curr->next)
1543 if (is_better_time_interpolator(curr))
1544 time_interpolator = curr;
1545 time_interpolator_reset();
1546 }
1547 write_sequnlock_irqrestore(&xtime_lock, flags);
1548 spin_unlock(&time_interpolator_lock);
1549}
1550#endif /* CONFIG_TIME_INTERPOLATION */
1551
1552/**
1553 * msleep - sleep safely even with waitqueue interruptions
1554 * @msecs: Time in milliseconds to sleep for
1555 */
1556void msleep(unsigned int msecs)
1557{
1558 unsigned long timeout = msecs_to_jiffies(msecs) + 1;
1559
Nishanth Aravamudan75bcc8c2005-09-10 00:27:24 -07001560 while (timeout)
1561 timeout = schedule_timeout_uninterruptible(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562}
1563
1564EXPORT_SYMBOL(msleep);
1565
1566/**
Domen Puncer96ec3ef2005-06-25 14:58:43 -07001567 * msleep_interruptible - sleep waiting for signals
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 * @msecs: Time in milliseconds to sleep for
1569 */
1570unsigned long msleep_interruptible(unsigned int msecs)
1571{
1572 unsigned long timeout = msecs_to_jiffies(msecs) + 1;
1573
Nishanth Aravamudan75bcc8c2005-09-10 00:27:24 -07001574 while (timeout && !signal_pending(current))
1575 timeout = schedule_timeout_interruptible(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 return jiffies_to_msecs(timeout);
1577}
1578
1579EXPORT_SYMBOL(msleep_interruptible);