percpu.h 5.6 KB
Newer Older
H
H. Peter Anvin 已提交
1 2
#ifndef _ASM_X86_PERCPU_H
#define _ASM_X86_PERCPU_H
T
travis@sgi.com 已提交
3

4
#ifdef CONFIG_X86_64
5 6
#define __percpu_seg		gs
#define __percpu_mov_op		movq
7
#else
8 9
#define __percpu_seg		fs
#define __percpu_mov_op		movl
10
#endif
T
travis@sgi.com 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26

#ifdef __ASSEMBLY__

/*
 * PER_CPU finds an address of a per-cpu variable.
 *
 * Args:
 *    var - variable name
 *    reg - 32bit register
 *
 * The resulting address is stored in the "reg" argument.
 *
 * Example:
 *    PER_CPU(cpu_gdt_descr, %ebx)
 */
#ifdef CONFIG_SMP
27 28
#define PER_CPU(var, reg)						\
	__percpu_mov_op %__percpu_seg:per_cpu__this_cpu_off, reg;	\
T
travis@sgi.com 已提交
29
	lea per_cpu__##var(reg), reg
30
#define PER_CPU_VAR(var)	%__percpu_seg:per_cpu__##var
T
travis@sgi.com 已提交
31
#else /* ! SMP */
32 33
#define PER_CPU(var, reg)						\
	__percpu_mov_op $per_cpu__##var, reg
T
travis@sgi.com 已提交
34 35 36
#define PER_CPU_VAR(var)	per_cpu__##var
#endif	/* SMP */

37 38 39 40 41 42
#ifdef CONFIG_X86_64_SMP
#define INIT_PER_CPU_VAR(var)  init_per_cpu__##var
#else
#define INIT_PER_CPU_VAR(var)  per_cpu__##var
#endif

T
travis@sgi.com 已提交
43 44
#else /* ...!ASSEMBLY */

45
#include <linux/kernel.h>
46
#include <linux/stringify.h>
T
travis@sgi.com 已提交
47

48
#ifdef CONFIG_SMP
49
#define __percpu_arg(x)		"%%"__stringify(__percpu_seg)":%P" #x
50
#define __my_cpu_offset		percpu_read(this_cpu_off)
51
#else
52
#define __percpu_arg(x)		"%" #x
53
#endif
T
travis@sgi.com 已提交
54

55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
/*
 * Initialized pointers to per-cpu variables needed for the boot
 * processor need to use these macros to get the proper address
 * offset from __per_cpu_load on SMP.
 *
 * There also must be an entry in vmlinux_64.lds.S
 */
#define DECLARE_INIT_PER_CPU(var) \
       extern typeof(per_cpu_var(var)) init_per_cpu_var(var)

#ifdef CONFIG_X86_64_SMP
#define init_per_cpu_var(var)  init_per_cpu__##var
#else
#define init_per_cpu_var(var)  per_cpu_var(var)
#endif

T
travis@sgi.com 已提交
71 72 73 74
/* For arch-specific code, we can use direct single-insn ops (they
 * don't give an lvalue though). */
extern void __bad_percpu_size(void);

75 76 77 78 79 80 81 82 83
#define percpu_to_op(op, var, val)			\
do {							\
	typedef typeof(var) T__;			\
	if (0) {					\
		T__ tmp__;				\
		tmp__ = (val);				\
	}						\
	switch (sizeof(var)) {				\
	case 1:						\
84
		asm(op "b %1,"__percpu_arg(0)		\
85
		    : "+m" (var)			\
J
Jan Beulich 已提交
86
		    : "qi" ((T__)(val)));		\
87 88
		break;					\
	case 2:						\
89
		asm(op "w %1,"__percpu_arg(0)		\
90
		    : "+m" (var)			\
J
Jan Beulich 已提交
91
		    : "ri" ((T__)(val)));		\
92 93
		break;					\
	case 4:						\
94
		asm(op "l %1,"__percpu_arg(0)		\
95
		    : "+m" (var)			\
J
Jan Beulich 已提交
96
		    : "ri" ((T__)(val)));		\
97
		break;					\
98
	case 8:						\
99
		asm(op "q %1,"__percpu_arg(0)		\
100
		    : "+m" (var)			\
J
Jan Beulich 已提交
101
		    : "re" ((T__)(val)));		\
102
		break;					\
103 104 105 106 107 108 109 110 111
	default: __bad_percpu_size();			\
	}						\
} while (0)

