]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkModulePkg/Universal/BdsDxe/Bds.h
1. Update Generic BDS part to use dynamic PCD to set console output mode instead...
[mirror_edk2.git] / IntelFrameworkModulePkg / Universal / BdsDxe / Bds.h
CommitLineData
5c08e117 1/** @file\r
2 Head file for BDS Architectural Protocol implementation\r
3\r
4Copyright (c) 2004 - 2008, Intel Corporation. <BR>\r
5All rights reserved. This program and the accompanying materials\r
6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15#ifndef _BDS_MODULE_H_\r
16#define _BDS_MODULE_H_\r
17\r
18#include <PiDxe.h>\r
19#include <MdeModuleHii.h>\r
20\r
21#include <Guid/FileSystemVolumeLabelInfo.h>\r
22#include <Protocol/DevicePath.h>\r
23#include <Guid/BootState.h>\r
24#include <Guid/DataHubRecords.h>\r
25#include <Protocol/LoadFile.h>\r
26#include <Protocol/CpuIo.h>\r
27#include <Guid/FileInfo.h>\r
28#include <Protocol/HiiConfigRouting.h>\r
29#include <Protocol/Bds.h>\r
30#include <Protocol/DataHub.h>\r
31#include <Protocol/UgaDraw.h>\r
32#include <Protocol/BlockIo.h>\r
33#include <Guid/GlobalVariable.h>\r
5c08e117 34#include <Guid/CapsuleVendor.h>\r
35#include <Protocol/ConsoleControl.h>\r
36#include <Protocol/GenericMemoryTest.h>\r
37#include <Protocol/FormBrowser2.h>\r
38#include <Protocol/HiiConfigAccess.h>\r
39#include <Protocol/GraphicsOutput.h>\r
40#include <Protocol/SimpleFileSystem.h>\r
41#include <Protocol/HiiDatabase.h>\r
42#include <Protocol/HiiString.h>\r
43#include <Protocol/SerialIo.h>\r
44#include <Protocol/LegacyBios.h>\r
45#include <Protocol/SimpleTextInEx.h>\r
5c08e117 46\r
47#include <Library/UefiDriverEntryPoint.h>\r
48#include <Library/PrintLib.h>\r
49#include <Library/DebugLib.h>\r
50#include <Library/BaseMemoryLib.h>\r
51#include <Library/UefiBootServicesTableLib.h>\r
52#include <Library/UefiLib.h>\r
53#include <Library/MemoryAllocationLib.h>\r
54#include <Library/PerformanceLib.h>\r
55#include <Library/ReportStatusCodeLib.h>\r
56#include <Library/IfrSupportLib.h>\r
57#include <Library/ExtendedIfrSupportLib.h>\r
58#include <Library/UefiRuntimeServicesTableLib.h>\r
59#include <Library/HobLib.h>\r
60#include <Library/BaseLib.h>\r
61#include <Library/DevicePathLib.h>\r
62#include <Library/PcdLib.h>\r
63#include <Library/CapsuleLib.h>\r
64#include <Library/HiiLib.h>\r
65#include <Library/ExtendedHiiLib.h>\r
66\r
67\r
68#include <Library/GenericBdsLib.h>\r
69#include <Library/PlatformBdsLib.h>\r
70\r
71#define EFI_BDS_ARCH_PROTOCOL_INSTANCE_FROM_THIS(_this) \\r
72 CR ((_this), \\r
73 EFI_BDS_ARCH_PROTOCOL_INSTANCE, \\r
74 Bds, \\r
75 EFI_BDS_ARCH_PROTOCOL_INSTANCE_SIGNATURE \\r
76 )\r
77\r
78/**\r
79\r
80 Show progress bar with title above it. It only works in Graphics mode.\r
81\r
82 @param TitleForeground Foreground color for Title.\r
83 @param TitleBackground Background color for Title.\r
84 @param Title Title above progress bar.\r
85 @param ProgressColor Progress bar color.\r
86 @param Progress Progress (0-100)\r
87 @param PreviousValue The previous value of the progress.\r
88\r
89 @retval EFI_STATUS Success update the progress bar\r
90\r
91**/\r
92EFI_STATUS\r
93PlatformBdsShowProgress (\r
94 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL TitleForeground,\r
95 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL TitleBackground,\r
96 IN CHAR16 *Title,\r
97 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL ProgressColor,\r
98 IN UINTN Progress,\r
99 IN UINTN PreviousValue\r
100 );\r
101\r
102//\r
103// Prototypes\r
104//\r
105\r
106/**\r
107\r
108 Install Boot Device Selection Protocol\r
109\r
110 @param ImageHandle The image handle.\r
111 @param SystemTable The system table.\r
112\r
113 @retval EFI_SUCEESS BDS has finished initializing.\r
114 Return the dispatcher and recall BDS.Entry\r
115 @retval Other Return status from AllocatePool() or gBS->InstallProtocolInterface\r
116\r
117**/\r
118EFI_STATUS\r
119EFIAPI\r
120BdsInitialize (\r
121 IN EFI_HANDLE ImageHandle,\r
122 IN EFI_SYSTEM_TABLE *SystemTable\r
123 );\r
124\r
125/**\r
126\r
127 Service routine for BdsInstance->Entry(). Devices are connected, the\r
128 consoles are initialized, and the boot options are tried.\r
129\r
130 @param This Protocol Instance structure.\r
131\r
132**/\r
133VOID\r
134EFIAPI\r
135BdsEntry (\r
136 IN EFI_BDS_ARCH_PROTOCOL *This\r
137 );\r
138\r
139#endif\r