[PATCH RFC v2 0/3] efi/cxl-cper: Report CPER CXL component events through trace events

From: Ira Weiny
Date: Thu Oct 26 2023 - 14:22:18 EST


Series status/background
========================

This is another RFC version of processing the CXL CPER records through
the CXL trace mechanisms as Dan mentioned in [1].

I moved forward with eliminating the GUID to UUID conversion I mentioned
in the original RFC thread[2]. Instead a new event type is used once
the GUID or UUID's is used to decode the event.

This remains compile tested with only.

[1] https://lore.kernel.org/all/6528808cef2ba_780ef294c5@xxxxxxxxxxxxxxxxxxxxxxxxx.notmuch/
[2] https://lore.kernel.org/all/652f45e29915c_2bb07d2949b@iweiny-mobl.notmuch/

Cover letter
============

CXL Component Events, as defined by EFI 2.10 Section N.2.14, wrap a
mostly CXL event payload in an EFI Common Platform Error Record (CPER)
record. If a device is configured for firmware first CXL event records
are not sent directly to the host.

The CXL sub-system uniquely has DPA to HPA translation information. It
also already properly decodes the event record format. Send the CXL
CPER records to the CXL sub-system for processing.

With CXL event logs the device interrupts the host with events. In the
EFI case events are wrapped with device information which needs to be
matched with memdev devices the CXL driver is tracking.

A number of alternatives were considered to match the memdev with the
CPER record. The most straight forward comparison is via serial number.

CPER records are identified with GUID's while CXL event logs contain
UUID's. The UUID was previously printed for all events. But the UUID
is redundant information which presents unnecessary complexity when
processing CPER data. Remove the UUIDs from known events.

Signed-off-by: Ira Weiny <ira.weiny@xxxxxxxxx>
---
Changes in RFC v2:
- iweiny: remove uuid from existing known event traces
- iweiny: pass an enum for the event type.
- Link to v1: https://lore.kernel.org/r/20230601-cxl-cper-v1-0-99ba43f8f770@xxxxxxxxx

---
Ira Weiny (3):
cxl/trace: Remove uuid from event trace known events
firmware/efi: Process CXL Component Events
cxl/memdev: Register for and process CPER events

drivers/cxl/core/mbox.c | 45 +++++++++++++++++++++------
drivers/cxl/core/trace.h | 10 +++---
drivers/cxl/cxlmem.h | 7 +++++
drivers/cxl/pci.c | 69 ++++++++++++++++++++++++++++++++++++++++-
drivers/firmware/efi/cper.c | 16 ++++++++++
drivers/firmware/efi/cper_cxl.c | 40 ++++++++++++++++++++++++
drivers/firmware/efi/cper_cxl.h | 29 +++++++++++++++++
include/linux/efi.h | 59 +++++++++++++++++++++++++++++++++++
8 files changed, 259 insertions(+), 16 deletions(-)
---
base-commit: 1c8b86a3799f7e5be903c3f49fcdaee29fd385b5
change-id: 20230601-cxl-cper-26ffc839c6c6

Best regards,
--
Ira Weiny <ira.weiny@xxxxxxxxx>