Blame SOURCES/0059-rasdaemon-Add-support-for-Knights-Landing-processor.patch

0b5545
From 2d656c4ec9d5f68ac39b2a8461b0cd4f77dd7c21 Mon Sep 17 00:00:00 2001
0b5545
From: Marcin Koss <marcin.koss@intel.com>
0b5545
Date: Thu, 3 Dec 2015 15:19:47 +0100
0b5545
Subject: [PATCH 3/5] rasdaemon: Add support for Knights Landing processor
0b5545
0b5545
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
0b5545
---
0b5545
 Makefile.am       |   3 +-
0b5545
 mce-intel-knl.c   | 128 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
0b5545
 mce-intel.c       |   5 +++
0b5545
 ras-mce-handler.c |   1 +
0b5545
 ras-mce-handler.h |   1 +
0b5545
 5 files changed, 137 insertions(+), 1 deletion(-)
0b5545
 create mode 100644 mce-intel-knl.c
0b5545
0b5545
diff --git a/Makefile.am b/Makefile.am
0b5545
index a6bf18f..a1cb02a 100644
0b5545
--- a/Makefile.am
0b5545
+++ b/Makefile.am
0b5545
@@ -28,7 +28,8 @@ if WITH_MCE
0b5545
    rasdaemon_SOURCES += ras-mce-handler.c mce-intel.c mce-amd-k8.c \
0b5545
 			mce-intel-p4-p6.c mce-intel-nehalem.c \
0b5545
 			mce-intel-dunnington.c mce-intel-tulsa.c \
0b5545
-			mce-intel-sb.c mce-intel-ivb.c mce-intel-haswell.c
0b5545
+			mce-intel-sb.c mce-intel-ivb.c mce-intel-haswell.c \
0b5545
+			mce-intel-knl.c
0b5545
 endif
0b5545
 if WITH_EXTLOG
0b5545
    rasdaemon_SOURCES += ras-extlog-handler.c
0b5545
diff --git a/mce-intel-knl.c b/mce-intel-knl.c
0b5545
new file mode 100644
0b5545
index 0000000..96b0a59
0b5545
--- /dev/null
0b5545
+++ b/mce-intel-knl.c
0b5545
@@ -0,0 +1,128 @@
0b5545
+/*
0b5545
+ * This program is free software; you can redistribute it and/or modify
0b5545
+ * it under the terms of the GNU General Public License as published by
0b5545
+ * the Free Software Foundation; either version 2 of the License, or
0b5545
+ * (at your option) any later version.
0b5545
+ *
0b5545
+ * This program is distributed in the hope that it will be useful,
0b5545
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
0b5545
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0b5545
+ * GNU General Public License for more details.
0b5545
+ *
0b5545
+ * You should have received a copy of the GNU General Public License
0b5545
+ * along with this program; if not, write to the Free Software
0b5545
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
0b5545
+*/
0b5545
+
0b5545
+#include <string.h>
0b5545
+#include <stdio.h>
0b5545
+
0b5545
+#include "ras-mce-handler.h"
0b5545
+#include "bitfield.h"
0b5545
+
0b5545
+static struct field memctrl_mc7[] = {
0b5545
+	SBITFIELD(16, "CA Parity error"),
0b5545
+	SBITFIELD(17, "Internal Parity error except WDB"),
0b5545
+	SBITFIELD(18, "Internal Parity error from WDB"),
0b5545
+	SBITFIELD(19, "Correctable Patrol Scrub"),
0b5545
+	SBITFIELD(20, "Uncorrectable Patrol Scrub"),
0b5545
+	SBITFIELD(21, "Spare Correctable Error"),
0b5545
+	SBITFIELD(22, "Spare UC Error"),
0b5545
+	SBITFIELD(23, "CORR Chip fail even MC only, 4 bit burst error EDC only"),
0b5545
+	{}
0b5545
+};
0b5545
+
0b5545
+void knl_decode_model(struct ras_events *ras, struct mce_event *e)
0b5545
+{
0b5545
+	uint64_t status = e->status;
0b5545
+	uint32_t mca = status & 0xffff;
0b5545
+	unsigned rank0 = -1, rank1 = -1, chan = 0;
0b5545
+
0b5545
+	switch (e->bank) {
0b5545
+	case 5:
0b5545
+		switch (EXTRACT(status, 0, 15)) {
0b5545
+		case 0x402:
0b5545
+			mce_snprintf(e->mcastatus_msg, "PCU Internal Errors");
0b5545
+			break;
0b5545
+		case 0x403:
0b5545
+			mce_snprintf(e->mcastatus_msg, "VCU Internal Errors");
0b5545
+			break;
0b5545
+		case 0x407:
0b5545
+			mce_snprintf(e->mcastatus_msg, "Other UBOX Internal Errors");
0b5545
+			break;
0b5545
+		}
0b5545
+		break;
0b5545
+	case 7: case 8: case 9: case 10:
0b5545
+	case 11: case 12: case 13: case 14:
0b5545
+	case 15: case 16:
0b5545
+		if ((EXTRACT(status, 0, 15)) == 0x5) {
0b5545
+			mce_snprintf(e->mcastatus_msg, "Internal Parity error");
0b5545
+		} else {
0b5545
+			chan = (EXTRACT(status, 0, 3)) + 3 * (e->bank == 15);
0b5545
+			switch (EXTRACT(status, 4, 7)) {
0b5545
+			case 0x0:
0b5545
+				mce_snprintf(e->mcastatus_msg, "Undefined request on channel %d", chan);
0b5545
+				break;
0b5545
+			case 0x1:
0b5545
+				mce_snprintf(e->mcastatus_msg, "Read on channel %d", chan);
0b5545
+				break;
0b5545
+			case 0x2:
0b5545
+				mce_snprintf(e->mcastatus_msg, "Write on channel %d", chan);
0b5545
+				break;
0b5545
+			case 0x3:
0b5545
+				mce_snprintf(e->mcastatus_msg, "CA error on channel %d", chan);
0b5545
+				break;
0b5545
+			case 0x4:
0b5545
+				mce_snprintf(e->mcastatus_msg, "Scrub error on channel %d", chan);
0b5545
+				break;
0b5545
+			}
0b5545
+		}
0b5545
+		decode_bitfield(e, status, memctrl_mc7);
0b5545
+		break;
0b5545
+	default:
0b5545
+		break;
0b5545
+	}
0b5545
+
0b5545
+	/*
0b5545
+	 * Memory error specific code. Returns if the error is not a MC one
0b5545
+	 */
0b5545
+
0b5545
+	/* Check if the error is at the memory controller */
0b5545
+	if ((mca >> 7) != 1)
0b5545
+		return;
0b5545
+
0b5545
+	/* Ignore unless this is an corrected extended error from an iMC bank */
0b5545
+	if (e->bank < 7 || e->bank > 16 || (status & MCI_STATUS_UC) ||
0b5545
+		!test_prefix(7, status & 0xefff))
0b5545
+		return;
0b5545
+
0b5545
+	/*
0b5545
+	 * Parse the reported channel and ranks
0b5545
+	 */
0b5545
+
0b5545
+	chan = EXTRACT(status, 0, 3);
0b5545
+	if (chan == 0xf)
0b5545
+	{
0b5545
+		mce_snprintf(e->mc_location, "memory_channel=unspecified");
0b5545
+	}
0b5545
+	else
0b5545
+	{
0b5545
+		chan = chan + 3 * (e->bank == 15);
0b5545
+		mce_snprintf(e->mc_location, "memory_channel=%d", chan);
0b5545
+
0b5545
+		if (EXTRACT(e->misc, 62, 62))
0b5545
+			rank0 = EXTRACT(e->misc, 46, 50);
0b5545
+		if (EXTRACT(e->misc, 63, 63))
0b5545
+			rank1 = EXTRACT(e->misc, 51, 55);
0b5545
+
0b5545
+		/*
0b5545
+		 * FIXME: The conversion from rank to dimm requires to parse the
0b5545
+		 * DMI tables and call failrank2dimm().
0b5545
+		 */
0b5545
+		if (rank0 != -1 && rank1 != -1)
0b5545
+			mce_snprintf(e->mc_location, "ranks=%d and %d",
0b5545
+					     rank0, rank1);
0b5545
+		else if (rank0 != -1)
0b5545
+			mce_snprintf(e->mc_location, "rank=%d", rank0);
0b5545
+	}
0b5545
+}
0b5545
diff --git a/mce-intel.c b/mce-intel.c
0b5545
index 77b929b..032f4e0 100644
0b5545
--- a/mce-intel.c
0b5545
+++ b/mce-intel.c
0b5545
@@ -397,6 +397,10 @@ int parse_intel_event(struct ras_events *ras, struct mce_event *e)
0b5545
 		break;
