2 * Copyright 2011 Tilera Corporation. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation, version 2.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
11 * NON INFRINGEMENT. See the GNU General Public License for
15 #ifndef _ASM_TILE_BITOPS_64_H
16 #define _ASM_TILE_BITOPS_64_H
18 #include <linux/compiler.h>
19 #include <linux/atomic.h>
20 #include <asm/system.h>
22 /* See <asm/bitops.h> for API comments. */
24 static inline void set_bit(unsigned nr
, volatile unsigned long *addr
)
26 unsigned long mask
= (1UL << (nr
% BITS_PER_LONG
));
27 __insn_fetchor((void *)(addr
+ nr
/ BITS_PER_LONG
), mask
);
30 static inline void clear_bit(unsigned nr
, volatile unsigned long *addr
)
32 unsigned long mask
= (1UL << (nr
% BITS_PER_LONG
));
33 __insn_fetchand((void *)(addr
+ nr
/ BITS_PER_LONG
), ~mask
);
36 #define smp_mb__before_clear_bit() smp_mb()
37 #define smp_mb__after_clear_bit() smp_mb()
40 static inline void change_bit(unsigned nr
, volatile unsigned long *addr
)
42 unsigned long old
, mask
= (1UL << (nr
% BITS_PER_LONG
));
44 addr
+= nr
/ BITS_PER_LONG
;
48 oldval
= atomic64_cmpxchg((atomic64_t
*)addr
,
50 } while (guess
!= oldval
);
55 * The test_and_xxx_bit() routines require a memory fence before we
56 * start the operation, and after the operation completes. We use
57 * smp_mb() before, and rely on the "!= 0" comparison, plus a compiler
58 * barrier(), to block until the atomic op is complete.
61 static inline int test_and_set_bit(unsigned nr
, volatile unsigned long *addr
)
64 unsigned long mask
= (1UL << (nr
% BITS_PER_LONG
));
65 smp_mb(); /* barrier for proper semantics */
66 val
= (__insn_fetchor((void *)(addr
+ nr
/ BITS_PER_LONG
), mask
)
73 static inline int test_and_clear_bit(unsigned nr
, volatile unsigned long *addr
)
76 unsigned long mask
= (1UL << (nr
% BITS_PER_LONG
));
77 smp_mb(); /* barrier for proper semantics */
78 val
= (__insn_fetchand((void *)(addr
+ nr
/ BITS_PER_LONG
), ~mask
)
85 static inline int test_and_change_bit(unsigned nr
,
86 volatile unsigned long *addr
)
88 unsigned long mask
= (1UL << (nr
% BITS_PER_LONG
));
89 long guess
, oldval
= *addr
;
90 addr
+= nr
/ BITS_PER_LONG
;
94 oldval
= atomic64_cmpxchg((atomic64_t
*)addr
,
96 } while (guess
!= oldval
);
97 return (oldval
& mask
) != 0;
100 #include <asm-generic/bitops/ext2-atomic-setbit.h>
102 #endif /* _ASM_TILE_BITOPS_64_H */