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