blob: 73b4a5cd27fa0d3aaa648ce03639ce3d0f2b5827 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Thomas Chouc8a7ba92015-10-09 13:46:34 +08002/*
3 * Copyright (C) 2015 Thomas Chou <thomas@wytron.com.tw>
Thomas Chouc8a7ba92015-10-09 13:46:34 +08004 */
5
6#include <common.h>
Sean Andersona5d4f862020-10-04 21:39:52 -04007#include <clk.h>
Sean Anderson35761212020-09-28 10:52:22 -04008#include <cpu.h>
Thomas Chouc8a7ba92015-10-09 13:46:34 +08009#include <dm.h>
Simon Glass401d1c42020-10-30 21:38:53 -060010#include <asm/global_data.h>
Mugunthan V Nc8336972016-01-16 21:33:58 +053011#include <dm/lists.h>
Sean Andersona5d4f862020-10-04 21:39:52 -040012#include <dm/device_compat.h>
Mugunthan V Nc8336972016-01-16 21:33:58 +053013#include <dm/device-internal.h>
Philipp Tomsichb61e8b02017-09-11 22:04:10 +020014#include <dm/root.h>
Thomas Chouc8a7ba92015-10-09 13:46:34 +080015#include <errno.h>
Sean Andersona5d4f862020-10-04 21:39:52 -040016#include <init.h>
Thomas Chouc8a7ba92015-10-09 13:46:34 +080017#include <timer.h>
Simon Glass61b29b82020-02-03 07:36:15 -070018#include <linux/err.h>
Thomas Chouc8a7ba92015-10-09 13:46:34 +080019
Bin Meng579eb5a2015-11-13 00:11:15 -080020DECLARE_GLOBAL_DATA_PTR;
21
Thomas Chouc8a7ba92015-10-09 13:46:34 +080022/*
Bin Meng435ae762015-11-13 00:11:14 -080023 * Implement a timer uclass to work with lib/time.c. The timer is usually
Bin Meng9ca07eb2015-11-24 13:31:17 -070024 * a 32/64 bits free-running up counter. The get_rate() method is used to get
Thomas Chouc8a7ba92015-10-09 13:46:34 +080025 * the input clock frequency of the timer. The get_count() method is used
Bin Meng9ca07eb2015-11-24 13:31:17 -070026 * to get the current 64 bits count value. If the hardware is counting down,
Thomas Chouc8a7ba92015-10-09 13:46:34 +080027 * the value should be inversed inside the method. There may be no real
28 * tick, and no timer interrupt.
29 */
30
Simon Glass4f051822016-02-24 09:14:48 -070031int notrace timer_get_count(struct udevice *dev, u64 *count)
Thomas Chouc8a7ba92015-10-09 13:46:34 +080032{
33 const struct timer_ops *ops = device_get_ops(dev);
34
35 if (!ops->get_count)
36 return -ENOSYS;
37
Sean Anderson8af7bb92020-10-07 14:37:44 -040038 *count = ops->get_count(dev);
39 return 0;
Thomas Chouc8a7ba92015-10-09 13:46:34 +080040}
41
Simon Glass4f051822016-02-24 09:14:48 -070042unsigned long notrace timer_get_rate(struct udevice *dev)
Thomas Chouc8a7ba92015-10-09 13:46:34 +080043{
Simon Glass0fd3d912020-12-22 19:30:28 -070044 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Thomas Chouc8a7ba92015-10-09 13:46:34 +080045
46 return uc_priv->clock_rate;
47}
48
Bin Meng579eb5a2015-11-13 00:11:15 -080049static int timer_pre_probe(struct udevice *dev)
50{
Philipp Tomsichb1a16002017-07-28 17:19:58 +020051#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Bin Meng579eb5a2015-11-13 00:11:15 -080052 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Zakharov Vlada5acafb2016-12-09 17:18:32 +030053 struct clk timer_clk;
54 int err;
55 ulong ret;
Bin Meng579eb5a2015-11-13 00:11:15 -080056
Bin Meng7efb4a62019-07-05 09:23:15 -070057 /* It is possible that a timer device has a null ofnode */
Simon Glass7d14ee42020-12-19 10:40:13 -070058 if (!dev_has_ofnode(dev))
Bin Meng7efb4a62019-07-05 09:23:15 -070059 return 0;
60
Zakharov Vlada5acafb2016-12-09 17:18:32 +030061 err = clk_get_by_index(dev, 0, &timer_clk);
62 if (!err) {
63 ret = clk_get_rate(&timer_clk);
64 if (IS_ERR_VALUE(ret))
65 return ret;
66 uc_priv->clock_rate = ret;
Philipp Tomsichb61e8b02017-09-11 22:04:10 +020067 } else {
68 uc_priv->clock_rate =
69 dev_read_u32_default(dev, "clock-frequency", 0);
70 }
Philipp Tomsichb1a16002017-07-28 17:19:58 +020071#endif
Bin Meng579eb5a2015-11-13 00:11:15 -080072
73 return 0;
74}
75
Stephen Warren0a7edce2016-01-06 10:33:03 -070076static int timer_post_probe(struct udevice *dev)
77{
78 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
79
80 if (!uc_priv->clock_rate)
81 return -EINVAL;
82
83 return 0;
84}
85
Simon Glass529d5f92021-03-15 18:11:18 +130086#if CONFIG_IS_ENABLED(CPU)
Sean Anderson35761212020-09-28 10:52:22 -040087int timer_timebase_fallback(struct udevice *dev)
88{
89 struct udevice *cpu;
Simon Glass8a8d24b2020-12-03 16:55:23 -070090 struct cpu_plat *cpu_plat;
Sean Anderson35761212020-09-28 10:52:22 -040091 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
92
93 /* Did we get our clock rate from the device tree? */
94 if (uc_priv->clock_rate)
95 return 0;
96
97 /* Fall back to timebase-frequency */
98 dev_dbg(dev, "missing clocks or clock-frequency property; falling back on timebase-frequency\n");
99 cpu = cpu_get_current_dev();
100 if (!cpu)
101 return -ENODEV;
102
Simon Glasscaa4daa2020-12-03 16:55:18 -0700103 cpu_plat = dev_get_parent_plat(cpu);
Sean Anderson35761212020-09-28 10:52:22 -0400104 if (!cpu_plat)
105 return -ENODEV;
106
107 uc_priv->clock_rate = cpu_plat->timebase_freq;
108 return 0;
109}
110#endif
111
Bin Meng9ca07eb2015-11-24 13:31:17 -0700112u64 timer_conv_64(u32 count)
113{
114 /* increment tbh if tbl has rolled over */
115 if (count < gd->timebase_l)
116 gd->timebase_h++;
117 gd->timebase_l = count;
118 return ((u64)gd->timebase_h << 32) | gd->timebase_l;
119}
120
Mugunthan V Nc8336972016-01-16 21:33:58 +0530121int notrace dm_timer_init(void)
122{
Mugunthan V Nc8336972016-01-16 21:33:58 +0530123 struct udevice *dev = NULL;
Philipp Tomsichb61e8b02017-09-11 22:04:10 +0200124 __maybe_unused ofnode node;
Mugunthan V Nc8336972016-01-16 21:33:58 +0530125 int ret;
126
127 if (gd->timer)
128 return 0;
129
Philipp Tomsichaf823152017-09-11 22:04:11 +0200130 /*
131 * Directly access gd->dm_root to suppress error messages, if the
132 * virtual root driver does not yet exist.
133 */
134 if (gd->dm_root == NULL)
135 return -EAGAIN;
136
Philipp Tomsichb1a16002017-07-28 17:19:58 +0200137#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Mugunthan V Nc8336972016-01-16 21:33:58 +0530138 /* Check for a chosen timer to be used for tick */
Philipp Tomsichb61e8b02017-09-11 22:04:10 +0200139 node = ofnode_get_chosen_node("tick-timer");
140
141 if (ofnode_valid(node) &&
142 uclass_get_device_by_ofnode(UCLASS_TIMER, node, &dev)) {
143 /*
144 * If the timer is not marked to be bound before
145 * relocation, bind it anyway.
146 */
Bin Meng8d773c42018-10-10 22:06:58 -0700147 if (!lists_bind_fdt(dm_root(), node, &dev, false)) {
Philipp Tomsichb61e8b02017-09-11 22:04:10 +0200148 ret = device_probe(dev);
149 if (ret)
150 return ret;
151 }
152 }
Philipp Tomsichb1a16002017-07-28 17:19:58 +0200153#endif
Philipp Tomsichb61e8b02017-09-11 22:04:10 +0200154
155 if (!dev) {
156 /* Fall back to the first available timer */
Simon Glass3f603cb2016-02-11 13:23:26 -0700157 ret = uclass_first_device_err(UCLASS_TIMER, &dev);
Mugunthan V Nc8336972016-01-16 21:33:58 +0530158 if (ret)
159 return ret;
Mugunthan V Nc8336972016-01-16 21:33:58 +0530160 }
161
162 if (dev) {
163 gd->timer = dev;
164 return 0;
165 }
166
167 return -ENODEV;
168}
169
Thomas Chouc8a7ba92015-10-09 13:46:34 +0800170UCLASS_DRIVER(timer) = {
171 .id = UCLASS_TIMER,
172 .name = "timer",
Bin Meng579eb5a2015-11-13 00:11:15 -0800173 .pre_probe = timer_pre_probe,
Mugunthan V Na5d80112015-12-24 16:08:06 +0530174 .flags = DM_UC_FLAG_SEQ_ALIAS,
Stephen Warren0a7edce2016-01-06 10:33:03 -0700175 .post_probe = timer_post_probe,
Simon Glass41575d82020-12-03 16:55:17 -0700176 .per_device_auto = sizeof(struct timer_dev_priv),
Thomas Chouc8a7ba92015-10-09 13:46:34 +0800177};