]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkModulePkg/Universal/BdsDxe/Bds.h
Update the logic about get initial value for one storage.
[mirror_edk2.git] / IntelFrameworkModulePkg / Universal / BdsDxe / Bds.h
CommitLineData
5c08e117 1/** @file\r
2 Head file for BDS Architectural Protocol implementation\r
3\r
5676ccca 4Copyright (c) 2004 - 2012, Intel Corporation. All rights reserved.<BR>\r
180a5a35 5This program and the accompanying materials\r
5c08e117 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
79bc7a89 18#include <FrameworkDxe.h>\r
67d63227 19#include <IndustryStandard/PeImage.h>\r
a2ded1d6 20#include <Guid/MdeModuleHii.h>\r
5c08e117 21#include <Guid/FileSystemVolumeLabelInfo.h>\r
ab4da126 22#include <Guid/HiiPlatformSetupFormset.h>\r
5c08e117 23#include <Protocol/DevicePath.h>\r
6cfbf7ad 24#include <IndustryStandard/SmBios.h>\r
5c08e117 25#include <Protocol/LoadFile.h>\r
5c08e117 26#include <Guid/FileInfo.h>\r
27#include <Protocol/HiiConfigRouting.h>\r
28#include <Protocol/Bds.h>\r
6cfbf7ad 29#include <Protocol/Smbios.h>\r
5c08e117 30#include <Protocol/UgaDraw.h>\r
31#include <Protocol/BlockIo.h>\r
32#include <Guid/GlobalVariable.h>\r
5c08e117 33#include <Guid/CapsuleVendor.h>\r
55e1864e 34#include <Guid/StatusCodeDataTypeId.h>\r
e24fc103
LG
35#include <Guid/LegacyDevOrder.h>\r
36#include <Guid/BdsHii.h>\r
5676ccca 37#include <Guid/ConnectConInEvent.h>\r
5c08e117 38#include <Protocol/GenericMemoryTest.h>\r
39#include <Protocol/FormBrowser2.h>\r
40#include <Protocol/HiiConfigAccess.h>\r
41#include <Protocol/GraphicsOutput.h>\r
42#include <Protocol/SimpleFileSystem.h>\r
43#include <Protocol/HiiDatabase.h>\r
44#include <Protocol/HiiString.h>\r
45#include <Protocol/SerialIo.h>\r
46#include <Protocol/LegacyBios.h>\r
47#include <Protocol/SimpleTextInEx.h>\r
ab4da126 48#include <Protocol/DriverHealth.h>\r
a637802c 49#include <Protocol/BootLogo.h>\r
5c08e117 50\r
51#include <Library/UefiDriverEntryPoint.h>\r
52#include <Library/PrintLib.h>\r
53#include <Library/DebugLib.h>\r
54#include <Library/BaseMemoryLib.h>\r
55#include <Library/UefiBootServicesTableLib.h>\r
56#include <Library/UefiLib.h>\r
57#include <Library/MemoryAllocationLib.h>\r
58#include <Library/PerformanceLib.h>\r
59#include <Library/ReportStatusCodeLib.h>\r
5c08e117 60#include <Library/UefiRuntimeServicesTableLib.h>\r
61#include <Library/HobLib.h>\r
62#include <Library/BaseLib.h>\r
63#include <Library/DevicePathLib.h>\r
64#include <Library/PcdLib.h>\r
65#include <Library/CapsuleLib.h>\r
66#include <Library/HiiLib.h>\r
f6f910dd 67#include <Library/DevicePathLib.h>\r
8c81cb83 68#include <Library/PcdLib.h>\r
33bb6326 69#include <Library/UefiHiiServicesLib.h>\r
5c08e117 70\r
71#include <Library/GenericBdsLib.h>\r
72#include <Library/PlatformBdsLib.h>\r
73\r
f6f910dd 74#pragma pack(1)\r
75\r
76///\r
77/// HII specific Vendor Device Path definition.\r
78///\r
79typedef struct {\r
80 VENDOR_DEVICE_PATH VendorDevicePath;\r
81 EFI_DEVICE_PATH_PROTOCOL End;\r
82} HII_VENDOR_DEVICE_PATH;\r
83\r
84#pragma pack()\r
85\r
5c08e117 86/**\r
87\r
88 Show progress bar with title above it. It only works in Graphics mode.\r
89\r
90 @param TitleForeground Foreground color for Title.\r
91 @param TitleBackground Background color for Title.\r
92 @param Title Title above progress bar.\r
93 @param ProgressColor Progress bar color.\r
94 @param Progress Progress (0-100)\r
95 @param PreviousValue The previous value of the progress.\r
96\r
97 @retval EFI_STATUS Success update the progress bar\r
98\r
99**/\r
100EFI_STATUS\r
101PlatformBdsShowProgress (\r
102 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL TitleForeground,\r
103 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL TitleBackground,\r
104 IN CHAR16 *Title,\r
105 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL ProgressColor,\r
106 IN UINTN Progress,\r
107 IN UINTN PreviousValue\r
108 );\r
109\r
110//\r
111// Prototypes\r
112//\r
113\r
114/**\r
115\r
116 Install Boot Device Selection Protocol\r
117\r
118 @param ImageHandle The image handle.\r
119 @param SystemTable The system table.\r
120\r
121 @retval EFI_SUCEESS BDS has finished initializing.\r
122 Return the dispatcher and recall BDS.Entry\r
123 @retval Other Return status from AllocatePool() or gBS->InstallProtocolInterface\r
124\r
125**/\r
126EFI_STATUS\r
127EFIAPI\r
128BdsInitialize (\r
129 IN EFI_HANDLE ImageHandle,\r
130 IN EFI_SYSTEM_TABLE *SystemTable\r
131 );\r
132\r
133/**\r
134\r
135 Service routine for BdsInstance->Entry(). Devices are connected, the\r
136 consoles are initialized, and the boot options are tried.\r
137\r
138 @param This Protocol Instance structure.\r
139\r
140**/\r
141VOID\r
142EFIAPI\r
143BdsEntry (\r
144 IN EFI_BDS_ARCH_PROTOCOL *This\r
145 );\r
146\r
19bf20e1
LG
147\r
148/**\r
149 Perform the memory test base on the memory test intensive level,\r
150 and update the memory resource.\r
151\r
152 @param Level The memory test intensive level.\r
153\r
154 @retval EFI_STATUS Success test all the system memory and update\r
155 the memory resource\r
156\r
157**/\r
158EFI_STATUS\r
8861fc79 159EFIAPI\r
19bf20e1
LG
160BdsMemoryTest (\r
161 IN EXTENDMEM_COVERAGE_LEVEL Level\r
162 );\r
163\r
164/**\r
165\r
166 This routine is called to see if there are any capsules we need to process.\r
167 If the boot mode is not UPDATE, then we do nothing. Otherwise find the\r
168 capsule HOBS and produce firmware volumes for them via the DXE service.\r
169 Then call the dispatcher to dispatch drivers from them. Finally, check\r
170 the status of the updates.\r
171\r
172 This function should be called by BDS in case we need to do some\r
173 sort of processing even if there is no capsule to process. We\r
174 need to do this if an earlier update went away and we need to\r
175 clear the capsule variable so on the next reset PEI does not see it and\r
176 think there is a capsule available.\r
177\r
178 @param BootMode the current boot mode\r
179\r
180 @retval EFI_INVALID_PARAMETER boot mode is not correct for an update\r
181 @retval EFI_SUCCESS There is no error when processing capsule\r
182\r
183**/\r
184EFI_STATUS\r
8861fc79 185EFIAPI\r
19bf20e1
LG
186BdsProcessCapsules (\r
187 EFI_BOOT_MODE BootMode\r
188 );\r
189\r
5c08e117 190#endif\r