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