#define percpu_from_op(op, var)				\
({							\
	typeof(var) ret__;				\
	switch (sizeof(var)) {				\
	case 1:						\
112
		asm(op "b "__percpu_arg(1)",%0"		\
J
Jan Beulich 已提交
113
		    : "=q" (ret__)			\
114 115 116
		    : "m" (var));			\
		break;					\
	case 2:						\
117
		asm(op "w "__percpu_arg(1)",%0"		\
118 119 120 121
		    : "=r" (ret__)			\
		    : "m" (var));			\
		break;					\
	case 4:						\
122
		asm(op "l "__percpu_arg(1)",%0"		\
123 124 125 126
		    : "=r" (ret__)			\
		    : "m" (var));			\
		break;					\
	case 8:						\
127
		asm(op "q "__percpu_arg(1)",%0"		\
128 129 130 131 132 133 134
		    : "=r" (ret__)			\
		    : "m" (var));			\
		break;					\
	default: __bad_percpu_size();			\
	}						\
	ret__;						\
})
T
travis@sgi.com 已提交
135

136 137 138 139 140 141 142
#define percpu_read(var)	percpu_from_op("mov", per_cpu__##var)
#define percpu_write(var, val)	percpu_to_op("mov", per_cpu__##var, val)
#define percpu_add(var, val)	percpu_to_op("add", per_cpu__##var, val)
#define percpu_sub(var, val)	percpu_to_op("sub", per_cpu__##var, val)
#define percpu_and(var, val)	percpu_to_op("and", per_cpu__##var, val)
#define percpu_or(var, val)	percpu_to_op("or", per_cpu__##var, val)
#define percpu_xor(var, val)	percpu_to_op("xor", per_cpu__##var, val)
143

144 145 146 147
/* This is not atomic against other CPUs -- CPU preemption needs to be off */
#define x86_test_and_clear_bit_percpu(bit, var)				\
({									\
	int old__;							\
148 149 150
	asm volatile("btr %2,"__percpu_arg(1)"\n\tsbbl %0,%0"		\
		     : "=r" (old__), "+m" (per_cpu__##var)		\
		     : "dIr" (bit));					\
151 152 153
	old__;								\
})

154 155 156 157 158
#include <asm-generic/percpu.h>

/* We can use this directly for local CPU (faster). */
DECLARE_PER_CPU(unsigned long, this_cpu_off);

159 160 161 162 163 164 165 166 167
#ifdef CONFIG_NEED_MULTIPLE_NODES
void *pcpu_lpage_remapped(void *kaddr);
#else
static inline void *pcpu_lpage_remapped(void *kaddr)
{
	return NULL;
}
#endif

T
travis@sgi.com 已提交
168
#endif /* !__ASSEMBLY__ */
169 170 171 172 173 174 175 176 177 178 179 180 181

#ifdef CONFIG_SMP

/*
 * Define the "EARLY_PER_CPU" macros.  These are used for some per_cpu
 * variables that are initialized and accessed before there are per_cpu
 * areas allocated.
 */

#define	DEFINE_EARLY_PER_CPU(_type, _name, _initvalue)			\
	DEFINE_PER_CPU(_type, _name) = _initvalue;			\
	__typeof__(_type) _name##_early_map[NR_CPUS] __initdata =	\
				{ [0 ... NR_CPUS-1] = _initvalue };	\
182
	__typeof__(_type) *_name##_early_ptr __refdata = _name##_early_map
183 184 185 186 187 188 189 190 191 192 193 194

#define EXPORT_EARLY_PER_CPU_SYMBOL(_name)			\
	EXPORT_PER_CPU_SYMBOL(_name)

#define DECLARE_EARLY_PER_CPU(_type, _name)			\
	DECLARE_PER_CPU(_type, _name);				\
	extern __typeof__(_type) *_name##_early_ptr;		\
	extern __typeof__(_type)  _name##_early_map[]

#define	early_per_cpu_ptr(_name) (_name##_early_ptr)
#define	early_per_cpu_map(_name, _idx) (_name##_early_map[_idx])
#define	early_per_cpu(_name, _cpu) 				\
195 196 197
	*(early_per_cpu_ptr(_name) ?				\
		&early_per_cpu_ptr(_name)[_cpu] :		\
		&per_cpu(_name, _cpu))
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214

#else	/* !CONFIG_SMP */
#define	DEFINE_EARLY_PER_CPU(_type, _name, _initvalue)		\
	DEFINE_PER_CPU(_type, _name) = _initvalue

#define EXPORT_EARLY_PER_CPU_SYMBOL(_name)			\
	EXPORT_PER_CPU_SYMBOL(_name)

#define DECLARE_EARLY_PER_CPU(_type, _name)			\
	DECLARE_PER_CPU(_type, _name)

#define	early_per_cpu(_name, _cpu) per_cpu(_name, _cpu)
#define	early_per_cpu_ptr(_name) NULL
/* no early_per_cpu_map() */

#endif	/* !CONFIG_SMP */

H
H. Peter Anvin 已提交
215
#endif /* _ASM_X86_PERCPU_H */