2 * include/asm-v850/bitops.h -- Bit operations
4 * Copyright (C) 2001,02,03,04 NEC Electronics Corporation
5 * Copyright (C) 2001,02,03,04 Miles Bader <miles@gnu.org>
6 * Copyright (C) 1992 Linus Torvalds.
8 * This file is subject to the terms and conditions of the GNU General
9 * Public License. See the file COPYING in the main directory of this
10 * archive for more details.
13 #ifndef __V850_BITOPS_H__
14 #define __V850_BITOPS_H__
17 #include <linux/config.h>
18 #include <linux/compiler.h> /* unlikely */
19 #include <asm/byteorder.h> /* swab32 */
20 #include <asm/system.h> /* interrupt enable/disable */
26 * The __ functions are not atomic
30 * ffz = Find First Zero in word. Undefined if no zero exists,
31 * so code should check against ~0UL first..
33 extern __inline__ unsigned long ffz (unsigned long word)
35 unsigned long result = 0;
45 /* In the following constant-bit-op macros, a "g" constraint is used when
46 we really need an integer ("i" constraint). This is to avoid
47 warnings/errors from the compiler in the case where the associated
48 operand _isn't_ an integer, and shouldn't produce bogus assembly because
49 use of that form is protected by a guard statement that checks for
50 constants, and should otherwise be removed by the optimizer. This
51 _usually_ works -- however, __builtin_constant_p returns true for a
52 variable with a known constant value too, and unfortunately gcc will
53 happily put the variable in a register and use the register for the "g"
54 constraint'd asm operand. To avoid the latter problem, we add a
55 constant offset to the operand and subtract it back in the asm code;
56 forcing gcc to do arithmetic on the value is usually enough to get it
57 to use a real constant value. This is horrible, and ultimately
58 unreliable too, but it seems to work for now (hopefully gcc will offer
59 us more control in the future, so we can do a better job). */
61 #define __const_bit_op(op, nr, addr) \
62 ({ __asm__ (op " (%0 - 0x123), %1" \
63 :: "g" (((nr) & 0x7) + 0x123), \
64 "m" (*((char *)(addr) + ((nr) >> 3))) \
66 #define __var_bit_op(op, nr, addr) \
68 __asm__ (op " %0, [%1]" \
69 :: "r" (__nr & 0x7), \
70 "r" ((char *)(addr) + (__nr >> 3)) \
72 #define __bit_op(op, nr, addr) \
73 ((__builtin_constant_p (nr) && (unsigned)(nr) <= 0x7FFFF) \
74 ? __const_bit_op (op, nr, addr) \
75 : __var_bit_op (op, nr, addr))
77 #define __set_bit(nr, addr) __bit_op ("set1", nr, addr)
78 #define __clear_bit(nr, addr) __bit_op ("clr1", nr, addr)
79 #define __change_bit(nr, addr) __bit_op ("not1", nr, addr)
81 /* The bit instructions used by `non-atomic' variants are actually atomic. */
82 #define set_bit __set_bit
83 #define clear_bit __clear_bit
84 #define change_bit __change_bit
87 #define __const_tns_bit_op(op, nr, addr) \
89 __asm__ __volatile__ ( \
90 "tst1 (%1 - 0x123), %2; setf nz, %0; " op " (%1 - 0x123), %2" \
92 : "g" (((nr) & 0x7) + 0x123), \
93 "m" (*((char *)(addr) + ((nr) >> 3))) \
97 #define __var_tns_bit_op(op, nr, addr) \
100 __asm__ __volatile__ ( \
101 "tst1 %1, [%2]; setf nz, %0; " op " %1, [%2]" \
102 : "=&r" (__tns_res) \
103 : "r" (__nr & 0x7), \
104 "r" ((char *)(addr) + (__nr >> 3)) \
108 #define __tns_bit_op(op, nr, addr) \
109 ((__builtin_constant_p (nr) && (unsigned)(nr) <= 0x7FFFF) \
110 ? __const_tns_bit_op (op, nr, addr) \
111 : __var_tns_bit_op (op, nr, addr))
112 #define __tns_atomic_bit_op(op, nr, addr) \
113 ({ int __tns_atomic_res, __tns_atomic_flags; \
114 local_irq_save (__tns_atomic_flags); \
115 __tns_atomic_res = __tns_bit_op (op, nr, addr); \
116 local_irq_restore (__tns_atomic_flags); \
120 #define __test_and_set_bit(nr, addr) __tns_bit_op ("set1", nr, addr)
121 #define test_and_set_bit(nr, addr) __tns_atomic_bit_op ("set1", nr, addr)
123 #define __test_and_clear_bit(nr, addr) __tns_bit_op ("clr1", nr, addr)
124 #define test_and_clear_bit(nr, addr) __tns_atomic_bit_op ("clr1", nr, addr)
126 #define __test_and_change_bit(nr, addr) __tns_bit_op ("not1", nr, addr)
127 #define test_and_change_bit(nr, addr) __tns_atomic_bit_op ("not1", nr, addr)
130 #define __const_test_bit(nr, addr) \
131 ({ int __test_bit_res; \
132 __asm__ __volatile__ ("tst1 (%1 - 0x123), %2; setf nz, %0" \
133 : "=r" (__test_bit_res) \
134 : "g" (((nr) & 0x7) + 0x123), \
135 "m" (*((const char *)(addr) + ((nr) >> 3)))); \
138 extern __inline__ int __test_bit (int nr, const void *addr)
141 __asm__ __volatile__ ("tst1 %1, [%2]; setf nz, %0"
143 : "r" (nr & 0x7), "r" (addr + (nr >> 3)));
146 #define test_bit(nr,addr) \
147 ((__builtin_constant_p (nr) && (unsigned)(nr) <= 0x7FFFF) \
148 ? __const_test_bit ((nr), (addr)) \
149 : __test_bit ((nr), (addr)))
152 /* clear_bit doesn't provide any barrier for the compiler. */
153 #define smp_mb__before_clear_bit() barrier ()
154 #define smp_mb__after_clear_bit() barrier ()
157 #define find_first_zero_bit(addr, size) \
158 find_next_zero_bit ((addr), (size), 0)
160 extern __inline__ int find_next_zero_bit (void *addr, int size, int offset)
162 unsigned long *p = ((unsigned long *) addr) + (offset >> 5);
163 unsigned long result = offset & ~31UL;
172 tmp |= ~0UL >> (32-offset);
180 while (size & ~31UL) {
181 if (~ (tmp = * (p++)))
193 return result + ffz (tmp);
197 /* This is the same as generic_ffs, but we can't use that because it's
198 inline and the #include order mucks things up. */
199 static inline int generic_ffs_for_find_next_bit(int x)
229 * Find next one bit in a bitmap reasonably efficiently.
231 static __inline__ unsigned long find_next_bit(const unsigned long *addr,
232 unsigned long size, unsigned long offset)
234 unsigned int *p = ((unsigned int *) addr) + (offset >> 5);
235 unsigned int result = offset & ~31UL;
244 tmp &= ~0UL << offset;
253 if ((tmp = *p++) != 0)
263 tmp &= ~0UL >> (32 - size);
264 if (tmp == 0UL) /* Are any bits set? */
265 return result + size; /* Nope. */
267 return result + generic_ffs_for_find_next_bit(tmp);
271 * find_first_bit - find the first set bit in a memory region
273 #define find_first_bit(addr, size) \
274 find_next_bit((addr), (size), 0)
277 #define ffs(x) generic_ffs (x)
278 #define fls(x) generic_fls (x)
279 #define __ffs(x) ffs(x)
283 * This is just `generic_ffs' from <linux/bitops.h>, except that it assumes
284 * that at least one bit is set, and returns the real index of the bit
285 * (rather than the bit index + 1, like ffs does).
287 static inline int sched_ffs(int x)
315 * Every architecture must define this function. It's the fastest
316 * way of searching a 140-bit bitmap where the first 100 bits are
317 * unlikely to be set. It's guaranteed that at least one of the 140
320 static inline int sched_find_first_bit(unsigned long *b)
327 return sched_ffs (*b) + offs;
331 * hweightN: returns the hamming weight (i.e. the number
332 * of bits set) of a N-bit word
334 #define hweight32(x) generic_hweight32 (x)
335 #define hweight16(x) generic_hweight16 (x)
336 #define hweight8(x) generic_hweight8 (x)
338 #define ext2_set_bit test_and_set_bit
339 #define ext2_set_bit_atomic(l,n,a) test_and_set_bit(n,a)
340 #define ext2_clear_bit test_and_clear_bit
341 #define ext2_clear_bit_atomic(l,n,a) test_and_clear_bit(n,a)
342 #define ext2_test_bit test_bit
343 #define ext2_find_first_zero_bit find_first_zero_bit
344 #define ext2_find_next_zero_bit find_next_zero_bit
346 /* Bitmap functions for the minix filesystem. */
347 #define minix_test_and_set_bit test_and_set_bit
348 #define minix_set_bit set_bit
349 #define minix_test_and_clear_bit test_and_clear_bit
350 #define minix_test_bit test_bit
351 #define minix_find_first_zero_bit find_first_zero_bit
353 #endif /* __KERNEL__ */
355 #endif /* __V850_BITOPS_H__ */