0b5545
 	case CPU_HASWELL_EPEX:
0b5545
 		hsw_decode_model(ras, e);
0b5545
+		break;
0b5545
+	case CPU_KNIGHTS_LANDING:
0b5545
+		knl_decode_model(ras, e);
0b5545
+		break;
0b5545
 	default:
0b5545
 		break;
0b5545
 	}
0b5545
@@ -460,6 +464,7 @@ int set_intel_imc_log(enum cputype cputype, unsigned ncpus)
0b5545
 	case CPU_SANDY_BRIDGE_EP:
0b5545
 	case CPU_IVY_BRIDGE_EPEX:
0b5545
 	case CPU_HASWELL_EPEX:
0b5545
+	case CPU_KNIGHTS_LANDING:
0b5545
 		msr = 0x17f;	/* MSR_ERROR_CONTROL */
0b5545
 		bit = 0x2;	/* MemError Log Enable */
0b5545
 		break;
0b5545
diff --git a/ras-mce-handler.c b/ras-mce-handler.c
0b5545
index 23f2488..3b0b05b 100644
0b5545
--- a/ras-mce-handler.c
0b5545
+++ b/ras-mce-handler.c
0b5545
@@ -223,6 +223,7 @@ int register_mce_handler(struct ras_events *ras, unsigned ncpus)
0b5545
 	case CPU_SANDY_BRIDGE_EP:
0b5545
 	case CPU_IVY_BRIDGE_EPEX:
0b5545
 	case CPU_HASWELL_EPEX:
0b5545
+	case CPU_KNIGHTS_LANDING:
0b5545
 		set_intel_imc_log(mce->cputype, ncpus);
0b5545
 	default:
0b5545
 		break;
0b5545
diff --git a/ras-mce-handler.h b/ras-mce-handler.h
0b5545
index 13b8f52..5466743 100644
0b5545
--- a/ras-mce-handler.h
0b5545
+++ b/ras-mce-handler.h
0b5545
@@ -119,6 +119,7 @@ void dunnington_decode_model(struct mce_event *e);
0b5545
 void snb_decode_model(struct ras_events *ras, struct mce_event *e);
0b5545
 void ivb_decode_model(struct ras_events *ras, struct mce_event *e);
0b5545
 void hsw_decode_model(struct ras_events *ras, struct mce_event *e);
0b5545
+void knl_decode_model(struct ras_events *ras, struct mce_event *e);
0b5545
 void tulsa_decode_model(struct mce_event *e);
0b5545
 
0b5545
 /* Software defined banks */
0b5545
-- 
0b5545
1.8.3.1
0b5545