Akinobu Mita | 4117b02 | 2006-03-26 01:39:07 -0800 | [diff] [blame] | 1 | #ifndef _ASM_GENERIC_BITOPS_NON_ATOMIC_H_ |
| 2 | #define _ASM_GENERIC_BITOPS_NON_ATOMIC_H_ |
| 3 | |
| 4 | #include <asm/types.h> |
| 5 | |
Akinobu Mita | 4117b02 | 2006-03-26 01:39:07 -0800 | [diff] [blame] | 6 | /** |
| 7 | * __set_bit - Set a bit in memory |
| 8 | * @nr: the bit to set |
| 9 | * @addr: the address to start counting from |
| 10 | * |
| 11 | * Unlike set_bit(), this function is non-atomic and may be reordered. |
| 12 | * If it's called on the same region of memory simultaneously, the effect |
| 13 | * may be that only one operation succeeds. |
| 14 | */ |
| 15 | static inline void __set_bit(int nr, volatile unsigned long *addr) |
| 16 | { |
Jiri Slaby | d05be13 | 2007-10-18 23:40:31 -0700 | [diff] [blame] | 17 | unsigned long mask = BIT_MASK(nr); |
| 18 | unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr); |
Akinobu Mita | 4117b02 | 2006-03-26 01:39:07 -0800 | [diff] [blame] | 19 | |
| 20 | *p |= mask; |
| 21 | } |
| 22 | |
| 23 | static inline void __clear_bit(int nr, volatile unsigned long *addr) |
| 24 | { |
Jiri Slaby | d05be13 | 2007-10-18 23:40:31 -0700 | [diff] [blame] | 25 | unsigned long mask = BIT_MASK(nr); |
| 26 | unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr); |
Akinobu Mita | 4117b02 | 2006-03-26 01:39:07 -0800 | [diff] [blame] | 27 | |
| 28 | *p &= ~mask; |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * __change_bit - Toggle a bit in memory |
| 33 | * @nr: the bit to change |
| 34 | * @addr: the address to start counting from |
| 35 | * |
| 36 | * Unlike change_bit(), this function is non-atomic and may be reordered. |
| 37 | * If it's called on the same region of memory simultaneously, the effect |
| 38 | * may be that only one operation succeeds. |
| 39 | */ |
| 40 | static inline void __change_bit(int nr, volatile unsigned long *addr) |
| 41 | { |
Jiri Slaby | d05be13 | 2007-10-18 23:40:31 -0700 | [diff] [blame] | 42 | unsigned long mask = BIT_MASK(nr); |
| 43 | unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr); |
Akinobu Mita | 4117b02 | 2006-03-26 01:39:07 -0800 | [diff] [blame] | 44 | |
| 45 | *p ^= mask; |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * __test_and_set_bit - Set a bit and return its old value |
| 50 | * @nr: Bit to set |
| 51 | * @addr: Address to count from |
| 52 | * |
| 53 | * This operation is non-atomic and can be reordered. |
| 54 | * If two examples of this operation race, one can appear to succeed |
| 55 | * but actually fail. You must protect multiple accesses with a lock. |
| 56 | */ |
| 57 | static inline int __test_and_set_bit(int nr, volatile unsigned long *addr) |
| 58 | { |
Jiri Slaby | d05be13 | 2007-10-18 23:40:31 -0700 | [diff] [blame] | 59 | unsigned long mask = BIT_MASK(nr); |
| 60 | unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr); |
Akinobu Mita | 4117b02 | 2006-03-26 01:39:07 -0800 | [diff] [blame] | 61 | unsigned long old = *p; |
| 62 | |
| 63 | *p = old | mask; |
| 64 | return (old & mask) != 0; |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * __test_and_clear_bit - Clear a bit and return its old value |
| 69 | * @nr: Bit to clear |
| 70 | * @addr: Address to count from |
| 71 | * |
| 72 | * This operation is non-atomic and can be reordered. |
| 73 | * If two examples of this operation race, one can appear to succeed |
| 74 | * but actually fail. You must protect multiple accesses with a lock. |
| 75 | */ |
| 76 | static inline int __test_and_clear_bit(int nr, volatile unsigned long *addr) |
| 77 | { |
Jiri Slaby | d05be13 | 2007-10-18 23:40:31 -0700 | [diff] [blame] | 78 | unsigned long mask = BIT_MASK(nr); |
| 79 | unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr); |
Akinobu Mita | 4117b02 | 2006-03-26 01:39:07 -0800 | [diff] [blame] | 80 | unsigned long old = *p; |
| 81 | |
| 82 | *p = old & ~mask; |
| 83 | return (old & mask) != 0; |
| 84 | } |
| 85 | |
| 86 | /* WARNING: non atomic and it can be reordered! */ |
| 87 | static inline int __test_and_change_bit(int nr, |
| 88 | volatile unsigned long *addr) |
| 89 | { |
Jiri Slaby | d05be13 | 2007-10-18 23:40:31 -0700 | [diff] [blame] | 90 | unsigned long mask = BIT_MASK(nr); |
| 91 | unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr); |
Akinobu Mita | 4117b02 | 2006-03-26 01:39:07 -0800 | [diff] [blame] | 92 | unsigned long old = *p; |
| 93 | |
| 94 | *p = old ^ mask; |
| 95 | return (old & mask) != 0; |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * test_bit - Determine whether a bit is set |
| 100 | * @nr: bit number to test |
| 101 | * @addr: Address to start counting from |
| 102 | */ |
| 103 | static inline int test_bit(int nr, const volatile unsigned long *addr) |
| 104 | { |
Jiri Slaby | d05be13 | 2007-10-18 23:40:31 -0700 | [diff] [blame] | 105 | return 1UL & (addr[BIT_WORD(nr)] >> (nr & (BITS_PER_LONG-1))); |
Akinobu Mita | 4117b02 | 2006-03-26 01:39:07 -0800 | [diff] [blame] | 106 | } |
| 107 | |
| 108 | #endif /* _ASM_GENERIC_BITOPS_NON_ATOMIC_H_ */ |