1 /* bitops.h: bit operations for the Fujitsu FR-V CPUs
3 * For an explanation of how atomic ops work in this arch, see:
4 * Documentation/fujitsu/frv/atomic-ops.txt
6 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
7 * Written by David Howells (dhowells@redhat.com)
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
17 #include <linux/compiler.h>
18 #include <asm/byteorder.h>
19 #include <asm/system.h>
20 #include <asm/atomic.h>
24 #ifndef _LINUX_BITOPS_H
25 #error only <linux/bitops.h> can be included directly
28 #include <asm-generic/bitops/ffz.h>
31 * clear_bit() doesn't provide any barrier for the compiler.
33 #define smp_mb__before_clear_bit() barrier()
34 #define smp_mb__after_clear_bit() barrier()
36 static inline int test_and_clear_bit(int nr
, volatile void *addr
)
38 volatile unsigned long *ptr
= addr
;
39 unsigned long mask
= 1UL << (nr
& 31);
41 return (atomic_test_and_ANDNOT_mask(mask
, ptr
) & mask
) != 0;
44 static inline int test_and_set_bit(int nr
, volatile void *addr
)
46 volatile unsigned long *ptr
= addr
;
47 unsigned long mask
= 1UL << (nr
& 31);
49 return (atomic_test_and_OR_mask(mask
, ptr
) & mask
) != 0;
52 static inline int test_and_change_bit(int nr
, volatile void *addr
)
54 volatile unsigned long *ptr
= addr
;
55 unsigned long mask
= 1UL << (nr
& 31);
57 return (atomic_test_and_XOR_mask(mask
, ptr
) & mask
) != 0;
60 static inline void clear_bit(int nr
, volatile void *addr
)
62 test_and_clear_bit(nr
, addr
);
65 static inline void set_bit(int nr
, volatile void *addr
)
67 test_and_set_bit(nr
, addr
);
70 static inline void change_bit(int nr
, volatile void * addr
)
72 test_and_change_bit(nr
, addr
);
75 static inline void __clear_bit(int nr
, volatile void * addr
)
77 volatile unsigned long *a
= addr
;
81 mask
= 1 << (nr
& 31);
85 static inline void __set_bit(int nr
, volatile void * addr
)
87 volatile unsigned long *a
= addr
;
91 mask
= 1 << (nr
& 31);
95 static inline void __change_bit(int nr
, volatile void *addr
)
97 volatile unsigned long *a
= addr
;
101 mask
= 1 << (nr
& 31);
105 static inline int __test_and_clear_bit(int nr
, volatile void * addr
)
107 volatile unsigned long *a
= addr
;
111 mask
= 1 << (nr
& 31);
112 retval
= (mask
& *a
) != 0;
117 static inline int __test_and_set_bit(int nr
, volatile void * addr
)
119 volatile unsigned long *a
= addr
;
123 mask
= 1 << (nr
& 31);
124 retval
= (mask
& *a
) != 0;
129 static inline int __test_and_change_bit(int nr
, volatile void * addr
)
131 volatile unsigned long *a
= addr
;
135 mask
= 1 << (nr
& 31);
136 retval
= (mask
& *a
) != 0;
142 * This routine doesn't need to be atomic.
144 static inline int __constant_test_bit(int nr
, const volatile void * addr
)
146 return ((1UL << (nr
& 31)) & (((const volatile unsigned int *) addr
)[nr
>> 5])) != 0;
149 static inline int __test_bit(int nr
, const volatile void * addr
)
151 int * a
= (int *) addr
;
155 mask
= 1 << (nr
& 0x1f);
156 return ((mask
& *a
) != 0);
159 #define test_bit(nr,addr) \
160 (__builtin_constant_p(nr) ? \
161 __constant_test_bit((nr),(addr)) : \
162 __test_bit((nr),(addr)))
164 #include <asm-generic/bitops/find.h>
167 * fls - find last bit set
168 * @x: the word to search
170 * This is defined the same way as ffs:
171 * - return 32..1 to indicate bit 31..0 most significant bit set
172 * - return 0 to indicate no bits set
178 asm(" subcc %1,gr0,gr0,icc0 \n" \
179 " ckne icc0,cc4 \n" \
180 " cscan.p %1,gr0,%0 ,cc4,#1 \n" \
181 " csub %0,%0,%0 ,cc4,#0 \n" \
182 " csub %2,%0,%0 ,cc4,#1 \n" \
192 * fls64 - find last bit set in a 64-bit value
193 * @n: the value to search
195 * This is defined the same way as ffs:
196 * - return 64..1 to indicate bit 63..0 most significant bit set
197 * - return 0 to indicate no bits set
199 static inline __attribute__((const))
204 struct { u32 h
, l
; };
210 asm(" subcc.p %3,gr0,gr0,icc0 \n"
211 " subcc %4,gr0,gr0,icc1 \n"
214 " norcr cc4,cc5,cc6 \n"
215 " csub.p %0,%0,%0 ,cc6,1 \n"
216 " orcr cc5,cc4,cc4 \n"
217 " andcr cc4,cc5,cc4 \n"
218 " cscan.p %3,gr0,%0 ,cc4,0 \n"
220 " cscan.p %4,gr0,%0 ,cc4,1 \n"
222 " csub.p %1,%0,%0 ,cc4,0 \n"
223 " csub %2,%0,%0 ,cc4,1 \n"
224 : "=&r"(bit
), "=r"(x
), "=r"(y
)
225 : "0r"(_
.h
), "r"(_
.l
)
226 : "icc0", "icc1", "cc4", "cc5", "cc6"
233 * ffs - find first bit set
234 * @x: the word to search
236 * - return 32..1 to indicate bit 31..0 most least significant bit set
237 * - return 0 to indicate no bits set
239 static inline __attribute__((const))
242 /* Note: (x & -x) gives us a mask that is the least significant
243 * (rightmost) 1-bit of the value in x.
249 * __ffs - find first bit set
250 * @x: the word to search
252 * - return 31..0 to indicate bit 31..0 most least significant bit set
253 * - if no bits are set in x, the result is undefined
255 static inline __attribute__((const))
256 int __ffs(unsigned long x
)
259 asm("scan %1,gr0,%0" : "=r"(bit
) : "r"(x
& -x
));
264 * special slimline version of fls() for calculating ilog2_u32()
265 * - note: no protection against n == 0
267 #define ARCH_HAS_ILOG2_U32
268 static inline __attribute__((const))
269 int __ilog2_u32(u32 n
)
272 asm("scan %1,gr0,%0" : "=r"(bit
) : "r"(n
));
277 * special slimline version of fls64() for calculating ilog2_u64()
278 * - note: no protection against n == 0
280 #define ARCH_HAS_ILOG2_U64
281 static inline __attribute__((const))
282 int __ilog2_u64(u64 n
)
286 struct { u32 h
, l
; };
292 asm(" subcc %3,gr0,gr0,icc0 \n"
294 " cscan.p %3,gr0,%0 ,cc4,0 \n"
296 " cscan.p %4,gr0,%0 ,cc4,1 \n"
298 " csub.p %1,%0,%0 ,cc4,0 \n"
299 " csub %2,%0,%0 ,cc4,1 \n"
300 : "=&r"(bit
), "=r"(x
), "=r"(y
)
301 : "0r"(_
.h
), "r"(_
.l
)
307 #include <asm-generic/bitops/sched.h>
308 #include <asm-generic/bitops/hweight.h>
309 #include <asm-generic/bitops/lock.h>
311 #include <asm-generic/bitops/ext2-non-atomic.h>
313 #define ext2_set_bit_atomic(lock,nr,addr) test_and_set_bit ((nr) ^ 0x18, (addr))
314 #define ext2_clear_bit_atomic(lock,nr,addr) test_and_clear_bit((nr) ^ 0x18, (addr))
316 #include <asm-generic/bitops/minix-le.h>
318 #endif /* __KERNEL__ */
320 #endif /* _ASM_BITOPS_H */