EDAC, MCE: Adjust IC decoders to F14h
[pandora-kernel.git] / drivers / edac / mce_amd.c
1 #include <linux/module.h>
2 #include <linux/slab.h>
3
4 #include "mce_amd.h"
5
6 static struct amd_decoder_ops *fam_ops;
7
8 static bool report_gart_errors;
9 static void (*nb_bus_decoder)(int node_id, struct mce *m, u32 nbcfg);
10
11 void amd_report_gart_errors(bool v)
12 {
13         report_gart_errors = v;
14 }
15 EXPORT_SYMBOL_GPL(amd_report_gart_errors);
16
17 void amd_register_ecc_decoder(void (*f)(int, struct mce *, u32))
18 {
19         nb_bus_decoder = f;
20 }
21 EXPORT_SYMBOL_GPL(amd_register_ecc_decoder);
22
23 void amd_unregister_ecc_decoder(void (*f)(int, struct mce *, u32))
24 {
25         if (nb_bus_decoder) {
26                 WARN_ON(nb_bus_decoder != f);
27
28                 nb_bus_decoder = NULL;
29         }
30 }
31 EXPORT_SYMBOL_GPL(amd_unregister_ecc_decoder);
32
33 /*
34  * string representation for the different MCA reported error types, see F3x48
35  * or MSR0000_0411.
36  */
37
38 /* transaction type */
39 const char *tt_msgs[] = { "INSN", "DATA", "GEN", "RESV" };
40 EXPORT_SYMBOL_GPL(tt_msgs);
41
42 /* cache level */
43 const char *ll_msgs[] = { "RESV", "L1", "L2", "L3/GEN" };
44 EXPORT_SYMBOL_GPL(ll_msgs);
45
46 /* memory transaction type */
47 const char *rrrr_msgs[] = {
48        "GEN", "RD", "WR", "DRD", "DWR", "IRD", "PRF", "EV", "SNP"
49 };
50 EXPORT_SYMBOL_GPL(rrrr_msgs);
51
52 /* participating processor */
53 const char *pp_msgs[] = { "SRC", "RES", "OBS", "GEN" };
54 EXPORT_SYMBOL_GPL(pp_msgs);
55
56 /* request timeout */
57 const char *to_msgs[] = { "no timeout", "timed out" };
58 EXPORT_SYMBOL_GPL(to_msgs);
59
60 /* memory or i/o */
61 const char *ii_msgs[] = { "MEM", "RESV", "IO", "GEN" };
62 EXPORT_SYMBOL_GPL(ii_msgs);
63
64 /*
65  * Map the 4 or 5 (family-specific) bits of Extended Error code to the
66  * string table.
67  */
68 const char *ext_msgs[] = {
69         "K8 ECC error",                                 /* 0_0000b */
70         "CRC error on link",                            /* 0_0001b */
71         "Sync error packets on link",                   /* 0_0010b */
72         "Master Abort during link operation",           /* 0_0011b */
73         "Target Abort during link operation",           /* 0_0100b */
74         "Invalid GART PTE entry during table walk",     /* 0_0101b */
75         "Unsupported atomic RMW command received",      /* 0_0110b */
76         "WDT error: NB transaction timeout",            /* 0_0111b */
77         "ECC/ChipKill ECC error",                       /* 0_1000b */
78         "SVM DEV Error",                                /* 0_1001b */
79         "Link Data error",                              /* 0_1010b */
80         "Link/L3/Probe Filter Protocol error",          /* 0_1011b */
81         "NB Internal Arrays Parity error",              /* 0_1100b */
82         "DRAM Address/Control Parity error",            /* 0_1101b */
83         "Link Transmission error",                      /* 0_1110b */
84         "GART/DEV Table Walk Data error"                /* 0_1111b */
85         "Res 0x100 error",                              /* 1_0000b */
86         "Res 0x101 error",                              /* 1_0001b */
87         "Res 0x102 error",                              /* 1_0010b */
88         "Res 0x103 error",                              /* 1_0011b */
89         "Res 0x104 error",                              /* 1_0100b */
90         "Res 0x105 error",                              /* 1_0101b */
91         "Res 0x106 error",                              /* 1_0110b */
92         "Res 0x107 error",                              /* 1_0111b */
93         "Res 0x108 error",                              /* 1_1000b */
94         "Res 0x109 error",                              /* 1_1001b */
95         "Res 0x10A error",                              /* 1_1010b */
96         "Res 0x10B error",                              /* 1_1011b */
97         "ECC error in L3 Cache Data",                   /* 1_1100b */
98         "L3 Cache Tag error",                           /* 1_1101b */
99         "L3 Cache LRU Parity error",                    /* 1_1110b */
100         "Probe Filter error"                            /* 1_1111b */
101 };
102 EXPORT_SYMBOL_GPL(ext_msgs);
103
104 static bool f10h_dc_mce(u16 ec)
105 {
106         u8 r4  = (ec >> 4) & 0xf;
107         bool ret = false;
108
109         if (r4 == R4_GEN) {
110                 pr_cont("during data scrub.\n");
111                 return true;
112         }
113
114         if (MEM_ERROR(ec)) {
115                 u8 ll = ec & 0x3;
116                 ret = true;
117
118                 if (ll == LL_L2)
119                         pr_cont("during L1 linefill from L2.\n");
120                 else if (ll == LL_L1)
121                         pr_cont("Data/Tag %s error.\n", RRRR_MSG(ec));
122                 else
123                         ret = false;
124         }
125         return ret;
126 }
127
128 static bool k8_dc_mce(u16 ec)
129 {
130         if (BUS_ERROR(ec)) {
131                 pr_cont("during system linefill.\n");
132                 return true;
133         }
134
135         return f10h_dc_mce(ec);
136 }
137
138 static bool f14h_dc_mce(u16 ec)
139 {
140         u8 r4    = (ec >> 4) & 0xf;
141         u8 ll    = ec & 0x3;
142         u8 tt    = (ec >> 2) & 0x3;
143         u8 ii    = tt;
144         bool ret = true;
145
146         if (MEM_ERROR(ec)) {
147
148                 if (tt != TT_DATA || ll != LL_L1)
149                         return false;
150
151                 switch (r4) {
152                 case R4_DRD:
153                 case R4_DWR:
154                         pr_cont("Data/Tag parity error due to %s.\n",
155                                 (r4 == R4_DRD ? "load/hw prf" : "store"));
156                         break;
157                 case R4_EVICT:
158                         pr_cont("Copyback parity error on a tag miss.\n");
159                         break;
160                 case R4_SNOOP:
161                         pr_cont("Tag parity error during snoop.\n");
162                         break;
163                 default:
164                         ret = false;
165                 }
166         } else if (BUS_ERROR(ec)) {
167
168                 if ((ii != II_MEM && ii != II_IO) || ll != LL_LG)
169                         return false;
170
171                 pr_cont("System read data error on a ");
172
173                 switch (r4) {
174                 case R4_RD:
175                         pr_cont("TLB reload.\n");
176                         break;
177                 case R4_DWR:
178                         pr_cont("store.\n");
179                         break;
180                 case R4_DRD:
181                         pr_cont("load.\n");
182                         break;
183                 default:
184                         ret = false;
185                 }
186         } else {
187                 ret = false;
188         }
189
190         return ret;
191 }
192
193 static void amd_decode_dc_mce(struct mce *m)
194 {
195         u16 ec = m->status & 0xffff;
196         u8 xec = (m->status >> 16) & 0xf;
197
198         pr_emerg(HW_ERR "Data Cache Error: ");
199
200         /* TLB error signatures are the same across families */
201         if (TLB_ERROR(ec)) {
202                 u8 tt = (ec >> 2) & 0x3;
203
204                 if (tt == TT_DATA) {
205                         pr_cont("%s TLB %s.\n", LL_MSG(ec),
206                                 (xec ? "multimatch" : "parity error"));
207                         return;
208                 }
209                 else
210                         goto wrong_dc_mce;
211         }
212
213         if (!fam_ops->dc_mce(ec))
214                 goto wrong_dc_mce;
215
216         return;
217
218 wrong_dc_mce:
219         pr_emerg(HW_ERR "Corrupted DC MCE info?\n");
220 }
221
222 static bool k8_ic_mce(u16 ec)
223 {
224         u8 ll    = ec & 0x3;
225         u8 r4    = (ec >> 4) & 0xf;
226         bool ret = true;
227
228         if (!MEM_ERROR(ec))
229                 return false;
230
231         if (ll == 0x2)
232                 pr_cont("during a linefill from L2.\n");
233         else if (ll == 0x1) {
234                 switch (r4) {
235                 case R4_IRD:
236                         pr_cont("Parity error during data load.\n");
237                         break;
238
239                 case R4_EVICT:
240                         pr_cont("Copyback Parity/Victim error.\n");
241                         break;
242
243                 case R4_SNOOP:
244                         pr_cont("Tag Snoop error.\n");
245                         break;
246
247                 default:
248                         ret = false;
249                         break;
250                 }
251         } else
252                 ret = false;
253
254         return ret;
255 }
256
257 static bool f14h_ic_mce(u16 ec)
258 {
259         u8 ll    = ec & 0x3;
260         u8 tt    = (ec >> 2) & 0x3;
261         u8 r4  = (ec >> 4) & 0xf;
262         bool ret = true;
263
264         if (MEM_ERROR(ec)) {
265                 if (tt != 0 || ll != 1)
266                         ret = false;
267
268                 if (r4 == R4_IRD)
269                         pr_cont("Data/tag array parity error for a tag hit.\n");
270                 else if (r4 == R4_SNOOP)
271                         pr_cont("Tag error during snoop/victimization.\n");
272                 else
273                         ret = false;
274         }
275         return ret;
276 }
277
278 static void amd_decode_ic_mce(struct mce *m)
279 {
280         u16 ec = m->status & 0xffff;
281         u8 xec = (m->status >> 16) & 0xf;
282
283         pr_emerg(HW_ERR "Instruction Cache Error: ");
284
285         if (TLB_ERROR(ec))
286                 pr_cont("%s TLB %s.\n", LL_MSG(ec),
287                         (xec ? "multimatch" : "parity error"));
288         else if (BUS_ERROR(ec)) {
289                 bool k8 = (boot_cpu_data.x86 == 0xf && (m->status & BIT(58)));
290
291                 pr_cont("during %s.\n", (k8 ? "system linefill" : "NB data read"));
292         } else if (fam_ops->ic_mce(ec))
293                 ;
294         else
295                 pr_emerg(HW_ERR "Corrupted IC MCE info?\n");
296 }
297
298 static void amd_decode_bu_mce(struct mce *m)
299 {
300         u32 ec = m->status & 0xffff;
301         u32 xec = (m->status >> 16) & 0xf;
302
303         pr_emerg(HW_ERR "Bus Unit Error");
304
305         if (xec == 0x1)
306                 pr_cont(" in the write data buffers.\n");
307         else if (xec == 0x3)
308                 pr_cont(" in the victim data buffers.\n");
309         else if (xec == 0x2 && MEM_ERROR(ec))
310                 pr_cont(": %s error in the L2 cache tags.\n", RRRR_MSG(ec));
311         else if (xec == 0x0) {
312                 if (TLB_ERROR(ec))
313                         pr_cont(": %s error in a Page Descriptor Cache or "
314                                 "Guest TLB.\n", TT_MSG(ec));
315                 else if (BUS_ERROR(ec))
316                         pr_cont(": %s/ECC error in data read from NB: %s.\n",
317                                 RRRR_MSG(ec), PP_MSG(ec));
318                 else if (MEM_ERROR(ec)) {
319                         u8 rrrr = (ec >> 4) & 0xf;
320
321                         if (rrrr >= 0x7)
322                                 pr_cont(": %s error during data copyback.\n",
323                                         RRRR_MSG(ec));
324                         else if (rrrr <= 0x1)
325                                 pr_cont(": %s parity/ECC error during data "
326                                         "access from L2.\n", RRRR_MSG(ec));
327                         else
328                                 goto wrong_bu_mce;
329                 } else
330                         goto wrong_bu_mce;
331         } else
332                 goto wrong_bu_mce;
333
334         return;
335
336 wrong_bu_mce:
337         pr_emerg(HW_ERR "Corrupted BU MCE info?\n");
338 }
339
340 static void amd_decode_ls_mce(struct mce *m)
341 {
342         u32 ec  = m->status & 0xffff;
343         u32 xec = (m->status >> 16) & 0xf;
344
345         pr_emerg(HW_ERR "Load Store Error");
346
347         if (xec == 0x0) {
348                 u8 rrrr = (ec >> 4) & 0xf;
349
350                 if (!BUS_ERROR(ec) || (rrrr != 0x3 && rrrr != 0x4))
351                         goto wrong_ls_mce;
352
353                 pr_cont(" during %s.\n", RRRR_MSG(ec));
354         }
355         return;
356
357 wrong_ls_mce:
358         pr_emerg(HW_ERR "Corrupted LS MCE info?\n");
359 }
360
361 void amd_decode_nb_mce(int node_id, struct mce *m, u32 nbcfg)
362 {
363         u32 ec   = m->status & 0xffff;
364         u32 nbsh = (u32)(m->status >> 32);
365         u32 nbsl = (u32)m->status;
366
367         /*
368          * GART TLB error reporting is disabled by default. Bail out early.
369          */
370         if (TLB_ERROR(ec) && !report_gart_errors)
371                 return;
372
373         pr_emerg(HW_ERR "Northbridge Error, node %d", node_id);
374
375         /*
376          * F10h, revD can disable ErrCpu[3:0] so check that first and also the
377          * value encoding has changed so interpret those differently
378          */
379         if ((boot_cpu_data.x86 == 0x10) &&
380             (boot_cpu_data.x86_model > 7)) {
381                 if (nbsh & K8_NBSH_ERR_CPU_VAL)
382                         pr_cont(", core: %u\n", (u8)(nbsh & 0xf));
383         } else {
384                 u8 assoc_cpus = nbsh & 0xf;
385
386                 if (assoc_cpus > 0)
387                         pr_cont(", core: %d", fls(assoc_cpus) - 1);
388
389                 pr_cont("\n");
390         }
391
392         pr_emerg(HW_ERR "%s.\n", EXT_ERR_MSG(nbsl));
393
394         if (BUS_ERROR(ec) && nb_bus_decoder)
395                 nb_bus_decoder(node_id, m, nbcfg);
396 }
397 EXPORT_SYMBOL_GPL(amd_decode_nb_mce);
398
399 static void amd_decode_fr_mce(struct mce *m)
400 {
401         /* we have only one error signature so match all fields at once. */
402         if ((m->status & 0xffff) == 0x0f0f)
403                 pr_emerg(HW_ERR " FR Error: CPU Watchdog timer expire.\n");
404         else
405                 pr_emerg(HW_ERR "Corrupted FR MCE info?\n");
406 }
407
408 static inline void amd_decode_err_code(u16 ec)
409 {
410         if (TLB_ERROR(ec)) {
411                 pr_emerg(HW_ERR "Transaction: %s, Cache Level: %s\n",
412                          TT_MSG(ec), LL_MSG(ec));
413         } else if (MEM_ERROR(ec)) {
414                 pr_emerg(HW_ERR "Transaction: %s, Type: %s, Cache Level: %s\n",
415                          RRRR_MSG(ec), TT_MSG(ec), LL_MSG(ec));
416         } else if (BUS_ERROR(ec)) {
417                 pr_emerg(HW_ERR "Transaction: %s (%s), %s, Cache Level: %s, "
418                          "Participating Processor: %s\n",
419                           RRRR_MSG(ec), II_MSG(ec), TO_MSG(ec), LL_MSG(ec),
420                           PP_MSG(ec));
421         } else
422                 pr_emerg(HW_ERR "Huh? Unknown MCE error 0x%x\n", ec);
423 }
424
425 int amd_decode_mce(struct notifier_block *nb, unsigned long val, void *data)
426 {
427         struct mce *m = (struct mce *)data;
428         int node, ecc;
429
430         pr_emerg(HW_ERR "MC%d_STATUS: ", m->bank);
431
432         pr_cont("%sorrected error, other errors lost: %s, "
433                  "CPU context corrupt: %s",
434                  ((m->status & MCI_STATUS_UC) ? "Unc"  : "C"),
435                  ((m->status & MCI_STATUS_OVER) ? "yes"  : "no"),
436                  ((m->status & MCI_STATUS_PCC) ? "yes" : "no"));
437
438         /* do the two bits[14:13] together */
439         ecc = (m->status >> 45) & 0x3;
440         if (ecc)
441                 pr_cont(", %sECC Error", ((ecc == 2) ? "C" : "U"));
442
443         pr_cont("\n");
444
445         switch (m->bank) {
446         case 0:
447                 amd_decode_dc_mce(m);
448                 break;
449
450         case 1:
451                 amd_decode_ic_mce(m);
452                 break;
453
454         case 2:
455                 amd_decode_bu_mce(m);
456                 break;
457
458         case 3:
459                 amd_decode_ls_mce(m);
460                 break;
461
462         case 4:
463                 node = amd_get_nb_id(m->extcpu);
464                 amd_decode_nb_mce(node, m, 0);
465                 break;
466
467         case 5:
468                 amd_decode_fr_mce(m);
469                 break;
470
471         default:
472                 break;
473         }
474
475         amd_decode_err_code(m->status & 0xffff);
476
477         return NOTIFY_STOP;
478 }
479 EXPORT_SYMBOL_GPL(amd_decode_mce);
480
481 static struct notifier_block amd_mce_dec_nb = {
482         .notifier_call  = amd_decode_mce,
483 };
484
485 static int __init mce_amd_init(void)
486 {
487         /*
488          * We can decode MCEs for K8, F10h and F11h CPUs:
489          */
490         if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD)
491                 return 0;
492
493         if (boot_cpu_data.x86 < 0xf || boot_cpu_data.x86 > 0x11)
494                 return 0;
495
496         fam_ops = kzalloc(sizeof(struct amd_decoder_ops), GFP_KERNEL);
497         if (!fam_ops)
498                 return -ENOMEM;
499
500         switch (boot_cpu_data.x86) {
501         case 0xf:
502                 fam_ops->dc_mce = k8_dc_mce;
503                 fam_ops->ic_mce = k8_ic_mce;
504                 break;
505
506         case 0x10:
507                 fam_ops->dc_mce = f10h_dc_mce;
508                 fam_ops->ic_mce = k8_ic_mce;
509                 break;
510
511         case 0x14:
512                 fam_ops->dc_mce = f14h_dc_mce;
513                 fam_ops->ic_mce = f14h_ic_mce;
514                 break;
515
516         default:
517                 printk(KERN_WARNING "Huh? What family is that: %d?!\n",
518                                     boot_cpu_data.x86);
519                 kfree(fam_ops);
520                 return -EINVAL;
521         }
522
523         atomic_notifier_chain_register(&x86_mce_decoder_chain, &amd_mce_dec_nb);
524
525         return 0;
526 }
527 early_initcall(mce_amd_init);
528
529 #ifdef MODULE
530 static void __exit mce_amd_exit(void)
531 {
532         atomic_notifier_chain_unregister(&x86_mce_decoder_chain, &amd_mce_dec_nb);
533         kfree(fam_ops);
534 }
535
536 MODULE_DESCRIPTION("AMD MCE decoder");
537 MODULE_ALIAS("edac-mce-amd");
538 MODULE_LICENSE("GPL");
539 module_exit(mce_amd_exit);
540 #endif