VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/FirmwareNew/MdePkg/Include/Pi/PiHob.h@ 105670

Last change on this file since 105670 was 105670, checked in by vboxsync, 8 months ago

Devices/EFI/FirmwareNew: Merge edk2-stable-202405 and make it build on aarch64, bugref:4643

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

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette