Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Maciej W. Rozycki | edf7b93 | 2013-11-01 23:47:05 +0000 | [diff] [blame] | 2 | * Atomic operations that C can't guarantee us. Useful for |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * resource counting etc.. |
| 4 | * |
| 5 | * But use these as seldom as possible since they are much more slower |
| 6 | * than regular operations. |
| 7 | * |
| 8 | * This file is subject to the terms and conditions of the GNU General Public |
| 9 | * License. See the file "COPYING" in the main directory of this archive |
| 10 | * for more details. |
| 11 | * |
Ralf Baechle | e303e08 | 2006-11-30 01:14:50 +0000 | [diff] [blame] | 12 | * Copyright (C) 1996, 97, 99, 2000, 03, 04, 06 by Ralf Baechle |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #ifndef _ASM_ATOMIC_H |
| 15 | #define _ASM_ATOMIC_H |
| 16 | |
Ralf Baechle | 192ef36 | 2006-07-07 14:07:18 +0100 | [diff] [blame] | 17 | #include <linux/irqflags.h> |
Matthew Wilcox | ea435467 | 2009-01-06 14:40:39 -0800 | [diff] [blame] | 18 | #include <linux/types.h> |
Huang Pei | f0b7ddb | 2021-12-15 16:45:00 +0800 | [diff] [blame] | 19 | #include <asm/asm.h> |
Ralf Baechle | 0004a9d | 2006-10-31 03:45:07 +0000 | [diff] [blame] | 20 | #include <asm/barrier.h> |
Maciej W. Rozycki | b0984c4 | 2014-11-15 22:08:48 +0000 | [diff] [blame] | 21 | #include <asm/compiler.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <asm/cpu-features.h> |
David Howells | b81947c | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 23 | #include <asm/cmpxchg.h> |
Paul Burton | 4d1dbfe | 2019-10-01 21:53:20 +0000 | [diff] [blame] | 24 | #include <asm/sync.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
Paul Burton | 1da7bce | 2019-10-01 21:53:24 +0000 | [diff] [blame] | 26 | #define ATOMIC_OPS(pfx, type) \ |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 27 | static __always_inline type arch_##pfx##_read(const pfx##_t *v) \ |
Paul Burton | 1da7bce | 2019-10-01 21:53:24 +0000 | [diff] [blame] | 28 | { \ |
| 29 | return READ_ONCE(v->counter); \ |
| 30 | } \ |
| 31 | \ |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 32 | static __always_inline void arch_##pfx##_set(pfx##_t *v, type i) \ |
Paul Burton | 1da7bce | 2019-10-01 21:53:24 +0000 | [diff] [blame] | 33 | { \ |
| 34 | WRITE_ONCE(v->counter, i); \ |
| 35 | } \ |
| 36 | \ |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 37 | static __always_inline type \ |
| 38 | arch_##pfx##_cmpxchg(pfx##_t *v, type o, type n) \ |
Paul Burton | 1da7bce | 2019-10-01 21:53:24 +0000 | [diff] [blame] | 39 | { \ |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 40 | return arch_cmpxchg(&v->counter, o, n); \ |
Paul Burton | 1da7bce | 2019-10-01 21:53:24 +0000 | [diff] [blame] | 41 | } \ |
| 42 | \ |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 43 | static __always_inline type arch_##pfx##_xchg(pfx##_t *v, type n) \ |
Paul Burton | 1da7bce | 2019-10-01 21:53:24 +0000 | [diff] [blame] | 44 | { \ |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 45 | return arch_xchg(&v->counter, n); \ |
Paul Burton | 1da7bce | 2019-10-01 21:53:24 +0000 | [diff] [blame] | 46 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Paul Burton | 1da7bce | 2019-10-01 21:53:24 +0000 | [diff] [blame] | 48 | ATOMIC_OPS(atomic, int) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
Paul Burton | 1da7bce | 2019-10-01 21:53:24 +0000 | [diff] [blame] | 50 | #ifdef CONFIG_64BIT |
| 51 | # define ATOMIC64_INIT(i) { (i) } |
| 52 | ATOMIC_OPS(atomic64, s64) |
| 53 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Paul Burton | a38ee6b | 2019-10-01 21:53:18 +0000 | [diff] [blame] | 55 | #define ATOMIC_OP(pfx, op, type, c_op, asm_op, ll, sc) \ |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 56 | static __inline__ void arch_##pfx##_##op(type i, pfx##_t * v) \ |
Paul Burton | 36d3295 | 2019-10-01 21:53:15 +0000 | [diff] [blame] | 57 | { \ |
Paul Burton | a38ee6b | 2019-10-01 21:53:18 +0000 | [diff] [blame] | 58 | type temp; \ |
Paul Burton | 36d3295 | 2019-10-01 21:53:15 +0000 | [diff] [blame] | 59 | \ |
Paul Burton | 9537db2 | 2019-10-01 21:53:16 +0000 | [diff] [blame] | 60 | if (!kernel_uses_llsc) { \ |
Paul Burton | 36d3295 | 2019-10-01 21:53:15 +0000 | [diff] [blame] | 61 | unsigned long flags; \ |
| 62 | \ |
| 63 | raw_local_irq_save(flags); \ |
| 64 | v->counter c_op i; \ |
| 65 | raw_local_irq_restore(flags); \ |
Paul Burton | 9537db2 | 2019-10-01 21:53:16 +0000 | [diff] [blame] | 66 | return; \ |
Paul Burton | 36d3295 | 2019-10-01 21:53:15 +0000 | [diff] [blame] | 67 | } \ |
Paul Burton | 9537db2 | 2019-10-01 21:53:16 +0000 | [diff] [blame] | 68 | \ |
Paul Burton | 9537db2 | 2019-10-01 21:53:16 +0000 | [diff] [blame] | 69 | __asm__ __volatile__( \ |
| 70 | " .set push \n" \ |
| 71 | " .set " MIPS_ISA_LEVEL " \n" \ |
Paul Burton | 4d1dbfe | 2019-10-01 21:53:20 +0000 | [diff] [blame] | 72 | " " __SYNC(full, loongson3_war) " \n" \ |
Paul Burton | a38ee6b | 2019-10-01 21:53:18 +0000 | [diff] [blame] | 73 | "1: " #ll " %0, %1 # " #pfx "_" #op " \n" \ |
Paul Burton | 9537db2 | 2019-10-01 21:53:16 +0000 | [diff] [blame] | 74 | " " #asm_op " %0, %2 \n" \ |
Paul Burton | a38ee6b | 2019-10-01 21:53:18 +0000 | [diff] [blame] | 75 | " " #sc " %0, %1 \n" \ |
Huang Pei | f0b7ddb | 2021-12-15 16:45:00 +0800 | [diff] [blame] | 76 | "\t" __stringify(SC_BEQZ) " %0, 1b \n" \ |
Paul Burton | 9537db2 | 2019-10-01 21:53:16 +0000 | [diff] [blame] | 77 | " .set pop \n" \ |
| 78 | : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (v->counter) \ |
| 79 | : "Ir" (i) : __LLSC_CLOBBER); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Paul Burton | a38ee6b | 2019-10-01 21:53:18 +0000 | [diff] [blame] | 82 | #define ATOMIC_OP_RETURN(pfx, op, type, c_op, asm_op, ll, sc) \ |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 83 | static __inline__ type \ |
| 84 | arch_##pfx##_##op##_return_relaxed(type i, pfx##_t * v) \ |
Paul Burton | 36d3295 | 2019-10-01 21:53:15 +0000 | [diff] [blame] | 85 | { \ |
Paul Burton | a38ee6b | 2019-10-01 21:53:18 +0000 | [diff] [blame] | 86 | type temp, result; \ |
Paul Burton | 36d3295 | 2019-10-01 21:53:15 +0000 | [diff] [blame] | 87 | \ |
Paul Burton | 9537db2 | 2019-10-01 21:53:16 +0000 | [diff] [blame] | 88 | if (!kernel_uses_llsc) { \ |
Paul Burton | 36d3295 | 2019-10-01 21:53:15 +0000 | [diff] [blame] | 89 | unsigned long flags; \ |
| 90 | \ |
| 91 | raw_local_irq_save(flags); \ |
| 92 | result = v->counter; \ |
| 93 | result c_op i; \ |
| 94 | v->counter = result; \ |
| 95 | raw_local_irq_restore(flags); \ |
Paul Burton | 9537db2 | 2019-10-01 21:53:16 +0000 | [diff] [blame] | 96 | return result; \ |
Paul Burton | 36d3295 | 2019-10-01 21:53:15 +0000 | [diff] [blame] | 97 | } \ |
| 98 | \ |
Paul Burton | 9537db2 | 2019-10-01 21:53:16 +0000 | [diff] [blame] | 99 | __asm__ __volatile__( \ |
| 100 | " .set push \n" \ |
| 101 | " .set " MIPS_ISA_LEVEL " \n" \ |
Paul Burton | 4d1dbfe | 2019-10-01 21:53:20 +0000 | [diff] [blame] | 102 | " " __SYNC(full, loongson3_war) " \n" \ |
Paul Burton | a38ee6b | 2019-10-01 21:53:18 +0000 | [diff] [blame] | 103 | "1: " #ll " %1, %2 # " #pfx "_" #op "_return\n" \ |
Paul Burton | 9537db2 | 2019-10-01 21:53:16 +0000 | [diff] [blame] | 104 | " " #asm_op " %0, %1, %3 \n" \ |
Paul Burton | a38ee6b | 2019-10-01 21:53:18 +0000 | [diff] [blame] | 105 | " " #sc " %0, %2 \n" \ |
Huang Pei | f0b7ddb | 2021-12-15 16:45:00 +0800 | [diff] [blame] | 106 | "\t" __stringify(SC_BEQZ) " %0, 1b \n" \ |
Paul Burton | 9537db2 | 2019-10-01 21:53:16 +0000 | [diff] [blame] | 107 | " " #asm_op " %0, %1, %3 \n" \ |
| 108 | " .set pop \n" \ |
| 109 | : "=&r" (result), "=&r" (temp), \ |
| 110 | "+" GCC_OFF_SMALL_ASM() (v->counter) \ |
| 111 | : "Ir" (i) : __LLSC_CLOBBER); \ |
| 112 | \ |
Paul Burton | 36d3295 | 2019-10-01 21:53:15 +0000 | [diff] [blame] | 113 | return result; \ |
Maciej W. Rozycki | ddb3108 | 2014-11-15 22:09:54 +0000 | [diff] [blame] | 114 | } |
| 115 | |
Paul Burton | a38ee6b | 2019-10-01 21:53:18 +0000 | [diff] [blame] | 116 | #define ATOMIC_FETCH_OP(pfx, op, type, c_op, asm_op, ll, sc) \ |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 117 | static __inline__ type \ |
| 118 | arch_##pfx##_fetch_##op##_relaxed(type i, pfx##_t * v) \ |
Paul Burton | 36d3295 | 2019-10-01 21:53:15 +0000 | [diff] [blame] | 119 | { \ |
Paul Burton | 9537db2 | 2019-10-01 21:53:16 +0000 | [diff] [blame] | 120 | int temp, result; \ |
Paul Burton | 36d3295 | 2019-10-01 21:53:15 +0000 | [diff] [blame] | 121 | \ |
Paul Burton | 9537db2 | 2019-10-01 21:53:16 +0000 | [diff] [blame] | 122 | if (!kernel_uses_llsc) { \ |
Paul Burton | 36d3295 | 2019-10-01 21:53:15 +0000 | [diff] [blame] | 123 | unsigned long flags; \ |
| 124 | \ |
| 125 | raw_local_irq_save(flags); \ |
| 126 | result = v->counter; \ |
| 127 | v->counter c_op i; \ |
| 128 | raw_local_irq_restore(flags); \ |
Paul Burton | 9537db2 | 2019-10-01 21:53:16 +0000 | [diff] [blame] | 129 | return result; \ |
Paul Burton | 36d3295 | 2019-10-01 21:53:15 +0000 | [diff] [blame] | 130 | } \ |
| 131 | \ |
Paul Burton | 9537db2 | 2019-10-01 21:53:16 +0000 | [diff] [blame] | 132 | __asm__ __volatile__( \ |
| 133 | " .set push \n" \ |
Paul Burton | a38ee6b | 2019-10-01 21:53:18 +0000 | [diff] [blame] | 134 | " .set " MIPS_ISA_LEVEL " \n" \ |
Paul Burton | 4d1dbfe | 2019-10-01 21:53:20 +0000 | [diff] [blame] | 135 | " " __SYNC(full, loongson3_war) " \n" \ |
Paul Burton | a38ee6b | 2019-10-01 21:53:18 +0000 | [diff] [blame] | 136 | "1: " #ll " %1, %2 # " #pfx "_fetch_" #op "\n" \ |
Paul Burton | 9537db2 | 2019-10-01 21:53:16 +0000 | [diff] [blame] | 137 | " " #asm_op " %0, %1, %3 \n" \ |
Paul Burton | a38ee6b | 2019-10-01 21:53:18 +0000 | [diff] [blame] | 138 | " " #sc " %0, %2 \n" \ |
Huang Pei | f0b7ddb | 2021-12-15 16:45:00 +0800 | [diff] [blame] | 139 | "\t" __stringify(SC_BEQZ) " %0, 1b \n" \ |
Paul Burton | 9537db2 | 2019-10-01 21:53:16 +0000 | [diff] [blame] | 140 | " .set pop \n" \ |
| 141 | " move %0, %1 \n" \ |
| 142 | : "=&r" (result), "=&r" (temp), \ |
| 143 | "+" GCC_OFF_SMALL_ASM() (v->counter) \ |
| 144 | : "Ir" (i) : __LLSC_CLOBBER); \ |
| 145 | \ |
Paul Burton | 36d3295 | 2019-10-01 21:53:15 +0000 | [diff] [blame] | 146 | return result; \ |
Peter Zijlstra | 4edac52 | 2016-04-18 01:16:06 +0200 | [diff] [blame] | 147 | } |
| 148 | |
Paul Burton | 1da7bce | 2019-10-01 21:53:24 +0000 | [diff] [blame] | 149 | #undef ATOMIC_OPS |
Paul Burton | a38ee6b | 2019-10-01 21:53:18 +0000 | [diff] [blame] | 150 | #define ATOMIC_OPS(pfx, op, type, c_op, asm_op, ll, sc) \ |
| 151 | ATOMIC_OP(pfx, op, type, c_op, asm_op, ll, sc) \ |
| 152 | ATOMIC_OP_RETURN(pfx, op, type, c_op, asm_op, ll, sc) \ |
| 153 | ATOMIC_FETCH_OP(pfx, op, type, c_op, asm_op, ll, sc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
Paul Burton | a38ee6b | 2019-10-01 21:53:18 +0000 | [diff] [blame] | 155 | ATOMIC_OPS(atomic, add, int, +=, addu, ll, sc) |
| 156 | ATOMIC_OPS(atomic, sub, int, -=, subu, ll, sc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 158 | #define arch_atomic_add_return_relaxed arch_atomic_add_return_relaxed |
| 159 | #define arch_atomic_sub_return_relaxed arch_atomic_sub_return_relaxed |
| 160 | #define arch_atomic_fetch_add_relaxed arch_atomic_fetch_add_relaxed |
| 161 | #define arch_atomic_fetch_sub_relaxed arch_atomic_fetch_sub_relaxed |
Peter Zijlstra | 4ec4585 | 2016-04-18 01:15:25 +0200 | [diff] [blame] | 162 | |
Paul Burton | a38ee6b | 2019-10-01 21:53:18 +0000 | [diff] [blame] | 163 | #ifdef CONFIG_64BIT |
| 164 | ATOMIC_OPS(atomic64, add, s64, +=, daddu, lld, scd) |
| 165 | ATOMIC_OPS(atomic64, sub, s64, -=, dsubu, lld, scd) |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 166 | # define arch_atomic64_add_return_relaxed arch_atomic64_add_return_relaxed |
| 167 | # define arch_atomic64_sub_return_relaxed arch_atomic64_sub_return_relaxed |
| 168 | # define arch_atomic64_fetch_add_relaxed arch_atomic64_fetch_add_relaxed |
| 169 | # define arch_atomic64_fetch_sub_relaxed arch_atomic64_fetch_sub_relaxed |
Paul Burton | a38ee6b | 2019-10-01 21:53:18 +0000 | [diff] [blame] | 170 | #endif /* CONFIG_64BIT */ |
Peter Zijlstra | 4edac52 | 2016-04-18 01:16:06 +0200 | [diff] [blame] | 171 | |
Paul Burton | a38ee6b | 2019-10-01 21:53:18 +0000 | [diff] [blame] | 172 | #undef ATOMIC_OPS |
| 173 | #define ATOMIC_OPS(pfx, op, type, c_op, asm_op, ll, sc) \ |
| 174 | ATOMIC_OP(pfx, op, type, c_op, asm_op, ll, sc) \ |
| 175 | ATOMIC_FETCH_OP(pfx, op, type, c_op, asm_op, ll, sc) |
| 176 | |
| 177 | ATOMIC_OPS(atomic, and, int, &=, and, ll, sc) |
| 178 | ATOMIC_OPS(atomic, or, int, |=, or, ll, sc) |
| 179 | ATOMIC_OPS(atomic, xor, int, ^=, xor, ll, sc) |
Peter Zijlstra | 27782f2 | 2014-04-23 19:51:36 +0200 | [diff] [blame] | 180 | |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 181 | #define arch_atomic_fetch_and_relaxed arch_atomic_fetch_and_relaxed |
| 182 | #define arch_atomic_fetch_or_relaxed arch_atomic_fetch_or_relaxed |
| 183 | #define arch_atomic_fetch_xor_relaxed arch_atomic_fetch_xor_relaxed |
Peter Zijlstra | 4ec4585 | 2016-04-18 01:15:25 +0200 | [diff] [blame] | 184 | |
Paul Burton | a38ee6b | 2019-10-01 21:53:18 +0000 | [diff] [blame] | 185 | #ifdef CONFIG_64BIT |
| 186 | ATOMIC_OPS(atomic64, and, s64, &=, and, lld, scd) |
| 187 | ATOMIC_OPS(atomic64, or, s64, |=, or, lld, scd) |
| 188 | ATOMIC_OPS(atomic64, xor, s64, ^=, xor, lld, scd) |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 189 | # define arch_atomic64_fetch_and_relaxed arch_atomic64_fetch_and_relaxed |
| 190 | # define arch_atomic64_fetch_or_relaxed arch_atomic64_fetch_or_relaxed |
| 191 | # define arch_atomic64_fetch_xor_relaxed arch_atomic64_fetch_xor_relaxed |
Paul Burton | a38ee6b | 2019-10-01 21:53:18 +0000 | [diff] [blame] | 192 | #endif |
| 193 | |
Peter Zijlstra | ef31563 | 2014-03-26 17:56:43 +0100 | [diff] [blame] | 194 | #undef ATOMIC_OPS |
Peter Zijlstra | 4edac52 | 2016-04-18 01:16:06 +0200 | [diff] [blame] | 195 | #undef ATOMIC_FETCH_OP |
Peter Zijlstra | ef31563 | 2014-03-26 17:56:43 +0100 | [diff] [blame] | 196 | #undef ATOMIC_OP_RETURN |
| 197 | #undef ATOMIC_OP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | |
| 199 | /* |
Arnaud Giersch | f10d14d | 2005-11-13 00:38:18 +0100 | [diff] [blame] | 200 | * atomic_sub_if_positive - conditionally subtract integer from atomic variable |
| 201 | * @i: integer value to subtract |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | * @v: pointer of type atomic_t |
| 203 | * |
Arnaud Giersch | f10d14d | 2005-11-13 00:38:18 +0100 | [diff] [blame] | 204 | * Atomically test @v and subtract @i if @v is greater or equal than @i. |
| 205 | * The function returns the old value of @v minus @i. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | */ |
Paul Burton | 40e784b | 2019-10-01 21:53:23 +0000 | [diff] [blame] | 207 | #define ATOMIC_SIP_OP(pfx, type, op, ll, sc) \ |
Rui Wang | cb95ea7 | 2021-07-29 17:31:52 +0800 | [diff] [blame] | 208 | static __inline__ type arch_##pfx##_sub_if_positive(type i, pfx##_t * v) \ |
Paul Burton | 40e784b | 2019-10-01 21:53:23 +0000 | [diff] [blame] | 209 | { \ |
| 210 | type temp, result; \ |
| 211 | \ |
| 212 | smp_mb__before_atomic(); \ |
| 213 | \ |
| 214 | if (!kernel_uses_llsc) { \ |
| 215 | unsigned long flags; \ |
| 216 | \ |
| 217 | raw_local_irq_save(flags); \ |
| 218 | result = v->counter; \ |
| 219 | result -= i; \ |
| 220 | if (result >= 0) \ |
| 221 | v->counter = result; \ |
| 222 | raw_local_irq_restore(flags); \ |
| 223 | smp_mb__after_atomic(); \ |
| 224 | return result; \ |
| 225 | } \ |
| 226 | \ |
| 227 | __asm__ __volatile__( \ |
| 228 | " .set push \n" \ |
| 229 | " .set " MIPS_ISA_LEVEL " \n" \ |
| 230 | " " __SYNC(full, loongson3_war) " \n" \ |
| 231 | "1: " #ll " %1, %2 # atomic_sub_if_positive\n" \ |
| 232 | " .set pop \n" \ |
| 233 | " " #op " %0, %1, %3 \n" \ |
| 234 | " move %1, %0 \n" \ |
| 235 | " bltz %0, 2f \n" \ |
| 236 | " .set push \n" \ |
| 237 | " .set " MIPS_ISA_LEVEL " \n" \ |
| 238 | " " #sc " %1, %2 \n" \ |
Huang Pei | f0b7ddb | 2021-12-15 16:45:00 +0800 | [diff] [blame] | 239 | " " __stringify(SC_BEQZ) " %1, 1b \n" \ |
Paul Burton | 40e784b | 2019-10-01 21:53:23 +0000 | [diff] [blame] | 240 | "2: " __SYNC(full, loongson3_war) " \n" \ |
| 241 | " .set pop \n" \ |
| 242 | : "=&r" (result), "=&r" (temp), \ |
| 243 | "+" GCC_OFF_SMALL_ASM() (v->counter) \ |
| 244 | : "Ir" (i) \ |
| 245 | : __LLSC_CLOBBER); \ |
| 246 | \ |
| 247 | /* \ |
| 248 | * In the Loongson3 workaround case we already have a \ |
| 249 | * completion barrier at 2: above, which is needed due to the \ |
| 250 | * bltz that can branch to code outside of the LL/SC loop. As \ |
| 251 | * such, we don't need to emit another barrier here. \ |
| 252 | */ \ |
Nathan Chancellor | 8790ccf | 2021-01-14 10:34:16 -0700 | [diff] [blame] | 253 | if (__SYNC_loongson3_war == 0) \ |
Paul Burton | 40e784b | 2019-10-01 21:53:23 +0000 | [diff] [blame] | 254 | smp_mb__after_atomic(); \ |
| 255 | \ |
| 256 | return result; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | } |
| 258 | |
Paul Burton | 40e784b | 2019-10-01 21:53:23 +0000 | [diff] [blame] | 259 | ATOMIC_SIP_OP(atomic, int, subu, ll, sc) |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 260 | #define arch_atomic_dec_if_positive(v) arch_atomic_sub_if_positive(1, v) |
Paul Burton | 40e784b | 2019-10-01 21:53:23 +0000 | [diff] [blame] | 261 | |
| 262 | #ifdef CONFIG_64BIT |
| 263 | ATOMIC_SIP_OP(atomic64, s64, dsubu, lld, scd) |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 264 | #define arch_atomic64_dec_if_positive(v) arch_atomic64_sub_if_positive(1, v) |
Paul Burton | 40e784b | 2019-10-01 21:53:23 +0000 | [diff] [blame] | 265 | #endif |
| 266 | |
| 267 | #undef ATOMIC_SIP_OP |
| 268 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | #endif /* _ASM_ATOMIC_H */ |