diff options
author | Will Deacon <will.deacon@arm.com> | 2015-02-03 11:14:13 -0500 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2015-07-27 10:28:50 -0400 |
commit | c09d6a04d17d730b0463207a26ece082772b59ee (patch) | |
tree | 43aec4a96946d28bc0fd985b1219317bdcb2b8d2 /arch/arm64/include/asm/lse.h | |
parent | c0385b24af15020a1e505f2c984db0d7c0d017e1 (diff) |
arm64: atomics: patch in lse instructions when supported by the CPU
On CPUs which support the LSE atomic instructions introduced in ARMv8.1,
it makes sense to use them in preference to ll/sc sequences.
This patch introduces runtime patching of atomic_t and atomic64_t
routines so that the call-site for the out-of-line ll/sc sequences is
patched with an LSE atomic instruction when we detect that
the CPU supports it.
If binutils is not recent enough to assemble the LSE instructions, then
the ll/sc sequences are inlined as though CONFIG_ARM64_LSE_ATOMICS=n.
Reviewed-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm64/include/asm/lse.h')
-rw-r--r-- | arch/arm64/include/asm/lse.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/arch/arm64/include/asm/lse.h b/arch/arm64/include/asm/lse.h new file mode 100644 index 000000000000..d516624a461e --- /dev/null +++ b/arch/arm64/include/asm/lse.h | |||
@@ -0,0 +1,34 @@ | |||
1 | #ifndef __ASM_LSE_H | ||
2 | #define __ASM_LSE_H | ||
3 | |||
4 | #if defined(CONFIG_AS_LSE) && defined(CONFIG_ARM64_LSE_ATOMICS) | ||
5 | |||
6 | #include <linux/stringify.h> | ||
7 | |||
8 | #include <asm/alternative.h> | ||
9 | #include <asm/cpufeature.h> | ||
10 | |||
11 | __asm__(".arch_extension lse"); | ||
12 | |||
13 | /* Move the ll/sc atomics out-of-line */ | ||
14 | #define __LL_SC_INLINE | ||
15 | #define __LL_SC_PREFIX(x) __ll_sc_##x | ||
16 | #define __LL_SC_EXPORT(x) EXPORT_SYMBOL(__LL_SC_PREFIX(x)) | ||
17 | |||
18 | /* Macro for constructing calls to out-of-line ll/sc atomics */ | ||
19 | #define __LL_SC_CALL(op) "bl\t" __stringify(__LL_SC_PREFIX(op)) "\n" | ||
20 | |||
21 | /* In-line patching at runtime */ | ||
22 | #define ARM64_LSE_ATOMIC_INSN(llsc, lse) \ | ||
23 | ALTERNATIVE(llsc, lse, ARM64_CPU_FEAT_LSE_ATOMICS) | ||
24 | |||
25 | #else | ||
26 | |||
27 | #define __LL_SC_INLINE static inline | ||
28 | #define __LL_SC_PREFIX(x) x | ||
29 | #define __LL_SC_EXPORT(x) | ||
30 | |||
31 | #define ARM64_LSE_ATOMIC_INSN(llsc, lse) llsc | ||
32 | |||
33 | #endif /* CONFIG_AS_LSE && CONFIG_ARM64_LSE_ATOMICS */ | ||
34 | #endif /* __ASM_LSE_H */ | ||