]> git.proxmox.com Git - mirror_edk2.git/blob - QuarkPlatformPkg/Library/PlatformBootManagerLib/PlatformBootManager.h
bd4f2247831fa402df1bc3736bb57ad818116346
[mirror_edk2.git] / QuarkPlatformPkg / Library / PlatformBootManagerLib / PlatformBootManager.h
1 /** @file
2 Head file for BDS Platform specific code
3
4 Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6 **/
7
8 #ifndef _PLATFORM_BOOT_MANAGER_H
9 #define _PLATFORM_BOOT_MANAGER_H
10
11 #include <PiDxe.h>
12
13 #include <Library/PlatformBootManagerLib.h>
14
15 #include <Protocol/FirmwareVolume2.h>
16 #include <Protocol/AcpiS3Save.h>
17 #include <Protocol/DxeSmmReadyToLock.h>
18 #include <Protocol/EsrtManagement.h>
19 #include <Guid/DebugAgentGuid.h>
20 #include <Guid/EventGroup.h>
21 #include <Guid/PcAnsi.h>
22 #include <Guid/TtyTerm.h>
23 #include <Library/BaseLib.h>
24 #include <Library/BaseMemoryLib.h>
25 #include <Library/PcdLib.h>
26 #include <Library/DebugLib.h>
27 #include <Library/DevicePathLib.h>
28 #include <Library/MemoryAllocationLib.h>
29 #include <Library/UefiBootServicesTableLib.h>
30 #include <Library/UefiRuntimeServicesTableLib.h>
31 #include <Library/UefiLib.h>
32 #include <Library/UefiBootManagerLib.h>
33 #include <Library/PrintLib.h>
34 #include <Library/HobLib.h>
35 #include <Library/CapsuleLib.h>
36 #include <Library/DxeServicesLib.h>
37
38 typedef struct {
39 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
40 UINTN ConnectType;
41 } PLATFORM_CONSOLE_CONNECT_ENTRY;
42
43 extern PLATFORM_CONSOLE_CONNECT_ENTRY gPlatformConsole[];
44
45 #define CONSOLE_OUT BIT0
46 #define CONSOLE_IN BIT1
47 #define STD_ERROR BIT2
48
49 #endif // _PLATFORM_BOOT_MANAGER_H