PageRenderTime 49ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/gpxe/src/include/gpxe/efi/Pi/PiHob.h

https://github.com/pierre/syslinux
C Header | 295 lines | 135 code | 33 blank | 127 comment | 0 complexity | 7bad58b261acd86839adc8e5ac6bdc4f MD5 | raw file
  1. /** @file
  2. HOB related definitions in PI.
  3. Copyright (c) 2006 - 2008, Intel Corporation
  4. All rights reserved. This program and the accompanying materials
  5. are licensed and made available under the terms and conditions of the BSD License
  6. which accompanies this distribution. The full text of the license may be found at
  7. http://opensource.org/licenses/bsd-license.php
  8. THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
  10. @par Revision Reference:
  11. PI Version 1.0
  12. **/
  13. #ifndef __PI_HOB_H__
  14. #define __PI_HOB_H__
  15. #include <gpxe/efi/ProcessorBind.h>
  16. #include <gpxe/efi/Pi/PiBootMode.h>
  17. #include <gpxe/efi/Uefi/UefiBaseType.h>
  18. #include <gpxe/efi/Uefi/UefiMultiPhase.h>
  19. //
  20. // HobType of EFI_HOB_GENERIC_HEADER.
  21. //
  22. #define EFI_HOB_TYPE_HANDOFF 0x0001
  23. #define EFI_HOB_TYPE_MEMORY_ALLOCATION 0x0002
  24. #define EFI_HOB_TYPE_RESOURCE_DESCRIPTOR 0x0003
  25. #define EFI_HOB_TYPE_GUID_EXTENSION 0x0004
  26. #define EFI_HOB_TYPE_FV 0x0005
  27. #define EFI_HOB_TYPE_CPU 0x0006
  28. #define EFI_HOB_TYPE_MEMORY_POOL 0x0007
  29. #define EFI_HOB_TYPE_FV2 0x0009
  30. #define EFI_HOB_TYPE_LOAD_PEIM 0x000A
  31. #define EFI_HOB_TYPE_UNUSED 0xFFFE
  32. #define EFI_HOB_TYPE_END_OF_HOB_LIST 0xFFFF
  33. ///
  34. /// Describes the format and size of the data inside the HOB.
  35. /// All HOBs must contain this generic HOB header.
  36. ///
  37. typedef struct {
  38. UINT16 HobType;
  39. UINT16 HobLength;
  40. UINT32 Reserved;
  41. } EFI_HOB_GENERIC_HEADER;
  42. ///
  43. /// Value of version ofinEFI_HOB_HANDOFF_INFO_TABLE.
  44. ///
  45. #define EFI_HOB_HANDOFF_TABLE_VERSION 0x0009
  46. ///
  47. /// Contains general state information used by the HOB producer phase.
  48. /// This HOB must be the first one in the HOB list.
  49. ///
  50. typedef struct {
  51. EFI_HOB_GENERIC_HEADER Header;
  52. UINT32 Version;
  53. EFI_BOOT_MODE BootMode;
  54. EFI_PHYSICAL_ADDRESS EfiMemoryTop;
  55. EFI_PHYSICAL_ADDRESS EfiMemoryBottom;
  56. EFI_PHYSICAL_ADDRESS EfiFreeMemoryTop;
  57. EFI_PHYSICAL_ADDRESS EfiFreeMemoryBottom;
  58. EFI_PHYSICAL_ADDRESS EfiEndOfHobList;
  59. } EFI_HOB_HANDOFF_INFO_TABLE;
  60. ///
  61. /// EFI_HOB_MEMORY_ALLOCATION_HEADER describes the
  62. /// various attributes of the logical memory allocation. The type field will be used for
  63. /// subsequent inclusion in the UEFI memory map.
  64. ///
  65. typedef struct {
  66. ///
  67. /// A GUID that defines the memory allocation region's type and purpose, as well as
  68. /// other fields within the memory allocation HOB. This GUID is used to define the
  69. /// additional data within the HOB that may be present for the memory allocation HOB.
  70. /// Type EFI_GUID is defined in InstallProtocolInterface() in the UEFI 2.0
  71. /// specification.
  72. ///
  73. EFI_GUID Name;
  74. ///
  75. /// The base address of memory allocated by this HOB. Type
  76. /// EFI_PHYSICAL_ADDRESS is defined in AllocatePages() in the UEFI 2.0
  77. /// specification.
  78. ///
  79. EFI_PHYSICAL_ADDRESS MemoryBaseAddress;
  80. ///
  81. /// The length in bytes of memory allocated by this HOB.
  82. ///
  83. UINT64 MemoryLength;
  84. ///
  85. /// Defines the type of memory allocated by this HOB. The memory type definition
  86. /// follows the EFI_MEMORY_TYPE definition. Type EFI_MEMORY_TYPE is defined
  87. /// in AllocatePages() in the UEFI 2.0 specification.
  88. ///
  89. EFI_MEMORY_TYPE MemoryType;
  90. ///
  91. /// Padding for Itanium processor family
  92. ///
  93. UINT8 Reserved[4];
  94. } EFI_HOB_MEMORY_ALLOCATION_HEADER;
  95. ///
  96. /// Describes all memory ranges used during the HOB producer
  97. /// phase that exist outside the HOB list. This HOB type
  98. /// describes how memory is used,
  99. /// not the physical attributes of memory.
  100. ///
  101. typedef struct {
  102. EFI_HOB_GENERIC_HEADER Header;
  103. EFI_HOB_MEMORY_ALLOCATION_HEADER AllocDescriptor;
  104. //
  105. // Additional data pertaining to the "Name" Guid memory
  106. // may go here.
  107. //
  108. } EFI_HOB_MEMORY_ALLOCATION;
  109. ///
  110. /// Describes the memory stack that is produced by the HOB producer
  111. /// phase and upon which all postmemory-installed executable
  112. /// content in the HOB producer phase is executing.
  113. ///
  114. typedef struct {
  115. EFI_HOB_GENERIC_HEADER Header;
  116. EFI_HOB_MEMORY_ALLOCATION_HEADER AllocDescriptor;
  117. } EFI_HOB_MEMORY_ALLOCATION_STACK;
  118. ///
  119. /// Defines the location of the boot-strap
  120. /// processor (BSP) BSPStore ("Backing Store Pointer Store").
  121. /// This HOB is valid for the Itanium processor family only
  122. /// register overflow store.
  123. ///
  124. typedef struct {
  125. EFI_HOB_GENERIC_HEADER Header;
  126. EFI_HOB_MEMORY_ALLOCATION_HEADER AllocDescriptor;
  127. } EFI_HOB_MEMORY_ALLOCATION_BSP_STORE;
  128. ///
  129. /// Defines the location and entry point of the HOB consumer phase.
  130. ///
  131. typedef struct {
  132. EFI_HOB_GENERIC_HEADER Header;
  133. EFI_HOB_MEMORY_ALLOCATION_HEADER MemoryAllocationHeader;
  134. EFI_GUID ModuleName;
  135. EFI_PHYSICAL_ADDRESS EntryPoint;
  136. } EFI_HOB_MEMORY_ALLOCATION_MODULE;
  137. ///
  138. /// Resource type
  139. ///
  140. typedef UINT32 EFI_RESOURCE_TYPE;
  141. //
  142. // Value of ResourceType in EFI_HOB_RESOURCE_DESCRIPTOR.
  143. //
  144. #define EFI_RESOURCE_SYSTEM_MEMORY 0x00000000
  145. #define EFI_RESOURCE_MEMORY_MAPPED_IO 0x00000001
  146. #define EFI_RESOURCE_IO 0x00000002
  147. #define EFI_RESOURCE_FIRMWARE_DEVICE 0x00000003
  148. #define EFI_RESOURCE_MEMORY_MAPPED_IO_PORT 0x00000004
  149. #define EFI_RESOURCE_MEMORY_RESERVED 0x00000005
  150. #define EFI_RESOURCE_IO_RESERVED 0x00000006
  151. #define EFI_RESOURCE_MAX_MEMORY_TYPE 0x00000007
  152. ///
  153. /// type of recount attribute type
  154. ///
  155. typedef UINT32 EFI_RESOURCE_ATTRIBUTE_TYPE;
  156. //
  157. // These types can be ORed together as needed.
  158. //
  159. // The first three enumerations describe settings
  160. //
  161. #define EFI_RESOURCE_ATTRIBUTE_PRESENT 0x00000001
  162. #define EFI_RESOURCE_ATTRIBUTE_INITIALIZED 0x00000002
  163. #define EFI_RESOURCE_ATTRIBUTE_TESTED 0x00000004
  164. //
  165. // The rest of the settings describe capabilities
  166. //
  167. #define EFI_RESOURCE_ATTRIBUTE_SINGLE_BIT_ECC 0x00000008
  168. #define EFI_RESOURCE_ATTRIBUTE_MULTIPLE_BIT_ECC 0x00000010
  169. #define EFI_RESOURCE_ATTRIBUTE_ECC_RESERVED_1 0x00000020
  170. #define EFI_RESOURCE_ATTRIBUTE_ECC_RESERVED_2 0x00000040
  171. #define EFI_RESOURCE_ATTRIBUTE_READ_PROTECTED 0x00000080
  172. #define EFI_RESOURCE_ATTRIBUTE_WRITE_PROTECTED 0x00000100
  173. #define EFI_RESOURCE_ATTRIBUTE_EXECUTION_PROTECTED 0x00000200
  174. #define EFI_RESOURCE_ATTRIBUTE_UNCACHEABLE 0x00000400
  175. #define EFI_RESOURCE_ATTRIBUTE_WRITE_COMBINEABLE 0x00000800
  176. #define EFI_RESOURCE_ATTRIBUTE_WRITE_THROUGH_CACHEABLE 0x00001000
  177. #define EFI_RESOURCE_ATTRIBUTE_WRITE_BACK_CACHEABLE 0x00002000
  178. #define EFI_RESOURCE_ATTRIBUTE_16_BIT_IO 0x00004000
  179. #define EFI_RESOURCE_ATTRIBUTE_32_BIT_IO 0x00008000
  180. #define EFI_RESOURCE_ATTRIBUTE_64_BIT_IO 0x00010000
  181. #define EFI_RESOURCE_ATTRIBUTE_UNCACHED_EXPORTED 0x00020000
  182. ///
  183. /// Describes the resource properties of all fixed,
  184. /// nonrelocatable resource ranges found on the processor
  185. /// host bus during the HOB producer phase.
  186. ///
  187. typedef struct {
  188. EFI_HOB_GENERIC_HEADER Header;
  189. EFI_GUID Owner;
  190. EFI_RESOURCE_TYPE ResourceType;
  191. EFI_RESOURCE_ATTRIBUTE_TYPE ResourceAttribute;
  192. EFI_PHYSICAL_ADDRESS PhysicalStart;
  193. UINT64 ResourceLength;
  194. } EFI_HOB_RESOURCE_DESCRIPTOR;
  195. ///
  196. /// Allows writers of executable content in the HOB producer phase to
  197. /// maintain and manage HOBs with specific GUID.
  198. ///
  199. typedef struct {
  200. EFI_HOB_GENERIC_HEADER Header;
  201. EFI_GUID Name;
  202. ///
  203. /// Guid specific data goes here
  204. ///
  205. } EFI_HOB_GUID_TYPE;
  206. ///
  207. /// Details the location of firmware volumes that contain firmware files.
  208. ///
  209. typedef struct {
  210. EFI_HOB_GENERIC_HEADER Header;
  211. EFI_PHYSICAL_ADDRESS BaseAddress;
  212. UINT64 Length;
  213. } EFI_HOB_FIRMWARE_VOLUME;
  214. ///
  215. /// Details the location of a firmware volume which was extracted
  216. /// from a file within another firmware volume.
  217. ///
  218. typedef struct {
  219. EFI_HOB_GENERIC_HEADER Header;
  220. EFI_PHYSICAL_ADDRESS BaseAddress;
  221. UINT64 Length;
  222. EFI_GUID FvName;
  223. EFI_GUID FileName;
  224. } EFI_HOB_FIRMWARE_VOLUME2;
  225. ///
  226. /// Describes processor information, such as address space and I/O space capabilities.
  227. ///
  228. typedef struct {
  229. EFI_HOB_GENERIC_HEADER Header;
  230. UINT8 SizeOfMemorySpace;
  231. UINT8 SizeOfIoSpace;
  232. UINT8 Reserved[6];
  233. } EFI_HOB_CPU;
  234. ///
  235. /// Describes pool memory allocations.
  236. ///
  237. typedef struct {
  238. EFI_HOB_GENERIC_HEADER Header;
  239. } EFI_HOB_MEMORY_POOL;
  240. ///
  241. /// Union of all the possible HOB Types
  242. ///
  243. typedef union {
  244. EFI_HOB_GENERIC_HEADER *Header;
  245. EFI_HOB_HANDOFF_INFO_TABLE *HandoffInformationTable;
  246. EFI_HOB_MEMORY_ALLOCATION *MemoryAllocation;
  247. EFI_HOB_MEMORY_ALLOCATION_BSP_STORE *MemoryAllocationBspStore;
  248. EFI_HOB_MEMORY_ALLOCATION_STACK *MemoryAllocationStack;
  249. EFI_HOB_MEMORY_ALLOCATION_MODULE *MemoryAllocationModule;
  250. EFI_HOB_RESOURCE_DESCRIPTOR *ResourceDescriptor;
  251. EFI_HOB_GUID_TYPE *Guid;
  252. EFI_HOB_FIRMWARE_VOLUME *FirmwareVolume;
  253. EFI_HOB_FIRMWARE_VOLUME2 *FirmwareVolume2;
  254. EFI_HOB_CPU *Cpu;
  255. EFI_HOB_MEMORY_POOL *Pool;
  256. UINT8 *Raw;
  257. } EFI_PEI_HOB_POINTERS;
  258. #endif