]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commit
arm64: sdei: Add trampoline code for remapping the kernel
authorJames Morse <james.morse@arm.com>
Mon, 8 Jan 2018 15:38:18 +0000 (15:38 +0000)
committerCatalin Marinas <catalin.marinas@arm.com>
Sun, 14 Jan 2018 18:49:50 +0000 (18:49 +0000)
commit79e9aa59dc29a995921fb01e64cd36b73cf5abe0
tree503e94412b80a2ef435ab418f5d68c1a55fcf53c
parent83f8ee3a73f551aebb5b0bb029feaf6936615730
arm64: sdei: Add trampoline code for remapping the kernel

When CONFIG_UNMAP_KERNEL_AT_EL0 is set the SDEI entry point and the rest
of the kernel may be unmapped when we take an event. If this may be the
case, use an entry trampoline that can switch to the kernel page tables.

We can't use the provided PSTATE to determine whether to switch page
tables as we may have interrupted the kernel's entry trampoline, (or a
normal-priority event that interrupted the kernel's entry trampoline).
Instead test for a user ASID in ttbr1_el1.

Save a value in regs->addr_limit to indicate whether we need to restore
the original ASID when returning from this event. This value is only used
by do_page_fault(), which we don't call with the SDEI regs.

Signed-off-by: James Morse <james.morse@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
arch/arm64/include/asm/mmu.h
arch/arm64/include/asm/sdei.h
arch/arm64/kernel/entry.S
arch/arm64/kernel/sdei.c