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> |
| 23 | |
| 24 | #include <linux/init.h> |
| 25 | #include <linux/types.h> |
| 26 | |
| 27 | #include <clocksource/arm_arch_timer.h> |
| 28 | |
Stephen Boyd | e09f3cc | 2013-07-18 16:59:28 -0700 | [diff] [blame] | 29 | /* |
| 30 | * These register accessors are marked inline so the compiler can |
| 31 | * nicely work out which register we want, and chuck away the rest of |
| 32 | * the code. |
| 33 | */ |
| 34 | static __always_inline |
Stephen Boyd | 60faddf | 2013-07-18 16:59:31 -0700 | [diff] [blame] | 35 | 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] | 36 | { |
| 37 | if (access == ARCH_TIMER_PHYS_ACCESS) { |
| 38 | switch (reg) { |
| 39 | case ARCH_TIMER_REG_CTRL: |
| 40 | asm volatile("msr cntp_ctl_el0, %0" : : "r" (val)); |
| 41 | break; |
| 42 | case ARCH_TIMER_REG_TVAL: |
| 43 | asm volatile("msr cntp_tval_el0, %0" : : "r" (val)); |
| 44 | break; |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 45 | } |
| 46 | } else if (access == ARCH_TIMER_VIRT_ACCESS) { |
| 47 | switch (reg) { |
| 48 | case ARCH_TIMER_REG_CTRL: |
| 49 | asm volatile("msr cntv_ctl_el0, %0" : : "r" (val)); |
| 50 | break; |
| 51 | case ARCH_TIMER_REG_TVAL: |
| 52 | asm volatile("msr cntv_tval_el0, %0" : : "r" (val)); |
| 53 | break; |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 54 | } |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | isb(); |
| 58 | } |
| 59 | |
Stephen Boyd | e09f3cc | 2013-07-18 16:59:28 -0700 | [diff] [blame] | 60 | static __always_inline |
Stephen Boyd | 60faddf | 2013-07-18 16:59:31 -0700 | [diff] [blame] | 61 | 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] | 62 | { |
| 63 | u32 val; |
| 64 | |
| 65 | if (access == ARCH_TIMER_PHYS_ACCESS) { |
| 66 | switch (reg) { |
| 67 | case ARCH_TIMER_REG_CTRL: |
| 68 | asm volatile("mrs %0, cntp_ctl_el0" : "=r" (val)); |
| 69 | break; |
| 70 | case ARCH_TIMER_REG_TVAL: |
| 71 | asm volatile("mrs %0, cntp_tval_el0" : "=r" (val)); |
| 72 | break; |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 73 | } |
| 74 | } else if (access == ARCH_TIMER_VIRT_ACCESS) { |
| 75 | switch (reg) { |
| 76 | case ARCH_TIMER_REG_CTRL: |
| 77 | asm volatile("mrs %0, cntv_ctl_el0" : "=r" (val)); |
| 78 | break; |
| 79 | case ARCH_TIMER_REG_TVAL: |
| 80 | asm volatile("mrs %0, cntv_tval_el0" : "=r" (val)); |
| 81 | break; |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 82 | } |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | return val; |
| 86 | } |
| 87 | |
| 88 | static inline u32 arch_timer_get_cntfrq(void) |
| 89 | { |
| 90 | u32 val; |
| 91 | asm volatile("mrs %0, cntfrq_el0" : "=r" (val)); |
| 92 | return val; |
| 93 | } |
| 94 | |
Sudeep KarkadaNagesha | 46efe54 | 2013-08-13 15:57:53 +0100 | [diff] [blame] | 95 | static inline u32 arch_timer_get_cntkctl(void) |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 96 | { |
| 97 | u32 cntkctl; |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 98 | asm volatile("mrs %0, cntkctl_el1" : "=r" (cntkctl)); |
Sudeep KarkadaNagesha | 46efe54 | 2013-08-13 15:57:53 +0100 | [diff] [blame] | 99 | return cntkctl; |
| 100 | } |
| 101 | |
| 102 | static inline void arch_timer_set_cntkctl(u32 cntkctl) |
| 103 | { |
| 104 | asm volatile("msr cntkctl_el1, %0" : : "r" (cntkctl)); |
| 105 | } |
| 106 | |
| 107 | static inline void arch_counter_set_user_access(void) |
| 108 | { |
| 109 | u32 cntkctl = arch_timer_get_cntkctl(); |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 110 | |
Sudeep KarkadaNagesha | 2806175 | 2013-08-13 13:43:26 +0100 | [diff] [blame] | 111 | /* Disable user access to the timers and the physical counter */ |
Sudeep KarkadaNagesha | 46efe54 | 2013-08-13 15:57:53 +0100 | [diff] [blame] | 112 | /* Also disable virtual event stream */ |
Sudeep KarkadaNagesha | 2806175 | 2013-08-13 13:43:26 +0100 | [diff] [blame] | 113 | cntkctl &= ~(ARCH_TIMER_USR_PT_ACCESS_EN |
| 114 | | ARCH_TIMER_USR_VT_ACCESS_EN |
Sudeep KarkadaNagesha | 46efe54 | 2013-08-13 15:57:53 +0100 | [diff] [blame] | 115 | | ARCH_TIMER_VIRT_EVT_EN |
Sudeep KarkadaNagesha | 2806175 | 2013-08-13 13:43:26 +0100 | [diff] [blame] | 116 | | ARCH_TIMER_USR_PCT_ACCESS_EN); |
| 117 | |
| 118 | /* Enable user access to the virtual counter */ |
| 119 | cntkctl |= ARCH_TIMER_USR_VCT_ACCESS_EN; |
| 120 | |
Sudeep KarkadaNagesha | 46efe54 | 2013-08-13 15:57:53 +0100 | [diff] [blame] | 121 | arch_timer_set_cntkctl(cntkctl); |
| 122 | } |
| 123 | |
| 124 | static inline void arch_timer_evtstrm_enable(int divider) |
| 125 | { |
| 126 | u32 cntkctl = arch_timer_get_cntkctl(); |
| 127 | cntkctl &= ~ARCH_TIMER_EVT_TRIGGER_MASK; |
| 128 | /* Set the divider and enable virtual event stream */ |
| 129 | cntkctl |= (divider << ARCH_TIMER_EVT_TRIGGER_SHIFT) |
| 130 | | ARCH_TIMER_VIRT_EVT_EN; |
| 131 | arch_timer_set_cntkctl(cntkctl); |
| 132 | elf_hwcap |= HWCAP_EVTSTRM; |
| 133 | #ifdef CONFIG_COMPAT |
| 134 | compat_elf_hwcap |= COMPAT_HWCAP_EVTSTRM; |
| 135 | #endif |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 136 | } |
| 137 | |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 138 | static inline u64 arch_counter_get_cntvct(void) |
| 139 | { |
| 140 | u64 cval; |
| 141 | |
| 142 | isb(); |
| 143 | asm volatile("mrs %0, cntvct_el0" : "=r" (cval)); |
| 144 | |
| 145 | return cval; |
| 146 | } |
| 147 | |
Rob Herring | 0583fe4 | 2013-04-10 18:27:51 -0500 | [diff] [blame] | 148 | static inline int arch_timer_arch_init(void) |
| 149 | { |
| 150 | return 0; |
| 151 | } |
| 152 | |
Mark Rutland | 1aee5d7 | 2012-11-20 10:06:00 +0000 | [diff] [blame] | 153 | #endif |