bitops.h 12.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (c) 1994 - 1997, 1999, 2000  Ralf Baechle (ralf@gnu.org)
 * Copyright (c) 1999, 2000  Silicon Graphics, Inc.
 */
#ifndef _ASM_BITOPS_H
#define _ASM_BITOPS_H

#include <linux/compiler.h>
13
#include <linux/irqflags.h>
L
Linus Torvalds 已提交
14
#include <linux/types.h>
15
#include <asm/bug.h>
L
Linus Torvalds 已提交
16 17
#include <asm/byteorder.h>		/* sigh ... */
#include <asm/cpu-features.h>
18 19
#include <asm/sgidefs.h>
#include <asm/war.h>
L
Linus Torvalds 已提交
20 21 22 23

#if (_MIPS_SZLONG == 32)
#define SZLONG_LOG 5
#define SZLONG_MASK 31UL
24 25
#define __LL		"ll	"
#define __SC		"sc	"
L
Linus Torvalds 已提交
26 27 28
#elif (_MIPS_SZLONG == 64)
#define SZLONG_LOG 6
#define SZLONG_MASK 63UL
29 30
#define __LL		"lld	"
#define __SC		"scd	"
L
Linus Torvalds 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
#endif

/*
 * clear_bit() doesn't provide any barrier for the compiler.
 */
#define smp_mb__before_clear_bit()	smp_mb()
#define smp_mb__after_clear_bit()	smp_mb()

/*
 * set_bit - Atomically set a bit in memory
 * @nr: the bit to set
 * @addr: the address to start counting from
 *
 * This function is atomic and may not be reordered.  See __set_bit()
 * if you do not require the atomic guarantees.
 * Note that @nr may be almost arbitrarily large; this function is not
 * restricted to acting on a single-word quantity.
 */
static inline void set_bit(unsigned long nr, volatile unsigned long *addr)
{
	unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
	unsigned long temp;

	if (cpu_has_llsc && R10000_LLSC_WAR) {
		__asm__ __volatile__(
56
		"	.set	mips3					\n"
L
Linus Torvalds 已提交
57 58
		"1:	" __LL "%0, %1			# set_bit	\n"
		"	or	%0, %2					\n"
59
		"	" __SC	"%0, %1					\n"
L
Linus Torvalds 已提交
60
		"	beqzl	%0, 1b					\n"
61
		"	.set	mips0					\n"
L
Linus Torvalds 已提交
62 63 64 65
		: "=&r" (temp), "=m" (*m)
		: "ir" (1UL << (nr & SZLONG_MASK)), "m" (*m));
	} else if (cpu_has_llsc) {
		__asm__ __volatile__(
66
		"	.set	mips3					\n"
L
Linus Torvalds 已提交
67 68
		"1:	" __LL "%0, %1			# set_bit	\n"
		"	or	%0, %2					\n"
69
		"	" __SC	"%0, %1					\n"
L
Linus Torvalds 已提交
70
		"	beqz	%0, 1b					\n"
71
		"	.set	mips0					\n"
L
Linus Torvalds 已提交
72 73 74 75 76
		: "=&r" (temp), "=m" (*m)
		: "ir" (1UL << (nr & SZLONG_MASK)), "m" (*m));
	} else {
		volatile unsigned long *a = addr;
		unsigned long mask;
77
		unsigned long flags;
L
Linus Torvalds 已提交
78 79 80

		a += nr >> SZLONG_LOG;
		mask = 1UL << (nr & SZLONG_MASK);
81
		local_irq_save(flags);
L
Linus Torvalds 已提交
82
		*a |= mask;
83
		local_irq_restore(flags);
L
Linus Torvalds 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
	}
}

/*
 * clear_bit - Clears a bit in memory
 * @nr: Bit to clear
 * @addr: Address to start counting from
 *
 * clear_bit() is atomic and may not be reordered.  However, it does
 * not contain a memory barrier, so if it is used for locking purposes,
 * you should call smp_mb__before_clear_bit() and/or smp_mb__after_clear_bit()
 * in order to ensure changes are visible on other processors.
 */
