diff options
author | Mark Rutland <mark.rutland@arm.com> | 2012-11-20 05:06:00 -0500 |
---|---|---|
committer | Mark Rutland <mark.rutland@arm.com> | 2013-01-31 10:51:59 -0500 |
commit | 1aee5d7a8120cbe3eca9180ef9276d75a4f51dd2 (patch) | |
tree | ac02d4cdc545251cb9197456c7fbd41a64a4dbe0 /arch/arm64 | |
parent | 1dac0dd71cdda2bd7395dd47a6b617ed296d4901 (diff) |
arm64: move from arm_generic to arm_arch_timer
The arch_timer driver supports a superset of the functionality of the
arm_generic driver, and is not tied to a particular arch.
This patch moves arm64 to use the arch_timer driver, gaining additional
functionality in doing so, and removes the (now unused) arm_generic
driver. Timer-related hooks specific to arm64 are moved into
arch/arm64/kernel/time.c.
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Acked-by: Marc Zyngier <marc.zyngier@arm.com>
Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Diffstat (limited to 'arch/arm64')
-rw-r--r-- | arch/arm64/Kconfig | 1 | ||||
-rw-r--r-- | arch/arm64/include/asm/arch_timer.h | 133 | ||||
-rw-r--r-- | arch/arm64/include/asm/arm_generic.h | 102 | ||||
-rw-r--r-- | arch/arm64/kernel/time.c | 29 |
4 files changed, 161 insertions, 104 deletions
diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig index f8f362aafee9..2b6cef6ad17f 100644 --- a/arch/arm64/Kconfig +++ b/arch/arm64/Kconfig | |||
@@ -3,6 +3,7 @@ config ARM64 | |||
3 | select ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE | 3 | select ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE |
4 | select ARCH_WANT_COMPAT_IPC_PARSE_VERSION | 4 | select ARCH_WANT_COMPAT_IPC_PARSE_VERSION |
5 | select ARM_AMBA | 5 | select ARM_AMBA |
6 | select ARM_ARCH_TIMER | ||
6 | select CLONE_BACKWARDS | 7 | select CLONE_BACKWARDS |
7 | select COMMON_CLK | 8 | select COMMON_CLK |
8 | select GENERIC_CLOCKEVENTS | 9 | select GENERIC_CLOCKEVENTS |
diff --git a/arch/arm64/include/asm/arch_timer.h b/arch/arm64/include/asm/arch_timer.h new file mode 100644 index 000000000000..91e2a6a6fcd4 --- /dev/null +++ b/arch/arm64/include/asm/arch_timer.h | |||
@@ -0,0 +1,133 @@ | |||
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 | |||
29 | static inline void arch_timer_reg_write(int access, int reg, u32 val) | ||
30 | { | ||
31 | if (access == ARCH_TIMER_PHYS_ACCESS) { | ||
32 | switch (reg) { | ||
33 | case ARCH_TIMER_REG_CTRL: | ||
34 | asm volatile("msr cntp_ctl_el0, %0" : : "r" (val)); | ||
35 | break; | ||
36 | case ARCH_TIMER_REG_TVAL: | ||
37 | asm volatile("msr cntp_tval_el0, %0" : : "r" (val)); | ||
38 | break; | ||
39 | default: | ||
40 | BUILD_BUG(); | ||
41 | } | ||
42 | } else if (access == ARCH_TIMER_VIRT_ACCESS) { | ||
43 | switch (reg) { | ||
44 | case ARCH_TIMER_REG_CTRL: | ||
45 | asm volatile("msr cntv_ctl_el0, %0" : : "r" (val)); | ||
46 | break; | ||
47 | case ARCH_TIMER_REG_TVAL: | ||
48 | asm volatile("msr cntv_tval_el0, %0" : : "r" (val)); | ||
49 | break; | ||
50 | default: | ||
51 | BUILD_BUG(); | ||
52 | } | ||
53 | } else { | ||
54 | BUILD_BUG(); | ||
55 | } | ||
56 | |||
57 | isb(); | ||
58 | } | ||
59 | |||
60 | static inline u32 arch_timer_reg_read(int access, int reg) | ||
61 | { | ||
62 | u32 val; | ||
63 | |||
64 | if (access == ARCH_TIMER_PHYS_ACCESS) { | ||
65 | switch (reg) { | ||
66 | case ARCH_TIMER_REG_CTRL: | ||
67 | asm volatile("mrs %0, cntp_ctl_el0" : "=r" (val)); | ||
68 | break; | ||
69 | case ARCH_TIMER_REG_TVAL: | ||
70 | asm volatile("mrs %0, cntp_tval_el0" : "=r" (val)); | ||
71 | break; | ||
72 | default: | ||
73 | BUILD_BUG(); | ||
74 | } | ||
75 | } else if (access == ARCH_TIMER_VIRT_ACCESS) { | ||
76 | switch (reg) { | ||
77 | case ARCH_TIMER_REG_CTRL: | ||
78 | asm volatile("mrs %0, cntv_ctl_el0" : "=r" (val)); | ||
79 | break; | ||
80 | case ARCH_TIMER_REG_TVAL: | ||
81 | asm volatile("mrs %0, cntv_tval_el0" : "=r" (val)); | ||
82 | break; | ||
83 | default: | ||
84 | BUILD_BUG(); | ||
85 | } | ||
86 | } else { | ||
87 | BUILD_BUG(); | ||
88 | } | ||
89 | |||
90 | return val; | ||
91 | } | ||
92 | |||
93 | static inline u32 arch_timer_get_cntfrq(void) | ||
94 | { | ||
95 | u32 val; | ||
96 | asm volatile("mrs %0, cntfrq_el0" : "=r" (val)); | ||
97 | return val; | ||
98 | } | ||
99 | |||
100 | static inline void __cpuinit arch_counter_set_user_access(void) | ||
101 | { | ||
102 | u32 cntkctl; | ||
103 | |||
104 | /* Disable user access to the timers and the physical counter. */ | ||
105 | asm volatile("mrs %0, cntkctl_el1" : "=r" (cntkctl)); | ||
106 | cntkctl &= ~((3 << 8) | (1 << 0)); | ||
107 | |||
108 | /* Enable user access to the virtual counter and frequency. */ | ||
109 | cntkctl |= (1 << 1); | ||
110 | asm volatile("msr cntkctl_el1, %0" : : "r" (cntkctl)); | ||
111 | } | ||
112 | |||
113 | static inline u64 arch_counter_get_cntpct(void) | ||
114 | { | ||
115 | u64 cval; | ||
116 | |||
117 | isb(); | ||
118 | asm volatile("mrs %0, cntpct_el0" : "=r" (cval)); | ||
119 | |||
120 | return cval; | ||
121 | } | ||
122 | |||
123 | static inline u64 arch_counter_get_cntvct(void) | ||
124 | { | ||
125 | u64 cval; | ||
126 | |||
127 | isb(); | ||
128 | asm volatile("mrs %0, cntvct_el0" : "=r" (cval)); | ||
129 | |||
130 | return cval; | ||
131 | } | ||
132 | |||
133 | #endif | ||
diff --git a/arch/arm64/include/asm/arm_generic.h b/arch/arm64/include/asm/arm_generic.h deleted file mode 100644 index 6ece2f107fa0..000000000000 --- a/arch/arm64/include/asm/arm_generic.h +++ /dev/null | |||
@@ -1,102 +0,0 @@ | |||
1 | /* | ||
2 | * arch/arm64/include/asm/arm_generic.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_ARM_GENERIC_H | ||
20 | #define __ASM_ARM_GENERIC_H | ||
21 | |||
22 | #include <linux/clocksource.h> | ||
23 | |||
24 | #define ARCH_TIMER_CTRL_ENABLE (1 << 0) | ||
25 | #define ARCH_TIMER_CTRL_IMASK (1 << 1) | ||
26 | #define ARCH_TIMER_CTRL_ISTATUS (1 << 2) | ||
27 | |||
28 | #define ARCH_TIMER_REG_CTRL 0 | ||
29 | #define ARCH_TIMER_REG_FREQ 1 | ||
30 | #define ARCH_TIMER_REG_TVAL 2 | ||
31 | |||
32 | static inline void arch_timer_reg_write(int reg, u32 val) | ||
33 | { | ||
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(); | ||
43 | } | ||
44 | |||
45 | isb(); | ||
46 | } | ||
47 | |||
48 | static inline u32 arch_timer_reg_read(int reg) | ||
49 | { | ||
50 | u32 val; | ||
51 | |||
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(); | ||
64 | } | ||
65 | |||
66 | return val; | ||
67 | } | ||
68 | |||
69 | static inline void __cpuinit arch_counter_enable_user_access(void) | ||
70 | { | ||
71 | u32 cntkctl; | ||
72 | |||
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)); | ||
76 | |||
77 | /* Enable user access to the virtual counter and frequency. */ | ||
78 | cntkctl |= (1 << 1); | ||
79 | asm volatile("msr cntkctl_el1, %0" : : "r" (cntkctl)); | ||
80 | } | ||
81 | |||
82 | static inline cycle_t arch_counter_get_cntpct(void) | ||
83 | { | ||
84 | cycle_t cval; | ||
85 | |||
86 | isb(); | ||
87 | asm volatile("mrs %0, cntpct_el0" : "=r" (cval)); | ||
88 | |||
89 | return cval; | ||
90 | } | ||
91 | |||
92 | static inline cycle_t arch_counter_get_cntvct(void) | ||
93 | { | ||
94 | cycle_t cval; | ||
95 | |||
96 | isb(); | ||
97 | asm volatile("mrs %0, cntvct_el0" : "=r" (cval)); | ||
98 | |||
99 | return cval; | ||
100 | } | ||
101 | |||
102 | #endif | ||
diff --git a/arch/arm64/kernel/time.c b/arch/arm64/kernel/time.c index 3b4b7258f492..b0ef18d14c3b 100644 --- a/arch/arm64/kernel/time.c +++ b/arch/arm64/kernel/time.c | |||
@@ -31,8 +31,9 @@ | |||
31 | #include <linux/syscore_ops.h> | 31 | #include <linux/syscore_ops.h> |
32 | #include <linux/timer.h> | 32 | #include <linux/timer.h> |
33 | #include <linux/irq.h> | 33 | #include <linux/irq.h> |
34 | #include <linux/delay.h> | ||
34 | 35 | ||
35 | #include <clocksource/arm_generic.h> | 36 | #include <clocksource/arm_arch_timer.h> |
36 | 37 | ||
37 | #include <asm/thread_info.h> | 38 | #include <asm/thread_info.h> |
38 | #include <asm/stacktrace.h> | 39 | #include <asm/stacktrace.h> |
@@ -59,7 +60,31 @@ unsigned long profile_pc(struct pt_regs *regs) | |||
59 | EXPORT_SYMBOL(profile_pc); | 60 | EXPORT_SYMBOL(profile_pc); |
60 | #endif | 61 | #endif |
61 | 62 | ||
63 | static u64 sched_clock_mult __read_mostly; | ||
64 | |||
65 | unsigned long long notrace sched_clock(void) | ||
66 | { | ||
67 | return arch_timer_read_counter() * sched_clock_mult; | ||
68 | } | ||
69 | |||
70 | int read_current_timer(unsigned long *timer_value) | ||
71 | { | ||
72 | *timer_value = arch_timer_read_counter(); | ||
73 | return 0; | ||
74 | } | ||
75 | |||
62 | void __init time_init(void) | 76 | void __init time_init(void) |
63 | { | 77 | { |
64 | arm_generic_timer_init(); | 78 | u32 arch_timer_rate; |
79 | |||
80 | if (arch_timer_init()) | ||
81 | panic("Unable to initialise architected timer.\n"); | ||
82 | |||
83 | arch_timer_rate = arch_timer_get_rate(); | ||
84 | |||
85 | /* Cache the sched_clock multiplier to save a divide in the hot path. */ | ||
86 | sched_clock_mult = NSEC_PER_SEC / arch_timer_rate; | ||
87 | |||
88 | /* Calibrate the delay loop directly */ | ||
89 | lpj_fine = arch_timer_rate / HZ; | ||
65 | } | 90 | } |