1 // SPDX-License-Identifier: GPL-2.0+
11 #include <dm/device_compat.h>
12 #include <dm/device-internal.h>
17 #include <linux/err.h>
19 DECLARE_GLOBAL_DATA_PTR;
22 * Implement a timer uclass to work with lib/time.c. The timer is usually
23 * a 32/64 bits free-running up counter. The get_rate() method is used to get
24 * the input clock frequency of the timer. The get_count() method is used
25 * to get the current 64 bits count value. If the hardware is counting down,
26 * the value should be inversed inside the method. There may be no real
27 * tick, and no timer interrupt.
30 int notrace timer_get_count(struct udevice *dev, u64 *count)
32 const struct timer_ops *ops = device_get_ops(dev);
37 return ops->get_count(dev, count);
40 unsigned long notrace timer_get_rate(struct udevice *dev)
42 struct timer_dev_priv *uc_priv = dev->uclass_priv;
44 return uc_priv->clock_rate;
47 static int timer_pre_probe(struct udevice *dev)
49 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
50 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
55 /* It is possible that a timer device has a null ofnode */
56 if (!dev_of_valid(dev))
59 err = clk_get_by_index(dev, 0, &timer_clk);
61 ret = clk_get_rate(&timer_clk);
62 if (IS_ERR_VALUE(ret))
64 uc_priv->clock_rate = ret;
67 dev_read_u32_default(dev, "clock-frequency", 0);
74 static int timer_post_probe(struct udevice *dev)
76 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
78 if (!uc_priv->clock_rate)
85 * TODO: should be CONFIG_IS_ENABLED(CPU), but the SPL config has _SUPPORT on
88 #if defined(CONFIG_CPU) || defined(CONFIG_SPL_CPU_SUPPORT)
89 int timer_timebase_fallback(struct udevice *dev)
92 struct cpu_platdata *cpu_plat;
93 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
95 /* Did we get our clock rate from the device tree? */
96 if (uc_priv->clock_rate)
99 /* Fall back to timebase-frequency */
100 dev_dbg(dev, "missing clocks or clock-frequency property; falling back on timebase-frequency\n");
101 cpu = cpu_get_current_dev();
105 cpu_plat = dev_get_parent_platdata(cpu);
109 uc_priv->clock_rate = cpu_plat->timebase_freq;
114 u64 timer_conv_64(u32 count)
116 /* increment tbh if tbl has rolled over */
117 if (count < gd->timebase_l)
119 gd->timebase_l = count;
120 return ((u64)gd->timebase_h << 32) | gd->timebase_l;
123 int notrace dm_timer_init(void)
125 struct udevice *dev = NULL;
126 __maybe_unused ofnode node;
133 * Directly access gd->dm_root to suppress error messages, if the
134 * virtual root driver does not yet exist.
136 if (gd->dm_root == NULL)
139 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
140 /* Check for a chosen timer to be used for tick */
141 node = ofnode_get_chosen_node("tick-timer");
143 if (ofnode_valid(node) &&
144 uclass_get_device_by_ofnode(UCLASS_TIMER, node, &dev)) {
146 * If the timer is not marked to be bound before
147 * relocation, bind it anyway.
149 if (!lists_bind_fdt(dm_root(), node, &dev, false)) {
150 ret = device_probe(dev);
158 /* Fall back to the first available timer */
159 ret = uclass_first_device_err(UCLASS_TIMER, &dev);
172 UCLASS_DRIVER(timer) = {
175 .pre_probe = timer_pre_probe,
176 .flags = DM_UC_FLAG_SEQ_ALIAS,
177 .post_probe = timer_post_probe,
178 .per_device_auto_alloc_size = sizeof(struct timer_dev_priv),