summaryrefslogtreecommitdiff
path: root/EdkCompatibilityPkg/Foundation/Efi/Protocol/DebugSupport/DebugSupport.h
diff options
context:
space:
mode:
authorHarry Liebel <Harry.Liebel@arm.com>2013-08-08 08:55:02 +0000
committeroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>2013-08-08 08:55:02 +0000
commit373fbc64167e080fbe334776877cfba116d62a2d (patch)
tree55a004f6d06a21bfe4875178060fdc01812be347 /EdkCompatibilityPkg/Foundation/Efi/Protocol/DebugSupport/DebugSupport.h
parente01a125f15bd9354c0e8a59785880e308c0cfc63 (diff)
downloadedk2-platforms-373fbc64167e080fbe334776877cfba116d62a2d.tar.xz
Add Aarch64 support to EdkCompatibilityPkg.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Harry Liebel <Harry.Liebel@arm.com> Signed-off-by: Olivier Martin <olivier.martin@arm.com> Reviewed-by: Liming Gao <liming.gao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14533 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkCompatibilityPkg/Foundation/Efi/Protocol/DebugSupport/DebugSupport.h')
-rw-r--r--EdkCompatibilityPkg/Foundation/Efi/Protocol/DebugSupport/DebugSupport.h31
1 files changed, 16 insertions, 15 deletions
diff --git a/EdkCompatibilityPkg/Foundation/Efi/Protocol/DebugSupport/DebugSupport.h b/EdkCompatibilityPkg/Foundation/Efi/Protocol/DebugSupport/DebugSupport.h
index 2249a12a85..dea02dc03f 100644
--- a/EdkCompatibilityPkg/Foundation/Efi/Protocol/DebugSupport/DebugSupport.h
+++ b/EdkCompatibilityPkg/Foundation/Efi/Protocol/DebugSupport/DebugSupport.h
@@ -1,13 +1,13 @@
/*++
Copyright (c) 2004 - 2006, Intel Corporation. All rights reserved.<BR>
-This program and the accompanying materials
-are licensed and made available under the terms and conditions of the BSD License
-which accompanies this distribution. The full text of the license may be found at
-http://opensource.org/licenses/bsd-license.php
-
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+This program and the accompanying materials
+are licensed and made available under the terms and conditions of the BSD License
+which accompanies this distribution. The full text of the license may be found at
+http://opensource.org/licenses/bsd-license.php
+
+THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
Module Name:
@@ -17,10 +17,10 @@ Abstract:
DebugSupport protocol and supporting definitions as defined in the EFI 1.1
specification.
-
+
The DebugSupport protocol is used by source level debuggers to abstract the
processor and handle context save and restore operations.
-
+
--*/
#ifndef _DEBUG_SUPPORT_H_
@@ -205,7 +205,7 @@ typedef struct {
UINT8 Xmm7[16];
#if (EFI_SPECIFICATION_VERSION >= 0x00020000)
//
- // NOTE: UEFI 2.0 spec definition as follows. It should be updated
+ // NOTE: UEFI 2.0 spec definition as follows. It should be updated
// after spec update.
//
UINT8 Reserved11[14 * 16];
@@ -534,11 +534,12 @@ VOID
// Machine type definition
//
typedef enum {
- IsaIa32 = EFI_IMAGE_MACHINE_IA32,
- IsaX64 = EFI_IMAGE_MACHINE_X64,
- IsaIpf = EFI_IMAGE_MACHINE_IA64,
- IsaEbc = EFI_IMAGE_MACHINE_EBC,
- IsaArm = EFI_IMAGE_MACHINE_ARMTHUMB_MIXED
+ IsaIa32 = EFI_IMAGE_MACHINE_IA32,
+ IsaX64 = EFI_IMAGE_MACHINE_X64,
+ IsaIpf = EFI_IMAGE_MACHINE_IA64,
+ IsaEbc = EFI_IMAGE_MACHINE_EBC,
+ IsaArm = EFI_IMAGE_MACHINE_ARMTHUMB_MIXED,
+ IsaAArch64 = EFI_IMAGE_MACHINE_AARCH64
} EFI_INSTRUCTION_SET_ARCHITECTURE;
EFI_FORWARD_DECLARATION (EFI_DEBUG_SUPPORT_PROTOCOL);