[PATCH 05/10] arm64: mm: Re-implement the __tlbi_level macro in C
Will Deacon
will at kernel.org
Fri Jul 11 09:17:27 PDT 2025
__tlbi_level() is just a simple macro around __tlbi_level_op(), so merge
the two into a single C function. Drop the redundant comparison of
'u32 level' against 0 and tidy up the code a little while we're at it.
Signed-off-by: Will Deacon <will at kernel.org>
---
arch/arm64/include/asm/tlbflush.h | 25 ++++++++++---------------
1 file changed, 10 insertions(+), 15 deletions(-)
diff --git a/arch/arm64/include/asm/tlbflush.h b/arch/arm64/include/asm/tlbflush.h
index 728b00f3e1f4..ddd77e92b268 100644
--- a/arch/arm64/include/asm/tlbflush.h
+++ b/arch/arm64/include/asm/tlbflush.h
@@ -128,8 +128,17 @@ enum tlbi_op {
___GEN_TLBI_OP_CASE(op); \
break
-static __always_inline void __tlbi_level_op(const enum tlbi_op op, u64 arg)
+static __always_inline void __tlbi_level(const enum tlbi_op op, u64 addr, u32 level)
{
+ u64 arg = addr;
+
+ if (alternative_has_cap_unlikely(ARM64_HAS_ARMv8_4_TTL) && level <= 3) {
+ u64 ttl = level | (get_trans_granule() << 2);
+
+ arg &= ~TLBI_TTL_MASK;
+ arg |= FIELD_PREP(TLBI_TTL_MASK, ttl);
+ }
+
switch (op) {
__GEN_TLBI_OP_ASID_CASE(vae1is);
__GEN_TLBI_OP_CASE(vae2is);
@@ -145,20 +154,6 @@ static __always_inline void __tlbi_level_op(const enum tlbi_op op, u64 arg)
#undef __GEN_TLBI_OP_ASID_CASE
#undef ___GEN_TLBI_OP_CASE
-#define __tlbi_level(op, addr, level) do { \
- u64 arg = addr; \
- \
- if (alternative_has_cap_unlikely(ARM64_HAS_ARMv8_4_TTL) && \
- level >= 0 && level <= 3) { \
- u64 ttl = level & 3; \
- ttl |= get_trans_granule() << 2; \
- arg &= ~TLBI_TTL_MASK; \
- arg |= FIELD_PREP(TLBI_TTL_MASK, ttl); \
- } \
- \
- __tlbi_level_op(op, arg); \
-} while(0)
-
/*
* This macro creates a properly formatted VA operand for the TLB RANGE. The
* value bit assignments are:
--
2.50.0.727.gbf7dc18ff4-goog
More information about the linux-arm-kernel
mailing list