All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] efi: Add dependency on M-mode for RISC-V
@ 2020-09-28 16:08 Sean Anderson
  2020-09-28 16:08 ` [PATCH 2/2] efi: Fix typo in documentation Sean Anderson
  2020-09-28 16:27 ` [PATCH 1/2] efi: Add dependency on M-mode for RISC-V Heinrich Schuchardt
  0 siblings, 2 replies; 7+ messages in thread
From: Sean Anderson @ 2020-09-28 16:08 UTC (permalink / raw)
  To: u-boot

From section 2.3.7 of the UEFI specification:

> RISC-V UEFI will only be executed in machine mode. The machine mode has
> the highest privilege and this mode is the only mandatory privilege level
> for RISC-V platforms; all other privilege levels are optional depending
> on the platform requirements. Machine mode is the first mode entered at
> the power-on reset. This level is used in UEFI for low-level access to a
> hardware platform.

Signed-off-by: Sean Anderson <seanga2@gmail.com>
---

 lib/efi_loader/Kconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/efi_loader/Kconfig b/lib/efi_loader/Kconfig
index bad1a29ba8..2197c84bf3 100644
--- a/lib/efi_loader/Kconfig
+++ b/lib/efi_loader/Kconfig
@@ -10,6 +10,8 @@ config EFI_LOADER
 	depends on !EFI_STUB || !X86_64 || EFI_STUB_64BIT
 	# We need EFI_STUB_32BIT to be set on x86_32 with EFI_STUB
 	depends on !EFI_STUB || !X86 || X86_64 || EFI_STUB_32BIT
+	# RISC-V UEFI must run in machine mode
+	depends on !RISCV || RISCV_M_MODE
 	default y if !ARM || SYS_CPU = armv7 || SYS_CPU = armv8
 	select LIB_UUID
 	select HAVE_BLOCK_DEVICE
-- 
2.28.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2020-09-28 18:29 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-28 16:08 [PATCH 1/2] efi: Add dependency on M-mode for RISC-V Sean Anderson
2020-09-28 16:08 ` [PATCH 2/2] efi: Fix typo in documentation Sean Anderson
2020-09-28 16:31   ` Heinrich Schuchardt
2020-09-28 16:27 ` [PATCH 1/2] efi: Add dependency on M-mode for RISC-V Heinrich Schuchardt
2020-09-28 17:15   ` Sean Anderson
2020-09-28 18:24     ` Heinrich Schuchardt
2020-09-28 18:29       ` Sean Anderson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.