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