]> git.baikalelectronics.ru Git - kernel.git/commit
ARM: 8985/1: efi/decompressor: deal with HYP mode boot gracefully
authorArd Biesheuvel <ardb@kernel.org>
Fri, 12 Jun 2020 10:21:35 +0000 (11:21 +0100)
committerRussell King <rmk+kernel@armlinux.org.uk>
Sat, 13 Jun 2020 10:11:18 +0000 (11:11 +0100)
commitd285dd597a0b683df4d8b6af9daea85ad54a0625
treebd3a465bb4cb24f075257d062ffcfe9a2ec9a8d6
parentde3c04559c49246a2b16dc0cd319abb8aef8a9df
ARM: 8985/1: efi/decompressor: deal with HYP mode boot gracefully

EFI on ARM only supports short descriptors, and given that it mandates
that the MMU and caches are on, it is implied that booting in HYP mode
is not supported.

However, implementations of EFI exist (i.e., U-Boot) that ignore this
requirement, which is not entirely unreasonable, given that it makes
HYP mode inaccessible to the operating system.

So let's make sure that we can deal with this condition gracefully.
We already tolerate booting the EFI stub with the caches off (even
though this violates the EFI spec as well), and so we should deal
with HYP mode boot with MMU and caches either on or off.

- When the MMU and caches are on, we can ignore the HYP stub altogether,
  since we can carry on executing at HYP. We do need to ensure that we
  disable the MMU at HYP before entering the kernel proper.

- When the MMU and caches are off, we have to drop to SVC mode so that
  we can set up the page tables using short descriptors. In this case,
  we need to install the HYP stub as usual, so that we can return to HYP
  mode before handing over to the kernel proper.

Tested-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
arch/arm/boot/compressed/head.S