static inline void clear_bit(unsigned long nr, volatile unsigned long *addr)
{
	unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
	unsigned long temp;

	if (cpu_has_llsc && R10000_LLSC_WAR) {
		__asm__ __volatile__(
104
		"	.set	mips3					\n"
L
Linus Torvalds 已提交
105 106 107 108
		"1:	" __LL "%0, %1			# clear_bit	\n"
		"	and	%0, %2					\n"
		"	" __SC "%0, %1					\n"
		"	beqzl	%0, 1b					\n"
109
		"	.set	mips0					\n"
L
Linus Torvalds 已提交
110 111 112 113
		: "=&r" (temp), "=m" (*m)
		: "ir" (~(1UL << (nr & SZLONG_MASK))), "m" (*m));
	} else if (cpu_has_llsc) {
		__asm__ __volatile__(
114
		"	.set	mips3					\n"
L
Linus Torvalds 已提交
115 116 117 118
		"1:	" __LL "%0, %1			# clear_bit	\n"
		"	and	%0, %2					\n"
		"	" __SC "%0, %1					\n"
		"	beqz	%0, 1b					\n"
119
		"	.set	mips0					\n"
L
Linus Torvalds 已提交
120 121 122 123 124
		: "=&r" (temp), "=m" (*m)
		: "ir" (~(1UL << (nr & SZLONG_MASK))), "m" (*m));
	} else {
		volatile unsigned long *a = addr;
		unsigned long mask;
125
		unsigned long flags;
L
Linus Torvalds 已提交
126 127 128

		a += nr >> SZLONG_LOG;
		mask = 1UL << (nr & SZLONG_MASK);
129
		local_irq_save(flags);
L
Linus Torvalds 已提交
130
		*a &= ~mask;
131
		local_irq_restore(flags);
L
Linus Torvalds 已提交
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
	}
}

/*
 * change_bit - Toggle a bit in memory
 * @nr: Bit to change
 * @addr: Address to start counting from
 *
 * change_bit() is atomic and may not be reordered.
 * Note that @nr may be almost arbitrarily large; this function is not
 * restricted to acting on a single-word quantity.
 */
static inline void change_bit(unsigned long nr, volatile unsigned long *addr)
{
	if (cpu_has_llsc && R10000_LLSC_WAR) {
		unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
		unsigned long temp;

		__asm__ __volatile__(
151
		"	.set	mips3				\n"
L
Linus Torvalds 已提交
152 153
		"1:	" __LL "%0, %1		# change_bit	\n"
		"	xor	%0, %2				\n"
154
		"	" __SC	"%0, %1				\n"
L
Linus Torvalds 已提交
155
		"	beqzl	%0, 1b				\n"
156
		"	.set	mips0				\n"
L
Linus Torvalds 已提交
157 158 159 160 161 162 163
		: "=&r" (temp), "=m" (*m)
		: "ir" (1UL << (nr & SZLONG_MASK)), "m" (*m));
	} else if (cpu_has_llsc) {
		unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
		unsigned long temp;

		__asm__ __volatile__(
164
		"	.set	mips3				\n"
L
Linus Torvalds 已提交
165 166
		"1:	" __LL "%0, %1		# change_bit	\n"
		"	xor	%0, %2				\n"
167
		"	" __SC	"%0, %1				\n"
L
Linus Torvalds 已提交
168
		"	beqz	%0, 1b				\n"
169
		"	.set	mips0				\n"
L
Linus Torvalds 已提交
170 171 172 173 174
		: "=&r" (temp), "=m" (*m)
		: "ir" (1UL << (nr & SZLONG_MASK)), "m" (*m));
	} else {
		volatile unsigned long *a = addr;
		unsigned long mask;
175
		unsigned long flags;
L
Linus Torvalds 已提交
176 177 178

		a += nr >> SZLONG_LOG;
		mask = 1UL << (nr & SZLONG_MASK);
179
		local_irq_save(flags);
L
Linus Torvalds 已提交
180
		*a ^= mask;
181
		local_irq_restore(flags);
L
Linus Torvalds 已提交
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
	}
}

