]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Source/TianoTools/Include/Common/BaseTypes.h
Support building on x64 hosts.
[mirror_edk2.git] / Tools / Source / TianoTools / Include / Common / BaseTypes.h
CommitLineData
21b50a27 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
6 Copyright (c) 2006, Intel Corporation \r
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
c7c42e40 26#include <stdarg.h>\r
21b50a27 27\r
28#define MEMORY_FENCE() MemoryFence ()\r
29#define BREAKPOINT() CpuBreakpoint ()\r
30#define DEADLOOP() CpuDeadLoop ()\r
31\r
32typedef struct {\r
33 UINT32 Data1;\r
34 UINT16 Data2;\r
35 UINT16 Data3;\r
36 UINT8 Data4[8];\r
37} GUID;\r
38\r
39\r
40//\r
41// Modifiers to absract standard types to aid in debug of problems\r
42//\r
43#define CONST const\r
44#define STATIC static\r
45#define VOID void\r
46\r
47//\r
48// Modifiers for Data Types used to self document code.\r
49// This concept is borrowed for UEFI specification.\r
50//\r
51#ifndef IN\r
52//\r
53// Some other envirnments use this construct, so #ifndef to prevent\r
54// mulitple definition.\r
55//\r
56#define IN\r
57#define OUT\r
58#define OPTIONAL\r
59#endif\r
60\r
61//\r
62// Constants. They may exist in other build structures, so #ifndef them.\r
63//\r
64#ifndef TRUE\r
65//\r
66// BugBug: UEFI specification claims 1 and 0. We are concerned about the \r
67// complier portability so we did it this way.\r
68//\r
69#define TRUE ((BOOLEAN)(1==1))\r
70#endif\r
71\r
72#ifndef FALSE\r
73#define FALSE ((BOOLEAN)(0==1))\r
74#endif\r
75\r
76#ifndef NULL\r
77#define NULL ((VOID *) 0)\r
78#endif\r
79\r
80//\r
81// Support for variable length argument lists using the ANSI standard.\r
82// \r
83// Since we are using the ANSI standard we used the standard nameing and\r
84// did not folow the coding convention\r
85//\r
86// VA_LIST - typedef for argument list.\r
87// VA_START (VA_LIST Marker, argument before the ...) - Init Marker for use.\r
88// VA_END (VA_LIST Marker) - Clear Marker\r
89// VA_ARG (VA_LIST Marker, var arg size) - Use Marker to get an argumnet from\r
90// the ... list. You must know the size and pass it in this macro.\r
91//\r
92// example:\r
93//\r
94// UINTN\r
95// ExampleVarArg (\r
96// IN UINTN NumberOfArgs,\r
97// ...\r
98// )\r
99// {\r
100// VA_LIST Marker;\r
101// UINTN Index;\r
102// UINTN Result;\r
103//\r
104// //\r
105// // Initialize the Marker\r
106// //\r
107// VA_START (Marker, NumberOfArgs);\r
108// for (Index = 0, Result = 0; Index < NumberOfArgs; Index++) {\r
109// //\r
110// // The ... list is a series of UINTN values, so average them up.\r
111// //\r
112// Result += VA_ARG (Marker, UINTN);\r
113// }\r
114//\r
115// VA_END (Marker);\r
116// return Result\r
117// }\r
118//\r
119\r
120#define _INT_SIZE_OF(n) ((sizeof (n) + sizeof (UINTN) - 1) &~(sizeof (UINTN) - 1))\r
121\r
122//\r
123// Also support coding convention rules for var arg macros\r
124//\r
125#ifndef VA_START\r
126\r
c7c42e40 127// typedef CHAR8 *VA_LIST;\r
128// #define VA_START(ap, v) (ap = (VA_LIST) & (v) + _INT_SIZE_OF (v))\r
129// #define VA_ARG(ap, t) (*(t *) ((ap += _INT_SIZE_OF (t)) - _INT_SIZE_OF (t)))\r
130// #define VA_END(ap) (ap = (VA_LIST) 0)\r
131// Use the native arguments for tools.\r
132#define VA_START va_start\r
133#define VA_ARG va_arg\r
134#define VA_END va_end\r
135#define VA_LIST va_list\r
21b50a27 136\r
137#endif\r
138\r
139///\r
140/// CONTAINING_RECORD - returns a pointer to the structure\r
141/// from one of it's elements.\r
142///\r
143#define _CR(Record, TYPE, Field) ((TYPE *) ((CHAR8 *) (Record) - (CHAR8 *) &(((TYPE *) 0)->Field)))\r
144\r
145///\r
146/// ALIGN_POINTER - aligns a pointer to the lowest boundry\r
147///\r
148#define ALIGN_POINTER(p, s) ((VOID *) ((p) + (((s) - ((UINTN) (p))) & ((s) - 1))))\r
149\r
150///\r
151/// ALIGN_VARIABLE - aligns a variable up to the next natural boundry for int size of a processor\r
152///\r
153#define ALIGN_VARIABLE(Value, Adjustment) \\r
154 Adjustment = 0U; \\r
155 if ((UINTN) (Value) % sizeof (UINTN)) { \\r
156 (Adjustment) = (UINTN)(sizeof (UINTN) - ((UINTN) (Value) % sizeof (UINTN))); \\r
157 } \\r
158 (Value) = (UINTN)((UINTN) (Value) + (UINTN) (Adjustment))\r
159\r
160//\r
161// EFI Error Codes common to all execution phases\r
162//\r
163\r
164typedef INTN RETURN_STATUS;\r
165\r
166///\r
167/// Set the upper bit to indicate EFI Error.\r
168///\r
169#define ENCODE_ERROR(a) (MAX_BIT | (a))\r
170\r
171#define ENCODE_WARNING(a) (a)\r
172#define RETURN_ERROR(a) ((a) < 0)\r
173\r
174#define RETURN_SUCCESS 0\r
175#define RETURN_LOAD_ERROR ENCODE_ERROR (1)\r
176#define RETURN_INVALID_PARAMETER ENCODE_ERROR (2)\r
177#define RETURN_UNSUPPORTED ENCODE_ERROR (3)\r
178#define RETURN_BAD_BUFFER_SIZE ENCODE_ERROR (4)\r
179#define RETURN_BUFFER_TOO_SMALL ENCODE_ERROR (5)\r
180#define RETURN_NOT_READY ENCODE_ERROR (6)\r
181#define RETURN_DEVICE_ERROR ENCODE_ERROR (7)\r
182#define RETURN_WRITE_PROTECTED ENCODE_ERROR (8)\r
183#define RETURN_OUT_OF_RESOURCES ENCODE_ERROR (9)\r
184#define RETURN_VOLUME_CORRUPTED ENCODE_ERROR (10)\r
185#define RETURN_VOLUME_FULL ENCODE_ERROR (11)\r
186#define RETURN_NO_MEDIA ENCODE_ERROR (12)\r
187#define RETURN_MEDIA_CHANGED ENCODE_ERROR (13)\r
188#define RETURN_NOT_FOUND ENCODE_ERROR (14)\r
189#define RETURN_ACCESS_DENIED ENCODE_ERROR (15)\r
190#define RETURN_NO_RESPONSE ENCODE_ERROR (16)\r
191#define RETURN_NO_MAPPING ENCODE_ERROR (17)\r
192#define RETURN_TIMEOUT ENCODE_ERROR (18)\r
193#define RETURN_NOT_STARTED ENCODE_ERROR (19)\r
194#define RETURN_ALREADY_STARTED ENCODE_ERROR (20)\r
195#define RETURN_ABORTED ENCODE_ERROR (21)\r
196#define RETURN_ICMP_ERROR ENCODE_ERROR (22)\r
197#define RETURN_TFTP_ERROR ENCODE_ERROR (23)\r
198#define RETURN_PROTOCOL_ERROR ENCODE_ERROR (24)\r
199#define RETURN_INCOMPATIBLE_VERSION ENCODE_ERROR (25)\r
200#define RETURN_SECURITY_VIOLATION ENCODE_ERROR (26)\r
201#define RETURN_CRC_ERROR ENCODE_ERROR (27)\r
202#define RETURN_END_OF_MEDIA ENCODE_ERROR (28)\r
203#define RETURN_END_OF_FILE ENCODE_ERROR (31)\r
204\r
205#define RETURN_WARN_UNKNOWN_GLYPH ENCODE_WARNING (1)\r
206#define RETURN_WARN_DELETE_FAILURE ENCODE_WARNING (2)\r
207#define RETURN_WARN_WRITE_FAILURE ENCODE_WARNING (3)\r
208#define RETURN_WARN_BUFFER_TOO_SMALL ENCODE_WARNING (4)\r
209\r
210typedef UINT64 PHYSICAL_ADDRESS;\r
211\r
212#endif\r