From 42646d11de11ead5c482b541bcc76f2e188775e1 Mon Sep 17 00:00:00 2001 From: Leo Yang Date: Wed, 5 Aug 2026 17:00:15 +0800 Subject: [PATCH] mctp-client: add cci message type code Add type code 8 for CXL Type 3 Device Component Command Interface, as defined by DSP0239 1.9.0 and later. For example: ``` $ mctp-client eid 9 type cxl-cci data 00 00 00 00 03 00 00 00 00 00 cd ab 01 00 00 00 03 08 00 00 00 00 00 00 E5 52 F9 1E 50 21 D3 16 ``` Signed-off-by: Leo Yang --- src/mctp-client.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/mctp-client.c b/src/mctp-client.c index fcae36a6..e14ddd2b 100644 --- a/src/mctp-client.c +++ b/src/mctp-client.c @@ -66,6 +66,12 @@ static struct type_lookup_t { .description = "secured messages using spdm over mctp per DSP0276", }, + { + .name = "cxl-cci", + .type = 8, + .description = + "CXL type 3 device component command interface over mctp per DSP0281", + }, { .name = "pci", .type = 0x7e,