2 Processor or Compiler specific defines and types for Intel Itanium(TM).
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
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.
13 Module Name: ProcessorBind.h
17 #ifndef __PROCESSOR_BIND_H__
18 #define __PROCESSOR_BIND_H__
22 // Define the processor type so other code can make processor based choices
28 // Make sure we are useing the correct packing rules per EFI specification
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
42 // Disabling bitfield type checking warnings.
44 #pragma warning ( disable : 4214 )
47 // Disabling the unreferenced formal parameter warnings.
49 #pragma warning ( disable : 4100 )
52 // Disable slightly different base types warning as CHAR8 * can not be set
53 // to a constant string.
55 #pragma warning ( disable : 4057 )
58 // ASSERT(FALSE) or while (TRUE) are legal constructes so supress this warning
60 #pragma warning ( disable : 4127 )
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.
66 #pragma warning ( disable : 4514 )
72 #if (__STDC_VERSION__ < 199901L)
74 // No ANSI C 2000 stdint.h integer width declarations, so define equivalents
81 // use Microsoft C complier dependent interger width types
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
;
90 typedef unsigned char BOOLEAN
;
91 typedef unsigned char UINT8
;
97 // P64 - is Intel Itanium(TM) speak for pointers being 64-bit and longs and ints
100 typedef unsigned long long UINT64
;
101 typedef long long INT64
;
102 typedef unsigned int UINT32
;
104 typedef unsigned short CHAR16
;
105 typedef unsigned short UINT16
;
107 typedef unsigned char BOOLEAN
;
108 typedef unsigned char UINT8
;
113 // Assume LP64 - longs and pointers are 64-bit. Ints are 32-bit.
115 typedef unsigned long UINT64
;
117 typedef unsigned int UINT32
;
119 typedef unsigned short UINT16
;
120 typedef unsigned short CHAR16
;
122 typedef unsigned char BOOLEAN
;
123 typedef unsigned char UINT8
;
129 #define UINT8_MAX 0xff
133 // Use ANSI C 2000 stdint.h integer width declarations
136 typedef uint8_t BOOLEAN
;
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
;
146 typedef uint16_t CHAR16
;
150 typedef UINT64 UINTN
;
155 // Processor specific defines
157 #define MAX_BIT 0x8000000000000000ULL
158 #define MAX_2_BITS 0xC000000000000000ULL
161 // Maximum legal Itanium-based address
163 #define MAX_ADDRESS 0xFFFFFFFFFFFFFFFFULL
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.
172 // Microsoft* compiler requires _EFIAPI useage, __cdecl is Microsoft* specific C.
174 #define EFIAPI __cdecl
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
184 #define GLOBAL_REMOVE_IF_UNREFERENCED
187 // A pointer to a function in IPF points to a plabel.
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
;