bitops.h 8.2 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 *    Copyright IBM Corp. 1999,2013
L
Linus Torvalds 已提交
3
 *
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
 *    Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>,
 *
 * The description below was taken in large parts from the powerpc
 * bitops header file:
 * Within a word, bits are numbered LSB first.  Lot's of places make
 * this assumption by directly testing bits with (val & (1<<nr)).
 * This can cause confusion for large (> 1 word) bitmaps on a
 * big-endian system because, unlike little endian, the number of each
 * bit depends on the word size.
 *
 * The bitop functions are defined to work on unsigned longs, so for an
 * s390x system the bits end up numbered:
 *   |63..............0|127............64|191...........128|255...........196|
 * and on s390:
 *   |31.....0|63....31|95....64|127...96|159..128|191..160|223..192|255..224|
 *
 * There are a few little-endian macros used mostly for filesystem
 * bitmaps, these work on similar bit arrays layouts, but
 * byte-oriented:
 *   |7...0|15...8|23...16|31...24|39...32|47...40|55...48|63...56|
 *
 * The main difference is that bit 3-5 (64b) or 3-4 (32b) in the bit
 * number field needs to be reversed compared to the big-endian bit
 * fields. This can be achieved by XOR with 0x38 (64b) or 0x18 (32b).
 *
 * We also have special functions which work with an MSB0 encoding:
 * on an s390x system the bits are numbered:
 *   |0..............63|64............127|128...........191|192...........255|
 * and on s390:
 *   |0.....31|31....63|64....95|96...127|128..159|160..191|192..223|224..255|
 *
 * The main difference is that bit 0-63 (64b) or 0-31 (32b) in the bit
 * number field needs to be reversed compared to the LSB0 encoded bit
 * fields. This can be achieved by XOR with 0x3f (64b) or 0x1f (32b).
L
Linus Torvalds 已提交
38 39
 *
 */
H
Heiko Carstens 已提交
40

41 42 43
#ifndef _S390_BITOPS_H
#define _S390_BITOPS_H

J
Jiri Slaby 已提交
44 45 46 47
#ifndef _LINUX_BITOPS_H
#error only <linux/bitops.h> can be included directly
#endif

48
#include <linux/typecheck.h>
L
Linus Torvalds 已提交
49 50
#include <linux/compiler.h>

51
#ifndef CONFIG_64BIT
L
Linus Torvalds 已提交
52 53 54 55 56

#define __BITOPS_OR		"or"
#define __BITOPS_AND		"nr"
#define __BITOPS_XOR		"xr"

57 58 59 60
#define __BITOPS_LOOP(__addr, __val, __op_string)		\
({								\
	unsigned long __old, __new;				\
								\
61
	typecheck(unsigned long *, (__addr));			\
62 63 64 65 66 67
	asm volatile(						\
		"	l	%0,%2\n"			\
		"0:	lr	%1,%0\n"			\
		__op_string "	%1,%3\n"			\
		"	cs	%0,%1,%2\n"			\
		"	jl	0b"				\
68 69
		: "=&d" (__old), "=&d" (__new), "+Q" (*(__addr))\
		: "d" (__val)					\
70 71 72
		: "cc");					\
	__old;							\
})
73

74
#else /* CONFIG_64BIT */
L
Linus Torvalds 已提交
75

76 77 78 79 80 81 82 83 84 85
#ifdef CONFIG_HAVE_MARCH_Z196_FEATURES

#define __BITOPS_OR		"laog"
#define __BITOPS_AND		"lang"
#define __BITOPS_XOR		"laxg"

#define __BITOPS_LOOP(__addr, __val, __op_string)		\
({								\
	unsigned long __old;					\
								\
86
	typecheck(unsigned long *, (__addr));			\
87 88
	asm volatile(						\
		__op_string "	%0,%2,%1\n"			\
89
		: "=d" (__old),	"+Q" (*(__addr))		\
90 91 92 93 94 95 96
		: "d" (__val)					\
		: "cc");					\
	__old;							\
})

#else /* CONFIG_HAVE_MARCH_Z196_FEATURES */

L
Linus Torvalds 已提交
97 98 99 100
#define __BITOPS_OR		"ogr"
#define __BITOPS_AND		"ngr"
#define __BITOPS_XOR		"xgr"

101 102 103 104
#define __BITOPS_LOOP(__addr, __val, __op_string)		\
({								\
	unsigned long __old, __new;				\
								\
105
	typecheck(unsigned long *, (__addr));			\
106 107 108 109 110 111
	asm volatile(						\
		"	lg	%0,%2\n"			\
		"0:	lgr	%1,%0\n"			\
		__op_string "	%1,%3\n"			\
		"	csg	%0,%1,%2\n"			\
		"	jl	0b"				\
112 113
		: "=&d" (__old), "=&d" (__new), "+Q" (*(__addr))\
		: "d" (__val)					\
114 115 116 117 118
		: "cc");					\
	__old;							\
})

