2008-03-03 17:12:29 +00:00
|
|
|
#ifndef _ASM_X86_SMP_H_
|
|
|
|
#define _ASM_X86_SMP_H_
|
|
|
|
#ifndef __ASSEMBLY__
|
2008-03-03 17:12:31 +00:00
|
|
|
#include <linux/cpumask.h>
|
2008-03-03 17:12:40 +00:00
|
|
|
#include <linux/init.h>
|
2008-03-19 17:25:18 +00:00
|
|
|
#include <asm/percpu.h>
|
2008-03-03 17:12:31 +00:00
|
|
|
|
|
|
|
extern cpumask_t cpu_callout_map;
|
|
|
|
|
|
|
|
extern int smp_num_siblings;
|
|
|
|
extern unsigned int num_processors;
|
2008-03-03 17:12:29 +00:00
|
|
|
|
2008-03-19 17:25:18 +00:00
|
|
|
extern u16 x86_cpu_to_apicid_init[];
|
|
|
|
extern u16 x86_bios_cpu_apicid_init[];
|
|
|
|
extern void *x86_cpu_to_apicid_early_ptr;
|
|
|
|
extern void *x86_bios_cpu_apicid_early_ptr;
|
|
|
|
|
|
|
|
DECLARE_PER_CPU(cpumask_t, cpu_sibling_map);
|
|
|
|
DECLARE_PER_CPU(cpumask_t, cpu_core_map);
|
|
|
|
DECLARE_PER_CPU(u16, cpu_llc_id);
|
|
|
|
DECLARE_PER_CPU(u16, x86_cpu_to_apicid);
|
|
|
|
DECLARE_PER_CPU(u16, x86_bios_cpu_apicid);
|
|
|
|
|
2008-03-03 17:13:09 +00:00
|
|
|
/*
|
|
|
|
* Trampoline 80x86 program as an array.
|
|
|
|
*/
|
|
|
|
extern const unsigned char trampoline_data [];
|
|
|
|
extern const unsigned char trampoline_end [];
|
2008-03-03 17:13:12 +00:00
|
|
|
extern unsigned char *trampoline_base;
|
2008-03-03 17:13:09 +00:00
|
|
|
|
2008-03-03 17:12:32 +00:00
|
|
|
struct smp_ops {
|
|
|
|
void (*smp_prepare_boot_cpu)(void);
|
|
|
|
void (*smp_prepare_cpus)(unsigned max_cpus);
|
|
|
|
int (*cpu_up)(unsigned cpu);
|
|
|
|
void (*smp_cpus_done)(unsigned max_cpus);
|
|
|
|
|
|
|
|
void (*smp_send_stop)(void);
|
|
|
|
void (*smp_send_reschedule)(int cpu);
|
|
|
|
int (*smp_call_function_mask)(cpumask_t mask,
|
|
|
|
void (*func)(void *info), void *info,
|
|
|
|
int wait);
|
|
|
|
};
|
|
|
|
|
2008-03-03 17:12:59 +00:00
|
|
|
/* Globals due to paravirt */
|
|
|
|
extern void set_cpu_sibling_map(int cpu);
|
|
|
|
|
2008-03-03 17:12:33 +00:00
|
|
|
#ifdef CONFIG_SMP
|
2008-03-19 17:24:59 +00:00
|
|
|
#ifndef CONFIG_PARAVIRT
|
|
|
|
#define startup_ipi_hook(phys_apicid, start_eip, start_esp) do { } while (0)
|
|
|
|
#endif
|
2008-03-03 17:12:33 +00:00
|
|
|
extern struct smp_ops smp_ops;
|
2008-03-03 17:12:34 +00:00
|
|
|
|
2008-03-03 17:12:51 +00:00
|
|
|
static inline void smp_send_stop(void)
|
|
|
|
{
|
|
|
|
smp_ops.smp_send_stop();
|
|
|
|
}
|
|
|
|
|
2008-03-03 17:12:37 +00:00
|
|
|
static inline void smp_prepare_boot_cpu(void)
|
|
|
|
{
|
|
|
|
smp_ops.smp_prepare_boot_cpu();
|
|
|
|
}
|
|
|
|
|
2008-03-03 17:12:38 +00:00
|
|
|
static inline void smp_prepare_cpus(unsigned int max_cpus)
|
|
|
|
{
|
|
|
|
smp_ops.smp_prepare_cpus(max_cpus);
|
|
|
|
}
|
|
|
|
|
2008-03-03 17:12:39 +00:00
|
|
|
static inline void smp_cpus_done(unsigned int max_cpus)
|
|
|
|
{
|
|
|
|
smp_ops.smp_cpus_done(max_cpus);
|
|
|
|
}
|
|
|
|
|
2008-03-03 17:12:36 +00:00
|
|
|
static inline int __cpu_up(unsigned int cpu)
|
|
|
|
{
|
|
|
|
return smp_ops.cpu_up(cpu);
|
|
|
|
}
|
|
|
|
|
2008-03-03 17:12:34 +00:00
|
|
|
static inline void smp_send_reschedule(int cpu)
|
|
|
|
{
|
|
|
|
smp_ops.smp_send_reschedule(cpu);
|
|
|
|
}
|
2008-03-03 17:12:35 +00:00
|
|
|
|
|
|
|
static inline int smp_call_function_mask(cpumask_t mask,
|
|
|
|
void (*func) (void *info), void *info,
|
|
|
|
int wait)
|
|
|
|
{
|
|
|
|
return smp_ops.smp_call_function_mask(mask, func, info, wait);
|
|
|
|
}
|
2008-03-03 17:12:36 +00:00
|
|
|
|
2008-03-03 17:12:37 +00:00
|
|
|
void native_smp_prepare_boot_cpu(void);
|
2008-03-03 17:12:38 +00:00
|
|
|
void native_smp_prepare_cpus(unsigned int max_cpus);
|
2008-03-03 17:12:39 +00:00
|
|
|
void native_smp_cpus_done(unsigned int max_cpus);
|
2008-03-03 17:12:36 +00:00
|
|
|
int native_cpu_up(unsigned int cpunum);
|
2008-03-03 17:12:40 +00:00
|
|
|
|
2008-03-03 17:13:07 +00:00
|
|
|
extern int __cpu_disable(void);
|
|
|
|
extern void __cpu_die(unsigned int cpu);
|
|
|
|
|
2008-03-03 17:12:40 +00:00
|
|
|
extern unsigned disabled_cpus;
|
2008-03-03 17:12:42 +00:00
|
|
|
extern void prefill_possible_map(void);
|
2008-03-03 17:13:12 +00:00
|
|
|
|
|
|
|
#define SMP_TRAMPOLINE_BASE 0x6000
|
|
|
|
extern unsigned long setup_trampoline(void);
|
2008-03-19 17:25:05 +00:00
|
|
|
|
|
|
|
void smp_store_cpu_info(int id);
|
2008-03-03 17:12:33 +00:00
|
|
|
#endif
|
2008-03-03 17:12:32 +00:00
|
|
|
|
2007-10-11 09:20:03 +00:00
|
|
|
#ifdef CONFIG_X86_32
|
|
|
|
# include "smp_32.h"
|
|
|
|
#else
|
|
|
|
# include "smp_64.h"
|
|
|
|
#endif
|
2008-03-03 17:12:29 +00:00
|
|
|
|
2008-03-03 17:13:01 +00:00
|
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
|
|
|
extern void cpu_exit_clear(void);
|
|
|
|
extern void cpu_uninit(void);
|
|
|
|
extern void remove_siblinginfo(int cpu);
|
|
|
|
#endif
|
|
|
|
|
2008-03-03 17:12:30 +00:00
|
|
|
extern void smp_alloc_memory(void);
|
|
|
|
extern void lock_ipi_call_lock(void);
|
|
|
|
extern void unlock_ipi_call_lock(void);
|
2008-03-03 17:12:29 +00:00
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
#endif
|