]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - drivers/clocksource/timer-atmel-st.c
treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 156
[mirror_ubuntu-focal-kernel.git] / drivers / clocksource / timer-atmel-st.c
CommitLineData
1a59d1b8 1// SPDX-License-Identifier: GPL-2.0-or-later
73a59c1c 2/*
9d041268 3 * linux/arch/arm/mach-at91/at91rm9200_time.c
73a59c1c
SP
4 *
5 * Copyright (C) 2003 SAN People
6 * Copyright (C) 2003 ATMEL
73a59c1c
SP
7 */
8
5e802dfa 9#include <linux/kernel.h>
73a59c1c 10#include <linux/interrupt.h>
07d265dd 11#include <linux/irq.h>
216ab8f1 12#include <linux/clk.h>
5e802dfa 13#include <linux/clockchips.h>
9fce85c7 14#include <linux/export.h>
adf2edfd
AB
15#include <linux/mfd/syscon.h>
16#include <linux/mfd/syscon/atmel-st.h>
454c46df 17#include <linux/of_irq.h>
adf2edfd 18#include <linux/regmap.h>
73a59c1c 19
963151f2 20static unsigned long last_crtr;
5e802dfa
DB
21static u32 irqmask;
22static struct clock_event_device clkevt;
adf2edfd 23static struct regmap *regmap_st;
216ab8f1 24static int timer_latch;
2f5893cf 25
73a59c1c 26/*
5e802dfa
DB
27 * The ST_CRTR is updated asynchronously to the master clock ... but
28 * the updates as seen by the CPU don't seem to be strictly monotonic.
29 * Waiting until we read the same value twice avoids glitching.
73a59c1c 30 */
5e802dfa
DB
31static inline unsigned long read_CRTR(void)
32{
adf2edfd 33 unsigned int x1, x2;
73a59c1c 34
adf2edfd 35 regmap_read(regmap_st, AT91_ST_CRTR, &x1);
73a59c1c 36 do {
adf2edfd 37 regmap_read(regmap_st, AT91_ST_CRTR, &x2);
5e802dfa
DB
38 if (x1 == x2)
39 break;
40 x1 = x2;
41 } while (1);
73a59c1c
SP
42 return x1;
43}
44
73a59c1c
SP
45/*
46 * IRQ handler for the timer.
47 */
0cd61b68 48static irqreturn_t at91rm9200_timer_interrupt(int irq, void *dev_id)
73a59c1c 49{
adf2edfd
AB
50 u32 sr;
51
52 regmap_read(regmap_st, AT91_ST_SR, &sr);
53 sr &= irqmask;
73a59c1c 54
501d7038
UKK
55 /*
56 * irqs should be disabled here, but as the irq is shared they are only
57 * guaranteed to be off if the timer irq is registered first.
58 */
59 WARN_ON_ONCE(!irqs_disabled());
60
5e802dfa
DB
61 /* simulate "oneshot" timer with alarm */
62 if (sr & AT91_ST_ALMS) {
63 clkevt.event_handler(&clkevt);
64 return IRQ_HANDLED;
65 }
73a59c1c 66
5e802dfa
DB
67 /* periodic mode should handle delayed ticks */
68 if (sr & AT91_ST_PITS) {
69 u32 crtr = read_CRTR();
73a59c1c 70
216ab8f1
AB
71 while (((crtr - last_crtr) & AT91_ST_CRTV) >= timer_latch) {
72 last_crtr += timer_latch;
5e802dfa
DB
73 clkevt.event_handler(&clkevt);
74 }
73a59c1c
SP
75 return IRQ_HANDLED;
76 }
5e802dfa
DB
77
78 /* this irq is shared ... */
79 return IRQ_NONE;
73a59c1c
SP
80}
81
a5a1d1c2 82static u64 read_clk32k(struct clocksource *cs)
2a6f9902 83{
5e802dfa
DB
84 return read_CRTR();
85}
2a6f9902 86
5e802dfa
DB
87static struct clocksource clk32k = {
88 .name = "32k_counter",
89 .rating = 150,
90 .read = read_clk32k,
91 .mask = CLOCKSOURCE_MASK(20),
5e802dfa
DB
92 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
93};
94
8ab28230 95static void clkdev32k_disable_and_flush_irq(void)
5e802dfa 96{
adf2edfd
AB
97 unsigned int val;
98
5e802dfa 99 /* Disable and flush pending timer interrupts */
adf2edfd
AB
100 regmap_write(regmap_st, AT91_ST_IDR, AT91_ST_PITS | AT91_ST_ALMS);
101 regmap_read(regmap_st, AT91_ST_SR, &val);
5e802dfa 102 last_crtr = read_CRTR();
8ab28230
VK
103}
104
105static int clkevt32k_shutdown(struct clock_event_device *evt)
106{
107 clkdev32k_disable_and_flush_irq();
108 irqmask = 0;
109 regmap_write(regmap_st, AT91_ST_IER, irqmask);
110 return 0;
111}
112
113static int clkevt32k_set_oneshot(struct clock_event_device *dev)
114{
115 clkdev32k_disable_and_flush_irq();
116
117 /*
118 * ALM for oneshot irqs, set by next_event()
119 * before 32 seconds have passed.
120 */
121 irqmask = AT91_ST_ALMS;
122 regmap_write(regmap_st, AT91_ST_RTAR, last_crtr);
adf2edfd 123 regmap_write(regmap_st, AT91_ST_IER, irqmask);
8ab28230
VK
124 return 0;
125}
126
127static int clkevt32k_set_periodic(struct clock_event_device *dev)
128{
129 clkdev32k_disable_and_flush_irq();
130
131 /* PIT for periodic irqs; fixed rate of 1/HZ */
132 irqmask = AT91_ST_PITS;
216ab8f1 133 regmap_write(regmap_st, AT91_ST_PIMR, timer_latch);
8ab28230
VK
134 regmap_write(regmap_st, AT91_ST_IER, irqmask);
135 return 0;
5e802dfa 136}
2a6f9902 137
5e802dfa
DB
138static int
139clkevt32k_next_event(unsigned long delta, struct clock_event_device *dev)
140{
5e802dfa
DB
141 u32 alm;
142 int status = 0;
adf2edfd 143 unsigned int val;
5e802dfa
DB
144
145 BUG_ON(delta < 2);
146
5e802dfa
DB
147 /* The alarm IRQ uses absolute time (now+delta), not the relative
148 * time (delta) in our calling convention. Like all clockevents
149 * using such "match" hardware, we have a race to defend against.
150 *
151 * Our defense here is to have set up the clockevent device so the
152 * delta is at least two. That way we never end up writing RTAR
153 * with the value then held in CRTR ... which would mean the match
154 * wouldn't trigger until 32 seconds later, after CRTR wraps.
155 */
156 alm = read_CRTR();
157
158 /* Cancel any pending alarm; flush any pending IRQ */
adf2edfd
AB
159 regmap_write(regmap_st, AT91_ST_RTAR, alm);
160 regmap_read(regmap_st, AT91_ST_SR, &val);
d100f259 161
5e802dfa
DB
162 /* Schedule alarm by writing RTAR. */
163 alm += delta;
adf2edfd 164 regmap_write(regmap_st, AT91_ST_RTAR, alm);
5e802dfa 165
5e802dfa 166 return status;
2a6f9902
AV
167}
168
5e802dfa 169static struct clock_event_device clkevt = {
8ab28230
VK
170 .name = "at91_tick",
171 .features = CLOCK_EVT_FEAT_PERIODIC |
172 CLOCK_EVT_FEAT_ONESHOT,
173 .rating = 150,
174 .set_next_event = clkevt32k_next_event,
175 .set_state_shutdown = clkevt32k_shutdown,
176 .set_state_periodic = clkevt32k_set_periodic,
177 .set_state_oneshot = clkevt32k_set_oneshot,
178 .tick_resume = clkevt32k_shutdown,
5e802dfa
DB
179};
180
73a59c1c 181/*
5e802dfa 182 * ST (system timer) module supports both clockevents and clocksource.
73a59c1c 183 */
adbaf525 184static int __init atmel_st_timer_init(struct device_node *node)
73a59c1c 185{
216ab8f1
AB
186 struct clk *sclk;
187 unsigned int sclk_rate, val;
0afb46b2 188 int irq, ret;
adf2edfd
AB
189
190 regmap_st = syscon_node_to_regmap(node);
adbaf525
DL
191 if (IS_ERR(regmap_st)) {
192 pr_err("Unable to get regmap\n");
193 return PTR_ERR(regmap_st);
194 }
454c46df 195
5e802dfa 196 /* Disable all timer interrupts, and clear any pending ones */
adf2edfd 197 regmap_write(regmap_st, AT91_ST_IDR,
5e802dfa 198 AT91_ST_PITS | AT91_ST_WDOVF | AT91_ST_RTTINC | AT91_ST_ALMS);
adf2edfd
AB
199 regmap_read(regmap_st, AT91_ST_SR, &val);
200
201 /* Get the interrupts property */
0afb46b2 202 irq = irq_of_parse_and_map(node, 0);
adbaf525
DL
203 if (!irq) {
204 pr_err("Unable to get IRQ from DT\n");
205 return -EINVAL;
206 }
73a59c1c 207
2a6f9902 208 /* Make IRQs happen for the system timer */
0afb46b2
AB
209 ret = request_irq(irq, at91rm9200_timer_interrupt,
210 IRQF_SHARED | IRQF_TIMER | IRQF_IRQPOLL,
211 "at91_tick", regmap_st);
adbaf525
DL
212 if (ret) {
213 pr_err("Unable to setup IRQ\n");
214 return ret;
215 }
73a59c1c 216
216ab8f1 217 sclk = of_clk_get(node, 0);
adbaf525
DL
218 if (IS_ERR(sclk)) {
219 pr_err("Unable to get slow clock\n");
220 return PTR_ERR(sclk);
221 }
216ab8f1 222
adbaf525
DL
223 ret = clk_prepare_enable(sclk);
224 if (ret) {
225 pr_err("Could not enable slow clock\n");
226 return ret;
227 }
216ab8f1
AB
228
229 sclk_rate = clk_get_rate(sclk);
adbaf525
DL
230 if (!sclk_rate) {
231 pr_err("Invalid slow clock rate\n");
232 return -EINVAL;
233 }
216ab8f1
AB
234 timer_latch = (sclk_rate + HZ / 2) / HZ;
235
5e802dfa
DB
236 /* The 32KiHz "Slow Clock" (tick every 30517.58 nanoseconds) is used
237 * directly for the clocksource and all clockevents, after adjusting
238 * its prescaler from the 1 Hz default.
239 */
adf2edfd 240 regmap_write(regmap_st, AT91_ST_RTMR, 1);
73a59c1c 241
5e802dfa 242 /* Setup timer clockevent, with minimum of two ticks (important!!) */
320ab2b0 243 clkevt.cpumask = cpumask_of(0);
216ab8f1 244 clockevents_config_and_register(&clkevt, sclk_rate,
1c283531 245 2, AT91_ST_ALMV);
2a6f9902 246
5e802dfa 247 /* register clocksource */
adbaf525 248 return clocksource_register_hz(&clk32k, sclk_rate);
73a59c1c 249}
17273395 250TIMER_OF_DECLARE(atmel_st_timer, "atmel,at91rm9200-st",
bbfc97e1 251 atmel_st_timer_init);