H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 1 | #ifndef _ASM_X86_CPU_H |
| 2 | #define _ASM_X86_CPU_H |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | |
| 4 | #include <linux/device.h> |
| 5 | #include <linux/cpu.h> |
| 6 | #include <linux/topology.h> |
| 7 | #include <linux/nodemask.h> |
Zwane Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 8 | #include <linux/percpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
Jaswinder Singh Rajput | 6e5385d | 2009-01-07 18:11:35 +0530 | [diff] [blame] | 10 | #ifdef CONFIG_SMP |
| 11 | |
| 12 | extern void prefill_possible_map(void); |
| 13 | |
| 14 | #else /* CONFIG_SMP */ |
| 15 | |
| 16 | static inline void prefill_possible_map(void) {} |
| 17 | |
Jaswinder Singh Rajput | af8968a | 2009-01-07 21:37:33 +0530 | [diff] [blame] | 18 | #define cpu_physical_id(cpu) boot_cpu_physical_apicid |
Jaswinder Singh Rajput | 96b89dc | 2009-01-07 21:35:48 +0530 | [diff] [blame] | 19 | #define safe_smp_processor_id() 0 |
Jaswinder Singh Rajput | f472cdb | 2009-01-07 21:34:25 +0530 | [diff] [blame] | 20 | #define stack_smp_processor_id() 0 |
| 21 | |
Jaswinder Singh Rajput | 6e5385d | 2009-01-07 18:11:35 +0530 | [diff] [blame] | 22 | #endif /* CONFIG_SMP */ |
| 23 | |
travis@sgi.com | 30964d5 | 2008-01-30 13:33:11 +0100 | [diff] [blame] | 24 | struct x86_cpu { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | struct cpu cpu; |
| 26 | }; |
Alexander van Heukelum | d987402 | 2008-02-01 17:49:43 +0100 | [diff] [blame] | 27 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #ifdef CONFIG_HOTPLUG_CPU |
Alexander van Heukelum | d987402 | 2008-02-01 17:49:43 +0100 | [diff] [blame] | 29 | extern int arch_register_cpu(int num); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | extern void arch_unregister_cpu(int); |
| 31 | #endif |
| 32 | |
Zwane Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 33 | DECLARE_PER_CPU(int, cpu_state); |
Jaswinder Singh Rajput | 6d652ea | 2009-01-07 21:38:59 +0530 | [diff] [blame] | 34 | |
Borislav Petkov | 1c9d16e | 2011-02-11 18:17:54 +0100 | [diff] [blame] | 35 | int mwait_usable(const struct cpuinfo_x86 *); |
Jaswinder Singh Rajput | 6d652ea | 2009-01-07 21:38:59 +0530 | [diff] [blame] | 36 | |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 37 | #endif /* _ASM_X86_CPU_H */ |