]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Pi/PiHob.h
Add EFI_DISPOSABLE_SECTION type defined in PI 1.2 specification.
[mirror_edk2.git] / MdePkg / Include / Pi / PiHob.h
1 /** @file
2 HOB related definitions in PI.
3
4 Copyright (c) 2006 - 2009, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. 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.0
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 0x000A
33 #define EFI_HOB_TYPE_UNUSED 0xFFFE
34 #define EFI_HOB_TYPE_END_OF_HOB_LIST 0xFFFF
35
36 ///
37 /// Describes the format and size of the data inside the HOB.
38 /// All HOBs must contain this generic HOB header.
39 ///
40 typedef struct {
41 ///
42 /// Identifies the HOB data structure type.
43 ///
44 UINT16 HobType;
45 ///
46 /// The length in bytes of the HOB.
47 ///
48 UINT16 HobLength;
49 ///
50 /// This field must always be set to zero.
51 ///
52 UINT32 Reserved;
53 } EFI_HOB_GENERIC_HEADER;
54
55
56 ///
57 /// Value of version ofinEFI_HOB_HANDOFF_INFO_TABLE.
58 ///
59 #define EFI_HOB_HANDOFF_TABLE_VERSION 0x0009
60
61 ///
62 /// Contains general state information used by the HOB producer phase.
63 /// This HOB must be the first one in the HOB list.
64 ///
65 typedef struct {
66 ///
67 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_HANDOFF.
68 ///
69 EFI_HOB_GENERIC_HEADER Header;
70 ///
71 /// The version number pertaining to the PHIT HOB definition.
72 /// This value is 4 bytes in length to provide an 8-byte aligned entry
73 /// when it is combined with the 4-byte BootMode.
74 ///
75 UINT32 Version;
76 ///
77 /// The system boot mode as determined during the HOB producer phase.
78 ///
79 EFI_BOOT_MODE BootMode;
80 ///
81 /// The highest address location of memory that is allocated for use by the HOB producer
82 /// phase. This address must be 4-KB aligned to meet page restrictions of UEFI.
83 ///
84 EFI_PHYSICAL_ADDRESS EfiMemoryTop;
85 ///
86 /// The lowest address location of memory that is allocated for use by the HOB producer phase.
87 ///
88 EFI_PHYSICAL_ADDRESS EfiMemoryBottom;
89 ///
90 /// The highest address location of free memory that is currently available
91 /// for use by the HOB producer phase.
92 ///
93 EFI_PHYSICAL_ADDRESS EfiFreeMemoryTop;
94 ///
95 /// The lowest address location of free memory that is available for use by the HOB producer phase.
96 ///
97 EFI_PHYSICAL_ADDRESS EfiFreeMemoryBottom;
98 ///
99 /// The end of the HOB list.
100 ///
101 EFI_PHYSICAL_ADDRESS EfiEndOfHobList;
102 } EFI_HOB_HANDOFF_INFO_TABLE;
103
104 ///
105 /// EFI_HOB_MEMORY_ALLOCATION_HEADER describes the
106 /// various attributes of the logical memory allocation. The type field will be used for
107 /// subsequent inclusion in the UEFI memory map.
108 ///
109 typedef struct {
110 ///
111 /// A GUID that defines the memory allocation region's type and purpose, as well as
112 /// other fields within the memory allocation HOB. This GUID is used to define the
113 /// additional data within the HOB that may be present for the memory allocation HOB.
114 /// Type EFI_GUID is defined in InstallProtocolInterface() in the UEFI 2.0
115 /// specification.
116 ///
117 EFI_GUID Name;
118
119 ///
120 /// The base address of memory allocated by this HOB. Type
121 /// EFI_PHYSICAL_ADDRESS is defined in AllocatePages() in the UEFI 2.0
122 /// specification.
123 ///
124 EFI_PHYSICAL_ADDRESS MemoryBaseAddress;
125
126 ///
127 /// The length in bytes of memory allocated by this HOB.
128 ///
129 UINT64 MemoryLength;
130
131 ///
132 /// Defines the type of memory allocated by this HOB. The memory type definition
133 /// follows the EFI_MEMORY_TYPE definition. Type EFI_MEMORY_TYPE is defined
134 /// in AllocatePages() in the UEFI 2.0 specification.
135 ///
136 EFI_MEMORY_TYPE MemoryType;
137
138 ///
139 /// Padding for Itanium processor family
140 ///
141 UINT8 Reserved[4];
142 } EFI_HOB_MEMORY_ALLOCATION_HEADER;
143
144 ///
145 /// Describes all memory ranges used during the HOB producer
146 /// phase that exist outside the HOB list. This HOB type
147 /// describes how memory is used, not the physical attributes of memory.
148 ///
149 typedef struct {
150 ///
151 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_MEMORY_ALLOCATION.
152 ///
153 EFI_HOB_GENERIC_HEADER Header;
154 ///
155 /// An instance of the EFI_HOB_MEMORY_ALLOCATION_HEADER that describes the
156 /// various attributes of the logical memory allocation.
157 ///
158 EFI_HOB_MEMORY_ALLOCATION_HEADER AllocDescriptor;
159 //
160 // Additional data pertaining to the "Name" Guid memory
161 // may go here.
162 //
163 } EFI_HOB_MEMORY_ALLOCATION;
164
165
166 ///
167 /// Describes the memory stack that is produced by the HOB producer
168 /// phase and upon which all postmemory-installed executable
169 /// content in the HOB producer phase is executing.
170 ///
171 typedef struct {
172 ///
173 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_MEMORY_ALLOCATION.
174 ///
175 EFI_HOB_GENERIC_HEADER Header;
176 ///
177 /// An instance of the EFI_HOB_MEMORY_ALLOCATION_HEADER that describes the
178 /// various attributes of the logical memory allocation.
179 ///
180 EFI_HOB_MEMORY_ALLOCATION_HEADER AllocDescriptor;
181 } EFI_HOB_MEMORY_ALLOCATION_STACK;
182
183 ///
184 /// Defines the location of the boot-strap
185 /// processor (BSP) BSPStore ("Backing Store Pointer Store").
186 /// This HOB is valid for the Itanium processor family only
187 /// register overflow store.
188 ///
189 typedef struct {
190 ///
191 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_MEMORY_ALLOCATION.
192 ///
193 EFI_HOB_GENERIC_HEADER Header;
194 ///
195 /// An instance of the EFI_HOB_MEMORY_ALLOCATION_HEADER that describes the
196 /// various attributes of the logical memory allocation.
197 ///
198 EFI_HOB_MEMORY_ALLOCATION_HEADER AllocDescriptor;
199 } EFI_HOB_MEMORY_ALLOCATION_BSP_STORE;
200
201 ///
202 /// Defines the location and entry point of the HOB consumer phase.
203 ///
204 typedef struct {
205 ///
206 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_MEMORY_ALLOCATION.
207 ///
208 EFI_HOB_GENERIC_HEADER Header;
209 ///
210 /// An instance of the EFI_HOB_MEMORY_ALLOCATION_HEADER that describes the
211 /// various attributes of the logical memory allocation.
212 ///
213 EFI_HOB_MEMORY_ALLOCATION_HEADER MemoryAllocationHeader;
214 ///
215 /// The GUID specifying the values of the firmware file system name
216 /// that contains the HOB consumer phase component.
217 ///
218 EFI_GUID ModuleName;
219 ///
220 /// The address of the memory-mapped firmware volume
221 /// that contains the HOB consumer phase firmware file.
222 ///
223 EFI_PHYSICAL_ADDRESS EntryPoint;
224 } EFI_HOB_MEMORY_ALLOCATION_MODULE;
225
226 ///
227 /// Resource type
228 ///
229 typedef UINT32 EFI_RESOURCE_TYPE;
230
231 //
232 // Value of ResourceType in EFI_HOB_RESOURCE_DESCRIPTOR.
233 //
234 #define EFI_RESOURCE_SYSTEM_MEMORY 0x00000000
235 #define EFI_RESOURCE_MEMORY_MAPPED_IO 0x00000001
236 #define EFI_RESOURCE_IO 0x00000002
237 #define EFI_RESOURCE_FIRMWARE_DEVICE 0x00000003
238 #define EFI_RESOURCE_MEMORY_MAPPED_IO_PORT 0x00000004
239 #define EFI_RESOURCE_MEMORY_RESERVED 0x00000005
240 #define EFI_RESOURCE_IO_RESERVED 0x00000006
241 #define EFI_RESOURCE_MAX_MEMORY_TYPE 0x00000007
242
243 ///
244 /// type of recount attribute type
245 ///
246 typedef UINT32 EFI_RESOURCE_ATTRIBUTE_TYPE;
247
248 //
249 // These types can be ORed together as needed.
250 //
251 // The first three enumerations describe settings
252 //
253 #define EFI_RESOURCE_ATTRIBUTE_PRESENT 0x00000001
254 #define EFI_RESOURCE_ATTRIBUTE_INITIALIZED 0x00000002
255 #define EFI_RESOURCE_ATTRIBUTE_TESTED 0x00000004
256 //
257 // The rest of the settings describe capabilities
258 //
259 #define EFI_RESOURCE_ATTRIBUTE_SINGLE_BIT_ECC 0x00000008
260 #define EFI_RESOURCE_ATTRIBUTE_MULTIPLE_BIT_ECC 0x00000010
261 #define EFI_RESOURCE_ATTRIBUTE_ECC_RESERVED_1 0x00000020
262 #define EFI_RESOURCE_ATTRIBUTE_ECC_RESERVED_2 0x00000040
263 #define EFI_RESOURCE_ATTRIBUTE_READ_PROTECTED 0x00000080
264 #define EFI_RESOURCE_ATTRIBUTE_WRITE_PROTECTED 0x00000100
265 #define EFI_RESOURCE_ATTRIBUTE_EXECUTION_PROTECTED 0x00000200
266 #define EFI_RESOURCE_ATTRIBUTE_UNCACHEABLE 0x00000400
267 #define EFI_RESOURCE_ATTRIBUTE_WRITE_COMBINEABLE 0x00000800
268 #define EFI_RESOURCE_ATTRIBUTE_WRITE_THROUGH_CACHEABLE 0x00001000
269 #define EFI_RESOURCE_ATTRIBUTE_WRITE_BACK_CACHEABLE 0x00002000
270 #define EFI_RESOURCE_ATTRIBUTE_16_BIT_IO 0x00004000
271 #define EFI_RESOURCE_ATTRIBUTE_32_BIT_IO 0x00008000
272 #define EFI_RESOURCE_ATTRIBUTE_64_BIT_IO 0x00010000
273 #define EFI_RESOURCE_ATTRIBUTE_UNCACHED_EXPORTED 0x00020000
274
275 ///
276 /// Describes the resource properties of all fixed,
277 /// nonrelocatable resource ranges found on the processor
278 /// host bus during the HOB producer phase.
279 ///
280 typedef struct {
281 ///
282 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_RESOURCE_DESCRIPTOR.
283 ///
284 EFI_HOB_GENERIC_HEADER Header;
285 ///
286 /// A GUID representing the owner of the resource. This GUID is used by HOB
287 /// consumer phase components to correlate device ownership of a resource.
288 ///
289 EFI_GUID Owner;
290 ///
291 /// Resource type enumeration as defined by EFI_RESOURCE_TYPE.
292 ///
293 EFI_RESOURCE_TYPE ResourceType;
294 ///
295 /// Resource attributes as defined by EFI_RESOURCE_ATTRIBUTE_TYPE.
296 ///
297 EFI_RESOURCE_ATTRIBUTE_TYPE ResourceAttribute;
298 ///
299 /// Physical start address of the resource region.
300 ///
301 EFI_PHYSICAL_ADDRESS PhysicalStart;
302 ///
303 /// Number of bytes of the resource region.
304 ///
305 UINT64 ResourceLength;
306 } EFI_HOB_RESOURCE_DESCRIPTOR;
307
308 ///
309 /// Allows writers of executable content in the HOB producer phase to
310 /// maintain and manage HOBs with specific GUID.
311 ///
312 typedef struct {
313 ///
314 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_GUID_EXTENSION.
315 ///
316 EFI_HOB_GENERIC_HEADER Header;
317 ///
318 /// A GUID that defines the contents of this HOB.
319 ///
320 EFI_GUID Name;
321 //
322 // Guid specific data goes here
323 //
324 } EFI_HOB_GUID_TYPE;
325
326 ///
327 /// Details the location of firmware volumes that contain firmware files.
328 ///
329 typedef struct {
330 ///
331 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_FV.
332 ///
333 EFI_HOB_GENERIC_HEADER Header;
334 ///
335 /// The physical memory-mapped base address of the firmware volume.
336 ///
337 EFI_PHYSICAL_ADDRESS BaseAddress;
338 ///
339 /// The length in bytes of the firmware volume.
340 ///
341 UINT64 Length;
342 } EFI_HOB_FIRMWARE_VOLUME;
343
344 ///
345 /// Details the location of a firmware volume which was extracted
346 /// from a file within another firmware volume.
347 ///
348 typedef struct {
349 ///
350 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_FV2.
351 ///
352 EFI_HOB_GENERIC_HEADER Header;
353 ///
354 /// The physical memory-mapped base address of the firmware volume.
355 ///
356 EFI_PHYSICAL_ADDRESS BaseAddress;
357 ///
358 /// The length in bytes of the firmware volume.
359 ///
360 UINT64 Length;
361 ///
362 /// The name of the firmware volume.
363 ///
364 EFI_GUID FvName;
365 ///
366 /// The name of the firmware file which contained this firmware volume.
367 ///
368 EFI_GUID FileName;
369 } EFI_HOB_FIRMWARE_VOLUME2;
370
371
372 ///
373 /// Describes processor information, such as address space and I/O space capabilities.
374 ///
375 typedef struct {
376 ///
377 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_CPU.
378 ///
379 EFI_HOB_GENERIC_HEADER Header;
380 ///
381 /// Identifies the maximum physical memory addressability of the processor.
382 ///
383 UINT8 SizeOfMemorySpace;
384 ///
385 /// Identifies the maximum physical I/O addressability of the processor.
386 ///
387 UINT8 SizeOfIoSpace;
388 ///
389 /// This field will always be set to zero.
390 ///
391 UINT8 Reserved[6];
392 } EFI_HOB_CPU;
393
394
395 ///
396 /// Describes pool memory allocations.
397 ///
398 typedef struct {
399 ///
400 /// The HOB generic header. Header.HobType = EFI_HOB_TYPE_MEMORY_POOL.
401 ///
402 EFI_HOB_GENERIC_HEADER Header;
403 } EFI_HOB_MEMORY_POOL;
404
405 ///
406 /// Each UEFI capsule HOB details the location of a UEFI capsule. It includes a base address and length
407 /// which is based upon memory blocks with a EFI_CAPSULE_HEADER and the associated
408 /// CapsuleImageSize-based payloads. These HOB’s shall be created by the PEI PI firmware
409 /// sometime after the UEFI UpdateCapsule service invocation with the
410 /// CAPSULE_FLAGS_POPULATE_SYSTEM_TABLE flag set in the EFI_CAPSULE_HEADER.
411 ///
412 typedef struct {
413 ///
414 /// The HOB generic header where Header.HobType = EFI_HOB_TYPE_UEFI_CAPSULE.
415 ///
416 EFI_HOB_GENERIC_HEADER Header;
417
418 ///
419 /// The physical memory-mapped base address of an UEFI capsule. This value is set to
420 /// point to the base of the contiguous memory of the UEFI capsule.
421 /// The length of the contiguous memory in bytes
422 ///
423 EFI_PHYSICAL_ADDRESS BaseAddress;
424 UINT64 Length;
425 } EFI_HOB_UEFI_CAPSULE;
426
427 ///
428 /// Union of all the possible HOB Types
429 ///
430 typedef union {
431 EFI_HOB_GENERIC_HEADER *Header;
432 EFI_HOB_HANDOFF_INFO_TABLE *HandoffInformationTable;
433 EFI_HOB_MEMORY_ALLOCATION *MemoryAllocation;
434 EFI_HOB_MEMORY_ALLOCATION_BSP_STORE *MemoryAllocationBspStore;
435 EFI_HOB_MEMORY_ALLOCATION_STACK *MemoryAllocationStack;
436 EFI_HOB_MEMORY_ALLOCATION_MODULE *MemoryAllocationModule;
437 EFI_HOB_RESOURCE_DESCRIPTOR *ResourceDescriptor;
438 EFI_HOB_GUID_TYPE *Guid;
439 EFI_HOB_FIRMWARE_VOLUME *FirmwareVolume;
440 EFI_HOB_FIRMWARE_VOLUME2 *FirmwareVolume2;
441 EFI_HOB_CPU *Cpu;
442 EFI_HOB_MEMORY_POOL *Pool;
443 EFI_HOB_UEFI_CAPSULE *Capsule;
444 UINT8 *Raw;
445 } EFI_PEI_HOB_POINTERS;
446
447
448 #endif