diff options
| -rw-r--r-- | arch/arm/include/asm/arch_timer.h | 9 | ||||
| -rw-r--r-- | arch/arm64/include/asm/arch_timer.h | 12 | ||||
| -rw-r--r-- | include/clocksource/arm_arch_timer.h | 8 |
3 files changed, 23 insertions, 6 deletions
diff --git a/arch/arm/include/asm/arch_timer.h b/arch/arm/include/asm/arch_timer.h index 5665134bfa3e..d57e04de8e8c 100644 --- a/arch/arm/include/asm/arch_timer.h +++ b/arch/arm/include/asm/arch_timer.h | |||
| @@ -93,8 +93,13 @@ static inline void arch_counter_set_user_access(void) | |||
| 93 | 93 | ||
| 94 | asm volatile("mrc p15, 0, %0, c14, c1, 0" : "=r" (cntkctl)); | 94 | asm volatile("mrc p15, 0, %0, c14, c1, 0" : "=r" (cntkctl)); |
| 95 | 95 | ||
| 96 | /* disable user access to everything */ | 96 | /* Disable user access to both physical/virtual counters/timers */ |
| 97 | cntkctl &= ~((3 << 8) | (7 << 0)); | 97 | /* Also disable virtual event stream */ |
| 98 | cntkctl &= ~(ARCH_TIMER_USR_PT_ACCESS_EN | ||
| 99 | | ARCH_TIMER_USR_VT_ACCESS_EN | ||
| 100 | | ARCH_TIMER_VIRT_EVT_EN | ||
| 101 | | ARCH_TIMER_USR_VCT_ACCESS_EN | ||
| 102 | | ARCH_TIMER_USR_PCT_ACCESS_EN); | ||
| 98 | 103 | ||
| 99 | asm volatile("mcr p15, 0, %0, c14, c1, 0" : : "r" (cntkctl)); | 104 | asm volatile("mcr p15, 0, %0, c14, c1, 0" : : "r" (cntkctl)); |
| 100 | } | 105 | } |
diff --git a/arch/arm64/include/asm/arch_timer.h b/arch/arm64/include/asm/arch_timer.h index c9f1d2816c2b..2b9722f42729 100644 --- a/arch/arm64/include/asm/arch_timer.h +++ b/arch/arm64/include/asm/arch_timer.h | |||
| @@ -96,12 +96,16 @@ static inline void arch_counter_set_user_access(void) | |||
| 96 | { | 96 | { |
| 97 | u32 cntkctl; | 97 | u32 cntkctl; |
| 98 | 98 | ||
| 99 | /* Disable user access to the timers and the physical counter. */ | ||
| 100 | asm volatile("mrs %0, cntkctl_el1" : "=r" (cntkctl)); | 99 | asm volatile("mrs %0, cntkctl_el1" : "=r" (cntkctl)); |
| 101 | cntkctl &= ~((3 << 8) | (1 << 0)); | ||
| 102 | 100 | ||
| 103 | /* Enable user access to the virtual counter and frequency. */ | 101 | /* Disable user access to the timers and the physical counter */ |
| 104 | cntkctl |= (1 << 1); | 102 | cntkctl &= ~(ARCH_TIMER_USR_PT_ACCESS_EN |
| 103 | | ARCH_TIMER_USR_VT_ACCESS_EN | ||
| 104 | | ARCH_TIMER_USR_PCT_ACCESS_EN); | ||
| 105 | |||
| 106 | /* Enable user access to the virtual counter */ | ||
| 107 | cntkctl |= ARCH_TIMER_USR_VCT_ACCESS_EN; | ||
| 108 | |||
| 105 | asm volatile("msr cntkctl_el1, %0" : : "r" (cntkctl)); | 109 | asm volatile("msr cntkctl_el1, %0" : : "r" (cntkctl)); |
| 106 | } | 110 | } |
| 107 | 111 | ||
diff --git a/include/clocksource/arm_arch_timer.h b/include/clocksource/arm_arch_timer.h index 93b7f96f9c59..8707dae4cee2 100644 --- a/include/clocksource/arm_arch_timer.h +++ b/include/clocksource/arm_arch_timer.h | |||
| @@ -33,6 +33,14 @@ enum arch_timer_reg { | |||
| 33 | #define ARCH_TIMER_MEM_PHYS_ACCESS 2 | 33 | #define ARCH_TIMER_MEM_PHYS_ACCESS 2 |
| 34 | #define ARCH_TIMER_MEM_VIRT_ACCESS 3 | 34 | #define ARCH_TIMER_MEM_VIRT_ACCESS 3 |
| 35 | 35 | ||
| 36 | #define ARCH_TIMER_USR_PCT_ACCESS_EN (1 << 0) /* physical counter */ | ||
| 37 | #define ARCH_TIMER_USR_VCT_ACCESS_EN (1 << 1) /* virtual counter */ | ||
| 38 | #define ARCH_TIMER_VIRT_EVT_EN (1 << 2) | ||
| 39 | #define ARCH_TIMER_EVT_TRIGGER_SHIFT (4) | ||
| 40 | #define ARCH_TIMER_EVT_TRIGGER_MASK (0xF << ARCH_TIMER_EVT_TRIGGER_SHIFT) | ||
| 41 | #define ARCH_TIMER_USR_VT_ACCESS_EN (1 << 8) /* virtual timer registers */ | ||
| 42 | #define ARCH_TIMER_USR_PT_ACCESS_EN (1 << 9) /* physical timer registers */ | ||
| 43 | |||
| 36 | #ifdef CONFIG_ARM_ARCH_TIMER | 44 | #ifdef CONFIG_ARM_ARCH_TIMER |
| 37 | 45 | ||
| 38 | extern u32 arch_timer_get_rate(void); | 46 | extern u32 arch_timer_get_rate(void); |
