]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/Library/Nt32BdsLib/BdsPlatform.h
5188ba51c9726dee9096262ad1fc2b458c71c56c
[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/DevicePathLib.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 EFI_STATUS
87 BdsMemoryTest (
88 EXTENDMEM_COVERAGE_LEVEL Level
89 );
90
91 VOID
92 PlatformBdsConnectSequence (
93 VOID
94 );
95
96
97 EFI_STATUS
98 ProcessCapsules (
99 EFI_BOOT_MODE BootMode
100 );
101
102 EFI_STATUS
103 PlatformBdsConnectConsole (
104 IN BDS_CONSOLE_CONNECT_ENTRY *PlatformConsole
105 );
106
107 EFI_STATUS
108 PlatformBdsNoConsoleAction (
109 VOID
110 );
111
112 VOID
113 PlatformBdsEnterFrontPage (
114 IN UINT16 TimeoutDefault,
115 IN BOOLEAN ConnectAllHappened
116 );
117
118 #endif // _BDS_PLATFORM_H