1#ifndef __LINUX_SMP_H
2#define __LINUX_SMP_H
3
4
5
6
7
8
9#include <linux/errno.h>
10#include <linux/types.h>
11#include <linux/list.h>
12#include <linux/cpumask.h>
13#include <linux/init.h>
14#include <linux/llist.h>
15
16typedef void (*smp_call_func_t)(void *info);
17struct call_single_data {
18 struct llist_node llist;
19 smp_call_func_t func;
20 void *info;
21 u16 flags;
22};
23
24
25extern unsigned int total_cpus;
26
27int smp_call_function_single(int cpuid, smp_call_func_t func, void *info,
28 int wait);
29
30
31
32
33int on_each_cpu(smp_call_func_t func, void *info, int wait);
34
35
36
37
38
39void on_each_cpu_mask(const struct cpumask *mask, smp_call_func_t func,
40 void *info, bool wait);
41
42
43
44
45
46
47void on_each_cpu_cond(bool (*cond_func)(int cpu, void *info),
48 smp_call_func_t func, void *info, bool wait,
49 gfp_t gfp_flags);
50
51int smp_call_function_single_async(int cpu, struct call_single_data *csd);
52
53#ifdef CONFIG_SMP
54
55#include <linux/preempt.h>
56#include <linux/kernel.h>
57#include <linux/compiler.h>
58#include <linux/thread_info.h>
59#include <asm/smp.h>
60
61
62
63
64
65
66
67
68
69extern void smp_send_stop(void);
70
71
72
73
74extern void smp_send_reschedule(int cpu);
75
76
77
78
79
80extern void smp_prepare_cpus(unsigned int max_cpus);
81
82
83
84
85extern int __cpu_up(unsigned int cpunum, struct task_struct *tidle);
86
87
88
89
90extern void smp_cpus_done(unsigned int max_cpus);
91
92
93
94
95int smp_call_function(smp_call_func_t func, void *info, int wait);
96void smp_call_function_many(const struct cpumask *mask,
97 smp_call_func_t func, void *info, bool wait);
98
99int smp_call_function_any(const struct cpumask *mask,
100 smp_call_func_t func, void *info, int wait);
101
102void kick_all_cpus_sync(void);
103
104
105
106
107void __init call_function_init(void);
108void generic_smp_call_function_single_interrupt(void);
109#define generic_smp_call_function_interrupt \
110 generic_smp_call_function_single_interrupt
111
112
113
114
115
116void smp_prepare_boot_cpu(void);
117
118extern unsigned int setup_max_cpus;
119extern void __init setup_nr_cpu_ids(void);
120extern void __init smp_init(void);
121
122#else
123
124static inline void smp_send_stop(void) { }
125
126
127
128
129#define raw_smp_processor_id() 0
130static inline int up_smp_call_function(smp_call_func_t func, void *info)
131{
132 return 0;
133}
134#define smp_call_function(func, info, wait) \
135 (up_smp_call_function(func, info))
136
137static inline void smp_send_reschedule(int cpu) { }
138#define smp_prepare_boot_cpu() do {} while (0)
139#define smp_call_function_many(mask, func, info, wait) \
140 (up_smp_call_function(func, info))
141static inline void call_function_init(void) { }
142
143static inline int
144smp_call_function_any(const struct cpumask *mask, smp_call_func_t func,
145 void *info, int wait)
146{
147 return smp_call_function_single(0, func, info, wait);
148}
149
150static inline void kick_all_cpus_sync(void) { }
151
152#endif
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169#ifdef CONFIG_DEBUG_PREEMPT
170 extern unsigned int debug_smp_processor_id(void);
171# define smp_processor_id() debug_smp_processor_id()
172#else
173# define smp_processor_id() raw_smp_processor_id()
174#endif
175
176#define get_cpu() ({ preempt_disable(); smp_processor_id(); })
177#define put_cpu() preempt_enable()
178
179
180
181
182
183extern void arch_disable_smp_support(void);
184
185extern void arch_enable_nonboot_cpus_begin(void);
186extern void arch_enable_nonboot_cpus_end(void);
187
188void smp_setup_processor_id(void);
189
190#endif
191