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
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.
17 This file defines the base package surface area for writting a PEIM
19 Things defined in the PEI CIS specification go in PeiCis.h.
21 EdkPeim.h contains build environment and library information needed to build
22 a basic PEIM that needs Tiano specific definitiosn. T
24 Currently we just add in some extra PPI and GUID definitions
28 #ifndef __EDK_PEIM_H__
29 #define __EDK_PEIM_H__
32 #include <Common/FlashMap.h>
33 #include <Common/DecompressLibraryHob.h>
34 // BUGBUG: We must include this lib here due to ordering issues
36 #include <Library/PeCoffLib.h>
39 // BUGBUG: Performance related Guid.
40 // It is Tiano-private, but is required for PeiCore
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>
48 #include <Ppi/PeiInMemory.h>
49 #include <Ppi/FlashMap.h>
50 #include <Ppi/BaseMemoryTest.h>
51 #include <Ppi/StatusCodeMemory.h>
53 #include <Protocol/CustomizedDecompress.h>
54 #include <Protocol/EdkDecompress.h>
56 #include <Dxe/ArchProtocol/StatusCode.h>