1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __ASM_ARM_WORD_AT_A_TIME_H
3 #define __ASM_ARM_WORD_AT_A_TIME_H
8 * Little-endian word-at-a-time zero byte handling.
9 * Heavily based on the x86 algorithm.
11 #include <linux/kernel.h>
13 struct word_at_a_time
{
14 const unsigned long one_bits
, high_bits
;
17 #define WORD_AT_A_TIME_CONSTANTS { REPEAT_BYTE(0x01), REPEAT_BYTE(0x80) }
19 static inline unsigned long has_zero(unsigned long a
, unsigned long *bits
,
20 const struct word_at_a_time
*c
)
22 unsigned long mask
= ((a
- c
->one_bits
) & ~a
) & c
->high_bits
;
27 #define prep_zero_mask(a, bits, c) (bits)
29 static inline unsigned long create_zero_mask(unsigned long bits
)
31 bits
= (bits
- 1) & ~bits
;
35 static inline unsigned long find_zero(unsigned long mask
)
39 #if __LINUX_ARM_ARCH__ >= 5
40 /* We have clz available. */
43 /* (000000 0000ff 00ffff ffffff) -> ( 1 1 2 3 ) */
44 ret
= (0x0ff0001 + mask
) >> 23;
45 /* Fix the 1 for 00 case */
52 #define zero_bytemask(mask) (mask)
55 #include <asm-generic/word-at-a-time.h>
58 #ifdef CONFIG_DCACHE_WORD_ACCESS
61 * Load an unaligned word from kernel space.
63 * In the (very unlikely) case of the word being a page-crosser
64 * and the next page not being mapped, take the exception and
65 * return zeroes in the non-existing part.
67 static inline unsigned long load_unaligned_zeropad(const void *addr
)
69 unsigned long ret
, offset
;
71 /* Load word from unaligned pointer addr */
75 " .pushsection .text.fixup,\"ax\"\n"
77 "3: and %1, %2, #0x3\n"
88 " .pushsection __ex_table,\"a\"\n"
92 : "=&r" (ret
), "=&r" (offset
)
93 : "r" (addr
), "Qo" (*(unsigned long *)addr
));
98 #endif /* DCACHE_WORD_ACCESS */
99 #endif /* __ASM_ARM_WORD_AT_A_TIME_H */