-
Notifications
You must be signed in to change notification settings - Fork 63
/
haswell.c
192 lines (173 loc) · 5.58 KB
/
haswell.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
/* Copyright (C) 2013 Intel Corporation
Decode Intel Haswell specific machine check errors.
mcelog is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; version
2.
mcelog is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should find a copy of v2 of the GNU General Public License somewhere
on your Linux system; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Author: Tony Luck
*/
#include "mcelog.h"
#include "bitfield.h"
#include "haswell.h"
#include "memdb.h"
/* See IA32 SDM Vol3B Table 16-20 */
static char *pcu_1[] = {
[0x00] = "No Error",
[0x09] = "MC_MESSAGE_CHANNEL_TIMEOUT",
[0x0D] = "MC_IMC_FORCE_SR_S3_TIMEOUT",
[0x0E] = "MC_CPD_UNCPD_SD_TIMEOUT",
[0x13] = "MC_DMI_TRAINING_TIMEOUT",
[0x15] = "MC_DMI_CPU_RESET_ACK_TIMEOUT",
[0x1E] = "MC_VR_ICC_MAX_LT_FUSED_ICC_MAX",
[0x25] = "MC_SVID_COMMAN_TIMEOUT",
[0x29] = "MC_VR_VOUT_MAC_LT_FUSED_SVID",
[0x2B] = "MC_PKGC_WATCHDOG_HANG_CBZ_DOWN",
[0x2C] = "MC_PKGC_WATCHDOG_HANG_CBZ_UP",
[0x39] = "MC_PKGC_WATCHDOG_HANG_C3_UP_SF",
[0x44] = "MC_CRITICAL_VR_FAILED",
[0x45] = "MC_ICC_MAX_NOTSUPPORTED",
[0x46] = "MC_VID_RAMP_DOWN_FAILED",
[0x47] = "MC_EXCL_MODE_NO_PMREQ_CMP",
[0x48] = "MC_SVID_READ_REG_ICC_MAX_FAILED",
[0x49] = "MC_SVID_WRITE_REG_VOUT_MAX_FAILED",
[0x4B] = "MC_BOOT_VID_TIMEOUT_DRAM_0",
[0x4C] = "MC_BOOT_VID_TIMEOUT_DRAM_1",
[0x4D] = "MC_BOOT_VID_TIMEOUT_DRAM_2",
[0x4E] = "MC_BOOT_VID_TIMEOUT_DRAM_3",
[0x4F] = "MC_SVID_COMMAND_ERROR",
[0x52] = "MC_FIVR_CATAS_OVERVOL_FAULT",
[0x53] = "MC_FIVR_CATAS_OVERCUR_FAULT",
[0x57] = "MC_SVID_PKGC_REQUEST_FAILED",
[0x58] = "MC_SVID_IMON_REQUEST_FAILED",
[0x59] = "MC_SVID_ALERT_REQUEST_FAILED",
[0x60] = "MC_INVALID_PKGS_REQ_PCH",
[0x61] = "MC_INVALID_PKGS_REQ_QPI",
[0x62] = "MC_INVALID_PKGS_RSP_QPI",
[0x63] = "MC_INVALID_PKGS_RSP_PCH",
[0x64] = "MC_INVALID_PKG_STATE_CONFIG",
[0x67] = "MC_HA_IMC_RW_BLOCK_ACK_TIMEOUT",
[0x68] = "MC_IMC_RW_SMBUS_TIMEOUT",
[0x69] = "MC_HA_FAILSTS_CHANGE_DETECTED",
[0x6A] = "MC_MSGCH_PMREQ_CMP_TIMEOUT",
[0x70] = "MC_WATCHDOG_TIMEOUT_PKGC_SECONDARY",
[0x71] = "MC_WATCHDOG_TIMEOUT_PKGC_MAIN",
[0x72] = "MC_WATCHDOG_TIMEOUT_PKGS_MAIN",
[0x7C] = "MC_BIOS_RST_CPL_INVALID_SEQ",
[0x7D] = "MC_MORE_THAN_ONE_TXT_AGENT",
[0x81] = "MC_RECOVERABLE_DIE_THERMAL_TOO_HOT"
};
static struct field pcu_mc4[] = {
FIELD(24, pcu_1),
{}
};
/* See IA32 SDM Vol3B Table 16-21 */
static char *qpi[] = {
[0x02] = "Intel QPI physical layer detected drift buffer alarm",
[0x03] = "Intel QPI physical layer detected latency buffer rollover",
[0x10] = "Intel QPI link layer detected control error from R3QPI",
[0x11] = "Rx entered LLR abort state on CRC error",
[0x12] = "Unsupported or undefined packet",
[0x13] = "Intel QPI link layer control error",
[0x15] = "RBT used un-initialized value",
[0x20] = "Intel QPI physical layer detected a QPI in-band reset but aborted initialization",
[0x21] = "Link failover data self healing",
[0x22] = "Phy detected in-band reset (no width change)",
[0x23] = "Link failover clock failover",
[0x30] = "Rx detected CRC error - successful LLR after Phy re-init",
[0x31] = "Rx detected CRC error - successful LLR without Phy re-init",
};
static struct field qpi_mc[] = {
FIELD(16, qpi),
{}
};
/* See IA32 SDM Vol3B Table 16-22 */
static struct field memctrl_mc9[] = {
SBITFIELD(16, "DDR3 address parity error"),
SBITFIELD(17, "Uncorrected HA write data error"),
SBITFIELD(18, "Uncorrected HA data byte enable error"),
SBITFIELD(19, "Corrected patrol scrub error"),
SBITFIELD(20, "Uncorrected patrol scrub error"),
SBITFIELD(21, "Corrected spare error"),
SBITFIELD(22, "Uncorrected spare error"),
SBITFIELD(23, "Corrected memory read error"),
SBITFIELD(24, "iMC write data buffer parity error"),
SBITFIELD(25, "DDR4 command address parity error"),
{}
};
void hsw_decode_model(int cputype, int bank, u64 status, u64 misc)
{
switch (bank) {
case 4:
Wprintf("PCU: ");
switch (EXTRACT(status, 0, 15) & ~(1ull << 12)) {
case 0x402: case 0x403:
Wprintf("Internal errors ");
break;
case 0x406:
Wprintf("Intel TXT errors ");
break;
case 0x407:
Wprintf("Other UBOX Internal errors ");
break;
}
if (EXTRACT(status, 16, 19))
Wprintf("PCU internal error ");
decode_bitfield(status, pcu_mc4);
break;
case 5:
case 20:
case 21:
Wprintf("QPI: ");
decode_bitfield(status, qpi_mc);
break;
case 9: case 10: case 11: case 12:
case 13: case 14: case 15: case 16:
Wprintf("MemCtrl: ");
decode_bitfield(status, memctrl_mc9);
break;
}
}
/*
* There isn't enough information to identify the DIMM. But
* we can derive the channel from the bank number.
* There can be two memory controllers. We number the channels
* on the second controller: 4, 5, 6, 7
*/
void haswell_memerr_misc(struct mce *m, int *channel, int *dimm)
{
u64 status = m->status;
unsigned chan;
/* Check this is a memory error */
if (!test_prefix(7, status & 0xefff))
return;
chan = EXTRACT(status, 0, 3);
if (chan == 0xf)
return;
switch (m->bank) {
case 7:
/* Home agent 0 */
break;
case 8:
/* Home agent 1 */
chan += 4;
break;
case 9: case 10: case 11: case 12:
/* Memory controller 0 */
chan = m->bank - 9;
break;
case 13: case 14: case 15: case 16:
/* Memory controller 1 */
chan = (m->bank - 13) + 4;
break;
default:
return;
}
channel[0] = chan;
}