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