Merge branch 'master' into next
[linux-2.6-block.git] / arch / x86 / include / asm / smp.h
CommitLineData
1965aae3
PA
1#ifndef _ASM_X86_SMP_H
2#define _ASM_X86_SMP_H
c27cfeff 3#ifndef __ASSEMBLY__
53ebef49 4#include <linux/cpumask.h>
93b016f8 5#include <linux/init.h>
7e1efc0c 6#include <asm/percpu.h>
53ebef49 7
b23dab08
GC
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
53ebef49 21extern cpumask_t cpu_callout_map;
8be9ac85
GC
22extern cpumask_t cpu_initialized;
23extern cpumask_t cpu_callin_map;
24
25extern void (*mtrr_hook)(void);
26extern void zap_low_mappings(void);
53ebef49 27
7c33b1e6
JF
28extern int __cpuinit get_local_pda(int cpu);
29
53ebef49
GC
30extern int smp_num_siblings;
31extern unsigned int num_processors;
cb3c8b90 32extern cpumask_t cpu_initialized;
c27cfeff 33
7e1efc0c
GOC
34DECLARE_PER_CPU(cpumask_t, cpu_sibling_map);
35DECLARE_PER_CPU(cpumask_t, cpu_core_map);
36DECLARE_PER_CPU(u16, cpu_llc_id);
fb26132b
JS
37#ifdef CONFIG_X86_32
38DECLARE_PER_CPU(int, cpu_number);
39#endif
23ca4bba
MT
40
41DECLARE_EARLY_PER_CPU(u16, x86_cpu_to_apicid);
42DECLARE_EARLY_PER_CPU(u16, x86_bios_cpu_apicid);
7e1efc0c 43
9d97d0da
GOC
44/* Static state in head.S used to set up a CPU */
45extern struct {
46 void *sp;
47 unsigned short ss;
48} stack_start;
49
16694024
GC
50struct smp_ops {
51 void (*smp_prepare_boot_cpu)(void);
52 void (*smp_prepare_cpus)(unsigned max_cpus);
16694024
GC
53 void (*smp_cpus_done)(unsigned max_cpus);
54
55 void (*smp_send_stop)(void);
56 void (*smp_send_reschedule)(int cpu);
3b16cf87 57
93be71b6
AN
58 int (*cpu_up)(unsigned cpu);
59 int (*cpu_disable)(void);
60 void (*cpu_die)(unsigned int cpu);
61 void (*play_dead)(void);
62
3b16cf87
JA
63 void (*send_call_func_ipi)(cpumask_t mask);
64 void (*send_call_func_single_ipi)(int cpu);
16694024
GC
65};
66
14522076
GC
67/* Globals due to paravirt */
68extern void set_cpu_sibling_map(int cpu);
69
c76cb368 70#ifdef CONFIG_SMP
d0173aea
GOC
71#ifndef CONFIG_PARAVIRT
72#define startup_ipi_hook(phys_apicid, start_eip, start_esp) do { } while (0)
73#endif
c76cb368 74extern struct smp_ops smp_ops;
8678969e 75
377d6984
GC
76static inline void smp_send_stop(void)
77{
78 smp_ops.smp_send_stop();
79}
80
1e3fac83
GC
81static inline void smp_prepare_boot_cpu(void)
82{
83 smp_ops.smp_prepare_boot_cpu();
84}
85
7557da67
GC
86static inline void smp_prepare_cpus(unsigned int max_cpus)
87{
88 smp_ops.smp_prepare_cpus(max_cpus);
89}
90
c5597649
GC
91static inline void smp_cpus_done(unsigned int max_cpus)
92{
93 smp_ops.smp_cpus_done(max_cpus);
94}
95
71d19549
GC
96static inline int __cpu_up(unsigned int cpu)
97{
98 return smp_ops.cpu_up(cpu);
99}
100
93be71b6
AN
101static inline int __cpu_disable(void)
102{
103 return smp_ops.cpu_disable();
104}
105
106static inline void __cpu_die(unsigned int cpu)
107{
108 smp_ops.cpu_die(cpu);
109}
110
111static inline void play_dead(void)
112{
113 smp_ops.play_dead();
114}
115
8678969e
GC
116static inline void smp_send_reschedule(int cpu)
117{
118 smp_ops.smp_send_reschedule(cpu);
119}
64b1a21e 120
3b16cf87
JA
121static inline void arch_send_call_function_single_ipi(int cpu)
122{
123 smp_ops.send_call_func_single_ipi(cpu);
124}
125
126static inline void arch_send_call_function_ipi(cpumask_t mask)
64b1a21e 127{
3b16cf87 128 smp_ops.send_call_func_ipi(mask);
64b1a21e 129}
71d19549 130
8227dce7 131void cpu_disable_common(void);
1e3fac83 132void native_smp_prepare_boot_cpu(void);
7557da67 133void native_smp_prepare_cpus(unsigned int max_cpus);
c5597649 134void native_smp_cpus_done(unsigned int max_cpus);
71d19549 135int native_cpu_up(unsigned int cpunum);
93be71b6
AN
136int native_cpu_disable(void);
137void native_cpu_die(unsigned int cpu);
138void native_play_dead(void);
a21f5d88 139void play_dead_common(void);
93be71b6 140
3b16cf87
JA
141void native_send_call_func_ipi(cpumask_t mask);
142void native_send_call_func_single_ipi(int cpu);
93b016f8 143
14adf855
CE
144extern void prefill_possible_map(void);
145
1d89a7f0 146void smp_store_cpu_info(int id);
c70dcb74 147#define cpu_physical_id(cpu) per_cpu(x86_cpu_to_apicid, cpu)
a9c057c1
GC
148
149/* We don't mark CPUs online until __cpu_up(), so we need another measure */
150static inline int num_booting_cpus(void)
151{
152 return cpus_weight(cpu_callout_map);
153}
329513a3
YL
154#else
155static inline void prefill_possible_map(void)
156{
157}
14adf855 158#endif /* CONFIG_SMP */
a9c057c1 159
2fe60147
AS
160extern unsigned disabled_cpus __cpuinitdata;
161
a9c057c1
GC
162#ifdef CONFIG_X86_32_SMP
163/*
164 * This function is needed by all SMP systems. It must _always_ be valid
165 * from the initial startup. We map APIC_BASE very early in page_setup(),
166 * so this is correct in the x86 case.
167 */
a9c057c1
GC
168#define raw_smp_processor_id() (x86_read_percpu(cpu_number))
169extern 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 */
c70dcb74 183#define cpu_physical_id(cpu) boot_cpu_physical_apicid
a9c057c1
GC
184#define safe_smp_processor_id() 0
185#define stack_smp_processor_id() 0
c76cb368 186#endif
16694024 187
1b000843
GC
188#ifdef CONFIG_X86_LOCAL_APIC
189
1b374e4d 190#ifndef CONFIG_X86_64
1b000843
GC
191static inline int logical_smp_processor_id(void)
192{
193 /* we don't want to mark this access volatile - bad code generation */
194 return GET_APIC_LOGICAL_ID(*(u32 *)(APIC_BASE + APIC_LDR));
195}
196
4c9961d5 197#include <mach_apicdef.h>
05f2d12c
JS
198static inline unsigned int read_apic_id(void)
199{
4c9961d5
YL
200 unsigned int reg;
201
202 reg = *(u32 *)(APIC_BASE + APIC_ID);
203
204 return GET_APIC_ID(reg);
05f2d12c 205}
ac23d4ee
JS
206#endif
207
05f2d12c 208
0c81c746 209# if defined(APIC_DEFINITION) || defined(CONFIG_X86_64)
1b000843
GC
210extern int hard_smp_processor_id(void);
211# else
4c9961d5 212#include <mach_apicdef.h>
1b000843
GC
213static inline int hard_smp_processor_id(void)
214{
215 /* we don't want to mark this access volatile - bad code generation */
4c9961d5 216 return read_apic_id();
1b000843
GC
217}
218# endif /* APIC_DEFINITION */
219
220#else /* CONFIG_X86_LOCAL_APIC */
221
222# ifndef CONFIG_SMP
223# define hard_smp_processor_id() 0
224# endif
225
226#endif /* CONFIG_X86_LOCAL_APIC */
227
b3572e36
JB
228#ifdef CONFIG_X86_HAS_BOOT_CPU_ID
229extern unsigned char boot_cpu_id;
230#else
231#define boot_cpu_id 0
232#endif
233
c27cfeff 234#endif /* __ASSEMBLY__ */
1965aae3 235#endif /* _ASM_X86_SMP_H */