summaryrefslogtreecommitdiffstats
path: root/UefiPayloadPkg/BlSupportPei/BlSupportPei.h
blob: d11a3570a1c6d50730510ae467e241f0bcfd52fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/** @file
  The header file of bootloader support PEIM.

Copyright (c) 2014 - 2019, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent

**/


#ifndef __PEI_BOOTLOADER_SUPPORT_H__
#define __PEI_BOOTLOADER_SUPPORT_H__

#include <PiPei.h>
#include <Library/PeimEntryPoint.h>
#include <Library/PeiServicesLib.h>
#include <Library/BaseLib.h>
#include <Library/DebugLib.h>
#include <Library/BaseMemoryLib.h>
#include <Library/HobLib.h>
#include <Library/PcdLib.h>
#include <Library/BlParseLib.h>
#include <Library/MtrrLib.h>
#include <Library/IoLib.h>
#include <Library/PlatformSupportLib.h>
#include <IndustryStandard/Acpi.h>
#include <Guid/MemoryTypeInformation.h>
#include <Guid/FirmwareFileSystem2.h>
#include <Guid/SystemTableInfoGuid.h>
#include <Guid/AcpiBoardInfoGuid.h>
#include <Guid/GraphicsInfoHob.h>
#include <Ppi/MasterBootMode.h>
#include <IndustryStandard/MemoryMappedConfigurationSpaceAccessTable.h>

typedef struct {
  UINT32  UsableLowMemTop;
  UINT32  SystemLowMemTop;
} PAYLOAD_MEM_INFO;

#endif