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