bitops.h 11.5 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
 *    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.
 *
14 15
 * The bitop functions are defined to work on unsigned longs, so the bits
 * end up numbered:
H
Heiko Carstens 已提交
16
 *   |63..............0|127............64|191...........128|255...........192|
17 18
 *
 * There are a few little-endian macros used mostly for filesystem
19
 * bitmaps, these work on similar bit array layouts, but byte-oriented:
20 21
 *   |7...0|15...8|23...16|31...24|39...32|47...40|55...48|63...56|
 *
22 23 24
 * The main difference is that bit 3-5 in the bit number field needs to be
 * reversed compared to the big-endian bit fields. This can be achieved by
 * XOR with 0x38.
25
 *
26 27
 * We also have special functions which work with an MSB0 encoding.
 * The bits are numbered:
28 29
 *   |0..............63|64............127|128...........191|192...........255|
 *
30 31 32
 * The main difference is that bit 0-63 in the bit number field needs to be
 * reversed compared to the LSB0 encoded bit fields. This can be achieved by
 * XOR with 0x3f.
L
Linus Torvalds 已提交
33 34
 *
 */
H
Heiko Carstens 已提交
35

36 37 38
#ifndef _S390_BITOPS_H
#define _S390_BITOPS_H

J
Jiri Slaby 已提交
39 40 41 42
#ifndef _LINUX_BITOPS_H
#error only <linux/bitops.h> can be included directly
#endif

43
#include <linux/typecheck.h>
L
Linus Torvalds 已提交
44
#include <linux/compiler.h>
45 46 47
#include <asm/barrier.h>

#define __BITOPS_NO_BARRIER	"\n"
L
Linus Torvalds 已提交
48

49 50 51 52 53
#ifdef CONFIG_HAVE_MARCH_Z196_FEATURES

#define __BITOPS_OR		"laog"
#define __BITOPS_AND		"lang"
#define __BITOPS_XOR		"laxg"
54
#define __BITOPS_BARRIER	"bcr	14,0\n"
55

56
#define __BITOPS_LOOP(__addr, __val, __op_string, __barrier)	\
57 58 59
({								\
	unsigned long __old;					\
								\
60
	typecheck(unsigned long *, (__addr));			\
61 62
	asm volatile(						\
		__op_string "	%0,%2,%1\n"			\
63
		__barrier					\
64
		: "=d" (__old),	"+Q" (*(__addr))		\
65
		: "d" (__val)					\
66
		: "cc", "memory");				\
67 68 69 70 71
	__old;							\
})

#else /* CONFIG_HAVE_MARCH_Z196_FEATURES */

L
Linus Torvalds 已提交
72 73 74
#define __BITOPS_OR		"ogr"
#define __BITOPS_AND		"ngr"
#define __BITOPS_XOR		"xgr"
75
#define __BITOPS_BARRIER	"\n"
L
Linus Torvalds 已提交
76

77
#define __BITOPS_LOOP(__addr, __val, __op_string, __barrier)	\
78 79 80
({								\
	unsigned long __old, __new;				\
								\
81
	typecheck(unsigned long *, (__addr));			\
82 83 84 85 86 87
	asm volatile(						\
		"	lg	%0,%2\n"			\
		"0:	lgr	%1,%0\n"			\
		__op_string "	%1,%3\n"			\
		"	csg	%0,%1,%2\n"			\
		"	jl	0b"				\
88 89
		: "=&d" (__old), "=&d" (__new), "+Q" (*(__addr))\
		: "d" (__val)					\
90
		: "cc", "memory");				\
91 92 93 94
	__old;							\
})

#endif /* CONFIG_HAVE_MARCH_Z196_FEATURES */
95

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

98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
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 已提交
114
{
115 116
	unsigned long *addr = __bitops_word(nr, ptr);
	unsigned long mask;
L
Linus Torvalds 已提交
117

118 119 120 121 122 123 124 125
#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))
126
			: "cc", "memory");
