]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/x86/include/asm/smp.h
x86: rename all fields of mpf_intel mpf_X to X
[linux-2.6-omap-h63xx.git] / 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 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 extern unsigned disabled_cpus __cpuinitdata;
152
153 #ifdef CONFIG_X86_32_SMP
154 /*
155  * This function is needed by all SMP systems. It must _always_ be valid
156  * from the initial startup. We map APIC_BASE very early in page_setup(),
157  * so this is correct in the x86 case.
158  */
159 #define raw_smp_processor_id() (x86_read_percpu(cpu_number))
160 extern int safe_smp_processor_id(void);
161
162 #elif defined(CONFIG_X86_64_SMP)
163 #define raw_smp_processor_id()  read_pda(cpunumber)
164
165 #define stack_smp_processor_id()                                        \
166 ({                                                              \
167         struct thread_info *ti;                                         \
168         __asm__("andq %%rsp,%0; ":"=r" (ti) : "0" (CURRENT_MASK));      \
169         ti->cpu;                                                        \
170 })
171 #define safe_smp_processor_id()         smp_processor_id()
172
173 #endif
174
175 #ifdef CONFIG_X86_LOCAL_APIC
176
177 #ifndef CONFIG_X86_64
178 static inline int logical_smp_processor_id(void)
179 {
180         /* we don't want to mark this access volatile - bad code generation */
181         return GET_APIC_LOGICAL_ID(*(u32 *)(APIC_BASE + APIC_LDR));
182 }
183
184 #include <mach_apicdef.h>
185 static inline unsigned int read_apic_id(void)
186 {
187         unsigned int reg;
188
189         reg = *(u32 *)(APIC_BASE + APIC_ID);
190
191         return GET_APIC_ID(reg);
192 }
193 #endif
194
195
196 # if defined(APIC_DEFINITION) || defined(CONFIG_X86_64)
197 extern int hard_smp_processor_id(void);
198 # else
199 #include <mach_apicdef.h>
200 static inline int hard_smp_processor_id(void)
201 {
202         /* we don't want to mark this access volatile - bad code generation */
203         return read_apic_id();
204 }
205 # endif /* APIC_DEFINITION */
206
207 #else /* CONFIG_X86_LOCAL_APIC */
208
209 # ifndef CONFIG_SMP
210 #  define hard_smp_processor_id()       0
211 # endif
212
213 #endif /* CONFIG_X86_LOCAL_APIC */
214
215 #endif /* __ASSEMBLY__ */
216 #endif /* _ASM_X86_SMP_H */