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