#endif /* CONFIG_HAVE_MARCH_Z196_FEATURES */
119

120
#endif /* CONFIG_64BIT */
L
Linus Torvalds 已提交
121

122
#define __BITOPS_WORDS(bits) (((bits) + BITS_PER_LONG - 1) / BITS_PER_LONG)
L
Linus Torvalds 已提交
123

124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
static inline unsigned long *
__bitops_word(unsigned long nr, volatile unsigned long *ptr)
{
	unsigned long addr;

	addr = (unsigned long)ptr + ((nr ^ (nr & (BITS_PER_LONG - 1))) >> 3);
	return (unsigned long *)addr;
}

static inline unsigned char *
__bitops_byte(unsigned long nr, volatile unsigned long *ptr)
{
	return ((unsigned char *)ptr) + ((nr ^ (BITS_PER_LONG - 8)) >> 3);
}

static inline void set_bit(unsigned long nr, volatile unsigned long *ptr)
L
Linus Torvalds 已提交
140
{
141 142
	unsigned long *addr = __bitops_word(nr, ptr);
	unsigned long mask;
L
Linus Torvalds 已提交
143

144 145 146 147 148 149 150 151 152 153 154 155
#ifdef CONFIG_HAVE_MARCH_ZEC12_FEATURES
	if (__builtin_constant_p(nr)) {
		unsigned char *caddr = __bitops_byte(nr, ptr);

		asm volatile(
			"oi	%0,%b1\n"
			: "+Q" (*caddr)
			: "i" (1 << (nr & 7))
			: "cc");
		return;
	}
#endif
156
	mask = 1UL << (nr & (BITS_PER_LONG - 1));
157
	__BITOPS_LOOP(addr, mask, __BITOPS_OR);
L
Linus Torvalds 已提交
158 159
}

160
static inline void clear_bit(unsigned long nr, volatile unsigned long *ptr)
L
Linus Torvalds 已提交
161
{
162 163
	unsigned long *addr = __bitops_word(nr, ptr);
	unsigned long mask;
L
Linus Torvalds 已提交
164

165 166 167 168 169 170 171 172 173 174 175 176
#ifdef CONFIG_HAVE_MARCH_ZEC12_FEATURES
	if (__builtin_constant_p(nr)) {
		unsigned char *caddr = __bitops_byte(nr, ptr);

		asm volatile(
			"ni	%0,%b1\n"
			: "+Q" (*caddr)
			: "i" (~(1 << (nr & 7)))
			: "cc");
		return;
	}
#endif
177
	mask = ~(1UL << (nr & (BITS_PER_LONG - 1)));
178
	__BITOPS_LOOP(addr, mask, __BITOPS_AND);
L
Linus Torvalds 已提交
179 180
}

181
static inline void change_bit(unsigned long nr, volatile unsigned long *ptr)
L
Linus Torvalds 已提交
182
{
183 184
	unsigned long *addr = __bitops_word(nr, ptr);
	unsigned long mask;
L
Linus Torvalds 已提交
185

186 187 188 189 190 191 192 193 194 195 196 197
#ifdef CONFIG_HAVE_MARCH_ZEC12_FEATURES
	if (__builtin_constant_p(nr)) {
		unsigned char *caddr = __bitops_byte(nr, ptr);

		asm volatile(
			"xi	%0,%b1\n"
			: "+Q" (*caddr)
			: "i" (1 << (nr & 7))
			: "cc");
		return;
	}
#endif
198
	mask = 1UL << (nr & (BITS_PER_LONG - 1));
199
	__BITOPS_LOOP(addr, mask, __BITOPS_XOR);
L
Linus Torvalds 已提交
200 201 202
}

static inline int
203
test_and_set_bit(unsigned long nr, volatile unsigned long *ptr)
L
Linus Torvalds 已提交
204
{
205 206
	unsigned long *addr = __bitops_word(nr, ptr);
	unsigned long old, mask;
L
Linus Torvalds 已提交
207

208
	mask = 1UL << (nr & (BITS_PER_LONG - 1));
209
	old = __BITOPS_LOOP(addr, mask, __BITOPS_OR);
210
	barrier();
L
Linus Torvalds 已提交
211 212 213 214
	return (old & mask) != 0;
}

static inline int
215
test_and_clear_bit(unsigned long nr, volatile unsigned long *ptr)
L
Linus Torvalds 已提交
216
{
217 218
	unsigned long *addr = __bitops_word(nr, ptr);
	unsigned long old, mask;
L
Linus Torvalds 已提交
219

220
	mask = ~(1UL << (nr & (BITS_PER_LONG - 1)));
221
	old = __BITOPS_LOOP(addr, mask, __BITOPS_AND);
222
	barrier();
223
	return (old & ~mask) != 0;
L
Linus Torvalds 已提交
224 225 226
}

static inline int
227
test_and_change_bit(unsigned long nr, volatile unsigned long *ptr)
L
Linus Torvalds 已提交
228
{
229 230
	unsigned long *addr = __bitops_word(nr, ptr);
	unsigned long old, mask;
L
Linus Torvalds 已提交
231

232
	mask = 1UL << (nr & (BITS_PER_LONG - 1));
233
	old = __BITOPS_LOOP(addr, mask, __BITOPS_XOR);
234
	barrier();
L
Linus Torvalds 已提交
235 236 237 238 239
	return (old & mask) != 0;
}

static inline void __set_bit(unsigned long nr, volatile unsigned long *ptr)
{
240
	unsigned char *addr = __bitops_byte(nr, ptr);
L
Linus Torvalds 已提交
241

242
	*addr |= 1 << (nr & 7);
L
Linus Torvalds 已提交
243 244 245 246 247
}

static inline void 
__clear_bit(unsigned long nr, volatile unsigned long *ptr)
{
248
	unsigned char *addr = __bitops_byte(nr, ptr);
L
Linus Torvalds 已提交
249

250
	*addr &= ~(1 << (nr & 7));
L
Linus Torvalds 已提交
251 252 253 254
}

static inline void __change_bit(unsigned long nr, volatile unsigned long *ptr)
{
255
	unsigned char *addr = __bitops_byte(nr, ptr);
L
Linus Torvalds 已提交
256

257
	*addr ^= 1 << (nr & 7);
L
Linus Torvalds 已提交
258 259 260
}

static inline int
261
__test_and_set_bit(unsigned long nr, volatile unsigned long *ptr)
L
Linus Torvalds 已提交
262
{
263
	unsigned char *addr = __bitops_byte(nr, ptr);
L
Linus Torvalds 已提交
264 265
	unsigned char ch;

266 267
	ch = *addr;
	*addr |= 1 << (nr & 7);
L
Linus Torvalds 已提交
268 269 270 271
	return (ch >> (nr & 7)) & 1;
}

static inline int
272
__test_and_clear_bit(unsigned long nr, volatile unsigned long *ptr)
L
Linus Torvalds 已提交
273
{
274
	unsigned char *addr = __bitops_byte(nr, ptr);
L
Linus Torvalds 已提交
275 276
	unsigned char ch;

277 278
	ch = *addr;
	*addr &= ~(1 << (nr & 7));
L
Linus Torvalds 已提交
279 280 281 282
	return (ch >> (nr & 7)) & 1;
}

static inline int
283
__test_and_change_bit(unsigned long nr, volatile unsigned long *ptr)
L
Linus Torvalds 已提交
284
{
285
	unsigned char *addr = __bitops_byte(nr, ptr);
L
Linus Torvalds 已提交
286 287
	unsigned char ch;

288 289
	ch = *addr;
	*addr ^= 1 << (nr & 7);
L
Linus Torvalds 已提交
290 291 292
	return (ch >> (nr & 7)) & 1;
}

293
static inline int test_bit(unsigned long nr, const volatile unsigned long *ptr)
L
Linus Torvalds 已提交
294
{
295
	const volatile unsigned char *addr;
L
Linus Torvalds 已提交
296

297 298 299
	addr = ((const volatile unsigned char *)ptr);
	addr += (nr ^ (BITS_PER_LONG - 8)) >> 3;
	return (*addr >> (nr & 7)) & 1;
L
Linus Torvalds 已提交
300 301
}

302
/*
303 304
 * ATTENTION:
 * find_first_bit_left() and find_next_bit_left() use MSB0 encoding.
305
 */
306 307 308
unsigned long find_first_bit_left(const unsigned long *addr, unsigned long size);
unsigned long find_next_bit_left(const unsigned long *addr, unsigned long size,
				 unsigned long offset);
309

310 311
#include <asm-generic/bitops/__ffs.h>
#include <asm-generic/bitops/ffs.h>
312
#include <asm-generic/bitops/__fls.h>
313
#include <asm-generic/bitops/fls.h>
314
#include <asm-generic/bitops/fls64.h>
315 316
#include <asm-generic/bitops/ffz.h>
#include <asm-generic/bitops/find.h>
317
#include <asm-generic/bitops/hweight.h>
N
Nick Piggin 已提交
318
#include <asm-generic/bitops/lock.h>
319
#include <asm-generic/bitops/sched.h>
A
Akinobu Mita 已提交
320
#include <asm-generic/bitops/le.h>
321
#include <asm-generic/bitops/ext2-atomic-setbit.h>
322

L
Linus Torvalds 已提交
323
#endif /* _S390_BITOPS_H */