aboutsummaryrefslogtreecommitdiff
path: root/lib/std/os/uefi/tables/system_table.zig
diff options
context:
space:
mode:
Diffstat (limited to 'lib/std/os/uefi/tables/system_table.zig')
-rw-r--r--lib/std/os/uefi/tables/system_table.zig46
1 files changed, 46 insertions, 0 deletions
diff --git a/lib/std/os/uefi/tables/system_table.zig b/lib/std/os/uefi/tables/system_table.zig
new file mode 100644
index 0000000000..23140f984e
--- /dev/null
+++ b/lib/std/os/uefi/tables/system_table.zig
@@ -0,0 +1,46 @@
+const uefi = @import("std").os.uefi;
+const BootServices = uefi.tables.BootServices;
+const ConfigurationTable = uefi.tables.ConfigurationTable;
+const Handle = uefi.Handle;
+const RuntimeServices = uefi.tables.RuntimeServices;
+const SimpleTextInputExProtocol = uefi.protocols.SimpleTextInputExProtocol;
+const SimpleTextOutputProtocol = uefi.protocols.SimpleTextOutputProtocol;
+const TableHeader = uefi.tables.TableHeader;
+
+/// UEFI Specification, Version 2.8, 4.3
+///
+/// As the system_table may grow with new UEFI versions, it is important to check hdr.header_size.
+///
+/// After successfully calling boot_services.exitBootServices, console_in_handle,
+/// con_in, console_out_handle, con_out, standard_error_handle, std_err, and
+/// boot_services should be set to null. After setting these attributes to null,
+/// hdr.crc32 must be recomputed. See UEFI Specification, Version 2.8, 7.4.
+pub const SystemTable = extern struct {
+ hdr: TableHeader,
+ firmware_vendor: *u16,
+ firmware_revision: u32,
+ console_in_handle: ?Handle,
+ con_in: ?*SimpleTextInputExProtocol,
+ console_out_handle: ?Handle,
+ con_out: ?*SimpleTextOutputProtocol,
+ standard_error_handle: ?Handle,
+ std_err: ?*SimpleTextOutputProtocol,
+ runtime_services: *RuntimeServices,
+ boot_services: ?*BootServices,
+ number_of_table_entries: usize,
+ configuration_table: *ConfigurationTable,
+
+ pub const signature: u64 = 0x5453595320494249;
+ pub const revision_1_02: u32 = (1 << 16) | 2;
+ pub const revision_1_10: u32 = (1 << 16) | 10;
+ pub const revision_2_00: u32 = (2 << 16);
+ pub const revision_2_10: u32 = (2 << 16) | 10;
+ pub const revision_2_20: u32 = (2 << 16) | 20;
+ pub const revision_2_30: u32 = (2 << 16) | 30;
+ pub const revision_2_31: u32 = (2 << 16) | 31;
+ pub const revision_2_40: u32 = (2 << 16) | 40;
+ pub const revision_2_50: u32 = (2 << 16) | 50;
+ pub const revision_2_60: u32 = (2 << 16) | 60;
+ pub const revision_2_70: u32 = (2 << 16) | 70;
+ pub const revision_2_80: u32 = (2 << 16) | 80;
+};