4 * SPDX-License-Identifier: GPL-2.0+
10 #include <dm/device-internal.h>
15 DECLARE_GLOBAL_DATA_PTR;
18 * Implement a timer uclass to work with lib/time.c. The timer is usually
19 * a 32/64 bits free-running up counter. The get_rate() method is used to get
20 * the input clock frequency of the timer. The get_count() method is used
21 * to get the current 64 bits count value. If the hardware is counting down,
22 * the value should be inversed inside the method. There may be no real
23 * tick, and no timer interrupt.
26 int notrace timer_get_count(struct udevice *dev, u64 *count)
28 const struct timer_ops *ops = device_get_ops(dev);
33 return ops->get_count(dev, count);
36 unsigned long notrace timer_get_rate(struct udevice *dev)
38 struct timer_dev_priv *uc_priv = dev->uclass_priv;
40 return uc_priv->clock_rate;
43 static int timer_pre_probe(struct udevice *dev)
45 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
46 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
51 err = clk_get_by_index(dev, 0, &timer_clk);
53 ret = clk_get_rate(&timer_clk);
54 if (IS_ERR_VALUE(ret))
56 uc_priv->clock_rate = ret;
58 uc_priv->clock_rate = fdtdec_get_int(gd->fdt_blob,
59 dev_of_offset(dev), "clock-frequency", 0);
65 static int timer_post_probe(struct udevice *dev)
67 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
69 if (!uc_priv->clock_rate)
75 u64 timer_conv_64(u32 count)
77 /* increment tbh if tbl has rolled over */
78 if (count < gd->timebase_l)
80 gd->timebase_l = count;
81 return ((u64)gd->timebase_h << 32) | gd->timebase_l;
84 int notrace dm_timer_init(void)
86 __maybe_unused const void *blob = gd->fdt_blob;
87 struct udevice *dev = NULL;
94 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
95 /* Check for a chosen timer to be used for tick */
96 node = fdtdec_get_chosen_node(blob, "tick-timer");
99 /* No chosen timer, trying first available timer */
100 ret = uclass_first_device_err(UCLASS_TIMER, &dev);
104 if (uclass_get_device_by_of_offset(UCLASS_TIMER, node, &dev)) {
106 * If the timer is not marked to be bound before
107 * relocation, bind it anyway.
110 !lists_bind_fdt(gd->dm_root, offset_to_ofnode(node),
112 ret = device_probe(dev);
127 UCLASS_DRIVER(timer) = {
130 .pre_probe = timer_pre_probe,
131 .flags = DM_UC_FLAG_SEQ_ALIAS,
132 .post_probe = timer_post_probe,
133 .per_device_auto_alloc_size = sizeof(struct timer_dev_priv),