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