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 27
27
#define ACPI_SIG_AGDI "AGDI" /* Arm Generic Diagnostic Dump and Reset Device Interface */
28
28
#define ACPI_SIG_APMT "APMT" /* Arm Performance Monitoring Unit table */
29
29
#define ACPI_SIG_BDAT "BDAT" /* BIOS Data ACPI Table */
30
+ #define ACPI_SIG_CCEL "CCEL" /* CC Event Log Table */
30
31
#define ACPI_SIG_IORT "IORT" /* IO Remapping Table */
31
32
#define ACPI_SIG_IVRS "IVRS" /* I/O Virtualization Reporting Structure */
32
33
#define ACPI_SIG_LPIT "LPIT" /* Low Power Idle Table */
@@ -352,6 +353,23 @@ struct acpi_table_bdat {
352
353
struct acpi_generic_address gas ;
353
354
};
354
355
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
+
355
373
/*******************************************************************************
356
374
*
357
375
* IORT - IO Remapping Table
You can’t perform that action at this time.
0 commit comments