-
Notifications
You must be signed in to change notification settings - Fork 80
/
mce-amd-k8.c
296 lines (255 loc) · 7.55 KB
/
mce-amd-k8.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) 2013 Mauro Carvalho Chehab <[email protected]>
*
* The code below were adapted from Andi Kleen/Intel/SUSE mcelog code,
* released under GNU Public General License, v.2
*/
#include <stdio.h>
#include <string.h>
#include "bitfield.h"
#include "ras-mce-handler.h"
#define K8_MCE_THRESHOLD_BASE (MCE_EXTENDED_BANK + 1) /* MCE_AMD */
#define K8_MCE_THRESHOLD_TOP (K8_MCE_THRESHOLD_BASE + 6 * 9)
#define K8_MCELOG_THRESHOLD_DRAM_ECC (4 * 9 + 0)
#define K8_MCELOG_THRESHOLD_LINK (4 * 9 + 1)
#define K8_MCELOG_THRESHOLD_L3_CACHE (4 * 9 + 2)
#define K8_MCELOG_THRESHOLD_FBDIMM (4 * 9 + 3)
static const char * const k8bank[] = {
"data cache",
"instruction cache",
"bus unit",
"load/store unit",
"northbridge",
"fixed-issue reorder"
};
static const char * const k8threshold[] = {
[0 ... K8_MCELOG_THRESHOLD_DRAM_ECC - 1] = "Unknown threshold counter",
[K8_MCELOG_THRESHOLD_DRAM_ECC] = "MC4_MISC0 DRAM threshold",
[K8_MCELOG_THRESHOLD_LINK] = "MC4_MISC1 Link threshold",
[K8_MCELOG_THRESHOLD_L3_CACHE] = "MC4_MISC2 L3 Cache threshold",
[K8_MCELOG_THRESHOLD_FBDIMM] = "MC4_MISC3 FBDIMM threshold",
[K8_MCELOG_THRESHOLD_FBDIMM + 1 ...
K8_MCE_THRESHOLD_TOP - K8_MCE_THRESHOLD_BASE - 1] =
"Unknown threshold counter",
};
static const char * const transaction[] = {
"instruction", "data", "generic", "reserved"
};
static const char * const cachelevel[] = {
"0", "1", "2", "generic"
};
static const char * const memtrans[] = {
"generic error", "generic read", "generic write", "data read",
"data write", "instruction fetch", "prefetch", "evict", "snoop",
"?", "?", "?", "?", "?", "?", "?"
};
static const char * const partproc[] = {
"local node origin", "local node response",
"local node observed", "generic participation"
};
static const char * const timeout[] = {
"request didn't time out",
"request timed out"
};
static const char * const memoryio[] = {
"memory", "res.", "i/o", "generic"
};
static const char * const nbextendederr[] = {
"RAM ECC error",
"CRC error",
"Sync error",
"Master abort",
"Target abort",
"GART error",
"RMW error",
"Watchdog error",
"RAM Chipkill ECC error",
"DEV Error",
"Link Data Error",
"Link Protocol Error",
"NB Array Error",
"DRAM Parity Error",
"Link Retry",
"Tablew Walk Data Error",
"L3 Cache Data Error",
"L3 Cache Tag Error",
"L3 Cache LRU Error"
};
static const char * const highbits[32] = {
[31] = "valid",
[30] = "error overflow (multiple errors)",
[29] = "error uncorrected",
[28] = "error enable",
[27] = "misc error valid",
[26] = "error address valid",
[25] = "processor context corrupt",
[24] = "res24",
[23] = "res23",
/* 22-15 ecc syndrome bits */
[14] = "corrected ecc error",
[13] = "uncorrected ecc error",
[12] = "res12",
[11] = "L3 subcache in error bit 1",
[10] = "L3 subcache in error bit 0",
[9] = "sublink or DRAM channel",
[8] = "error found by scrub",
/* 7-4 ht link number of error */
[3] = "err cpu3",
[2] = "err cpu2",
[1] = "err cpu1",
[0] = "err cpu0",
};
#define IGNORE_HIGHBITS ((1 << 31) || (1 << 28) || (1 << 26))
static void decode_k8_generic_errcode(struct mce_event *e)
{
char tmp_buf[4092];
unsigned short errcode = e->status & 0xffff;
int n;
/* Translate the highest bits */
n = bitfield_msg(tmp_buf, sizeof(tmp_buf), highbits, 32,
IGNORE_HIGHBITS, 32, e->status);
if (n)
mce_snprintf(e->error_msg, "(%s) ", tmp_buf);
if ((errcode & 0xfff0) == 0x0010)
mce_snprintf(e->error_msg,
"LB error '%s transaction, level %s'",
transaction[(errcode >> 2) & 3],
cachelevel[errcode & 3]);
else if ((errcode & 0xff00) == 0x0100)
mce_snprintf(e->error_msg,
"memory/cache error '%s mem transaction, %s transaction, level %s'",
memtrans[(errcode >> 4) & 0xf],
transaction[(errcode >> 2) & 3],
cachelevel[errcode & 3]);
else if ((errcode & 0xf800) == 0x0800)
mce_snprintf(e->error_msg,
"bus error '%s, %s: %s mem transaction, %s access, level %s'",
partproc[(errcode >> 9) & 0x3],
timeout[(errcode >> 8) & 1],
memtrans[(errcode >> 4) & 0xf],
memoryio[(errcode >> 2) & 0x3],
cachelevel[(errcode & 0x3)]);
}
static void decode_k8_dc_mc(struct mce_event *e)
{
unsigned short exterrcode = (e->status >> 16) & 0x0f;
unsigned short errcode = e->status & 0xffff;
if (e->status & (3ULL << 45)) {
mce_snprintf(e->error_msg,
"Data cache ECC error (syndrome %x)",
(uint32_t)(e->status >> 47) & 0xff);
if (e->status & (1ULL << 40))
mce_snprintf(e->error_msg, "found by scrubber");
}
if ((errcode & 0xfff0) == 0x0010)
mce_snprintf(e->error_msg,
"TLB parity error in %s array",
(exterrcode == 0) ? "physical" : "virtual");
}
static void decode_k8_ic_mc(struct mce_event *e)
{
unsigned short exterrcode = (e->status >> 16) & 0x0f;
unsigned short errcode = e->status & 0xffff;
if (e->status & (3ULL << 45))
mce_snprintf(e->error_msg, "Instruction cache ECC error");
if ((errcode & 0xfff0) == 0x0010)
mce_snprintf(e->error_msg, "TLB parity error in %s array",
(exterrcode == 0) ? "physical" : "virtual");
}
static void decode_k8_bu_mc(struct mce_event *e)
{
unsigned short exterrcode = (e->status >> 16) & 0x0f;
if (e->status & (3ULL << 45))
mce_snprintf(e->error_msg, "L2 cache ECC error");
mce_snprintf(e->error_msg, "%s array error",
!exterrcode ? "Bus or cache" : "Cache tag");
}
static void decode_k8_nb_mc(struct mce_event *e, unsigned int *memerr)
{
unsigned short exterrcode = (e->status >> 16) & 0x0f;
mce_snprintf(e->error_msg, "Northbridge %s", nbextendederr[exterrcode]);
switch (exterrcode) {
case 0:
*memerr = 1;
mce_snprintf(e->error_msg, "ECC syndrome = %x",
(uint32_t)(e->status >> 47) & 0xff);
break;
case 8:
*memerr = 1;
mce_snprintf(e->error_msg, "Chipkill ECC syndrome = %x",
(uint32_t)((((e->status >> 24) & 0xff) << 8)
| ((e->status >> 47) & 0xff)));
break;
case 1:
case 2:
case 3:
case 4:
case 6:
mce_snprintf(e->error_msg, "link number = %x",
(uint32_t)(e->status >> 36) & 0xf);
break;
}
}
static void decode_k8_threashold(struct mce_event *e)
{
if (e->misc & MCI_THRESHOLD_OVER)
mce_snprintf(e->error_msg, "Threshold error count overflow");
}
static void bank_name(struct mce_event *e)
{
const char *s;
if (e->bank < ARRAY_SIZE(k8bank))
s = k8bank[e->bank];
else if (e->bank >= K8_MCE_THRESHOLD_BASE &&
e->bank < K8_MCE_THRESHOLD_TOP)
s = k8threshold[e->bank - K8_MCE_THRESHOLD_BASE];
else
return; /* Use the generic parser for bank */
mce_snprintf(e->bank_name, "%s (bank=%d)", s, e->bank);
}
int parse_amd_k8_event(struct ras_events *ras, struct mce_event *e)
{
unsigned int ismemerr = 0;
/* Don't handle GART errors */
if (e->bank == 4) {
unsigned short exterrcode = (e->status >> 16) & 0x0f;
if (exterrcode == 5 && (e->status & (1ULL << 61)))
return -1;
}
bank_name(e);
switch (e->bank) {
case 0:
decode_k8_dc_mc(e);
decode_k8_generic_errcode(e);
break;
case 1:
decode_k8_ic_mc(e);
decode_k8_generic_errcode(e);
break;
case 2:
decode_k8_bu_mc(e);
decode_k8_generic_errcode(e);
break;
case 3: /* LS */
decode_k8_generic_errcode(e);
break;
case 4:
decode_k8_nb_mc(e, &ismemerr);
decode_k8_generic_errcode(e);
break;
case 5: /* FR */
decode_k8_generic_errcode(e);
break;
case K8_MCE_THRESHOLD_BASE ... K8_MCE_THRESHOLD_TOP:
decode_k8_threashold(e);
break;
default:
strscpy(e->error_msg, "Don't know how to decode this bank",
sizeof(e->error_msg));
}
/* IP doesn't matter on memory errors */
if (ismemerr)
e->ip = 0;
return 0;
}