iPXE
UefiBaseType.h
Go to the documentation of this file.
1 /** @file
2  Defines data types and constants introduced in UEFI.
3 
4 Copyright (c) 2006 - 2021, Intel Corporation. All rights reserved.<BR>
5 Portions copyright (c) 2011 - 2016, ARM Ltd. All rights reserved.<BR>
6 Copyright (c) 2020, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>
7 Copyright (c) 2022, Loongson Technology Corporation Limited. All rights reserved.<BR>
8 
9 SPDX-License-Identifier: BSD-2-Clause-Patent
10 
11 **/
12 
13 #ifndef __UEFI_BASETYPE_H__
14 #define __UEFI_BASETYPE_H__
15 
16 FILE_LICENCE ( BSD2_PATENT );
17 FILE_SECBOOT ( PERMITTED );
18 
19 #include <ipxe/efi/Base.h>
20 
21 //
22 // Basic data type definitions introduced in UEFI.
23 //
24 
25 ///
26 /// 128-bit buffer containing a unique identifier value.
27 ///
28 typedef GUID EFI_GUID;
29 ///
30 /// Function return status for EFI API.
31 ///
33 ///
34 /// A collection of related interfaces.
35 ///
36 typedef VOID *EFI_HANDLE;
37 ///
38 /// Handle to an event structure.
39 ///
40 typedef VOID *EFI_EVENT;
41 ///
42 /// Task priority level.
43 ///
44 typedef UINTN EFI_TPL;
45 ///
46 /// Logical block address.
47 ///
48 typedef UINT64 EFI_LBA;
49 
50 ///
51 /// 64-bit physical memory address.
52 ///
54 
55 ///
56 /// 64-bit virtual memory address.
57 ///
59 
60 ///
61 /// EFI Time Abstraction:
62 /// Year: 1900 - 9999
63 /// Month: 1 - 12
64 /// Day: 1 - 31
65 /// Hour: 0 - 23
66 /// Minute: 0 - 59
67 /// Second: 0 - 59
68 /// Nanosecond: 0 - 999,999,999
69 /// TimeZone: -1440 to 1440 or 2047
70 ///
71 typedef struct {
83 } EFI_TIME;
84 
85 ///
86 /// 4-byte buffer. An IPv4 internet protocol address.
87 ///
89 
90 ///
91 /// 16-byte buffer. An IPv6 internet protocol address.
92 ///
94 
95 ///
96 /// 32-byte buffer containing a network Media Access Control address.
97 ///
98 typedef struct {
99  UINT8 Addr[32];
101 
102 ///
103 /// 16-byte buffer aligned on a 4-byte boundary.
104 /// An IPv4 or IPv6 internet protocol address.
105 ///
106 typedef union {
107  UINT32 Addr[4];
111 
112 ///
113 /// Enumeration of EFI_STATUS.
114 ///@{
115 #define EFI_SUCCESS RETURN_SUCCESS
116 #define EFI_LOAD_ERROR RETURN_LOAD_ERROR
117 #define EFI_INVALID_PARAMETER RETURN_INVALID_PARAMETER
118 #define EFI_UNSUPPORTED RETURN_UNSUPPORTED
119 #define EFI_BAD_BUFFER_SIZE RETURN_BAD_BUFFER_SIZE
120 #define EFI_BUFFER_TOO_SMALL RETURN_BUFFER_TOO_SMALL
121 #define EFI_NOT_READY RETURN_NOT_READY
122 #define EFI_DEVICE_ERROR RETURN_DEVICE_ERROR
123 #define EFI_WRITE_PROTECTED RETURN_WRITE_PROTECTED
124 #define EFI_OUT_OF_RESOURCES RETURN_OUT_OF_RESOURCES
125 #define EFI_VOLUME_CORRUPTED RETURN_VOLUME_CORRUPTED
126 #define EFI_VOLUME_FULL RETURN_VOLUME_FULL
127 #define EFI_NO_MEDIA RETURN_NO_MEDIA
128 #define EFI_MEDIA_CHANGED RETURN_MEDIA_CHANGED
129 #define EFI_NOT_FOUND RETURN_NOT_FOUND
130 #define EFI_ACCESS_DENIED RETURN_ACCESS_DENIED
131 #define EFI_NO_RESPONSE RETURN_NO_RESPONSE
132 #define EFI_NO_MAPPING RETURN_NO_MAPPING
133 #define EFI_TIMEOUT RETURN_TIMEOUT
134 #define EFI_NOT_STARTED RETURN_NOT_STARTED
135 #define EFI_ALREADY_STARTED RETURN_ALREADY_STARTED
136 #define EFI_ABORTED RETURN_ABORTED
137 #define EFI_ICMP_ERROR RETURN_ICMP_ERROR
138 #define EFI_TFTP_ERROR RETURN_TFTP_ERROR
139 #define EFI_PROTOCOL_ERROR RETURN_PROTOCOL_ERROR
140 #define EFI_INCOMPATIBLE_VERSION RETURN_INCOMPATIBLE_VERSION
141 #define EFI_SECURITY_VIOLATION RETURN_SECURITY_VIOLATION
142 #define EFI_CRC_ERROR RETURN_CRC_ERROR
143 #define EFI_END_OF_MEDIA RETURN_END_OF_MEDIA
144 #define EFI_END_OF_FILE RETURN_END_OF_FILE
145 #define EFI_INVALID_LANGUAGE RETURN_INVALID_LANGUAGE
146 #define EFI_COMPROMISED_DATA RETURN_COMPROMISED_DATA
147 #define EFI_IP_ADDRESS_CONFLICT RETURN_IP_ADDRESS_CONFLICT
148 #define EFI_HTTP_ERROR RETURN_HTTP_ERROR
149 
150 #define EFI_WARN_UNKNOWN_GLYPH RETURN_WARN_UNKNOWN_GLYPH
151 #define EFI_WARN_DELETE_FAILURE RETURN_WARN_DELETE_FAILURE
152 #define EFI_WARN_WRITE_FAILURE RETURN_WARN_WRITE_FAILURE
153 #define EFI_WARN_BUFFER_TOO_SMALL RETURN_WARN_BUFFER_TOO_SMALL
154 #define EFI_WARN_STALE_DATA RETURN_WARN_STALE_DATA
155 #define EFI_WARN_FILE_SYSTEM RETURN_WARN_FILE_SYSTEM
156 #define EFI_WARN_RESET_REQUIRED RETURN_WARN_RESET_REQUIRED
157 ///@}
158 
159 ///
160 /// Define macro to encode the status code.
161 ///
162 #define EFIERR(_a) ENCODE_ERROR(_a)
163 
164 #define EFI_ERROR(A) RETURN_ERROR(A)
165 
166 ///
167 /// ICMP error definitions
168 ///@{
169 #define EFI_NETWORK_UNREACHABLE EFIERR(100)
170 #define EFI_HOST_UNREACHABLE EFIERR(101)
171 #define EFI_PROTOCOL_UNREACHABLE EFIERR(102)
172 #define EFI_PORT_UNREACHABLE EFIERR(103)
173 ///@}
174 
175 ///
176 /// Tcp connection status definitions
177 ///@{
178 #define EFI_CONNECTION_FIN EFIERR(104)
179 #define EFI_CONNECTION_RESET EFIERR(105)
180 #define EFI_CONNECTION_REFUSED EFIERR(106)
181 ///@}
182 
183 //
184 // The EFI memory allocation functions work in units of EFI_PAGEs that are
185 // 4KB. This should in no way be confused with the page size of the processor.
186 // An EFI_PAGE is just the quanta of memory in EFI.
187 //
188 #define EFI_PAGE_SIZE SIZE_4KB
189 #define EFI_PAGE_MASK 0xFFF
190 #define EFI_PAGE_SHIFT 12
191 
192 /**
193  Macro that converts a size, in bytes, to a number of EFI_PAGESs.
194 
195  @param Size A size in bytes. This parameter is assumed to be type UINTN.
196  Passing in a parameter that is larger than UINTN may produce
197  unexpected results.
198 
199  @return The number of EFI_PAGESs associated with the number of bytes specified
200  by Size.
201 
202 **/
203 #define EFI_SIZE_TO_PAGES(Size) (((Size) >> EFI_PAGE_SHIFT) + (((Size) & EFI_PAGE_MASK) ? 1 : 0))
204 
205 /**
206  Macro that converts a number of EFI_PAGEs to a size in bytes.
207 
208  @param Pages The number of EFI_PAGES. This parameter is assumed to be
209  type UINTN. Passing in a parameter that is larger than
210  UINTN may produce unexpected results.
211 
212  @return The number of bytes associated with the number of EFI_PAGEs specified
213  by Pages.
214 
215 **/
216 #define EFI_PAGES_TO_SIZE(Pages) ((Pages) << EFI_PAGE_SHIFT)
217 
218 ///
219 /// PE32+ Machine type for IA32 UEFI images.
220 ///
221 #define EFI_IMAGE_MACHINE_IA32 0x014C
222 
223 ///
224 /// PE32+ Machine type for IA64 UEFI images.
225 ///
226 #define EFI_IMAGE_MACHINE_IA64 0x0200
227 
228 ///
229 /// PE32+ Machine type for EBC UEFI images.
230 ///
231 #define EFI_IMAGE_MACHINE_EBC 0x0EBC
232 
233 ///
234 /// PE32+ Machine type for X64 UEFI images.
235 ///
236 #define EFI_IMAGE_MACHINE_X64 0x8664
237 
238 ///
239 /// PE32+ Machine type for AARCH64 A64 images.
240 ///
241 #define EFI_IMAGE_MACHINE_AARCH64 0xAA64
242 
243 ///
244 /// PE32+ Machine type for RISC-V 32/64/128
245 ///
246 #define EFI_IMAGE_MACHINE_RISCV32 0x5032
247 #define EFI_IMAGE_MACHINE_RISCV64 0x5064
248 #define EFI_IMAGE_MACHINE_RISCV128 0x5128
249 
250 ///
251 /// PE32+ Machine type for LoongArch 32/64 images.
252 ///
253 #define EFI_IMAGE_MACHINE_LOONGARCH32 0x6232
254 #define EFI_IMAGE_MACHINE_LOONGARCH64 0x6264
255 
256 #if !defined (EFI_IMAGE_MACHINE_TYPE_VALUE) && !defined (EFI_IMAGE_MACHINE_CROSS_TYPE_VALUE)
257  #if defined (MDE_CPU_IA32)
258 
259 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \
260  ((Machine) == EFI_IMAGE_MACHINE_IA32)
261 
262 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_X64)
263 
264  #elif defined (MDE_CPU_X64)
265 
266 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \
267  ((Machine) == EFI_IMAGE_MACHINE_X64)
268 
269 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_IA32)
270 
271  #elif defined (MDE_CPU_AARCH64)
272 
273 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \
274  ((Machine) == EFI_IMAGE_MACHINE_AARCH64)
275 
276 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) (FALSE)
277 
278  #elif defined (MDE_CPU_RISCV64)
279 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \
280  ((Machine) == EFI_IMAGE_MACHINE_RISCV64)
281 
282 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) (FALSE)
283 
284  #elif defined (MDE_CPU_LOONGARCH64)
285 
286 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \
287  ((Machine) == EFI_IMAGE_MACHINE_LOONGARCH64)
288 
289 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) (FALSE)
290 
291  #elif defined (MDE_CPU_EBC)
292 
293 ///
294 /// This is just to make sure you can cross compile with the EBC compiler.
295 /// It does not make sense to have a PE loader coded in EBC.
296 ///
297 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_EBC)
298 
299 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) (FALSE)
300 
301  #else
302  #error Unknown Processor Type
303  #endif
304 #else
305  #if defined (EFI_IMAGE_MACHINE_TYPE_VALUE)
306 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_TYPE_VALUE)
307  #else
308 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) (FALSE)
309  #endif
310  #if defined (EFI_IMAGE_MACHINE_CROSS_TYPE_VALUE)
311 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_CROSS_TYPE_VALUE)
312  #else
313 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) (FALSE)
314  #endif
315 #endif
316 
317 #endif
128 bit buffer containing a unique identifier value.
Definition: Base.h:216
32-byte buffer containing a network Media Access Control address.
Definition: UefiBaseType.h:98
VOID * EFI_EVENT
Handle to an event structure.
Definition: UefiBaseType.h:40
unsigned int UINT32
Definition: ProcessorBind.h:99
unsigned char UINT8
UINT64 EFI_PHYSICAL_ADDRESS
64-bit physical memory address.
Definition: UefiBaseType.h:53
EFI_IPv4_ADDRESS v4
Definition: UefiBaseType.h:108
IPv6_ADDRESS EFI_IPv6_ADDRESS
16-byte buffer.
Definition: UefiBaseType.h:93
UINT8 Pad2
Definition: UefiBaseType.h:82
UINT8 Day
Definition: UefiBaseType.h:74
16-byte buffer.
Definition: Base.h:233
UINT8 Minute
Definition: UefiBaseType.h:76
16-byte buffer aligned on a 4-byte boundary.
Definition: UefiBaseType.h:106
UINT64 EFI_LBA
Logical block address.
Definition: UefiBaseType.h:48
UINT8 Pad1
Definition: UefiBaseType.h:78
UINT8 Second
Definition: UefiBaseType.h:77
UINT32 Nanosecond
Definition: UefiBaseType.h:79
4-byte buffer.
Definition: Base.h:226
UINT8 Hour
Definition: UefiBaseType.h:75
short INT16
unsigned short UINT16
FILE_SECBOOT(PERMITTED)
FILE_LICENCE(BSD2_PATENT)
UINT16 Year
Definition: UefiBaseType.h:72
INT16 TimeZone
Definition: UefiBaseType.h:80
UINT64 UINTN
Unsigned value of native width.
EFI_IPv6_ADDRESS v6
Definition: UefiBaseType.h:109
#define VOID
Undeclared type.
Definition: Base.h:272
unsigned long long UINT64
Definition: ProcessorBind.h:97
IPv4_ADDRESS EFI_IPv4_ADDRESS
4-byte buffer.
Definition: UefiBaseType.h:88
UINT8 Month
Definition: UefiBaseType.h:73
EFI Time Abstraction: Year: 1900 - 9999 Month: 1 - 12 Day: 1 - 31 Hour: 0 - 23 Minute: 0 - 59 Second:...
Definition: UefiBaseType.h:71
VOID * EFI_HANDLE
A collection of related interfaces.
Definition: UefiBaseType.h:36
UINTN EFI_TPL
Task priority level.
Definition: UefiBaseType.h:44
GUID EFI_GUID
128-bit buffer containing a unique identifier value.
Definition: UefiBaseType.h:28
RETURN_STATUS EFI_STATUS
Function return status for EFI API.
Definition: UefiBaseType.h:32
UINTN RETURN_STATUS
Definition: Base.h:1029
UINT8 Daylight
Definition: UefiBaseType.h:81
Root include file for Mde Package Base type modules.
UINT64 EFI_VIRTUAL_ADDRESS
64-bit virtual memory address.
Definition: UefiBaseType.h:58