2006-01-09 23:52:32 -05:00
|
|
|
/*
|
|
|
|
* linux/kernel/hrtimer.c
|
|
|
|
*
|
|
|
|
* Copyright(C) 2005, Thomas Gleixner <tglx@linutronix.de>
|
|
|
|
* Copyright(C) 2005, Red Hat, Inc., Ingo Molnar
|
|
|
|
*
|
|
|
|
* High-resolution kernel timers
|
|
|
|
*
|
|
|
|
* In contrast to the low-resolution timeout API implemented in
|
|
|
|
* kernel/timer.c, hrtimers provide finer resolution and accuracy
|
|
|
|
* depending on system configuration and capabilities.
|
|
|
|
*
|
|
|
|
* These timers are currently used for:
|
|
|
|
* - itimers
|
|
|
|
* - POSIX timers
|
|
|
|
* - nanosleep
|
|
|
|
* - precise in-kernel timing
|
|
|
|
*
|
|
|
|
* Started by: Thomas Gleixner and Ingo Molnar
|
|
|
|
*
|
|
|
|
* Credits:
|
|
|
|
* based on kernel/timer.c
|
|
|
|
*
|
2006-02-01 06:05:13 -05:00
|
|
|
* Help, testing, suggestions, bugfixes, improvements were
|
|
|
|
* provided by:
|
|
|
|
*
|
|
|
|
* George Anzinger, Andrew Morton, Steven Rostedt, Roman Zippel
|
|
|
|
* et. al.
|
|
|
|
*
|
2006-01-09 23:52:32 -05:00
|
|
|
* For licencing details see kernel-base/COPYING
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/cpu.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/percpu.h>
|
|
|
|
#include <linux/hrtimer.h>
|
|
|
|
#include <linux/notifier.h>
|
|
|
|
#include <linux/syscalls.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
|
|
|
|
#include <asm/uaccess.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ktime_get - get the monotonic time in ktime_t format
|
|
|
|
*
|
|
|
|
* returns the time in ktime_t format
|
|
|
|
*/
|
|
|
|
static ktime_t ktime_get(void)
|
|
|
|
{
|
|
|
|
struct timespec now;
|
|
|
|
|
|
|
|
ktime_get_ts(&now);
|
|
|
|
|
|
|
|
return timespec_to_ktime(now);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ktime_get_real - get the real (wall-) time in ktime_t format
|
|
|
|
*
|
|
|
|
* returns the time in ktime_t format
|
|
|
|
*/
|
|
|
|
static ktime_t ktime_get_real(void)
|
|
|
|
{
|
|
|
|
struct timespec now;
|
|
|
|
|
|
|
|
getnstimeofday(&now);
|
|
|
|
|
|
|
|
return timespec_to_ktime(now);
|
|
|
|
}
|
|
|
|
|
|
|
|
EXPORT_SYMBOL_GPL(ktime_get_real);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The timer bases:
|
2006-02-01 06:05:11 -05:00
|
|
|
*
|
|
|
|
* Note: If we want to add new timer bases, we have to skip the two
|
|
|
|
* clock ids captured by the cpu-timers. We do this by holding empty
|
|
|
|
* entries rather than doing math adjustment of the clock ids.
|
|
|
|
* This ensures that we capture erroneous accesses to these clock ids
|
|
|
|
* rather than moving them into the range of valid clock id's.
|
2006-01-09 23:52:32 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define MAX_HRTIMER_BASES 2
|
|
|
|
|
|
|
|
static DEFINE_PER_CPU(struct hrtimer_base, hrtimer_bases[MAX_HRTIMER_BASES]) =
|
|
|
|
{
|
|
|
|
{
|
|
|
|
.index = CLOCK_REALTIME,
|
|
|
|
.get_time = &ktime_get_real,
|
|
|
|
.resolution = KTIME_REALTIME_RES,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.index = CLOCK_MONOTONIC,
|
|
|
|
.get_time = &ktime_get,
|
|
|
|
.resolution = KTIME_MONOTONIC_RES,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ktime_get_ts - get the monotonic clock in timespec format
|
|
|
|
* @ts: pointer to timespec variable
|
|
|
|
*
|
|
|
|
* The function calculates the monotonic clock from the realtime
|
|
|
|
* clock and the wall_to_monotonic offset and stores the result
|
|
|
|
* in normalized timespec format in the variable pointed to by ts.
|
|
|
|
*/
|
|
|
|
void ktime_get_ts(struct timespec *ts)
|
|
|
|
{
|
|
|
|
struct timespec tomono;
|
|
|
|
unsigned long seq;
|
|
|
|
|
|
|
|
do {
|
|
|
|
seq = read_seqbegin(&xtime_lock);
|
|
|
|
getnstimeofday(ts);
|
|
|
|
tomono = wall_to_monotonic;
|
|
|
|
|
|
|
|
} while (read_seqretry(&xtime_lock, seq));
|
|
|
|
|
|
|
|
set_normalized_timespec(ts, ts->tv_sec + tomono.tv_sec,
|
|
|
|
ts->tv_nsec + tomono.tv_nsec);
|
|
|
|
}
|
2006-01-09 23:52:39 -05:00
|
|
|
EXPORT_SYMBOL_GPL(ktime_get_ts);
|
2006-01-09 23:52:32 -05:00
|
|
|
|
2006-03-26 04:38:05 -05:00
|
|
|
/*
|
|
|
|
* Get the coarse grained time at the softirq based on xtime and
|
|
|
|
* wall_to_monotonic.
|
|
|
|
*/
|
|
|
|
static void hrtimer_get_softirq_time(struct hrtimer_base *base)
|
|
|
|
{
|
|
|
|
ktime_t xtim, tomono;
|
|
|
|
unsigned long seq;
|
|
|
|
|
|
|
|
do {
|
|
|
|
seq = read_seqbegin(&xtime_lock);
|
|
|
|
xtim = timespec_to_ktime(xtime);
|
|
|
|
tomono = timespec_to_ktime(wall_to_monotonic);
|
|
|
|
|
|
|
|
} while (read_seqretry(&xtime_lock, seq));
|
|
|
|
|
|
|
|
base[CLOCK_REALTIME].softirq_time = xtim;
|
|
|
|
base[CLOCK_MONOTONIC].softirq_time = ktime_add(xtim, tomono);
|
|
|
|
}
|
|
|
|
|
2006-01-09 23:52:32 -05:00
|
|
|
/*
|
|
|
|
* Functions and macros which are different for UP/SMP systems are kept in a
|
|
|
|
* single place
|
|
|
|
*/
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
|
|
|
|
#define set_curr_timer(b, t) do { (b)->curr_timer = (t); } while (0)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We are using hashed locking: holding per_cpu(hrtimer_bases)[n].lock
|
|
|
|
* means that all timers which are tied to this base via timer->base are
|
|
|
|
* locked, and the base itself is locked too.
|
|
|
|
*
|
|
|
|
* So __run_timers/migrate_timers can safely modify all timers which could
|
|
|
|
* be found on the lists/queues.
|
|
|
|
*
|
|
|
|
* When the timer's base is locked, and the timer removed from list, it is
|
|
|
|
* possible to set timer->base = NULL and drop the lock: the timer remains
|
|
|
|
* locked.
|
|
|
|
*/
|
|
|
|
static struct hrtimer_base *lock_hrtimer_base(const struct hrtimer *timer,
|
|
|
|
unsigned long *flags)
|
|
|
|
{
|
|
|
|
struct hrtimer_base *base;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
base = timer->base;
|
|
|
|
if (likely(base != NULL)) {
|
|
|
|
spin_lock_irqsave(&base->lock, *flags);
|
|
|
|
if (likely(base == timer->base))
|
|
|
|
return base;
|
|
|
|
/* The timer has migrated to another CPU: */
|
|
|
|
spin_unlock_irqrestore(&base->lock, *flags);
|
|
|
|
}
|
|
|
|
cpu_relax();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Switch the timer base to the current CPU when possible.
|
|
|
|
*/
|
|
|
|
static inline struct hrtimer_base *
|
|
|
|
switch_hrtimer_base(struct hrtimer *timer, struct hrtimer_base *base)
|
|
|
|
{
|
|
|
|
struct hrtimer_base *new_base;
|
|
|
|
|
|
|
|
new_base = &__get_cpu_var(hrtimer_bases[base->index]);
|
|
|
|
|
|
|
|
if (base != new_base) {
|
|
|
|
/*
|
|
|
|
* We are trying to schedule the timer on the local CPU.
|
|
|
|
* However we can't change timer's base while it is running,
|
|
|
|
* so we keep it on the same CPU. No hassle vs. reprogramming
|
|
|
|
* the event source in the high resolution case. The softirq
|
|
|
|
* code will take care of this when the timer function has
|
|
|
|
* completed. There is no conflict as we hold the lock until
|
|
|
|
* the timer is enqueued.
|
|
|
|
*/
|
|
|
|
if (unlikely(base->curr_timer == timer))
|
|
|
|
return base;
|
|
|
|
|
|
|
|
/* See the comment in lock_timer_base() */
|
|
|
|
timer->base = NULL;
|
|
|
|
spin_unlock(&base->lock);
|
|
|
|
spin_lock(&new_base->lock);
|
|
|
|
timer->base = new_base;
|
|
|
|
}
|
|
|
|
return new_base;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* CONFIG_SMP */
|
|
|
|
|
|
|
|
#define set_curr_timer(b, t) do { } while (0)
|
|
|
|
|
|
|
|
static inline struct hrtimer_base *
|
|
|
|
lock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
|
|
|
|
{
|
|
|
|
struct hrtimer_base *base = timer->base;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&base->lock, *flags);
|
|
|
|
|
|
|
|
return base;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define switch_hrtimer_base(t, b) (b)
|
|
|
|
|
|
|
|
#endif /* !CONFIG_SMP */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Functions for the union type storage format of ktime_t which are
|
|
|
|
* too large for inlining:
|
|
|
|
*/
|
|
|
|
#if BITS_PER_LONG < 64
|
|
|
|
# ifndef CONFIG_KTIME_SCALAR
|
|
|
|
/**
|
|
|
|
* ktime_add_ns - Add a scalar nanoseconds value to a ktime_t variable
|
|
|
|
* @kt: addend
|
|
|
|
* @nsec: the scalar nsec value to add
|
|
|
|
*
|
|
|
|
* Returns the sum of kt and nsec in ktime_t format
|
|
|
|
*/
|
|
|
|
ktime_t ktime_add_ns(const ktime_t kt, u64 nsec)
|
|
|
|
{
|
|
|
|
ktime_t tmp;
|
|
|
|
|
|
|
|
if (likely(nsec < NSEC_PER_SEC)) {
|
|
|
|
tmp.tv64 = nsec;
|
|
|
|
} else {
|
|
|
|
unsigned long rem = do_div(nsec, NSEC_PER_SEC);
|
|
|
|
|
|
|
|
tmp = ktime_set((long)nsec, rem);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ktime_add(kt, tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* CONFIG_KTIME_SCALAR */
|
|
|
|
|
|
|
|
# endif /* !CONFIG_KTIME_SCALAR */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Divide a ktime value by a nanosecond value
|
|
|
|
*/
|
2006-03-26 04:38:11 -05:00
|
|
|
static unsigned long ktime_divns(const ktime_t kt, s64 div)
|
2006-01-09 23:52:32 -05:00
|
|
|
{
|
|
|
|
u64 dclc, inc, dns;
|
|
|
|
int sft = 0;
|
|
|
|
|
|
|
|
dclc = dns = ktime_to_ns(kt);
|
|
|
|
inc = div;
|
|
|
|
/* Make sure the divisor is less than 2^32: */
|
|
|
|
while (div >> 32) {
|
|
|
|
sft++;
|
|
|
|
div >>= 1;
|
|
|
|
}
|
|
|
|
dclc >>= sft;
|
|
|
|
do_div(dclc, (unsigned long) div);
|
|
|
|
|
|
|
|
return (unsigned long) dclc;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* BITS_PER_LONG < 64 */
|
|
|
|
# define ktime_divns(kt, div) (unsigned long)((kt).tv64 / (div))
|
|
|
|
#endif /* BITS_PER_LONG >= 64 */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Counterpart to lock_timer_base above:
|
|
|
|
*/
|
|
|
|
static inline
|
|
|
|
void unlock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
|
|
|
|
{
|
|
|
|
spin_unlock_irqrestore(&timer->base->lock, *flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* hrtimer_forward - forward the timer expiry
|
|
|
|
* @timer: hrtimer to forward
|
2006-03-26 04:38:06 -05:00
|
|
|
* @now: forward past this time
|
2006-01-09 23:52:32 -05:00
|
|
|
* @interval: the interval to forward
|
|
|
|
*
|
|
|
|
* Forward the timer expiry so it will expire in the future.
|
2006-01-16 17:58:55 -05:00
|
|
|
* Returns the number of overruns.
|
2006-01-09 23:52:32 -05:00
|
|
|
*/
|
|
|
|
unsigned long
|
2006-03-26 04:38:06 -05:00
|
|
|
hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval)
|
2006-01-09 23:52:32 -05:00
|
|
|
{
|
|
|
|
unsigned long orun = 1;
|
2006-03-26 04:38:06 -05:00
|
|
|
ktime_t delta;
|
2006-01-09 23:52:32 -05:00
|
|
|
|
|
|
|
delta = ktime_sub(now, timer->expires);
|
|
|
|
|
|
|
|
if (delta.tv64 < 0)
|
|
|
|
return 0;
|
|
|
|
|
2006-01-12 05:47:34 -05:00
|
|
|
if (interval.tv64 < timer->base->resolution.tv64)
|
|
|
|
interval.tv64 = timer->base->resolution.tv64;
|
|
|
|
|
2006-01-09 23:52:32 -05:00
|
|
|
if (unlikely(delta.tv64 >= interval.tv64)) {
|
2006-03-26 04:38:11 -05:00
|
|
|
s64 incr = ktime_to_ns(interval);
|
2006-01-09 23:52:32 -05:00
|
|
|
|
|
|
|
orun = ktime_divns(delta, incr);
|
|
|
|
timer->expires = ktime_add_ns(timer->expires, incr * orun);
|
|
|
|
if (timer->expires.tv64 > now.tv64)
|
|
|
|
return orun;
|
|
|
|
/*
|
|
|
|
* This (and the ktime_add() below) is the
|
|
|
|
* correction for exact:
|
|
|
|
*/
|
|
|
|
orun++;
|
|
|
|
}
|
|
|
|
timer->expires = ktime_add(timer->expires, interval);
|
|
|
|
|
|
|
|
return orun;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* enqueue_hrtimer - internal function to (re)start a timer
|
|
|
|
*
|
|
|
|
* The timer is inserted in expiry order. Insertion into the
|
|
|
|
* red black tree is O(log(n)). Must hold the base lock.
|
|
|
|
*/
|
|
|
|
static void enqueue_hrtimer(struct hrtimer *timer, struct hrtimer_base *base)
|
|
|
|
{
|
|
|
|
struct rb_node **link = &base->active.rb_node;
|
|
|
|
struct rb_node *parent = NULL;
|
|
|
|
struct hrtimer *entry;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find the right place in the rbtree:
|
|
|
|
*/
|
|
|
|
while (*link) {
|
|
|
|
parent = *link;
|
|
|
|
entry = rb_entry(parent, struct hrtimer, node);
|
|
|
|
/*
|
|
|
|
* We dont care about collisions. Nodes with
|
|
|
|
* the same expiry time stay together.
|
|
|
|
*/
|
|
|
|
if (timer->expires.tv64 < entry->expires.tv64)
|
|
|
|
link = &(*link)->rb_left;
|
2006-01-12 05:25:54 -05:00
|
|
|
else
|
2006-01-09 23:52:32 -05:00
|
|
|
link = &(*link)->rb_right;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2006-01-12 05:25:54 -05:00
|
|
|
* Insert the timer to the rbtree and check whether it
|
|
|
|
* replaces the first pending timer
|
2006-01-09 23:52:32 -05:00
|
|
|
*/
|
|
|
|
rb_link_node(&timer->node, parent, link);
|
|
|
|
rb_insert_color(&timer->node, &base->active);
|
|
|
|
|
2006-01-12 05:25:54 -05:00
|
|
|
if (!base->first || timer->expires.tv64 <
|
|
|
|
rb_entry(base->first, struct hrtimer, node)->expires.tv64)
|
|
|
|
base->first = &timer->node;
|
|
|
|
}
|
2006-01-09 23:52:32 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* __remove_hrtimer - internal function to remove a timer
|
|
|
|
*
|
|
|
|
* Caller must hold the base lock.
|
|
|
|
*/
|
|
|
|
static void __remove_hrtimer(struct hrtimer *timer, struct hrtimer_base *base)
|
|
|
|
{
|
|
|
|
/*
|
2006-01-12 05:25:54 -05:00
|
|
|
* Remove the timer from the rbtree and replace the
|
|
|
|
* first entry pointer if necessary.
|
2006-01-09 23:52:32 -05:00
|
|
|
*/
|
2006-01-12 05:25:54 -05:00
|
|
|
if (base->first == &timer->node)
|
|
|
|
base->first = rb_next(&timer->node);
|
2006-01-09 23:52:32 -05:00
|
|
|
rb_erase(&timer->node, &base->active);
|
2006-04-21 21:38:50 -04:00
|
|
|
rb_set_parent(&timer->node, &timer->node);
|
2006-01-09 23:52:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* remove hrtimer, called with base lock held
|
|
|
|
*/
|
|
|
|
static inline int
|
|
|
|
remove_hrtimer(struct hrtimer *timer, struct hrtimer_base *base)
|
|
|
|
{
|
|
|
|
if (hrtimer_active(timer)) {
|
|
|
|
__remove_hrtimer(timer, base);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* hrtimer_start - (re)start an relative timer on the current CPU
|
|
|
|
* @timer: the timer to be added
|
|
|
|
* @tim: expiry time
|
|
|
|
* @mode: expiry mode: absolute (HRTIMER_ABS) or relative (HRTIMER_REL)
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* 0 on success
|
|
|
|
* 1 when the timer was active
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
hrtimer_start(struct hrtimer *timer, ktime_t tim, const enum hrtimer_mode mode)
|
|
|
|
{
|
|
|
|
struct hrtimer_base *base, *new_base;
|
|
|
|
unsigned long flags;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
base = lock_hrtimer_base(timer, &flags);
|
|
|
|
|
|
|
|
/* Remove an active timer from the queue: */
|
|
|
|
ret = remove_hrtimer(timer, base);
|
|
|
|
|
|
|
|
/* Switch the timer base, if necessary: */
|
|
|
|
new_base = switch_hrtimer_base(timer, base);
|
|
|
|
|
2006-02-14 16:53:15 -05:00
|
|
|
if (mode == HRTIMER_REL) {
|
2006-01-09 23:52:32 -05:00
|
|
|
tim = ktime_add(tim, new_base->get_time());
|
2006-02-14 16:53:15 -05:00
|
|
|
/*
|
|
|
|
* CONFIG_TIME_LOW_RES is a temporary way for architectures
|
|
|
|
* to signal that they simply return xtime in
|
|
|
|
* do_gettimeoffset(). In this case we want to round up by
|
|
|
|
* resolution when starting a relative timer, to avoid short
|
|
|
|
* timeouts. This will go away with the GTOD framework.
|
|
|
|
*/
|
|
|
|
#ifdef CONFIG_TIME_LOW_RES
|
|
|
|
tim = ktime_add(tim, base->resolution);
|
|
|
|
#endif
|
|
|
|
}
|
2006-01-09 23:52:32 -05:00
|
|
|
timer->expires = tim;
|
|
|
|
|
|
|
|
enqueue_hrtimer(timer, new_base);
|
|
|
|
|
|
|
|
unlock_hrtimer_base(timer, &flags);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2006-05-31 00:26:09 -04:00
|
|
|
EXPORT_SYMBOL_GPL(hrtimer_start);
|
2006-01-09 23:52:32 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* hrtimer_try_to_cancel - try to deactivate a timer
|
|
|
|
* @timer: hrtimer to stop
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* 0 when the timer was not active
|
|
|
|
* 1 when the timer was active
|
|
|
|
* -1 when the timer is currently excuting the callback function and
|
2006-06-25 08:49:15 -04:00
|
|
|
* cannot be stopped
|
2006-01-09 23:52:32 -05:00
|
|
|
*/
|
|
|
|
int hrtimer_try_to_cancel(struct hrtimer *timer)
|
|
|
|
{
|
|
|
|
struct hrtimer_base *base;
|
|
|
|
unsigned long flags;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
base = lock_hrtimer_base(timer, &flags);
|
|
|
|
|
|
|
|
if (base->curr_timer != timer)
|
|
|
|
ret = remove_hrtimer(timer, base);
|
|
|
|
|
|
|
|
unlock_hrtimer_base(timer, &flags);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
}
|
2006-05-31 00:26:09 -04:00
|
|
|
EXPORT_SYMBOL_GPL(hrtimer_try_to_cancel);
|
2006-01-09 23:52:32 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* hrtimer_cancel - cancel a timer and wait for the handler to finish.
|
|
|
|
* @timer: the timer to be cancelled
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* 0 when the timer was not active
|
|
|
|
* 1 when the timer was active
|
|
|
|
*/
|
|
|
|
int hrtimer_cancel(struct hrtimer *timer)
|
|
|
|
{
|
|
|
|
for (;;) {
|
|
|
|
int ret = hrtimer_try_to_cancel(timer);
|
|
|
|
|
|
|
|
if (ret >= 0)
|
|
|
|
return ret;
|
2006-04-11 01:54:13 -04:00
|
|
|
cpu_relax();
|
2006-01-09 23:52:32 -05:00
|
|
|
}
|
|
|
|
}
|
2006-05-31 00:26:09 -04:00
|
|
|
EXPORT_SYMBOL_GPL(hrtimer_cancel);
|
2006-01-09 23:52:32 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* hrtimer_get_remaining - get remaining time for the timer
|
|
|
|
* @timer: the timer to read
|
|
|
|
*/
|
|
|
|
ktime_t hrtimer_get_remaining(const struct hrtimer *timer)
|
|
|
|
{
|
|
|
|
struct hrtimer_base *base;
|
|
|
|
unsigned long flags;
|
|
|
|
ktime_t rem;
|
|
|
|
|
|
|
|
base = lock_hrtimer_base(timer, &flags);
|
|
|
|
rem = ktime_sub(timer->expires, timer->base->get_time());
|
|
|
|
unlock_hrtimer_base(timer, &flags);
|
|
|
|
|
|
|
|
return rem;
|
|
|
|
}
|
2006-05-31 00:26:09 -04:00
|
|
|
EXPORT_SYMBOL_GPL(hrtimer_get_remaining);
|
2006-01-09 23:52:32 -05:00
|
|
|
|
2006-03-06 18:42:45 -05:00
|
|
|
#ifdef CONFIG_NO_IDLE_HZ
|
|
|
|
/**
|
|
|
|
* hrtimer_get_next_event - get the time until next expiry event
|
|
|
|
*
|
|
|
|
* Returns the delta to the next expiry event or KTIME_MAX if no timer
|
|
|
|
* is pending.
|
|
|
|
*/
|
|
|
|
ktime_t hrtimer_get_next_event(void)
|
|
|
|
{
|
|
|
|
struct hrtimer_base *base = __get_cpu_var(hrtimer_bases);
|
|
|
|
ktime_t delta, mindelta = { .tv64 = KTIME_MAX };
|
|
|
|
unsigned long flags;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_HRTIMER_BASES; i++, base++) {
|
|
|
|
struct hrtimer *timer;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&base->lock, flags);
|
|
|
|
if (!base->first) {
|
|
|
|
spin_unlock_irqrestore(&base->lock, flags);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
timer = rb_entry(base->first, struct hrtimer, node);
|
|
|
|
delta.tv64 = timer->expires.tv64;
|
|
|
|
spin_unlock_irqrestore(&base->lock, flags);
|
|
|
|
delta = ktime_sub(delta, base->get_time());
|
|
|
|
if (delta.tv64 < mindelta.tv64)
|
|
|
|
mindelta.tv64 = delta.tv64;
|
|
|
|
}
|
|
|
|
if (mindelta.tv64 < 0)
|
|
|
|
mindelta.tv64 = 0;
|
|
|
|
return mindelta;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-01-09 23:52:32 -05:00
|
|
|
/**
|
2006-02-01 06:05:11 -05:00
|
|
|
* hrtimer_init - initialize a timer to the given clock
|
|
|
|
* @timer: the timer to be initialized
|
2006-01-09 23:52:32 -05:00
|
|
|
* @clock_id: the clock to be used
|
2006-02-01 06:05:11 -05:00
|
|
|
* @mode: timer mode abs/rel
|
2006-01-09 23:52:32 -05:00
|
|
|
*/
|
2006-02-01 06:05:11 -05:00
|
|
|
void hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
|
|
|
|
enum hrtimer_mode mode)
|
2006-01-09 23:52:32 -05:00
|
|
|
{
|
|
|
|
struct hrtimer_base *bases;
|
|
|
|
|
2006-02-01 06:05:11 -05:00
|
|
|
memset(timer, 0, sizeof(struct hrtimer));
|
|
|
|
|
[PATCH] Define __raw_get_cpu_var and use it
There are several instances of per_cpu(foo, raw_smp_processor_id()), which
is semantically equivalent to __get_cpu_var(foo) but without the warning
that smp_processor_id() can give if CONFIG_DEBUG_PREEMPT is enabled. For
those architectures with optimized per-cpu implementations, namely ia64,
powerpc, s390, sparc64 and x86_64, per_cpu() turns into more and slower
code than __get_cpu_var(), so it would be preferable to use __get_cpu_var
on those platforms.
This defines a __raw_get_cpu_var(x) macro which turns into per_cpu(x,
raw_smp_processor_id()) on architectures that use the generic per-cpu
implementation, and turns into __get_cpu_var(x) on the architectures that
have an optimized per-cpu implementation.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Acked-by: David S. Miller <davem@davemloft.net>
Acked-by: Ingo Molnar <mingo@elte.hu>
Acked-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-25 08:47:14 -04:00
|
|
|
bases = __raw_get_cpu_var(hrtimer_bases);
|
2006-01-09 23:52:32 -05:00
|
|
|
|
2006-02-01 06:05:11 -05:00
|
|
|
if (clock_id == CLOCK_REALTIME && mode != HRTIMER_ABS)
|
|
|
|
clock_id = CLOCK_MONOTONIC;
|
|
|
|
|
|
|
|
timer->base = &bases[clock_id];
|
2006-04-21 21:38:50 -04:00
|
|
|
rb_set_parent(&timer->node, &timer->node);
|
2006-01-09 23:52:32 -05:00
|
|
|
}
|
2006-05-31 00:26:09 -04:00
|
|
|
EXPORT_SYMBOL_GPL(hrtimer_init);
|
2006-01-09 23:52:32 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* hrtimer_get_res - get the timer resolution for a clock
|
|
|
|
* @which_clock: which clock to query
|
|
|
|
* @tp: pointer to timespec variable to store the resolution
|
|
|
|
*
|
|
|
|
* Store the resolution of the clock selected by which_clock in the
|
|
|
|
* variable pointed to by tp.
|
|
|
|
*/
|
|
|
|
int hrtimer_get_res(const clockid_t which_clock, struct timespec *tp)
|
|
|
|
{
|
|
|
|
struct hrtimer_base *bases;
|
|
|
|
|
[PATCH] Define __raw_get_cpu_var and use it
There are several instances of per_cpu(foo, raw_smp_processor_id()), which
is semantically equivalent to __get_cpu_var(foo) but without the warning
that smp_processor_id() can give if CONFIG_DEBUG_PREEMPT is enabled. For
those architectures with optimized per-cpu implementations, namely ia64,
powerpc, s390, sparc64 and x86_64, per_cpu() turns into more and slower
code than __get_cpu_var(), so it would be preferable to use __get_cpu_var
on those platforms.
This defines a __raw_get_cpu_var(x) macro which turns into per_cpu(x,
raw_smp_processor_id()) on architectures that use the generic per-cpu
implementation, and turns into __get_cpu_var(x) on the architectures that
have an optimized per-cpu implementation.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Acked-by: David S. Miller <davem@davemloft.net>
Acked-by: Ingo Molnar <mingo@elte.hu>
Acked-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-25 08:47:14 -04:00
|
|
|
bases = __raw_get_cpu_var(hrtimer_bases);
|
2006-01-12 05:36:14 -05:00
|
|
|
*tp = ktime_to_timespec(bases[which_clock].resolution);
|
2006-01-09 23:52:32 -05:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2006-05-31 00:26:09 -04:00
|
|
|
EXPORT_SYMBOL_GPL(hrtimer_get_res);
|
2006-01-09 23:52:32 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Expire the per base hrtimer-queue:
|
|
|
|
*/
|
|
|
|
static inline void run_hrtimer_queue(struct hrtimer_base *base)
|
|
|
|
{
|
2006-01-12 05:25:54 -05:00
|
|
|
struct rb_node *node;
|
2006-01-09 23:52:32 -05:00
|
|
|
|
2006-03-31 05:31:20 -05:00
|
|
|
if (!base->first)
|
|
|
|
return;
|
|
|
|
|
2006-03-26 04:38:05 -05:00
|
|
|
if (base->get_softirq_time)
|
|
|
|
base->softirq_time = base->get_softirq_time();
|
|
|
|
|
2006-01-09 23:52:32 -05:00
|
|
|
spin_lock_irq(&base->lock);
|
|
|
|
|
2006-01-12 05:25:54 -05:00
|
|
|
while ((node = base->first)) {
|
2006-01-09 23:52:32 -05:00
|
|
|
struct hrtimer *timer;
|
2006-03-26 04:38:12 -05:00
|
|
|
int (*fn)(struct hrtimer *);
|
2006-01-09 23:52:32 -05:00
|
|
|
int restart;
|
|
|
|
|
2006-01-12 05:25:54 -05:00
|
|
|
timer = rb_entry(node, struct hrtimer, node);
|
2006-03-26 04:38:05 -05:00
|
|
|
if (base->softirq_time.tv64 <= timer->expires.tv64)
|
2006-01-09 23:52:32 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
fn = timer->function;
|
|
|
|
set_curr_timer(base, timer);
|
|
|
|
__remove_hrtimer(timer, base);
|
|
|
|
spin_unlock_irq(&base->lock);
|
|
|
|
|
2006-03-26 04:38:12 -05:00
|
|
|
restart = fn(timer);
|
2006-01-09 23:52:32 -05:00
|
|
|
|
|
|
|
spin_lock_irq(&base->lock);
|
|
|
|
|
2006-03-26 04:38:09 -05:00
|
|
|
if (restart != HRTIMER_NORESTART) {
|
|
|
|
BUG_ON(hrtimer_active(timer));
|
2006-01-09 23:52:32 -05:00
|
|
|
enqueue_hrtimer(timer, base);
|
2006-03-26 04:38:09 -05:00
|
|
|
}
|
2006-01-09 23:52:32 -05:00
|
|
|
}
|
|
|
|
set_curr_timer(base, NULL);
|
|
|
|
spin_unlock_irq(&base->lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Called from timer softirq every jiffy, expire hrtimers:
|
|
|
|
*/
|
|
|
|
void hrtimer_run_queues(void)
|
|
|
|
{
|
|
|
|
struct hrtimer_base *base = __get_cpu_var(hrtimer_bases);
|
|
|
|
int i;
|
|
|
|
|
2006-03-26 04:38:05 -05:00
|
|
|
hrtimer_get_softirq_time(base);
|
|
|
|
|
2006-01-09 23:52:32 -05:00
|
|
|
for (i = 0; i < MAX_HRTIMER_BASES; i++)
|
|
|
|
run_hrtimer_queue(&base[i]);
|
|
|
|
}
|
|
|
|
|
2006-01-09 23:52:35 -05:00
|
|
|
/*
|
|
|
|
* Sleep related functions:
|
|
|
|
*/
|
2006-03-31 05:31:17 -05:00
|
|
|
static int hrtimer_wakeup(struct hrtimer *timer)
|
|
|
|
{
|
|
|
|
struct hrtimer_sleeper *t =
|
|
|
|
container_of(timer, struct hrtimer_sleeper, timer);
|
|
|
|
struct task_struct *task = t->task;
|
|
|
|
|
|
|
|
t->task = NULL;
|
|
|
|
if (task)
|
|
|
|
wake_up_process(task);
|
|
|
|
|
|
|
|
return HRTIMER_NORESTART;
|
|
|
|
}
|
|
|
|
|
2006-07-03 03:25:41 -04:00
|
|
|
void hrtimer_init_sleeper(struct hrtimer_sleeper *sl, struct task_struct *task)
|
2006-03-31 05:31:17 -05:00
|
|
|
{
|
|
|
|
sl->timer.function = hrtimer_wakeup;
|
|
|
|
sl->task = task;
|
|
|
|
}
|
|
|
|
|
2006-03-31 05:31:19 -05:00
|
|
|
static int __sched do_nanosleep(struct hrtimer_sleeper *t, enum hrtimer_mode mode)
|
2006-03-26 04:38:08 -05:00
|
|
|
{
|
2006-03-31 05:31:19 -05:00
|
|
|
hrtimer_init_sleeper(t, current);
|
2006-01-09 23:52:35 -05:00
|
|
|
|
2006-03-26 04:38:08 -05:00
|
|
|
do {
|
|
|
|
set_current_state(TASK_INTERRUPTIBLE);
|
|
|
|
hrtimer_start(&t->timer, t->timer.expires, mode);
|
|
|
|
|
|
|
|
schedule();
|
|
|
|
|
2006-03-31 05:31:19 -05:00
|
|
|
hrtimer_cancel(&t->timer);
|
|
|
|
mode = HRTIMER_ABS;
|
|
|
|
|
|
|
|
} while (t->task && !signal_pending(current));
|
2006-03-26 04:38:08 -05:00
|
|
|
|
2006-03-31 05:31:19 -05:00
|
|
|
return t->task == NULL;
|
2006-01-09 23:52:35 -05:00
|
|
|
}
|
|
|
|
|
2006-02-01 06:05:11 -05:00
|
|
|
static long __sched nanosleep_restart(struct restart_block *restart)
|
2006-01-09 23:52:35 -05:00
|
|
|
{
|
2006-03-31 05:31:19 -05:00
|
|
|
struct hrtimer_sleeper t;
|
2006-01-16 04:59:41 -05:00
|
|
|
struct timespec __user *rmtp;
|
|
|
|
struct timespec tu;
|
2006-03-26 04:38:08 -05:00
|
|
|
ktime_t time;
|
2006-01-09 23:52:35 -05:00
|
|
|
|
|
|
|
restart->fn = do_no_restart_syscall;
|
|
|
|
|
2006-03-26 04:38:08 -05:00
|
|
|
hrtimer_init(&t.timer, restart->arg3, HRTIMER_ABS);
|
|
|
|
t.timer.expires.tv64 = ((u64)restart->arg1 << 32) | (u64) restart->arg0;
|
2006-01-09 23:52:35 -05:00
|
|
|
|
2006-03-26 04:38:08 -05:00
|
|
|
if (do_nanosleep(&t, HRTIMER_ABS))
|
2006-01-09 23:52:35 -05:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
rmtp = (struct timespec __user *) restart->arg2;
|
2006-03-26 04:38:08 -05:00
|
|
|
if (rmtp) {
|
|
|
|
time = ktime_sub(t.timer.expires, t.timer.base->get_time());
|
|
|
|
if (time.tv64 <= 0)
|
|
|
|
return 0;
|
|
|
|
tu = ktime_to_timespec(time);
|
|
|
|
if (copy_to_user(rmtp, &tu, sizeof(tu)))
|
|
|
|
return -EFAULT;
|
|
|
|
}
|
2006-01-09 23:52:35 -05:00
|
|
|
|
2006-03-26 04:38:08 -05:00
|
|
|
restart->fn = nanosleep_restart;
|
2006-01-09 23:52:35 -05:00
|
|
|
|
|
|
|
/* The other values in restart are already filled in */
|
|
|
|
return -ERESTART_RESTARTBLOCK;
|
|
|
|
}
|
|
|
|
|
|
|
|
long hrtimer_nanosleep(struct timespec *rqtp, struct timespec __user *rmtp,
|
|
|
|
const enum hrtimer_mode mode, const clockid_t clockid)
|
|
|
|
{
|
|
|
|
struct restart_block *restart;
|
2006-03-31 05:31:19 -05:00
|
|
|
struct hrtimer_sleeper t;
|
2006-01-09 23:52:35 -05:00
|
|
|
struct timespec tu;
|
|
|
|
ktime_t rem;
|
|
|
|
|
2006-03-26 04:38:08 -05:00
|
|
|
hrtimer_init(&t.timer, clockid, mode);
|
|
|
|
t.timer.expires = timespec_to_ktime(*rqtp);
|
|
|
|
if (do_nanosleep(&t, mode))
|
2006-01-09 23:52:35 -05:00
|
|
|
return 0;
|
|
|
|
|
2006-02-01 06:05:11 -05:00
|
|
|
/* Absolute timers do not update the rmtp value and restart: */
|
2006-01-09 23:52:35 -05:00
|
|
|
if (mode == HRTIMER_ABS)
|
|
|
|
return -ERESTARTNOHAND;
|
|
|
|
|
2006-03-26 04:38:08 -05:00
|
|
|
if (rmtp) {
|
|
|
|
rem = ktime_sub(t.timer.expires, t.timer.base->get_time());
|
|
|
|
if (rem.tv64 <= 0)
|
|
|
|
return 0;
|
|
|
|
tu = ktime_to_timespec(rem);
|
|
|
|
if (copy_to_user(rmtp, &tu, sizeof(tu)))
|
|
|
|
return -EFAULT;
|
|
|
|
}
|
2006-01-09 23:52:35 -05:00
|
|
|
|
|
|
|
restart = ¤t_thread_info()->restart_block;
|
2006-02-01 06:05:11 -05:00
|
|
|
restart->fn = nanosleep_restart;
|
2006-03-26 04:38:08 -05:00
|
|
|
restart->arg0 = t.timer.expires.tv64 & 0xFFFFFFFF;
|
|
|
|
restart->arg1 = t.timer.expires.tv64 >> 32;
|
2006-01-09 23:52:35 -05:00
|
|
|
restart->arg2 = (unsigned long) rmtp;
|
2006-03-26 04:38:08 -05:00
|
|
|
restart->arg3 = (unsigned long) t.timer.base->index;
|
2006-01-09 23:52:35 -05:00
|
|
|
|
|
|
|
return -ERESTART_RESTARTBLOCK;
|
|
|
|
}
|
|
|
|
|
2006-01-09 23:52:36 -05:00
|
|
|
asmlinkage long
|
|
|
|
sys_nanosleep(struct timespec __user *rqtp, struct timespec __user *rmtp)
|
|
|
|
{
|
|
|
|
struct timespec tu;
|
|
|
|
|
|
|
|
if (copy_from_user(&tu, rqtp, sizeof(tu)))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
if (!timespec_valid(&tu))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
return hrtimer_nanosleep(&tu, rmtp, HRTIMER_REL, CLOCK_MONOTONIC);
|
|
|
|
}
|
|
|
|
|
2006-01-09 23:52:32 -05:00
|
|
|
/*
|
|
|
|
* Functions related to boot-time initialization:
|
|
|
|
*/
|
|
|
|
static void __devinit init_hrtimers_cpu(int cpu)
|
|
|
|
{
|
|
|
|
struct hrtimer_base *base = per_cpu(hrtimer_bases, cpu);
|
|
|
|
int i;
|
|
|
|
|
2006-07-03 03:25:11 -04:00
|
|
|
for (i = 0; i < MAX_HRTIMER_BASES; i++, base++) {
|
2006-01-09 23:52:32 -05:00
|
|
|
spin_lock_init(&base->lock);
|
2006-07-03 03:25:11 -04:00
|
|
|
lockdep_set_class(&base->lock, &base->lock_key);
|
|
|
|
}
|
2006-01-09 23:52:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
|
|
|
|
|
|
|
static void migrate_hrtimer_list(struct hrtimer_base *old_base,
|
|
|
|
struct hrtimer_base *new_base)
|
|
|
|
{
|
|
|
|
struct hrtimer *timer;
|
|
|
|
struct rb_node *node;
|
|
|
|
|
|
|
|
while ((node = rb_first(&old_base->active))) {
|
|
|
|
timer = rb_entry(node, struct hrtimer, node);
|
|
|
|
__remove_hrtimer(timer, old_base);
|
|
|
|
timer->base = new_base;
|
|
|
|
enqueue_hrtimer(timer, new_base);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void migrate_hrtimers(int cpu)
|
|
|
|
{
|
|
|
|
struct hrtimer_base *old_base, *new_base;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
BUG_ON(cpu_online(cpu));
|
|
|
|
old_base = per_cpu(hrtimer_bases, cpu);
|
|
|
|
new_base = get_cpu_var(hrtimer_bases);
|
|
|
|
|
|
|
|
local_irq_disable();
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_HRTIMER_BASES; i++) {
|
|
|
|
|
|
|
|
spin_lock(&new_base->lock);
|
|
|
|
spin_lock(&old_base->lock);
|
|
|
|
|
|
|
|
BUG_ON(old_base->curr_timer);
|
|
|
|
|
|
|
|
migrate_hrtimer_list(old_base, new_base);
|
|
|
|
|
|
|
|
spin_unlock(&old_base->lock);
|
|
|
|
spin_unlock(&new_base->lock);
|
|
|
|
old_base++;
|
|
|
|
new_base++;
|
|
|
|
}
|
|
|
|
|
|
|
|
local_irq_enable();
|
|
|
|
put_cpu_var(hrtimer_bases);
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_HOTPLUG_CPU */
|
|
|
|
|
2006-07-30 06:03:35 -04:00
|
|
|
static int __cpuinit hrtimer_cpu_notify(struct notifier_block *self,
|
2006-01-09 23:52:32 -05:00
|
|
|
unsigned long action, void *hcpu)
|
|
|
|
{
|
|
|
|
long cpu = (long)hcpu;
|
|
|
|
|
|
|
|
switch (action) {
|
|
|
|
|
|
|
|
case CPU_UP_PREPARE:
|
|
|
|
init_hrtimers_cpu(cpu);
|
|
|
|
break;
|
|
|
|
|
|
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
|
|
|
case CPU_DEAD:
|
|
|
|
migrate_hrtimers(cpu);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NOTIFY_OK;
|
|
|
|
}
|
|
|
|
|
2006-07-30 06:03:35 -04:00
|
|
|
static struct notifier_block __cpuinitdata hrtimers_nb = {
|
2006-01-09 23:52:32 -05:00
|
|
|
.notifier_call = hrtimer_cpu_notify,
|
|
|
|
};
|
|
|
|
|
|
|
|
void __init hrtimers_init(void)
|
|
|
|
{
|
|
|
|
hrtimer_cpu_notify(&hrtimers_nb, (unsigned long)CPU_UP_PREPARE,
|
|
|
|
(void *)(long)smp_processor_id());
|
|
|
|
register_cpu_notifier(&hrtimers_nb);
|
|
|
|
}
|
|
|
|
|