summaryrefslogtreecommitdiff
path: root/EDK/Foundation/Guid/FastBootExceptionInfo/FastBootExceptionInfo.h
blob: 4d118163e56a14fced5d1c5e19160334e3606260 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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