Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 1 | /* |
| 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 | */ |
Marc Zyngier | f005bd7 | 2016-08-01 10:54:15 +0100 | [diff] [blame] | 11 | |
| 12 | #define pr_fmt(fmt) "arm_arch_timer: " fmt |
| 13 | |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 14 | #include <linux/init.h> |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/device.h> |
| 17 | #include <linux/smp.h> |
| 18 | #include <linux/cpu.h> |
Sudeep KarkadaNagesha | 346e748 | 2013-08-23 15:53:15 +0100 | [diff] [blame] | 19 | #include <linux/cpu_pm.h> |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 20 | #include <linux/clockchips.h> |
Richard Cochran | 7c8f1e7 | 2015-01-06 14:26:13 +0100 | [diff] [blame] | 21 | #include <linux/clocksource.h> |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 22 | #include <linux/interrupt.h> |
| 23 | #include <linux/of_irq.h> |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 24 | #include <linux/of_address.h> |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 25 | #include <linux/io.h> |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 26 | #include <linux/slab.h> |
Ingo Molnar | e601757 | 2017-02-01 16:36:40 +0100 | [diff] [blame] | 27 | #include <linux/sched/clock.h> |
Stephen Boyd | 65cd4f6 | 2013-07-18 16:21:18 -0700 | [diff] [blame] | 28 | #include <linux/sched_clock.h> |
Hanjun Guo | b09ca1e | 2015-03-24 14:02:50 +0000 | [diff] [blame] | 29 | #include <linux/acpi.h> |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 30 | |
| 31 | #include <asm/arch_timer.h> |
Marc Zyngier | 8266891 | 2013-01-10 11:13:07 +0000 | [diff] [blame] | 32 | #include <asm/virt.h> |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 33 | |
| 34 | #include <clocksource/arm_arch_timer.h> |
| 35 | |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 36 | #define CNTTIDR 0x08 |
| 37 | #define CNTTIDR_VIRT(n) (BIT(1) << ((n) * 4)) |
| 38 | |
Robin Murphy | e392d60 | 2016-02-01 12:00:48 +0000 | [diff] [blame] | 39 | #define CNTACR(n) (0x40 + ((n) * 4)) |
| 40 | #define CNTACR_RPCT BIT(0) |
| 41 | #define CNTACR_RVCT BIT(1) |
| 42 | #define CNTACR_RFRQ BIT(2) |
| 43 | #define CNTACR_RVOFF BIT(3) |
| 44 | #define CNTACR_RWVT BIT(4) |
| 45 | #define CNTACR_RWPT BIT(5) |
| 46 | |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 47 | #define CNTVCT_LO 0x08 |
| 48 | #define CNTVCT_HI 0x0c |
| 49 | #define CNTFRQ 0x10 |
| 50 | #define CNTP_TVAL 0x28 |
| 51 | #define CNTP_CTL 0x2c |
| 52 | #define CNTV_TVAL 0x38 |
| 53 | #define CNTV_CTL 0x3c |
| 54 | |
| 55 | #define ARCH_CP15_TIMER BIT(0) |
| 56 | #define ARCH_MEM_TIMER BIT(1) |
| 57 | static unsigned arch_timers_present __initdata; |
| 58 | |
| 59 | static void __iomem *arch_counter_base; |
| 60 | |
| 61 | struct arch_timer { |
| 62 | void __iomem *base; |
| 63 | struct clock_event_device evt; |
| 64 | }; |
| 65 | |
| 66 | #define to_arch_timer(e) container_of(e, struct arch_timer, evt) |
| 67 | |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 68 | static u32 arch_timer_rate; |
| 69 | |
| 70 | enum ppi_nr { |
| 71 | PHYS_SECURE_PPI, |
| 72 | PHYS_NONSECURE_PPI, |
| 73 | VIRT_PPI, |
| 74 | HYP_PPI, |
| 75 | MAX_TIMER_PPI |
| 76 | }; |
| 77 | |
| 78 | static int arch_timer_ppi[MAX_TIMER_PPI]; |
| 79 | |
| 80 | static struct clock_event_device __percpu *arch_timer_evt; |
| 81 | |
Marc Zyngier | f81f03f | 2014-02-20 15:21:23 +0000 | [diff] [blame] | 82 | static enum ppi_nr arch_timer_uses_ppi = VIRT_PPI; |
Lorenzo Pieralisi | 82a56194 | 2014-04-08 10:04:32 +0100 | [diff] [blame] | 83 | static bool arch_timer_c3stop; |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 84 | static bool arch_timer_mem_use_virtual; |
Brian Norris | d8ec759 | 2016-10-04 11:12:09 -0700 | [diff] [blame] | 85 | static bool arch_counter_suspend_stop; |
Marc Zyngier | a86bd13 | 2017-02-01 12:07:15 +0000 | [diff] [blame] | 86 | static bool vdso_default = true; |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 87 | |
Will Deacon | 46fd5c6 | 2016-06-27 17:30:13 +0100 | [diff] [blame] | 88 | static bool evtstrm_enable = IS_ENABLED(CONFIG_ARM_ARCH_TIMER_EVTSTREAM); |
| 89 | |
| 90 | static int __init early_evtstrm_cfg(char *buf) |
| 91 | { |
| 92 | return strtobool(buf, &evtstrm_enable); |
| 93 | } |
| 94 | early_param("clocksource.arm_arch_timer.evtstrm", early_evtstrm_cfg); |
| 95 | |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 96 | /* |
| 97 | * Architected system timer support. |
| 98 | */ |
| 99 | |
Marc Zyngier | f4e00a1 | 2017-01-20 18:28:32 +0000 | [diff] [blame] | 100 | static __always_inline |
| 101 | void arch_timer_reg_write(int access, enum arch_timer_reg reg, u32 val, |
| 102 | struct clock_event_device *clk) |
| 103 | { |
| 104 | if (access == ARCH_TIMER_MEM_PHYS_ACCESS) { |
| 105 | struct arch_timer *timer = to_arch_timer(clk); |
| 106 | switch (reg) { |
| 107 | case ARCH_TIMER_REG_CTRL: |
| 108 | writel_relaxed(val, timer->base + CNTP_CTL); |
| 109 | break; |
| 110 | case ARCH_TIMER_REG_TVAL: |
| 111 | writel_relaxed(val, timer->base + CNTP_TVAL); |
| 112 | break; |
| 113 | } |
| 114 | } else if (access == ARCH_TIMER_MEM_VIRT_ACCESS) { |
| 115 | struct arch_timer *timer = to_arch_timer(clk); |
| 116 | switch (reg) { |
| 117 | case ARCH_TIMER_REG_CTRL: |
| 118 | writel_relaxed(val, timer->base + CNTV_CTL); |
| 119 | break; |
| 120 | case ARCH_TIMER_REG_TVAL: |
| 121 | writel_relaxed(val, timer->base + CNTV_TVAL); |
| 122 | break; |
| 123 | } |
| 124 | } else { |
| 125 | arch_timer_reg_write_cp15(access, reg, val); |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | static __always_inline |
| 130 | u32 arch_timer_reg_read(int access, enum arch_timer_reg reg, |
| 131 | struct clock_event_device *clk) |
| 132 | { |
| 133 | u32 val; |
| 134 | |
| 135 | if (access == ARCH_TIMER_MEM_PHYS_ACCESS) { |
| 136 | struct arch_timer *timer = to_arch_timer(clk); |
| 137 | switch (reg) { |
| 138 | case ARCH_TIMER_REG_CTRL: |
| 139 | val = readl_relaxed(timer->base + CNTP_CTL); |
| 140 | break; |
| 141 | case ARCH_TIMER_REG_TVAL: |
| 142 | val = readl_relaxed(timer->base + CNTP_TVAL); |
| 143 | break; |
| 144 | } |
| 145 | } else if (access == ARCH_TIMER_MEM_VIRT_ACCESS) { |
| 146 | struct arch_timer *timer = to_arch_timer(clk); |
| 147 | switch (reg) { |
| 148 | case ARCH_TIMER_REG_CTRL: |
| 149 | val = readl_relaxed(timer->base + CNTV_CTL); |
| 150 | break; |
| 151 | case ARCH_TIMER_REG_TVAL: |
| 152 | val = readl_relaxed(timer->base + CNTV_TVAL); |
| 153 | break; |
| 154 | } |
| 155 | } else { |
| 156 | val = arch_timer_reg_read_cp15(access, reg); |
| 157 | } |
| 158 | |
| 159 | return val; |
| 160 | } |
| 161 | |
Marc Zyngier | 992dd16 | 2017-02-01 11:53:46 +0000 | [diff] [blame] | 162 | /* |
| 163 | * Default to cp15 based access because arm64 uses this function for |
| 164 | * sched_clock() before DT is probed and the cp15 method is guaranteed |
| 165 | * to exist on arm64. arm doesn't use this before DT is probed so even |
| 166 | * if we don't have the cp15 accessors we won't have a problem. |
| 167 | */ |
| 168 | u64 (*arch_timer_read_counter)(void) = arch_counter_get_cntvct; |
| 169 | |
| 170 | static u64 arch_counter_read(struct clocksource *cs) |
| 171 | { |
| 172 | return arch_timer_read_counter(); |
| 173 | } |
| 174 | |
| 175 | static u64 arch_counter_read_cc(const struct cyclecounter *cc) |
| 176 | { |
| 177 | return arch_timer_read_counter(); |
| 178 | } |
| 179 | |
| 180 | static struct clocksource clocksource_counter = { |
| 181 | .name = "arch_sys_counter", |
| 182 | .rating = 400, |
| 183 | .read = arch_counter_read, |
| 184 | .mask = CLOCKSOURCE_MASK(56), |
| 185 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
| 186 | }; |
| 187 | |
| 188 | static struct cyclecounter cyclecounter __ro_after_init = { |
| 189 | .read = arch_counter_read_cc, |
| 190 | .mask = CLOCKSOURCE_MASK(56), |
| 191 | }; |
| 192 | |
Marc Zyngier | 5a38bca | 2017-02-21 14:37:30 +0000 | [diff] [blame] | 193 | struct ate_acpi_oem_info { |
| 194 | char oem_id[ACPI_OEM_ID_SIZE + 1]; |
| 195 | char oem_table_id[ACPI_OEM_TABLE_ID_SIZE + 1]; |
| 196 | u32 oem_revision; |
| 197 | }; |
| 198 | |
Scott Wood | f6dc157 | 2016-09-22 03:35:17 -0500 | [diff] [blame] | 199 | #ifdef CONFIG_FSL_ERRATUM_A008585 |
Ding Tianhong | 16d10ef | 2017-02-06 16:47:41 +0000 | [diff] [blame] | 200 | /* |
| 201 | * The number of retries is an arbitrary value well beyond the highest number |
| 202 | * of iterations the loop has been observed to take. |
| 203 | */ |
| 204 | #define __fsl_a008585_read_reg(reg) ({ \ |
| 205 | u64 _old, _new; \ |
| 206 | int _retries = 200; \ |
| 207 | \ |
| 208 | do { \ |
| 209 | _old = read_sysreg(reg); \ |
| 210 | _new = read_sysreg(reg); \ |
| 211 | _retries--; \ |
| 212 | } while (unlikely(_old != _new) && _retries); \ |
| 213 | \ |
| 214 | WARN_ON_ONCE(!_retries); \ |
| 215 | _new; \ |
| 216 | }) |
Scott Wood | f6dc157 | 2016-09-22 03:35:17 -0500 | [diff] [blame] | 217 | |
Ding Tianhong | 16d10ef | 2017-02-06 16:47:41 +0000 | [diff] [blame] | 218 | static u32 notrace fsl_a008585_read_cntp_tval_el0(void) |
Scott Wood | f6dc157 | 2016-09-22 03:35:17 -0500 | [diff] [blame] | 219 | { |
| 220 | return __fsl_a008585_read_reg(cntp_tval_el0); |
| 221 | } |
| 222 | |
Ding Tianhong | 16d10ef | 2017-02-06 16:47:41 +0000 | [diff] [blame] | 223 | static u32 notrace fsl_a008585_read_cntv_tval_el0(void) |
Scott Wood | f6dc157 | 2016-09-22 03:35:17 -0500 | [diff] [blame] | 224 | { |
| 225 | return __fsl_a008585_read_reg(cntv_tval_el0); |
| 226 | } |
| 227 | |
Ding Tianhong | 16d10ef | 2017-02-06 16:47:41 +0000 | [diff] [blame] | 228 | static u64 notrace fsl_a008585_read_cntvct_el0(void) |
Scott Wood | f6dc157 | 2016-09-22 03:35:17 -0500 | [diff] [blame] | 229 | { |
| 230 | return __fsl_a008585_read_reg(cntvct_el0); |
| 231 | } |
Ding Tianhong | 16d10ef | 2017-02-06 16:47:41 +0000 | [diff] [blame] | 232 | #endif |
| 233 | |
Ding Tianhong | bb42ca4 | 2017-02-06 16:47:42 +0000 | [diff] [blame] | 234 | #ifdef CONFIG_HISILICON_ERRATUM_161010101 |
| 235 | /* |
| 236 | * Verify whether the value of the second read is larger than the first by |
| 237 | * less than 32 is the only way to confirm the value is correct, so clear the |
| 238 | * lower 5 bits to check whether the difference is greater than 32 or not. |
| 239 | * Theoretically the erratum should not occur more than twice in succession |
| 240 | * when reading the system counter, but it is possible that some interrupts |
| 241 | * may lead to more than twice read errors, triggering the warning, so setting |
| 242 | * the number of retries far beyond the number of iterations the loop has been |
| 243 | * observed to take. |
| 244 | */ |
| 245 | #define __hisi_161010101_read_reg(reg) ({ \ |
| 246 | u64 _old, _new; \ |
| 247 | int _retries = 50; \ |
| 248 | \ |
| 249 | do { \ |
| 250 | _old = read_sysreg(reg); \ |
| 251 | _new = read_sysreg(reg); \ |
| 252 | _retries--; \ |
| 253 | } while (unlikely((_new - _old) >> 5) && _retries); \ |
| 254 | \ |
| 255 | WARN_ON_ONCE(!_retries); \ |
| 256 | _new; \ |
| 257 | }) |
| 258 | |
| 259 | static u32 notrace hisi_161010101_read_cntp_tval_el0(void) |
| 260 | { |
| 261 | return __hisi_161010101_read_reg(cntp_tval_el0); |
| 262 | } |
| 263 | |
| 264 | static u32 notrace hisi_161010101_read_cntv_tval_el0(void) |
| 265 | { |
| 266 | return __hisi_161010101_read_reg(cntv_tval_el0); |
| 267 | } |
| 268 | |
| 269 | static u64 notrace hisi_161010101_read_cntvct_el0(void) |
| 270 | { |
| 271 | return __hisi_161010101_read_reg(cntvct_el0); |
| 272 | } |
Marc Zyngier | d003d02 | 2017-02-21 15:04:27 +0000 | [diff] [blame^] | 273 | |
| 274 | static struct ate_acpi_oem_info hisi_161010101_oem_info[] = { |
| 275 | /* |
| 276 | * Note that trailing spaces are required to properly match |
| 277 | * the OEM table information. |
| 278 | */ |
| 279 | { |
| 280 | .oem_id = "HISI ", |
| 281 | .oem_table_id = "HIP05 ", |
| 282 | .oem_revision = 0, |
| 283 | }, |
| 284 | { |
| 285 | .oem_id = "HISI ", |
| 286 | .oem_table_id = "HIP06 ", |
| 287 | .oem_revision = 0, |
| 288 | }, |
| 289 | { |
| 290 | .oem_id = "HISI ", |
| 291 | .oem_table_id = "HIP07 ", |
| 292 | .oem_revision = 0, |
| 293 | }, |
| 294 | { /* Sentinel indicating the end of the OEM array */ }, |
| 295 | }; |
Ding Tianhong | bb42ca4 | 2017-02-06 16:47:42 +0000 | [diff] [blame] | 296 | #endif |
| 297 | |
Marc Zyngier | fa8d815 | 2017-01-27 12:52:31 +0000 | [diff] [blame] | 298 | #ifdef CONFIG_ARM64_ERRATUM_858921 |
| 299 | static u64 notrace arm64_858921_read_cntvct_el0(void) |
| 300 | { |
| 301 | u64 old, new; |
| 302 | |
| 303 | old = read_sysreg(cntvct_el0); |
| 304 | new = read_sysreg(cntvct_el0); |
| 305 | return (((old ^ new) >> 32) & 1) ? old : new; |
| 306 | } |
| 307 | #endif |
| 308 | |
Ding Tianhong | 16d10ef | 2017-02-06 16:47:41 +0000 | [diff] [blame] | 309 | #ifdef CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND |
Marc Zyngier | 6acc71c | 2017-02-20 18:34:48 +0000 | [diff] [blame] | 310 | DEFINE_PER_CPU(const struct arch_timer_erratum_workaround *, |
| 311 | timer_unstable_counter_workaround); |
Ding Tianhong | 16d10ef | 2017-02-06 16:47:41 +0000 | [diff] [blame] | 312 | EXPORT_SYMBOL_GPL(timer_unstable_counter_workaround); |
| 313 | |
| 314 | DEFINE_STATIC_KEY_FALSE(arch_timer_read_ool_enabled); |
| 315 | EXPORT_SYMBOL_GPL(arch_timer_read_ool_enabled); |
| 316 | |
Marc Zyngier | 8328089 | 2017-01-27 10:27:09 +0000 | [diff] [blame] | 317 | static void erratum_set_next_event_tval_generic(const int access, unsigned long evt, |
| 318 | struct clock_event_device *clk) |
| 319 | { |
| 320 | unsigned long ctrl; |
| 321 | u64 cval = evt + arch_counter_get_cntvct(); |
| 322 | |
| 323 | ctrl = arch_timer_reg_read(access, ARCH_TIMER_REG_CTRL, clk); |
| 324 | ctrl |= ARCH_TIMER_CTRL_ENABLE; |
| 325 | ctrl &= ~ARCH_TIMER_CTRL_IT_MASK; |
| 326 | |
| 327 | if (access == ARCH_TIMER_PHYS_ACCESS) |
| 328 | write_sysreg(cval, cntp_cval_el0); |
| 329 | else |
| 330 | write_sysreg(cval, cntv_cval_el0); |
| 331 | |
| 332 | arch_timer_reg_write(access, ARCH_TIMER_REG_CTRL, ctrl, clk); |
| 333 | } |
| 334 | |
| 335 | static int erratum_set_next_event_tval_virt(unsigned long evt, |
| 336 | struct clock_event_device *clk) |
| 337 | { |
| 338 | erratum_set_next_event_tval_generic(ARCH_TIMER_VIRT_ACCESS, evt, clk); |
| 339 | return 0; |
| 340 | } |
| 341 | |
| 342 | static int erratum_set_next_event_tval_phys(unsigned long evt, |
| 343 | struct clock_event_device *clk) |
| 344 | { |
| 345 | erratum_set_next_event_tval_generic(ARCH_TIMER_PHYS_ACCESS, evt, clk); |
| 346 | return 0; |
| 347 | } |
| 348 | |
Ding Tianhong | 16d10ef | 2017-02-06 16:47:41 +0000 | [diff] [blame] | 349 | static const struct arch_timer_erratum_workaround ool_workarounds[] = { |
| 350 | #ifdef CONFIG_FSL_ERRATUM_A008585 |
| 351 | { |
Marc Zyngier | 651bb2e | 2017-01-19 17:20:59 +0000 | [diff] [blame] | 352 | .match_type = ate_match_dt, |
Ding Tianhong | 16d10ef | 2017-02-06 16:47:41 +0000 | [diff] [blame] | 353 | .id = "fsl,erratum-a008585", |
Marc Zyngier | 651bb2e | 2017-01-19 17:20:59 +0000 | [diff] [blame] | 354 | .desc = "Freescale erratum a005858", |
Ding Tianhong | 16d10ef | 2017-02-06 16:47:41 +0000 | [diff] [blame] | 355 | .read_cntp_tval_el0 = fsl_a008585_read_cntp_tval_el0, |
| 356 | .read_cntv_tval_el0 = fsl_a008585_read_cntv_tval_el0, |
| 357 | .read_cntvct_el0 = fsl_a008585_read_cntvct_el0, |
Marc Zyngier | 01d3e3f | 2017-01-27 10:27:09 +0000 | [diff] [blame] | 358 | .set_next_event_phys = erratum_set_next_event_tval_phys, |
| 359 | .set_next_event_virt = erratum_set_next_event_tval_virt, |
Ding Tianhong | 16d10ef | 2017-02-06 16:47:41 +0000 | [diff] [blame] | 360 | }, |
| 361 | #endif |
Ding Tianhong | bb42ca4 | 2017-02-06 16:47:42 +0000 | [diff] [blame] | 362 | #ifdef CONFIG_HISILICON_ERRATUM_161010101 |
| 363 | { |
Marc Zyngier | 651bb2e | 2017-01-19 17:20:59 +0000 | [diff] [blame] | 364 | .match_type = ate_match_dt, |
Ding Tianhong | bb42ca4 | 2017-02-06 16:47:42 +0000 | [diff] [blame] | 365 | .id = "hisilicon,erratum-161010101", |
Marc Zyngier | 651bb2e | 2017-01-19 17:20:59 +0000 | [diff] [blame] | 366 | .desc = "HiSilicon erratum 161010101", |
Ding Tianhong | bb42ca4 | 2017-02-06 16:47:42 +0000 | [diff] [blame] | 367 | .read_cntp_tval_el0 = hisi_161010101_read_cntp_tval_el0, |
| 368 | .read_cntv_tval_el0 = hisi_161010101_read_cntv_tval_el0, |
| 369 | .read_cntvct_el0 = hisi_161010101_read_cntvct_el0, |
Marc Zyngier | 01d3e3f | 2017-01-27 10:27:09 +0000 | [diff] [blame] | 370 | .set_next_event_phys = erratum_set_next_event_tval_phys, |
| 371 | .set_next_event_virt = erratum_set_next_event_tval_virt, |
Ding Tianhong | bb42ca4 | 2017-02-06 16:47:42 +0000 | [diff] [blame] | 372 | }, |
Marc Zyngier | d003d02 | 2017-02-21 15:04:27 +0000 | [diff] [blame^] | 373 | { |
| 374 | .match_type = ate_match_acpi_oem_info, |
| 375 | .id = hisi_161010101_oem_info, |
| 376 | .desc = "HiSilicon erratum 161010101", |
| 377 | .read_cntp_tval_el0 = hisi_161010101_read_cntp_tval_el0, |
| 378 | .read_cntv_tval_el0 = hisi_161010101_read_cntv_tval_el0, |
| 379 | .read_cntvct_el0 = hisi_161010101_read_cntvct_el0, |
| 380 | .set_next_event_phys = erratum_set_next_event_tval_phys, |
| 381 | .set_next_event_virt = erratum_set_next_event_tval_virt, |
| 382 | }, |
Ding Tianhong | bb42ca4 | 2017-02-06 16:47:42 +0000 | [diff] [blame] | 383 | #endif |
Marc Zyngier | fa8d815 | 2017-01-27 12:52:31 +0000 | [diff] [blame] | 384 | #ifdef CONFIG_ARM64_ERRATUM_858921 |
| 385 | { |
| 386 | .match_type = ate_match_local_cap_id, |
| 387 | .id = (void *)ARM64_WORKAROUND_858921, |
| 388 | .desc = "ARM erratum 858921", |
| 389 | .read_cntvct_el0 = arm64_858921_read_cntvct_el0, |
| 390 | }, |
| 391 | #endif |
Ding Tianhong | 16d10ef | 2017-02-06 16:47:41 +0000 | [diff] [blame] | 392 | }; |
Marc Zyngier | 651bb2e | 2017-01-19 17:20:59 +0000 | [diff] [blame] | 393 | |
| 394 | typedef bool (*ate_match_fn_t)(const struct arch_timer_erratum_workaround *, |
| 395 | const void *); |
| 396 | |
| 397 | static |
| 398 | bool arch_timer_check_dt_erratum(const struct arch_timer_erratum_workaround *wa, |
| 399 | const void *arg) |
| 400 | { |
| 401 | const struct device_node *np = arg; |
| 402 | |
| 403 | return of_property_read_bool(np, wa->id); |
| 404 | } |
| 405 | |
Marc Zyngier | 0064030 | 2017-03-20 16:47:59 +0000 | [diff] [blame] | 406 | static |
| 407 | bool arch_timer_check_local_cap_erratum(const struct arch_timer_erratum_workaround *wa, |
| 408 | const void *arg) |
| 409 | { |
| 410 | return this_cpu_has_cap((uintptr_t)wa->id); |
| 411 | } |
| 412 | |
Marc Zyngier | 5a38bca | 2017-02-21 14:37:30 +0000 | [diff] [blame] | 413 | |
| 414 | static |
| 415 | bool arch_timer_check_acpi_oem_erratum(const struct arch_timer_erratum_workaround *wa, |
| 416 | const void *arg) |
| 417 | { |
| 418 | static const struct ate_acpi_oem_info empty_oem_info = {}; |
| 419 | const struct ate_acpi_oem_info *info = wa->id; |
| 420 | const struct acpi_table_header *table = arg; |
| 421 | |
| 422 | /* Iterate over the ACPI OEM info array, looking for a match */ |
| 423 | while (memcmp(info, &empty_oem_info, sizeof(*info))) { |
| 424 | if (!memcmp(info->oem_id, table->oem_id, ACPI_OEM_ID_SIZE) && |
| 425 | !memcmp(info->oem_table_id, table->oem_table_id, ACPI_OEM_TABLE_ID_SIZE) && |
| 426 | info->oem_revision == table->oem_revision) |
| 427 | return true; |
| 428 | |
| 429 | info++; |
| 430 | } |
| 431 | |
| 432 | return false; |
| 433 | } |
| 434 | |
Marc Zyngier | 651bb2e | 2017-01-19 17:20:59 +0000 | [diff] [blame] | 435 | static const struct arch_timer_erratum_workaround * |
| 436 | arch_timer_iterate_errata(enum arch_timer_erratum_match_type type, |
| 437 | ate_match_fn_t match_fn, |
| 438 | void *arg) |
| 439 | { |
| 440 | int i; |
| 441 | |
| 442 | for (i = 0; i < ARRAY_SIZE(ool_workarounds); i++) { |
| 443 | if (ool_workarounds[i].match_type != type) |
| 444 | continue; |
| 445 | |
| 446 | if (match_fn(&ool_workarounds[i], arg)) |
| 447 | return &ool_workarounds[i]; |
| 448 | } |
| 449 | |
| 450 | return NULL; |
| 451 | } |
| 452 | |
| 453 | static |
Marc Zyngier | 6acc71c | 2017-02-20 18:34:48 +0000 | [diff] [blame] | 454 | void arch_timer_enable_workaround(const struct arch_timer_erratum_workaround *wa, |
| 455 | bool local) |
Marc Zyngier | 651bb2e | 2017-01-19 17:20:59 +0000 | [diff] [blame] | 456 | { |
Marc Zyngier | 6acc71c | 2017-02-20 18:34:48 +0000 | [diff] [blame] | 457 | int i; |
| 458 | |
| 459 | if (local) { |
| 460 | __this_cpu_write(timer_unstable_counter_workaround, wa); |
| 461 | } else { |
| 462 | for_each_possible_cpu(i) |
| 463 | per_cpu(timer_unstable_counter_workaround, i) = wa; |
| 464 | } |
| 465 | |
Marc Zyngier | 651bb2e | 2017-01-19 17:20:59 +0000 | [diff] [blame] | 466 | static_branch_enable(&arch_timer_read_ool_enabled); |
Marc Zyngier | a86bd13 | 2017-02-01 12:07:15 +0000 | [diff] [blame] | 467 | |
| 468 | /* |
| 469 | * Don't use the vdso fastpath if errata require using the |
| 470 | * out-of-line counter accessor. We may change our mind pretty |
| 471 | * late in the game (with a per-CPU erratum, for example), so |
| 472 | * change both the default value and the vdso itself. |
| 473 | */ |
| 474 | if (wa->read_cntvct_el0) { |
| 475 | clocksource_counter.archdata.vdso_direct = false; |
| 476 | vdso_default = false; |
| 477 | } |
Marc Zyngier | 651bb2e | 2017-01-19 17:20:59 +0000 | [diff] [blame] | 478 | } |
| 479 | |
| 480 | static void arch_timer_check_ool_workaround(enum arch_timer_erratum_match_type type, |
| 481 | void *arg) |
| 482 | { |
| 483 | const struct arch_timer_erratum_workaround *wa; |
| 484 | ate_match_fn_t match_fn = NULL; |
Marc Zyngier | 0064030 | 2017-03-20 16:47:59 +0000 | [diff] [blame] | 485 | bool local = false; |
Marc Zyngier | 651bb2e | 2017-01-19 17:20:59 +0000 | [diff] [blame] | 486 | |
| 487 | switch (type) { |
| 488 | case ate_match_dt: |
| 489 | match_fn = arch_timer_check_dt_erratum; |
| 490 | break; |
Marc Zyngier | 0064030 | 2017-03-20 16:47:59 +0000 | [diff] [blame] | 491 | case ate_match_local_cap_id: |
| 492 | match_fn = arch_timer_check_local_cap_erratum; |
| 493 | local = true; |
| 494 | break; |
Marc Zyngier | 5a38bca | 2017-02-21 14:37:30 +0000 | [diff] [blame] | 495 | case ate_match_acpi_oem_info: |
| 496 | match_fn = arch_timer_check_acpi_oem_erratum; |
| 497 | break; |
Marc Zyngier | 651bb2e | 2017-01-19 17:20:59 +0000 | [diff] [blame] | 498 | default: |
| 499 | WARN_ON(1); |
| 500 | return; |
| 501 | } |
| 502 | |
| 503 | wa = arch_timer_iterate_errata(type, match_fn, arg); |
| 504 | if (!wa) |
| 505 | return; |
| 506 | |
Marc Zyngier | 0064030 | 2017-03-20 16:47:59 +0000 | [diff] [blame] | 507 | if (needs_unstable_timer_counter_workaround()) { |
Marc Zyngier | 6acc71c | 2017-02-20 18:34:48 +0000 | [diff] [blame] | 508 | const struct arch_timer_erratum_workaround *__wa; |
| 509 | __wa = __this_cpu_read(timer_unstable_counter_workaround); |
| 510 | if (__wa && wa != __wa) |
Marc Zyngier | 0064030 | 2017-03-20 16:47:59 +0000 | [diff] [blame] | 511 | pr_warn("Can't enable workaround for %s (clashes with %s\n)", |
Marc Zyngier | 6acc71c | 2017-02-20 18:34:48 +0000 | [diff] [blame] | 512 | wa->desc, __wa->desc); |
| 513 | |
| 514 | if (__wa) |
| 515 | return; |
Marc Zyngier | 0064030 | 2017-03-20 16:47:59 +0000 | [diff] [blame] | 516 | } |
| 517 | |
Marc Zyngier | 6acc71c | 2017-02-20 18:34:48 +0000 | [diff] [blame] | 518 | arch_timer_enable_workaround(wa, local); |
Marc Zyngier | 0064030 | 2017-03-20 16:47:59 +0000 | [diff] [blame] | 519 | pr_info("Enabling %s workaround for %s\n", |
| 520 | local ? "local" : "global", wa->desc); |
Marc Zyngier | 651bb2e | 2017-01-19 17:20:59 +0000 | [diff] [blame] | 521 | } |
| 522 | |
Marc Zyngier | 01d3e3f | 2017-01-27 10:27:09 +0000 | [diff] [blame] | 523 | #define erratum_handler(fn, r, ...) \ |
| 524 | ({ \ |
| 525 | bool __val; \ |
Marc Zyngier | 6acc71c | 2017-02-20 18:34:48 +0000 | [diff] [blame] | 526 | if (needs_unstable_timer_counter_workaround()) { \ |
| 527 | const struct arch_timer_erratum_workaround *__wa; \ |
| 528 | __wa = __this_cpu_read(timer_unstable_counter_workaround); \ |
| 529 | if (__wa && __wa->fn) { \ |
| 530 | r = __wa->fn(__VA_ARGS__); \ |
| 531 | __val = true; \ |
| 532 | } else { \ |
| 533 | __val = false; \ |
| 534 | } \ |
Marc Zyngier | 01d3e3f | 2017-01-27 10:27:09 +0000 | [diff] [blame] | 535 | } else { \ |
| 536 | __val = false; \ |
| 537 | } \ |
| 538 | __val; \ |
| 539 | }) |
| 540 | |
Marc Zyngier | a86bd13 | 2017-02-01 12:07:15 +0000 | [diff] [blame] | 541 | static bool arch_timer_this_cpu_has_cntvct_wa(void) |
| 542 | { |
| 543 | const struct arch_timer_erratum_workaround *wa; |
| 544 | |
| 545 | wa = __this_cpu_read(timer_unstable_counter_workaround); |
| 546 | return wa && wa->read_cntvct_el0; |
| 547 | } |
Marc Zyngier | 651bb2e | 2017-01-19 17:20:59 +0000 | [diff] [blame] | 548 | #else |
| 549 | #define arch_timer_check_ool_workaround(t,a) do { } while(0) |
Marc Zyngier | 8328089 | 2017-01-27 10:27:09 +0000 | [diff] [blame] | 550 | #define erratum_set_next_event_tval_virt(...) ({BUG(); 0;}) |
| 551 | #define erratum_set_next_event_tval_phys(...) ({BUG(); 0;}) |
Marc Zyngier | 01d3e3f | 2017-01-27 10:27:09 +0000 | [diff] [blame] | 552 | #define erratum_handler(fn, r, ...) ({false;}) |
Marc Zyngier | a86bd13 | 2017-02-01 12:07:15 +0000 | [diff] [blame] | 553 | #define arch_timer_this_cpu_has_cntvct_wa() ({false;}) |
Ding Tianhong | 16d10ef | 2017-02-06 16:47:41 +0000 | [diff] [blame] | 554 | #endif /* CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND */ |
Scott Wood | f6dc157 | 2016-09-22 03:35:17 -0500 | [diff] [blame] | 555 | |
Stephen Boyd | e09f3cc | 2013-07-18 16:59:28 -0700 | [diff] [blame] | 556 | static __always_inline irqreturn_t timer_handler(const int access, |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 557 | struct clock_event_device *evt) |
| 558 | { |
| 559 | unsigned long ctrl; |
Thomas Gleixner | cfb6d65 | 2013-08-21 14:59:23 +0200 | [diff] [blame] | 560 | |
Stephen Boyd | 60faddf | 2013-07-18 16:59:31 -0700 | [diff] [blame] | 561 | ctrl = arch_timer_reg_read(access, ARCH_TIMER_REG_CTRL, evt); |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 562 | if (ctrl & ARCH_TIMER_CTRL_IT_STAT) { |
| 563 | ctrl |= ARCH_TIMER_CTRL_IT_MASK; |
Stephen Boyd | 60faddf | 2013-07-18 16:59:31 -0700 | [diff] [blame] | 564 | arch_timer_reg_write(access, ARCH_TIMER_REG_CTRL, ctrl, evt); |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 565 | evt->event_handler(evt); |
| 566 | return IRQ_HANDLED; |
| 567 | } |
| 568 | |
| 569 | return IRQ_NONE; |
| 570 | } |
| 571 | |
| 572 | static irqreturn_t arch_timer_handler_virt(int irq, void *dev_id) |
| 573 | { |
| 574 | struct clock_event_device *evt = dev_id; |
| 575 | |
| 576 | return timer_handler(ARCH_TIMER_VIRT_ACCESS, evt); |
| 577 | } |
| 578 | |
| 579 | static irqreturn_t arch_timer_handler_phys(int irq, void *dev_id) |
| 580 | { |
| 581 | struct clock_event_device *evt = dev_id; |
| 582 | |
| 583 | return timer_handler(ARCH_TIMER_PHYS_ACCESS, evt); |
| 584 | } |
| 585 | |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 586 | static irqreturn_t arch_timer_handler_phys_mem(int irq, void *dev_id) |
| 587 | { |
| 588 | struct clock_event_device *evt = dev_id; |
| 589 | |
| 590 | return timer_handler(ARCH_TIMER_MEM_PHYS_ACCESS, evt); |
| 591 | } |
| 592 | |
| 593 | static irqreturn_t arch_timer_handler_virt_mem(int irq, void *dev_id) |
| 594 | { |
| 595 | struct clock_event_device *evt = dev_id; |
| 596 | |
| 597 | return timer_handler(ARCH_TIMER_MEM_VIRT_ACCESS, evt); |
| 598 | } |
| 599 | |
Viresh Kumar | 46c5bfd | 2015-06-12 13:30:12 +0530 | [diff] [blame] | 600 | static __always_inline int timer_shutdown(const int access, |
| 601 | struct clock_event_device *clk) |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 602 | { |
| 603 | unsigned long ctrl; |
Viresh Kumar | 46c5bfd | 2015-06-12 13:30:12 +0530 | [diff] [blame] | 604 | |
| 605 | ctrl = arch_timer_reg_read(access, ARCH_TIMER_REG_CTRL, clk); |
| 606 | ctrl &= ~ARCH_TIMER_CTRL_ENABLE; |
| 607 | arch_timer_reg_write(access, ARCH_TIMER_REG_CTRL, ctrl, clk); |
| 608 | |
| 609 | return 0; |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 610 | } |
| 611 | |
Viresh Kumar | 46c5bfd | 2015-06-12 13:30:12 +0530 | [diff] [blame] | 612 | static int arch_timer_shutdown_virt(struct clock_event_device *clk) |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 613 | { |
Viresh Kumar | 46c5bfd | 2015-06-12 13:30:12 +0530 | [diff] [blame] | 614 | return timer_shutdown(ARCH_TIMER_VIRT_ACCESS, clk); |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 615 | } |
| 616 | |
Viresh Kumar | 46c5bfd | 2015-06-12 13:30:12 +0530 | [diff] [blame] | 617 | static int arch_timer_shutdown_phys(struct clock_event_device *clk) |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 618 | { |
Viresh Kumar | 46c5bfd | 2015-06-12 13:30:12 +0530 | [diff] [blame] | 619 | return timer_shutdown(ARCH_TIMER_PHYS_ACCESS, clk); |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 620 | } |
| 621 | |
Viresh Kumar | 46c5bfd | 2015-06-12 13:30:12 +0530 | [diff] [blame] | 622 | static int arch_timer_shutdown_virt_mem(struct clock_event_device *clk) |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 623 | { |
Viresh Kumar | 46c5bfd | 2015-06-12 13:30:12 +0530 | [diff] [blame] | 624 | return timer_shutdown(ARCH_TIMER_MEM_VIRT_ACCESS, clk); |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 625 | } |
| 626 | |
Viresh Kumar | 46c5bfd | 2015-06-12 13:30:12 +0530 | [diff] [blame] | 627 | static int arch_timer_shutdown_phys_mem(struct clock_event_device *clk) |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 628 | { |
Viresh Kumar | 46c5bfd | 2015-06-12 13:30:12 +0530 | [diff] [blame] | 629 | return timer_shutdown(ARCH_TIMER_MEM_PHYS_ACCESS, clk); |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 630 | } |
| 631 | |
Stephen Boyd | 60faddf | 2013-07-18 16:59:31 -0700 | [diff] [blame] | 632 | static __always_inline void set_next_event(const int access, unsigned long evt, |
Thomas Gleixner | cfb6d65 | 2013-08-21 14:59:23 +0200 | [diff] [blame] | 633 | struct clock_event_device *clk) |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 634 | { |
| 635 | unsigned long ctrl; |
Stephen Boyd | 60faddf | 2013-07-18 16:59:31 -0700 | [diff] [blame] | 636 | ctrl = arch_timer_reg_read(access, ARCH_TIMER_REG_CTRL, clk); |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 637 | ctrl |= ARCH_TIMER_CTRL_ENABLE; |
| 638 | ctrl &= ~ARCH_TIMER_CTRL_IT_MASK; |
Stephen Boyd | 60faddf | 2013-07-18 16:59:31 -0700 | [diff] [blame] | 639 | arch_timer_reg_write(access, ARCH_TIMER_REG_TVAL, evt, clk); |
| 640 | arch_timer_reg_write(access, ARCH_TIMER_REG_CTRL, ctrl, clk); |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 641 | } |
| 642 | |
| 643 | static int arch_timer_set_next_event_virt(unsigned long evt, |
Stephen Boyd | 60faddf | 2013-07-18 16:59:31 -0700 | [diff] [blame] | 644 | struct clock_event_device *clk) |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 645 | { |
Marc Zyngier | 01d3e3f | 2017-01-27 10:27:09 +0000 | [diff] [blame] | 646 | int ret; |
| 647 | |
| 648 | if (erratum_handler(set_next_event_virt, ret, evt, clk)) |
| 649 | return ret; |
Marc Zyngier | 8328089 | 2017-01-27 10:27:09 +0000 | [diff] [blame] | 650 | |
Stephen Boyd | 60faddf | 2013-07-18 16:59:31 -0700 | [diff] [blame] | 651 | set_next_event(ARCH_TIMER_VIRT_ACCESS, evt, clk); |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 652 | return 0; |
| 653 | } |
| 654 | |
| 655 | static int arch_timer_set_next_event_phys(unsigned long evt, |
Stephen Boyd | 60faddf | 2013-07-18 16:59:31 -0700 | [diff] [blame] | 656 | struct clock_event_device *clk) |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 657 | { |
Marc Zyngier | 01d3e3f | 2017-01-27 10:27:09 +0000 | [diff] [blame] | 658 | int ret; |
| 659 | |
| 660 | if (erratum_handler(set_next_event_phys, ret, evt, clk)) |
| 661 | return ret; |
Marc Zyngier | 8328089 | 2017-01-27 10:27:09 +0000 | [diff] [blame] | 662 | |
Stephen Boyd | 60faddf | 2013-07-18 16:59:31 -0700 | [diff] [blame] | 663 | set_next_event(ARCH_TIMER_PHYS_ACCESS, evt, clk); |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 664 | return 0; |
| 665 | } |
| 666 | |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 667 | static int arch_timer_set_next_event_virt_mem(unsigned long evt, |
| 668 | struct clock_event_device *clk) |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 669 | { |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 670 | set_next_event(ARCH_TIMER_MEM_VIRT_ACCESS, evt, clk); |
| 671 | return 0; |
| 672 | } |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 673 | |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 674 | static int arch_timer_set_next_event_phys_mem(unsigned long evt, |
| 675 | struct clock_event_device *clk) |
| 676 | { |
| 677 | set_next_event(ARCH_TIMER_MEM_PHYS_ACCESS, evt, clk); |
| 678 | return 0; |
| 679 | } |
| 680 | |
Thomas Gleixner | cfb6d65 | 2013-08-21 14:59:23 +0200 | [diff] [blame] | 681 | static void __arch_timer_setup(unsigned type, |
| 682 | struct clock_event_device *clk) |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 683 | { |
| 684 | clk->features = CLOCK_EVT_FEAT_ONESHOT; |
| 685 | |
| 686 | if (type == ARCH_CP15_TIMER) { |
Lorenzo Pieralisi | 82a56194 | 2014-04-08 10:04:32 +0100 | [diff] [blame] | 687 | if (arch_timer_c3stop) |
| 688 | clk->features |= CLOCK_EVT_FEAT_C3STOP; |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 689 | clk->name = "arch_sys_timer"; |
| 690 | clk->rating = 450; |
| 691 | clk->cpumask = cpumask_of(smp_processor_id()); |
Marc Zyngier | f81f03f | 2014-02-20 15:21:23 +0000 | [diff] [blame] | 692 | clk->irq = arch_timer_ppi[arch_timer_uses_ppi]; |
| 693 | switch (arch_timer_uses_ppi) { |
| 694 | case VIRT_PPI: |
Viresh Kumar | 46c5bfd | 2015-06-12 13:30:12 +0530 | [diff] [blame] | 695 | clk->set_state_shutdown = arch_timer_shutdown_virt; |
Viresh Kumar | cf8c500 | 2015-12-23 16:59:12 +0530 | [diff] [blame] | 696 | clk->set_state_oneshot_stopped = arch_timer_shutdown_virt; |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 697 | clk->set_next_event = arch_timer_set_next_event_virt; |
Marc Zyngier | f81f03f | 2014-02-20 15:21:23 +0000 | [diff] [blame] | 698 | break; |
| 699 | case PHYS_SECURE_PPI: |
| 700 | case PHYS_NONSECURE_PPI: |
| 701 | case HYP_PPI: |
Viresh Kumar | 46c5bfd | 2015-06-12 13:30:12 +0530 | [diff] [blame] | 702 | clk->set_state_shutdown = arch_timer_shutdown_phys; |
Viresh Kumar | cf8c500 | 2015-12-23 16:59:12 +0530 | [diff] [blame] | 703 | clk->set_state_oneshot_stopped = arch_timer_shutdown_phys; |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 704 | clk->set_next_event = arch_timer_set_next_event_phys; |
Marc Zyngier | f81f03f | 2014-02-20 15:21:23 +0000 | [diff] [blame] | 705 | break; |
| 706 | default: |
| 707 | BUG(); |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 708 | } |
Scott Wood | f6dc157 | 2016-09-22 03:35:17 -0500 | [diff] [blame] | 709 | |
Marc Zyngier | 0064030 | 2017-03-20 16:47:59 +0000 | [diff] [blame] | 710 | arch_timer_check_ool_workaround(ate_match_local_cap_id, NULL); |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 711 | } else { |
Stephen Boyd | 7b52ad2 | 2014-01-06 14:56:17 -0800 | [diff] [blame] | 712 | clk->features |= CLOCK_EVT_FEAT_DYNIRQ; |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 713 | clk->name = "arch_mem_timer"; |
| 714 | clk->rating = 400; |
| 715 | clk->cpumask = cpu_all_mask; |
| 716 | if (arch_timer_mem_use_virtual) { |
Viresh Kumar | 46c5bfd | 2015-06-12 13:30:12 +0530 | [diff] [blame] | 717 | clk->set_state_shutdown = arch_timer_shutdown_virt_mem; |
Viresh Kumar | cf8c500 | 2015-12-23 16:59:12 +0530 | [diff] [blame] | 718 | clk->set_state_oneshot_stopped = arch_timer_shutdown_virt_mem; |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 719 | clk->set_next_event = |
| 720 | arch_timer_set_next_event_virt_mem; |
| 721 | } else { |
Viresh Kumar | 46c5bfd | 2015-06-12 13:30:12 +0530 | [diff] [blame] | 722 | clk->set_state_shutdown = arch_timer_shutdown_phys_mem; |
Viresh Kumar | cf8c500 | 2015-12-23 16:59:12 +0530 | [diff] [blame] | 723 | clk->set_state_oneshot_stopped = arch_timer_shutdown_phys_mem; |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 724 | clk->set_next_event = |
| 725 | arch_timer_set_next_event_phys_mem; |
| 726 | } |
| 727 | } |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 728 | |
Viresh Kumar | 46c5bfd | 2015-06-12 13:30:12 +0530 | [diff] [blame] | 729 | clk->set_state_shutdown(clk); |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 730 | |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 731 | clockevents_config_and_register(clk, arch_timer_rate, 0xf, 0x7fffffff); |
| 732 | } |
| 733 | |
Nathan Lynch | e1ce5c7 | 2014-09-29 01:50:06 +0200 | [diff] [blame] | 734 | static void arch_timer_evtstrm_enable(int divider) |
| 735 | { |
| 736 | u32 cntkctl = arch_timer_get_cntkctl(); |
| 737 | |
| 738 | cntkctl &= ~ARCH_TIMER_EVT_TRIGGER_MASK; |
| 739 | /* Set the divider and enable virtual event stream */ |
| 740 | cntkctl |= (divider << ARCH_TIMER_EVT_TRIGGER_SHIFT) |
| 741 | | ARCH_TIMER_VIRT_EVT_EN; |
| 742 | arch_timer_set_cntkctl(cntkctl); |
| 743 | elf_hwcap |= HWCAP_EVTSTRM; |
| 744 | #ifdef CONFIG_COMPAT |
| 745 | compat_elf_hwcap |= COMPAT_HWCAP_EVTSTRM; |
| 746 | #endif |
| 747 | } |
| 748 | |
Will Deacon | 037f637 | 2013-08-23 15:32:29 +0100 | [diff] [blame] | 749 | static void arch_timer_configure_evtstream(void) |
| 750 | { |
| 751 | int evt_stream_div, pos; |
| 752 | |
| 753 | /* Find the closest power of two to the divisor */ |
| 754 | evt_stream_div = arch_timer_rate / ARCH_TIMER_EVT_STREAM_FREQ; |
| 755 | pos = fls(evt_stream_div); |
| 756 | if (pos > 1 && !(evt_stream_div & (1 << (pos - 2)))) |
| 757 | pos--; |
| 758 | /* enable event stream */ |
| 759 | arch_timer_evtstrm_enable(min(pos, 15)); |
| 760 | } |
| 761 | |
Nathan Lynch | 8b8dde0 | 2014-09-29 01:50:06 +0200 | [diff] [blame] | 762 | static void arch_counter_set_user_access(void) |
| 763 | { |
| 764 | u32 cntkctl = arch_timer_get_cntkctl(); |
| 765 | |
Marc Zyngier | a86bd13 | 2017-02-01 12:07:15 +0000 | [diff] [blame] | 766 | /* Disable user access to the timers and both counters */ |
Nathan Lynch | 8b8dde0 | 2014-09-29 01:50:06 +0200 | [diff] [blame] | 767 | /* Also disable virtual event stream */ |
| 768 | cntkctl &= ~(ARCH_TIMER_USR_PT_ACCESS_EN |
| 769 | | ARCH_TIMER_USR_VT_ACCESS_EN |
Marc Zyngier | a86bd13 | 2017-02-01 12:07:15 +0000 | [diff] [blame] | 770 | | ARCH_TIMER_USR_VCT_ACCESS_EN |
Nathan Lynch | 8b8dde0 | 2014-09-29 01:50:06 +0200 | [diff] [blame] | 771 | | ARCH_TIMER_VIRT_EVT_EN |
| 772 | | ARCH_TIMER_USR_PCT_ACCESS_EN); |
| 773 | |
Marc Zyngier | a86bd13 | 2017-02-01 12:07:15 +0000 | [diff] [blame] | 774 | /* |
| 775 | * Enable user access to the virtual counter if it doesn't |
| 776 | * need to be workaround. The vdso may have been already |
| 777 | * disabled though. |
| 778 | */ |
| 779 | if (arch_timer_this_cpu_has_cntvct_wa()) |
| 780 | pr_info("CPU%d: Trapping CNTVCT access\n", smp_processor_id()); |
| 781 | else |
| 782 | cntkctl |= ARCH_TIMER_USR_VCT_ACCESS_EN; |
Nathan Lynch | 8b8dde0 | 2014-09-29 01:50:06 +0200 | [diff] [blame] | 783 | |
| 784 | arch_timer_set_cntkctl(cntkctl); |
| 785 | } |
| 786 | |
Marc Zyngier | f81f03f | 2014-02-20 15:21:23 +0000 | [diff] [blame] | 787 | static bool arch_timer_has_nonsecure_ppi(void) |
| 788 | { |
| 789 | return (arch_timer_uses_ppi == PHYS_SECURE_PPI && |
| 790 | arch_timer_ppi[PHYS_NONSECURE_PPI]); |
| 791 | } |
| 792 | |
Marc Zyngier | f005bd7 | 2016-08-01 10:54:15 +0100 | [diff] [blame] | 793 | static u32 check_ppi_trigger(int irq) |
| 794 | { |
| 795 | u32 flags = irq_get_trigger_type(irq); |
| 796 | |
| 797 | if (flags != IRQF_TRIGGER_HIGH && flags != IRQF_TRIGGER_LOW) { |
| 798 | pr_warn("WARNING: Invalid trigger for IRQ%d, assuming level low\n", irq); |
| 799 | pr_warn("WARNING: Please fix your firmware\n"); |
| 800 | flags = IRQF_TRIGGER_LOW; |
| 801 | } |
| 802 | |
| 803 | return flags; |
| 804 | } |
| 805 | |
Richard Cochran | 7e86e8b | 2016-07-13 17:16:39 +0000 | [diff] [blame] | 806 | static int arch_timer_starting_cpu(unsigned int cpu) |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 807 | { |
Richard Cochran | 7e86e8b | 2016-07-13 17:16:39 +0000 | [diff] [blame] | 808 | struct clock_event_device *clk = this_cpu_ptr(arch_timer_evt); |
Marc Zyngier | f005bd7 | 2016-08-01 10:54:15 +0100 | [diff] [blame] | 809 | u32 flags; |
Richard Cochran | 7e86e8b | 2016-07-13 17:16:39 +0000 | [diff] [blame] | 810 | |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 811 | __arch_timer_setup(ARCH_CP15_TIMER, clk); |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 812 | |
Marc Zyngier | f005bd7 | 2016-08-01 10:54:15 +0100 | [diff] [blame] | 813 | flags = check_ppi_trigger(arch_timer_ppi[arch_timer_uses_ppi]); |
| 814 | enable_percpu_irq(arch_timer_ppi[arch_timer_uses_ppi], flags); |
Marc Zyngier | f81f03f | 2014-02-20 15:21:23 +0000 | [diff] [blame] | 815 | |
Marc Zyngier | f005bd7 | 2016-08-01 10:54:15 +0100 | [diff] [blame] | 816 | if (arch_timer_has_nonsecure_ppi()) { |
| 817 | flags = check_ppi_trigger(arch_timer_ppi[PHYS_NONSECURE_PPI]); |
| 818 | enable_percpu_irq(arch_timer_ppi[PHYS_NONSECURE_PPI], flags); |
| 819 | } |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 820 | |
| 821 | arch_counter_set_user_access(); |
Will Deacon | 46fd5c6 | 2016-06-27 17:30:13 +0100 | [diff] [blame] | 822 | if (evtstrm_enable) |
Will Deacon | 037f637 | 2013-08-23 15:32:29 +0100 | [diff] [blame] | 823 | arch_timer_configure_evtstream(); |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 824 | |
| 825 | return 0; |
| 826 | } |
| 827 | |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 828 | static void |
| 829 | arch_timer_detect_rate(void __iomem *cntbase, struct device_node *np) |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 830 | { |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 831 | /* Who has more than one independent system counter? */ |
| 832 | if (arch_timer_rate) |
| 833 | return; |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 834 | |
Hanjun Guo | b09ca1e | 2015-03-24 14:02:50 +0000 | [diff] [blame] | 835 | /* |
| 836 | * Try to determine the frequency from the device tree or CNTFRQ, |
| 837 | * if ACPI is enabled, get the frequency from CNTFRQ ONLY. |
| 838 | */ |
| 839 | if (!acpi_disabled || |
| 840 | of_property_read_u32(np, "clock-frequency", &arch_timer_rate)) { |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 841 | if (cntbase) |
| 842 | arch_timer_rate = readl_relaxed(cntbase + CNTFRQ); |
| 843 | else |
| 844 | arch_timer_rate = arch_timer_get_cntfrq(); |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 845 | } |
| 846 | |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 847 | /* Check the timer frequency. */ |
| 848 | if (arch_timer_rate == 0) |
| 849 | pr_warn("Architected timer frequency not available\n"); |
| 850 | } |
| 851 | |
| 852 | static void arch_timer_banner(unsigned type) |
| 853 | { |
| 854 | pr_info("Architected %s%s%s timer(s) running at %lu.%02luMHz (%s%s%s).\n", |
| 855 | type & ARCH_CP15_TIMER ? "cp15" : "", |
| 856 | type == (ARCH_CP15_TIMER | ARCH_MEM_TIMER) ? " and " : "", |
| 857 | type & ARCH_MEM_TIMER ? "mmio" : "", |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 858 | (unsigned long)arch_timer_rate / 1000000, |
| 859 | (unsigned long)(arch_timer_rate / 10000) % 100, |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 860 | type & ARCH_CP15_TIMER ? |
Marc Zyngier | f81f03f | 2014-02-20 15:21:23 +0000 | [diff] [blame] | 861 | (arch_timer_uses_ppi == VIRT_PPI) ? "virt" : "phys" : |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 862 | "", |
| 863 | type == (ARCH_CP15_TIMER | ARCH_MEM_TIMER) ? "/" : "", |
| 864 | type & ARCH_MEM_TIMER ? |
| 865 | arch_timer_mem_use_virtual ? "virt" : "phys" : |
| 866 | ""); |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 867 | } |
| 868 | |
| 869 | u32 arch_timer_get_rate(void) |
| 870 | { |
| 871 | return arch_timer_rate; |
| 872 | } |
| 873 | |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 874 | static u64 arch_counter_get_cntvct_mem(void) |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 875 | { |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 876 | u32 vct_lo, vct_hi, tmp_hi; |
| 877 | |
| 878 | do { |
| 879 | vct_hi = readl_relaxed(arch_counter_base + CNTVCT_HI); |
| 880 | vct_lo = readl_relaxed(arch_counter_base + CNTVCT_LO); |
| 881 | tmp_hi = readl_relaxed(arch_counter_base + CNTVCT_HI); |
| 882 | } while (vct_hi != tmp_hi); |
| 883 | |
| 884 | return ((u64) vct_hi << 32) | vct_lo; |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 885 | } |
| 886 | |
Julien Grall | b4d6ce9 | 2016-04-11 16:32:51 +0100 | [diff] [blame] | 887 | static struct arch_timer_kvm_info arch_timer_kvm_info; |
| 888 | |
| 889 | struct arch_timer_kvm_info *arch_timer_get_kvm_info(void) |
| 890 | { |
| 891 | return &arch_timer_kvm_info; |
| 892 | } |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 893 | |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 894 | static void __init arch_counter_register(unsigned type) |
| 895 | { |
| 896 | u64 start_count; |
| 897 | |
| 898 | /* Register the CP15 based counter if we have one */ |
Nathan Lynch | 423bd69 | 2014-09-29 01:50:06 +0200 | [diff] [blame] | 899 | if (type & ARCH_CP15_TIMER) { |
Marc Zyngier | f81f03f | 2014-02-20 15:21:23 +0000 | [diff] [blame] | 900 | if (IS_ENABLED(CONFIG_ARM64) || arch_timer_uses_ppi == VIRT_PPI) |
Sonny Rao | 0b46b8a | 2014-11-23 23:02:44 -0800 | [diff] [blame] | 901 | arch_timer_read_counter = arch_counter_get_cntvct; |
| 902 | else |
| 903 | arch_timer_read_counter = arch_counter_get_cntpct; |
Scott Wood | f6dc157 | 2016-09-22 03:35:17 -0500 | [diff] [blame] | 904 | |
Marc Zyngier | a86bd13 | 2017-02-01 12:07:15 +0000 | [diff] [blame] | 905 | clocksource_counter.archdata.vdso_direct = vdso_default; |
Nathan Lynch | 423bd69 | 2014-09-29 01:50:06 +0200 | [diff] [blame] | 906 | } else { |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 907 | arch_timer_read_counter = arch_counter_get_cntvct_mem; |
Nathan Lynch | 423bd69 | 2014-09-29 01:50:06 +0200 | [diff] [blame] | 908 | } |
| 909 | |
Brian Norris | d8ec759 | 2016-10-04 11:12:09 -0700 | [diff] [blame] | 910 | if (!arch_counter_suspend_stop) |
| 911 | clocksource_counter.flags |= CLOCK_SOURCE_SUSPEND_NONSTOP; |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 912 | start_count = arch_timer_read_counter(); |
| 913 | clocksource_register_hz(&clocksource_counter, arch_timer_rate); |
| 914 | cyclecounter.mult = clocksource_counter.mult; |
| 915 | cyclecounter.shift = clocksource_counter.shift; |
Julien Grall | b4d6ce9 | 2016-04-11 16:32:51 +0100 | [diff] [blame] | 916 | timecounter_init(&arch_timer_kvm_info.timecounter, |
| 917 | &cyclecounter, start_count); |
Thierry Reding | 4a7d3e8 | 2013-10-15 15:31:51 +0200 | [diff] [blame] | 918 | |
| 919 | /* 56 bits minimum, so we assume worst case rollover */ |
| 920 | sched_clock_register(arch_timer_read_counter, 56, arch_timer_rate); |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 921 | } |
| 922 | |
Paul Gortmaker | 8c37bb3 | 2013-06-19 11:32:08 -0400 | [diff] [blame] | 923 | static void arch_timer_stop(struct clock_event_device *clk) |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 924 | { |
| 925 | pr_debug("arch_timer_teardown disable IRQ%d cpu #%d\n", |
| 926 | clk->irq, smp_processor_id()); |
| 927 | |
Marc Zyngier | f81f03f | 2014-02-20 15:21:23 +0000 | [diff] [blame] | 928 | disable_percpu_irq(arch_timer_ppi[arch_timer_uses_ppi]); |
| 929 | if (arch_timer_has_nonsecure_ppi()) |
| 930 | disable_percpu_irq(arch_timer_ppi[PHYS_NONSECURE_PPI]); |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 931 | |
Viresh Kumar | 46c5bfd | 2015-06-12 13:30:12 +0530 | [diff] [blame] | 932 | clk->set_state_shutdown(clk); |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 933 | } |
| 934 | |
Richard Cochran | 7e86e8b | 2016-07-13 17:16:39 +0000 | [diff] [blame] | 935 | static int arch_timer_dying_cpu(unsigned int cpu) |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 936 | { |
Richard Cochran | 7e86e8b | 2016-07-13 17:16:39 +0000 | [diff] [blame] | 937 | struct clock_event_device *clk = this_cpu_ptr(arch_timer_evt); |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 938 | |
Richard Cochran | 7e86e8b | 2016-07-13 17:16:39 +0000 | [diff] [blame] | 939 | arch_timer_stop(clk); |
| 940 | return 0; |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 941 | } |
| 942 | |
Sudeep KarkadaNagesha | 346e748 | 2013-08-23 15:53:15 +0100 | [diff] [blame] | 943 | #ifdef CONFIG_CPU_PM |
Marc Zyngier | bee67c5 | 2017-04-04 17:05:16 +0100 | [diff] [blame] | 944 | static DEFINE_PER_CPU(unsigned long, saved_cntkctl); |
Sudeep KarkadaNagesha | 346e748 | 2013-08-23 15:53:15 +0100 | [diff] [blame] | 945 | static int arch_timer_cpu_pm_notify(struct notifier_block *self, |
| 946 | unsigned long action, void *hcpu) |
| 947 | { |
| 948 | if (action == CPU_PM_ENTER) |
Marc Zyngier | bee67c5 | 2017-04-04 17:05:16 +0100 | [diff] [blame] | 949 | __this_cpu_write(saved_cntkctl, arch_timer_get_cntkctl()); |
Sudeep KarkadaNagesha | 346e748 | 2013-08-23 15:53:15 +0100 | [diff] [blame] | 950 | else if (action == CPU_PM_ENTER_FAILED || action == CPU_PM_EXIT) |
Marc Zyngier | bee67c5 | 2017-04-04 17:05:16 +0100 | [diff] [blame] | 951 | arch_timer_set_cntkctl(__this_cpu_read(saved_cntkctl)); |
Sudeep KarkadaNagesha | 346e748 | 2013-08-23 15:53:15 +0100 | [diff] [blame] | 952 | return NOTIFY_OK; |
| 953 | } |
| 954 | |
| 955 | static struct notifier_block arch_timer_cpu_pm_notifier = { |
| 956 | .notifier_call = arch_timer_cpu_pm_notify, |
| 957 | }; |
| 958 | |
| 959 | static int __init arch_timer_cpu_pm_init(void) |
| 960 | { |
| 961 | return cpu_pm_register_notifier(&arch_timer_cpu_pm_notifier); |
| 962 | } |
Richard Cochran | 7e86e8b | 2016-07-13 17:16:39 +0000 | [diff] [blame] | 963 | |
| 964 | static void __init arch_timer_cpu_pm_deinit(void) |
| 965 | { |
| 966 | WARN_ON(cpu_pm_unregister_notifier(&arch_timer_cpu_pm_notifier)); |
| 967 | } |
| 968 | |
Sudeep KarkadaNagesha | 346e748 | 2013-08-23 15:53:15 +0100 | [diff] [blame] | 969 | #else |
| 970 | static int __init arch_timer_cpu_pm_init(void) |
| 971 | { |
| 972 | return 0; |
| 973 | } |
Richard Cochran | 7e86e8b | 2016-07-13 17:16:39 +0000 | [diff] [blame] | 974 | |
| 975 | static void __init arch_timer_cpu_pm_deinit(void) |
| 976 | { |
| 977 | } |
Sudeep KarkadaNagesha | 346e748 | 2013-08-23 15:53:15 +0100 | [diff] [blame] | 978 | #endif |
| 979 | |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 980 | static int __init arch_timer_register(void) |
| 981 | { |
| 982 | int err; |
| 983 | int ppi; |
| 984 | |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 985 | arch_timer_evt = alloc_percpu(struct clock_event_device); |
| 986 | if (!arch_timer_evt) { |
| 987 | err = -ENOMEM; |
| 988 | goto out; |
| 989 | } |
| 990 | |
Marc Zyngier | f81f03f | 2014-02-20 15:21:23 +0000 | [diff] [blame] | 991 | ppi = arch_timer_ppi[arch_timer_uses_ppi]; |
| 992 | switch (arch_timer_uses_ppi) { |
| 993 | case VIRT_PPI: |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 994 | err = request_percpu_irq(ppi, arch_timer_handler_virt, |
| 995 | "arch_timer", arch_timer_evt); |
Marc Zyngier | f81f03f | 2014-02-20 15:21:23 +0000 | [diff] [blame] | 996 | break; |
| 997 | case PHYS_SECURE_PPI: |
| 998 | case PHYS_NONSECURE_PPI: |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 999 | err = request_percpu_irq(ppi, arch_timer_handler_phys, |
| 1000 | "arch_timer", arch_timer_evt); |
| 1001 | if (!err && arch_timer_ppi[PHYS_NONSECURE_PPI]) { |
| 1002 | ppi = arch_timer_ppi[PHYS_NONSECURE_PPI]; |
| 1003 | err = request_percpu_irq(ppi, arch_timer_handler_phys, |
| 1004 | "arch_timer", arch_timer_evt); |
| 1005 | if (err) |
| 1006 | free_percpu_irq(arch_timer_ppi[PHYS_SECURE_PPI], |
| 1007 | arch_timer_evt); |
| 1008 | } |
Marc Zyngier | f81f03f | 2014-02-20 15:21:23 +0000 | [diff] [blame] | 1009 | break; |
| 1010 | case HYP_PPI: |
| 1011 | err = request_percpu_irq(ppi, arch_timer_handler_phys, |
| 1012 | "arch_timer", arch_timer_evt); |
| 1013 | break; |
| 1014 | default: |
| 1015 | BUG(); |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 1016 | } |
| 1017 | |
| 1018 | if (err) { |
| 1019 | pr_err("arch_timer: can't register interrupt %d (%d)\n", |
| 1020 | ppi, err); |
| 1021 | goto out_free; |
| 1022 | } |
| 1023 | |
Sudeep KarkadaNagesha | 346e748 | 2013-08-23 15:53:15 +0100 | [diff] [blame] | 1024 | err = arch_timer_cpu_pm_init(); |
| 1025 | if (err) |
| 1026 | goto out_unreg_notify; |
| 1027 | |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 1028 | |
Richard Cochran | 7e86e8b | 2016-07-13 17:16:39 +0000 | [diff] [blame] | 1029 | /* Register and immediately configure the timer on the boot CPU */ |
| 1030 | err = cpuhp_setup_state(CPUHP_AP_ARM_ARCH_TIMER_STARTING, |
Thomas Gleixner | 73c1b41 | 2016-12-21 20:19:54 +0100 | [diff] [blame] | 1031 | "clockevents/arm/arch_timer:starting", |
Richard Cochran | 7e86e8b | 2016-07-13 17:16:39 +0000 | [diff] [blame] | 1032 | arch_timer_starting_cpu, arch_timer_dying_cpu); |
| 1033 | if (err) |
| 1034 | goto out_unreg_cpupm; |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 1035 | return 0; |
| 1036 | |
Richard Cochran | 7e86e8b | 2016-07-13 17:16:39 +0000 | [diff] [blame] | 1037 | out_unreg_cpupm: |
| 1038 | arch_timer_cpu_pm_deinit(); |
| 1039 | |
Sudeep KarkadaNagesha | 346e748 | 2013-08-23 15:53:15 +0100 | [diff] [blame] | 1040 | out_unreg_notify: |
Marc Zyngier | f81f03f | 2014-02-20 15:21:23 +0000 | [diff] [blame] | 1041 | free_percpu_irq(arch_timer_ppi[arch_timer_uses_ppi], arch_timer_evt); |
| 1042 | if (arch_timer_has_nonsecure_ppi()) |
| 1043 | free_percpu_irq(arch_timer_ppi[PHYS_NONSECURE_PPI], |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 1044 | arch_timer_evt); |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 1045 | |
| 1046 | out_free: |
| 1047 | free_percpu(arch_timer_evt); |
| 1048 | out: |
| 1049 | return err; |
| 1050 | } |
| 1051 | |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 1052 | static int __init arch_timer_mem_register(void __iomem *base, unsigned int irq) |
| 1053 | { |
| 1054 | int ret; |
| 1055 | irq_handler_t func; |
| 1056 | struct arch_timer *t; |
| 1057 | |
| 1058 | t = kzalloc(sizeof(*t), GFP_KERNEL); |
| 1059 | if (!t) |
| 1060 | return -ENOMEM; |
| 1061 | |
| 1062 | t->base = base; |
| 1063 | t->evt.irq = irq; |
| 1064 | __arch_timer_setup(ARCH_MEM_TIMER, &t->evt); |
| 1065 | |
| 1066 | if (arch_timer_mem_use_virtual) |
| 1067 | func = arch_timer_handler_virt_mem; |
| 1068 | else |
| 1069 | func = arch_timer_handler_phys_mem; |
| 1070 | |
| 1071 | ret = request_irq(irq, func, IRQF_TIMER, "arch_mem_timer", &t->evt); |
| 1072 | if (ret) { |
| 1073 | pr_err("arch_timer: Failed to request mem timer irq\n"); |
| 1074 | kfree(t); |
| 1075 | } |
| 1076 | |
| 1077 | return ret; |
| 1078 | } |
| 1079 | |
| 1080 | static const struct of_device_id arch_timer_of_match[] __initconst = { |
| 1081 | { .compatible = "arm,armv7-timer", }, |
| 1082 | { .compatible = "arm,armv8-timer", }, |
| 1083 | {}, |
| 1084 | }; |
| 1085 | |
| 1086 | static const struct of_device_id arch_timer_mem_of_match[] __initconst = { |
| 1087 | { .compatible = "arm,armv7-timer-mem", }, |
| 1088 | {}, |
| 1089 | }; |
| 1090 | |
Sudeep Holla | c387f07 | 2014-09-29 01:50:05 +0200 | [diff] [blame] | 1091 | static bool __init |
Laurent Pinchart | 566e6df | 2015-03-31 12:12:22 +0200 | [diff] [blame] | 1092 | arch_timer_needs_probing(int type, const struct of_device_id *matches) |
Sudeep Holla | c387f07 | 2014-09-29 01:50:05 +0200 | [diff] [blame] | 1093 | { |
| 1094 | struct device_node *dn; |
Laurent Pinchart | 566e6df | 2015-03-31 12:12:22 +0200 | [diff] [blame] | 1095 | bool needs_probing = false; |
Sudeep Holla | c387f07 | 2014-09-29 01:50:05 +0200 | [diff] [blame] | 1096 | |
| 1097 | dn = of_find_matching_node(NULL, matches); |
Marc Zyngier | 59aa896 | 2014-10-15 16:06:20 +0100 | [diff] [blame] | 1098 | if (dn && of_device_is_available(dn) && !(arch_timers_present & type)) |
Laurent Pinchart | 566e6df | 2015-03-31 12:12:22 +0200 | [diff] [blame] | 1099 | needs_probing = true; |
Sudeep Holla | c387f07 | 2014-09-29 01:50:05 +0200 | [diff] [blame] | 1100 | of_node_put(dn); |
| 1101 | |
Laurent Pinchart | 566e6df | 2015-03-31 12:12:22 +0200 | [diff] [blame] | 1102 | return needs_probing; |
Sudeep Holla | c387f07 | 2014-09-29 01:50:05 +0200 | [diff] [blame] | 1103 | } |
| 1104 | |
Daniel Lezcano | 3c0731d | 2016-06-06 17:55:40 +0200 | [diff] [blame] | 1105 | static int __init arch_timer_common_init(void) |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 1106 | { |
| 1107 | unsigned mask = ARCH_CP15_TIMER | ARCH_MEM_TIMER; |
| 1108 | |
| 1109 | /* Wait until both nodes are probed if we have two timers */ |
| 1110 | if ((arch_timers_present & mask) != mask) { |
Laurent Pinchart | 566e6df | 2015-03-31 12:12:22 +0200 | [diff] [blame] | 1111 | if (arch_timer_needs_probing(ARCH_MEM_TIMER, arch_timer_mem_of_match)) |
Daniel Lezcano | 3c0731d | 2016-06-06 17:55:40 +0200 | [diff] [blame] | 1112 | return 0; |
Laurent Pinchart | 566e6df | 2015-03-31 12:12:22 +0200 | [diff] [blame] | 1113 | if (arch_timer_needs_probing(ARCH_CP15_TIMER, arch_timer_of_match)) |
Daniel Lezcano | 3c0731d | 2016-06-06 17:55:40 +0200 | [diff] [blame] | 1114 | return 0; |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 1115 | } |
| 1116 | |
| 1117 | arch_timer_banner(arch_timers_present); |
| 1118 | arch_counter_register(arch_timers_present); |
Daniel Lezcano | 3c0731d | 2016-06-06 17:55:40 +0200 | [diff] [blame] | 1119 | return arch_timer_arch_init(); |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 1120 | } |
| 1121 | |
Daniel Lezcano | 3c0731d | 2016-06-06 17:55:40 +0200 | [diff] [blame] | 1122 | static int __init arch_timer_init(void) |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 1123 | { |
Daniel Lezcano | 3c0731d | 2016-06-06 17:55:40 +0200 | [diff] [blame] | 1124 | int ret; |
Doug Anderson | 65b5732 | 2014-10-08 00:33:47 -0700 | [diff] [blame] | 1125 | /* |
Marc Zyngier | 8266891 | 2013-01-10 11:13:07 +0000 | [diff] [blame] | 1126 | * If HYP mode is available, we know that the physical timer |
| 1127 | * has been configured to be accessible from PL1. Use it, so |
| 1128 | * that a guest can use the virtual timer instead. |
| 1129 | * |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 1130 | * If no interrupt provided for virtual timer, we'll have to |
| 1131 | * stick to the physical timer. It'd better be accessible... |
Marc Zyngier | f81f03f | 2014-02-20 15:21:23 +0000 | [diff] [blame] | 1132 | * |
| 1133 | * On ARMv8.1 with VH extensions, the kernel runs in HYP. VHE |
| 1134 | * accesses to CNTP_*_EL1 registers are silently redirected to |
| 1135 | * their CNTHP_*_EL2 counterparts, and use a different PPI |
| 1136 | * number. |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 1137 | */ |
Marc Zyngier | 8266891 | 2013-01-10 11:13:07 +0000 | [diff] [blame] | 1138 | if (is_hyp_mode_available() || !arch_timer_ppi[VIRT_PPI]) { |
Marc Zyngier | f81f03f | 2014-02-20 15:21:23 +0000 | [diff] [blame] | 1139 | bool has_ppi; |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 1140 | |
Marc Zyngier | f81f03f | 2014-02-20 15:21:23 +0000 | [diff] [blame] | 1141 | if (is_kernel_in_hyp_mode()) { |
| 1142 | arch_timer_uses_ppi = HYP_PPI; |
| 1143 | has_ppi = !!arch_timer_ppi[HYP_PPI]; |
| 1144 | } else { |
| 1145 | arch_timer_uses_ppi = PHYS_SECURE_PPI; |
| 1146 | has_ppi = (!!arch_timer_ppi[PHYS_SECURE_PPI] || |
| 1147 | !!arch_timer_ppi[PHYS_NONSECURE_PPI]); |
| 1148 | } |
| 1149 | |
| 1150 | if (!has_ppi) { |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 1151 | pr_warn("arch_timer: No interrupt available, giving up\n"); |
Daniel Lezcano | 3c0731d | 2016-06-06 17:55:40 +0200 | [diff] [blame] | 1152 | return -EINVAL; |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 1153 | } |
| 1154 | } |
| 1155 | |
Daniel Lezcano | 3c0731d | 2016-06-06 17:55:40 +0200 | [diff] [blame] | 1156 | ret = arch_timer_register(); |
| 1157 | if (ret) |
| 1158 | return ret; |
| 1159 | |
| 1160 | ret = arch_timer_common_init(); |
| 1161 | if (ret) |
| 1162 | return ret; |
Julien Grall | d9b5e41 | 2016-04-11 16:32:52 +0100 | [diff] [blame] | 1163 | |
| 1164 | arch_timer_kvm_info.virtual_irq = arch_timer_ppi[VIRT_PPI]; |
Daniel Lezcano | 3c0731d | 2016-06-06 17:55:40 +0200 | [diff] [blame] | 1165 | |
| 1166 | return 0; |
Mark Rutland | 8a4da6e | 2012-11-12 14:33:44 +0000 | [diff] [blame] | 1167 | } |
Hanjun Guo | b09ca1e | 2015-03-24 14:02:50 +0000 | [diff] [blame] | 1168 | |
Daniel Lezcano | 3c0731d | 2016-06-06 17:55:40 +0200 | [diff] [blame] | 1169 | static int __init arch_timer_of_init(struct device_node *np) |
Hanjun Guo | b09ca1e | 2015-03-24 14:02:50 +0000 | [diff] [blame] | 1170 | { |
| 1171 | int i; |
| 1172 | |
| 1173 | if (arch_timers_present & ARCH_CP15_TIMER) { |
| 1174 | pr_warn("arch_timer: multiple nodes in dt, skipping\n"); |
Daniel Lezcano | 3c0731d | 2016-06-06 17:55:40 +0200 | [diff] [blame] | 1175 | return 0; |
Hanjun Guo | b09ca1e | 2015-03-24 14:02:50 +0000 | [diff] [blame] | 1176 | } |
| 1177 | |
| 1178 | arch_timers_present |= ARCH_CP15_TIMER; |
| 1179 | for (i = PHYS_SECURE_PPI; i < MAX_TIMER_PPI; i++) |
| 1180 | arch_timer_ppi[i] = irq_of_parse_and_map(np, i); |
| 1181 | |
| 1182 | arch_timer_detect_rate(NULL, np); |
| 1183 | |
| 1184 | arch_timer_c3stop = !of_property_read_bool(np, "always-on"); |
| 1185 | |
Marc Zyngier | 651bb2e | 2017-01-19 17:20:59 +0000 | [diff] [blame] | 1186 | /* Check for globally applicable workarounds */ |
| 1187 | arch_timer_check_ool_workaround(ate_match_dt, np); |
Scott Wood | f6dc157 | 2016-09-22 03:35:17 -0500 | [diff] [blame] | 1188 | |
Hanjun Guo | b09ca1e | 2015-03-24 14:02:50 +0000 | [diff] [blame] | 1189 | /* |
| 1190 | * If we cannot rely on firmware initializing the timer registers then |
| 1191 | * we should use the physical timers instead. |
| 1192 | */ |
| 1193 | if (IS_ENABLED(CONFIG_ARM) && |
| 1194 | of_property_read_bool(np, "arm,cpu-registers-not-fw-configured")) |
Marc Zyngier | f81f03f | 2014-02-20 15:21:23 +0000 | [diff] [blame] | 1195 | arch_timer_uses_ppi = PHYS_SECURE_PPI; |
Hanjun Guo | b09ca1e | 2015-03-24 14:02:50 +0000 | [diff] [blame] | 1196 | |
Brian Norris | d8ec759 | 2016-10-04 11:12:09 -0700 | [diff] [blame] | 1197 | /* On some systems, the counter stops ticking when in suspend. */ |
| 1198 | arch_counter_suspend_stop = of_property_read_bool(np, |
| 1199 | "arm,no-tick-in-suspend"); |
| 1200 | |
Daniel Lezcano | 3c0731d | 2016-06-06 17:55:40 +0200 | [diff] [blame] | 1201 | return arch_timer_init(); |
Hanjun Guo | b09ca1e | 2015-03-24 14:02:50 +0000 | [diff] [blame] | 1202 | } |
Daniel Lezcano | 177cf6e | 2016-06-07 00:27:44 +0200 | [diff] [blame] | 1203 | CLOCKSOURCE_OF_DECLARE(armv7_arch_timer, "arm,armv7-timer", arch_timer_of_init); |
| 1204 | CLOCKSOURCE_OF_DECLARE(armv8_arch_timer, "arm,armv8-timer", arch_timer_of_init); |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 1205 | |
Daniel Lezcano | 3c0731d | 2016-06-06 17:55:40 +0200 | [diff] [blame] | 1206 | static int __init arch_timer_mem_init(struct device_node *np) |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 1207 | { |
| 1208 | struct device_node *frame, *best_frame = NULL; |
| 1209 | void __iomem *cntctlbase, *base; |
Daniel Lezcano | 3c0731d | 2016-06-06 17:55:40 +0200 | [diff] [blame] | 1210 | unsigned int irq, ret = -EINVAL; |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 1211 | u32 cnttidr; |
| 1212 | |
| 1213 | arch_timers_present |= ARCH_MEM_TIMER; |
| 1214 | cntctlbase = of_iomap(np, 0); |
| 1215 | if (!cntctlbase) { |
| 1216 | pr_err("arch_timer: Can't find CNTCTLBase\n"); |
Daniel Lezcano | 3c0731d | 2016-06-06 17:55:40 +0200 | [diff] [blame] | 1217 | return -ENXIO; |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 1218 | } |
| 1219 | |
| 1220 | cnttidr = readl_relaxed(cntctlbase + CNTTIDR); |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 1221 | |
| 1222 | /* |
| 1223 | * Try to find a virtual capable frame. Otherwise fall back to a |
| 1224 | * physical capable frame. |
| 1225 | */ |
| 1226 | for_each_available_child_of_node(np, frame) { |
| 1227 | int n; |
Robin Murphy | e392d60 | 2016-02-01 12:00:48 +0000 | [diff] [blame] | 1228 | u32 cntacr; |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 1229 | |
| 1230 | if (of_property_read_u32(frame, "frame-number", &n)) { |
| 1231 | pr_err("arch_timer: Missing frame-number\n"); |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 1232 | of_node_put(frame); |
Robin Murphy | e392d60 | 2016-02-01 12:00:48 +0000 | [diff] [blame] | 1233 | goto out; |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 1234 | } |
| 1235 | |
Robin Murphy | e392d60 | 2016-02-01 12:00:48 +0000 | [diff] [blame] | 1236 | /* Try enabling everything, and see what sticks */ |
| 1237 | cntacr = CNTACR_RFRQ | CNTACR_RWPT | CNTACR_RPCT | |
| 1238 | CNTACR_RWVT | CNTACR_RVOFF | CNTACR_RVCT; |
| 1239 | writel_relaxed(cntacr, cntctlbase + CNTACR(n)); |
| 1240 | cntacr = readl_relaxed(cntctlbase + CNTACR(n)); |
| 1241 | |
| 1242 | if ((cnttidr & CNTTIDR_VIRT(n)) && |
| 1243 | !(~cntacr & (CNTACR_RWVT | CNTACR_RVCT))) { |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 1244 | of_node_put(best_frame); |
| 1245 | best_frame = frame; |
| 1246 | arch_timer_mem_use_virtual = true; |
| 1247 | break; |
| 1248 | } |
Robin Murphy | e392d60 | 2016-02-01 12:00:48 +0000 | [diff] [blame] | 1249 | |
| 1250 | if (~cntacr & (CNTACR_RWPT | CNTACR_RPCT)) |
| 1251 | continue; |
| 1252 | |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 1253 | of_node_put(best_frame); |
| 1254 | best_frame = of_node_get(frame); |
| 1255 | } |
| 1256 | |
Daniel Lezcano | 3c0731d | 2016-06-06 17:55:40 +0200 | [diff] [blame] | 1257 | ret= -ENXIO; |
Stephen Boyd | f947ee1 | 2016-10-26 00:35:50 -0700 | [diff] [blame] | 1258 | base = arch_counter_base = of_io_request_and_map(best_frame, 0, |
| 1259 | "arch_mem_timer"); |
| 1260 | if (IS_ERR(base)) { |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 1261 | pr_err("arch_timer: Can't map frame's registers\n"); |
Robin Murphy | e392d60 | 2016-02-01 12:00:48 +0000 | [diff] [blame] | 1262 | goto out; |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 1263 | } |
| 1264 | |
| 1265 | if (arch_timer_mem_use_virtual) |
| 1266 | irq = irq_of_parse_and_map(best_frame, 1); |
| 1267 | else |
| 1268 | irq = irq_of_parse_and_map(best_frame, 0); |
Robin Murphy | e392d60 | 2016-02-01 12:00:48 +0000 | [diff] [blame] | 1269 | |
Daniel Lezcano | 3c0731d | 2016-06-06 17:55:40 +0200 | [diff] [blame] | 1270 | ret = -EINVAL; |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 1271 | if (!irq) { |
| 1272 | pr_err("arch_timer: Frame missing %s irq", |
Thomas Gleixner | cfb6d65 | 2013-08-21 14:59:23 +0200 | [diff] [blame] | 1273 | arch_timer_mem_use_virtual ? "virt" : "phys"); |
Robin Murphy | e392d60 | 2016-02-01 12:00:48 +0000 | [diff] [blame] | 1274 | goto out; |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 1275 | } |
| 1276 | |
| 1277 | arch_timer_detect_rate(base, np); |
Daniel Lezcano | 3c0731d | 2016-06-06 17:55:40 +0200 | [diff] [blame] | 1278 | ret = arch_timer_mem_register(base, irq); |
| 1279 | if (ret) |
| 1280 | goto out; |
| 1281 | |
| 1282 | return arch_timer_common_init(); |
Robin Murphy | e392d60 | 2016-02-01 12:00:48 +0000 | [diff] [blame] | 1283 | out: |
| 1284 | iounmap(cntctlbase); |
| 1285 | of_node_put(best_frame); |
Daniel Lezcano | 3c0731d | 2016-06-06 17:55:40 +0200 | [diff] [blame] | 1286 | return ret; |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 1287 | } |
Daniel Lezcano | 177cf6e | 2016-06-07 00:27:44 +0200 | [diff] [blame] | 1288 | CLOCKSOURCE_OF_DECLARE(armv7_arch_timer_mem, "arm,armv7-timer-mem", |
Stephen Boyd | 2200699 | 2013-07-18 16:59:32 -0700 | [diff] [blame] | 1289 | arch_timer_mem_init); |
Hanjun Guo | b09ca1e | 2015-03-24 14:02:50 +0000 | [diff] [blame] | 1290 | |
| 1291 | #ifdef CONFIG_ACPI |
| 1292 | static int __init map_generic_timer_interrupt(u32 interrupt, u32 flags) |
| 1293 | { |
| 1294 | int trigger, polarity; |
| 1295 | |
| 1296 | if (!interrupt) |
| 1297 | return 0; |
| 1298 | |
| 1299 | trigger = (flags & ACPI_GTDT_INTERRUPT_MODE) ? ACPI_EDGE_SENSITIVE |
| 1300 | : ACPI_LEVEL_SENSITIVE; |
| 1301 | |
| 1302 | polarity = (flags & ACPI_GTDT_INTERRUPT_POLARITY) ? ACPI_ACTIVE_LOW |
| 1303 | : ACPI_ACTIVE_HIGH; |
| 1304 | |
| 1305 | return acpi_register_gsi(NULL, interrupt, trigger, polarity); |
| 1306 | } |
| 1307 | |
| 1308 | /* Initialize per-processor generic timer */ |
| 1309 | static int __init arch_timer_acpi_init(struct acpi_table_header *table) |
| 1310 | { |
| 1311 | struct acpi_table_gtdt *gtdt; |
| 1312 | |
| 1313 | if (arch_timers_present & ARCH_CP15_TIMER) { |
| 1314 | pr_warn("arch_timer: already initialized, skipping\n"); |
| 1315 | return -EINVAL; |
| 1316 | } |
| 1317 | |
| 1318 | gtdt = container_of(table, struct acpi_table_gtdt, header); |
| 1319 | |
| 1320 | arch_timers_present |= ARCH_CP15_TIMER; |
| 1321 | |
| 1322 | arch_timer_ppi[PHYS_SECURE_PPI] = |
| 1323 | map_generic_timer_interrupt(gtdt->secure_el1_interrupt, |
| 1324 | gtdt->secure_el1_flags); |
| 1325 | |
| 1326 | arch_timer_ppi[PHYS_NONSECURE_PPI] = |
| 1327 | map_generic_timer_interrupt(gtdt->non_secure_el1_interrupt, |
| 1328 | gtdt->non_secure_el1_flags); |
| 1329 | |
| 1330 | arch_timer_ppi[VIRT_PPI] = |
| 1331 | map_generic_timer_interrupt(gtdt->virtual_timer_interrupt, |
| 1332 | gtdt->virtual_timer_flags); |
| 1333 | |
| 1334 | arch_timer_ppi[HYP_PPI] = |
| 1335 | map_generic_timer_interrupt(gtdt->non_secure_el2_interrupt, |
| 1336 | gtdt->non_secure_el2_flags); |
| 1337 | |
| 1338 | /* Get the frequency from CNTFRQ */ |
| 1339 | arch_timer_detect_rate(NULL, NULL); |
| 1340 | |
| 1341 | /* Always-on capability */ |
| 1342 | arch_timer_c3stop = !(gtdt->non_secure_el1_flags & ACPI_GTDT_ALWAYS_ON); |
| 1343 | |
Marc Zyngier | 5a38bca | 2017-02-21 14:37:30 +0000 | [diff] [blame] | 1344 | /* Check for globally applicable workarounds */ |
| 1345 | arch_timer_check_ool_workaround(ate_match_acpi_oem_info, table); |
| 1346 | |
Hanjun Guo | b09ca1e | 2015-03-24 14:02:50 +0000 | [diff] [blame] | 1347 | arch_timer_init(); |
| 1348 | return 0; |
| 1349 | } |
Marc Zyngier | ae281cb | 2015-09-28 15:49:17 +0100 | [diff] [blame] | 1350 | CLOCKSOURCE_ACPI_DECLARE(arch_timer, ACPI_SIG_GTDT, arch_timer_acpi_init); |
Hanjun Guo | b09ca1e | 2015-03-24 14:02:50 +0000 | [diff] [blame] | 1351 | #endif |