Skip to content

Commit 2806175

Browse files
author
Sudeep KarkadaNagesha
committed
ARM/ARM64: arch_timer: add macros for bits in control register
Add macros to describe the bitfields in the ARM architected timer control register to make code easy to understand. Reviewed-by: Lorenzo Pieralisi <[email protected]> Reviewed-by: Will Deacon <[email protected]> Acked-by: Catalin Marinas <[email protected]> Acked-by: Olof Johansson <[email protected]> Signed-off-by: Sudeep KarkadaNagesha <[email protected]>
1 parent 4a10c2a commit 2806175

File tree

3 files changed

+23
-6
lines changed

3 files changed

+23
-6
lines changed

arch/arm/include/asm/arch_timer.h

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,13 @@ static inline void arch_counter_set_user_access(void)
9393

9494
asm volatile("mrc p15, 0, %0, c14, c1, 0" : "=r" (cntkctl));
9595

96-
/* disable user access to everything */
97-
cntkctl &= ~((3 << 8) | (7 << 0));
96+
/* Disable user access to both physical/virtual counters/timers */
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);
98103

99104
asm volatile("mcr p15, 0, %0, c14, c1, 0" : : "r" (cntkctl));
100105
}

arch/arm64/include/asm/arch_timer.h

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,16 @@ static inline void arch_counter_set_user_access(void)
9696
{
9797
u32 cntkctl;
9898

99-
/* Disable user access to the timers and the physical counter. */
10099
asm volatile("mrs %0, cntkctl_el1" : "=r" (cntkctl));
101-
cntkctl &= ~((3 << 8) | (1 << 0));
102100

103-
/* Enable user access to the virtual counter and frequency. */
104-
cntkctl |= (1 << 1);
101+
/* Disable user access to the timers and the physical counter */
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+
105109
asm volatile("msr cntkctl_el1, %0" : : "r" (cntkctl));
106110
}
107111

include/clocksource/arm_arch_timer.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,14 @@ enum arch_timer_reg {
3333
#define ARCH_TIMER_MEM_PHYS_ACCESS 2
3434
#define ARCH_TIMER_MEM_VIRT_ACCESS 3
3535

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+
3644
#ifdef CONFIG_ARM_ARCH_TIMER
3745

3846
extern u32 arch_timer_get_rate(void);

0 commit comments

Comments
 (0)