Last change
on this file since 86513 was 80721, checked in by vboxsync, 5 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
719 bytes
|
Line | |
---|
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
|
---|
Note:
See
TracBrowser
for help on using the repository browser.