x86: add cpu hotplug hooks into smp_ops
[deliverable/linux.git] / include / asm-x86 / smp.h
CommitLineData
c27cfeff
GC
1#ifndef _ASM_X86_SMP_H_
2#define _ASM_X86_SMP_H_
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);
23ca4bba
MT
37
38DECLARE_EARLY_PER_CPU(u16, x86_cpu_to_apicid);
39DECLARE_EARLY_PER_CPU(u16, x86_bios_cpu_apicid);
7e1efc0c 40
9d97d0da
GOC
41/* Static state in head.S used to set up a CPU */
42extern struct {
43 void *sp;
44 unsigned short ss;
45} stack_start;
46
16694024
GC
47struct smp_ops {
48 void (*smp_prepare_boot_cpu)(void);
49 void (*smp_prepare_cpus)(unsigned max_cpus);
16694024
GC
50 void (*smp_cpus_done)(unsigned max_cpus);
51
52 void (*smp_send_stop)(void);
53 void (*smp_send_reschedule)(int cpu);
3b16cf87 54
93be71b6
AN
55 int (*cpu_up)(unsigned cpu);
56 int (*cpu_disable)(void);
57 void (*cpu_die)(unsigned int cpu);
58 void (*play_dead)(void);
59
3b16cf87
JA
60 void (*send_call_func_ipi)(cpumask_t mask);
61 void (*send_call_func_single_ipi)(int cpu);
16694024
GC
62};
63
14522076
GC
64/* Globals due to paravirt */
65extern void set_cpu_sibling_map(int cpu);
66
c76cb368 67#ifdef CONFIG_SMP
d0173aea
GOC
68#ifndef CONFIG_PARAVIRT
69#define startup_ipi_hook(phys_apicid, start_eip, start_esp) do { } while (0)
70#endif
c76cb368 71extern struct smp_ops smp_ops;
8678969e 72
377d6984
GC
73static inline void smp_send_stop(void)
74{
75 smp_ops.smp_send_stop();
76}
77
1e3fac83
GC
78static inline void smp_prepare_boot_cpu(void)
79{
80 smp_ops.smp_prepare_boot_cpu();
81}
82
7557da67
GC
83static inline void smp_prepare_cpus(unsigned int max_cpus)
84{
85 smp_ops.smp_prepare_cpus(max_cpus);
86}
87
c5597649
GC
88static inline void smp_cpus_done(unsigned int max_cpus)
89{
90 smp_ops.smp_cpus_done(max_cpus);
91}
92
71d19549
GC
93static inline int __cpu_up(unsigned int cpu)
94{
95 return smp_ops.cpu_up(cpu);
96}
97
93be71b6
AN
98static inline int __cpu_disable(void)
99{
100 return smp_ops.cpu_disable();
101}
102
103static inline void __cpu_die(unsigned int cpu)
104{
105 smp_ops.cpu_die(cpu);
106}
107
108static inline void play_dead(void)
109{
110 smp_ops.play_dead();
111}
112
8678969e
GC
113static inline void smp_send_reschedule(int cpu)
114{
115 smp_ops.smp_send_reschedule(cpu);
116}
64b1a21e 117
3b16cf87
JA
118static inline void arch_send_call_function_single_ipi(int cpu)
119{
120 smp_ops.send_call_func_single_ipi(cpu);
121}
122
123static inline void arch_send_call_function_ipi(cpumask_t mask)
64b1a21e 124{
3b16cf87 125 smp_ops.send_call_func_ipi(mask);
64b1a21e 126}
71d19549 127
1e3fac83 128void native_smp_prepare_boot_cpu(void);
7557da67 129void native_smp_prepare_cpus(unsigned int max_cpus);
c5597649 130void native_smp_cpus_done(unsigned int max_cpus);
71d19549 131int native_cpu_up(unsigned int cpunum);
93be71b6
AN
132int native_cpu_disable(void);
133void native_cpu_die(unsigned int cpu);
134void native_play_dead(void);
135
3b16cf87
JA
136void native_send_call_func_ipi(cpumask_t mask);
137void native_send_call_func_single_ipi(int cpu);
93b016f8 138
1d89a7f0 139void smp_store_cpu_info(int id);
c70dcb74 140#define cpu_physical_id(cpu) per_cpu(x86_cpu_to_apicid, cpu)
a9c057c1
GC
141
142/* We don't mark CPUs online until __cpu_up(), so we need another measure */
143static inline int num_booting_cpus(void)
144{
145 return cpus_weight(cpu_callout_map);
146}
4a701737
IM
147#endif /* CONFIG_SMP */
148
149#if defined(CONFIG_SMP) && defined(CONFIG_HOTPLUG_CPU)
150extern void prefill_possible_map(void);
329513a3
YL
151#else
152static inline void prefill_possible_map(void)
153{
154}
4a701737 155#endif
a9c057c1 156
2fe60147
AS
157extern unsigned disabled_cpus __cpuinitdata;
158
a9c057c1
GC
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 */
165DECLARE_PER_CPU(int, cpu_number);
166#define raw_smp_processor_id() (x86_read_percpu(cpu_number))
167extern int safe_smp_processor_id(void);
168
169#elif defined(CONFIG_X86_64_SMP)
170#define raw_smp_processor_id() read_pda(cpunumber)
171
172#define stack_smp_processor_id() \
173({ \
174 struct thread_info *ti; \
175 __asm__("andq %%rsp,%0; ":"=r" (ti) : "0" (CURRENT_MASK)); \
176 ti->cpu; \
177})
178#define safe_smp_processor_id() smp_processor_id()
179
180#else /* !CONFIG_X86_32_SMP && !CONFIG_X86_64_SMP */
c70dcb74 181#define cpu_physical_id(cpu) boot_cpu_physical_apicid
a9c057c1
GC
182#define safe_smp_processor_id() 0
183#define stack_smp_processor_id() 0
c76cb368 184#endif
16694024 185
1b000843
GC
186#ifdef CONFIG_X86_LOCAL_APIC
187
188static 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
a24eae88 194#ifndef CONFIG_X86_64
05f2d12c
JS
195static inline unsigned int read_apic_id(void)
196{
197 return *(u32 *)(APIC_BASE + APIC_ID);
198}
ac23d4ee
JS
199#else
200extern unsigned int read_apic_id(void);
201#endif
202
05f2d12c 203
1b000843
GC
204# ifdef APIC_DEFINITION
205extern int hard_smp_processor_id(void);
206# else
207# include <mach_apicdef.h>
208static inline int hard_smp_processor_id(void)
209{
210 /* we don't want to mark this access volatile - bad code generation */
05f2d12c 211 return GET_APIC_ID(read_apic_id());
1b000843
GC
212}
213# endif /* APIC_DEFINITION */
214
215#else /* CONFIG_X86_LOCAL_APIC */
216
217# ifndef CONFIG_SMP
218# define hard_smp_processor_id() 0
219# endif
220
221#endif /* CONFIG_X86_LOCAL_APIC */
222
1dbb4726 223#ifdef CONFIG_HOTPLUG_CPU
1dbb4726 224extern void cpu_uninit(void);
1dbb4726
GC
225#endif
226
c27cfeff
GC
227#endif /* __ASSEMBLY__ */
228#endif
This page took 0.080353 seconds and 5 git commands to generate.