]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Include/Uefi/UefiBaseType.h
Refactor the code logic to reduce code size for debug tip.
[mirror_edk2.git] / MdePkg / Include / Uefi / UefiBaseType.h
index fb0ac22dbbf2ddddde38de6f8189faee77c471ff..572f6959358bf8d8f9d9c53f9de568848cbb32de 100644 (file)
@@ -1,7 +1,8 @@
 /** @file\r
   Defines data types and constants introduced in UEFI.\r
 \r
-  Copyright (c) 2006 - 2008, Intel Corporation\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
+  Portions copyright (c) 2008-2009 Apple Inc. All rights reserved.<BR>\r
   All rights reserved. This program and the accompanying materials\r
   are licensed and made available under the terms and conditions of the BSD License\r
   which accompanies this distribution.  The full text of the license may be found at\r
@@ -18,7 +19,7 @@
 #include <Base.h>\r
 \r
 //\r
-// Basical data type definitions introduced in UEFI.\r
+// Basic data type definitions introduced in UEFI.\r
 //\r
 \r
 ///\r
@@ -177,36 +178,30 @@ typedef union {
 \r
 #define EFI_PAGES_TO_SIZE(a)   ( (a) << EFI_PAGE_SHIFT)\r
 \r
-///\r
-/// Limited buffer size for a language code recommended by RFC3066\r
-/// (42 characters plus a NULL terminator)\r
-///\r
-#define RFC_3066_ENTRY_SIZE             (42 + 1)\r
-\r
-///\r
-/// The size of a 3 character ISO639 language code.\r
-///\r
-#define ISO_639_2_ENTRY_SIZE            3\r
-\r
 ///\r
 /// PE32+ Machine type for IA32 UEFI images\r
 ///\r
-#define EFI_IMAGE_MACHINE_IA32      0x014C\r
+#define EFI_IMAGE_MACHINE_IA32            0x014C\r
 \r
 ///\r
 /// PE32+ Machine type for IA64 UEFI images\r
 ///\r
-#define EFI_IMAGE_MACHINE_IA64      0x0200\r
+#define EFI_IMAGE_MACHINE_IA64            0x0200\r
 \r
 ///\r
 /// PE32+ Machine type for EBC UEFI images\r
 ///\r
-#define EFI_IMAGE_MACHINE_EBC       0x0EBC\r
+#define EFI_IMAGE_MACHINE_EBC             0x0EBC\r
 \r
 ///\r
 /// PE32+ Machine type for X64 UEFI images\r
 ///\r
-#define EFI_IMAGE_MACHINE_X64       0x8664\r
+#define EFI_IMAGE_MACHINE_X64             0x8664\r
+\r
+///\r
+/// PE32+ Machine type for ARM mixed ARM and Thumb/Thumb2 images\r
+///\r
+#define EFI_IMAGE_MACHINE_ARMTHUMB_MIXED  0x01C2\r
 \r
 \r
 #if   defined (MDE_CPU_IA32)\r
@@ -230,12 +225,18 @@ typedef union {
 \r
 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_IA32) \r
 \r
+#elif defined (MDE_CPU_ARM)\r
+\r
+#define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \\r
+  (((Machine) == EFI_IMAGE_MACHINE_ARMTHUMB_MIXED) || ((Machine) == EFI_IMAGE_MACHINE_EBC))\r
+\r
+#define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_ARMTHUMB_MIXED) \r
+\r
 #elif defined (MDE_CPU_EBC)\r
 \r
 ///\r
-/// This is just to make sure you can cross compile with the EBC compiiler.\r
-/// It does not make sense to have a PE loader coded in EBC. You need to \r
-/// understand the basic \r
+/// This is just to make sure you can cross compile with the EBC compiler.\r
+/// It does not make sense to have a PE loader coded in EBC. \r
 ///\r
 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_EBC)\r
 \r