2 * Copyright 2004-2009 Analog Devices Inc.
4 * Licensed under the GPL-2 or later.
7 #ifndef _BLACKFIN_BITOPS_H
8 #define _BLACKFIN_BITOPS_H
11 # include <asm-generic/bitops.h>
14 #ifndef _LINUX_BITOPS_H
15 #error only <linux/bitops.h> can be included directly
18 #include <linux/compiler.h>
19 #include <asm/byteorder.h> /* swab32 */
21 #include <asm-generic/bitops/ffs.h>
22 #include <asm-generic/bitops/__ffs.h>
23 #include <asm-generic/bitops/sched.h>
24 #include <asm-generic/bitops/ffz.h>
26 #include <linux/linkage.h>
28 asmlinkage
int __raw_bit_set_asm(volatile unsigned long *addr
, int nr
);
30 asmlinkage
int __raw_bit_clear_asm(volatile unsigned long *addr
, int nr
);
32 asmlinkage
int __raw_bit_toggle_asm(volatile unsigned long *addr
, int nr
);
34 asmlinkage
int __raw_bit_test_set_asm(volatile unsigned long *addr
, int nr
);
36 asmlinkage
int __raw_bit_test_clear_asm(volatile unsigned long *addr
, int nr
);
38 asmlinkage
int __raw_bit_test_toggle_asm(volatile unsigned long *addr
, int nr
);
40 asmlinkage
int __raw_bit_test_asm(const volatile unsigned long *addr
, int nr
);
42 static inline void set_bit(int nr
, volatile unsigned long *addr
)
44 volatile unsigned long *a
= addr
+ (nr
>> 5);
45 __raw_bit_set_asm(a
, nr
& 0x1f);
48 static inline void clear_bit(int nr
, volatile unsigned long *addr
)
50 volatile unsigned long *a
= addr
+ (nr
>> 5);
51 __raw_bit_clear_asm(a
, nr
& 0x1f);
54 static inline void change_bit(int nr
, volatile unsigned long *addr
)
56 volatile unsigned long *a
= addr
+ (nr
>> 5);
57 __raw_bit_toggle_asm(a
, nr
& 0x1f);
60 static inline int test_bit(int nr
, const volatile unsigned long *addr
)
62 volatile const unsigned long *a
= addr
+ (nr
>> 5);
63 return __raw_bit_test_asm(a
, nr
& 0x1f) != 0;
66 static inline int test_and_set_bit(int nr
, volatile unsigned long *addr
)
68 volatile unsigned long *a
= addr
+ (nr
>> 5);
69 return __raw_bit_test_set_asm(a
, nr
& 0x1f);
72 static inline int test_and_clear_bit(int nr
, volatile unsigned long *addr
)
74 volatile unsigned long *a
= addr
+ (nr
>> 5);
75 return __raw_bit_test_clear_asm(a
, nr
& 0x1f);
78 static inline int test_and_change_bit(int nr
, volatile unsigned long *addr
)
80 volatile unsigned long *a
= addr
+ (nr
>> 5);
81 return __raw_bit_test_toggle_asm(a
, nr
& 0x1f);
85 * clear_bit() doesn't provide any barrier for the compiler.
87 #define smp_mb__before_clear_bit() barrier()
88 #define smp_mb__after_clear_bit() barrier()
90 #include <asm-generic/bitops/non-atomic.h>
92 #include <asm-generic/bitops/find.h>
93 #include <asm-generic/bitops/hweight.h>
94 #include <asm-generic/bitops/lock.h>
96 #include <asm-generic/bitops/ext2-atomic.h>
97 #include <asm-generic/bitops/ext2-non-atomic.h>
99 #include <asm-generic/bitops/minix.h>
101 #include <asm-generic/bitops/fls.h>
102 #include <asm-generic/bitops/__fls.h>
103 #include <asm-generic/bitops/fls64.h>
105 #endif /* CONFIG_SMP */
107 #endif /* _BLACKFIN_BITOPS_H */