1 // SPDX-License-Identifier: GPL-2.0+
6 #define LOG_CATEGORY UCLASS_TIMER
11 #include <asm/global_data.h>
13 #include <dm/device_compat.h>
14 #include <dm/device-internal.h>
19 #include <linux/err.h>
22 DECLARE_GLOBAL_DATA_PTR;
25 * Implement a timer uclass to work with lib/time.c. The timer is usually
26 * a 32/64 bits free-running up counter. The get_rate() method is used to get
27 * the input clock frequency of the timer. The get_count() method is used
28 * to get the current 64 bits count value. If the hardware is counting down,
29 * the value should be inversed inside the method. There may be no real
30 * tick, and no timer interrupt.
33 int notrace timer_get_count(struct udevice *dev, u64 *count)
35 struct timer_ops *ops = timer_get_ops(dev);
40 *count = ops->get_count(dev);
44 unsigned long notrace timer_get_rate(struct udevice *dev)
46 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
48 return uc_priv->clock_rate;
51 static int timer_pre_probe(struct udevice *dev)
53 if (CONFIG_IS_ENABLED(OF_REAL)) {
54 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
60 * It is possible that a timer device has a null ofnode
62 if (!dev_has_ofnode(dev))
65 err = clk_get_by_index(dev, 0, &timer_clk);
67 ret = clk_get_rate(&timer_clk);
68 if (!IS_ERR_VALUE(ret)) {
69 uc_priv->clock_rate = ret;
74 uc_priv->clock_rate = dev_read_u32_default(dev, "clock-frequency", 0);
80 static int timer_post_probe(struct udevice *dev)
82 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
84 if (!uc_priv->clock_rate)
90 #if CONFIG_IS_ENABLED(CPU)
91 int timer_timebase_fallback(struct udevice *dev)
94 struct cpu_plat *cpu_plat;
95 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
97 /* Did we get our clock rate from the device tree? */
98 if (uc_priv->clock_rate)
101 /* Fall back to timebase-frequency */
102 dev_dbg(dev, "missing clocks or clock-frequency property; falling back on timebase-frequency\n");
103 cpu = cpu_get_current_dev();
107 cpu_plat = dev_get_parent_plat(cpu);
111 uc_priv->clock_rate = cpu_plat->timebase_freq;
116 u64 timer_conv_64(u32 count)
118 /* increment tbh if tbl has rolled over */
119 if (count < gd->timebase_l)
121 gd->timebase_l = count;
122 return ((u64)gd->timebase_h << 32) | gd->timebase_l;
125 int dm_timer_init(void)
127 struct udevice *dev = NULL;
128 __maybe_unused ofnode node;
135 * Directly access gd->dm_root to suppress error messages, if the
136 * virtual root driver does not yet exist.
138 if (gd->dm_root == NULL)
141 if (CONFIG_IS_ENABLED(OF_REAL)) {
142 /* Check for a chosen timer to be used for tick */
143 node = ofnode_get_chosen_node("tick-timer");
145 if (ofnode_valid(node) &&
146 uclass_get_device_by_ofnode(UCLASS_TIMER, node, &dev)) {
148 * If the timer is not marked to be bound before
149 * relocation, bind it anyway.
151 if (!lists_bind_fdt(dm_root(), node, &dev, NULL, false)) {
152 ret = device_probe(dev);
160 /* Fall back to the first available timer */
161 ret = uclass_first_device_err(UCLASS_TIMER, &dev);
174 UCLASS_DRIVER(timer) = {
177 .pre_probe = timer_pre_probe,
178 .flags = DM_UC_FLAG_SEQ_ALIAS,
179 .post_probe = timer_post_probe,
180 .per_device_auto = sizeof(struct timer_dev_priv),