Merge tag 'dm-pull-next-27sep21' of https://source.denx.de/u-boot/custodians/u-boot...
[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 <asm/global_data.h>
12 #include <dm/ofnode.h>
13 #include <mapmem.h>
14 #include <asm/arch-rockchip/timer.h>
15 #include <dt-structs.h>
16 #include <timer.h>
17 #include <asm/io.h>
18
19 DECLARE_GLOBAL_DATA_PTR;
20
21 #if CONFIG_IS_ENABLED(OF_PLATDATA)
22 struct rockchip_timer_plat {
23         struct dtd_rockchip_rk3368_timer dtd;
24 };
25 #endif
26
27 /* Driver private data. Contains timer id. Could be either 0 or 1. */
28 struct rockchip_timer_priv {
29         struct rk_timer *timer;
30 };
31
32 static inline int64_t rockchip_timer_get_curr_value(struct rk_timer *timer)
33 {
34         uint64_t timebase_h, timebase_l;
35         uint64_t cntr;
36
37         timebase_l = readl(&timer->timer_curr_value0);
38         timebase_h = readl(&timer->timer_curr_value1);
39
40         cntr = timebase_h << 32 | timebase_l;
41         return cntr;
42 }
43
44 #if CONFIG_IS_ENABLED(BOOTSTAGE)
45 ulong timer_get_boot_us(void)
46 {
47         uint64_t  ticks = 0;
48         uint32_t  rate;
49         uint64_t  us;
50         int ret;
51
52         ret = dm_timer_init();
53
54         if (!ret) {
55                 /* The timer is available */
56                 rate = timer_get_rate(gd->timer);
57                 timer_get_count(gd->timer, &ticks);
58         } else if (CONFIG_IS_ENABLED(OF_REAL) && 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         } else {
82                 return 0;
83         }
84
85         us = (ticks * 1000) / rate;
86         return us;
87 }
88 #endif
89
90 static u64 rockchip_timer_get_count(struct udevice *dev)
91 {
92         struct rockchip_timer_priv *priv = dev_get_priv(dev);
93         uint64_t cntr = rockchip_timer_get_curr_value(priv->timer);
94
95         /* timers are down-counting */
96         return ~0ull - cntr;
97 }
98
99 static int rockchip_clk_of_to_plat(struct udevice *dev)
100 {
101         if (CONFIG_IS_ENABLED(OF_REAL)) {
102                 struct rockchip_timer_priv *priv = dev_get_priv(dev);
103
104                 priv->timer = dev_read_addr_ptr(dev);
105                 if (!priv->timer)
106                         return -ENOENT;
107         }
108
109         return 0;
110 }
111
112 static int rockchip_timer_start(struct udevice *dev)
113 {
114         struct rockchip_timer_priv *priv = dev_get_priv(dev);
115         const uint64_t reload_val = ~0uLL;
116         const uint32_t reload_val_l = reload_val & 0xffffffff;
117         const uint32_t reload_val_h = reload_val >> 32;
118
119         /* don't reinit, if the timer is already running and set up */
120         if ((readl(&priv->timer->timer_ctrl_reg) & 1) == 1 &&
121             (readl(&priv->timer->timer_load_count0) == reload_val_l) &&
122             (readl(&priv->timer->timer_load_count1) == reload_val_h))
123                 return 0;
124
125         /* disable timer and reset all control */
126         writel(0, &priv->timer->timer_ctrl_reg);
127         /* write reload value */
128         writel(reload_val_l, &priv->timer->timer_load_count0);
129         writel(reload_val_h, &priv->timer->timer_load_count1);
130         /* enable timer */
131         writel(1, &priv->timer->timer_ctrl_reg);
132
133         return 0;
134 }
135
136 static int rockchip_timer_probe(struct udevice *dev)
137 {
138 #if CONFIG_IS_ENABLED(OF_PLATDATA)
139         struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
140         struct rockchip_timer_priv *priv = dev_get_priv(dev);
141         struct rockchip_timer_plat *plat = dev_get_plat(dev);
142
143         priv->timer = map_sysmem(plat->dtd.reg[0], plat->dtd.reg[1]);
144         uc_priv->clock_rate = plat->dtd.clock_frequency;
145 #endif
146
147         return rockchip_timer_start(dev);
148 }
149
150 static const struct timer_ops rockchip_timer_ops = {
151         .get_count = rockchip_timer_get_count,
152 };
153
154 static const struct udevice_id rockchip_timer_ids[] = {
155         { .compatible = "rockchip,rk3188-timer" },
156         { .compatible = "rockchip,rk3288-timer" },
157         { .compatible = "rockchip,rk3368-timer" },
158         {}
159 };
160
161 U_BOOT_DRIVER(rockchip_rk3368_timer) = {
162         .name   = "rockchip_rk3368_timer",
163         .id     = UCLASS_TIMER,
164         .of_match = rockchip_timer_ids,
165         .probe = rockchip_timer_probe,
166         .ops    = &rockchip_timer_ops,
167         .priv_auto      = sizeof(struct rockchip_timer_priv),
168 #if CONFIG_IS_ENABLED(OF_PLATDATA)
169         .plat_auto      = sizeof(struct rockchip_timer_plat),
170 #endif
171         .of_to_plat = rockchip_clk_of_to_plat,
172 };