]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/Library/Nt32BdsLib/BdsPlatform.h
39330cc48ebd222480d917e84c6965889c75502f
[mirror_edk2.git] / Nt32Pkg / Library / Nt32BdsLib / BdsPlatform.h
1 /**@file
2
3 Copyright (c) 2004 - 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/MemoryAllocationLib.h>
31 #include <Library/BaseLib.h>
32 #include <Library/PcdLib.h>
33 #include <Library/GenericBdsLib.h>
34 #include <Library/PlatformBdsLib.h>
35 #include <Library/GraphicsLib.h>
36
37 #include <Protocol/WinNtThunk.h>
38 #include <Protocol/WinNtIo.h>
39 #include <Guid/Bmp.h>
40
41 extern BDS_CONSOLE_CONNECT_ENTRY gPlatformConsole[];
42 extern EFI_DEVICE_PATH_PROTOCOL *gPlatformConnectSequence[];
43 extern EFI_DEVICE_PATH_PROTOCOL *gPlatformDriverOption[];
44
45 #define gEndEntire \
46 { \
47 END_DEVICE_PATH_TYPE,\
48 END_ENTIRE_DEVICE_PATH_SUBTYPE,\
49 END_DEVICE_PATH_LENGTH,\
50 0\
51 }
52
53 typedef struct {
54 VENDOR_DEVICE_PATH VendorDevicePath;
55 UINT32 Instance;
56 } WIN_NT_VENDOR_DEVICE_PATH_NODE;
57
58 //
59 // Below is the platform console device path
60 //
61 typedef struct {
62 VENDOR_DEVICE_PATH NtBus;
63 WIN_NT_VENDOR_DEVICE_PATH_NODE SerialDevice;
64 UART_DEVICE_PATH Uart;
65 VENDOR_DEVICE_PATH TerminalType;
66 EFI_DEVICE_PATH_PROTOCOL End;
67 } NT_ISA_SERIAL_DEVICE_PATH;
68
69 typedef struct {
70 VENDOR_DEVICE_PATH NtBus;
71 WIN_NT_VENDOR_DEVICE_PATH_NODE NtUgaDevice;
72 EFI_DEVICE_PATH_PROTOCOL End;
73 } NT_PLATFORM_UGA_DEVICE_PATH;
74
75 typedef struct {
76 VENDOR_DEVICE_PATH NtBus;
77 WIN_NT_VENDOR_DEVICE_PATH_NODE NtGopDevice;
78 EFI_DEVICE_PATH_PROTOCOL End;
79 } NT_PLATFORM_GOP_DEVICE_PATH;
80
81 VOID
82 PlatformBdsGetDriverOption (
83 IN LIST_ENTRY *BdsDriverLists
84 )
85 ;
86
87 EFI_STATUS
88 BdsMemoryTest (
89 EXTENDMEM_COVERAGE_LEVEL Level
90 )
91 ;
92
93 VOID
94 PlatformBdsConnectSequence (
95 VOID
96 )
97 ;
98
99
100 EFI_STATUS
101 ProcessCapsules (
102 EFI_BOOT_MODE BootMode
103 )
104 ;
105
106 EFI_STATUS
107 PlatformBdsConnectConsole (
108 IN BDS_CONSOLE_CONNECT_ENTRY *PlatformConsole
109 )
110 ;
111
112 EFI_STATUS
113 PlatformBdsNoConsoleAction (
114 VOID
115 )
116 ;
117
118 VOID
119 PlatformBdsEnterFrontPage (
120 IN UINT16 TimeoutDefault,
121 IN BOOLEAN ConnectAllHappened
122 );
123
124 #endif // _BDS_PLATFORM_H