You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UefiBaseType.h 5.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. /** @file
  2. Defines data types and constants introduced in UEFI.
  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. **/
  11. #ifndef __UEFI_BASETYPE_H__
  12. #define __UEFI_BASETYPE_H__
  13. #include <gpxe/efi/Base.h>
  14. //
  15. // Basical data type definitions introduced in UEFI.
  16. //
  17. ///
  18. /// 128-bit buffer containing a unique identifier value.
  19. ///
  20. typedef GUID EFI_GUID;
  21. ///
  22. /// Function return status for EFI API
  23. ///
  24. typedef RETURN_STATUS EFI_STATUS;
  25. ///
  26. /// A collection of related interfaces.
  27. ///
  28. typedef VOID *EFI_HANDLE;
  29. ///
  30. /// Handle to an event structure.
  31. ///
  32. typedef VOID *EFI_EVENT;
  33. ///
  34. /// Task priority level.
  35. ///
  36. typedef UINTN EFI_TPL;
  37. ///
  38. /// Logical block address.
  39. ///
  40. typedef UINT64 EFI_LBA;
  41. typedef UINT64 EFI_PHYSICAL_ADDRESS;
  42. typedef UINT64 EFI_VIRTUAL_ADDRESS;
  43. ///
  44. /// EFI Time Abstraction:
  45. /// Year: 1998 - 20XX
  46. /// Month: 1 - 12
  47. /// Day: 1 - 31
  48. /// Hour: 0 - 23
  49. /// Minute: 0 - 59
  50. /// Second: 0 - 59
  51. /// Nanosecond: 0 - 999,999,999
  52. /// TimeZone: -1440 to 1440 or 2047
  53. ///
  54. typedef struct {
  55. UINT16 Year;
  56. UINT8 Month;
  57. UINT8 Day;
  58. UINT8 Hour;
  59. UINT8 Minute;
  60. UINT8 Second;
  61. UINT8 Pad1;
  62. UINT32 Nanosecond;
  63. INT16 TimeZone;
  64. UINT8 Daylight;
  65. UINT8 Pad2;
  66. } EFI_TIME;
  67. ///
  68. /// 4-byte buffer. An IPv4 internet protocol address.
  69. ///
  70. typedef struct {
  71. UINT8 Addr[4];
  72. } EFI_IPv4_ADDRESS;
  73. ///
  74. /// 16-byte buffer. An IPv6 internet protocol address
  75. ///
  76. typedef struct {
  77. UINT8 Addr[16];
  78. } EFI_IPv6_ADDRESS;
  79. ///
  80. /// 32-byte buffer containing a network Media Access Control address.
  81. ///
  82. typedef struct {
  83. UINT8 Addr[32];
  84. } EFI_MAC_ADDRESS;
  85. ///
  86. /// 16-byte buffer aligned on a 4-byte boundary.
  87. /// An IPv4 or IPv6 internet protocol address.
  88. ///
  89. typedef union {
  90. UINT32 Addr[4];
  91. EFI_IPv4_ADDRESS v4;
  92. EFI_IPv6_ADDRESS v6;
  93. } EFI_IP_ADDRESS;
  94. //
  95. // Enumeration of EFI_STATUS.
  96. //
  97. #define EFI_SUCCESS RETURN_SUCCESS
  98. #define EFI_LOAD_ERROR RETURN_LOAD_ERROR
  99. #define EFI_INVALID_PARAMETER RETURN_INVALID_PARAMETER
  100. #define EFI_UNSUPPORTED RETURN_UNSUPPORTED
  101. #define EFI_BAD_BUFFER_SIZE RETURN_BAD_BUFFER_SIZE
  102. #define EFI_BUFFER_TOO_SMALL RETURN_BUFFER_TOO_SMALL
  103. #define EFI_NOT_READY RETURN_NOT_READY
  104. #define EFI_DEVICE_ERROR RETURN_DEVICE_ERROR
  105. #define EFI_WRITE_PROTECTED RETURN_WRITE_PROTECTED
  106. #define EFI_OUT_OF_RESOURCES RETURN_OUT_OF_RESOURCES
  107. #define EFI_VOLUME_CORRUPTED RETURN_VOLUME_CORRUPTED
  108. #define EFI_VOLUME_FULL RETURN_VOLUME_FULL
  109. #define EFI_NO_MEDIA RETURN_NO_MEDIA
  110. #define EFI_MEDIA_CHANGED RETURN_MEDIA_CHANGED
  111. #define EFI_NOT_FOUND RETURN_NOT_FOUND
  112. #define EFI_ACCESS_DENIED RETURN_ACCESS_DENIED
  113. #define EFI_NO_RESPONSE RETURN_NO_RESPONSE
  114. #define EFI_NO_MAPPING RETURN_NO_MAPPING
  115. #define EFI_TIMEOUT RETURN_TIMEOUT
  116. #define EFI_NOT_STARTED RETURN_NOT_STARTED
  117. #define EFI_ALREADY_STARTED RETURN_ALREADY_STARTED
  118. #define EFI_ABORTED RETURN_ABORTED
  119. #define EFI_ICMP_ERROR RETURN_ICMP_ERROR
  120. #define EFI_TFTP_ERROR RETURN_TFTP_ERROR
  121. #define EFI_PROTOCOL_ERROR RETURN_PROTOCOL_ERROR
  122. #define EFI_INCOMPATIBLE_VERSION RETURN_INCOMPATIBLE_VERSION
  123. #define EFI_SECURITY_VIOLATION RETURN_SECURITY_VIOLATION
  124. #define EFI_CRC_ERROR RETURN_CRC_ERROR
  125. #define EFI_END_OF_MEDIA RETURN_END_OF_MEDIA
  126. #define EFI_END_OF_FILE RETURN_END_OF_FILE
  127. #define EFI_INVALID_LANGUAGE RETURN_INVALID_LANGUAGE
  128. #define EFI_WARN_UNKNOWN_GLYPH RETURN_WARN_UNKNOWN_GLYPH
  129. #define EFI_WARN_DELETE_FAILURE RETURN_WARN_DELETE_FAILURE
  130. #define EFI_WARN_WRITE_FAILURE RETURN_WARN_WRITE_FAILURE
  131. #define EFI_WARN_BUFFER_TOO_SMALL RETURN_WARN_BUFFER_TOO_SMALL
  132. //
  133. // Define macro to encode the status code.
  134. //
  135. #define EFIERR(_a) ENCODE_ERROR(_a)
  136. #define EFI_ERROR(A) RETURN_ERROR(A)
  137. //
  138. // Define macros to build data structure signatures from characters.
  139. //
  140. #define EFI_SIGNATURE_16(A, B) SIGNATURE_16 (A, B)
  141. #define EFI_SIGNATURE_32(A, B, C, D) SIGNATURE_32 (A, B, C, D)
  142. #define EFI_SIGNATURE_64(A, B, C, D, E, F, G, H) SIGNATURE_64 (A, B, C, D, E, F, G, H)
  143. ///
  144. /// Returns the byte offset to a field within a structure
  145. ///
  146. #define EFI_FIELD_OFFSET(TYPE,Field) ((UINTN)(&(((TYPE *) 0)->Field)))
  147. //
  148. // The EFI memory allocation functions work in units of EFI_PAGEs that are
  149. // 4K. This should in no way be confused with the page size of the processor.
  150. // An EFI_PAGE is just the quanta of memory in EFI.
  151. //
  152. #define EFI_PAGE_SIZE 0x1000
  153. #define EFI_PAGE_MASK 0xFFF
  154. #define EFI_PAGE_SHIFT 12
  155. #define EFI_SIZE_TO_PAGES(a) (((a) >> EFI_PAGE_SHIFT) + (((a) & EFI_PAGE_MASK) ? 1 : 0))
  156. #define EFI_PAGES_TO_SIZE(a) ( (a) << EFI_PAGE_SHIFT)
  157. #define EFI_MAX_BIT MAX_BIT
  158. #define EFI_MAX_ADDRESS MAX_ADDRESS
  159. ///
  160. /// Limited buffer size for a language code recommended by RFC3066
  161. /// (42 characters plus a NULL terminator)
  162. ///
  163. #define RFC_3066_ENTRY_SIZE (42 + 1)
  164. ///
  165. /// The size of a 3 character ISO639 language code.
  166. ///
  167. #define ISO_639_2_ENTRY_SIZE 3
  168. #endif