]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Ipf/ProcessorBind.h
Add the IPF boot mode into ProcessorBind.h, and these boot mode is defined in Itanium...
[mirror_edk2.git] / MdePkg / Include / Ipf / ProcessorBind.h
CommitLineData
959ccb23 1/** @file\r
2 Processor or Compiler specific defines and types for Intel Itanium(TM).\r
3\r
bf3179d8 4 Copyright (c) 2006, Intel Corporation\r
5 All rights reserved. This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
959ccb23 9\r
bf3179d8 10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
959ccb23 12\r
959ccb23 13**/\r
14\r
15#ifndef __PROCESSOR_BIND_H__\r
16#define __PROCESSOR_BIND_H__\r
17\r
18\r
19//\r
20// Define the processor type so other code can make processor based choices\r
21//\r
22#define MDE_CPU_IPF\r
23\r
24\r
25//\r
26// Make sure we are useing the correct packing rules per EFI specification\r
27//\r
28#pragma pack()\r
29\r
30\r
bf3179d8 31#if _MSC_EXTENSIONS\r
32\r
959ccb23 33//\r
34// Disable warning that make it impossible to compile at /W4\r
bf3179d8 35// This only works for Microsoft tools. Copied from the\r
959ccb23 36// IA-32 version of efibind.h\r
37//\r
38\r
39//\r
40// Disabling bitfield type checking warnings.\r
41//\r
42#pragma warning ( disable : 4214 )\r
43\r
44\r
45// Disabling the unreferenced formal parameter warnings.\r
46//\r
47#pragma warning ( disable : 4100 )\r
48\r
49//\r
50// Disable slightly different base types warning as CHAR8 * can not be set\r
51// to a constant string.\r
52//\r
53#pragma warning ( disable : 4057 )\r
54\r
55//\r
56// Disable warning on conversion from function pointer to a data pointer\r
57//\r
58#pragma warning ( disable : 4054 )\r
59\r
60//\r
61// ASSERT(FALSE) or while (TRUE) are legal constructes so supress this warning\r
62//\r
63#pragma warning ( disable : 4127 )\r
64\r
65//\r
bf3179d8 66// Can not cast a function pointer to a data pointer. We need to do this on\r
959ccb23 67// IPF to get access to the PLABEL.\r
68//\r
69#pragma warning ( disable : 4514 )\r
70\r
71//\r
72// This warning is caused by functions defined but not used. For precompiled header only.\r
73//\r
74#pragma warning ( disable : 4505 )\r
75\r
76//\r
77// This warning is caused by empty (after preprocessing) souce file. For precompiled header only.\r
78//\r
79#pragma warning ( disable : 4206 )\r
80\r
81#endif\r
82\r
83\r
84#if (__STDC_VERSION__ < 199901L)\r
85 //\r
86 // No ANSI C 2000 stdint.h integer width declarations, so define equivalents\r
87 //\r
bf3179d8 88\r
89 #if _MSC_EXTENSIONS\r
90\r
959ccb23 91\r
92 //\r
bf3179d8 93 // use Microsoft C complier dependent interger width types\r
959ccb23 94 //\r
95 typedef unsigned __int64 UINT64;\r
96 typedef __int64 INT64;\r
97 typedef unsigned __int32 UINT32;\r
98 typedef __int32 INT32;\r
99 typedef unsigned short UINT16;\r
100 typedef unsigned short CHAR16;\r
101 typedef short INT16;\r
102 typedef unsigned char BOOLEAN;\r
103 typedef unsigned char UINT8;\r
104 typedef char CHAR8;\r
105 typedef char INT8;\r
106 #else\r
bf3179d8 107 #ifdef _EFI_P64\r
959ccb23 108 //\r
bf3179d8 109 // P64 - is Intel Itanium(TM) speak for pointers being 64-bit and longs and ints\r
959ccb23 110 // are 32-bits\r
111 //\r
112 typedef unsigned long long UINT64;\r
113 typedef long long INT64;\r
114 typedef unsigned int UINT32;\r
115 typedef int INT32;\r
116 typedef unsigned short CHAR16;\r
117 typedef unsigned short UINT16;\r
118 typedef short INT16;\r
119 typedef unsigned char BOOLEAN;\r
120 typedef unsigned char UINT8;\r
121 typedef char CHAR8;\r
122 typedef char INT8;\r
123 #else\r
124 //\r
125 // Assume LP64 - longs and pointers are 64-bit. Ints are 32-bit.\r
126 //\r
127 typedef unsigned long UINT64;\r
128 typedef long INT64;\r
129 typedef unsigned int UINT32;\r
130 typedef int INT32;\r
131 typedef unsigned short UINT16;\r
132 typedef unsigned short CHAR16;\r
133 typedef short INT16;\r
134 typedef unsigned char BOOLEAN;\r
135 typedef unsigned char UINT8;\r
136 typedef char CHAR8;\r
137 typedef char INT8;\r
138 #endif\r
139 #endif\r
140\r
141 #define UINT8_MAX 0xff\r
142\r
143#else\r
144 //\r
145 // Use ANSI C 2000 stdint.h integer width declarations\r
146 //\r
147 #include <stdint.h>\r
148 typedef uint8_t BOOLEAN;\r
149 typedef int8_t INT8;\r
150 typedef uint8_t UINT8;\r
151 typedef int16_t INT16;\r
152 typedef uint16_t UINT16;\r
153 typedef int32_t INT32;\r
154 typedef uint32_t UINT32;\r
155 typedef int64_t INT64;\r
156 typedef uint64_t UINT64;\r
157 typedef char CHAR8;\r
158 typedef uint16_t CHAR16;\r
159\r
160#endif\r
161\r
162typedef UINT64 UINTN;\r
163typedef INT64 INTN;\r
164\r
165\r
166//\r
167// Processor specific defines\r
168//\r
169#define MAX_BIT 0x8000000000000000ULL\r
170#define MAX_2_BITS 0xC000000000000000ULL\r
171\r
172//\r
173// Maximum legal Itanium-based address\r
174//\r
175#define MAX_ADDRESS 0xFFFFFFFFFFFFFFFFULL\r
176\r
177//\r
178// Per the Itanium Software Conventions and Runtime Architecture Guide,\r
179// section 3.3.4, IPF stack must always be 16-byte aligned.\r
180//\r
181#define CPU_STACK_ALIGNMENT 16\r
182\r
183//\r
184// Modifier to ensure that all protocol member functions and EFI intrinsics\r
185// use the correct C calling convention. All protocol member functions and\r
186// EFI intrinsics are required to modify thier member functions with EFIAPI.\r
187//\r
bf3179d8 188#if _MSC_EXTENSIONS\r
959ccb23 189 //\r
190 // Microsoft* compiler requires _EFIAPI useage, __cdecl is Microsoft* specific C.\r
bf3179d8 191 //\r
192 #define EFIAPI __cdecl\r
959ccb23 193#else\r
bf3179d8 194 #define EFIAPI\r
959ccb23 195#endif\r
196\r
197//\r
198// The Microsoft* C compiler can removed references to unreferenced data items\r
bf3179d8 199// if the /OPT:REF linker option is used. We defined a macro as this is a\r
959ccb23 200// a non standard extension\r
201//\r
202#if _MSC_EXTENSIONS\r
203 #define GLOBAL_REMOVE_IF_UNREFERENCED __declspec(selectany)\r
204#else\r
205 #define GLOBAL_REMOVE_IF_UNREFERENCED\r
206#endif\r
207\r
bf3179d8 208//\r
209// For IPF boot mode\r
210//\r
211#define RECOVERY_CHECK_CALL 0x3\r
212#define NORMAL_BOOT_CALL 0x0\r
213\r
959ccb23 214//\r
215// A pointer to a function in IPF points to a plabel.\r
216//\r
217typedef struct {\r
218 UINT64 EntryPoint;\r
219 UINT64 GP;\r
220} EFI_PLABEL;\r
221\r
842f5579
A
222typedef struct {\r
223 UINT64 Status;\r
224 UINT64 r9;\r
225 UINT64 r10;\r
226 UINT64 r11;\r
227} PAL_CALL_RETURN;\r
228\r
959ccb23 229#endif\r
230\r