2 * This file and its contents are supplied under the terms of the
3 * Common Development and Distribution License ("CDDL"), version 1.0.
4 * You may only use this file in accordance with the terms of version
7 * A full copy of the text of the CDDL should have accompanied this
8 * source. A copy of the CDDL is also available via the Internet at
9 * http://www.illumos.org/license/CDDL.
13 * Copyright 2016 Toomas Soome <tsoome@me.com>
20 * UEFI related data. Based on UEFI 2.5 specs.
30 #define EFI_GLOBAL_VARIABLE \
31 { 0x8be4df61, 0x93ca, 0x11d2, 0xaa, 0x0d, \
32 { 0x00, 0xe0, 0x98, 0x03, 0x2b, 0x8c } }
34 #define MPS_TABLE_GUID \
35 { 0xeb9d2d2f, 0x2d88, 0x11d3, 0x9a, 0x16, \
36 { 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d } }
38 #define ACPI_10_TABLE_GUID \
39 { 0xeb9d2d30, 0x2d88, 0x11d3, 0x9a, 0x16, \
40 { 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d } }
42 #define EFI_ACPI_TABLE_GUID \
43 { 0x8868e871, 0xe4f1, 0x11d3, 0xbc, 0x22, \
44 { 0x00, 0x80, 0xc7, 0x3c, 0x88, 0x81 } }
46 #define SMBIOS_TABLE_GUID \
47 { 0xeb9d2d31, 0x2d88, 0x11d3, 0x9a, 0x16, \
48 { 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d } }
50 #define SAL_SYSTEM_TABLE_GUID \
51 { 0xeb9d2d32, 0x2d88, 0x11d3, 0x9a, 0x16, \
52 { 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d } }
54 #define SMBIOS3_TABLE_GUID \
55 { 0xf2fd1544, 0x9794, 0x4a2c, 0x99, 0x2e, \
56 { 0xe5, 0xbb, 0xcf, 0x20, 0xe3, 0x94 } }
58 #define FDT_TABLE_GUID \
59 { 0xb1b621d5, 0xf19c, 0x41a5, 0x83, 0x0b, \
60 { 0xd9, 0x15, 0x2c, 0x69, 0xaa, 0xe0 } }
62 #define DXE_SERVICES_TABLE_GUID \
63 { 0x5ad34ba, 0x6f02, 0x4214, 0x95, 0x2e, \
64 { 0x4d, 0xa0, 0x39, 0x8e, 0x2b, 0xb9 } }
66 #define HOB_LIST_TABLE_GUID \
67 { 0x7739f24c, 0x93d7, 0x11d4, 0x9a, 0x3a, \
68 { 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d } }
70 #define MEMORY_TYPE_INFORMATION_TABLE_GUID \
71 { 0x4c19049f, 0x4137, 0x4dd3, 0x9c, 0x10, \
72 { 0x8b, 0x97, 0xa8, 0x3f, 0xfd, 0xfa } }
74 #define DEBUG_IMAGE_INFO_TABLE_GUID \
75 { 0x49152e77, 0x1ada, 0x4764, 0xb7, 0xa2, \
76 { 0x7a, 0xfe, 0xfe, 0xd9, 0x5e, 0x8b } }
78 #define EFI_PROPERTIES_TABLE_GUID \
79 { 0x880aaca3, 0x4adc, 0x4a04, 0x90, 0x79, \
80 { 0xb7, 0x47, 0x34, 0x8, 0x25, 0xe5 } }
82 typedef struct uuid efi_guid_t
__aligned(8);
85 typedef uint64_t EFI_PHYSICAL_ADDRESS
;
86 typedef uint64_t EFI_VIRTUAL_ADDRESS
;
89 * EFI_MEMORY_TYPE enum is defined in UEFI v2.7 page 185.
92 EfiReservedMemoryType
,
97 EfiRuntimeServicesCode
,
98 EfiRuntimeServicesData
,
99 EfiConventionalMemory
,
101 EfiACPIReclaimMemory
,
104 EfiMemoryMappedIOPortSpace
,
110 /* Possible caching types for the memory range */
111 #define EFI_MEMORY_UC 0x0000000000000001
112 #define EFI_MEMORY_WC 0x0000000000000002
113 #define EFI_MEMORY_WT 0x0000000000000004
114 #define EFI_MEMORY_WB 0x0000000000000008
115 #define EFI_MEMORY_UCE 0x0000000000000010
117 /* Physical memory protection on range */
118 #define EFI_MEMORY_WP 0x0000000000001000
119 #define EFI_MEMORY_RP 0x0000000000002000
120 #define EFI_MEMORY_XP 0x0000000000004000
121 #define EFI_MEMORY_NV 0x0000000000008000
122 #define EFI_MEMORY_MORE_RELIABLE 0x0000000000010000
123 #define EFI_MEMORY_RO 0x0000000000020000
125 /* Range requires a runtime mapping */
126 #define EFI_MEMORY_RUNTIME 0x8000000000000000
128 #define EFI_MEMORY_DESCRIPTOR_VERSION 1
131 EFI_PHYSICAL_ADDRESS PhysicalStart
;
133 EFI_VIRTUAL_ADDRESS VirtualStart
;
134 uint64_t NumberOfPages
;
136 } __packed EFI_MEMORY_DESCRIPTOR
;
149 * The upper 16 bits of the revision contain the major revision value,
150 * and the lower 16 bits contain the minor revision value. The minor revision
151 * values are binary coded decimals and are limited to the range of 00..99.
152 * If the lower digit of the minor revision is 0, the version is printed as:
153 * major.minor upper decimal
154 * Otherwise the version is printed as:
155 * major.minor upper decimal.minor lower decimal
157 #define EFI_REV(x, y) (((x) << 16) || (y))
158 #define EFI_REV_MAJOR(x) (((x) >> 16) & 0xffff)
159 #define EFI_REV_MINOR(x) ((x) & 0xffff)
160 #define EFI_SYSTEM_TABLE_SIGNATURE 0x5453595320494249
162 typedef uint32_t efiptr32_t
;
163 typedef uint64_t efiptr64_t
;
165 typedef struct _EFI_CONFIGURATION_TABLE32
{
166 efi_guid_t VendorGuid
;
167 efiptr32_t VendorTable
;
168 } __packed EFI_CONFIGURATION_TABLE32
;
170 typedef struct _EFI_CONFIGURATION_TABLE64
{
171 efi_guid_t VendorGuid
;
172 efiptr64_t VendorTable
;
173 } __packed EFI_CONFIGURATION_TABLE64
;
175 typedef struct _EFI_SYSTEM_TABLE32
{
176 EFI_TABLE_HEADER Hdr
;
178 efiptr32_t FirmwareVendor
;
179 uint32_t FirmwareRevision
;
181 efiptr32_t ConsoleInHandle
;
184 efiptr32_t ConsoleOutHandle
;
187 efiptr32_t StandardErrorHandle
;
190 efiptr32_t RuntimeServices
;
191 efiptr32_t BootServices
;
193 uint32_t NumberOfTableEntries
;
194 efiptr32_t ConfigurationTable
;
195 } __packed EFI_SYSTEM_TABLE32
;
197 typedef struct _EFI_SYSTEM_TABLE64
{
198 EFI_TABLE_HEADER Hdr
;
200 efiptr64_t FirmwareVendor
;
201 uint32_t FirmwareRevision
;
204 efiptr64_t ConsoleInHandle
;
207 efiptr64_t ConsoleOutHandle
;
210 efiptr64_t StandardErrorHandle
;
213 efiptr64_t RuntimeServices
;
214 efiptr64_t BootServices
;
216 uint64_t NumberOfTableEntries
;
217 efiptr64_t ConfigurationTable
;
218 } __packed EFI_SYSTEM_TABLE64
;
224 #endif /* _SYS_EFI_H */