blob: 3496e1c299b28600330b2f05f4c81720f773de37 [file] [log] [blame]
Glauber Costac27cfef2008-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
28extern int smp_num_siblings;
29extern unsigned int num_processors;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030030extern cpumask_t cpu_initialized;
Glauber Costac27cfef2008-03-03 14:12:29 -030031
Mike Travisb447a462008-03-25 15:06:51 -070032#ifdef CONFIG_SMP
Glauber de Oliveira Costa7e1efc02008-03-19 14:25:18 -030033extern u16 x86_cpu_to_apicid_init[];
34extern u16 x86_bios_cpu_apicid_init[];
35extern void *x86_cpu_to_apicid_early_ptr;
36extern void *x86_bios_cpu_apicid_early_ptr;
Mike Travisb447a462008-03-25 15:06:51 -070037#else
38#define x86_cpu_to_apicid_early_ptr NULL
39#define x86_bios_cpu_apicid_early_ptr NULL
40#endif
Glauber de Oliveira Costa7e1efc02008-03-19 14:25:18 -030041
42DECLARE_PER_CPU(cpumask_t, cpu_sibling_map);
43DECLARE_PER_CPU(cpumask_t, cpu_core_map);
44DECLARE_PER_CPU(u16, cpu_llc_id);
45DECLARE_PER_CPU(u16, x86_cpu_to_apicid);
46DECLARE_PER_CPU(u16, x86_bios_cpu_apicid);
47
Glauber Costa42068822008-03-03 14:13:09 -030048/*
49 * Trampoline 80x86 program as an array.
50 */
51extern const unsigned char trampoline_data [];
52extern const unsigned char trampoline_end [];
Glauber Costa91718e82008-03-03 14:13:12 -030053extern unsigned char *trampoline_base;
Glauber Costa42068822008-03-03 14:13:09 -030054
Glauber de Oliveira Costa9d97d0d2008-03-19 14:25:57 -030055/* Static state in head.S used to set up a CPU */
56extern struct {
57 void *sp;
58 unsigned short ss;
59} stack_start;
60
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030061extern unsigned long init_rsp;
62extern unsigned long initial_code;
Glauber de Oliveira Costa9d97d0d2008-03-19 14:25:57 -030063
Glauber Costa16694022008-03-03 14:12:32 -030064struct smp_ops {
65 void (*smp_prepare_boot_cpu)(void);
66 void (*smp_prepare_cpus)(unsigned max_cpus);
67 int (*cpu_up)(unsigned cpu);
68 void (*smp_cpus_done)(unsigned max_cpus);
69
70 void (*smp_send_stop)(void);
71 void (*smp_send_reschedule)(int cpu);
72 int (*smp_call_function_mask)(cpumask_t mask,
73 void (*func)(void *info), void *info,
74 int wait);
75};
76
Glauber Costa14522072008-03-03 14:12:59 -030077/* Globals due to paravirt */
78extern void set_cpu_sibling_map(int cpu);
79
Glauber Costac76cb362008-03-03 14:12:33 -030080#ifdef CONFIG_SMP
Glauber de Oliveira Costad0173ae2008-03-19 14:24:59 -030081#ifndef CONFIG_PARAVIRT
82#define startup_ipi_hook(phys_apicid, start_eip, start_esp) do { } while (0)
83#endif
Glauber Costac76cb362008-03-03 14:12:33 -030084extern struct smp_ops smp_ops;
Glauber Costa86789692008-03-03 14:12:34 -030085
Glauber Costa377d6982008-03-03 14:12:51 -030086static inline void smp_send_stop(void)
87{
88 smp_ops.smp_send_stop();
89}
90
Glauber Costa1e3fac82008-03-03 14:12:37 -030091static inline void smp_prepare_boot_cpu(void)
92{
93 smp_ops.smp_prepare_boot_cpu();
94}
95
Glauber Costa7557da62008-03-03 14:12:38 -030096static inline void smp_prepare_cpus(unsigned int max_cpus)
97{
98 smp_ops.smp_prepare_cpus(max_cpus);
99}
100
Glauber Costac5597642008-03-03 14:12:39 -0300101static inline void smp_cpus_done(unsigned int max_cpus)
102{
103 smp_ops.smp_cpus_done(max_cpus);
104}
105
Glauber Costa71d19542008-03-03 14:12:36 -0300106static inline int __cpu_up(unsigned int cpu)
107{
108 return smp_ops.cpu_up(cpu);
109}
110
Glauber Costa86789692008-03-03 14:12:34 -0300111static inline void smp_send_reschedule(int cpu)
112{
113 smp_ops.smp_send_reschedule(cpu);
114}
Glauber Costa64b1a21e02008-03-03 14:12:35 -0300115
116static inline int smp_call_function_mask(cpumask_t mask,
117 void (*func) (void *info), void *info,
118 int wait)
119{
120 return smp_ops.smp_call_function_mask(mask, func, info, wait);
121}
Glauber Costa71d19542008-03-03 14:12:36 -0300122
Glauber Costa1e3fac82008-03-03 14:12:37 -0300123void native_smp_prepare_boot_cpu(void);
Glauber Costa7557da62008-03-03 14:12:38 -0300124void native_smp_prepare_cpus(unsigned int max_cpus);
Glauber Costac5597642008-03-03 14:12:39 -0300125void native_smp_cpus_done(unsigned int max_cpus);
Glauber Costa71d19542008-03-03 14:12:36 -0300126int native_cpu_up(unsigned int cpunum);
Glauber Costa93b016f2008-03-03 14:12:40 -0300127
Glauber Costa69c18c12008-03-03 14:13:07 -0300128extern int __cpu_disable(void);
129extern void __cpu_die(unsigned int cpu);
130
Glauber Costa68a1c3f2008-03-03 14:12:42 -0300131extern void prefill_possible_map(void);
Glauber Costa91718e82008-03-03 14:13:12 -0300132
133#define SMP_TRAMPOLINE_BASE 0x6000
134extern unsigned long setup_trampoline(void);
Glauber de Oliveira Costa1d89a7f2008-03-19 14:25:05 -0300135
136void smp_store_cpu_info(int id);
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300137#define cpu_physical_id(cpu) per_cpu(x86_cpu_to_apicid, cpu)
Glauber Costaa9c057c2008-03-27 14:06:02 -0300138
139/* We don't mark CPUs online until __cpu_up(), so we need another measure */
140static inline int num_booting_cpus(void)
141{
142 return cpus_weight(cpu_callout_map);
143}
144#endif /* CONFIG_SMP */
145
Alexey Starikovskiy2fe60142008-04-04 23:41:44 +0400146extern unsigned disabled_cpus __cpuinitdata;
147
Glauber Costaa9c057c2008-03-27 14:06:02 -0300148#ifdef CONFIG_X86_32_SMP
149/*
150 * This function is needed by all SMP systems. It must _always_ be valid
151 * from the initial startup. We map APIC_BASE very early in page_setup(),
152 * so this is correct in the x86 case.
153 */
154DECLARE_PER_CPU(int, cpu_number);
155#define raw_smp_processor_id() (x86_read_percpu(cpu_number))
156extern int safe_smp_processor_id(void);
157
158#elif defined(CONFIG_X86_64_SMP)
159#define raw_smp_processor_id() read_pda(cpunumber)
160
161#define stack_smp_processor_id() \
162({ \
163 struct thread_info *ti; \
164 __asm__("andq %%rsp,%0; ":"=r" (ti) : "0" (CURRENT_MASK)); \
165 ti->cpu; \
166})
167#define safe_smp_processor_id() smp_processor_id()
168
169#else /* !CONFIG_X86_32_SMP && !CONFIG_X86_64_SMP */
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300170#define cpu_physical_id(cpu) boot_cpu_physical_apicid
Glauber Costaa9c057c2008-03-27 14:06:02 -0300171#define safe_smp_processor_id() 0
172#define stack_smp_processor_id() 0
Glauber Costac76cb362008-03-03 14:12:33 -0300173#endif
Glauber Costa16694022008-03-03 14:12:32 -0300174
Glauber Costa1b0008432008-03-27 14:05:58 -0300175#ifdef CONFIG_X86_LOCAL_APIC
176
177static inline int logical_smp_processor_id(void)
178{
179 /* we don't want to mark this access volatile - bad code generation */
180 return GET_APIC_LOGICAL_ID(*(u32 *)(APIC_BASE + APIC_LDR));
181}
182
Ingo Molnara24eae82008-03-30 12:17:12 +0200183#ifndef CONFIG_X86_64
Jack Steiner05f2d122008-03-28 14:12:02 -0500184static inline unsigned int read_apic_id(void)
185{
186 return *(u32 *)(APIC_BASE + APIC_ID);
187}
Jack Steinerac23d4e2008-03-28 14:12:16 -0500188#else
189extern unsigned int read_apic_id(void);
190#endif
191
Jack Steiner05f2d122008-03-28 14:12:02 -0500192
Glauber Costa1b0008432008-03-27 14:05:58 -0300193# ifdef APIC_DEFINITION
194extern int hard_smp_processor_id(void);
195# else
196# include <mach_apicdef.h>
197static inline int hard_smp_processor_id(void)
198{
199 /* we don't want to mark this access volatile - bad code generation */
Jack Steiner05f2d122008-03-28 14:12:02 -0500200 return GET_APIC_ID(read_apic_id());
Glauber Costa1b0008432008-03-27 14:05:58 -0300201}
202# endif /* APIC_DEFINITION */
203
204#else /* CONFIG_X86_LOCAL_APIC */
205
206# ifndef CONFIG_SMP
207# define hard_smp_processor_id() 0
208# endif
209
210#endif /* CONFIG_X86_LOCAL_APIC */
211
Glauber Costa1dbb4722008-03-03 14:13:01 -0300212#ifdef CONFIG_HOTPLUG_CPU
213extern void cpu_exit_clear(void);
214extern void cpu_uninit(void);
215extern void remove_siblinginfo(int cpu);
216#endif
217
Glauber Costa639acb12008-03-03 14:12:30 -0300218extern void smp_alloc_memory(void);
219extern void lock_ipi_call_lock(void);
220extern void unlock_ipi_call_lock(void);
Glauber Costac27cfef2008-03-03 14:12:29 -0300221#endif /* __ASSEMBLY__ */
222#endif