Merge branch 'for-3.5-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj...
[firefly-linux-kernel-4.4.55.git] / arch / x86 / kernel / cpu / mcheck / mce-severity.c
1 /*
2  * MCE grading rules.
3  * Copyright 2008, 2009 Intel Corporation.
4  *
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
8  * of the License.
9  *
10  * Author: Andi Kleen
11  */
12 #include <linux/kernel.h>
13 #include <linux/seq_file.h>
14 #include <linux/init.h>
15 #include <linux/debugfs.h>
16 #include <asm/mce.h>
17
18 #include "mce-internal.h"
19
20 /*
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
24  * match wins.
25  *
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
29  * panic situations)
30  */
31
32 enum context { IN_KERNEL = 1, IN_USER = 2 };
33 enum ser { SER_REQUIRED = 1, NO_SER = 2 };
34
35 static struct severity {
36         u64 mask;
37         u64 result;
38         unsigned char sev;
39         unsigned char mcgmask;
40         unsigned char mcgres;
41         unsigned char ser;
42         unsigned char context;
43         unsigned char covered;
44         char *msg;
45 } severities[] = {
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)
57 #define MCI_ADDR (MCI_STATUS_ADDRV|MCI_STATUS_MISCV)
58 #define MCACOD 0xffff
59 /* Architecturally defined codes from SDM Vol. 3B Chapter 15 */
60 #define MCACOD_SCRUB    0x00C0  /* 0xC0-0xCF Memory Scrubbing */
61 #define MCACOD_SCRUBMSK 0xfff0
62 #define MCACOD_L3WB     0x017A  /* L3 Explicit Writeback */
63 #define MCACOD_DATA     0x0134  /* Data Load */
64 #define MCACOD_INSTR    0x0150  /* Instruction Fetch */
65
66         MCESEV(
67                 NO, "Invalid",
68                 BITCLR(MCI_STATUS_VAL)
69                 ),
70         MCESEV(
71                 NO, "Not enabled",
72                 BITCLR(MCI_STATUS_EN)
73                 ),
74         MCESEV(
75                 PANIC, "Processor context corrupt",
76                 BITSET(MCI_STATUS_PCC)
77                 ),
78         /* When MCIP is not set something is very confused */
79         MCESEV(
80                 PANIC, "MCIP not set in MCA handler",
81                 MCGMASK(MCG_STATUS_MCIP, 0)
82                 ),
83         /* Neither return not error IP -- no chance to recover -> PANIC */
84         MCESEV(
85                 PANIC, "Neither restart nor error IP",
86                 MCGMASK(MCG_STATUS_RIPV|MCG_STATUS_EIPV, 0)
87                 ),
88         MCESEV(
89                 PANIC, "In kernel and no restart IP",
90                 KERNEL, MCGMASK(MCG_STATUS_RIPV, 0)
91                 ),
92         MCESEV(
93                 KEEP, "Corrected error",
94                 NOSER, BITCLR(MCI_STATUS_UC)
95                 ),
96
97         /* ignore OVER for UCNA */
98         MCESEV(
99                 KEEP, "Uncorrected no action required",
100                 SER, MASK(MCI_UC_SAR, MCI_STATUS_UC)
101                 ),
102         MCESEV(
103                 PANIC, "Illegal combination (UCNA with AR=1)",
104                 SER,
105                 MASK(MCI_STATUS_OVER|MCI_UC_SAR, MCI_STATUS_UC|MCI_STATUS_AR)
106                 ),
107         MCESEV(
108                 KEEP, "Non signalled machine check",
109                 SER, BITCLR(MCI_STATUS_S)
110                 ),
111
112         MCESEV(
113                 PANIC, "Action required with lost events",
114                 SER, BITSET(MCI_STATUS_OVER|MCI_UC_SAR)
115                 ),
116
117         /* known AR MCACODs: */
118 #ifdef  CONFIG_MEMORY_FAILURE
119         MCESEV(
120                 KEEP, "HT thread notices Action required: data load error",
121                 SER, MASK(MCI_STATUS_OVER|MCI_UC_SAR|MCI_ADDR|MCACOD, MCI_UC_SAR|MCI_ADDR|MCACOD_DATA),
122                 MCGMASK(MCG_STATUS_EIPV, 0)
123                 ),
124         MCESEV(
125                 AR, "Action required: data load error",
126                 SER, MASK(MCI_STATUS_OVER|MCI_UC_SAR|MCI_ADDR|MCACOD, MCI_UC_SAR|MCI_ADDR|MCACOD_DATA),
127                 USER
128                 ),
129         MCESEV(
130                 KEEP, "HT thread notices Action required: instruction fetch error",
131                 SER, MASK(MCI_STATUS_OVER|MCI_UC_SAR|MCI_ADDR|MCACOD, MCI_UC_SAR|MCI_ADDR|MCACOD_INSTR),
132                 MCGMASK(MCG_STATUS_EIPV, 0)
133                 ),
134         MCESEV(
135                 AR, "Action required: instruction fetch error",
136                 SER, MASK(MCI_STATUS_OVER|MCI_UC_SAR|MCI_ADDR|MCACOD, MCI_UC_SAR|MCI_ADDR|MCACOD_INSTR),
137                 USER
138                 ),
139 #endif
140         MCESEV(
141                 PANIC, "Action required: unknown MCACOD",
142                 SER, MASK(MCI_STATUS_OVER|MCI_UC_SAR, MCI_UC_SAR)
143                 ),
144
145         /* known AO MCACODs: */
146         MCESEV(
147                 AO, "Action optional: memory scrubbing error",
148                 SER, MASK(MCI_STATUS_OVER|MCI_UC_SAR|MCACOD_SCRUBMSK, MCI_UC_S|MCACOD_SCRUB)
149                 ),
150         MCESEV(
151                 AO, "Action optional: last level cache writeback error",
152                 SER, MASK(MCI_STATUS_OVER|MCI_UC_SAR|MCACOD, MCI_UC_S|MCACOD_L3WB)
153                 ),
154         MCESEV(
155                 SOME, "Action optional: unknown MCACOD",
156                 SER, MASK(MCI_STATUS_OVER|MCI_UC_SAR, MCI_UC_S)
157                 ),
158         MCESEV(
159                 SOME, "Action optional with lost events",
160                 SER, MASK(MCI_STATUS_OVER|MCI_UC_SAR, MCI_STATUS_OVER|MCI_UC_S)
161                 ),
162
163         MCESEV(
164                 PANIC, "Overflowed uncorrected",
165                 BITSET(MCI_STATUS_OVER|MCI_STATUS_UC)
166                 ),
167         MCESEV(
168                 UC, "Uncorrected",
169                 BITSET(MCI_STATUS_UC)
170                 ),
171         MCESEV(
172                 SOME, "No match",
173                 BITSET(0)
174                 )       /* always matches. keep at end */
175 };
176
177 /*
178  * If mcgstatus indicated that ip/cs on the stack were
179  * no good, then "m->cs" will be zero and we will have
180  * to assume the worst case (IN_KERNEL) as we actually
181  * have no idea what we were executing when the machine
182  * check hit.
183  * If we do have a good "m->cs" (or a faked one in the
184  * case we were executing in VM86 mode) we can use it to
185  * distinguish an exception taken in user from from one
186  * taken in the kernel.
187  */
188 static int error_context(struct mce *m)
189 {
190         return ((m->cs & 3) == 3) ? IN_USER : IN_KERNEL;
191 }
192
193 int mce_severity(struct mce *m, int tolerant, char **msg)
194 {
195         enum context ctx = error_context(m);
196         struct severity *s;
197
198         for (s = severities;; s++) {
199                 if ((m->status & s->mask) != s->result)
200                         continue;
201                 if ((m->mcgstatus & s->mcgmask) != s->mcgres)
202                         continue;
203                 if (s->ser == SER_REQUIRED && !mce_ser)
204                         continue;
205                 if (s->ser == NO_SER && mce_ser)
206                         continue;
207                 if (s->context && ctx != s->context)
208                         continue;
209                 if (msg)
210                         *msg = s->msg;
211                 s->covered = 1;
212                 if (s->sev >= MCE_UC_SEVERITY && ctx == IN_KERNEL) {
213                         if (panic_on_oops || tolerant < 1)
214                                 return MCE_PANIC_SEVERITY;
215                 }
216                 return s->sev;
217         }
218 }
219
220 #ifdef CONFIG_DEBUG_FS
221 static void *s_start(struct seq_file *f, loff_t *pos)
222 {
223         if (*pos >= ARRAY_SIZE(severities))
224                 return NULL;
225         return &severities[*pos];
226 }
227
228 static void *s_next(struct seq_file *f, void *data, loff_t *pos)
229 {
230         if (++(*pos) >= ARRAY_SIZE(severities))
231                 return NULL;
232         return &severities[*pos];
233 }
234
235 static void s_stop(struct seq_file *f, void *data)
236 {
237 }
238
239 static int s_show(struct seq_file *f, void *data)
240 {
241         struct severity *ser = data;
242         seq_printf(f, "%d\t%s\n", ser->covered, ser->msg);
243         return 0;
244 }
245
246 static const struct seq_operations severities_seq_ops = {
247         .start  = s_start,
248         .next   = s_next,
249         .stop   = s_stop,
250         .show   = s_show,
251 };
252
253 static int severities_coverage_open(struct inode *inode, struct file *file)
254 {
255         return seq_open(file, &severities_seq_ops);
256 }
257
258 static ssize_t severities_coverage_write(struct file *file,
259                                          const char __user *ubuf,
260                                          size_t count, loff_t *ppos)
261 {
262         int i;
263         for (i = 0; i < ARRAY_SIZE(severities); i++)
264                 severities[i].covered = 0;
265         return count;
266 }
267
268 static const struct file_operations severities_coverage_fops = {
269         .open           = severities_coverage_open,
270         .release        = seq_release,
271         .read           = seq_read,
272         .write          = severities_coverage_write,
273         .llseek         = seq_lseek,
274 };
275
276 static int __init severities_debugfs_init(void)
277 {
278         struct dentry *dmce, *fsev;
279
280         dmce = mce_get_debugfs_dir();
281         if (!dmce)
282                 goto err_out;
283
284         fsev = debugfs_create_file("severities-coverage", 0444, dmce, NULL,
285                                    &severities_coverage_fops);
286         if (!fsev)
287                 goto err_out;
288
289         return 0;
290
291 err_out:
292         return -ENOMEM;
293 }
294 late_initcall(severities_debugfs_init);
295 #endif /* CONFIG_DEBUG_FS */