3 * Copyright 2008, 2009 Intel Corporation.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; version 2
12 #include <linux/kernel.h>
13 #include <linux/seq_file.h>
14 #include <linux/init.h>
15 #include <linux/debugfs.h>
18 #include "mce-internal.h"
21 * Grade an mce by severity. In general the most severe ones are processed
22 * first. Since there are quite a lot of combinations test the bits in a
23 * table-driven way. The rules are simply processed in order, first
26 * Note this is only used for machine check exceptions, the corrected
27 * errors use much simpler rules. The exceptions still check for the corrected
28 * errors, but only to leave them alone for the CMCI handler (except for
32 enum context
{ IN_KERNEL
= 1, IN_USER
= 2 };
33 enum ser
{ SER_REQUIRED
= 1, NO_SER
= 2 };
35 static struct severity
{
39 unsigned char mcgmask
;
42 unsigned char context
;
43 unsigned char covered
;
46 #define MCESEV(s, m, c...) { .sev = MCE_ ## s ## _SEVERITY, .msg = m, ## c }
47 #define KERNEL .context = IN_KERNEL
48 #define USER .context = IN_USER
49 #define SER .ser = SER_REQUIRED
50 #define NOSER .ser = NO_SER
51 #define BITCLR(x) .mask = x, .result = 0
52 #define BITSET(x) .mask = x, .result = x
53 #define MCGMASK(x, y) .mcgmask = x, .mcgres = y
54 #define MASK(x, y) .mask = x, .result = y
55 #define MCI_UC_S (MCI_STATUS_UC|MCI_STATUS_S)
56 #define MCI_UC_SAR (MCI_STATUS_UC|MCI_STATUS_S|MCI_STATUS_AR)
61 BITCLR(MCI_STATUS_VAL
)
68 PANIC
, "Processor context corrupt",
69 BITSET(MCI_STATUS_PCC
)
71 /* When MCIP is not set something is very confused */
73 PANIC
, "MCIP not set in MCA handler",
74 MCGMASK(MCG_STATUS_MCIP
, 0)
76 /* Neither return not error IP -- no chance to recover -> PANIC */
78 PANIC
, "Neither restart nor error IP",
79 MCGMASK(MCG_STATUS_RIPV
|MCG_STATUS_EIPV
, 0)
82 PANIC
, "In kernel and no restart IP",
83 KERNEL
, MCGMASK(MCG_STATUS_RIPV
, 0)
86 KEEP
, "Corrected error",
87 NOSER
, BITCLR(MCI_STATUS_UC
)
90 /* ignore OVER for UCNA */
92 KEEP
, "Uncorrected no action required",
93 SER
, MASK(MCI_UC_SAR
, MCI_STATUS_UC
)
96 PANIC
, "Illegal combination (UCNA with AR=1)",
98 MASK(MCI_STATUS_OVER
|MCI_UC_SAR
, MCI_STATUS_UC
|MCI_STATUS_AR
)
101 KEEP
, "Non signalled machine check",
102 SER
, BITCLR(MCI_STATUS_S
)
105 /* AR add known MCACODs here */
107 PANIC
, "Action required with lost events",
108 SER
, BITSET(MCI_STATUS_OVER
|MCI_UC_SAR
)
111 PANIC
, "Action required: unknown MCACOD",
112 SER
, MASK(MCI_STATUS_OVER
|MCI_UC_SAR
, MCI_UC_SAR
)
115 /* known AO MCACODs: */
117 AO
, "Action optional: memory scrubbing error",
118 SER
, MASK(MCI_STATUS_OVER
|MCI_UC_SAR
|0xfff0, MCI_UC_S
|0x00c0)
121 AO
, "Action optional: last level cache writeback error",
122 SER
, MASK(MCI_STATUS_OVER
|MCI_UC_SAR
|MCACOD
, MCI_UC_S
|0x017a)
125 SOME
, "Action optional: unknown MCACOD",
126 SER
, MASK(MCI_STATUS_OVER
|MCI_UC_SAR
, MCI_UC_S
)
129 SOME
, "Action optional with lost events",
130 SER
, MASK(MCI_STATUS_OVER
|MCI_UC_SAR
, MCI_STATUS_OVER
|MCI_UC_S
)
134 PANIC
, "Overflowed uncorrected",
135 BITSET(MCI_STATUS_OVER
|MCI_STATUS_UC
)
139 BITSET(MCI_STATUS_UC
)
144 ) /* always matches. keep at end */
148 * If the EIPV bit is set, it means the saved IP is the
149 * instruction which caused the MCE.
151 static int error_context(struct mce
*m
)
153 if (m
->mcgstatus
& MCG_STATUS_EIPV
)
154 return (m
->ip
&& (m
->cs
& 3) == 3) ? IN_USER
: IN_KERNEL
;
155 /* Unknown, assume kernel */
159 int mce_severity(struct mce
*m
, int tolerant
, char **msg
)
161 enum context ctx
= error_context(m
);
164 for (s
= severities
;; s
++) {
165 if ((m
->status
& s
->mask
) != s
->result
)
167 if ((m
->mcgstatus
& s
->mcgmask
) != s
->mcgres
)
169 if (s
->ser
== SER_REQUIRED
&& !mce_ser
)
171 if (s
->ser
== NO_SER
&& mce_ser
)
173 if (s
->context
&& ctx
!= s
->context
)
178 if (s
->sev
>= MCE_UC_SEVERITY
&& ctx
== IN_KERNEL
) {
179 if (panic_on_oops
|| tolerant
< 1)
180 return MCE_PANIC_SEVERITY
;
186 #ifdef CONFIG_DEBUG_FS
187 static void *s_start(struct seq_file
*f
, loff_t
*pos
)
189 if (*pos
>= ARRAY_SIZE(severities
))
191 return &severities
[*pos
];
194 static void *s_next(struct seq_file
*f
, void *data
, loff_t
*pos
)
196 if (++(*pos
) >= ARRAY_SIZE(severities
))
198 return &severities
[*pos
];
201 static void s_stop(struct seq_file
*f
, void *data
)
205 static int s_show(struct seq_file
*f
, void *data
)
207 struct severity
*ser
= data
;
208 seq_printf(f
, "%d\t%s\n", ser
->covered
, ser
->msg
);
212 static const struct seq_operations severities_seq_ops
= {
219 static int severities_coverage_open(struct inode
*inode
, struct file
*file
)
221 return seq_open(file
, &severities_seq_ops
);
224 static ssize_t
severities_coverage_write(struct file
*file
,
225 const char __user
*ubuf
,
226 size_t count
, loff_t
*ppos
)
229 for (i
= 0; i
< ARRAY_SIZE(severities
); i
++)
230 severities
[i
].covered
= 0;
234 static const struct file_operations severities_coverage_fops
= {
235 .open
= severities_coverage_open
,
236 .release
= seq_release
,
238 .write
= severities_coverage_write
,
242 static int __init
severities_debugfs_init(void)
244 struct dentry
*dmce
, *fsev
;
246 dmce
= mce_get_debugfs_dir();
250 fsev
= debugfs_create_file("severities-coverage", 0444, dmce
, NULL
,
251 &severities_coverage_fops
);
260 late_initcall(severities_debugfs_init
);
261 #endif /* CONFIG_DEBUG_FS */