提交 b519538d 编写于 作者: W Will Deacon

arm64: mm: Introduce TTBR_ASID_MASK for getting at the ASID in the TTBR

There are now a handful of open-coded masks to extract the ASID from a
TTBR value, so introduce a TTBR_ASID_MASK and use that instead.
Suggested-by: NMark Rutland <mark.rutland@arm.com>
Reviewed-by: NMark Rutland <mark.rutland@arm.com>
Tested-by: NLaura Abbott <labbott@redhat.com>
Tested-by: NShanker Donthineni <shankerd@codeaurora.org>
Signed-off-by: NWill Deacon <will.deacon@arm.com>
上级 7a4a0c15
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
#include <asm/alternative.h> #include <asm/alternative.h>
#include <asm/kernel-pgtable.h> #include <asm/kernel-pgtable.h>
#include <asm/mmu.h>
#include <asm/sysreg.h> #include <asm/sysreg.h>
#include <asm/assembler.h> #include <asm/assembler.h>
...@@ -17,7 +18,7 @@ ...@@ -17,7 +18,7 @@
msr ttbr0_el1, \tmp1 // set reserved TTBR0_EL1 msr ttbr0_el1, \tmp1 // set reserved TTBR0_EL1
isb isb
sub \tmp1, \tmp1, #SWAPPER_DIR_SIZE sub \tmp1, \tmp1, #SWAPPER_DIR_SIZE
bic \tmp1, \tmp1, #(0xffff << 48) bic \tmp1, \tmp1, #TTBR_ASID_MASK
msr ttbr1_el1, \tmp1 // set reserved ASID msr ttbr1_el1, \tmp1 // set reserved ASID
isb isb
.endm .endm
......
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#define MMCF_AARCH32 0x1 /* mm context flag for AArch32 executables */ #define MMCF_AARCH32 0x1 /* mm context flag for AArch32 executables */
#define USER_ASID_FLAG (UL(1) << 48) #define USER_ASID_FLAG (UL(1) << 48)
#define TTBR_ASID_MASK (UL(0xffff) << 48)
#ifndef __ASSEMBLY__ #ifndef __ASSEMBLY__
......
...@@ -112,7 +112,7 @@ static inline void __uaccess_ttbr0_disable(void) ...@@ -112,7 +112,7 @@ static inline void __uaccess_ttbr0_disable(void)
write_sysreg(ttbr + SWAPPER_DIR_SIZE, ttbr0_el1); write_sysreg(ttbr + SWAPPER_DIR_SIZE, ttbr0_el1);
isb(); isb();
/* Set reserved ASID */ /* Set reserved ASID */
ttbr &= ~(0xffffUL << 48); ttbr &= ~TTBR_ASID_MASK;
write_sysreg(ttbr, ttbr1_el1); write_sysreg(ttbr, ttbr1_el1);
isb(); isb();
} }
...@@ -131,7 +131,7 @@ static inline void __uaccess_ttbr0_enable(void) ...@@ -131,7 +131,7 @@ static inline void __uaccess_ttbr0_enable(void)
/* Restore active ASID */ /* Restore active ASID */
ttbr1 = read_sysreg(ttbr1_el1); ttbr1 = read_sysreg(ttbr1_el1);
ttbr1 |= ttbr0 & (0xffffUL << 48); ttbr1 |= ttbr0 & TTBR_ASID_MASK;
write_sysreg(ttbr1, ttbr1_el1); write_sysreg(ttbr1, ttbr1_el1);
isb(); isb();
......
...@@ -205,7 +205,7 @@ alternative_else_nop_endif ...@@ -205,7 +205,7 @@ alternative_else_nop_endif
.if \el != 0 .if \el != 0
mrs x21, ttbr1_el1 mrs x21, ttbr1_el1
tst x21, #0xffff << 48 // Check for the reserved ASID tst x21, #TTBR_ASID_MASK // Check for the reserved ASID
orr x23, x23, #PSR_PAN_BIT // Set the emulated PAN in the saved SPSR orr x23, x23, #PSR_PAN_BIT // Set the emulated PAN in the saved SPSR
b.eq 1f // TTBR0 access already disabled b.eq 1f // TTBR0 access already disabled
and x23, x23, #~PSR_PAN_BIT // Clear the emulated PAN in the saved SPSR and x23, x23, #~PSR_PAN_BIT // Clear the emulated PAN in the saved SPSR
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册