]> git.proxmox.com Git - mirror_edk2.git/blame - UnixPkg/Library/UnixBdsLib/BdsPlatform.h
Clean up to fix build break.
[mirror_edk2.git] / UnixPkg / Library / UnixBdsLib / BdsPlatform.h
CommitLineData
804405e7 1/*++\r
2\r
3Copyright (c) 2006, Intel Corporation \r
4All rights reserved. This program and the accompanying materials \r
5are licensed and made available under the terms and conditions of the BSD License \r
6which accompanies this distribution. The full text of the license may be found at \r
7http://opensource.org/licenses/bsd-license.php \r
8 \r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
11\r
12Module Name: \r
13\r
14 BdsPlatform.h\r
15\r
16Abstract:\r
17\r
18 Head file for BDS Platform specific code\r
19\r
20--*/\r
21\r
22#ifndef _BDS_PLATFORM_H\r
23#define _BDS_PLATFORM_H\r
24\r
25#include <PiDxe.h>\r
26\r
27#include <Library/DebugLib.h>\r
28#include <Library/BaseMemoryLib.h>\r
29#include <Library/UefiBootServicesTableLib.h>\r
30#include <Library/MemoryAllocationLib.h>\r
31#include <Library/BaseLib.h>\r
32#include <Library/PcdLib.h>\r
33#include <Library/GenericBdsLib.h>\r
34#include <Library/PlatformBdsLib.h>\r
c5085e11 35#include <Library/DevicePathLib.h>\r
804405e7 36\r
37#include <Protocol/UnixThunk.h>\r
38#include <Protocol/UnixIo.h>\r
39#include <Guid/Bmp.h>\r
40\r
41extern BDS_CONSOLE_CONNECT_ENTRY gPlatformConsole[];\r
42extern EFI_DEVICE_PATH_PROTOCOL *gPlatformConnectSequence[];\r
43extern EFI_DEVICE_PATH_PROTOCOL *gPlatformDriverOption[];\r
44\r
45#define gEndEntire \\r
46 { \\r
47 END_DEVICE_PATH_TYPE,\\r
48 END_ENTIRE_DEVICE_PATH_SUBTYPE,\\r
49 END_DEVICE_PATH_LENGTH,\\r
50 0\\r
51 }\r
52\r
53typedef struct {\r
54 VENDOR_DEVICE_PATH VendorDevicePath;\r
55 UINT32 Instance;\r
56} UNIX_VENDOR_DEVICE_PATH_NODE;\r
57\r
58//\r
59// Below is the platform console device path\r
60//\r
61typedef struct {\r
62 VENDOR_DEVICE_PATH UnixBus;\r
63 UNIX_VENDOR_DEVICE_PATH_NODE SerialDevice;\r
64 UART_DEVICE_PATH Uart;\r
65 VENDOR_DEVICE_PATH TerminalType;\r
66 EFI_DEVICE_PATH_PROTOCOL End;\r
67} UNIX_ISA_SERIAL_DEVICE_PATH;\r
68\r
69typedef struct {\r
70 VENDOR_DEVICE_PATH UnixBus;\r
71 UNIX_VENDOR_DEVICE_PATH_NODE UnixUgaDevice;\r
72 EFI_DEVICE_PATH_PROTOCOL End;\r
73} UNIX_PLATFORM_UGA_DEVICE_PATH;\r
74\r
75typedef struct {\r
76 VENDOR_DEVICE_PATH UnixBus;\r
77 UNIX_VENDOR_DEVICE_PATH_NODE ConsoleDevice;\r
78 EFI_DEVICE_PATH_PROTOCOL End;\r
79} UNIX_CONSOLE_DEVICE_PATH;\r
80//\r
81// Platform BDS Functions\r
82//\r
83VOID\r
84PlatformBdsInit (\r
85 IN EFI_BDS_ARCH_PROTOCOL_INSTANCE *PrivateData\r
86 )\r
87;\r
88\r
89VOID\r
90PlatformBdsPolicyBehavior (\r
91 IN EFI_BDS_ARCH_PROTOCOL_INSTANCE *PrivateData,\r
92 IN LIST_ENTRY *DriverOptionList,\r
93 IN LIST_ENTRY *BootOptionList\r
94 )\r
95;\r
96\r
97VOID\r
98PlatformBdsGetDriverOption (\r
99 IN LIST_ENTRY *BdsDriverLists\r
100 )\r
101;\r
102\r
103EFI_STATUS\r
104BdsMemoryTest (\r
105 EXTENDMEM_COVERAGE_LEVEL Level\r
106 )\r
107;\r
108\r
804405e7 109\r
110VOID\r
111PlatformBdsConnectSequence (\r
112 VOID\r
113 )\r
114;\r
115\r
116VOID\r
117PlatformBdsBootFail (\r
118 IN BDS_COMMON_OPTION *Option,\r
119 IN EFI_STATUS Status,\r
120 IN CHAR16 *ExitData,\r
121 IN UINTN ExitDataSize\r
122 )\r
123;\r
124\r
125VOID\r
126PlatformBdsBootSuccess (\r
127 IN BDS_COMMON_OPTION *Option\r
128 )\r
129;\r
130\r
131EFI_STATUS\r
132ProcessCapsules (\r
133 EFI_BOOT_MODE BootMode\r
134 )\r
135;\r
136\r
137EFI_STATUS\r
138PlatformBdsConnectConsole (\r
139 IN BDS_CONSOLE_CONNECT_ENTRY *PlatformConsole\r
140 )\r
141;\r
142\r
143EFI_STATUS\r
144PlatformBdsNoConsoleAction (\r
145 VOID\r
146 )\r
147;\r
148\r
149VOID\r
150PlatformBdsEnterFrontPage (\r
151 IN UINT16 TimeoutDefault,\r
152 IN BOOLEAN ConnectAllHappened\r
153 );\r
154\r
155#endif // _BDS_PLATFORM_H\r