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