]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - kernel/time/clockevents.c
clockevents: Introduce CLOCK_EVT_STATE_ONESHOT_STOPPED state
[mirror_ubuntu-zesty-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
65516f8a
MS
334 /* Shortcut for clockevent devices that can deal with ktime. */
335 if (dev->features & CLOCK_EVT_FEAT_KTIME)
336 return dev->set_next_ktime(expires, dev);
337
d1748302
MS
338 delta = ktime_to_ns(ktime_sub(expires, ktime_get()));
339 if (delta <= 0)
340 return force ? clockevents_program_min_delta(dev) : -ETIME;
d316c57f 341
d1748302
MS
342 delta = min(delta, (int64_t) dev->max_delta_ns);
343 delta = max(delta, (int64_t) dev->min_delta_ns);
d316c57f 344
d1748302
MS
345 clc = ((unsigned long long) delta * dev->mult) >> dev->shift;
346 rc = dev->set_next_event((unsigned long) clc, dev);
347
348 return (rc && force) ? clockevents_program_min_delta(dev) : rc;
d316c57f
TG
349}
350
d316c57f 351/*
3eb05676 352 * Called after a notify add to make devices available which were
d316c57f
TG
353 * released from the notifier call.
354 */
355static void clockevents_notify_released(void)
356{
357 struct clock_event_device *dev;
358
359 while (!list_empty(&clockevents_released)) {
360 dev = list_entry(clockevents_released.next,
361 struct clock_event_device, list);
362 list_del(&dev->list);
363 list_add(&dev->list, &clockevent_devices);
7172a286 364 tick_check_new_device(dev);
d316c57f
TG
365 }
366}
367
03e13cf5
TG
368/*
369 * Try to install a replacement clock event device
370 */
371static int clockevents_replace(struct clock_event_device *ced)
372{
373 struct clock_event_device *dev, *newdev = NULL;
374
375 list_for_each_entry(dev, &clockevent_devices, list) {
77e32c89 376 if (dev == ced || dev->state != CLOCK_EVT_STATE_DETACHED)
03e13cf5
TG
377 continue;
378
379 if (!tick_check_replacement(newdev, dev))
380 continue;
381
382 if (!try_module_get(dev->owner))
383 continue;
384
385 if (newdev)
386 module_put(newdev->owner);
387 newdev = dev;
388 }
389 if (newdev) {
390 tick_install_replacement(newdev);
391 list_del_init(&ced->list);
392 }
393 return newdev ? 0 : -EBUSY;
394}
395
396/*
397 * Called with clockevents_mutex and clockevents_lock held
398 */
399static int __clockevents_try_unbind(struct clock_event_device *ced, int cpu)
400{
401 /* Fast track. Device is unused */
77e32c89 402 if (ced->state == CLOCK_EVT_STATE_DETACHED) {
03e13cf5
TG
403 list_del_init(&ced->list);
404 return 0;
405 }
406
407 return ced == per_cpu(tick_cpu_device, cpu).evtdev ? -EAGAIN : -EBUSY;
408}
409
410/*
411 * SMP function call to unbind a device
412 */
413static void __clockevents_unbind(void *arg)
414{
415 struct ce_unbind *cu = arg;
416 int res;
417
418 raw_spin_lock(&clockevents_lock);
419 res = __clockevents_try_unbind(cu->ce, smp_processor_id());
420 if (res == -EAGAIN)
421 res = clockevents_replace(cu->ce);
422 cu->res = res;
423 raw_spin_unlock(&clockevents_lock);
424}
425
426/*
427 * Issues smp function call to unbind a per cpu device. Called with
428 * clockevents_mutex held.
429 */
430static int clockevents_unbind(struct clock_event_device *ced, int cpu)
431{
432 struct ce_unbind cu = { .ce = ced, .res = -ENODEV };
433
434 smp_call_function_single(cpu, __clockevents_unbind, &cu, 1);
435 return cu.res;
436}
437
438/*
439 * Unbind a clockevents device.
440 */
441int clockevents_unbind_device(struct clock_event_device *ced, int cpu)
442{
443 int ret;
444
445 mutex_lock(&clockevents_mutex);
446 ret = clockevents_unbind(ced, cpu);
447 mutex_unlock(&clockevents_mutex);
448 return ret;
449}
32a15832 450EXPORT_SYMBOL_GPL(clockevents_unbind_device);
03e13cf5 451
77e32c89 452/* Sanity check of state transition callbacks */
bd624d75
VK
453static int clockevents_sanity_check(struct clock_event_device *dev)
454{
455 /* Legacy set_mode() callback */
456 if (dev->set_mode) {
457 /* We shouldn't be supporting new modes now */
77e32c89 458 WARN_ON(dev->set_state_periodic || dev->set_state_oneshot ||
8fff52fd
VK
459 dev->set_state_shutdown || dev->tick_resume ||
460 dev->set_state_oneshot_stopped);
de81e64b
VK
461
462 BUG_ON(dev->mode != CLOCK_EVT_MODE_UNUSED);
bd624d75
VK
463 return 0;
464 }
465
466 if (dev->features & CLOCK_EVT_FEAT_DUMMY)
467 return 0;
468
77e32c89
VK
469 /* New state-specific callbacks */
470 if (!dev->set_state_shutdown)
bd624d75
VK
471 return -EINVAL;
472
473 if ((dev->features & CLOCK_EVT_FEAT_PERIODIC) &&
77e32c89 474 !dev->set_state_periodic)
bd624d75
VK
475 return -EINVAL;
476
477 if ((dev->features & CLOCK_EVT_FEAT_ONESHOT) &&
77e32c89 478 !dev->set_state_oneshot)
bd624d75
VK
479 return -EINVAL;
480
481 return 0;
482}
483
d316c57f
TG
484/**
485 * clockevents_register_device - register a clock event device
486 * @dev: device to register
487 */
488void clockevents_register_device(struct clock_event_device *dev)
489{
f833bab8
SS
490 unsigned long flags;
491
bd624d75
VK
492 BUG_ON(clockevents_sanity_check(dev));
493
77e32c89
VK
494 /* Initialize state to DETACHED */
495 dev->state = CLOCK_EVT_STATE_DETACHED;
496
1b054b67
TG
497 if (!dev->cpumask) {
498 WARN_ON(num_possible_cpus() > 1);
499 dev->cpumask = cpumask_of(smp_processor_id());
500 }
320ab2b0 501
b5f91da0 502 raw_spin_lock_irqsave(&clockevents_lock, flags);
d316c57f
TG
503
504 list_add(&dev->list, &clockevent_devices);
7172a286 505 tick_check_new_device(dev);
d316c57f
TG
506 clockevents_notify_released();
507
b5f91da0 508 raw_spin_unlock_irqrestore(&clockevents_lock, flags);
d316c57f 509}
c81fc2c3 510EXPORT_SYMBOL_GPL(clockevents_register_device);
d316c57f 511
e5400321 512void clockevents_config(struct clock_event_device *dev, u32 freq)
57f0fcbe 513{
c0e299b1 514 u64 sec;
57f0fcbe
TG
515
516 if (!(dev->features & CLOCK_EVT_FEAT_ONESHOT))
517 return;
518
519 /*
520 * Calculate the maximum number of seconds we can sleep. Limit
521 * to 10 minutes for hardware which can program more than
522 * 32bit ticks so we still get reasonable conversion values.
523 */
524 sec = dev->max_delta_ticks;
525 do_div(sec, freq);
526 if (!sec)
527 sec = 1;
528 else if (sec > 600 && dev->max_delta_ticks > UINT_MAX)
529 sec = 600;
530
531 clockevents_calc_mult_shift(dev, freq, sec);
97b94106
TG
532 dev->min_delta_ns = cev_delta2ns(dev->min_delta_ticks, dev, false);
533 dev->max_delta_ns = cev_delta2ns(dev->max_delta_ticks, dev, true);
57f0fcbe
TG
534}
535
536/**
537 * clockevents_config_and_register - Configure and register a clock event device
538 * @dev: device to register
539 * @freq: The clock frequency
540 * @min_delta: The minimum clock ticks to program in oneshot mode
541 * @max_delta: The maximum clock ticks to program in oneshot mode
542 *
543 * min/max_delta can be 0 for devices which do not support oneshot mode.
544 */
545void clockevents_config_and_register(struct clock_event_device *dev,
546 u32 freq, unsigned long min_delta,
547 unsigned long max_delta)
548{
549 dev->min_delta_ticks = min_delta;
550 dev->max_delta_ticks = max_delta;
551 clockevents_config(dev, freq);
552 clockevents_register_device(dev);
553}
c35ef95c 554EXPORT_SYMBOL_GPL(clockevents_config_and_register);
57f0fcbe 555
627ee794
TG
556int __clockevents_update_freq(struct clock_event_device *dev, u32 freq)
557{
558 clockevents_config(dev, freq);
559
77e32c89 560 if (dev->state == CLOCK_EVT_STATE_ONESHOT)
fe79a9ba
SB
561 return clockevents_program_event(dev, dev->next_event, false);
562
77e32c89
VK
563 if (dev->state == CLOCK_EVT_STATE_PERIODIC)
564 return __clockevents_set_state(dev, CLOCK_EVT_STATE_PERIODIC);
627ee794 565
fe79a9ba 566 return 0;
627ee794
TG
567}
568
80b816b7
TG
569/**
570 * clockevents_update_freq - Update frequency and reprogram a clock event device.
571 * @dev: device to modify
572 * @freq: new device frequency
573 *
574 * Reconfigure and reprogram a clock event device in oneshot
575 * mode. Must be called on the cpu for which the device delivers per
627ee794
TG
576 * cpu timer events. If called for the broadcast device the core takes
577 * care of serialization.
578 *
579 * Returns 0 on success, -ETIME when the event is in the past.
80b816b7
TG
580 */
581int clockevents_update_freq(struct clock_event_device *dev, u32 freq)
582{
627ee794
TG
583 unsigned long flags;
584 int ret;
80b816b7 585
627ee794
TG
586 local_irq_save(flags);
587 ret = tick_broadcast_update_freq(dev, freq);
588 if (ret == -ENODEV)
589 ret = __clockevents_update_freq(dev, freq);
590 local_irq_restore(flags);
591 return ret;
80b816b7
TG
592}
593
d316c57f
TG
594/*
595 * Noop handler when we shut down an event device
596 */
7c1e7689 597void clockevents_handle_noop(struct clock_event_device *dev)
d316c57f
TG
598{
599}
600
601/**
602 * clockevents_exchange_device - release and request clock devices
603 * @old: device to release (can be NULL)
604 * @new: device to request (can be NULL)
605 *
db6f672e
TG
606 * Called from various tick functions with clockevents_lock held and
607 * interrupts disabled.
d316c57f
TG
608 */
609void clockevents_exchange_device(struct clock_event_device *old,
610 struct clock_event_device *new)
611{
d316c57f
TG
612 /*
613 * Caller releases a clock event device. We queue it into the
614 * released list and do a notify add later.
615 */
616 if (old) {
ccf33d68 617 module_put(old->owner);
77e32c89 618 clockevents_set_state(old, CLOCK_EVT_STATE_DETACHED);
d316c57f
TG
619 list_del(&old->list);
620 list_add(&old->list, &clockevents_released);
621 }
622
623 if (new) {
77e32c89 624 BUG_ON(new->state != CLOCK_EVT_STATE_DETACHED);
2344abbc 625 clockevents_shutdown(new);
d316c57f 626 }
d316c57f
TG
627}
628
adc78e6b
RW
629/**
630 * clockevents_suspend - suspend clock devices
631 */
632void clockevents_suspend(void)
633{
634 struct clock_event_device *dev;
635
636 list_for_each_entry_reverse(dev, &clockevent_devices, list)
637 if (dev->suspend)
638 dev->suspend(dev);
639}
640
641/**
642 * clockevents_resume - resume clock devices
643 */
644void clockevents_resume(void)
645{
646 struct clock_event_device *dev;
647
648 list_for_each_entry(dev, &clockevent_devices, list)
649 if (dev->resume)
650 dev->resume(dev);
651}
652
a49b116d 653#ifdef CONFIG_HOTPLUG_CPU
d316c57f 654/**
a49b116d 655 * tick_cleanup_dead_cpu - Cleanup the tick and clockevents of a dead cpu
d316c57f 656 */
a49b116d 657void tick_cleanup_dead_cpu(int cpu)
d316c57f 658{
bb6eddf7 659 struct clock_event_device *dev, *tmp;
f833bab8 660 unsigned long flags;
0b858e6f 661
b5f91da0 662 raw_spin_lock_irqsave(&clockevents_lock, flags);
d316c57f 663
a49b116d
TG
664 tick_shutdown_broadcast_oneshot(cpu);
665 tick_shutdown_broadcast(cpu);
666 tick_shutdown(cpu);
667 /*
668 * Unregister the clock event devices which were
669 * released from the users in the notify chain.
670 */
671 list_for_each_entry_safe(dev, tmp, &clockevents_released, list)
672 list_del(&dev->list);
673 /*
674 * Now check whether the CPU has left unused per cpu devices
675 */
676 list_for_each_entry_safe(dev, tmp, &clockevent_devices, list) {
677 if (cpumask_test_cpu(cpu, dev->cpumask) &&
678 cpumask_weight(dev->cpumask) == 1 &&
679 !tick_is_broadcast_device(dev)) {
680 BUG_ON(dev->state != CLOCK_EVT_STATE_DETACHED);
bb6eddf7 681 list_del(&dev->list);
bb6eddf7 682 }
d316c57f 683 }
b5f91da0 684 raw_spin_unlock_irqrestore(&clockevents_lock, flags);
d316c57f 685}
a49b116d 686#endif
501f8670
TG
687
688#ifdef CONFIG_SYSFS
689struct bus_type clockevents_subsys = {
690 .name = "clockevents",
691 .dev_name = "clockevent",
692};
693
694static DEFINE_PER_CPU(struct device, tick_percpu_dev);
695static struct tick_device *tick_get_tick_dev(struct device *dev);
696
697static ssize_t sysfs_show_current_tick_dev(struct device *dev,
698 struct device_attribute *attr,
699 char *buf)
700{
701 struct tick_device *td;
702 ssize_t count = 0;
703
704 raw_spin_lock_irq(&clockevents_lock);
705 td = tick_get_tick_dev(dev);
706 if (td && td->evtdev)
707 count = snprintf(buf, PAGE_SIZE, "%s\n", td->evtdev->name);
708 raw_spin_unlock_irq(&clockevents_lock);
709 return count;
710}
711static DEVICE_ATTR(current_device, 0444, sysfs_show_current_tick_dev, NULL);
712
03e13cf5
TG
713/* We don't support the abomination of removable broadcast devices */
714static ssize_t sysfs_unbind_tick_dev(struct device *dev,
715 struct device_attribute *attr,
716 const char *buf, size_t count)
717{
718 char name[CS_NAME_LEN];
891292a7 719 ssize_t ret = sysfs_get_uname(buf, name, count);
03e13cf5
TG
720 struct clock_event_device *ce;
721
722 if (ret < 0)
723 return ret;
724
725 ret = -ENODEV;
726 mutex_lock(&clockevents_mutex);
727 raw_spin_lock_irq(&clockevents_lock);
728 list_for_each_entry(ce, &clockevent_devices, list) {
729 if (!strcmp(ce->name, name)) {
730 ret = __clockevents_try_unbind(ce, dev->id);
731 break;
732 }
733 }
734 raw_spin_unlock_irq(&clockevents_lock);
735 /*
736 * We hold clockevents_mutex, so ce can't go away
737 */
738 if (ret == -EAGAIN)
739 ret = clockevents_unbind(ce, dev->id);
740 mutex_unlock(&clockevents_mutex);
741 return ret ? ret : count;
742}
743static DEVICE_ATTR(unbind_device, 0200, NULL, sysfs_unbind_tick_dev);
744
501f8670
TG
745#ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
746static struct device tick_bc_dev = {
747 .init_name = "broadcast",
748 .id = 0,
749 .bus = &clockevents_subsys,
750};
751
752static struct tick_device *tick_get_tick_dev(struct device *dev)
753{
754 return dev == &tick_bc_dev ? tick_get_broadcast_device() :
755 &per_cpu(tick_cpu_device, dev->id);
756}
757
758static __init int tick_broadcast_init_sysfs(void)
759{
760 int err = device_register(&tick_bc_dev);
761
762 if (!err)
763 err = device_create_file(&tick_bc_dev, &dev_attr_current_device);
764 return err;
765}
766#else
767static struct tick_device *tick_get_tick_dev(struct device *dev)
768{
769 return &per_cpu(tick_cpu_device, dev->id);
770}
771static inline int tick_broadcast_init_sysfs(void) { return 0; }
de68d9b1 772#endif
501f8670
TG
773
774static int __init tick_init_sysfs(void)
775{
776 int cpu;
777
778 for_each_possible_cpu(cpu) {
779 struct device *dev = &per_cpu(tick_percpu_dev, cpu);
780 int err;
781
782 dev->id = cpu;
783 dev->bus = &clockevents_subsys;
784 err = device_register(dev);
785 if (!err)
786 err = device_create_file(dev, &dev_attr_current_device);
03e13cf5
TG
787 if (!err)
788 err = device_create_file(dev, &dev_attr_unbind_device);
501f8670
TG
789 if (err)
790 return err;
791 }
792 return tick_broadcast_init_sysfs();
793}
794
795static int __init clockevents_init_sysfs(void)
796{
797 int err = subsys_system_register(&clockevents_subsys, NULL);
798
799 if (!err)
800 err = tick_init_sysfs();
801 return err;
802}
803device_initcall(clockevents_init_sysfs);
804#endif /* SYSFS */