Merge pull request #4880 from lubinszARM:pr_tlbi_02

PiperOrigin-RevId: 347890782
This commit is contained in:
gVisor bot
2020-12-16 13:52:58 -08:00
3 changed files with 25 additions and 2 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ func IsCanonical(addr uint64) bool {
func (c *CPU) SwitchToUser(switchOpts SwitchOpts) (vector Vector) {
storeAppASID(uintptr(switchOpts.UserASID))
if switchOpts.Flush {
FlushTlbAll()
FlushTlbByASID(uintptr(switchOpts.UserASID))
}
regs := switchOpts.Registers
+7 -1
View File
@@ -22,7 +22,13 @@ func storeAppASID(asid uintptr)
// LocalFlushTlbAll same as FlushTlbAll, but only applies to the calling CPU.
func LocalFlushTlbAll()
// FlushTlbAll flush all tlb.
// FlushTlbByVA invalidates tlb by VA/Last-level/Inner-Shareable.
func FlushTlbByVA(addr uintptr)
// FlushTlbByASID invalidates tlb by ASID/Inner-Shareable.
func FlushTlbByASID(asid uintptr)
// FlushTlbAll invalidates all tlb.
func FlushTlbAll()
// CPACREL1 returns the value of the CPACR_EL1 register.
+17
View File
@@ -15,6 +15,23 @@
#include "funcdata.h"
#include "textflag.h"
#define TLBI_ASID_SHIFT 48
TEXT ·FlushTlbByVA(SB),NOSPLIT,$0-8
MOVD addr+0(FP), R1
DSB $10 // dsb(ishst)
WORD $0xd50883a1 // tlbi vale1is, x1
DSB $11 // dsb(ish)
RET
TEXT ·FlushTlbByASID(SB),NOSPLIT,$0-8
MOVD asid+0(FP), R1
LSL $TLBI_ASID_SHIFT, R1, R1
DSB $10 // dsb(ishst)
WORD $0xd5088341 // tlbi aside1is, x1
DSB $11 // dsb(ish)
RET
TEXT ·LocalFlushTlbAll(SB),NOSPLIT,$0
DSB $6 // dsb(nshst)
WORD $0xd508871f // __tlbi(vmalle1)