Last change
on this file since 108794 was 108794, checked in by vboxsync, 2 weeks ago |
Devices/EFI/FirmwareNew: Merge edk2-stable202502 from the vendor branch and make it build for the important platforms, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
781 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 | This file defines ACPI_S3_ENABLE structure which indicates to x86 standalone MM whether S3 is enabled.
|
---|
3 |
|
---|
4 | Copyright (c) 2024, Intel Corporation. All rights reserved.<BR>
|
---|
5 |
|
---|
6 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 |
|
---|
8 | **/
|
---|
9 |
|
---|
10 | #ifndef MM_ACPI_S3_ENABLE_H_
|
---|
11 | #define MM_ACPI_S3_ENABLE_H_
|
---|
12 |
|
---|
13 | ///
|
---|
14 | /// The GUID of the MmAcpiS3Enable GUIDed HOB.
|
---|
15 | ///
|
---|
16 | #define MM_ACPI_S3_ENABLE_HOB_GUID \
|
---|
17 | { \
|
---|
18 | 0xe7402821, 0x2654, 0x4c1b, {0x99, 0x0e, 0x04, 0x8f, 0x8d, 0x82, 0xcf, 0x67} \
|
---|
19 | }
|
---|
20 |
|
---|
21 | ///
|
---|
22 | /// The structure defines the data layout of the MmAcpiS3Enable GUIDed HOB.
|
---|
23 | ///
|
---|
24 | typedef struct {
|
---|
25 | ///
|
---|
26 | /// Whether ACPI S3 is enabled.
|
---|
27 | /// The value shall match with the PcdAcpiS3Enable.
|
---|
28 | ///
|
---|
29 | BOOLEAN AcpiS3Enable;
|
---|
30 | } MM_ACPI_S3_ENABLE;
|
---|
31 |
|
---|
32 | extern EFI_GUID gMmAcpiS3EnableHobGuid;
|
---|
33 |
|
---|
34 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.