Blame SOURCES/ce6e7864f11f709c4f803828fbc8e507d115d03b.patch

81d547
commit ce6e7864f11f709c4f803828fbc8e507d115d03b
81d547
Author: Greg Edwards <gedwards@ddn.com>
81d547
Date:   Thu Apr 8 15:03:30 2021 -0600
81d547
81d547
    rasdaemon: Add Ice Lake and Sapphire Rapids MSCOD values
81d547
    
81d547
    Based on mcelog commits:
81d547
    
81d547
      ee90ff20ce6a ("mcelog: Add support for Icelake server, Icelake-D, and Snow Ridge")
81d547
      391abaac9bdf ("mcelog: Add decode for MCi_MISC from 10nm memory controller")
81d547
      59cb7ad4bc72 ("mcelog: i10nm: Fix mapping from bank number to functional unit")
81d547
      c0acd0e6a639 ("mcelog: Add support for Sapphirerapids server.")
81d547
    
81d547
    Signed-off-by: Greg Edwards <gedwards@ddn.com>
81d547
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
81d547
81d547
---
81d547
 Makefile.am       |    3 
81d547
 mce-intel-i10nm.c |  509 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
81d547
 mce-intel.c       |    5 
81d547
 ras-mce-handler.c |   12 +
81d547
 ras-mce-handler.h |    5 
81d547
 5 files changed, 533 insertions(+), 1 deletion(-)
81d547
81d547
--- rasdaemon-0.6.1.orig/Makefile.am	2021-09-17 15:29:45.977790658 -0400
81d547
+++ rasdaemon-0.6.1/Makefile.am	2021-09-17 15:29:57.439698580 -0400
81d547
@@ -36,7 +36,8 @@ if WITH_MCE
81d547
 			mce-intel-dunnington.c mce-intel-tulsa.c \
81d547
 			mce-intel-sb.c mce-intel-ivb.c mce-intel-haswell.c \
81d547
 			mce-intel-knl.c mce-intel-broadwell-de.c \
81d547
-			mce-intel-broadwell-epex.c mce-intel-skylake-xeon.c
81d547
+			mce-intel-broadwell-epex.c mce-intel-skylake-xeon.c \
81d547
+			mce-amd.c mce-amd-smca.c mce-intel-i10nm.c
81d547
 endif
81d547
 if WITH_EXTLOG
81d547
    rasdaemon_SOURCES += ras-extlog-handler.c
