]> git.proxmox.com Git - mirror_edk2.git/blob - UnixPkg/Library/UnixBdsLib/BdsPlatform.h
Update the copyright notice format
[mirror_edk2.git] / UnixPkg / Library / UnixBdsLib / BdsPlatform.h
1 /*++
2
3 Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
4 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/UnixSystemConfig.h>
41
42 extern BDS_CONSOLE_CONNECT_ENTRY gPlatformConsole[];
43 extern EFI_DEVICE_PATH_PROTOCOL *gPlatformConnectSequence[];
44 extern EFI_DEVICE_PATH_PROTOCOL *gPlatformDriverOption[];
45
46 #define gEndEntire \
47 { \
48 END_DEVICE_PATH_TYPE,\
49 END_ENTIRE_DEVICE_PATH_SUBTYPE,\
50 END_DEVICE_PATH_LENGTH,\
51 0\
52 }
53
54 typedef struct {
55 VENDOR_DEVICE_PATH VendorDevicePath;
56 UINT32 Instance;
57 } UNIX_VENDOR_DEVICE_PATH_NODE;
58
59 //
60 // Below is the platform console device path
61 //
62 typedef struct {
63 VENDOR_DEVICE_PATH UnixBus;
64 UNIX_VENDOR_DEVICE_PATH_NODE SerialDevice;
65 UART_DEVICE_PATH Uart;
66 VENDOR_DEVICE_PATH TerminalType;
67 EFI_DEVICE_PATH_PROTOCOL End;
68 } UNIX_ISA_SERIAL_DEVICE_PATH;
69
70 typedef struct {
71 VENDOR_DEVICE_PATH UnixBus;
72 UNIX_VENDOR_DEVICE_PATH_NODE UnixUgaDevice;
73 EFI_DEVICE_PATH_PROTOCOL End;
74 } UNIX_PLATFORM_UGA_DEVICE_PATH;
75
76 typedef struct {
77 VENDOR_DEVICE_PATH UnixBus;
78 UNIX_VENDOR_DEVICE_PATH_NODE ConsoleDevice;
79 EFI_DEVICE_PATH_PROTOCOL End;
80 } UNIX_CONSOLE_DEVICE_PATH;
81 //
82 // Platform BDS Functions
83 //
84 VOID
85 PlatformBdsGetDriverOption (
86 IN LIST_ENTRY *BdsDriverLists
87 )
88 ;
89
90 EFI_STATUS
91 BdsMemoryTest (
92 EXTENDMEM_COVERAGE_LEVEL Level
93 )
94 ;
95
96
97 VOID
98 PlatformBdsConnectSequence (
99 VOID
100 )
101 ;
102
103 EFI_STATUS
104 ProcessCapsules (
105 EFI_BOOT_MODE BootMode
106 )
107 ;
108
109 EFI_STATUS
110 PlatformBdsConnectConsole (
111 IN BDS_CONSOLE_CONNECT_ENTRY *PlatformConsole
112 )
113 ;
114
115 EFI_STATUS
116 PlatformBdsNoConsoleAction (
117 VOID
118 )
119 ;
120
121 VOID
122 PlatformBdsEnterFrontPage (
123 IN UINT16 TimeoutDefault,
124 IN BOOLEAN ConnectAllHappened
125 );
126
127 #endif // _BDS_PLATFORM_H