127 128 129
		return;
	}
#endif
130
	mask = 1UL << (nr & (BITS_PER_LONG - 1));
131
	__BITOPS_LOOP(addr, mask, __BITOPS_OR, __BITOPS_NO_BARRIER);
L
Linus Torvalds 已提交
132 133
}

134
static inline void clear_bit(unsigned long nr, volatile unsigned long *ptr)
L
Linus Torvalds 已提交
135
{
136 137
	unsigned long *addr = __bitops_word(nr, ptr);
	unsigned long mask;
L
Linus Torvalds 已提交
138

139 140 141 142 143 144 145 146
#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)))
147
			: "cc", "memory");
148 149 150
		return;
	}
#endif
151
	mask = ~(1UL << (nr & (BITS_PER_LONG - 1)));
152
	__BITOPS_LOOP(addr, mask, __BITOPS_AND, __BITOPS_NO_BARRIER);
L
Linus Torvalds 已提交
153 154
}

155
static inline void change_bit(unsigned long nr, volatile unsigned long *ptr)
L
Linus Torvalds 已提交
156
{
157 158
	unsigned long *addr = __bitops_word(nr, ptr);
	unsigned long mask;
L
Linus Torvalds 已提交
159

160 161 162 163 164 165 166 167
#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))
168
			: "cc", "memory");
169 170 171
		return;
	}
#endif
172
	mask = 1UL << (nr & (BITS_PER_LONG - 1));
173
	__BITOPS_LOOP(addr, mask, __BITOPS_XOR, __BITOPS_NO_BARRIER);
L
Linus Torvalds 已提交
174 175 176
}

static inline int
177
test_and_set_bit(unsigned long nr, volatile unsigned long *ptr)
L
Linus Torvalds 已提交
178
{
179 180
	unsigned long *addr = __bitops_word(nr, ptr);
	unsigned long old, mask;
L
Linus Torvalds 已提交
181

182
	mask = 1UL << (nr & (BITS_PER_LONG - 1));
183
	old = __BITOPS_LOOP(addr, mask, __BITOPS_OR, __BITOPS_BARRIER);
L
Linus Torvalds 已提交
184 185 186 187
	return (old & mask) != 0;
}

static inline int
188
test_and_clear_bit(unsigned long nr, volatile unsigned long *ptr)
L
Linus Torvalds 已提交
189
{
190 191
	unsigned long *addr = __bitops_word(nr, ptr);
	unsigned long old, mask;
L
Linus Torvalds 已提交
192

193
	mask = ~(1UL << (nr & (BITS_PER_LONG - 1)));
194
	old = __BITOPS_LOOP(addr, mask, __BITOPS_AND, __BITOPS_BARRIER);
195
	return (old & ~mask) != 0;
L
Linus Torvalds 已提交
196 197 198
}

static inline int
199
test_and_change_bit(unsigned long nr, volatile unsigned long *ptr)
L
Linus Torvalds 已提交
200
{
201 202
	unsigned long *addr = __bitops_word(nr, ptr);
	unsigned long old, mask;
L
Linus Torvalds 已提交
203

204
	mask = 1UL << (nr & (BITS_PER_LONG - 1));
205
	old = __BITOPS_LOOP(addr, mask, __BITOPS_XOR, __BITOPS_BARRIER);
L
Linus Torvalds 已提交
206 207 208 209 210
	return (old & mask) != 0;
}

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

213
	*addr |= 1 << (nr & 7);
L
Linus Torvalds 已提交
214 215 216 217 218
}

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

221
	*addr &= ~(1 << (nr & 7));
L
Linus Torvalds 已提交
222 223 224 225
}

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

228
	*addr ^= 1 << (nr & 7);
L
Linus Torvalds 已提交
229 230 231
}

