blob: aa4e883431c1af43252576a6032a4d2686de6f0a [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _PARISC_BITOPS_H
3#define _PARISC_BITOPS_H
4
Jiri Slaby06245172007-10-18 23:40:26 -07005#ifndef _LINUX_BITOPS_H
6#error only <linux/bitops.h> can be included directly
7#endif
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/compiler.h>
Helge Deller2ad5d522017-01-28 11:52:02 +010010#include <asm/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <asm/byteorder.h>
Peter Zijlstrae4a65e92014-03-13 19:00:36 +010012#include <asm/barrier.h>
Arun Sharma600634972011-07-26 16:09:06 -070013#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Grant Grundlera366064c2005-10-21 22:45:22 -040015/* See http://marc.theaimsgroup.com/?t=108826637900003 for discussion
16 * on use of volatile and __*_bit() (set/clear/change):
17 * *_bit() want use of volatile.
18 * __*_bit() are "relaxed" and don't use spinlock or volatile.
19 */
20
21static __inline__ void set_bit(int nr, volatile unsigned long * addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070022{
Helge Deller208151b2020-06-14 10:54:10 +020023 unsigned long mask = BIT_MASK(nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 unsigned long flags;
25
Helge Deller208151b2020-06-14 10:54:10 +020026 addr += BIT_WORD(nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 _atomic_spin_lock_irqsave(addr, flags);
28 *addr |= mask;
29 _atomic_spin_unlock_irqrestore(addr, flags);
30}
31
Grant Grundlera366064c2005-10-21 22:45:22 -040032static __inline__ void clear_bit(int nr, volatile unsigned long * addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033{
Helge Deller208151b2020-06-14 10:54:10 +020034 unsigned long mask = BIT_MASK(nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 unsigned long flags;
36
Helge Deller208151b2020-06-14 10:54:10 +020037 addr += BIT_WORD(nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 _atomic_spin_lock_irqsave(addr, flags);
Helge Deller208151b2020-06-14 10:54:10 +020039 *addr &= ~mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 _atomic_spin_unlock_irqrestore(addr, flags);
41}
42
Grant Grundlera366064c2005-10-21 22:45:22 -040043static __inline__ void change_bit(int nr, volatile unsigned long * addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
Helge Deller208151b2020-06-14 10:54:10 +020045 unsigned long mask = BIT_MASK(nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 unsigned long flags;
47
Helge Deller208151b2020-06-14 10:54:10 +020048 addr += BIT_WORD(nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 _atomic_spin_lock_irqsave(addr, flags);
50 *addr ^= mask;
51 _atomic_spin_unlock_irqrestore(addr, flags);
52}
53
Grant Grundlera366064c2005-10-21 22:45:22 -040054static __inline__ int test_and_set_bit(int nr, volatile unsigned long * addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
Helge Deller208151b2020-06-14 10:54:10 +020056 unsigned long mask = BIT_MASK(nr);
Matthew Wilcoxaf5917f2006-12-14 09:00:25 -070057 unsigned long old;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 unsigned long flags;
Matthew Wilcoxaf5917f2006-12-14 09:00:25 -070059 int set;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Helge Deller208151b2020-06-14 10:54:10 +020061 addr += BIT_WORD(nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 _atomic_spin_lock_irqsave(addr, flags);
Matthew Wilcoxaf5917f2006-12-14 09:00:25 -070063 old = *addr;
64 set = (old & mask) ? 1 : 0;
65 if (!set)
66 *addr = old | mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 _atomic_spin_unlock_irqrestore(addr, flags);
68
Matthew Wilcoxaf5917f2006-12-14 09:00:25 -070069 return set;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
71
Grant Grundlera366064c2005-10-21 22:45:22 -040072static __inline__ int test_and_clear_bit(int nr, volatile unsigned long * addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
Helge Deller208151b2020-06-14 10:54:10 +020074 unsigned long mask = BIT_MASK(nr);
Matthew Wilcoxaf5917f2006-12-14 09:00:25 -070075 unsigned long old;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 unsigned long flags;
Matthew Wilcoxaf5917f2006-12-14 09:00:25 -070077 int set;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Helge Deller208151b2020-06-14 10:54:10 +020079 addr += BIT_WORD(nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 _atomic_spin_lock_irqsave(addr, flags);
Matthew Wilcoxaf5917f2006-12-14 09:00:25 -070081 old = *addr;
82 set = (old & mask) ? 1 : 0;
83 if (set)
84 *addr = old & ~mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 _atomic_spin_unlock_irqrestore(addr, flags);
86
Matthew Wilcoxaf5917f2006-12-14 09:00:25 -070087 return set;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Grant Grundlera366064c2005-10-21 22:45:22 -040090static __inline__ int test_and_change_bit(int nr, volatile unsigned long * addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Helge Deller208151b2020-06-14 10:54:10 +020092 unsigned long mask = BIT_MASK(nr);
Grant Grundlera366064c2005-10-21 22:45:22 -040093 unsigned long oldbit;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 unsigned long flags;
95
Helge Deller208151b2020-06-14 10:54:10 +020096 addr += BIT_WORD(nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 _atomic_spin_lock_irqsave(addr, flags);
Grant Grundlera366064c2005-10-21 22:45:22 -040098 oldbit = *addr;
99 *addr = oldbit ^ mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 _atomic_spin_unlock_irqrestore(addr, flags);
101
Grant Grundlera366064c2005-10-21 22:45:22 -0400102 return (oldbit & mask) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
104
Akinobu Mita59e18a22006-03-26 01:39:31 -0800105#include <asm-generic/bitops/non-atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107#ifdef __KERNEL__
108
109/**
110 * __ffs - find first bit in word. returns 0 to "BITS_PER_LONG-1".
111 * @word: The word to search
112 *
113 * __ffs() return is undefined if no bit is set.
114 *
115 * 32-bit fast __ffs by LaMont Jones "lamont At hp com".
116 * 64-bit enhancement by Grant Grundler "grundler At parisc-linux org".
117 * (with help from willy/jejb to get the semantics right)
118 *
119 * This algorithm avoids branches by making use of nullification.
120 * One side effect of "extr" instructions is it sets PSW[N] bit.
121 * How PSW[N] (nullify next insn) gets set is determined by the
122 * "condition" field (eg "<>" or "TR" below) in the extr* insn.
123 * Only the 1st and one of either the 2cd or 3rd insn will get executed.
124 * Each set of 3 insn will get executed in 2 cycles on PA8x00 vs 16 or so
125 * cycles for each mispredicted branch.
126 */
127
128static __inline__ unsigned long __ffs(unsigned long x)
129{
130 unsigned long ret;
131
132 __asm__(
Helge Deller513e7ec2007-01-28 15:09:20 +0100133#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 " ldi 63,%1\n"
135 " extrd,u,*<> %0,63,32,%%r0\n"
136 " extrd,u,*TR %0,31,32,%0\n" /* move top 32-bits down */
137 " addi -32,%1,%1\n"
138#else
139 " ldi 31,%1\n"
140#endif
141 " extru,<> %0,31,16,%%r0\n"
142 " extru,TR %0,15,16,%0\n" /* xxxx0000 -> 0000xxxx */
143 " addi -16,%1,%1\n"
144 " extru,<> %0,31,8,%%r0\n"
145 " extru,TR %0,23,8,%0\n" /* 0000xx00 -> 000000xx */
146 " addi -8,%1,%1\n"
147 " extru,<> %0,31,4,%%r0\n"
148 " extru,TR %0,27,4,%0\n" /* 000000x0 -> 0000000x */
149 " addi -4,%1,%1\n"
150 " extru,<> %0,31,2,%%r0\n"
151 " extru,TR %0,29,2,%0\n" /* 0000000y, 1100b -> 0011b */
152 " addi -2,%1,%1\n"
153 " extru,= %0,31,1,%%r0\n" /* check last bit */
154 " addi -1,%1,%1\n"
155 : "+r" (x), "=r" (ret) );
156 return ret;
157}
158
Akinobu Mita59e18a22006-03-26 01:39:31 -0800159#include <asm-generic/bitops/ffz.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161/*
162 * ffs: find first bit set. returns 1 to BITS_PER_LONG or 0 (if none set)
163 * This is defined the same way as the libc and compiler builtin
164 * ffs routines, therefore differs in spirit from the above ffz (man ffs).
165 */
166static __inline__ int ffs(int x)
167{
168 return x ? (__ffs((unsigned long)x) + 1) : 0;
169}
170
171/*
172 * fls: find last (most significant) bit set.
173 * fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
174 */
175
Matthew Wilcox3fc25792019-01-03 15:26:41 -0800176static __inline__ int fls(unsigned int x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
178 int ret;
179 if (!x)
180 return 0;
181
182 __asm__(
183 " ldi 1,%1\n"
184 " extru,<> %0,15,16,%%r0\n"
185 " zdep,TR %0,15,16,%0\n" /* xxxx0000 */
186 " addi 16,%1,%1\n"
187 " extru,<> %0,7,8,%%r0\n"
188 " zdep,TR %0,23,24,%0\n" /* xx000000 */
189 " addi 8,%1,%1\n"
190 " extru,<> %0,3,4,%%r0\n"
191 " zdep,TR %0,27,28,%0\n" /* x0000000 */
192 " addi 4,%1,%1\n"
193 " extru,<> %0,1,2,%%r0\n"
194 " zdep,TR %0,29,30,%0\n" /* y0000000 (y&3 = 0) */
195 " addi 2,%1,%1\n"
196 " extru,= %0,0,1,%%r0\n"
197 " addi 1,%1,%1\n" /* if y & 8, add 1 */
198 : "+r" (x), "=r" (ret) );
199
200 return ret;
201}
202
Alexander van Heukelum56a6b1e2008-03-15 18:31:49 +0100203#include <asm-generic/bitops/__fls.h>
Akinobu Mita59e18a22006-03-26 01:39:31 -0800204#include <asm-generic/bitops/fls64.h>
205#include <asm-generic/bitops/hweight.h>
Nick Piggin26333572007-10-18 03:06:39 -0700206#include <asm-generic/bitops/lock.h>
Akinobu Mita59e18a22006-03-26 01:39:31 -0800207#include <asm-generic/bitops/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209#endif /* __KERNEL__ */
210
Akinobu Mita59e18a22006-03-26 01:39:31 -0800211#include <asm-generic/bitops/find.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213#ifdef __KERNEL__
Akinobu Mita59e18a22006-03-26 01:39:31 -0800214
Akinobu Mita861b5ae2011-03-23 16:42:02 -0700215#include <asm-generic/bitops/le.h>
Akinobu Mita148817b2011-07-26 16:09:04 -0700216#include <asm-generic/bitops/ext2-atomic-setbit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218#endif /* __KERNEL__ */
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220#endif /* _PARISC_BITOPS_H */