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-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-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:33 +00:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
extern struct smp_ops smp_ops;
|
2008-03-03 17:12:34 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
extern unsigned disabled_cpus;
|
2008-03-03 17:12:42 +00:00
|
|
|
extern void prefill_possible_map(void);
|
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: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
|