2002-11-03 00:24:07 +00:00
|
|
|
/*
|
|
|
|
* Copyright 1995, Russell King.
|
|
|
|
* Various bits and pieces copyrights include:
|
|
|
|
* Linus Torvalds (test_bit).
|
|
|
|
*
|
|
|
|
* bit 0 is the LSB of addr; bit 32 is the LSB of (addr+1).
|
|
|
|
*
|
|
|
|
* Please note that the code in this file should never be included
|
|
|
|
* from user space. Many of these are not implemented in assembler
|
|
|
|
* since they would be too costly. Also, they require priviledged
|
|
|
|
* instructions (which are not available from user mode) to ensure
|
|
|
|
* that they are atomic.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ASM_ARM_BITOPS_H
|
|
|
|
#define __ASM_ARM_BITOPS_H
|
|
|
|
|
2018-06-28 19:25:52 +00:00
|
|
|
#include <asm-generic/bitops/__ffs.h>
|
2020-05-10 17:40:13 +00:00
|
|
|
#include <asm-generic/bitops/__fls.h>
|
|
|
|
#include <asm-generic/bitops/fls.h>
|
|
|
|
#include <asm-generic/bitops/fls64.h>
|
2018-06-28 19:25:52 +00:00
|
|
|
|
2002-11-03 00:24:07 +00:00
|
|
|
#ifdef __KERNEL__
|
|
|
|
|
2020-05-10 17:40:13 +00:00
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
#include <linux/bitops.h>
|
|
|
|
#endif
|
2014-06-10 13:16:14 +00:00
|
|
|
#include <asm/proc-armv/system.h>
|
2009-08-24 07:10:16 +00:00
|
|
|
|
2002-11-03 00:24:07 +00:00
|
|
|
#define smp_mb__before_clear_bit() do { } while (0)
|
|
|
|
#define smp_mb__after_clear_bit() do { } while (0)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Function prototypes to keep gcc -Wall happy.
|
|
|
|
*/
|
|
|
|
extern void set_bit(int nr, volatile void * addr);
|
|
|
|
|
|
|
|
extern void clear_bit(int nr, volatile void * addr);
|
|
|
|
|
|
|
|
extern void change_bit(int nr, volatile void * addr);
|
|
|
|
|
|
|
|
static inline void __change_bit(int nr, volatile void *addr)
|
|
|
|
{
|
2009-08-24 07:10:03 +00:00
|
|
|
unsigned long mask = BIT_MASK(nr);
|
|
|
|
unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
|
|
|
|
|
|
|
|
*p ^= mask;
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int __test_and_set_bit(int nr, volatile void *addr)
|
|
|
|
{
|
2009-08-24 07:10:03 +00:00
|
|
|
unsigned long mask = BIT_MASK(nr);
|
|
|
|
unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
|
|
|
|
unsigned long old = *p;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2009-08-24 07:10:03 +00:00
|
|
|
*p = old | mask;
|
|
|
|
return (old & mask) != 0;
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|
|
|
|
|
2009-08-24 07:10:16 +00:00
|
|
|
static inline int test_and_set_bit(int nr, volatile void * addr)
|
|
|
|
{
|
arm, ubifs: fix gcc5.x compiler warning
compiling U-Boot for openrd_base_defconfig with
gcc 5.x shows the following warning:
CC fs/ubifs/super.o
In file included from fs/ubifs/ubifs.h:35:0,
from fs/ubifs/super.c:37:
fs/ubifs/super.c: In function 'atomic_inc':
./arch/arm/include/asm/atomic.h:55:2: warning: 'flags' is used uninitialized in this function [-Wuninitialized]
local_irq_save(flags);
^
fs/ubifs/super.c: In function 'atomic_dec':
./arch/arm/include/asm/atomic.h:64:2: warning: 'flags' is used uninitialized in this function [-Wuninitialized]
local_irq_save(flags);
^
CC fs/ubifs/sb.o
[...]
CC fs/ubifs/lpt.o
In file included from include/linux/bitops.h:123:0,
from include/common.h:20,
from include/ubi_uboot.h:17,
from fs/ubifs/ubifs.h:37,
from fs/ubifs/lpt.c:35:
fs/ubifs/lpt.c: In function 'test_and_set_bit':
./arch/arm/include/asm/bitops.h:57:2: warning: 'flags' is used uninitialized in this function [-Wuninitialized]
local_irq_save(flags);
^
CC fs/ubifs/lpt_commit.o
In file included from include/linux/bitops.h:123:0,
from include/common.h:20,
from include/ubi_uboot.h:17,
from fs/ubifs/ubifs.h:37,
from fs/ubifs/lpt_commit.c:26:
fs/ubifs/lpt_commit.c: In function 'test_and_set_bit':
./arch/arm/include/asm/bitops.h:57:2: warning: 'flags' is used uninitialized in this function [-Wuninitialized]
local_irq_save(flags);
^
CC fs/ubifs/scan.o
CC fs/ubifs/lprops.o
CC fs/ubifs/tnc.o
In file included from include/linux/bitops.h:123:0,
from include/common.h:20,
from include/ubi_uboot.h:17,
from fs/ubifs/ubifs.h:37,
from fs/ubifs/tnc.c:30:
fs/ubifs/tnc.c: In function 'test_and_set_bit':
./arch/arm/include/asm/bitops.h:57:2: warning: 'flags' is used uninitialized in this function [-Wuninitialized]
local_irq_save(flags);
^
CC fs/ubifs/tnc_misc.o
Fix it.
Signed-off-by: Heiko Schocher <hs@denx.de>
2015-11-30 07:47:42 +00:00
|
|
|
unsigned long flags = 0;
|
2009-08-24 07:10:16 +00:00
|
|
|
int out;
|
|
|
|
|
|
|
|
local_irq_save(flags);
|
|
|
|
out = __test_and_set_bit(nr, addr);
|
|
|
|
local_irq_restore(flags);
|
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
static inline int __test_and_clear_bit(int nr, volatile void *addr)
|
|
|
|
{
|
2009-08-24 07:10:03 +00:00
|
|
|
unsigned long mask = BIT_MASK(nr);
|
|
|
|
unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
|
|
|
|
unsigned long old = *p;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2009-08-24 07:10:03 +00:00
|
|
|
*p = old & ~mask;
|
|
|
|
return (old & mask) != 0;
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|
|
|
|
|
2009-08-24 07:10:16 +00:00
|
|
|
static inline int test_and_clear_bit(int nr, volatile void * addr)
|
|
|
|
{
|
arm, ubifs: fix gcc5.x compiler warning
compiling U-Boot for openrd_base_defconfig with
gcc 5.x shows the following warning:
CC fs/ubifs/super.o
In file included from fs/ubifs/ubifs.h:35:0,
from fs/ubifs/super.c:37:
fs/ubifs/super.c: In function 'atomic_inc':
./arch/arm/include/asm/atomic.h:55:2: warning: 'flags' is used uninitialized in this function [-Wuninitialized]
local_irq_save(flags);
^
fs/ubifs/super.c: In function 'atomic_dec':
./arch/arm/include/asm/atomic.h:64:2: warning: 'flags' is used uninitialized in this function [-Wuninitialized]
local_irq_save(flags);
^
CC fs/ubifs/sb.o
[...]
CC fs/ubifs/lpt.o
In file included from include/linux/bitops.h:123:0,
from include/common.h:20,
from include/ubi_uboot.h:17,
from fs/ubifs/ubifs.h:37,
from fs/ubifs/lpt.c:35:
fs/ubifs/lpt.c: In function 'test_and_set_bit':
./arch/arm/include/asm/bitops.h:57:2: warning: 'flags' is used uninitialized in this function [-Wuninitialized]
local_irq_save(flags);
^
CC fs/ubifs/lpt_commit.o
In file included from include/linux/bitops.h:123:0,
from include/common.h:20,
from include/ubi_uboot.h:17,
from fs/ubifs/ubifs.h:37,
from fs/ubifs/lpt_commit.c:26:
fs/ubifs/lpt_commit.c: In function 'test_and_set_bit':
./arch/arm/include/asm/bitops.h:57:2: warning: 'flags' is used uninitialized in this function [-Wuninitialized]
local_irq_save(flags);
^
CC fs/ubifs/scan.o
CC fs/ubifs/lprops.o
CC fs/ubifs/tnc.o
In file included from include/linux/bitops.h:123:0,
from include/common.h:20,
from include/ubi_uboot.h:17,
from fs/ubifs/ubifs.h:37,
from fs/ubifs/tnc.c:30:
fs/ubifs/tnc.c: In function 'test_and_set_bit':
./arch/arm/include/asm/bitops.h:57:2: warning: 'flags' is used uninitialized in this function [-Wuninitialized]
local_irq_save(flags);
^
CC fs/ubifs/tnc_misc.o
Fix it.
Signed-off-by: Heiko Schocher <hs@denx.de>
2015-11-30 07:47:42 +00:00
|
|
|
unsigned long flags = 0;
|
2009-08-24 07:10:16 +00:00
|
|
|
int out;
|
|
|
|
|
|
|
|
local_irq_save(flags);
|
|
|
|
out = __test_and_clear_bit(nr, addr);
|
|
|
|
local_irq_restore(flags);
|
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2002-11-03 00:24:07 +00:00
|
|
|
extern int test_and_change_bit(int nr, volatile void * addr);
|
|
|
|
|
|
|
|
static inline int __test_and_change_bit(int nr, volatile void *addr)
|
|
|
|
{
|
2009-08-24 07:10:03 +00:00
|
|
|
unsigned long mask = BIT_MASK(nr);
|
|
|
|
unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
|
|
|
|
unsigned long old = *p;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2009-08-24 07:10:03 +00:00
|
|
|
*p = old ^ mask;
|
|
|
|
return (old & mask) != 0;
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This routine doesn't need to be atomic.
|
|
|
|
*/
|
|
|
|
static inline int test_bit(int nr, const void * addr)
|
|
|
|
{
|
|
|
|
return ((unsigned char *) addr)[nr >> 3] & (1U << (nr & 7));
|
|
|
|
}
|
|
|
|
|
2011-07-05 04:38:51 +00:00
|
|
|
static inline int __ilog2(unsigned int x)
|
|
|
|
{
|
|
|
|
return generic_fls(x) - 1;
|
|
|
|
}
|
|
|
|
|
2018-06-28 19:25:52 +00:00
|
|
|
#define ffz(x) __ffs(~(x))
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2015-02-05 16:24:46 +00:00
|
|
|
static inline int find_next_zero_bit(void *addr, int size, int offset)
|
|
|
|
{
|
2018-06-28 19:25:52 +00:00
|
|
|
unsigned long *p = ((unsigned long *)addr) + (offset / BITS_PER_LONG);
|
|
|
|
unsigned long result = offset & ~(BITS_PER_LONG - 1);
|
2015-02-05 16:24:46 +00:00
|
|
|
unsigned long tmp;
|
|
|
|
|
|
|
|
if (offset >= size)
|
|
|
|
return size;
|
|
|
|
size -= result;
|
2018-06-28 19:25:52 +00:00
|
|
|
offset &= (BITS_PER_LONG - 1);
|
2015-02-05 16:24:46 +00:00
|
|
|
if (offset) {
|
|
|
|
tmp = *(p++);
|
2018-06-28 19:25:52 +00:00
|
|
|
tmp |= ~0UL >> (BITS_PER_LONG - offset);
|
|
|
|
if (size < BITS_PER_LONG)
|
2015-02-05 16:24:46 +00:00
|
|
|
goto found_first;
|
|
|
|
if (~tmp)
|
|
|
|
goto found_middle;
|
2018-06-28 19:25:52 +00:00
|
|
|
size -= BITS_PER_LONG;
|
|
|
|
result += BITS_PER_LONG;
|
2015-02-05 16:24:46 +00:00
|
|
|
}
|
2018-06-28 19:25:52 +00:00
|
|
|
while (size & ~(BITS_PER_LONG - 1)) {
|
2015-02-05 16:24:46 +00:00
|
|
|
tmp = *(p++);
|
|
|
|
if (~tmp)
|
|
|
|
goto found_middle;
|
2018-06-28 19:25:52 +00:00
|
|
|
result += BITS_PER_LONG;
|
|
|
|
size -= BITS_PER_LONG;
|
2015-02-05 16:24:46 +00:00
|
|
|
}
|
|
|
|
if (!size)
|
|
|
|
return result;
|
|
|
|
tmp = *p;
|
|
|
|
|
|
|
|
found_first:
|
2018-04-28 00:58:49 +00:00
|
|
|
tmp |= ~0UL << size;
|
2015-02-05 16:24:46 +00:00
|
|
|
found_middle:
|
|
|
|
return result + ffz(tmp);
|
|
|
|
}
|
|
|
|
|
2002-11-03 00:24:07 +00:00
|
|
|
/*
|
|
|
|
* hweightN: returns the hamming weight (i.e. the number
|
|
|
|
* of bits set) of a N-bit word
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define hweight32(x) generic_hweight32(x)
|
|
|
|
#define hweight16(x) generic_hweight16(x)
|
|
|
|
#define hweight8(x) generic_hweight8(x)
|
|
|
|
|
2015-02-05 16:24:46 +00:00
|
|
|
#define find_first_zero_bit(addr, size) \
|
|
|
|
find_next_zero_bit((addr), (size), 0)
|
|
|
|
|
2002-11-03 00:24:07 +00:00
|
|
|
#define ext2_set_bit test_and_set_bit
|
|
|
|
#define ext2_clear_bit test_and_clear_bit
|
|
|
|
#define ext2_test_bit test_bit
|
|
|
|
#define ext2_find_first_zero_bit find_first_zero_bit
|
|
|
|
#define ext2_find_next_zero_bit find_next_zero_bit
|
|
|
|
|
|
|
|
/* Bitmap functions for the minix filesystem. */
|
|
|
|
#define minix_test_and_set_bit(nr,addr) test_and_set_bit(nr,addr)
|
|
|
|
#define minix_set_bit(nr,addr) set_bit(nr,addr)
|
|
|
|
#define minix_test_and_clear_bit(nr,addr) test_and_clear_bit(nr,addr)
|
|
|
|
#define minix_test_bit(nr,addr) test_bit(nr,addr)
|
|
|
|
#define minix_find_first_zero_bit(addr,size) find_first_zero_bit(addr,size)
|
|
|
|
|
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
|
|
|
|
#endif /* _ARM_BITOPS_H */
|