1 #ifndef _ASM_X86_PERCPU_H
2 #define _ASM_X86_PERCPU_H
5 #define __percpu_seg gs
6 #define __percpu_mov_op movq
8 #define __percpu_seg fs
9 #define __percpu_mov_op movl
15 * PER_CPU finds an address of a per-cpu variable.
19 * reg - 32bit register
21 * The resulting address is stored in the "reg" argument.
24 * PER_CPU(cpu_gdt_descr, %ebx)
27 #define PER_CPU(var, reg) \
28 __percpu_mov_op %__percpu_seg:per_cpu__this_cpu_off, reg; \
29 lea per_cpu__##var(reg), reg
30 #define PER_CPU_VAR(var) %__percpu_seg:per_cpu__##var
32 #define PER_CPU(var, reg) \
33 __percpu_mov_op $per_cpu__##var, reg
34 #define PER_CPU_VAR(var) per_cpu__##var
37 #ifdef CONFIG_X86_64_SMP
38 #define INIT_PER_CPU_VAR(var) init_per_cpu__##var
40 #define INIT_PER_CPU_VAR(var) per_cpu__##var
43 #else /* ...!ASSEMBLY */
45 #include <linux/kernel.h>
46 #include <linux/stringify.h>
49 #define __percpu_arg(x) "%%"__stringify(__percpu_seg)":%P" #x
50 #define __my_cpu_offset percpu_read(this_cpu_off)
52 #define __percpu_arg(x) "%P" #x
56 * Initialized pointers to per-cpu variables needed for the boot
57 * processor need to use these macros to get the proper address
58 * offset from __per_cpu_load on SMP.
60 * There also must be an entry in vmlinux_64.lds.S
62 #define DECLARE_INIT_PER_CPU(var) \
63 extern typeof(per_cpu_var(var)) init_per_cpu_var(var)
65 #ifdef CONFIG_X86_64_SMP
66 #define init_per_cpu_var(var) init_per_cpu__##var
68 #define init_per_cpu_var(var) per_cpu_var(var)
71 /* For arch-specific code, we can use direct single-insn ops (they
72 * don't give an lvalue though). */
73 extern void __bad_percpu_size(void);
75 #define percpu_to_op(op, var, val) \
77 typedef typeof(var) T__; \
82 switch (sizeof(var)) { \
84 asm(op "b %1,"__percpu_arg(0) \
86 : "qi" ((T__)(val))); \
89 asm(op "w %1,"__percpu_arg(0) \
91 : "ri" ((T__)(val))); \
94 asm(op "l %1,"__percpu_arg(0) \
96 : "ri" ((T__)(val))); \
99 asm(op "q %1,"__percpu_arg(0) \
101 : "re" ((T__)(val))); \
103 default: __bad_percpu_size(); \
107 #define percpu_from_op(op, var, constraint) \
110 switch (sizeof(var)) { \
112 asm(op "b "__percpu_arg(1)",%0" \
117 asm(op "w "__percpu_arg(1)",%0" \
122 asm(op "l "__percpu_arg(1)",%0" \
127 asm(op "q "__percpu_arg(1)",%0" \
131 default: __bad_percpu_size(); \
137 * percpu_read() makes gcc load the percpu variable every time it is
138 * accessed while percpu_read_stable() allows the value to be cached.
139 * percpu_read_stable() is more efficient and can be used if its value
140 * is guaranteed to be valid across cpus. The current users include
141 * get_current() and get_thread_info() both of which are actually
142 * per-thread variables implemented as per-cpu variables and thus
143 * stable for the duration of the respective task.
145 #define percpu_read(var) percpu_from_op("mov", per_cpu__##var, \
146 "m" (per_cpu__##var))
147 #define percpu_read_stable(var) percpu_from_op("mov", per_cpu__##var, \
148 "p" (&per_cpu__##var))
149 #define percpu_write(var, val) percpu_to_op("mov", per_cpu__##var, val)
150 #define percpu_add(var, val) percpu_to_op("add", per_cpu__##var, val)
151 #define percpu_sub(var, val) percpu_to_op("sub", per_cpu__##var, val)
152 #define percpu_and(var, val) percpu_to_op("and", per_cpu__##var, val)
153 #define percpu_or(var, val) percpu_to_op("or", per_cpu__##var, val)
154 #define percpu_xor(var, val) percpu_to_op("xor", per_cpu__##var, val)
156 /* This is not atomic against other CPUs -- CPU preemption needs to be off */
157 #define x86_test_and_clear_bit_percpu(bit, var) \
160 asm volatile("btr %2,"__percpu_arg(1)"\n\tsbbl %0,%0" \
161 : "=r" (old__), "+m" (per_cpu__##var) \
166 #include <asm-generic/percpu.h>
168 /* We can use this directly for local CPU (faster). */
169 DECLARE_PER_CPU(unsigned long, this_cpu_off
);
171 #endif /* !__ASSEMBLY__ */
176 * Define the "EARLY_PER_CPU" macros. These are used for some per_cpu
177 * variables that are initialized and accessed before there are per_cpu
181 #define DEFINE_EARLY_PER_CPU(_type, _name, _initvalue) \
182 DEFINE_PER_CPU(_type, _name) = _initvalue; \
183 __typeof__(_type) _name##_early_map[NR_CPUS] __initdata = \
184 { [0 ... NR_CPUS-1] = _initvalue }; \
185 __typeof__(_type) *_name##_early_ptr __refdata = _name##_early_map
187 #define EXPORT_EARLY_PER_CPU_SYMBOL(_name) \
188 EXPORT_PER_CPU_SYMBOL(_name)
190 #define DECLARE_EARLY_PER_CPU(_type, _name) \
191 DECLARE_PER_CPU(_type, _name); \
192 extern __typeof__(_type) *_name##_early_ptr; \
193 extern __typeof__(_type) _name##_early_map[]
195 #define early_per_cpu_ptr(_name) (_name##_early_ptr)
196 #define early_per_cpu_map(_name, _idx) (_name##_early_map[_idx])
197 #define early_per_cpu(_name, _cpu) \
198 *(early_per_cpu_ptr(_name) ? \
199 &early_per_cpu_ptr(_name)[_cpu] : \
200 &per_cpu(_name, _cpu))
202 #else /* !CONFIG_SMP */
203 #define DEFINE_EARLY_PER_CPU(_type, _name, _initvalue) \
204 DEFINE_PER_CPU(_type, _name) = _initvalue
206 #define EXPORT_EARLY_PER_CPU_SYMBOL(_name) \
207 EXPORT_PER_CPU_SYMBOL(_name)
209 #define DECLARE_EARLY_PER_CPU(_type, _name) \
210 DECLARE_PER_CPU(_type, _name)
212 #define early_per_cpu(_name, _cpu) per_cpu(_name, _cpu)
213 #define early_per_cpu_ptr(_name) NULL
214 /* no early_per_cpu_map() */
216 #endif /* !CONFIG_SMP */
218 #endif /* _ASM_X86_PERCPU_H */