1 #ifndef _BLACKFIN_BITOPS_H
2 #define _BLACKFIN_BITOPS_H
5 * Copyright 1992, Linus Torvalds.
8 #include <linux/compiler.h>
9 #include <asm/byteorder.h> /* swab32 */
13 #ifndef _LINUX_BITOPS_H
14 #error only <linux/bitops.h> can be included directly
17 #include <asm-generic/bitops/ffs.h>
18 #include <asm-generic/bitops/__ffs.h>
19 #include <asm-generic/bitops/sched.h>
20 #include <asm-generic/bitops/ffz.h>
24 #include <linux/linkage.h>
26 asmlinkage int __raw_bit_set_asm(volatile unsigned long *addr, int nr);
28 asmlinkage int __raw_bit_clear_asm(volatile unsigned long *addr, int nr);
30 asmlinkage int __raw_bit_toggle_asm(volatile unsigned long *addr, int nr);
32 asmlinkage int __raw_bit_test_set_asm(volatile unsigned long *addr, int nr);
34 asmlinkage int __raw_bit_test_clear_asm(volatile unsigned long *addr, int nr);
36 asmlinkage int __raw_bit_test_toggle_asm(volatile unsigned long *addr, int nr);
38 asmlinkage int __raw_bit_test_asm(const volatile unsigned long *addr, int nr);
40 static inline void set_bit(int nr, volatile unsigned long *addr)
42 volatile unsigned long *a = addr + (nr >> 5);
43 __raw_bit_set_asm(a, nr & 0x1f);
46 static inline void clear_bit(int nr, volatile unsigned long *addr)
48 volatile unsigned long *a = addr + (nr >> 5);
49 __raw_bit_clear_asm(a, nr & 0x1f);
52 static inline void change_bit(int nr, volatile unsigned long *addr)
54 volatile unsigned long *a = addr + (nr >> 5);
55 __raw_bit_toggle_asm(a, nr & 0x1f);
58 static inline int test_bit(int nr, const volatile unsigned long *addr)
60 volatile const unsigned long *a = addr + (nr >> 5);
61 return __raw_bit_test_asm(a, nr & 0x1f) != 0;
64 static inline int test_and_set_bit(int nr, volatile unsigned long *addr)
66 volatile unsigned long *a = addr + (nr >> 5);
67 return __raw_bit_test_set_asm(a, nr & 0x1f);
70 static inline int test_and_clear_bit(int nr, volatile unsigned long *addr)
72 volatile unsigned long *a = addr + (nr >> 5);
73 return __raw_bit_test_clear_asm(a, nr & 0x1f);
76 static inline int test_and_change_bit(int nr, volatile unsigned long *addr)
78 volatile unsigned long *a = addr + (nr >> 5);
79 return __raw_bit_test_toggle_asm(a, nr & 0x1f);
82 #else /* !CONFIG_SMP */
84 #include <asm/system.h> /* save_flags */
86 static inline void set_bit(int nr, volatile unsigned long *addr)
92 mask = 1 << (nr & 0x1f);
93 local_irq_save_hw(flags);
95 local_irq_restore_hw(flags);
98 static inline void clear_bit(int nr, volatile unsigned long *addr)
100 int *a = (int *)addr;
104 mask = 1 << (nr & 0x1f);
105 local_irq_save_hw(flags);
107 local_irq_restore_hw(flags);
110 static inline void change_bit(int nr, volatile unsigned long *addr)
113 unsigned long *ADDR = (unsigned long *)addr;
116 mask = 1 << (nr & 31);
117 local_irq_save_hw(flags);
119 local_irq_restore_hw(flags);
122 static inline int test_and_set_bit(int nr, volatile unsigned long *addr)
125 volatile unsigned int *a = (volatile unsigned int *)addr;
129 mask = 1 << (nr & 0x1f);
130 local_irq_save_hw(flags);
131 retval = (mask & *a) != 0;
133 local_irq_restore_hw(flags);
138 static inline int test_and_clear_bit(int nr, volatile unsigned long *addr)
141 volatile unsigned int *a = (volatile unsigned int *)addr;
145 mask = 1 << (nr & 0x1f);
146 local_irq_save_hw(flags);
147 retval = (mask & *a) != 0;
149 local_irq_restore_hw(flags);
154 static inline int test_and_change_bit(int nr, volatile unsigned long *addr)
157 volatile unsigned int *a = (volatile unsigned int *)addr;
161 mask = 1 << (nr & 0x1f);
162 local_irq_save_hw(flags);
163 retval = (mask & *a) != 0;
165 local_irq_restore_hw(flags);
169 #endif /* CONFIG_SMP */
172 * clear_bit() doesn't provide any barrier for the compiler.
174 #define smp_mb__before_clear_bit() barrier()
175 #define smp_mb__after_clear_bit() barrier()
177 static inline void __set_bit(int nr, volatile unsigned long *addr)
179 int *a = (int *)addr;
183 mask = 1 << (nr & 0x1f);
187 static inline void __clear_bit(int nr, volatile unsigned long *addr)
189 int *a = (int *)addr;
193 mask = 1 << (nr & 0x1f);
197 static inline void __change_bit(int nr, volatile unsigned long *addr)
200 unsigned long *ADDR = (unsigned long *)addr;
203 mask = 1 << (nr & 31);
207 static inline int __test_and_set_bit(int nr, volatile unsigned long *addr)
210 volatile unsigned int *a = (volatile unsigned int *)addr;
213 mask = 1 << (nr & 0x1f);
214 retval = (mask & *a) != 0;
219 static inline int __test_and_clear_bit(int nr, volatile unsigned long *addr)
222 volatile unsigned int *a = (volatile unsigned int *)addr;
225 mask = 1 << (nr & 0x1f);
226 retval = (mask & *a) != 0;
231 static inline int __test_and_change_bit(int nr,
232 volatile unsigned long *addr)
235 volatile unsigned int *a = (volatile unsigned int *)addr;
238 mask = 1 << (nr & 0x1f);
239 retval = (mask & *a) != 0;
244 static inline int __test_bit(int nr, const void *addr)
246 int *a = (int *)addr;
250 mask = 1 << (nr & 0x1f);
251 return ((mask & *a) != 0);
256 * This routine doesn't need irq save and restore ops in UP
259 static inline int test_bit(int nr, const void *addr)
261 return __test_bit(nr, addr);
265 #include <asm-generic/bitops/find.h>
266 #include <asm-generic/bitops/hweight.h>
267 #include <asm-generic/bitops/lock.h>
269 #include <asm-generic/bitops/ext2-atomic.h>
270 #include <asm-generic/bitops/ext2-non-atomic.h>
272 #include <asm-generic/bitops/minix.h>
274 #endif /* __KERNEL__ */
276 #include <asm-generic/bitops/fls.h>
277 #include <asm-generic/bitops/__fls.h>
278 #include <asm-generic/bitops/fls64.h>
280 #endif /* _BLACKFIN_BITOPS_H */