1 /* SPDX-License-Identifier: GPL-2.0-only */
4 * ARCv2 supports 64-bit exclusive load (LLOCKD) / store (SCONDD)
5 * - The address HAS to be 64-bit aligned
8 #ifndef _ASM_ARC_ATOMIC64_ARCV2_H
9 #define _ASM_ARC_ATOMIC64_ARCV2_H
12 s64 __aligned(8) counter;
15 #define ATOMIC64_INIT(a) { (a) }
17 static inline s64 arch_atomic64_read(const atomic64_t *v)
29 static inline void arch_atomic64_set(atomic64_t *v, s64 a)
32 * This could have been a simple assignment in "C" but would need
33 * explicit volatile. Otherwise gcc optimizers could elide the store
34 * which borked atomic64 self-test
35 * In the inline asm version, memory clobber needed for exact same
36 * reason, to tell gcc about the store.
38 * This however is not needed for sibling atomic64_add() etc since both
39 * load/store are explicitly done in inline asm. As long as API is used
40 * for each access, gcc has no way to optimize away any load/store
45 : "r"(a), "r"(&v->counter)
49 #define ATOMIC64_OP(op, op1, op2) \
50 static inline void arch_atomic64_##op(s64 a, atomic64_t *v) \
54 __asm__ __volatile__( \
56 " llockd %0, [%1] \n" \
57 " " #op1 " %L0, %L0, %L2 \n" \
58 " " #op2 " %H0, %H0, %H2 \n" \
59 " scondd %0, [%1] \n" \
62 : "r"(&v->counter), "ir"(a) \
66 #define ATOMIC64_OP_RETURN(op, op1, op2) \
67 static inline s64 arch_atomic64_##op##_return(s64 a, atomic64_t *v) \
73 __asm__ __volatile__( \
75 " llockd %0, [%1] \n" \
76 " " #op1 " %L0, %L0, %L2 \n" \
77 " " #op2 " %H0, %H0, %H2 \n" \
78 " scondd %0, [%1] \n" \
81 : "r"(&v->counter), "ir"(a) \
82 : "cc"); /* memory clobber comes from smp_mb() */ \
89 #define ATOMIC64_FETCH_OP(op, op1, op2) \
90 static inline s64 arch_atomic64_fetch_##op(s64 a, atomic64_t *v) \
96 __asm__ __volatile__( \
98 " llockd %0, [%2] \n" \
99 " " #op1 " %L1, %L0, %L3 \n" \
100 " " #op2 " %H1, %H0, %H3 \n" \
101 " scondd %1, [%2] \n" \
103 : "=&r"(orig), "=&r"(val) \
104 : "r"(&v->counter), "ir"(a) \
105 : "cc"); /* memory clobber comes from smp_mb() */ \
112 #define ATOMIC64_OPS(op, op1, op2) \
113 ATOMIC64_OP(op, op1, op2) \
114 ATOMIC64_OP_RETURN(op, op1, op2) \
115 ATOMIC64_FETCH_OP(op, op1, op2)
117 ATOMIC64_OPS(add, add.f, adc)
118 ATOMIC64_OPS(sub, sub.f, sbc)
121 #define ATOMIC64_OPS(op, op1, op2) \
122 ATOMIC64_OP(op, op1, op2) \
123 ATOMIC64_FETCH_OP(op, op1, op2)
125 ATOMIC64_OPS(and, and, and)
126 ATOMIC64_OPS(andnot, bic, bic)
127 ATOMIC64_OPS(or, or, or)
128 ATOMIC64_OPS(xor, xor, xor)
130 #define arch_atomic64_andnot arch_atomic64_andnot
131 #define arch_atomic64_fetch_andnot arch_atomic64_fetch_andnot
134 #undef ATOMIC64_FETCH_OP
135 #undef ATOMIC64_OP_RETURN
139 arch_atomic64_cmpxchg(atomic64_t *ptr, s64 expected, s64 new)
145 __asm__ __volatile__(
146 "1: llockd %0, [%1] \n"
147 " brne %L0, %L2, 2f \n"
148 " brne %H0, %H2, 2f \n"
149 " scondd %3, [%1] \n"
153 : "r"(ptr), "ir"(expected), "r"(new)
154 : "cc"); /* memory clobber comes from smp_mb() */
161 static inline s64 arch_atomic64_xchg(atomic64_t *ptr, s64 new)
167 __asm__ __volatile__(
168 "1: llockd %0, [%1] \n"
169 " scondd %2, [%1] \n"
174 : "cc"); /* memory clobber comes from smp_mb() */
182 * arch_atomic64_dec_if_positive - decrement by 1 if old value positive
183 * @v: pointer of type atomic64_t
185 * The function returns the old value of *v minus 1, even if
186 * the atomic variable, v, was not decremented.
189 static inline s64 arch_atomic64_dec_if_positive(atomic64_t *v)
195 __asm__ __volatile__(
196 "1: llockd %0, [%1] \n"
197 " sub.f %L0, %L0, 1 # w0 - 1, set C on borrow\n"
198 " sub.c %H0, %H0, 1 # if C set, w1 - 1\n"
199 " brlt %H0, 0, 2f \n"
200 " scondd %0, [%1] \n"
205 : "cc"); /* memory clobber comes from smp_mb() */
211 #define arch_atomic64_dec_if_positive arch_atomic64_dec_if_positive
214 * arch_atomic64_fetch_add_unless - add unless the number is a given value
215 * @v: pointer of type atomic64_t
216 * @a: the amount to add to v...
217 * @u: ...unless v is equal to u.
219 * Atomically adds @a to @v, if it was not @u.
220 * Returns the old value of @v
222 static inline s64 arch_atomic64_fetch_add_unless(atomic64_t *v, s64 a, s64 u)
228 __asm__ __volatile__(
229 "1: llockd %0, [%2] \n"
230 " brne %L0, %L4, 2f # continue to add since v != u \n"
231 " breq.d %H0, %H4, 3f # return since v == u \n"
233 " add.f %L1, %L0, %L3 \n"
234 " adc %H1, %H0, %H3 \n"
235 " scondd %1, [%2] \n"
238 : "=&r"(old), "=&r" (temp)
239 : "r"(&v->counter), "r"(a), "r"(u)
240 : "cc"); /* memory clobber comes from smp_mb() */
246 #define arch_atomic64_fetch_add_unless arch_atomic64_fetch_add_unless