blob: 899357a72ac4e15faab61c77a89ae20e34e9dcc5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
Ralf Baechle102fa152007-02-16 17:18:50 +00006 * Copyright (c) 1994 - 1997, 99, 2000, 06, 07 Ralf Baechle (ralf@linux-mips.org)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Copyright (c) 1999, 2000 Silicon Graphics, Inc.
8 */
9#ifndef _ASM_BITOPS_H
10#define _ASM_BITOPS_H
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/compiler.h>
Ralf Baechle4ffd8b32006-11-30 01:14:50 +000013#include <linux/irqflags.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/types.h>
Ralf Baechle0004a9d2006-10-31 03:45:07 +000015#include <asm/barrier.h>
Ralf Baechleec917c2c2005-10-07 16:58:15 +010016#include <asm/bug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/byteorder.h> /* sigh ... */
18#include <asm/cpu-features.h>
Ralf Baechle4ffd8b32006-11-30 01:14:50 +000019#include <asm/sgidefs.h>
20#include <asm/war.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Ralf Baechle49a89ef2007-10-11 23:46:15 +010022#if _MIPS_SZLONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#define SZLONG_LOG 5
24#define SZLONG_MASK 31UL
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +000025#define __LL "ll "
26#define __SC "sc "
Ralf Baechle102fa152007-02-16 17:18:50 +000027#define __INS "ins "
28#define __EXT "ext "
Ralf Baechle49a89ef2007-10-11 23:46:15 +010029#elif _MIPS_SZLONG == 64
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#define SZLONG_LOG 6
31#define SZLONG_MASK 63UL
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +000032#define __LL "lld "
33#define __SC "scd "
Ralf Baechle102fa152007-02-16 17:18:50 +000034#define __INS "dins "
35#define __EXT "dext "
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#endif
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038/*
39 * clear_bit() doesn't provide any barrier for the compiler.
40 */
Ralf Baechle17099b12007-07-14 13:24:05 +010041#define smp_mb__before_clear_bit() smp_llsc_mb()
42#define smp_mb__after_clear_bit() smp_llsc_mb()
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 * set_bit - Atomically set a bit in memory
46 * @nr: the bit to set
47 * @addr: the address to start counting from
48 *
49 * This function is atomic and may not be reordered. See __set_bit()
50 * if you do not require the atomic guarantees.
51 * Note that @nr may be almost arbitrarily large; this function is not
52 * restricted to acting on a single-word quantity.
53 */
54static inline void set_bit(unsigned long nr, volatile unsigned long *addr)
55{
56 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
Ralf Baechleb9611532007-03-05 00:56:15 +000057 unsigned short bit = nr & SZLONG_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 unsigned long temp;
59
60 if (cpu_has_llsc && R10000_LLSC_WAR) {
61 __asm__ __volatile__(
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +000062 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 "1: " __LL "%0, %1 # set_bit \n"
64 " or %0, %2 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +000065 " " __SC "%0, %1 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 " beqzl %0, 1b \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +000067 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 : "=&r" (temp), "=m" (*m)
Ralf Baechleb9611532007-03-05 00:56:15 +000069 : "ir" (1UL << bit), "m" (*m));
Ralf Baechle102fa152007-02-16 17:18:50 +000070#ifdef CONFIG_CPU_MIPSR2
Ralf Baechleb9611532007-03-05 00:56:15 +000071 } else if (__builtin_constant_p(bit)) {
Ralf Baechle102fa152007-02-16 17:18:50 +000072 __asm__ __volatile__(
73 "1: " __LL "%0, %1 # set_bit \n"
74 " " __INS "%0, %4, %2, 1 \n"
75 " " __SC "%0, %1 \n"
76 " beqz %0, 2f \n"
77 " .subsection 2 \n"
78 "2: b 1b \n"
79 " .previous \n"
80 : "=&r" (temp), "=m" (*m)
Ralf Baechleb9611532007-03-05 00:56:15 +000081 : "ir" (bit), "m" (*m), "r" (~0));
Ralf Baechle102fa152007-02-16 17:18:50 +000082#endif /* CONFIG_CPU_MIPSR2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 } else if (cpu_has_llsc) {
84 __asm__ __volatile__(
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +000085 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 "1: " __LL "%0, %1 # set_bit \n"
87 " or %0, %2 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +000088 " " __SC "%0, %1 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +010089 " beqz %0, 2f \n"
90 " .subsection 2 \n"
91 "2: b 1b \n"
92 " .previous \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +000093 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 : "=&r" (temp), "=m" (*m)
Ralf Baechleb9611532007-03-05 00:56:15 +000095 : "ir" (1UL << bit), "m" (*m));
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 } else {
97 volatile unsigned long *a = addr;
98 unsigned long mask;
Ralf Baechle4ffd8b32006-11-30 01:14:50 +000099 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101 a += nr >> SZLONG_LOG;
Ralf Baechleb9611532007-03-05 00:56:15 +0000102 mask = 1UL << bit;
Ralf Baechle49edd092007-03-16 16:10:36 +0000103 raw_local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 *a |= mask;
Ralf Baechle49edd092007-03-16 16:10:36 +0000105 raw_local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 }
107}
108
109/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 * clear_bit - Clears a bit in memory
111 * @nr: Bit to clear
112 * @addr: Address to start counting from
113 *
114 * clear_bit() is atomic and may not be reordered. However, it does
115 * not contain a memory barrier, so if it is used for locking purposes,
116 * you should call smp_mb__before_clear_bit() and/or smp_mb__after_clear_bit()
117 * in order to ensure changes are visible on other processors.
118 */
119static inline void clear_bit(unsigned long nr, volatile unsigned long *addr)
120{
121 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
Ralf Baechleb9611532007-03-05 00:56:15 +0000122 unsigned short bit = nr & SZLONG_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 unsigned long temp;
124
125 if (cpu_has_llsc && R10000_LLSC_WAR) {
126 __asm__ __volatile__(
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000127 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 "1: " __LL "%0, %1 # clear_bit \n"
129 " and %0, %2 \n"
130 " " __SC "%0, %1 \n"
131 " beqzl %0, 1b \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000132 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 : "=&r" (temp), "=m" (*m)
Ralf Baechleb9611532007-03-05 00:56:15 +0000134 : "ir" (~(1UL << bit)), "m" (*m));
Ralf Baechle102fa152007-02-16 17:18:50 +0000135#ifdef CONFIG_CPU_MIPSR2
Ralf Baechleb9611532007-03-05 00:56:15 +0000136 } else if (__builtin_constant_p(bit)) {
Ralf Baechle102fa152007-02-16 17:18:50 +0000137 __asm__ __volatile__(
138 "1: " __LL "%0, %1 # clear_bit \n"
139 " " __INS "%0, $0, %2, 1 \n"
140 " " __SC "%0, %1 \n"
141 " beqz %0, 2f \n"
142 " .subsection 2 \n"
143 "2: b 1b \n"
144 " .previous \n"
145 : "=&r" (temp), "=m" (*m)
Ralf Baechleb9611532007-03-05 00:56:15 +0000146 : "ir" (bit), "m" (*m));
Ralf Baechle102fa152007-02-16 17:18:50 +0000147#endif /* CONFIG_CPU_MIPSR2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 } else if (cpu_has_llsc) {
149 __asm__ __volatile__(
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000150 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 "1: " __LL "%0, %1 # clear_bit \n"
152 " and %0, %2 \n"
153 " " __SC "%0, %1 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100154 " beqz %0, 2f \n"
155 " .subsection 2 \n"
156 "2: b 1b \n"
157 " .previous \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000158 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 : "=&r" (temp), "=m" (*m)
Ralf Baechleb9611532007-03-05 00:56:15 +0000160 : "ir" (~(1UL << bit)), "m" (*m));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 } else {
162 volatile unsigned long *a = addr;
163 unsigned long mask;
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000164 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 a += nr >> SZLONG_LOG;
Ralf Baechleb9611532007-03-05 00:56:15 +0000167 mask = 1UL << bit;
Ralf Baechle49edd092007-03-16 16:10:36 +0000168 raw_local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 *a &= ~mask;
Ralf Baechle49edd092007-03-16 16:10:36 +0000170 raw_local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
172}
173
174/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * change_bit - Toggle a bit in memory
176 * @nr: Bit to change
177 * @addr: Address to start counting from
178 *
179 * change_bit() is atomic and may not be reordered.
180 * Note that @nr may be almost arbitrarily large; this function is not
181 * restricted to acting on a single-word quantity.
182 */
183static inline void change_bit(unsigned long nr, volatile unsigned long *addr)
184{
Ralf Baechleb9611532007-03-05 00:56:15 +0000185 unsigned short bit = nr & SZLONG_MASK;
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if (cpu_has_llsc && R10000_LLSC_WAR) {
188 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
189 unsigned long temp;
190
191 __asm__ __volatile__(
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000192 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 "1: " __LL "%0, %1 # change_bit \n"
194 " xor %0, %2 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000195 " " __SC "%0, %1 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 " beqzl %0, 1b \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000197 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 : "=&r" (temp), "=m" (*m)
Ralf Baechleb9611532007-03-05 00:56:15 +0000199 : "ir" (1UL << bit), "m" (*m));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 } else if (cpu_has_llsc) {
201 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
202 unsigned long temp;
203
204 __asm__ __volatile__(
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000205 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 "1: " __LL "%0, %1 # change_bit \n"
207 " xor %0, %2 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000208 " " __SC "%0, %1 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100209 " beqz %0, 2f \n"
210 " .subsection 2 \n"
211 "2: b 1b \n"
212 " .previous \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000213 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 : "=&r" (temp), "=m" (*m)
Ralf Baechleb9611532007-03-05 00:56:15 +0000215 : "ir" (1UL << bit), "m" (*m));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 } else {
217 volatile unsigned long *a = addr;
218 unsigned long mask;
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000219 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 a += nr >> SZLONG_LOG;
Ralf Baechleb9611532007-03-05 00:56:15 +0000222 mask = 1UL << bit;
Ralf Baechle49edd092007-03-16 16:10:36 +0000223 raw_local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 *a ^= mask;
Ralf Baechle49edd092007-03-16 16:10:36 +0000225 raw_local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227}
228
229/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 * test_and_set_bit - Set a bit and return its old value
231 * @nr: Bit to set
232 * @addr: Address to count from
233 *
234 * This operation is atomic and cannot be reordered.
235 * It also implies a memory barrier.
236 */
237static inline int test_and_set_bit(unsigned long nr,
238 volatile unsigned long *addr)
239{
Ralf Baechleb9611532007-03-05 00:56:15 +0000240 unsigned short bit = nr & SZLONG_MASK;
Ralf Baechleff72b7a2007-06-07 13:17:30 +0100241 unsigned long res;
Ralf Baechleb9611532007-03-05 00:56:15 +0000242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (cpu_has_llsc && R10000_LLSC_WAR) {
244 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
Ralf Baechleff72b7a2007-06-07 13:17:30 +0100245 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 __asm__ __volatile__(
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000248 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 "1: " __LL "%0, %1 # test_and_set_bit \n"
250 " or %2, %0, %3 \n"
251 " " __SC "%2, %1 \n"
252 " beqzl %2, 1b \n"
253 " and %2, %0, %3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000254 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 : "=&r" (temp), "=m" (*m), "=&r" (res)
Ralf Baechleb9611532007-03-05 00:56:15 +0000256 : "r" (1UL << bit), "m" (*m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 } else if (cpu_has_llsc) {
259 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
Ralf Baechleff72b7a2007-06-07 13:17:30 +0100260 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 __asm__ __volatile__(
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000263 " .set push \n"
264 " .set noreorder \n"
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000265 " .set mips3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000266 "1: " __LL "%0, %1 # test_and_set_bit \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 " or %2, %0, %3 \n"
268 " " __SC "%2, %1 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100269 " beqz %2, 2f \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 " and %2, %0, %3 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100271 " .subsection 2 \n"
272 "2: b 1b \n"
273 " nop \n"
274 " .previous \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000275 " .set pop \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 : "=&r" (temp), "=m" (*m), "=&r" (res)
Ralf Baechleb9611532007-03-05 00:56:15 +0000277 : "r" (1UL << bit), "m" (*m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 } else {
280 volatile unsigned long *a = addr;
281 unsigned long mask;
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000282 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 a += nr >> SZLONG_LOG;
Ralf Baechleb9611532007-03-05 00:56:15 +0000285 mask = 1UL << bit;
Ralf Baechle49edd092007-03-16 16:10:36 +0000286 raw_local_irq_save(flags);
Ralf Baechleff72b7a2007-06-07 13:17:30 +0100287 res = (mask & *a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 *a |= mask;
Ralf Baechle49edd092007-03-16 16:10:36 +0000289 raw_local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000291
Ralf Baechle17099b12007-07-14 13:24:05 +0100292 smp_llsc_mb();
Ralf Baechleff72b7a2007-06-07 13:17:30 +0100293
294 return res != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
297/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 * test_and_clear_bit - Clear a bit and return its old value
299 * @nr: Bit to clear
300 * @addr: Address to count from
301 *
302 * This operation is atomic and cannot be reordered.
303 * It also implies a memory barrier.
304 */
305static inline int test_and_clear_bit(unsigned long nr,
306 volatile unsigned long *addr)
307{
Ralf Baechleb9611532007-03-05 00:56:15 +0000308 unsigned short bit = nr & SZLONG_MASK;
Ralf Baechleff72b7a2007-06-07 13:17:30 +0100309 unsigned long res;
Ralf Baechleb9611532007-03-05 00:56:15 +0000310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 if (cpu_has_llsc && R10000_LLSC_WAR) {
312 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
Atsushi Nemoto8e09ffb2007-06-14 00:56:31 +0900313 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 __asm__ __volatile__(
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000316 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 "1: " __LL "%0, %1 # test_and_clear_bit \n"
318 " or %2, %0, %3 \n"
319 " xor %2, %3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000320 " " __SC "%2, %1 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 " beqzl %2, 1b \n"
322 " and %2, %0, %3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000323 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 : "=&r" (temp), "=m" (*m), "=&r" (res)
Ralf Baechleb9611532007-03-05 00:56:15 +0000325 : "r" (1UL << bit), "m" (*m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 : "memory");
Ralf Baechle102fa152007-02-16 17:18:50 +0000327#ifdef CONFIG_CPU_MIPSR2
328 } else if (__builtin_constant_p(nr)) {
329 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
Ralf Baechleff72b7a2007-06-07 13:17:30 +0100330 unsigned long temp;
Ralf Baechle102fa152007-02-16 17:18:50 +0000331
332 __asm__ __volatile__(
333 "1: " __LL "%0, %1 # test_and_clear_bit \n"
334 " " __EXT "%2, %0, %3, 1 \n"
335 " " __INS "%0, $0, %3, 1 \n"
336 " " __SC "%0, %1 \n"
337 " beqz %0, 2f \n"
338 " .subsection 2 \n"
339 "2: b 1b \n"
340 " .previous \n"
341 : "=&r" (temp), "=m" (*m), "=&r" (res)
Ralf Baechleb9611532007-03-05 00:56:15 +0000342 : "ri" (bit), "m" (*m)
Ralf Baechle102fa152007-02-16 17:18:50 +0000343 : "memory");
Ralf Baechle102fa152007-02-16 17:18:50 +0000344#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 } else if (cpu_has_llsc) {
346 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
Ralf Baechleff72b7a2007-06-07 13:17:30 +0100347 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 __asm__ __volatile__(
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000350 " .set push \n"
351 " .set noreorder \n"
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000352 " .set mips3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000353 "1: " __LL "%0, %1 # test_and_clear_bit \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 " or %2, %0, %3 \n"
355 " xor %2, %3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000356 " " __SC "%2, %1 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100357 " beqz %2, 2f \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 " and %2, %0, %3 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100359 " .subsection 2 \n"
360 "2: b 1b \n"
361 " nop \n"
362 " .previous \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000363 " .set pop \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 : "=&r" (temp), "=m" (*m), "=&r" (res)
Ralf Baechleb9611532007-03-05 00:56:15 +0000365 : "r" (1UL << bit), "m" (*m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 } else {
368 volatile unsigned long *a = addr;
369 unsigned long mask;
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000370 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372 a += nr >> SZLONG_LOG;
Ralf Baechleb9611532007-03-05 00:56:15 +0000373 mask = 1UL << bit;
Ralf Baechle49edd092007-03-16 16:10:36 +0000374 raw_local_irq_save(flags);
Ralf Baechleff72b7a2007-06-07 13:17:30 +0100375 res = (mask & *a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 *a &= ~mask;
Ralf Baechle49edd092007-03-16 16:10:36 +0000377 raw_local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000379
Ralf Baechle17099b12007-07-14 13:24:05 +0100380 smp_llsc_mb();
Ralf Baechleff72b7a2007-06-07 13:17:30 +0100381
382 return res != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
385/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 * test_and_change_bit - Change a bit and return its old value
387 * @nr: Bit to change
388 * @addr: Address to count from
389 *
390 * This operation is atomic and cannot be reordered.
391 * It also implies a memory barrier.
392 */
393static inline int test_and_change_bit(unsigned long nr,
394 volatile unsigned long *addr)
395{
Ralf Baechleb9611532007-03-05 00:56:15 +0000396 unsigned short bit = nr & SZLONG_MASK;
Ralf Baechleff72b7a2007-06-07 13:17:30 +0100397 unsigned long res;
Ralf Baechleb9611532007-03-05 00:56:15 +0000398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (cpu_has_llsc && R10000_LLSC_WAR) {
400 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
Ralf Baechleff72b7a2007-06-07 13:17:30 +0100401 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 __asm__ __volatile__(
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000404 " .set mips3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000405 "1: " __LL "%0, %1 # test_and_change_bit \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 " xor %2, %0, %3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000407 " " __SC "%2, %1 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 " beqzl %2, 1b \n"
409 " and %2, %0, %3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000410 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 : "=&r" (temp), "=m" (*m), "=&r" (res)
Ralf Baechleb9611532007-03-05 00:56:15 +0000412 : "r" (1UL << bit), "m" (*m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 } else if (cpu_has_llsc) {
415 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
Ralf Baechleff72b7a2007-06-07 13:17:30 +0100416 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 __asm__ __volatile__(
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000419 " .set push \n"
420 " .set noreorder \n"
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000421 " .set mips3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000422 "1: " __LL "%0, %1 # test_and_change_bit \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 " xor %2, %0, %3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000424 " " __SC "\t%2, %1 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100425 " beqz %2, 2f \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 " and %2, %0, %3 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100427 " .subsection 2 \n"
428 "2: b 1b \n"
429 " nop \n"
430 " .previous \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000431 " .set pop \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 : "=&r" (temp), "=m" (*m), "=&r" (res)
Ralf Baechleb9611532007-03-05 00:56:15 +0000433 : "r" (1UL << bit), "m" (*m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 } else {
436 volatile unsigned long *a = addr;
Ralf Baechleff72b7a2007-06-07 13:17:30 +0100437 unsigned long mask;
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000438 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 a += nr >> SZLONG_LOG;
Ralf Baechleb9611532007-03-05 00:56:15 +0000441 mask = 1UL << bit;
Ralf Baechle49edd092007-03-16 16:10:36 +0000442 raw_local_irq_save(flags);
Ralf Baechleff72b7a2007-06-07 13:17:30 +0100443 res = (mask & *a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 *a ^= mask;
Ralf Baechle49edd092007-03-16 16:10:36 +0000445 raw_local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000447
Ralf Baechle17099b12007-07-14 13:24:05 +0100448 smp_llsc_mb();
Ralf Baechleff72b7a2007-06-07 13:17:30 +0100449
450 return res != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
Akinobu Mita3c9ee7e2006-03-26 01:39:30 -0800453#include <asm-generic/bitops/non-atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Ralf Baechle65903262005-07-12 12:50:30 +0000455/*
456 * Return the bit position (0..63) of the most significant 1 bit in a word
457 * Returns -1 if no 1 bit exists
458 */
Ralf Baechleec917c2c2005-10-07 16:58:15 +0100459static inline int __ilog2(unsigned long x)
Ralf Baechle65903262005-07-12 12:50:30 +0000460{
461 int lz;
462
Ralf Baechleec917c2c2005-10-07 16:58:15 +0100463 if (sizeof(x) == 4) {
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100464 __asm__(
Ralf Baechleec917c2c2005-10-07 16:58:15 +0100465 " .set push \n"
466 " .set mips32 \n"
467 " clz %0, %1 \n"
468 " .set pop \n"
469 : "=r" (lz)
470 : "r" (x));
471
472 return 31 - lz;
473 }
474
475 BUG_ON(sizeof(x) != 8);
476
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100477 __asm__(
Ralf Baechle65903262005-07-12 12:50:30 +0000478 " .set push \n"
479 " .set mips64 \n"
480 " dclz %0, %1 \n"
481 " .set pop \n"
482 : "=r" (lz)
483 : "r" (x));
484
485 return 63 - lz;
486}
Ralf Baechle65903262005-07-12 12:50:30 +0000487
Akinobu Mita3c9ee7e2006-03-26 01:39:30 -0800488#if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64)
489
Ralf Baechle65903262005-07-12 12:50:30 +0000490/*
491 * __ffs - find first bit in word.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 * @word: The word to search
493 *
Ralf Baechle65903262005-07-12 12:50:30 +0000494 * Returns 0..SZLONG-1
495 * Undefined if no bit exists, so code should check against 0 first.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 */
Ralf Baechle65903262005-07-12 12:50:30 +0000497static inline unsigned long __ffs(unsigned long word)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
Ralf Baechle65903262005-07-12 12:50:30 +0000499 return __ilog2(word & -word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
502/*
Atsushi Nemotobc818242006-04-17 21:19:12 +0900503 * fls - find last bit set.
504 * @word: The word to search
505 *
506 * This is defined the same way as ffs.
507 * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
508 */
509static inline int fls(int word)
510{
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100511 __asm__("clz %0, %1" : "=r" (word) : "r" (word));
Atsushi Nemotobc818242006-04-17 21:19:12 +0900512
513 return 32 - word;
514}
515
516#if defined(CONFIG_64BIT) && defined(CONFIG_CPU_MIPS64)
517static inline int fls64(__u64 word)
518{
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100519 __asm__("dclz %0, %1" : "=r" (word) : "r" (word));
Atsushi Nemotobc818242006-04-17 21:19:12 +0900520
521 return 64 - word;
522}
523#else
524#include <asm-generic/bitops/fls64.h>
525#endif
526
527/*
Ralf Baechle65903262005-07-12 12:50:30 +0000528 * ffs - find first bit set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 * @word: The word to search
530 *
Atsushi Nemotobc818242006-04-17 21:19:12 +0900531 * This is defined the same way as
532 * the libc and compiler builtin ffs routines, therefore
533 * differs in spirit from the above ffz (man ffs).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 */
Atsushi Nemotobc818242006-04-17 21:19:12 +0900535static inline int ffs(int word)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Ralf Baechle65903262005-07-12 12:50:30 +0000537 if (!word)
538 return 0;
539
Atsushi Nemotobc818242006-04-17 21:19:12 +0900540 return fls(word & -word);
Ralf Baechle65903262005-07-12 12:50:30 +0000541}
Ralf Baechle2caf1902006-01-30 17:14:41 +0000542
Akinobu Mita3c9ee7e2006-03-26 01:39:30 -0800543#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Akinobu Mita3c9ee7e2006-03-26 01:39:30 -0800545#include <asm-generic/bitops/__ffs.h>
546#include <asm-generic/bitops/ffs.h>
Akinobu Mita3c9ee7e2006-03-26 01:39:30 -0800547#include <asm-generic/bitops/fls.h>
Atsushi Nemotobc818242006-04-17 21:19:12 +0900548#include <asm-generic/bitops/fls64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Akinobu Mita3c9ee7e2006-03-26 01:39:30 -0800550#endif /*defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Atsushi Nemotobc818242006-04-17 21:19:12 +0900552#include <asm-generic/bitops/ffz.h>
Akinobu Mita3c9ee7e2006-03-26 01:39:30 -0800553#include <asm-generic/bitops/find.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555#ifdef __KERNEL__
556
Akinobu Mita3c9ee7e2006-03-26 01:39:30 -0800557#include <asm-generic/bitops/sched.h>
558#include <asm-generic/bitops/hweight.h>
559#include <asm-generic/bitops/ext2-non-atomic.h>
560#include <asm-generic/bitops/ext2-atomic.h>
561#include <asm-generic/bitops/minix.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563#endif /* __KERNEL__ */
564
565#endif /* _ASM_BITOPS_H */