2 * linux/kernel/time/clockevents.c
4 * This file contains functions which manage clock event devices.
6 * Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de>
7 * Copyright(C) 2005-2007, Red Hat, Inc., Ingo Molnar
8 * Copyright(C) 2006-2007, Timesys Corp., Thomas Gleixner
10 * This code is licenced under the GPL version 2. For details see
11 * kernel-base/COPYING.
14 #include <linux/clockchips.h>
15 #include <linux/hrtimer.h>
16 #include <linux/init.h>
17 #include <linux/module.h>
18 #include <linux/notifier.h>
19 #include <linux/smp.h>
20 #include <linux/sysdev.h>
22 /* The registered clock event devices */
23 static LIST_HEAD(clockevent_devices
);
24 static LIST_HEAD(clockevents_released
);
26 /* Notification for clock events */
27 static RAW_NOTIFIER_HEAD(clockevents_chain
);
29 /* Protection for the above */
30 static DEFINE_SPINLOCK(clockevents_lock
);
33 * clockevents_delta2ns - Convert a latch value (device ticks) to nanoseconds
34 * @latch: value to convert
35 * @evt: pointer to clock event device descriptor
37 * Math helper, returns latch value converted to nanoseconds (bound checked)
39 unsigned long clockevent_delta2ns(unsigned long latch
,
40 struct clock_event_device
*evt
)
42 u64 clc
= ((u64
) latch
<< evt
->shift
);
44 do_div(clc
, evt
->mult
);
50 return (unsigned long) clc
;
54 * clockevents_set_mode - set the operating mode of a clock event device
55 * @dev: device to modify
58 * Must be called with interrupts disabled !
60 void clockevents_set_mode(struct clock_event_device
*dev
,
61 enum clock_event_mode mode
)
63 if (dev
->mode
!= mode
) {
64 dev
->set_mode(mode
, dev
);
70 * clockevents_program_event - Reprogram the clock event device.
71 * @expires: absolute expiry time (monotonic clock)
73 * Returns 0 on success, -ETIME when the event is in the past.
75 int clockevents_program_event(struct clock_event_device
*dev
, ktime_t expires
,
78 unsigned long long clc
;
81 delta
= ktime_to_ns(ktime_sub(expires
, now
));
86 dev
->next_event
= expires
;
88 if (dev
->mode
== CLOCK_EVT_MODE_SHUTDOWN
)
91 if (delta
> dev
->max_delta_ns
)
92 delta
= dev
->max_delta_ns
;
93 if (delta
< dev
->min_delta_ns
)
94 delta
= dev
->min_delta_ns
;
96 clc
= delta
* dev
->mult
;
99 return dev
->set_next_event((unsigned long) clc
, dev
);
103 * clockevents_register_notifier - register a clock events change listener
105 int clockevents_register_notifier(struct notifier_block
*nb
)
109 spin_lock(&clockevents_lock
);
110 ret
= raw_notifier_chain_register(&clockevents_chain
, nb
);
111 spin_unlock(&clockevents_lock
);
117 * Notify about a clock event change. Called with clockevents_lock
120 static void clockevents_do_notify(unsigned long reason
, void *dev
)
122 raw_notifier_call_chain(&clockevents_chain
, reason
, dev
);
126 * Called after a notify add to make devices availble which were
127 * released from the notifier call.
129 static void clockevents_notify_released(void)
131 struct clock_event_device
*dev
;
133 while (!list_empty(&clockevents_released
)) {
134 dev
= list_entry(clockevents_released
.next
,
135 struct clock_event_device
, list
);
136 list_del(&dev
->list
);
137 list_add(&dev
->list
, &clockevent_devices
);
138 clockevents_do_notify(CLOCK_EVT_NOTIFY_ADD
, dev
);
143 * clockevents_register_device - register a clock event device
144 * @dev: device to register
146 void clockevents_register_device(struct clock_event_device
*dev
)
148 BUG_ON(dev
->mode
!= CLOCK_EVT_MODE_UNUSED
);
150 spin_lock(&clockevents_lock
);
152 list_add(&dev
->list
, &clockevent_devices
);
153 clockevents_do_notify(CLOCK_EVT_NOTIFY_ADD
, dev
);
154 clockevents_notify_released();
156 spin_unlock(&clockevents_lock
);
160 * Noop handler when we shut down an event device
162 static void clockevents_handle_noop(struct clock_event_device
*dev
)
167 * clockevents_exchange_device - release and request clock devices
168 * @old: device to release (can be NULL)
169 * @new: device to request (can be NULL)
171 * Called from the notifier chain. clockevents_lock is held already
173 void clockevents_exchange_device(struct clock_event_device
*old
,
174 struct clock_event_device
*new)
178 local_irq_save(flags
);
180 * Caller releases a clock event device. We queue it into the
181 * released list and do a notify add later.
184 old
->event_handler
= clockevents_handle_noop
;
185 clockevents_set_mode(old
, CLOCK_EVT_MODE_UNUSED
);
186 list_del(&old
->list
);
187 list_add(&old
->list
, &clockevents_released
);
191 BUG_ON(new->mode
!= CLOCK_EVT_MODE_UNUSED
);
192 clockevents_set_mode(new, CLOCK_EVT_MODE_SHUTDOWN
);
194 local_irq_restore(flags
);
197 #ifdef CONFIG_GENERIC_CLOCKEVENTS
199 * clockevents_notify - notification about relevant events
201 void clockevents_notify(unsigned long reason
, void *arg
)
203 spin_lock(&clockevents_lock
);
204 clockevents_do_notify(reason
, arg
);
207 case CLOCK_EVT_NOTIFY_CPU_DEAD
:
209 * Unregister the clock event devices which were
210 * released from the users in the notify chain.
212 while (!list_empty(&clockevents_released
)) {
213 struct clock_event_device
*dev
;
215 dev
= list_entry(clockevents_released
.next
,
216 struct clock_event_device
, list
);
217 list_del(&dev
->list
);
223 spin_unlock(&clockevents_lock
);
225 EXPORT_SYMBOL_GPL(clockevents_notify
);