lkml.org 
[lkml]   [2022]   [Mar]   [11]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 1/2] x86/mce: Extend AMD severity grading function with new types of errors
Date
The MCE handler needs to understand the severity of the machine errors to
act accordingly. In the case of AMD, very few errors are covered in the
grading logic.

Extend the MCEs severity grading of AMD to cover new types of machine
errors.

Signed-off-by: Carlos Bilbao <carlos.bilbao@amd.com>
---
arch/x86/include/asm/mce.h | 6 +
arch/x86/kernel/cpu/mce/severity.c | 180 +++++++++++++++++++++++------
2 files changed, 150 insertions(+), 36 deletions(-)

diff --git a/arch/x86/include/asm/mce.h b/arch/x86/include/asm/mce.h
index cc73061e7255..6b1ef40f8580 100644
--- a/arch/x86/include/asm/mce.h
+++ b/arch/x86/include/asm/mce.h
@@ -50,6 +50,12 @@
#define MCI_STATUS_POISON BIT_ULL(43) /* access poisonous data */
#define MCI_STATUS_SCRUB BIT_ULL(40) /* Error detected during scrub operation */

+/* AMD Error codes from PPR(s) section 3.1 Machine Check Architecture */
+#define ERRORCODE_T_MSK GENMASK(3, 2) /* Mask for transaction type bits */
+#define ERRORCODE_M_MSK GENMASK(7, 4) /* Mask for memory transaction type */
+#define ERRORCODE_T_DATA 0x4 /* Transaction type of error is Data */
+#define ERRORCODE_M_FETCH 0x50 /* Memory transaction type of error is Instruction Fetch */
+
/*
* McaX field if set indicates a given bank supports MCA extensions:
* - Deferred error interrupt type is specifiable by bank.
diff --git a/arch/x86/kernel/cpu/mce/severity.c b/arch/x86/kernel/cpu/mce/severity.c
index 1add86935349..4a089e9dbbaf 100644
--- a/arch/x86/kernel/cpu/mce/severity.c
+++ b/arch/x86/kernel/cpu/mce/severity.c
@@ -327,59 +327,167 @@ static __always_inline int mce_severity_amd_smca(struct mce *m, enum context err
}

/*
- * See AMD Error Scope Hierarchy table in a newer BKDG. For example
- * 49125_15h_Models_30h-3Fh_BKDG.pdf, section "RAS Features"
+ * Evaluate the severity of an overflow error for AMD systems, dependent on
+ * the recoverable features available.
*/
-static noinstr int mce_severity_amd(struct mce *m, struct pt_regs *regs, char **msg, bool is_excp)
+static noinstr int mce_grade_overflow_amd(struct mce *m, enum context ctx)
{
- enum context ctx = error_context(m, regs);
+ int ret;

- /* Processor Context Corrupt, no need to fumble too much, die! */
- if (m->status & MCI_STATUS_PCC)
+ /*
+ * On older systems where overflow_recov flag is not present, we
+ * should simply panic if an error overflow occurs. If
+ * overflow_recov flag is present and set, then software can try
+ * to at least kill process to prolong system operation.
+ */
+ if (mce_flags.overflow_recov) {
+ if (mce_flags.smca) {
+ ret = mce_severity_amd_smca(m, ctx);
+ } else {
+ /* kill current process */
+ ret = MCE_AR_SEVERITY;
+ }
+ return ret;
+ }
+
+ /* at least one error was not logged */
+ if (m->status & MCI_STATUS_OVER)
return MCE_PANIC_SEVERITY;

- if (m->status & MCI_STATUS_UC) {
+ /*
+ * For any other case, return MCE_UC_SEVERITY so that we log the
+ * error and exit #MC handler.
+ */
+ return MCE_UC_SEVERITY;
+}

- if (ctx == IN_KERNEL)
- return MCE_PANIC_SEVERITY;
+/*
+ * See AMD PPR(s) section 3.1 Machine Check Architecture
+ */
+static noinstr int mce_severity_amd(struct mce *m, struct pt_regs *regs, char **msg, bool is_excp)
+{
+ enum context ctx = error_context(m, regs);
+ int ret;

- /*
- * On older systems where overflow_recov flag is not present, we
- * should simply panic if an error overflow occurs. If
- * overflow_recov flag is present and set, then software can try
- * to at least kill process to prolong system operation.
- */
- if (mce_flags.overflow_recov) {
- if (mce_flags.smca)
- return mce_severity_amd_smca(m, ctx);
+ /*
+ * Default return values. The poll handler catches these and passes
+ * responsibility of decoding them to EDAC
+ */
+ ret = MCE_KEEP_SEVERITY;

- /* kill current process */
- return MCE_AR_SEVERITY;
- } else {
- /* at least one error was not logged */
- if (m->status & MCI_STATUS_OVER)
- return MCE_PANIC_SEVERITY;
+ /*
+ * Evaluate the severity of deferred errors for AMD systems, for which only
+ * scrub error is interesting to notify an action requirement.
+ */
+ if (m->status & MCI_STATUS_DEFERRED) {
+ if (m->status & MCI_STATUS_SCRUB)
+ ret = MCE_AR_SEVERITY;
+ else {
+ /*
+ * deferred error: poll handler catches these and adds to mce_ring so
+ * memory-failure can take recovery actions.
+ */
+ ret = MCE_DEFERRED_SEVERITY;
}
+ goto amd_severity;
+ }

- /*
- * For any other case, return MCE_UC_SEVERITY so that we log the
- * error and exit #MC handler.
- */
- return MCE_UC_SEVERITY;
+ /* If the UC bit is not set, the error has been corrected */
+ if (!(m->status & MCI_STATUS_UC)) {
+ ret = MCE_KEEP_SEVERITY;
+ goto amd_severity;
}

/*
- * deferred error: poll handler catches these and adds to mce_ring so
- * memory-failure can take recovery actions.
+ * Evaluate the severity of memory poison for AMD systems,
+ * depending on the context in which the MCE happened.
*/
- if (m->status & MCI_STATUS_DEFERRED)
- return MCE_DEFERRED_SEVERITY;
+ if (m->status & MCI_STATUS_POISON) {
+ switch (ctx) {
+ case IN_USER:
+ ret = MCE_AR_SEVERITY;
+ break;
+ case IN_KERNEL_RECOV:
+#ifdef CONFIG_MEMORY_FAILURE
+ ret = MCE_AR_SEVERITY;
+#else
+ ret = MCE_PANIC_SEVERITY;
+#endif
+ break;
+ case IN_KERNEL:
+ ret = MCE_PANIC_SEVERITY;
+ break;
+ default:
+ ret = MCE_PANIC_SEVERITY;
+ }
+
+ goto amd_severity;
+ }
+
+ /* Processor Context Corrupt, no need to fumble too much, die! */
+ if (m->status & MCI_STATUS_PCC) {
+ ret = MCE_PANIC_SEVERITY;
+ goto amd_severity;
+ }

/*
- * corrected error: poll handler catches these and passes responsibility
- * of decoding the error to EDAC
+ * Evaluate the severity of data load error for AMD systems,
+ * depending on the context in which the MCE happened.
*/
- return MCE_KEEP_SEVERITY;
+ if ((m->status & ERRORCODE_T_MSK) == ERRORCODE_T_DATA) {
+ switch (ctx) {
+ case IN_USER:
+ case IN_KERNEL_RECOV:
+ ret = MCE_AR_SEVERITY;
+ break;
+ case IN_KERNEL:
+ ret = MCE_PANIC_SEVERITY;
+ break;
+ default:
+ ret = MCE_PANIC_SEVERITY;
+ }
+
+ goto amd_severity;
+ }
+
+
+ /*
+ * Evaluate the severity of an instruction fetch error for AMD systems,
+ * depending on the context in which the MCE happened.
+ */
+ if ((m->status & ERRORCODE_M_MSK) == ERRORCODE_M_FETCH) {
+ switch (ctx) {
+ case IN_USER:
+ ret = MCE_AR_SEVERITY;
+ break;
+ case IN_KERNEL_RECOV:
+#ifdef CONFIG_MEMORY_FAILURE
+ ret = MCE_AR_SEVERITY;
+#else
+ ret = MCE_PANIC_SEVERITY;
+#endif
+ break;
+ case IN_KERNEL:
+ ret = MCE_PANIC_SEVERITY;
+ break;
+ default:
+ ret = MCE_PANIC_SEVERITY;
+ }
+
+ goto amd_severity;
+ }
+
+ if (m->status & MCI_STATUS_OVER) {
+ ret = mce_grade_overflow_amd(m, ctx);
+ goto amd_severity;
+ }
+
+ if (ctx == IN_KERNEL)
+ ret = MCE_PANIC_SEVERITY;
+
+amd_severity:
+
+ return ret;
}

static noinstr int mce_severity_intel(struct mce *m, struct pt_regs *regs, char **msg, bool is_excp)
--
2.27.0
\
 
 \ /
  Last update: 2022-03-11 17:53    [W:0.730 / U:0.100 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site