]> git.proxmox.com Git - mirror_edk2.git/blob - EdkModulePkg/Include/EdkDxe.h
Check in the Pcd service Driver/PEIM according to the new way of generating PCD Database
[mirror_edk2.git] / EdkModulePkg / Include / EdkDxe.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 EdkDxe.h
14
15 Abstract:
16 This file defines the base package surface area for writting a PEIM
17
18 Things defined in the Tiano specification go in DxeCis.h.
19
20 Dxe.h contains build environment and library information needed to build
21 a basic Dxe driver. This file must match the "base package" definition of
22 how to write a Dxe driver.
23
24 --*/
25
26 #ifndef __EDK_DXE_H__
27 #define __EDK_DXE_H__
28
29 //
30 #include <Common/FlashMap.h>
31 // BUGBUG: We must include this lib here due to ordering issues
32 //
33 #include <Ipf/SalApi.h>
34 #include <Library/PeCoffLib.h>
35
36
37 #include <Guid/MemoryTypeInformation.h>
38 #include <Guid/FlashMapHob.h>
39 #include <Guid/SystemNvDataGuid.h>
40 #include <Guid/AlternateFvBlock.h>
41 #include <Guid/ConsoleInDevice.h>
42 #include <Guid/ConsoleOutDevice.h>
43 #include <Guid/StandardErrorDevice.h>
44 #include <Guid/HotPlugDevice.h>
45 #include <Guid/PrimaryStandardErrorDevice.h>
46 #include <Guid/PrimaryConsoleInDevice.h>
47 #include <Guid/PrimaryConsoleOutDevice.h>
48 #include <Guid/Bmp.h>
49 #include <Guid/BootState.h>
50 #include <Guid/ShellFile.h>
51 #include <Guid/MiniShellFile.h>
52 #include <Guid/StatusCode.h>
53 #include <Guid/PciOptionRomTable.h>
54 #include <Guid/PciHotplugDevice.h>
55 #include <Guid/ExtendedSalGuid.h>
56 #include <Guid/PeiPeCoffLoader.h>
57 #include <Guid/CapsuleVendor.h>
58 #include <Guid/CompatibleMemoryTested.h>
59
60 #include <Ppi/StatusCodeMemory.h>
61
62 #include <Protocol/CustomizedDecompress.h>
63 #include <Protocol/DebugLevel.h>
64 #include <Protocol/LoadPe32Image.h>
65 #include <Protocol/EdkDecompress.h>
66 #include <Protocol/Print.h>
67 #include <Protocol/GenericMemoryTest.h>
68 #include <Protocol/DiskInfo.h>
69 #include <Protocol/FvbExtension.h>
70 #include <Protocol/SecurityPolicy.h>
71 #include <Protocol/FaultTolerantWriteLite.h>
72 #include <Protocol/ConsoleControl.h>
73 #include <Protocol/OEMBadging.h>
74 #include <Protocol/LegacyBios.h>
75 #include <Protocol/UgaSplash.h>
76 #include <Protocol/AcpiS3Save.h>
77 #include <Protocol/Performance.h>
78 #include <Protocol/PxeDhcp4.h>
79 #include <Protocol/PxeDhcp4CallBack.h>
80 #include <Protocol/UgaIo.h>
81 #include <Protocol/DebugAssert.h>
82 #include <Protocol/usbatapi.h>
83 #include <Protocol/PciHotPlugRequest.h>
84 #include <Protocol/ExtendedSalBootService.h>
85 #include <Protocol/IsaAcpi.h>
86
87 #if ((EDK_RELEASE_VERSION != 0) && (EFI_SPECIFICATION_VERSION < 0x00020000))
88 //
89 // Tiano8.5 Module use ScsiPassThru protocol together with the original ScsiIo protocol
90 // In UEFI2.0, Module use ScsiPassThruExt Protocol with new UEFI2.0 ScsiIo protocol
91 //
92 #include <Protocol/ScsiIo.h>
93 #endif
94
95 #endif