]> git.proxmox.com Git - mirror_edk2.git/blob - UefiPayloadPkg/Include/Guid/AcpiBoardInfoGuid.h
UefiPayloadPkg: Enhance UEFI payload for coreboot and Slim Bootloader
[mirror_edk2.git] / UefiPayloadPkg / Include / Guid / AcpiBoardInfoGuid.h
1 /** @file
2 This file defines the hob structure for board related information from acpi table
3
4 Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 **/
8
9 #ifndef __ACPI_BOARD_INFO_GUID_H__
10 #define __ACPI_BOARD_INFO_GUID_H__
11
12 ///
13 /// Board information GUID
14 ///
15 extern EFI_GUID gUefiAcpiBoardInfoGuid;
16
17 typedef struct {
18 UINT8 Revision;
19 UINT8 Reserved0[2];
20 UINT8 ResetValue;
21 UINT64 PmEvtBase;
22 UINT64 PmGpeEnBase;
23 UINT64 PmCtrlRegBase;
24 UINT64 PmTimerRegBase;
25 UINT64 ResetRegAddress;
26 UINT64 PcieBaseAddress;
27 } ACPI_BOARD_INFO;
28
29 #endif