1 // SPDX-License-Identifier: GPL-2.0
3 * This file contains functions which manage clock event devices.
5 * Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de>
6 * Copyright(C) 2005-2007, Red Hat, Inc., Ingo Molnar
7 * Copyright(C) 2006-2007, Timesys Corp., Thomas Gleixner
10 #include <linux/clockchips.h>
11 #include <linux/hrtimer.h>
12 #include <linux/init.h>
13 #include <linux/module.h>
14 #include <linux/smp.h>
15 #include <linux/device.h>
17 #include "tick-internal.h"
19 /* The registered clock event devices */
20 static LIST_HEAD(clockevent_devices
);
21 static LIST_HEAD(clockevents_released
);
22 /* Protection for the above */
23 static DEFINE_RAW_SPINLOCK(clockevents_lock
);
24 /* Protection for unbind operations */
25 static DEFINE_MUTEX(clockevents_mutex
);
28 struct clock_event_device
*ce
;
32 static u64
cev_delta2ns(unsigned long latch
, struct clock_event_device
*evt
,
35 u64 clc
= (u64
) latch
<< evt
->shift
;
38 if (WARN_ON(!evt
->mult
))
40 rnd
= (u64
) evt
->mult
- 1;
43 * Upper bound sanity check. If the backwards conversion is
44 * not equal latch, we know that the above shift overflowed.
46 if ((clc
>> evt
->shift
) != (u64
)latch
)
50 * Scaled math oddities:
52 * For mult <= (1 << shift) we can safely add mult - 1 to
53 * prevent integer rounding loss. So the backwards conversion
54 * from nsec to device ticks will be correct.
56 * For mult > (1 << shift), i.e. device frequency is > 1GHz we
57 * need to be careful. Adding mult - 1 will result in a value
58 * which when converted back to device ticks can be larger
59 * than latch by up to (mult - 1) >> shift. For the min_delta
60 * calculation we still want to apply this in order to stay
61 * above the minimum device ticks limit. For the upper limit
62 * we would end up with a latch value larger than the upper
63 * limit of the device, so we omit the add to stay below the
64 * device upper boundary.
66 * Also omit the add if it would overflow the u64 boundary.
68 if ((~0ULL - clc
> rnd
) &&
69 (!ismax
|| evt
->mult
<= (1ULL << evt
->shift
)))
72 do_div(clc
, evt
->mult
);
74 /* Deltas less than 1usec are pointless noise */
75 return clc
> 1000 ? clc
: 1000;
79 * clockevent_delta2ns - Convert a latch value (device ticks) to nanoseconds
80 * @latch: value to convert
81 * @evt: pointer to clock event device descriptor
83 * Math helper, returns latch value converted to nanoseconds (bound checked)
85 u64
clockevent_delta2ns(unsigned long latch
, struct clock_event_device
*evt
)
87 return cev_delta2ns(latch
, evt
, false);
89 EXPORT_SYMBOL_GPL(clockevent_delta2ns
);
91 static int __clockevents_switch_state(struct clock_event_device
*dev
,
92 enum clock_event_state state
)
94 if (dev
->features
& CLOCK_EVT_FEAT_DUMMY
)
97 /* Transition with new state-specific callbacks */
99 case CLOCK_EVT_STATE_DETACHED
:
100 /* The clockevent device is getting replaced. Shut it down. */
102 case CLOCK_EVT_STATE_SHUTDOWN
:
103 if (dev
->set_state_shutdown
)
104 return dev
->set_state_shutdown(dev
);
107 case CLOCK_EVT_STATE_PERIODIC
:
108 /* Core internal bug */
109 if (!(dev
->features
& CLOCK_EVT_FEAT_PERIODIC
))
111 if (dev
->set_state_periodic
)
112 return dev
->set_state_periodic(dev
);
115 case CLOCK_EVT_STATE_ONESHOT
:
116 /* Core internal bug */
117 if (!(dev
->features
& CLOCK_EVT_FEAT_ONESHOT
))
119 if (dev
->set_state_oneshot
)
120 return dev
->set_state_oneshot(dev
);
123 case CLOCK_EVT_STATE_ONESHOT_STOPPED
:
124 /* Core internal bug */
125 if (WARN_ONCE(!clockevent_state_oneshot(dev
),
126 "Current state: %d\n",
127 clockevent_get_state(dev
)))
130 if (dev
->set_state_oneshot_stopped
)
131 return dev
->set_state_oneshot_stopped(dev
);
141 * clockevents_switch_state - set the operating state of a clock event device
142 * @dev: device to modify
145 * Must be called with interrupts disabled !
147 void clockevents_switch_state(struct clock_event_device
*dev
,
148 enum clock_event_state state
)
150 if (clockevent_get_state(dev
) != state
) {
151 if (__clockevents_switch_state(dev
, state
))
154 clockevent_set_state(dev
, state
);
157 * A nsec2cyc multiplicator of 0 is invalid and we'd crash
158 * on it, so fix it up and emit a warning:
160 if (clockevent_state_oneshot(dev
)) {
161 if (WARN_ON(!dev
->mult
))
168 * clockevents_shutdown - shutdown the device and clear next_event
169 * @dev: device to shutdown
171 void clockevents_shutdown(struct clock_event_device
*dev
)
173 clockevents_switch_state(dev
, CLOCK_EVT_STATE_SHUTDOWN
);
174 dev
->next_event
= KTIME_MAX
;
178 * clockevents_tick_resume - Resume the tick device before using it again
179 * @dev: device to resume
181 int clockevents_tick_resume(struct clock_event_device
*dev
)
185 if (dev
->tick_resume
)
186 ret
= dev
->tick_resume(dev
);
191 #ifdef CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST
193 /* Limit min_delta to a jiffy */
194 #define MIN_DELTA_LIMIT (NSEC_PER_SEC / HZ)
197 * clockevents_increase_min_delta - raise minimum delta of a clock event device
198 * @dev: device to increase the minimum delta
200 * Returns 0 on success, -ETIME when the minimum delta reached the limit.
202 static int clockevents_increase_min_delta(struct clock_event_device
*dev
)
204 /* Nothing to do if we already reached the limit */
205 if (dev
->min_delta_ns
>= MIN_DELTA_LIMIT
) {
206 printk_deferred(KERN_WARNING
207 "CE: Reprogramming failure. Giving up\n");
208 dev
->next_event
= KTIME_MAX
;
212 if (dev
->min_delta_ns
< 5000)
213 dev
->min_delta_ns
= 5000;
215 dev
->min_delta_ns
+= dev
->min_delta_ns
>> 1;
217 if (dev
->min_delta_ns
> MIN_DELTA_LIMIT
)
218 dev
->min_delta_ns
= MIN_DELTA_LIMIT
;
220 printk_deferred(KERN_WARNING
221 "CE: %s increased min_delta_ns to %llu nsec\n",
222 dev
->name
? dev
->name
: "?",
223 (unsigned long long) dev
->min_delta_ns
);
228 * clockevents_program_min_delta - Set clock event device to the minimum delay.
229 * @dev: device to program
231 * Returns 0 on success, -ETIME when the retry loop failed.
233 static int clockevents_program_min_delta(struct clock_event_device
*dev
)
235 unsigned long long clc
;
240 delta
= dev
->min_delta_ns
;
241 dev
->next_event
= ktime_add_ns(ktime_get(), delta
);
243 if (clockevent_state_shutdown(dev
))
247 clc
= ((unsigned long long) delta
* dev
->mult
) >> dev
->shift
;
248 if (dev
->set_next_event((unsigned long) clc
, dev
) == 0)
253 * We tried 3 times to program the device with the
254 * given min_delta_ns. Try to increase the minimum
255 * delta, if that fails as well get out of here.
257 if (clockevents_increase_min_delta(dev
))
264 #else /* CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST */
267 * clockevents_program_min_delta - Set clock event device to the minimum delay.
268 * @dev: device to program
270 * Returns 0 on success, -ETIME when the retry loop failed.
272 static int clockevents_program_min_delta(struct clock_event_device
*dev
)
274 unsigned long long clc
;
278 for (i
= 0; i
< 10; i
++) {
279 delta
+= dev
->min_delta_ns
;
280 dev
->next_event
= ktime_add_ns(ktime_get(), delta
);
282 if (clockevent_state_shutdown(dev
))
286 clc
= ((unsigned long long) delta
* dev
->mult
) >> dev
->shift
;
287 if (dev
->set_next_event((unsigned long) clc
, dev
) == 0)
293 #endif /* CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST */
296 * clockevents_program_event - Reprogram the clock event device.
297 * @dev: device to program
298 * @expires: absolute expiry time (monotonic clock)
299 * @force: program minimum delay if expires can not be set
301 * Returns 0 on success, -ETIME when the event is in the past.
303 int clockevents_program_event(struct clock_event_device
*dev
, ktime_t expires
,
306 unsigned long long clc
;
310 if (WARN_ON_ONCE(expires
< 0))
313 dev
->next_event
= expires
;
315 if (clockevent_state_shutdown(dev
))
318 /* We must be in ONESHOT state here */
319 WARN_ONCE(!clockevent_state_oneshot(dev
), "Current state: %d\n",
320 clockevent_get_state(dev
));
322 /* Shortcut for clockevent devices that can deal with ktime. */
323 if (dev
->features
& CLOCK_EVT_FEAT_KTIME
)
324 return dev
->set_next_ktime(expires
, dev
);
326 delta
= ktime_to_ns(ktime_sub(expires
, ktime_get()));
328 return force
? clockevents_program_min_delta(dev
) : -ETIME
;
330 delta
= min(delta
, (int64_t) dev
->max_delta_ns
);
331 delta
= max(delta
, (int64_t) dev
->min_delta_ns
);
333 clc
= ((unsigned long long) delta
* dev
->mult
) >> dev
->shift
;
334 rc
= dev
->set_next_event((unsigned long) clc
, dev
);
336 return (rc
&& force
) ? clockevents_program_min_delta(dev
) : rc
;
340 * Called after a clockevent has been added which might
341 * have replaced a current regular or broadcast device. A
342 * released normal device might be a suitable replacement
343 * for the current broadcast device. Similarly a released
344 * broadcast device might be a suitable replacement for a
347 static void clockevents_notify_released(void)
349 struct clock_event_device
*dev
;
352 * Keep iterating as long as tick_check_new_device()
355 while (!list_empty(&clockevents_released
)) {
356 dev
= list_entry(clockevents_released
.next
,
357 struct clock_event_device
, list
);
358 list_move(&dev
->list
, &clockevent_devices
);
359 tick_check_new_device(dev
);
364 * Try to install a replacement clock event device
366 static int clockevents_replace(struct clock_event_device
*ced
)
368 struct clock_event_device
*dev
, *newdev
= NULL
;
370 list_for_each_entry(dev
, &clockevent_devices
, list
) {
371 if (dev
== ced
|| !clockevent_state_detached(dev
))
374 if (!tick_check_replacement(newdev
, dev
))
377 if (!try_module_get(dev
->owner
))
381 module_put(newdev
->owner
);
385 tick_install_replacement(newdev
);
386 list_del_init(&ced
->list
);
388 return newdev
? 0 : -EBUSY
;
392 * Called with clockevents_mutex and clockevents_lock held
394 static int __clockevents_try_unbind(struct clock_event_device
*ced
, int cpu
)
396 /* Fast track. Device is unused */
397 if (clockevent_state_detached(ced
)) {
398 list_del_init(&ced
->list
);
402 return ced
== per_cpu(tick_cpu_device
, cpu
).evtdev
? -EAGAIN
: -EBUSY
;
406 * SMP function call to unbind a device
408 static void __clockevents_unbind(void *arg
)
410 struct ce_unbind
*cu
= arg
;
413 raw_spin_lock(&clockevents_lock
);
414 res
= __clockevents_try_unbind(cu
->ce
, smp_processor_id());
416 res
= clockevents_replace(cu
->ce
);
418 raw_spin_unlock(&clockevents_lock
);
422 * Issues smp function call to unbind a per cpu device. Called with
423 * clockevents_mutex held.
425 static int clockevents_unbind(struct clock_event_device
*ced
, int cpu
)
427 struct ce_unbind cu
= { .ce
= ced
, .res
= -ENODEV
};
429 smp_call_function_single(cpu
, __clockevents_unbind
, &cu
, 1);
434 * Unbind a clockevents device.
436 int clockevents_unbind_device(struct clock_event_device
*ced
, int cpu
)
440 mutex_lock(&clockevents_mutex
);
441 ret
= clockevents_unbind(ced
, cpu
);
442 mutex_unlock(&clockevents_mutex
);
445 EXPORT_SYMBOL_GPL(clockevents_unbind_device
);
448 * clockevents_register_device - register a clock event device
449 * @dev: device to register
451 void clockevents_register_device(struct clock_event_device
*dev
)
455 /* Initialize state to DETACHED */
456 clockevent_set_state(dev
, CLOCK_EVT_STATE_DETACHED
);
459 WARN_ON(num_possible_cpus() > 1);
460 dev
->cpumask
= cpumask_of(smp_processor_id());
463 if (dev
->cpumask
== cpu_all_mask
) {
464 WARN(1, "%s cpumask == cpu_all_mask, using cpu_possible_mask instead\n",
466 dev
->cpumask
= cpu_possible_mask
;
469 raw_spin_lock_irqsave(&clockevents_lock
, flags
);
471 list_add(&dev
->list
, &clockevent_devices
);
472 tick_check_new_device(dev
);
473 clockevents_notify_released();
475 raw_spin_unlock_irqrestore(&clockevents_lock
, flags
);
477 EXPORT_SYMBOL_GPL(clockevents_register_device
);
479 static void clockevents_config(struct clock_event_device
*dev
, u32 freq
)
483 if (!(dev
->features
& CLOCK_EVT_FEAT_ONESHOT
))
487 * Calculate the maximum number of seconds we can sleep. Limit
488 * to 10 minutes for hardware which can program more than
489 * 32bit ticks so we still get reasonable conversion values.
491 sec
= dev
->max_delta_ticks
;
495 else if (sec
> 600 && dev
->max_delta_ticks
> UINT_MAX
)
498 clockevents_calc_mult_shift(dev
, freq
, sec
);
499 dev
->min_delta_ns
= cev_delta2ns(dev
->min_delta_ticks
, dev
, false);
500 dev
->max_delta_ns
= cev_delta2ns(dev
->max_delta_ticks
, dev
, true);
504 * clockevents_config_and_register - Configure and register a clock event device
505 * @dev: device to register
506 * @freq: The clock frequency
507 * @min_delta: The minimum clock ticks to program in oneshot mode
508 * @max_delta: The maximum clock ticks to program in oneshot mode
510 * min/max_delta can be 0 for devices which do not support oneshot mode.
512 void clockevents_config_and_register(struct clock_event_device
*dev
,
513 u32 freq
, unsigned long min_delta
,
514 unsigned long max_delta
)
516 dev
->min_delta_ticks
= min_delta
;
517 dev
->max_delta_ticks
= max_delta
;
518 clockevents_config(dev
, freq
);
519 clockevents_register_device(dev
);
521 EXPORT_SYMBOL_GPL(clockevents_config_and_register
);
523 int __clockevents_update_freq(struct clock_event_device
*dev
, u32 freq
)
525 clockevents_config(dev
, freq
);
527 if (clockevent_state_oneshot(dev
))
528 return clockevents_program_event(dev
, dev
->next_event
, false);
530 if (clockevent_state_periodic(dev
))
531 return __clockevents_switch_state(dev
, CLOCK_EVT_STATE_PERIODIC
);
537 * clockevents_update_freq - Update frequency and reprogram a clock event device.
538 * @dev: device to modify
539 * @freq: new device frequency
541 * Reconfigure and reprogram a clock event device in oneshot
542 * mode. Must be called on the cpu for which the device delivers per
543 * cpu timer events. If called for the broadcast device the core takes
544 * care of serialization.
546 * Returns 0 on success, -ETIME when the event is in the past.
548 int clockevents_update_freq(struct clock_event_device
*dev
, u32 freq
)
553 local_irq_save(flags
);
554 ret
= tick_broadcast_update_freq(dev
, freq
);
556 ret
= __clockevents_update_freq(dev
, freq
);
557 local_irq_restore(flags
);
562 * Noop handler when we shut down an event device
564 void clockevents_handle_noop(struct clock_event_device
*dev
)
569 * clockevents_exchange_device - release and request clock devices
570 * @old: device to release (can be NULL)
571 * @new: device to request (can be NULL)
573 * Called from various tick functions with clockevents_lock held and
574 * interrupts disabled.
576 void clockevents_exchange_device(struct clock_event_device
*old
,
577 struct clock_event_device
*new)
580 * Caller releases a clock event device. We queue it into the
581 * released list and do a notify add later.
584 module_put(old
->owner
);
585 clockevents_switch_state(old
, CLOCK_EVT_STATE_DETACHED
);
586 list_move(&old
->list
, &clockevents_released
);
590 BUG_ON(!clockevent_state_detached(new));
591 clockevents_shutdown(new);
596 * clockevents_suspend - suspend clock devices
598 void clockevents_suspend(void)
600 struct clock_event_device
*dev
;
602 list_for_each_entry_reverse(dev
, &clockevent_devices
, list
)
603 if (dev
->suspend
&& !clockevent_state_detached(dev
))
608 * clockevents_resume - resume clock devices
610 void clockevents_resume(void)
612 struct clock_event_device
*dev
;
614 list_for_each_entry(dev
, &clockevent_devices
, list
)
615 if (dev
->resume
&& !clockevent_state_detached(dev
))
619 #ifdef CONFIG_HOTPLUG_CPU
622 * tick_offline_cpu - Shutdown all clock events related
623 * to this CPU and take it out of the
624 * broadcast mechanism.
625 * @cpu: The outgoing CPU
627 * Called by the dying CPU during teardown.
629 void tick_offline_cpu(unsigned int cpu
)
631 struct clock_event_device
*dev
, *tmp
;
633 raw_spin_lock(&clockevents_lock
);
635 tick_broadcast_offline(cpu
);
639 * Unregister the clock event devices which were
642 list_for_each_entry_safe(dev
, tmp
, &clockevents_released
, list
)
643 list_del(&dev
->list
);
646 * Now check whether the CPU has left unused per cpu devices
648 list_for_each_entry_safe(dev
, tmp
, &clockevent_devices
, list
) {
649 if (cpumask_test_cpu(cpu
, dev
->cpumask
) &&
650 cpumask_weight(dev
->cpumask
) == 1 &&
651 !tick_is_broadcast_device(dev
)) {
652 BUG_ON(!clockevent_state_detached(dev
));
653 list_del(&dev
->list
);
657 raw_spin_unlock(&clockevents_lock
);
662 static const struct bus_type clockevents_subsys
= {
663 .name
= "clockevents",
664 .dev_name
= "clockevent",
667 static DEFINE_PER_CPU(struct device
, tick_percpu_dev
);
668 static struct tick_device
*tick_get_tick_dev(struct device
*dev
);
670 static ssize_t
current_device_show(struct device
*dev
,
671 struct device_attribute
*attr
,
674 struct tick_device
*td
;
677 raw_spin_lock_irq(&clockevents_lock
);
678 td
= tick_get_tick_dev(dev
);
679 if (td
&& td
->evtdev
)
680 count
= sysfs_emit(buf
, "%s\n", td
->evtdev
->name
);
681 raw_spin_unlock_irq(&clockevents_lock
);
684 static DEVICE_ATTR_RO(current_device
);
686 /* We don't support the abomination of removable broadcast devices */
687 static ssize_t
unbind_device_store(struct device
*dev
,
688 struct device_attribute
*attr
,
689 const char *buf
, size_t count
)
691 char name
[CS_NAME_LEN
];
692 ssize_t ret
= sysfs_get_uname(buf
, name
, count
);
693 struct clock_event_device
*ce
= NULL
, *iter
;
699 mutex_lock(&clockevents_mutex
);
700 raw_spin_lock_irq(&clockevents_lock
);
701 list_for_each_entry(iter
, &clockevent_devices
, list
) {
702 if (!strcmp(iter
->name
, name
)) {
703 ret
= __clockevents_try_unbind(iter
, dev
->id
);
708 raw_spin_unlock_irq(&clockevents_lock
);
710 * We hold clockevents_mutex, so ce can't go away
713 ret
= clockevents_unbind(ce
, dev
->id
);
714 mutex_unlock(&clockevents_mutex
);
715 return ret
? ret
: count
;
717 static DEVICE_ATTR_WO(unbind_device
);
719 #ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
720 static struct device tick_bc_dev
= {
721 .init_name
= "broadcast",
723 .bus
= &clockevents_subsys
,
726 static struct tick_device
*tick_get_tick_dev(struct device
*dev
)
728 return dev
== &tick_bc_dev
? tick_get_broadcast_device() :
729 &per_cpu(tick_cpu_device
, dev
->id
);
732 static __init
int tick_broadcast_init_sysfs(void)
734 int err
= device_register(&tick_bc_dev
);
737 err
= device_create_file(&tick_bc_dev
, &dev_attr_current_device
);
741 static struct tick_device
*tick_get_tick_dev(struct device
*dev
)
743 return &per_cpu(tick_cpu_device
, dev
->id
);
745 static inline int tick_broadcast_init_sysfs(void) { return 0; }
748 static int __init
tick_init_sysfs(void)
752 for_each_possible_cpu(cpu
) {
753 struct device
*dev
= &per_cpu(tick_percpu_dev
, cpu
);
757 dev
->bus
= &clockevents_subsys
;
758 err
= device_register(dev
);
760 err
= device_create_file(dev
, &dev_attr_current_device
);
762 err
= device_create_file(dev
, &dev_attr_unbind_device
);
766 return tick_broadcast_init_sysfs();
769 static int __init
clockevents_init_sysfs(void)
771 int err
= subsys_system_register(&clockevents_subsys
, NULL
);
774 err
= tick_init_sysfs();
777 device_initcall(clockevents_init_sysfs
);