]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Library/GenericBdsLib/InternalBdsLib.h
retire gEfiFirmwareVolumeDispatcherProtocolGuid as its original design is used to...
[mirror_edk2.git] / IntelFrameworkModulePkg / Library / GenericBdsLib / InternalBdsLib.h
1 /** @file
2 BDS library definition, include the file and data structure
3
4 Copyright (c) 2004 - 2008, Intel Corporation. <BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #ifndef _INTERNAL_BDS_LIB_H_
16 #define _INTERNAL_BDS_LIB_H_
17
18 #include <PiDxe.h>
19
20 #include <IndustryStandard/Pci22.h>
21
22 #include <Protocol/BlockIo.h>
23 #include <Protocol/LoadedImage.h>
24 #include <Protocol/Cpu.h>
25 #include <Protocol/SimpleFileSystem.h>
26 #include <Protocol/DebugPort.h>
27 #include <Protocol/DevicePath.h>
28 #include <Protocol/SimpleTextIn.h>
29 #include <Protocol/LegacyBios.h>
30 #include <Protocol/SimpleTextOut.h>
31 #include <Protocol/SimpleNetwork.h>
32 #include <Protocol/DevicePathToText.h>
33 #include <Protocol/FirmwareVolume2.h>
34 #include <Protocol/PciIo.h>
35 #include <Protocol/AcpiS3Save.h>
36 #include <Protocol/OEMBadging.h>
37 #include <Protocol/ConsoleControl.h>
38 #include <Protocol/GraphicsOutput.h>
39 #include <Protocol/UgaDraw.h>
40 #include <Protocol/HiiFont.h>
41 #include <Protocol/HiiImage.h>
42
43 #include <Guid/MemoryTypeInformation.h>
44 #include <Guid/FileInfo.h>
45 #include <Guid/GlobalVariable.h>
46 #include <Guid/PcAnsi.h>
47 #include <Guid/ShellFile.h>
48 #include <Guid/Bmp.h>
49 #include <Guid/Performance.h>
50
51 #include <Library/PrintLib.h>
52 #include <Library/DebugLib.h>
53 #include <Library/BaseMemoryLib.h>
54 #include <Library/UefiBootServicesTableLib.h>
55 #include <Library/UefiLib.h>
56 #include <Library/MemoryAllocationLib.h>
57 #include <Library/DxeServicesTableLib.h>
58 #include <Library/UefiRuntimeServicesTableLib.h>
59 #include <Library/HobLib.h>
60 #include <Library/BaseLib.h>
61 #include <Library/DevicePathLib.h>
62 #include <Library/PerformanceLib.h>
63 #include <Library/PcdLib.h>
64 #include <Library/IfrSupportLib.h>
65 #include <Library/PeCoffGetEntryPointLib.h>
66 #include <Library/GenericBdsLib.h>
67 #include <Library/TimerLib.h>
68 #include <Library/PcdLib.h>
69 #include <Library/DxeServicesLib.h>
70
71
72 /**
73
74 Allocates a block of memory and writes performance data of booting into it.
75 OS can processing these record.
76
77 **/
78 VOID
79 WriteBootToOsPerformanceData (
80 VOID
81 );
82
83 #endif // _BDS_LIB_H_