1 // SPDX-License-Identifier: GPL-2.0+
9 #include <dm/device-internal.h>
14 #include <linux/err.h>
16 DECLARE_GLOBAL_DATA_PTR;
19 * Implement a timer uclass to work with lib/time.c. The timer is usually
20 * a 32/64 bits free-running up counter. The get_rate() method is used to get
21 * the input clock frequency of the timer. The get_count() method is used
22 * to get the current 64 bits count value. If the hardware is counting down,
23 * the value should be inversed inside the method. There may be no real
24 * tick, and no timer interrupt.
27 int notrace timer_get_count(struct udevice *dev, u64 *count)
29 const struct timer_ops *ops = device_get_ops(dev);
34 return ops->get_count(dev, count);
37 unsigned long notrace timer_get_rate(struct udevice *dev)
39 struct timer_dev_priv *uc_priv = dev->uclass_priv;
41 return uc_priv->clock_rate;
44 static int timer_pre_probe(struct udevice *dev)
46 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
47 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
52 /* It is possible that a timer device has a null ofnode */
53 if (!dev_of_valid(dev))
56 err = clk_get_by_index(dev, 0, &timer_clk);
58 ret = clk_get_rate(&timer_clk);
59 if (IS_ERR_VALUE(ret))
61 uc_priv->clock_rate = ret;
64 dev_read_u32_default(dev, "clock-frequency", 0);
71 static int timer_post_probe(struct udevice *dev)
73 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
75 if (!uc_priv->clock_rate)
81 u64 timer_conv_64(u32 count)
83 /* increment tbh if tbl has rolled over */
84 if (count < gd->timebase_l)
86 gd->timebase_l = count;
87 return ((u64)gd->timebase_h << 32) | gd->timebase_l;
90 int notrace dm_timer_init(void)
92 struct udevice *dev = NULL;
93 __maybe_unused ofnode node;
100 * Directly access gd->dm_root to suppress error messages, if the
101 * virtual root driver does not yet exist.
103 if (gd->dm_root == NULL)
106 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
107 /* Check for a chosen timer to be used for tick */
108 node = ofnode_get_chosen_node("tick-timer");
110 if (ofnode_valid(node) &&
111 uclass_get_device_by_ofnode(UCLASS_TIMER, node, &dev)) {
113 * If the timer is not marked to be bound before
114 * relocation, bind it anyway.
116 if (!lists_bind_fdt(dm_root(), node, &dev, false)) {
117 ret = device_probe(dev);
125 /* Fall back to the first available timer */
126 ret = uclass_first_device_err(UCLASS_TIMER, &dev);
139 UCLASS_DRIVER(timer) = {
142 .pre_probe = timer_pre_probe,
143 .flags = DM_UC_FLAG_SEQ_ALIAS,
144 .post_probe = timer_post_probe,
145 .per_device_auto_alloc_size = sizeof(struct timer_dev_priv),