/*
 * test_and_set_bit - Set a bit and return its old value
 * @nr: Bit to set
 * @addr: Address to count from
 *
 * This operation is atomic and cannot be reordered.
 * It also implies a memory barrier.
 */
static inline int test_and_set_bit(unsigned long nr,
	volatile unsigned long *addr)
{
	if (cpu_has_llsc && R10000_LLSC_WAR) {
		unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
		unsigned long temp, res;

		__asm__ __volatile__(
201
		"	.set	mips3					\n"
L
Linus Torvalds 已提交
202 203 204 205 206 207
		"1:	" __LL "%0, %1		# test_and_set_bit	\n"
		"	or	%2, %0, %3				\n"
		"	" __SC	"%2, %1					\n"
		"	beqzl	%2, 1b					\n"
		"	and	%2, %0, %3				\n"
#ifdef CONFIG_SMP
208
		"	sync						\n"
L
Linus Torvalds 已提交
209
#endif
210
		"	.set	mips0					\n"
L
Linus Torvalds 已提交
211 212 213 214 215 216 217 218 219 220
		: "=&r" (temp), "=m" (*m), "=&r" (res)
		: "r" (1UL << (nr & SZLONG_MASK)), "m" (*m)
		: "memory");

		return res != 0;
	} else if (cpu_has_llsc) {
		unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
		unsigned long temp, res;

		__asm__ __volatile__(
221 222
		"	.set	push					\n"
		"	.set	noreorder				\n"
223
		"	.set	mips3					\n"
224
		"1:	" __LL "%0, %1		# test_and_set_bit	\n"
L
Linus Torvalds 已提交
225 226 227 228 229
		"	or	%2, %0, %3				\n"
		"	" __SC	"%2, %1					\n"
		"	beqz	%2, 1b					\n"
		"	 and	%2, %0, %3				\n"
#ifdef CONFIG_SMP
230
		"	sync						\n"
L
Linus Torvalds 已提交
231
#endif
232
		"	.set	pop					\n"
L
Linus Torvalds 已提交
233 234 235 236 237 238 239 240 241
		: "=&r" (temp), "=m" (*m), "=&r" (res)
		: "r" (1UL << (nr & SZLONG_MASK)), "m" (*m)
		: "memory");

		return res != 0;
	} else {
		volatile unsigned long *a = addr;
		unsigned long mask;
		int retval;
242
		unsigned long flags;
L
Linus Torvalds 已提交
243 244 245

		a += nr >> SZLONG_LOG;
		mask = 1UL << (nr & SZLONG_MASK);
246
		local_irq_save(flags);
L
Linus Torvalds 已提交
247 248
		retval = (mask & *a) != 0;
		*a |= mask;
249
		local_irq_restore(flags);
L
Linus Torvalds 已提交
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270

		return retval;
	}
}

/*
 * test_and_clear_bit - Clear a bit and return its old value
 * @nr: Bit to clear
 * @addr: Address to count from
 *
 * This operation is atomic and cannot be reordered.
 * It also implies a memory barrier.
 */
