]> git.karo-electronics.de Git - karo-tx-linux.git/blob - include/asm-x86/smp.h
x86: move smp_ops extern declaration to common header
[karo-tx-linux.git] / include / asm-x86 / smp.h
1 #ifndef _ASM_X86_SMP_H_
2 #define _ASM_X86_SMP_H_
3 #ifndef __ASSEMBLY__
4 #include <linux/cpumask.h>
5
6 extern cpumask_t cpu_callout_map;
7
8 extern int smp_num_siblings;
9 extern unsigned int num_processors;
10
11 struct smp_ops {
12         void (*smp_prepare_boot_cpu)(void);
13         void (*smp_prepare_cpus)(unsigned max_cpus);
14         int (*cpu_up)(unsigned cpu);
15         void (*smp_cpus_done)(unsigned max_cpus);
16
17         void (*smp_send_stop)(void);
18         void (*smp_send_reschedule)(int cpu);
19         int (*smp_call_function_mask)(cpumask_t mask,
20                                       void (*func)(void *info), void *info,
21                                       int wait);
22 };
23
24 #ifdef CONFIG_SMP
25 extern struct smp_ops smp_ops;
26 #endif
27
28 #ifdef CONFIG_X86_32
29 # include "smp_32.h"
30 #else
31 # include "smp_64.h"
32 #endif
33
34 extern void smp_alloc_memory(void);
35 extern void lock_ipi_call_lock(void);
36 extern void unlock_ipi_call_lock(void);
37 #endif /* __ASSEMBLY__ */
38 #endif