]> git.proxmox.com Git - mirror_edk2.git/blob - EdkModulePkg/Include/EdkPeim.h
Do not use return value of REPORT_STATUS_CODE_WITH_DEVICE_PATH to override the curren...
[mirror_edk2.git] / EdkModulePkg / Include / EdkPeim.h
1 /*++
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 EdkPeim.h
15
16 Abstract:
17 This file defines the base package surface area for writting a PEIM
18
19 Things defined in the PEI CIS specification go in PeiCis.h.
20
21 EdkPeim.h contains build environment and library information needed to build
22 a basic PEIM that needs Tiano specific definitiosn. T
23
24 Currently we just add in some extra PPI and GUID definitions
25
26 --*/
27
28 #ifndef __EDK_PEIM_H__
29 #define __EDK_PEIM_H__
30
31 //
32 #include <Common/FlashMap.h>
33 #include <Common/DecompressLibraryHob.h>
34 // BUGBUG: We must include this lib here due to ordering issues
35 //
36 #include <Library/PeCoffLib.h>
37
38 //
39 // BUGBUG: Performance related Guid.
40 // It is Tiano-private, but is required for PeiCore
41 //
42 #include <Guid/PeiPerformanceHob.h>
43 #include <Guid/PeiPeCoffLoader.h>
44 #include <Guid/SystemNvDataGuid.h>
45 #include <Guid/FlashMapHob.h>
46 #include <Guid/MemoryTypeInformation.h>
47 #include <Guid/CapsuleVendor.h>
48 #include <Guid/BootState.h>
49 #include <Guid/MemoryStatusCodeRecord.h>
50 #include <Guid/GenericPlatformVariable.h>
51
52 #include <Ppi/PeiInMemory.h>
53 #include <Ppi/FlashMap.h>
54 #include <Ppi/BaseMemoryTest.h>
55 #include <Ppi/StatusCodeMemory.h>
56
57 #include <Protocol/CustomizedDecompress.h>
58 #include <Protocol/EdkDecompress.h>
59
60 #include <Dxe/ArchProtocol/StatusCode.h>
61
62 #endif