2 * Bit operations for the Hexagon architecture
4 * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 and
9 * only version 2 as published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
25 #include <linux/compiler.h>
26 #include <asm/byteorder.h>
27 #include <asm/atomic.h>
28 #include <asm/barrier.h>
33 * The offset calculations for these are based on BITS_PER_LONG == 32
34 * (i.e. I get to shift by #5-2 (32 bits per long, 4 bytes per access),
37 * Typically, R10 is clobbered for address, R11 bit nr, and R12 is temp
41 * test_and_clear_bit - clear a bit and return its old value
42 * @nr: bit number to clear
43 * @addr: pointer to memory
45 static inline int test_and_clear_bit(int nr
, volatile void *addr
)
49 __asm__
__volatile__ (
50 " {R10 = %1; R11 = asr(%2,#5); }\n"
51 " {R10 += asl(R11,#2); R11 = and(%2,#0x1f)}\n"
52 "1: R12 = memw_locked(R10);\n"
53 " { P0 = tstbit(R12,R11); R12 = clrbit(R12,R11); }\n"
54 " memw_locked(R10,P1) = R12;\n"
55 " {if !P1 jump 1b; %0 = mux(P0,#1,#0);}\n"
57 : "r" (addr
), "r" (nr
)
58 : "r10", "r11", "r12", "p0", "p1", "memory"
65 * test_and_set_bit - set a bit and return its old value
66 * @nr: bit number to set
67 * @addr: pointer to memory
69 static inline int test_and_set_bit(int nr
, volatile void *addr
)
73 __asm__
__volatile__ (
74 " {R10 = %1; R11 = asr(%2,#5); }\n"
75 " {R10 += asl(R11,#2); R11 = and(%2,#0x1f)}\n"
76 "1: R12 = memw_locked(R10);\n"
77 " { P0 = tstbit(R12,R11); R12 = setbit(R12,R11); }\n"
78 " memw_locked(R10,P1) = R12;\n"
79 " {if !P1 jump 1b; %0 = mux(P0,#1,#0);}\n"
81 : "r" (addr
), "r" (nr
)
82 : "r10", "r11", "r12", "p0", "p1", "memory"
91 * test_and_change_bit - toggle a bit and return its old value
92 * @nr: bit number to set
93 * @addr: pointer to memory
95 static inline int test_and_change_bit(int nr
, volatile void *addr
)
99 __asm__
__volatile__ (
100 " {R10 = %1; R11 = asr(%2,#5); }\n"
101 " {R10 += asl(R11,#2); R11 = and(%2,#0x1f)}\n"
102 "1: R12 = memw_locked(R10);\n"
103 " { P0 = tstbit(R12,R11); R12 = togglebit(R12,R11); }\n"
104 " memw_locked(R10,P1) = R12;\n"
105 " {if !P1 jump 1b; %0 = mux(P0,#1,#0);}\n"
107 : "r" (addr
), "r" (nr
)
108 : "r10", "r11", "r12", "p0", "p1", "memory"
116 * Atomic, but doesn't care about the return value.
117 * Rewrite later to save a cycle or two.
120 static inline void clear_bit(int nr
, volatile void *addr
)
122 test_and_clear_bit(nr
, addr
);
125 static inline void set_bit(int nr
, volatile void *addr
)
127 test_and_set_bit(nr
, addr
);
130 static inline void change_bit(int nr
, volatile void *addr
)
132 test_and_change_bit(nr
, addr
);
137 * These are allowed to be non-atomic. In fact the generic flavors are
138 * in non-atomic.h. Would it be better to use intrinsics for this?
140 * OK, writes in our architecture do not invalidate LL/SC, so this has to
141 * be atomic, particularly for things like slab_lock and slab_unlock.
144 static inline void __clear_bit(int nr
, volatile unsigned long *addr
)
146 test_and_clear_bit(nr
, addr
);
149 static inline void __set_bit(int nr
, volatile unsigned long *addr
)
151 test_and_set_bit(nr
, addr
);
154 static inline void __change_bit(int nr
, volatile unsigned long *addr
)
156 test_and_change_bit(nr
, addr
);
159 /* Apparently, at least some of these are allowed to be non-atomic */
160 static inline int __test_and_clear_bit(int nr
, volatile unsigned long *addr
)
162 return test_and_clear_bit(nr
, addr
);
165 static inline int __test_and_set_bit(int nr
, volatile unsigned long *addr
)
167 return test_and_set_bit(nr
, addr
);
170 static inline int __test_and_change_bit(int nr
, volatile unsigned long *addr
)
172 return test_and_change_bit(nr
, addr
);
175 static inline int __test_bit(int nr
, const volatile unsigned long *addr
)
180 "{P0 = tstbit(%1,%2); if (P0.new) %0 = #1; if (!P0.new) %0 = #0;}\n"
182 : "r" (addr
[BIT_WORD(nr
)]), "r" (nr
% BITS_PER_LONG
)
189 #define test_bit(nr, addr) __test_bit(nr, addr)
192 * ffz - find first zero in word.
193 * @word: The word to search
195 * Undefined if no zero exists, so code should check against ~0UL first.
197 static inline long ffz(int x
)
201 asm("%0 = ct1(%1);\n"
208 * fls - find last (most-significant) bit set
209 * @x: the word to search
211 * This is defined the same way as ffs.
212 * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
214 static inline long fls(int x
)
218 asm("{ %0 = cl0(%1);}\n"
219 "%0 = sub(#32,%0);\n"
228 * ffs - find first bit set
229 * @x: the word to search
231 * This is defined the same way as
232 * the libc and compiler builtin ffs routines, therefore
233 * differs in spirit from the above ffz (man ffs).
235 static inline long ffs(int x
)
239 asm("{ P0 = cmp.eq(%1,#0); %0 = ct0(%1);}\n"
240 "{ if P0 %0 = #0; if !P0 %0 = add(%0,#1);}\n"
249 * __ffs - find first bit in word.
250 * @word: The word to search
252 * Undefined if no bit exists, so code should check against 0 first.
254 * bits_per_long assumed to be 32
255 * numbering starts at 0 I think (instead of 1 like ffs)
257 static inline unsigned long __ffs(unsigned long word
)
261 asm("%0 = ct0(%1);\n"
269 * __fls - find last (most-significant) set bit in a long word
270 * @word: the word to search
272 * Undefined if no set bit exists, so code should check against 0 first.
273 * bits_per_long assumed to be 32
275 static inline unsigned long __fls(unsigned long word
)
279 asm("%0 = cl0(%1);\n"
280 "%0 = sub(#31,%0);\n"
287 #include <asm-generic/bitops/lock.h>
288 #include <asm-generic/bitops/find.h>
290 #include <asm-generic/bitops/fls64.h>
291 #include <asm-generic/bitops/sched.h>
292 #include <asm-generic/bitops/hweight.h>
294 #include <asm-generic/bitops/le.h>
295 #include <asm-generic/bitops/ext2-atomic.h>
297 #endif /* __KERNEL__ */