blob: 71e8145243ee885426ad24f1f07dc7fedbba5a66 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _ASM_IA64_BITOPS_H
2#define _ASM_IA64_BITOPS_H
3
4/*
5 * Copyright (C) 1998-2003 Hewlett-Packard Co
6 * David Mosberger-Tang <davidm@hpl.hp.com>
7 *
Akinobu Mita2875aef2006-03-26 01:39:25 -08008 * 02/06/02 find_next_bit() and find_first_bit() added from Erich Focht's ia64
9 * O(1) scheduler patch
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
Jiri Slaby06245172007-10-18 23:40:26 -070012#ifndef _LINUX_BITOPS_H
13#error only <linux/bitops.h> can be included directly
14#endif
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/compiler.h>
17#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/intrinsics.h>
Peter Zijlstra0cd64ef2014-03-13 19:00:36 +010019#include <asm/barrier.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21/**
22 * set_bit - Atomically set a bit in memory
23 * @nr: the bit to set
24 * @addr: the address to start counting from
25 *
26 * This function is atomic and may not be reordered. See __set_bit()
27 * if you do not require the atomic guarantees.
28 * Note that @nr may be almost arbitrarily large; this function is not
29 * restricted to acting on a single-word quantity.
30 *
31 * The address must be (at least) "long" aligned.
Akinobu Mita2875aef2006-03-26 01:39:25 -080032 * Note that there are driver (e.g., eepro100) which use these operations to
33 * operate on hw-defined data-structures, so we can't easily change these
34 * operations to force a bigger alignment.
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 *
36 * bit 0 is the LSB of addr; bit 32 is the LSB of (addr+1).
37 */
38static __inline__ void
39set_bit (int nr, volatile void *addr)
40{
41 __u32 bit, old, new;
42 volatile __u32 *m;
43 CMPXCHG_BUGCHECK_DECL
44
45 m = (volatile __u32 *) addr + (nr >> 5);
46 bit = 1 << (nr & 31);
47 do {
48 CMPXCHG_BUGCHECK(m);
49 old = *m;
50 new = old | bit;
51 } while (cmpxchg_acq(m, old, new) != old);
52}
53
54/**
55 * __set_bit - Set a bit in memory
56 * @nr: the bit to set
57 * @addr: the address to start counting from
58 *
59 * Unlike set_bit(), this function is non-atomic and may be reordered.
60 * If it's called on the same region of memory simultaneously, the effect
61 * may be that only one operation succeeds.
62 */
63static __inline__ void
64__set_bit (int nr, volatile void *addr)
65{
66 *((__u32 *) addr + (nr >> 5)) |= (1 << (nr & 31));
67}
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/**
70 * clear_bit - Clears a bit in memory
71 * @nr: Bit to clear
72 * @addr: Address to start counting from
73 *
74 * clear_bit() is atomic and may not be reordered. However, it does
75 * not contain a memory barrier, so if it is used for locking purposes,
Peter Zijlstra0cd64ef2014-03-13 19:00:36 +010076 * you should call smp_mb__before_atomic() and/or smp_mb__after_atomic()
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 * in order to ensure changes are visible on other processors.
78 */
79static __inline__ void
80clear_bit (int nr, volatile void *addr)
81{
82 __u32 mask, old, new;
83 volatile __u32 *m;
84 CMPXCHG_BUGCHECK_DECL
85
86 m = (volatile __u32 *) addr + (nr >> 5);
87 mask = ~(1 << (nr & 31));
88 do {
89 CMPXCHG_BUGCHECK(m);
90 old = *m;
91 new = old & mask;
92 } while (cmpxchg_acq(m, old, new) != old);
93}
94
95/**
Nick Piggin87371e42007-10-18 03:06:52 -070096 * clear_bit_unlock - Clears a bit in memory with release
97 * @nr: Bit to clear
98 * @addr: Address to start counting from
99 *
100 * clear_bit_unlock() is atomic and may not be reordered. It does
101 * contain a memory barrier suitable for unlock type operations.
102 */
103static __inline__ void
104clear_bit_unlock (int nr, volatile void *addr)
105{
106 __u32 mask, old, new;
107 volatile __u32 *m;
108 CMPXCHG_BUGCHECK_DECL
109
110 m = (volatile __u32 *) addr + (nr >> 5);
111 mask = ~(1 << (nr & 31));
112 do {
113 CMPXCHG_BUGCHECK(m);
114 old = *m;
115 new = old & mask;
116 } while (cmpxchg_rel(m, old, new) != old);
117}
118
119/**
Zoltan Menyhart5302ac52008-02-04 15:19:16 -0800120 * __clear_bit_unlock - Non-atomically clears a bit in memory with release
121 * @nr: Bit to clear
122 * @addr: Address to start counting from
Nick Piggin87371e42007-10-18 03:06:52 -0700123 *
Zoltan Menyhart5302ac52008-02-04 15:19:16 -0800124 * Similarly to clear_bit_unlock, the implementation uses a store
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100125 * with release semantics. See also arch_spin_unlock().
Nick Piggin87371e42007-10-18 03:06:52 -0700126 */
Christoph Lametera3ebdb62007-12-18 16:22:46 -0800127static __inline__ void
Zoltan Menyhart5302ac52008-02-04 15:19:16 -0800128__clear_bit_unlock(int nr, void *addr)
Christoph Lametera3ebdb62007-12-18 16:22:46 -0800129{
Zoltan Menyhart5302ac52008-02-04 15:19:16 -0800130 __u32 * const m = (__u32 *) addr + (nr >> 5);
131 __u32 const new = *m & ~(1 << (nr & 31));
Christoph Lametera3ebdb62007-12-18 16:22:46 -0800132
Christoph Lametera3ebdb62007-12-18 16:22:46 -0800133 ia64_st4_rel_nta(m, new);
134}
Nick Piggin87371e42007-10-18 03:06:52 -0700135
136/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 * __clear_bit - Clears a bit in memory (non-atomic version)
Zoltan Menyhart5302ac52008-02-04 15:19:16 -0800138 * @nr: the bit to clear
139 * @addr: the address to start counting from
140 *
141 * Unlike clear_bit(), this function is non-atomic and may be reordered.
142 * If it's called on the same region of memory simultaneously, the effect
143 * may be that only one operation succeeds.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 */
145static __inline__ void
146__clear_bit (int nr, volatile void *addr)
147{
Zoltan Menyhart5302ac52008-02-04 15:19:16 -0800148 *((__u32 *) addr + (nr >> 5)) &= ~(1 << (nr & 31));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
151/**
152 * change_bit - Toggle a bit in memory
Zoltan Menyhart5302ac52008-02-04 15:19:16 -0800153 * @nr: Bit to toggle
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 * @addr: Address to start counting from
155 *
156 * change_bit() is atomic and may not be reordered.
157 * Note that @nr may be almost arbitrarily large; this function is not
158 * restricted to acting on a single-word quantity.
159 */
160static __inline__ void
161change_bit (int nr, volatile void *addr)
162{
163 __u32 bit, old, new;
164 volatile __u32 *m;
165 CMPXCHG_BUGCHECK_DECL
166
167 m = (volatile __u32 *) addr + (nr >> 5);
168 bit = (1 << (nr & 31));
169 do {
170 CMPXCHG_BUGCHECK(m);
171 old = *m;
172 new = old ^ bit;
173 } while (cmpxchg_acq(m, old, new) != old);
174}
175
176/**
177 * __change_bit - Toggle a bit in memory
Zoltan Menyhart5302ac52008-02-04 15:19:16 -0800178 * @nr: the bit to toggle
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 * @addr: the address to start counting from
180 *
181 * Unlike change_bit(), this function is non-atomic and may be reordered.
182 * If it's called on the same region of memory simultaneously, the effect
183 * may be that only one operation succeeds.
184 */
185static __inline__ void
186__change_bit (int nr, volatile void *addr)
187{
188 *((__u32 *) addr + (nr >> 5)) ^= (1 << (nr & 31));
189}
190
191/**
192 * test_and_set_bit - Set a bit and return its old value
193 * @nr: Bit to set
194 * @addr: Address to count from
195 *
196 * This operation is atomic and cannot be reordered.
Zoltan Menyhart5302ac52008-02-04 15:19:16 -0800197 * It also implies the acquisition side of the memory barrier.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 */
199static __inline__ int
200test_and_set_bit (int nr, volatile void *addr)
201{
202 __u32 bit, old, new;
203 volatile __u32 *m;
204 CMPXCHG_BUGCHECK_DECL
205
206 m = (volatile __u32 *) addr + (nr >> 5);
207 bit = 1 << (nr & 31);
208 do {
209 CMPXCHG_BUGCHECK(m);
210 old = *m;
211 new = old | bit;
212 } while (cmpxchg_acq(m, old, new) != old);
213 return (old & bit) != 0;
214}
215
216/**
Nick Piggin87371e42007-10-18 03:06:52 -0700217 * test_and_set_bit_lock - Set a bit and return its old value for lock
218 * @nr: Bit to set
219 * @addr: Address to count from
220 *
221 * This is the same as test_and_set_bit on ia64
222 */
223#define test_and_set_bit_lock test_and_set_bit
224
225/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 * __test_and_set_bit - Set a bit and return its old value
227 * @nr: Bit to set
228 * @addr: Address to count from
229 *
230 * This operation is non-atomic and can be reordered.
231 * If two examples of this operation race, one can appear to succeed
232 * but actually fail. You must protect multiple accesses with a lock.
233 */
234static __inline__ int
235__test_and_set_bit (int nr, volatile void *addr)
236{
237 __u32 *p = (__u32 *) addr + (nr >> 5);
238 __u32 m = 1 << (nr & 31);
239 int oldbitset = (*p & m) != 0;
240
241 *p |= m;
242 return oldbitset;
243}
244
245/**
246 * test_and_clear_bit - Clear a bit and return its old value
Zoltan Menyhart5302ac52008-02-04 15:19:16 -0800247 * @nr: Bit to clear
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 * @addr: Address to count from
249 *
250 * This operation is atomic and cannot be reordered.
Zoltan Menyhart5302ac52008-02-04 15:19:16 -0800251 * It also implies the acquisition side of the memory barrier.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 */
253static __inline__ int
254test_and_clear_bit (int nr, volatile void *addr)
255{
256 __u32 mask, old, new;
257 volatile __u32 *m;
258 CMPXCHG_BUGCHECK_DECL
259
260 m = (volatile __u32 *) addr + (nr >> 5);
261 mask = ~(1 << (nr & 31));
262 do {
263 CMPXCHG_BUGCHECK(m);
264 old = *m;
265 new = old & mask;
266 } while (cmpxchg_acq(m, old, new) != old);
267 return (old & ~mask) != 0;
268}
269
270/**
271 * __test_and_clear_bit - Clear a bit and return its old value
Zoltan Menyhart5302ac52008-02-04 15:19:16 -0800272 * @nr: Bit to clear
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 * @addr: Address to count from
274 *
275 * This operation is non-atomic and can be reordered.
276 * If two examples of this operation race, one can appear to succeed
277 * but actually fail. You must protect multiple accesses with a lock.
278 */
279static __inline__ int
280__test_and_clear_bit(int nr, volatile void * addr)
281{
282 __u32 *p = (__u32 *) addr + (nr >> 5);
283 __u32 m = 1 << (nr & 31);
Johannes Weiner8d6f9af2009-08-11 14:52:10 -0700284 int oldbitset = (*p & m) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 *p &= ~m;
287 return oldbitset;
288}
289
290/**
291 * test_and_change_bit - Change a bit and return its old value
Zoltan Menyhart5302ac52008-02-04 15:19:16 -0800292 * @nr: Bit to change
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 * @addr: Address to count from
294 *
295 * This operation is atomic and cannot be reordered.
Zoltan Menyhart5302ac52008-02-04 15:19:16 -0800296 * It also implies the acquisition side of the memory barrier.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 */
298static __inline__ int
299test_and_change_bit (int nr, volatile void *addr)
300{
301 __u32 bit, old, new;
302 volatile __u32 *m;
303 CMPXCHG_BUGCHECK_DECL
304
305 m = (volatile __u32 *) addr + (nr >> 5);
306 bit = (1 << (nr & 31));
307 do {
308 CMPXCHG_BUGCHECK(m);
309 old = *m;
310 new = old ^ bit;
311 } while (cmpxchg_acq(m, old, new) != old);
312 return (old & bit) != 0;
313}
314
Zoltan Menyhart5302ac52008-02-04 15:19:16 -0800315/**
316 * __test_and_change_bit - Change a bit and return its old value
317 * @nr: Bit to change
318 * @addr: Address to count from
319 *
320 * This operation is non-atomic and can be reordered.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 */
322static __inline__ int
323__test_and_change_bit (int nr, void *addr)
324{
325 __u32 old, bit = (1 << (nr & 31));
326 __u32 *m = (__u32 *) addr + (nr >> 5);
327
328 old = *m;
329 *m = old ^ bit;
330 return (old & bit) != 0;
331}
332
333static __inline__ int
334test_bit (int nr, const volatile void *addr)
335{
336 return 1 & (((const volatile __u32 *) addr)[nr >> 5] >> (nr & 31));
337}
338
339/**
340 * ffz - find the first zero bit in a long word
341 * @x: The long word to find the bit in
342 *
Akinobu Mita2875aef2006-03-26 01:39:25 -0800343 * Returns the bit-number (0..63) of the first (least significant) zero bit.
344 * Undefined if no zero exists, so code should check against ~0UL first...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 */
346static inline unsigned long
347ffz (unsigned long x)
348{
349 unsigned long result;
350
351 result = ia64_popcnt(x & (~x - 1));
352 return result;
353}
354
355/**
356 * __ffs - find first bit in word.
357 * @x: The word to search
358 *
359 * Undefined if no bit exists, so code should check against 0 first.
360 */
361static __inline__ unsigned long
362__ffs (unsigned long x)
363{
364 unsigned long result;
365
366 result = ia64_popcnt((x-1) & ~x);
367 return result;
368}
369
370#ifdef __KERNEL__
371
372/*
David Mosberger-Tang821376b2005-04-21 11:07:59 -0700373 * Return bit number of last (most-significant) bit set. Undefined
374 * for x==0. Bits are numbered from 0..63 (e.g., ia64_fls(9) == 3).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 */
376static inline unsigned long
377ia64_fls (unsigned long x)
378{
379 long double d = x;
380 long exp;
381
382 exp = ia64_getf_exp(d);
383 return exp - 0xffff;
384}
385
David Mosberger-Tang821376b2005-04-21 11:07:59 -0700386/*
387 * Find the last (most significant) bit set. Returns 0 for x==0 and
388 * bits are numbered from 1..32 (e.g., fls(9) == 4).
389 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390static inline int
David Mosberger-Tang821376b2005-04-21 11:07:59 -0700391fls (int t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
David Mosberger-Tang821376b2005-04-21 11:07:59 -0700393 unsigned long x = t & 0xffffffffu;
394
395 if (!x)
396 return 0;
397 x |= x >> 1;
398 x |= x >> 2;
399 x |= x >> 4;
400 x |= x >> 8;
401 x |= x >> 16;
402 return ia64_popcnt(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
Akinobu Mita2875aef2006-03-26 01:39:25 -0800404
Alexander van Heukelum56a6b1e2008-03-15 18:31:49 +0100405/*
406 * Find the last (most significant) bit set. Undefined for x==0.
407 * Bits are numbered from 0..63 (e.g., __fls(9) == 3).
408 */
409static inline unsigned long
410__fls (unsigned long x)
411{
412 x |= x >> 1;
413 x |= x >> 2;
414 x |= x >> 4;
415 x |= x >> 8;
416 x |= x >> 16;
417 x |= x >> 32;
418 return ia64_popcnt(x) - 1;
419}
420
Akinobu Mita2875aef2006-03-26 01:39:25 -0800421#include <asm-generic/bitops/fls64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Akinobu Mita44fd81f2013-08-14 22:06:59 +0900423#include <asm-generic/bitops/builtin-ffs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425/*
426 * hweightN: returns the hamming weight (i.e. the number
427 * of bits set) of a N-bit word
428 */
Peter Zijlstra1527bc82010-02-01 15:03:07 +0100429static __inline__ unsigned long __arch_hweight64(unsigned long x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
431 unsigned long result;
432 result = ia64_popcnt(x);
433 return result;
434}
435
Peter Zijlstra1527bc82010-02-01 15:03:07 +0100436#define __arch_hweight32(x) ((unsigned int) __arch_hweight64((x) & 0xfffffffful))
437#define __arch_hweight16(x) ((unsigned int) __arch_hweight64((x) & 0xfffful))
438#define __arch_hweight8(x) ((unsigned int) __arch_hweight64((x) & 0xfful))
439
440#include <asm-generic/bitops/const_hweight.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442#endif /* __KERNEL__ */
443
Akinobu Mita2875aef2006-03-26 01:39:25 -0800444#include <asm-generic/bitops/find.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446#ifdef __KERNEL__
447
Akinobu Mita861b5ae2011-03-23 16:42:02 -0700448#include <asm-generic/bitops/le.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Akinobu Mita148817b2011-07-26 16:09:04 -0700450#include <asm-generic/bitops/ext2-atomic-setbit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Akinobu Mita2875aef2006-03-26 01:39:25 -0800452#include <asm-generic/bitops/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454#endif /* __KERNEL__ */
455
456#endif /* _ASM_IA64_BITOPS_H */