clockevents: Introduce CLOCK_EVT_STATE_ONESHOT_STOPPED state
[platform/kernel/linux-rpi.git] / kernel / time / clockevents.c
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>
18 #include <linux/smp.h>
19 #include <linux/device.h>
20
21 #include "tick-internal.h"
22
23 /* The registered clock event devices */
24 static LIST_HEAD(clockevent_devices);
25 static LIST_HEAD(clockevents_released);
26 /* Protection for the above */
27 static DEFINE_RAW_SPINLOCK(clockevents_lock);
28 /* Protection for unbind operations */
29 static DEFINE_MUTEX(clockevents_mutex);
30
31 struct ce_unbind {
32         struct clock_event_device *ce;
33         int res;
34 };
35
36 static u64 cev_delta2ns(unsigned long latch, struct clock_event_device *evt,
37                         bool ismax)
38 {
39         u64 clc = (u64) latch << evt->shift;
40         u64 rnd;
41
42         if (unlikely(!evt->mult)) {
43                 evt->mult = 1;
44                 WARN_ON(1);
45         }
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) &&
75             (!ismax || evt->mult <= (1ULL << evt->shift)))
76                 clc += rnd;
77
78         do_div(clc, evt->mult);
79
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  */
91 u64 clockevent_delta2ns(unsigned long latch, struct clock_event_device *evt)
92 {
93         return cev_delta2ns(latch, evt, false);
94 }
95 EXPORT_SYMBOL_GPL(clockevent_delta2ns);
96
97 static int __clockevents_set_state(struct clock_event_device *dev,
98                                    enum clock_event_state state)
99 {
100         /* Transition with legacy set_mode() callback */
101         if (dev->set_mode) {
102                 /* Legacy callback doesn't support new modes */
103                 if (state > CLOCK_EVT_STATE_ONESHOT)
104                         return -ENOSYS;
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;
111                 return 0;
112         }
113
114         if (dev->features & CLOCK_EVT_FEAT_DUMMY)
115                 return 0;
116
117         /* Transition with new state-specific callbacks */
118         switch (state) {
119         case CLOCK_EVT_STATE_DETACHED:
120                 /* The clockevent device is getting replaced. Shut it down. */
121
122         case CLOCK_EVT_STATE_SHUTDOWN:
123                 return dev->set_state_shutdown(dev);
124
125         case CLOCK_EVT_STATE_PERIODIC:
126                 /* Core internal bug */
127                 if (!(dev->features & CLOCK_EVT_FEAT_PERIODIC))
128                         return -ENOSYS;
129                 return dev->set_state_periodic(dev);
130
131         case CLOCK_EVT_STATE_ONESHOT:
132                 /* Core internal bug */
133                 if (!(dev->features & CLOCK_EVT_FEAT_ONESHOT))
134                         return -ENOSYS;
135                 return dev->set_state_oneshot(dev);
136
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
148         default:
149                 return -ENOSYS;
150         }
151 }
152
153 /**
154  * clockevents_set_state - set the operating state of a clock event device
155  * @dev:        device to modify
156  * @state:      new state
157  *
158  * Must be called with interrupts disabled !
159  */
160 void clockevents_set_state(struct clock_event_device *dev,
161                            enum clock_event_state state)
162 {
163         if (dev->state != state) {
164                 if (__clockevents_set_state(dev, state))
165                         return;
166
167                 dev->state = state;
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                  */
173                 if (state == CLOCK_EVT_STATE_ONESHOT) {
174                         if (unlikely(!dev->mult)) {
175                                 dev->mult = 1;
176                                 WARN_ON(1);
177                         }
178                 }
179         }
180 }
181
182 /**
183  * clockevents_shutdown - shutdown the device and clear next_event
184  * @dev:        device to shutdown
185  */
186 void clockevents_shutdown(struct clock_event_device *dev)
187 {
188         clockevents_set_state(dev, CLOCK_EVT_STATE_SHUTDOWN);
189         dev->next_event.tv64 = KTIME_MAX;
190 }
191
192 /**
193  * clockevents_tick_resume -    Resume the tick device before using it again
194  * @dev:                        device to resume
195  */
196 int clockevents_tick_resume(struct clock_event_device *dev)
197 {
198         int ret = 0;
199
200         if (dev->set_mode) {
201                 dev->set_mode(CLOCK_EVT_MODE_RESUME, dev);
202                 dev->mode = CLOCK_EVT_MODE_RESUME;
203         } else if (dev->tick_resume) {
204                 ret = dev->tick_resume(dev);
205         }
206
207         return ret;
208 }
209
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  */
221 static 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) {
225                 printk_deferred(KERN_WARNING
226                                 "CE: Reprogramming failure. Giving up\n");
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
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);
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  */
252 static 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
262                 if (dev->state == CLOCK_EVT_STATE_SHUTDOWN)
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  */
291 static 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
299         if (dev->state == CLOCK_EVT_STATE_SHUTDOWN)
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
309 /**
310  * clockevents_program_event - Reprogram the clock event device.
311  * @dev:        device to program
312  * @expires:    absolute expiry time (monotonic clock)
313  * @force:      program minimum delay if expires can not be set
314  *
315  * Returns 0 on success, -ETIME when the event is in the past.
316  */
317 int clockevents_program_event(struct clock_event_device *dev, ktime_t expires,
318                               bool force)
319 {
320         unsigned long long clc;
321         int64_t delta;
322         int rc;
323
324         if (unlikely(expires.tv64 < 0)) {
325                 WARN_ON_ONCE(1);
326                 return -ETIME;
327         }
328
329         dev->next_event = expires;
330
331         if (dev->state == CLOCK_EVT_STATE_SHUTDOWN)
332                 return 0;
333
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
338         delta = ktime_to_ns(ktime_sub(expires, ktime_get()));
339         if (delta <= 0)
340                 return force ? clockevents_program_min_delta(dev) : -ETIME;
341
342         delta = min(delta, (int64_t) dev->max_delta_ns);
343         delta = max(delta, (int64_t) dev->min_delta_ns);
344
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;
349 }
350
351 /*
352  * Called after a notify add to make devices available which were
353  * released from the notifier call.
354  */
355 static 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);
364                 tick_check_new_device(dev);
365         }
366 }
367
368 /*
369  * Try to install a replacement clock event device
370  */
371 static 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) {
376                 if (dev == ced || dev->state != CLOCK_EVT_STATE_DETACHED)
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  */
399 static int __clockevents_try_unbind(struct clock_event_device *ced, int cpu)
400 {
401         /* Fast track. Device is unused */
402         if (ced->state == CLOCK_EVT_STATE_DETACHED) {
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  */
413 static 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  */
430 static 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  */
441 int 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 }
450 EXPORT_SYMBOL_GPL(clockevents_unbind_device);
451
452 /* Sanity check of state transition callbacks */
453 static 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 */
458                 WARN_ON(dev->set_state_periodic || dev->set_state_oneshot ||
459                         dev->set_state_shutdown || dev->tick_resume ||
460                         dev->set_state_oneshot_stopped);
461
462                 BUG_ON(dev->mode != CLOCK_EVT_MODE_UNUSED);
463                 return 0;
464         }
465
466         if (dev->features & CLOCK_EVT_FEAT_DUMMY)
467                 return 0;
468
469         /* New state-specific callbacks */
470         if (!dev->set_state_shutdown)
471                 return -EINVAL;
472
473         if ((dev->features & CLOCK_EVT_FEAT_PERIODIC) &&
474             !dev->set_state_periodic)
475                 return -EINVAL;
476
477         if ((dev->features & CLOCK_EVT_FEAT_ONESHOT) &&
478             !dev->set_state_oneshot)
479                 return -EINVAL;
480
481         return 0;
482 }
483
484 /**
485  * clockevents_register_device - register a clock event device
486  * @dev:        device to register
487  */
488 void clockevents_register_device(struct clock_event_device *dev)
489 {
490         unsigned long flags;
491
492         BUG_ON(clockevents_sanity_check(dev));
493
494         /* Initialize state to DETACHED */
495         dev->state = CLOCK_EVT_STATE_DETACHED;
496
497         if (!dev->cpumask) {
498                 WARN_ON(num_possible_cpus() > 1);
499                 dev->cpumask = cpumask_of(smp_processor_id());
500         }
501
502         raw_spin_lock_irqsave(&clockevents_lock, flags);
503
504         list_add(&dev->list, &clockevent_devices);
505         tick_check_new_device(dev);
506         clockevents_notify_released();
507
508         raw_spin_unlock_irqrestore(&clockevents_lock, flags);
509 }
510 EXPORT_SYMBOL_GPL(clockevents_register_device);
511
512 void clockevents_config(struct clock_event_device *dev, u32 freq)
513 {
514         u64 sec;
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);
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);
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  */
545 void 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 }
554 EXPORT_SYMBOL_GPL(clockevents_config_and_register);
555
556 int __clockevents_update_freq(struct clock_event_device *dev, u32 freq)
557 {
558         clockevents_config(dev, freq);
559
560         if (dev->state == CLOCK_EVT_STATE_ONESHOT)
561                 return clockevents_program_event(dev, dev->next_event, false);
562
563         if (dev->state == CLOCK_EVT_STATE_PERIODIC)
564                 return __clockevents_set_state(dev, CLOCK_EVT_STATE_PERIODIC);
565
566         return 0;
567 }
568
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
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.
580  */
581 int clockevents_update_freq(struct clock_event_device *dev, u32 freq)
582 {
583         unsigned long flags;
584         int ret;
585
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;
592 }
593
594 /*
595  * Noop handler when we shut down an event device
596  */
597 void clockevents_handle_noop(struct clock_event_device *dev)
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  *
606  * Called from various tick functions with clockevents_lock held and
607  * interrupts disabled.
608  */
609 void clockevents_exchange_device(struct clock_event_device *old,
610                                  struct clock_event_device *new)
611 {
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) {
617                 module_put(old->owner);
618                 clockevents_set_state(old, CLOCK_EVT_STATE_DETACHED);
619                 list_del(&old->list);
620                 list_add(&old->list, &clockevents_released);
621         }
622
623         if (new) {
624                 BUG_ON(new->state != CLOCK_EVT_STATE_DETACHED);
625                 clockevents_shutdown(new);
626         }
627 }
628
629 /**
630  * clockevents_suspend - suspend clock devices
631  */
632 void 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  */
644 void 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
653 #ifdef CONFIG_HOTPLUG_CPU
654 /**
655  * tick_cleanup_dead_cpu - Cleanup the tick and clockevents of a dead cpu
656  */
657 void tick_cleanup_dead_cpu(int cpu)
658 {
659         struct clock_event_device *dev, *tmp;
660         unsigned long flags;
661
662         raw_spin_lock_irqsave(&clockevents_lock, flags);
663
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);
681                         list_del(&dev->list);
682                 }
683         }
684         raw_spin_unlock_irqrestore(&clockevents_lock, flags);
685 }
686 #endif
687
688 #ifdef CONFIG_SYSFS
689 struct bus_type clockevents_subsys = {
690         .name           = "clockevents",
691         .dev_name       = "clockevent",
692 };
693
694 static DEFINE_PER_CPU(struct device, tick_percpu_dev);
695 static struct tick_device *tick_get_tick_dev(struct device *dev);
696
697 static 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 }
711 static DEVICE_ATTR(current_device, 0444, sysfs_show_current_tick_dev, NULL);
712
713 /* We don't support the abomination of removable broadcast devices */
714 static 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];
719         ssize_t ret = sysfs_get_uname(buf, name, count);
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 }
743 static DEVICE_ATTR(unbind_device, 0200, NULL, sysfs_unbind_tick_dev);
744
745 #ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
746 static struct device tick_bc_dev = {
747         .init_name      = "broadcast",
748         .id             = 0,
749         .bus            = &clockevents_subsys,
750 };
751
752 static 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
758 static __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
767 static struct tick_device *tick_get_tick_dev(struct device *dev)
768 {
769         return &per_cpu(tick_cpu_device, dev->id);
770 }
771 static inline int tick_broadcast_init_sysfs(void) { return 0; }
772 #endif
773
774 static 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);
787                 if (!err)
788                         err = device_create_file(dev, &dev_attr_unbind_device);
789                 if (err)
790                         return err;
791         }
792         return tick_broadcast_init_sysfs();
793 }
794
795 static 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 }
803 device_initcall(clockevents_init_sysfs);
804 #endif /* SYSFS */