]> git.proxmox.com Git - mirror_edk2.git/blob - CorebootModulePkg/Include/Guid/AcpiBoardInfoGuid.h
b40cf9529da135a735c2ce9018011f11cfb466c9
[mirror_edk2.git] / CorebootModulePkg / 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 UINT64 PmEvtBase;
19 UINT64 PmGpeEnBase;
20 UINT64 PmCtrlRegBase;
21 UINT64 PmTimerRegBase;
22 UINT64 ResetRegAddress;
23 UINT8 ResetValue;
24 } ACPI_BOARD_INFO;
25
26 #endif