[PATCH] ntp: add ntp_update_frequency
[safe/jmp/linux-2.6] / kernel / timer.c
1 /*
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>
36 #include <linux/delay.h>
37
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 u64 jiffies_64 __cacheline_aligned_in_smp = INITIAL_JIFFIES;
45
46 EXPORT_SYMBOL(jiffies_64);
47
48 /*
49  * per-CPU timer vector definitions:
50  */
51 #define TVN_BITS (CONFIG_BASE_SMALL ? 4 : 6)
52 #define TVR_BITS (CONFIG_BASE_SMALL ? 6 : 8)
53 #define TVN_SIZE (1 << TVN_BITS)
54 #define TVR_SIZE (1 << TVR_BITS)
55 #define TVN_MASK (TVN_SIZE - 1)
56 #define TVR_MASK (TVR_SIZE - 1)
57
58 typedef struct tvec_s {
59         struct list_head vec[TVN_SIZE];
60 } tvec_t;
61
62 typedef struct tvec_root_s {
63         struct list_head vec[TVR_SIZE];
64 } tvec_root_t;
65
66 struct tvec_t_base_s {
67         spinlock_t lock;
68         struct timer_list *running_timer;
69         unsigned long timer_jiffies;
70         tvec_root_t tv1;
71         tvec_t tv2;
72         tvec_t tv3;
73         tvec_t tv4;
74         tvec_t tv5;
75 } ____cacheline_aligned_in_smp;
76
77 typedef struct tvec_t_base_s tvec_base_t;
78
79 tvec_base_t boot_tvec_bases;
80 EXPORT_SYMBOL(boot_tvec_bases);
81 static DEFINE_PER_CPU(tvec_base_t *, tvec_bases) = &boot_tvec_bases;
82
83 static inline void set_running_timer(tvec_base_t *base,
84                                         struct timer_list *timer)
85 {
86 #ifdef CONFIG_SMP
87         base->running_timer = timer;
88 #endif
89 }
90
91 static void internal_add_timer(tvec_base_t *base, struct timer_list *timer)
92 {
93         unsigned long expires = timer->expires;
94         unsigned long idx = expires - base->timer_jiffies;
95         struct list_head *vec;
96
97         if (idx < TVR_SIZE) {
98                 int i = expires & TVR_MASK;
99                 vec = base->tv1.vec + i;
100         } else if (idx < 1 << (TVR_BITS + TVN_BITS)) {
101                 int i = (expires >> TVR_BITS) & TVN_MASK;
102                 vec = base->tv2.vec + i;
103         } else if (idx < 1 << (TVR_BITS + 2 * TVN_BITS)) {
104                 int i = (expires >> (TVR_BITS + TVN_BITS)) & TVN_MASK;
105                 vec = base->tv3.vec + i;
106         } else if (idx < 1 << (TVR_BITS + 3 * TVN_BITS)) {
107                 int i = (expires >> (TVR_BITS + 2 * TVN_BITS)) & TVN_MASK;
108                 vec = base->tv4.vec + i;
109         } else if ((signed long) idx < 0) {
110                 /*
111                  * Can happen if you add a timer with expires == jiffies,
112                  * or you set a timer to go off in the past
113                  */
114                 vec = base->tv1.vec + (base->timer_jiffies & TVR_MASK);
115         } else {
116                 int i;
117                 /* If the timeout is larger than 0xffffffff on 64-bit
118                  * architectures then we use the maximum timeout:
119                  */
120                 if (idx > 0xffffffffUL) {
121                         idx = 0xffffffffUL;
122                         expires = idx + base->timer_jiffies;
123                 }
124                 i = (expires >> (TVR_BITS + 3 * TVN_BITS)) & TVN_MASK;
125                 vec = base->tv5.vec + i;
126         }
127         /*
128          * Timers are FIFO:
129          */
130         list_add_tail(&timer->entry, vec);
131 }
132
133 /**
134  * init_timer - initialize a timer.
135  * @timer: the timer to be initialized
136  *
137  * init_timer() must be done to a timer prior calling *any* of the
138  * other timer functions.
139  */
140 void fastcall init_timer(struct timer_list *timer)
141 {
142         timer->entry.next = NULL;
143         timer->base = __raw_get_cpu_var(tvec_bases);
144 }
145 EXPORT_SYMBOL(init_timer);
146
147 static inline void detach_timer(struct timer_list *timer,
148                                         int clear_pending)
149 {
150         struct list_head *entry = &timer->entry;
151
152         __list_del(entry->prev, entry->next);
153         if (clear_pending)
154                 entry->next = NULL;
155         entry->prev = LIST_POISON2;
156 }
157
158 /*
159  * We are using hashed locking: holding per_cpu(tvec_bases).lock
160  * means that all timers which are tied to this base via timer->base are
161  * locked, and the base itself is locked too.
162  *
163  * So __run_timers/migrate_timers can safely modify all timers which could
164  * be found on ->tvX lists.
165  *
166  * When the timer's base is locked, and the timer removed from list, it is
167  * possible to set timer->base = NULL and drop the lock: the timer remains
168  * locked.
169  */
170 static tvec_base_t *lock_timer_base(struct timer_list *timer,
171                                         unsigned long *flags)
172         __acquires(timer->base->lock)
173 {
174         tvec_base_t *base;
175
176         for (;;) {
177                 base = timer->base;
178                 if (likely(base != NULL)) {
179                         spin_lock_irqsave(&base->lock, *flags);
180                         if (likely(base == timer->base))
181                                 return base;
182                         /* The timer has migrated to another CPU */
183                         spin_unlock_irqrestore(&base->lock, *flags);
184                 }
185                 cpu_relax();
186         }
187 }
188
189 int __mod_timer(struct timer_list *timer, unsigned long expires)
190 {
191         tvec_base_t *base, *new_base;
192         unsigned long flags;
193         int ret = 0;
194
195         BUG_ON(!timer->function);
196
197         base = lock_timer_base(timer, &flags);
198
199         if (timer_pending(timer)) {
200                 detach_timer(timer, 0);
201                 ret = 1;
202         }
203
204         new_base = __get_cpu_var(tvec_bases);
205
206         if (base != new_base) {
207                 /*
208                  * We are trying to schedule the timer on the local CPU.
209                  * However we can't change timer's base while it is running,
210                  * otherwise del_timer_sync() can't detect that the timer's
211                  * handler yet has not finished. This also guarantees that
212                  * the timer is serialized wrt itself.
213                  */
214                 if (likely(base->running_timer != timer)) {
215                         /* See the comment in lock_timer_base() */
216                         timer->base = NULL;
217                         spin_unlock(&base->lock);
218                         base = new_base;
219                         spin_lock(&base->lock);
220                         timer->base = base;
221                 }
222         }
223
224         timer->expires = expires;
225         internal_add_timer(base, timer);
226         spin_unlock_irqrestore(&base->lock, flags);
227
228         return ret;
229 }
230
231 EXPORT_SYMBOL(__mod_timer);
232
233 /**
234  * add_timer_on - start a timer on a particular CPU
235  * @timer: the timer to be added
236  * @cpu: the CPU to start it on
237  *
238  * This is not very scalable on SMP. Double adds are not possible.
239  */
240 void add_timer_on(struct timer_list *timer, int cpu)
241 {
242         tvec_base_t *base = per_cpu(tvec_bases, cpu);
243         unsigned long flags;
244
245         BUG_ON(timer_pending(timer) || !timer->function);
246         spin_lock_irqsave(&base->lock, flags);
247         timer->base = base;
248         internal_add_timer(base, timer);
249         spin_unlock_irqrestore(&base->lock, flags);
250 }
251
252
253 /**
254  * mod_timer - modify a timer's timeout
255  * @timer: the timer to be modified
256  * @expires: new timeout in jiffies
257  *
258  * mod_timer is a more efficient way to update the expire field of an
259  * active timer (if the timer is inactive it will be activated)
260  *
261  * mod_timer(timer, expires) is equivalent to:
262  *
263  *     del_timer(timer); timer->expires = expires; add_timer(timer);
264  *
265  * Note that if there are multiple unserialized concurrent users of the
266  * same timer, then mod_timer() is the only safe way to modify the timeout,
267  * since add_timer() cannot modify an already running timer.
268  *
269  * The function returns whether it has modified a pending timer or not.
270  * (ie. mod_timer() of an inactive timer returns 0, mod_timer() of an
271  * active timer returns 1.)
272  */
273 int mod_timer(struct timer_list *timer, unsigned long expires)
274 {
275         BUG_ON(!timer->function);
276
277         /*
278          * This is a common optimization triggered by the
279          * networking code - if the timer is re-modified
280          * to be the same thing then just return:
281          */
282         if (timer->expires == expires && timer_pending(timer))
283                 return 1;
284
285         return __mod_timer(timer, expires);
286 }
287
288 EXPORT_SYMBOL(mod_timer);
289
290 /**
291  * del_timer - deactive a timer.
292  * @timer: the timer to be deactivated
293  *
294  * del_timer() deactivates a timer - this works on both active and inactive
295  * timers.
296  *
297  * The function returns whether it has deactivated a pending timer or not.
298  * (ie. del_timer() of an inactive timer returns 0, del_timer() of an
299  * active timer returns 1.)
300  */
301 int del_timer(struct timer_list *timer)
302 {
303         tvec_base_t *base;
304         unsigned long flags;
305         int ret = 0;
306
307         if (timer_pending(timer)) {
308                 base = lock_timer_base(timer, &flags);
309                 if (timer_pending(timer)) {
310                         detach_timer(timer, 1);
311                         ret = 1;
312                 }
313                 spin_unlock_irqrestore(&base->lock, flags);
314         }
315
316         return ret;
317 }
318
319 EXPORT_SYMBOL(del_timer);
320
321 #ifdef CONFIG_SMP
322 /**
323  * try_to_del_timer_sync - Try to deactivate a timer
324  * @timer: timer do del
325  *
326  * This function tries to deactivate a timer. Upon successful (ret >= 0)
327  * exit the timer is not queued and the handler is not running on any CPU.
328  *
329  * It must not be called from interrupt contexts.
330  */
331 int try_to_del_timer_sync(struct timer_list *timer)
332 {
333         tvec_base_t *base;
334         unsigned long flags;
335         int ret = -1;
336
337         base = lock_timer_base(timer, &flags);
338
339         if (base->running_timer == timer)
340                 goto out;
341
342         ret = 0;
343         if (timer_pending(timer)) {
344                 detach_timer(timer, 1);
345                 ret = 1;
346         }
347 out:
348         spin_unlock_irqrestore(&base->lock, flags);
349
350         return ret;
351 }
352
353 /**
354  * del_timer_sync - deactivate a timer and wait for the handler to finish.
355  * @timer: the timer to be deactivated
356  *
357  * This function only differs from del_timer() on SMP: besides deactivating
358  * the timer it also makes sure the handler has finished executing on other
359  * CPUs.
360  *
361  * Synchronization rules: callers must prevent restarting of the timer,
362  * otherwise this function is meaningless. It must not be called from
363  * interrupt contexts. The caller must not hold locks which would prevent
364  * completion of the timer's handler. The timer's handler must not call
365  * add_timer_on(). Upon exit the timer is not queued and the handler is
366  * not running on any CPU.
367  *
368  * The function returns whether it has deactivated a pending timer or not.
369  */
370 int del_timer_sync(struct timer_list *timer)
371 {
372         for (;;) {
373                 int ret = try_to_del_timer_sync(timer);
374                 if (ret >= 0)
375                         return ret;
376                 cpu_relax();
377         }
378 }
379
380 EXPORT_SYMBOL(del_timer_sync);
381 #endif
382
383 static int cascade(tvec_base_t *base, tvec_t *tv, int index)
384 {
385         /* cascade all the timers from tv up one level */
386         struct timer_list *timer, *tmp;
387         struct list_head tv_list;
388
389         list_replace_init(tv->vec + index, &tv_list);
390
391         /*
392          * We are removing _all_ timers from the list, so we
393          * don't have to detach them individually.
394          */
395         list_for_each_entry_safe(timer, tmp, &tv_list, entry) {
396                 BUG_ON(timer->base != base);
397                 internal_add_timer(base, timer);
398         }
399
400         return index;
401 }
402
403 #define INDEX(N) ((base->timer_jiffies >> (TVR_BITS + (N) * TVN_BITS)) & TVN_MASK)
404
405 /**
406  * __run_timers - run all expired timers (if any) on this CPU.
407  * @base: the timer vector to be processed.
408  *
409  * This function cascades all vectors and executes all expired timer
410  * vectors.
411  */
412 static inline void __run_timers(tvec_base_t *base)
413 {
414         struct timer_list *timer;
415
416         spin_lock_irq(&base->lock);
417         while (time_after_eq(jiffies, base->timer_jiffies)) {
418                 struct list_head work_list;
419                 struct list_head *head = &work_list;
420                 int index = base->timer_jiffies & TVR_MASK;
421
422                 /*
423                  * Cascade timers:
424                  */
425                 if (!index &&
426                         (!cascade(base, &base->tv2, INDEX(0))) &&
427                                 (!cascade(base, &base->tv3, INDEX(1))) &&
428                                         !cascade(base, &base->tv4, INDEX(2)))
429                         cascade(base, &base->tv5, INDEX(3));
430                 ++base->timer_jiffies;
431                 list_replace_init(base->tv1.vec + index, &work_list);
432                 while (!list_empty(head)) {
433                         void (*fn)(unsigned long);
434                         unsigned long data;
435
436                         timer = list_entry(head->next,struct timer_list,entry);
437                         fn = timer->function;
438                         data = timer->data;
439
440                         set_running_timer(base, timer);
441                         detach_timer(timer, 1);
442                         spin_unlock_irq(&base->lock);
443                         {
444                                 int preempt_count = preempt_count();
445                                 fn(data);
446                                 if (preempt_count != preempt_count()) {
447                                         printk(KERN_WARNING "huh, entered %p "
448                                                "with preempt_count %08x, exited"
449                                                " with %08x?\n",
450                                                fn, preempt_count,
451                                                preempt_count());
452                                         BUG();
453                                 }
454                         }
455                         spin_lock_irq(&base->lock);
456                 }
457         }
458         set_running_timer(base, NULL);
459         spin_unlock_irq(&base->lock);
460 }
461
462 #ifdef CONFIG_NO_IDLE_HZ
463 /*
464  * Find out when the next timer event is due to happen. This
465  * is used on S/390 to stop all activity when a cpus is idle.
466  * This functions needs to be called disabled.
467  */
468 unsigned long next_timer_interrupt(void)
469 {
470         tvec_base_t *base;
471         struct list_head *list;
472         struct timer_list *nte;
473         unsigned long expires;
474         unsigned long hr_expires = MAX_JIFFY_OFFSET;
475         ktime_t hr_delta;
476         tvec_t *varray[4];
477         int i, j;
478
479         hr_delta = hrtimer_get_next_event();
480         if (hr_delta.tv64 != KTIME_MAX) {
481                 struct timespec tsdelta;
482                 tsdelta = ktime_to_timespec(hr_delta);
483                 hr_expires = timespec_to_jiffies(&tsdelta);
484                 if (hr_expires < 3)
485                         return hr_expires + jiffies;
486         }
487         hr_expires += jiffies;
488
489         base = __get_cpu_var(tvec_bases);
490         spin_lock(&base->lock);
491         expires = base->timer_jiffies + (LONG_MAX >> 1);
492         list = NULL;
493
494         /* Look for timer events in tv1. */
495         j = base->timer_jiffies & TVR_MASK;
496         do {
497                 list_for_each_entry(nte, base->tv1.vec + j, entry) {
498                         expires = nte->expires;
499                         if (j < (base->timer_jiffies & TVR_MASK))
500                                 list = base->tv2.vec + (INDEX(0));
501                         goto found;
502                 }
503                 j = (j + 1) & TVR_MASK;
504         } while (j != (base->timer_jiffies & TVR_MASK));
505
506         /* Check tv2-tv5. */
507         varray[0] = &base->tv2;
508         varray[1] = &base->tv3;
509         varray[2] = &base->tv4;
510         varray[3] = &base->tv5;
511         for (i = 0; i < 4; i++) {
512                 j = INDEX(i);
513                 do {
514                         if (list_empty(varray[i]->vec + j)) {
515                                 j = (j + 1) & TVN_MASK;
516                                 continue;
517                         }
518                         list_for_each_entry(nte, varray[i]->vec + j, entry)
519                                 if (time_before(nte->expires, expires))
520                                         expires = nte->expires;
521                         if (j < (INDEX(i)) && i < 3)
522                                 list = varray[i + 1]->vec + (INDEX(i + 1));
523                         goto found;
524                 } while (j != (INDEX(i)));
525         }
526 found:
527         if (list) {
528                 /*
529                  * The search wrapped. We need to look at the next list
530                  * from next tv element that would cascade into tv element
531                  * where we found the timer element.
532                  */
533                 list_for_each_entry(nte, list, entry) {
534                         if (time_before(nte->expires, expires))
535                                 expires = nte->expires;
536                 }
537         }
538         spin_unlock(&base->lock);
539
540         /*
541          * It can happen that other CPUs service timer IRQs and increment
542          * jiffies, but we have not yet got a local timer tick to process
543          * the timer wheels.  In that case, the expiry time can be before
544          * jiffies, but since the high-resolution timer here is relative to
545          * jiffies, the default expression when high-resolution timers are
546          * not active,
547          *
548          *   time_before(MAX_JIFFY_OFFSET + jiffies, expires)
549          *
550          * would falsely evaluate to true.  If that is the case, just
551          * return jiffies so that we can immediately fire the local timer
552          */
553         if (time_before(expires, jiffies))
554                 return jiffies;
555
556         if (time_before(hr_expires, expires))
557                 return hr_expires;
558
559         return expires;
560 }
561 #endif
562
563 /******************************************************************/
564
565 /* 
566  * The current time 
567  * wall_to_monotonic is what we need to add to xtime (or xtime corrected 
568  * for sub jiffie times) to get to monotonic time.  Monotonic is pegged
569  * at zero at system boot time, so wall_to_monotonic will be negative,
570  * however, we will ALWAYS keep the tv_nsec part positive so we can use
571  * the usual normalization.
572  */
573 struct timespec xtime __attribute__ ((aligned (16)));
574 struct timespec wall_to_monotonic __attribute__ ((aligned (16)));
575
576 EXPORT_SYMBOL(xtime);
577
578
579 /* XXX - all of this timekeeping code should be later moved to time.c */
580 #include <linux/clocksource.h>
581 static struct clocksource *clock; /* pointer to current clocksource */
582
583 #ifdef CONFIG_GENERIC_TIME
584 /**
585  * __get_nsec_offset - Returns nanoseconds since last call to periodic_hook
586  *
587  * private function, must hold xtime_lock lock when being
588  * called. Returns the number of nanoseconds since the
589  * last call to update_wall_time() (adjusted by NTP scaling)
590  */
591 static inline s64 __get_nsec_offset(void)
592 {
593         cycle_t cycle_now, cycle_delta;
594         s64 ns_offset;
595
596         /* read clocksource: */
597         cycle_now = clocksource_read(clock);
598
599         /* calculate the delta since the last update_wall_time: */
600         cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
601
602         /* convert to nanoseconds: */
603         ns_offset = cyc2ns(clock, cycle_delta);
604
605         return ns_offset;
606 }
607
608 /**
609  * __get_realtime_clock_ts - Returns the time of day in a timespec
610  * @ts:         pointer to the timespec to be set
611  *
612  * Returns the time of day in a timespec. Used by
613  * do_gettimeofday() and get_realtime_clock_ts().
614  */
615 static inline void __get_realtime_clock_ts(struct timespec *ts)
616 {
617         unsigned long seq;
618         s64 nsecs;
619
620         do {
621                 seq = read_seqbegin(&xtime_lock);
622
623                 *ts = xtime;
624                 nsecs = __get_nsec_offset();
625
626         } while (read_seqretry(&xtime_lock, seq));
627
628         timespec_add_ns(ts, nsecs);
629 }
630
631 /**
632  * getnstimeofday - Returns the time of day in a timespec
633  * @ts:         pointer to the timespec to be set
634  *
635  * Returns the time of day in a timespec.
636  */
637 void getnstimeofday(struct timespec *ts)
638 {
639         __get_realtime_clock_ts(ts);
640 }
641
642 EXPORT_SYMBOL(getnstimeofday);
643
644 /**
645  * do_gettimeofday - Returns the time of day in a timeval
646  * @tv:         pointer to the timeval to be set
647  *
648  * NOTE: Users should be converted to using get_realtime_clock_ts()
649  */
650 void do_gettimeofday(struct timeval *tv)
651 {
652         struct timespec now;
653
654         __get_realtime_clock_ts(&now);
655         tv->tv_sec = now.tv_sec;
656         tv->tv_usec = now.tv_nsec/1000;
657 }
658
659 EXPORT_SYMBOL(do_gettimeofday);
660 /**
661  * do_settimeofday - Sets the time of day
662  * @tv:         pointer to the timespec variable containing the new time
663  *
664  * Sets the time of day to the new time and update NTP and notify hrtimers
665  */
666 int do_settimeofday(struct timespec *tv)
667 {
668         unsigned long flags;
669         time_t wtm_sec, sec = tv->tv_sec;
670         long wtm_nsec, nsec = tv->tv_nsec;
671
672         if ((unsigned long)tv->tv_nsec >= NSEC_PER_SEC)
673                 return -EINVAL;
674
675         write_seqlock_irqsave(&xtime_lock, flags);
676
677         nsec -= __get_nsec_offset();
678
679         wtm_sec  = wall_to_monotonic.tv_sec + (xtime.tv_sec - sec);
680         wtm_nsec = wall_to_monotonic.tv_nsec + (xtime.tv_nsec - nsec);
681
682         set_normalized_timespec(&xtime, sec, nsec);
683         set_normalized_timespec(&wall_to_monotonic, wtm_sec, wtm_nsec);
684
685         clock->error = 0;
686         ntp_clear();
687
688         write_sequnlock_irqrestore(&xtime_lock, flags);
689
690         /* signal hrtimers about time change */
691         clock_was_set();
692
693         return 0;
694 }
695
696 EXPORT_SYMBOL(do_settimeofday);
697
698 /**
699  * change_clocksource - Swaps clocksources if a new one is available
700  *
701  * Accumulates current time interval and initializes new clocksource
702  */
703 static int change_clocksource(void)
704 {
705         struct clocksource *new;
706         cycle_t now;
707         u64 nsec;
708         new = clocksource_get_next();
709         if (clock != new) {
710                 now = clocksource_read(new);
711                 nsec =  __get_nsec_offset();
712                 timespec_add_ns(&xtime, nsec);
713
714                 clock = new;
715                 clock->cycle_last = now;
716                 printk(KERN_INFO "Time: %s clocksource has been installed.\n",
717                                         clock->name);
718                 return 1;
719         } else if (clock->update_callback) {
720                 return clock->update_callback();
721         }
722         return 0;
723 }
724 #else
725 #define change_clocksource() (0)
726 #endif
727
728 /**
729  * timeofday_is_continuous - check to see if timekeeping is free running
730  */
731 int timekeeping_is_continuous(void)
732 {
733         unsigned long seq;
734         int ret;
735
736         do {
737                 seq = read_seqbegin(&xtime_lock);
738
739                 ret = clock->is_continuous;
740
741         } while (read_seqretry(&xtime_lock, seq));
742
743         return ret;
744 }
745
746 /*
747  * timekeeping_init - Initializes the clocksource and common timekeeping values
748  */
749 void __init timekeeping_init(void)
750 {
751         unsigned long flags;
752
753         write_seqlock_irqsave(&xtime_lock, flags);
754
755         ntp_clear();
756
757         clock = clocksource_get_next();
758         clocksource_calculate_interval(clock, tick_nsec);
759         clock->cycle_last = clocksource_read(clock);
760
761         write_sequnlock_irqrestore(&xtime_lock, flags);
762 }
763
764
765 static int timekeeping_suspended;
766 /**
767  * timekeeping_resume - Resumes the generic timekeeping subsystem.
768  * @dev:        unused
769  *
770  * This is for the generic clocksource timekeeping.
771  * xtime/wall_to_monotonic/jiffies/wall_jiffies/etc are
772  * still managed by arch specific suspend/resume code.
773  */
774 static int timekeeping_resume(struct sys_device *dev)
775 {
776         unsigned long flags;
777
778         write_seqlock_irqsave(&xtime_lock, flags);
779         /* restart the last cycle value */
780         clock->cycle_last = clocksource_read(clock);
781         clock->error = 0;
782         timekeeping_suspended = 0;
783         write_sequnlock_irqrestore(&xtime_lock, flags);
784         return 0;
785 }
786
787 static int timekeeping_suspend(struct sys_device *dev, pm_message_t state)
788 {
789         unsigned long flags;
790
791         write_seqlock_irqsave(&xtime_lock, flags);
792         timekeeping_suspended = 1;
793         write_sequnlock_irqrestore(&xtime_lock, flags);
794         return 0;
795 }
796
797 /* sysfs resume/suspend bits for timekeeping */
798 static struct sysdev_class timekeeping_sysclass = {
799         .resume         = timekeeping_resume,
800         .suspend        = timekeeping_suspend,
801         set_kset_name("timekeeping"),
802 };
803
804 static struct sys_device device_timer = {
805         .id             = 0,
806         .cls            = &timekeeping_sysclass,
807 };
808
809 static int __init timekeeping_init_device(void)
810 {
811         int error = sysdev_class_register(&timekeeping_sysclass);
812         if (!error)
813                 error = sysdev_register(&device_timer);
814         return error;
815 }
816
817 device_initcall(timekeeping_init_device);
818
819 /*
820  * If the error is already larger, we look ahead even further
821  * to compensate for late or lost adjustments.
822  */
823 static __always_inline int clocksource_bigadjust(s64 error, s64 *interval, s64 *offset)
824 {
825         s64 tick_error, i;
826         u32 look_ahead, adj;
827         s32 error2, mult;
828
829         /*
830          * Use the current error value to determine how much to look ahead.
831          * The larger the error the slower we adjust for it to avoid problems
832          * with losing too many ticks, otherwise we would overadjust and
833          * produce an even larger error.  The smaller the adjustment the
834          * faster we try to adjust for it, as lost ticks can do less harm
835          * here.  This is tuned so that an error of about 1 msec is adusted
836          * within about 1 sec (or 2^20 nsec in 2^SHIFT_HZ ticks).
837          */
838         error2 = clock->error >> (TICK_LENGTH_SHIFT + 22 - 2 * SHIFT_HZ);
839         error2 = abs(error2);
840         for (look_ahead = 0; error2 > 0; look_ahead++)
841                 error2 >>= 2;
842
843         /*
844          * Now calculate the error in (1 << look_ahead) ticks, but first
845          * remove the single look ahead already included in the error.
846          */
847         tick_error = current_tick_length() >> (TICK_LENGTH_SHIFT - clock->shift + 1);
848         tick_error -= clock->xtime_interval >> 1;
849         error = ((error - tick_error) >> look_ahead) + tick_error;
850
851         /* Finally calculate the adjustment shift value.  */
852         i = *interval;
853         mult = 1;
854         if (error < 0) {
855                 error = -error;
856                 *interval = -*interval;
857                 *offset = -*offset;
858                 mult = -1;
859         }
860         for (adj = 0; error > i; adj++)
861                 error >>= 1;
862
863         *interval <<= adj;
864         *offset <<= adj;
865         return mult << adj;
866 }
867
868 /*
869  * Adjust the multiplier to reduce the error value,
870  * this is optimized for the most common adjustments of -1,0,1,
871  * for other values we can do a bit more work.
872  */
873 static void clocksource_adjust(struct clocksource *clock, s64 offset)
874 {
875         s64 error, interval = clock->cycle_interval;
876         int adj;
877
878         error = clock->error >> (TICK_LENGTH_SHIFT - clock->shift - 1);
879         if (error > interval) {
880                 error >>= 2;
881                 if (likely(error <= interval))
882                         adj = 1;
883                 else
884                         adj = clocksource_bigadjust(error, &interval, &offset);
885         } else if (error < -interval) {
886                 error >>= 2;
887                 if (likely(error >= -interval)) {
888                         adj = -1;
889                         interval = -interval;
890                         offset = -offset;
891                 } else
892                         adj = clocksource_bigadjust(error, &interval, &offset);
893         } else
894                 return;
895
896         clock->mult += adj;
897         clock->xtime_interval += interval;
898         clock->xtime_nsec -= offset;
899         clock->error -= (interval - offset) << (TICK_LENGTH_SHIFT - clock->shift);
900 }
901
902 /**
903  * update_wall_time - Uses the current clocksource to increment the wall time
904  *
905  * Called from the timer interrupt, must hold a write on xtime_lock.
906  */
907 static void update_wall_time(void)
908 {
909         cycle_t offset;
910
911         /* Make sure we're fully resumed: */
912         if (unlikely(timekeeping_suspended))
913                 return;
914
915 #ifdef CONFIG_GENERIC_TIME
916         offset = (clocksource_read(clock) - clock->cycle_last) & clock->mask;
917 #else
918         offset = clock->cycle_interval;
919 #endif
920         clock->xtime_nsec += (s64)xtime.tv_nsec << clock->shift;
921
922         /* normally this loop will run just once, however in the
923          * case of lost or late ticks, it will accumulate correctly.
924          */
925         while (offset >= clock->cycle_interval) {
926                 /* accumulate one interval */
927                 clock->xtime_nsec += clock->xtime_interval;
928                 clock->cycle_last += clock->cycle_interval;
929                 offset -= clock->cycle_interval;
930
931                 if (clock->xtime_nsec >= (u64)NSEC_PER_SEC << clock->shift) {
932                         clock->xtime_nsec -= (u64)NSEC_PER_SEC << clock->shift;
933                         xtime.tv_sec++;
934                         second_overflow();
935                 }
936
937                 /* interpolator bits */
938                 time_interpolator_update(clock->xtime_interval
939                                                 >> clock->shift);
940                 /* increment the NTP state machine */
941                 update_ntp_one_tick();
942
943                 /* accumulate error between NTP and clock interval */
944                 clock->error += current_tick_length();
945                 clock->error -= clock->xtime_interval << (TICK_LENGTH_SHIFT - clock->shift);
946         }
947
948         /* correct the clock when NTP error is too big */
949         clocksource_adjust(clock, offset);
950
951         /* store full nanoseconds into xtime */
952         xtime.tv_nsec = (s64)clock->xtime_nsec >> clock->shift;
953         clock->xtime_nsec -= (s64)xtime.tv_nsec << clock->shift;
954
955         /* check to see if there is a new clocksource to use */
956         if (change_clocksource()) {
957                 clock->error = 0;
958                 clock->xtime_nsec = 0;
959                 clocksource_calculate_interval(clock, tick_nsec);
960         }
961 }
962
963 /*
964  * Called from the timer interrupt handler to charge one tick to the current 
965  * process.  user_tick is 1 if the tick is user time, 0 for system.
966  */
967 void update_process_times(int user_tick)
968 {
969         struct task_struct *p = current;
970         int cpu = smp_processor_id();
971
972         /* Note: this timer irq context must be accounted for as well. */
973         if (user_tick)
974                 account_user_time(p, jiffies_to_cputime(1));
975         else
976                 account_system_time(p, HARDIRQ_OFFSET, jiffies_to_cputime(1));
977         run_local_timers();
978         if (rcu_pending(cpu))
979                 rcu_check_callbacks(cpu, user_tick);
980         scheduler_tick();
981         run_posix_cpu_timers(p);
982 }
983
984 /*
985  * Nr of active tasks - counted in fixed-point numbers
986  */
987 static unsigned long count_active_tasks(void)
988 {
989         return nr_active() * FIXED_1;
990 }
991
992 /*
993  * Hmm.. Changed this, as the GNU make sources (load.c) seems to
994  * imply that avenrun[] is the standard name for this kind of thing.
995  * Nothing else seems to be standardized: the fractional size etc
996  * all seem to differ on different machines.
997  *
998  * Requires xtime_lock to access.
999  */
1000 unsigned long avenrun[3];
1001
1002 EXPORT_SYMBOL(avenrun);
1003
1004 /*
1005  * calc_load - given tick count, update the avenrun load estimates.
1006  * This is called while holding a write_lock on xtime_lock.
1007  */
1008 static inline void calc_load(unsigned long ticks)
1009 {
1010         unsigned long active_tasks; /* fixed-point */
1011         static int count = LOAD_FREQ;
1012
1013         active_tasks = count_active_tasks();
1014         for (count -= ticks; count < 0; count += LOAD_FREQ) {
1015                 CALC_LOAD(avenrun[0], EXP_1, active_tasks);
1016                 CALC_LOAD(avenrun[1], EXP_5, active_tasks);
1017                 CALC_LOAD(avenrun[2], EXP_15, active_tasks);
1018         }
1019 }
1020
1021 /* jiffies at the most recent update of wall time */
1022 unsigned long wall_jiffies = INITIAL_JIFFIES;
1023
1024 /*
1025  * This read-write spinlock protects us from races in SMP while
1026  * playing with xtime and avenrun.
1027  */
1028 #ifndef ARCH_HAVE_XTIME_LOCK
1029 __cacheline_aligned_in_smp DEFINE_SEQLOCK(xtime_lock);
1030
1031 EXPORT_SYMBOL(xtime_lock);
1032 #endif
1033
1034 /*
1035  * This function runs timers and the timer-tq in bottom half context.
1036  */
1037 static void run_timer_softirq(struct softirq_action *h)
1038 {
1039         tvec_base_t *base = __get_cpu_var(tvec_bases);
1040
1041         hrtimer_run_queues();
1042         if (time_after_eq(jiffies, base->timer_jiffies))
1043                 __run_timers(base);
1044 }
1045
1046 /*
1047  * Called by the local, per-CPU timer interrupt on SMP.
1048  */
1049 void run_local_timers(void)
1050 {
1051         raise_softirq(TIMER_SOFTIRQ);
1052         softlockup_tick();
1053 }
1054
1055 /*
1056  * Called by the timer interrupt. xtime_lock must already be taken
1057  * by the timer IRQ!
1058  */
1059 static inline void update_times(unsigned long ticks)
1060 {
1061         wall_jiffies += ticks;
1062         update_wall_time();
1063         calc_load(ticks);
1064 }
1065   
1066 /*
1067  * The 64-bit jiffies value is not atomic - you MUST NOT read it
1068  * without sampling the sequence number in xtime_lock.
1069  * jiffies is defined in the linker script...
1070  */
1071
1072 void do_timer(unsigned long ticks)
1073 {
1074         jiffies_64 += ticks;
1075         update_times(ticks);
1076 }
1077
1078 #ifdef __ARCH_WANT_SYS_ALARM
1079
1080 /*
1081  * For backwards compatibility?  This can be done in libc so Alpha
1082  * and all newer ports shouldn't need it.
1083  */
1084 asmlinkage unsigned long sys_alarm(unsigned int seconds)
1085 {
1086         return alarm_setitimer(seconds);
1087 }
1088
1089 #endif
1090
1091 #ifndef __alpha__
1092
1093 /*
1094  * The Alpha uses getxpid, getxuid, and getxgid instead.  Maybe this
1095  * should be moved into arch/i386 instead?
1096  */
1097
1098 /**
1099  * sys_getpid - return the thread group id of the current process
1100  *
1101  * Note, despite the name, this returns the tgid not the pid.  The tgid and
1102  * the pid are identical unless CLONE_THREAD was specified on clone() in
1103  * which case the tgid is the same in all threads of the same group.
1104  *
1105  * This is SMP safe as current->tgid does not change.
1106  */
1107 asmlinkage long sys_getpid(void)
1108 {
1109         return current->tgid;
1110 }
1111
1112 /*
1113  * Accessing ->real_parent is not SMP-safe, it could
1114  * change from under us. However, we can use a stale
1115  * value of ->real_parent under rcu_read_lock(), see
1116  * release_task()->call_rcu(delayed_put_task_struct).
1117  */
1118 asmlinkage long sys_getppid(void)
1119 {
1120         int pid;
1121
1122         rcu_read_lock();
1123         pid = rcu_dereference(current->real_parent)->tgid;
1124         rcu_read_unlock();
1125
1126         return pid;
1127 }
1128
1129 asmlinkage long sys_getuid(void)
1130 {
1131         /* Only we change this so SMP safe */
1132         return current->uid;
1133 }
1134
1135 asmlinkage long sys_geteuid(void)
1136 {
1137         /* Only we change this so SMP safe */
1138         return current->euid;
1139 }
1140
1141 asmlinkage long sys_getgid(void)
1142 {
1143         /* Only we change this so SMP safe */
1144         return current->gid;
1145 }
1146
1147 asmlinkage long sys_getegid(void)
1148 {
1149         /* Only we change this so SMP safe */
1150         return  current->egid;
1151 }
1152
1153 #endif
1154
1155 static void process_timeout(unsigned long __data)
1156 {
1157         wake_up_process((struct task_struct *)__data);
1158 }
1159
1160 /**
1161  * schedule_timeout - sleep until timeout
1162  * @timeout: timeout value in jiffies
1163  *
1164  * Make the current task sleep until @timeout jiffies have
1165  * elapsed. The routine will return immediately unless
1166  * the current task state has been set (see set_current_state()).
1167  *
1168  * You can set the task state as follows -
1169  *
1170  * %TASK_UNINTERRUPTIBLE - at least @timeout jiffies are guaranteed to
1171  * pass before the routine returns. The routine will return 0
1172  *
1173  * %TASK_INTERRUPTIBLE - the routine may return early if a signal is
1174  * delivered to the current task. In this case the remaining time
1175  * in jiffies will be returned, or 0 if the timer expired in time
1176  *
1177  * The current task state is guaranteed to be TASK_RUNNING when this
1178  * routine returns.
1179  *
1180  * Specifying a @timeout value of %MAX_SCHEDULE_TIMEOUT will schedule
1181  * the CPU away without a bound on the timeout. In this case the return
1182  * value will be %MAX_SCHEDULE_TIMEOUT.
1183  *
1184  * In all cases the return value is guaranteed to be non-negative.
1185  */
1186 fastcall signed long __sched schedule_timeout(signed long timeout)
1187 {
1188         struct timer_list timer;
1189         unsigned long expire;
1190
1191         switch (timeout)
1192         {
1193         case MAX_SCHEDULE_TIMEOUT:
1194                 /*
1195                  * These two special cases are useful to be comfortable
1196                  * in the caller. Nothing more. We could take
1197                  * MAX_SCHEDULE_TIMEOUT from one of the negative value
1198                  * but I' d like to return a valid offset (>=0) to allow
1199                  * the caller to do everything it want with the retval.
1200                  */
1201                 schedule();
1202                 goto out;
1203         default:
1204                 /*
1205                  * Another bit of PARANOID. Note that the retval will be
1206                  * 0 since no piece of kernel is supposed to do a check
1207                  * for a negative retval of schedule_timeout() (since it
1208                  * should never happens anyway). You just have the printk()
1209                  * that will tell you if something is gone wrong and where.
1210                  */
1211                 if (timeout < 0)
1212                 {
1213                         printk(KERN_ERR "schedule_timeout: wrong timeout "
1214                                 "value %lx from %p\n", timeout,
1215                                 __builtin_return_address(0));
1216                         current->state = TASK_RUNNING;
1217                         goto out;
1218                 }
1219         }
1220
1221         expire = timeout + jiffies;
1222
1223         setup_timer(&timer, process_timeout, (unsigned long)current);
1224         __mod_timer(&timer, expire);
1225         schedule();
1226         del_singleshot_timer_sync(&timer);
1227
1228         timeout = expire - jiffies;
1229
1230  out:
1231         return timeout < 0 ? 0 : timeout;
1232 }
1233 EXPORT_SYMBOL(schedule_timeout);
1234
1235 /*
1236  * We can use __set_current_state() here because schedule_timeout() calls
1237  * schedule() unconditionally.
1238  */
1239 signed long __sched schedule_timeout_interruptible(signed long timeout)
1240 {
1241         __set_current_state(TASK_INTERRUPTIBLE);
1242         return schedule_timeout(timeout);
1243 }
1244 EXPORT_SYMBOL(schedule_timeout_interruptible);
1245
1246 signed long __sched schedule_timeout_uninterruptible(signed long timeout)
1247 {
1248         __set_current_state(TASK_UNINTERRUPTIBLE);
1249         return schedule_timeout(timeout);
1250 }
1251 EXPORT_SYMBOL(schedule_timeout_uninterruptible);
1252
1253 /* Thread ID - the internal kernel "pid" */
1254 asmlinkage long sys_gettid(void)
1255 {
1256         return current->pid;
1257 }
1258
1259 /**
1260  * sys_sysinfo - fill in sysinfo struct
1261  * @info: pointer to buffer to fill
1262  */ 
1263 asmlinkage long sys_sysinfo(struct sysinfo __user *info)
1264 {
1265         struct sysinfo val;
1266         unsigned long mem_total, sav_total;
1267         unsigned int mem_unit, bitcount;
1268         unsigned long seq;
1269
1270         memset((char *)&val, 0, sizeof(struct sysinfo));
1271
1272         do {
1273                 struct timespec tp;
1274                 seq = read_seqbegin(&xtime_lock);
1275
1276                 /*
1277                  * This is annoying.  The below is the same thing
1278                  * posix_get_clock_monotonic() does, but it wants to
1279                  * take the lock which we want to cover the loads stuff
1280                  * too.
1281                  */
1282
1283                 getnstimeofday(&tp);
1284                 tp.tv_sec += wall_to_monotonic.tv_sec;
1285                 tp.tv_nsec += wall_to_monotonic.tv_nsec;
1286                 if (tp.tv_nsec - NSEC_PER_SEC >= 0) {
1287                         tp.tv_nsec = tp.tv_nsec - NSEC_PER_SEC;
1288                         tp.tv_sec++;
1289                 }
1290                 val.uptime = tp.tv_sec + (tp.tv_nsec ? 1 : 0);
1291
1292                 val.loads[0] = avenrun[0] << (SI_LOAD_SHIFT - FSHIFT);
1293                 val.loads[1] = avenrun[1] << (SI_LOAD_SHIFT - FSHIFT);
1294                 val.loads[2] = avenrun[2] << (SI_LOAD_SHIFT - FSHIFT);
1295
1296                 val.procs = nr_threads;
1297         } while (read_seqretry(&xtime_lock, seq));
1298
1299         si_meminfo(&val);
1300         si_swapinfo(&val);
1301
1302         /*
1303          * If the sum of all the available memory (i.e. ram + swap)
1304          * is less than can be stored in a 32 bit unsigned long then
1305          * we can be binary compatible with 2.2.x kernels.  If not,
1306          * well, in that case 2.2.x was broken anyways...
1307          *
1308          *  -Erik Andersen <andersee@debian.org>
1309          */
1310
1311         mem_total = val.totalram + val.totalswap;
1312         if (mem_total < val.totalram || mem_total < val.totalswap)
1313                 goto out;
1314         bitcount = 0;
1315         mem_unit = val.mem_unit;
1316         while (mem_unit > 1) {
1317                 bitcount++;
1318                 mem_unit >>= 1;
1319                 sav_total = mem_total;
1320                 mem_total <<= 1;
1321                 if (mem_total < sav_total)
1322                         goto out;
1323         }
1324
1325         /*
1326          * If mem_total did not overflow, multiply all memory values by
1327          * val.mem_unit and set it to 1.  This leaves things compatible
1328          * with 2.2.x, and also retains compatibility with earlier 2.4.x
1329          * kernels...
1330          */
1331
1332         val.mem_unit = 1;
1333         val.totalram <<= bitcount;
1334         val.freeram <<= bitcount;
1335         val.sharedram <<= bitcount;
1336         val.bufferram <<= bitcount;
1337         val.totalswap <<= bitcount;
1338         val.freeswap <<= bitcount;
1339         val.totalhigh <<= bitcount;
1340         val.freehigh <<= bitcount;
1341
1342  out:
1343         if (copy_to_user(info, &val, sizeof(struct sysinfo)))
1344                 return -EFAULT;
1345
1346         return 0;
1347 }
1348
1349 /*
1350  * lockdep: we want to track each per-CPU base as a separate lock-class,
1351  * but timer-bases are kmalloc()-ed, so we need to attach separate
1352  * keys to them:
1353  */
1354 static struct lock_class_key base_lock_keys[NR_CPUS];
1355
1356 static int __devinit init_timers_cpu(int cpu)
1357 {
1358         int j;
1359         tvec_base_t *base;
1360         static char __devinitdata tvec_base_done[NR_CPUS];
1361
1362         if (!tvec_base_done[cpu]) {
1363                 static char boot_done;
1364
1365                 if (boot_done) {
1366                         /*
1367                          * The APs use this path later in boot
1368                          */
1369                         base = kmalloc_node(sizeof(*base), GFP_KERNEL,
1370                                                 cpu_to_node(cpu));
1371                         if (!base)
1372                                 return -ENOMEM;
1373                         memset(base, 0, sizeof(*base));
1374                         per_cpu(tvec_bases, cpu) = base;
1375                 } else {
1376                         /*
1377                          * This is for the boot CPU - we use compile-time
1378                          * static initialisation because per-cpu memory isn't
1379                          * ready yet and because the memory allocators are not
1380                          * initialised either.
1381                          */
1382                         boot_done = 1;
1383                         base = &boot_tvec_bases;
1384                 }
1385                 tvec_base_done[cpu] = 1;
1386         } else {
1387                 base = per_cpu(tvec_bases, cpu);
1388         }
1389
1390         spin_lock_init(&base->lock);
1391         lockdep_set_class(&base->lock, base_lock_keys + cpu);
1392
1393         for (j = 0; j < TVN_SIZE; j++) {
1394                 INIT_LIST_HEAD(base->tv5.vec + j);
1395                 INIT_LIST_HEAD(base->tv4.vec + j);
1396                 INIT_LIST_HEAD(base->tv3.vec + j);
1397                 INIT_LIST_HEAD(base->tv2.vec + j);
1398         }
1399         for (j = 0; j < TVR_SIZE; j++)
1400                 INIT_LIST_HEAD(base->tv1.vec + j);
1401
1402         base->timer_jiffies = jiffies;
1403         return 0;
1404 }
1405
1406 #ifdef CONFIG_HOTPLUG_CPU
1407 static void migrate_timer_list(tvec_base_t *new_base, struct list_head *head)
1408 {
1409         struct timer_list *timer;
1410
1411         while (!list_empty(head)) {
1412                 timer = list_entry(head->next, struct timer_list, entry);
1413                 detach_timer(timer, 0);
1414                 timer->base = new_base;
1415                 internal_add_timer(new_base, timer);
1416         }
1417 }
1418
1419 static void __devinit migrate_timers(int cpu)
1420 {
1421         tvec_base_t *old_base;
1422         tvec_base_t *new_base;
1423         int i;
1424
1425         BUG_ON(cpu_online(cpu));
1426         old_base = per_cpu(tvec_bases, cpu);
1427         new_base = get_cpu_var(tvec_bases);
1428
1429         local_irq_disable();
1430         spin_lock(&new_base->lock);
1431         spin_lock(&old_base->lock);
1432
1433         BUG_ON(old_base->running_timer);
1434
1435         for (i = 0; i < TVR_SIZE; i++)
1436                 migrate_timer_list(new_base, old_base->tv1.vec + i);
1437         for (i = 0; i < TVN_SIZE; i++) {
1438                 migrate_timer_list(new_base, old_base->tv2.vec + i);
1439                 migrate_timer_list(new_base, old_base->tv3.vec + i);
1440                 migrate_timer_list(new_base, old_base->tv4.vec + i);
1441                 migrate_timer_list(new_base, old_base->tv5.vec + i);
1442         }
1443
1444         spin_unlock(&old_base->lock);
1445         spin_unlock(&new_base->lock);
1446         local_irq_enable();
1447         put_cpu_var(tvec_bases);
1448 }
1449 #endif /* CONFIG_HOTPLUG_CPU */
1450
1451 static int __cpuinit timer_cpu_notify(struct notifier_block *self,
1452                                 unsigned long action, void *hcpu)
1453 {
1454         long cpu = (long)hcpu;
1455         switch(action) {
1456         case CPU_UP_PREPARE:
1457                 if (init_timers_cpu(cpu) < 0)
1458                         return NOTIFY_BAD;
1459                 break;
1460 #ifdef CONFIG_HOTPLUG_CPU
1461         case CPU_DEAD:
1462                 migrate_timers(cpu);
1463                 break;
1464 #endif
1465         default:
1466                 break;
1467         }
1468         return NOTIFY_OK;
1469 }
1470
1471 static struct notifier_block __cpuinitdata timers_nb = {
1472         .notifier_call  = timer_cpu_notify,
1473 };
1474
1475
1476 void __init init_timers(void)
1477 {
1478         int err = timer_cpu_notify(&timers_nb, (unsigned long)CPU_UP_PREPARE,
1479                                 (void *)(long)smp_processor_id());
1480
1481         BUG_ON(err == NOTIFY_BAD);
1482         register_cpu_notifier(&timers_nb);
1483         open_softirq(TIMER_SOFTIRQ, run_timer_softirq, NULL);
1484 }
1485
1486 #ifdef CONFIG_TIME_INTERPOLATION
1487
1488 struct time_interpolator *time_interpolator __read_mostly;
1489 static struct time_interpolator *time_interpolator_list __read_mostly;
1490 static DEFINE_SPINLOCK(time_interpolator_lock);
1491
1492 static inline u64 time_interpolator_get_cycles(unsigned int src)
1493 {
1494         unsigned long (*x)(void);
1495
1496         switch (src)
1497         {
1498                 case TIME_SOURCE_FUNCTION:
1499                         x = time_interpolator->addr;
1500                         return x();
1501
1502                 case TIME_SOURCE_MMIO64 :
1503                         return readq_relaxed((void __iomem *)time_interpolator->addr);
1504
1505                 case TIME_SOURCE_MMIO32 :
1506                         return readl_relaxed((void __iomem *)time_interpolator->addr);
1507
1508                 default: return get_cycles();
1509         }
1510 }
1511
1512 static inline u64 time_interpolator_get_counter(int writelock)
1513 {
1514         unsigned int src = time_interpolator->source;
1515
1516         if (time_interpolator->jitter)
1517         {
1518                 u64 lcycle;
1519                 u64 now;
1520
1521                 do {
1522                         lcycle = time_interpolator->last_cycle;
1523                         now = time_interpolator_get_cycles(src);
1524                         if (lcycle && time_after(lcycle, now))
1525                                 return lcycle;
1526
1527                         /* When holding the xtime write lock, there's no need
1528                          * to add the overhead of the cmpxchg.  Readers are
1529                          * force to retry until the write lock is released.
1530                          */
1531                         if (writelock) {
1532                                 time_interpolator->last_cycle = now;
1533                                 return now;
1534                         }
1535                         /* Keep track of the last timer value returned. The use of cmpxchg here
1536                          * will cause contention in an SMP environment.
1537                          */
1538                 } while (unlikely(cmpxchg(&time_interpolator->last_cycle, lcycle, now) != lcycle));
1539                 return now;
1540         }
1541         else
1542                 return time_interpolator_get_cycles(src);
1543 }
1544
1545 void time_interpolator_reset(void)
1546 {
1547         time_interpolator->offset = 0;
1548         time_interpolator->last_counter = time_interpolator_get_counter(1);
1549 }
1550
1551 #define GET_TI_NSECS(count,i) (((((count) - i->last_counter) & (i)->mask) * (i)->nsec_per_cyc) >> (i)->shift)
1552
1553 unsigned long time_interpolator_get_offset(void)
1554 {
1555         /* If we do not have a time interpolator set up then just return zero */
1556         if (!time_interpolator)
1557                 return 0;
1558
1559         return time_interpolator->offset +
1560                 GET_TI_NSECS(time_interpolator_get_counter(0), time_interpolator);
1561 }
1562
1563 #define INTERPOLATOR_ADJUST 65536
1564 #define INTERPOLATOR_MAX_SKIP 10*INTERPOLATOR_ADJUST
1565
1566 void time_interpolator_update(long delta_nsec)
1567 {
1568         u64 counter;
1569         unsigned long offset;
1570
1571         /* If there is no time interpolator set up then do nothing */
1572         if (!time_interpolator)
1573                 return;
1574
1575         /*
1576          * The interpolator compensates for late ticks by accumulating the late
1577          * time in time_interpolator->offset. A tick earlier than expected will
1578          * lead to a reset of the offset and a corresponding jump of the clock
1579          * forward. Again this only works if the interpolator clock is running
1580          * slightly slower than the regular clock and the tuning logic insures
1581          * that.
1582          */
1583
1584         counter = time_interpolator_get_counter(1);
1585         offset = time_interpolator->offset +
1586                         GET_TI_NSECS(counter, time_interpolator);
1587
1588         if (delta_nsec < 0 || (unsigned long) delta_nsec < offset)
1589                 time_interpolator->offset = offset - delta_nsec;
1590         else {
1591                 time_interpolator->skips++;
1592                 time_interpolator->ns_skipped += delta_nsec - offset;
1593                 time_interpolator->offset = 0;
1594         }
1595         time_interpolator->last_counter = counter;
1596
1597         /* Tuning logic for time interpolator invoked every minute or so.
1598          * Decrease interpolator clock speed if no skips occurred and an offset is carried.
1599          * Increase interpolator clock speed if we skip too much time.
1600          */
1601         if (jiffies % INTERPOLATOR_ADJUST == 0)
1602         {
1603                 if (time_interpolator->skips == 0 && time_interpolator->offset > tick_nsec)
1604                         time_interpolator->nsec_per_cyc--;
1605                 if (time_interpolator->ns_skipped > INTERPOLATOR_MAX_SKIP && time_interpolator->offset == 0)
1606                         time_interpolator->nsec_per_cyc++;
1607                 time_interpolator->skips = 0;
1608                 time_interpolator->ns_skipped = 0;
1609         }
1610 }
1611
1612 static inline int
1613 is_better_time_interpolator(struct time_interpolator *new)
1614 {
1615         if (!time_interpolator)
1616                 return 1;
1617         return new->frequency > 2*time_interpolator->frequency ||
1618             (unsigned long)new->drift < (unsigned long)time_interpolator->drift;
1619 }
1620
1621 void
1622 register_time_interpolator(struct time_interpolator *ti)
1623 {
1624         unsigned long flags;
1625
1626         /* Sanity check */
1627         BUG_ON(ti->frequency == 0 || ti->mask == 0);
1628
1629         ti->nsec_per_cyc = ((u64)NSEC_PER_SEC << ti->shift) / ti->frequency;
1630         spin_lock(&time_interpolator_lock);
1631         write_seqlock_irqsave(&xtime_lock, flags);
1632         if (is_better_time_interpolator(ti)) {
1633                 time_interpolator = ti;
1634                 time_interpolator_reset();
1635         }
1636         write_sequnlock_irqrestore(&xtime_lock, flags);
1637
1638         ti->next = time_interpolator_list;
1639         time_interpolator_list = ti;
1640         spin_unlock(&time_interpolator_lock);
1641 }
1642
1643 void
1644 unregister_time_interpolator(struct time_interpolator *ti)
1645 {
1646         struct time_interpolator *curr, **prev;
1647         unsigned long flags;
1648
1649         spin_lock(&time_interpolator_lock);
1650         prev = &time_interpolator_list;
1651         for (curr = *prev; curr; curr = curr->next) {
1652                 if (curr == ti) {
1653                         *prev = curr->next;
1654                         break;
1655                 }
1656                 prev = &curr->next;
1657         }
1658
1659         write_seqlock_irqsave(&xtime_lock, flags);
1660         if (ti == time_interpolator) {
1661                 /* we lost the best time-interpolator: */
1662                 time_interpolator = NULL;
1663                 /* find the next-best interpolator */
1664                 for (curr = time_interpolator_list; curr; curr = curr->next)
1665                         if (is_better_time_interpolator(curr))
1666                                 time_interpolator = curr;
1667                 time_interpolator_reset();
1668         }
1669         write_sequnlock_irqrestore(&xtime_lock, flags);
1670         spin_unlock(&time_interpolator_lock);
1671 }
1672 #endif /* CONFIG_TIME_INTERPOLATION */
1673
1674 /**
1675  * msleep - sleep safely even with waitqueue interruptions
1676  * @msecs: Time in milliseconds to sleep for
1677  */
1678 void msleep(unsigned int msecs)
1679 {
1680         unsigned long timeout = msecs_to_jiffies(msecs) + 1;
1681
1682         while (timeout)
1683                 timeout = schedule_timeout_uninterruptible(timeout);
1684 }
1685
1686 EXPORT_SYMBOL(msleep);
1687
1688 /**
1689  * msleep_interruptible - sleep waiting for signals
1690  * @msecs: Time in milliseconds to sleep for
1691  */
1692 unsigned long msleep_interruptible(unsigned int msecs)
1693 {
1694         unsigned long timeout = msecs_to_jiffies(msecs) + 1;
1695
1696         while (timeout && !signal_pending(current))
1697                 timeout = schedule_timeout_interruptible(timeout);
1698         return jiffies_to_msecs(timeout);
1699 }
1700
1701 EXPORT_SYMBOL(msleep_interruptible);