blob: 62d6f0b29a6e81cdb060c22cca17469b4c29ab36 [file] [log] [blame]
Thomas Chouc8a7ba92015-10-09 13:46:34 +08001/*
2 * Copyright (C) 2015 Thomas Chou <thomas@wytron.com.tw>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <dm.h>
Mugunthan V Nc8336972016-01-16 21:33:58 +05309#include <dm/lists.h>
10#include <dm/device-internal.h>
Philipp Tomsichb61e8b02017-09-11 22:04:10 +020011#include <dm/root.h>
Zakharov Vlada5acafb2016-12-09 17:18:32 +030012#include <clk.h>
Thomas Chouc8a7ba92015-10-09 13:46:34 +080013#include <errno.h>
14#include <timer.h>
15
Bin Meng579eb5a2015-11-13 00:11:15 -080016DECLARE_GLOBAL_DATA_PTR;
17
Thomas Chouc8a7ba92015-10-09 13:46:34 +080018/*
Bin Meng435ae762015-11-13 00:11:14 -080019 * Implement a timer uclass to work with lib/time.c. The timer is usually
Bin Meng9ca07eb2015-11-24 13:31:17 -070020 * a 32/64 bits free-running up counter. The get_rate() method is used to get
Thomas Chouc8a7ba92015-10-09 13:46:34 +080021 * the input clock frequency of the timer. The get_count() method is used
Bin Meng9ca07eb2015-11-24 13:31:17 -070022 * to get the current 64 bits count value. If the hardware is counting down,
Thomas Chouc8a7ba92015-10-09 13:46:34 +080023 * the value should be inversed inside the method. There may be no real
24 * tick, and no timer interrupt.
25 */
26
Simon Glass4f051822016-02-24 09:14:48 -070027int notrace timer_get_count(struct udevice *dev, u64 *count)
Thomas Chouc8a7ba92015-10-09 13:46:34 +080028{
29 const struct timer_ops *ops = device_get_ops(dev);
30
31 if (!ops->get_count)
32 return -ENOSYS;
33
34 return ops->get_count(dev, count);
35}
36
Simon Glass4f051822016-02-24 09:14:48 -070037unsigned long notrace timer_get_rate(struct udevice *dev)
Thomas Chouc8a7ba92015-10-09 13:46:34 +080038{
Simon Glass4f051822016-02-24 09:14:48 -070039 struct timer_dev_priv *uc_priv = dev->uclass_priv;
Thomas Chouc8a7ba92015-10-09 13:46:34 +080040
41 return uc_priv->clock_rate;
42}
43
Bin Meng579eb5a2015-11-13 00:11:15 -080044static int timer_pre_probe(struct udevice *dev)
45{
Philipp Tomsichb1a16002017-07-28 17:19:58 +020046#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Bin Meng579eb5a2015-11-13 00:11:15 -080047 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Zakharov Vlada5acafb2016-12-09 17:18:32 +030048 struct clk timer_clk;
49 int err;
50 ulong ret;
Bin Meng579eb5a2015-11-13 00:11:15 -080051
Zakharov Vlada5acafb2016-12-09 17:18:32 +030052 err = clk_get_by_index(dev, 0, &timer_clk);
53 if (!err) {
54 ret = clk_get_rate(&timer_clk);
55 if (IS_ERR_VALUE(ret))
56 return ret;
57 uc_priv->clock_rate = ret;
Philipp Tomsichb61e8b02017-09-11 22:04:10 +020058 } else {
59 uc_priv->clock_rate =
60 dev_read_u32_default(dev, "clock-frequency", 0);
61 }
Philipp Tomsichb1a16002017-07-28 17:19:58 +020062#endif
Bin Meng579eb5a2015-11-13 00:11:15 -080063
64 return 0;
65}
66
Stephen Warren0a7edce2016-01-06 10:33:03 -070067static int timer_post_probe(struct udevice *dev)
68{
69 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
70
71 if (!uc_priv->clock_rate)
72 return -EINVAL;
73
74 return 0;
75}
76
Bin Meng9ca07eb2015-11-24 13:31:17 -070077u64 timer_conv_64(u32 count)
78{
79 /* increment tbh if tbl has rolled over */
80 if (count < gd->timebase_l)
81 gd->timebase_h++;
82 gd->timebase_l = count;
83 return ((u64)gd->timebase_h << 32) | gd->timebase_l;
84}
85
Mugunthan V Nc8336972016-01-16 21:33:58 +053086int notrace dm_timer_init(void)
87{
Mugunthan V Nc8336972016-01-16 21:33:58 +053088 struct udevice *dev = NULL;
Philipp Tomsichb61e8b02017-09-11 22:04:10 +020089 __maybe_unused ofnode node;
Mugunthan V Nc8336972016-01-16 21:33:58 +053090 int ret;
91
92 if (gd->timer)
93 return 0;
94
Philipp Tomsichb1a16002017-07-28 17:19:58 +020095#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Mugunthan V Nc8336972016-01-16 21:33:58 +053096 /* Check for a chosen timer to be used for tick */
Philipp Tomsichb61e8b02017-09-11 22:04:10 +020097 node = ofnode_get_chosen_node("tick-timer");
98
99 if (ofnode_valid(node) &&
100 uclass_get_device_by_ofnode(UCLASS_TIMER, node, &dev)) {
101 /*
102 * If the timer is not marked to be bound before
103 * relocation, bind it anyway.
104 */
105 if (!lists_bind_fdt(dm_root(), node, &dev)) {
106 ret = device_probe(dev);
107 if (ret)
108 return ret;
109 }
110 }
Philipp Tomsichb1a16002017-07-28 17:19:58 +0200111#endif
Philipp Tomsichb61e8b02017-09-11 22:04:10 +0200112
113 if (!dev) {
114 /* Fall back to the first available timer */
Simon Glass3f603cb2016-02-11 13:23:26 -0700115 ret = uclass_first_device_err(UCLASS_TIMER, &dev);
Mugunthan V Nc8336972016-01-16 21:33:58 +0530116 if (ret)
117 return ret;
Mugunthan V Nc8336972016-01-16 21:33:58 +0530118 }
119
120 if (dev) {
121 gd->timer = dev;
122 return 0;
123 }
124
125 return -ENODEV;
126}
127
Thomas Chouc8a7ba92015-10-09 13:46:34 +0800128UCLASS_DRIVER(timer) = {
129 .id = UCLASS_TIMER,
130 .name = "timer",
Bin Meng579eb5a2015-11-13 00:11:15 -0800131 .pre_probe = timer_pre_probe,
Mugunthan V Na5d80112015-12-24 16:08:06 +0530132 .flags = DM_UC_FLAG_SEQ_ALIAS,
Stephen Warren0a7edce2016-01-06 10:33:03 -0700133 .post_probe = timer_post_probe,
Thomas Chouc8a7ba92015-10-09 13:46:34 +0800134 .per_device_auto_alloc_size = sizeof(struct timer_dev_priv),
135};