x86: separate generic cpu disabling code from APIC writes in cpu_disable
[safe/jmp/linux-2.6] / include / asm-x86 / smp.h
1 #ifndef _ASM_X86_SMP_H_
2 #define _ASM_X86_SMP_H_
3 #ifndef __ASSEMBLY__
4 #include <linux/cpumask.h>
5 #include <linux/init.h>
6 #include <asm/percpu.h>
7
8 /*
9  * We need the APIC definitions automatically as part of 'smp.h'
10  */
11 #ifdef CONFIG_X86_LOCAL_APIC
12 # include <asm/mpspec.h>
13 # include <asm/apic.h>
14 # ifdef CONFIG_X86_IO_APIC
15 #  include <asm/io_apic.h>
16 # endif
17 #endif
18 #include <asm/pda.h>
19 #include <asm/thread_info.h>
20
21 extern cpumask_t cpu_callout_map;
22 extern cpumask_t cpu_initialized;
23 extern cpumask_t cpu_callin_map;
24
25 extern void (*mtrr_hook)(void);
26 extern void zap_low_mappings(void);
27
28 extern int __cpuinit get_local_pda(int cpu);
29
30 extern int smp_num_siblings;
31 extern unsigned int num_processors;
32 extern cpumask_t cpu_initialized;
33
34 DECLARE_PER_CPU(cpumask_t, cpu_sibling_map);
35 DECLARE_PER_CPU(cpumask_t, cpu_core_map);
36 DECLARE_PER_CPU(u16, cpu_llc_id);
37
38 DECLARE_EARLY_PER_CPU(u16, x86_cpu_to_apicid);
39 DECLARE_EARLY_PER_CPU(u16, x86_bios_cpu_apicid);
40
41 /* Static state in head.S used to set up a CPU */
42 extern struct {
43         void *sp;
44         unsigned short ss;
45 } stack_start;
46
47 struct smp_ops {
48         void (*smp_prepare_boot_cpu)(void);
49         void (*smp_prepare_cpus)(unsigned max_cpus);
50         void (*smp_cpus_done)(unsigned max_cpus);
51
52         void (*smp_send_stop)(void);
53         void (*smp_send_reschedule)(int cpu);
54
55         int (*cpu_up)(unsigned cpu);
56         int (*cpu_disable)(void);
57         void (*cpu_die)(unsigned int cpu);
58         void (*play_dead)(void);
59
60         void (*send_call_func_ipi)(cpumask_t mask);
61         void (*send_call_func_single_ipi)(int cpu);
62 };
63
64 /* Globals due to paravirt */
65 extern void set_cpu_sibling_map(int cpu);
66
67 #ifdef CONFIG_SMP
68 #ifndef CONFIG_PARAVIRT
69 #define startup_ipi_hook(phys_apicid, start_eip, start_esp) do { } while (0)
70 #endif
71 extern struct smp_ops smp_ops;
72
73 static inline void smp_send_stop(void)
74 {
75         smp_ops.smp_send_stop();
76 }
77
78 static inline void smp_prepare_boot_cpu(void)
79 {
80         smp_ops.smp_prepare_boot_cpu();
81 }
82
83 static inline void smp_prepare_cpus(unsigned int max_cpus)
84 {
85         smp_ops.smp_prepare_cpus(max_cpus);
86 }
87
88 static inline void smp_cpus_done(unsigned int max_cpus)
89 {
90         smp_ops.smp_cpus_done(max_cpus);
91 }
92
93 static inline int __cpu_up(unsigned int cpu)
94 {
95         return smp_ops.cpu_up(cpu);
96 }
97
98 static inline int __cpu_disable(void)
99 {
100         return smp_ops.cpu_disable();
101 }
102
103 static inline void __cpu_die(unsigned int cpu)
104 {
105         smp_ops.cpu_die(cpu);
106 }
107
108 static inline void play_dead(void)
109 {
110         smp_ops.play_dead();
111 }
112
113 static inline void smp_send_reschedule(int cpu)
114 {
115         smp_ops.smp_send_reschedule(cpu);
116 }
117
118 static inline void arch_send_call_function_single_ipi(int cpu)
119 {
120         smp_ops.send_call_func_single_ipi(cpu);
121 }
122
123 static inline void arch_send_call_function_ipi(cpumask_t mask)
124 {
125         smp_ops.send_call_func_ipi(mask);
126 }
127
128 void cpu_disable_common(void);
129 void native_smp_prepare_boot_cpu(void);
130 void native_smp_prepare_cpus(unsigned int max_cpus);
131 void native_smp_cpus_done(unsigned int max_cpus);
132 int native_cpu_up(unsigned int cpunum);
133 int native_cpu_disable(void);
134 void native_cpu_die(unsigned int cpu);
135 void native_play_dead(void);
136 void play_dead_common(void);
137
138 void native_send_call_func_ipi(cpumask_t mask);
139 void native_send_call_func_single_ipi(int cpu);
140
141 void smp_store_cpu_info(int id);
142 #define cpu_physical_id(cpu)    per_cpu(x86_cpu_to_apicid, cpu)
143
144 /* We don't mark CPUs online until __cpu_up(), so we need another measure */
145 static inline int num_booting_cpus(void)
146 {
147         return cpus_weight(cpu_callout_map);
148 }
149 #endif /* CONFIG_SMP */
150
151 #if defined(CONFIG_SMP) && defined(CONFIG_HOTPLUG_CPU)
152 extern void prefill_possible_map(void);
153 #else
154 static inline void prefill_possible_map(void)
155 {
156 }
157 #endif
158
159 extern unsigned disabled_cpus __cpuinitdata;
160
161 #ifdef CONFIG_X86_32_SMP
162 /*
163  * This function is needed by all SMP systems. It must _always_ be valid
164  * from the initial startup. We map APIC_BASE very early in page_setup(),
165  * so this is correct in the x86 case.
166  */
167 DECLARE_PER_CPU(int, cpu_number);
168 #define raw_smp_processor_id() (x86_read_percpu(cpu_number))
169 extern int safe_smp_processor_id(void);
170
171 #elif defined(CONFIG_X86_64_SMP)
172 #define raw_smp_processor_id()  read_pda(cpunumber)
173
174 #define stack_smp_processor_id()                                        \
175 ({                                                              \
176         struct thread_info *ti;                                         \
177         __asm__("andq %%rsp,%0; ":"=r" (ti) : "0" (CURRENT_MASK));      \
178         ti->cpu;                                                        \
179 })
180 #define safe_smp_processor_id()         smp_processor_id()
181
182 #else /* !CONFIG_X86_32_SMP && !CONFIG_X86_64_SMP */
183 #define cpu_physical_id(cpu)            boot_cpu_physical_apicid
184 #define safe_smp_processor_id()         0
185 #define stack_smp_processor_id()        0
186 #endif
187
188 #ifdef CONFIG_X86_LOCAL_APIC
189
190 static inline int logical_smp_processor_id(void)
191 {
192         /* we don't want to mark this access volatile - bad code generation */
193         return GET_APIC_LOGICAL_ID(*(u32 *)(APIC_BASE + APIC_LDR));
194 }
195
196 #ifndef CONFIG_X86_64
197 static inline unsigned int read_apic_id(void)
198 {
199         return *(u32 *)(APIC_BASE + APIC_ID);
200 }
201 #else
202 extern unsigned int read_apic_id(void);
203 #endif
204
205
206 # ifdef APIC_DEFINITION
207 extern int hard_smp_processor_id(void);
208 # else
209 #  include <mach_apicdef.h>
210 static inline int hard_smp_processor_id(void)
211 {
212         /* we don't want to mark this access volatile - bad code generation */
213         return GET_APIC_ID(read_apic_id());
214 }
215 # endif /* APIC_DEFINITION */
216
217 #else /* CONFIG_X86_LOCAL_APIC */
218
219 # ifndef CONFIG_SMP
220 #  define hard_smp_processor_id()       0
221 # endif
222
223 #endif /* CONFIG_X86_LOCAL_APIC */
224
225 #ifdef CONFIG_HOTPLUG_CPU
226 #ifdef CONFIG_X86_32
227 extern void reset_lazy_tlbstate(void);
228 #else
229 static inline void reset_lazy_tlbstate(void)
230 { }
231 #endif /* CONFIG_X86_32 */
232 #endif
233
234 #endif /* __ASSEMBLY__ */
235 #endif