]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Pi/PiMultiPhase.h
Move to sub-directory "include"
[mirror_edk2.git] / MdePkg / Pi / PiMultiPhase.h
diff --git a/MdePkg/Pi/PiMultiPhase.h b/MdePkg/Pi/PiMultiPhase.h
deleted file mode 100644 (file)
index 2b3f248..0000000
+++ /dev/null
@@ -1,91 +0,0 @@
-/** @file\r
-  Include file matches things in PI for multiple module types.\r
-\r
-  Copyright (c) 2006 - 2007, Intel Corporation                                                         \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
-  http://opensource.org/licenses/bsd-license.php                                            \r
-\r
-  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,                     \r
-  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.             \r
-\r
-  Module Name:  PiMultiPhase.h\r
-\r
-  @par Revision Reference:\r
-  Version 1.0.\r
-\r
-**/\r
-\r
-#ifndef __PI_MULTIPHASE_H__\r
-#define __PI_MULTIPHASE_H__\r
-\r
-#include <Uefi/UefiMultiPhase.h>\r
-\r
-#include <Pi/PiFirmwareVolume.h>\r
-#include <Pi/PiFirmwareFile.h>\r
-#include <Pi/PiBootMode.h>\r
-\r
-#include <Pi/PiHob.h>\r
-#include <Pi/PiDependency.h>\r
-\r
-//\r
-// Status Code Type Definition\r
-//\r
-typedef UINT32         EFI_STATUS_CODE_TYPE;\r
-\r
-//\r
-// A Status Code Type is made up of the code type and severity\r
-// All values masked by EFI_STATUS_CODE_RESERVED_MASK are\r
-// reserved for use by this specification.\r
-//\r
-#define EFI_STATUS_CODE_TYPE_MASK              0x000000FF\r
-#define EFI_STATUS_CODE_SEVERITY_MASK 0xFF000000\r
-#define EFI_STATUS_CODE_RESERVED_MASK 0x00FFFF00\r
-\r
-//\r
-// Definition of code types, all other values masked by\r
-// EFI_STATUS_CODE_TYPE_MASK are reserved for use by\r
-// this specification.\r
-//\r
-#define EFI_PROGRESS_CODE                                              0x00000001\r
-#define EFI_ERROR_CODE                                                                 0x00000002\r
-#define EFI_DEBUG_CODE                                                                 0x00000003\r
-\r
-//\r
-// Definitions of severities, all other values masked by\r
-// EFI_STATUS_CODE_SEVERITY_MASK are reserved for use by\r
-// this specification.\r
-// Uncontained errors are major errors that could not contained\r
-// to the specific component that is reporting the error\r
-// For example, if a memory error was not detected early enough,\r
-// the bad data could be consumed by other drivers.\r
-//\r
-#define EFI_ERROR_MINOR                                                        0x40000000\r
-#define EFI_ERROR_MAJOR                                                        0x80000000\r
-#define EFI_ERROR_UNRECOVERED                          0x90000000\r
-#define EFI_ERROR_UNCONTAINED                          0xa0000000\r
-\r
-//\r
-// Status Code Value Definition\r
-//\r
-typedef UINT32 EFI_STATUS_CODE_VALUE;\r
-//\r
-// A Status Code Value is made up of the class, subclass, and\r
-// an operation.\r
-//\r
-#define EFI_STATUS_CODE_CLASS_MASK                     0xFF000000\r
-#define EFI_STATUS_CODE_SUBCLASS_MASK  0x00FF0000\r
-#define EFI_STATUS_CODE_OPERATION_MASK         0x0000FFFF\r
-//\r
-// Definition of Status Code extended data header.\r
-// The data will follow HeaderSize bytes from the beginning of\r
-// the structure and is Size bytes long.\r
-//\r
-typedef struct {\r
-       UINT16          HeaderSize;\r
-       UINT16          Size;\r
-       EFI_GUID        Type;\r
-} EFI_STATUS_CODE_DATA;\r
-\r
-#endif\r