2 * PowerPC atomic bit operations.
4 * Merged version by David Gibson <david@gibson.dropbear.id.au>.
5 * Based on ppc64 versions by: Dave Engebretsen, Todd Inglett, Don
6 * Reed, Pat McCarthy, Peter Bergner, Anton Blanchard. They
7 * originally took it from the ppc32 code.
9 * Within a word, bits are numbered LSB first. Lot's of places make
10 * this assumption by directly testing bits with (val & (1<<nr)).
11 * This can cause confusion for large (> 1 word) bitmaps on a
12 * big-endian system because, unlike little endian, the number of each
13 * bit depends on the word size.
15 * The bitop functions are defined to work on unsigned longs, so for a
16 * ppc64 system the bits end up numbered:
17 * |63..............0|127............64|191...........128|255...........196|
19 * |31.....0|63....31|95....64|127...96|159..128|191..160|223..192|255..224|
21 * There are a few little-endian macros used mostly for filesystem
22 * bitmaps, these work on similar bit arrays layouts, but
24 * |7...0|15...8|23...16|31...24|39...32|47...40|55...48|63...56|
26 * The main difference is that bit 3-5 (64b) or 3-4 (32b) in the bit
27 * number field needs to be reversed compared to the big-endian bit
28 * fields. This can be achieved by XOR with 0x38 (64b) or 0x18 (32b).
30 * This program is free software; you can redistribute it and/or
31 * modify it under the terms of the GNU General Public License
32 * as published by the Free Software Foundation; either version
33 * 2 of the License, or (at your option) any later version.
36 #ifndef _ASM_POWERPC_BITOPS_H
37 #define _ASM_POWERPC_BITOPS_H
41 #include <linux/compiler.h>
42 #include <asm/asm-compat.h>
43 #include <asm/synch.h>
46 * clear_bit doesn't imply a memory barrier
48 #define smp_mb__before_clear_bit() smp_mb()
49 #define smp_mb__after_clear_bit() smp_mb()
51 #define BITOP_MASK(nr) (1UL << ((nr) % BITS_PER_LONG))
52 #define BITOP_WORD(nr) ((nr) / BITS_PER_LONG)
53 #define BITOP_LE_SWIZZLE ((BITS_PER_LONG-1) & ~0x7)
55 static __inline__
void set_bit(int nr
, volatile unsigned long *addr
)
58 unsigned long mask
= BITOP_MASK(nr
);
59 unsigned long *p
= ((unsigned long *)addr
) + BITOP_WORD(nr
);
62 "1:" PPC_LLARX
"%0,0,%3 # set_bit\n"
67 : "=&r" (old
), "+m" (*p
)
72 static __inline__
void clear_bit(int nr
, volatile unsigned long *addr
)
75 unsigned long mask
= BITOP_MASK(nr
);
76 unsigned long *p
= ((unsigned long *)addr
) + BITOP_WORD(nr
);
79 "1:" PPC_LLARX
"%0,0,%3 # clear_bit\n"
84 : "=&r" (old
), "+m" (*p
)
89 static __inline__
void change_bit(int nr
, volatile unsigned long *addr
)
92 unsigned long mask
= BITOP_MASK(nr
);
93 unsigned long *p
= ((unsigned long *)addr
) + BITOP_WORD(nr
);
96 "1:" PPC_LLARX
"%0,0,%3 # change_bit\n"
101 : "=&r" (old
), "+m" (*p
)
102 : "r" (mask
), "r" (p
)
106 static __inline__
int test_and_set_bit(unsigned long nr
,
107 volatile unsigned long *addr
)
109 unsigned long old
, t
;
110 unsigned long mask
= BITOP_MASK(nr
);
111 unsigned long *p
= ((unsigned long *)addr
) + BITOP_WORD(nr
);
113 __asm__
__volatile__(
115 "1:" PPC_LLARX
"%0,0,%3 # test_and_set_bit\n"
118 PPC_STLCX
"%1,0,%3 \n"
121 : "=&r" (old
), "=&r" (t
)
122 : "r" (mask
), "r" (p
)
125 return (old
& mask
) != 0;
128 static __inline__
int test_and_clear_bit(unsigned long nr
,
129 volatile unsigned long *addr
)
131 unsigned long old
, t
;
132 unsigned long mask
= BITOP_MASK(nr
);
133 unsigned long *p
= ((unsigned long *)addr
) + BITOP_WORD(nr
);
135 __asm__
__volatile__(
137 "1:" PPC_LLARX
"%0,0,%3 # test_and_clear_bit\n"
140 PPC_STLCX
"%1,0,%3 \n"
143 : "=&r" (old
), "=&r" (t
)
144 : "r" (mask
), "r" (p
)
147 return (old
& mask
) != 0;
150 static __inline__
int test_and_change_bit(unsigned long nr
,
151 volatile unsigned long *addr
)
153 unsigned long old
, t
;
154 unsigned long mask
= BITOP_MASK(nr
);
155 unsigned long *p
= ((unsigned long *)addr
) + BITOP_WORD(nr
);
157 __asm__
__volatile__(
159 "1:" PPC_LLARX
"%0,0,%3 # test_and_change_bit\n"
162 PPC_STLCX
"%1,0,%3 \n"
165 : "=&r" (old
), "=&r" (t
)
166 : "r" (mask
), "r" (p
)
169 return (old
& mask
) != 0;
172 static __inline__
void set_bits(unsigned long mask
, unsigned long *addr
)
176 __asm__
__volatile__(
177 "1:" PPC_LLARX
"%0,0,%3 # set_bits\n"
179 PPC_STLCX
"%0,0,%3\n"
181 : "=&r" (old
), "+m" (*addr
)
182 : "r" (mask
), "r" (addr
)
186 #include <asm-generic/bitops/non-atomic.h>
189 * Return the zero-based bit position (LE, not IBM bit numbering) of
190 * the most significant 1-bit in a double word.
192 static __inline__
__attribute__((const))
193 int __ilog2(unsigned long x
)
197 asm (PPC_CNTLZL
"%0,%1" : "=r" (lz
) : "r" (x
));
198 return BITS_PER_LONG
- 1 - lz
;
201 static inline __attribute__((const))
202 int __ilog2_u32(u32 n
)
205 asm ("cntlzw %0,%1" : "=r" (bit
) : "r" (n
));
210 static inline __attribute__((const))
211 int __ilog2_u64(u64 n
)
214 asm ("cntlzd %0,%1" : "=r" (bit
) : "r" (n
));
220 * Determines the bit position of the least significant 0 bit in the
221 * specified double word. The returned bit position will be
222 * zero-based, starting from the right side (63/31 - 0).
224 static __inline__
unsigned long ffz(unsigned long x
)
226 /* no zero exists anywhere in the 8 byte area. */
228 return BITS_PER_LONG
;
231 * Calculate the bit position of the least signficant '1' bit in x
232 * (since x has been changed this will actually be the least signficant
233 * '0' bit in * the original x). Note: (x & -x) gives us a mask that
234 * is the least significant * (RIGHT-most) 1-bit of the value in x.
236 return __ilog2(x
& -x
);
239 static __inline__
int __ffs(unsigned long x
)
241 return __ilog2(x
& -x
);
245 * ffs: find first bit set. This is defined the same way as
246 * the libc and compiler builtin ffs routines, therefore
247 * differs in spirit from the above ffz (man ffs).
249 static __inline__
int ffs(int x
)
251 unsigned long i
= (unsigned long)x
;
252 return __ilog2(i
& -i
) + 1;
256 * fls: find last (most-significant) bit set.
257 * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
259 static __inline__
int fls(unsigned int x
)
263 asm ("cntlzw %0,%1" : "=r" (lz
) : "r" (x
));
266 #include <asm-generic/bitops/fls64.h>
268 #include <asm-generic/bitops/hweight.h>
270 #define find_first_zero_bit(addr, size) find_next_zero_bit((addr), (size), 0)
271 unsigned long find_next_zero_bit(const unsigned long *addr
,
272 unsigned long size
, unsigned long offset
);
274 * find_first_bit - find the first set bit in a memory region
275 * @addr: The address to start the search at
276 * @size: The maximum size to search
278 * Returns the bit-number of the first set bit, not the number of the byte
281 #define find_first_bit(addr, size) find_next_bit((addr), (size), 0)
282 unsigned long find_next_bit(const unsigned long *addr
,
283 unsigned long size
, unsigned long offset
);
285 /* Little-endian versions */
287 static __inline__
int test_le_bit(unsigned long nr
,
288 __const__
unsigned long *addr
)
290 __const__
unsigned char *tmp
= (__const__
unsigned char *) addr
;
291 return (tmp
[nr
>> 3] >> (nr
& 7)) & 1;
294 #define __set_le_bit(nr, addr) \
295 __set_bit((nr) ^ BITOP_LE_SWIZZLE, (addr))
296 #define __clear_le_bit(nr, addr) \
297 __clear_bit((nr) ^ BITOP_LE_SWIZZLE, (addr))
299 #define test_and_set_le_bit(nr, addr) \
300 test_and_set_bit((nr) ^ BITOP_LE_SWIZZLE, (addr))
301 #define test_and_clear_le_bit(nr, addr) \
302 test_and_clear_bit((nr) ^ BITOP_LE_SWIZZLE, (addr))
304 #define __test_and_set_le_bit(nr, addr) \
305 __test_and_set_bit((nr) ^ BITOP_LE_SWIZZLE, (addr))
306 #define __test_and_clear_le_bit(nr, addr) \
307 __test_and_clear_bit((nr) ^ BITOP_LE_SWIZZLE, (addr))
309 #define find_first_zero_le_bit(addr, size) generic_find_next_zero_le_bit((addr), (size), 0)
310 unsigned long generic_find_next_zero_le_bit(const unsigned long *addr
,
311 unsigned long size
, unsigned long offset
);
313 /* Bitmap functions for the ext2 filesystem */
315 #define ext2_set_bit(nr,addr) \
316 __test_and_set_le_bit((nr), (unsigned long*)addr)
317 #define ext2_clear_bit(nr, addr) \
318 __test_and_clear_le_bit((nr), (unsigned long*)addr)
320 #define ext2_set_bit_atomic(lock, nr, addr) \
321 test_and_set_le_bit((nr), (unsigned long*)addr)
322 #define ext2_clear_bit_atomic(lock, nr, addr) \
323 test_and_clear_le_bit((nr), (unsigned long*)addr)
325 #define ext2_test_bit(nr, addr) test_le_bit((nr),(unsigned long*)addr)
327 #define ext2_find_first_zero_bit(addr, size) \
328 find_first_zero_le_bit((unsigned long*)addr, size)
329 #define ext2_find_next_zero_bit(addr, size, off) \
330 generic_find_next_zero_le_bit((unsigned long*)addr, size, off)
332 /* Bitmap functions for the minix filesystem. */
334 #define minix_test_and_set_bit(nr,addr) \
335 __test_and_set_le_bit(nr, (unsigned long *)addr)
336 #define minix_set_bit(nr,addr) \
337 __set_le_bit(nr, (unsigned long *)addr)
338 #define minix_test_and_clear_bit(nr,addr) \
339 __test_and_clear_le_bit(nr, (unsigned long *)addr)
340 #define minix_test_bit(nr,addr) \
341 test_le_bit(nr, (unsigned long *)addr)
343 #define minix_find_first_zero_bit(addr,size) \
344 find_first_zero_le_bit((unsigned long *)addr, size)
346 #include <asm-generic/bitops/sched.h>
348 #endif /* __KERNEL__ */
350 #endif /* _ASM_POWERPC_BITOPS_H */