blob: 1b6f547cb6bd153f429d4c88808d6400cf84e71f [file] [log] [blame]
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +01001#ifndef _ASM_X86_BITOPS_H
2#define _ASM_X86_BITOPS_H
3
4/*
5 * Copyright 1992, Linus Torvalds.
6 */
7
8#ifndef _LINUX_BITOPS_H
9#error only <linux/bitops.h> can be included directly
10#endif
11
12#include <linux/compiler.h>
13#include <asm/alternative.h>
14
15/*
16 * These have to be done with inline assembly: that way the bit-setting
17 * is guaranteed to be atomic. All bit operations return 0 if the bit
18 * was cleared before the operation and != 0 if it was not.
19 *
20 * bit 0 is the LSB of addr; bit 32 is the LSB of (addr+1).
21 */
22
23#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 1)
24/* Technically wrong, but this avoids compilation errors on some gcc
25 versions. */
Joe Perches286275c2008-03-23 01:01:45 -070026#define ADDR "=m" (*(volatile long *)addr)
27#define BIT_ADDR "=m" (((volatile int *)addr)[nr >> 5])
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +010028#else
29#define ADDR "+m" (*(volatile long *) addr)
Joe Perches286275c2008-03-23 01:01:45 -070030#define BIT_ADDR "+m" (((volatile int *)addr)[nr >> 5])
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +010031#endif
Joe Perches286275c2008-03-23 01:01:45 -070032#define BASE_ADDR "m" (*(volatile int *)addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +010033
34/**
35 * set_bit - Atomically set a bit in memory
36 * @nr: the bit to set
37 * @addr: the address to start counting from
38 *
39 * This function is atomic and may not be reordered. See __set_bit()
40 * if you do not require the atomic guarantees.
41 *
42 * Note: there are no guarantees that this function will not be reordered
43 * on non x86 architectures, so if you are writing portable code,
44 * make sure not to rely on its reordering guarantees.
45 *
46 * Note that @nr may be almost arbitrarily large; this function is not
47 * restricted to acting on a single-word quantity.
48 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +010049static inline void set_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +010050{
Joe Perches286275c2008-03-23 01:01:45 -070051 asm volatile(LOCK_PREFIX "bts %1,%0" : ADDR : "Ir" (nr) : "memory");
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +010052}
53
54/**
55 * __set_bit - Set a bit in memory
56 * @nr: the bit to set
57 * @addr: the address to start counting from
58 *
59 * Unlike set_bit(), this function is non-atomic and may be reordered.
60 * If it's called on the same region of memory simultaneously, the effect
61 * may be that only one operation succeeds.
62 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +010063static inline void __set_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +010064{
65 asm volatile("bts %1,%0"
66 : ADDR
67 : "Ir" (nr) : "memory");
68}
69
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +010070/**
71 * clear_bit - Clears a bit in memory
72 * @nr: Bit to clear
73 * @addr: Address to start counting from
74 *
75 * clear_bit() is atomic and may not be reordered. However, it does
76 * not contain a memory barrier, so if it is used for locking purposes,
77 * you should call smp_mb__before_clear_bit() and/or smp_mb__after_clear_bit()
78 * in order to ensure changes are visible on other processors.
79 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +010080static inline void clear_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +010081{
Joe Perches286275c2008-03-23 01:01:45 -070082 asm volatile(LOCK_PREFIX "btr %1,%2" : BIT_ADDR : "Ir" (nr), BASE_ADDR);
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +010083}
84
85/*
86 * clear_bit_unlock - Clears a bit in memory
87 * @nr: Bit to clear
88 * @addr: Address to start counting from
89 *
90 * clear_bit() is atomic and implies release semantics before the memory
91 * operation. It can be used for an unlock.
92 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +010093static inline void clear_bit_unlock(unsigned nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +010094{
95 barrier();
96 clear_bit(nr, addr);
97}
98
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +010099static inline void __clear_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100100{
Jan Beulich709f7442008-03-13 09:08:51 +0000101 asm volatile("btr %1,%2" : BIT_ADDR : "Ir" (nr), BASE_ADDR);
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100102}
103
104/*
105 * __clear_bit_unlock - Clears a bit in memory
106 * @nr: Bit to clear
107 * @addr: Address to start counting from
108 *
109 * __clear_bit() is non-atomic and implies release semantics before the memory
110 * operation. It can be used for an unlock if no other CPUs can concurrently
111 * modify other bits in the word.
112 *
113 * No memory barrier is required here, because x86 cannot reorder stores past
114 * older loads. Same principle as spin_unlock.
115 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100116static inline void __clear_bit_unlock(unsigned nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100117{
118 barrier();
119 __clear_bit(nr, addr);
120}
121
122#define smp_mb__before_clear_bit() barrier()
123#define smp_mb__after_clear_bit() barrier()
124
125/**
126 * __change_bit - Toggle a bit in memory
127 * @nr: the bit to change
128 * @addr: the address to start counting from
129 *
130 * Unlike change_bit(), this function is non-atomic and may be reordered.
131 * If it's called on the same region of memory simultaneously, the effect
132 * may be that only one operation succeeds.
133 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100134static inline void __change_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100135{
Jan Beulich709f7442008-03-13 09:08:51 +0000136 asm volatile("btc %1,%2" : BIT_ADDR : "Ir" (nr), BASE_ADDR);
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100137}
138
139/**
140 * change_bit - Toggle a bit in memory
141 * @nr: Bit to change
142 * @addr: Address to start counting from
143 *
144 * change_bit() is atomic and may not be reordered.
145 * Note that @nr may be almost arbitrarily large; this function is not
146 * restricted to acting on a single-word quantity.
147 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100148static inline void change_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100149{
Joe Perches286275c2008-03-23 01:01:45 -0700150 asm volatile(LOCK_PREFIX "btc %1,%2" : BIT_ADDR : "Ir" (nr), BASE_ADDR);
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100151}
152
153/**
154 * test_and_set_bit - Set a bit and return its old value
155 * @nr: Bit to set
156 * @addr: Address to count from
157 *
158 * This operation is atomic and cannot be reordered.
159 * It also implies a memory barrier.
160 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100161static inline int test_and_set_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100162{
163 int oldbit;
164
165 asm volatile(LOCK_PREFIX "bts %2,%1\n\t"
Joe Perches286275c2008-03-23 01:01:45 -0700166 "sbb %0,%0" : "=r" (oldbit), ADDR : "Ir" (nr) : "memory");
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100167
168 return oldbit;
169}
170
171/**
172 * test_and_set_bit_lock - Set a bit and return its old value for lock
173 * @nr: Bit to set
174 * @addr: Address to count from
175 *
176 * This is the same as test_and_set_bit on x86.
177 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100178static inline int test_and_set_bit_lock(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100179{
180 return test_and_set_bit(nr, addr);
181}
182
183/**
184 * __test_and_set_bit - Set a bit and return its old value
185 * @nr: Bit to set
186 * @addr: Address to count from
187 *
188 * This operation is non-atomic and can be reordered.
189 * If two examples of this operation race, one can appear to succeed
190 * but actually fail. You must protect multiple accesses with a lock.
191 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100192static inline int __test_and_set_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100193{
194 int oldbit;
195
Jan Beulich709f7442008-03-13 09:08:51 +0000196 asm volatile("bts %2,%3\n\t"
197 "sbb %0,%0"
Joe Perches286275c2008-03-23 01:01:45 -0700198 : "=r" (oldbit), BIT_ADDR : "Ir" (nr), BASE_ADDR);
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100199 return oldbit;
200}
201
202/**
203 * test_and_clear_bit - Clear a bit and return its old value
204 * @nr: Bit to clear
205 * @addr: Address to count from
206 *
207 * This operation is atomic and cannot be reordered.
208 * It also implies a memory barrier.
209 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100210static inline int test_and_clear_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100211{
212 int oldbit;
213
214 asm volatile(LOCK_PREFIX "btr %2,%1\n\t"
215 "sbb %0,%0"
Joe Perches286275c2008-03-23 01:01:45 -0700216 : "=r" (oldbit), ADDR : "Ir" (nr) : "memory");
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100217
218 return oldbit;
219}
220
221/**
222 * __test_and_clear_bit - Clear a bit and return its old value
223 * @nr: Bit to clear
224 * @addr: Address to count from
225 *
226 * This operation is non-atomic and can be reordered.
227 * If two examples of this operation race, one can appear to succeed
228 * but actually fail. You must protect multiple accesses with a lock.
229 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100230static inline int __test_and_clear_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100231{
232 int oldbit;
233
Jan Beulich709f7442008-03-13 09:08:51 +0000234 asm volatile("btr %2,%3\n\t"
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100235 "sbb %0,%0"
Joe Perches286275c2008-03-23 01:01:45 -0700236 : "=r" (oldbit), BIT_ADDR : "Ir" (nr), BASE_ADDR);
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100237 return oldbit;
238}
239
240/* WARNING: non atomic and it can be reordered! */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100241static inline int __test_and_change_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100242{
243 int oldbit;
244
Jan Beulich709f7442008-03-13 09:08:51 +0000245 asm volatile("btc %2,%3\n\t"
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100246 "sbb %0,%0"
Joe Perches286275c2008-03-23 01:01:45 -0700247 : "=r" (oldbit), BIT_ADDR : "Ir" (nr), BASE_ADDR);
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100248
249 return oldbit;
250}
251
252/**
253 * test_and_change_bit - Change a bit and return its old value
254 * @nr: Bit to change
255 * @addr: Address to count from
256 *
257 * This operation is atomic and cannot be reordered.
258 * It also implies a memory barrier.
259 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100260static inline int test_and_change_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100261{
262 int oldbit;
263
264 asm volatile(LOCK_PREFIX "btc %2,%1\n\t"
265 "sbb %0,%0"
Joe Perches286275c2008-03-23 01:01:45 -0700266 : "=r" (oldbit), ADDR : "Ir" (nr) : "memory");
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100267
268 return oldbit;
269}
270
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100271static inline int constant_test_bit(int nr, const volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100272{
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100273 return ((1UL << (nr % BITS_PER_LONG)) &
274 (((unsigned long *)addr)[nr / BITS_PER_LONG])) != 0;
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100275}
276
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100277static inline int variable_test_bit(int nr, volatile const void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100278{
279 int oldbit;
280
Jan Beulich709f7442008-03-13 09:08:51 +0000281 asm volatile("bt %2,%3\n\t"
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100282 "sbb %0,%0"
283 : "=r" (oldbit)
Jan Beulich709f7442008-03-13 09:08:51 +0000284 : "m" (((volatile const int *)addr)[nr >> 5]),
285 "Ir" (nr), BASE_ADDR);
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100286
287 return oldbit;
288}
289
290#if 0 /* Fool kernel-doc since it doesn't do macros yet */
291/**
292 * test_bit - Determine whether a bit is set
293 * @nr: bit number to test
294 * @addr: Address to start counting from
295 */
296static int test_bit(int nr, const volatile unsigned long *addr);
297#endif
298
299#define test_bit(nr,addr) \
300 (__builtin_constant_p(nr) ? \
301 constant_test_bit((nr),(addr)) : \
302 variable_test_bit((nr),(addr)))
303
Jan Beulich709f7442008-03-13 09:08:51 +0000304#undef BASE_ADDR
305#undef BIT_ADDR
Alexander van Heukelum12d9c842008-03-15 13:04:42 +0100306/**
307 * __ffs - find first set bit in word
308 * @word: The word to search
309 *
310 * Undefined if no bit exists, so code should check against 0 first.
311 */
312static inline unsigned long __ffs(unsigned long word)
313{
314 __asm__("bsf %1,%0"
315 :"=r" (word)
316 :"rm" (word));
317 return word;
318}
319
320/**
321 * ffz - find first zero bit in word
322 * @word: The word to search
323 *
324 * Undefined if no zero exists, so code should check against ~0UL first.
325 */
326static inline unsigned long ffz(unsigned long word)
327{
328 __asm__("bsf %1,%0"
329 :"=r" (word)
330 :"r" (~word));
331 return word;
332}
333
334/*
335 * __fls: find last set bit in word
336 * @word: The word to search
337 *
338 * Undefined if no zero exists, so code should check against ~0UL first.
339 */
340static inline unsigned long __fls(unsigned long word)
341{
342 __asm__("bsr %1,%0"
343 :"=r" (word)
344 :"rm" (word));
345 return word;
346}
347
348#ifdef __KERNEL__
349/**
350 * ffs - find first set bit in word
351 * @x: the word to search
352 *
353 * This is defined the same way as the libc and compiler builtin ffs
354 * routines, therefore differs in spirit from the other bitops.
355 *
356 * ffs(value) returns 0 if value is 0 or the position of the first
357 * set bit if value is nonzero. The first (least significant) bit
358 * is at position 1.
359 */
360static inline int ffs(int x)
361{
362 int r;
363#ifdef CONFIG_X86_CMOV
364 __asm__("bsfl %1,%0\n\t"
365 "cmovzl %2,%0"
366 : "=r" (r) : "rm" (x), "r" (-1));
367#else
368 __asm__("bsfl %1,%0\n\t"
369 "jnz 1f\n\t"
370 "movl $-1,%0\n"
371 "1:" : "=r" (r) : "rm" (x));
372#endif
373 return r + 1;
374}
375
376/**
377 * fls - find last set bit in word
378 * @x: the word to search
379 *
380 * This is defined in a similar way as the libc and compiler builtin
381 * ffs, but returns the position of the most significant set bit.
382 *
383 * fls(value) returns 0 if value is 0 or the position of the last
384 * set bit if value is nonzero. The last (most significant) bit is
385 * at position 32.
386 */
387static inline int fls(int x)
388{
389 int r;
390#ifdef CONFIG_X86_CMOV
391 __asm__("bsrl %1,%0\n\t"
392 "cmovzl %2,%0"
393 : "=&r" (r) : "rm" (x), "rm" (-1));
394#else
395 __asm__("bsrl %1,%0\n\t"
396 "jnz 1f\n\t"
397 "movl $-1,%0\n"
398 "1:" : "=r" (r) : "rm" (x));
399#endif
400 return r + 1;
401}
402#endif /* __KERNEL__ */
403
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100404#undef ADDR
405
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200406#ifdef CONFIG_X86_32
407# include "bitops_32.h"
408#else
409# include "bitops_64.h"
410#endif
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100411
412#endif /* _ASM_X86_BITOPS_H */