Merge branch 'master' of https://gitlab.denx.de/u-boot/custodians/u-boot-sunxi
[platform/kernel/u-boot.git] / drivers / timer / rockchip_timer.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2017 Theobroma Systems Design und Consulting GmbH
4  */
5
6 #include <common.h>
7 #include <bootstage.h>
8 #include <dm.h>
9 #include <init.h>
10 #include <log.h>
11 #include <dm/ofnode.h>
12 #include <mapmem.h>
13 #include <asm/arch-rockchip/timer.h>
14 #include <dt-structs.h>
15 #include <timer.h>
16 #include <asm/io.h>
17
18 DECLARE_GLOBAL_DATA_PTR;
19
20 #if CONFIG_IS_ENABLED(OF_PLATDATA)
21 struct rockchip_timer_plat {
22         struct dtd_rockchip_rk3368_timer dtd;
23 };
24 #endif
25
26 /* Driver private data. Contains timer id. Could be either 0 or 1. */
27 struct rockchip_timer_priv {
28         struct rk_timer *timer;
29 };
30
31 static inline int64_t rockchip_timer_get_curr_value(struct rk_timer *timer)
32 {
33         uint64_t timebase_h, timebase_l;
34         uint64_t cntr;
35
36         timebase_l = readl(&timer->timer_curr_value0);
37         timebase_h = readl(&timer->timer_curr_value1);
38
39         cntr = timebase_h << 32 | timebase_l;
40         return cntr;
41 }
42
43 #if CONFIG_IS_ENABLED(BOOTSTAGE)
44 ulong timer_get_boot_us(void)
45 {
46         uint64_t  ticks = 0;
47         uint32_t  rate;
48         uint64_t  us;
49         int ret;
50
51         ret = dm_timer_init();
52
53         if (!ret) {
54                 /* The timer is available */
55                 rate = timer_get_rate(gd->timer);
56                 timer_get_count(gd->timer, &ticks);
57 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
58         } else if (ret == -EAGAIN) {
59                 /* We have been called so early that the DM is not ready,... */
60                 ofnode node = offset_to_ofnode(-1);
61                 struct rk_timer *timer = NULL;
62
63                 /*
64                  * ... so we try to access the raw timer, if it is specified
65                  * via the tick-timer property in /chosen.
66                  */
67                 node = ofnode_get_chosen_node("tick-timer");
68                 if (!ofnode_valid(node)) {
69                         debug("%s: no /chosen/tick-timer\n", __func__);
70                         return 0;
71                 }
72
73                 timer = (struct rk_timer *)ofnode_get_addr(node);
74
75                 /* This timer is down-counting */
76                 ticks = ~0uLL - rockchip_timer_get_curr_value(timer);
77                 if (ofnode_read_u32(node, "clock-frequency", &rate)) {
78                         debug("%s: could not read clock-frequency\n", __func__);
79                         return 0;
80                 }
81 #endif
82         } else {
83                 return 0;
84         }
85
86         us = (ticks * 1000) / rate;
87         return us;
88 }
89 #endif
90
91 static u64 rockchip_timer_get_count(struct udevice *dev)
92 {
93         struct rockchip_timer_priv *priv = dev_get_priv(dev);
94         uint64_t cntr = rockchip_timer_get_curr_value(priv->timer);
95
96         /* timers are down-counting */
97         return ~0ull - cntr;
98 }
99
100 static int rockchip_clk_ofdata_to_platdata(struct udevice *dev)
101 {
102 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
103         struct rockchip_timer_priv *priv = dev_get_priv(dev);
104
105         priv->timer = dev_read_addr_ptr(dev);
106         if (!priv->timer)
107                 return -ENOENT;
108 #endif
109
110         return 0;
111 }
112
113 static int rockchip_timer_start(struct udevice *dev)
114 {
115         struct rockchip_timer_priv *priv = dev_get_priv(dev);
116         const uint64_t reload_val = ~0uLL;
117         const uint32_t reload_val_l = reload_val & 0xffffffff;
118         const uint32_t reload_val_h = reload_val >> 32;
119
120         /* don't reinit, if the timer is already running and set up */
121         if ((readl(&priv->timer->timer_ctrl_reg) & 1) == 1 &&
122             (readl(&priv->timer->timer_load_count0) == reload_val_l) &&
123             (readl(&priv->timer->timer_load_count1) == reload_val_h))
124                 return 0;
125
126         /* disable timer and reset all control */
127         writel(0, &priv->timer->timer_ctrl_reg);
128         /* write reload value */
129         writel(reload_val_l, &priv->timer->timer_load_count0);
130         writel(reload_val_h, &priv->timer->timer_load_count1);
131         /* enable timer */
132         writel(1, &priv->timer->timer_ctrl_reg);
133
134         return 0;
135 }
136
137 static int rockchip_timer_probe(struct udevice *dev)
138 {
139 #if CONFIG_IS_ENABLED(OF_PLATDATA)
140         struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
141         struct rockchip_timer_priv *priv = dev_get_priv(dev);
142         struct rockchip_timer_plat *plat = dev_get_platdata(dev);
143
144         priv->timer = map_sysmem(plat->dtd.reg[0], plat->dtd.reg[1]);
145         uc_priv->clock_rate = plat->dtd.clock_frequency;
146 #endif
147
148         return rockchip_timer_start(dev);
149 }
150
151 static const struct timer_ops rockchip_timer_ops = {
152         .get_count = rockchip_timer_get_count,
153 };
154
155 static const struct udevice_id rockchip_timer_ids[] = {
156         { .compatible = "rockchip,rk3188-timer" },
157         { .compatible = "rockchip,rk3288-timer" },
158         { .compatible = "rockchip,rk3368-timer" },
159         {}
160 };
161
162 U_BOOT_DRIVER(rockchip_rk3368_timer) = {
163         .name   = "rockchip_rk3368_timer",
164         .id     = UCLASS_TIMER,
165         .of_match = rockchip_timer_ids,
166         .probe = rockchip_timer_probe,
167         .ops    = &rockchip_timer_ops,
168         .priv_auto_alloc_size = sizeof(struct rockchip_timer_priv),
169 #if CONFIG_IS_ENABLED(OF_PLATDATA)
170         .platdata_auto_alloc_size = sizeof(struct rockchip_timer_plat),
171 #endif
172         .ofdata_to_platdata = rockchip_clk_ofdata_to_platdata,
173 };