x86: merge SMP definitions of smp.h
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-x86 / smp.h
blob57b3d86dd9edb5ca3d505522ae2296b941a9bace
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>
8 /*
9 * We need the APIC definitions automatically as part of 'smp.h'
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>
21 extern cpumask_t cpu_callout_map;
23 extern int smp_num_siblings;
24 extern unsigned int num_processors;
25 extern cpumask_t cpu_initialized;
27 extern u16 x86_cpu_to_apicid_init[];
28 extern u16 x86_bios_cpu_apicid_init[];
29 extern void *x86_cpu_to_apicid_early_ptr;
30 extern void *x86_bios_cpu_apicid_early_ptr;
32 DECLARE_PER_CPU(cpumask_t, cpu_sibling_map);
33 DECLARE_PER_CPU(cpumask_t, cpu_core_map);
34 DECLARE_PER_CPU(u16, cpu_llc_id);
35 DECLARE_PER_CPU(u16, x86_cpu_to_apicid);
36 DECLARE_PER_CPU(u16, x86_bios_cpu_apicid);
39 * Trampoline 80x86 program as an array.
41 extern const unsigned char trampoline_data [];
42 extern const unsigned char trampoline_end [];
43 extern unsigned char *trampoline_base;
45 /* Static state in head.S used to set up a CPU */
46 extern struct {
47 void *sp;
48 unsigned short ss;
49 } stack_start;
51 extern unsigned long init_rsp;
52 extern unsigned long initial_code;
54 struct smp_ops {
55 void (*smp_prepare_boot_cpu)(void);
56 void (*smp_prepare_cpus)(unsigned max_cpus);
57 int (*cpu_up)(unsigned cpu);
58 void (*smp_cpus_done)(unsigned max_cpus);
60 void (*smp_send_stop)(void);
61 void (*smp_send_reschedule)(int cpu);
62 int (*smp_call_function_mask)(cpumask_t mask,
63 void (*func)(void *info), void *info,
64 int wait);
67 /* Globals due to paravirt */
68 extern void set_cpu_sibling_map(int cpu);
70 #ifdef CONFIG_SMP
71 #ifndef CONFIG_PARAVIRT
72 #define startup_ipi_hook(phys_apicid, start_eip, start_esp) do { } while (0)
73 #endif
74 extern struct smp_ops smp_ops;
76 static inline void smp_send_stop(void)
78 smp_ops.smp_send_stop();
81 static inline void smp_prepare_boot_cpu(void)
83 smp_ops.smp_prepare_boot_cpu();
86 static inline void smp_prepare_cpus(unsigned int max_cpus)
88 smp_ops.smp_prepare_cpus(max_cpus);
91 static inline void smp_cpus_done(unsigned int max_cpus)
93 smp_ops.smp_cpus_done(max_cpus);
96 static inline int __cpu_up(unsigned int cpu)
98 return smp_ops.cpu_up(cpu);
101 static inline void smp_send_reschedule(int cpu)
103 smp_ops.smp_send_reschedule(cpu);
106 static inline int smp_call_function_mask(cpumask_t mask,
107 void (*func) (void *info), void *info,
108 int wait)
110 return smp_ops.smp_call_function_mask(mask, func, info, wait);
113 void native_smp_prepare_boot_cpu(void);
114 void native_smp_prepare_cpus(unsigned int max_cpus);
115 void native_smp_cpus_done(unsigned int max_cpus);
116 int native_cpu_up(unsigned int cpunum);
118 extern int __cpu_disable(void);
119 extern void __cpu_die(unsigned int cpu);
121 extern unsigned disabled_cpus;
122 extern void prefill_possible_map(void);
124 #define SMP_TRAMPOLINE_BASE 0x6000
125 extern unsigned long setup_trampoline(void);
127 void smp_store_cpu_info(int id);
128 #define cpu_physical_id(cpu) per_cpu(x86_cpu_to_apicid, cpu)
130 /* We don't mark CPUs online until __cpu_up(), so we need another measure */
131 static inline int num_booting_cpus(void)
133 return cpus_weight(cpu_callout_map);
135 #endif /* CONFIG_SMP */
137 #ifdef CONFIG_X86_32_SMP
139 * This function is needed by all SMP systems. It must _always_ be valid
140 * from the initial startup. We map APIC_BASE very early in page_setup(),
141 * so this is correct in the x86 case.
143 DECLARE_PER_CPU(int, cpu_number);
144 #define raw_smp_processor_id() (x86_read_percpu(cpu_number))
145 extern int safe_smp_processor_id(void);
147 #elif defined(CONFIG_X86_64_SMP)
148 #define raw_smp_processor_id() read_pda(cpunumber)
150 #define stack_smp_processor_id() \
151 ({ \
152 struct thread_info *ti; \
153 __asm__("andq %%rsp,%0; ":"=r" (ti) : "0" (CURRENT_MASK)); \
154 ti->cpu; \
156 #define safe_smp_processor_id() smp_processor_id()
158 #else /* !CONFIG_X86_32_SMP && !CONFIG_X86_64_SMP */
159 #define cpu_physical_id(cpu) boot_cpu_physical_apicid
160 #define safe_smp_processor_id() 0
161 #define stack_smp_processor_id() 0
162 #endif
164 #ifdef CONFIG_X86_32
165 # include "smp_32.h"
166 #else
167 # include "smp_64.h"
168 #endif
170 #ifdef CONFIG_X86_LOCAL_APIC
172 static inline int logical_smp_processor_id(void)
174 /* we don't want to mark this access volatile - bad code generation */
175 return GET_APIC_LOGICAL_ID(*(u32 *)(APIC_BASE + APIC_LDR));
178 # ifdef APIC_DEFINITION
179 extern int hard_smp_processor_id(void);
180 # else
181 # include <mach_apicdef.h>
182 static inline int hard_smp_processor_id(void)
184 /* we don't want to mark this access volatile - bad code generation */
185 return GET_APIC_ID(*(u32 *)(APIC_BASE + APIC_ID));
187 # endif /* APIC_DEFINITION */
189 #else /* CONFIG_X86_LOCAL_APIC */
191 # ifndef CONFIG_SMP
192 # define hard_smp_processor_id() 0
193 # endif
195 #endif /* CONFIG_X86_LOCAL_APIC */
197 #ifdef CONFIG_HOTPLUG_CPU
198 extern void cpu_exit_clear(void);
199 extern void cpu_uninit(void);
200 extern void remove_siblinginfo(int cpu);
201 #endif
203 extern void smp_alloc_memory(void);
204 extern void lock_ipi_call_lock(void);
205 extern void unlock_ipi_call_lock(void);
206 #endif /* __ASSEMBLY__ */
207 #endif