blob: e3c24807b59b114928b110373a88e952eb031e2b [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 de Oliveira Costa9d97d0d2008-03-19 14:25:57 -030048/* Static state in head.S used to set up a CPU */
49extern struct {
50 void *sp;
51 unsigned short ss;
52} stack_start;
53
Glauber Costa16694022008-03-03 14:12:32 -030054struct 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);
59
60 void (*smp_send_stop)(void);
61 void (*smp_send_reschedule)(int cpu);
Jens Axboe3b16cf82008-06-26 11:21:54 +020062
63 void (*send_call_func_ipi)(cpumask_t mask);
64 void (*send_call_func_single_ipi)(int cpu);
Glauber Costa16694022008-03-03 14:12:32 -030065};
66
Glauber Costa14522072008-03-03 14:12:59 -030067/* Globals due to paravirt */
68extern void set_cpu_sibling_map(int cpu);
69
Glauber Costac76cb362008-03-03 14:12:33 -030070#ifdef CONFIG_SMP
Glauber de Oliveira Costad0173ae2008-03-19 14:24:59 -030071#ifndef CONFIG_PARAVIRT
72#define startup_ipi_hook(phys_apicid, start_eip, start_esp) do { } while (0)
73#endif
Glauber Costac76cb362008-03-03 14:12:33 -030074extern struct smp_ops smp_ops;
Glauber Costa86789692008-03-03 14:12:34 -030075
Glauber Costa377d6982008-03-03 14:12:51 -030076static inline void smp_send_stop(void)
77{
78 smp_ops.smp_send_stop();
79}
80
Glauber Costa1e3fac82008-03-03 14:12:37 -030081static inline void smp_prepare_boot_cpu(void)
82{
83 smp_ops.smp_prepare_boot_cpu();
84}
85
Glauber Costa7557da62008-03-03 14:12:38 -030086static inline void smp_prepare_cpus(unsigned int max_cpus)
87{
88 smp_ops.smp_prepare_cpus(max_cpus);
89}
90
Glauber Costac5597642008-03-03 14:12:39 -030091static inline void smp_cpus_done(unsigned int max_cpus)
92{
93 smp_ops.smp_cpus_done(max_cpus);
94}
95
Glauber Costa71d19542008-03-03 14:12:36 -030096static inline int __cpu_up(unsigned int cpu)
97{
98 return smp_ops.cpu_up(cpu);
99}
100
Glauber Costa86789692008-03-03 14:12:34 -0300101static inline void smp_send_reschedule(int cpu)
102{
103 smp_ops.smp_send_reschedule(cpu);
104}
Glauber Costa64b1a21e02008-03-03 14:12:35 -0300105
Jens Axboe3b16cf82008-06-26 11:21:54 +0200106static inline void arch_send_call_function_single_ipi(int cpu)
Glauber Costa64b1a21e02008-03-03 14:12:35 -0300107{
Jens Axboe3b16cf82008-06-26 11:21:54 +0200108 smp_ops.send_call_func_single_ipi(cpu);
109}
110
111static inline void arch_send_call_function_ipi(cpumask_t mask)
112{
113 smp_ops.send_call_func_ipi(mask);
Glauber Costa64b1a21e02008-03-03 14:12:35 -0300114}
Glauber Costa71d19542008-03-03 14:12:36 -0300115
Glauber Costa1e3fac82008-03-03 14:12:37 -0300116void native_smp_prepare_boot_cpu(void);
Glauber Costa7557da62008-03-03 14:12:38 -0300117void native_smp_prepare_cpus(unsigned int max_cpus);
Glauber Costac5597642008-03-03 14:12:39 -0300118void native_smp_cpus_done(unsigned int max_cpus);
Glauber Costa71d19542008-03-03 14:12:36 -0300119int native_cpu_up(unsigned int cpunum);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200120void native_send_call_func_ipi(cpumask_t mask);
121void native_send_call_func_single_ipi(int cpu);
Glauber Costa93b016f2008-03-03 14:12:40 -0300122
Glauber Costa69c18c12008-03-03 14:13:07 -0300123extern int __cpu_disable(void);
124extern void __cpu_die(unsigned int cpu);
125
Glauber Costa68a1c3f2008-03-03 14:12:42 -0300126extern void prefill_possible_map(void);
Glauber Costa91718e82008-03-03 14:13:12 -0300127
Glauber de Oliveira Costa1d89a7f2008-03-19 14:25:05 -0300128void smp_store_cpu_info(int id);
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300129#define cpu_physical_id(cpu) per_cpu(x86_cpu_to_apicid, cpu)
Glauber Costaa9c057c2008-03-27 14:06:02 -0300130
131/* We don't mark CPUs online until __cpu_up(), so we need another measure */
132static inline int num_booting_cpus(void)
133{
134 return cpus_weight(cpu_callout_map);
135}
136#endif /* CONFIG_SMP */
137
Alexey Starikovskiy2fe60142008-04-04 23:41:44 +0400138extern unsigned disabled_cpus __cpuinitdata;
139
Glauber Costaa9c057c2008-03-27 14:06:02 -0300140#ifdef CONFIG_X86_32_SMP
141/*
142 * This function is needed by all SMP systems. It must _always_ be valid
143 * from the initial startup. We map APIC_BASE very early in page_setup(),
144 * so this is correct in the x86 case.
145 */
146DECLARE_PER_CPU(int, cpu_number);
147#define raw_smp_processor_id() (x86_read_percpu(cpu_number))
148extern int safe_smp_processor_id(void);
149
150#elif defined(CONFIG_X86_64_SMP)
151#define raw_smp_processor_id() read_pda(cpunumber)
152
153#define stack_smp_processor_id() \
154({ \
155 struct thread_info *ti; \
156 __asm__("andq %%rsp,%0; ":"=r" (ti) : "0" (CURRENT_MASK)); \
157 ti->cpu; \
158})
159#define safe_smp_processor_id() smp_processor_id()
160
161#else /* !CONFIG_X86_32_SMP && !CONFIG_X86_64_SMP */
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300162#define cpu_physical_id(cpu) boot_cpu_physical_apicid
Glauber Costaa9c057c2008-03-27 14:06:02 -0300163#define safe_smp_processor_id() 0
164#define stack_smp_processor_id() 0
Glauber Costac76cb362008-03-03 14:12:33 -0300165#endif
Glauber Costa16694022008-03-03 14:12:32 -0300166
Glauber Costa1b000842008-03-27 14:05:58 -0300167#ifdef CONFIG_X86_LOCAL_APIC
168
169static inline int logical_smp_processor_id(void)
170{
171 /* we don't want to mark this access volatile - bad code generation */
172 return GET_APIC_LOGICAL_ID(*(u32 *)(APIC_BASE + APIC_LDR));
173}
174
Ingo Molnara24eae82008-03-30 12:17:12 +0200175#ifndef CONFIG_X86_64
Jack Steiner05f2d122008-03-28 14:12:02 -0500176static inline unsigned int read_apic_id(void)
177{
178 return *(u32 *)(APIC_BASE + APIC_ID);
179}
Jack Steinerac23d4e2008-03-28 14:12:16 -0500180#else
181extern unsigned int read_apic_id(void);
182#endif
183
Jack Steiner05f2d122008-03-28 14:12:02 -0500184
Glauber Costa1b000842008-03-27 14:05:58 -0300185# ifdef APIC_DEFINITION
186extern int hard_smp_processor_id(void);
187# else
188# include <mach_apicdef.h>
189static inline int hard_smp_processor_id(void)
190{
191 /* we don't want to mark this access volatile - bad code generation */
Jack Steiner05f2d122008-03-28 14:12:02 -0500192 return GET_APIC_ID(read_apic_id());
Glauber Costa1b000842008-03-27 14:05:58 -0300193}
194# endif /* APIC_DEFINITION */
195
196#else /* CONFIG_X86_LOCAL_APIC */
197
198# ifndef CONFIG_SMP
199# define hard_smp_processor_id() 0
200# endif
201
202#endif /* CONFIG_X86_LOCAL_APIC */
203
Glauber Costa1dbb4722008-03-03 14:13:01 -0300204#ifdef CONFIG_HOTPLUG_CPU
205extern void cpu_exit_clear(void);
206extern void cpu_uninit(void);
Glauber Costa1dbb4722008-03-03 14:13:01 -0300207#endif
208
Glauber Costa639acb12008-03-03 14:12:30 -0300209extern void smp_alloc_memory(void);
Glauber Costac27cfef2008-03-03 14:12:29 -0300210#endif /* __ASSEMBLY__ */
211#endif