Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm64/include/asm/arch_timer.h |
| 3 | * |
| 4 | * Copyright (C) 2012 ARM Ltd. |
| 5 | * Author: Marc Zyngier <marc.zyngier@arm.com> |
| 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 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 18 | */ |
| 19 | #ifndef __ASM_ARCH_TIMER_H |
| 20 | #define __ASM_ARCH_TIMER_H |
| 21 | |
| 22 | #include <asm/barrier.h> |
Mark Rutland | cd5f22d | 2016-09-08 13:55:35 +0100 | [diff] [blame] | 23 | #include <asm/sysreg.h> |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 24 | |
Paul Walmsley | 082471a | 2015-01-05 17:38:41 -0700 | [diff] [blame] | 25 | #include <linux/bug.h> |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 26 | #include <linux/init.h> |
Scott Wood | f6dc157 | 2016-09-22 03:35:17 -0500 | [diff] [blame] | 27 | #include <linux/jump_label.h> |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 28 | #include <linux/types.h> |
| 29 | |
| 30 | #include <clocksource/arm_arch_timer.h> |
| 31 | |
Scott Wood | f6dc157 | 2016-09-22 03:35:17 -0500 | [diff] [blame] | 32 | #if IS_ENABLED(CONFIG_FSL_ERRATUM_A008585) |
| 33 | extern struct static_key_false arch_timer_read_ool_enabled; |
| 34 | #define needs_fsl_a008585_workaround() \ |
| 35 | static_branch_unlikely(&arch_timer_read_ool_enabled) |
| 36 | #else |
| 37 | #define needs_fsl_a008585_workaround() false |
| 38 | #endif |
| 39 | |
| 40 | u32 __fsl_a008585_read_cntp_tval_el0(void); |
| 41 | u32 __fsl_a008585_read_cntv_tval_el0(void); |
| 42 | u64 __fsl_a008585_read_cntvct_el0(void); |
| 43 | |
| 44 | /* |
| 45 | * The number of retries is an arbitrary value well beyond the highest number |
| 46 | * of iterations the loop has been observed to take. |
| 47 | */ |
| 48 | #define __fsl_a008585_read_reg(reg) ({ \ |
| 49 | u64 _old, _new; \ |
| 50 | int _retries = 200; \ |
| 51 | \ |
| 52 | do { \ |
| 53 | _old = read_sysreg(reg); \ |
| 54 | _new = read_sysreg(reg); \ |
| 55 | _retries--; \ |
| 56 | } while (unlikely(_old != _new) && _retries); \ |
| 57 | \ |
| 58 | WARN_ON_ONCE(!_retries); \ |
| 59 | _new; \ |
| 60 | }) |
| 61 | |
| 62 | #define arch_timer_reg_read_stable(reg) \ |
| 63 | ({ \ |
| 64 | u64 _val; \ |
| 65 | if (needs_fsl_a008585_workaround()) \ |
| 66 | _val = __fsl_a008585_read_##reg(); \ |
| 67 | else \ |
| 68 | _val = read_sysreg(reg); \ |
| 69 | _val; \ |
| 70 | }) |
| 71 | |
Stephen Boyd | e09f3cc | 2013-07-18 16:59:28 -0700 | [diff] [blame] | 72 | /* |
| 73 | * These register accessors are marked inline so the compiler can |
| 74 | * nicely work out which register we want, and chuck away the rest of |
| 75 | * the code. |
| 76 | */ |
| 77 | static __always_inline |
Stephen Boyd | 60faddf | 2013-07-18 16:59:31 -0700 | [diff] [blame] | 78 | void arch_timer_reg_write_cp15(int access, enum arch_timer_reg reg, u32 val) |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 79 | { |
| 80 | if (access == ARCH_TIMER_PHYS_ACCESS) { |
| 81 | switch (reg) { |
| 82 | case ARCH_TIMER_REG_CTRL: |
Mark Rutland | cd5f22d | 2016-09-08 13:55:35 +0100 | [diff] [blame] | 83 | write_sysreg(val, cntp_ctl_el0); |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 84 | break; |
| 85 | case ARCH_TIMER_REG_TVAL: |
Mark Rutland | cd5f22d | 2016-09-08 13:55:35 +0100 | [diff] [blame] | 86 | write_sysreg(val, cntp_tval_el0); |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 87 | break; |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 88 | } |
| 89 | } else if (access == ARCH_TIMER_VIRT_ACCESS) { |
| 90 | switch (reg) { |
| 91 | case ARCH_TIMER_REG_CTRL: |
Mark Rutland | cd5f22d | 2016-09-08 13:55:35 +0100 | [diff] [blame] | 92 | write_sysreg(val, cntv_ctl_el0); |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 93 | break; |
| 94 | case ARCH_TIMER_REG_TVAL: |
Mark Rutland | cd5f22d | 2016-09-08 13:55:35 +0100 | [diff] [blame] | 95 | write_sysreg(val, cntv_tval_el0); |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 96 | break; |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 97 | } |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | isb(); |
| 101 | } |
| 102 | |
Stephen Boyd | e09f3cc | 2013-07-18 16:59:28 -0700 | [diff] [blame] | 103 | static __always_inline |
Stephen Boyd | 60faddf | 2013-07-18 16:59:31 -0700 | [diff] [blame] | 104 | u32 arch_timer_reg_read_cp15(int access, enum arch_timer_reg reg) |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 105 | { |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 106 | if (access == ARCH_TIMER_PHYS_ACCESS) { |
| 107 | switch (reg) { |
| 108 | case ARCH_TIMER_REG_CTRL: |
Mark Rutland | cd5f22d | 2016-09-08 13:55:35 +0100 | [diff] [blame] | 109 | return read_sysreg(cntp_ctl_el0); |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 110 | case ARCH_TIMER_REG_TVAL: |
Scott Wood | f6dc157 | 2016-09-22 03:35:17 -0500 | [diff] [blame] | 111 | return arch_timer_reg_read_stable(cntp_tval_el0); |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 112 | } |
| 113 | } else if (access == ARCH_TIMER_VIRT_ACCESS) { |
| 114 | switch (reg) { |
| 115 | case ARCH_TIMER_REG_CTRL: |
Mark Rutland | cd5f22d | 2016-09-08 13:55:35 +0100 | [diff] [blame] | 116 | return read_sysreg(cntv_ctl_el0); |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 117 | case ARCH_TIMER_REG_TVAL: |
Scott Wood | f6dc157 | 2016-09-22 03:35:17 -0500 | [diff] [blame] | 118 | return arch_timer_reg_read_stable(cntv_tval_el0); |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 119 | } |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 120 | } |
| 121 | |
Mark Rutland | cd5f22d | 2016-09-08 13:55:35 +0100 | [diff] [blame] | 122 | BUG(); |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | static inline u32 arch_timer_get_cntfrq(void) |
| 126 | { |
Mark Rutland | cd5f22d | 2016-09-08 13:55:35 +0100 | [diff] [blame] | 127 | return read_sysreg(cntfrq_el0); |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 128 | } |
| 129 | |
Sudeep KarkadaNagesha | 46efe54 | 2013-08-13 15:57:53 +0100 | [diff] [blame] | 130 | static inline u32 arch_timer_get_cntkctl(void) |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 131 | { |
Mark Rutland | cd5f22d | 2016-09-08 13:55:35 +0100 | [diff] [blame] | 132 | return read_sysreg(cntkctl_el1); |
Sudeep KarkadaNagesha | 46efe54 | 2013-08-13 15:57:53 +0100 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | static inline void arch_timer_set_cntkctl(u32 cntkctl) |
| 136 | { |
Mark Rutland | cd5f22d | 2016-09-08 13:55:35 +0100 | [diff] [blame] | 137 | write_sysreg(cntkctl, cntkctl_el1); |
Sudeep KarkadaNagesha | 46efe54 | 2013-08-13 15:57:53 +0100 | [diff] [blame] | 138 | } |
| 139 | |
Sonny Rao | 0b46b8a | 2014-11-23 23:02:44 -0800 | [diff] [blame] | 140 | static inline u64 arch_counter_get_cntpct(void) |
| 141 | { |
| 142 | /* |
| 143 | * AArch64 kernel and user space mandate the use of CNTVCT. |
| 144 | */ |
| 145 | BUG(); |
| 146 | return 0; |
| 147 | } |
| 148 | |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 149 | static inline u64 arch_counter_get_cntvct(void) |
| 150 | { |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 151 | isb(); |
Scott Wood | f6dc157 | 2016-09-22 03:35:17 -0500 | [diff] [blame] | 152 | return arch_timer_reg_read_stable(cntvct_el0); |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 153 | } |
| 154 | |
Rob Herring | 0583fe4 | 2013-04-10 18:27:51 -0500 | [diff] [blame] | 155 | static inline int arch_timer_arch_init(void) |
| 156 | { |
| 157 | return 0; |
| 158 | } |
| 159 | |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 160 | #endif |