clocksource/drivers/stm32: Fix error return code
[linux-2.6-block.git] / drivers / clocksource / arc_timer.c
CommitLineData
d8005e6b 1/*
c4c9a040 2 * Copyright (C) 2016-17 Synopsys, Inc. (www.synopsys.com)
d8005e6b
VG
3 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
d8005e6b
VG
8 */
9
c4c9a040
VG
10/* ARC700 has two 32bit independent prog Timers: TIMER0 and TIMER1, Each can be
11 * programmed to go from @count to @limit and optionally interrupt.
12 * We've designated TIMER0 for clockevents and TIMER1 for clocksource
d8005e6b 13 *
c4c9a040
VG
14 * ARCv2 based HS38 cores have RTC (in-core) and GFRC (inside ARConnect/MCIP)
15 * which are suitable for UP and SMP based clocksources respectively
d8005e6b
VG
16 */
17
d8005e6b 18#include <linux/interrupt.h>
69fbd098
NC
19#include <linux/clk.h>
20#include <linux/clk-provider.h>
d8005e6b
VG
21#include <linux/clocksource.h>
22#include <linux/clockchips.h>
eec3c58e 23#include <linux/cpu.h>
77c8d0d6
VG
24#include <linux/of.h>
25#include <linux/of_irq.h>
d8005e6b 26
b26c2e38 27#include <soc/arc/timers.h>
2d7f5c48 28#include <soc/arc/mcip.h>
72d72880 29
d8005e6b 30
77c8d0d6
VG
31static unsigned long arc_timer_freq;
32
33static int noinline arc_get_timer_clk(struct device_node *node)
34{
35 struct clk *clk;
36 int ret;
37
38 clk = of_clk_get(node, 0);
39 if (IS_ERR(clk)) {
ac9ce6d1 40 pr_err("timer missing clk\n");
77c8d0d6
VG
41 return PTR_ERR(clk);
42 }
43
44 ret = clk_prepare_enable(clk);
45 if (ret) {
46 pr_err("Couldn't enable parent clk\n");
47 return ret;
48 }
49
50 arc_timer_freq = clk_get_rate(clk);
51
52 return 0;
53}
54
d8005e6b
VG
55/********** Clock Source Device *********/
56
04421420 57#ifdef CONFIG_ARC_TIMERS_64BIT
72d72880 58
a5a1d1c2 59static u64 arc_read_gfrc(struct clocksource *cs)
72d72880
VG
60{
61 unsigned long flags;
2cd690ea 62 u32 l, h;
72d72880 63
6bd9549d
EP
64 /*
65 * From a programming model pov, there seems to be just one instance of
66 * MCIP_CMD/MCIP_READBACK however micro-architecturally there's
67 * an instance PER ARC CORE (not per cluster), and there are dedicated
68 * hardware decode logic (per core) inside ARConnect to handle
69 * simultaneous read/write accesses from cores via those two registers.
70 * So several concurrent commands to ARConnect are OK if they are
71 * trying to access two different sub-components (like GFRC,
72 * inter-core interrupt, etc...). HW also supports simultaneously
73 * accessing GFRC by multiple cores.
74 * That's why it is safe to disable hard interrupts on the local CPU
75 * before access to GFRC instead of taking global MCIP spinlock
76 * defined in arch/arc/kernel/mcip.c
77 */
72d72880
VG
78 local_irq_save(flags);
79
d584f0fb 80 __mcip_cmd(CMD_GFRC_READ_LO, 0);
2cd690ea 81 l = read_aux_reg(ARC_REG_MCIP_READBACK);
72d72880 82
d584f0fb 83 __mcip_cmd(CMD_GFRC_READ_HI, 0);
2cd690ea 84 h = read_aux_reg(ARC_REG_MCIP_READBACK);
72d72880
VG
85
86 local_irq_restore(flags);
87
a5a1d1c2 88 return (((u64)h) << 32) | l;
72d72880
VG
89}
90
e608b53e 91static struct clocksource arc_counter_gfrc = {
d584f0fb 92 .name = "ARConnect GFRC",
72d72880 93 .rating = 400,
e608b53e 94 .read = arc_read_gfrc,
72d72880
VG
95 .mask = CLOCKSOURCE_MASK(64),
96 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
97};
98
43d75604 99static int __init arc_cs_setup_gfrc(struct device_node *node)
e608b53e 100{
ec7cb87b 101 struct mcip_bcr mp;
e608b53e
VG
102 int ret;
103
ec7cb87b
VG
104 READ_BCR(ARC_REG_MCIP_BCR, mp);
105 if (!mp.gfrc) {
ac9ce6d1 106 pr_warn("Global-64-bit-Ctr clocksource not detected\n");
43d75604 107 return -ENXIO;
ec7cb87b 108 }
e608b53e
VG
109
110 ret = arc_get_timer_clk(node);
111 if (ret)
43d75604 112 return ret;
e608b53e 113
43d75604 114 return clocksource_register_hz(&arc_counter_gfrc, arc_timer_freq);
e608b53e 115}
17273395 116TIMER_OF_DECLARE(arc_gfrc, "snps,archs-timer-gfrc", arc_cs_setup_gfrc);
e608b53e 117
aa93e8ef
VG
118#define AUX_RTC_CTRL 0x103
119#define AUX_RTC_LOW 0x104
120#define AUX_RTC_HIGH 0x105
121
a5a1d1c2 122static u64 arc_read_rtc(struct clocksource *cs)
aa93e8ef
VG
123{
124 unsigned long status;
2cd690ea 125 u32 l, h;
aa93e8ef 126
922cc171
VG
127 /*
128 * hardware has an internal state machine which tracks readout of
129 * low/high and updates the CTRL.status if
130 * - interrupt/exception taken between the two reads
131 * - high increments after low has been read
132 */
133 do {
2cd690ea
VG
134 l = read_aux_reg(AUX_RTC_LOW);
135 h = read_aux_reg(AUX_RTC_HIGH);
922cc171
VG
136 status = read_aux_reg(AUX_RTC_CTRL);
137 } while (!(status & _BITUL(31)));
aa93e8ef 138
a5a1d1c2 139 return (((u64)h) << 32) | l;
aa93e8ef
VG
140}
141
e608b53e 142static struct clocksource arc_counter_rtc = {
aa93e8ef
VG
143 .name = "ARCv2 RTC",
144 .rating = 350,
e608b53e 145 .read = arc_read_rtc,
aa93e8ef
VG
146 .mask = CLOCKSOURCE_MASK(64),
147 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
148};
149
43d75604 150static int __init arc_cs_setup_rtc(struct device_node *node)
d8005e6b 151{
ec7cb87b 152 struct bcr_timer timer;
e608b53e
VG
153 int ret;
154
ec7cb87b
VG
155 READ_BCR(ARC_REG_TIMERS_BCR, timer);
156 if (!timer.rtc) {
ac9ce6d1 157 pr_warn("Local-64-bit-Ctr clocksource not detected\n");
43d75604 158 return -ENXIO;
ec7cb87b 159 }
e608b53e
VG
160
161 /* Local to CPU hence not usable in SMP */
ec7cb87b 162 if (IS_ENABLED(CONFIG_SMP)) {
ac9ce6d1 163 pr_warn("Local-64-bit-Ctr not usable in SMP\n");
43d75604 164 return -EINVAL;
ec7cb87b 165 }
e608b53e
VG
166
167 ret = arc_get_timer_clk(node);
168 if (ret)
43d75604 169 return ret;
d8005e6b 170
e608b53e
VG
171 write_aux_reg(AUX_RTC_CTRL, 1);
172
43d75604 173 return clocksource_register_hz(&arc_counter_rtc, arc_timer_freq);
d8005e6b 174}
17273395 175TIMER_OF_DECLARE(arc_rtc, "snps,archs-timer-rtc", arc_cs_setup_rtc);
e608b53e
VG
176
177#endif
d8005e6b 178
e608b53e
VG
179/*
180 * 32bit TIMER1 to keep counting monotonically and wraparound
181 */
182
a5a1d1c2 183static u64 arc_read_timer1(struct clocksource *cs)
d8005e6b 184{
a5a1d1c2 185 return (u64) read_aux_reg(ARC_REG_TIMER1_CNT);
d8005e6b
VG
186}
187
e608b53e 188static struct clocksource arc_counter_timer1 = {
d8005e6b
VG
189 .name = "ARC Timer1",
190 .rating = 300,
e608b53e 191 .read = arc_read_timer1,
d8005e6b
VG
192 .mask = CLOCKSOURCE_MASK(32),
193 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
194};
195
43d75604 196static int __init arc_cs_setup_timer1(struct device_node *node)
e608b53e
VG
197{
198 int ret;
199
200 /* Local to CPU hence not usable in SMP */
201 if (IS_ENABLED(CONFIG_SMP))
43d75604 202 return -EINVAL;
e608b53e
VG
203
204 ret = arc_get_timer_clk(node);
205 if (ret)
43d75604 206 return ret;
e608b53e 207
b26c2e38 208 write_aux_reg(ARC_REG_TIMER1_LIMIT, ARC_TIMERN_MAX);
e608b53e
VG
209 write_aux_reg(ARC_REG_TIMER1_CNT, 0);
210 write_aux_reg(ARC_REG_TIMER1_CTRL, TIMER_CTRL_NH);
211
43d75604 212 return clocksource_register_hz(&arc_counter_timer1, arc_timer_freq);
e608b53e 213}
aa93e8ef 214
d8005e6b
VG
215/********** Clock Event Device *********/
216
77c8d0d6 217static int arc_timer_irq;
eec3c58e 218
d8005e6b 219/*
c9a98e18 220 * Arm the timer to interrupt after @cycles
d8005e6b
VG
221 * The distinction for oneshot/periodic is done in arc_event_timer_ack() below
222 */
c9a98e18 223static void arc_timer_event_setup(unsigned int cycles)
d8005e6b 224{
c9a98e18 225 write_aux_reg(ARC_REG_TIMER0_LIMIT, cycles);
d8005e6b
VG
226 write_aux_reg(ARC_REG_TIMER0_CNT, 0); /* start from 0 */
227
228 write_aux_reg(ARC_REG_TIMER0_CTRL, TIMER_CTRL_IE | TIMER_CTRL_NH);
229}
230
d8005e6b
VG
231
232static int arc_clkevent_set_next_event(unsigned long delta,
233 struct clock_event_device *dev)
234{
235 arc_timer_event_setup(delta);
236 return 0;
237}
238
aeec6cda 239static int arc_clkevent_set_periodic(struct clock_event_device *dev)
d8005e6b 240{
aeec6cda
VK
241 /*
242 * At X Hz, 1 sec = 1000ms -> X cycles;
243 * 10ms -> X / 100 cycles
244 */
77c8d0d6 245 arc_timer_event_setup(arc_timer_freq / HZ);
aeec6cda 246 return 0;
d8005e6b
VG
247}
248
249static DEFINE_PER_CPU(struct clock_event_device, arc_clockevent_device) = {
aeec6cda
VK
250 .name = "ARC Timer0",
251 .features = CLOCK_EVT_FEAT_ONESHOT |
252 CLOCK_EVT_FEAT_PERIODIC,
253 .rating = 300,
aeec6cda
VK
254 .set_next_event = arc_clkevent_set_next_event,
255 .set_state_periodic = arc_clkevent_set_periodic,
d8005e6b
VG
256};
257
258static irqreturn_t timer_irq_handler(int irq, void *dev_id)
259{
f8b34c3f
VG
260 /*
261 * Note that generic IRQ core could have passed @evt for @dev_id if
262 * irq_set_chip_and_handler() asked for handle_percpu_devid_irq()
263 */
264 struct clock_event_device *evt = this_cpu_ptr(&arc_clockevent_device);
aeec6cda 265 int irq_reenable = clockevent_state_periodic(evt);
f8b34c3f
VG
266
267 /*
a4f53857
VG
268 * 1. ACK the interrupt
269 * - For ARC700, any write to CTRL reg ACKs it, so just rewrite
270 * Count when [N]ot [H]alted bit.
271 * - For HS3x, it is a bit subtle. On taken count-down interrupt,
272 * IP bit [3] is set, which needs to be cleared for ACK'ing.
273 * The write below can only update the other two bits, hence
274 * explicitly clears IP bit
275 * 2. Re-arm interrupt if periodic by writing to IE bit [0]
f8b34c3f
VG
276 */
277 write_aux_reg(ARC_REG_TIMER0_CTRL, irq_reenable | TIMER_CTRL_NH);
278
279 evt->event_handler(evt);
d8005e6b 280
d8005e6b
VG
281 return IRQ_HANDLED;
282}
283
ecd8081f
AMG
284
285static int arc_timer_starting_cpu(unsigned int cpu)
eec3c58e
NC
286{
287 struct clock_event_device *evt = this_cpu_ptr(&arc_clockevent_device);
288
289 evt->cpumask = cpumask_of(smp_processor_id());
290
b26c2e38 291 clockevents_config_and_register(evt, arc_timer_freq, 0, ARC_TIMERN_MAX);
ecd8081f
AMG
292 enable_percpu_irq(arc_timer_irq, 0);
293 return 0;
eec3c58e
NC
294}
295
ecd8081f
AMG
296static int arc_timer_dying_cpu(unsigned int cpu)
297{
298 disable_percpu_irq(arc_timer_irq);
299 return 0;
300}
eec3c58e 301
d8005e6b 302/*
eec3c58e 303 * clockevent setup for boot CPU
d8005e6b 304 */
43d75604 305static int __init arc_clockevent_setup(struct device_node *node)
d8005e6b 306{
2d4899f6 307 struct clock_event_device *evt = this_cpu_ptr(&arc_clockevent_device);
eec3c58e 308 int ret;
d8005e6b 309
77c8d0d6 310 arc_timer_irq = irq_of_parse_and_map(node, 0);
43d75604 311 if (arc_timer_irq <= 0) {
ac9ce6d1 312 pr_err("clockevent: missing irq\n");
43d75604
DL
313 return -EINVAL;
314 }
77c8d0d6
VG
315
316 ret = arc_get_timer_clk(node);
43d75604 317 if (ret) {
ac9ce6d1 318 pr_err("clockevent: missing clk\n");
43d75604
DL
319 return ret;
320 }
77c8d0d6 321
eec3c58e
NC
322 /* Needs apriori irq_set_percpu_devid() done in intc map function */
323 ret = request_percpu_irq(arc_timer_irq, timer_irq_handler,
324 "Timer0 (per-cpu-tick)", evt);
43d75604
DL
325 if (ret) {
326 pr_err("clockevent: unable to request irq\n");
327 return ret;
328 }
56957940 329
ecd8081f 330 ret = cpuhp_setup_state(CPUHP_AP_ARC_TIMER_STARTING,
73c1b41e 331 "clockevents/arc/timer:starting",
ecd8081f
AMG
332 arc_timer_starting_cpu,
333 arc_timer_dying_cpu);
334 if (ret) {
ac9ce6d1 335 pr_err("Failed to setup hotplug state\n");
ecd8081f
AMG
336 return ret;
337 }
43d75604 338 return 0;
d8005e6b 339}
e608b53e 340
43d75604 341static int __init arc_of_timer_init(struct device_node *np)
e608b53e
VG
342{
343 static int init_count = 0;
43d75604 344 int ret;
e608b53e
VG
345
346 if (!init_count) {
347 init_count = 1;
43d75604 348 ret = arc_clockevent_setup(np);
e608b53e 349 } else {
43d75604 350 ret = arc_cs_setup_timer1(np);
e608b53e 351 }
43d75604
DL
352
353 return ret;
e608b53e 354}
17273395 355TIMER_OF_DECLARE(arc_clkevt, "snps,arc-timer", arc_of_timer_init);