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