]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Universal/BdsDxe/Bds.h
retire gEfiBootStateGuid and replace it with dynamic hii pcd. so the different boot...
[mirror_edk2.git] / IntelFrameworkModulePkg / Universal / BdsDxe / Bds.h
1 /** @file
2 Head file for BDS Architectural Protocol implementation
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 _BDS_MODULE_H_
16 #define _BDS_MODULE_H_
17
18 #include <PiDxe.h>
19
20 #include <Guid/MdeModuleHii.h>
21 #include <Guid/FileSystemVolumeLabelInfo.h>
22 #include <Protocol/DevicePath.h>
23 #include <Guid/DataHubRecords.h>
24 #include <Protocol/LoadFile.h>
25 #include <Protocol/CpuIo.h>
26 #include <Guid/FileInfo.h>
27 #include <Protocol/HiiConfigRouting.h>
28 #include <Protocol/Bds.h>
29 #include <Protocol/DataHub.h>
30 #include <Protocol/UgaDraw.h>
31 #include <Protocol/BlockIo.h>
32 #include <Guid/GlobalVariable.h>
33 #include <Guid/CapsuleVendor.h>
34 #include <Protocol/ConsoleControl.h>
35 #include <Protocol/GenericMemoryTest.h>
36 #include <Protocol/FormBrowser2.h>
37 #include <Protocol/HiiConfigAccess.h>
38 #include <Protocol/GraphicsOutput.h>
39 #include <Protocol/SimpleFileSystem.h>
40 #include <Protocol/HiiDatabase.h>
41 #include <Protocol/HiiString.h>
42 #include <Protocol/SerialIo.h>
43 #include <Protocol/LegacyBios.h>
44 #include <Protocol/SimpleTextInEx.h>
45
46 #include <Library/UefiDriverEntryPoint.h>
47 #include <Library/PrintLib.h>
48 #include <Library/DebugLib.h>
49 #include <Library/BaseMemoryLib.h>
50 #include <Library/UefiBootServicesTableLib.h>
51 #include <Library/UefiLib.h>
52 #include <Library/MemoryAllocationLib.h>
53 #include <Library/PerformanceLib.h>
54 #include <Library/ReportStatusCodeLib.h>
55 #include <Library/IfrSupportLib.h>
56 #include <Library/ExtendedIfrSupportLib.h>
57 #include <Library/UefiRuntimeServicesTableLib.h>
58 #include <Library/HobLib.h>
59 #include <Library/BaseLib.h>
60 #include <Library/DevicePathLib.h>
61 #include <Library/PcdLib.h>
62 #include <Library/CapsuleLib.h>
63 #include <Library/HiiLib.h>
64 #include <Library/ExtendedHiiLib.h>
65 #include <Library/PcdLib.h>
66
67 #include <Library/GenericBdsLib.h>
68 #include <Library/PlatformBdsLib.h>
69
70 #define EFI_BDS_ARCH_PROTOCOL_INSTANCE_FROM_THIS(_this) \
71 CR ((_this), \
72 EFI_BDS_ARCH_PROTOCOL_INSTANCE, \
73 Bds, \
74 EFI_BDS_ARCH_PROTOCOL_INSTANCE_SIGNATURE \
75 )
76
77 /**
78
79 Show progress bar with title above it. It only works in Graphics mode.
80
81 @param TitleForeground Foreground color for Title.
82 @param TitleBackground Background color for Title.
83 @param Title Title above progress bar.
84 @param ProgressColor Progress bar color.
85 @param Progress Progress (0-100)
86 @param PreviousValue The previous value of the progress.
87
88 @retval EFI_STATUS Success update the progress bar
89
90 **/
91 EFI_STATUS
92 PlatformBdsShowProgress (
93 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL TitleForeground,
94 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL TitleBackground,
95 IN CHAR16 *Title,
96 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL ProgressColor,
97 IN UINTN Progress,
98 IN UINTN PreviousValue
99 );
100
101 //
102 // Prototypes
103 //
104
105 /**
106
107 Install Boot Device Selection Protocol
108
109 @param ImageHandle The image handle.
110 @param SystemTable The system table.
111
112 @retval EFI_SUCEESS BDS has finished initializing.
113 Return the dispatcher and recall BDS.Entry
114 @retval Other Return status from AllocatePool() or gBS->InstallProtocolInterface
115
116 **/
117 EFI_STATUS
118 EFIAPI
119 BdsInitialize (
120 IN EFI_HANDLE ImageHandle,
121 IN EFI_SYSTEM_TABLE *SystemTable
122 );
123
124 /**
125
126 Service routine for BdsInstance->Entry(). Devices are connected, the
127 consoles are initialized, and the boot options are tried.
128
129 @param This Protocol Instance structure.
130
131 **/
132 VOID
133 EFIAPI
134 BdsEntry (
135 IN EFI_BDS_ARCH_PROTOCOL *This
136 );
137
138 #endif