blob: 8bdaa4a25f05ad40171817a181de21d13d7d754f [file] [log] [blame]
Glauber Costac27cfeff2008-03-03 14:12:29 -03001#ifndef _ASM_X86_SMP_H_
2#define _ASM_X86_SMP_H_
3#ifndef __ASSEMBLY__
Glauber Costa53ebef42008-03-03 14:12:31 -03004#include <linux/cpumask.h>
Glauber Costa93b016f2008-03-03 14:12:40 -03005#include <linux/init.h>
Glauber de Oliveira Costa7e1efc02008-03-19 14:25:18 -03006#include <asm/percpu.h>
Glauber Costa53ebef42008-03-03 14:12:31 -03007
Glauber Costab23dab02008-03-27 14:06:00 -03008/*
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
Glauber Costa53ebef42008-03-03 14:12:31 -030021extern cpumask_t cpu_callout_map;
Glauber Costa8be9ac82008-03-27 14:06:04 -030022extern cpumask_t cpu_initialized;
23extern cpumask_t cpu_callin_map;
24
25extern void (*mtrr_hook)(void);
26extern void zap_low_mappings(void);
Glauber Costa53ebef42008-03-03 14:12:31 -030027
Jeremy Fitzhardinge7c33b1e2008-07-08 15:06:29 -070028extern int __cpuinit get_local_pda(int cpu);
29
Glauber Costa53ebef42008-03-03 14:12:31 -030030extern int smp_num_siblings;
31extern unsigned int num_processors;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030032extern cpumask_t cpu_initialized;
Glauber Costac27cfeff2008-03-03 14:12:29 -030033
Glauber de Oliveira Costa7e1efc02008-03-19 14:25:18 -030034DECLARE_PER_CPU(cpumask_t, cpu_sibling_map);
35DECLARE_PER_CPU(cpumask_t, cpu_core_map);
36DECLARE_PER_CPU(u16, cpu_llc_id);
Mike Travis23ca4bb2008-05-12 21:21:12 +020037
38DECLARE_EARLY_PER_CPU(u16, x86_cpu_to_apicid);
39DECLARE_EARLY_PER_CPU(u16, x86_bios_cpu_apicid);
Glauber de Oliveira Costa7e1efc02008-03-19 14:25:18 -030040
Glauber de Oliveira Costa9d97d0d2008-03-19 14:25:57 -030041/* Static state in head.S used to set up a CPU */
42extern struct {
43 void *sp;
44 unsigned short ss;
45} stack_start;
46
Glauber Costa16694022008-03-03 14:12:32 -030047struct smp_ops {
48 void (*smp_prepare_boot_cpu)(void);
49 void (*smp_prepare_cpus)(unsigned max_cpus);
Glauber Costa16694022008-03-03 14:12:32 -030050 void (*smp_cpus_done)(unsigned max_cpus);
51
52 void (*smp_send_stop)(void);
53 void (*smp_send_reschedule)(int cpu);
Jens Axboe3b16cf82008-06-26 11:21:54 +020054
Alex Nixon93be71b2008-08-22 11:52:11 +010055 int (*cpu_up)(unsigned cpu);
56 int (*cpu_disable)(void);
57 void (*cpu_die)(unsigned int cpu);
58 void (*play_dead)(void);
59
Jens Axboe3b16cf82008-06-26 11:21:54 +020060 void (*send_call_func_ipi)(cpumask_t mask);
61 void (*send_call_func_single_ipi)(int cpu);
Glauber Costa16694022008-03-03 14:12:32 -030062};
63
Glauber Costa14522072008-03-03 14:12:59 -030064/* Globals due to paravirt */
65extern void set_cpu_sibling_map(int cpu);
66
Glauber Costac76cb362008-03-03 14:12:33 -030067#ifdef CONFIG_SMP
Glauber de Oliveira Costad0173ae2008-03-19 14:24:59 -030068#ifndef CONFIG_PARAVIRT
69#define startup_ipi_hook(phys_apicid, start_eip, start_esp) do { } while (0)
70#endif
Glauber Costac76cb362008-03-03 14:12:33 -030071extern struct smp_ops smp_ops;
Glauber Costa86789692008-03-03 14:12:34 -030072
Glauber Costa377d6982008-03-03 14:12:51 -030073static inline void smp_send_stop(void)
74{
75 smp_ops.smp_send_stop();
76}
77
Glauber Costa1e3fac82008-03-03 14:12:37 -030078static inline void smp_prepare_boot_cpu(void)
79{
80 smp_ops.smp_prepare_boot_cpu();
81}
82
Glauber Costa7557da62008-03-03 14:12:38 -030083static inline void smp_prepare_cpus(unsigned int max_cpus)
84{
85 smp_ops.smp_prepare_cpus(max_cpus);
86}
87
Glauber Costac5597642008-03-03 14:12:39 -030088static inline void smp_cpus_done(unsigned int max_cpus)
89{
90 smp_ops.smp_cpus_done(max_cpus);
91}
92
Glauber Costa71d19542008-03-03 14:12:36 -030093static inline int __cpu_up(unsigned int cpu)
94{
95 return smp_ops.cpu_up(cpu);
96}
97
Alex Nixon93be71b2008-08-22 11:52:11 +010098static 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
Glauber Costa86789692008-03-03 14:12:34 -0300113static inline void smp_send_reschedule(int cpu)
114{
115 smp_ops.smp_send_reschedule(cpu);
116}
Glauber Costa64b1a21e02008-03-03 14:12:35 -0300117
Jens Axboe3b16cf82008-06-26 11:21:54 +0200118static inline void arch_send_call_function_single_ipi(int cpu)
Glauber Costa64b1a21e02008-03-03 14:12:35 -0300119{
Jens Axboe3b16cf82008-06-26 11:21:54 +0200120 smp_ops.send_call_func_single_ipi(cpu);
121}
122
123static inline void arch_send_call_function_ipi(cpumask_t mask)
124{
125 smp_ops.send_call_func_ipi(mask);
Glauber Costa64b1a21e02008-03-03 14:12:35 -0300126}
Glauber Costa71d19542008-03-03 14:12:36 -0300127
Alex Nixon8227dce2008-08-22 11:52:14 +0100128void cpu_disable_common(void);
Glauber Costa1e3fac82008-03-03 14:12:37 -0300129void native_smp_prepare_boot_cpu(void);
Glauber Costa7557da62008-03-03 14:12:38 -0300130void native_smp_prepare_cpus(unsigned int max_cpus);
Glauber Costac5597642008-03-03 14:12:39 -0300131void native_smp_cpus_done(unsigned int max_cpus);
Glauber Costa71d19542008-03-03 14:12:36 -0300132int native_cpu_up(unsigned int cpunum);
Alex Nixon93be71b2008-08-22 11:52:11 +0100133int native_cpu_disable(void);
134void native_cpu_die(unsigned int cpu);
135void native_play_dead(void);
Alex Nixona21f5d882008-08-22 11:52:13 +0100136void play_dead_common(void);
Alex Nixon93be71b2008-08-22 11:52:11 +0100137
Jens Axboe3b16cf82008-06-26 11:21:54 +0200138void native_send_call_func_ipi(cpumask_t mask);
139void native_send_call_func_single_ipi(int cpu);
Glauber Costa93b016f2008-03-03 14:12:40 -0300140
Glauber de Oliveira Costa1d89a7f2008-03-19 14:25:05 -0300141void smp_store_cpu_info(int id);
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300142#define cpu_physical_id(cpu) per_cpu(x86_cpu_to_apicid, cpu)
Glauber Costaa9c057c2008-03-27 14:06:02 -0300143
144/* We don't mark CPUs online until __cpu_up(), so we need another measure */
145static inline int num_booting_cpus(void)
146{
147 return cpus_weight(cpu_callout_map);
148}
Ingo Molnar4a701732008-07-03 15:57:47 +0200149#endif /* CONFIG_SMP */
150
151#if defined(CONFIG_SMP) && defined(CONFIG_HOTPLUG_CPU)
152extern void prefill_possible_map(void);
Yinghai Lu329513a2008-07-02 18:54:40 -0700153#else
154static inline void prefill_possible_map(void)
155{
156}
Ingo Molnar4a701732008-07-03 15:57:47 +0200157#endif
Glauber Costaa9c057c2008-03-27 14:06:02 -0300158
Alexey Starikovskiy2fe60142008-04-04 23:41:44 +0400159extern unsigned disabled_cpus __cpuinitdata;
160
Glauber Costaa9c057c2008-03-27 14:06:02 -0300161#ifdef CONFIG_X86_32_SMP
162/*
163 * This function is needed by all SMP systems. It must _always_ be valid
164 * from the initial startup. We map APIC_BASE very early in page_setup(),
165 * so this is correct in the x86 case.
166 */
167DECLARE_PER_CPU(int, cpu_number);
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 */
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300183#define cpu_physical_id(cpu) boot_cpu_physical_apicid
Glauber Costaa9c057c2008-03-27 14:06:02 -0300184#define safe_smp_processor_id() 0
185#define stack_smp_processor_id() 0
Glauber Costac76cb362008-03-03 14:12:33 -0300186#endif
Glauber Costa16694022008-03-03 14:12:32 -0300187
Glauber Costa1b0008432008-03-27 14:05:58 -0300188#ifdef CONFIG_X86_LOCAL_APIC
189
190static inline int logical_smp_processor_id(void)
191{
192 /* we don't want to mark this access volatile - bad code generation */
193 return GET_APIC_LOGICAL_ID(*(u32 *)(APIC_BASE + APIC_LDR));
194}
195
Ingo Molnara24eae82008-03-30 12:17:12 +0200196#ifndef CONFIG_X86_64
Jack Steiner05f2d122008-03-28 14:12:02 -0500197static inline unsigned int read_apic_id(void)
198{
199 return *(u32 *)(APIC_BASE + APIC_ID);
200}
Jack Steinerac23d4e2008-03-28 14:12:16 -0500201#else
202extern unsigned int read_apic_id(void);
203#endif
204
Jack Steiner05f2d122008-03-28 14:12:02 -0500205
Glauber Costa1b0008432008-03-27 14:05:58 -0300206# ifdef APIC_DEFINITION
207extern int hard_smp_processor_id(void);
208# else
209# include <mach_apicdef.h>
210static inline int hard_smp_processor_id(void)
211{
212 /* we don't want to mark this access volatile - bad code generation */
Jack Steiner05f2d122008-03-28 14:12:02 -0500213 return GET_APIC_ID(read_apic_id());
Glauber Costa1b0008432008-03-27 14:05:58 -0300214}
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
Glauber Costa1dbb4722008-03-03 14:13:01 -0300225#ifdef CONFIG_HOTPLUG_CPU
Alex Nixon37900252008-08-22 11:52:12 +0100226#ifdef CONFIG_X86_32
227extern void reset_lazy_tlbstate(void);
228#else
229static inline void reset_lazy_tlbstate(void)
230{ }
231#endif /* CONFIG_X86_32 */
Glauber Costa1dbb4722008-03-03 14:13:01 -0300232#endif
233
Glauber Costac27cfeff2008-03-03 14:12:29 -0300234#endif /* __ASSEMBLY__ */
235#endif