81d547
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
81d547
+++ rasdaemon-0.6.1/mce-intel-i10nm.c	2021-09-17 15:29:45.977790658 -0400
81d547
@@ -0,0 +1,509 @@
81d547
+/*
81d547
+ * The code below came from Tony Luck's mcelog code,
81d547
+ * released under GNU Public General License, v.2
81d547
+ *
81d547
+ * Copyright (C) 2019 Intel Corporation
81d547
+ * Decode Intel 10nm specific machine check errors.
81d547
+ *
81d547
+ * This program is free software; you can redistribute it and/or modify
81d547
+ * it under the terms of the GNU General Public License as published by
81d547
+ * the Free Software Foundation; either version 2 of the License, or
81d547
+ * (at your option) any later version.
81d547
+ *
81d547
+ * This program is distributed in the hope that it will be useful,
81d547
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
81d547
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
81d547
+ * GNU General Public License for more details.
81d547
+ *
81d547
+ * You should have received a copy of the GNU General Public License
81d547
+ * along with this program; if not, write to the Free Software
81d547
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
81d547
+*/
81d547
+
81d547
+#include <inttypes.h>
81d547
+#include <stdio.h>
81d547
+#include <string.h>
81d547
+
81d547
+#include "ras-mce-handler.h"
81d547
+#include "bitfield.h"
81d547
+
81d547
+static char *pcu_1[] = {
81d547
+	[0x0D] = "MCA_LLC_BIST_ACTIVE_TIMEOUT",
81d547
+	[0x0E] = "MCA_DMI_TRAINING_TIMEOUT",
81d547
+	[0x0F] = "MCA_DMI_STRAP_SET_ARRIVAL_TIMEOUT",
81d547
+	[0x10] = "MCA_DMI_CPU_RESET_ACK_TIMEOUT",
81d547
+	[0x11] = "MCA_MORE_THAN_ONE_LT_AGENT",
81d547
+	[0x14] = "MCA_INCOMPATIBLE_PCH_TYPE",
81d547
+	[0x1E] = "MCA_BIOS_RST_CPL_INVALID_SEQ",
81d547
+	[0x1F] = "MCA_BIOS_INVALID_PKG_STATE_CONFIG",
81d547
+	[0x2D] = "MCA_PCU_PMAX_CALIB_ERROR",
81d547
+	[0x2E] = "MCA_TSC100_SYNC_TIMEOUT",
81d547
+	[0x3A] = "MCA_GPSB_TIMEOUT",
81d547
+	[0x3B] = "MCA_PMSB_TIMEOUT",
81d547
+	[0x3E] = "MCA_IOSFSB_PMREQ_CMP_TIMEOUT",
81d547
+	[0x40] = "MCA_SVID_VCCIN_VR_ICC_MAX_FAILURE",
81d547
+	[0x42] = "MCA_SVID_VCCIN_VR_VOUT_FAILURE",
81d547
+	[0x43] = "MCA_SVID_CPU_VR_CAPABILITY_ERROR",
81d547
+	[0x44] = "MCA_SVID_CRITICAL_VR_FAILED",
81d547
+	[0x45] = "MCA_SVID_SA_ITD_ERROR",
81d547
+	[0x46] = "MCA_SVID_READ_REG_FAILED",
81d547
+	[0x47] = "MCA_SVID_WRITE_REG_FAILED",
81d547
+	[0x4A] = "MCA_SVID_PKGC_REQUEST_FAILED",
81d547
+	[0x4B] = "MCA_SVID_IMON_REQUEST_FAILED",
81d547
+	[0x4C] = "MCA_SVID_ALERT_REQUEST_FAILED",
81d547
+	[0x4D] = "MCA_SVID_MCP_VR_RAMP_ERROR",
81d547
+	[0x56] = "MCA_FIVR_PD_HARDERR",
81d547
+	[0x58] = "MCA_WATCHDOG_TIMEOUT_PKGC_SLAVE",
81d547
+	[0x59] = "MCA_WATCHDOG_TIMEOUT_PKGC_MASTER",
81d547
+	[0x5A] = "MCA_WATCHDOG_TIMEOUT_PKGS_MASTER",
81d547
+	[0x5B] = "MCA_WATCHDOG_TIMEOUT_MSG_CH_FSM",
81d547
+	[0x5C] = "MCA_WATCHDOG_TIMEOUT_BULK_CR_FSM",
81d547
+	[0x5D] = "MCA_WATCHDOG_TIMEOUT_IOSFSB_FSM",
81d547
+	[0x60] = "MCA_PKGS_SAFE_WP_TIMEOUT",
81d547
+	[0x61] = "MCA_PKGS_CPD_UNCPD_TIMEOUT",
81d547
+	[0x62] = "MCA_PKGS_INVALID_REQ_PCH",
81d547
+	[0x63] = "MCA_PKGS_INVALID_REQ_INTERNAL",
81d547
+	[0x64] = "MCA_PKGS_INVALID_RSP_INTERNAL",
81d547
+	[0x65 ... 0x7A] = "MCA_PKGS_RESET_PREP_TIMEOUT",
81d547
+	[0x7B] = "MCA_PKGS_SMBUS_VPP_PAUSE_TIMEOUT",
81d547
+	[0x7C] = "MCA_PKGS_SMBUS_MCP_PAUSE_TIMEOUT",
81d547
+	[0x7D] = "MCA_PKGS_SMBUS_SPD_PAUSE_TIMEOUT",
81d547
+	[0x80] = "MCA_PKGC_DISP_BUSY_TIMEOUT",
81d547
+	[0x81] = "MCA_PKGC_INVALID_RSP_PCH",
81d547
+	[0x83] = "MCA_PKGC_WATCHDOG_HANG_CBZ_DOWN",
81d547
+	[0x84] = "MCA_PKGC_WATCHDOG_HANG_CBZ_UP",
81d547
+	[0x87] = "MCA_PKGC_WATCHDOG_HANG_C2_BLKMASTER",
81d547
+	[0x88] = "MCA_PKGC_WATCHDOG_HANG_C2_PSLIMIT",
81d547
+	[0x89] = "MCA_PKGC_WATCHDOG_HANG_SETDISP",
81d547
+	[0x8B] = "MCA_PKGC_ALLOW_L1_ERROR",
81d547
+	[0x90] = "MCA_RECOVERABLE_DIE_THERMAL_TOO_HOT",
81d547
+	[0xA0] = "MCA_ADR_SIGNAL_TIMEOUT",
81d547
+	[0xA1] = "MCA_BCLK_FREQ_OC_ABOVE_THRESHOLD",
81d547
+	[0xB0] = "MCA_DISPATCHER_RUN_BUSY_TIMEOUT",
81d547
+};
81d547
+
81d547
+static char *pcu_2[] = {
81d547
+	[0x04] = "Clock/power IP response timeout",
81d547
+	[0x05] = "SMBus controller raised SMI",
81d547
+	[0x09] = "PM controller received invalid transaction",
81d547
+};
81d547
+
81d547
+static char *pcu_3[] = {
81d547
+	[0x01] = "Instruction address out of valid space",
81d547
+	[0x02] = "Double bit RAM error on Instruction Fetch",
81d547
+	[0x03] = "Invalid OpCode seen",
81d547
+	[0x04] = "Stack Underflow",
81d547
+	[0x05] = "Stack Overflow",
81d547
+	[0x06] = "Data address out of valid space",
81d547
+	[0x07] = "Double bit RAM error on Data Fetch",
81d547
+};
81d547
+
81d547
+static struct field pcu1[] = {
81d547
+	FIELD(0, pcu_1),
81d547
+	{}
81d547
+};
81d547
+
81d547
+static struct field pcu2[] = {
81d547
+	FIELD(0, pcu_2),
81d547
+	{}
81d547
+};
81d547
+
81d547
+static struct field pcu3[] = {
81d547
+	FIELD(0, pcu_3),
81d547
+	{}
81d547
+};
81d547
+
81d547
+static struct field upi1[] = {
81d547
+	SBITFIELD(22, "Phy Control Error"),
81d547
+	SBITFIELD(23, "Unexpected Retry.Ack flit"),
81d547
+	SBITFIELD(24, "Unexpected Retry.Req flit"),
81d547
+	SBITFIELD(25, "RF parity error"),
81d547
+	SBITFIELD(26, "Routeback Table error"),
81d547
+	SBITFIELD(27, "Unexpected Tx Protocol flit (EOP, Header or Data)"),
81d547
+	SBITFIELD(28, "Rx Header-or-Credit BGF credit overflow/underflow"),
81d547
+	SBITFIELD(29, "Link Layer Reset still in progress when Phy enters L0"),
81d547
+	SBITFIELD(30, "Link Layer reset initiated while protocol traffic not idle"),
81d547
+	SBITFIELD(31, "Link Layer Tx Parity Error"),
81d547
+	{}
81d547
+};
81d547
+
81d547
+static char *upi_2[] = {
81d547
+	[0x00] = "Phy Initialization Failure (NumInit)",
81d547
+	[0x01] = "Phy Detected Drift Buffer Alarm",
81d547
+	[0x02] = "Phy Detected Latency Buffer Rollover",
81d547
+	[0x10] = "LL Rx detected CRC error: unsuccessful LLR (entered Abort state)",
81d547
+	[0x11] = "LL Rx Unsupported/Undefined packet",
81d547
+	[0x12] = "LL or Phy Control Error",
81d547
+	[0x13] = "LL Rx Parameter Exception",
81d547
+	[0x1F] = "LL Detected Control Error",
81d547
+	[0x20] = "Phy Initialization Abort",
81d547
+	[0x21] = "Phy Inband Reset",
81d547
+	[0x22] = "Phy Lane failure, recovery in x8 width",
81d547
+	[0x23] = "Phy L0c error corrected without Phy reset",
81d547
+	[0x24] = "Phy L0c error triggering Phy reset",
81d547
+	[0x25] = "Phy L0p exit error corrected with reset",
81d547
+	[0x30] = "LL Rx detected CRC error: successful LLR without Phy Reinit",
81d547
+	[0x31] = "LL Rx detected CRC error: successful LLR with Phy Reinit",
81d547
+	[0x32] = "Tx received LLR",
81d547
+};
81d547
+
81d547
+static struct field upi2[] = {
81d547
+	FIELD(0, upi_2),
81d547
+	{}
81d547
+};
81d547
+
81d547
+static struct field m2m[] = {
81d547
+	SBITFIELD(16, "MC read data error"),
81d547
+	SBITFIELD(17, "Reserved"),
81d547
+	SBITFIELD(18, "MC partial write data error"),
81d547
+	SBITFIELD(19, "Full write data error"),
81d547
+	SBITFIELD(20, "M2M clock-domain-crossing buffer (BGF) error"),
81d547
+	SBITFIELD(21, "M2M time out"),
81d547
+	SBITFIELD(22, "M2M tracker parity error"),
81d547
+	SBITFIELD(23, "fatal Bucket1 error"),
81d547
+	{}
81d547
+};
81d547
+
81d547
+static char *imc_0[] = {
81d547
+	[0x01] = "Address parity error",
81d547
+	[0x02] = "Data parity error",
81d547
+	[0x03] = "Data ECC error",
81d547
+	[0x04] = "Data byte enable parity error",
81d547
+	[0x07] = "Transaction ID parity error",
81d547
+	[0x08] = "Corrected patrol scrub error",
81d547
+	[0x10] = "Uncorrected patrol scrub error",
81d547
+	[0x20] = "Corrected spare error",
81d547
+	[0x40] = "Uncorrected spare error",
81d547
+	[0x80] = "Corrected read error",
81d547
+	[0xA0] = "Uncorrected read error",
81d547
+	[0xC0] = "Uncorrected metadata",
81d547
+};
81d547
+
81d547
+static char *imc_1[] = {
81d547
+	[0x00] = "WDB read parity error",
81d547
+	[0x03] = "RPA parity error",
81d547
+	[0x06] = "DDR_T_DPPP data BE error",
81d547
+	[0x07] = "DDR_T_DPPP data error",
81d547
+	[0x08] = "DDR link failure",
81d547
+	[0x11] = "PCLS CAM error",
81d547
+	[0x12] = "PCLS data error",
81d547
+};
81d547
+
81d547
+static char *imc_2[] = {
81d547
+	[0x00] = "DDR4 command / address parity error",
81d547
+	[0x20] = "HBM command / address parity error",
81d547
+	[0x21] = "HBM data parity error",
81d547
+};
81d547
+
81d547
+static char *imc_4[] = {
81d547
+	[0x00] = "RPQ parity (primary) error",
81d547
+};
81d547
+
81d547
+static char *imc_8[] = {
81d547
+	[0x00] = "DDR-T bad request",
81d547
+	[0x01] = "DDR Data response to an invalid entry",
81d547
+	[0x02] = "DDR data response to an entry not expecting data",
81d547
+	[0x03] = "DDR4 completion to an invalid entry",
81d547
+	[0x04] = "DDR-T completion to an invalid entry",
81d547
+	[0x05] = "DDR data/completion FIFO overflow",
81d547
+	[0x06] = "DDR-T ERID correctable parity error",
81d547
+	[0x07] = "DDR-T ERID uncorrectable error",
81d547
+	[0x08] = "DDR-T interrupt received while outstanding interrupt was not ACKed",
81d547
+	[0x09] = "ERID FI FO overflow",
81d547
+	[0x0A] = "DDR-T error on FNV write credits",
81d547
+	[0x0B] = "DDR-T error on FNV read credits",
81d547
+	[0x0C] = "DDR-T scheduler error",
81d547
+	[0x0D] = "DDR-T FNV error event",
81d547
+	[0x0E] = "DDR-T FNV thermal event",
81d547
+	[0x0F] = "CMI packet while idle",
81d547
+	[0x10] = "DDR_T_RPQ_REQ_PARITY_ERR",
81d547
+	[0x11] = "DDR_T_WPQ_REQ_PARITY_ERR",
81d547
+	[0x12] = "2LM_NMFILLWR_CAM_ERR",
81d547
+	[0x13] = "CMI_CREDIT_OVERSUB_ERR",
81d547
+	[0x14] = "CMI_CREDIT_TOTAL_ERR",
81d547
+	[0x15] = "CMI_CREDIT_RSVD_POOL_ERR",
81d547
+	[0x16] = "DDR_T_RD_ERROR",
81d547
+	[0x17] = "WDB_FIFO_ERR",
81d547
+	[0x18] = "CMI_REQ_FIFO_OVERFLOW",
81d547
+	[0x19] = "CMI_REQ_FIFO_UNDERFLOW",
81d547
+	[0x1A] = "CMI_RSP_FIFO_OVERFLOW",
81d547
+	[0x1B] = "CMI_RSP_FIFO_UNDERFLOW",
81d547
+	[0x1C] = "CMI _MISC_MC_CRDT_ERRORS",
81d547
+	[0x1D] = "CMI_MISC_MC_ARB_ERRORS",
81d547
+	[0x1E] = "DDR_T_WR_CMPL_FI FO_OVERFLOW",
81d547
+	[0x1F] = "DDR_T_WR_CMPL_FI FO_UNDERFLOW",
81d547
+	[0x20] = "CMI_RD_CPL_FIFO_OVERFLOW",
81d547
+	[0x21] = "CMI_RD_CPL_FIFO_UNDERFLOW",
81d547
+	[0x22] = "TME_KEY_PAR_ERR",
81d547
+	[0x23] = "TME_CMI_MISC_ERR",
81d547
+	[0x24] = "TME_CMI_OVFL_ERR",
81d547
+	[0x25] = "TME_CMI_UFL_ERR",
81d547
+	[0x26] = "TME_TEM_SECURE_ERR",
81d547
+	[0x27] = "TME_UFILL_PAR_ERR",
81d547
+	[0x29] = "INTERNAL_ERR",
81d547
+	[0x2A] = "TME_INTEGRITY_ERR",
81d547
+	[0x2B] = "TME_TDX_ERR",
81d547
+	[0x2C] = "TME_UFILL_TEM_SECURE_ERR",
81d547
+	[0x2D] = "TME_KEY_POISON_ERR",
81d547
+	[0x2E] = "TME_SECURITY_ENGINE_ERR",
81d547
+};
81d547
+
81d547
+static char *imc_10[] = {
81d547
+	[0x08] = "CORR_PATSCRUB_MIRR2ND_ERR",
81d547
+	[0x10] = "UC_PATSCRUB_MIRR2ND_ERR",
81d547
+	[0x20] = "COR_SPARE_MIRR2ND_ERR",
81d547
+	[0x40] = "UC_SPARE_MIRR2ND_ERR",
81d547
+	[0x80] = "HA_RD_MIRR2ND_ERR",
81d547
+	[0xA0] = "HA_UNCORR_RD_MIRR2ND_ERR",
81d547
+};
81d547
+
81d547
+static struct field imc0[] = {
81d547
+	FIELD(0, imc_0),
81d547
+	{}
81d547
+};
81d547
+
81d547
+static struct field imc1[] = {
81d547
+	FIELD(0, imc_1),
81d547
+	{}
81d547
+};
81d547
+
81d547
+static struct field imc2[] = {
81d547
+	FIELD(0, imc_2),
81d547
+	{}
81d547
+};
81d547
+
81d547
+static struct field imc4[] = {
81d547
+	FIELD(0, imc_4),
81d547
+	{}
81d547
+};
81d547
+
81d547
+static struct field imc8[] = {
81d547
+	FIELD(0, imc_8),
81d547
+	{}
81d547
+};
81d547
+
81d547
+static struct field imc10[] = {
81d547
+	FIELD(0, imc_10),
81d547
+	{}
81d547
+};
81d547
+
81d547
+static void i10nm_imc_misc(struct mce_event *e)
81d547
+{
81d547
+	uint32_t column = EXTRACT(e->misc, 9, 18) << 2;
81d547
+	uint32_t row = EXTRACT(e->misc, 19, 39);
81d547
+	uint32_t bank = EXTRACT(e->misc, 42, 43);
81d547
+	uint32_t bankgroup = EXTRACT(e->misc, 40, 41) | (EXTRACT(e->misc, 44, 44) << 2);
81d547
+	uint32_t fdevice = EXTRACT(e->misc, 46, 51);
81d547
+	uint32_t subrank = EXTRACT(e->misc, 52, 55);
81d547
+	uint32_t rank = EXTRACT(e->misc, 56, 58);
81d547
+	uint32_t eccmode = EXTRACT(e->misc, 59, 62);
81d547
+	uint32_t transient = EXTRACT(e->misc, 63, 63);
81d547
+
81d547
+	mce_snprintf(e->error_msg, "bank: 0x%x bankgroup: 0x%x row: 0x%x column: 0x%x", bank, bankgroup, row, column);
81d547
+	if (!transient && !EXTRACT(e->status, 61, 61))
81d547
+		mce_snprintf(e->error_msg, "failed device: 0x%x", fdevice);
81d547
+	mce_snprintf(e->error_msg, "rank: 0x%x subrank: 0x%x", rank, subrank);
81d547
+	mce_snprintf(e->error_msg, "ecc mode: ");
81d547
+	switch (eccmode) {
81d547
+	case 0: mce_snprintf(e->error_msg, "SDDC memory mode"); break;
81d547
+	case 1: mce_snprintf(e->error_msg, "SDDC"); break;
81d547
+	case 4: mce_snprintf(e->error_msg, "ADDDC memory mode"); break;
81d547
+	case 5: mce_snprintf(e->error_msg, "ADDDC"); break;
81d547
+	case 8: mce_snprintf(e->error_msg, "DDRT read"); break;
81d547
+	default: mce_snprintf(e->error_msg, "unknown"); break;
81d547
+	}
81d547
+	if (transient)
81d547
+		mce_snprintf(e->error_msg, "transient");
81d547
+}
81d547
+
81d547
+enum banktype {
81d547
+	BT_UNKNOWN,
81d547
+	BT_PCU,
81d547
+	BT_UPI,
81d547
+	BT_M2M,
81d547
+	BT_IMC,
81d547
+};
81d547
+
81d547
+static enum banktype icelake[32] = {
81d547
+	[4]		= BT_PCU,
81d547
+	[5]		= BT_UPI,
81d547
+	[7 ... 8]	= BT_UPI,
81d547
+	[12]		= BT_M2M,
81d547
+	[16]		= BT_M2M,
81d547
+	[20]		= BT_M2M,
81d547
+	[24]		= BT_M2M,
81d547
+	[13 ... 15]	= BT_IMC,
81d547
+	[17 ... 19]	= BT_IMC,
81d547
+	[21 ... 23]	= BT_IMC,
81d547
+	[25 ... 27]	= BT_IMC,
81d547
+};
81d547
+
81d547
+static enum banktype icelake_de[32] = {
81d547
+	[4]		= BT_PCU,
81d547
+	[12]		= BT_M2M,
81d547
+	[16]		= BT_M2M,
81d547
+	[13 ... 15]	= BT_IMC,
81d547
+	[17 ... 19]	= BT_IMC,
81d547
+};
81d547
+
81d547
+static enum banktype tremont[32] = {
81d547
+	[4]		= BT_PCU,
81d547
+	[12]		= BT_M2M,
81d547
+	[13 ... 15]	= BT_IMC,
81d547
+};
81d547
+
81d547
+static enum banktype sapphire[32] = {
81d547
+	[4]		= BT_PCU,
81d547
+	[5]		= BT_UPI,
81d547
+	[12]		= BT_M2M,
81d547
+	[13 ... 20]	= BT_IMC,
81d547
+};
81d547
+
81d547
+void i10nm_memerr_misc(struct mce_event *e, int *channel);
81d547
+
81d547
+void i10nm_decode_model(enum cputype cputype, struct ras_events *ras,
81d547
+			struct mce_event *e)
81d547
+{
81d547
+	enum banktype banktype;
81d547
+	uint64_t f, status = e->status;
81d547
+	uint32_t mca = status & 0xffff;
81d547
+	int channel = -1;
81d547
+
81d547
+	switch (cputype) {
81d547
+	case CPU_ICELAKE_XEON:
81d547
+		banktype = icelake[e->bank];
81d547
+		break;
81d547
+	case CPU_ICELAKE_DE:
81d547
+		banktype = icelake_de[e->bank];
81d547
+		break;
81d547
+	case CPU_TREMONT_D:
81d547
+		banktype = tremont[e->bank];
81d547
+		break;
81d547
+	case CPU_SAPPHIRERAPIDS:
81d547
+		banktype = sapphire[e->bank];
81d547
+		break;
81d547
+	default:
81d547
+		return;
81d547
+	}
81d547
+
81d547
+	switch (banktype) {
81d547
+	case BT_UNKNOWN:
81d547
+		break;
81d547
+
81d547
+	case BT_PCU:
81d547
+		mce_snprintf(e->error_msg, "PCU: ");
81d547
+		f = EXTRACT(status, 24, 31);
81d547
+		if (f)
81d547
+			decode_bitfield(e, f, pcu1);
81d547
+		f = EXTRACT(status, 20, 23);
81d547
+		if (f)
81d547
+			decode_bitfield(e, f, pcu2);
81d547
+		f = EXTRACT(status, 16, 19);
81d547
+		if (f)
81d547
+			decode_bitfield(e, f, pcu3);
81d547
+		break;
81d547
+
81d547
+	case BT_UPI:
81d547
+		mce_snprintf(e->error_msg, "UPI: ");
81d547
+		f = EXTRACT(status, 22, 31);
81d547
+		if (f)
81d547
+			decode_bitfield(e, status, upi1);
81d547
+		f = EXTRACT(status, 16, 21);
81d547
+		decode_bitfield(e, f, upi2);
81d547
+		break;
81d547
+
81d547
+	case BT_M2M:
81d547
+		mce_snprintf(e->error_msg, "M2M: ");
81d547
+		f = EXTRACT(status, 24, 25);
81d547
+		mce_snprintf(e->error_msg, "MscodDDRType=0x%" PRIx64, f);
81d547
+		f = EXTRACT(status, 26, 31);
81d547
+		mce_snprintf(e->error_msg, "MscodMiscErrs=0x%" PRIx64, f);
81d547
+		decode_bitfield(e, status, m2m);
81d547
+		break;
81d547
+
81d547
+	case BT_IMC:
81d547
+		mce_snprintf(e->error_msg, "MemCtrl: ");
81d547
+		f = EXTRACT(status, 16, 23);
81d547
+		switch (EXTRACT(status, 24, 31)) {
81d547
+		case 0: decode_bitfield(e, f, imc0); break;
81d547
+		case 1: decode_bitfield(e, f, imc1); break;
81d547
+		case 2: decode_bitfield(e, f, imc2); break;
81d547
+		case 4: decode_bitfield(e, f, imc4); break;
81d547
+		case 8: decode_bitfield(e, f, imc8); break;
81d547
+		case 0x10: decode_bitfield(e, f, imc10); break;
81d547
+		}
81d547
+		i10nm_imc_misc(e);
81d547
+		break;
81d547
+	}
81d547
+
81d547
+	/*
81d547
+	 * Memory error specific code. Returns if the error is not a MC one
81d547
+	 */
81d547
+
81d547
+	/* Check if the error is at the memory controller */
81d547
+	if ((mca >> 7) != 1)
81d547
+		return;
81d547
+
81d547
+	/* Ignore unless this is an corrected extended error from an iMC bank */
81d547
+	if (banktype != BT_IMC || (status & MCI_STATUS_UC))
81d547
+		return;
81d547
+
81d547
+	/*
81d547
+	 * Parse the reported channel
81d547
+	 */
81d547
+
81d547
+	i10nm_memerr_misc(e, &channel);
81d547
+	if (channel == -1)
81d547
+		return;
81d547
+	mce_snprintf(e->mc_location, "memory_channel=%d", channel);
81d547
+}
81d547
+
81d547
+/*
81d547
+ * There isn't enough information to identify the DIMM. But
81d547
+ * we can derive the channel from the bank number.
81d547
+ * There can be four memory controllers with two channels each.
81d547
+ */
81d547
+void i10nm_memerr_misc(struct mce_event *e, int *channel)
81d547
+{
81d547
+	uint64_t status = e->status;
81d547
+	unsigned int chan, imc;
81d547
+
81d547
+	/* Check this is a memory error */
81d547
+	if (!test_prefix(7, status & 0xefff))
81d547
+		return;
81d547
+
81d547
+	chan = EXTRACT(status, 0, 3);
81d547
+	if (chan == 0xf)
81d547
+		return;
81d547
+
81d547
+	switch (e->bank) {
81d547
+	case 12: /* M2M 0 */
81d547
+	case 13: /* IMC 0, Channel 0 */
81d547
+	case 14: /* IMC 0, Channel 1 */
81d547
+	case 15: /* IMC 0, Channel 2 */
81d547
+		imc = 0;
81d547
+		break;
81d547
+	case 16: /* M2M 1 */
81d547
+	case 17: /* IMC 1, Channel 0 */
81d547
+	case 18: /* IMC 1, Channel 1 */
81d547
+	case 19: /* IMC 1, Channel 2 */
81d547
+		imc = 1;
81d547
+		break;
81d547
+	case 20: /* M2M 2 */
81d547
+	case 21: /* IMC 2, Channel 0 */
81d547
+	case 22: /* IMC 2, Channel 1 */
81d547
+	case 23: /* IMC 2, Channel 2 */
81d547
+		imc = 2;
81d547
+		break;
81d547
+	case 24: /* M2M 3 */
81d547
+	case 25: /* IMC 3, Channel 0 */
81d547
+	case 26: /* IMC 3, Channel 1 */
81d547
+	case 27: /* IMC 3, Channel 2 */
81d547
+		imc = 3;
81d547
+		break;
81d547
+	default:
81d547
+		return;
81d547
+	}
81d547
+
81d547
+	channel[0] = imc * 3 + chan;
81d547
+}
81d547
--- rasdaemon-0.6.1.orig/mce-intel.c	2021-09-17 15:29:39.189845188 -0400
81d547
+++ rasdaemon-0.6.1/mce-intel.c	2021-09-17 15:29:45.977790658 -0400
81d547
@@ -411,6 +411,11 @@ if (test_prefix(11, (e->status & 0xffffL
81d547
 	case CPU_SKYLAKE_XEON:
81d547
 		skylake_s_decode_model(ras, e);
81d547
 		break;
81d547
+	case CPU_ICELAKE_XEON:
81d547
+	case CPU_ICELAKE_DE:
81d547
+	case CPU_TREMONT_D:
81d547
+	case CPU_SAPPHIRERAPIDS:
81d547
+		i10nm_decode_model(mce->cputype, ras, e);
81d547
 	default:
81d547
 		break;
81d547
 	}
81d547
--- rasdaemon-0.6.1.orig/ras-mce-handler.c	2021-09-17 15:29:39.189845188 -0400
81d547
+++ rasdaemon-0.6.1/ras-mce-handler.c	2021-09-17 15:29:45.977790658 -0400
81d547
@@ -56,6 +56,10 @@ [CPU_XEON75XX] = "Intel Xeon 7500 series
81d547
 	[CPU_KNIGHTS_MILL] = "Knights Mill",
81d547
 	[CPU_SKYLAKE_XEON] = "Skylake server",
81d547
 	[CPU_AMD_SMCA] = "AMD Scalable MCA",
81d547
+	[CPU_ICELAKE_XEON] = "Icelake server",
81d547
+	[CPU_ICELAKE_DE] = "Icelake server D Family",
81d547
+	[CPU_TREMONT_D] = "Tremont microserver",
81d547
+	[CPU_SAPPHIRERAPIDS] = "Sapphirerapids server",
81d547
 };
81d547
 
81d547
 static enum cputype select_intel_cputype(struct ras_events *ras)
81d547
@@ -107,6 +111,14 @@ else if (mce->model == 0x85)
81d547
 			return CPU_KNIGHTS_MILL;
81d547
 		else if (mce->model == 0x55)
81d547
 			return CPU_SKYLAKE_XEON;
81d547
+		else if (mce->model == 0x6a)
81d547
+			return CPU_ICELAKE_XEON;
81d547
+		else if (mce->model == 0x6c)
81d547
+                        return CPU_ICELAKE_DE;
81d547
+		else if (mce->model == 0x86)
81d547
+                        return CPU_TREMONT_D;
81d547
+		else if (mce->model == 0x8f)
81d547
+                        return CPU_SAPPHIRERAPIDS;
81d547
 
81d547
 		if (mce->model > 0x1a) {
81d547
 			log(ALL, LOG_INFO,
81d547
--- rasdaemon-0.6.1.orig/ras-mce-handler.h	2021-09-17 15:29:39.189845188 -0400
81d547
+++ rasdaemon-0.6.1/ras-mce-handler.h	2021-09-17 15:29:45.977790658 -0400
81d547
@@ -51,6 +51,10 @@ enum cputype {
81d547
 	CPU_KNIGHTS_MILL,
81d547
 	CPU_SKYLAKE_XEON,
81d547
 	CPU_AMD_SMCA,
81d547
+	CPU_ICELAKE_XEON,
81d547
+	CPU_ICELAKE_DE,
81d547
+	CPU_TREMONT_D,
81d547
+	CPU_SAPPHIRERAPIDS,
81d547
 };
81d547
 
81d547
 struct mce_event {
81d547
@@ -131,6 +135,7 @@ void tulsa_decode_model(struct mce_event
81d547
 void broadwell_de_decode_model(struct ras_events *ras, struct mce_event *e);
81d547
 void broadwell_epex_decode_model(struct ras_events *ras, struct mce_event *e);
81d547
 void skylake_s_decode_model(struct ras_events *ras, struct mce_event *e);
81d547
+void i10nm_decode_model(enum cputype cputype, struct ras_events *ras, struct mce_event *e);
81d547
 
81d547
 /* AMD error code decode function */
81d547
 void decode_amd_errcode(struct mce_event *e);