Skip to content

Commit 160c768

Browse files
AlisonSchofieldrafaeljw
authored andcommitted
ACPICA: Add defines for the CXL Host Bridge Structure (CHBS)
ACPICA commit 5ace82441a34f8d45725f12f6bd2677e79c186a6 CXL 2.0 defines length and version field values for the CHBS. Include them in the ACPI CEDT table definition. Link: acpica/acpica@5ace8244 Signed-off-by: Alison Schofield <[email protected]> Signed-off-by: Bob Moore <[email protected]> Signed-off-by: Erik Kaneda <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 9401eaf commit 160c768

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

include/acpi/actbl1.h

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,16 @@ enum acpi_cedt_type {
330330
ACPI_CEDT_TYPE_RESERVED = 1
331331
};
332332

333+
/* Values for version field above */
334+
335+
#define ACPI_CEDT_CHBS_VERSION_CXL11 (0)
336+
#define ACPI_CEDT_CHBS_VERSION_CXL20 (1)
337+
338+
/* Values for length field above */
339+
340+
#define ACPI_CEDT_CHBS_LENGTH_CXL11 (0x2000)
341+
#define ACPI_CEDT_CHBS_LENGTH_CXL20 (0x10000)
342+
333343
/*
334344
* CEDT subtables
335345
*/

0 commit comments

Comments
 (0)