static inline int test_and_clear_bit(unsigned long nr,
	volatile unsigned long *addr)
{
	if (cpu_has_llsc && R10000_LLSC_WAR) {
		unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
		unsigned long temp, res;

		__asm__ __volatile__(
271
		"	.set	mips3					\n"
L
Linus Torvalds 已提交
272 273 274
		"1:	" __LL	"%0, %1		# test_and_clear_bit	\n"
		"	or	%2, %0, %3				\n"
		"	xor	%2, %3					\n"
275
		"	" __SC 	"%2, %1					\n"
L
Linus Torvalds 已提交
276 277 278 279 280
		"	beqzl	%2, 1b					\n"
		"	and	%2, %0, %3				\n"
#ifdef CONFIG_SMP
		"	sync						\n"
#endif
281
		"	.set	mips0					\n"
L
Linus Torvalds 已提交
282 283 284 285 286 287 288 289 290 291
		: "=&r" (temp), "=m" (*m), "=&r" (res)
		: "r" (1UL << (nr & SZLONG_MASK)), "m" (*m)
		: "memory");

		return res != 0;
	} else if (cpu_has_llsc) {
		unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
		unsigned long temp, res;

		__asm__ __volatile__(
292 293
		"	.set	push					\n"
		"	.set	noreorder				\n"
294
		"	.set	mips3					\n"
295
		"1:	" __LL	"%0, %1		# test_and_clear_bit	\n"
L
Linus Torvalds 已提交
296 297
		"	or	%2, %0, %3				\n"
		"	xor	%2, %3					\n"
298
		"	" __SC 	"%2, %1					\n"
L
Linus Torvalds 已提交
299 300 301 302 303
		"	beqz	%2, 1b					\n"
		"	 and	%2, %0, %3				\n"
#ifdef CONFIG_SMP
		"	sync						\n"
#endif
304
		"	.set	pop					\n"
L
Linus Torvalds 已提交
305 306 307 308 309 310 311 312 313
		: "=&r" (temp), "=m" (*m), "=&r" (res)
		: "r" (1UL << (nr & SZLONG_MASK)), "m" (*m)
		: "memory");

		return res != 0;
	} else {
		volatile unsigned long *a = addr;
		unsigned long mask;
		int retval;
314
		unsigned long flags;
L
Linus Torvalds 已提交
315 316 317

		a += nr >> SZLONG_LOG;
		mask = 1UL << (nr & SZLONG_MASK);
318
		local_irq_save(flags);
L
Linus Torvalds 已提交
319 320
		retval = (mask & *a) != 0;
		*a &= ~mask;
321
		local_irq_restore(flags);
L
Linus Torvalds 已提交
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342

		return retval;
	}
}

/*
 * test_and_change_bit - Change a bit and return its old value
 * @nr: Bit to change
 * @addr: Address to count from
 *
 * This operation is atomic and cannot be reordered.
 * It also implies a memory barrier.
 */
static inline int test_and_change_bit(unsigned long nr,
	volatile unsigned long *addr)
{
	if (cpu_has_llsc && R10000_LLSC_WAR) {
		unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
		unsigned long temp, res;

		__asm__ __volatile__(
343
		"	.set	mips3					\n"
344
		"1:	" __LL	"%0, %1		# test_and_change_bit	\n"
L
Linus Torvalds 已提交
345
		"	xor	%2, %0, %3				\n"
346
		"	" __SC	"%2, %1					\n"
L
Linus Torvalds 已提交
347 348 349 350 351
		"	beqzl	%2, 1b					\n"
		"	and	%2, %0, %3				\n"
#ifdef CONFIG_SMP
		"	sync						\n"
#endif
352
		"	.set	mips0					\n"
L
Linus Torvalds 已提交
353 354 355 356 357 358 359 360 361 362
		: "=&r" (temp), "=m" (*m), "=&r" (res)
		: "r" (1UL << (nr & SZLONG_MASK)), "m" (*m)
		: "memory");

		return res != 0;
	} else if (cpu_has_llsc) {
		unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
		unsigned long temp, res;

		__asm__ __volatile__(
363 364
		"	.set	push					\n"
		"	.set	noreorder				\n"
365
		"	.set	mips3					\n"
366
		"1:	" __LL	"%0, %1		# test_and_change_bit	\n"
L
Linus Torvalds 已提交
367
		"	xor	%2, %0, %3				\n"
368
		"	" __SC	"\t%2, %1				\n"
L
Linus Torvalds 已提交
369 370 371 372 373
		"	beqz	%2, 1b					\n"
		"	 and	%2, %0, %3				\n"
#ifdef CONFIG_SMP
		"	sync						\n"
#endif
374
		"	.set	pop					\n"
L
Linus Torvalds 已提交
375 376 377 378 379 380 381 382
		: "=&r" (temp), "=m" (*m), "=&r" (res)
		: "r" (1UL << (nr & SZLONG_MASK)), "m" (*m)
		: "memory");

		return res != 0;
	} else {
		volatile unsigned long *a = addr;
		unsigned long mask, retval;
383
		unsigned long flags;
L
Linus Torvalds 已提交
384 385 386

		a += nr >> SZLONG_LOG;
		mask = 1UL << (nr & SZLONG_MASK);
387
		local_irq_save(flags);
L
Linus Torvalds 已提交
388 389
		retval = (mask & *a) != 0;
		*a ^= mask;
390
		local_irq_restore(flags);
L
Linus Torvalds 已提交
391 392 393 394 395

		return retval;
	}
}

