percpu.h 4.8 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 37 38
#define PER_CPU_VAR(var)	per_cpu__##var
#endif	/* SMP */

#else /* ...!ASSEMBLY */

39
#include <linux/stringify.h>
T
travis@sgi.com 已提交
40

41
#ifdef CONFIG_SMP
42
#define __percpu_arg(x)		"%%"__stringify(__percpu_seg)":%P" #x
43
#define __my_cpu_offset		percpu_read(this_cpu_off)
44
#else
45
#define __percpu_arg(x)		"%" #x
46
#endif
T
travis@sgi.com 已提交
47 48 49 50 51

/* For arch-specific code, we can use direct single-insn ops (they
 * don't give an lvalue though). */
extern void __bad_percpu_size(void);

52 53 54 55 56 57 58 59 60
#define percpu_to_op(op, var, val)			\
do {							\
	typedef typeof(var) T__;			\
	if (0) {					\
		T__ tmp__;				\
		tmp__ = (val);				\
	}						\
	switch (sizeof(var)) {				\
	case 1:						\
61
		asm(op "b %1,"__percpu_arg(0)		\
62 63 64 65
		    : "+m" (var)			\
		    : "ri" ((T__)val));			\
		break;					\
	case 2:						\
66
		asm(op "w %1,"__percpu_arg(0)		\
67 68 69 70
		    : "+m" (var)			\
		    : "ri" ((T__)val));			\
		break;					\
	case 4:						\
71
		asm(op "l %1,"__percpu_arg(0)		\
72 73 74
		    : "+m" (var)			\
		    : "ri" ((T__)val));			\
		break;					\
75
	case 8:						\
76
		asm(op "q %1,"__percpu_arg(0)		\
77
		    : "+m" (var)			\
78
		    : "re" ((T__)val));			\
79
		break;					\
80 81 82 83 84 85 86 87 88
	default: __bad_percpu_size();			\
	}						\
} while (0)

#define percpu_from_op(op, var)				\
({							\
	typeof(var) ret__;				\
	switch (sizeof(var)) {				\
	case 1:						\
89
		asm(op "b "__percpu_arg(1)",%0"		\
90 91 92 93
		    : "=r" (ret__)			\
		    : "m" (var));			\
		break;					\
	case 2:						\
94
		asm(op "w "__percpu_arg(1)",%0"		\
95 96 97 98
		    : "=r" (ret__)			\
		    : "m" (var));			\
		break;					\
	case 4:						\
99
		asm(op "l "__percpu_arg(1)",%0"		\
100 101 102 103
		    : "=r" (ret__)			\
		    : "m" (var));			\
		break;					\
	case 8:						\
104
		asm(op "q "__percpu_arg(1)",%0"		\
105 106 107 108 109 110 111
		    : "=r" (ret__)			\
		    : "m" (var));			\
		break;					\
	default: __bad_percpu_size();			\
	}						\
	ret__;						\
})
T
travis@sgi.com 已提交
112

113 114 115 116 117 118 119
#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)
120

121 122 123 124
/* This is not atomic against other CPUs -- CPU preemption needs to be off */
#define x86_test_and_clear_bit_percpu(bit, var)				\
({									\
	int old__;							\
125 126 127
	asm volatile("btr %2,"__percpu_arg(1)"\n\tsbbl %0,%0"		\
		     : "=r" (old__), "+m" (per_cpu__##var)		\
		     : "dIr" (bit));					\
128 129 130
	old__;								\
})

131 132 133 134 135
#include <asm-generic/percpu.h>

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

T
travis@sgi.com 已提交
136
#endif /* !__ASSEMBLY__ */
137 138 139 140 141 142 143 144 145 146 147 148 149

#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 };	\
150
	__typeof__(_type) *_name##_early_ptr __refdata = _name##_early_map
151 152 153 154 155 156 157 158 159 160 161 162

#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) 				\
163 164 165
	*(early_per_cpu_ptr(_name) ?				\
		&early_per_cpu_ptr(_name)[_cpu] :		\
		&per_cpu(_name, _cpu))
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182

#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 已提交
183
#endif /* _ASM_X86_PERCPU_H */