diff options
author | Samer El-Haj-Mahmoud <elhaj@hp.com> | 2014-11-27 02:17:28 +0000 |
---|---|---|
committer | jyao1 <jyao1@Edk2> | 2014-11-27 02:17:28 +0000 |
commit | a71c80b66884511760f4c829375f069f6fa22c4f (patch) | |
tree | c8d7ae5d3e6efc07f266356de9c0a935f5c9b971 | |
parent | 2e097165e9ad2bfc373b2a8f1126267f14ca26a3 (diff) | |
download | edk2-platforms-a71c80b66884511760f4c829375f069f6fa22c4f.tar.xz |
Added PlatformNotification to ACPI 5.0 PCCT structure.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Samer El-Haj-Mahmoud <elhaj@hp.com>
Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16452 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdePkg/Include/IndustryStandard/Acpi50.h | 4 | ||||
-rw-r--r-- | MdePkg/Include/IndustryStandard/Acpi51.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/MdePkg/Include/IndustryStandard/Acpi50.h b/MdePkg/Include/IndustryStandard/Acpi50.h index 235f516ba8..8af9963fff 100644 --- a/MdePkg/Include/IndustryStandard/Acpi50.h +++ b/MdePkg/Include/IndustryStandard/Acpi50.h @@ -1,6 +1,7 @@ /** @file
ACPI 5.0 definitions from the ACPI Specification Revision 5.0a November 13, 2013.
+ Copyright (c) 2014 Hewlett-Packard Development Company, L.P.<BR>
Copyright (c) 2011 - 2014, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
@@ -1857,7 +1858,8 @@ typedef struct { UINT8 CommandComplete:1;
UINT8 SciDoorbell:1;
UINT8 Error:1;
- UINT8 Reserved:5;
+ UINT8 PlatformNotification:1;
+ UINT8 Reserved:4;
UINT8 Reserved1;
} EFI_ACPI_5_0_PCCT_GENERIC_SHARED_MEMORY_REGION_STATUS;
diff --git a/MdePkg/Include/IndustryStandard/Acpi51.h b/MdePkg/Include/IndustryStandard/Acpi51.h index 06aa71403f..072603e87b 100644 --- a/MdePkg/Include/IndustryStandard/Acpi51.h +++ b/MdePkg/Include/IndustryStandard/Acpi51.h @@ -1,6 +1,7 @@ /** @file
ACPI 5.1 definitions from the ACPI Specification Revision 5.1 July, 2014.
+ Copyright (c) 2014 Hewlett-Packard Development Company, L.P.<BR>
Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
@@ -1863,7 +1864,8 @@ typedef struct { UINT8 CommandComplete:1;
UINT8 SciDoorbell:1;
UINT8 Error:1;
- UINT8 Reserved:5;
+ UINT8 PlatformNotification:1;
+ UINT8 Reserved:4;
UINT8 Reserved1;
} EFI_ACPI_5_1_PCCT_GENERIC_SHARED_MEMORY_REGION_STATUS;
|