arm64: arm_generic: prevent reading stale time
[linux-2.6/btrfs-unstable.git] / arch / arm64 / include / asm / arm_generic.h
blob6ece2f107fa0246759a5db446df7986e4fdba4ce
1 /*
2 * arch/arm64/include/asm/arm_generic.h
4 * Copyright (C) 2012 ARM Ltd.
5 * Author: Marc Zyngier <marc.zyngier@arm.com>
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.
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.
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/>.
19 #ifndef __ASM_ARM_GENERIC_H
20 #define __ASM_ARM_GENERIC_H
22 #include <linux/clocksource.h>
24 #define ARCH_TIMER_CTRL_ENABLE (1 << 0)
25 #define ARCH_TIMER_CTRL_IMASK (1 << 1)
26 #define ARCH_TIMER_CTRL_ISTATUS (1 << 2)
28 #define ARCH_TIMER_REG_CTRL 0
29 #define ARCH_TIMER_REG_FREQ 1
30 #define ARCH_TIMER_REG_TVAL 2
32 static inline void arch_timer_reg_write(int reg, u32 val)
34 switch (reg) {
35 case ARCH_TIMER_REG_CTRL:
36 asm volatile("msr cntp_ctl_el0, %0" : : "r" (val));
37 break;
38 case ARCH_TIMER_REG_TVAL:
39 asm volatile("msr cntp_tval_el0, %0" : : "r" (val));
40 break;
41 default:
42 BUILD_BUG();
45 isb();
48 static inline u32 arch_timer_reg_read(int reg)
50 u32 val;
52 switch (reg) {
53 case ARCH_TIMER_REG_CTRL:
54 asm volatile("mrs %0, cntp_ctl_el0" : "=r" (val));
55 break;
56 case ARCH_TIMER_REG_FREQ:
57 asm volatile("mrs %0, cntfrq_el0" : "=r" (val));
58 break;
59 case ARCH_TIMER_REG_TVAL:
60 asm volatile("mrs %0, cntp_tval_el0" : "=r" (val));
61 break;
62 default:
63 BUILD_BUG();
66 return val;
69 static inline void __cpuinit arch_counter_enable_user_access(void)
71 u32 cntkctl;
73 /* Disable user access to the timers and the physical counter. */
74 asm volatile("mrs %0, cntkctl_el1" : "=r" (cntkctl));
75 cntkctl &= ~((3 << 8) | (1 << 0));
77 /* Enable user access to the virtual counter and frequency. */
78 cntkctl |= (1 << 1);
79 asm volatile("msr cntkctl_el1, %0" : : "r" (cntkctl));
82 static inline cycle_t arch_counter_get_cntpct(void)
84 cycle_t cval;
86 isb();
87 asm volatile("mrs %0, cntpct_el0" : "=r" (cval));
89 return cval;
92 static inline cycle_t arch_counter_get_cntvct(void)
94 cycle_t cval;
96 isb();
97 asm volatile("mrs %0, cntvct_el0" : "=r" (cval));
99 return cval;
102 #endif