396
#include <asm-generic/bitops/non-atomic.h>
L
Linus Torvalds 已提交
397 398

/*
399
 * Return the bit position (0..63) of the most significant 1 bit in a word
400 401
 * Returns -1 if no 1 bit exists
 */
402
static inline int __ilog2(unsigned long x)
403 404 405
{
	int lz;

406 407 408 409 410 411 412 413
	if (sizeof(x) == 4) {
		__asm__ (
		"	.set	push					\n"
		"	.set	mips32					\n"
		"	clz	%0, %1					\n"
		"	.set	pop					\n"
		: "=r" (lz)
		: "r" (x));
414

415 416 417 418
		return 31 - lz;
	}

	BUG_ON(sizeof(x) != 8);
419 420 421 422 423 424 425 426 427 428 429 430

	__asm__ (
	"	.set	push						\n"
	"	.set	mips64						\n"
	"	dclz	%0, %1						\n"
	"	.set	pop						\n"
	: "=r" (lz)
	: "r" (x));

	return 63 - lz;
}

431 432
#if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64)

433 434
/*
 * __ffs - find first bit in word.
L
Linus Torvalds 已提交
435 436
 * @word: The word to search
 *
437 438
 * Returns 0..SZLONG-1
 * Undefined if no bit exists, so code should check against 0 first.
L
Linus Torvalds 已提交
439
 */
440
static inline unsigned long __ffs(unsigned long word)
L
Linus Torvalds 已提交
441
{
442
	return __ilog2(word & -word);
L
Linus Torvalds 已提交
443 444 445
}

/*
446
 * fls - find last bit set.
L
Linus Torvalds 已提交
447 448
 * @word: The word to search
 *
449 450
 * This is defined the same way as ffs.
 * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
L
Linus Torvalds 已提交
451
 */
452
static inline int fls(int word)
L
Linus Torvalds 已提交
453
{
454
	__asm__ ("clz %0, %1" : "=r" (word) : "r" (word));
455

456
	return 32 - word;
L
Linus Torvalds 已提交
457 458
}

459 460
#if defined(CONFIG_64BIT) && defined(CONFIG_CPU_MIPS64)
static inline int fls64(__u64 word)
461
{
462 463 464
	__asm__ ("dclz %0, %1" : "=r" (word) : "r" (word));

	return 64 - word;
465
}
466 467 468
#else
#include <asm-generic/bitops/fls64.h>
#endif
469 470

/*
471
 * ffs - find first bit set.
472 473
 * @word: The word to search
 *
474 475 476
 * This is defined the same way as
 * the libc and compiler builtin ffs routines, therefore
 * differs in spirit from the above ffz (man ffs).
477
 */
478
static inline int ffs(int word)
479
{
480 481
	if (!word)
		return 0;
482

483
	return fls(word & -word);
484 485
}

486
#else
L
Linus Torvalds 已提交
487

488 489 490
#include <asm-generic/bitops/__ffs.h>
#include <asm-generic/bitops/ffs.h>
#include <asm-generic/bitops/fls.h>
491
#include <asm-generic/bitops/fls64.h>
L
Linus Torvalds 已提交
492

493
#endif /*defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64) */
L
Linus Torvalds 已提交
494

495
#include <asm-generic/bitops/ffz.h>
496
#include <asm-generic/bitops/find.h>
L
Linus Torvalds 已提交
497 498 499

#ifdef __KERNEL__

500 501 502 503 504
#include <asm-generic/bitops/sched.h>
#include <asm-generic/bitops/hweight.h>
#include <asm-generic/bitops/ext2-non-atomic.h>
#include <asm-generic/bitops/ext2-atomic.h>
#include <asm-generic/bitops/minix.h>
L
Linus Torvalds 已提交
505 506 507 508

#endif /* __KERNEL__ */

#endif /* _ASM_BITOPS_H */