blob: f0dd9d42bc7b1c9b55f48719cd0f3ded16bbe00f [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>
Richard Cochran7c8f1e72015-01-06 14:26:13 +010018#include <linux/clocksource.h>
Mark Rutland8a4da6e2012-11-12 14:33:44 +000019#include <linux/interrupt.h>
20#include <linux/of_irq.h>
Stephen Boyd22006992013-07-18 16:59:32 -070021#include <linux/of_address.h>
Mark Rutland8a4da6e2012-11-12 14:33:44 +000022#include <linux/io.h>
Stephen Boyd22006992013-07-18 16:59:32 -070023#include <linux/slab.h>
Stephen Boyd65cd4f62013-07-18 16:21:18 -070024#include <linux/sched_clock.h>
Hanjun Guob09ca1e2015-03-24 14:02:50 +000025#include <linux/acpi.h>
Mark Rutland8a4da6e2012-11-12 14:33:44 +000026
27#include <asm/arch_timer.h>
Marc Zyngier82668912013-01-10 11:13:07 +000028#include <asm/virt.h>
Mark Rutland8a4da6e2012-11-12 14:33:44 +000029
30#include <clocksource/arm_arch_timer.h>
31
Stephen Boyd22006992013-07-18 16:59:32 -070032#define CNTTIDR 0x08
33#define CNTTIDR_VIRT(n) (BIT(1) << ((n) * 4))
34
Robin Murphye392d602016-02-01 12:00:48 +000035#define CNTACR(n) (0x40 + ((n) * 4))
36#define CNTACR_RPCT BIT(0)
37#define CNTACR_RVCT BIT(1)
38#define CNTACR_RFRQ BIT(2)
39#define CNTACR_RVOFF BIT(3)
40#define CNTACR_RWVT BIT(4)
41#define CNTACR_RWPT BIT(5)
42
Stephen Boyd22006992013-07-18 16:59:32 -070043#define CNTVCT_LO 0x08
44#define CNTVCT_HI 0x0c
45#define CNTFRQ 0x10
46#define CNTP_TVAL 0x28
47#define CNTP_CTL 0x2c
48#define CNTV_TVAL 0x38
49#define CNTV_CTL 0x3c
50
51#define ARCH_CP15_TIMER BIT(0)
52#define ARCH_MEM_TIMER BIT(1)
53static unsigned arch_timers_present __initdata;
54
55static void __iomem *arch_counter_base;
56
57struct arch_timer {
58 void __iomem *base;
59 struct clock_event_device evt;
60};
61
62#define to_arch_timer(e) container_of(e, struct arch_timer, evt)
63
Mark Rutland8a4da6e2012-11-12 14:33:44 +000064static u32 arch_timer_rate;
65
66enum ppi_nr {
67 PHYS_SECURE_PPI,
68 PHYS_NONSECURE_PPI,
69 VIRT_PPI,
70 HYP_PPI,
71 MAX_TIMER_PPI
72};
73
74static int arch_timer_ppi[MAX_TIMER_PPI];
75
76static struct clock_event_device __percpu *arch_timer_evt;
77
78static bool arch_timer_use_virtual = true;
Lorenzo Pieralisi82a561942014-04-08 10:04:32 +010079static bool arch_timer_c3stop;
Stephen Boyd22006992013-07-18 16:59:32 -070080static bool arch_timer_mem_use_virtual;
Mark Rutland8a4da6e2012-11-12 14:33:44 +000081
82/*
83 * Architected system timer support.
84 */
85
Stephen Boyd60faddf2013-07-18 16:59:31 -070086static __always_inline
87void arch_timer_reg_write(int access, enum arch_timer_reg reg, u32 val,
Thomas Gleixnercfb6d652013-08-21 14:59:23 +020088 struct clock_event_device *clk)
Stephen Boyd60faddf2013-07-18 16:59:31 -070089{
Stephen Boyd22006992013-07-18 16:59:32 -070090 if (access == ARCH_TIMER_MEM_PHYS_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 + CNTP_CTL);
95 break;
96 case ARCH_TIMER_REG_TVAL:
97 writel_relaxed(val, timer->base + CNTP_TVAL);
98 break;
99 }
100 } else if (access == ARCH_TIMER_MEM_VIRT_ACCESS) {
101 struct arch_timer *timer = to_arch_timer(clk);
102 switch (reg) {
103 case ARCH_TIMER_REG_CTRL:
104 writel_relaxed(val, timer->base + CNTV_CTL);
105 break;
106 case ARCH_TIMER_REG_TVAL:
107 writel_relaxed(val, timer->base + CNTV_TVAL);
108 break;
109 }
110 } else {
111 arch_timer_reg_write_cp15(access, reg, val);
112 }
Stephen Boyd60faddf2013-07-18 16:59:31 -0700113}
114
115static __always_inline
116u32 arch_timer_reg_read(int access, enum arch_timer_reg reg,
Thomas Gleixnercfb6d652013-08-21 14:59:23 +0200117 struct clock_event_device *clk)
Stephen Boyd60faddf2013-07-18 16:59:31 -0700118{
Stephen Boyd22006992013-07-18 16:59:32 -0700119 u32 val;
120
121 if (access == ARCH_TIMER_MEM_PHYS_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 + CNTP_CTL);
126 break;
127 case ARCH_TIMER_REG_TVAL:
128 val = readl_relaxed(timer->base + CNTP_TVAL);
129 break;
130 }
131 } else if (access == ARCH_TIMER_MEM_VIRT_ACCESS) {
132 struct arch_timer *timer = to_arch_timer(clk);
133 switch (reg) {
134 case ARCH_TIMER_REG_CTRL:
135 val = readl_relaxed(timer->base + CNTV_CTL);
136 break;
137 case ARCH_TIMER_REG_TVAL:
138 val = readl_relaxed(timer->base + CNTV_TVAL);
139 break;
140 }
141 } else {
142 val = arch_timer_reg_read_cp15(access, reg);
143 }
144
145 return val;
Stephen Boyd60faddf2013-07-18 16:59:31 -0700146}
147
Stephen Boyde09f3cc2013-07-18 16:59:28 -0700148static __always_inline irqreturn_t timer_handler(const int access,
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000149 struct clock_event_device *evt)
150{
151 unsigned long ctrl;
Thomas Gleixnercfb6d652013-08-21 14:59:23 +0200152
Stephen Boyd60faddf2013-07-18 16:59:31 -0700153 ctrl = arch_timer_reg_read(access, ARCH_TIMER_REG_CTRL, evt);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000154 if (ctrl & ARCH_TIMER_CTRL_IT_STAT) {
155 ctrl |= ARCH_TIMER_CTRL_IT_MASK;
Stephen Boyd60faddf2013-07-18 16:59:31 -0700156 arch_timer_reg_write(access, ARCH_TIMER_REG_CTRL, ctrl, evt);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000157 evt->event_handler(evt);
158 return IRQ_HANDLED;
159 }
160
161 return IRQ_NONE;
162}
163
164static irqreturn_t arch_timer_handler_virt(int irq, void *dev_id)
165{
166 struct clock_event_device *evt = dev_id;
167
168 return timer_handler(ARCH_TIMER_VIRT_ACCESS, evt);
169}
170
171static irqreturn_t arch_timer_handler_phys(int irq, void *dev_id)
172{
173 struct clock_event_device *evt = dev_id;
174
175 return timer_handler(ARCH_TIMER_PHYS_ACCESS, evt);
176}
177
Stephen Boyd22006992013-07-18 16:59:32 -0700178static irqreturn_t arch_timer_handler_phys_mem(int irq, void *dev_id)
179{
180 struct clock_event_device *evt = dev_id;
181
182 return timer_handler(ARCH_TIMER_MEM_PHYS_ACCESS, evt);
183}
184
185static irqreturn_t arch_timer_handler_virt_mem(int irq, void *dev_id)
186{
187 struct clock_event_device *evt = dev_id;
188
189 return timer_handler(ARCH_TIMER_MEM_VIRT_ACCESS, evt);
190}
191
Viresh Kumar46c5bfd2015-06-12 13:30:12 +0530192static __always_inline int timer_shutdown(const int access,
193 struct clock_event_device *clk)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000194{
195 unsigned long ctrl;
Viresh Kumar46c5bfd2015-06-12 13:30:12 +0530196
197 ctrl = arch_timer_reg_read(access, ARCH_TIMER_REG_CTRL, clk);
198 ctrl &= ~ARCH_TIMER_CTRL_ENABLE;
199 arch_timer_reg_write(access, ARCH_TIMER_REG_CTRL, ctrl, clk);
200
201 return 0;
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000202}
203
Viresh Kumar46c5bfd2015-06-12 13:30:12 +0530204static int arch_timer_shutdown_virt(struct clock_event_device *clk)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000205{
Viresh Kumar46c5bfd2015-06-12 13:30:12 +0530206 return timer_shutdown(ARCH_TIMER_VIRT_ACCESS, clk);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000207}
208
Viresh Kumar46c5bfd2015-06-12 13:30:12 +0530209static int arch_timer_shutdown_phys(struct clock_event_device *clk)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000210{
Viresh Kumar46c5bfd2015-06-12 13:30:12 +0530211 return timer_shutdown(ARCH_TIMER_PHYS_ACCESS, clk);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000212}
213
Viresh Kumar46c5bfd2015-06-12 13:30:12 +0530214static int arch_timer_shutdown_virt_mem(struct clock_event_device *clk)
Stephen Boyd22006992013-07-18 16:59:32 -0700215{
Viresh Kumar46c5bfd2015-06-12 13:30:12 +0530216 return timer_shutdown(ARCH_TIMER_MEM_VIRT_ACCESS, clk);
Stephen Boyd22006992013-07-18 16:59:32 -0700217}
218
Viresh Kumar46c5bfd2015-06-12 13:30:12 +0530219static int arch_timer_shutdown_phys_mem(struct clock_event_device *clk)
Stephen Boyd22006992013-07-18 16:59:32 -0700220{
Viresh Kumar46c5bfd2015-06-12 13:30:12 +0530221 return timer_shutdown(ARCH_TIMER_MEM_PHYS_ACCESS, clk);
Stephen Boyd22006992013-07-18 16:59:32 -0700222}
223
Stephen Boyd60faddf2013-07-18 16:59:31 -0700224static __always_inline void set_next_event(const int access, unsigned long evt,
Thomas Gleixnercfb6d652013-08-21 14:59:23 +0200225 struct clock_event_device *clk)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000226{
227 unsigned long ctrl;
Stephen Boyd60faddf2013-07-18 16:59:31 -0700228 ctrl = arch_timer_reg_read(access, ARCH_TIMER_REG_CTRL, clk);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000229 ctrl |= ARCH_TIMER_CTRL_ENABLE;
230 ctrl &= ~ARCH_TIMER_CTRL_IT_MASK;
Stephen Boyd60faddf2013-07-18 16:59:31 -0700231 arch_timer_reg_write(access, ARCH_TIMER_REG_TVAL, evt, clk);
232 arch_timer_reg_write(access, ARCH_TIMER_REG_CTRL, ctrl, clk);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000233}
234
235static int arch_timer_set_next_event_virt(unsigned long evt,
Stephen Boyd60faddf2013-07-18 16:59:31 -0700236 struct clock_event_device *clk)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000237{
Stephen Boyd60faddf2013-07-18 16:59:31 -0700238 set_next_event(ARCH_TIMER_VIRT_ACCESS, evt, clk);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000239 return 0;
240}
241
242static int arch_timer_set_next_event_phys(unsigned long evt,
Stephen Boyd60faddf2013-07-18 16:59:31 -0700243 struct clock_event_device *clk)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000244{
Stephen Boyd60faddf2013-07-18 16:59:31 -0700245 set_next_event(ARCH_TIMER_PHYS_ACCESS, evt, clk);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000246 return 0;
247}
248
Stephen Boyd22006992013-07-18 16:59:32 -0700249static int arch_timer_set_next_event_virt_mem(unsigned long evt,
250 struct clock_event_device *clk)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000251{
Stephen Boyd22006992013-07-18 16:59:32 -0700252 set_next_event(ARCH_TIMER_MEM_VIRT_ACCESS, evt, clk);
253 return 0;
254}
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000255
Stephen Boyd22006992013-07-18 16:59:32 -0700256static int arch_timer_set_next_event_phys_mem(unsigned long evt,
257 struct clock_event_device *clk)
258{
259 set_next_event(ARCH_TIMER_MEM_PHYS_ACCESS, evt, clk);
260 return 0;
261}
262
Thomas Gleixnercfb6d652013-08-21 14:59:23 +0200263static void __arch_timer_setup(unsigned type,
264 struct clock_event_device *clk)
Stephen Boyd22006992013-07-18 16:59:32 -0700265{
266 clk->features = CLOCK_EVT_FEAT_ONESHOT;
267
268 if (type == ARCH_CP15_TIMER) {
Lorenzo Pieralisi82a561942014-04-08 10:04:32 +0100269 if (arch_timer_c3stop)
270 clk->features |= CLOCK_EVT_FEAT_C3STOP;
Stephen Boyd22006992013-07-18 16:59:32 -0700271 clk->name = "arch_sys_timer";
272 clk->rating = 450;
273 clk->cpumask = cpumask_of(smp_processor_id());
274 if (arch_timer_use_virtual) {
275 clk->irq = arch_timer_ppi[VIRT_PPI];
Viresh Kumar46c5bfd2015-06-12 13:30:12 +0530276 clk->set_state_shutdown = arch_timer_shutdown_virt;
Viresh Kumarcf8c5002015-12-23 16:59:12 +0530277 clk->set_state_oneshot_stopped = arch_timer_shutdown_virt;
Stephen Boyd22006992013-07-18 16:59:32 -0700278 clk->set_next_event = arch_timer_set_next_event_virt;
279 } else {
280 clk->irq = arch_timer_ppi[PHYS_SECURE_PPI];
Viresh Kumar46c5bfd2015-06-12 13:30:12 +0530281 clk->set_state_shutdown = arch_timer_shutdown_phys;
Viresh Kumarcf8c5002015-12-23 16:59:12 +0530282 clk->set_state_oneshot_stopped = arch_timer_shutdown_phys;
Stephen Boyd22006992013-07-18 16:59:32 -0700283 clk->set_next_event = arch_timer_set_next_event_phys;
284 }
285 } else {
Stephen Boyd7b52ad22014-01-06 14:56:17 -0800286 clk->features |= CLOCK_EVT_FEAT_DYNIRQ;
Stephen Boyd22006992013-07-18 16:59:32 -0700287 clk->name = "arch_mem_timer";
288 clk->rating = 400;
289 clk->cpumask = cpu_all_mask;
290 if (arch_timer_mem_use_virtual) {
Viresh Kumar46c5bfd2015-06-12 13:30:12 +0530291 clk->set_state_shutdown = arch_timer_shutdown_virt_mem;
Viresh Kumarcf8c5002015-12-23 16:59:12 +0530292 clk->set_state_oneshot_stopped = arch_timer_shutdown_virt_mem;
Stephen Boyd22006992013-07-18 16:59:32 -0700293 clk->set_next_event =
294 arch_timer_set_next_event_virt_mem;
295 } else {
Viresh Kumar46c5bfd2015-06-12 13:30:12 +0530296 clk->set_state_shutdown = arch_timer_shutdown_phys_mem;
Viresh Kumarcf8c5002015-12-23 16:59:12 +0530297 clk->set_state_oneshot_stopped = arch_timer_shutdown_phys_mem;
Stephen Boyd22006992013-07-18 16:59:32 -0700298 clk->set_next_event =
299 arch_timer_set_next_event_phys_mem;
300 }
301 }
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000302
Viresh Kumar46c5bfd2015-06-12 13:30:12 +0530303 clk->set_state_shutdown(clk);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000304
Stephen Boyd22006992013-07-18 16:59:32 -0700305 clockevents_config_and_register(clk, arch_timer_rate, 0xf, 0x7fffffff);
306}
307
Nathan Lynche1ce5c72014-09-29 01:50:06 +0200308static void arch_timer_evtstrm_enable(int divider)
309{
310 u32 cntkctl = arch_timer_get_cntkctl();
311
312 cntkctl &= ~ARCH_TIMER_EVT_TRIGGER_MASK;
313 /* Set the divider and enable virtual event stream */
314 cntkctl |= (divider << ARCH_TIMER_EVT_TRIGGER_SHIFT)
315 | ARCH_TIMER_VIRT_EVT_EN;
316 arch_timer_set_cntkctl(cntkctl);
317 elf_hwcap |= HWCAP_EVTSTRM;
318#ifdef CONFIG_COMPAT
319 compat_elf_hwcap |= COMPAT_HWCAP_EVTSTRM;
320#endif
321}
322
Will Deacon037f6372013-08-23 15:32:29 +0100323static void arch_timer_configure_evtstream(void)
324{
325 int evt_stream_div, pos;
326
327 /* Find the closest power of two to the divisor */
328 evt_stream_div = arch_timer_rate / ARCH_TIMER_EVT_STREAM_FREQ;
329 pos = fls(evt_stream_div);
330 if (pos > 1 && !(evt_stream_div & (1 << (pos - 2))))
331 pos--;
332 /* enable event stream */
333 arch_timer_evtstrm_enable(min(pos, 15));
334}
335
Nathan Lynch8b8dde02014-09-29 01:50:06 +0200336static void arch_counter_set_user_access(void)
337{
338 u32 cntkctl = arch_timer_get_cntkctl();
339
340 /* Disable user access to the timers and the physical counter */
341 /* Also disable virtual event stream */
342 cntkctl &= ~(ARCH_TIMER_USR_PT_ACCESS_EN
343 | ARCH_TIMER_USR_VT_ACCESS_EN
344 | ARCH_TIMER_VIRT_EVT_EN
345 | ARCH_TIMER_USR_PCT_ACCESS_EN);
346
347 /* Enable user access to the virtual counter */
348 cntkctl |= ARCH_TIMER_USR_VCT_ACCESS_EN;
349
350 arch_timer_set_cntkctl(cntkctl);
351}
352
Paul Gortmaker8c37bb32013-06-19 11:32:08 -0400353static int arch_timer_setup(struct clock_event_device *clk)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000354{
Stephen Boyd22006992013-07-18 16:59:32 -0700355 __arch_timer_setup(ARCH_CP15_TIMER, clk);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000356
357 if (arch_timer_use_virtual)
358 enable_percpu_irq(arch_timer_ppi[VIRT_PPI], 0);
359 else {
360 enable_percpu_irq(arch_timer_ppi[PHYS_SECURE_PPI], 0);
361 if (arch_timer_ppi[PHYS_NONSECURE_PPI])
362 enable_percpu_irq(arch_timer_ppi[PHYS_NONSECURE_PPI], 0);
363 }
364
365 arch_counter_set_user_access();
Will Deacon037f6372013-08-23 15:32:29 +0100366 if (IS_ENABLED(CONFIG_ARM_ARCH_TIMER_EVTSTREAM))
367 arch_timer_configure_evtstream();
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000368
369 return 0;
370}
371
Stephen Boyd22006992013-07-18 16:59:32 -0700372static void
373arch_timer_detect_rate(void __iomem *cntbase, struct device_node *np)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000374{
Stephen Boyd22006992013-07-18 16:59:32 -0700375 /* Who has more than one independent system counter? */
376 if (arch_timer_rate)
377 return;
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000378
Hanjun Guob09ca1e2015-03-24 14:02:50 +0000379 /*
380 * Try to determine the frequency from the device tree or CNTFRQ,
381 * if ACPI is enabled, get the frequency from CNTFRQ ONLY.
382 */
383 if (!acpi_disabled ||
384 of_property_read_u32(np, "clock-frequency", &arch_timer_rate)) {
Stephen Boyd22006992013-07-18 16:59:32 -0700385 if (cntbase)
386 arch_timer_rate = readl_relaxed(cntbase + CNTFRQ);
387 else
388 arch_timer_rate = arch_timer_get_cntfrq();
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000389 }
390
Stephen Boyd22006992013-07-18 16:59:32 -0700391 /* Check the timer frequency. */
392 if (arch_timer_rate == 0)
393 pr_warn("Architected timer frequency not available\n");
394}
395
396static void arch_timer_banner(unsigned type)
397{
398 pr_info("Architected %s%s%s timer(s) running at %lu.%02luMHz (%s%s%s).\n",
399 type & ARCH_CP15_TIMER ? "cp15" : "",
400 type == (ARCH_CP15_TIMER | ARCH_MEM_TIMER) ? " and " : "",
401 type & ARCH_MEM_TIMER ? "mmio" : "",
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000402 (unsigned long)arch_timer_rate / 1000000,
403 (unsigned long)(arch_timer_rate / 10000) % 100,
Stephen Boyd22006992013-07-18 16:59:32 -0700404 type & ARCH_CP15_TIMER ?
405 arch_timer_use_virtual ? "virt" : "phys" :
406 "",
407 type == (ARCH_CP15_TIMER | ARCH_MEM_TIMER) ? "/" : "",
408 type & ARCH_MEM_TIMER ?
409 arch_timer_mem_use_virtual ? "virt" : "phys" :
410 "");
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000411}
412
413u32 arch_timer_get_rate(void)
414{
415 return arch_timer_rate;
416}
417
Stephen Boyd22006992013-07-18 16:59:32 -0700418static u64 arch_counter_get_cntvct_mem(void)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000419{
Stephen Boyd22006992013-07-18 16:59:32 -0700420 u32 vct_lo, vct_hi, tmp_hi;
421
422 do {
423 vct_hi = readl_relaxed(arch_counter_base + CNTVCT_HI);
424 vct_lo = readl_relaxed(arch_counter_base + CNTVCT_LO);
425 tmp_hi = readl_relaxed(arch_counter_base + CNTVCT_HI);
426 } while (vct_hi != tmp_hi);
427
428 return ((u64) vct_hi << 32) | vct_lo;
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000429}
430
Stephen Boyd22006992013-07-18 16:59:32 -0700431/*
432 * Default to cp15 based access because arm64 uses this function for
433 * sched_clock() before DT is probed and the cp15 method is guaranteed
434 * to exist on arm64. arm doesn't use this before DT is probed so even
435 * if we don't have the cp15 accessors we won't have a problem.
436 */
437u64 (*arch_timer_read_counter)(void) = arch_counter_get_cntvct;
438
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000439static cycle_t arch_counter_read(struct clocksource *cs)
440{
Stephen Boyd22006992013-07-18 16:59:32 -0700441 return arch_timer_read_counter();
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000442}
443
444static cycle_t arch_counter_read_cc(const struct cyclecounter *cc)
445{
Stephen Boyd22006992013-07-18 16:59:32 -0700446 return arch_timer_read_counter();
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000447}
448
449static struct clocksource clocksource_counter = {
450 .name = "arch_sys_counter",
451 .rating = 400,
452 .read = arch_counter_read,
453 .mask = CLOCKSOURCE_MASK(56),
Stephen Boyd4fbcdc82013-09-27 13:13:12 -0700454 .flags = CLOCK_SOURCE_IS_CONTINUOUS | CLOCK_SOURCE_SUSPEND_NONSTOP,
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000455};
456
457static struct cyclecounter cyclecounter = {
458 .read = arch_counter_read_cc,
459 .mask = CLOCKSOURCE_MASK(56),
460};
461
462static struct timecounter timecounter;
463
464struct timecounter *arch_timer_get_timecounter(void)
465{
466 return &timecounter;
467}
468
Stephen Boyd22006992013-07-18 16:59:32 -0700469static void __init arch_counter_register(unsigned type)
470{
471 u64 start_count;
472
473 /* Register the CP15 based counter if we have one */
Nathan Lynch423bd692014-09-29 01:50:06 +0200474 if (type & ARCH_CP15_TIMER) {
Catalin Marinasd6ad3692014-12-10 11:02:09 +0000475 if (IS_ENABLED(CONFIG_ARM64) || arch_timer_use_virtual)
Sonny Rao0b46b8a2014-11-23 23:02:44 -0800476 arch_timer_read_counter = arch_counter_get_cntvct;
477 else
478 arch_timer_read_counter = arch_counter_get_cntpct;
Nathan Lynch423bd692014-09-29 01:50:06 +0200479 } else {
Stephen Boyd22006992013-07-18 16:59:32 -0700480 arch_timer_read_counter = arch_counter_get_cntvct_mem;
481
Nathan Lynch423bd692014-09-29 01:50:06 +0200482 /* If the clocksource name is "arch_sys_counter" the
483 * VDSO will attempt to read the CP15-based counter.
484 * Ensure this does not happen when CP15-based
485 * counter is not available.
486 */
487 clocksource_counter.name = "arch_mem_counter";
488 }
489
Stephen Boyd22006992013-07-18 16:59:32 -0700490 start_count = arch_timer_read_counter();
491 clocksource_register_hz(&clocksource_counter, arch_timer_rate);
492 cyclecounter.mult = clocksource_counter.mult;
493 cyclecounter.shift = clocksource_counter.shift;
494 timecounter_init(&timecounter, &cyclecounter, start_count);
Thierry Reding4a7d3e82013-10-15 15:31:51 +0200495
496 /* 56 bits minimum, so we assume worst case rollover */
497 sched_clock_register(arch_timer_read_counter, 56, arch_timer_rate);
Stephen Boyd22006992013-07-18 16:59:32 -0700498}
499
Paul Gortmaker8c37bb32013-06-19 11:32:08 -0400500static void arch_timer_stop(struct clock_event_device *clk)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000501{
502 pr_debug("arch_timer_teardown disable IRQ%d cpu #%d\n",
503 clk->irq, smp_processor_id());
504
505 if (arch_timer_use_virtual)
506 disable_percpu_irq(arch_timer_ppi[VIRT_PPI]);
507 else {
508 disable_percpu_irq(arch_timer_ppi[PHYS_SECURE_PPI]);
509 if (arch_timer_ppi[PHYS_NONSECURE_PPI])
510 disable_percpu_irq(arch_timer_ppi[PHYS_NONSECURE_PPI]);
511 }
512
Viresh Kumar46c5bfd2015-06-12 13:30:12 +0530513 clk->set_state_shutdown(clk);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000514}
515
Paul Gortmaker8c37bb32013-06-19 11:32:08 -0400516static int arch_timer_cpu_notify(struct notifier_block *self,
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000517 unsigned long action, void *hcpu)
518{
Stephen Boydf31c2f12013-04-17 16:26:18 -0700519 /*
520 * Grab cpu pointer in each case to avoid spurious
521 * preemptible warnings
522 */
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000523 switch (action & ~CPU_TASKS_FROZEN) {
524 case CPU_STARTING:
Stephen Boydf31c2f12013-04-17 16:26:18 -0700525 arch_timer_setup(this_cpu_ptr(arch_timer_evt));
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000526 break;
527 case CPU_DYING:
Stephen Boydf31c2f12013-04-17 16:26:18 -0700528 arch_timer_stop(this_cpu_ptr(arch_timer_evt));
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000529 break;
530 }
531
532 return NOTIFY_OK;
533}
534
Paul Gortmaker8c37bb32013-06-19 11:32:08 -0400535static struct notifier_block arch_timer_cpu_nb = {
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000536 .notifier_call = arch_timer_cpu_notify,
537};
538
Sudeep KarkadaNagesha346e7482013-08-23 15:53:15 +0100539#ifdef CONFIG_CPU_PM
540static unsigned int saved_cntkctl;
541static int arch_timer_cpu_pm_notify(struct notifier_block *self,
542 unsigned long action, void *hcpu)
543{
544 if (action == CPU_PM_ENTER)
545 saved_cntkctl = arch_timer_get_cntkctl();
546 else if (action == CPU_PM_ENTER_FAILED || action == CPU_PM_EXIT)
547 arch_timer_set_cntkctl(saved_cntkctl);
548 return NOTIFY_OK;
549}
550
551static struct notifier_block arch_timer_cpu_pm_notifier = {
552 .notifier_call = arch_timer_cpu_pm_notify,
553};
554
555static int __init arch_timer_cpu_pm_init(void)
556{
557 return cpu_pm_register_notifier(&arch_timer_cpu_pm_notifier);
558}
559#else
560static int __init arch_timer_cpu_pm_init(void)
561{
562 return 0;
563}
564#endif
565
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000566static int __init arch_timer_register(void)
567{
568 int err;
569 int ppi;
570
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000571 arch_timer_evt = alloc_percpu(struct clock_event_device);
572 if (!arch_timer_evt) {
573 err = -ENOMEM;
574 goto out;
575 }
576
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000577 if (arch_timer_use_virtual) {
578 ppi = arch_timer_ppi[VIRT_PPI];
579 err = request_percpu_irq(ppi, arch_timer_handler_virt,
580 "arch_timer", arch_timer_evt);
581 } else {
582 ppi = arch_timer_ppi[PHYS_SECURE_PPI];
583 err = request_percpu_irq(ppi, arch_timer_handler_phys,
584 "arch_timer", arch_timer_evt);
585 if (!err && arch_timer_ppi[PHYS_NONSECURE_PPI]) {
586 ppi = arch_timer_ppi[PHYS_NONSECURE_PPI];
587 err = request_percpu_irq(ppi, arch_timer_handler_phys,
588 "arch_timer", arch_timer_evt);
589 if (err)
590 free_percpu_irq(arch_timer_ppi[PHYS_SECURE_PPI],
591 arch_timer_evt);
592 }
593 }
594
595 if (err) {
596 pr_err("arch_timer: can't register interrupt %d (%d)\n",
597 ppi, err);
598 goto out_free;
599 }
600
601 err = register_cpu_notifier(&arch_timer_cpu_nb);
602 if (err)
603 goto out_free_irq;
604
Sudeep KarkadaNagesha346e7482013-08-23 15:53:15 +0100605 err = arch_timer_cpu_pm_init();
606 if (err)
607 goto out_unreg_notify;
608
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000609 /* Immediately configure the timer on the boot CPU */
610 arch_timer_setup(this_cpu_ptr(arch_timer_evt));
611
612 return 0;
613
Sudeep KarkadaNagesha346e7482013-08-23 15:53:15 +0100614out_unreg_notify:
615 unregister_cpu_notifier(&arch_timer_cpu_nb);
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000616out_free_irq:
617 if (arch_timer_use_virtual)
618 free_percpu_irq(arch_timer_ppi[VIRT_PPI], arch_timer_evt);
619 else {
620 free_percpu_irq(arch_timer_ppi[PHYS_SECURE_PPI],
621 arch_timer_evt);
622 if (arch_timer_ppi[PHYS_NONSECURE_PPI])
623 free_percpu_irq(arch_timer_ppi[PHYS_NONSECURE_PPI],
624 arch_timer_evt);
625 }
626
627out_free:
628 free_percpu(arch_timer_evt);
629out:
630 return err;
631}
632
Stephen Boyd22006992013-07-18 16:59:32 -0700633static int __init arch_timer_mem_register(void __iomem *base, unsigned int irq)
634{
635 int ret;
636 irq_handler_t func;
637 struct arch_timer *t;
638
639 t = kzalloc(sizeof(*t), GFP_KERNEL);
640 if (!t)
641 return -ENOMEM;
642
643 t->base = base;
644 t->evt.irq = irq;
645 __arch_timer_setup(ARCH_MEM_TIMER, &t->evt);
646
647 if (arch_timer_mem_use_virtual)
648 func = arch_timer_handler_virt_mem;
649 else
650 func = arch_timer_handler_phys_mem;
651
652 ret = request_irq(irq, func, IRQF_TIMER, "arch_mem_timer", &t->evt);
653 if (ret) {
654 pr_err("arch_timer: Failed to request mem timer irq\n");
655 kfree(t);
656 }
657
658 return ret;
659}
660
661static const struct of_device_id arch_timer_of_match[] __initconst = {
662 { .compatible = "arm,armv7-timer", },
663 { .compatible = "arm,armv8-timer", },
664 {},
665};
666
667static const struct of_device_id arch_timer_mem_of_match[] __initconst = {
668 { .compatible = "arm,armv7-timer-mem", },
669 {},
670};
671
Sudeep Hollac387f072014-09-29 01:50:05 +0200672static bool __init
Laurent Pinchart566e6df2015-03-31 12:12:22 +0200673arch_timer_needs_probing(int type, const struct of_device_id *matches)
Sudeep Hollac387f072014-09-29 01:50:05 +0200674{
675 struct device_node *dn;
Laurent Pinchart566e6df2015-03-31 12:12:22 +0200676 bool needs_probing = false;
Sudeep Hollac387f072014-09-29 01:50:05 +0200677
678 dn = of_find_matching_node(NULL, matches);
Marc Zyngier59aa8962014-10-15 16:06:20 +0100679 if (dn && of_device_is_available(dn) && !(arch_timers_present & type))
Laurent Pinchart566e6df2015-03-31 12:12:22 +0200680 needs_probing = true;
Sudeep Hollac387f072014-09-29 01:50:05 +0200681 of_node_put(dn);
682
Laurent Pinchart566e6df2015-03-31 12:12:22 +0200683 return needs_probing;
Sudeep Hollac387f072014-09-29 01:50:05 +0200684}
685
Stephen Boyd22006992013-07-18 16:59:32 -0700686static void __init arch_timer_common_init(void)
687{
688 unsigned mask = ARCH_CP15_TIMER | ARCH_MEM_TIMER;
689
690 /* Wait until both nodes are probed if we have two timers */
691 if ((arch_timers_present & mask) != mask) {
Laurent Pinchart566e6df2015-03-31 12:12:22 +0200692 if (arch_timer_needs_probing(ARCH_MEM_TIMER, arch_timer_mem_of_match))
Stephen Boyd22006992013-07-18 16:59:32 -0700693 return;
Laurent Pinchart566e6df2015-03-31 12:12:22 +0200694 if (arch_timer_needs_probing(ARCH_CP15_TIMER, arch_timer_of_match))
Stephen Boyd22006992013-07-18 16:59:32 -0700695 return;
696 }
697
698 arch_timer_banner(arch_timers_present);
699 arch_counter_register(arch_timers_present);
700 arch_timer_arch_init();
701}
702
Hanjun Guob09ca1e2015-03-24 14:02:50 +0000703static void __init arch_timer_init(void)
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000704{
Doug Anderson65b57322014-10-08 00:33:47 -0700705 /*
Marc Zyngier82668912013-01-10 11:13:07 +0000706 * If HYP mode is available, we know that the physical timer
707 * has been configured to be accessible from PL1. Use it, so
708 * that a guest can use the virtual timer instead.
709 *
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000710 * If no interrupt provided for virtual timer, we'll have to
711 * stick to the physical timer. It'd better be accessible...
712 */
Marc Zyngier82668912013-01-10 11:13:07 +0000713 if (is_hyp_mode_available() || !arch_timer_ppi[VIRT_PPI]) {
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000714 arch_timer_use_virtual = false;
715
716 if (!arch_timer_ppi[PHYS_SECURE_PPI] ||
717 !arch_timer_ppi[PHYS_NONSECURE_PPI]) {
718 pr_warn("arch_timer: No interrupt available, giving up\n");
Rob Herring0583fe42013-04-10 18:27:51 -0500719 return;
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000720 }
721 }
722
Rob Herring0583fe42013-04-10 18:27:51 -0500723 arch_timer_register();
Stephen Boyd22006992013-07-18 16:59:32 -0700724 arch_timer_common_init();
Mark Rutland8a4da6e2012-11-12 14:33:44 +0000725}
Hanjun Guob09ca1e2015-03-24 14:02:50 +0000726
727static void __init arch_timer_of_init(struct device_node *np)
728{
729 int i;
730
731 if (arch_timers_present & ARCH_CP15_TIMER) {
732 pr_warn("arch_timer: multiple nodes in dt, skipping\n");
733 return;
734 }
735
736 arch_timers_present |= ARCH_CP15_TIMER;
737 for (i = PHYS_SECURE_PPI; i < MAX_TIMER_PPI; i++)
738 arch_timer_ppi[i] = irq_of_parse_and_map(np, i);
739
740 arch_timer_detect_rate(NULL, np);
741
742 arch_timer_c3stop = !of_property_read_bool(np, "always-on");
743
744 /*
745 * If we cannot rely on firmware initializing the timer registers then
746 * we should use the physical timers instead.
747 */
748 if (IS_ENABLED(CONFIG_ARM) &&
749 of_property_read_bool(np, "arm,cpu-registers-not-fw-configured"))
750 arch_timer_use_virtual = false;
751
752 arch_timer_init();
753}
754CLOCKSOURCE_OF_DECLARE(armv7_arch_timer, "arm,armv7-timer", arch_timer_of_init);
755CLOCKSOURCE_OF_DECLARE(armv8_arch_timer, "arm,armv8-timer", arch_timer_of_init);
Stephen Boyd22006992013-07-18 16:59:32 -0700756
757static void __init arch_timer_mem_init(struct device_node *np)
758{
759 struct device_node *frame, *best_frame = NULL;
760 void __iomem *cntctlbase, *base;
761 unsigned int irq;
762 u32 cnttidr;
763
764 arch_timers_present |= ARCH_MEM_TIMER;
765 cntctlbase = of_iomap(np, 0);
766 if (!cntctlbase) {
767 pr_err("arch_timer: Can't find CNTCTLBase\n");
768 return;
769 }
770
771 cnttidr = readl_relaxed(cntctlbase + CNTTIDR);
Stephen Boyd22006992013-07-18 16:59:32 -0700772
773 /*
774 * Try to find a virtual capable frame. Otherwise fall back to a
775 * physical capable frame.
776 */
777 for_each_available_child_of_node(np, frame) {
778 int n;
Robin Murphye392d602016-02-01 12:00:48 +0000779 u32 cntacr;
Stephen Boyd22006992013-07-18 16:59:32 -0700780
781 if (of_property_read_u32(frame, "frame-number", &n)) {
782 pr_err("arch_timer: Missing frame-number\n");
Stephen Boyd22006992013-07-18 16:59:32 -0700783 of_node_put(frame);
Robin Murphye392d602016-02-01 12:00:48 +0000784 goto out;
Stephen Boyd22006992013-07-18 16:59:32 -0700785 }
786
Robin Murphye392d602016-02-01 12:00:48 +0000787 /* Try enabling everything, and see what sticks */
788 cntacr = CNTACR_RFRQ | CNTACR_RWPT | CNTACR_RPCT |
789 CNTACR_RWVT | CNTACR_RVOFF | CNTACR_RVCT;
790 writel_relaxed(cntacr, cntctlbase + CNTACR(n));
791 cntacr = readl_relaxed(cntctlbase + CNTACR(n));
792
793 if ((cnttidr & CNTTIDR_VIRT(n)) &&
794 !(~cntacr & (CNTACR_RWVT | CNTACR_RVCT))) {
Stephen Boyd22006992013-07-18 16:59:32 -0700795 of_node_put(best_frame);
796 best_frame = frame;
797 arch_timer_mem_use_virtual = true;
798 break;
799 }
Robin Murphye392d602016-02-01 12:00:48 +0000800
801 if (~cntacr & (CNTACR_RWPT | CNTACR_RPCT))
802 continue;
803
Stephen Boyd22006992013-07-18 16:59:32 -0700804 of_node_put(best_frame);
805 best_frame = of_node_get(frame);
806 }
807
808 base = arch_counter_base = of_iomap(best_frame, 0);
809 if (!base) {
810 pr_err("arch_timer: Can't map frame's registers\n");
Robin Murphye392d602016-02-01 12:00:48 +0000811 goto out;
Stephen Boyd22006992013-07-18 16:59:32 -0700812 }
813
814 if (arch_timer_mem_use_virtual)
815 irq = irq_of_parse_and_map(best_frame, 1);
816 else
817 irq = irq_of_parse_and_map(best_frame, 0);
Robin Murphye392d602016-02-01 12:00:48 +0000818
Stephen Boyd22006992013-07-18 16:59:32 -0700819 if (!irq) {
820 pr_err("arch_timer: Frame missing %s irq",
Thomas Gleixnercfb6d652013-08-21 14:59:23 +0200821 arch_timer_mem_use_virtual ? "virt" : "phys");
Robin Murphye392d602016-02-01 12:00:48 +0000822 goto out;
Stephen Boyd22006992013-07-18 16:59:32 -0700823 }
824
825 arch_timer_detect_rate(base, np);
826 arch_timer_mem_register(base, irq);
827 arch_timer_common_init();
Robin Murphye392d602016-02-01 12:00:48 +0000828out:
829 iounmap(cntctlbase);
830 of_node_put(best_frame);
Stephen Boyd22006992013-07-18 16:59:32 -0700831}
832CLOCKSOURCE_OF_DECLARE(armv7_arch_timer_mem, "arm,armv7-timer-mem",
833 arch_timer_mem_init);
Hanjun Guob09ca1e2015-03-24 14:02:50 +0000834
835#ifdef CONFIG_ACPI
836static int __init map_generic_timer_interrupt(u32 interrupt, u32 flags)
837{
838 int trigger, polarity;
839
840 if (!interrupt)
841 return 0;
842
843 trigger = (flags & ACPI_GTDT_INTERRUPT_MODE) ? ACPI_EDGE_SENSITIVE
844 : ACPI_LEVEL_SENSITIVE;
845
846 polarity = (flags & ACPI_GTDT_INTERRUPT_POLARITY) ? ACPI_ACTIVE_LOW
847 : ACPI_ACTIVE_HIGH;
848
849 return acpi_register_gsi(NULL, interrupt, trigger, polarity);
850}
851
852/* Initialize per-processor generic timer */
853static int __init arch_timer_acpi_init(struct acpi_table_header *table)
854{
855 struct acpi_table_gtdt *gtdt;
856
857 if (arch_timers_present & ARCH_CP15_TIMER) {
858 pr_warn("arch_timer: already initialized, skipping\n");
859 return -EINVAL;
860 }
861
862 gtdt = container_of(table, struct acpi_table_gtdt, header);
863
864 arch_timers_present |= ARCH_CP15_TIMER;
865
866 arch_timer_ppi[PHYS_SECURE_PPI] =
867 map_generic_timer_interrupt(gtdt->secure_el1_interrupt,
868 gtdt->secure_el1_flags);
869
870 arch_timer_ppi[PHYS_NONSECURE_PPI] =
871 map_generic_timer_interrupt(gtdt->non_secure_el1_interrupt,
872 gtdt->non_secure_el1_flags);
873
874 arch_timer_ppi[VIRT_PPI] =
875 map_generic_timer_interrupt(gtdt->virtual_timer_interrupt,
876 gtdt->virtual_timer_flags);
877
878 arch_timer_ppi[HYP_PPI] =
879 map_generic_timer_interrupt(gtdt->non_secure_el2_interrupt,
880 gtdt->non_secure_el2_flags);
881
882 /* Get the frequency from CNTFRQ */
883 arch_timer_detect_rate(NULL, NULL);
884
885 /* Always-on capability */
886 arch_timer_c3stop = !(gtdt->non_secure_el1_flags & ACPI_GTDT_ALWAYS_ON);
887
888 arch_timer_init();
889 return 0;
890}
Marc Zyngierae281cb2015-09-28 15:49:17 +0100891CLOCKSOURCE_ACPI_DECLARE(arch_timer, ACPI_SIG_GTDT, arch_timer_acpi_init);
Hanjun Guob09ca1e2015-03-24 14:02:50 +0000892#endif