2019-06-04 11:11:33 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* linux/arch/arm/lib/findbit.S
|
|
|
|
*
|
|
|
|
* Copyright (C) 1995-2000 Russell King
|
|
|
|
*
|
|
|
|
* 16th March 2001 - John Ripley <jripley@sonicblue.com>
|
|
|
|
* Fixed so that "size" is an exclusive not an inclusive quantity.
|
|
|
|
* All users of these functions expect exclusive sizes, and may
|
|
|
|
* also call with zero size.
|
|
|
|
* Reworked by rmk.
|
|
|
|
*/
|
|
|
|
#include <linux/linkage.h>
|
|
|
|
#include <asm/assembler.h>
|
|
|
|
.text
|
|
|
|
|
2022-08-11 17:53:41 +03:00
|
|
|
.macro find_first, endian, set, name
|
|
|
|
ENTRY(_find_first_\name\()bit_\endian)
|
|
|
|
teq r1, #0
|
2005-04-17 02:20:36 +04:00
|
|
|
beq 3f
|
|
|
|
mov r2, #0
|
2009-07-24 15:32:57 +04:00
|
|
|
1:
|
2022-08-11 17:53:41 +03:00
|
|
|
.ifc \endian, be
|
|
|
|
eor r3, r2, #0x18
|
|
|
|
ARM( ldrb r3, [r0, r3, lsr #3] )
|
|
|
|
THUMB( lsr r3, #3 )
|
|
|
|
THUMB( ldrb r3, [r0, r3] )
|
|
|
|
.else
|
2009-07-24 15:32:57 +04:00
|
|
|
ARM( ldrb r3, [r0, r2, lsr #3] )
|
|
|
|
THUMB( lsr r3, r2, #3 )
|
|
|
|
THUMB( ldrb r3, [r0, r3] )
|
2022-08-11 17:53:41 +03:00
|
|
|
.endif
|
|
|
|
.ifeq \set
|
2005-04-17 02:20:36 +04:00
|
|
|
eors r3, r3, #0xff @ invert bits
|
2022-08-11 17:53:41 +03:00
|
|
|
.else
|
|
|
|
movs r3, r3
|
|
|
|
.endif
|
2005-11-12 00:51:49 +03:00
|
|
|
bne .L_found @ any now set - found zero bit
|
2005-04-17 02:20:36 +04:00
|
|
|
add r2, r2, #8 @ next bit pointer
|
|
|
|
2: cmp r2, r1 @ any more?
|
|
|
|
blo 1b
|
|
|
|
3: mov r0, r1 @ no free bits
|
2014-06-30 19:29:12 +04:00
|
|
|
ret lr
|
2022-08-11 17:53:41 +03:00
|
|
|
ENDPROC(_find_first_\name\()bit_\endian)
|
|
|
|
.endm
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2022-08-11 17:53:41 +03:00
|
|
|
.macro find_next, endian, set, name
|
|
|
|
ENTRY(_find_next_\name\()bit_\endian)
|
2022-07-27 01:51:48 +03:00
|
|
|
cmp r2, r1
|
|
|
|
bhs 3b
|
2005-04-17 02:20:36 +04:00
|
|
|
ands ip, r2, #7
|
|
|
|
beq 1b @ If new byte, goto old routine
|
2022-08-11 17:53:41 +03:00
|
|
|
.ifc \endian, be
|
|
|
|
eor r3, r2, #0x18
|
|
|
|
ARM( ldrb r3, [r0, r3, lsr #3] )
|
|
|
|
THUMB( lsr r3, #3 )
|
|
|
|
THUMB( ldrb r3, [r0, r3] )
|
|
|
|
.else
|
2009-07-24 15:32:57 +04:00
|
|
|
ARM( ldrb r3, [r0, r2, lsr #3] )
|
|
|
|
THUMB( lsr r3, r2, #3 )
|
|
|
|
THUMB( ldrb r3, [r0, r3] )
|
2022-08-11 17:53:41 +03:00
|
|
|
.endif
|
|
|
|
.ifeq \set
|
2005-04-17 02:20:36 +04:00
|
|
|
eor r3, r3, #0xff @ now looking for a 1 bit
|
2022-08-11 17:53:41 +03:00
|
|
|
.endif
|
2005-04-17 02:20:36 +04:00
|
|
|
movs r3, r3, lsr ip @ shift off unused bits
|
2005-11-12 00:51:49 +03:00
|
|
|
bne .L_found
|
2005-04-17 02:20:36 +04:00
|
|
|
orr r2, r2, #7 @ if zero, then no bits here
|
|
|
|
add r2, r2, #1 @ align bit pointer
|
|
|
|
b 2b @ loop for next bit
|
2022-08-11 17:53:41 +03:00
|
|
|
ENDPROC(_find_next_\name\()bit_\endian)
|
|
|
|
.endm
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2022-08-11 17:53:41 +03:00
|
|
|
.macro find_bit, endian, set, name
|
|
|
|
find_first \endian, \set, \name
|
|
|
|
find_next \endian, \set, \name
|
|
|
|
.endm
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2022-08-11 17:53:41 +03:00
|
|
|
/* _find_first_zero_bit_le and _find_next_zero_bit_le */
|
|
|
|
find_bit le, 0, zero_
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2022-08-11 17:53:41 +03:00
|
|
|
/* _find_first_bit_le and _find_next_bit_le */
|
|
|
|
find_bit le, 1
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2022-08-11 17:53:41 +03:00
|
|
|
#ifdef __ARMEB__
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2022-08-11 17:53:41 +03:00
|
|
|
/* _find_first_zero_bit_be and _find_next_zero_bit_be */
|
|
|
|
find_bit be, 0, zero_
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2022-08-11 17:53:41 +03:00
|
|
|
/* _find_first_bit_be and _find_next_bit_be */
|
|
|
|
find_bit be, 1
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* One or more bits in the LSB of r3 are assumed to be set.
|
|
|
|
*/
|
2005-11-12 00:51:49 +03:00
|
|
|
.L_found:
|
2022-07-29 18:10:49 +03:00
|
|
|
#if __LINUX_ARM_ARCH__ >= 7
|
|
|
|
rbit r3, r3 @ reverse bits
|
|
|
|
clz r3, r3 @ count high zero bits
|
|
|
|
add r0, r2, r3 @ add offset of first set bit
|
|
|
|
#elif __LINUX_ARM_ARCH__ >= 5
|
2010-11-24 02:21:37 +03:00
|
|
|
rsb r0, r3, #0
|
2022-07-29 18:12:25 +03:00
|
|
|
and r3, r3, r0 @ mask out lowest bit set
|
|
|
|
clz r3, r3 @ count high zero bits
|
|
|
|
rsb r3, r3, #31 @ offset of first set bit
|
|
|
|
add r0, r2, r3 @ add offset of first set bit
|
2005-04-17 02:20:36 +04:00
|
|
|
#else
|
|
|
|
tst r3, #0x0f
|
|
|
|
addeq r2, r2, #4
|
|
|
|
movne r3, r3, lsl #4
|
|
|
|
tst r3, #0x30
|
|
|
|
addeq r2, r2, #2
|
|
|
|
movne r3, r3, lsl #2
|
|
|
|
tst r3, #0x40
|
|
|
|
addeq r2, r2, #1
|
|
|
|
mov r0, r2
|
|
|
|
#endif
|
2010-11-24 02:21:37 +03:00
|
|
|
cmp r1, r0 @ Clamp to maxbit
|
|
|
|
movlo r0, r1
|
2014-06-30 19:29:12 +04:00
|
|
|
ret lr
|
2005-04-17 02:20:36 +04:00
|
|
|
|