iPXE
PiHob.h
Go to the documentation of this file.
1/** @file
2 HOB related definitions in PI.
3
4Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.<BR>
5SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 @par Revision Reference:
8 PI Version 1.9
9
10**/
11
12#pragma once
13
14FILE_LICENCE ( BSD2_PATENT );
15FILE_SECBOOT ( PERMITTED );
16
17//
18// HobType of EFI_HOB_GENERIC_HEADER.
19//
20#define EFI_HOB_TYPE_HANDOFF 0x0001
21#define EFI_HOB_TYPE_MEMORY_ALLOCATION 0x0002
22#define EFI_HOB_TYPE_RESOURCE_DESCRIPTOR 0x0003
23#define EFI_HOB_TYPE_GUID_EXTENSION 0x0004
24#define EFI_HOB_TYPE_FV 0x0005
25#define EFI_HOB_TYPE_CPU 0x0006
26#define EFI_HOB_TYPE_MEMORY_POOL 0x0007
27#define EFI_HOB_TYPE_FV2 0x0009
28#define EFI_HOB_TYPE_LOAD_PEIM_UNUSED 0x000A
29#define EFI_HOB_TYPE_UEFI_CAPSULE 0x000B
30#define EFI_HOB_TYPE_FV3 0x000C
31#define EFI_HOB_TYPE_UNUSED 0xFFFE
32#define EFI_HOB_TYPE_END_OF_HOB_LIST 0xFFFF
33
34///
35/// Describes the format and size of the data inside the HOB.
36/// All HOBs must contain this generic HOB header.
37///
38typedef struct {
39 ///
40 /// Identifies the HOB data structure type.
41 ///
43 ///
44 /// The length in bytes of the HOB.
45 ///
47 ///
48 /// This field must always be set to zero.
49 ///
52
53///
54/// Value of version in EFI_HOB_HANDOFF_INFO_TABLE.
55///
56#define EFI_HOB_HANDOFF_TABLE_VERSION 0x0009
57
58///
59/// Contains general state information used by the HOB producer phase.
60/// This HOB must be the first one in the HOB list.
61///
62typedef struct {
63 ///
64 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_HANDOFF.
65 ///
67 ///
68 /// The version number pertaining to the PHIT HOB definition.
69 /// This value is four bytes in length to provide an 8-byte aligned entry
70 /// when it is combined with the 4-byte BootMode.
71 ///
73 ///
74 /// The system boot mode as determined during the HOB producer phase.
75 ///
77 ///
78 /// The highest address location of memory that is allocated for use by the HOB producer
79 /// phase. This address must be 4-KB aligned to meet page restrictions of UEFI.
80 ///
82 ///
83 /// The lowest address location of memory that is allocated for use by the HOB producer phase.
84 ///
86 ///
87 /// The highest address location of free memory that is currently available
88 /// for use by the HOB producer phase.
89 ///
91 ///
92 /// The lowest address location of free memory that is available for use by the HOB producer phase.
93 ///
95 ///
96 /// The end of the HOB list.
97 ///
100
101///
102/// EFI_HOB_MEMORY_ALLOCATION_HEADER describes the
103/// various attributes of the logical memory allocation. The type field will be used for
104/// subsequent inclusion in the UEFI memory map.
105///
106typedef struct {
107 ///
108 /// A GUID that defines the memory allocation region's type and purpose, as well as
109 /// other fields within the memory allocation HOB. This GUID is used to define the
110 /// additional data within the HOB that may be present for the memory allocation HOB.
111 /// Type EFI_GUID is defined in InstallProtocolInterface() in the UEFI 2.0
112 /// specification.
113 ///
115
116 ///
117 /// The base address of memory allocated by this HOB. Type
118 /// EFI_PHYSICAL_ADDRESS is defined in AllocatePages() in the UEFI 2.0
119 /// specification.
120 ///
122
123 ///
124 /// The length in bytes of memory allocated by this HOB.
125 ///
127
128 ///
129 /// Defines the type of memory allocated by this HOB. The memory type definition
130 /// follows the EFI_MEMORY_TYPE definition. Type EFI_MEMORY_TYPE is defined
131 /// in AllocatePages() in the UEFI 2.0 specification.
132 ///
134
135 ///
136 /// Padding for Itanium processor family
137 ///
140
141///
142/// Describes all memory ranges used during the HOB producer
143/// phase that exist outside the HOB list. This HOB type
144/// describes how memory is used, not the physical attributes of memory.
145///
146typedef struct {
147 ///
148 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_MEMORY_ALLOCATION.
149 ///
151 ///
152 /// An instance of the EFI_HOB_MEMORY_ALLOCATION_HEADER that describes the
153 /// various attributes of the logical memory allocation.
154 ///
156 //
157 // Additional data pertaining to the "Name" Guid memory
158 // may go here.
159 //
161
162///
163/// Describes the memory stack that is produced by the HOB producer
164/// phase and upon which all post-memory-installed executable
165/// content in the HOB producer phase is executing.
166///
167typedef struct {
168 ///
169 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_MEMORY_ALLOCATION.
170 ///
172 ///
173 /// An instance of the EFI_HOB_MEMORY_ALLOCATION_HEADER that describes the
174 /// various attributes of the logical memory allocation.
175 ///
178
179///
180/// Defines the location of the boot-strap
181/// processor (BSP) BSPStore ("Backing Store Pointer Store").
182/// This HOB is valid for the Itanium processor family only
183/// register overflow store.
184///
185typedef struct {
186 ///
187 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_MEMORY_ALLOCATION.
188 ///
190 ///
191 /// An instance of the EFI_HOB_MEMORY_ALLOCATION_HEADER that describes the
192 /// various attributes of the logical memory allocation.
193 ///
196
197///
198/// Defines the location and entry point of the HOB consumer phase.
199///
200typedef struct {
201 ///
202 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_MEMORY_ALLOCATION.
203 ///
205 ///
206 /// An instance of the EFI_HOB_MEMORY_ALLOCATION_HEADER that describes the
207 /// various attributes of the logical memory allocation.
208 ///
210 ///
211 /// The GUID specifying the values of the firmware file system name
212 /// that contains the HOB consumer phase component.
213 ///
215 ///
216 /// The address of the memory-mapped firmware volume
217 /// that contains the HOB consumer phase firmware file.
218 ///
221
222///
223/// The resource type.
224///
226
227//
228// Value of ResourceType in EFI_HOB_RESOURCE_DESCRIPTOR.
229//
230#define EFI_RESOURCE_SYSTEM_MEMORY 0x00000000
231#define EFI_RESOURCE_MEMORY_MAPPED_IO 0x00000001
232#define EFI_RESOURCE_IO 0x00000002
233#define EFI_RESOURCE_FIRMWARE_DEVICE 0x00000003
234#define EFI_RESOURCE_MEMORY_MAPPED_IO_PORT 0x00000004
235#define EFI_RESOURCE_MEMORY_RESERVED 0x00000005
236#define EFI_RESOURCE_IO_RESERVED 0x00000006
237#define EFI_RESOURCE_MEMORY_UNACCEPTED 0x00000007
238#define EFI_RESOURCE_MAX_MEMORY_TYPE 0x00000008
239
240///
241/// A type of recount attribute type.
242///
244
245//
246// These types can be ORed together as needed.
247//
248// The following attributes are used to describe settings
249//
250#define EFI_RESOURCE_ATTRIBUTE_PRESENT 0x00000001
251#define EFI_RESOURCE_ATTRIBUTE_INITIALIZED 0x00000002
252#define EFI_RESOURCE_ATTRIBUTE_TESTED 0x00000004
253#define EFI_RESOURCE_ATTRIBUTE_READ_PROTECTED 0x00000080
254//
255// This is typically used as memory cacheability attribute today.
256// NOTE: Since PI spec 1.4, please use EFI_RESOURCE_ATTRIBUTE_READ_ONLY_PROTECTED
257// as Physical write protected attribute, and EFI_RESOURCE_ATTRIBUTE_WRITE_PROTECTED
258// means Memory cacheability attribute: The memory supports being programmed with
259// a writeprotected cacheable attribute.
260//
261#define EFI_RESOURCE_ATTRIBUTE_WRITE_PROTECTED 0x00000100
262#define EFI_RESOURCE_ATTRIBUTE_EXECUTION_PROTECTED 0x00000200
263#define EFI_RESOURCE_ATTRIBUTE_PERSISTENT 0x00800000
264//
265// The rest of the attributes are used to describe capabilities
266//
267#define EFI_RESOURCE_ATTRIBUTE_SINGLE_BIT_ECC 0x00000008
268#define EFI_RESOURCE_ATTRIBUTE_MULTIPLE_BIT_ECC 0x00000010
269#define EFI_RESOURCE_ATTRIBUTE_ECC_RESERVED_1 0x00000020
270#define EFI_RESOURCE_ATTRIBUTE_ECC_RESERVED_2 0x00000040
271#define EFI_RESOURCE_ATTRIBUTE_UNCACHEABLE 0x00000400
272#define EFI_RESOURCE_ATTRIBUTE_WRITE_COMBINEABLE 0x00000800
273#define EFI_RESOURCE_ATTRIBUTE_WRITE_THROUGH_CACHEABLE 0x00001000
274#define EFI_RESOURCE_ATTRIBUTE_WRITE_BACK_CACHEABLE 0x00002000
275#define EFI_RESOURCE_ATTRIBUTE_16_BIT_IO 0x00004000
276#define EFI_RESOURCE_ATTRIBUTE_32_BIT_IO 0x00008000
277#define EFI_RESOURCE_ATTRIBUTE_64_BIT_IO 0x00010000
278#define EFI_RESOURCE_ATTRIBUTE_UNCACHED_EXPORTED 0x00020000
279#define EFI_RESOURCE_ATTRIBUTE_READ_PROTECTABLE 0x00100000
280//
281// This is typically used as memory cacheability attribute today.
282// NOTE: Since PI spec 1.4, please use EFI_RESOURCE_ATTRIBUTE_READ_ONLY_PROTECTABLE
283// as Memory capability attribute: The memory supports being protected from processor
284// writes, and EFI_RESOURCE_ATTRIBUTE_WRITE_PROTEC TABLE means Memory cacheability attribute:
285// The memory supports being programmed with a writeprotected cacheable attribute.
286//
287#define EFI_RESOURCE_ATTRIBUTE_WRITE_PROTECTABLE 0x00200000
288#define EFI_RESOURCE_ATTRIBUTE_EXECUTION_PROTECTABLE 0x00400000
289#define EFI_RESOURCE_ATTRIBUTE_PERSISTABLE 0x01000000
290
291#define EFI_RESOURCE_ATTRIBUTE_READ_ONLY_PROTECTED 0x00040000
292#define EFI_RESOURCE_ATTRIBUTE_READ_ONLY_PROTECTABLE 0x00080000
293
294#define EFI_RESOURCE_ATTRIBUTE_ENCRYPTED 0x04000000
295#define EFI_RESOURCE_ATTRIBUTE_SPECIAL_PURPOSE 0x08000000
296#define EFI_RESOURCE_ATTRIBUTE_HOT_PLUGGABLE 0x10000000
297//
298// Physical memory relative reliability attribute. This
299// memory provides higher reliability relative to other
300// memory in the system. If all memory has the same
301// reliability, then this bit is not used.
302//
303#define EFI_RESOURCE_ATTRIBUTE_MORE_RELIABLE 0x02000000
304
305///
306/// Describes the resource properties of all fixed,
307/// nonrelocatable resource ranges found on the processor
308/// host bus during the HOB producer phase.
309///
310typedef struct {
311 ///
312 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_RESOURCE_DESCRIPTOR.
313 ///
315 ///
316 /// A GUID representing the owner of the resource. This GUID is used by HOB
317 /// consumer phase components to correlate device ownership of a resource.
318 ///
320 ///
321 /// The resource type enumeration as defined by EFI_RESOURCE_TYPE.
322 ///
324 ///
325 /// Resource attributes as defined by EFI_RESOURCE_ATTRIBUTE_TYPE.
326 ///
328 ///
329 /// The physical start address of the resource region.
330 ///
332 ///
333 /// The number of bytes of the resource region.
334 ///
337
338///
339/// Allows writers of executable content in the HOB producer phase to
340/// maintain and manage HOBs with specific GUID.
341///
342typedef struct {
343 ///
344 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_GUID_EXTENSION.
345 ///
347 ///
348 /// A GUID that defines the contents of this HOB.
349 ///
351 //
352 // Guid specific data goes here
353 //
355
356///
357/// Details the location of firmware volumes that contain firmware files.
358///
359typedef struct {
360 ///
361 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_FV.
362 ///
364 ///
365 /// The physical memory-mapped base address of the firmware volume.
366 ///
368 ///
369 /// The length in bytes of the firmware volume.
370 ///
373
374///
375/// Details the location of a firmware volume that was extracted
376/// from a file within another firmware volume.
377///
378typedef struct {
379 ///
380 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_FV2.
381 ///
383 ///
384 /// The physical memory-mapped base address of the firmware volume.
385 ///
387 ///
388 /// The length in bytes of the firmware volume.
389 ///
391 ///
392 /// The name of the firmware volume.
393 ///
395 ///
396 /// The name of the firmware file that contained this firmware volume.
397 ///
400
401///
402/// Details the location of a firmware volume that was extracted
403/// from a file within another firmware volume.
404///
405typedef struct {
406 ///
407 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_FV3.
408 ///
410 ///
411 /// The physical memory-mapped base address of the firmware volume.
412 ///
414 ///
415 /// The length in bytes of the firmware volume.
416 ///
418 ///
419 /// The authentication status.
420 ///
422 ///
423 /// TRUE if the FV was extracted as a file within another firmware volume.
424 /// FALSE otherwise.
425 ///
427 ///
428 /// The name of the firmware volume.
429 /// Valid only if IsExtractedFv is TRUE.
430 ///
432 ///
433 /// The name of the firmware file that contained this firmware volume.
434 /// Valid only if IsExtractedFv is TRUE.
435 ///
438
439///
440/// Describes processor information, such as address space and I/O space capabilities.
441///
442typedef struct {
443 ///
444 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_CPU.
445 ///
447 ///
448 /// Identifies the maximum physical memory addressability of the processor.
449 ///
451 ///
452 /// Identifies the maximum physical I/O addressability of the processor.
453 ///
455 ///
456 /// This field will always be set to zero.
457 ///
460
461///
462/// Describes pool memory allocations.
463///
464typedef struct {
465 ///
466 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_MEMORY_POOL.
467 ///
470
471///
472/// Each UEFI capsule HOB details the location of a UEFI capsule. It includes a base address and length
473/// which is based upon memory blocks with a EFI_CAPSULE_HEADER and the associated
474/// CapsuleImageSize-based payloads. These HOB's shall be created by the PEI PI firmware
475/// sometime after the UEFI UpdateCapsule service invocation with the
476/// CAPSULE_FLAGS_POPULATE_SYSTEM_TABLE flag set in the EFI_CAPSULE_HEADER.
477///
478typedef struct {
479 ///
480 /// The HOB generic header where Header.HobType = EFI_HOB_TYPE_UEFI_CAPSULE.
481 ///
483
484 ///
485 /// The physical memory-mapped base address of an UEFI capsule. This value is set to
486 /// point to the base of the contiguous memory of the UEFI capsule.
487 /// The length of the contiguous memory in bytes.
488 ///
492
493///
494/// Union of all the possible HOB Types.
495///
unsigned short UINT16
2-byte unsigned value.
unsigned char BOOLEAN
Logical Boolean.
unsigned long long UINT64
8-byte unsigned value.
unsigned char UINT8
1-byte unsigned value.
unsigned int UINT32
4-byte unsigned value.
UINT32 EFI_BOOT_MODE
EFI boot mode.
Definition PiBootMode.h:20
UINT32 EFI_RESOURCE_TYPE
The resource type.
Definition PiHob.h:225
UINT32 EFI_RESOURCE_ATTRIBUTE_TYPE
A type of recount attribute type.
Definition PiHob.h:243
UINT64 EFI_PHYSICAL_ADDRESS
64-bit physical memory address.
GUID EFI_GUID
128-bit buffer containing a unique identifier value.
EFI_MEMORY_TYPE
Enumeration of memory types introduced in UEFI.
#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
Describes processor information, such as address space and I/O space capabilities.
Definition PiHob.h:442
UINT8 SizeOfIoSpace
Identifies the maximum physical I/O addressability of the processor.
Definition PiHob.h:454
EFI_HOB_GENERIC_HEADER Header
The HOB generic header.
Definition PiHob.h:446
UINT8 SizeOfMemorySpace
Identifies the maximum physical memory addressability of the processor.
Definition PiHob.h:450
UINT8 Reserved[6]
This field will always be set to zero.
Definition PiHob.h:458
Details the location of a firmware volume that was extracted from a file within another firmware volu...
Definition PiHob.h:378
UINT64 Length
The length in bytes of the firmware volume.
Definition PiHob.h:390
EFI_GUID FvName
The name of the firmware volume.
Definition PiHob.h:394
EFI_PHYSICAL_ADDRESS BaseAddress
The physical memory-mapped base address of the firmware volume.
Definition PiHob.h:386
EFI_GUID FileName
The name of the firmware file that contained this firmware volume.
Definition PiHob.h:398
EFI_HOB_GENERIC_HEADER Header
The HOB generic header.
Definition PiHob.h:382
Details the location of a firmware volume that was extracted from a file within another firmware volu...
Definition PiHob.h:405
EFI_GUID FvName
The name of the firmware volume.
Definition PiHob.h:431
UINT64 Length
The length in bytes of the firmware volume.
Definition PiHob.h:417
BOOLEAN ExtractedFv
TRUE if the FV was extracted as a file within another firmware volume.
Definition PiHob.h:426
UINT32 AuthenticationStatus
The authentication status.
Definition PiHob.h:421
EFI_HOB_GENERIC_HEADER Header
The HOB generic header.
Definition PiHob.h:409
EFI_PHYSICAL_ADDRESS BaseAddress
The physical memory-mapped base address of the firmware volume.
Definition PiHob.h:413
EFI_GUID FileName
The name of the firmware file that contained this firmware volume.
Definition PiHob.h:436
Details the location of firmware volumes that contain firmware files.
Definition PiHob.h:359
EFI_HOB_GENERIC_HEADER Header
The HOB generic header.
Definition PiHob.h:363
EFI_PHYSICAL_ADDRESS BaseAddress
The physical memory-mapped base address of the firmware volume.
Definition PiHob.h:367
UINT64 Length
The length in bytes of the firmware volume.
Definition PiHob.h:371
Describes the format and size of the data inside the HOB.
Definition PiHob.h:38
UINT32 Reserved
This field must always be set to zero.
Definition PiHob.h:50
UINT16 HobLength
The length in bytes of the HOB.
Definition PiHob.h:46
UINT16 HobType
Identifies the HOB data structure type.
Definition PiHob.h:42
Allows writers of executable content in the HOB producer phase to maintain and manage HOBs with speci...
Definition PiHob.h:342
EFI_HOB_GENERIC_HEADER Header
The HOB generic header.
Definition PiHob.h:346
EFI_GUID Name
A GUID that defines the contents of this HOB.
Definition PiHob.h:350
Contains general state information used by the HOB producer phase.
Definition PiHob.h:62
UINT32 Version
The version number pertaining to the PHIT HOB definition.
Definition PiHob.h:72
EFI_BOOT_MODE BootMode
The system boot mode as determined during the HOB producer phase.
Definition PiHob.h:76
EFI_PHYSICAL_ADDRESS EfiFreeMemoryBottom
The lowest address location of free memory that is available for use by the HOB producer phase.
Definition PiHob.h:94
EFI_PHYSICAL_ADDRESS EfiMemoryTop
The highest address location of memory that is allocated for use by the HOB producer phase.
Definition PiHob.h:81
EFI_PHYSICAL_ADDRESS EfiFreeMemoryTop
The highest address location of free memory that is currently available for use by the HOB producer p...
Definition PiHob.h:90
EFI_PHYSICAL_ADDRESS EfiMemoryBottom
The lowest address location of memory that is allocated for use by the HOB producer phase.
Definition PiHob.h:85
EFI_HOB_GENERIC_HEADER Header
The HOB generic header.
Definition PiHob.h:66
EFI_PHYSICAL_ADDRESS EfiEndOfHobList
The end of the HOB list.
Definition PiHob.h:98
Defines the location of the boot-strap processor (BSP) BSPStore ("Backing Store Pointer Store").
Definition PiHob.h:185
EFI_HOB_MEMORY_ALLOCATION_HEADER AllocDescriptor
An instance of the EFI_HOB_MEMORY_ALLOCATION_HEADER that describes the various attributes of the logi...
Definition PiHob.h:194
EFI_HOB_GENERIC_HEADER Header
The HOB generic header.
Definition PiHob.h:189
EFI_HOB_MEMORY_ALLOCATION_HEADER describes the various attributes of the logical memory allocation.
Definition PiHob.h:106
EFI_PHYSICAL_ADDRESS MemoryBaseAddress
The base address of memory allocated by this HOB.
Definition PiHob.h:121
UINT64 MemoryLength
The length in bytes of memory allocated by this HOB.
Definition PiHob.h:126
EFI_GUID Name
A GUID that defines the memory allocation region's type and purpose, as well as other fields within t...
Definition PiHob.h:114
EFI_MEMORY_TYPE MemoryType
Defines the type of memory allocated by this HOB.
Definition PiHob.h:133
UINT8 Reserved[4]
Padding for Itanium processor family.
Definition PiHob.h:138
Defines the location and entry point of the HOB consumer phase.
Definition PiHob.h:200
EFI_PHYSICAL_ADDRESS EntryPoint
The address of the memory-mapped firmware volume that contains the HOB consumer phase firmware file.
Definition PiHob.h:219
EFI_HOB_GENERIC_HEADER Header
The HOB generic header.
Definition PiHob.h:204
EFI_GUID ModuleName
The GUID specifying the values of the firmware file system name that contains the HOB consumer phase ...
Definition PiHob.h:214
EFI_HOB_MEMORY_ALLOCATION_HEADER MemoryAllocationHeader
An instance of the EFI_HOB_MEMORY_ALLOCATION_HEADER that describes the various attributes of the logi...
Definition PiHob.h:209
Describes the memory stack that is produced by the HOB producer phase and upon which all post-memory-...
Definition PiHob.h:167
EFI_HOB_MEMORY_ALLOCATION_HEADER AllocDescriptor
An instance of the EFI_HOB_MEMORY_ALLOCATION_HEADER that describes the various attributes of the logi...
Definition PiHob.h:176
EFI_HOB_GENERIC_HEADER Header
The HOB generic header.
Definition PiHob.h:171
Describes all memory ranges used during the HOB producer phase that exist outside the HOB list.
Definition PiHob.h:146
EFI_HOB_GENERIC_HEADER Header
The HOB generic header.
Definition PiHob.h:150
EFI_HOB_MEMORY_ALLOCATION_HEADER AllocDescriptor
An instance of the EFI_HOB_MEMORY_ALLOCATION_HEADER that describes the various attributes of the logi...
Definition PiHob.h:155
Describes pool memory allocations.
Definition PiHob.h:464
EFI_HOB_GENERIC_HEADER Header
The HOB generic header.
Definition PiHob.h:468
Describes the resource properties of all fixed, nonrelocatable resource ranges found on the processor...
Definition PiHob.h:310
UINT64 ResourceLength
The number of bytes of the resource region.
Definition PiHob.h:335
EFI_HOB_GENERIC_HEADER Header
The HOB generic header.
Definition PiHob.h:314
EFI_PHYSICAL_ADDRESS PhysicalStart
The physical start address of the resource region.
Definition PiHob.h:331
EFI_RESOURCE_TYPE ResourceType
The resource type enumeration as defined by EFI_RESOURCE_TYPE.
Definition PiHob.h:323
EFI_RESOURCE_ATTRIBUTE_TYPE ResourceAttribute
Resource attributes as defined by EFI_RESOURCE_ATTRIBUTE_TYPE.
Definition PiHob.h:327
EFI_GUID Owner
A GUID representing the owner of the resource.
Definition PiHob.h:319
Each UEFI capsule HOB details the location of a UEFI capsule.
Definition PiHob.h:478
EFI_PHYSICAL_ADDRESS BaseAddress
The physical memory-mapped base address of an UEFI capsule.
Definition PiHob.h:489
EFI_HOB_GENERIC_HEADER Header
The HOB generic header where Header.HobType = EFI_HOB_TYPE_UEFI_CAPSULE.
Definition PiHob.h:482
Union of all the possible HOB Types.
Definition PiHob.h:496
EFI_HOB_MEMORY_ALLOCATION_STACK * MemoryAllocationStack
Definition PiHob.h:501
EFI_HOB_CPU * Cpu
Definition PiHob.h:508
EFI_HOB_MEMORY_ALLOCATION_MODULE * MemoryAllocationModule
Definition PiHob.h:502
EFI_HOB_UEFI_CAPSULE * Capsule
Definition PiHob.h:510
EFI_HOB_MEMORY_ALLOCATION_BSP_STORE * MemoryAllocationBspStore
Definition PiHob.h:500
EFI_HOB_FIRMWARE_VOLUME * FirmwareVolume
Definition PiHob.h:505
EFI_HOB_GUID_TYPE * Guid
Definition PiHob.h:504
EFI_HOB_HANDOFF_INFO_TABLE * HandoffInformationTable
Definition PiHob.h:498
EFI_HOB_FIRMWARE_VOLUME2 * FirmwareVolume2
Definition PiHob.h:506
EFI_HOB_MEMORY_POOL * Pool
Definition PiHob.h:509
EFI_HOB_FIRMWARE_VOLUME3 * FirmwareVolume3
Definition PiHob.h:507
EFI_HOB_RESOURCE_DESCRIPTOR * ResourceDescriptor
Definition PiHob.h:503
EFI_HOB_GENERIC_HEADER * Header
Definition PiHob.h:497
EFI_HOB_MEMORY_ALLOCATION * MemoryAllocation
Definition PiHob.h:499