summaryrefslogtreecommitdiff
path: root/EDK/Foundation/Guid/FastBootExceptionInfo/FastBootExceptionInfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'EDK/Foundation/Guid/FastBootExceptionInfo/FastBootExceptionInfo.h')
-rw-r--r--EDK/Foundation/Guid/FastBootExceptionInfo/FastBootExceptionInfo.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/EDK/Foundation/Guid/FastBootExceptionInfo/FastBootExceptionInfo.h b/EDK/Foundation/Guid/FastBootExceptionInfo/FastBootExceptionInfo.h
new file mode 100644
index 0000000..4d11816
--- /dev/null
+++ b/EDK/Foundation/Guid/FastBootExceptionInfo/FastBootExceptionInfo.h
@@ -0,0 +1,44 @@
+/*++
+
+Copyright (c) 1999 - 2011 Intel Corporation. All rights reserved
+This software and associated documentation (if any) is furnished
+under a license and may only be used or copied in accordance
+with the terms of the license. Except as permitted by such
+license, no part of this software or documentation may be
+reproduced, stored in a retrieval system, or transmitted in any
+form or by any means without the express written consent of
+Intel Corporation.
+
+Module Name:
+
+ FastBootExceptionInfo.h
+
+Abstract:
+
+ This file defines the HOB data structure recording an Fast Boot exception
+ occurrence in PEI phase, which will be used/referenced by some DXE phase drivers.
+
+--*/
+
+#ifndef _FAST_BOOT_EXCEPTION_INFO_HOB_GUID_H_
+#define _FAST_BOOT_EXCEPTION_INFO_HOB_GUID_H_
+
+#include <PeiHob.h>
+#include <FastBootDataDef.h>
+
+#define FAST_BOOT_EXCEPTION_INFO_HOB_GUID \
+ { 0x4ed88276, 0xd4df, 0x4d03, 0x86, 0x61, 0x29, 0x58, 0x1, 0xb2, 0xda, 0x58 }
+
+EFI_FORWARD_DECLARATION (FAST_BOOT_EXCEPTION_INFO_HOB);
+
+typedef struct _FAST_BOOT_EXCEPTION_INFO_HOB {
+ EFI_HOB_GUID_TYPE Header;
+ EFI_GUID GuidName;
+ FAST_BOOT_EXCEPTION_TYPE FbExceptionType;
+ FAST_BOOT_EXCEPTION_CATEGORY FbExceptionCategory;
+};
+
+extern EFI_GUID gFastBootExceptionInfoHobGuid;
+
+#endif
+