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 KERNEL .context = IN_KERNEL
47 #define USER .context = IN_USER
48 #define SER .ser = SER_REQUIRED
49 #define NOSER .ser = NO_SER
50 #define SEV(s) .sev = MCE_ ## s ## _SEVERITY
51 #define BITCLR(x, s, m, r...) { .mask = x, .result = 0, SEV(s), .msg = m, ## r }
52 #define BITSET(x, s, m, r...) { .mask = x, .result = x, SEV(s), .msg = m, ## r }
53 #define MCGMASK(x, res, s, m, r...) \
54 { .mcgmask = x, .mcgres = res, SEV(s), .msg = m, ## r }
55 #define MASK(x, y, s, m, r...) \
56 { .mask = x, .result = y, SEV(s), .msg = m, ## r }
57 #define MCI_UC_S (MCI_STATUS_UC|MCI_STATUS_S)
58 #define MCI_UC_SAR (MCI_STATUS_UC|MCI_STATUS_S|MCI_STATUS_AR)
61 BITCLR(MCI_STATUS_VAL
, NO
, "Invalid"),
62 BITCLR(MCI_STATUS_EN
, NO
, "Not enabled"),
63 BITSET(MCI_STATUS_PCC
, PANIC
, "Processor context corrupt"),
64 /* When MCIP is not set something is very confused */
65 MCGMASK(MCG_STATUS_MCIP
, 0, PANIC
, "MCIP not set in MCA handler"),
66 /* Neither return not error IP -- no chance to recover -> PANIC */
67 MCGMASK(MCG_STATUS_RIPV
|MCG_STATUS_EIPV
, 0, PANIC
,
68 "Neither restart nor error IP"),
69 MCGMASK(MCG_STATUS_RIPV
, 0, PANIC
, "In kernel and no restart IP",
71 BITCLR(MCI_STATUS_UC
, KEEP
, "Corrected error", NOSER
),
72 MASK(MCI_STATUS_OVER
|MCI_STATUS_UC
|MCI_STATUS_EN
, MCI_STATUS_UC
, SOME
,
73 "Spurious not enabled", SER
),
75 /* ignore OVER for UCNA */
76 MASK(MCI_UC_SAR
, MCI_STATUS_UC
, KEEP
,
77 "Uncorrected no action required", SER
),
78 MASK(MCI_STATUS_OVER
|MCI_UC_SAR
, MCI_STATUS_UC
|MCI_STATUS_AR
, PANIC
,
79 "Illegal combination (UCNA with AR=1)", SER
),
80 MASK(MCI_STATUS_S
, 0, KEEP
, "Non signalled machine check", SER
),
82 /* AR add known MCACODs here */
83 MASK(MCI_STATUS_OVER
|MCI_UC_SAR
, MCI_STATUS_OVER
|MCI_UC_SAR
, PANIC
,
84 "Action required with lost events", SER
),
85 MASK(MCI_STATUS_OVER
|MCI_UC_SAR
|MCACOD
, MCI_UC_SAR
, PANIC
,
86 "Action required; unknown MCACOD", SER
),
88 /* known AO MCACODs: */
89 MASK(MCI_UC_SAR
|MCI_STATUS_OVER
|0xfff0, MCI_UC_S
|0xc0, AO
,
90 "Action optional: memory scrubbing error", SER
),
91 MASK(MCI_UC_SAR
|MCI_STATUS_OVER
|MCACOD
, MCI_UC_S
|0x17a, AO
,
92 "Action optional: last level cache writeback error", SER
),
94 MASK(MCI_STATUS_OVER
|MCI_UC_SAR
, MCI_UC_S
, SOME
,
95 "Action optional unknown MCACOD", SER
),
96 MASK(MCI_STATUS_OVER
|MCI_UC_SAR
, MCI_UC_S
|MCI_STATUS_OVER
, SOME
,
97 "Action optional with lost events", SER
),
98 BITSET(MCI_STATUS_UC
|MCI_STATUS_OVER
, PANIC
, "Overflowed uncorrected"),
99 BITSET(MCI_STATUS_UC
, UC
, "Uncorrected"),
100 BITSET(0, SOME
, "No match") /* always matches. keep at end */
104 * If the EIPV bit is set, it means the saved IP is the
105 * instruction which caused the MCE.
107 static int error_context(struct mce
*m
)
109 if (m
->mcgstatus
& MCG_STATUS_EIPV
)
110 return (m
->ip
&& (m
->cs
& 3) == 3) ? IN_USER
: IN_KERNEL
;
111 /* Unknown, assume kernel */
115 int mce_severity(struct mce
*a
, int tolerant
, char **msg
)
117 enum context ctx
= error_context(a
);
120 for (s
= severities
;; s
++) {
121 if ((a
->status
& s
->mask
) != s
->result
)
123 if ((a
->mcgstatus
& s
->mcgmask
) != s
->mcgres
)
125 if (s
->ser
== SER_REQUIRED
&& !mce_ser
)
127 if (s
->ser
== NO_SER
&& mce_ser
)
129 if (s
->context
&& ctx
!= s
->context
)
134 if (s
->sev
>= MCE_UC_SEVERITY
&& ctx
== IN_KERNEL
) {
135 if (panic_on_oops
|| tolerant
< 1)
136 return MCE_PANIC_SEVERITY
;
142 #ifdef CONFIG_DEBUG_FS
143 static void *s_start(struct seq_file
*f
, loff_t
*pos
)
145 if (*pos
>= ARRAY_SIZE(severities
))
147 return &severities
[*pos
];
150 static void *s_next(struct seq_file
*f
, void *data
, loff_t
*pos
)
152 if (++(*pos
) >= ARRAY_SIZE(severities
))
154 return &severities
[*pos
];
157 static void s_stop(struct seq_file
*f
, void *data
)
161 static int s_show(struct seq_file
*f
, void *data
)
163 struct severity
*ser
= data
;
164 seq_printf(f
, "%d\t%s\n", ser
->covered
, ser
->msg
);
168 static const struct seq_operations severities_seq_ops
= {
175 static int severities_coverage_open(struct inode
*inode
, struct file
*file
)
177 return seq_open(file
, &severities_seq_ops
);
180 static ssize_t
severities_coverage_write(struct file
*file
,
181 const char __user
*ubuf
,
182 size_t count
, loff_t
*ppos
)
185 for (i
= 0; i
< ARRAY_SIZE(severities
); i
++)
186 severities
[i
].covered
= 0;
190 static const struct file_operations severities_coverage_fops
= {
191 .open
= severities_coverage_open
,
192 .release
= seq_release
,
194 .write
= severities_coverage_write
,
197 static int __init
severities_debugfs_init(void)
199 struct dentry
*dmce
= NULL
, *fseverities_coverage
= NULL
;
201 dmce
= mce_get_debugfs_dir();
204 fseverities_coverage
= debugfs_create_file("severities-coverage",
206 &severities_coverage_fops
);
207 if (fseverities_coverage
== NULL
)
215 late_initcall(severities_debugfs_init
);