static inline int
232
__test_and_set_bit(unsigned long nr, volatile unsigned long *ptr)
L
Linus Torvalds 已提交
233
{
234
	unsigned char *addr = __bitops_byte(nr, ptr);
L
Linus Torvalds 已提交
235 236
	unsigned char ch;

237 238
	ch = *addr;
	*addr |= 1 << (nr & 7);
L
Linus Torvalds 已提交
239 240 241 242
	return (ch >> (nr & 7)) & 1;
}

static inline int
243
__test_and_clear_bit(unsigned long nr, volatile unsigned long *ptr)
L
Linus Torvalds 已提交
244
{
245
	unsigned char *addr = __bitops_byte(nr, ptr);
L
Linus Torvalds 已提交
246 247
	unsigned char ch;

248 249
	ch = *addr;
	*addr &= ~(1 << (nr & 7));
L
Linus Torvalds 已提交
250 251 252 253
	return (ch >> (nr & 7)) & 1;
}

static inline int
254
__test_and_change_bit(unsigned long nr, volatile unsigned long *ptr)
L
Linus Torvalds 已提交
255
{
256
	unsigned char *addr = __bitops_byte(nr, ptr);
L
Linus Torvalds 已提交
257 258
	unsigned char ch;

259 260
	ch = *addr;
	*addr ^= 1 << (nr & 7);
L
Linus Torvalds 已提交
261 262 263
	return (ch >> (nr & 7)) & 1;
}

264
static inline int test_bit(unsigned long nr, const volatile unsigned long *ptr)
L
Linus Torvalds 已提交
265
{
266
	const volatile unsigned char *addr;
L
Linus Torvalds 已提交
267

268 269 270
	addr = ((const volatile unsigned char *)ptr);
	addr += (nr ^ (BITS_PER_LONG - 8)) >> 3;
	return (*addr >> (nr & 7)) & 1;
L
Linus Torvalds 已提交
271 272
}

273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
static inline int test_and_set_bit_lock(unsigned long nr,
					volatile unsigned long *ptr)
{
	if (test_bit(nr, ptr))
		return 1;
	return test_and_set_bit(nr, ptr);
}

static inline void clear_bit_unlock(unsigned long nr,
				    volatile unsigned long *ptr)
{
	smp_mb__before_atomic();
	clear_bit(nr, ptr);
}

static inline void __clear_bit_unlock(unsigned long nr,
				      volatile unsigned long *ptr)
{
	smp_mb();
	__clear_bit(nr, ptr);
}

295
/*
296
 * Functions which use MSB0 bit numbering.
297
 * The bits are numbered:
298
 *   |0..............63|64............127|128...........191|192...........255|
299
 */
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
unsigned long find_first_bit_inv(const unsigned long *addr, unsigned long size);
unsigned long find_next_bit_inv(const unsigned long *addr, unsigned long size,
				unsigned long offset);

static inline void set_bit_inv(unsigned long nr, volatile unsigned long *ptr)
{
	return set_bit(nr ^ (BITS_PER_LONG - 1), ptr);
}

static inline void clear_bit_inv(unsigned long nr, volatile unsigned long *ptr)
{
	return clear_bit(nr ^ (BITS_PER_LONG - 1), ptr);
}

static inline void __set_bit_inv(unsigned long nr, volatile unsigned long *ptr)
{
	return __set_bit(nr ^ (BITS_PER_LONG - 1), ptr);
}

static inline void __clear_bit_inv(unsigned long nr, volatile unsigned long *ptr)
{
	return __clear_bit(nr ^ (BITS_PER_LONG - 1), ptr);
}

static inline int test_bit_inv(unsigned long nr,
			       const volatile unsigned long *ptr)
{
	return test_bit(nr ^ (BITS_PER_LONG - 1), ptr);
}
329

330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
#ifdef CONFIG_HAVE_MARCH_Z9_109_FEATURES

/**
 * __flogr - find leftmost one
 * @word - The word to search
 *
 * Returns the bit number of the most significant bit set,
 * where the most significant bit has bit number 0.
 * If no bit is set this function returns 64.
 */
static inline unsigned char __flogr(unsigned long word)
{
	if (__builtin_constant_p(word)) {
		unsigned long bit = 0;

		if (!word)
			return 64;
		if (!(word & 0xffffffff00000000UL)) {
			word <<= 32;
			bit += 32;
		}
		if (!(word & 0xffff000000000000UL)) {
			word <<= 16;
			bit += 16;
		}
		if (!(word & 0xff00000000000000UL)) {
			word <<= 8;
			bit += 8;
		}
		if (!(word & 0xf000000000000000UL)) {
			word <<= 4;
			bit += 4;
		}
		if (!(word & 0xc000000000000000UL)) {
			word <<= 2;
			bit += 2;
		}
		if (!(word & 0x8000000000000000UL)) {
			word <<= 1;
			bit += 1;
		}
		return bit;
	} else {
		register unsigned long bit asm("4") = word;
		register unsigned long out asm("5");

		asm volatile(
			"       flogr   %[bit],%[bit]\n"
			: [bit] "+d" (bit), [out] "=d" (out) : : "cc");
		return bit;
	}
}

/**
 * __ffs - find first bit in word.
 * @word: The word to search
 *
 * Undefined if no bit exists, so code should check against 0 first.
 */
static inline unsigned long __ffs(unsigned long word)
{
	return __flogr(-word & word) ^ (BITS_PER_LONG - 1);
}

/**
 * ffs - find first bit set
 * @word: the word to search
 *
 * This is defined the same way as the libc and
 * compiler builtin ffs routines (man ffs).
 */
static inline int ffs(int word)
{
	unsigned long mask = 2 * BITS_PER_LONG - 1;
	unsigned int val = (unsigned int)word;

	return (1 + (__flogr(-val & val) ^ (BITS_PER_LONG - 1))) & mask;
}

/**
 * __fls - find last (most-significant) set bit in a long word
 * @word: the word to search
 *
 * Undefined if no set bit exists, so code should check against 0 first.
 */
static inline unsigned long __fls(unsigned long word)
{
	return __flogr(word) ^ (BITS_PER_LONG - 1);
}

/**
 * fls64 - find last set bit in a 64-bit word
 * @word: the word to search
 *
 * This is defined in a similar way as the libc and compiler builtin
 * ffsll, but returns the position of the most significant set bit.
 *
 * fls64(value) returns 0 if value is 0 or the position of the last
 * set bit if value is nonzero. The last (most significant) bit is
 * at position 64.
 */
static inline int fls64(unsigned long word)
{
	unsigned long mask = 2 * BITS_PER_LONG - 1;

	return (1 + (__flogr(word) ^ (BITS_PER_LONG - 1))) & mask;
}

/**
 * fls - find last (most-significant) bit set
 * @word: the word to search
 *
 * This is defined the same way as ffs.
 * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
 */
static inline int fls(int word)
{
	return fls64((unsigned int)word);
}

#else /* CONFIG_HAVE_MARCH_Z9_109_FEATURES */

452 453
#include <asm-generic/bitops/__ffs.h>
#include <asm-generic/bitops/ffs.h>
454
#include <asm-generic/bitops/__fls.h>
455
#include <asm-generic/bitops/fls.h>
456
#include <asm-generic/bitops/fls64.h>
457 458 459

#endif /* CONFIG_HAVE_MARCH_Z9_109_FEATURES */

460 461
#include <asm-generic/bitops/ffz.h>
#include <asm-generic/bitops/find.h>
462
#include <asm-generic/bitops/hweight.h>
463
#include <asm-generic/bitops/sched.h>
A
Akinobu Mita 已提交
464
#include <asm-generic/bitops/le.h>
465
#include <asm-generic/bitops/ext2-atomic-setbit.h>
466

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