]> xenbits.xensource.com Git - unikraft/unikraft.git/commitdiff
plat/kvm/arm: Add UEFI entry stub
authorSergiu Moga <sergiu.moga@protonmail.com>
Mon, 24 Apr 2023 05:42:49 +0000 (08:42 +0300)
committerUnikraft <monkey@unikraft.io>
Fri, 11 Aug 2023 10:47:30 +0000 (10:47 +0000)
Implements the small ARM specific UEFI entry point which will call
the early self relocator, and jump to the architecture generic EFI
stub.

Signed-off-by: Sergiu Moga <sergiu.moga@protonmail.com>
Reviewed-by: Michalis Pappas <michalis@unikraft.io>
Approved-by: Razvan Deaconescu <razvand@unikraft.io>
Tested-by: Unikraft CI <monkey@unikraft.io>
GitHub-Closes: #909

plat/kvm/arm/efi_entry64.S [new file with mode: 0644]

diff --git a/plat/kvm/arm/efi_entry64.S b/plat/kvm/arm/efi_entry64.S
new file mode 100644 (file)
index 0000000..b266ffd
--- /dev/null
@@ -0,0 +1,23 @@
+/* SPDX-License-Identifier: BSD-3-Clause */
+/* Copyright (c) 2023, Unikraft GmbH and The Unikraft Authors.
+ * Licensed under the BSD-3-Clause License (the "License").
+ * You may not use this file except in compliance with the License.
+ */
+#include <uk/config.h>
+#include <uk/asm.h>
+
+.section .text
+ENTRY(uk_efi_entry64)
+       stp     x0, x1, [sp, #16]
+
+       mov     x0, xzr
+       mov     x1, xzr
+       bl      do_uk_reloc
+       ldp     x0, x1, [sp, #16]
+
+       bl      uk_efi_main
+
+uk_efi_fail:
+       wfi
+       b       uk_efi_fail
+END(uk_efi_entry64)