]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Pi/PiMultiPhase.h
Import Library Class from original MDE package. Also I added the EFI_PEI_CORE_ENTRY_P...
[mirror_edk2.git] / MdePkg / Include / Pi / PiMultiPhase.h
CommitLineData
959ccb23 1/** @file\r
2 Include file matches things in PI for multiple module types.\r
3\r
4 Copyright (c) 2006 - 2007, Intel Corporation \r
5 All rights reserved. This program and the accompanying materials \r
6 are licensed and made available under the terms and conditions of the BSD License \r
7 which accompanies this distribution. The full text of the license may be found at \r
8 http://opensource.org/licenses/bsd-license.php \r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
12\r
13 Module Name: PiMultiPhase.h\r
14\r
15 @par Revision Reference:\r
16 Version 1.0.\r
17\r
18**/\r
19\r
20#ifndef __PI_MULTIPHASE_H__\r
21#define __PI_MULTIPHASE_H__\r
22\r
23#include <Uefi/UefiMultiPhase.h>\r
24\r
25#include <Pi/PiFirmwareVolume.h>\r
26#include <Pi/PiFirmwareFile.h>\r
27#include <Pi/PiBootMode.h>\r
28\r
29#include <Pi/PiHob.h>\r
30#include <Pi/PiDependency.h>\r
31\r
32//\r
33// Status Code Type Definition\r
34//\r
00edb218 35typedef UINT32 EFI_STATUS_CODE_TYPE;\r
959ccb23 36\r
37//\r
38// A Status Code Type is made up of the code type and severity\r
39// All values masked by EFI_STATUS_CODE_RESERVED_MASK are\r
40// reserved for use by this specification.\r
41//\r
00edb218 42#define EFI_STATUS_CODE_TYPE_MASK 0x000000FF\r
959ccb23 43#define EFI_STATUS_CODE_SEVERITY_MASK 0xFF000000\r
44#define EFI_STATUS_CODE_RESERVED_MASK 0x00FFFF00\r
45\r
46//\r
47// Definition of code types, all other values masked by\r
48// EFI_STATUS_CODE_TYPE_MASK are reserved for use by\r
49// this specification.\r
50//\r
00edb218
A
51#define EFI_PROGRESS_CODE 0x00000001\r
52#define EFI_ERROR_CODE 0x00000002\r
53#define EFI_DEBUG_CODE 0x00000003\r
959ccb23 54\r
55//\r
56// Definitions of severities, all other values masked by\r
57// EFI_STATUS_CODE_SEVERITY_MASK are reserved for use by\r
58// this specification.\r
59// Uncontained errors are major errors that could not contained\r
60// to the specific component that is reporting the error\r
61// For example, if a memory error was not detected early enough,\r
62// the bad data could be consumed by other drivers.\r
63//\r
00edb218
A
64#define EFI_ERROR_MINOR 0x40000000\r
65#define EFI_ERROR_MAJOR 0x80000000\r
66#define EFI_ERROR_UNRECOVERED 0x90000000\r
67#define EFI_ERROR_UNCONTAINED 0xa0000000\r
959ccb23 68\r
69//\r
70// Status Code Value Definition\r
71//\r
72typedef UINT32 EFI_STATUS_CODE_VALUE;\r
73//\r
74// A Status Code Value is made up of the class, subclass, and\r
75// an operation.\r
76//\r
00edb218
A
77#define EFI_STATUS_CODE_CLASS_MASK 0xFF000000\r
78#define EFI_STATUS_CODE_SUBCLASS_MASK 0x00FF0000\r
79#define EFI_STATUS_CODE_OPERATION_MASK 0x0000FFFF\r
959ccb23 80//\r
81// Definition of Status Code extended data header.\r
82// The data will follow HeaderSize bytes from the beginning of\r
83// the structure and is Size bytes long.\r
84//\r
85typedef struct {\r
00edb218
A
86 UINT16 HeaderSize;\r
87 UINT16 Size;\r
88 EFI_GUID Type;\r
959ccb23 89} EFI_STATUS_CODE_DATA;\r
90\r
91#endif\r