OSDN Git Service

clockevents: Remove unnecessary unlikely()
[uclinux-h8/linux.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 (WARN_ON(!evt->mult))
43                 evt->mult = 1;
44         rnd = (u64) evt->mult - 1;
45
46         /*
47          * Upper bound sanity check. If the backwards conversion is
48          * not equal latch, we know that the above shift overflowed.
49          */
50         if ((clc >> evt->shift) != (u64)latch)
51                 clc = ~0ULL;
52
53         /*
54          * Scaled math oddities:
55          *
56          * For mult <= (1 << shift) we can safely add mult - 1 to
57          * prevent integer rounding loss. So the backwards conversion
58          * from nsec to device ticks will be correct.
59          *
60          * For mult > (1 << shift), i.e. device frequency is > 1GHz we
61          * need to be careful. Adding mult - 1 will result in a value
62          * which when converted back to device ticks can be larger
63          * than latch by up to (mult - 1) >> shift. For the min_delta
64          * calculation we still want to apply this in order to stay
65          * above the minimum device ticks limit. For the upper limit
66          * we would end up with a latch value larger than the upper
67          * limit of the device, so we omit the add to stay below the
68          * device upper boundary.
69          *
70          * Also omit the add if it would overflow the u64 boundary.
71          */
72         if ((~0ULL - clc > rnd) &&
73             (!ismax || evt->mult <= (1ULL << evt->shift)))
74                 clc += rnd;
75
76         do_div(clc, evt->mult);
77
78         /* Deltas less than 1usec are pointless noise */
79         return clc > 1000 ? clc : 1000;
80 }
81
82 /**
83  * clockevents_delta2ns - Convert a latch value (device ticks) to nanoseconds
84  * @latch:      value to convert
85  * @evt:        pointer to clock event device descriptor
86  *
87  * Math helper, returns latch value converted to nanoseconds (bound checked)
88  */
89 u64 clockevent_delta2ns(unsigned long latch, struct clock_event_device *evt)
90 {
91         return cev_delta2ns(latch, evt, false);
92 }
93 EXPORT_SYMBOL_GPL(clockevent_delta2ns);
94
95 static int __clockevents_switch_state(struct clock_event_device *dev,
96                                       enum clock_event_state state)
97 {
98         if (dev->features & CLOCK_EVT_FEAT_DUMMY)
99                 return 0;
100
101         /* Transition with new state-specific callbacks */
102         switch (state) {
103         case CLOCK_EVT_STATE_DETACHED:
104                 /* The clockevent device is getting replaced. Shut it down. */
105
106         case CLOCK_EVT_STATE_SHUTDOWN:
107                 if (dev->set_state_shutdown)
108                         return dev->set_state_shutdown(dev);
109                 return 0;
110
111         case CLOCK_EVT_STATE_PERIODIC:
112                 /* Core internal bug */
113                 if (!(dev->features & CLOCK_EVT_FEAT_PERIODIC))
114                         return -ENOSYS;
115                 if (dev->set_state_periodic)
116                         return dev->set_state_periodic(dev);
117                 return 0;
118
119         case CLOCK_EVT_STATE_ONESHOT:
120                 /* Core internal bug */
121                 if (!(dev->features & CLOCK_EVT_FEAT_ONESHOT))
122                         return -ENOSYS;
123                 if (dev->set_state_oneshot)
124                         return dev->set_state_oneshot(dev);
125                 return 0;
126
127         case CLOCK_EVT_STATE_ONESHOT_STOPPED:
128                 /* Core internal bug */
129                 if (WARN_ONCE(!clockevent_state_oneshot(dev),
130                               "Current state: %d\n",
131                               clockevent_get_state(dev)))
132                         return -EINVAL;
133
134                 if (dev->set_state_oneshot_stopped)
135                         return dev->set_state_oneshot_stopped(dev);
136                 else
137                         return -ENOSYS;
138
139         default:
140                 return -ENOSYS;
141         }
142 }
143
144 /**
145  * clockevents_switch_state - set the operating state of a clock event device
146  * @dev:        device to modify
147  * @state:      new state
148  *
149  * Must be called with interrupts disabled !
150  */
151 void clockevents_switch_state(struct clock_event_device *dev,
152                               enum clock_event_state state)
153 {
154         if (clockevent_get_state(dev) != state) {
155                 if (__clockevents_switch_state(dev, state))
156                         return;
157
158                 clockevent_set_state(dev, state);
159
160                 /*
161                  * A nsec2cyc multiplicator of 0 is invalid and we'd crash
162                  * on it, so fix it up and emit a warning:
163                  */
164                 if (clockevent_state_oneshot(dev)) {
165                         if (WARN_ON(!dev->mult))
166                                 dev->mult = 1;
167                 }
168         }
169 }
170
171 /**
172  * clockevents_shutdown - shutdown the device and clear next_event
173  * @dev:        device to shutdown
174  */
175 void clockevents_shutdown(struct clock_event_device *dev)
176 {
177         clockevents_switch_state(dev, CLOCK_EVT_STATE_SHUTDOWN);
178         dev->next_event = KTIME_MAX;
179 }
180
181 /**
182  * clockevents_tick_resume -    Resume the tick device before using it again
183  * @dev:                        device to resume
184  */
185 int clockevents_tick_resume(struct clock_event_device *dev)
186 {
187         int ret = 0;
188
189         if (dev->tick_resume)
190                 ret = dev->tick_resume(dev);
191
192         return ret;
193 }
194
195 #ifdef CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST
196
197 /* Limit min_delta to a jiffie */
198 #define MIN_DELTA_LIMIT         (NSEC_PER_SEC / HZ)
199
200 /**
201  * clockevents_increase_min_delta - raise minimum delta of a clock event device
202  * @dev:       device to increase the minimum delta
203  *
204  * Returns 0 on success, -ETIME when the minimum delta reached the limit.
205  */
206 static int clockevents_increase_min_delta(struct clock_event_device *dev)
207 {
208         /* Nothing to do if we already reached the limit */
209         if (dev->min_delta_ns >= MIN_DELTA_LIMIT) {
210                 printk_deferred(KERN_WARNING
211                                 "CE: Reprogramming failure. Giving up\n");
212                 dev->next_event = KTIME_MAX;
213                 return -ETIME;
214         }
215
216         if (dev->min_delta_ns < 5000)
217                 dev->min_delta_ns = 5000;
218         else
219                 dev->min_delta_ns += dev->min_delta_ns >> 1;
220
221         if (dev->min_delta_ns > MIN_DELTA_LIMIT)
222                 dev->min_delta_ns = MIN_DELTA_LIMIT;
223
224         printk_deferred(KERN_WARNING
225                         "CE: %s increased min_delta_ns to %llu nsec\n",
226                         dev->name ? dev->name : "?",
227                         (unsigned long long) dev->min_delta_ns);
228         return 0;
229 }
230
231 /**
232  * clockevents_program_min_delta - Set clock event device to the minimum delay.
233  * @dev:        device to program
234  *
235  * Returns 0 on success, -ETIME when the retry loop failed.
236  */
237 static int clockevents_program_min_delta(struct clock_event_device *dev)
238 {
239         unsigned long long clc;
240         int64_t delta;
241         int i;
242
243         for (i = 0;;) {
244                 delta = dev->min_delta_ns;
245                 dev->next_event = ktime_add_ns(ktime_get(), delta);
246
247                 if (clockevent_state_shutdown(dev))
248                         return 0;
249
250                 dev->retries++;
251                 clc = ((unsigned long long) delta * dev->mult) >> dev->shift;
252                 if (dev->set_next_event((unsigned long) clc, dev) == 0)
253                         return 0;
254
255                 if (++i > 2) {
256                         /*
257                          * We tried 3 times to program the device with the
258                          * given min_delta_ns. Try to increase the minimum
259                          * delta, if that fails as well get out of here.
260                          */
261                         if (clockevents_increase_min_delta(dev))
262                                 return -ETIME;
263                         i = 0;
264                 }
265         }
266 }
267
268 #else  /* CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST */
269
270 /**
271  * clockevents_program_min_delta - Set clock event device to the minimum delay.
272  * @dev:        device to program
273  *
274  * Returns 0 on success, -ETIME when the retry loop failed.
275  */
276 static int clockevents_program_min_delta(struct clock_event_device *dev)
277 {
278         unsigned long long clc;
279         int64_t delta = 0;
280         int i;
281
282         for (i = 0; i < 10; i++) {
283                 delta += dev->min_delta_ns;
284                 dev->next_event = ktime_add_ns(ktime_get(), delta);
285
286                 if (clockevent_state_shutdown(dev))
287                         return 0;
288
289                 dev->retries++;
290                 clc = ((unsigned long long) delta * dev->mult) >> dev->shift;
291                 if (dev->set_next_event((unsigned long) clc, dev) == 0)
292                         return 0;
293         }
294         return -ETIME;
295 }
296
297 #endif /* CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST */
298
299 /**
300  * clockevents_program_event - Reprogram the clock event device.
301  * @dev:        device to program
302  * @expires:    absolute expiry time (monotonic clock)
303  * @force:      program minimum delay if expires can not be set
304  *
305  * Returns 0 on success, -ETIME when the event is in the past.
306  */
307 int clockevents_program_event(struct clock_event_device *dev, ktime_t expires,
308                               bool force)
309 {
310         unsigned long long clc;
311         int64_t delta;
312         int rc;
313
314         if (WARN_ON_ONCE(expires < 0))
315                 return -ETIME;
316
317         dev->next_event = expires;
318
319         if (clockevent_state_shutdown(dev))
320                 return 0;
321
322         /* We must be in ONESHOT state here */
323         WARN_ONCE(!clockevent_state_oneshot(dev), "Current state: %d\n",
324                   clockevent_get_state(dev));
325
326         /* Shortcut for clockevent devices that can deal with ktime. */
327         if (dev->features & CLOCK_EVT_FEAT_KTIME)
328                 return dev->set_next_ktime(expires, dev);
329
330         delta = ktime_to_ns(ktime_sub(expires, ktime_get()));
331         if (delta <= 0)
332                 return force ? clockevents_program_min_delta(dev) : -ETIME;
333
334         delta = min(delta, (int64_t) dev->max_delta_ns);
335         delta = max(delta, (int64_t) dev->min_delta_ns);
336
337         clc = ((unsigned long long) delta * dev->mult) >> dev->shift;
338         rc = dev->set_next_event((unsigned long) clc, dev);
339
340         return (rc && force) ? clockevents_program_min_delta(dev) : rc;
341 }
342
343 /*
344  * Called after a notify add to make devices available which were
345  * released from the notifier call.
346  */
347 static void clockevents_notify_released(void)
348 {
349         struct clock_event_device *dev;
350
351         while (!list_empty(&clockevents_released)) {
352                 dev = list_entry(clockevents_released.next,
353                                  struct clock_event_device, list);
354                 list_del(&dev->list);
355                 list_add(&dev->list, &clockevent_devices);
356                 tick_check_new_device(dev);
357         }
358 }
359
360 /*
361  * Try to install a replacement clock event device
362  */
363 static int clockevents_replace(struct clock_event_device *ced)
364 {
365         struct clock_event_device *dev, *newdev = NULL;
366
367         list_for_each_entry(dev, &clockevent_devices, list) {
368                 if (dev == ced || !clockevent_state_detached(dev))
369                         continue;
370
371                 if (!tick_check_replacement(newdev, dev))
372                         continue;
373
374                 if (!try_module_get(dev->owner))
375                         continue;
376
377                 if (newdev)
378                         module_put(newdev->owner);
379                 newdev = dev;
380         }
381         if (newdev) {
382                 tick_install_replacement(newdev);
383                 list_del_init(&ced->list);
384         }
385         return newdev ? 0 : -EBUSY;
386 }
387
388 /*
389  * Called with clockevents_mutex and clockevents_lock held
390  */
391 static int __clockevents_try_unbind(struct clock_event_device *ced, int cpu)
392 {
393         /* Fast track. Device is unused */
394         if (clockevent_state_detached(ced)) {
395                 list_del_init(&ced->list);
396                 return 0;
397         }
398
399         return ced == per_cpu(tick_cpu_device, cpu).evtdev ? -EAGAIN : -EBUSY;
400 }
401
402 /*
403  * SMP function call to unbind a device
404  */
405 static void __clockevents_unbind(void *arg)
406 {
407         struct ce_unbind *cu = arg;
408         int res;
409
410         raw_spin_lock(&clockevents_lock);
411         res = __clockevents_try_unbind(cu->ce, smp_processor_id());
412         if (res == -EAGAIN)
413                 res = clockevents_replace(cu->ce);
414         cu->res = res;
415         raw_spin_unlock(&clockevents_lock);
416 }
417
418 /*
419  * Issues smp function call to unbind a per cpu device. Called with
420  * clockevents_mutex held.
421  */
422 static int clockevents_unbind(struct clock_event_device *ced, int cpu)
423 {
424         struct ce_unbind cu = { .ce = ced, .res = -ENODEV };
425
426         smp_call_function_single(cpu, __clockevents_unbind, &cu, 1);
427         return cu.res;
428 }
429
430 /*
431  * Unbind a clockevents device.
432  */
433 int clockevents_unbind_device(struct clock_event_device *ced, int cpu)
434 {
435         int ret;
436
437         mutex_lock(&clockevents_mutex);
438         ret = clockevents_unbind(ced, cpu);
439         mutex_unlock(&clockevents_mutex);
440         return ret;
441 }
442 EXPORT_SYMBOL_GPL(clockevents_unbind_device);
443
444 /**
445  * clockevents_register_device - register a clock event device
446  * @dev:        device to register
447  */
448 void clockevents_register_device(struct clock_event_device *dev)
449 {
450         unsigned long flags;
451
452         /* Initialize state to DETACHED */
453         clockevent_set_state(dev, CLOCK_EVT_STATE_DETACHED);
454
455         if (!dev->cpumask) {
456                 WARN_ON(num_possible_cpus() > 1);
457                 dev->cpumask = cpumask_of(smp_processor_id());
458         }
459
460         if (dev->cpumask == cpu_all_mask) {
461                 WARN(1, "%s cpumask == cpu_all_mask, using cpu_possible_mask instead\n",
462                      dev->name);
463                 dev->cpumask = cpu_possible_mask;
464         }
465
466         raw_spin_lock_irqsave(&clockevents_lock, flags);
467
468         list_add(&dev->list, &clockevent_devices);
469         tick_check_new_device(dev);
470         clockevents_notify_released();
471
472         raw_spin_unlock_irqrestore(&clockevents_lock, flags);
473 }
474 EXPORT_SYMBOL_GPL(clockevents_register_device);
475
476 static void clockevents_config(struct clock_event_device *dev, u32 freq)
477 {
478         u64 sec;
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);
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);
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  */
509 void 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 }
518 EXPORT_SYMBOL_GPL(clockevents_config_and_register);
519
520 int __clockevents_update_freq(struct clock_event_device *dev, u32 freq)
521 {
522         clockevents_config(dev, freq);
523
524         if (clockevent_state_oneshot(dev))
525                 return clockevents_program_event(dev, dev->next_event, false);
526
527         if (clockevent_state_periodic(dev))
528                 return __clockevents_switch_state(dev, CLOCK_EVT_STATE_PERIODIC);
529
530         return 0;
531 }
532
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
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.
544  */
545 int clockevents_update_freq(struct clock_event_device *dev, u32 freq)
546 {
547         unsigned long flags;
548         int ret;
549
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;
556 }
557
558 /*
559  * Noop handler when we shut down an event device
560  */
561 void clockevents_handle_noop(struct clock_event_device *dev)
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  *
570  * Called from various tick functions with clockevents_lock held and
571  * interrupts disabled.
572  */
573 void clockevents_exchange_device(struct clock_event_device *old,
574                                  struct clock_event_device *new)
575 {
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) {
581                 module_put(old->owner);
582                 clockevents_switch_state(old, CLOCK_EVT_STATE_DETACHED);
583                 list_del(&old->list);
584                 list_add(&old->list, &clockevents_released);
585         }
586
587         if (new) {
588                 BUG_ON(!clockevent_state_detached(new));
589                 clockevents_shutdown(new);
590         }
591 }
592
593 /**
594  * clockevents_suspend - suspend clock devices
595  */
596 void clockevents_suspend(void)
597 {
598         struct clock_event_device *dev;
599
600         list_for_each_entry_reverse(dev, &clockevent_devices, list)
601                 if (dev->suspend && !clockevent_state_detached(dev))
602                         dev->suspend(dev);
603 }
604
605 /**
606  * clockevents_resume - resume clock devices
607  */
608 void clockevents_resume(void)
609 {
610         struct clock_event_device *dev;
611
612         list_for_each_entry(dev, &clockevent_devices, list)
613                 if (dev->resume && !clockevent_state_detached(dev))
614                         dev->resume(dev);
615 }
616
617 #ifdef CONFIG_HOTPLUG_CPU
618 /**
619  * tick_cleanup_dead_cpu - Cleanup the tick and clockevents of a dead cpu
620  */
621 void tick_cleanup_dead_cpu(int cpu)
622 {
623         struct clock_event_device *dev, *tmp;
624         unsigned long flags;
625
626         raw_spin_lock_irqsave(&clockevents_lock, flags);
627
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)) {
644                         BUG_ON(!clockevent_state_detached(dev));
645                         list_del(&dev->list);
646                 }
647         }
648         raw_spin_unlock_irqrestore(&clockevents_lock, flags);
649 }
650 #endif
651
652 #ifdef CONFIG_SYSFS
653 static struct bus_type clockevents_subsys = {
654         .name           = "clockevents",
655         .dev_name       = "clockevent",
656 };
657
658 static DEFINE_PER_CPU(struct device, tick_percpu_dev);
659 static struct tick_device *tick_get_tick_dev(struct device *dev);
660
661 static 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 }
675 static DEVICE_ATTR(current_device, 0444, sysfs_show_current_tick_dev, NULL);
676
677 /* We don't support the abomination of removable broadcast devices */
678 static 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];
683         ssize_t ret = sysfs_get_uname(buf, name, count);
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 }
707 static DEVICE_ATTR(unbind_device, 0200, NULL, sysfs_unbind_tick_dev);
708
709 #ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
710 static struct device tick_bc_dev = {
711         .init_name      = "broadcast",
712         .id             = 0,
713         .bus            = &clockevents_subsys,
714 };
715
716 static 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
722 static __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
731 static struct tick_device *tick_get_tick_dev(struct device *dev)
732 {
733         return &per_cpu(tick_cpu_device, dev->id);
734 }
735 static inline int tick_broadcast_init_sysfs(void) { return 0; }
736 #endif
737
738 static 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);
751                 if (!err)
752                         err = device_create_file(dev, &dev_attr_unbind_device);
753                 if (err)
754                         return err;
755         }
756         return tick_broadcast_init_sysfs();
757 }
758
759 static 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 }
767 device_initcall(clockevents_init_sysfs);
768 #endif /* SYSFS */