1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ARCH_MIPS_LOCAL_H
3 #define _ARCH_MIPS_LOCAL_H
5 #include <linux/percpu.h>
6 #include <linux/bitops.h>
7 #include <linux/atomic.h>
8 #include <asm/cmpxchg.h>
9 #include <asm/compiler.h>
17 #define LOCAL_INIT(i) { ATOMIC_LONG_INIT(i) }
19 #define local_read(l) atomic_long_read(&(l)->a)
20 #define local_set(l, i) atomic_long_set(&(l)->a, (i))
22 #define local_add(i, l) atomic_long_add((i), (&(l)->a))
23 #define local_sub(i, l) atomic_long_sub((i), (&(l)->a))
24 #define local_inc(l) atomic_long_inc(&(l)->a)
25 #define local_dec(l) atomic_long_dec(&(l)->a)
28 * Same as above, but return the result value
30 static __inline__
long local_add_return(long i
, local_t
* l
)
34 if (kernel_uses_llsc
&& R10000_LLSC_WAR
) {
39 "1:" __LL
"%1, %2 # local_add_return \n"
45 : "=&r" (result
), "=&r" (temp
), "=m" (l
->a
.counter
)
46 : "Ir" (i
), "m" (l
->a
.counter
)
48 } else if (kernel_uses_llsc
) {
52 " .set "MIPS_ISA_ARCH_LEVEL
" \n"
53 "1:" __LL
"%1, %2 # local_add_return \n"
59 : "=&r" (result
), "=&r" (temp
), "=m" (l
->a
.counter
)
60 : "Ir" (i
), "m" (l
->a
.counter
)
65 local_irq_save(flags
);
66 result
= l
->a
.counter
;
68 l
->a
.counter
= result
;
69 local_irq_restore(flags
);
75 static __inline__
long local_sub_return(long i
, local_t
* l
)
79 if (kernel_uses_llsc
&& R10000_LLSC_WAR
) {
84 "1:" __LL
"%1, %2 # local_sub_return \n"
90 : "=&r" (result
), "=&r" (temp
), "=m" (l
->a
.counter
)
91 : "Ir" (i
), "m" (l
->a
.counter
)
93 } else if (kernel_uses_llsc
) {
97 " .set "MIPS_ISA_ARCH_LEVEL
" \n"
98 "1:" __LL
"%1, %2 # local_sub_return \n"
102 " subu %0, %1, %3 \n"
104 : "=&r" (result
), "=&r" (temp
), "=m" (l
->a
.counter
)
105 : "Ir" (i
), "m" (l
->a
.counter
)
110 local_irq_save(flags
);
111 result
= l
->a
.counter
;
113 l
->a
.counter
= result
;
114 local_irq_restore(flags
);
120 #define local_cmpxchg(l, o, n) \
121 ((long)cmpxchg_local(&((l)->a.counter), (o), (n)))
122 #define local_xchg(l, n) (atomic_long_xchg((&(l)->a), (n)))
125 * local_add_unless - add unless the number is a given value
126 * @l: pointer of type local_t
127 * @a: the amount to add to l...
128 * @u: ...unless l is equal to u.
130 * Atomically adds @a to @l, so long as it was not @u.
131 * Returns non-zero if @l was not @u, and zero otherwise.
133 #define local_add_unless(l, a, u) \
137 while (c != (u) && (old = local_cmpxchg((l), c, c + (a))) != c) \
141 #define local_inc_not_zero(l) local_add_unless((l), 1, 0)
143 #define local_dec_return(l) local_sub_return(1, (l))
144 #define local_inc_return(l) local_add_return(1, (l))
147 * local_sub_and_test - subtract value from variable and test result
148 * @i: integer value to subtract
149 * @l: pointer of type local_t
151 * Atomically subtracts @i from @l and returns
152 * true if the result is zero, or false for all
155 #define local_sub_and_test(i, l) (local_sub_return((i), (l)) == 0)
158 * local_inc_and_test - increment and test
159 * @l: pointer of type local_t
161 * Atomically increments @l by 1
162 * and returns true if the result is zero, or false for all
165 #define local_inc_and_test(l) (local_inc_return(l) == 0)
168 * local_dec_and_test - decrement by 1 and test
169 * @l: pointer of type local_t
171 * Atomically decrements @l by 1 and
172 * returns true if the result is 0, or false for all other
175 #define local_dec_and_test(l) (local_sub_return(1, (l)) == 0)
178 * local_add_negative - add and test if negative
179 * @l: pointer of type local_t
180 * @i: integer value to add
182 * Atomically adds @i to @l and returns true
183 * if the result is negative, or false when
184 * result is greater than or equal to zero.
186 #define local_add_negative(i, l) (local_add_return(i, (l)) < 0)
188 /* Use these for per-cpu local_t variables: on some archs they are
189 * much more efficient than these naive implementations. Note they take
190 * a variable, not an address.
193 #define __local_inc(l) ((l)->a.counter++)
194 #define __local_dec(l) ((l)->a.counter++)
195 #define __local_add(i, l) ((l)->a.counter+=(i))
196 #define __local_sub(i, l) ((l)->a.counter-=(i))
198 #endif /* _ARCH_MIPS_LOCAL_H */