Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef _ASM_X86_PERCPU_H
3#define _ASM_X86_PERCPU_H
4
5#ifdef CONFIG_X86_64
6# define __percpu_seg gs
7# define __percpu_rel (%rip)
8#else
9# define __percpu_seg fs
10# define __percpu_rel
11#endif
12
13#ifdef __ASSEMBLY__
14
15#ifdef CONFIG_SMP
16# define __percpu %__percpu_seg:
17#else
18# define __percpu
19#endif
20
21#define PER_CPU_VAR(var) __percpu(var)__percpu_rel
22
23#ifdef CONFIG_X86_64_SMP
24# define INIT_PER_CPU_VAR(var) init_per_cpu__##var
25#else
26# define INIT_PER_CPU_VAR(var) var
27#endif
28
29#else /* !__ASSEMBLY__: */
30
31#include <linux/build_bug.h>
32#include <linux/stringify.h>
33#include <asm/asm.h>
34
35#ifdef CONFIG_SMP
36
37#ifdef CONFIG_CC_HAS_NAMED_AS
38
39#ifdef __CHECKER__
40# define __seg_gs __attribute__((address_space(__seg_gs)))
41# define __seg_fs __attribute__((address_space(__seg_fs)))
42#endif
43
44#ifdef CONFIG_X86_64
45# define __percpu_seg_override __seg_gs
46#else
47# define __percpu_seg_override __seg_fs
48#endif
49
50#define __percpu_prefix ""
51
52#else /* !CONFIG_CC_HAS_NAMED_AS: */
53
54#define __percpu_seg_override
55#define __percpu_prefix "%%"__stringify(__percpu_seg)":"
56
57#endif /* CONFIG_CC_HAS_NAMED_AS */
58
59#define __force_percpu_prefix "%%"__stringify(__percpu_seg)":"
60#define __my_cpu_offset this_cpu_read(this_cpu_off)
61
62/*
63 * Compared to the generic __my_cpu_offset version, the following
64 * saves one instruction and avoids clobbering a temp register.
65 *
66 * arch_raw_cpu_ptr should not be used in 32-bit VDSO for a 64-bit
67 * kernel, because games are played with CONFIG_X86_64 there and
68 * sizeof(this_cpu_off) becames 4.
69 */
70#ifndef BUILD_VDSO32_64
71#define arch_raw_cpu_ptr(_ptr) \
72({ \
73 unsigned long tcp_ptr__ = raw_cpu_read_long(this_cpu_off); \
74 \
75 tcp_ptr__ += (__force unsigned long)(_ptr); \
76 (typeof(*(_ptr)) __kernel __force *)tcp_ptr__; \
77})
78#else
79#define arch_raw_cpu_ptr(_ptr) ({ BUILD_BUG(); (typeof(_ptr))0; })
80#endif
81
82#define PER_CPU_VAR(var) %__percpu_seg:(var)__percpu_rel
83
84#else /* !CONFIG_SMP: */
85
86#define __percpu_seg_override
87#define __percpu_prefix ""
88#define __force_percpu_prefix ""
89
90#define PER_CPU_VAR(var) (var)__percpu_rel
91
92#endif /* CONFIG_SMP */
93
94#define __my_cpu_type(var) typeof(var) __percpu_seg_override
95#define __my_cpu_ptr(ptr) (__my_cpu_type(*(ptr))*)(__force uintptr_t)(ptr)
96#define __my_cpu_var(var) (*__my_cpu_ptr(&(var)))
97#define __percpu_arg(x) __percpu_prefix "%" #x
98#define __force_percpu_arg(x) __force_percpu_prefix "%" #x
99
100/*
101 * Initialized pointers to per-CPU variables needed for the boot
102 * processor need to use these macros to get the proper address
103 * offset from __per_cpu_load on SMP.
104 *
105 * There also must be an entry in vmlinux_64.lds.S
106 */
107#define DECLARE_INIT_PER_CPU(var) \
108 extern typeof(var) init_per_cpu_var(var)
109
110#ifdef CONFIG_X86_64_SMP
111# define init_per_cpu_var(var) init_per_cpu__##var
112#else
113# define init_per_cpu_var(var) var
114#endif
115
116/*
117 * For arch-specific code, we can use direct single-insn ops (they
118 * don't give an lvalue though).
119 */
120
121#define __pcpu_type_1 u8
122#define __pcpu_type_2 u16
123#define __pcpu_type_4 u32
124#define __pcpu_type_8 u64
125
126#define __pcpu_cast_1(val) ((u8)(((unsigned long) val) & 0xff))
127#define __pcpu_cast_2(val) ((u16)(((unsigned long) val) & 0xffff))
128#define __pcpu_cast_4(val) ((u32)(((unsigned long) val) & 0xffffffff))
129#define __pcpu_cast_8(val) ((u64)(val))
130
131#define __pcpu_op1_1(op, dst) op "b " dst
132#define __pcpu_op1_2(op, dst) op "w " dst
133#define __pcpu_op1_4(op, dst) op "l " dst
134#define __pcpu_op1_8(op, dst) op "q " dst
135
136#define __pcpu_op2_1(op, src, dst) op "b " src ", " dst
137#define __pcpu_op2_2(op, src, dst) op "w " src ", " dst
138#define __pcpu_op2_4(op, src, dst) op "l " src ", " dst
139#define __pcpu_op2_8(op, src, dst) op "q " src ", " dst
140
141#define __pcpu_reg_1(mod, x) mod "q" (x)
142#define __pcpu_reg_2(mod, x) mod "r" (x)
143#define __pcpu_reg_4(mod, x) mod "r" (x)
144#define __pcpu_reg_8(mod, x) mod "r" (x)
145
146#define __pcpu_reg_imm_1(x) "qi" (x)
147#define __pcpu_reg_imm_2(x) "ri" (x)
148#define __pcpu_reg_imm_4(x) "ri" (x)
149#define __pcpu_reg_imm_8(x) "re" (x)
150
151#ifdef CONFIG_USE_X86_SEG_SUPPORT
152
153#define __raw_cpu_read(size, qual, pcp) \
154({ \
155 *(qual __my_cpu_type(pcp) *)__my_cpu_ptr(&(pcp)); \
156})
157
158#define __raw_cpu_write(size, qual, pcp, val) \
159do { \
160 *(qual __my_cpu_type(pcp) *)__my_cpu_ptr(&(pcp)) = (val); \
161} while (0)
162
163#define __raw_cpu_read_const(pcp) __raw_cpu_read(, , pcp)
164
165#else /* !CONFIG_USE_X86_SEG_SUPPORT: */
166
167#define __raw_cpu_read(size, qual, _var) \
168({ \
169 __pcpu_type_##size pfo_val__; \
170 \
171 asm qual (__pcpu_op2_##size("mov", __percpu_arg([var]), "%[val]") \
172 : [val] __pcpu_reg_##size("=", pfo_val__) \
173 : [var] "m" (__my_cpu_var(_var))); \
174 \
175 (typeof(_var))(unsigned long) pfo_val__; \
176})
177
178#define __raw_cpu_write(size, qual, _var, _val) \
179do { \
180 __pcpu_type_##size pto_val__ = __pcpu_cast_##size(_val); \
181 \
182 if (0) { \
183 typeof(_var) pto_tmp__; \
184 pto_tmp__ = (_val); \
185 (void)pto_tmp__; \
186 } \
187 asm qual(__pcpu_op2_##size("mov", "%[val]", __percpu_arg([var])) \
188 : [var] "=m" (__my_cpu_var(_var)) \
189 : [val] __pcpu_reg_imm_##size(pto_val__)); \
190} while (0)
191
192/*
193 * The generic per-CPU infrastrucutre is not suitable for
194 * reading const-qualified variables.
195 */
196#define __raw_cpu_read_const(pcp) ({ BUILD_BUG(); (typeof(pcp))0; })
197
198#endif /* CONFIG_USE_X86_SEG_SUPPORT */
199
200#define __raw_cpu_read_stable(size, _var) \
201({ \
202 __pcpu_type_##size pfo_val__; \
203 \
204 asm(__pcpu_op2_##size("mov", __force_percpu_arg(a[var]), "%[val]") \
205 : [val] __pcpu_reg_##size("=", pfo_val__) \
206 : [var] "i" (&(_var))); \
207 \
208 (typeof(_var))(unsigned long) pfo_val__; \
209})
210
211#define percpu_unary_op(size, qual, op, _var) \
212({ \
213 asm qual (__pcpu_op1_##size(op, __percpu_arg([var])) \
214 : [var] "+m" (__my_cpu_var(_var))); \
215})
216
217#define percpu_binary_op(size, qual, op, _var, _val) \
218do { \
219 __pcpu_type_##size pto_val__ = __pcpu_cast_##size(_val); \
220 \
221 if (0) { \
222 typeof(_var) pto_tmp__; \
223 pto_tmp__ = (_val); \
224 (void)pto_tmp__; \
225 } \
226 asm qual(__pcpu_op2_##size(op, "%[val]", __percpu_arg([var])) \
227 : [var] "+m" (__my_cpu_var(_var)) \
228 : [val] __pcpu_reg_imm_##size(pto_val__)); \
229} while (0)
230
231/*
232 * Generate a per-CPU add to memory instruction and optimize code
233 * if one is added or subtracted.
234 */
235#define percpu_add_op(size, qual, var, val) \
236do { \
237 const int pao_ID__ = \
238 (__builtin_constant_p(val) && \
239 ((val) == 1 || \
240 (val) == (typeof(val))-1)) ? (int)(val) : 0; \
241 \
242 if (0) { \
243 typeof(var) pao_tmp__; \
244 pao_tmp__ = (val); \
245 (void)pao_tmp__; \
246 } \
247 if (pao_ID__ == 1) \
248 percpu_unary_op(size, qual, "inc", var); \
249 else if (pao_ID__ == -1) \
250 percpu_unary_op(size, qual, "dec", var); \
251 else \
252 percpu_binary_op(size, qual, "add", var, val); \
253} while (0)
254
255/*
256 * Add return operation
257 */
258#define percpu_add_return_op(size, qual, _var, _val) \
259({ \
260 __pcpu_type_##size paro_tmp__ = __pcpu_cast_##size(_val); \
261 \
262 asm qual (__pcpu_op2_##size("xadd", "%[tmp]", \
263 __percpu_arg([var])) \
264 : [tmp] __pcpu_reg_##size("+", paro_tmp__), \
265 [var] "+m" (__my_cpu_var(_var)) \
266 : : "memory"); \
267 (typeof(_var))(unsigned long) (paro_tmp__ + _val); \
268})
269
270/*
271 * raw_cpu_xchg() can use a load-store since
272 * it is not required to be IRQ-safe.
273 */
274#define raw_percpu_xchg_op(_var, _nval) \
275({ \
276 typeof(_var) pxo_old__ = raw_cpu_read(_var); \
277 \
278 raw_cpu_write(_var, _nval); \
279 \
280 pxo_old__; \
281})
282
283/*
284 * this_cpu_xchg() is implemented using CMPXCHG without a LOCK prefix.
285 * XCHG is expensive due to the implied LOCK prefix. The processor
286 * cannot prefetch cachelines if XCHG is used.
287 */
288#define this_percpu_xchg_op(_var, _nval) \
289({ \
290 typeof(_var) pxo_old__ = this_cpu_read(_var); \
291 \
292 do { } while (!this_cpu_try_cmpxchg(_var, &pxo_old__, _nval)); \
293 \
294 pxo_old__; \
295})
296
297/*
298 * CMPXCHG has no such implied lock semantics as a result it is much
299 * more efficient for CPU-local operations.
300 */
301#define percpu_cmpxchg_op(size, qual, _var, _oval, _nval) \
302({ \
303 __pcpu_type_##size pco_old__ = __pcpu_cast_##size(_oval); \
304 __pcpu_type_##size pco_new__ = __pcpu_cast_##size(_nval); \
305 \
306 asm qual (__pcpu_op2_##size("cmpxchg", "%[nval]", \
307 __percpu_arg([var])) \
308 : [oval] "+a" (pco_old__), \
309 [var] "+m" (__my_cpu_var(_var)) \
310 : [nval] __pcpu_reg_##size(, pco_new__) \
311 : "memory"); \
312 \
313 (typeof(_var))(unsigned long) pco_old__; \
314})
315
316#define percpu_try_cmpxchg_op(size, qual, _var, _ovalp, _nval) \
317({ \
318 bool success; \
319 __pcpu_type_##size *pco_oval__ = (__pcpu_type_##size *)(_ovalp); \
320 __pcpu_type_##size pco_old__ = *pco_oval__; \
321 __pcpu_type_##size pco_new__ = __pcpu_cast_##size(_nval); \
322 \
323 asm qual (__pcpu_op2_##size("cmpxchg", "%[nval]", \
324 __percpu_arg([var])) \
325 CC_SET(z) \
326 : CC_OUT(z) (success), \
327 [oval] "+a" (pco_old__), \
328 [var] "+m" (__my_cpu_var(_var)) \
329 : [nval] __pcpu_reg_##size(, pco_new__) \
330 : "memory"); \
331 if (unlikely(!success)) \
332 *pco_oval__ = pco_old__; \
333 \
334 likely(success); \
335})
336
337#if defined(CONFIG_X86_32) && !defined(CONFIG_UML)
338
339#define percpu_cmpxchg64_op(size, qual, _var, _oval, _nval) \
340({ \
341 union { \
342 u64 var; \
343 struct { \
344 u32 low, high; \
345 }; \
346 } old__, new__; \
347 \
348 old__.var = _oval; \
349 new__.var = _nval; \
350 \
351 asm qual (ALTERNATIVE("call this_cpu_cmpxchg8b_emu", \
352 "cmpxchg8b " __percpu_arg([var]), X86_FEATURE_CX8) \
353 : [var] "+m" (__my_cpu_var(_var)), \
354 "+a" (old__.low), \
355 "+d" (old__.high) \
356 : "b" (new__.low), \
357 "c" (new__.high), \
358 "S" (&(_var)) \
359 : "memory"); \
360 \
361 old__.var; \
362})
363
364#define raw_cpu_cmpxchg64(pcp, oval, nval) percpu_cmpxchg64_op(8, , pcp, oval, nval)
365#define this_cpu_cmpxchg64(pcp, oval, nval) percpu_cmpxchg64_op(8, volatile, pcp, oval, nval)
366
367#define percpu_try_cmpxchg64_op(size, qual, _var, _ovalp, _nval) \
368({ \
369 bool success; \
370 u64 *_oval = (u64 *)(_ovalp); \
371 union { \
372 u64 var; \
373 struct { \
374 u32 low, high; \
375 }; \
376 } old__, new__; \
377 \
378 old__.var = *_oval; \
379 new__.var = _nval; \
380 \
381 asm qual (ALTERNATIVE("call this_cpu_cmpxchg8b_emu", \
382 "cmpxchg8b " __percpu_arg([var]), X86_FEATURE_CX8) \
383 CC_SET(z) \
384 : CC_OUT(z) (success), \
385 [var] "+m" (__my_cpu_var(_var)), \
386 "+a" (old__.low), \
387 "+d" (old__.high) \
388 : "b" (new__.low), \
389 "c" (new__.high), \
390 "S" (&(_var)) \
391 : "memory"); \
392 if (unlikely(!success)) \
393 *_oval = old__.var; \
394 \
395 likely(success); \
396})
397
398#define raw_cpu_try_cmpxchg64(pcp, ovalp, nval) percpu_try_cmpxchg64_op(8, , pcp, ovalp, nval)
399#define this_cpu_try_cmpxchg64(pcp, ovalp, nval) percpu_try_cmpxchg64_op(8, volatile, pcp, ovalp, nval)
400
401#endif /* defined(CONFIG_X86_32) && !defined(CONFIG_UML) */
402
403#ifdef CONFIG_X86_64
404#define raw_cpu_cmpxchg64(pcp, oval, nval) percpu_cmpxchg_op(8, , pcp, oval, nval);
405#define this_cpu_cmpxchg64(pcp, oval, nval) percpu_cmpxchg_op(8, volatile, pcp, oval, nval);
406
407#define raw_cpu_try_cmpxchg64(pcp, ovalp, nval) percpu_try_cmpxchg_op(8, , pcp, ovalp, nval);
408#define this_cpu_try_cmpxchg64(pcp, ovalp, nval) percpu_try_cmpxchg_op(8, volatile, pcp, ovalp, nval);
409
410#define percpu_cmpxchg128_op(size, qual, _var, _oval, _nval) \
411({ \
412 union { \
413 u128 var; \
414 struct { \
415 u64 low, high; \
416 }; \
417 } old__, new__; \
418 \
419 old__.var = _oval; \
420 new__.var = _nval; \
421 \
422 asm qual (ALTERNATIVE("call this_cpu_cmpxchg16b_emu", \
423 "cmpxchg16b " __percpu_arg([var]), X86_FEATURE_CX16) \
424 : [var] "+m" (__my_cpu_var(_var)), \
425 "+a" (old__.low), \
426 "+d" (old__.high) \
427 : "b" (new__.low), \
428 "c" (new__.high), \
429 "S" (&(_var)) \
430 : "memory"); \
431 \
432 old__.var; \
433})
434
435#define raw_cpu_cmpxchg128(pcp, oval, nval) percpu_cmpxchg128_op(16, , pcp, oval, nval)
436#define this_cpu_cmpxchg128(pcp, oval, nval) percpu_cmpxchg128_op(16, volatile, pcp, oval, nval)
437
438#define percpu_try_cmpxchg128_op(size, qual, _var, _ovalp, _nval) \
439({ \
440 bool success; \
441 u128 *_oval = (u128 *)(_ovalp); \
442 union { \
443 u128 var; \
444 struct { \
445 u64 low, high; \
446 }; \
447 } old__, new__; \
448 \
449 old__.var = *_oval; \
450 new__.var = _nval; \
451 \
452 asm qual (ALTERNATIVE("call this_cpu_cmpxchg16b_emu", \
453 "cmpxchg16b " __percpu_arg([var]), X86_FEATURE_CX16) \
454 CC_SET(z) \
455 : CC_OUT(z) (success), \
456 [var] "+m" (__my_cpu_var(_var)), \
457 "+a" (old__.low), \
458 "+d" (old__.high) \
459 : "b" (new__.low), \
460 "c" (new__.high), \
461 "S" (&(_var)) \
462 : "memory"); \
463 if (unlikely(!success)) \
464 *_oval = old__.var; \
465 likely(success); \
466})
467
468#define raw_cpu_try_cmpxchg128(pcp, ovalp, nval) percpu_try_cmpxchg128_op(16, , pcp, ovalp, nval)
469#define this_cpu_try_cmpxchg128(pcp, ovalp, nval) percpu_try_cmpxchg128_op(16, volatile, pcp, ovalp, nval)
470
471#endif /* CONFIG_X86_64 */
472
473#define raw_cpu_read_1(pcp) __raw_cpu_read(1, , pcp)
474#define raw_cpu_read_2(pcp) __raw_cpu_read(2, , pcp)
475#define raw_cpu_read_4(pcp) __raw_cpu_read(4, , pcp)
476#define raw_cpu_write_1(pcp, val) __raw_cpu_write(1, , pcp, val)
477#define raw_cpu_write_2(pcp, val) __raw_cpu_write(2, , pcp, val)
478#define raw_cpu_write_4(pcp, val) __raw_cpu_write(4, , pcp, val)
479
480#define this_cpu_read_1(pcp) __raw_cpu_read(1, volatile, pcp)
481#define this_cpu_read_2(pcp) __raw_cpu_read(2, volatile, pcp)
482#define this_cpu_read_4(pcp) __raw_cpu_read(4, volatile, pcp)
483#define this_cpu_write_1(pcp, val) __raw_cpu_write(1, volatile, pcp, val)
484#define this_cpu_write_2(pcp, val) __raw_cpu_write(2, volatile, pcp, val)
485#define this_cpu_write_4(pcp, val) __raw_cpu_write(4, volatile, pcp, val)
486
487#define this_cpu_read_stable_1(pcp) __raw_cpu_read_stable(1, pcp)
488#define this_cpu_read_stable_2(pcp) __raw_cpu_read_stable(2, pcp)
489#define this_cpu_read_stable_4(pcp) __raw_cpu_read_stable(4, pcp)
490
491#define raw_cpu_add_1(pcp, val) percpu_add_op(1, , (pcp), val)
492#define raw_cpu_add_2(pcp, val) percpu_add_op(2, , (pcp), val)
493#define raw_cpu_add_4(pcp, val) percpu_add_op(4, , (pcp), val)
494#define raw_cpu_and_1(pcp, val) percpu_binary_op(1, , "and", (pcp), val)
495#define raw_cpu_and_2(pcp, val) percpu_binary_op(2, , "and", (pcp), val)
496#define raw_cpu_and_4(pcp, val) percpu_binary_op(4, , "and", (pcp), val)
497#define raw_cpu_or_1(pcp, val) percpu_binary_op(1, , "or", (pcp), val)
498#define raw_cpu_or_2(pcp, val) percpu_binary_op(2, , "or", (pcp), val)
499#define raw_cpu_or_4(pcp, val) percpu_binary_op(4, , "or", (pcp), val)
500#define raw_cpu_xchg_1(pcp, val) raw_percpu_xchg_op(pcp, val)
501#define raw_cpu_xchg_2(pcp, val) raw_percpu_xchg_op(pcp, val)
502#define raw_cpu_xchg_4(pcp, val) raw_percpu_xchg_op(pcp, val)
503
504#define this_cpu_add_1(pcp, val) percpu_add_op(1, volatile, (pcp), val)
505#define this_cpu_add_2(pcp, val) percpu_add_op(2, volatile, (pcp), val)
506#define this_cpu_add_4(pcp, val) percpu_add_op(4, volatile, (pcp), val)
507#define this_cpu_and_1(pcp, val) percpu_binary_op(1, volatile, "and", (pcp), val)
508#define this_cpu_and_2(pcp, val) percpu_binary_op(2, volatile, "and", (pcp), val)
509#define this_cpu_and_4(pcp, val) percpu_binary_op(4, volatile, "and", (pcp), val)
510#define this_cpu_or_1(pcp, val) percpu_binary_op(1, volatile, "or", (pcp), val)
511#define this_cpu_or_2(pcp, val) percpu_binary_op(2, volatile, "or", (pcp), val)
512#define this_cpu_or_4(pcp, val) percpu_binary_op(4, volatile, "or", (pcp), val)
513#define this_cpu_xchg_1(pcp, nval) this_percpu_xchg_op(pcp, nval)
514#define this_cpu_xchg_2(pcp, nval) this_percpu_xchg_op(pcp, nval)
515#define this_cpu_xchg_4(pcp, nval) this_percpu_xchg_op(pcp, nval)
516
517#define raw_cpu_add_return_1(pcp, val) percpu_add_return_op(1, , pcp, val)
518#define raw_cpu_add_return_2(pcp, val) percpu_add_return_op(2, , pcp, val)
519#define raw_cpu_add_return_4(pcp, val) percpu_add_return_op(4, , pcp, val)
520#define raw_cpu_cmpxchg_1(pcp, oval, nval) percpu_cmpxchg_op(1, , pcp, oval, nval)
521#define raw_cpu_cmpxchg_2(pcp, oval, nval) percpu_cmpxchg_op(2, , pcp, oval, nval)
522#define raw_cpu_cmpxchg_4(pcp, oval, nval) percpu_cmpxchg_op(4, , pcp, oval, nval)
523#define raw_cpu_try_cmpxchg_1(pcp, ovalp, nval) percpu_try_cmpxchg_op(1, , pcp, ovalp, nval)
524#define raw_cpu_try_cmpxchg_2(pcp, ovalp, nval) percpu_try_cmpxchg_op(2, , pcp, ovalp, nval)
525#define raw_cpu_try_cmpxchg_4(pcp, ovalp, nval) percpu_try_cmpxchg_op(4, , pcp, ovalp, nval)
526
527#define this_cpu_add_return_1(pcp, val) percpu_add_return_op(1, volatile, pcp, val)
528#define this_cpu_add_return_2(pcp, val) percpu_add_return_op(2, volatile, pcp, val)
529#define this_cpu_add_return_4(pcp, val) percpu_add_return_op(4, volatile, pcp, val)
530#define this_cpu_cmpxchg_1(pcp, oval, nval) percpu_cmpxchg_op(1, volatile, pcp, oval, nval)
531#define this_cpu_cmpxchg_2(pcp, oval, nval) percpu_cmpxchg_op(2, volatile, pcp, oval, nval)
532#define this_cpu_cmpxchg_4(pcp, oval, nval) percpu_cmpxchg_op(4, volatile, pcp, oval, nval)
533#define this_cpu_try_cmpxchg_1(pcp, ovalp, nval) percpu_try_cmpxchg_op(1, volatile, pcp, ovalp, nval)
534#define this_cpu_try_cmpxchg_2(pcp, ovalp, nval) percpu_try_cmpxchg_op(2, volatile, pcp, ovalp, nval)
535#define this_cpu_try_cmpxchg_4(pcp, ovalp, nval) percpu_try_cmpxchg_op(4, volatile, pcp, ovalp, nval)
536
537/*
538 * Per-CPU atomic 64-bit operations are only available under 64-bit kernels.
539 * 32-bit kernels must fall back to generic operations.
540 */
541#ifdef CONFIG_X86_64
542
543#define raw_cpu_read_8(pcp) __raw_cpu_read(8, , pcp)
544#define raw_cpu_write_8(pcp, val) __raw_cpu_write(8, , pcp, val)
545
546#define this_cpu_read_8(pcp) __raw_cpu_read(8, volatile, pcp)
547#define this_cpu_write_8(pcp, val) __raw_cpu_write(8, volatile, pcp, val)
548
549#define this_cpu_read_stable_8(pcp) __raw_cpu_read_stable(8, pcp)
550
551#define raw_cpu_add_8(pcp, val) percpu_add_op(8, , (pcp), val)
552#define raw_cpu_and_8(pcp, val) percpu_binary_op(8, , "and", (pcp), val)
553#define raw_cpu_or_8(pcp, val) percpu_binary_op(8, , "or", (pcp), val)
554#define raw_cpu_add_return_8(pcp, val) percpu_add_return_op(8, , pcp, val)
555#define raw_cpu_xchg_8(pcp, nval) raw_percpu_xchg_op(pcp, nval)
556#define raw_cpu_cmpxchg_8(pcp, oval, nval) percpu_cmpxchg_op(8, , pcp, oval, nval)
557#define raw_cpu_try_cmpxchg_8(pcp, ovalp, nval) percpu_try_cmpxchg_op(8, , pcp, ovalp, nval)
558
559#define this_cpu_add_8(pcp, val) percpu_add_op(8, volatile, (pcp), val)
560#define this_cpu_and_8(pcp, val) percpu_binary_op(8, volatile, "and", (pcp), val)
561#define this_cpu_or_8(pcp, val) percpu_binary_op(8, volatile, "or", (pcp), val)
562#define this_cpu_add_return_8(pcp, val) percpu_add_return_op(8, volatile, pcp, val)
563#define this_cpu_xchg_8(pcp, nval) this_percpu_xchg_op(pcp, nval)
564#define this_cpu_cmpxchg_8(pcp, oval, nval) percpu_cmpxchg_op(8, volatile, pcp, oval, nval)
565#define this_cpu_try_cmpxchg_8(pcp, ovalp, nval) percpu_try_cmpxchg_op(8, volatile, pcp, ovalp, nval)
566
567#define raw_cpu_read_long(pcp) raw_cpu_read_8(pcp)
568
569#else /* !CONFIG_X86_64: */
570
571/* There is no generic 64-bit read stable operation for 32-bit targets. */
572#define this_cpu_read_stable_8(pcp) ({ BUILD_BUG(); (typeof(pcp))0; })
573
574#define raw_cpu_read_long(pcp) raw_cpu_read_4(pcp)
575
576#endif /* CONFIG_X86_64 */
577
578#define this_cpu_read_const(pcp) __raw_cpu_read_const(pcp)
579
580/*
581 * this_cpu_read() makes the compiler load the per-CPU variable every time
582 * it is accessed while this_cpu_read_stable() allows the value to be cached.
583 * this_cpu_read_stable() is more efficient and can be used if its value
584 * is guaranteed to be valid across CPUs. The current users include
585 * pcpu_hot.current_task and pcpu_hot.top_of_stack, both of which are
586 * actually per-thread variables implemented as per-CPU variables and
587 * thus stable for the duration of the respective task.
588 */
589#define this_cpu_read_stable(pcp) __pcpu_size_call_return(this_cpu_read_stable_, pcp)
590
591#define x86_this_cpu_constant_test_bit(_nr, _var) \
592({ \
593 unsigned long __percpu *addr__ = \
594 (unsigned long __percpu *)&(_var) + ((_nr) / BITS_PER_LONG); \
595 \
596 !!((1UL << ((_nr) % BITS_PER_LONG)) & raw_cpu_read(*addr__)); \
597})
598
599#define x86_this_cpu_variable_test_bit(_nr, _var) \
600({ \
601 bool oldbit; \
602 \
603 asm volatile("btl %[nr], " __percpu_arg([var]) \
604 CC_SET(c) \
605 : CC_OUT(c) (oldbit) \
606 : [var] "m" (__my_cpu_var(_var)), \
607 [nr] "rI" (_nr)); \
608 oldbit; \
609})
610
611#define x86_this_cpu_test_bit(_nr, _var) \
612 (__builtin_constant_p(_nr) \
613 ? x86_this_cpu_constant_test_bit(_nr, _var) \
614 : x86_this_cpu_variable_test_bit(_nr, _var))
615
616
617#include <asm-generic/percpu.h>
618
619/* We can use this directly for local CPU (faster). */
620DECLARE_PER_CPU_READ_MOSTLY(unsigned long, this_cpu_off);
621
622#endif /* !__ASSEMBLY__ */
623
624#ifdef CONFIG_SMP
625
626/*
627 * Define the "EARLY_PER_CPU" macros. These are used for some per_cpu
628 * variables that are initialized and accessed before there are per_cpu
629 * areas allocated.
630 */
631
632#define DEFINE_EARLY_PER_CPU(_type, _name, _initvalue) \
633 DEFINE_PER_CPU(_type, _name) = _initvalue; \
634 __typeof__(_type) _name##_early_map[NR_CPUS] __initdata = \
635 { [0 ... NR_CPUS-1] = _initvalue }; \
636 __typeof__(_type) *_name##_early_ptr __refdata = _name##_early_map
637
638#define DEFINE_EARLY_PER_CPU_READ_MOSTLY(_type, _name, _initvalue) \
639 DEFINE_PER_CPU_READ_MOSTLY(_type, _name) = _initvalue; \
640 __typeof__(_type) _name##_early_map[NR_CPUS] __initdata = \
641 { [0 ... NR_CPUS-1] = _initvalue }; \
642 __typeof__(_type) *_name##_early_ptr __refdata = _name##_early_map
643
644#define EXPORT_EARLY_PER_CPU_SYMBOL(_name) \
645 EXPORT_PER_CPU_SYMBOL(_name)
646
647#define DECLARE_EARLY_PER_CPU(_type, _name) \
648 DECLARE_PER_CPU(_type, _name); \
649 extern __typeof__(_type) *_name##_early_ptr; \
650 extern __typeof__(_type) _name##_early_map[]
651
652#define DECLARE_EARLY_PER_CPU_READ_MOSTLY(_type, _name) \
653 DECLARE_PER_CPU_READ_MOSTLY(_type, _name); \
654 extern __typeof__(_type) *_name##_early_ptr; \
655 extern __typeof__(_type) _name##_early_map[]
656
657#define early_per_cpu_ptr(_name) (_name##_early_ptr)
658#define early_per_cpu_map(_name, _idx) (_name##_early_map[_idx])
659
660#define early_per_cpu(_name, _cpu) \
661 *(early_per_cpu_ptr(_name) ? \
662 &early_per_cpu_ptr(_name)[_cpu] : \
663 &per_cpu(_name, _cpu))
664
665#else /* !CONFIG_SMP: */
666#define DEFINE_EARLY_PER_CPU(_type, _name, _initvalue) \
667 DEFINE_PER_CPU(_type, _name) = _initvalue
668
669#define DEFINE_EARLY_PER_CPU_READ_MOSTLY(_type, _name, _initvalue) \
670 DEFINE_PER_CPU_READ_MOSTLY(_type, _name) = _initvalue
671
672#define EXPORT_EARLY_PER_CPU_SYMBOL(_name) \
673 EXPORT_PER_CPU_SYMBOL(_name)
674
675#define DECLARE_EARLY_PER_CPU(_type, _name) \
676 DECLARE_PER_CPU(_type, _name)
677
678#define DECLARE_EARLY_PER_CPU_READ_MOSTLY(_type, _name) \
679 DECLARE_PER_CPU_READ_MOSTLY(_type, _name)
680
681#define early_per_cpu(_name, _cpu) per_cpu(_name, _cpu)
682#define early_per_cpu_ptr(_name) NULL
683/* no early_per_cpu_map() */
684
685#endif /* !CONFIG_SMP */
686
687#endif /* _ASM_X86_PERCPU_H */