summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/amd64/amd64/machdep.c9
-rw-r--r--sys/sys/efi.h1
2 files changed, 10 insertions, 0 deletions
diff --git a/sys/amd64/amd64/machdep.c b/sys/amd64/amd64/machdep.c
index db1b77a..6bf251f 100644
--- a/sys/amd64/amd64/machdep.c
+++ b/sys/amd64/amd64/machdep.c
@@ -188,6 +188,12 @@ extern char kernphys[];
struct msgbuf *msgbufp;
+/*
+ * Physical address of the EFI System Table. Stashed from the metadata hints
+ * passed into the kernel and used by the EFI code to call runtime services.
+ */
+vm_paddr_t efi_systbl;
+
/* Intel ICH registers */
#define ICH_PMBASE 0x400
#define ICH_SMI_EN ICH_PMBASE + 0x30
@@ -1495,6 +1501,7 @@ native_parse_preload_data(u_int64_t modulep)
ksym_end = MD_FETCH(kmdp, MODINFOMD_ESYM, uintptr_t);
db_fetch_ksymtab(ksym_start, ksym_end);
#endif
+ efi_systbl = MD_FETCH(kmdp, MODINFOMD_FW_HANDLE, vm_paddr_t);
return (kmdp);
}
@@ -1615,6 +1622,8 @@ hammer_time(u_int64_t modulep, u_int64_t physfree)
/*
* Use vt(4) by default for UEFI boot (during the sc(4)/vt(4)
* transition).
+ * Once bootblocks have updated, we can test directly for
+ * efi_systbl != NULL here...
*/
if (preload_search_info(kmdp, MODINFO_METADATA | MODINFOMD_EFI_MAP)
!= NULL)
diff --git a/sys/sys/efi.h b/sys/sys/efi.h
index 4c5d937..a4ffeb0 100644
--- a/sys/sys/efi.h
+++ b/sys/sys/efi.h
@@ -151,4 +151,5 @@ struct efi_systbl {
uint64_t st_cfgtbl;
};
+extern vm_paddr_t efi_systbl;
#endif /* _SYS_EFI_H_ */
OpenPOWER on IntegriCloud