blob: b30a8306b14350868a36b284ff7fb3be73b0f9c4 [file] [log] [blame]
Borislav Petkovb70ef012009-06-25 19:32:38 +02001#include <linux/module.h>
2#include "edac_mce_amd.h"
Doug Thompsonb52401c2009-05-06 17:57:20 +02003
Borislav Petkov549d0422009-07-24 13:51:42 +02004static bool report_gart_errors;
Borislav Petkovb69b29d2009-07-27 16:21:14 +02005static void (*nb_bus_decoder)(int node_id, struct err_regs *regs);
Borislav Petkov549d0422009-07-24 13:51:42 +02006
7void amd_report_gart_errors(bool v)
8{
9 report_gart_errors = v;
10}
11EXPORT_SYMBOL_GPL(amd_report_gart_errors);
12
Borislav Petkovb69b29d2009-07-27 16:21:14 +020013void amd_register_ecc_decoder(void (*f)(int, struct err_regs *))
Borislav Petkov549d0422009-07-24 13:51:42 +020014{
15 nb_bus_decoder = f;
16}
17EXPORT_SYMBOL_GPL(amd_register_ecc_decoder);
18
Borislav Petkovb69b29d2009-07-27 16:21:14 +020019void amd_unregister_ecc_decoder(void (*f)(int, struct err_regs *))
Borislav Petkov549d0422009-07-24 13:51:42 +020020{
21 if (nb_bus_decoder) {
22 WARN_ON(nb_bus_decoder != f);
23
24 nb_bus_decoder = NULL;
25 }
26}
27EXPORT_SYMBOL_GPL(amd_unregister_ecc_decoder);
28
Doug Thompsonb52401c2009-05-06 17:57:20 +020029/*
30 * string representation for the different MCA reported error types, see F3x48
31 * or MSR0000_0411.
32 */
33const char *tt_msgs[] = { /* transaction type */
34 "instruction",
35 "data",
36 "generic",
37 "reserved"
38};
Borislav Petkovb70ef012009-06-25 19:32:38 +020039EXPORT_SYMBOL_GPL(tt_msgs);
Doug Thompsonb52401c2009-05-06 17:57:20 +020040
41const char *ll_msgs[] = { /* cache level */
42 "L0",
43 "L1",
44 "L2",
45 "L3/generic"
46};
Borislav Petkovb70ef012009-06-25 19:32:38 +020047EXPORT_SYMBOL_GPL(ll_msgs);
Doug Thompsonb52401c2009-05-06 17:57:20 +020048
49const char *rrrr_msgs[] = {
50 "generic",
51 "generic read",
52 "generic write",
53 "data read",
54 "data write",
55 "inst fetch",
56 "prefetch",
57 "evict",
58 "snoop",
59 "reserved RRRR= 9",
60 "reserved RRRR= 10",
61 "reserved RRRR= 11",
62 "reserved RRRR= 12",
63 "reserved RRRR= 13",
64 "reserved RRRR= 14",
65 "reserved RRRR= 15"
66};
Borislav Petkovb70ef012009-06-25 19:32:38 +020067EXPORT_SYMBOL_GPL(rrrr_msgs);
Doug Thompsonb52401c2009-05-06 17:57:20 +020068
69const char *pp_msgs[] = { /* participating processor */
70 "local node originated (SRC)",
71 "local node responded to request (RES)",
72 "local node observed as 3rd party (OBS)",
73 "generic"
74};
Borislav Petkovb70ef012009-06-25 19:32:38 +020075EXPORT_SYMBOL_GPL(pp_msgs);
Doug Thompsonb52401c2009-05-06 17:57:20 +020076
77const char *to_msgs[] = {
78 "no timeout",
79 "timed out"
80};
Borislav Petkovb70ef012009-06-25 19:32:38 +020081EXPORT_SYMBOL_GPL(to_msgs);
Doug Thompsonb52401c2009-05-06 17:57:20 +020082
83const char *ii_msgs[] = { /* memory or i/o */
84 "mem access",
85 "reserved",
86 "i/o access",
87 "generic"
88};
Borislav Petkovb70ef012009-06-25 19:32:38 +020089EXPORT_SYMBOL_GPL(ii_msgs);
Doug Thompsonb52401c2009-05-06 17:57:20 +020090
Borislav Petkov1c43f2e2009-07-23 15:47:51 +020091/*
92 * Map the 4 or 5 (family-specific) bits of Extended Error code to the
93 * string table.
94 */
95const char *ext_msgs[] = {
96 "K8 ECC error", /* 0_0000b */
97 "CRC error on link", /* 0_0001b */
98 "Sync error packets on link", /* 0_0010b */
99 "Master Abort during link operation", /* 0_0011b */
100 "Target Abort during link operation", /* 0_0100b */
101 "Invalid GART PTE entry during table walk", /* 0_0101b */
102 "Unsupported atomic RMW command received", /* 0_0110b */
103 "WDT error: NB transaction timeout", /* 0_0111b */
104 "ECC/ChipKill ECC error", /* 0_1000b */
105 "SVM DEV Error", /* 0_1001b */
106 "Link Data error", /* 0_1010b */
107 "Link/L3/Probe Filter Protocol error", /* 0_1011b */
108 "NB Internal Arrays Parity error", /* 0_1100b */
109 "DRAM Address/Control Parity error", /* 0_1101b */
110 "Link Transmission error", /* 0_1110b */
111 "GART/DEV Table Walk Data error" /* 0_1111b */
112 "Res 0x100 error", /* 1_0000b */
113 "Res 0x101 error", /* 1_0001b */
114 "Res 0x102 error", /* 1_0010b */
115 "Res 0x103 error", /* 1_0011b */
116 "Res 0x104 error", /* 1_0100b */
117 "Res 0x105 error", /* 1_0101b */
118 "Res 0x106 error", /* 1_0110b */
119 "Res 0x107 error", /* 1_0111b */
120 "Res 0x108 error", /* 1_1000b */
121 "Res 0x109 error", /* 1_1001b */
122 "Res 0x10A error", /* 1_1010b */
123 "Res 0x10B error", /* 1_1011b */
124 "ECC error in L3 Cache Data", /* 1_1100b */
125 "L3 Cache Tag error", /* 1_1101b */
126 "L3 Cache LRU Parity error", /* 1_1110b */
127 "Probe Filter error" /* 1_1111b */
Doug Thompsonb52401c2009-05-06 17:57:20 +0200128};
Borislav Petkovb70ef012009-06-25 19:32:38 +0200129EXPORT_SYMBOL_GPL(ext_msgs);
Borislav Petkov549d0422009-07-24 13:51:42 +0200130
Borislav Petkov51966242009-07-28 13:50:43 +0200131static void amd_decode_dc_mce(u64 mc0_status)
132{
133 u32 ec = mc0_status & 0xffff;
134 u32 xec = (mc0_status >> 16) & 0xf;
135
136 pr_emerg(" Data Cache Error");
137
138 if (xec == 1 && TLB_ERROR(ec))
139 pr_cont(": %s TLB multimatch.\n", LL_MSG(ec));
140 else if (xec == 0) {
141 if (mc0_status & (1ULL << 40))
142 pr_cont(" during Data Scrub.\n");
143 else if (TLB_ERROR(ec))
144 pr_cont(": %s TLB parity error.\n", LL_MSG(ec));
145 else if (MEM_ERROR(ec)) {
146 u8 ll = ec & 0x3;
147 u8 tt = (ec >> 2) & 0x3;
148 u8 rrrr = (ec >> 4) & 0xf;
149
150 /* see F10h BKDG (31116), Table 92. */
151 if (ll == 0x1) {
152 if (tt != 0x1)
153 goto wrong_dc_mce;
154
155 pr_cont(": Data/Tag %s error.\n", RRRR_MSG(ec));
156
157 } else if (ll == 0x2 && rrrr == 0x3)
158 pr_cont(" during L1 linefill from L2.\n");
159 else
160 goto wrong_dc_mce;
161 } else if (BUS_ERROR(ec) && boot_cpu_data.x86 == 0xf)
162 pr_cont(" during system linefill.\n");
163 else
164 goto wrong_dc_mce;
165 } else
166 goto wrong_dc_mce;
167
168 return;
169
170wrong_dc_mce:
171 pr_warning("Corrupted DC MCE info?\n");
172}
173
Borislav Petkovab5535e2009-07-28 14:06:26 +0200174static void amd_decode_ic_mce(u64 mc1_status)
175{
176 u32 ec = mc1_status & 0xffff;
177 u32 xec = (mc1_status >> 16) & 0xf;
178
179 pr_emerg(" Instruction Cache Error");
180
181 if (xec == 1 && TLB_ERROR(ec))
182 pr_cont(": %s TLB multimatch.\n", LL_MSG(ec));
183 else if (xec == 0) {
184 if (TLB_ERROR(ec))
185 pr_cont(": %s TLB Parity error.\n", LL_MSG(ec));
186 else if (BUS_ERROR(ec)) {
187 if (boot_cpu_data.x86 == 0xf &&
188 (mc1_status & (1ULL << 58)))
189 pr_cont(" during system linefill.\n");
190 else
191 pr_cont(" during attempted NB data read.\n");
192 } else if (MEM_ERROR(ec)) {
193 u8 ll = ec & 0x3;
194 u8 rrrr = (ec >> 4) & 0xf;
195
196 if (ll == 0x2)
197 pr_cont(" during a linefill from L2.\n");
198 else if (ll == 0x1) {
199
200 switch (rrrr) {
201 case 0x5:
202 pr_cont(": Parity error during "
203 "data load.\n");
204 break;
205
206 case 0x7:
207 pr_cont(": Copyback Parity/Victim"
208 " error.\n");
209 break;
210
211 case 0x8:
212 pr_cont(": Tag Snoop error.\n");
213 break;
214
215 default:
216 goto wrong_ic_mce;
217 break;
218 }
219 }
220 } else
221 goto wrong_ic_mce;
222 } else
223 goto wrong_ic_mce;
224
225 return;
226
227wrong_ic_mce:
228 pr_warning("Corrupted IC MCE info?\n");
229}
230
Borislav Petkov549d0422009-07-24 13:51:42 +0200231void amd_decode_nb_mce(int node_id, struct err_regs *regs, int handle_errors)
232{
Borislav Petkov549d0422009-07-24 13:51:42 +0200233 u32 ec = ERROR_CODE(regs->nbsl);
234 u32 xec = EXT_ERROR_CODE(regs->nbsl);
235
236 if (!handle_errors)
237 return;
238
239 pr_emerg(" Northbridge Error, node %d", node_id);
240
241 /*
242 * F10h, revD can disable ErrCpu[3:0] so check that first and also the
243 * value encoding has changed so interpret those differently
244 */
245 if ((boot_cpu_data.x86 == 0x10) &&
246 (boot_cpu_data.x86_model > 8)) {
247 if (regs->nbsh & K8_NBSH_ERR_CPU_VAL)
248 pr_cont(", core: %u\n", (u8)(regs->nbsh & 0xf));
249 } else {
250 pr_cont(", core: %d\n", ilog2((regs->nbsh & 0xf)));
251 }
252
Borislav Petkovd93cc222009-07-28 10:56:15 +0200253
254 pr_emerg("%s.\n", EXT_ERR_MSG(xec));
255
256 if (BUS_ERROR(ec) && nb_bus_decoder)
257 nb_bus_decoder(node_id, regs);
258}
259EXPORT_SYMBOL_GPL(amd_decode_nb_mce);
260
261static inline void amd_decode_err_code(unsigned int ec)
262{
Borislav Petkov549d0422009-07-24 13:51:42 +0200263 if (TLB_ERROR(ec)) {
264 /*
265 * GART errors are intended to help graphics driver developers
266 * to detect bad GART PTEs. It is recommended by AMD to disable
267 * GART table walk error reporting by default[1] (currently
268 * being disabled in mce_cpu_quirks()) and according to the
269 * comment in mce_cpu_quirks(), such GART errors can be
270 * incorrectly triggered. We may see these errors anyway and
271 * unless requested by the user, they won't be reported.
272 *
273 * [1] section 13.10.1 on BIOS and Kernel Developers Guide for
274 * AMD NPT family 0Fh processors
275 */
276 if (!report_gart_errors)
277 return;
278
Borislav Petkovd93cc222009-07-28 10:56:15 +0200279 pr_emerg(" Transaction: %s, Cache Level %s\n",
Borislav Petkov549d0422009-07-24 13:51:42 +0200280 TT_MSG(ec), LL_MSG(ec));
281 } else if (MEM_ERROR(ec)) {
Borislav Petkovd93cc222009-07-28 10:56:15 +0200282 pr_emerg(" Transaction: %s, Type: %s, Cache Level: %s",
Borislav Petkov549d0422009-07-24 13:51:42 +0200283 RRRR_MSG(ec), TT_MSG(ec), LL_MSG(ec));
284 } else if (BUS_ERROR(ec)) {
Borislav Petkovd93cc222009-07-28 10:56:15 +0200285 pr_emerg(" Transaction type: %s(%s), %s, Cache Level: %s, "
286 "Participating Processor: %s\n",
287 RRRR_MSG(ec), II_MSG(ec), TO_MSG(ec), LL_MSG(ec),
288 PP_MSG(ec));
289 } else
290 pr_warning("Huh? Unknown MCE error 0x%x\n", ec);
Borislav Petkov549d0422009-07-24 13:51:42 +0200291}
Borislav Petkov549d0422009-07-24 13:51:42 +0200292
293void decode_mce(struct mce *m)
294{
295 struct err_regs regs;
Borislav Petkovb69b29d2009-07-27 16:21:14 +0200296 int node, ecc;
Borislav Petkov549d0422009-07-24 13:51:42 +0200297
Borislav Petkovd93cc222009-07-28 10:56:15 +0200298 pr_emerg("MC%d_STATUS: ", m->bank);
Borislav Petkov549d0422009-07-24 13:51:42 +0200299
Borislav Petkovd93cc222009-07-28 10:56:15 +0200300 pr_cont("%sorrected error, report: %s, MiscV: %svalid, "
Borislav Petkovb69b29d2009-07-27 16:21:14 +0200301 "CPU context corrupt: %s",
302 ((m->status & MCI_STATUS_UC) ? "Unc" : "C"),
303 ((m->status & MCI_STATUS_EN) ? "yes" : "no"),
304 ((m->status & MCI_STATUS_MISCV) ? "" : "in"),
305 ((m->status & MCI_STATUS_PCC) ? "yes" : "no"));
Borislav Petkov549d0422009-07-24 13:51:42 +0200306
Borislav Petkovb69b29d2009-07-27 16:21:14 +0200307 /* do the two bits[14:13] together */
308 ecc = m->status & (3ULL << 45);
309 if (ecc)
310 pr_cont(", %sECC Error", ((ecc == 2) ? "C" : "U"));
311
312 pr_cont("\n");
313
Borislav Petkov51966242009-07-28 13:50:43 +0200314 switch (m->bank) {
315 case 0:
316 amd_decode_dc_mce(m->status);
317 break;
Borislav Petkovd93cc222009-07-28 10:56:15 +0200318
Borislav Petkovab5535e2009-07-28 14:06:26 +0200319 case 1:
320 amd_decode_ic_mce(m->status);
321 break;
322
Borislav Petkov51966242009-07-28 13:50:43 +0200323 case 4:
Borislav Petkovb69b29d2009-07-27 16:21:14 +0200324 regs.nbsl = (u32) m->status;
325 regs.nbsh = (u32)(m->status >> 32);
326 regs.nbeal = (u32) m->addr;
327 regs.nbeah = (u32)(m->addr >> 32);
328 node = per_cpu(cpu_llc_id, m->extcpu);
329
330 amd_decode_nb_mce(node, &regs, 1);
Borislav Petkov51966242009-07-28 13:50:43 +0200331 break;
332
333 default:
334 break;
Borislav Petkovb69b29d2009-07-27 16:21:14 +0200335 }
Borislav Petkov51966242009-07-28 13:50:43 +0200336
337 amd_decode_err_code(m->status & 0xffff);
Borislav Petkov549d0422009-07-24 13:51:42 +0200338}