Skip to content

Commit 407144e

Browse files
Kuppuswamy Sathyanarayananrafaeljw
authored andcommitted
ACPICA: iASL: Add CCEL table to both compiler/disassembler
ACPICA commit 10e4763f155eac0c60295a7e364b0316fc52c4f1 Link: acpica/acpica@10e4763f Signed-off-by: Kuppuswamy Sathyanarayanan <[email protected]> Signed-off-by: Bob Moore <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 8ff2906 commit 407144e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

include/acpi/actbl2.h

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
#define ACPI_SIG_AGDI "AGDI" /* Arm Generic Diagnostic Dump and Reset Device Interface */
2828
#define ACPI_SIG_APMT "APMT" /* Arm Performance Monitoring Unit table */
2929
#define ACPI_SIG_BDAT "BDAT" /* BIOS Data ACPI Table */
30+
#define ACPI_SIG_CCEL "CCEL" /* CC Event Log Table */
3031
#define ACPI_SIG_IORT "IORT" /* IO Remapping Table */
3132
#define ACPI_SIG_IVRS "IVRS" /* I/O Virtualization Reporting Structure */
3233
#define ACPI_SIG_LPIT "LPIT" /* Low Power Idle Table */
@@ -352,6 +353,23 @@ struct acpi_table_bdat {
352353
struct acpi_generic_address gas;
353354
};
354355

356+
/*******************************************************************************
357+
*
358+
* CCEL - CC-Event Log
359+
* From: "Guest-Host-Communication Interface (GHCI) for Intel
360+
* Trust Domain Extensions (Intel TDX)". Feb 2022
361+
*
362+
******************************************************************************/
363+
364+
struct acpi_table_ccel {
365+
struct acpi_table_header header; /* Common ACPI table header */
366+
u8 CCtype;
367+
u8 Ccsub_type;
368+
u16 reserved;
369+
u64 log_area_minimum_length;
370+
u64 log_area_start_address;
371+
};
372+
355373
/*******************************************************************************
356374
*
357375
* IORT - IO Remapping Table

0 commit comments

Comments
 (0)