]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - kernel/time/clockevents.c
clockevents: Add helpers to check the state of a clockevent device
[mirror_ubuntu-artful-kernel.git] / kernel / time / clockevents.c
CommitLineData
d316c57f
TG
1/*
2 * linux/kernel/time/clockevents.c
3 *
4 * This file contains functions which manage clock event devices.
5 *
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
9 *
10 * This code is licenced under the GPL version 2. For details see
11 * kernel-base/COPYING.
12 */
13
14#include <linux/clockchips.h>
15#include <linux/hrtimer.h>
16#include <linux/init.h>
17#include <linux/module.h>
d316c57f 18#include <linux/smp.h>
501f8670 19#include <linux/device.h>
d316c57f 20
8e1a928a
HS
21#include "tick-internal.h"
22
d316c57f
TG
23/* The registered clock event devices */
24static LIST_HEAD(clockevent_devices);
25static LIST_HEAD(clockevents_released);
d316c57f 26/* Protection for the above */
b5f91da0 27static DEFINE_RAW_SPINLOCK(clockevents_lock);
03e13cf5
TG
28/* Protection for unbind operations */
29static DEFINE_MUTEX(clockevents_mutex);
30
31struct ce_unbind {
32 struct clock_event_device *ce;
33 int res;
34};
d316c57f 35
97b94106
TG
36static u64 cev_delta2ns(unsigned long latch, struct clock_event_device *evt,
37 bool ismax)
d316c57f 38{
97813f2f 39 u64 clc = (u64) latch << evt->shift;
97b94106 40 u64 rnd;
d316c57f 41
45fe4fe1
IM
42 if (unlikely(!evt->mult)) {
43 evt->mult = 1;
44 WARN_ON(1);
45 }
97b94106
TG
46 rnd = (u64) evt->mult - 1;
47
48 /*
49 * Upper bound sanity check. If the backwards conversion is
50 * not equal latch, we know that the above shift overflowed.
51 */
52 if ((clc >> evt->shift) != (u64)latch)
53 clc = ~0ULL;
54
55 /*
56 * Scaled math oddities:
57 *
58 * For mult <= (1 << shift) we can safely add mult - 1 to
59 * prevent integer rounding loss. So the backwards conversion
60 * from nsec to device ticks will be correct.
61 *
62 * For mult > (1 << shift), i.e. device frequency is > 1GHz we
63 * need to be careful. Adding mult - 1 will result in a value
64 * which when converted back to device ticks can be larger
65 * than latch by up to (mult - 1) >> shift. For the min_delta
66 * calculation we still want to apply this in order to stay
67 * above the minimum device ticks limit. For the upper limit
68 * we would end up with a latch value larger than the upper
69 * limit of the device, so we omit the add to stay below the
70 * device upper boundary.
71 *
72 * Also omit the add if it would overflow the u64 boundary.
73 */
74 if ((~0ULL - clc > rnd) &&
10632008 75 (!ismax || evt->mult <= (1ULL << evt->shift)))
97b94106 76 clc += rnd;
45fe4fe1 77
d316c57f 78 do_div(clc, evt->mult);
d316c57f 79
97b94106
TG
80 /* Deltas less than 1usec are pointless noise */
81 return clc > 1000 ? clc : 1000;
82}
83
84/**
85 * clockevents_delta2ns - Convert a latch value (device ticks) to nanoseconds
86 * @latch: value to convert
87 * @evt: pointer to clock event device descriptor
88 *
89 * Math helper, returns latch value converted to nanoseconds (bound checked)
90 */
91u64 clockevent_delta2ns(unsigned long latch, struct clock_event_device *evt)
92{
93 return cev_delta2ns(latch, evt, false);
d316c57f 94}
c81fc2c3 95EXPORT_SYMBOL_GPL(clockevent_delta2ns);
d316c57f 96
77e32c89
VK
97static int __clockevents_set_state(struct clock_event_device *dev,
98 enum clock_event_state state)
bd624d75
VK
99{
100 /* Transition with legacy set_mode() callback */
101 if (dev->set_mode) {
102 /* Legacy callback doesn't support new modes */
77e32c89 103 if (state > CLOCK_EVT_STATE_ONESHOT)
bd624d75 104 return -ENOSYS;
77e32c89
VK
105 /*
106 * 'clock_event_state' and 'clock_event_mode' have 1-to-1
107 * mapping until *_ONESHOT, and so a simple cast will work.
108 */
109 dev->set_mode((enum clock_event_mode)state, dev);
110 dev->mode = (enum clock_event_mode)state;
bd624d75
VK
111 return 0;
112 }
113
114 if (dev->features & CLOCK_EVT_FEAT_DUMMY)
115 return 0;
116
77e32c89
VK
117 /* Transition with new state-specific callbacks */
118 switch (state) {
119 case CLOCK_EVT_STATE_DETACHED:
149aabcc 120 /* The clockevent device is getting replaced. Shut it down. */
bd624d75 121
77e32c89
VK
122 case CLOCK_EVT_STATE_SHUTDOWN:
123 return dev->set_state_shutdown(dev);
bd624d75 124
77e32c89 125 case CLOCK_EVT_STATE_PERIODIC:
bd624d75
VK
126 /* Core internal bug */
127 if (!(dev->features & CLOCK_EVT_FEAT_PERIODIC))
128 return -ENOSYS;
77e32c89 129 return dev->set_state_periodic(dev);
bd624d75 130
77e32c89 131 case CLOCK_EVT_STATE_ONESHOT:
bd624d75
VK
132 /* Core internal bug */
133 if (!(dev->features & CLOCK_EVT_FEAT_ONESHOT))
134 return -ENOSYS;
77e32c89 135 return dev->set_state_oneshot(dev);
bd624d75 136
8fff52fd
VK
137 case CLOCK_EVT_STATE_ONESHOT_STOPPED:
138 /* Core internal bug */
139 if (WARN_ONCE(dev->state != CLOCK_EVT_STATE_ONESHOT,
140 "Current state: %d\n", dev->state))
141 return -EINVAL;
142
143 if (dev->set_state_oneshot_stopped)
144 return dev->set_state_oneshot_stopped(dev);
145 else
146 return -ENOSYS;
147
bd624d75
VK
148 default:
149 return -ENOSYS;
150 }
151}
152
d316c57f 153/**
77e32c89 154 * clockevents_set_state - set the operating state of a clock event device
d316c57f 155 * @dev: device to modify
77e32c89 156 * @state: new state
d316c57f
TG
157 *
158 * Must be called with interrupts disabled !
159 */
77e32c89
VK
160void clockevents_set_state(struct clock_event_device *dev,
161 enum clock_event_state state)
d316c57f 162{
77e32c89
VK
163 if (dev->state != state) {
164 if (__clockevents_set_state(dev, state))
bd624d75
VK
165 return;
166
77e32c89 167 dev->state = state;
2d68259d
MD
168
169 /*
170 * A nsec2cyc multiplicator of 0 is invalid and we'd crash
171 * on it, so fix it up and emit a warning:
172 */
77e32c89 173 if (state == CLOCK_EVT_STATE_ONESHOT) {
2d68259d
MD
174 if (unlikely(!dev->mult)) {
175 dev->mult = 1;
176 WARN_ON(1);
177 }
178 }
d316c57f
TG
179 }
180}
181
2344abbc
TG
182/**
183 * clockevents_shutdown - shutdown the device and clear next_event
184 * @dev: device to shutdown
185 */
186void clockevents_shutdown(struct clock_event_device *dev)
187{
77e32c89 188 clockevents_set_state(dev, CLOCK_EVT_STATE_SHUTDOWN);
2344abbc
TG
189 dev->next_event.tv64 = KTIME_MAX;
190}
191
554ef387
VK
192/**
193 * clockevents_tick_resume - Resume the tick device before using it again
194 * @dev: device to resume
195 */
196int clockevents_tick_resume(struct clock_event_device *dev)
197{
198 int ret = 0;
199
77e32c89 200 if (dev->set_mode) {
554ef387 201 dev->set_mode(CLOCK_EVT_MODE_RESUME, dev);
554ef387 202 dev->mode = CLOCK_EVT_MODE_RESUME;
77e32c89
VK
203 } else if (dev->tick_resume) {
204 ret = dev->tick_resume(dev);
205 }
554ef387
VK
206
207 return ret;
208}
209
d1748302
MS
210#ifdef CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST
211
212/* Limit min_delta to a jiffie */
213#define MIN_DELTA_LIMIT (NSEC_PER_SEC / HZ)
214
215/**
216 * clockevents_increase_min_delta - raise minimum delta of a clock event device
217 * @dev: device to increase the minimum delta
218 *
219 * Returns 0 on success, -ETIME when the minimum delta reached the limit.
220 */
221static int clockevents_increase_min_delta(struct clock_event_device *dev)
222{
223 /* Nothing to do if we already reached the limit */
224 if (dev->min_delta_ns >= MIN_DELTA_LIMIT) {
504d5874
JK
225 printk_deferred(KERN_WARNING
226 "CE: Reprogramming failure. Giving up\n");
d1748302
MS
227 dev->next_event.tv64 = KTIME_MAX;
228 return -ETIME;
229 }
230
231 if (dev->min_delta_ns < 5000)
232 dev->min_delta_ns = 5000;
233 else
234 dev->min_delta_ns += dev->min_delta_ns >> 1;
235
236 if (dev->min_delta_ns > MIN_DELTA_LIMIT)
237 dev->min_delta_ns = MIN_DELTA_LIMIT;
238
504d5874
JK
239 printk_deferred(KERN_WARNING
240 "CE: %s increased min_delta_ns to %llu nsec\n",
241 dev->name ? dev->name : "?",
242 (unsigned long long) dev->min_delta_ns);
d1748302
MS
243 return 0;
244}
245
246/**
247 * clockevents_program_min_delta - Set clock event device to the minimum delay.
248 * @dev: device to program
249 *
250 * Returns 0 on success, -ETIME when the retry loop failed.
251 */
252static int clockevents_program_min_delta(struct clock_event_device *dev)
253{
254 unsigned long long clc;
255 int64_t delta;
256 int i;
257
258 for (i = 0;;) {
259 delta = dev->min_delta_ns;
260 dev->next_event = ktime_add_ns(ktime_get(), delta);
261
77e32c89 262 if (dev->state == CLOCK_EVT_STATE_SHUTDOWN)
d1748302
MS
263 return 0;
264
265 dev->retries++;
266 clc = ((unsigned long long) delta * dev->mult) >> dev->shift;
267 if (dev->set_next_event((unsigned long) clc, dev) == 0)
268 return 0;
269
270 if (++i > 2) {
271 /*
272 * We tried 3 times to program the device with the
273 * given min_delta_ns. Try to increase the minimum
274 * delta, if that fails as well get out of here.
275 */
276 if (clockevents_increase_min_delta(dev))
277 return -ETIME;
278 i = 0;
279 }
280 }
281}
282
283#else /* CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST */
284
285/**
286 * clockevents_program_min_delta - Set clock event device to the minimum delay.
287 * @dev: device to program
288 *
289 * Returns 0 on success, -ETIME when the retry loop failed.
290 */
291static int clockevents_program_min_delta(struct clock_event_device *dev)
292{
293 unsigned long long clc;
294 int64_t delta;
295
296 delta = dev->min_delta_ns;
297 dev->next_event = ktime_add_ns(ktime_get(), delta);
298
77e32c89 299 if (dev->state == CLOCK_EVT_STATE_SHUTDOWN)
d1748302
MS
300 return 0;
301
302 dev->retries++;
303 clc = ((unsigned long long) delta * dev->mult) >> dev->shift;
304 return dev->set_next_event((unsigned long) clc, dev);
305}
306
307#endif /* CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST */
308
d316c57f
TG
309/**
310 * clockevents_program_event - Reprogram the clock event device.
d1748302 311 * @dev: device to program
d316c57f 312 * @expires: absolute expiry time (monotonic clock)
d1748302 313 * @force: program minimum delay if expires can not be set
d316c57f
TG
314 *
315 * Returns 0 on success, -ETIME when the event is in the past.
316 */
317int clockevents_program_event(struct clock_event_device *dev, ktime_t expires,
d1748302 318 bool force)
d316c57f
TG
319{
320 unsigned long long clc;
321 int64_t delta;
d1748302 322 int rc;
d316c57f 323
167b1de3
TG
324 if (unlikely(expires.tv64 < 0)) {
325 WARN_ON_ONCE(1);
326 return -ETIME;
327 }
328
d316c57f
TG
329 dev->next_event = expires;
330
77e32c89 331 if (dev->state == CLOCK_EVT_STATE_SHUTDOWN)
d316c57f
TG
332 return 0;
333
d2540875
VK
334 /* We must be in ONESHOT state here */
335 WARN_ONCE(dev->state != CLOCK_EVT_STATE_ONESHOT, "Current state: %d\n",
336 dev->state);
337
65516f8a
MS
338 /* Shortcut for clockevent devices that can deal with ktime. */
339 if (dev->features & CLOCK_EVT_FEAT_KTIME)
340 return dev->set_next_ktime(expires, dev);
341
d1748302
MS
342 delta = ktime_to_ns(ktime_sub(expires, ktime_get()));
343 if (delta <= 0)
344 return force ? clockevents_program_min_delta(dev) : -ETIME;
d316c57f 345
d1748302
MS
346 delta = min(delta, (int64_t) dev->max_delta_ns);
347 delta = max(delta, (int64_t) dev->min_delta_ns);
d316c57f 348
d1748302
MS
349 clc = ((unsigned long long) delta * dev->mult) >> dev->shift;
350 rc = dev->set_next_event((unsigned long) clc, dev);
351
352 return (rc && force) ? clockevents_program_min_delta(dev) : rc;
d316c57f
TG
353}
354
d316c57f 355/*
3eb05676 356 * Called after a notify add to make devices available which were
d316c57f
TG
357 * released from the notifier call.
358 */
359static void clockevents_notify_released(void)
360{
361 struct clock_event_device *dev;
362
363 while (!list_empty(&clockevents_released)) {
364 dev = list_entry(clockevents_released.next,
365 struct clock_event_device, list);
366 list_del(&dev->list);
367 list_add(&dev->list, &clockevent_devices);
7172a286 368 tick_check_new_device(dev);
d316c57f
TG
369 }
370}
371
03e13cf5
TG
372/*
373 * Try to install a replacement clock event device
374 */
375static int clockevents_replace(struct clock_event_device *ced)
376{
377 struct clock_event_device *dev, *newdev = NULL;
378
379 list_for_each_entry(dev, &clockevent_devices, list) {
77e32c89 380 if (dev == ced || dev->state != CLOCK_EVT_STATE_DETACHED)
03e13cf5
TG
381 continue;
382
383 if (!tick_check_replacement(newdev, dev))
384 continue;
385
386 if (!try_module_get(dev->owner))
387 continue;
388
389 if (newdev)
390 module_put(newdev->owner);
391 newdev = dev;
392 }
393 if (newdev) {
394 tick_install_replacement(newdev);
395 list_del_init(&ced->list);
396 }
397 return newdev ? 0 : -EBUSY;
398}
399
400/*
401 * Called with clockevents_mutex and clockevents_lock held
402 */
403static int __clockevents_try_unbind(struct clock_event_device *ced, int cpu)
404{
405 /* Fast track. Device is unused */
77e32c89 406 if (ced->state == CLOCK_EVT_STATE_DETACHED) {
03e13cf5
TG
407 list_del_init(&ced->list);
408 return 0;
409 }
410
411 return ced == per_cpu(tick_cpu_device, cpu).evtdev ? -EAGAIN : -EBUSY;
412}
413
414/*
415 * SMP function call to unbind a device
416 */
417static void __clockevents_unbind(void *arg)
418{
419 struct ce_unbind *cu = arg;
420 int res;
421
422 raw_spin_lock(&clockevents_lock);
423 res = __clockevents_try_unbind(cu->ce, smp_processor_id());
424 if (res == -EAGAIN)
425 res = clockevents_replace(cu->ce);
426 cu->res = res;
427 raw_spin_unlock(&clockevents_lock);
428}
429
430/*
431 * Issues smp function call to unbind a per cpu device. Called with
432 * clockevents_mutex held.
433 */
434static int clockevents_unbind(struct clock_event_device *ced, int cpu)
435{
436 struct ce_unbind cu = { .ce = ced, .res = -ENODEV };
437
438 smp_call_function_single(cpu, __clockevents_unbind, &cu, 1);
439 return cu.res;
440}
441
442/*
443 * Unbind a clockevents device.
444 */
445int clockevents_unbind_device(struct clock_event_device *ced, int cpu)
446{
447 int ret;
448
449 mutex_lock(&clockevents_mutex);
450 ret = clockevents_unbind(ced, cpu);
451 mutex_unlock(&clockevents_mutex);
452 return ret;
453}
32a15832 454EXPORT_SYMBOL_GPL(clockevents_unbind_device);
03e13cf5 455
77e32c89 456/* Sanity check of state transition callbacks */
bd624d75
VK
457static int clockevents_sanity_check(struct clock_event_device *dev)
458{
459 /* Legacy set_mode() callback */
460 if (dev->set_mode) {
461 /* We shouldn't be supporting new modes now */
77e32c89 462 WARN_ON(dev->set_state_periodic || dev->set_state_oneshot ||
8fff52fd
VK
463 dev->set_state_shutdown || dev->tick_resume ||
464 dev->set_state_oneshot_stopped);
de81e64b
VK
465
466 BUG_ON(dev->mode != CLOCK_EVT_MODE_UNUSED);
bd624d75
VK
467 return 0;
468 }
469
470 if (dev->features & CLOCK_EVT_FEAT_DUMMY)
471 return 0;
472
77e32c89
VK
473 /* New state-specific callbacks */
474 if (!dev->set_state_shutdown)
bd624d75
VK
475 return -EINVAL;
476
477 if ((dev->features & CLOCK_EVT_FEAT_PERIODIC) &&
77e32c89 478 !dev->set_state_periodic)
bd624d75
VK
479 return -EINVAL;
480
481 if ((dev->features & CLOCK_EVT_FEAT_ONESHOT) &&
77e32c89 482 !dev->set_state_oneshot)
bd624d75
VK
483 return -EINVAL;
484
485 return 0;
486}
487
d316c57f
TG
488/**
489 * clockevents_register_device - register a clock event device
490 * @dev: device to register
491 */
492void clockevents_register_device(struct clock_event_device *dev)
493{
f833bab8
SS
494 unsigned long flags;
495
bd624d75
VK
496 BUG_ON(clockevents_sanity_check(dev));
497
77e32c89
VK
498 /* Initialize state to DETACHED */
499 dev->state = CLOCK_EVT_STATE_DETACHED;
500
1b054b67
TG
501 if (!dev->cpumask) {
502 WARN_ON(num_possible_cpus() > 1);
503 dev->cpumask = cpumask_of(smp_processor_id());
504 }
320ab2b0 505
b5f91da0 506 raw_spin_lock_irqsave(&clockevents_lock, flags);
d316c57f
TG
507
508 list_add(&dev->list, &clockevent_devices);
7172a286 509 tick_check_new_device(dev);
d316c57f
TG
510 clockevents_notify_released();
511
b5f91da0 512 raw_spin_unlock_irqrestore(&clockevents_lock, flags);
d316c57f 513}
c81fc2c3 514EXPORT_SYMBOL_GPL(clockevents_register_device);
d316c57f 515
e5400321 516void clockevents_config(struct clock_event_device *dev, u32 freq)
57f0fcbe 517{
c0e299b1 518 u64 sec;
57f0fcbe
TG
519
520 if (!(dev->features & CLOCK_EVT_FEAT_ONESHOT))
521 return;
522
523 /*
524 * Calculate the maximum number of seconds we can sleep. Limit
525 * to 10 minutes for hardware which can program more than
526 * 32bit ticks so we still get reasonable conversion values.
527 */
528 sec = dev->max_delta_ticks;
529 do_div(sec, freq);
530 if (!sec)
531 sec = 1;
532 else if (sec > 600 && dev->max_delta_ticks > UINT_MAX)
533 sec = 600;
534
535 clockevents_calc_mult_shift(dev, freq, sec);
97b94106
TG
536 dev->min_delta_ns = cev_delta2ns(dev->min_delta_ticks, dev, false);
537 dev->max_delta_ns = cev_delta2ns(dev->max_delta_ticks, dev, true);
57f0fcbe
TG
538}
539
540/**
541 * clockevents_config_and_register - Configure and register a clock event device
542 * @dev: device to register
543 * @freq: The clock frequency
544 * @min_delta: The minimum clock ticks to program in oneshot mode
545 * @max_delta: The maximum clock ticks to program in oneshot mode
546 *
547 * min/max_delta can be 0 for devices which do not support oneshot mode.
548 */
549void clockevents_config_and_register(struct clock_event_device *dev,
550 u32 freq, unsigned long min_delta,
551 unsigned long max_delta)
552{
553 dev->min_delta_ticks = min_delta;
554 dev->max_delta_ticks = max_delta;
555 clockevents_config(dev, freq);
556 clockevents_register_device(dev);
557}
c35ef95c 558EXPORT_SYMBOL_GPL(clockevents_config_and_register);
57f0fcbe 559
627ee794
TG
560int __clockevents_update_freq(struct clock_event_device *dev, u32 freq)
561{
562 clockevents_config(dev, freq);
563
77e32c89 564 if (dev->state == CLOCK_EVT_STATE_ONESHOT)
fe79a9ba
SB
565 return clockevents_program_event(dev, dev->next_event, false);
566
77e32c89
VK
567 if (dev->state == CLOCK_EVT_STATE_PERIODIC)
568 return __clockevents_set_state(dev, CLOCK_EVT_STATE_PERIODIC);
627ee794 569
fe79a9ba 570 return 0;
627ee794
TG
571}
572
80b816b7
TG
573/**
574 * clockevents_update_freq - Update frequency and reprogram a clock event device.
575 * @dev: device to modify
576 * @freq: new device frequency
577 *
578 * Reconfigure and reprogram a clock event device in oneshot
579 * mode. Must be called on the cpu for which the device delivers per
627ee794
TG
580 * cpu timer events. If called for the broadcast device the core takes
581 * care of serialization.
582 *
583 * Returns 0 on success, -ETIME when the event is in the past.
80b816b7
TG
584 */
585int clockevents_update_freq(struct clock_event_device *dev, u32 freq)
586{
627ee794
TG
587 unsigned long flags;
588 int ret;
80b816b7 589
627ee794
TG
590 local_irq_save(flags);
591 ret = tick_broadcast_update_freq(dev, freq);
592 if (ret == -ENODEV)
593 ret = __clockevents_update_freq(dev, freq);
594 local_irq_restore(flags);
595 return ret;
80b816b7
TG
596}
597
d316c57f
TG
598/*
599 * Noop handler when we shut down an event device
600 */
7c1e7689 601void clockevents_handle_noop(struct clock_event_device *dev)
d316c57f
TG
602{
603}
604
605/**
606 * clockevents_exchange_device - release and request clock devices
607 * @old: device to release (can be NULL)
608 * @new: device to request (can be NULL)
609 *
db6f672e
TG
610 * Called from various tick functions with clockevents_lock held and
611 * interrupts disabled.
d316c57f
TG
612 */
613void clockevents_exchange_device(struct clock_event_device *old,
614 struct clock_event_device *new)
615{
d316c57f
TG
616 /*
617 * Caller releases a clock event device. We queue it into the
618 * released list and do a notify add later.
619 */
620 if (old) {
ccf33d68 621 module_put(old->owner);
77e32c89 622 clockevents_set_state(old, CLOCK_EVT_STATE_DETACHED);
d316c57f
TG
623 list_del(&old->list);
624 list_add(&old->list, &clockevents_released);
625 }
626
627 if (new) {
77e32c89 628 BUG_ON(new->state != CLOCK_EVT_STATE_DETACHED);
2344abbc 629 clockevents_shutdown(new);
d316c57f 630 }
d316c57f
TG
631}
632
adc78e6b
RW
633/**
634 * clockevents_suspend - suspend clock devices
635 */
636void clockevents_suspend(void)
637{
638 struct clock_event_device *dev;
639
640 list_for_each_entry_reverse(dev, &clockevent_devices, list)
ac34ad27 641 if (dev->suspend && dev->mode != CLOCK_EVT_MODE_UNUSED)
adc78e6b
RW
642 dev->suspend(dev);
643}
644
645/**
646 * clockevents_resume - resume clock devices
647 */
648void clockevents_resume(void)
649{
650 struct clock_event_device *dev;
651
652 list_for_each_entry(dev, &clockevent_devices, list)
ac34ad27 653 if (dev->resume && dev->mode != CLOCK_EVT_MODE_UNUSED)
adc78e6b
RW
654 dev->resume(dev);
655}
656
a49b116d 657#ifdef CONFIG_HOTPLUG_CPU
d316c57f 658/**
a49b116d 659 * tick_cleanup_dead_cpu - Cleanup the tick and clockevents of a dead cpu
d316c57f 660 */
a49b116d 661void tick_cleanup_dead_cpu(int cpu)
d316c57f 662{
bb6eddf7 663 struct clock_event_device *dev, *tmp;
f833bab8 664 unsigned long flags;
0b858e6f 665
b5f91da0 666 raw_spin_lock_irqsave(&clockevents_lock, flags);
d316c57f 667
a49b116d
TG
668 tick_shutdown_broadcast_oneshot(cpu);
669 tick_shutdown_broadcast(cpu);
670 tick_shutdown(cpu);
671 /*
672 * Unregister the clock event devices which were
673 * released from the users in the notify chain.
674 */
675 list_for_each_entry_safe(dev, tmp, &clockevents_released, list)
676 list_del(&dev->list);
677 /*
678 * Now check whether the CPU has left unused per cpu devices
679 */
680 list_for_each_entry_safe(dev, tmp, &clockevent_devices, list) {
681 if (cpumask_test_cpu(cpu, dev->cpumask) &&
682 cpumask_weight(dev->cpumask) == 1 &&
683 !tick_is_broadcast_device(dev)) {
684 BUG_ON(dev->state != CLOCK_EVT_STATE_DETACHED);
bb6eddf7 685 list_del(&dev->list);
bb6eddf7 686 }
d316c57f 687 }
b5f91da0 688 raw_spin_unlock_irqrestore(&clockevents_lock, flags);
d316c57f 689}
a49b116d 690#endif
501f8670
TG
691
692#ifdef CONFIG_SYSFS
693struct bus_type clockevents_subsys = {
694 .name = "clockevents",
695 .dev_name = "clockevent",
696};
697
698static DEFINE_PER_CPU(struct device, tick_percpu_dev);
699static struct tick_device *tick_get_tick_dev(struct device *dev);
700
701static ssize_t sysfs_show_current_tick_dev(struct device *dev,
702 struct device_attribute *attr,
703 char *buf)
704{
705 struct tick_device *td;
706 ssize_t count = 0;
707
708 raw_spin_lock_irq(&clockevents_lock);
709 td = tick_get_tick_dev(dev);
710 if (td && td->evtdev)
711 count = snprintf(buf, PAGE_SIZE, "%s\n", td->evtdev->name);
712 raw_spin_unlock_irq(&clockevents_lock);
713 return count;
714}
715static DEVICE_ATTR(current_device, 0444, sysfs_show_current_tick_dev, NULL);
716
03e13cf5
TG
717/* We don't support the abomination of removable broadcast devices */
718static ssize_t sysfs_unbind_tick_dev(struct device *dev,
719 struct device_attribute *attr,
720 const char *buf, size_t count)
721{
722 char name[CS_NAME_LEN];
891292a7 723 ssize_t ret = sysfs_get_uname(buf, name, count);
03e13cf5
TG
724 struct clock_event_device *ce;
725
726 if (ret < 0)
727 return ret;
728
729 ret = -ENODEV;
730 mutex_lock(&clockevents_mutex);
731 raw_spin_lock_irq(&clockevents_lock);
732 list_for_each_entry(ce, &clockevent_devices, list) {
733 if (!strcmp(ce->name, name)) {
734 ret = __clockevents_try_unbind(ce, dev->id);
735 break;
736 }
737 }
738 raw_spin_unlock_irq(&clockevents_lock);
739 /*
740 * We hold clockevents_mutex, so ce can't go away
741 */
742 if (ret == -EAGAIN)
743 ret = clockevents_unbind(ce, dev->id);
744 mutex_unlock(&clockevents_mutex);
745 return ret ? ret : count;
746}
747static DEVICE_ATTR(unbind_device, 0200, NULL, sysfs_unbind_tick_dev);
748
501f8670
TG
749#ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
750static struct device tick_bc_dev = {
751 .init_name = "broadcast",
752 .id = 0,
753 .bus = &clockevents_subsys,
754};
755
756static struct tick_device *tick_get_tick_dev(struct device *dev)
757{
758 return dev == &tick_bc_dev ? tick_get_broadcast_device() :
759 &per_cpu(tick_cpu_device, dev->id);
760}
761
762static __init int tick_broadcast_init_sysfs(void)
763{
764 int err = device_register(&tick_bc_dev);
765
766 if (!err)
767 err = device_create_file(&tick_bc_dev, &dev_attr_current_device);
768 return err;
769}
770#else
771static struct tick_device *tick_get_tick_dev(struct device *dev)
772{
773 return &per_cpu(tick_cpu_device, dev->id);
774}
775static inline int tick_broadcast_init_sysfs(void) { return 0; }
de68d9b1 776#endif
501f8670
TG
777
778static int __init tick_init_sysfs(void)
779{
780 int cpu;
781
782 for_each_possible_cpu(cpu) {
783 struct device *dev = &per_cpu(tick_percpu_dev, cpu);
784 int err;
785
786 dev->id = cpu;
787 dev->bus = &clockevents_subsys;
788 err = device_register(dev);
789 if (!err)
790 err = device_create_file(dev, &dev_attr_current_device);
03e13cf5
TG
791 if (!err)
792 err = device_create_file(dev, &dev_attr_unbind_device);
501f8670
TG
793 if (err)
794 return err;
795 }
796 return tick_broadcast_init_sysfs();
797}
798
799static int __init clockevents_init_sysfs(void)
800{
801 int err = subsys_system_register(&clockevents_subsys, NULL);
802
803 if (!err)
804 err = tick_init_sysfs();
805 return err;
806}
807device_initcall(clockevents_init_sysfs);
808#endif /* SYSFS */