]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Include/Guid/FirmwarePerformance.h
MdeModulePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdeModulePkg / Include / Guid / FirmwarePerformance.h
index 89e225d505ef9f250b6c6364ee5b8dc85acf2c0d..e101ddd987c1dfb5f3747d1e68699bfade7dc8a8 100644 (file)
@@ -1,22 +1,16 @@
 /** @file\r
   ACPI Firmware Performance Data Table (FPDT) implementation specific definitions.\r
 \r
-  Copyright (c) 2011 - 2012, Intel Corporation. All rights reserved.<BR>\r
-  This program and the accompanying materials\r
-  are licensed and made available under the terms and conditions of the BSD License\r
-  which accompanies this distribution.  The full text of the license may be found at\r
-  http://opensource.org/licenses/bsd-license.php\r
-\r
-  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+  Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>\r
+  SPDX-License-Identifier: BSD-2-Clause-Patent\r
 \r
 **/\r
 \r
 #ifndef _FIRMWARE_PERFORMANCE_GUID_H_\r
 #define _FIRMWARE_PERFORMANCE_GUID_H_\r
 \r
-#include <IndustryStandard/Acpi50.h>\r
 #include <PiPei.h>\r
+#include <IndustryStandard/Acpi.h>\r
 #include <Ppi/SecPerformance.h>\r
 \r
 ///\r
 \r
 #define EFI_FIRMWARE_PERFORMANCE_VARIABLE_NAME  L"FirmwarePerformance"\r
 \r
+/// LockBox:\r
+///   GUID - gFirmwarePerformanceS3PointerGuid\r
+///   Data - S3 performance table pointer\r
+///\r
+#define FIRMWARE_PERFORMANCE_S3_POINTER_GUID \\r
+  { \\r
+    0xdc65adc, 0xa973, 0x4130, { 0x8d, 0xf0, 0x2a, 0xdb, 0xeb, 0x9e, 0x4a, 0x31 } \\r
+  }\r
+\r
 #pragma pack(1)\r
 \r
 ///\r
@@ -85,6 +88,17 @@ typedef struct {
   //\r
 } BOOT_PERFORMANCE_TABLE;\r
 \r
+///\r
+/// Boot performance table for the performance record in SMM phase.\r
+///\r
+///\r
+typedef struct {\r
+  EFI_ACPI_5_0_FPDT_PERFORMANCE_TABLE_HEADER   Header;     ///< Common ACPI table header.\r
+  //\r
+  // one or more boot performance records.\r
+  //\r
+} SMM_BOOT_PERFORMANCE_TABLE;\r
+\r
 ///\r
 /// Performance data pointed by Performance Pointer Record.\r
 ///\r
@@ -95,7 +109,7 @@ typedef struct {
 \r
 ///\r
 /// Variable defined for FPDT implementation.\r
-/// This Variable is produced by FPDT DXE module and consumed by FPDT PEIM.\r
+/// This Variable is produced by FPDT DXE module.\r
 ///\r
 typedef struct {\r
   EFI_PHYSICAL_ADDRESS  BootPerformanceTablePointer; ///< Pointer to Boot Performance Table.\r
@@ -107,16 +121,19 @@ typedef struct {
 //\r
 // Log BOOT RECORD from SMM driver on boot time.\r
 //\r
-#define SMM_FPDT_FUNCTION_GET_BOOT_RECORD_SIZE          1\r
-#define SMM_FPDT_FUNCTION_GET_BOOT_RECORD_DATA          2\r
+#define SMM_FPDT_FUNCTION_GET_BOOT_RECORD_SIZE           1\r
+#define SMM_FPDT_FUNCTION_GET_BOOT_RECORD_DATA           2\r
+#define SMM_FPDT_FUNCTION_GET_BOOT_RECORD_DATA_BY_OFFSET 3\r
 \r
 typedef struct {\r
   UINTN             Function;\r
   EFI_STATUS        ReturnStatus;\r
   UINTN             BootRecordSize;\r
   VOID              *BootRecordData;\r
+  UINTN             BootRecordOffset;\r
 } SMM_BOOT_RECORD_COMMUNICATE;\r
 \r
 extern EFI_GUID gEfiFirmwarePerformanceGuid;\r
+extern EFI_GUID gFirmwarePerformanceS3PointerGuid;\r
 \r
 #endif\r