959ccb23 |
1 | /** @file\r |
2 | \r |
3 | Root include file for Mde Package Base type modules\r |
4 | \r |
5 | This is the include file for any module of type base. Base modules only use \r |
6 | types defined via this include file and can be ported easily to any \r |
7 | environment. There are a set of base libraries in the Mde Package that can\r |
8 | be used to implement base modules.\r |
9 | \r |
54cf8780 |
10 | Copyright (c) 2006 - 2008, Intel Corporation\r |
959ccb23 |
11 | All rights reserved. This program and the accompanying materials\r |
12 | are licensed and made available under the terms and conditions of the BSD License\r |
13 | which accompanies this distribution. The full text of the license may be found at\r |
14 | http://opensource.org/licenses/bsd-license.php\r |
15 | \r |
16 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r |
17 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r |
18 | \r |
19 | **/\r |
20 | \r |
21 | \r |
22 | #ifndef __BASE_H__\r |
23 | #define __BASE_H__\r |
24 | \r |
25 | //\r |
26 | // Include processor specific binding\r |
27 | //\r |
28 | #include <ProcessorBind.h>\r |
29 | \r |
30 | typedef struct {\r |
31 | UINT32 Data1;\r |
32 | UINT16 Data2;\r |
33 | UINT16 Data3;\r |
34 | UINT8 Data4[8];\r |
35 | } GUID;\r |
36 | \r |
37 | typedef UINT64 PHYSICAL_ADDRESS;\r |
38 | \r |
fb5148a0 |
39 | ///\r |
40 | /// LIST_ENTRY definition\r |
41 | ///\r |
959ccb23 |
42 | typedef struct _LIST_ENTRY LIST_ENTRY;\r |
43 | \r |
44 | struct _LIST_ENTRY {\r |
45 | LIST_ENTRY *ForwardLink;\r |
46 | LIST_ENTRY *BackLink;\r |
47 | };\r |
48 | \r |
49 | //\r |
50 | // Modifiers to absract standard types to aid in debug of problems\r |
51 | //\r |
52 | #define CONST const\r |
53 | #define STATIC static\r |
54 | #define VOID void\r |
55 | \r |
56 | //\r |
57 | // Modifiers for Data Types used to self document code.\r |
58 | // This concept is borrowed for UEFI specification.\r |
59 | //\r |
959ccb23 |
60 | #define IN\r |
61 | #define OUT\r |
62 | #define OPTIONAL\r |
959ccb23 |
63 | \r |
959ccb23 |
64 | //\r |
65 | // UEFI specification claims 1 and 0. We are concerned about the \r |
66 | // complier portability so we did it this way.\r |
67 | //\r |
68 | #define TRUE ((BOOLEAN)(1==1))\r |
959ccb23 |
69 | #define FALSE ((BOOLEAN)(0==1))\r |
959ccb23 |
70 | \r |
959ccb23 |
71 | #define NULL ((VOID *) 0)\r |
959ccb23 |
72 | \r |
73 | #define BIT0 0x00000001\r |
74 | #define BIT1 0x00000002\r |
75 | #define BIT2 0x00000004\r |
76 | #define BIT3 0x00000008\r |
77 | #define BIT4 0x00000010\r |
78 | #define BIT5 0x00000020\r |
79 | #define BIT6 0x00000040\r |
80 | #define BIT7 0x00000080\r |
81 | #define BIT8 0x00000100\r |
82 | #define BIT9 0x00000200\r |
83 | #define BIT10 0x00000400\r |
84 | #define BIT11 0x00000800\r |
85 | #define BIT12 0x00001000\r |
86 | #define BIT13 0x00002000\r |
87 | #define BIT14 0x00004000\r |
88 | #define BIT15 0x00008000\r |
89 | #define BIT16 0x00010000\r |
90 | #define BIT17 0x00020000\r |
91 | #define BIT18 0x00040000\r |
92 | #define BIT19 0x00080000\r |
93 | #define BIT20 0x00100000\r |
94 | #define BIT21 0x00200000\r |
95 | #define BIT22 0x00400000\r |
96 | #define BIT23 0x00800000\r |
97 | #define BIT24 0x01000000\r |
98 | #define BIT25 0x02000000\r |
99 | #define BIT26 0x04000000\r |
100 | #define BIT27 0x08000000\r |
101 | #define BIT28 0x10000000\r |
102 | #define BIT29 0x20000000\r |
103 | #define BIT30 0x40000000\r |
104 | #define BIT31 0x80000000\r |
105 | #define BIT32 0x0000000100000000UL\r |
106 | #define BIT33 0x0000000200000000UL\r |
107 | #define BIT34 0x0000000400000000UL\r |
108 | #define BIT35 0x0000000800000000UL\r |
109 | #define BIT36 0x0000001000000000UL\r |
110 | #define BIT37 0x0000002000000000UL\r |
111 | #define BIT38 0x0000004000000000UL\r |
112 | #define BIT39 0x0000008000000000UL\r |
113 | #define BIT40 0x0000010000000000UL\r |
114 | #define BIT41 0x0000020000000000UL\r |
115 | #define BIT42 0x0000040000000000UL\r |
116 | #define BIT43 0x0000080000000000UL\r |
117 | #define BIT44 0x0000100000000000UL\r |
118 | #define BIT45 0x0000200000000000UL\r |
119 | #define BIT46 0x0000400000000000UL\r |
120 | #define BIT47 0x0000800000000000UL\r |
121 | #define BIT48 0x0001000000000000UL\r |
122 | #define BIT49 0x0002000000000000UL\r |
123 | #define BIT50 0x0004000000000000UL\r |
124 | #define BIT51 0x0008000000000000UL\r |
125 | #define BIT52 0x0010000000000000UL\r |
126 | #define BIT53 0x0020000000000000UL\r |
127 | #define BIT54 0x0040000000000000UL\r |
128 | #define BIT55 0x0080000000000000UL\r |
129 | #define BIT56 0x0100000000000000UL\r |
130 | #define BIT57 0x0200000000000000UL\r |
131 | #define BIT58 0x0400000000000000UL\r |
132 | #define BIT59 0x0800000000000000UL\r |
133 | #define BIT60 0x1000000000000000UL\r |
134 | #define BIT61 0x2000000000000000UL\r |
135 | #define BIT62 0x4000000000000000UL\r |
136 | #define BIT63 0x8000000000000000UL\r |
137 | \r |
138 | //\r |
139 | // Support for variable length argument lists using the ANSI standard.\r |
140 | // \r |
141 | // Since we are using the ANSI standard we used the standard nameing and\r |
142 | // did not folow the coding convention\r |
143 | //\r |
144 | // VA_LIST - typedef for argument list.\r |
145 | // VA_START (VA_LIST Marker, argument before the ...) - Init Marker for use.\r |
146 | // VA_END (VA_LIST Marker) - Clear Marker\r |
147 | // VA_ARG (VA_LIST Marker, var arg size) - Use Marker to get an argumnet from\r |
148 | // the ... list. You must know the size and pass it in this macro.\r |
149 | //\r |
150 | // example:\r |
151 | //\r |
152 | // UINTN\r |
153 | // ExampleVarArg (\r |
154 | // IN UINTN NumberOfArgs,\r |
155 | // ...\r |
156 | // )\r |
157 | // {\r |
158 | // VA_LIST Marker;\r |
159 | // UINTN Index;\r |
160 | // UINTN Result;\r |
161 | //\r |
162 | // //\r |
163 | // // Initialize the Marker\r |
164 | // //\r |
165 | // VA_START (Marker, NumberOfArgs);\r |
166 | // for (Index = 0, Result = 0; Index < NumberOfArgs; Index++) {\r |
167 | // //\r |
168 | // // The ... list is a series of UINTN values, so average them up.\r |
169 | // //\r |
170 | // Result += VA_ARG (Marker, UINTN);\r |
171 | // }\r |
172 | //\r |
173 | // VA_END (Marker);\r |
174 | // return Result\r |
175 | // }\r |
176 | //\r |
177 | \r |
178 | #define _INT_SIZE_OF(n) ((sizeof (n) + sizeof (UINTN) - 1) &~(sizeof (UINTN) - 1))\r |
179 | \r |
180 | //\r |
181 | // Also support coding convention rules for var arg macros\r |
182 | //\r |
959ccb23 |
183 | typedef CHAR8 *VA_LIST;\r |
184 | #define VA_START(ap, v) (ap = (VA_LIST) & (v) + _INT_SIZE_OF (v))\r |
185 | #define VA_ARG(ap, t) (*(t *) ((ap += _INT_SIZE_OF (t)) - _INT_SIZE_OF (t)))\r |
186 | #define VA_END(ap) (ap = (VA_LIST) 0)\r |
187 | \r |
959ccb23 |
188 | //\r |
189 | // Macro that returns the byte offset of a field in a data structure. \r |
190 | //\r |
191 | #define OFFSET_OF(TYPE, Field) ((UINTN) &(((TYPE *)0)->Field))\r |
192 | \r |
193 | ///\r |
194 | /// CONTAINING_RECORD - returns a pointer to the structure\r |
195 | /// from one of it's elements.\r |
196 | ///\r |
197 | #define _CR(Record, TYPE, Field) ((TYPE *) ((CHAR8 *) (Record) - (CHAR8 *) &(((TYPE *) 0)->Field)))\r |
198 | \r |
3fef0f51 |
199 | ///\r |
200 | /// ALIGN_VALUE - aligns a value up to the next boundary of the given alignment.\r |
201 | ///\r |
202 | #define ALIGN_VALUE(Value, Alignment) ((Value) + (((Alignment) - (Value)) & ((Alignment) - 1)))\r |
203 | \r |
959ccb23 |
204 | ///\r |
205 | /// ALIGN_POINTER - aligns a pointer to the lowest boundry\r |
206 | ///\r |
3fef0f51 |
207 | #define ALIGN_POINTER(Pointer, Alignment) ((VOID *) (ALIGN_VALUE ((UINTN)(Pointer), (Alignment))))\r |
959ccb23 |
208 | \r |
209 | ///\r |
210 | /// ALIGN_VARIABLE - aligns a variable up to the next natural boundry for int size of a processor\r |
211 | ///\r |
3fef0f51 |
212 | #define ALIGN_VARIABLE(Value) ALIGN_VALUE ((Value), sizeof (UINTN))\r |
213 | \r |
959ccb23 |
214 | \r |
215 | //\r |
216 | // Return the maximum of two operands. \r |
217 | // This macro returns the maximum of two operand specified by a and b. \r |
218 | // Both a and b must be the same numerical types, signed or unsigned.\r |
219 | //\r |
220 | #define MAX(a, b) \\r |
221 | (((a) > (b)) ? (a) : (b))\r |
222 | \r |
223 | \r |
224 | //\r |
225 | // Return the minimum of two operands. \r |
226 | // This macro returns the minimal of two operand specified by a and b. \r |
227 | // Both a and b must be the same numerical types, signed or unsigned.\r |
228 | //\r |
229 | #define MIN(a, b) \\r |
230 | (((a) < (b)) ? (a) : (b))\r |
231 | \r |
232 | \r |
233 | //\r |
234 | // EFI Error Codes common to all execution phases\r |
235 | //\r |
236 | \r |
237 | typedef INTN RETURN_STATUS;\r |
238 | \r |
239 | ///\r |
240 | /// Set the upper bit to indicate EFI Error.\r |
241 | ///\r |
242 | #define ENCODE_ERROR(a) (MAX_BIT | (a))\r |
243 | \r |
244 | #define ENCODE_WARNING(a) (a)\r |
cdebf6c6 |
245 | #define RETURN_ERROR(a) ((INTN) (a) < 0)\r |
959ccb23 |
246 | \r |
247 | #define RETURN_SUCCESS 0\r |
248 | #define RETURN_LOAD_ERROR ENCODE_ERROR (1)\r |
249 | #define RETURN_INVALID_PARAMETER ENCODE_ERROR (2)\r |
250 | #define RETURN_UNSUPPORTED ENCODE_ERROR (3)\r |
251 | #define RETURN_BAD_BUFFER_SIZE ENCODE_ERROR (4)\r |
252 | #define RETURN_BUFFER_TOO_SMALL ENCODE_ERROR (5)\r |
253 | #define RETURN_NOT_READY ENCODE_ERROR (6)\r |
254 | #define RETURN_DEVICE_ERROR ENCODE_ERROR (7)\r |
255 | #define RETURN_WRITE_PROTECTED ENCODE_ERROR (8)\r |
256 | #define RETURN_OUT_OF_RESOURCES ENCODE_ERROR (9)\r |
257 | #define RETURN_VOLUME_CORRUPTED ENCODE_ERROR (10)\r |
258 | #define RETURN_VOLUME_FULL ENCODE_ERROR (11)\r |
259 | #define RETURN_NO_MEDIA ENCODE_ERROR (12)\r |
260 | #define RETURN_MEDIA_CHANGED ENCODE_ERROR (13)\r |
261 | #define RETURN_NOT_FOUND ENCODE_ERROR (14)\r |
262 | #define RETURN_ACCESS_DENIED ENCODE_ERROR (15)\r |
263 | #define RETURN_NO_RESPONSE ENCODE_ERROR (16)\r |
264 | #define RETURN_NO_MAPPING ENCODE_ERROR (17)\r |
265 | #define RETURN_TIMEOUT ENCODE_ERROR (18)\r |
266 | #define RETURN_NOT_STARTED ENCODE_ERROR (19)\r |
267 | #define RETURN_ALREADY_STARTED ENCODE_ERROR (20)\r |
268 | #define RETURN_ABORTED ENCODE_ERROR (21)\r |
269 | #define RETURN_ICMP_ERROR ENCODE_ERROR (22)\r |
270 | #define RETURN_TFTP_ERROR ENCODE_ERROR (23)\r |
271 | #define RETURN_PROTOCOL_ERROR ENCODE_ERROR (24)\r |
272 | #define RETURN_INCOMPATIBLE_VERSION ENCODE_ERROR (25)\r |
273 | #define RETURN_SECURITY_VIOLATION ENCODE_ERROR (26)\r |
274 | #define RETURN_CRC_ERROR ENCODE_ERROR (27)\r |
275 | #define RETURN_END_OF_MEDIA ENCODE_ERROR (28)\r |
276 | #define RETURN_END_OF_FILE ENCODE_ERROR (31)\r |
54cf8780 |
277 | #define RETURN_INVALID_LANGUAGE ENCODE_ERROR (32)\r |
278 | \r |
959ccb23 |
279 | \r |
280 | #define RETURN_WARN_UNKNOWN_GLYPH ENCODE_WARNING (1)\r |
281 | #define RETURN_WARN_DELETE_FAILURE ENCODE_WARNING (2)\r |
282 | #define RETURN_WARN_WRITE_FAILURE ENCODE_WARNING (3)\r |
283 | #define RETURN_WARN_BUFFER_TOO_SMALL ENCODE_WARNING (4)\r |
284 | \r |
285 | #endif\r |
286 | \r |