1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _PARISC_BITOPS_H
3 #define _PARISC_BITOPS_H
5 #ifndef _LINUX_BITOPS_H
6 #error only <linux/bitops.h> can be included directly
9 #include <linux/compiler.h>
10 #include <asm/types.h>
11 #include <asm/byteorder.h>
12 #include <asm/barrier.h>
13 #include <linux/atomic.h>
16 * HP-PARISC specific bit operations
17 * for a detailed description of the functions please refer
18 * to include/asm-i386/bitops.h or kerneldoc
21 #if __BITS_PER_LONG == 64
22 #define SHIFT_PER_LONG 6
24 #define SHIFT_PER_LONG 5
27 #define CHOP_SHIFTCOUNT(x) (((unsigned long) (x)) & (BITS_PER_LONG - 1))
30 /* See http://marc.theaimsgroup.com/?t=108826637900003 for discussion
31 * on use of volatile and __*_bit() (set/clear/change):
32 * *_bit() want use of volatile.
33 * __*_bit() are "relaxed" and don't use spinlock or volatile.
36 static __inline__
void set_bit(int nr
, volatile unsigned long * addr
)
38 unsigned long mask
= 1UL << CHOP_SHIFTCOUNT(nr
);
41 addr
+= (nr
>> SHIFT_PER_LONG
);
42 _atomic_spin_lock_irqsave(addr
, flags
);
44 _atomic_spin_unlock_irqrestore(addr
, flags
);
47 static __inline__
void clear_bit(int nr
, volatile unsigned long * addr
)
49 unsigned long mask
= ~(1UL << CHOP_SHIFTCOUNT(nr
));
52 addr
+= (nr
>> SHIFT_PER_LONG
);
53 _atomic_spin_lock_irqsave(addr
, flags
);
55 _atomic_spin_unlock_irqrestore(addr
, flags
);
58 static __inline__
void change_bit(int nr
, volatile unsigned long * addr
)
60 unsigned long mask
= 1UL << CHOP_SHIFTCOUNT(nr
);
63 addr
+= (nr
>> SHIFT_PER_LONG
);
64 _atomic_spin_lock_irqsave(addr
, flags
);
66 _atomic_spin_unlock_irqrestore(addr
, flags
);
69 static __inline__
int test_and_set_bit(int nr
, volatile unsigned long * addr
)
71 unsigned long mask
= 1UL << CHOP_SHIFTCOUNT(nr
);
76 addr
+= (nr
>> SHIFT_PER_LONG
);
77 _atomic_spin_lock_irqsave(addr
, flags
);
79 set
= (old
& mask
) ? 1 : 0;
82 _atomic_spin_unlock_irqrestore(addr
, flags
);
87 static __inline__
int test_and_clear_bit(int nr
, volatile unsigned long * addr
)
89 unsigned long mask
= 1UL << CHOP_SHIFTCOUNT(nr
);
94 addr
+= (nr
>> SHIFT_PER_LONG
);
95 _atomic_spin_lock_irqsave(addr
, flags
);
97 set
= (old
& mask
) ? 1 : 0;
100 _atomic_spin_unlock_irqrestore(addr
, flags
);
105 static __inline__
int test_and_change_bit(int nr
, volatile unsigned long * addr
)
107 unsigned long mask
= 1UL << CHOP_SHIFTCOUNT(nr
);
108 unsigned long oldbit
;
111 addr
+= (nr
>> SHIFT_PER_LONG
);
112 _atomic_spin_lock_irqsave(addr
, flags
);
114 *addr
= oldbit
^ mask
;
115 _atomic_spin_unlock_irqrestore(addr
, flags
);
117 return (oldbit
& mask
) ? 1 : 0;
120 #include <asm-generic/bitops/non-atomic.h>
125 * __ffs - find first bit in word. returns 0 to "BITS_PER_LONG-1".
126 * @word: The word to search
128 * __ffs() return is undefined if no bit is set.
130 * 32-bit fast __ffs by LaMont Jones "lamont At hp com".
131 * 64-bit enhancement by Grant Grundler "grundler At parisc-linux org".
132 * (with help from willy/jejb to get the semantics right)
134 * This algorithm avoids branches by making use of nullification.
135 * One side effect of "extr" instructions is it sets PSW[N] bit.
136 * How PSW[N] (nullify next insn) gets set is determined by the
137 * "condition" field (eg "<>" or "TR" below) in the extr* insn.
138 * Only the 1st and one of either the 2cd or 3rd insn will get executed.
139 * Each set of 3 insn will get executed in 2 cycles on PA8x00 vs 16 or so
140 * cycles for each mispredicted branch.
143 static __inline__
unsigned long __ffs(unsigned long x
)
150 " extrd,u,*<> %0,63,32,%%r0\n"
151 " extrd,u,*TR %0,31,32,%0\n" /* move top 32-bits down */
156 " extru,<> %0,31,16,%%r0\n"
157 " extru,TR %0,15,16,%0\n" /* xxxx0000 -> 0000xxxx */
159 " extru,<> %0,31,8,%%r0\n"
160 " extru,TR %0,23,8,%0\n" /* 0000xx00 -> 000000xx */
162 " extru,<> %0,31,4,%%r0\n"
163 " extru,TR %0,27,4,%0\n" /* 000000x0 -> 0000000x */
165 " extru,<> %0,31,2,%%r0\n"
166 " extru,TR %0,29,2,%0\n" /* 0000000y, 1100b -> 0011b */
168 " extru,= %0,31,1,%%r0\n" /* check last bit */
170 : "+r" (x
), "=r" (ret
) );
174 #include <asm-generic/bitops/ffz.h>
177 * ffs: find first bit set. returns 1 to BITS_PER_LONG or 0 (if none set)
178 * This is defined the same way as the libc and compiler builtin
179 * ffs routines, therefore differs in spirit from the above ffz (man ffs).
181 static __inline__
int ffs(int x
)
183 return x
? (__ffs((unsigned long)x
) + 1) : 0;
187 * fls: find last (most significant) bit set.
188 * fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
191 static __inline__
int fls(unsigned int x
)
199 " extru,<> %0,15,16,%%r0\n"
200 " zdep,TR %0,15,16,%0\n" /* xxxx0000 */
202 " extru,<> %0,7,8,%%r0\n"
203 " zdep,TR %0,23,24,%0\n" /* xx000000 */
205 " extru,<> %0,3,4,%%r0\n"
206 " zdep,TR %0,27,28,%0\n" /* x0000000 */
208 " extru,<> %0,1,2,%%r0\n"
209 " zdep,TR %0,29,30,%0\n" /* y0000000 (y&3 = 0) */
211 " extru,= %0,0,1,%%r0\n"
212 " addi 1,%1,%1\n" /* if y & 8, add 1 */
213 : "+r" (x
), "=r" (ret
) );
218 #include <asm-generic/bitops/__fls.h>
219 #include <asm-generic/bitops/fls64.h>
220 #include <asm-generic/bitops/hweight.h>
221 #include <asm-generic/bitops/lock.h>
222 #include <asm-generic/bitops/sched.h>
224 #endif /* __KERNEL__ */
226 #include <asm-generic/bitops/find.h>
230 #include <asm-generic/bitops/le.h>
231 #include <asm-generic/bitops/ext2-atomic-setbit.h>
233 #endif /* __KERNEL__ */
235 #endif /* _PARISC_BITOPS_H */