blob: b81a4d4d333787e4c9e8b69cb74fd190f09c4e69 [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{
Joe Perchesf19dcf42008-03-23 01:03:07 -070065 asm volatile("bts %1,%0" : ADDR : "Ir" (nr) : "memory");
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +010066}
67
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +010068/**
69 * clear_bit - Clears a bit in memory
70 * @nr: Bit to clear
71 * @addr: Address to start counting from
72 *
73 * clear_bit() is atomic and may not be reordered. However, it does
74 * not contain a memory barrier, so if it is used for locking purposes,
75 * you should call smp_mb__before_clear_bit() and/or smp_mb__after_clear_bit()
76 * in order to ensure changes are visible on other processors.
77 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +010078static inline void clear_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +010079{
Joe Perches286275c2008-03-23 01:01:45 -070080 asm volatile(LOCK_PREFIX "btr %1,%2" : BIT_ADDR : "Ir" (nr), BASE_ADDR);
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +010081}
82
83/*
84 * clear_bit_unlock - Clears a bit in memory
85 * @nr: Bit to clear
86 * @addr: Address to start counting from
87 *
88 * clear_bit() is atomic and implies release semantics before the memory
89 * operation. It can be used for an unlock.
90 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +010091static inline void clear_bit_unlock(unsigned nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +010092{
93 barrier();
94 clear_bit(nr, addr);
95}
96
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +010097static inline void __clear_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +010098{
Jan Beulich709f7442008-03-13 09:08:51 +000099 asm volatile("btr %1,%2" : BIT_ADDR : "Ir" (nr), BASE_ADDR);
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100100}
101
102/*
103 * __clear_bit_unlock - Clears a bit in memory
104 * @nr: Bit to clear
105 * @addr: Address to start counting from
106 *
107 * __clear_bit() is non-atomic and implies release semantics before the memory
108 * operation. It can be used for an unlock if no other CPUs can concurrently
109 * modify other bits in the word.
110 *
111 * No memory barrier is required here, because x86 cannot reorder stores past
112 * older loads. Same principle as spin_unlock.
113 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100114static inline void __clear_bit_unlock(unsigned nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100115{
116 barrier();
117 __clear_bit(nr, addr);
118}
119
120#define smp_mb__before_clear_bit() barrier()
121#define smp_mb__after_clear_bit() barrier()
122
123/**
124 * __change_bit - Toggle a bit in memory
125 * @nr: the bit to change
126 * @addr: the address to start counting from
127 *
128 * Unlike change_bit(), this function is non-atomic and may be reordered.
129 * If it's called on the same region of memory simultaneously, the effect
130 * may be that only one operation succeeds.
131 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100132static inline void __change_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100133{
Jan Beulich709f7442008-03-13 09:08:51 +0000134 asm volatile("btc %1,%2" : BIT_ADDR : "Ir" (nr), BASE_ADDR);
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100135}
136
137/**
138 * change_bit - Toggle a bit in memory
139 * @nr: Bit to change
140 * @addr: Address to start counting from
141 *
142 * change_bit() is atomic and may not be reordered.
143 * Note that @nr may be almost arbitrarily large; this function is not
144 * restricted to acting on a single-word quantity.
145 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100146static inline void change_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100147{
Joe Perches286275c2008-03-23 01:01:45 -0700148 asm volatile(LOCK_PREFIX "btc %1,%2" : BIT_ADDR : "Ir" (nr), BASE_ADDR);
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100149}
150
151/**
152 * test_and_set_bit - Set a bit and return its old value
153 * @nr: Bit to set
154 * @addr: Address to count from
155 *
156 * This operation is atomic and cannot be reordered.
157 * It also implies a memory barrier.
158 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100159static inline int test_and_set_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100160{
161 int oldbit;
162
163 asm volatile(LOCK_PREFIX "bts %2,%1\n\t"
Joe Perches286275c2008-03-23 01:01:45 -0700164 "sbb %0,%0" : "=r" (oldbit), ADDR : "Ir" (nr) : "memory");
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100165
166 return oldbit;
167}
168
169/**
170 * test_and_set_bit_lock - Set a bit and return its old value for lock
171 * @nr: Bit to set
172 * @addr: Address to count from
173 *
174 * This is the same as test_and_set_bit on x86.
175 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100176static inline int test_and_set_bit_lock(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100177{
178 return test_and_set_bit(nr, addr);
179}
180
181/**
182 * __test_and_set_bit - Set a bit and return its old value
183 * @nr: Bit to set
184 * @addr: Address to count from
185 *
186 * This operation is non-atomic and can be reordered.
187 * If two examples of this operation race, one can appear to succeed
188 * but actually fail. You must protect multiple accesses with a lock.
189 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100190static inline int __test_and_set_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100191{
192 int oldbit;
193
Jan Beulich709f7442008-03-13 09:08:51 +0000194 asm volatile("bts %2,%3\n\t"
195 "sbb %0,%0"
Joe Perches286275c2008-03-23 01:01:45 -0700196 : "=r" (oldbit), BIT_ADDR : "Ir" (nr), BASE_ADDR);
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100197 return oldbit;
198}
199
200/**
201 * test_and_clear_bit - Clear a bit and return its old value
202 * @nr: Bit to clear
203 * @addr: Address to count from
204 *
205 * This operation is atomic and cannot be reordered.
206 * It also implies a memory barrier.
207 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100208static inline int test_and_clear_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100209{
210 int oldbit;
211
212 asm volatile(LOCK_PREFIX "btr %2,%1\n\t"
213 "sbb %0,%0"
Joe Perches286275c2008-03-23 01:01:45 -0700214 : "=r" (oldbit), ADDR : "Ir" (nr) : "memory");
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100215
216 return oldbit;
217}
218
219/**
220 * __test_and_clear_bit - Clear a bit and return its old value
221 * @nr: Bit to clear
222 * @addr: Address to count from
223 *
224 * This operation is non-atomic and can be reordered.
225 * If two examples of this operation race, one can appear to succeed
226 * but actually fail. You must protect multiple accesses with a lock.
227 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100228static inline int __test_and_clear_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100229{
230 int oldbit;
231
Jan Beulich709f7442008-03-13 09:08:51 +0000232 asm volatile("btr %2,%3\n\t"
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100233 "sbb %0,%0"
Joe Perches286275c2008-03-23 01:01:45 -0700234 : "=r" (oldbit), BIT_ADDR : "Ir" (nr), BASE_ADDR);
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100235 return oldbit;
236}
237
238/* WARNING: non atomic and it can be reordered! */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100239static inline int __test_and_change_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100240{
241 int oldbit;
242
Jan Beulich709f7442008-03-13 09:08:51 +0000243 asm volatile("btc %2,%3\n\t"
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100244 "sbb %0,%0"
Joe Perches286275c2008-03-23 01:01:45 -0700245 : "=r" (oldbit), BIT_ADDR : "Ir" (nr), BASE_ADDR);
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100246
247 return oldbit;
248}
249
250/**
251 * test_and_change_bit - Change a bit and return its old value
252 * @nr: Bit to change
253 * @addr: Address to count from
254 *
255 * This operation is atomic and cannot be reordered.
256 * It also implies a memory barrier.
257 */
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100258static inline int test_and_change_bit(int nr, volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100259{
260 int oldbit;
261
262 asm volatile(LOCK_PREFIX "btc %2,%1\n\t"
263 "sbb %0,%0"
Joe Perches286275c2008-03-23 01:01:45 -0700264 : "=r" (oldbit), ADDR : "Ir" (nr) : "memory");
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100265
266 return oldbit;
267}
268
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100269static inline int constant_test_bit(int nr, const volatile void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100270{
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100271 return ((1UL << (nr % BITS_PER_LONG)) &
272 (((unsigned long *)addr)[nr / BITS_PER_LONG])) != 0;
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100273}
274
Glauber de Oliveira Costa26996dd2008-01-30 13:31:31 +0100275static inline int variable_test_bit(int nr, volatile const void *addr)
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100276{
277 int oldbit;
278
Jan Beulich709f7442008-03-13 09:08:51 +0000279 asm volatile("bt %2,%3\n\t"
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100280 "sbb %0,%0"
281 : "=r" (oldbit)
Jan Beulich709f7442008-03-13 09:08:51 +0000282 : "m" (((volatile const int *)addr)[nr >> 5]),
283 "Ir" (nr), BASE_ADDR);
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100284
285 return oldbit;
286}
287
288#if 0 /* Fool kernel-doc since it doesn't do macros yet */
289/**
290 * test_bit - Determine whether a bit is set
291 * @nr: bit number to test
292 * @addr: Address to start counting from
293 */
294static int test_bit(int nr, const volatile unsigned long *addr);
295#endif
296
Joe Perchesf19dcf42008-03-23 01:03:07 -0700297#define test_bit(nr, addr) \
298 (__builtin_constant_p((nr)) \
299 ? constant_test_bit((nr), (addr)) \
300 : variable_test_bit((nr), (addr)))
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100301
Alexander van Heukelum12d9c842008-03-15 13:04:42 +0100302/**
303 * __ffs - find first set bit in word
304 * @word: The word to search
305 *
306 * Undefined if no bit exists, so code should check against 0 first.
307 */
308static inline unsigned long __ffs(unsigned long word)
309{
Joe Perchesf19dcf42008-03-23 01:03:07 -0700310 asm("bsf %1,%0"
311 : "=r" (word)
312 : "rm" (word));
Alexander van Heukelum12d9c842008-03-15 13:04:42 +0100313 return word;
314}
315
316/**
317 * ffz - find first zero bit in word
318 * @word: The word to search
319 *
320 * Undefined if no zero exists, so code should check against ~0UL first.
321 */
322static inline unsigned long ffz(unsigned long word)
323{
Joe Perchesf19dcf42008-03-23 01:03:07 -0700324 asm("bsf %1,%0"
325 : "=r" (word)
326 : "r" (~word));
Alexander van Heukelum12d9c842008-03-15 13:04:42 +0100327 return word;
328}
329
330/*
331 * __fls: find last set bit in word
332 * @word: The word to search
333 *
334 * Undefined if no zero exists, so code should check against ~0UL first.
335 */
336static inline unsigned long __fls(unsigned long word)
337{
Joe Perchesf19dcf42008-03-23 01:03:07 -0700338 asm("bsr %1,%0"
339 : "=r" (word)
340 : "rm" (word));
Alexander van Heukelum12d9c842008-03-15 13:04:42 +0100341 return word;
342}
343
344#ifdef __KERNEL__
345/**
346 * ffs - find first set bit in word
347 * @x: the word to search
348 *
349 * This is defined the same way as the libc and compiler builtin ffs
350 * routines, therefore differs in spirit from the other bitops.
351 *
352 * ffs(value) returns 0 if value is 0 or the position of the first
353 * set bit if value is nonzero. The first (least significant) bit
354 * is at position 1.
355 */
356static inline int ffs(int x)
357{
358 int r;
359#ifdef CONFIG_X86_CMOV
Joe Perchesf19dcf42008-03-23 01:03:07 -0700360 asm("bsfl %1,%0\n\t"
361 "cmovzl %2,%0"
362 : "=r" (r) : "rm" (x), "r" (-1));
Alexander van Heukelum12d9c842008-03-15 13:04:42 +0100363#else
Joe Perchesf19dcf42008-03-23 01:03:07 -0700364 asm("bsfl %1,%0\n\t"
365 "jnz 1f\n\t"
366 "movl $-1,%0\n"
367 "1:" : "=r" (r) : "rm" (x));
Alexander van Heukelum12d9c842008-03-15 13:04:42 +0100368#endif
369 return r + 1;
370}
371
372/**
373 * fls - find last set bit in word
374 * @x: the word to search
375 *
376 * This is defined in a similar way as the libc and compiler builtin
377 * ffs, but returns the position of the most significant set bit.
378 *
379 * fls(value) returns 0 if value is 0 or the position of the last
380 * set bit if value is nonzero. The last (most significant) bit is
381 * at position 32.
382 */
383static inline int fls(int x)
384{
385 int r;
386#ifdef CONFIG_X86_CMOV
Joe Perchesf19dcf42008-03-23 01:03:07 -0700387 asm("bsrl %1,%0\n\t"
388 "cmovzl %2,%0"
389 : "=&r" (r) : "rm" (x), "rm" (-1));
Alexander van Heukelum12d9c842008-03-15 13:04:42 +0100390#else
Joe Perchesf19dcf42008-03-23 01:03:07 -0700391 asm("bsrl %1,%0\n\t"
392 "jnz 1f\n\t"
393 "movl $-1,%0\n"
394 "1:" : "=r" (r) : "rm" (x));
Alexander van Heukelum12d9c842008-03-15 13:04:42 +0100395#endif
396 return r + 1;
397}
398#endif /* __KERNEL__ */
399
Joe Perchesf19dcf42008-03-23 01:03:07 -0700400#undef BASE_ADDR
401#undef BIT_ADDR
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100402#undef ADDR
403
Alexander van Heukelumd66462f2008-04-04 20:49:30 +0200404static inline void set_bit_string(unsigned long *bitmap,
405 unsigned long i, int len)
406{
407 unsigned long end = i + len;
408 while (i < end) {
409 __set_bit(i, bitmap);
410 i++;
411 }
412}
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100413
Alexander van Heukelumd66462f2008-04-04 20:49:30 +0200414#ifdef __KERNEL__
415
416#include <asm-generic/bitops/sched.h>
417
418#define ARCH_HAS_FAST_MULTIPLIER 1
419
420#include <asm-generic/bitops/hweight.h>
421
422#endif /* __KERNEL__ */
423
424#include <asm-generic/bitops/fls64.h>
425
426#ifdef __KERNEL__
427
428#include <asm-generic/bitops/ext2-non-atomic.h>
429
430#define ext2_set_bit_atomic(lock, nr, addr) \
431 test_and_set_bit((nr), (unsigned long *)(addr))
432#define ext2_clear_bit_atomic(lock, nr, addr) \
433 test_and_clear_bit((nr), (unsigned long *)(addr))
434
435#include <asm-generic/bitops/minix.h>
436
437#endif /* __KERNEL__ */
Jeremy Fitzhardinge1c54d772008-01-30 13:30:55 +0100438#endif /* _ASM_X86_BITOPS_H */