mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-13 22:14:20 +08:00
e1f358b504
Define the new system registers that MTE introduces and context switch them. The MTE feature is still hidden from the ID register as it isn't supported in a VM yet. Reviewed-by: Catalin Marinas <catalin.marinas@arm.com> Signed-off-by: Steven Price <steven.price@arm.com> Signed-off-by: Marc Zyngier <maz@kernel.org> Link: https://lore.kernel.org/r/20210621111716.37157-4-steven.price@arm.com
67 lines
1.3 KiB
C
67 lines
1.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2020-2021 ARM Ltd.
|
|
*/
|
|
#ifndef __ASM_KVM_MTE_H
|
|
#define __ASM_KVM_MTE_H
|
|
|
|
#ifdef __ASSEMBLY__
|
|
|
|
#include <asm/sysreg.h>
|
|
|
|
#ifdef CONFIG_ARM64_MTE
|
|
|
|
.macro mte_switch_to_guest g_ctxt, h_ctxt, reg1
|
|
alternative_if_not ARM64_MTE
|
|
b .L__skip_switch\@
|
|
alternative_else_nop_endif
|
|
mrs \reg1, hcr_el2
|
|
tbz \reg1, #(HCR_ATA_SHIFT), .L__skip_switch\@
|
|
|
|
mrs_s \reg1, SYS_RGSR_EL1
|
|
str \reg1, [\h_ctxt, #CPU_RGSR_EL1]
|
|
mrs_s \reg1, SYS_GCR_EL1
|
|
str \reg1, [\h_ctxt, #CPU_GCR_EL1]
|
|
|
|
ldr \reg1, [\g_ctxt, #CPU_RGSR_EL1]
|
|
msr_s SYS_RGSR_EL1, \reg1
|
|
ldr \reg1, [\g_ctxt, #CPU_GCR_EL1]
|
|
msr_s SYS_GCR_EL1, \reg1
|
|
|
|
.L__skip_switch\@:
|
|
.endm
|
|
|
|
.macro mte_switch_to_hyp g_ctxt, h_ctxt, reg1
|
|
alternative_if_not ARM64_MTE
|
|
b .L__skip_switch\@
|
|
alternative_else_nop_endif
|
|
mrs \reg1, hcr_el2
|
|
tbz \reg1, #(HCR_ATA_SHIFT), .L__skip_switch\@
|
|
|
|
mrs_s \reg1, SYS_RGSR_EL1
|
|
str \reg1, [\g_ctxt, #CPU_RGSR_EL1]
|
|
mrs_s \reg1, SYS_GCR_EL1
|
|
str \reg1, [\g_ctxt, #CPU_GCR_EL1]
|
|
|
|
ldr \reg1, [\h_ctxt, #CPU_RGSR_EL1]
|
|
msr_s SYS_RGSR_EL1, \reg1
|
|
ldr \reg1, [\h_ctxt, #CPU_GCR_EL1]
|
|
msr_s SYS_GCR_EL1, \reg1
|
|
|
|
isb
|
|
|
|
.L__skip_switch\@:
|
|
.endm
|
|
|
|
#else /* !CONFIG_ARM64_MTE */
|
|
|
|
.macro mte_switch_to_guest g_ctxt, h_ctxt, reg1
|
|
.endm
|
|
|
|
.macro mte_switch_to_hyp g_ctxt, h_ctxt, reg1
|
|
.endm
|
|
|
|
#endif /* CONFIG_ARM64_MTE */
|
|
#endif /* __ASSEMBLY__ */
|
|
#endif /* __ASM_KVM_MTE_H */
|