Ralf Baechle | fef7470 | 2007-10-01 04:15:00 +0100 | [diff] [blame] | 1 | /* |
| 2 | * This file is subject to the terms and conditions of the GNU General Public |
| 3 | * License. See the file "COPYING" in the main directory of this archive |
| 4 | * for more details. |
| 5 | * |
| 6 | * Copyright (C) 2003, 06, 07 by Ralf Baechle (ralf@linux-mips.org) |
| 7 | */ |
| 8 | #ifndef __ASM_CMPXCHG_H |
| 9 | #define __ASM_CMPXCHG_H |
| 10 | |
Aaro Koskinen | 5520e42 | 2012-07-19 09:11:15 +0200 | [diff] [blame] | 11 | #include <linux/bug.h> |
Ralf Baechle | fef7470 | 2007-10-01 04:15:00 +0100 | [diff] [blame] | 12 | #include <linux/irqflags.h> |
Maciej W. Rozycki | b0984c4 | 2014-11-15 22:08:48 +0000 | [diff] [blame] | 13 | #include <asm/compiler.h> |
Paul Burton | 878f75c | 2019-10-01 21:53:05 +0000 | [diff] [blame] | 14 | #include <asm/llsc.h> |
Paul Burton | 6a57d2d | 2019-10-01 21:53:37 +0000 | [diff] [blame] | 15 | #include <asm/sync.h> |
David Howells | b81947c | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 16 | #include <asm/war.h> |
| 17 | |
Paul Burton | 6b1e762 | 2017-06-09 17:26:33 -0700 | [diff] [blame] | 18 | /* |
Paul Burton | d15dc68 | 2017-06-09 17:26:36 -0700 | [diff] [blame] | 19 | * These functions doesn't exist, so if they are called you'll either: |
| 20 | * |
| 21 | * - Get an error at compile-time due to __compiletime_error, if supported by |
| 22 | * your compiler. |
| 23 | * |
| 24 | * or: |
| 25 | * |
| 26 | * - Get an error at link-time due to the call to the missing function. |
| 27 | */ |
Paul Burton | 8263db4 | 2017-06-09 17:26:38 -0700 | [diff] [blame] | 28 | extern unsigned long __cmpxchg_called_with_bad_pointer(void) |
Paul Burton | d15dc68 | 2017-06-09 17:26:36 -0700 | [diff] [blame] | 29 | __compiletime_error("Bad argument size for cmpxchg"); |
Paul Burton | c7e2d71 | 2019-02-06 14:38:56 -0800 | [diff] [blame] | 30 | extern unsigned long __cmpxchg64_unsupported(void) |
| 31 | __compiletime_error("cmpxchg64 not available; cpu_has_64bits may be false"); |
Paul Burton | d15dc68 | 2017-06-09 17:26:36 -0700 | [diff] [blame] | 32 | extern unsigned long __xchg_called_with_bad_pointer(void) |
| 33 | __compiletime_error("Bad argument size for xchg"); |
| 34 | |
Paul Burton | 5154f3b | 2017-06-09 17:26:34 -0700 | [diff] [blame] | 35 | #define __xchg_asm(ld, st, m, val) \ |
| 36 | ({ \ |
| 37 | __typeof(*(m)) __ret; \ |
| 38 | \ |
| 39 | if (kernel_uses_llsc) { \ |
| 40 | __asm__ __volatile__( \ |
| 41 | " .set push \n" \ |
| 42 | " .set noat \n" \ |
Paul Burton | 378ed6f | 2018-11-08 20:14:38 +0000 | [diff] [blame] | 43 | " .set push \n" \ |
Paul Burton | 5154f3b | 2017-06-09 17:26:34 -0700 | [diff] [blame] | 44 | " .set " MIPS_ISA_ARCH_LEVEL " \n" \ |
Paul Burton | 6a57d2d | 2019-10-01 21:53:37 +0000 | [diff] [blame] | 45 | " " __SYNC(full, loongson3_war) " \n" \ |
Paul Burton | 5154f3b | 2017-06-09 17:26:34 -0700 | [diff] [blame] | 46 | "1: " ld " %0, %2 # __xchg_asm \n" \ |
Paul Burton | 378ed6f | 2018-11-08 20:14:38 +0000 | [diff] [blame] | 47 | " .set pop \n" \ |
Paul Burton | 5154f3b | 2017-06-09 17:26:34 -0700 | [diff] [blame] | 48 | " move $1, %z3 \n" \ |
| 49 | " .set " MIPS_ISA_ARCH_LEVEL " \n" \ |
| 50 | " " st " $1, %1 \n" \ |
Paul Burton | 878f75c | 2019-10-01 21:53:05 +0000 | [diff] [blame] | 51 | "\t" __SC_BEQZ "$1, 1b \n" \ |
Paul Burton | 5154f3b | 2017-06-09 17:26:34 -0700 | [diff] [blame] | 52 | " .set pop \n" \ |
| 53 | : "=&r" (__ret), "=" GCC_OFF_SMALL_ASM() (*m) \ |
| 54 | : GCC_OFF_SMALL_ASM() (*m), "Jr" (val) \ |
Peter Zijlstra | 4234411 | 2019-06-13 15:43:20 +0200 | [diff] [blame] | 55 | : __LLSC_CLOBBER); \ |
Paul Burton | 5154f3b | 2017-06-09 17:26:34 -0700 | [diff] [blame] | 56 | } else { \ |
| 57 | unsigned long __flags; \ |
| 58 | \ |
| 59 | raw_local_irq_save(__flags); \ |
| 60 | __ret = *m; \ |
| 61 | *m = val; \ |
| 62 | raw_local_irq_restore(__flags); \ |
| 63 | } \ |
| 64 | \ |
| 65 | __ret; \ |
| 66 | }) |
| 67 | |
Paul Burton | b70eb30 | 2017-06-09 17:26:39 -0700 | [diff] [blame] | 68 | extern unsigned long __xchg_small(volatile void *ptr, unsigned long val, |
| 69 | unsigned int size); |
| 70 | |
Thomas Bogendoerfer | 46f1619 | 2019-10-09 12:06:00 +0200 | [diff] [blame] | 71 | static __always_inline |
| 72 | unsigned long __xchg(volatile void *ptr, unsigned long x, int size) |
David Howells | b81947c | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 73 | { |
| 74 | switch (size) { |
Paul Burton | b70eb30 | 2017-06-09 17:26:39 -0700 | [diff] [blame] | 75 | case 1: |
| 76 | case 2: |
| 77 | return __xchg_small(ptr, x, size); |
| 78 | |
David Howells | b81947c | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 79 | case 4: |
Paul Burton | 62c6081 | 2017-06-09 17:26:37 -0700 | [diff] [blame] | 80 | return __xchg_asm("ll", "sc", (volatile u32 *)ptr, x); |
| 81 | |
David Howells | b81947c | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 82 | case 8: |
Paul Burton | 62c6081 | 2017-06-09 17:26:37 -0700 | [diff] [blame] | 83 | if (!IS_ENABLED(CONFIG_64BIT)) |
| 84 | return __xchg_called_with_bad_pointer(); |
| 85 | |
| 86 | return __xchg_asm("lld", "scd", (volatile u64 *)ptr, x); |
| 87 | |
Paul Burton | d15dc68 | 2017-06-09 17:26:36 -0700 | [diff] [blame] | 88 | default: |
| 89 | return __xchg_called_with_bad_pointer(); |
David Howells | b81947c | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 90 | } |
David Howells | b81947c | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 91 | } |
| 92 | |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 93 | #define arch_xchg(ptr, x) \ |
David Howells | b81947c | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 94 | ({ \ |
Paul Burton | 62c6081 | 2017-06-09 17:26:37 -0700 | [diff] [blame] | 95 | __typeof__(*(ptr)) __res; \ |
| 96 | \ |
Paul Burton | a91f2a1 | 2019-10-01 21:53:38 +0000 | [diff] [blame] | 97 | /* \ |
| 98 | * In the Loongson3 workaround case __xchg_asm() already \ |
| 99 | * contains a completion barrier prior to the LL, so we don't \ |
| 100 | * need to emit an extra one here. \ |
| 101 | */ \ |
Nathan Chancellor | 8790ccf | 2021-01-14 10:34:16 -0700 | [diff] [blame] | 102 | if (__SYNC_loongson3_war == 0) \ |
Paul Burton | a91f2a1 | 2019-10-01 21:53:38 +0000 | [diff] [blame] | 103 | smp_mb__before_llsc(); \ |
Paul Burton | 62c6081 | 2017-06-09 17:26:37 -0700 | [diff] [blame] | 104 | \ |
| 105 | __res = (__typeof__(*(ptr))) \ |
Paul Burton | 4843cf8 | 2017-06-09 17:26:41 -0700 | [diff] [blame] | 106 | __xchg((ptr), (unsigned long)(x), sizeof(*(ptr))); \ |
Paul Burton | 62c6081 | 2017-06-09 17:26:37 -0700 | [diff] [blame] | 107 | \ |
| 108 | smp_llsc_mb(); \ |
| 109 | \ |
| 110 | __res; \ |
David Howells | b81947c | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 111 | }) |
Ralf Baechle | fef7470 | 2007-10-01 04:15:00 +0100 | [diff] [blame] | 112 | |
Ralf Baechle | fef7470 | 2007-10-01 04:15:00 +0100 | [diff] [blame] | 113 | #define __cmpxchg_asm(ld, st, m, old, new) \ |
| 114 | ({ \ |
| 115 | __typeof(*(m)) __ret; \ |
| 116 | \ |
Paul Burton | 6b1e762 | 2017-06-09 17:26:33 -0700 | [diff] [blame] | 117 | if (kernel_uses_llsc) { \ |
Ralf Baechle | fef7470 | 2007-10-01 04:15:00 +0100 | [diff] [blame] | 118 | __asm__ __volatile__( \ |
| 119 | " .set push \n" \ |
| 120 | " .set noat \n" \ |
Paul Burton | 378ed6f | 2018-11-08 20:14:38 +0000 | [diff] [blame] | 121 | " .set push \n" \ |
Markos Chandras | fa998eb | 2014-11-20 13:31:48 +0000 | [diff] [blame] | 122 | " .set "MIPS_ISA_ARCH_LEVEL" \n" \ |
Paul Burton | 6a57d2d | 2019-10-01 21:53:37 +0000 | [diff] [blame] | 123 | " " __SYNC(full, loongson3_war) " \n" \ |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 124 | "1: " ld " %0, %2 # __cmpxchg_asm \n" \ |
Ralf Baechle | fef7470 | 2007-10-01 04:15:00 +0100 | [diff] [blame] | 125 | " bne %0, %z3, 2f \n" \ |
Paul Burton | 378ed6f | 2018-11-08 20:14:38 +0000 | [diff] [blame] | 126 | " .set pop \n" \ |
Ralf Baechle | fef7470 | 2007-10-01 04:15:00 +0100 | [diff] [blame] | 127 | " move $1, %z4 \n" \ |
Markos Chandras | fa998eb | 2014-11-20 13:31:48 +0000 | [diff] [blame] | 128 | " .set "MIPS_ISA_ARCH_LEVEL" \n" \ |
Ralf Baechle | fef7470 | 2007-10-01 04:15:00 +0100 | [diff] [blame] | 129 | " " st " $1, %1 \n" \ |
Paul Burton | 878f75c | 2019-10-01 21:53:05 +0000 | [diff] [blame] | 130 | "\t" __SC_BEQZ "$1, 1b \n" \ |
Ralf Baechle | fef7470 | 2007-10-01 04:15:00 +0100 | [diff] [blame] | 131 | " .set pop \n" \ |
Paul Burton | 6a57d2d | 2019-10-01 21:53:37 +0000 | [diff] [blame] | 132 | "2: " __SYNC(full, loongson3_war) " \n" \ |
Markos Chandras | 94bfb75 | 2015-01-26 12:44:11 +0000 | [diff] [blame] | 133 | : "=&r" (__ret), "=" GCC_OFF_SMALL_ASM() (*m) \ |
Peter Zijlstra | 4234411 | 2019-06-13 15:43:20 +0200 | [diff] [blame] | 134 | : GCC_OFF_SMALL_ASM() (*m), "Jr" (old), "Jr" (new) \ |
| 135 | : __LLSC_CLOBBER); \ |
Ralf Baechle | fef7470 | 2007-10-01 04:15:00 +0100 | [diff] [blame] | 136 | } else { \ |
| 137 | unsigned long __flags; \ |
| 138 | \ |
| 139 | raw_local_irq_save(__flags); \ |
| 140 | __ret = *m; \ |
| 141 | if (__ret == old) \ |
| 142 | *m = new; \ |
| 143 | raw_local_irq_restore(__flags); \ |
| 144 | } \ |
| 145 | \ |
| 146 | __ret; \ |
| 147 | }) |
| 148 | |
Paul Burton | 3ba7f44 | 2017-06-09 17:26:40 -0700 | [diff] [blame] | 149 | extern unsigned long __cmpxchg_small(volatile void *ptr, unsigned long old, |
| 150 | unsigned long new, unsigned int size); |
| 151 | |
Thomas Bogendoerfer | 88356d0 | 2019-10-06 15:12:32 +0200 | [diff] [blame] | 152 | static __always_inline |
| 153 | unsigned long __cmpxchg(volatile void *ptr, unsigned long old, |
| 154 | unsigned long new, unsigned int size) |
Paul Burton | 8263db4 | 2017-06-09 17:26:38 -0700 | [diff] [blame] | 155 | { |
| 156 | switch (size) { |
Paul Burton | 3ba7f44 | 2017-06-09 17:26:40 -0700 | [diff] [blame] | 157 | case 1: |
| 158 | case 2: |
| 159 | return __cmpxchg_small(ptr, old, new, size); |
| 160 | |
Paul Burton | 8263db4 | 2017-06-09 17:26:38 -0700 | [diff] [blame] | 161 | case 4: |
Paul Burton | 133d68e | 2017-09-01 14:46:50 -0700 | [diff] [blame] | 162 | return __cmpxchg_asm("ll", "sc", (volatile u32 *)ptr, |
| 163 | (u32)old, new); |
Paul Burton | 8263db4 | 2017-06-09 17:26:38 -0700 | [diff] [blame] | 164 | |
| 165 | case 8: |
| 166 | /* lld/scd are only available for MIPS64 */ |
| 167 | if (!IS_ENABLED(CONFIG_64BIT)) |
| 168 | return __cmpxchg_called_with_bad_pointer(); |
| 169 | |
Paul Burton | 133d68e | 2017-09-01 14:46:50 -0700 | [diff] [blame] | 170 | return __cmpxchg_asm("lld", "scd", (volatile u64 *)ptr, |
| 171 | (u64)old, new); |
Paul Burton | 8263db4 | 2017-06-09 17:26:38 -0700 | [diff] [blame] | 172 | |
| 173 | default: |
| 174 | return __cmpxchg_called_with_bad_pointer(); |
| 175 | } |
| 176 | } |
| 177 | |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 178 | #define arch_cmpxchg_local(ptr, old, new) \ |
Paul Burton | 8263db4 | 2017-06-09 17:26:38 -0700 | [diff] [blame] | 179 | ((__typeof__(*(ptr))) \ |
| 180 | __cmpxchg((ptr), \ |
| 181 | (unsigned long)(__typeof__(*(ptr)))(old), \ |
| 182 | (unsigned long)(__typeof__(*(ptr)))(new), \ |
| 183 | sizeof(*(ptr)))) |
| 184 | |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 185 | #define arch_cmpxchg(ptr, old, new) \ |
Ralf Baechle | fef7470 | 2007-10-01 04:15:00 +0100 | [diff] [blame] | 186 | ({ \ |
Paul Burton | 8263db4 | 2017-06-09 17:26:38 -0700 | [diff] [blame] | 187 | __typeof__(*(ptr)) __res; \ |
Ralf Baechle | fef7470 | 2007-10-01 04:15:00 +0100 | [diff] [blame] | 188 | \ |
Paul Burton | a91f2a1 | 2019-10-01 21:53:38 +0000 | [diff] [blame] | 189 | /* \ |
| 190 | * In the Loongson3 workaround case __cmpxchg_asm() already \ |
| 191 | * contains a completion barrier prior to the LL, so we don't \ |
| 192 | * need to emit an extra one here. \ |
| 193 | */ \ |
Nathan Chancellor | 8790ccf | 2021-01-14 10:34:16 -0700 | [diff] [blame] | 194 | if (__SYNC_loongson3_war == 0) \ |
Paul Burton | a91f2a1 | 2019-10-01 21:53:38 +0000 | [diff] [blame] | 195 | smp_mb__before_llsc(); \ |
| 196 | \ |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 197 | __res = arch_cmpxchg_local((ptr), (old), (new)); \ |
Paul Burton | a91f2a1 | 2019-10-01 21:53:38 +0000 | [diff] [blame] | 198 | \ |
| 199 | /* \ |
| 200 | * In the Loongson3 workaround case __cmpxchg_asm() already \ |
| 201 | * contains a completion barrier after the SC, so we don't \ |
| 202 | * need to emit an extra one here. \ |
| 203 | */ \ |
Nathan Chancellor | 8790ccf | 2021-01-14 10:34:16 -0700 | [diff] [blame] | 204 | if (__SYNC_loongson3_war == 0) \ |
Paul Burton | a91f2a1 | 2019-10-01 21:53:38 +0000 | [diff] [blame] | 205 | smp_llsc_mb(); \ |
Ralf Baechle | fef7470 | 2007-10-01 04:15:00 +0100 | [diff] [blame] | 206 | \ |
| 207 | __res; \ |
| 208 | }) |
| 209 | |
Mathieu Desnoyers | 3b96a56 | 2008-02-07 00:16:09 -0800 | [diff] [blame] | 210 | #ifdef CONFIG_64BIT |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 211 | #define arch_cmpxchg64_local(ptr, o, n) \ |
Mathieu Desnoyers | 3b96a56 | 2008-02-07 00:16:09 -0800 | [diff] [blame] | 212 | ({ \ |
| 213 | BUILD_BUG_ON(sizeof(*(ptr)) != 8); \ |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 214 | arch_cmpxchg_local((ptr), (o), (n)); \ |
Mathieu Desnoyers | 3b96a56 | 2008-02-07 00:16:09 -0800 | [diff] [blame] | 215 | }) |
Deng-Cheng Zhu | e2093c7 | 2015-03-07 10:30:20 -0800 | [diff] [blame] | 216 | |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 217 | #define arch_cmpxchg64(ptr, o, n) \ |
Deng-Cheng Zhu | e2093c7 | 2015-03-07 10:30:20 -0800 | [diff] [blame] | 218 | ({ \ |
| 219 | BUILD_BUG_ON(sizeof(*(ptr)) != 8); \ |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 220 | arch_cmpxchg((ptr), (o), (n)); \ |
Deng-Cheng Zhu | e2093c7 | 2015-03-07 10:30:20 -0800 | [diff] [blame] | 221 | }) |
Mathieu Desnoyers | 3b96a56 | 2008-02-07 00:16:09 -0800 | [diff] [blame] | 222 | #else |
Paul Burton | c7e2d71 | 2019-02-06 14:38:56 -0800 | [diff] [blame] | 223 | |
| 224 | # include <asm-generic/cmpxchg-local.h> |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 225 | # define arch_cmpxchg64_local(ptr, o, n) __generic_cmpxchg64_local((ptr), (o), (n)) |
Paul Burton | c7e2d71 | 2019-02-06 14:38:56 -0800 | [diff] [blame] | 226 | |
| 227 | # ifdef CONFIG_SMP |
| 228 | |
| 229 | static inline unsigned long __cmpxchg64(volatile void *ptr, |
| 230 | unsigned long long old, |
| 231 | unsigned long long new) |
| 232 | { |
| 233 | unsigned long long tmp, ret; |
| 234 | unsigned long flags; |
| 235 | |
| 236 | /* |
| 237 | * The assembly below has to combine 32 bit values into a 64 bit |
| 238 | * register, and split 64 bit values from one register into two. If we |
| 239 | * were to take an interrupt in the middle of this we'd only save the |
| 240 | * least significant 32 bits of each register & probably clobber the |
| 241 | * most significant 32 bits of the 64 bit values we're using. In order |
| 242 | * to avoid this we must disable interrupts. |
| 243 | */ |
| 244 | local_irq_save(flags); |
| 245 | |
| 246 | asm volatile( |
| 247 | " .set push \n" |
| 248 | " .set " MIPS_ISA_ARCH_LEVEL " \n" |
| 249 | /* Load 64 bits from ptr */ |
Paul Burton | 6a57d2d | 2019-10-01 21:53:37 +0000 | [diff] [blame] | 250 | " " __SYNC(full, loongson3_war) " \n" |
Paul Burton | c7e2d71 | 2019-02-06 14:38:56 -0800 | [diff] [blame] | 251 | "1: lld %L0, %3 # __cmpxchg64 \n" |
Maciej W. Rozycki | a923a26 | 2021-10-22 00:58:23 +0200 | [diff] [blame] | 252 | " .set pop \n" |
Paul Burton | c7e2d71 | 2019-02-06 14:38:56 -0800 | [diff] [blame] | 253 | /* |
| 254 | * Split the 64 bit value we loaded into the 2 registers that hold the |
| 255 | * ret variable. |
| 256 | */ |
| 257 | " dsra %M0, %L0, 32 \n" |
| 258 | " sll %L0, %L0, 0 \n" |
| 259 | /* |
| 260 | * Compare ret against old, breaking out of the loop if they don't |
| 261 | * match. |
| 262 | */ |
| 263 | " bne %M0, %M4, 2f \n" |
| 264 | " bne %L0, %L4, 2f \n" |
| 265 | /* |
| 266 | * Combine the 32 bit halves from the 2 registers that hold the new |
| 267 | * variable into a single 64 bit register. |
| 268 | */ |
| 269 | # if MIPS_ISA_REV >= 2 |
| 270 | " move %L1, %L5 \n" |
| 271 | " dins %L1, %M5, 32, 32 \n" |
| 272 | # else |
| 273 | " dsll %L1, %L5, 32 \n" |
| 274 | " dsrl %L1, %L1, 32 \n" |
| 275 | " .set noat \n" |
| 276 | " dsll $at, %M5, 32 \n" |
| 277 | " or %L1, %L1, $at \n" |
| 278 | " .set at \n" |
| 279 | # endif |
Maciej W. Rozycki | a923a26 | 2021-10-22 00:58:23 +0200 | [diff] [blame] | 280 | " .set push \n" |
| 281 | " .set " MIPS_ISA_ARCH_LEVEL " \n" |
Paul Burton | c7e2d71 | 2019-02-06 14:38:56 -0800 | [diff] [blame] | 282 | /* Attempt to store new at ptr */ |
| 283 | " scd %L1, %2 \n" |
| 284 | /* If we failed, loop! */ |
Paul Burton | 878f75c | 2019-10-01 21:53:05 +0000 | [diff] [blame] | 285 | "\t" __SC_BEQZ "%L1, 1b \n" |
Paul Burton | 6a57d2d | 2019-10-01 21:53:37 +0000 | [diff] [blame] | 286 | "2: " __SYNC(full, loongson3_war) " \n" |
Maciej W. Rozycki | a923a26 | 2021-10-22 00:58:23 +0200 | [diff] [blame] | 287 | " .set pop \n" |
Paul Burton | c7e2d71 | 2019-02-06 14:38:56 -0800 | [diff] [blame] | 288 | : "=&r"(ret), |
| 289 | "=&r"(tmp), |
| 290 | "=" GCC_OFF_SMALL_ASM() (*(unsigned long long *)ptr) |
| 291 | : GCC_OFF_SMALL_ASM() (*(unsigned long long *)ptr), |
| 292 | "r" (old), |
| 293 | "r" (new) |
| 294 | : "memory"); |
| 295 | |
| 296 | local_irq_restore(flags); |
| 297 | return ret; |
| 298 | } |
| 299 | |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 300 | # define arch_cmpxchg64(ptr, o, n) ({ \ |
Paul Burton | c7e2d71 | 2019-02-06 14:38:56 -0800 | [diff] [blame] | 301 | unsigned long long __old = (__typeof__(*(ptr)))(o); \ |
| 302 | unsigned long long __new = (__typeof__(*(ptr)))(n); \ |
| 303 | __typeof__(*(ptr)) __res; \ |
| 304 | \ |
| 305 | /* \ |
| 306 | * We can only use cmpxchg64 if we know that the CPU supports \ |
| 307 | * 64-bits, ie. lld & scd. Our call to __cmpxchg64_unsupported \ |
| 308 | * will cause a build error unless cpu_has_64bits is a \ |
| 309 | * compile-time constant 1. \ |
| 310 | */ \ |
Peter Zijlstra | dfc8d8d | 2019-06-13 15:43:18 +0200 | [diff] [blame] | 311 | if (cpu_has_64bits && kernel_uses_llsc) { \ |
| 312 | smp_mb__before_llsc(); \ |
Paul Burton | c7e2d71 | 2019-02-06 14:38:56 -0800 | [diff] [blame] | 313 | __res = __cmpxchg64((ptr), __old, __new); \ |
Peter Zijlstra | dfc8d8d | 2019-06-13 15:43:18 +0200 | [diff] [blame] | 314 | smp_llsc_mb(); \ |
| 315 | } else { \ |
Paul Burton | c7e2d71 | 2019-02-06 14:38:56 -0800 | [diff] [blame] | 316 | __res = __cmpxchg64_unsupported(); \ |
Peter Zijlstra | dfc8d8d | 2019-06-13 15:43:18 +0200 | [diff] [blame] | 317 | } \ |
Paul Burton | c7e2d71 | 2019-02-06 14:38:56 -0800 | [diff] [blame] | 318 | \ |
| 319 | __res; \ |
| 320 | }) |
| 321 | |
| 322 | # else /* !CONFIG_SMP */ |
Mark Rutland | c7b5fd6 | 2021-05-25 15:02:21 +0100 | [diff] [blame] | 323 | # define arch_cmpxchg64(ptr, o, n) arch_cmpxchg64_local((ptr), (o), (n)) |
Paul Burton | c7e2d71 | 2019-02-06 14:38:56 -0800 | [diff] [blame] | 324 | # endif /* !CONFIG_SMP */ |
| 325 | #endif /* !CONFIG_64BIT */ |
Mathieu Desnoyers | 3b96a56 | 2008-02-07 00:16:09 -0800 | [diff] [blame] | 326 | |
Ralf Baechle | fef7470 | 2007-10-01 04:15:00 +0100 | [diff] [blame] | 327 | #endif /* __ASM_CMPXCHG_H */ |