diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2009-06-01 13:35:26 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-06-01 13:35:26 -0400 |
commit | c7f7ff179cb9f2f1e0244ef2c80afbb93c74ce2a (patch) | |
tree | 717656ebdba1fea6c763b2c57076c4c6996dfba3 /arch/arm/include | |
parent | a22f277bba321474a01691ae66d5952926459f44 (diff) | |
parent | e03cdade0ca945a04e982525e50fef275190b77b (diff) |
Merge branch 'smp' into devel
Diffstat (limited to 'arch/arm/include')
-rw-r--r-- | arch/arm/include/asm/hardware/arm_twd.h | 21 | ||||
-rw-r--r-- | arch/arm/include/asm/localtimer.h | 63 | ||||
-rw-r--r-- | arch/arm/include/asm/smp.h | 42 | ||||
-rw-r--r-- | arch/arm/include/asm/smp_scu.h | 7 | ||||
-rw-r--r-- | arch/arm/include/asm/smp_twd.h | 12 |
5 files changed, 83 insertions, 62 deletions
diff --git a/arch/arm/include/asm/hardware/arm_twd.h b/arch/arm/include/asm/hardware/arm_twd.h deleted file mode 100644 index e521b70713c8..000000000000 --- a/arch/arm/include/asm/hardware/arm_twd.h +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | #ifndef __ASM_HARDWARE_TWD_H | ||
2 | #define __ASM_HARDWARE_TWD_H | ||
3 | |||
4 | #define TWD_TIMER_LOAD 0x00 | ||
5 | #define TWD_TIMER_COUNTER 0x04 | ||
6 | #define TWD_TIMER_CONTROL 0x08 | ||
7 | #define TWD_TIMER_INTSTAT 0x0C | ||
8 | |||
9 | #define TWD_WDOG_LOAD 0x20 | ||
10 | #define TWD_WDOG_COUNTER 0x24 | ||
11 | #define TWD_WDOG_CONTROL 0x28 | ||
12 | #define TWD_WDOG_INTSTAT 0x2C | ||
13 | #define TWD_WDOG_RESETSTAT 0x30 | ||
14 | #define TWD_WDOG_DISABLE 0x34 | ||
15 | |||
16 | #define TWD_TIMER_CONTROL_ENABLE (1 << 0) | ||
17 | #define TWD_TIMER_CONTROL_ONESHOT (0 << 1) | ||
18 | #define TWD_TIMER_CONTROL_PERIODIC (1 << 1) | ||
19 | #define TWD_TIMER_CONTROL_IT_ENABLE (1 << 2) | ||
20 | |||
21 | #endif | ||
diff --git a/arch/arm/include/asm/localtimer.h b/arch/arm/include/asm/localtimer.h new file mode 100644 index 000000000000..50c7e7cfd670 --- /dev/null +++ b/arch/arm/include/asm/localtimer.h | |||
@@ -0,0 +1,63 @@ | |||
1 | /* | ||
2 | * arch/arm/include/asm/localtimer.h | ||
3 | * | ||
4 | * Copyright (C) 2004-2005 ARM Ltd. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | */ | ||
10 | #ifndef __ASM_ARM_LOCALTIMER_H | ||
11 | #define __ASM_ARM_LOCALTIMER_H | ||
12 | |||
13 | struct clock_event_device; | ||
14 | |||
15 | /* | ||
16 | * Setup a per-cpu timer, whether it be a local timer or dummy broadcast | ||
17 | */ | ||
18 | void percpu_timer_setup(void); | ||
19 | |||
20 | /* | ||
21 | * Called from assembly, this is the local timer IRQ handler | ||
22 | */ | ||
23 | asmlinkage void do_local_timer(struct pt_regs *); | ||
24 | |||
25 | |||
26 | #ifdef CONFIG_LOCAL_TIMERS | ||
27 | |||
28 | #ifdef CONFIG_HAVE_ARM_TWD | ||
29 | |||
30 | #include "smp_twd.h" | ||
31 | |||
32 | #define local_timer_ack() twd_timer_ack() | ||
33 | #define local_timer_stop() twd_timer_stop() | ||
34 | |||
35 | #else | ||
36 | |||
37 | /* | ||
38 | * Platform provides this to acknowledge a local timer IRQ. | ||
39 | * Returns true if the local timer IRQ is to be processed. | ||
40 | */ | ||
41 | int local_timer_ack(void); | ||
42 | |||
43 | /* | ||
44 | * Stop a local timer interrupt. | ||
45 | */ | ||
46 | void local_timer_stop(void); | ||
47 | |||
48 | #endif | ||
49 | |||
50 | /* | ||
51 | * Setup a local timer interrupt for a CPU. | ||
52 | */ | ||
53 | void local_timer_setup(struct clock_event_device *); | ||
54 | |||
55 | #else | ||
56 | |||
57 | static inline void local_timer_stop(void) | ||
58 | { | ||
59 | } | ||
60 | |||
61 | #endif | ||
62 | |||
63 | #endif | ||
diff --git a/arch/arm/include/asm/smp.h b/arch/arm/include/asm/smp.h index 5995935338e1..a06e735b262a 100644 --- a/arch/arm/include/asm/smp.h +++ b/arch/arm/include/asm/smp.h | |||
@@ -41,7 +41,7 @@ extern void show_ipi_list(struct seq_file *p); | |||
41 | asmlinkage void do_IPI(struct pt_regs *regs); | 41 | asmlinkage void do_IPI(struct pt_regs *regs); |
42 | 42 | ||
43 | /* | 43 | /* |
44 | * Setup the SMP cpu_possible_map | 44 | * Setup the set of possible CPUs (via set_cpu_possible) |
45 | */ | 45 | */ |
46 | extern void smp_init_cpus(void); | 46 | extern void smp_init_cpus(void); |
47 | 47 | ||
@@ -56,11 +56,6 @@ extern void smp_store_cpu_info(unsigned int cpuid); | |||
56 | extern void smp_cross_call(const struct cpumask *mask); | 56 | extern void smp_cross_call(const struct cpumask *mask); |
57 | 57 | ||
58 | /* | 58 | /* |
59 | * Broadcast a clock event to other CPUs. | ||
60 | */ | ||
61 | extern void smp_timer_broadcast(const struct cpumask *mask); | ||
62 | |||
63 | /* | ||
64 | * Boot a secondary CPU, and assign it the specified idle task. | 59 | * Boot a secondary CPU, and assign it the specified idle task. |
65 | * This also gives us the initial stack to use for this CPU. | 60 | * This also gives us the initial stack to use for this CPU. |
66 | */ | 61 | */ |
@@ -101,43 +96,8 @@ extern void arch_send_call_function_ipi_mask(const struct cpumask *mask); | |||
101 | #define arch_send_call_function_ipi_mask arch_send_call_function_ipi_mask | 96 | #define arch_send_call_function_ipi_mask arch_send_call_function_ipi_mask |
102 | 97 | ||
103 | /* | 98 | /* |
104 | * Local timer interrupt handling function (can be IPI'ed). | ||
105 | */ | ||
106 | extern void local_timer_interrupt(void); | ||
107 | |||
108 | #ifdef CONFIG_LOCAL_TIMERS | ||
109 | |||
110 | /* | ||
111 | * Stop a local timer interrupt. | ||
112 | */ | ||
113 | extern void local_timer_stop(void); | ||
114 | |||
115 | /* | ||
116 | * Platform provides this to acknowledge a local timer IRQ | ||
117 | */ | ||
118 | extern int local_timer_ack(void); | ||
119 | |||
120 | #else | ||
121 | |||
122 | static inline void local_timer_stop(void) | ||
123 | { | ||
124 | } | ||
125 | |||
126 | #endif | ||
127 | |||
128 | /* | ||
129 | * Setup a local timer interrupt for a CPU. | ||
130 | */ | ||
131 | extern void local_timer_setup(void); | ||
132 | |||
133 | /* | ||
134 | * show local interrupt info | 99 | * show local interrupt info |
135 | */ | 100 | */ |
136 | extern void show_local_irqs(struct seq_file *); | 101 | extern void show_local_irqs(struct seq_file *); |
137 | 102 | ||
138 | /* | ||
139 | * Called from assembly, this is the local timer IRQ handler | ||
140 | */ | ||
141 | asmlinkage void do_local_timer(struct pt_regs *); | ||
142 | |||
143 | #endif /* ifndef __ASM_ARM_SMP_H */ | 103 | #endif /* ifndef __ASM_ARM_SMP_H */ |
diff --git a/arch/arm/include/asm/smp_scu.h b/arch/arm/include/asm/smp_scu.h new file mode 100644 index 000000000000..2376835015d6 --- /dev/null +++ b/arch/arm/include/asm/smp_scu.h | |||
@@ -0,0 +1,7 @@ | |||
1 | #ifndef __ASMARM_ARCH_SCU_H | ||
2 | #define __ASMARM_ARCH_SCU_H | ||
3 | |||
4 | unsigned int scu_get_core_count(void __iomem *); | ||
5 | void scu_enable(void __iomem *); | ||
6 | |||
7 | #endif | ||
diff --git a/arch/arm/include/asm/smp_twd.h b/arch/arm/include/asm/smp_twd.h new file mode 100644 index 000000000000..7be0978b2625 --- /dev/null +++ b/arch/arm/include/asm/smp_twd.h | |||
@@ -0,0 +1,12 @@ | |||
1 | #ifndef __ASMARM_SMP_TWD_H | ||
2 | #define __ASMARM_SMP_TWD_H | ||
3 | |||
4 | struct clock_event_device; | ||
5 | |||
6 | extern void __iomem *twd_base; | ||
7 | |||
8 | void twd_timer_stop(void); | ||
9 | int twd_timer_ack(void); | ||
10 | void twd_timer_setup(struct clock_event_device *); | ||
11 | |||
12 | #endif | ||