x86: smp.h move zap_low_mappings declartion to tlbflush.h
[safe/jmp/linux-2.6] / arch / x86 / include / asm / 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 int __cpuinit get_local_pda(int cpu);
26
27 extern int smp_num_siblings;
28 extern unsigned int num_processors;
29 extern cpumask_t cpu_initialized;
30
31 DECLARE_PER_CPU(cpumask_t, cpu_sibling_map);
32 DECLARE_PER_CPU(cpumask_t, cpu_core_map);
33 DECLARE_PER_CPU(u16, cpu_llc_id);
34 #ifdef CONFIG_X86_32
35 DECLARE_PER_CPU(int, cpu_number);
36 #endif
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)(const struct cpumask *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(const struct cpumask *mask);
139 void native_send_call_func_single_ipi(int cpu);
140
141 extern void prefill_possible_map(void);
142
143 void smp_store_cpu_info(int id);
144 #define cpu_physical_id(cpu)    per_cpu(x86_cpu_to_apicid, cpu)
145
146 /* We don't mark CPUs online until __cpu_up(), so we need another measure */
147 static inline int num_booting_cpus(void)
148 {
149         return cpus_weight(cpu_callout_map);
150 }
151 #else
152 static inline void prefill_possible_map(void)
153 {
154 }
155 #endif /* CONFIG_SMP */
156
157 extern unsigned disabled_cpus __cpuinitdata;
158
159 #ifdef CONFIG_X86_32_SMP
160 /*
161  * This function is needed by all SMP systems. It must _always_ be valid
162  * from the initial startup. We map APIC_BASE very early in page_setup(),
163  * so this is correct in the x86 case.
164  */
165 #define raw_smp_processor_id() (x86_read_percpu(cpu_number))
166 extern int safe_smp_processor_id(void);
167
168 #elif defined(CONFIG_X86_64_SMP)
169 #define raw_smp_processor_id()  read_pda(cpunumber)
170
171 #define stack_smp_processor_id()                                        \
172 ({                                                              \
173         struct thread_info *ti;                                         \
174         __asm__("andq %%rsp,%0; ":"=r" (ti) : "0" (CURRENT_MASK));      \
175         ti->cpu;                                                        \
176 })
177 #define safe_smp_processor_id()         smp_processor_id()
178
179 #else /* !CONFIG_X86_32_SMP && !CONFIG_X86_64_SMP */
180 #define cpu_physical_id(cpu)            boot_cpu_physical_apicid
181 #define safe_smp_processor_id()         0
182 #define stack_smp_processor_id()        0
183 #endif
184
185 #ifdef CONFIG_X86_LOCAL_APIC
186
187 #ifndef CONFIG_X86_64
188 static inline int logical_smp_processor_id(void)
189 {
190         /* we don't want to mark this access volatile - bad code generation */
191         return GET_APIC_LOGICAL_ID(*(u32 *)(APIC_BASE + APIC_LDR));
192 }
193
194 #include <mach_apicdef.h>
195 static inline unsigned int read_apic_id(void)
196 {
197         unsigned int reg;
198
199         reg = *(u32 *)(APIC_BASE + APIC_ID);
200
201         return GET_APIC_ID(reg);
202 }
203 #endif
204
205
206 # if defined(APIC_DEFINITION) || defined(CONFIG_X86_64)
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 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_X86_HAS_BOOT_CPU_ID
226 extern unsigned char boot_cpu_id;
227 #else
228 #define boot_cpu_id     0
229 #endif
230
231 #endif /* __ASSEMBLY__ */
232 #endif /* _ASM_X86_SMP_H */