Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Will Deacon | c09d6a0 | 2015-02-03 16:14:13 +0000 | [diff] [blame] | 2 | #ifndef __ASM_LSE_H |
| 3 | #define __ASM_LSE_H |
| 4 | |
| 5 | #if defined(CONFIG_AS_LSE) && defined(CONFIG_ARM64_LSE_ATOMICS) |
| 6 | |
Will Deacon | 8a624f1 | 2018-02-19 13:08:56 +0000 | [diff] [blame] | 7 | #include <linux/compiler_types.h> |
| 8 | #include <linux/export.h> |
Will Deacon | c09d6a0 | 2015-02-03 16:14:13 +0000 | [diff] [blame] | 9 | #include <linux/stringify.h> |
Will Deacon | c09d6a0 | 2015-02-03 16:14:13 +0000 | [diff] [blame] | 10 | #include <asm/alternative.h> |
Will Deacon | 8a624f1 | 2018-02-19 13:08:56 +0000 | [diff] [blame] | 11 | #include <asm/cpucaps.h> |
Will Deacon | c09d6a0 | 2015-02-03 16:14:13 +0000 | [diff] [blame] | 12 | |
Will Deacon | 084f903 | 2015-02-12 04:17:37 +0000 | [diff] [blame] | 13 | #ifdef __ASSEMBLER__ |
| 14 | |
| 15 | .arch_extension lse |
| 16 | |
| 17 | .macro alt_lse, llsc, lse |
Will Deacon | c739dc8 | 2015-07-27 14:11:55 +0100 | [diff] [blame] | 18 | alternative_insn "\llsc", "\lse", ARM64_HAS_LSE_ATOMICS |
Will Deacon | 084f903 | 2015-02-12 04:17:37 +0000 | [diff] [blame] | 19 | .endm |
| 20 | |
| 21 | #else /* __ASSEMBLER__ */ |
| 22 | |
Will Deacon | c09d6a0 | 2015-02-03 16:14:13 +0000 | [diff] [blame] | 23 | __asm__(".arch_extension lse"); |
| 24 | |
| 25 | /* Move the ll/sc atomics out-of-line */ |
Pratyush Anand | b7eed6d | 2017-02-06 19:46:22 +0530 | [diff] [blame] | 26 | #define __LL_SC_INLINE notrace |
Will Deacon | c09d6a0 | 2015-02-03 16:14:13 +0000 | [diff] [blame] | 27 | #define __LL_SC_PREFIX(x) __ll_sc_##x |
| 28 | #define __LL_SC_EXPORT(x) EXPORT_SYMBOL(__LL_SC_PREFIX(x)) |
| 29 | |
| 30 | /* Macro for constructing calls to out-of-line ll/sc atomics */ |
| 31 | #define __LL_SC_CALL(op) "bl\t" __stringify(__LL_SC_PREFIX(op)) "\n" |
Ard Biesheuvel | 5be8b70 | 2016-02-25 20:48:53 +0100 | [diff] [blame] | 32 | #define __LL_SC_CLOBBERS "x16", "x17", "x30" |
Will Deacon | c09d6a0 | 2015-02-03 16:14:13 +0000 | [diff] [blame] | 33 | |
| 34 | /* In-line patching at runtime */ |
| 35 | #define ARM64_LSE_ATOMIC_INSN(llsc, lse) \ |
Will Deacon | c739dc8 | 2015-07-27 14:11:55 +0100 | [diff] [blame] | 36 | ALTERNATIVE(llsc, lse, ARM64_HAS_LSE_ATOMICS) |
Will Deacon | c09d6a0 | 2015-02-03 16:14:13 +0000 | [diff] [blame] | 37 | |
Will Deacon | 084f903 | 2015-02-12 04:17:37 +0000 | [diff] [blame] | 38 | #endif /* __ASSEMBLER__ */ |
| 39 | #else /* CONFIG_AS_LSE && CONFIG_ARM64_LSE_ATOMICS */ |
| 40 | |
| 41 | #ifdef __ASSEMBLER__ |
| 42 | |
| 43 | .macro alt_lse, llsc, lse |
| 44 | \llsc |
| 45 | .endm |
| 46 | |
| 47 | #else /* __ASSEMBLER__ */ |
Will Deacon | c09d6a0 | 2015-02-03 16:14:13 +0000 | [diff] [blame] | 48 | |
| 49 | #define __LL_SC_INLINE static inline |
| 50 | #define __LL_SC_PREFIX(x) x |
| 51 | #define __LL_SC_EXPORT(x) |
| 52 | |
| 53 | #define ARM64_LSE_ATOMIC_INSN(llsc, lse) llsc |
| 54 | |
Will Deacon | 084f903 | 2015-02-12 04:17:37 +0000 | [diff] [blame] | 55 | #endif /* __ASSEMBLER__ */ |
Will Deacon | c09d6a0 | 2015-02-03 16:14:13 +0000 | [diff] [blame] | 56 | #endif /* CONFIG_AS_LSE && CONFIG_ARM64_LSE_ATOMICS */ |
| 57 | #endif /* __ASM_LSE_H */ |