blob: 04f84f4e2c8b727d82835574c6c2d0117bbef25e [file] [log] [blame]
Vegard Nossum77ef50a2008-06-18 17:08:48 +02001#ifndef ASM_X86__SMP_H
2#define ASM_X86__SMP_H
Glauber Costac27cfef2008-03-03 14:12:29 -03003#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 Costac27cfef2008-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);
Jaswinder Singhfb261322008-07-21 21:36:40 +053037#ifdef CONFIG_X86_32
38DECLARE_PER_CPU(int, cpu_number);
39#endif
Mike Travis23ca4bb2008-05-12 21:21:12 +020040
41DECLARE_EARLY_PER_CPU(u16, x86_cpu_to_apicid);
42DECLARE_EARLY_PER_CPU(u16, x86_bios_cpu_apicid);
Glauber de Oliveira Costa7e1efc02008-03-19 14:25:18 -030043
Glauber de Oliveira Costa9d97d0d2008-03-19 14:25:57 -030044/* Static state in head.S used to set up a CPU */
45extern struct {
46 void *sp;
47 unsigned short ss;
48} stack_start;
49
Glauber Costa16694022008-03-03 14:12:32 -030050struct smp_ops {
51 void (*smp_prepare_boot_cpu)(void);
52 void (*smp_prepare_cpus)(unsigned max_cpus);
53 int (*cpu_up)(unsigned cpu);
54 void (*smp_cpus_done)(unsigned max_cpus);
55
56 void (*smp_send_stop)(void);
57 void (*smp_send_reschedule)(int cpu);
Jens Axboe3b16cf82008-06-26 11:21:54 +020058
59 void (*send_call_func_ipi)(cpumask_t mask);
60 void (*send_call_func_single_ipi)(int cpu);
Glauber Costa16694022008-03-03 14:12:32 -030061};
62
Glauber Costa14522072008-03-03 14:12:59 -030063/* Globals due to paravirt */
64extern void set_cpu_sibling_map(int cpu);
65
Glauber Costac76cb362008-03-03 14:12:33 -030066#ifdef CONFIG_SMP
Glauber de Oliveira Costad0173ae2008-03-19 14:24:59 -030067#ifndef CONFIG_PARAVIRT
68#define startup_ipi_hook(phys_apicid, start_eip, start_esp) do { } while (0)
69#endif
Glauber Costac76cb362008-03-03 14:12:33 -030070extern struct smp_ops smp_ops;
Glauber Costa86789692008-03-03 14:12:34 -030071
Glauber Costa377d6982008-03-03 14:12:51 -030072static inline void smp_send_stop(void)
73{
74 smp_ops.smp_send_stop();
75}
76
Glauber Costa1e3fac82008-03-03 14:12:37 -030077static inline void smp_prepare_boot_cpu(void)
78{
79 smp_ops.smp_prepare_boot_cpu();
80}
81
Glauber Costa7557da62008-03-03 14:12:38 -030082static inline void smp_prepare_cpus(unsigned int max_cpus)
83{
84 smp_ops.smp_prepare_cpus(max_cpus);
85}
86
Glauber Costac5597642008-03-03 14:12:39 -030087static inline void smp_cpus_done(unsigned int max_cpus)
88{
89 smp_ops.smp_cpus_done(max_cpus);
90}
91
Glauber Costa71d19542008-03-03 14:12:36 -030092static inline int __cpu_up(unsigned int cpu)
93{
94 return smp_ops.cpu_up(cpu);
95}
96
Glauber Costa86789692008-03-03 14:12:34 -030097static inline void smp_send_reschedule(int cpu)
98{
99 smp_ops.smp_send_reschedule(cpu);
100}
Glauber Costa64b1a21e02008-03-03 14:12:35 -0300101
Jens Axboe3b16cf82008-06-26 11:21:54 +0200102static inline void arch_send_call_function_single_ipi(int cpu)
Glauber Costa64b1a21e02008-03-03 14:12:35 -0300103{
Jens Axboe3b16cf82008-06-26 11:21:54 +0200104 smp_ops.send_call_func_single_ipi(cpu);
105}
106
107static inline void arch_send_call_function_ipi(cpumask_t mask)
108{
109 smp_ops.send_call_func_ipi(mask);
Glauber Costa64b1a21e02008-03-03 14:12:35 -0300110}
Glauber Costa71d19542008-03-03 14:12:36 -0300111
Glauber Costa1e3fac82008-03-03 14:12:37 -0300112void native_smp_prepare_boot_cpu(void);
Glauber Costa7557da62008-03-03 14:12:38 -0300113void native_smp_prepare_cpus(unsigned int max_cpus);
Glauber Costac5597642008-03-03 14:12:39 -0300114void native_smp_cpus_done(unsigned int max_cpus);
Glauber Costa71d19542008-03-03 14:12:36 -0300115int native_cpu_up(unsigned int cpunum);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200116void native_send_call_func_ipi(cpumask_t mask);
117void native_send_call_func_single_ipi(int cpu);
Glauber Costa93b016f2008-03-03 14:12:40 -0300118
Glauber Costa69c18c12008-03-03 14:13:07 -0300119extern int __cpu_disable(void);
120extern void __cpu_die(unsigned int cpu);
121
Glauber de Oliveira Costa1d89a7f2008-03-19 14:25:05 -0300122void smp_store_cpu_info(int id);
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300123#define cpu_physical_id(cpu) per_cpu(x86_cpu_to_apicid, cpu)
Glauber Costaa9c057c2008-03-27 14:06:02 -0300124
125/* We don't mark CPUs online until __cpu_up(), so we need another measure */
126static inline int num_booting_cpus(void)
127{
128 return cpus_weight(cpu_callout_map);
129}
Ingo Molnar4a701732008-07-03 15:57:47 +0200130#endif /* CONFIG_SMP */
131
132#if defined(CONFIG_SMP) && defined(CONFIG_HOTPLUG_CPU)
133extern void prefill_possible_map(void);
Yinghai Lu329513a2008-07-02 18:54:40 -0700134#else
135static inline void prefill_possible_map(void)
136{
137}
Ingo Molnar4a701732008-07-03 15:57:47 +0200138#endif
Glauber Costaa9c057c2008-03-27 14:06:02 -0300139
Alexey Starikovskiy2fe60142008-04-04 23:41:44 +0400140extern unsigned disabled_cpus __cpuinitdata;
141
Glauber Costaa9c057c2008-03-27 14:06:02 -0300142#ifdef CONFIG_X86_32_SMP
143/*
144 * This function is needed by all SMP systems. It must _always_ be valid
145 * from the initial startup. We map APIC_BASE very early in page_setup(),
146 * so this is correct in the x86 case.
147 */
Glauber Costaa9c057c2008-03-27 14:06:02 -0300148#define raw_smp_processor_id() (x86_read_percpu(cpu_number))
149extern int safe_smp_processor_id(void);
150
151#elif defined(CONFIG_X86_64_SMP)
152#define raw_smp_processor_id() read_pda(cpunumber)
153
154#define stack_smp_processor_id() \
155({ \
156 struct thread_info *ti; \
157 __asm__("andq %%rsp,%0; ":"=r" (ti) : "0" (CURRENT_MASK)); \
158 ti->cpu; \
159})
160#define safe_smp_processor_id() smp_processor_id()
161
162#else /* !CONFIG_X86_32_SMP && !CONFIG_X86_64_SMP */
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300163#define cpu_physical_id(cpu) boot_cpu_physical_apicid
Glauber Costaa9c057c2008-03-27 14:06:02 -0300164#define safe_smp_processor_id() 0
165#define stack_smp_processor_id() 0
Glauber Costac76cb362008-03-03 14:12:33 -0300166#endif
Glauber Costa16694022008-03-03 14:12:32 -0300167
Glauber Costa1b000842008-03-27 14:05:58 -0300168#ifdef CONFIG_X86_LOCAL_APIC
169
170static inline int logical_smp_processor_id(void)
171{
172 /* we don't want to mark this access volatile - bad code generation */
173 return GET_APIC_LOGICAL_ID(*(u32 *)(APIC_BASE + APIC_LDR));
174}
175
Ingo Molnara24eae82008-03-30 12:17:12 +0200176#ifndef CONFIG_X86_64
Jack Steiner05f2d122008-03-28 14:12:02 -0500177static inline unsigned int read_apic_id(void)
178{
179 return *(u32 *)(APIC_BASE + APIC_ID);
180}
Jack Steinerac23d4e2008-03-28 14:12:16 -0500181#else
182extern unsigned int read_apic_id(void);
183#endif
184
Jack Steiner05f2d122008-03-28 14:12:02 -0500185
Glauber Costa1b000842008-03-27 14:05:58 -0300186# ifdef APIC_DEFINITION
187extern int hard_smp_processor_id(void);
188# else
189# include <mach_apicdef.h>
190static inline int hard_smp_processor_id(void)
191{
192 /* we don't want to mark this access volatile - bad code generation */
Jack Steiner05f2d122008-03-28 14:12:02 -0500193 return GET_APIC_ID(read_apic_id());
Glauber Costa1b000842008-03-27 14:05:58 -0300194}
195# endif /* APIC_DEFINITION */
196
197#else /* CONFIG_X86_LOCAL_APIC */
198
199# ifndef CONFIG_SMP
200# define hard_smp_processor_id() 0
201# endif
202
203#endif /* CONFIG_X86_LOCAL_APIC */
204
Glauber Costa1dbb4722008-03-03 14:13:01 -0300205#ifdef CONFIG_HOTPLUG_CPU
Glauber Costa1dbb4722008-03-03 14:13:01 -0300206extern void cpu_uninit(void);
Glauber Costa1dbb4722008-03-03 14:13:01 -0300207#endif
208
Glauber Costac27cfef2008-03-03 14:12:29 -0300209#endif /* __ASSEMBLY__ */
Vegard Nossum77ef50a2008-06-18 17:08:48 +0200210#endif /* ASM_X86__SMP_H */