File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments