blob: e0e7729d37fd332eed9f5e2aad530170e6992c6c [file] [log] [blame]
Mark Rutland8a4da6e2012-11-12 14:33:44 +00001/*
2 * linux/drivers/clocksource/arm_arch_timer.c
3 *
4 * Copyright (C) 2011 ARM Ltd.
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#include <linux/init.h>
12#include <linux/kernel.h>
13#include <linux/device.h>
14#include <linux/smp.h>
15#include <linux/cpu.h>
Sudeep KarkadaNagesha346e7482013-08-23 15:53:15 +010016#include <linux/cpu_pm.h>
Mark Rutland8a4da6e2012-11-12 14:33:44 +000017#include <linux/clockchips.h>
18#include <linux/interrupt.h>
19#include <linux/of_irq.h>
Stephen Boyd22006992013-07-18 16:59:32 -070020#include <linux/of_address.h>
Mark Rutland8a4da6e2012-11-12 14:33:44 +000021#include <linux/io.h>
Stephen Boyd22006992013-07-18 16:59:32 -070022#include <linux/slab.h>
Stephen Boyd65cd4f62013-07-18 16:21:18 -070023#include <linux/sched_clock.h>
Mark Rutland8a4da6e2012-11-12 14:33:44 +000024
25#include <asm/arch_timer.h>
Marc Zyngier82668912013-01-10 11:13:07 +000026#include <asm/virt.h>
Mark Rutland8a4da6e2012-11-12 14:33:44 +000027
28#include <clocksource/arm_arch_timer.h>
29
Stephen Boyd22006992013-07-18 16:59:32 -070030#define CNTTIDR 0x08
31#define CNTTIDR_VIRT(n) (BIT(1) << ((n) * 4))
32
33#define CNTVCT_LO 0x08
34#define CNTVCT_HI 0x0c
35#define CNTFRQ 0x10
36#define CNTP_TVAL 0x28
37#define CNTP_CTL 0x2c
38#define CNTV_TVAL 0x38
39#define CNTV_CTL 0x3c
40
41#define ARCH_CP15_TIMER BIT(0)
42#define ARCH_MEM_TIMER BIT(1)
43static unsigned arch_timers_present __initdata;
44
45static void __iomem *arch_counter_base;
46
47struct arch_timer {
48 void __iomem *base;
49 struct clock_event_device evt;
50};
51
52#define to_arch_timer(e) container_of(e, struct arch_timer, evt)
53
Mark Rutland8a4da6e2012-11-12 14:33:44 +000054static u32 arch_timer_rate;
55
56enum ppi_nr {
57 PHYS_SECURE_PPI,
58 PHYS_NONSECURE_PPI,
59 VIRT_PPI,
60 HYP_PPI,
61 MAX_TIMER_PPI
62};
63
64static int arch_timer_ppi[MAX_TIMER_PPI];
65
66static struct clock_event_device __percpu *arch_timer_evt;
67
68static bool arch_timer_use_virtual = true;
Lorenzo Pieralisi82a561942014-04-08 10:04:32 +010069static bool arch_timer_c3stop;
Stephen Boyd22006992013-07-18 16:59:32 -070070static bool arch_timer_mem_use_virtual;
Mark Rutland8a4da6e2012-11-12 14:33:44 +000071
72/*
73 * Architected system timer support.
74 */
75
Stephen Boyd60faddf2013-07-18 16:59:31 -070076static __always_inline
77void arch_timer_reg_write(int access, enum arch_timer_reg reg, u32 val,
Thomas Gleixnercfb6d652013-08-21 14:59:23 +020078 struct clock_event_device *clk)
Stephen Boyd60faddf2013-07-18 16:59:31 -070079{
Stephen Boyd22006992013-07-18 16:59:32 -070080 if (access == ARCH_TIMER_MEM_PHYS_ACCESS) {
81 struct arch_timer *timer = to_arch_timer(clk);
82 switch (reg) {
83 case ARCH_TIMER_REG_CTRL:
84 writel_relaxed(val, timer->base + CNTP_CTL);
85 break;
86 case ARCH_TIMER_REG_TVAL:
87 writel_relaxed(val, timer->base + CNTP_TVAL);
88 break;
89 }
90 } else if (access == ARCH_TIMER_MEM_VIRT_ACCESS) {
91 struct arch_timer *timer = to_arch_timer(clk);
92 switch (reg) {
93 case ARCH_TIMER_REG_CTRL:
94 writel_relaxed(val, timer->base + CNTV_CTL);
95 break;
96 case ARCH_TIMER_REG_TVAL:
97 writel_relaxed(val, timer->base + CNTV_TVAL);
98 break;
99 }
100 } else {
101 arch_timer_reg_write_cp15(access, reg, val);
102 }
Stephen Boyd60faddf2013-07-18 16:59:31 -0700103}
104
105static __always_inline
106u32 arch_timer_reg_read(int access, enum arch_timer_reg reg,
Thomas Gleixnercfb6d652013-08-21 14:59:23 +0200107 struct clock_event_device *clk)
Stephen Boyd60faddf2013-07-18 16:59:31 -0700108{
Stephen Boyd22006992013-07-18 16:59:32 -0700109 u32 val;
110
111 if (access == ARCH_TIMER_MEM_PHYS_ACCESS) {
112 struct arch_timer *timer = to_arch_timer(clk);
113 switch (reg) {
114 case ARCH_TIMER_REG_CTRL:
115 val = readl_relaxed(timer->base + CNTP_CTL);
116 break;
117 case ARCH_TIMER_REG_TVAL:
118 val = readl_relaxed(timer->base + CNTP_TVAL);
119 break;
120 }
121 } else if (access == ARCH_TIMER_MEM_VIRT_ACCESS) {
122 struct arch_timer *timer = to_arch_timer(clk);
123 switch (reg) {
124 case ARCH_TIMER_REG_CTRL:
125 val = readl_relaxed(timer->base + CNTV_CTL);
126 break;
127 case ARCH_TIMER_REG_TVAL:
128 val = readl_relaxed(timer->base + CNTV_TVAL);
129 break;
130 }
131 } else {
132 val = arch_timer_reg_read_cp15(access, reg);
133 }
134
135 return val;
Stephen Boyd60faddf2013-07-18 16:59:31 -0700136}
137
Stephen Boyde09f3cc2013-07-18 16:59:28 -0700138static __always_inline irqreturn_t timer_handler(const int access,
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000139 struct clock_event_device *evt)
140{
141 unsigned long ctrl;
Thomas Gleixnercfb6d652013-08-21 14:59:23 +0200142
Stephen Boyd60faddf2013-07-18 16:59:31 -0700143 ctrl = arch_timer_reg_read(access, ARCH_TIMER_REG_CTRL, evt);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000144 if (ctrl & ARCH_TIMER_CTRL_IT_STAT) {
145 ctrl |= ARCH_TIMER_CTRL_IT_MASK;
Stephen Boyd60faddf2013-07-18 16:59:31 -0700146 arch_timer_reg_write(access, ARCH_TIMER_REG_CTRL, ctrl, evt);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000147 evt->event_handler(evt);
148 return IRQ_HANDLED;
149 }
150
151 return IRQ_NONE;
152}
153
154static irqreturn_t arch_timer_handler_virt(int irq, void *dev_id)
155{
156 struct clock_event_device *evt = dev_id;
157
158 return timer_handler(ARCH_TIMER_VIRT_ACCESS, evt);
159}
160
161static irqreturn_t arch_timer_handler_phys(int irq, void *dev_id)
162{
163 struct clock_event_device *evt = dev_id;
164
165 return timer_handler(ARCH_TIMER_PHYS_ACCESS, evt);
166}
167
Stephen Boyd22006992013-07-18 16:59:32 -0700168static irqreturn_t arch_timer_handler_phys_mem(int irq, void *dev_id)
169{
170 struct clock_event_device *evt = dev_id;
171
172 return timer_handler(ARCH_TIMER_MEM_PHYS_ACCESS, evt);
173}
174
175static irqreturn_t arch_timer_handler_virt_mem(int irq, void *dev_id)
176{
177 struct clock_event_device *evt = dev_id;
178
179 return timer_handler(ARCH_TIMER_MEM_VIRT_ACCESS, evt);
180}
181
Stephen Boyd60faddf2013-07-18 16:59:31 -0700182static __always_inline void timer_set_mode(const int access, int mode,
183 struct clock_event_device *clk)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000184{
185 unsigned long ctrl;
186 switch (mode) {
187 case CLOCK_EVT_MODE_UNUSED:
188 case CLOCK_EVT_MODE_SHUTDOWN:
Stephen Boyd60faddf2013-07-18 16:59:31 -0700189 ctrl = arch_timer_reg_read(access, ARCH_TIMER_REG_CTRL, clk);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000190 ctrl &= ~ARCH_TIMER_CTRL_ENABLE;
Stephen Boyd60faddf2013-07-18 16:59:31 -0700191 arch_timer_reg_write(access, ARCH_TIMER_REG_CTRL, ctrl, clk);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000192 break;
193 default:
194 break;
195 }
196}
197
198static void arch_timer_set_mode_virt(enum clock_event_mode mode,
199 struct clock_event_device *clk)
200{
Stephen Boyd60faddf2013-07-18 16:59:31 -0700201 timer_set_mode(ARCH_TIMER_VIRT_ACCESS, mode, clk);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000202}
203
204static void arch_timer_set_mode_phys(enum clock_event_mode mode,
205 struct clock_event_device *clk)
206{
Stephen Boyd60faddf2013-07-18 16:59:31 -0700207 timer_set_mode(ARCH_TIMER_PHYS_ACCESS, mode, clk);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000208}
209
Stephen Boyd22006992013-07-18 16:59:32 -0700210static void arch_timer_set_mode_virt_mem(enum clock_event_mode mode,
211 struct clock_event_device *clk)
212{
213 timer_set_mode(ARCH_TIMER_MEM_VIRT_ACCESS, mode, clk);
214}
215
216static void arch_timer_set_mode_phys_mem(enum clock_event_mode mode,
217 struct clock_event_device *clk)
218{
219 timer_set_mode(ARCH_TIMER_MEM_PHYS_ACCESS, mode, clk);
220}
221
Stephen Boyd60faddf2013-07-18 16:59:31 -0700222static __always_inline void set_next_event(const int access, unsigned long evt,
Thomas Gleixnercfb6d652013-08-21 14:59:23 +0200223 struct clock_event_device *clk)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000224{
225 unsigned long ctrl;
Stephen Boyd60faddf2013-07-18 16:59:31 -0700226 ctrl = arch_timer_reg_read(access, ARCH_TIMER_REG_CTRL, clk);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000227 ctrl |= ARCH_TIMER_CTRL_ENABLE;
228 ctrl &= ~ARCH_TIMER_CTRL_IT_MASK;
Stephen Boyd60faddf2013-07-18 16:59:31 -0700229 arch_timer_reg_write(access, ARCH_TIMER_REG_TVAL, evt, clk);
230 arch_timer_reg_write(access, ARCH_TIMER_REG_CTRL, ctrl, clk);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000231}
232
233static int arch_timer_set_next_event_virt(unsigned long evt,
Stephen Boyd60faddf2013-07-18 16:59:31 -0700234 struct clock_event_device *clk)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000235{
Stephen Boyd60faddf2013-07-18 16:59:31 -0700236 set_next_event(ARCH_TIMER_VIRT_ACCESS, evt, clk);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000237 return 0;
238}
239
240static int arch_timer_set_next_event_phys(unsigned long evt,
Stephen Boyd60faddf2013-07-18 16:59:31 -0700241 struct clock_event_device *clk)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000242{
Stephen Boyd60faddf2013-07-18 16:59:31 -0700243 set_next_event(ARCH_TIMER_PHYS_ACCESS, evt, clk);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000244 return 0;
245}
246
Stephen Boyd22006992013-07-18 16:59:32 -0700247static int arch_timer_set_next_event_virt_mem(unsigned long evt,
248 struct clock_event_device *clk)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000249{
Stephen Boyd22006992013-07-18 16:59:32 -0700250 set_next_event(ARCH_TIMER_MEM_VIRT_ACCESS, evt, clk);
251 return 0;
252}
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000253
Stephen Boyd22006992013-07-18 16:59:32 -0700254static int arch_timer_set_next_event_phys_mem(unsigned long evt,
255 struct clock_event_device *clk)
256{
257 set_next_event(ARCH_TIMER_MEM_PHYS_ACCESS, evt, clk);
258 return 0;
259}
260
Thomas Gleixnercfb6d652013-08-21 14:59:23 +0200261static void __arch_timer_setup(unsigned type,
262 struct clock_event_device *clk)
Stephen Boyd22006992013-07-18 16:59:32 -0700263{
264 clk->features = CLOCK_EVT_FEAT_ONESHOT;
265
266 if (type == ARCH_CP15_TIMER) {
Lorenzo Pieralisi82a561942014-04-08 10:04:32 +0100267 if (arch_timer_c3stop)
268 clk->features |= CLOCK_EVT_FEAT_C3STOP;
Stephen Boyd22006992013-07-18 16:59:32 -0700269 clk->name = "arch_sys_timer";
270 clk->rating = 450;
271 clk->cpumask = cpumask_of(smp_processor_id());
272 if (arch_timer_use_virtual) {
273 clk->irq = arch_timer_ppi[VIRT_PPI];
274 clk->set_mode = arch_timer_set_mode_virt;
275 clk->set_next_event = arch_timer_set_next_event_virt;
276 } else {
277 clk->irq = arch_timer_ppi[PHYS_SECURE_PPI];
278 clk->set_mode = arch_timer_set_mode_phys;
279 clk->set_next_event = arch_timer_set_next_event_phys;
280 }
281 } else {
Stephen Boyd7b52ad22014-01-06 14:56:17 -0800282 clk->features |= CLOCK_EVT_FEAT_DYNIRQ;
Stephen Boyd22006992013-07-18 16:59:32 -0700283 clk->name = "arch_mem_timer";
284 clk->rating = 400;
285 clk->cpumask = cpu_all_mask;
286 if (arch_timer_mem_use_virtual) {
287 clk->set_mode = arch_timer_set_mode_virt_mem;
288 clk->set_next_event =
289 arch_timer_set_next_event_virt_mem;
290 } else {
291 clk->set_mode = arch_timer_set_mode_phys_mem;
292 clk->set_next_event =
293 arch_timer_set_next_event_phys_mem;
294 }
295 }
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000296
Stephen Boyd1ff99ea2013-07-18 16:59:30 -0700297 clk->set_mode(CLOCK_EVT_MODE_SHUTDOWN, clk);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000298
Stephen Boyd22006992013-07-18 16:59:32 -0700299 clockevents_config_and_register(clk, arch_timer_rate, 0xf, 0x7fffffff);
300}
301
Will Deacon037f6372013-08-23 15:32:29 +0100302static void arch_timer_configure_evtstream(void)
303{
304 int evt_stream_div, pos;
305
306 /* Find the closest power of two to the divisor */
307 evt_stream_div = arch_timer_rate / ARCH_TIMER_EVT_STREAM_FREQ;
308 pos = fls(evt_stream_div);
309 if (pos > 1 && !(evt_stream_div & (1 << (pos - 2))))
310 pos--;
311 /* enable event stream */
312 arch_timer_evtstrm_enable(min(pos, 15));
313}
314
Paul Gortmaker8c37bb32013-06-19 11:32:08 -0400315static int arch_timer_setup(struct clock_event_device *clk)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000316{
Stephen Boyd22006992013-07-18 16:59:32 -0700317 __arch_timer_setup(ARCH_CP15_TIMER, clk);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000318
319 if (arch_timer_use_virtual)
320 enable_percpu_irq(arch_timer_ppi[VIRT_PPI], 0);
321 else {
322 enable_percpu_irq(arch_timer_ppi[PHYS_SECURE_PPI], 0);
323 if (arch_timer_ppi[PHYS_NONSECURE_PPI])
324 enable_percpu_irq(arch_timer_ppi[PHYS_NONSECURE_PPI], 0);
325 }
326
327 arch_counter_set_user_access();
Will Deacon037f6372013-08-23 15:32:29 +0100328 if (IS_ENABLED(CONFIG_ARM_ARCH_TIMER_EVTSTREAM))
329 arch_timer_configure_evtstream();
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000330
331 return 0;
332}
333
Stephen Boyd22006992013-07-18 16:59:32 -0700334static void
335arch_timer_detect_rate(void __iomem *cntbase, struct device_node *np)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000336{
Stephen Boyd22006992013-07-18 16:59:32 -0700337 /* Who has more than one independent system counter? */
338 if (arch_timer_rate)
339 return;
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000340
Stephen Boyd22006992013-07-18 16:59:32 -0700341 /* Try to determine the frequency from the device tree or CNTFRQ */
342 if (of_property_read_u32(np, "clock-frequency", &arch_timer_rate)) {
343 if (cntbase)
344 arch_timer_rate = readl_relaxed(cntbase + CNTFRQ);
345 else
346 arch_timer_rate = arch_timer_get_cntfrq();
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000347 }
348
Stephen Boyd22006992013-07-18 16:59:32 -0700349 /* Check the timer frequency. */
350 if (arch_timer_rate == 0)
351 pr_warn("Architected timer frequency not available\n");
352}
353
354static void arch_timer_banner(unsigned type)
355{
356 pr_info("Architected %s%s%s timer(s) running at %lu.%02luMHz (%s%s%s).\n",
357 type & ARCH_CP15_TIMER ? "cp15" : "",
358 type == (ARCH_CP15_TIMER | ARCH_MEM_TIMER) ? " and " : "",
359 type & ARCH_MEM_TIMER ? "mmio" : "",
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000360 (unsigned long)arch_timer_rate / 1000000,
361 (unsigned long)(arch_timer_rate / 10000) % 100,
Stephen Boyd22006992013-07-18 16:59:32 -0700362 type & ARCH_CP15_TIMER ?
363 arch_timer_use_virtual ? "virt" : "phys" :
364 "",
365 type == (ARCH_CP15_TIMER | ARCH_MEM_TIMER) ? "/" : "",
366 type & ARCH_MEM_TIMER ?
367 arch_timer_mem_use_virtual ? "virt" : "phys" :
368 "");
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000369}
370
371u32 arch_timer_get_rate(void)
372{
373 return arch_timer_rate;
374}
375
Stephen Boyd22006992013-07-18 16:59:32 -0700376static u64 arch_counter_get_cntvct_mem(void)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000377{
Stephen Boyd22006992013-07-18 16:59:32 -0700378 u32 vct_lo, vct_hi, tmp_hi;
379
380 do {
381 vct_hi = readl_relaxed(arch_counter_base + CNTVCT_HI);
382 vct_lo = readl_relaxed(arch_counter_base + CNTVCT_LO);
383 tmp_hi = readl_relaxed(arch_counter_base + CNTVCT_HI);
384 } while (vct_hi != tmp_hi);
385
386 return ((u64) vct_hi << 32) | vct_lo;
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000387}
388
Stephen Boyd22006992013-07-18 16:59:32 -0700389/*
390 * Default to cp15 based access because arm64 uses this function for
391 * sched_clock() before DT is probed and the cp15 method is guaranteed
392 * to exist on arm64. arm doesn't use this before DT is probed so even
393 * if we don't have the cp15 accessors we won't have a problem.
394 */
395u64 (*arch_timer_read_counter)(void) = arch_counter_get_cntvct;
396
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000397static cycle_t arch_counter_read(struct clocksource *cs)
398{
Stephen Boyd22006992013-07-18 16:59:32 -0700399 return arch_timer_read_counter();
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000400}
401
402static cycle_t arch_counter_read_cc(const struct cyclecounter *cc)
403{
Stephen Boyd22006992013-07-18 16:59:32 -0700404 return arch_timer_read_counter();
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000405}
406
407static struct clocksource clocksource_counter = {
408 .name = "arch_sys_counter",
409 .rating = 400,
410 .read = arch_counter_read,
411 .mask = CLOCKSOURCE_MASK(56),
Stephen Boyd4fbcdc82013-09-27 13:13:12 -0700412 .flags = CLOCK_SOURCE_IS_CONTINUOUS | CLOCK_SOURCE_SUSPEND_NONSTOP,
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000413};
414
415static struct cyclecounter cyclecounter = {
416 .read = arch_counter_read_cc,
417 .mask = CLOCKSOURCE_MASK(56),
418};
419
420static struct timecounter timecounter;
421
422struct timecounter *arch_timer_get_timecounter(void)
423{
424 return &timecounter;
425}
426
Stephen Boyd22006992013-07-18 16:59:32 -0700427static void __init arch_counter_register(unsigned type)
428{
429 u64 start_count;
430
431 /* Register the CP15 based counter if we have one */
Nathan Lynch423bd692014-09-29 01:50:06 +0200432 if (type & ARCH_CP15_TIMER) {
Stephen Boyd22006992013-07-18 16:59:32 -0700433 arch_timer_read_counter = arch_counter_get_cntvct;
Nathan Lynch423bd692014-09-29 01:50:06 +0200434 } else {
Stephen Boyd22006992013-07-18 16:59:32 -0700435 arch_timer_read_counter = arch_counter_get_cntvct_mem;
436
Nathan Lynch423bd692014-09-29 01:50:06 +0200437 /* If the clocksource name is "arch_sys_counter" the
438 * VDSO will attempt to read the CP15-based counter.
439 * Ensure this does not happen when CP15-based
440 * counter is not available.
441 */
442 clocksource_counter.name = "arch_mem_counter";
443 }
444
Stephen Boyd22006992013-07-18 16:59:32 -0700445 start_count = arch_timer_read_counter();
446 clocksource_register_hz(&clocksource_counter, arch_timer_rate);
447 cyclecounter.mult = clocksource_counter.mult;
448 cyclecounter.shift = clocksource_counter.shift;
449 timecounter_init(&timecounter, &cyclecounter, start_count);
Thierry Reding4a7d3e82013-10-15 15:31:51 +0200450
451 /* 56 bits minimum, so we assume worst case rollover */
452 sched_clock_register(arch_timer_read_counter, 56, arch_timer_rate);
Stephen Boyd22006992013-07-18 16:59:32 -0700453}
454
Paul Gortmaker8c37bb32013-06-19 11:32:08 -0400455static void arch_timer_stop(struct clock_event_device *clk)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000456{
457 pr_debug("arch_timer_teardown disable IRQ%d cpu #%d\n",
458 clk->irq, smp_processor_id());
459
460 if (arch_timer_use_virtual)
461 disable_percpu_irq(arch_timer_ppi[VIRT_PPI]);
462 else {
463 disable_percpu_irq(arch_timer_ppi[PHYS_SECURE_PPI]);
464 if (arch_timer_ppi[PHYS_NONSECURE_PPI])
465 disable_percpu_irq(arch_timer_ppi[PHYS_NONSECURE_PPI]);
466 }
467
468 clk->set_mode(CLOCK_EVT_MODE_UNUSED, clk);
469}
470
Paul Gortmaker8c37bb32013-06-19 11:32:08 -0400471static int arch_timer_cpu_notify(struct notifier_block *self,
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000472 unsigned long action, void *hcpu)
473{
Stephen Boydf31c2f12013-04-17 16:26:18 -0700474 /*
475 * Grab cpu pointer in each case to avoid spurious
476 * preemptible warnings
477 */
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000478 switch (action & ~CPU_TASKS_FROZEN) {
479 case CPU_STARTING:
Stephen Boydf31c2f12013-04-17 16:26:18 -0700480 arch_timer_setup(this_cpu_ptr(arch_timer_evt));
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000481 break;
482 case CPU_DYING:
Stephen Boydf31c2f12013-04-17 16:26:18 -0700483 arch_timer_stop(this_cpu_ptr(arch_timer_evt));
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000484 break;
485 }
486
487 return NOTIFY_OK;
488}
489
Paul Gortmaker8c37bb32013-06-19 11:32:08 -0400490static struct notifier_block arch_timer_cpu_nb = {
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000491 .notifier_call = arch_timer_cpu_notify,
492};
493
Sudeep KarkadaNagesha346e7482013-08-23 15:53:15 +0100494#ifdef CONFIG_CPU_PM
495static unsigned int saved_cntkctl;
496static int arch_timer_cpu_pm_notify(struct notifier_block *self,
497 unsigned long action, void *hcpu)
498{
499 if (action == CPU_PM_ENTER)
500 saved_cntkctl = arch_timer_get_cntkctl();
501 else if (action == CPU_PM_ENTER_FAILED || action == CPU_PM_EXIT)
502 arch_timer_set_cntkctl(saved_cntkctl);
503 return NOTIFY_OK;
504}
505
506static struct notifier_block arch_timer_cpu_pm_notifier = {
507 .notifier_call = arch_timer_cpu_pm_notify,
508};
509
510static int __init arch_timer_cpu_pm_init(void)
511{
512 return cpu_pm_register_notifier(&arch_timer_cpu_pm_notifier);
513}
514#else
515static int __init arch_timer_cpu_pm_init(void)
516{
517 return 0;
518}
519#endif
520
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000521static int __init arch_timer_register(void)
522{
523 int err;
524 int ppi;
525
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000526 arch_timer_evt = alloc_percpu(struct clock_event_device);
527 if (!arch_timer_evt) {
528 err = -ENOMEM;
529 goto out;
530 }
531
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000532 if (arch_timer_use_virtual) {
533 ppi = arch_timer_ppi[VIRT_PPI];
534 err = request_percpu_irq(ppi, arch_timer_handler_virt,
535 "arch_timer", arch_timer_evt);
536 } else {
537 ppi = arch_timer_ppi[PHYS_SECURE_PPI];
538 err = request_percpu_irq(ppi, arch_timer_handler_phys,
539 "arch_timer", arch_timer_evt);
540 if (!err && arch_timer_ppi[PHYS_NONSECURE_PPI]) {
541 ppi = arch_timer_ppi[PHYS_NONSECURE_PPI];
542 err = request_percpu_irq(ppi, arch_timer_handler_phys,
543 "arch_timer", arch_timer_evt);
544 if (err)
545 free_percpu_irq(arch_timer_ppi[PHYS_SECURE_PPI],
546 arch_timer_evt);
547 }
548 }
549
550 if (err) {
551 pr_err("arch_timer: can't register interrupt %d (%d)\n",
552 ppi, err);
553 goto out_free;
554 }
555
556 err = register_cpu_notifier(&arch_timer_cpu_nb);
557 if (err)
558 goto out_free_irq;
559
Sudeep KarkadaNagesha346e7482013-08-23 15:53:15 +0100560 err = arch_timer_cpu_pm_init();
561 if (err)
562 goto out_unreg_notify;
563
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000564 /* Immediately configure the timer on the boot CPU */
565 arch_timer_setup(this_cpu_ptr(arch_timer_evt));
566
567 return 0;
568
Sudeep KarkadaNagesha346e7482013-08-23 15:53:15 +0100569out_unreg_notify:
570 unregister_cpu_notifier(&arch_timer_cpu_nb);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000571out_free_irq:
572 if (arch_timer_use_virtual)
573 free_percpu_irq(arch_timer_ppi[VIRT_PPI], arch_timer_evt);
574 else {
575 free_percpu_irq(arch_timer_ppi[PHYS_SECURE_PPI],
576 arch_timer_evt);
577 if (arch_timer_ppi[PHYS_NONSECURE_PPI])
578 free_percpu_irq(arch_timer_ppi[PHYS_NONSECURE_PPI],
579 arch_timer_evt);
580 }
581
582out_free:
583 free_percpu(arch_timer_evt);
584out:
585 return err;
586}
587
Stephen Boyd22006992013-07-18 16:59:32 -0700588static int __init arch_timer_mem_register(void __iomem *base, unsigned int irq)
589{
590 int ret;
591 irq_handler_t func;
592 struct arch_timer *t;
593
594 t = kzalloc(sizeof(*t), GFP_KERNEL);
595 if (!t)
596 return -ENOMEM;
597
598 t->base = base;
599 t->evt.irq = irq;
600 __arch_timer_setup(ARCH_MEM_TIMER, &t->evt);
601
602 if (arch_timer_mem_use_virtual)
603 func = arch_timer_handler_virt_mem;
604 else
605 func = arch_timer_handler_phys_mem;
606
607 ret = request_irq(irq, func, IRQF_TIMER, "arch_mem_timer", &t->evt);
608 if (ret) {
609 pr_err("arch_timer: Failed to request mem timer irq\n");
610 kfree(t);
611 }
612
613 return ret;
614}
615
616static const struct of_device_id arch_timer_of_match[] __initconst = {
617 { .compatible = "arm,armv7-timer", },
618 { .compatible = "arm,armv8-timer", },
619 {},
620};
621
622static const struct of_device_id arch_timer_mem_of_match[] __initconst = {
623 { .compatible = "arm,armv7-timer-mem", },
624 {},
625};
626
Sudeep Hollac387f072014-09-29 01:50:05 +0200627static bool __init
628arch_timer_probed(int type, const struct of_device_id *matches)
629{
630 struct device_node *dn;
631 bool probed = false;
632
633 dn = of_find_matching_node(NULL, matches);
634 if (dn && of_device_is_available(dn) && (arch_timers_present & type))
635 probed = true;
636 of_node_put(dn);
637
638 return probed;
639}
640
Stephen Boyd22006992013-07-18 16:59:32 -0700641static void __init arch_timer_common_init(void)
642{
643 unsigned mask = ARCH_CP15_TIMER | ARCH_MEM_TIMER;
644
645 /* Wait until both nodes are probed if we have two timers */
646 if ((arch_timers_present & mask) != mask) {
Sudeep Hollac387f072014-09-29 01:50:05 +0200647 if (!arch_timer_probed(ARCH_MEM_TIMER, arch_timer_mem_of_match))
Stephen Boyd22006992013-07-18 16:59:32 -0700648 return;
Sudeep Hollac387f072014-09-29 01:50:05 +0200649 if (!arch_timer_probed(ARCH_CP15_TIMER, arch_timer_of_match))
Stephen Boyd22006992013-07-18 16:59:32 -0700650 return;
651 }
652
653 arch_timer_banner(arch_timers_present);
654 arch_counter_register(arch_timers_present);
655 arch_timer_arch_init();
656}
657
Rob Herring0583fe42013-04-10 18:27:51 -0500658static void __init arch_timer_init(struct device_node *np)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000659{
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000660 int i;
661
Stephen Boyd22006992013-07-18 16:59:32 -0700662 if (arch_timers_present & ARCH_CP15_TIMER) {
Rob Herring0583fe42013-04-10 18:27:51 -0500663 pr_warn("arch_timer: multiple nodes in dt, skipping\n");
664 return;
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000665 }
666
Stephen Boyd22006992013-07-18 16:59:32 -0700667 arch_timers_present |= ARCH_CP15_TIMER;
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000668 for (i = PHYS_SECURE_PPI; i < MAX_TIMER_PPI; i++)
669 arch_timer_ppi[i] = irq_of_parse_and_map(np, i);
Stephen Boyd22006992013-07-18 16:59:32 -0700670 arch_timer_detect_rate(NULL, np);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000671
672 /*
Marc Zyngier82668912013-01-10 11:13:07 +0000673 * If HYP mode is available, we know that the physical timer
674 * has been configured to be accessible from PL1. Use it, so
675 * that a guest can use the virtual timer instead.
676 *
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000677 * If no interrupt provided for virtual timer, we'll have to
678 * stick to the physical timer. It'd better be accessible...
679 */
Marc Zyngier82668912013-01-10 11:13:07 +0000680 if (is_hyp_mode_available() || !arch_timer_ppi[VIRT_PPI]) {
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000681 arch_timer_use_virtual = false;
682
683 if (!arch_timer_ppi[PHYS_SECURE_PPI] ||
684 !arch_timer_ppi[PHYS_NONSECURE_PPI]) {
685 pr_warn("arch_timer: No interrupt available, giving up\n");
Rob Herring0583fe42013-04-10 18:27:51 -0500686 return;
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000687 }
688 }
689
Lorenzo Pieralisi82a561942014-04-08 10:04:32 +0100690 arch_timer_c3stop = !of_property_read_bool(np, "always-on");
691
Rob Herring0583fe42013-04-10 18:27:51 -0500692 arch_timer_register();
Stephen Boyd22006992013-07-18 16:59:32 -0700693 arch_timer_common_init();
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000694}
Rob Herring0583fe42013-04-10 18:27:51 -0500695CLOCKSOURCE_OF_DECLARE(armv7_arch_timer, "arm,armv7-timer", arch_timer_init);
696CLOCKSOURCE_OF_DECLARE(armv8_arch_timer, "arm,armv8-timer", arch_timer_init);
Stephen Boyd22006992013-07-18 16:59:32 -0700697
698static void __init arch_timer_mem_init(struct device_node *np)
699{
700 struct device_node *frame, *best_frame = NULL;
701 void __iomem *cntctlbase, *base;
702 unsigned int irq;
703 u32 cnttidr;
704
705 arch_timers_present |= ARCH_MEM_TIMER;
706 cntctlbase = of_iomap(np, 0);
707 if (!cntctlbase) {
708 pr_err("arch_timer: Can't find CNTCTLBase\n");
709 return;
710 }
711
712 cnttidr = readl_relaxed(cntctlbase + CNTTIDR);
713 iounmap(cntctlbase);
714
715 /*
716 * Try to find a virtual capable frame. Otherwise fall back to a
717 * physical capable frame.
718 */
719 for_each_available_child_of_node(np, frame) {
720 int n;
721
722 if (of_property_read_u32(frame, "frame-number", &n)) {
723 pr_err("arch_timer: Missing frame-number\n");
724 of_node_put(best_frame);
725 of_node_put(frame);
726 return;
727 }
728
729 if (cnttidr & CNTTIDR_VIRT(n)) {
730 of_node_put(best_frame);
731 best_frame = frame;
732 arch_timer_mem_use_virtual = true;
733 break;
734 }
735 of_node_put(best_frame);
736 best_frame = of_node_get(frame);
737 }
738
739 base = arch_counter_base = of_iomap(best_frame, 0);
740 if (!base) {
741 pr_err("arch_timer: Can't map frame's registers\n");
742 of_node_put(best_frame);
743 return;
744 }
745
746 if (arch_timer_mem_use_virtual)
747 irq = irq_of_parse_and_map(best_frame, 1);
748 else
749 irq = irq_of_parse_and_map(best_frame, 0);
750 of_node_put(best_frame);
751 if (!irq) {
752 pr_err("arch_timer: Frame missing %s irq",
Thomas Gleixnercfb6d652013-08-21 14:59:23 +0200753 arch_timer_mem_use_virtual ? "virt" : "phys");
Stephen Boyd22006992013-07-18 16:59:32 -0700754 return;
755 }
756
757 arch_timer_detect_rate(base, np);
758 arch_timer_mem_register(base, irq);
759 arch_timer_common_init();
760}
761CLOCKSOURCE_OF_DECLARE(armv7_arch_timer_mem, "arm,armv7-timer-mem",
762 arch_timer_mem_init);