2008-10-23 09:26:29 +04:00
|
|
|
#ifndef _ASM_X86_CPU_H
|
|
|
|
#define _ASM_X86_CPU_H
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/cpu.h>
|
|
|
|
#include <linux/topology.h>
|
|
|
|
#include <linux/nodemask.h>
|
2005-06-26 01:54:50 +04:00
|
|
|
#include <linux/percpu.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2009-01-07 15:41:35 +03:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
|
|
|
|
extern void prefill_possible_map(void);
|
|
|
|
|
|
|
|
#else /* CONFIG_SMP */
|
|
|
|
|
|
|
|
static inline void prefill_possible_map(void) {}
|
|
|
|
|
2009-01-07 19:07:33 +03:00
|
|
|
#define cpu_physical_id(cpu) boot_cpu_physical_apicid
|
2009-01-07 19:05:48 +03:00
|
|
|
#define safe_smp_processor_id() 0
|
2009-01-07 19:04:25 +03:00
|
|
|
#define stack_smp_processor_id() 0
|
|
|
|
|
2009-01-07 15:41:35 +03:00
|
|
|
#endif /* CONFIG_SMP */
|
|
|
|
|
2008-01-30 15:33:11 +03:00
|
|
|
struct x86_cpu {
|
2005-04-17 02:20:36 +04:00
|
|
|
struct cpu cpu;
|
|
|
|
};
|
2008-02-01 19:49:43 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
2008-02-01 19:49:43 +03:00
|
|
|
extern int arch_register_cpu(int num);
|
2005-04-17 02:20:36 +04:00
|
|
|
extern void arch_unregister_cpu(int);
|
|
|
|
#endif
|
|
|
|
|
2005-06-26 01:54:50 +04:00
|
|
|
DECLARE_PER_CPU(int, cpu_state);
|
2009-01-07 19:08:59 +03:00
|
|
|
|
2011-02-11 20:17:54 +03:00
|
|
|
int mwait_usable(const struct cpuinfo_x86 *);
|
2009-01-07 19:08:59 +03:00
|
|
|
|
2008-10-23 09:26:29 +04:00
|
|
|
#endif /* _ASM_X86_CPU_H */
|