]> git.proxmox.com Git - mirror_edk2.git/blob - UefiPayloadPkg/BlSupportPei/BlSupportPei.h
EmulatorPkg: Remove framework pkgs dependency from EmulatorPkg
[mirror_edk2.git] / UefiPayloadPkg / BlSupportPei / BlSupportPei.h
1 /** @file
2 The header file of bootloader support PEIM.
3
4 Copyright (c) 2014 - 2019, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 **/
8
9
10 #ifndef __PEI_BOOTLOADER_SUPPORT_H__
11 #define __PEI_BOOTLOADER_SUPPORT_H__
12
13 #include <PiPei.h>
14 #include <Library/PeimEntryPoint.h>
15 #include <Library/PeiServicesLib.h>
16 #include <Library/BaseLib.h>
17 #include <Library/DebugLib.h>
18 #include <Library/BaseMemoryLib.h>
19 #include <Library/HobLib.h>
20 #include <Library/PcdLib.h>
21 #include <Library/BlParseLib.h>
22 #include <Library/MtrrLib.h>
23 #include <Library/IoLib.h>
24 #include <Library/PlatformSupportLib.h>
25 #include <IndustryStandard/Acpi.h>
26 #include <Guid/MemoryTypeInformation.h>
27 #include <Guid/FirmwareFileSystem2.h>
28 #include <Guid/SystemTableInfoGuid.h>
29 #include <Guid/AcpiBoardInfoGuid.h>
30 #include <Guid/GraphicsInfoHob.h>
31 #include <Ppi/MasterBootMode.h>
32 #include <IndustryStandard/MemoryMappedConfigurationSpaceAccessTable.h>
33
34 typedef struct {
35 UINT32 UsableLowMemTop;
36 UINT32 SystemLowMemTop;
37 } PAYLOAD_MEM_INFO;
38
39 #endif