mirror of
https://github.com/torvalds/linux.git
synced 2025-04-12 06:49:52 +00:00

Move the declaration of cxl_cper_print_prot_err() to include/linux/cper.h to avoid maintaining a separate header file just for this function declaration. Remove drivers/firmware/efi/cper_cxl.h as its contents have been reorganized. No functional changes. Signed-off-by: Smita Koralahalli <Smita.KoralahalliChannabasappa@amd.com> Reviewed-by: Ira Weiny <ira.weiny@intel.com> Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Reviewed-by: Dave Jiang <dave.jiang@intel.com> Reviewed-by: Fan Ni <fan.ni@samsung.com> Reviewed-by: Gregory Price <gourry@gourry.net> Reviewed-by: Dan Williams <dan.j.williams@intel.com> Link: https://patch.msgid.link/20250123084421.127697-4-Smita.KoralahalliChannabasappa@amd.com Signed-off-by: Dave Jiang <dave.jiang@intel.com>
157 lines
4.2 KiB
C
157 lines
4.2 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* UEFI Common Platform Error Record (CPER) support for CXL Section.
|
|
*
|
|
* Copyright (C) 2022 Advanced Micro Devices, Inc.
|
|
*
|
|
* Author: Smita Koralahalli <Smita.KoralahalliChannabasappa@amd.com>
|
|
*/
|
|
|
|
#include <linux/cper.h>
|
|
#include <cxl/event.h>
|
|
|
|
static const char * const prot_err_agent_type_strs[] = {
|
|
"Restricted CXL Device",
|
|
"Restricted CXL Host Downstream Port",
|
|
"CXL Device",
|
|
"CXL Logical Device",
|
|
"CXL Fabric Manager managed Logical Device",
|
|
"CXL Root Port",
|
|
"CXL Downstream Switch Port",
|
|
"CXL Upstream Switch Port",
|
|
};
|
|
|
|
void cxl_cper_print_prot_err(const char *pfx,
|
|
const struct cxl_cper_sec_prot_err *prot_err)
|
|
{
|
|
if (prot_err->valid_bits & PROT_ERR_VALID_AGENT_TYPE)
|
|
pr_info("%s agent_type: %d, %s\n", pfx, prot_err->agent_type,
|
|
prot_err->agent_type < ARRAY_SIZE(prot_err_agent_type_strs)
|
|
? prot_err_agent_type_strs[prot_err->agent_type]
|
|
: "unknown");
|
|
|
|
if (prot_err->valid_bits & PROT_ERR_VALID_AGENT_ADDRESS) {
|
|
switch (prot_err->agent_type) {
|
|
/*
|
|
* According to UEFI 2.10 Section N.2.13, the term CXL Device
|
|
* is used to refer to Restricted CXL Device, CXL Device, CXL
|
|
* Logical Device or a CXL Fabric Manager Managed Logical
|
|
* Device.
|
|
*/
|
|
case RCD:
|
|
case DEVICE:
|
|
case LD:
|
|
case FMLD:
|
|
case RP:
|
|
case DSP:
|
|
case USP:
|
|
pr_info("%s agent_address: %04x:%02x:%02x.%x\n",
|
|
pfx, prot_err->agent_addr.segment,
|
|
prot_err->agent_addr.bus,
|
|
prot_err->agent_addr.device,
|
|
prot_err->agent_addr.function);
|
|
break;
|
|
case RCH_DP:
|
|
pr_info("%s rcrb_base_address: 0x%016llx\n", pfx,
|
|
prot_err->agent_addr.rcrb_base_addr);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (prot_err->valid_bits & PROT_ERR_VALID_DEVICE_ID) {
|
|
const __u8 *class_code;
|
|
|
|
switch (prot_err->agent_type) {
|
|
case RCD:
|
|
case DEVICE:
|
|
case LD:
|
|
case FMLD:
|
|
case RP:
|
|
case DSP:
|
|
case USP:
|
|
pr_info("%s slot: %d\n", pfx,
|
|
prot_err->device_id.slot >> CPER_PCIE_SLOT_SHIFT);
|
|
pr_info("%s vendor_id: 0x%04x, device_id: 0x%04x\n",
|
|
pfx, prot_err->device_id.vendor_id,
|
|
prot_err->device_id.device_id);
|
|
pr_info("%s sub_vendor_id: 0x%04x, sub_device_id: 0x%04x\n",
|
|
pfx, prot_err->device_id.subsystem_vendor_id,
|
|
prot_err->device_id.subsystem_id);
|
|
class_code = prot_err->device_id.class_code;
|
|
pr_info("%s class_code: %02x%02x\n", pfx,
|
|
class_code[1], class_code[0]);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (prot_err->valid_bits & PROT_ERR_VALID_SERIAL_NUMBER) {
|
|
switch (prot_err->agent_type) {
|
|
case RCD:
|
|
case DEVICE:
|
|
case LD:
|
|
case FMLD:
|
|
pr_info("%s lower_dw: 0x%08x, upper_dw: 0x%08x\n", pfx,
|
|
prot_err->dev_serial_num.lower_dw,
|
|
prot_err->dev_serial_num.upper_dw);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (prot_err->valid_bits & PROT_ERR_VALID_CAPABILITY) {
|
|
switch (prot_err->agent_type) {
|
|
case RCD:
|
|
case DEVICE:
|
|
case LD:
|
|
case FMLD:
|
|
case RP:
|
|
case DSP:
|
|
case USP:
|
|
print_hex_dump(pfx, "", DUMP_PREFIX_OFFSET, 16, 4,
|
|
prot_err->capability,
|
|
sizeof(prot_err->capability), 0);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (prot_err->valid_bits & PROT_ERR_VALID_DVSEC) {
|
|
pr_info("%s DVSEC length: 0x%04x\n", pfx, prot_err->dvsec_len);
|
|
|
|
pr_info("%s CXL DVSEC:\n", pfx);
|
|
print_hex_dump(pfx, "", DUMP_PREFIX_OFFSET, 16, 4, (prot_err + 1),
|
|
prot_err->dvsec_len, 0);
|
|
}
|
|
|
|
if (prot_err->valid_bits & PROT_ERR_VALID_ERROR_LOG) {
|
|
size_t size = sizeof(*prot_err) + prot_err->dvsec_len;
|
|
struct cxl_ras_capability_regs *cxl_ras;
|
|
|
|
pr_info("%s Error log length: 0x%04x\n", pfx, prot_err->err_len);
|
|
|
|
pr_info("%s CXL Error Log:\n", pfx);
|
|
cxl_ras = (struct cxl_ras_capability_regs *)((long)prot_err + size);
|
|
pr_info("%s cxl_ras_uncor_status: 0x%08x", pfx,
|
|
cxl_ras->uncor_status);
|
|
pr_info("%s cxl_ras_uncor_mask: 0x%08x\n", pfx,
|
|
cxl_ras->uncor_mask);
|
|
pr_info("%s cxl_ras_uncor_severity: 0x%08x\n", pfx,
|
|
cxl_ras->uncor_severity);
|
|
pr_info("%s cxl_ras_cor_status: 0x%08x", pfx,
|
|
cxl_ras->cor_status);
|
|
pr_info("%s cxl_ras_cor_mask: 0x%08x\n", pfx,
|
|
cxl_ras->cor_mask);
|
|
pr_info("%s cap_control: 0x%08x\n", pfx,
|
|
cxl_ras->cap_control);
|
|
pr_info("%s Header Log Registers:\n", pfx);
|
|
print_hex_dump(pfx, "", DUMP_PREFIX_OFFSET, 16, 4, cxl_ras->header_log,
|
|
sizeof(cxl_ras->header_log), 0);
|
|
}
|
|
}
|