blob: 52ae415aa69977def44ea46b130c3897ff87c91c [file] [log] [blame]
Doug Thompson2bc65412009-05-04 20:11:14 +02001#include "amd64_edac.h"
Andreas Herrmann23ac4ae2010-09-17 18:03:43 +02002#include <asm/amd_nb.h>
Doug Thompson2bc65412009-05-04 20:11:14 +02003
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01004static struct edac_pci_ctl_info *pci_ctl;
Doug Thompson2bc65412009-05-04 20:11:14 +02005
6static int report_gart_errors;
7module_param(report_gart_errors, int, 0644);
8
9/*
10 * Set by command line parameter. If BIOS has enabled the ECC, this override is
11 * cleared to prevent re-enabling the hardware by this driver.
12 */
13static int ecc_enable_override;
14module_param(ecc_enable_override, int, 0644);
15
Tejun Heoa29d8b82010-02-02 14:39:15 +090016static struct msr __percpu *msrs;
Borislav Petkov50542252009-12-11 18:14:40 +010017
Borislav Petkov2ec591a2015-02-17 10:58:34 +010018/* Per-node stuff */
Borislav Petkovae7bb7c2010-10-14 16:01:30 +020019static struct ecc_settings **ecc_stngs;
Doug Thompson2bc65412009-05-04 20:11:14 +020020
21/*
Borislav Petkovb70ef012009-06-25 19:32:38 +020022 * Valid scrub rates for the K8 hardware memory scrubber. We map the scrubbing
23 * bandwidth to a valid bit pattern. The 'set' operation finds the 'matching-
24 * or higher value'.
25 *
26 *FIXME: Produce a better mapping/linearisation.
27 */
Daniel J Bluemanc7e53012012-11-30 16:44:20 +080028static const struct scrubrate {
Borislav Petkov39094442010-11-24 19:52:09 +010029 u32 scrubval; /* bit pattern for scrub rate */
30 u32 bandwidth; /* bandwidth consumed (bytes/sec) */
31} scrubrates[] = {
Borislav Petkovb70ef012009-06-25 19:32:38 +020032 { 0x01, 1600000000UL},
33 { 0x02, 800000000UL},
34 { 0x03, 400000000UL},
35 { 0x04, 200000000UL},
36 { 0x05, 100000000UL},
37 { 0x06, 50000000UL},
38 { 0x07, 25000000UL},
39 { 0x08, 12284069UL},
40 { 0x09, 6274509UL},
41 { 0x0A, 3121951UL},
42 { 0x0B, 1560975UL},
43 { 0x0C, 781440UL},
44 { 0x0D, 390720UL},
45 { 0x0E, 195300UL},
46 { 0x0F, 97650UL},
47 { 0x10, 48854UL},
48 { 0x11, 24427UL},
49 { 0x12, 12213UL},
50 { 0x13, 6101UL},
51 { 0x14, 3051UL},
52 { 0x15, 1523UL},
53 { 0x16, 761UL},
54 { 0x00, 0UL}, /* scrubbing off */
55};
56
Borislav Petkov66fed2d2012-08-09 18:41:07 +020057int __amd64_read_pci_cfg_dword(struct pci_dev *pdev, int offset,
58 u32 *val, const char *func)
Borislav Petkovb2b0c602010-10-08 18:32:29 +020059{
60 int err = 0;
61
62 err = pci_read_config_dword(pdev, offset, val);
63 if (err)
64 amd64_warn("%s: error reading F%dx%03x.\n",
65 func, PCI_FUNC(pdev->devfn), offset);
66
67 return err;
68}
69
70int __amd64_write_pci_cfg_dword(struct pci_dev *pdev, int offset,
71 u32 val, const char *func)
72{
73 int err = 0;
74
75 err = pci_write_config_dword(pdev, offset, val);
76 if (err)
77 amd64_warn("%s: error writing to F%dx%03x.\n",
78 func, PCI_FUNC(pdev->devfn), offset);
79
80 return err;
81}
82
83/*
Borislav Petkov73ba8592011-09-19 17:34:45 +020084 * Select DCT to which PCI cfg accesses are routed
85 */
86static void f15h_select_dct(struct amd64_pvt *pvt, u8 dct)
87{
88 u32 reg = 0;
89
90 amd64_read_pci_cfg(pvt->F1, DCT_CFG_SEL, &reg);
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -050091 reg &= (pvt->model == 0x30) ? ~3 : ~1;
Borislav Petkov73ba8592011-09-19 17:34:45 +020092 reg |= dct;
93 amd64_write_pci_cfg(pvt->F1, DCT_CFG_SEL, reg);
94}
95
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -050096/*
97 *
98 * Depending on the family, F2 DCT reads need special handling:
99 *
100 * K8: has a single DCT only and no address offsets >= 0x100
101 *
102 * F10h: each DCT has its own set of regs
103 * DCT0 -> F2x040..
104 * DCT1 -> F2x140..
105 *
106 * F16h: has only 1 DCT
107 *
108 * F15h: we select which DCT we access using F1x10C[DctCfgSel]
109 */
110static inline int amd64_read_dct_pci_cfg(struct amd64_pvt *pvt, u8 dct,
111 int offset, u32 *val)
Borislav Petkovb2b0c602010-10-08 18:32:29 +0200112{
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -0500113 switch (pvt->fam) {
114 case 0xf:
115 if (dct || offset >= 0x100)
116 return -EINVAL;
117 break;
Borislav Petkovb2b0c602010-10-08 18:32:29 +0200118
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -0500119 case 0x10:
120 if (dct) {
121 /*
122 * Note: If ganging is enabled, barring the regs
123 * F2x[1,0]98 and F2x[1,0]9C; reads reads to F2x1xx
124 * return 0. (cf. Section 2.8.1 F10h BKDG)
125 */
126 if (dct_ganging_enabled(pvt))
127 return 0;
128
129 offset += 0x100;
130 }
131 break;
132
133 case 0x15:
134 /*
135 * F15h: F2x1xx addresses do not map explicitly to DCT1.
136 * We should select which DCT we access using F1x10C[DctCfgSel]
137 */
138 dct = (dct && pvt->model == 0x30) ? 3 : dct;
139 f15h_select_dct(pvt, dct);
140 break;
141
142 case 0x16:
143 if (dct)
144 return -EINVAL;
145 break;
146
147 default:
148 break;
Borislav Petkovb2b0c602010-10-08 18:32:29 +0200149 }
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -0500150 return amd64_read_pci_cfg(pvt->F2, offset, val);
Borislav Petkovb2b0c602010-10-08 18:32:29 +0200151}
152
Borislav Petkovb70ef012009-06-25 19:32:38 +0200153/*
Doug Thompson2bc65412009-05-04 20:11:14 +0200154 * Memory scrubber control interface. For K8, memory scrubbing is handled by
155 * hardware and can involve L2 cache, dcache as well as the main memory. With
156 * F10, this is extended to L3 cache scrubbing on CPU models sporting that
157 * functionality.
158 *
159 * This causes the "units" for the scrubbing speed to vary from 64 byte blocks
160 * (dram) over to cache lines. This is nasty, so we will use bandwidth in
161 * bytes/sec for the setting.
162 *
163 * Currently, we only do dram scrubbing. If the scrubbing is done in software on
164 * other archs, we might not have access to the caches directly.
165 */
166
Yazen Ghannam8051c0a2016-11-17 17:57:42 -0500167static inline void __f17h_set_scrubval(struct amd64_pvt *pvt, u32 scrubval)
168{
169 /*
170 * Fam17h supports scrub values between 0x5 and 0x14. Also, the values
171 * are shifted down by 0x5, so scrubval 0x5 is written to the register
172 * as 0x0, scrubval 0x6 as 0x1, etc.
173 */
174 if (scrubval >= 0x5 && scrubval <= 0x14) {
175 scrubval -= 0x5;
176 pci_write_bits32(pvt->F6, F17H_SCR_LIMIT_ADDR, scrubval, 0xF);
177 pci_write_bits32(pvt->F6, F17H_SCR_BASE_ADDR, 1, 0x1);
178 } else {
179 pci_write_bits32(pvt->F6, F17H_SCR_BASE_ADDR, 0, 0x1);
180 }
181}
Doug Thompson2bc65412009-05-04 20:11:14 +0200182/*
Yazen Ghannam8051c0a2016-11-17 17:57:42 -0500183 * Scan the scrub rate mapping table for a close or matching bandwidth value to
Doug Thompson2bc65412009-05-04 20:11:14 +0200184 * issue. If requested is too big, then use last maximum value found.
185 */
Aravind Gopalakrishnanda921102015-09-28 06:43:12 -0500186static int __set_scrub_rate(struct amd64_pvt *pvt, u32 new_bw, u32 min_rate)
Doug Thompson2bc65412009-05-04 20:11:14 +0200187{
188 u32 scrubval;
189 int i;
190
191 /*
192 * map the configured rate (new_bw) to a value specific to the AMD64
193 * memory controller and apply to register. Search for the first
194 * bandwidth entry that is greater or equal than the setting requested
195 * and program that. If at last entry, turn off DRAM scrubbing.
Andrew Morton168bfee2012-10-23 14:09:39 -0700196 *
197 * If no suitable bandwidth is found, turn off DRAM scrubbing entirely
198 * by falling back to the last element in scrubrates[].
Doug Thompson2bc65412009-05-04 20:11:14 +0200199 */
Andrew Morton168bfee2012-10-23 14:09:39 -0700200 for (i = 0; i < ARRAY_SIZE(scrubrates) - 1; i++) {
Doug Thompson2bc65412009-05-04 20:11:14 +0200201 /*
202 * skip scrub rates which aren't recommended
203 * (see F10 BKDG, F3x58)
204 */
Borislav Petkov395ae782010-10-01 18:38:19 +0200205 if (scrubrates[i].scrubval < min_rate)
Doug Thompson2bc65412009-05-04 20:11:14 +0200206 continue;
207
208 if (scrubrates[i].bandwidth <= new_bw)
209 break;
Doug Thompson2bc65412009-05-04 20:11:14 +0200210 }
211
212 scrubval = scrubrates[i].scrubval;
Doug Thompson2bc65412009-05-04 20:11:14 +0200213
Yazen Ghannam8051c0a2016-11-17 17:57:42 -0500214 if (pvt->fam == 0x17) {
215 __f17h_set_scrubval(pvt, scrubval);
216 } else if (pvt->fam == 0x15 && pvt->model == 0x60) {
Aravind Gopalakrishnanda921102015-09-28 06:43:12 -0500217 f15h_select_dct(pvt, 0);
218 pci_write_bits32(pvt->F2, F15H_M60H_SCRCTRL, scrubval, 0x001F);
219 f15h_select_dct(pvt, 1);
220 pci_write_bits32(pvt->F2, F15H_M60H_SCRCTRL, scrubval, 0x001F);
221 } else {
222 pci_write_bits32(pvt->F3, SCRCTRL, scrubval, 0x001F);
223 }
Doug Thompson2bc65412009-05-04 20:11:14 +0200224
Borislav Petkov39094442010-11-24 19:52:09 +0100225 if (scrubval)
226 return scrubrates[i].bandwidth;
227
Doug Thompson2bc65412009-05-04 20:11:14 +0200228 return 0;
229}
230
Borislav Petkovd1ea71c2013-12-15 17:54:27 +0100231static int set_scrub_rate(struct mem_ctl_info *mci, u32 bw)
Doug Thompson2bc65412009-05-04 20:11:14 +0200232{
233 struct amd64_pvt *pvt = mci->pvt_info;
Borislav Petkov87b3e0e2011-01-19 20:02:38 +0100234 u32 min_scrubrate = 0x5;
Doug Thompson2bc65412009-05-04 20:11:14 +0200235
Borislav Petkova4b4bed2013-08-10 13:54:48 +0200236 if (pvt->fam == 0xf)
Borislav Petkov87b3e0e2011-01-19 20:02:38 +0100237 min_scrubrate = 0x0;
238
Aravind Gopalakrishnanda921102015-09-28 06:43:12 -0500239 if (pvt->fam == 0x15) {
240 /* Erratum #505 */
241 if (pvt->model < 0x10)
242 f15h_select_dct(pvt, 0);
Borislav Petkov73ba8592011-09-19 17:34:45 +0200243
Aravind Gopalakrishnanda921102015-09-28 06:43:12 -0500244 if (pvt->model == 0x60)
245 min_scrubrate = 0x6;
246 }
247 return __set_scrub_rate(pvt, bw, min_scrubrate);
Doug Thompson2bc65412009-05-04 20:11:14 +0200248}
249
Borislav Petkovd1ea71c2013-12-15 17:54:27 +0100250static int get_scrub_rate(struct mem_ctl_info *mci)
Doug Thompson2bc65412009-05-04 20:11:14 +0200251{
252 struct amd64_pvt *pvt = mci->pvt_info;
Borislav Petkov39094442010-11-24 19:52:09 +0100253 int i, retval = -EINVAL;
Yazen Ghannam8051c0a2016-11-17 17:57:42 -0500254 u32 scrubval = 0;
Doug Thompson2bc65412009-05-04 20:11:14 +0200255
Yazen Ghannam8051c0a2016-11-17 17:57:42 -0500256 switch (pvt->fam) {
257 case 0x15:
Aravind Gopalakrishnanda921102015-09-28 06:43:12 -0500258 /* Erratum #505 */
259 if (pvt->model < 0x10)
260 f15h_select_dct(pvt, 0);
Borislav Petkov73ba8592011-09-19 17:34:45 +0200261
Aravind Gopalakrishnanda921102015-09-28 06:43:12 -0500262 if (pvt->model == 0x60)
263 amd64_read_pci_cfg(pvt->F2, F15H_M60H_SCRCTRL, &scrubval);
Yazen Ghannam8051c0a2016-11-17 17:57:42 -0500264 break;
265
266 case 0x17:
267 amd64_read_pci_cfg(pvt->F6, F17H_SCR_BASE_ADDR, &scrubval);
268 if (scrubval & BIT(0)) {
269 amd64_read_pci_cfg(pvt->F6, F17H_SCR_LIMIT_ADDR, &scrubval);
270 scrubval &= 0xF;
271 scrubval += 0x5;
272 } else {
273 scrubval = 0;
274 }
275 break;
276
277 default:
Aravind Gopalakrishnanda921102015-09-28 06:43:12 -0500278 amd64_read_pci_cfg(pvt->F3, SCRCTRL, &scrubval);
Yazen Ghannam8051c0a2016-11-17 17:57:42 -0500279 break;
280 }
Doug Thompson2bc65412009-05-04 20:11:14 +0200281
282 scrubval = scrubval & 0x001F;
283
Roel Kluin926311f2010-01-11 20:58:21 +0100284 for (i = 0; i < ARRAY_SIZE(scrubrates); i++) {
Doug Thompson2bc65412009-05-04 20:11:14 +0200285 if (scrubrates[i].scrubval == scrubval) {
Borislav Petkov39094442010-11-24 19:52:09 +0100286 retval = scrubrates[i].bandwidth;
Doug Thompson2bc65412009-05-04 20:11:14 +0200287 break;
288 }
289 }
Borislav Petkov39094442010-11-24 19:52:09 +0100290 return retval;
Doug Thompson2bc65412009-05-04 20:11:14 +0200291}
292
Doug Thompson67757632009-04-27 15:53:22 +0200293/*
Borislav Petkov7f19bf72010-10-21 18:52:53 +0200294 * returns true if the SysAddr given by sys_addr matches the
295 * DRAM base/limit associated with node_id
Doug Thompson67757632009-04-27 15:53:22 +0200296 */
Borislav Petkovd1ea71c2013-12-15 17:54:27 +0100297static bool base_limit_match(struct amd64_pvt *pvt, u64 sys_addr, u8 nid)
Doug Thompson67757632009-04-27 15:53:22 +0200298{
Borislav Petkov7f19bf72010-10-21 18:52:53 +0200299 u64 addr;
Doug Thompson67757632009-04-27 15:53:22 +0200300
301 /* The K8 treats this as a 40-bit value. However, bits 63-40 will be
302 * all ones if the most significant implemented address bit is 1.
303 * Here we discard bits 63-40. See section 3.4.2 of AMD publication
304 * 24592: AMD x86-64 Architecture Programmer's Manual Volume 1
305 * Application Programming.
306 */
307 addr = sys_addr & 0x000000ffffffffffull;
308
Borislav Petkov7f19bf72010-10-21 18:52:53 +0200309 return ((addr >= get_dram_base(pvt, nid)) &&
310 (addr <= get_dram_limit(pvt, nid)));
Doug Thompson67757632009-04-27 15:53:22 +0200311}
312
313/*
314 * Attempt to map a SysAddr to a node. On success, return a pointer to the
315 * mem_ctl_info structure for the node that the SysAddr maps to.
316 *
317 * On failure, return NULL.
318 */
319static struct mem_ctl_info *find_mc_by_sys_addr(struct mem_ctl_info *mci,
320 u64 sys_addr)
321{
322 struct amd64_pvt *pvt;
Daniel J Bluemanc7e53012012-11-30 16:44:20 +0800323 u8 node_id;
Doug Thompson67757632009-04-27 15:53:22 +0200324 u32 intlv_en, bits;
325
326 /*
327 * Here we use the DRAM Base (section 3.4.4.1) and DRAM Limit (section
328 * 3.4.4.2) registers to map the SysAddr to a node ID.
329 */
330 pvt = mci->pvt_info;
331
332 /*
333 * The value of this field should be the same for all DRAM Base
334 * registers. Therefore we arbitrarily choose to read it from the
335 * register for node 0.
336 */
Borislav Petkov7f19bf72010-10-21 18:52:53 +0200337 intlv_en = dram_intlv_en(pvt, 0);
Doug Thompson67757632009-04-27 15:53:22 +0200338
339 if (intlv_en == 0) {
Borislav Petkov7f19bf72010-10-21 18:52:53 +0200340 for (node_id = 0; node_id < DRAM_RANGES; node_id++) {
Borislav Petkovd1ea71c2013-12-15 17:54:27 +0100341 if (base_limit_match(pvt, sys_addr, node_id))
Borislav Petkov8edc5442009-09-18 12:39:19 +0200342 goto found;
Doug Thompson67757632009-04-27 15:53:22 +0200343 }
Borislav Petkov8edc5442009-09-18 12:39:19 +0200344 goto err_no_match;
Doug Thompson67757632009-04-27 15:53:22 +0200345 }
346
Borislav Petkov72f158f2009-09-18 12:27:27 +0200347 if (unlikely((intlv_en != 0x01) &&
348 (intlv_en != 0x03) &&
349 (intlv_en != 0x07))) {
Borislav Petkov24f9a7f2010-10-07 18:29:15 +0200350 amd64_warn("DRAM Base[IntlvEn] junk value: 0x%x, BIOS bug?\n", intlv_en);
Doug Thompson67757632009-04-27 15:53:22 +0200351 return NULL;
352 }
353
354 bits = (((u32) sys_addr) >> 12) & intlv_en;
355
356 for (node_id = 0; ; ) {
Borislav Petkov7f19bf72010-10-21 18:52:53 +0200357 if ((dram_intlv_sel(pvt, node_id) & intlv_en) == bits)
Doug Thompson67757632009-04-27 15:53:22 +0200358 break; /* intlv_sel field matches */
359
Borislav Petkov7f19bf72010-10-21 18:52:53 +0200360 if (++node_id >= DRAM_RANGES)
Doug Thompson67757632009-04-27 15:53:22 +0200361 goto err_no_match;
362 }
363
364 /* sanity test for sys_addr */
Borislav Petkovd1ea71c2013-12-15 17:54:27 +0100365 if (unlikely(!base_limit_match(pvt, sys_addr, node_id))) {
Borislav Petkov24f9a7f2010-10-07 18:29:15 +0200366 amd64_warn("%s: sys_addr 0x%llx falls outside base/limit address"
367 "range for node %d with node interleaving enabled.\n",
368 __func__, sys_addr, node_id);
Doug Thompson67757632009-04-27 15:53:22 +0200369 return NULL;
370 }
371
372found:
Borislav Petkovb487c332011-02-21 18:55:00 +0100373 return edac_mc_find((int)node_id);
Doug Thompson67757632009-04-27 15:53:22 +0200374
375err_no_match:
Joe Perches956b9ba12012-04-29 17:08:39 -0300376 edac_dbg(2, "sys_addr 0x%lx doesn't match any node\n",
377 (unsigned long)sys_addr);
Doug Thompson67757632009-04-27 15:53:22 +0200378
379 return NULL;
380}
Doug Thompsone2ce7252009-04-27 15:57:12 +0200381
382/*
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100383 * compute the CS base address of the @csrow on the DRAM controller @dct.
384 * For details see F2x[5C:40] in the processor's BKDG
Doug Thompsone2ce7252009-04-27 15:57:12 +0200385 */
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100386static void get_cs_base_and_mask(struct amd64_pvt *pvt, int csrow, u8 dct,
387 u64 *base, u64 *mask)
Doug Thompsone2ce7252009-04-27 15:57:12 +0200388{
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100389 u64 csbase, csmask, base_bits, mask_bits;
390 u8 addr_shift;
391
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -0500392 if (pvt->fam == 0xf && pvt->ext_model < K8_REV_F) {
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100393 csbase = pvt->csels[dct].csbases[csrow];
394 csmask = pvt->csels[dct].csmasks[csrow];
Chen, Gong10ef6b02013-10-18 14:29:07 -0700395 base_bits = GENMASK_ULL(31, 21) | GENMASK_ULL(15, 9);
396 mask_bits = GENMASK_ULL(29, 21) | GENMASK_ULL(15, 9);
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100397 addr_shift = 4;
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -0500398
399 /*
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -0500400 * F16h and F15h, models 30h and later need two addr_shift values:
401 * 8 for high and 6 for low (cf. F16h BKDG).
402 */
403 } else if (pvt->fam == 0x16 ||
404 (pvt->fam == 0x15 && pvt->model >= 0x30)) {
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -0500405 csbase = pvt->csels[dct].csbases[csrow];
406 csmask = pvt->csels[dct].csmasks[csrow >> 1];
407
Chen, Gong10ef6b02013-10-18 14:29:07 -0700408 *base = (csbase & GENMASK_ULL(15, 5)) << 6;
409 *base |= (csbase & GENMASK_ULL(30, 19)) << 8;
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -0500410
411 *mask = ~0ULL;
412 /* poke holes for the csmask */
Chen, Gong10ef6b02013-10-18 14:29:07 -0700413 *mask &= ~((GENMASK_ULL(15, 5) << 6) |
414 (GENMASK_ULL(30, 19) << 8));
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -0500415
Chen, Gong10ef6b02013-10-18 14:29:07 -0700416 *mask |= (csmask & GENMASK_ULL(15, 5)) << 6;
417 *mask |= (csmask & GENMASK_ULL(30, 19)) << 8;
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -0500418
419 return;
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100420 } else {
421 csbase = pvt->csels[dct].csbases[csrow];
422 csmask = pvt->csels[dct].csmasks[csrow >> 1];
423 addr_shift = 8;
424
Borislav Petkova4b4bed2013-08-10 13:54:48 +0200425 if (pvt->fam == 0x15)
Chen, Gong10ef6b02013-10-18 14:29:07 -0700426 base_bits = mask_bits =
427 GENMASK_ULL(30,19) | GENMASK_ULL(13,5);
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100428 else
Chen, Gong10ef6b02013-10-18 14:29:07 -0700429 base_bits = mask_bits =
430 GENMASK_ULL(28,19) | GENMASK_ULL(13,5);
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100431 }
432
433 *base = (csbase & base_bits) << addr_shift;
434
435 *mask = ~0ULL;
436 /* poke holes for the csmask */
437 *mask &= ~(mask_bits << addr_shift);
438 /* OR them in */
439 *mask |= (csmask & mask_bits) << addr_shift;
Doug Thompsone2ce7252009-04-27 15:57:12 +0200440}
441
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100442#define for_each_chip_select(i, dct, pvt) \
443 for (i = 0; i < pvt->csels[dct].b_cnt; i++)
Doug Thompsone2ce7252009-04-27 15:57:12 +0200444
Borislav Petkov614ec9d2011-01-13 18:02:22 +0100445#define chip_select_base(i, dct, pvt) \
446 pvt->csels[dct].csbases[i]
447
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100448#define for_each_chip_select_mask(i, dct, pvt) \
449 for (i = 0; i < pvt->csels[dct].m_cnt; i++)
Doug Thompsone2ce7252009-04-27 15:57:12 +0200450
451/*
452 * @input_addr is an InputAddr associated with the node given by mci. Return the
453 * csrow that input_addr maps to, or -1 on failure (no csrow claims input_addr).
454 */
455static int input_addr_to_csrow(struct mem_ctl_info *mci, u64 input_addr)
456{
457 struct amd64_pvt *pvt;
458 int csrow;
459 u64 base, mask;
460
461 pvt = mci->pvt_info;
462
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100463 for_each_chip_select(csrow, 0, pvt) {
464 if (!csrow_enabled(csrow, 0, pvt))
Doug Thompsone2ce7252009-04-27 15:57:12 +0200465 continue;
466
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100467 get_cs_base_and_mask(pvt, csrow, 0, &base, &mask);
468
469 mask = ~mask;
Doug Thompsone2ce7252009-04-27 15:57:12 +0200470
471 if ((input_addr & mask) == (base & mask)) {
Joe Perches956b9ba12012-04-29 17:08:39 -0300472 edac_dbg(2, "InputAddr 0x%lx matches csrow %d (node %d)\n",
473 (unsigned long)input_addr, csrow,
474 pvt->mc_node_id);
Doug Thompsone2ce7252009-04-27 15:57:12 +0200475
476 return csrow;
477 }
478 }
Joe Perches956b9ba12012-04-29 17:08:39 -0300479 edac_dbg(2, "no matching csrow for InputAddr 0x%lx (MC node %d)\n",
480 (unsigned long)input_addr, pvt->mc_node_id);
Doug Thompsone2ce7252009-04-27 15:57:12 +0200481
482 return -1;
483}
484
485/*
Doug Thompsone2ce7252009-04-27 15:57:12 +0200486 * Obtain info from the DRAM Hole Address Register (section 3.4.8, pub #26094)
487 * for the node represented by mci. Info is passed back in *hole_base,
488 * *hole_offset, and *hole_size. Function returns 0 if info is valid or 1 if
489 * info is invalid. Info may be invalid for either of the following reasons:
490 *
491 * - The revision of the node is not E or greater. In this case, the DRAM Hole
492 * Address Register does not exist.
493 *
494 * - The DramHoleValid bit is cleared in the DRAM Hole Address Register,
495 * indicating that its contents are not valid.
496 *
497 * The values passed back in *hole_base, *hole_offset, and *hole_size are
498 * complete 32-bit values despite the fact that the bitfields in the DHAR
499 * only represent bits 31-24 of the base and offset values.
500 */
501int amd64_get_dram_hole_info(struct mem_ctl_info *mci, u64 *hole_base,
502 u64 *hole_offset, u64 *hole_size)
503{
504 struct amd64_pvt *pvt = mci->pvt_info;
Doug Thompsone2ce7252009-04-27 15:57:12 +0200505
506 /* only revE and later have the DRAM Hole Address Register */
Borislav Petkova4b4bed2013-08-10 13:54:48 +0200507 if (pvt->fam == 0xf && pvt->ext_model < K8_REV_E) {
Joe Perches956b9ba12012-04-29 17:08:39 -0300508 edac_dbg(1, " revision %d for node %d does not support DHAR\n",
509 pvt->ext_model, pvt->mc_node_id);
Doug Thompsone2ce7252009-04-27 15:57:12 +0200510 return 1;
511 }
512
Borislav Petkovbc21fa52010-11-11 17:29:13 +0100513 /* valid for Fam10h and above */
Borislav Petkova4b4bed2013-08-10 13:54:48 +0200514 if (pvt->fam >= 0x10 && !dhar_mem_hoist_valid(pvt)) {
Joe Perches956b9ba12012-04-29 17:08:39 -0300515 edac_dbg(1, " Dram Memory Hoisting is DISABLED on this system\n");
Doug Thompsone2ce7252009-04-27 15:57:12 +0200516 return 1;
517 }
518
Borislav Petkovc8e518d2010-12-10 19:49:19 +0100519 if (!dhar_valid(pvt)) {
Joe Perches956b9ba12012-04-29 17:08:39 -0300520 edac_dbg(1, " Dram Memory Hoisting is DISABLED on this node %d\n",
521 pvt->mc_node_id);
Doug Thompsone2ce7252009-04-27 15:57:12 +0200522 return 1;
523 }
524
525 /* This node has Memory Hoisting */
526
527 /* +------------------+--------------------+--------------------+-----
528 * | memory | DRAM hole | relocated |
529 * | [0, (x - 1)] | [x, 0xffffffff] | addresses from |
530 * | | | DRAM hole |
531 * | | | [0x100000000, |
532 * | | | (0x100000000+ |
533 * | | | (0xffffffff-x))] |
534 * +------------------+--------------------+--------------------+-----
535 *
536 * Above is a diagram of physical memory showing the DRAM hole and the
537 * relocated addresses from the DRAM hole. As shown, the DRAM hole
538 * starts at address x (the base address) and extends through address
539 * 0xffffffff. The DRAM Hole Address Register (DHAR) relocates the
540 * addresses in the hole so that they start at 0x100000000.
541 */
542
Borislav Petkov1f316772012-08-10 12:50:50 +0200543 *hole_base = dhar_base(pvt);
544 *hole_size = (1ULL << 32) - *hole_base;
Doug Thompsone2ce7252009-04-27 15:57:12 +0200545
Borislav Petkova4b4bed2013-08-10 13:54:48 +0200546 *hole_offset = (pvt->fam > 0xf) ? f10_dhar_offset(pvt)
547 : k8_dhar_offset(pvt);
Doug Thompsone2ce7252009-04-27 15:57:12 +0200548
Joe Perches956b9ba12012-04-29 17:08:39 -0300549 edac_dbg(1, " DHAR info for node %d base 0x%lx offset 0x%lx size 0x%lx\n",
550 pvt->mc_node_id, (unsigned long)*hole_base,
551 (unsigned long)*hole_offset, (unsigned long)*hole_size);
Doug Thompsone2ce7252009-04-27 15:57:12 +0200552
553 return 0;
554}
555EXPORT_SYMBOL_GPL(amd64_get_dram_hole_info);
556
Doug Thompson93c2df52009-05-04 20:46:50 +0200557/*
558 * Return the DramAddr that the SysAddr given by @sys_addr maps to. It is
559 * assumed that sys_addr maps to the node given by mci.
560 *
561 * The first part of section 3.4.4 (p. 70) shows how the DRAM Base (section
562 * 3.4.4.1) and DRAM Limit (section 3.4.4.2) registers are used to translate a
563 * SysAddr to a DramAddr. If the DRAM Hole Address Register (DHAR) is enabled,
564 * then it is also involved in translating a SysAddr to a DramAddr. Sections
565 * 3.4.8 and 3.5.8.2 describe the DHAR and how it is used for memory hoisting.
566 * These parts of the documentation are unclear. I interpret them as follows:
567 *
568 * When node n receives a SysAddr, it processes the SysAddr as follows:
569 *
570 * 1. It extracts the DRAMBase and DRAMLimit values from the DRAM Base and DRAM
571 * Limit registers for node n. If the SysAddr is not within the range
572 * specified by the base and limit values, then node n ignores the Sysaddr
573 * (since it does not map to node n). Otherwise continue to step 2 below.
574 *
575 * 2. If the DramHoleValid bit of the DHAR for node n is clear, the DHAR is
576 * disabled so skip to step 3 below. Otherwise see if the SysAddr is within
577 * the range of relocated addresses (starting at 0x100000000) from the DRAM
578 * hole. If not, skip to step 3 below. Else get the value of the
579 * DramHoleOffset field from the DHAR. To obtain the DramAddr, subtract the
580 * offset defined by this value from the SysAddr.
581 *
582 * 3. Obtain the base address for node n from the DRAMBase field of the DRAM
583 * Base register for node n. To obtain the DramAddr, subtract the base
584 * address from the SysAddr, as shown near the start of section 3.4.4 (p.70).
585 */
586static u64 sys_addr_to_dram_addr(struct mem_ctl_info *mci, u64 sys_addr)
587{
Borislav Petkov7f19bf72010-10-21 18:52:53 +0200588 struct amd64_pvt *pvt = mci->pvt_info;
Doug Thompson93c2df52009-05-04 20:46:50 +0200589 u64 dram_base, hole_base, hole_offset, hole_size, dram_addr;
Borislav Petkov1f316772012-08-10 12:50:50 +0200590 int ret;
Doug Thompson93c2df52009-05-04 20:46:50 +0200591
Borislav Petkov7f19bf72010-10-21 18:52:53 +0200592 dram_base = get_dram_base(pvt, pvt->mc_node_id);
Doug Thompson93c2df52009-05-04 20:46:50 +0200593
594 ret = amd64_get_dram_hole_info(mci, &hole_base, &hole_offset,
595 &hole_size);
596 if (!ret) {
Borislav Petkov1f316772012-08-10 12:50:50 +0200597 if ((sys_addr >= (1ULL << 32)) &&
598 (sys_addr < ((1ULL << 32) + hole_size))) {
Doug Thompson93c2df52009-05-04 20:46:50 +0200599 /* use DHAR to translate SysAddr to DramAddr */
600 dram_addr = sys_addr - hole_offset;
601
Joe Perches956b9ba12012-04-29 17:08:39 -0300602 edac_dbg(2, "using DHAR to translate SysAddr 0x%lx to DramAddr 0x%lx\n",
603 (unsigned long)sys_addr,
604 (unsigned long)dram_addr);
Doug Thompson93c2df52009-05-04 20:46:50 +0200605
606 return dram_addr;
607 }
608 }
609
610 /*
611 * Translate the SysAddr to a DramAddr as shown near the start of
612 * section 3.4.4 (p. 70). Although sys_addr is a 64-bit value, the k8
613 * only deals with 40-bit values. Therefore we discard bits 63-40 of
614 * sys_addr below. If bit 39 of sys_addr is 1 then the bits we
615 * discard are all 1s. Otherwise the bits we discard are all 0s. See
616 * section 3.4.2 of AMD publication 24592: AMD x86-64 Architecture
617 * Programmer's Manual Volume 1 Application Programming.
618 */
Chen, Gong10ef6b02013-10-18 14:29:07 -0700619 dram_addr = (sys_addr & GENMASK_ULL(39, 0)) - dram_base;
Doug Thompson93c2df52009-05-04 20:46:50 +0200620
Joe Perches956b9ba12012-04-29 17:08:39 -0300621 edac_dbg(2, "using DRAM Base register to translate SysAddr 0x%lx to DramAddr 0x%lx\n",
622 (unsigned long)sys_addr, (unsigned long)dram_addr);
Doug Thompson93c2df52009-05-04 20:46:50 +0200623 return dram_addr;
624}
625
626/*
627 * @intlv_en is the value of the IntlvEn field from a DRAM Base register
628 * (section 3.4.4.1). Return the number of bits from a SysAddr that are used
629 * for node interleaving.
630 */
631static int num_node_interleave_bits(unsigned intlv_en)
632{
633 static const int intlv_shift_table[] = { 0, 1, 0, 2, 0, 0, 0, 3 };
634 int n;
635
636 BUG_ON(intlv_en > 7);
637 n = intlv_shift_table[intlv_en];
638 return n;
639}
640
641/* Translate the DramAddr given by @dram_addr to an InputAddr. */
642static u64 dram_addr_to_input_addr(struct mem_ctl_info *mci, u64 dram_addr)
643{
644 struct amd64_pvt *pvt;
645 int intlv_shift;
646 u64 input_addr;
647
648 pvt = mci->pvt_info;
649
650 /*
651 * See the start of section 3.4.4 (p. 70, BKDG #26094, K8, revA-E)
652 * concerning translating a DramAddr to an InputAddr.
653 */
Borislav Petkov7f19bf72010-10-21 18:52:53 +0200654 intlv_shift = num_node_interleave_bits(dram_intlv_en(pvt, 0));
Chen, Gong10ef6b02013-10-18 14:29:07 -0700655 input_addr = ((dram_addr >> intlv_shift) & GENMASK_ULL(35, 12)) +
Borislav Petkovf678b8c2010-12-13 19:21:07 +0100656 (dram_addr & 0xfff);
Doug Thompson93c2df52009-05-04 20:46:50 +0200657
Joe Perches956b9ba12012-04-29 17:08:39 -0300658 edac_dbg(2, " Intlv Shift=%d DramAddr=0x%lx maps to InputAddr=0x%lx\n",
659 intlv_shift, (unsigned long)dram_addr,
660 (unsigned long)input_addr);
Doug Thompson93c2df52009-05-04 20:46:50 +0200661
662 return input_addr;
663}
664
665/*
666 * Translate the SysAddr represented by @sys_addr to an InputAddr. It is
667 * assumed that @sys_addr maps to the node given by mci.
668 */
669static u64 sys_addr_to_input_addr(struct mem_ctl_info *mci, u64 sys_addr)
670{
671 u64 input_addr;
672
673 input_addr =
674 dram_addr_to_input_addr(mci, sys_addr_to_dram_addr(mci, sys_addr));
675
Masanari Iidac19ca6c2016-02-08 20:53:12 +0900676 edac_dbg(2, "SysAddr 0x%lx translates to InputAddr 0x%lx\n",
Joe Perches956b9ba12012-04-29 17:08:39 -0300677 (unsigned long)sys_addr, (unsigned long)input_addr);
Doug Thompson93c2df52009-05-04 20:46:50 +0200678
679 return input_addr;
680}
681
Doug Thompson93c2df52009-05-04 20:46:50 +0200682/* Map the Error address to a PAGE and PAGE OFFSET. */
683static inline void error_address_to_page_and_offset(u64 error_address,
Borislav Petkov33ca0642012-08-30 18:01:36 +0200684 struct err_info *err)
Doug Thompson93c2df52009-05-04 20:46:50 +0200685{
Borislav Petkov33ca0642012-08-30 18:01:36 +0200686 err->page = (u32) (error_address >> PAGE_SHIFT);
687 err->offset = ((u32) error_address) & ~PAGE_MASK;
Doug Thompson93c2df52009-05-04 20:46:50 +0200688}
689
690/*
691 * @sys_addr is an error address (a SysAddr) extracted from the MCA NB Address
692 * Low (section 3.6.4.5) and MCA NB Address High (section 3.6.4.6) registers
693 * of a node that detected an ECC memory error. mci represents the node that
694 * the error address maps to (possibly different from the node that detected
695 * the error). Return the number of the csrow that sys_addr maps to, or -1 on
696 * error.
697 */
698static int sys_addr_to_csrow(struct mem_ctl_info *mci, u64 sys_addr)
699{
700 int csrow;
701
702 csrow = input_addr_to_csrow(mci, sys_addr_to_input_addr(mci, sys_addr));
703
704 if (csrow == -1)
Borislav Petkov24f9a7f2010-10-07 18:29:15 +0200705 amd64_mc_err(mci, "Failed to translate InputAddr to csrow for "
706 "address 0x%lx\n", (unsigned long)sys_addr);
Doug Thompson93c2df52009-05-04 20:46:50 +0200707 return csrow;
708}
Doug Thompsone2ce7252009-04-27 15:57:12 +0200709
Borislav Petkovbfc04ae2009-11-12 19:05:07 +0100710static int get_channel_from_ecc_syndrome(struct mem_ctl_info *, u16);
Doug Thompson2da11652009-04-27 16:09:09 +0200711
Doug Thompson2da11652009-04-27 16:09:09 +0200712/*
713 * Determine if the DIMMs have ECC enabled. ECC is enabled ONLY if all the DIMMs
714 * are ECC capable.
715 */
Borislav Petkovd1ea71c2013-12-15 17:54:27 +0100716static unsigned long determine_edac_cap(struct amd64_pvt *pvt)
Doug Thompson2da11652009-04-27 16:09:09 +0200717{
Borislav Petkovcb328502010-12-22 14:28:24 +0100718 u8 bit;
Dan Carpenter1f6189e2011-10-06 02:30:25 -0400719 unsigned long edac_cap = EDAC_FLAG_NONE;
Doug Thompson2da11652009-04-27 16:09:09 +0200720
Borislav Petkova4b4bed2013-08-10 13:54:48 +0200721 bit = (pvt->fam > 0xf || pvt->ext_model >= K8_REV_F)
Doug Thompson2da11652009-04-27 16:09:09 +0200722 ? 19
723 : 17;
724
Borislav Petkov584fcff2009-06-10 18:29:54 +0200725 if (pvt->dclr0 & BIT(bit))
Doug Thompson2da11652009-04-27 16:09:09 +0200726 edac_cap = EDAC_FLAG_SECDED;
727
728 return edac_cap;
729}
730
Borislav Petkovd1ea71c2013-12-15 17:54:27 +0100731static void debug_display_dimm_sizes(struct amd64_pvt *, u8);
Doug Thompson2da11652009-04-27 16:09:09 +0200732
Borislav Petkovd1ea71c2013-12-15 17:54:27 +0100733static void debug_dump_dramcfg_low(struct amd64_pvt *pvt, u32 dclr, int chan)
Borislav Petkov68798e12009-11-03 16:18:33 +0100734{
Joe Perches956b9ba12012-04-29 17:08:39 -0300735 edac_dbg(1, "F2x%d90 (DRAM Cfg Low): 0x%08x\n", chan, dclr);
Borislav Petkov68798e12009-11-03 16:18:33 +0100736
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +0100737 if (pvt->dram_type == MEM_LRDDR3) {
738 u32 dcsm = pvt->csels[chan].csmasks[0];
739 /*
740 * It's assumed all LRDIMMs in a DCT are going to be of
741 * same 'type' until proven otherwise. So, use a cs
742 * value of '0' here to get dcsm value.
743 */
744 edac_dbg(1, " LRDIMM %dx rank multiply\n", (dcsm & 0x3));
745 }
746
747 edac_dbg(1, "All DIMMs support ECC:%s\n",
748 (dclr & BIT(19)) ? "yes" : "no");
749
Borislav Petkov68798e12009-11-03 16:18:33 +0100750
Joe Perches956b9ba12012-04-29 17:08:39 -0300751 edac_dbg(1, " PAR/ERR parity: %s\n",
752 (dclr & BIT(8)) ? "enabled" : "disabled");
Borislav Petkov68798e12009-11-03 16:18:33 +0100753
Borislav Petkova4b4bed2013-08-10 13:54:48 +0200754 if (pvt->fam == 0x10)
Joe Perches956b9ba12012-04-29 17:08:39 -0300755 edac_dbg(1, " DCT 128bit mode width: %s\n",
756 (dclr & BIT(11)) ? "128b" : "64b");
Borislav Petkov68798e12009-11-03 16:18:33 +0100757
Joe Perches956b9ba12012-04-29 17:08:39 -0300758 edac_dbg(1, " x4 logical DIMMs present: L0: %s L1: %s L2: %s L3: %s\n",
759 (dclr & BIT(12)) ? "yes" : "no",
760 (dclr & BIT(13)) ? "yes" : "no",
761 (dclr & BIT(14)) ? "yes" : "no",
762 (dclr & BIT(15)) ? "yes" : "no");
Borislav Petkov68798e12009-11-03 16:18:33 +0100763}
764
Doug Thompson2da11652009-04-27 16:09:09 +0200765/* Display and decode various NB registers for debug purposes. */
Borislav Petkovb2b0c602010-10-08 18:32:29 +0200766static void dump_misc_regs(struct amd64_pvt *pvt)
Doug Thompson2da11652009-04-27 16:09:09 +0200767{
Joe Perches956b9ba12012-04-29 17:08:39 -0300768 edac_dbg(1, "F3xE8 (NB Cap): 0x%08x\n", pvt->nbcap);
Doug Thompson2da11652009-04-27 16:09:09 +0200769
Joe Perches956b9ba12012-04-29 17:08:39 -0300770 edac_dbg(1, " NB two channel DRAM capable: %s\n",
771 (pvt->nbcap & NBCAP_DCT_DUAL) ? "yes" : "no");
Borislav Petkov68798e12009-11-03 16:18:33 +0100772
Joe Perches956b9ba12012-04-29 17:08:39 -0300773 edac_dbg(1, " ECC capable: %s, ChipKill ECC capable: %s\n",
774 (pvt->nbcap & NBCAP_SECDED) ? "yes" : "no",
775 (pvt->nbcap & NBCAP_CHIPKILL) ? "yes" : "no");
Borislav Petkov68798e12009-11-03 16:18:33 +0100776
Borislav Petkovd1ea71c2013-12-15 17:54:27 +0100777 debug_dump_dramcfg_low(pvt, pvt->dclr0, 0);
Doug Thompson2da11652009-04-27 16:09:09 +0200778
Joe Perches956b9ba12012-04-29 17:08:39 -0300779 edac_dbg(1, "F3xB0 (Online Spare): 0x%08x\n", pvt->online_spare);
Doug Thompson2da11652009-04-27 16:09:09 +0200780
Joe Perches956b9ba12012-04-29 17:08:39 -0300781 edac_dbg(1, "F1xF0 (DRAM Hole Address): 0x%08x, base: 0x%08x, offset: 0x%08x\n",
782 pvt->dhar, dhar_base(pvt),
Borislav Petkova4b4bed2013-08-10 13:54:48 +0200783 (pvt->fam == 0xf) ? k8_dhar_offset(pvt)
784 : f10_dhar_offset(pvt));
Doug Thompson2da11652009-04-27 16:09:09 +0200785
Joe Perches956b9ba12012-04-29 17:08:39 -0300786 edac_dbg(1, " DramHoleValid: %s\n", dhar_valid(pvt) ? "yes" : "no");
Doug Thompson2da11652009-04-27 16:09:09 +0200787
Borislav Petkovd1ea71c2013-12-15 17:54:27 +0100788 debug_display_dimm_sizes(pvt, 0);
Borislav Petkov4d796362011-02-03 15:59:57 +0100789
Borislav Petkov8de1d912009-10-16 13:39:30 +0200790 /* everything below this point is Fam10h and above */
Borislav Petkova4b4bed2013-08-10 13:54:48 +0200791 if (pvt->fam == 0xf)
Doug Thompson2da11652009-04-27 16:09:09 +0200792 return;
Borislav Petkov4d796362011-02-03 15:59:57 +0100793
Borislav Petkovd1ea71c2013-12-15 17:54:27 +0100794 debug_display_dimm_sizes(pvt, 1);
Doug Thompson2da11652009-04-27 16:09:09 +0200795
Borislav Petkova3b7db02011-01-19 20:35:12 +0100796 amd64_info("using %s syndromes.\n", ((pvt->ecc_sym_sz == 8) ? "x8" : "x4"));
Borislav Petkovad6a32e2010-03-09 12:46:00 +0100797
Borislav Petkov8de1d912009-10-16 13:39:30 +0200798 /* Only if NOT ganged does dclr1 have valid info */
Borislav Petkov68798e12009-11-03 16:18:33 +0100799 if (!dct_ganging_enabled(pvt))
Borislav Petkovd1ea71c2013-12-15 17:54:27 +0100800 debug_dump_dramcfg_low(pvt, pvt->dclr1, 1);
Doug Thompson2da11652009-04-27 16:09:09 +0200801}
802
Doug Thompson94be4bf2009-04-27 16:12:00 +0200803/*
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -0500804 * See BKDG, F2x[1,0][5C:40], F2[1,0][6C:60]
Doug Thompson94be4bf2009-04-27 16:12:00 +0200805 */
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100806static void prep_chip_selects(struct amd64_pvt *pvt)
Doug Thompson94be4bf2009-04-27 16:12:00 +0200807{
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -0500808 if (pvt->fam == 0xf && pvt->ext_model < K8_REV_F) {
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100809 pvt->csels[0].b_cnt = pvt->csels[1].b_cnt = 8;
810 pvt->csels[0].m_cnt = pvt->csels[1].m_cnt = 8;
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +0100811 } else if (pvt->fam == 0x15 && pvt->model == 0x30) {
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -0500812 pvt->csels[0].b_cnt = pvt->csels[1].b_cnt = 4;
813 pvt->csels[0].m_cnt = pvt->csels[1].m_cnt = 2;
Borislav Petkov9d858bb2009-09-21 14:35:51 +0200814 } else {
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100815 pvt->csels[0].b_cnt = pvt->csels[1].b_cnt = 8;
816 pvt->csels[0].m_cnt = pvt->csels[1].m_cnt = 4;
Doug Thompson94be4bf2009-04-27 16:12:00 +0200817 }
818}
819
820/*
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100821 * Function 2 Offset F10_DCSB0; read in the DCS Base and DCS Mask registers
Doug Thompson94be4bf2009-04-27 16:12:00 +0200822 */
Borislav Petkovb2b0c602010-10-08 18:32:29 +0200823static void read_dct_base_mask(struct amd64_pvt *pvt)
Doug Thompson94be4bf2009-04-27 16:12:00 +0200824{
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500825 int base_reg0, base_reg1, mask_reg0, mask_reg1, cs;
Doug Thompson94be4bf2009-04-27 16:12:00 +0200826
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100827 prep_chip_selects(pvt);
Doug Thompson94be4bf2009-04-27 16:12:00 +0200828
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500829 if (pvt->umc) {
830 base_reg0 = get_umc_base(0) + UMCCH_BASE_ADDR;
831 base_reg1 = get_umc_base(1) + UMCCH_BASE_ADDR;
832 mask_reg0 = get_umc_base(0) + UMCCH_ADDR_MASK;
833 mask_reg1 = get_umc_base(1) + UMCCH_ADDR_MASK;
834 } else {
835 base_reg0 = DCSB0;
836 base_reg1 = DCSB1;
837 mask_reg0 = DCSM0;
838 mask_reg1 = DCSM1;
839 }
840
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100841 for_each_chip_select(cs, 0, pvt) {
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500842 int reg0 = base_reg0 + (cs * 4);
843 int reg1 = base_reg1 + (cs * 4);
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100844 u32 *base0 = &pvt->csels[0].csbases[cs];
845 u32 *base1 = &pvt->csels[1].csbases[cs];
Borislav Petkovb2b0c602010-10-08 18:32:29 +0200846
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500847 if (pvt->umc) {
848 if (!amd_smn_read(pvt->mc_node_id, reg0, base0))
849 edac_dbg(0, " DCSB0[%d]=0x%08x reg: 0x%x\n",
850 cs, *base0, reg0);
Doug Thompson94be4bf2009-04-27 16:12:00 +0200851
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500852 if (!amd_smn_read(pvt->mc_node_id, reg1, base1))
853 edac_dbg(0, " DCSB1[%d]=0x%08x reg: 0x%x\n",
854 cs, *base1, reg1);
855 } else {
856 if (!amd64_read_dct_pci_cfg(pvt, 0, reg0, base0))
857 edac_dbg(0, " DCSB0[%d]=0x%08x reg: F2x%x\n",
858 cs, *base0, reg0);
Borislav Petkovb2b0c602010-10-08 18:32:29 +0200859
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500860 if (pvt->fam == 0xf)
861 continue;
862
863 if (!amd64_read_dct_pci_cfg(pvt, 1, reg0, base1))
864 edac_dbg(0, " DCSB1[%d]=0x%08x reg: F2x%x\n",
865 cs, *base1, (pvt->fam == 0x10) ? reg1
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -0500866 : reg0);
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500867 }
Doug Thompson94be4bf2009-04-27 16:12:00 +0200868 }
869
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100870 for_each_chip_select_mask(cs, 0, pvt) {
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500871 int reg0 = mask_reg0 + (cs * 4);
872 int reg1 = mask_reg1 + (cs * 4);
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100873 u32 *mask0 = &pvt->csels[0].csmasks[cs];
874 u32 *mask1 = &pvt->csels[1].csmasks[cs];
Borislav Petkovb2b0c602010-10-08 18:32:29 +0200875
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500876 if (pvt->umc) {
877 if (!amd_smn_read(pvt->mc_node_id, reg0, mask0))
878 edac_dbg(0, " DCSM0[%d]=0x%08x reg: 0x%x\n",
879 cs, *mask0, reg0);
Doug Thompson94be4bf2009-04-27 16:12:00 +0200880
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500881 if (!amd_smn_read(pvt->mc_node_id, reg1, mask1))
882 edac_dbg(0, " DCSM1[%d]=0x%08x reg: 0x%x\n",
883 cs, *mask1, reg1);
884 } else {
885 if (!amd64_read_dct_pci_cfg(pvt, 0, reg0, mask0))
886 edac_dbg(0, " DCSM0[%d]=0x%08x reg: F2x%x\n",
887 cs, *mask0, reg0);
Borislav Petkovb2b0c602010-10-08 18:32:29 +0200888
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500889 if (pvt->fam == 0xf)
890 continue;
891
892 if (!amd64_read_dct_pci_cfg(pvt, 1, reg0, mask1))
893 edac_dbg(0, " DCSM1[%d]=0x%08x reg: F2x%x\n",
894 cs, *mask1, (pvt->fam == 0x10) ? reg1
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -0500895 : reg0);
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500896 }
Doug Thompson94be4bf2009-04-27 16:12:00 +0200897 }
898}
899
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +0100900static void determine_memory_type(struct amd64_pvt *pvt)
Doug Thompson94be4bf2009-04-27 16:12:00 +0200901{
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +0100902 u32 dram_ctrl, dcsm;
Doug Thompson94be4bf2009-04-27 16:12:00 +0200903
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +0100904 switch (pvt->fam) {
905 case 0xf:
906 if (pvt->ext_model >= K8_REV_F)
907 goto ddr3;
908
909 pvt->dram_type = (pvt->dclr0 & BIT(18)) ? MEM_DDR : MEM_RDDR;
910 return;
911
912 case 0x10:
Borislav Petkov6b4c0bd2009-11-12 15:37:57 +0100913 if (pvt->dchr0 & DDR3_MODE)
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +0100914 goto ddr3;
915
916 pvt->dram_type = (pvt->dclr0 & BIT(16)) ? MEM_DDR2 : MEM_RDDR2;
917 return;
918
919 case 0x15:
920 if (pvt->model < 0x60)
921 goto ddr3;
922
923 /*
924 * Model 0x60h needs special handling:
925 *
926 * We use a Chip Select value of '0' to obtain dcsm.
927 * Theoretically, it is possible to populate LRDIMMs of different
928 * 'Rank' value on a DCT. But this is not the common case. So,
929 * it's reasonable to assume all DIMMs are going to be of same
930 * 'type' until proven otherwise.
931 */
932 amd64_read_dct_pci_cfg(pvt, 0, DRAM_CONTROL, &dram_ctrl);
933 dcsm = pvt->csels[0].csmasks[0];
934
935 if (((dram_ctrl >> 8) & 0x7) == 0x2)
936 pvt->dram_type = MEM_DDR4;
937 else if (pvt->dclr0 & BIT(16))
938 pvt->dram_type = MEM_DDR3;
939 else if (dcsm & 0x3)
940 pvt->dram_type = MEM_LRDDR3;
Borislav Petkov6b4c0bd2009-11-12 15:37:57 +0100941 else
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +0100942 pvt->dram_type = MEM_RDDR3;
943
944 return;
945
946 case 0x16:
947 goto ddr3;
948
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500949 case 0x17:
950 if ((pvt->umc[0].dimm_cfg | pvt->umc[1].dimm_cfg) & BIT(5))
951 pvt->dram_type = MEM_LRDDR4;
952 else if ((pvt->umc[0].dimm_cfg | pvt->umc[1].dimm_cfg) & BIT(4))
953 pvt->dram_type = MEM_RDDR4;
954 else
955 pvt->dram_type = MEM_DDR4;
956 return;
957
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +0100958 default:
959 WARN(1, KERN_ERR "%s: Family??? 0x%x\n", __func__, pvt->fam);
960 pvt->dram_type = MEM_EMPTY;
Doug Thompson94be4bf2009-04-27 16:12:00 +0200961 }
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +0100962 return;
Doug Thompson94be4bf2009-04-27 16:12:00 +0200963
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +0100964ddr3:
965 pvt->dram_type = (pvt->dclr0 & BIT(16)) ? MEM_DDR3 : MEM_RDDR3;
Doug Thompson94be4bf2009-04-27 16:12:00 +0200966}
967
Borislav Petkovcb328502010-12-22 14:28:24 +0100968/* Get the number of DCT channels the memory controller is using. */
Doug Thompsonddff8762009-04-27 16:14:52 +0200969static int k8_early_channel_count(struct amd64_pvt *pvt)
970{
Borislav Petkovcb328502010-12-22 14:28:24 +0100971 int flag;
Doug Thompsonddff8762009-04-27 16:14:52 +0200972
Borislav Petkov9f56da02010-10-01 19:44:53 +0200973 if (pvt->ext_model >= K8_REV_F)
Doug Thompsonddff8762009-04-27 16:14:52 +0200974 /* RevF (NPT) and later */
Borislav Petkov41d8bfa2011-01-18 19:16:08 +0100975 flag = pvt->dclr0 & WIDTH_128;
Borislav Petkov9f56da02010-10-01 19:44:53 +0200976 else
Doug Thompsonddff8762009-04-27 16:14:52 +0200977 /* RevE and earlier */
978 flag = pvt->dclr0 & REVE_WIDTH_128;
Doug Thompsonddff8762009-04-27 16:14:52 +0200979
980 /* not used */
981 pvt->dclr1 = 0;
982
983 return (flag) ? 2 : 1;
984}
985
Borislav Petkov70046622011-01-10 14:37:27 +0100986/* On F10h and later ErrAddr is MC4_ADDR[47:1] */
Borislav Petkova4b4bed2013-08-10 13:54:48 +0200987static u64 get_error_address(struct amd64_pvt *pvt, struct mce *m)
Doug Thompsonddff8762009-04-27 16:14:52 +0200988{
Borislav Petkov2ec591a2015-02-17 10:58:34 +0100989 u16 mce_nid = amd_get_nb_id(m->extcpu);
990 struct mem_ctl_info *mci;
Borislav Petkov70046622011-01-10 14:37:27 +0100991 u8 start_bit = 1;
992 u8 end_bit = 47;
Borislav Petkov2ec591a2015-02-17 10:58:34 +0100993 u64 addr;
994
995 mci = edac_mc_find(mce_nid);
996 if (!mci)
997 return 0;
998
999 pvt = mci->pvt_info;
Borislav Petkov70046622011-01-10 14:37:27 +01001000
Borislav Petkova4b4bed2013-08-10 13:54:48 +02001001 if (pvt->fam == 0xf) {
Borislav Petkov70046622011-01-10 14:37:27 +01001002 start_bit = 3;
1003 end_bit = 39;
1004 }
1005
Chen, Gong10ef6b02013-10-18 14:29:07 -07001006 addr = m->addr & GENMASK_ULL(end_bit, start_bit);
Borislav Petkovc1ae6832011-03-30 15:42:10 +02001007
1008 /*
1009 * Erratum 637 workaround
1010 */
Borislav Petkova4b4bed2013-08-10 13:54:48 +02001011 if (pvt->fam == 0x15) {
Borislav Petkovc1ae6832011-03-30 15:42:10 +02001012 u64 cc6_base, tmp_addr;
1013 u32 tmp;
Daniel J Blueman8b84c8d2012-11-27 14:32:10 +08001014 u8 intlv_en;
Borislav Petkovc1ae6832011-03-30 15:42:10 +02001015
Chen, Gong10ef6b02013-10-18 14:29:07 -07001016 if ((addr & GENMASK_ULL(47, 24)) >> 24 != 0x00fdf7)
Borislav Petkovc1ae6832011-03-30 15:42:10 +02001017 return addr;
1018
Borislav Petkovc1ae6832011-03-30 15:42:10 +02001019
1020 amd64_read_pci_cfg(pvt->F1, DRAM_LOCAL_NODE_LIM, &tmp);
1021 intlv_en = tmp >> 21 & 0x7;
1022
1023 /* add [47:27] + 3 trailing bits */
Chen, Gong10ef6b02013-10-18 14:29:07 -07001024 cc6_base = (tmp & GENMASK_ULL(20, 0)) << 3;
Borislav Petkovc1ae6832011-03-30 15:42:10 +02001025
1026 /* reverse and add DramIntlvEn */
1027 cc6_base |= intlv_en ^ 0x7;
1028
1029 /* pin at [47:24] */
1030 cc6_base <<= 24;
1031
1032 if (!intlv_en)
Chen, Gong10ef6b02013-10-18 14:29:07 -07001033 return cc6_base | (addr & GENMASK_ULL(23, 0));
Borislav Petkovc1ae6832011-03-30 15:42:10 +02001034
1035 amd64_read_pci_cfg(pvt->F1, DRAM_LOCAL_NODE_BASE, &tmp);
1036
1037 /* faster log2 */
Chen, Gong10ef6b02013-10-18 14:29:07 -07001038 tmp_addr = (addr & GENMASK_ULL(23, 12)) << __fls(intlv_en + 1);
Borislav Petkovc1ae6832011-03-30 15:42:10 +02001039
1040 /* OR DramIntlvSel into bits [14:12] */
Chen, Gong10ef6b02013-10-18 14:29:07 -07001041 tmp_addr |= (tmp & GENMASK_ULL(23, 21)) >> 9;
Borislav Petkovc1ae6832011-03-30 15:42:10 +02001042
1043 /* add remaining [11:0] bits from original MC4_ADDR */
Chen, Gong10ef6b02013-10-18 14:29:07 -07001044 tmp_addr |= addr & GENMASK_ULL(11, 0);
Borislav Petkovc1ae6832011-03-30 15:42:10 +02001045
1046 return cc6_base | tmp_addr;
1047 }
1048
1049 return addr;
Doug Thompsonddff8762009-04-27 16:14:52 +02001050}
1051
Daniel J Bluemane2c0bff2012-11-30 16:44:19 +08001052static struct pci_dev *pci_get_related_function(unsigned int vendor,
1053 unsigned int device,
1054 struct pci_dev *related)
1055{
1056 struct pci_dev *dev = NULL;
1057
1058 while ((dev = pci_get_device(vendor, device, dev))) {
1059 if (pci_domain_nr(dev->bus) == pci_domain_nr(related->bus) &&
1060 (dev->bus->number == related->bus->number) &&
1061 (PCI_SLOT(dev->devfn) == PCI_SLOT(related->devfn)))
1062 break;
1063 }
1064
1065 return dev;
1066}
1067
Borislav Petkov7f19bf72010-10-21 18:52:53 +02001068static void read_dram_base_limit_regs(struct amd64_pvt *pvt, unsigned range)
Doug Thompsonddff8762009-04-27 16:14:52 +02001069{
Daniel J Bluemane2c0bff2012-11-30 16:44:19 +08001070 struct amd_northbridge *nb;
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001071 struct pci_dev *f1 = NULL;
1072 unsigned int pci_func;
Borislav Petkov71d2a322011-02-21 19:37:24 +01001073 int off = range << 3;
Daniel J Bluemane2c0bff2012-11-30 16:44:19 +08001074 u32 llim;
Doug Thompsonddff8762009-04-27 16:14:52 +02001075
Borislav Petkov7f19bf72010-10-21 18:52:53 +02001076 amd64_read_pci_cfg(pvt->F1, DRAM_BASE_LO + off, &pvt->ranges[range].base.lo);
1077 amd64_read_pci_cfg(pvt->F1, DRAM_LIMIT_LO + off, &pvt->ranges[range].lim.lo);
Doug Thompsonddff8762009-04-27 16:14:52 +02001078
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001079 if (pvt->fam == 0xf)
Borislav Petkov7f19bf72010-10-21 18:52:53 +02001080 return;
Doug Thompsonddff8762009-04-27 16:14:52 +02001081
Borislav Petkov7f19bf72010-10-21 18:52:53 +02001082 if (!dram_rw(pvt, range))
1083 return;
Doug Thompsonddff8762009-04-27 16:14:52 +02001084
Borislav Petkov7f19bf72010-10-21 18:52:53 +02001085 amd64_read_pci_cfg(pvt->F1, DRAM_BASE_HI + off, &pvt->ranges[range].base.hi);
1086 amd64_read_pci_cfg(pvt->F1, DRAM_LIMIT_HI + off, &pvt->ranges[range].lim.hi);
Borislav Petkovf08e4572011-03-21 20:45:06 +01001087
Daniel J Bluemane2c0bff2012-11-30 16:44:19 +08001088 /* F15h: factor in CC6 save area by reading dst node's limit reg */
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001089 if (pvt->fam != 0x15)
Daniel J Bluemane2c0bff2012-11-30 16:44:19 +08001090 return;
Borislav Petkovf08e4572011-03-21 20:45:06 +01001091
Daniel J Bluemane2c0bff2012-11-30 16:44:19 +08001092 nb = node_to_amd_nb(dram_dst_node(pvt, range));
1093 if (WARN_ON(!nb))
1094 return;
Borislav Petkovf08e4572011-03-21 20:45:06 +01001095
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01001096 if (pvt->model == 0x60)
1097 pci_func = PCI_DEVICE_ID_AMD_15H_M60H_NB_F1;
1098 else if (pvt->model == 0x30)
1099 pci_func = PCI_DEVICE_ID_AMD_15H_M30H_NB_F1;
1100 else
1101 pci_func = PCI_DEVICE_ID_AMD_15H_NB_F1;
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001102
1103 f1 = pci_get_related_function(nb->misc->vendor, pci_func, nb->misc);
Daniel J Bluemane2c0bff2012-11-30 16:44:19 +08001104 if (WARN_ON(!f1))
1105 return;
Borislav Petkovf08e4572011-03-21 20:45:06 +01001106
Daniel J Bluemane2c0bff2012-11-30 16:44:19 +08001107 amd64_read_pci_cfg(f1, DRAM_LOCAL_NODE_LIM, &llim);
Borislav Petkovf08e4572011-03-21 20:45:06 +01001108
Chen, Gong10ef6b02013-10-18 14:29:07 -07001109 pvt->ranges[range].lim.lo &= GENMASK_ULL(15, 0);
Borislav Petkovf08e4572011-03-21 20:45:06 +01001110
Daniel J Bluemane2c0bff2012-11-30 16:44:19 +08001111 /* {[39:27],111b} */
1112 pvt->ranges[range].lim.lo |= ((llim & 0x1fff) << 3 | 0x7) << 16;
Borislav Petkovf08e4572011-03-21 20:45:06 +01001113
Chen, Gong10ef6b02013-10-18 14:29:07 -07001114 pvt->ranges[range].lim.hi &= GENMASK_ULL(7, 0);
Borislav Petkovf08e4572011-03-21 20:45:06 +01001115
Daniel J Bluemane2c0bff2012-11-30 16:44:19 +08001116 /* [47:40] */
1117 pvt->ranges[range].lim.hi |= llim >> 13;
1118
1119 pci_dev_put(f1);
Doug Thompsonddff8762009-04-27 16:14:52 +02001120}
1121
Borislav Petkovf192c7b2011-01-10 14:24:32 +01001122static void k8_map_sysaddr_to_csrow(struct mem_ctl_info *mci, u64 sys_addr,
Borislav Petkov33ca0642012-08-30 18:01:36 +02001123 struct err_info *err)
Doug Thompsonddff8762009-04-27 16:14:52 +02001124{
Borislav Petkovf192c7b2011-01-10 14:24:32 +01001125 struct amd64_pvt *pvt = mci->pvt_info;
Doug Thompsonddff8762009-04-27 16:14:52 +02001126
Borislav Petkov33ca0642012-08-30 18:01:36 +02001127 error_address_to_page_and_offset(sys_addr, err);
Mauro Carvalho Chehabab5a5032012-04-16 15:03:50 -03001128
1129 /*
1130 * Find out which node the error address belongs to. This may be
1131 * different from the node that detected the error.
1132 */
Borislav Petkov33ca0642012-08-30 18:01:36 +02001133 err->src_mci = find_mc_by_sys_addr(mci, sys_addr);
1134 if (!err->src_mci) {
Mauro Carvalho Chehabab5a5032012-04-16 15:03:50 -03001135 amd64_mc_err(mci, "failed to map error addr 0x%lx to a node\n",
1136 (unsigned long)sys_addr);
Borislav Petkov33ca0642012-08-30 18:01:36 +02001137 err->err_code = ERR_NODE;
Mauro Carvalho Chehabab5a5032012-04-16 15:03:50 -03001138 return;
1139 }
1140
1141 /* Now map the sys_addr to a CSROW */
Borislav Petkov33ca0642012-08-30 18:01:36 +02001142 err->csrow = sys_addr_to_csrow(err->src_mci, sys_addr);
1143 if (err->csrow < 0) {
1144 err->err_code = ERR_CSROW;
Mauro Carvalho Chehabab5a5032012-04-16 15:03:50 -03001145 return;
1146 }
1147
Doug Thompsonddff8762009-04-27 16:14:52 +02001148 /* CHIPKILL enabled */
Borislav Petkovf192c7b2011-01-10 14:24:32 +01001149 if (pvt->nbcfg & NBCFG_CHIPKILL) {
Borislav Petkov33ca0642012-08-30 18:01:36 +02001150 err->channel = get_channel_from_ecc_syndrome(mci, err->syndrome);
1151 if (err->channel < 0) {
Doug Thompsonddff8762009-04-27 16:14:52 +02001152 /*
1153 * Syndrome didn't map, so we don't know which of the
1154 * 2 DIMMs is in error. So we need to ID 'both' of them
1155 * as suspect.
1156 */
Borislav Petkov33ca0642012-08-30 18:01:36 +02001157 amd64_mc_warn(err->src_mci, "unknown syndrome 0x%04x - "
Mauro Carvalho Chehabab5a5032012-04-16 15:03:50 -03001158 "possible error reporting race\n",
Borislav Petkov33ca0642012-08-30 18:01:36 +02001159 err->syndrome);
1160 err->err_code = ERR_CHANNEL;
Doug Thompsonddff8762009-04-27 16:14:52 +02001161 return;
1162 }
1163 } else {
1164 /*
1165 * non-chipkill ecc mode
1166 *
1167 * The k8 documentation is unclear about how to determine the
1168 * channel number when using non-chipkill memory. This method
1169 * was obtained from email communication with someone at AMD.
1170 * (Wish the email was placed in this comment - norsk)
1171 */
Borislav Petkov33ca0642012-08-30 18:01:36 +02001172 err->channel = ((sys_addr & BIT(3)) != 0);
Doug Thompsonddff8762009-04-27 16:14:52 +02001173 }
Doug Thompsonddff8762009-04-27 16:14:52 +02001174}
1175
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001176static int ddr2_cs_size(unsigned i, bool dct_width)
Doug Thompsonddff8762009-04-27 16:14:52 +02001177{
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001178 unsigned shift = 0;
Doug Thompsonddff8762009-04-27 16:14:52 +02001179
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001180 if (i <= 2)
1181 shift = i;
1182 else if (!(i & 0x1))
1183 shift = i >> 1;
Borislav Petkov1433eb92009-10-21 13:44:36 +02001184 else
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001185 shift = (i + 1) >> 1;
Doug Thompsonddff8762009-04-27 16:14:52 +02001186
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001187 return 128 << (shift + !!dct_width);
1188}
1189
1190static int k8_dbam_to_chip_select(struct amd64_pvt *pvt, u8 dct,
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01001191 unsigned cs_mode, int cs_mask_nr)
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001192{
1193 u32 dclr = dct ? pvt->dclr1 : pvt->dclr0;
1194
1195 if (pvt->ext_model >= K8_REV_F) {
1196 WARN_ON(cs_mode > 11);
1197 return ddr2_cs_size(cs_mode, dclr & WIDTH_128);
1198 }
1199 else if (pvt->ext_model >= K8_REV_D) {
Borislav Petkov11b0a312011-11-09 21:28:43 +01001200 unsigned diff;
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001201 WARN_ON(cs_mode > 10);
1202
Borislav Petkov11b0a312011-11-09 21:28:43 +01001203 /*
1204 * the below calculation, besides trying to win an obfuscated C
1205 * contest, maps cs_mode values to DIMM chip select sizes. The
1206 * mappings are:
1207 *
1208 * cs_mode CS size (mb)
1209 * ======= ============
1210 * 0 32
1211 * 1 64
1212 * 2 128
1213 * 3 128
1214 * 4 256
1215 * 5 512
1216 * 6 256
1217 * 7 512
1218 * 8 1024
1219 * 9 1024
1220 * 10 2048
1221 *
1222 * Basically, it calculates a value with which to shift the
1223 * smallest CS size of 32MB.
1224 *
1225 * ddr[23]_cs_size have a similar purpose.
1226 */
1227 diff = cs_mode/3 + (unsigned)(cs_mode > 5);
1228
1229 return 32 << (cs_mode - diff);
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001230 }
1231 else {
1232 WARN_ON(cs_mode > 6);
1233 return 32 << cs_mode;
1234 }
Doug Thompsonddff8762009-04-27 16:14:52 +02001235}
1236
Doug Thompson1afd3c92009-04-27 16:16:50 +02001237/*
1238 * Get the number of DCT channels in use.
1239 *
1240 * Return:
1241 * number of Memory Channels in operation
1242 * Pass back:
1243 * contents of the DCL0_LOW register
1244 */
Borislav Petkov7d20d142011-01-07 17:58:04 +01001245static int f1x_early_channel_count(struct amd64_pvt *pvt)
Doug Thompson1afd3c92009-04-27 16:16:50 +02001246{
Borislav Petkov6ba5dcd2009-10-13 19:26:55 +02001247 int i, j, channels = 0;
Doug Thompsonddff8762009-04-27 16:14:52 +02001248
Borislav Petkov7d20d142011-01-07 17:58:04 +01001249 /* On F10h, if we are in 128 bit mode, then we are using 2 channels */
Borislav Petkova4b4bed2013-08-10 13:54:48 +02001250 if (pvt->fam == 0x10 && (pvt->dclr0 & WIDTH_128))
Borislav Petkov7d20d142011-01-07 17:58:04 +01001251 return 2;
Doug Thompson1afd3c92009-04-27 16:16:50 +02001252
1253 /*
Borislav Petkovd16149e2009-10-16 19:55:49 +02001254 * Need to check if in unganged mode: In such, there are 2 channels,
1255 * but they are not in 128 bit mode and thus the above 'dclr0' status
1256 * bit will be OFF.
Doug Thompson1afd3c92009-04-27 16:16:50 +02001257 *
1258 * Need to check DCT0[0] and DCT1[0] to see if only one of them has
1259 * their CSEnable bit on. If so, then SINGLE DIMM case.
1260 */
Joe Perches956b9ba12012-04-29 17:08:39 -03001261 edac_dbg(0, "Data width is not 128 bits - need more decoding\n");
Doug Thompson1afd3c92009-04-27 16:16:50 +02001262
1263 /*
1264 * Check DRAM Bank Address Mapping values for each DIMM to see if there
1265 * is more than just one DIMM present in unganged mode. Need to check
1266 * both controllers since DIMMs can be placed in either one.
1267 */
Borislav Petkov525a1b22010-12-21 15:53:27 +01001268 for (i = 0; i < 2; i++) {
1269 u32 dbam = (i ? pvt->dbam1 : pvt->dbam0);
Doug Thompson1afd3c92009-04-27 16:16:50 +02001270
Wan Wei57a30852009-08-07 17:04:49 +02001271 for (j = 0; j < 4; j++) {
1272 if (DBAM_DIMM(j, dbam) > 0) {
1273 channels++;
1274 break;
1275 }
1276 }
Doug Thompson1afd3c92009-04-27 16:16:50 +02001277 }
1278
Borislav Petkovd16149e2009-10-16 19:55:49 +02001279 if (channels > 2)
1280 channels = 2;
1281
Borislav Petkov24f9a7f2010-10-07 18:29:15 +02001282 amd64_info("MCT channel count: %d\n", channels);
Doug Thompson1afd3c92009-04-27 16:16:50 +02001283
1284 return channels;
Doug Thompson1afd3c92009-04-27 16:16:50 +02001285}
1286
Yazen Ghannamf1cbbec2016-11-17 17:57:35 -05001287static int f17_early_channel_count(struct amd64_pvt *pvt)
1288{
1289 int i, channels = 0;
1290
1291 /* SDP Control bit 31 (SdpInit) is clear for unused UMC channels */
1292 for (i = 0; i < NUM_UMCS; i++)
1293 channels += !!(pvt->umc[i].sdp_ctrl & UMC_SDP_INIT);
1294
1295 amd64_info("MCT channel count: %d\n", channels);
1296
1297 return channels;
1298}
1299
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001300static int ddr3_cs_size(unsigned i, bool dct_width)
Doug Thompson1afd3c92009-04-27 16:16:50 +02001301{
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001302 unsigned shift = 0;
1303 int cs_size = 0;
1304
1305 if (i == 0 || i == 3 || i == 4)
1306 cs_size = -1;
1307 else if (i <= 2)
1308 shift = i;
1309 else if (i == 12)
1310 shift = 7;
1311 else if (!(i & 0x1))
1312 shift = i >> 1;
1313 else
1314 shift = (i + 1) >> 1;
1315
1316 if (cs_size != -1)
1317 cs_size = (128 * (1 << !!dct_width)) << shift;
1318
1319 return cs_size;
1320}
1321
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01001322static int ddr3_lrdimm_cs_size(unsigned i, unsigned rank_multiply)
1323{
1324 unsigned shift = 0;
1325 int cs_size = 0;
1326
1327 if (i < 4 || i == 6)
1328 cs_size = -1;
1329 else if (i == 12)
1330 shift = 7;
1331 else if (!(i & 0x1))
1332 shift = i >> 1;
1333 else
1334 shift = (i + 1) >> 1;
1335
1336 if (cs_size != -1)
1337 cs_size = rank_multiply * (128 << shift);
1338
1339 return cs_size;
1340}
1341
1342static int ddr4_cs_size(unsigned i)
1343{
1344 int cs_size = 0;
1345
1346 if (i == 0)
1347 cs_size = -1;
1348 else if (i == 1)
1349 cs_size = 1024;
1350 else
1351 /* Min cs_size = 1G */
1352 cs_size = 1024 * (1 << (i >> 1));
1353
1354 return cs_size;
1355}
1356
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001357static int f10_dbam_to_chip_select(struct amd64_pvt *pvt, u8 dct,
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01001358 unsigned cs_mode, int cs_mask_nr)
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001359{
1360 u32 dclr = dct ? pvt->dclr1 : pvt->dclr0;
1361
1362 WARN_ON(cs_mode > 11);
Borislav Petkov1433eb92009-10-21 13:44:36 +02001363
1364 if (pvt->dchr0 & DDR3_MODE || pvt->dchr1 & DDR3_MODE)
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001365 return ddr3_cs_size(cs_mode, dclr & WIDTH_128);
Borislav Petkov1433eb92009-10-21 13:44:36 +02001366 else
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001367 return ddr2_cs_size(cs_mode, dclr & WIDTH_128);
1368}
Borislav Petkov1433eb92009-10-21 13:44:36 +02001369
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001370/*
1371 * F15h supports only 64bit DCT interfaces
1372 */
1373static int f15_dbam_to_chip_select(struct amd64_pvt *pvt, u8 dct,
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01001374 unsigned cs_mode, int cs_mask_nr)
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001375{
1376 WARN_ON(cs_mode > 12);
1377
1378 return ddr3_cs_size(cs_mode, false);
Doug Thompson1afd3c92009-04-27 16:16:50 +02001379}
1380
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01001381/* F15h M60h supports DDR4 mapping as well.. */
1382static int f15_m60h_dbam_to_chip_select(struct amd64_pvt *pvt, u8 dct,
1383 unsigned cs_mode, int cs_mask_nr)
1384{
1385 int cs_size;
1386 u32 dcsm = pvt->csels[dct].csmasks[cs_mask_nr];
1387
1388 WARN_ON(cs_mode > 12);
1389
1390 if (pvt->dram_type == MEM_DDR4) {
1391 if (cs_mode > 9)
1392 return -1;
1393
1394 cs_size = ddr4_cs_size(cs_mode);
1395 } else if (pvt->dram_type == MEM_LRDDR3) {
1396 unsigned rank_multiply = dcsm & 0xf;
1397
1398 if (rank_multiply == 3)
1399 rank_multiply = 4;
1400 cs_size = ddr3_lrdimm_cs_size(cs_mode, rank_multiply);
1401 } else {
1402 /* Minimum cs size is 512mb for F15hM60h*/
1403 if (cs_mode == 0x1)
1404 return -1;
1405
1406 cs_size = ddr3_cs_size(cs_mode, false);
1407 }
1408
1409 return cs_size;
1410}
1411
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -05001412/*
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001413 * F16h and F15h model 30h have only limited cs_modes.
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -05001414 */
1415static int f16_dbam_to_chip_select(struct amd64_pvt *pvt, u8 dct,
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01001416 unsigned cs_mode, int cs_mask_nr)
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -05001417{
1418 WARN_ON(cs_mode > 12);
1419
1420 if (cs_mode == 6 || cs_mode == 8 ||
1421 cs_mode == 9 || cs_mode == 12)
1422 return -1;
1423 else
1424 return ddr3_cs_size(cs_mode, false);
1425}
1426
Yazen Ghannamf1cbbec2016-11-17 17:57:35 -05001427static int f17_base_addr_to_cs_size(struct amd64_pvt *pvt, u8 umc,
1428 unsigned int cs_mode, int csrow_nr)
1429{
1430 u32 base_addr = pvt->csels[umc].csbases[csrow_nr];
1431
1432 /* Each mask is used for every two base addresses. */
1433 u32 addr_mask = pvt->csels[umc].csmasks[csrow_nr >> 1];
1434
1435 /* Register [31:1] = Address [39:9]. Size is in kBs here. */
1436 u32 size = ((addr_mask >> 1) - (base_addr >> 1) + 1) >> 1;
1437
1438 edac_dbg(1, "BaseAddr: 0x%x, AddrMask: 0x%x\n", base_addr, addr_mask);
1439
1440 /* Return size in MBs. */
1441 return size >> 10;
1442}
1443
Borislav Petkov5a5d2372011-01-17 17:52:57 +01001444static void read_dram_ctl_register(struct amd64_pvt *pvt)
Doug Thompson6163b5d2009-04-27 16:20:17 +02001445{
Doug Thompson6163b5d2009-04-27 16:20:17 +02001446
Borislav Petkova4b4bed2013-08-10 13:54:48 +02001447 if (pvt->fam == 0xf)
Borislav Petkov5a5d2372011-01-17 17:52:57 +01001448 return;
1449
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -05001450 if (!amd64_read_pci_cfg(pvt->F2, DCT_SEL_LO, &pvt->dct_sel_lo)) {
Joe Perches956b9ba12012-04-29 17:08:39 -03001451 edac_dbg(0, "F2x110 (DCTSelLow): 0x%08x, High range addrs at: 0x%x\n",
1452 pvt->dct_sel_lo, dct_sel_baseaddr(pvt));
Doug Thompson6163b5d2009-04-27 16:20:17 +02001453
Joe Perches956b9ba12012-04-29 17:08:39 -03001454 edac_dbg(0, " DCTs operate in %s mode\n",
1455 (dct_ganging_enabled(pvt) ? "ganged" : "unganged"));
Doug Thompson6163b5d2009-04-27 16:20:17 +02001456
Borislav Petkov72381bd2009-10-09 19:14:43 +02001457 if (!dct_ganging_enabled(pvt))
Joe Perches956b9ba12012-04-29 17:08:39 -03001458 edac_dbg(0, " Address range split per DCT: %s\n",
1459 (dct_high_range_enabled(pvt) ? "yes" : "no"));
Borislav Petkov72381bd2009-10-09 19:14:43 +02001460
Joe Perches956b9ba12012-04-29 17:08:39 -03001461 edac_dbg(0, " data interleave for ECC: %s, DRAM cleared since last warm reset: %s\n",
1462 (dct_data_intlv_enabled(pvt) ? "enabled" : "disabled"),
1463 (dct_memory_cleared(pvt) ? "yes" : "no"));
Borislav Petkov72381bd2009-10-09 19:14:43 +02001464
Joe Perches956b9ba12012-04-29 17:08:39 -03001465 edac_dbg(0, " channel interleave: %s, "
1466 "interleave bits selector: 0x%x\n",
1467 (dct_interleave_enabled(pvt) ? "enabled" : "disabled"),
1468 dct_sel_interleave_addr(pvt));
Doug Thompson6163b5d2009-04-27 16:20:17 +02001469 }
1470
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -05001471 amd64_read_pci_cfg(pvt->F2, DCT_SEL_HI, &pvt->dct_sel_hi);
Doug Thompson6163b5d2009-04-27 16:20:17 +02001472}
1473
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001474/*
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001475 * Determine channel (DCT) based on the interleaving mode (see F15h M30h BKDG,
1476 * 2.10.12 Memory Interleaving Modes).
1477 */
1478static u8 f15_m30h_determine_channel(struct amd64_pvt *pvt, u64 sys_addr,
1479 u8 intlv_en, int num_dcts_intlv,
1480 u32 dct_sel)
1481{
1482 u8 channel = 0;
1483 u8 select;
1484
1485 if (!(intlv_en))
1486 return (u8)(dct_sel);
1487
1488 if (num_dcts_intlv == 2) {
1489 select = (sys_addr >> 8) & 0x3;
1490 channel = select ? 0x3 : 0;
Aravind Gopalakrishnan9d0e8d82014-01-21 15:03:36 -06001491 } else if (num_dcts_intlv == 4) {
1492 u8 intlv_addr = dct_sel_interleave_addr(pvt);
1493 switch (intlv_addr) {
1494 case 0x4:
1495 channel = (sys_addr >> 8) & 0x3;
1496 break;
1497 case 0x5:
1498 channel = (sys_addr >> 9) & 0x3;
1499 break;
1500 }
1501 }
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001502 return channel;
1503}
1504
1505/*
Borislav Petkov229a7a12010-12-09 18:57:54 +01001506 * Determine channel (DCT) based on the interleaving mode: F10h BKDG, 2.8.9 Memory
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001507 * Interleaving Modes.
1508 */
Borislav Petkovb15f0fc2011-01-17 15:59:58 +01001509static u8 f1x_determine_channel(struct amd64_pvt *pvt, u64 sys_addr,
Borislav Petkov229a7a12010-12-09 18:57:54 +01001510 bool hi_range_sel, u8 intlv_en)
Doug Thompson6163b5d2009-04-27 16:20:17 +02001511{
Borislav Petkov151fa712011-02-21 19:33:10 +01001512 u8 dct_sel_high = (pvt->dct_sel_lo >> 1) & 1;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001513
1514 if (dct_ganging_enabled(pvt))
Borislav Petkov229a7a12010-12-09 18:57:54 +01001515 return 0;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001516
Borislav Petkov229a7a12010-12-09 18:57:54 +01001517 if (hi_range_sel)
1518 return dct_sel_high;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001519
Borislav Petkov229a7a12010-12-09 18:57:54 +01001520 /*
1521 * see F2x110[DctSelIntLvAddr] - channel interleave mode
1522 */
1523 if (dct_interleave_enabled(pvt)) {
1524 u8 intlv_addr = dct_sel_interleave_addr(pvt);
Doug Thompson6163b5d2009-04-27 16:20:17 +02001525
Borislav Petkov229a7a12010-12-09 18:57:54 +01001526 /* return DCT select function: 0=DCT0, 1=DCT1 */
1527 if (!intlv_addr)
1528 return sys_addr >> 6 & 1;
1529
1530 if (intlv_addr & 0x2) {
1531 u8 shift = intlv_addr & 0x1 ? 9 : 6;
Yazen Ghannamdc0a50a82016-08-03 10:59:15 -04001532 u32 temp = hweight_long((u32) ((sys_addr >> 16) & 0x1F)) & 1;
Borislav Petkov229a7a12010-12-09 18:57:54 +01001533
1534 return ((sys_addr >> shift) & 1) ^ temp;
1535 }
1536
Yazen Ghannamdc0a50a82016-08-03 10:59:15 -04001537 if (intlv_addr & 0x4) {
1538 u8 shift = intlv_addr & 0x1 ? 9 : 8;
1539
1540 return (sys_addr >> shift) & 1;
1541 }
1542
Borislav Petkov229a7a12010-12-09 18:57:54 +01001543 return (sys_addr >> (12 + hweight8(intlv_en))) & 1;
1544 }
1545
1546 if (dct_high_range_enabled(pvt))
1547 return ~dct_sel_high & 1;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001548
1549 return 0;
1550}
1551
Borislav Petkovc8e518d2010-12-10 19:49:19 +01001552/* Convert the sys_addr to the normalized DCT address */
Daniel J Bluemanc7e53012012-11-30 16:44:20 +08001553static u64 f1x_get_norm_dct_addr(struct amd64_pvt *pvt, u8 range,
Borislav Petkovc8e518d2010-12-10 19:49:19 +01001554 u64 sys_addr, bool hi_rng,
1555 u32 dct_sel_base_addr)
Doug Thompson6163b5d2009-04-27 16:20:17 +02001556{
1557 u64 chan_off;
Borislav Petkovc8e518d2010-12-10 19:49:19 +01001558 u64 dram_base = get_dram_base(pvt, range);
1559 u64 hole_off = f10_dhar_offset(pvt);
Dan Carpenter6f3508f2016-01-20 12:54:51 +03001560 u64 dct_sel_base_off = (u64)(pvt->dct_sel_hi & 0xFFFFFC00) << 16;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001561
Borislav Petkovc8e518d2010-12-10 19:49:19 +01001562 if (hi_rng) {
1563 /*
1564 * if
1565 * base address of high range is below 4Gb
1566 * (bits [47:27] at [31:11])
1567 * DRAM address space on this DCT is hoisted above 4Gb &&
1568 * sys_addr > 4Gb
1569 *
1570 * remove hole offset from sys_addr
1571 * else
1572 * remove high range offset from sys_addr
1573 */
1574 if ((!(dct_sel_base_addr >> 16) ||
1575 dct_sel_base_addr < dhar_base(pvt)) &&
Borislav Petkov972ea172011-02-21 19:43:02 +01001576 dhar_valid(pvt) &&
Borislav Petkovc8e518d2010-12-10 19:49:19 +01001577 (sys_addr >= BIT_64(32)))
Borislav Petkovbc21fa52010-11-11 17:29:13 +01001578 chan_off = hole_off;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001579 else
1580 chan_off = dct_sel_base_off;
1581 } else {
Borislav Petkovc8e518d2010-12-10 19:49:19 +01001582 /*
1583 * if
1584 * we have a valid hole &&
1585 * sys_addr > 4Gb
1586 *
1587 * remove hole
1588 * else
1589 * remove dram base to normalize to DCT address
1590 */
Borislav Petkov972ea172011-02-21 19:43:02 +01001591 if (dhar_valid(pvt) && (sys_addr >= BIT_64(32)))
Borislav Petkovbc21fa52010-11-11 17:29:13 +01001592 chan_off = hole_off;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001593 else
Borislav Petkovc8e518d2010-12-10 19:49:19 +01001594 chan_off = dram_base;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001595 }
1596
Chen, Gong10ef6b02013-10-18 14:29:07 -07001597 return (sys_addr & GENMASK_ULL(47,6)) - (chan_off & GENMASK_ULL(47,23));
Doug Thompson6163b5d2009-04-27 16:20:17 +02001598}
1599
Doug Thompson6163b5d2009-04-27 16:20:17 +02001600/*
1601 * checks if the csrow passed in is marked as SPARED, if so returns the new
1602 * spare row
1603 */
Borislav Petkov11c75ea2010-11-29 19:49:02 +01001604static int f10_process_possible_spare(struct amd64_pvt *pvt, u8 dct, int csrow)
Doug Thompson6163b5d2009-04-27 16:20:17 +02001605{
Borislav Petkov614ec9d2011-01-13 18:02:22 +01001606 int tmp_cs;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001607
Borislav Petkov614ec9d2011-01-13 18:02:22 +01001608 if (online_spare_swap_done(pvt, dct) &&
1609 csrow == online_spare_bad_dramcs(pvt, dct)) {
1610
1611 for_each_chip_select(tmp_cs, dct, pvt) {
1612 if (chip_select_base(tmp_cs, dct, pvt) & 0x2) {
1613 csrow = tmp_cs;
1614 break;
1615 }
1616 }
Doug Thompson6163b5d2009-04-27 16:20:17 +02001617 }
1618 return csrow;
1619}
1620
1621/*
1622 * Iterate over the DRAM DCT "base" and "mask" registers looking for a
1623 * SystemAddr match on the specified 'ChannelSelect' and 'NodeID'
1624 *
1625 * Return:
1626 * -EINVAL: NOT FOUND
1627 * 0..csrow = Chip-Select Row
1628 */
Daniel J Bluemanc7e53012012-11-30 16:44:20 +08001629static int f1x_lookup_addr_in_dct(u64 in_addr, u8 nid, u8 dct)
Doug Thompson6163b5d2009-04-27 16:20:17 +02001630{
1631 struct mem_ctl_info *mci;
1632 struct amd64_pvt *pvt;
Borislav Petkov11c75ea2010-11-29 19:49:02 +01001633 u64 cs_base, cs_mask;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001634 int cs_found = -EINVAL;
1635 int csrow;
1636
Borislav Petkov2ec591a2015-02-17 10:58:34 +01001637 mci = edac_mc_find(nid);
Doug Thompson6163b5d2009-04-27 16:20:17 +02001638 if (!mci)
1639 return cs_found;
1640
1641 pvt = mci->pvt_info;
1642
Joe Perches956b9ba12012-04-29 17:08:39 -03001643 edac_dbg(1, "input addr: 0x%llx, DCT: %d\n", in_addr, dct);
Doug Thompson6163b5d2009-04-27 16:20:17 +02001644
Borislav Petkov11c75ea2010-11-29 19:49:02 +01001645 for_each_chip_select(csrow, dct, pvt) {
1646 if (!csrow_enabled(csrow, dct, pvt))
Doug Thompson6163b5d2009-04-27 16:20:17 +02001647 continue;
1648
Borislav Petkov11c75ea2010-11-29 19:49:02 +01001649 get_cs_base_and_mask(pvt, csrow, dct, &cs_base, &cs_mask);
Doug Thompson6163b5d2009-04-27 16:20:17 +02001650
Joe Perches956b9ba12012-04-29 17:08:39 -03001651 edac_dbg(1, " CSROW=%d CSBase=0x%llx CSMask=0x%llx\n",
1652 csrow, cs_base, cs_mask);
Doug Thompson6163b5d2009-04-27 16:20:17 +02001653
Borislav Petkov11c75ea2010-11-29 19:49:02 +01001654 cs_mask = ~cs_mask;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001655
Joe Perches956b9ba12012-04-29 17:08:39 -03001656 edac_dbg(1, " (InputAddr & ~CSMask)=0x%llx (CSBase & ~CSMask)=0x%llx\n",
1657 (in_addr & cs_mask), (cs_base & cs_mask));
Doug Thompson6163b5d2009-04-27 16:20:17 +02001658
Borislav Petkov11c75ea2010-11-29 19:49:02 +01001659 if ((in_addr & cs_mask) == (cs_base & cs_mask)) {
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001660 if (pvt->fam == 0x15 && pvt->model >= 0x30) {
1661 cs_found = csrow;
1662 break;
1663 }
Borislav Petkov11c75ea2010-11-29 19:49:02 +01001664 cs_found = f10_process_possible_spare(pvt, dct, csrow);
Doug Thompson6163b5d2009-04-27 16:20:17 +02001665
Joe Perches956b9ba12012-04-29 17:08:39 -03001666 edac_dbg(1, " MATCH csrow=%d\n", cs_found);
Doug Thompson6163b5d2009-04-27 16:20:17 +02001667 break;
1668 }
1669 }
1670 return cs_found;
1671}
1672
Borislav Petkov95b0ef52011-01-11 22:08:07 +01001673/*
1674 * See F2x10C. Non-interleaved graphics framebuffer memory under the 16G is
1675 * swapped with a region located at the bottom of memory so that the GPU can use
1676 * the interleaved region and thus two channels.
1677 */
Borislav Petkovb15f0fc2011-01-17 15:59:58 +01001678static u64 f1x_swap_interleaved_region(struct amd64_pvt *pvt, u64 sys_addr)
Borislav Petkov95b0ef52011-01-11 22:08:07 +01001679{
1680 u32 swap_reg, swap_base, swap_limit, rgn_size, tmp_addr;
1681
Borislav Petkova4b4bed2013-08-10 13:54:48 +02001682 if (pvt->fam == 0x10) {
Borislav Petkov95b0ef52011-01-11 22:08:07 +01001683 /* only revC3 and revE have that feature */
Borislav Petkova4b4bed2013-08-10 13:54:48 +02001684 if (pvt->model < 4 || (pvt->model < 0xa && pvt->stepping < 3))
Borislav Petkov95b0ef52011-01-11 22:08:07 +01001685 return sys_addr;
1686 }
1687
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -05001688 amd64_read_pci_cfg(pvt->F2, SWAP_INTLV_REG, &swap_reg);
Borislav Petkov95b0ef52011-01-11 22:08:07 +01001689
1690 if (!(swap_reg & 0x1))
1691 return sys_addr;
1692
1693 swap_base = (swap_reg >> 3) & 0x7f;
1694 swap_limit = (swap_reg >> 11) & 0x7f;
1695 rgn_size = (swap_reg >> 20) & 0x7f;
1696 tmp_addr = sys_addr >> 27;
1697
1698 if (!(sys_addr >> 34) &&
1699 (((tmp_addr >= swap_base) &&
1700 (tmp_addr <= swap_limit)) ||
1701 (tmp_addr < rgn_size)))
1702 return sys_addr ^ (u64)swap_base << 27;
1703
1704 return sys_addr;
1705}
1706
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001707/* For a given @dram_range, check if @sys_addr falls within it. */
Borislav Petkove761359a2011-02-21 19:49:01 +01001708static int f1x_match_to_this_node(struct amd64_pvt *pvt, unsigned range,
Borislav Petkov33ca0642012-08-30 18:01:36 +02001709 u64 sys_addr, int *chan_sel)
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001710{
Borislav Petkov229a7a12010-12-09 18:57:54 +01001711 int cs_found = -EINVAL;
Borislav Petkovc8e518d2010-12-10 19:49:19 +01001712 u64 chan_addr;
Borislav Petkov5d4b58e2011-01-13 16:01:13 +01001713 u32 dct_sel_base;
Borislav Petkov11c75ea2010-11-29 19:49:02 +01001714 u8 channel;
Borislav Petkov229a7a12010-12-09 18:57:54 +01001715 bool high_range = false;
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001716
Borislav Petkov7f19bf72010-10-21 18:52:53 +02001717 u8 node_id = dram_dst_node(pvt, range);
Borislav Petkov229a7a12010-12-09 18:57:54 +01001718 u8 intlv_en = dram_intlv_en(pvt, range);
Borislav Petkov7f19bf72010-10-21 18:52:53 +02001719 u32 intlv_sel = dram_intlv_sel(pvt, range);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001720
Joe Perches956b9ba12012-04-29 17:08:39 -03001721 edac_dbg(1, "(range %d) SystemAddr= 0x%llx Limit=0x%llx\n",
1722 range, sys_addr, get_dram_limit(pvt, range));
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001723
Borislav Petkov355fba62011-01-17 13:03:26 +01001724 if (dhar_valid(pvt) &&
1725 dhar_base(pvt) <= sys_addr &&
1726 sys_addr < BIT_64(32)) {
1727 amd64_warn("Huh? Address is in the MMIO hole: 0x%016llx\n",
1728 sys_addr);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001729 return -EINVAL;
Borislav Petkov355fba62011-01-17 13:03:26 +01001730 }
1731
Borislav Petkovf030ddf2011-04-08 15:05:21 +02001732 if (intlv_en && (intlv_sel != ((sys_addr >> 12) & intlv_en)))
Borislav Petkov355fba62011-01-17 13:03:26 +01001733 return -EINVAL;
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001734
Borislav Petkovb15f0fc2011-01-17 15:59:58 +01001735 sys_addr = f1x_swap_interleaved_region(pvt, sys_addr);
Borislav Petkov95b0ef52011-01-11 22:08:07 +01001736
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001737 dct_sel_base = dct_sel_baseaddr(pvt);
1738
1739 /*
1740 * check whether addresses >= DctSelBaseAddr[47:27] are to be used to
1741 * select between DCT0 and DCT1.
1742 */
1743 if (dct_high_range_enabled(pvt) &&
1744 !dct_ganging_enabled(pvt) &&
1745 ((sys_addr >> 27) >= (dct_sel_base >> 11)))
Borislav Petkov229a7a12010-12-09 18:57:54 +01001746 high_range = true;
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001747
Borislav Petkovb15f0fc2011-01-17 15:59:58 +01001748 channel = f1x_determine_channel(pvt, sys_addr, high_range, intlv_en);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001749
Borislav Petkovb15f0fc2011-01-17 15:59:58 +01001750 chan_addr = f1x_get_norm_dct_addr(pvt, range, sys_addr,
Borislav Petkovc8e518d2010-12-10 19:49:19 +01001751 high_range, dct_sel_base);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001752
Borislav Petkove2f79db2011-01-13 14:57:34 +01001753 /* Remove node interleaving, see F1x120 */
1754 if (intlv_en)
1755 chan_addr = ((chan_addr >> (12 + hweight8(intlv_en))) << 12) |
1756 (chan_addr & 0xfff);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001757
Borislav Petkov5d4b58e2011-01-13 16:01:13 +01001758 /* remove channel interleave */
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001759 if (dct_interleave_enabled(pvt) &&
1760 !dct_high_range_enabled(pvt) &&
1761 !dct_ganging_enabled(pvt)) {
Borislav Petkov5d4b58e2011-01-13 16:01:13 +01001762
1763 if (dct_sel_interleave_addr(pvt) != 1) {
1764 if (dct_sel_interleave_addr(pvt) == 0x3)
1765 /* hash 9 */
1766 chan_addr = ((chan_addr >> 10) << 9) |
1767 (chan_addr & 0x1ff);
1768 else
1769 /* A[6] or hash 6 */
1770 chan_addr = ((chan_addr >> 7) << 6) |
1771 (chan_addr & 0x3f);
1772 } else
1773 /* A[12] */
1774 chan_addr = ((chan_addr >> 13) << 12) |
1775 (chan_addr & 0xfff);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001776 }
1777
Joe Perches956b9ba12012-04-29 17:08:39 -03001778 edac_dbg(1, " Normalized DCT addr: 0x%llx\n", chan_addr);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001779
Borislav Petkovb15f0fc2011-01-17 15:59:58 +01001780 cs_found = f1x_lookup_addr_in_dct(chan_addr, node_id, channel);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001781
Borislav Petkov33ca0642012-08-30 18:01:36 +02001782 if (cs_found >= 0)
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001783 *chan_sel = channel;
Borislav Petkov33ca0642012-08-30 18:01:36 +02001784
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001785 return cs_found;
1786}
1787
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001788static int f15_m30h_match_to_this_node(struct amd64_pvt *pvt, unsigned range,
1789 u64 sys_addr, int *chan_sel)
1790{
1791 int cs_found = -EINVAL;
1792 int num_dcts_intlv = 0;
1793 u64 chan_addr, chan_offset;
1794 u64 dct_base, dct_limit;
1795 u32 dct_cont_base_reg, dct_cont_limit_reg, tmp;
1796 u8 channel, alias_channel, leg_mmio_hole, dct_sel, dct_offset_en;
1797
1798 u64 dhar_offset = f10_dhar_offset(pvt);
1799 u8 intlv_addr = dct_sel_interleave_addr(pvt);
1800 u8 node_id = dram_dst_node(pvt, range);
1801 u8 intlv_en = dram_intlv_en(pvt, range);
1802
1803 amd64_read_pci_cfg(pvt->F1, DRAM_CONT_BASE, &dct_cont_base_reg);
1804 amd64_read_pci_cfg(pvt->F1, DRAM_CONT_LIMIT, &dct_cont_limit_reg);
1805
1806 dct_offset_en = (u8) ((dct_cont_base_reg >> 3) & BIT(0));
1807 dct_sel = (u8) ((dct_cont_base_reg >> 4) & 0x7);
1808
1809 edac_dbg(1, "(range %d) SystemAddr= 0x%llx Limit=0x%llx\n",
1810 range, sys_addr, get_dram_limit(pvt, range));
1811
1812 if (!(get_dram_base(pvt, range) <= sys_addr) &&
1813 !(get_dram_limit(pvt, range) >= sys_addr))
1814 return -EINVAL;
1815
1816 if (dhar_valid(pvt) &&
1817 dhar_base(pvt) <= sys_addr &&
1818 sys_addr < BIT_64(32)) {
1819 amd64_warn("Huh? Address is in the MMIO hole: 0x%016llx\n",
1820 sys_addr);
1821 return -EINVAL;
1822 }
1823
1824 /* Verify sys_addr is within DCT Range. */
Aravind Gopalakrishnan4fc06b32013-08-24 10:47:48 -05001825 dct_base = (u64) dct_sel_baseaddr(pvt);
1826 dct_limit = (dct_cont_limit_reg >> 11) & 0x1FFF;
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001827
1828 if (!(dct_cont_base_reg & BIT(0)) &&
Aravind Gopalakrishnan4fc06b32013-08-24 10:47:48 -05001829 !(dct_base <= (sys_addr >> 27) &&
1830 dct_limit >= (sys_addr >> 27)))
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001831 return -EINVAL;
1832
1833 /* Verify number of dct's that participate in channel interleaving. */
1834 num_dcts_intlv = (int) hweight8(intlv_en);
1835
1836 if (!(num_dcts_intlv % 2 == 0) || (num_dcts_intlv > 4))
1837 return -EINVAL;
1838
Yazen Ghannamdc0a50a82016-08-03 10:59:15 -04001839 if (pvt->model >= 0x60)
1840 channel = f1x_determine_channel(pvt, sys_addr, false, intlv_en);
1841 else
1842 channel = f15_m30h_determine_channel(pvt, sys_addr, intlv_en,
1843 num_dcts_intlv, dct_sel);
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001844
1845 /* Verify we stay within the MAX number of channels allowed */
Aravind Gopalakrishnan7f3f5242013-12-04 11:40:11 -06001846 if (channel > 3)
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001847 return -EINVAL;
1848
1849 leg_mmio_hole = (u8) (dct_cont_base_reg >> 1 & BIT(0));
1850
1851 /* Get normalized DCT addr */
1852 if (leg_mmio_hole && (sys_addr >= BIT_64(32)))
1853 chan_offset = dhar_offset;
1854 else
Aravind Gopalakrishnan4fc06b32013-08-24 10:47:48 -05001855 chan_offset = dct_base << 27;
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001856
1857 chan_addr = sys_addr - chan_offset;
1858
1859 /* remove channel interleave */
1860 if (num_dcts_intlv == 2) {
1861 if (intlv_addr == 0x4)
1862 chan_addr = ((chan_addr >> 9) << 8) |
1863 (chan_addr & 0xff);
1864 else if (intlv_addr == 0x5)
1865 chan_addr = ((chan_addr >> 10) << 9) |
1866 (chan_addr & 0x1ff);
1867 else
1868 return -EINVAL;
1869
1870 } else if (num_dcts_intlv == 4) {
1871 if (intlv_addr == 0x4)
1872 chan_addr = ((chan_addr >> 10) << 8) |
1873 (chan_addr & 0xff);
1874 else if (intlv_addr == 0x5)
1875 chan_addr = ((chan_addr >> 11) << 9) |
1876 (chan_addr & 0x1ff);
1877 else
1878 return -EINVAL;
1879 }
1880
1881 if (dct_offset_en) {
1882 amd64_read_pci_cfg(pvt->F1,
1883 DRAM_CONT_HIGH_OFF + (int) channel * 4,
1884 &tmp);
Aravind Gopalakrishnan4fc06b32013-08-24 10:47:48 -05001885 chan_addr += (u64) ((tmp >> 11) & 0xfff) << 27;
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001886 }
1887
1888 f15h_select_dct(pvt, channel);
1889
1890 edac_dbg(1, " Normalized DCT addr: 0x%llx\n", chan_addr);
1891
1892 /*
1893 * Find Chip select:
1894 * if channel = 3, then alias it to 1. This is because, in F15 M30h,
1895 * there is support for 4 DCT's, but only 2 are currently functional.
1896 * They are DCT0 and DCT3. But we have read all registers of DCT3 into
1897 * pvt->csels[1]. So we need to use '1' here to get correct info.
1898 * Refer F15 M30h BKDG Section 2.10 and 2.10.3 for clarifications.
1899 */
1900 alias_channel = (channel == 3) ? 1 : channel;
1901
1902 cs_found = f1x_lookup_addr_in_dct(chan_addr, node_id, alias_channel);
1903
1904 if (cs_found >= 0)
1905 *chan_sel = alias_channel;
1906
1907 return cs_found;
1908}
1909
1910static int f1x_translate_sysaddr_to_cs(struct amd64_pvt *pvt,
1911 u64 sys_addr,
1912 int *chan_sel)
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001913{
Borislav Petkove761359a2011-02-21 19:49:01 +01001914 int cs_found = -EINVAL;
1915 unsigned range;
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001916
Borislav Petkov7f19bf72010-10-21 18:52:53 +02001917 for (range = 0; range < DRAM_RANGES; range++) {
Borislav Petkov7f19bf72010-10-21 18:52:53 +02001918 if (!dram_rw(pvt, range))
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001919 continue;
1920
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001921 if (pvt->fam == 0x15 && pvt->model >= 0x30)
1922 cs_found = f15_m30h_match_to_this_node(pvt, range,
1923 sys_addr,
1924 chan_sel);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001925
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001926 else if ((get_dram_base(pvt, range) <= sys_addr) &&
1927 (get_dram_limit(pvt, range) >= sys_addr)) {
Borislav Petkovb15f0fc2011-01-17 15:59:58 +01001928 cs_found = f1x_match_to_this_node(pvt, range,
Borislav Petkov33ca0642012-08-30 18:01:36 +02001929 sys_addr, chan_sel);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001930 if (cs_found >= 0)
1931 break;
1932 }
1933 }
1934 return cs_found;
1935}
1936
1937/*
Borislav Petkovbdc30a02009-11-13 15:10:43 +01001938 * For reference see "2.8.5 Routing DRAM Requests" in F10 BKDG. This code maps
1939 * a @sys_addr to NodeID, DCT (channel) and chip select (CSROW).
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001940 *
Borislav Petkovbdc30a02009-11-13 15:10:43 +01001941 * The @sys_addr is usually an error address received from the hardware
1942 * (MCX_ADDR).
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001943 */
Borislav Petkovb15f0fc2011-01-17 15:59:58 +01001944static void f1x_map_sysaddr_to_csrow(struct mem_ctl_info *mci, u64 sys_addr,
Borislav Petkov33ca0642012-08-30 18:01:36 +02001945 struct err_info *err)
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001946{
1947 struct amd64_pvt *pvt = mci->pvt_info;
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001948
Borislav Petkov33ca0642012-08-30 18:01:36 +02001949 error_address_to_page_and_offset(sys_addr, err);
Mauro Carvalho Chehabab5a5032012-04-16 15:03:50 -03001950
Borislav Petkov33ca0642012-08-30 18:01:36 +02001951 err->csrow = f1x_translate_sysaddr_to_cs(pvt, sys_addr, &err->channel);
1952 if (err->csrow < 0) {
1953 err->err_code = ERR_CSROW;
Borislav Petkovbdc30a02009-11-13 15:10:43 +01001954 return;
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001955 }
Borislav Petkovbdc30a02009-11-13 15:10:43 +01001956
Borislav Petkovbdc30a02009-11-13 15:10:43 +01001957 /*
1958 * We need the syndromes for channel detection only when we're
1959 * ganged. Otherwise @chan should already contain the channel at
1960 * this point.
1961 */
Borislav Petkova97fa682010-12-23 14:07:18 +01001962 if (dct_ganging_enabled(pvt))
Borislav Petkov33ca0642012-08-30 18:01:36 +02001963 err->channel = get_channel_from_ecc_syndrome(mci, err->syndrome);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001964}
1965
1966/*
Borislav Petkov8566c4d2009-10-16 13:48:28 +02001967 * debug routine to display the memory sizes of all logical DIMMs and its
Borislav Petkovcb328502010-12-22 14:28:24 +01001968 * CSROWs
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001969 */
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01001970static void debug_display_dimm_sizes(struct amd64_pvt *pvt, u8 ctrl)
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001971{
Borislav Petkovbb89f5a2012-09-12 18:06:00 +02001972 int dimm, size0, size1;
Borislav Petkov525a1b22010-12-21 15:53:27 +01001973 u32 *dcsb = ctrl ? pvt->csels[1].csbases : pvt->csels[0].csbases;
1974 u32 dbam = ctrl ? pvt->dbam1 : pvt->dbam0;
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001975
Borislav Petkova4b4bed2013-08-10 13:54:48 +02001976 if (pvt->fam == 0xf) {
Borislav Petkov8566c4d2009-10-16 13:48:28 +02001977 /* K8 families < revF not supported yet */
Borislav Petkov1433eb92009-10-21 13:44:36 +02001978 if (pvt->ext_model < K8_REV_F)
Borislav Petkov8566c4d2009-10-16 13:48:28 +02001979 return;
1980 else
1981 WARN_ON(ctrl != 0);
1982 }
1983
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -05001984 if (pvt->fam == 0x10) {
1985 dbam = (ctrl && !dct_ganging_enabled(pvt)) ? pvt->dbam1
1986 : pvt->dbam0;
1987 dcsb = (ctrl && !dct_ganging_enabled(pvt)) ?
1988 pvt->csels[1].csbases :
1989 pvt->csels[0].csbases;
1990 } else if (ctrl) {
1991 dbam = pvt->dbam0;
1992 dcsb = pvt->csels[1].csbases;
1993 }
Joe Perches956b9ba12012-04-29 17:08:39 -03001994 edac_dbg(1, "F2x%d80 (DRAM Bank Address Mapping): 0x%08x\n",
1995 ctrl, dbam);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001996
Borislav Petkov8566c4d2009-10-16 13:48:28 +02001997 edac_printk(KERN_DEBUG, EDAC_MC, "DCT%d chip selects:\n", ctrl);
1998
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001999 /* Dump memory sizes for DIMM and its CSROWs */
2000 for (dimm = 0; dimm < 4; dimm++) {
2001
2002 size0 = 0;
Borislav Petkov11c75ea2010-11-29 19:49:02 +01002003 if (dcsb[dimm*2] & DCSB_CS_ENABLE)
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01002004 /* For f15m60h, need multiplier for LRDIMM cs_size
2005 * calculation. We pass 'dimm' value to the dbam_to_cs
2006 * mapper so we can find the multiplier from the
2007 * corresponding DCSM.
2008 */
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01002009 size0 = pvt->ops->dbam_to_cs(pvt, ctrl,
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01002010 DBAM_DIMM(dimm, dbam),
2011 dimm);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02002012
2013 size1 = 0;
Borislav Petkov11c75ea2010-11-29 19:49:02 +01002014 if (dcsb[dimm*2 + 1] & DCSB_CS_ENABLE)
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01002015 size1 = pvt->ops->dbam_to_cs(pvt, ctrl,
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01002016 DBAM_DIMM(dimm, dbam),
2017 dimm);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02002018
Borislav Petkov24f9a7f2010-10-07 18:29:15 +02002019 amd64_info(EDAC_MC ": %d: %5dMB %d: %5dMB\n",
Borislav Petkovbb89f5a2012-09-12 18:06:00 +02002020 dimm * 2, size0,
2021 dimm * 2 + 1, size1);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02002022 }
2023}
2024
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01002025static struct amd64_family_type family_types[] = {
Doug Thompson4d376072009-04-27 16:25:05 +02002026 [K8_CPUS] = {
Borislav Petkov0092b202010-10-01 19:20:05 +02002027 .ctl_name = "K8",
Borislav Petkov8d5b5d92010-10-01 20:11:07 +02002028 .f1_id = PCI_DEVICE_ID_AMD_K8_NB_ADDRMAP,
Borislav Petkov3f37a362016-05-06 19:44:27 +02002029 .f2_id = PCI_DEVICE_ID_AMD_K8_NB_MEMCTL,
Doug Thompson4d376072009-04-27 16:25:05 +02002030 .ops = {
Borislav Petkov1433eb92009-10-21 13:44:36 +02002031 .early_channel_count = k8_early_channel_count,
Borislav Petkov1433eb92009-10-21 13:44:36 +02002032 .map_sysaddr_to_csrow = k8_map_sysaddr_to_csrow,
2033 .dbam_to_cs = k8_dbam_to_chip_select,
Doug Thompson4d376072009-04-27 16:25:05 +02002034 }
2035 },
2036 [F10_CPUS] = {
Borislav Petkov0092b202010-10-01 19:20:05 +02002037 .ctl_name = "F10h",
Borislav Petkov8d5b5d92010-10-01 20:11:07 +02002038 .f1_id = PCI_DEVICE_ID_AMD_10H_NB_MAP,
Borislav Petkov3f37a362016-05-06 19:44:27 +02002039 .f2_id = PCI_DEVICE_ID_AMD_10H_NB_DRAM,
Doug Thompson4d376072009-04-27 16:25:05 +02002040 .ops = {
Borislav Petkov7d20d142011-01-07 17:58:04 +01002041 .early_channel_count = f1x_early_channel_count,
Borislav Petkovb15f0fc2011-01-17 15:59:58 +01002042 .map_sysaddr_to_csrow = f1x_map_sysaddr_to_csrow,
Borislav Petkov1433eb92009-10-21 13:44:36 +02002043 .dbam_to_cs = f10_dbam_to_chip_select,
Borislav Petkovb2b0c602010-10-08 18:32:29 +02002044 }
2045 },
2046 [F15_CPUS] = {
2047 .ctl_name = "F15h",
Borislav Petkovdf71a052011-01-19 18:15:10 +01002048 .f1_id = PCI_DEVICE_ID_AMD_15H_NB_F1,
Borislav Petkov3f37a362016-05-06 19:44:27 +02002049 .f2_id = PCI_DEVICE_ID_AMD_15H_NB_F2,
Borislav Petkovb2b0c602010-10-08 18:32:29 +02002050 .ops = {
Borislav Petkov7d20d142011-01-07 17:58:04 +01002051 .early_channel_count = f1x_early_channel_count,
Borislav Petkovb15f0fc2011-01-17 15:59:58 +01002052 .map_sysaddr_to_csrow = f1x_map_sysaddr_to_csrow,
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01002053 .dbam_to_cs = f15_dbam_to_chip_select,
Doug Thompson4d376072009-04-27 16:25:05 +02002054 }
2055 },
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05002056 [F15_M30H_CPUS] = {
2057 .ctl_name = "F15h_M30h",
2058 .f1_id = PCI_DEVICE_ID_AMD_15H_M30H_NB_F1,
Borislav Petkov3f37a362016-05-06 19:44:27 +02002059 .f2_id = PCI_DEVICE_ID_AMD_15H_M30H_NB_F2,
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05002060 .ops = {
2061 .early_channel_count = f1x_early_channel_count,
2062 .map_sysaddr_to_csrow = f1x_map_sysaddr_to_csrow,
2063 .dbam_to_cs = f16_dbam_to_chip_select,
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05002064 }
2065 },
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01002066 [F15_M60H_CPUS] = {
2067 .ctl_name = "F15h_M60h",
2068 .f1_id = PCI_DEVICE_ID_AMD_15H_M60H_NB_F1,
Borislav Petkov3f37a362016-05-06 19:44:27 +02002069 .f2_id = PCI_DEVICE_ID_AMD_15H_M60H_NB_F2,
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01002070 .ops = {
2071 .early_channel_count = f1x_early_channel_count,
2072 .map_sysaddr_to_csrow = f1x_map_sysaddr_to_csrow,
2073 .dbam_to_cs = f15_m60h_dbam_to_chip_select,
2074 }
2075 },
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -05002076 [F16_CPUS] = {
2077 .ctl_name = "F16h",
2078 .f1_id = PCI_DEVICE_ID_AMD_16H_NB_F1,
Borislav Petkov3f37a362016-05-06 19:44:27 +02002079 .f2_id = PCI_DEVICE_ID_AMD_16H_NB_F2,
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -05002080 .ops = {
2081 .early_channel_count = f1x_early_channel_count,
2082 .map_sysaddr_to_csrow = f1x_map_sysaddr_to_csrow,
2083 .dbam_to_cs = f16_dbam_to_chip_select,
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -05002084 }
2085 },
Aravind Gopalakrishnan85a88852014-02-20 10:28:46 -06002086 [F16_M30H_CPUS] = {
2087 .ctl_name = "F16h_M30h",
2088 .f1_id = PCI_DEVICE_ID_AMD_16H_M30H_NB_F1,
Borislav Petkov3f37a362016-05-06 19:44:27 +02002089 .f2_id = PCI_DEVICE_ID_AMD_16H_M30H_NB_F2,
Aravind Gopalakrishnan85a88852014-02-20 10:28:46 -06002090 .ops = {
2091 .early_channel_count = f1x_early_channel_count,
2092 .map_sysaddr_to_csrow = f1x_map_sysaddr_to_csrow,
2093 .dbam_to_cs = f16_dbam_to_chip_select,
Aravind Gopalakrishnan85a88852014-02-20 10:28:46 -06002094 }
2095 },
Yazen Ghannamf1cbbec2016-11-17 17:57:35 -05002096 [F17_CPUS] = {
2097 .ctl_name = "F17h",
2098 .f0_id = PCI_DEVICE_ID_AMD_17H_DF_F0,
2099 .f6_id = PCI_DEVICE_ID_AMD_17H_DF_F6,
2100 .ops = {
2101 .early_channel_count = f17_early_channel_count,
2102 .dbam_to_cs = f17_base_addr_to_cs_size,
2103 }
2104 },
Doug Thompson4d376072009-04-27 16:25:05 +02002105};
2106
Doug Thompsonb1289d62009-04-27 16:37:05 +02002107/*
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002108 * These are tables of eigenvectors (one per line) which can be used for the
2109 * construction of the syndrome tables. The modified syndrome search algorithm
2110 * uses those to find the symbol in error and thus the DIMM.
Doug Thompsonb1289d62009-04-27 16:37:05 +02002111 *
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002112 * Algorithm courtesy of Ross LaFetra from AMD.
Doug Thompsonb1289d62009-04-27 16:37:05 +02002113 */
Daniel J Bluemanc7e53012012-11-30 16:44:20 +08002114static const u16 x4_vectors[] = {
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002115 0x2f57, 0x1afe, 0x66cc, 0xdd88,
2116 0x11eb, 0x3396, 0x7f4c, 0xeac8,
2117 0x0001, 0x0002, 0x0004, 0x0008,
2118 0x1013, 0x3032, 0x4044, 0x8088,
2119 0x106b, 0x30d6, 0x70fc, 0xe0a8,
2120 0x4857, 0xc4fe, 0x13cc, 0x3288,
2121 0x1ac5, 0x2f4a, 0x5394, 0xa1e8,
2122 0x1f39, 0x251e, 0xbd6c, 0x6bd8,
2123 0x15c1, 0x2a42, 0x89ac, 0x4758,
2124 0x2b03, 0x1602, 0x4f0c, 0xca08,
2125 0x1f07, 0x3a0e, 0x6b04, 0xbd08,
2126 0x8ba7, 0x465e, 0x244c, 0x1cc8,
2127 0x2b87, 0x164e, 0x642c, 0xdc18,
2128 0x40b9, 0x80de, 0x1094, 0x20e8,
2129 0x27db, 0x1eb6, 0x9dac, 0x7b58,
2130 0x11c1, 0x2242, 0x84ac, 0x4c58,
2131 0x1be5, 0x2d7a, 0x5e34, 0xa718,
2132 0x4b39, 0x8d1e, 0x14b4, 0x28d8,
2133 0x4c97, 0xc87e, 0x11fc, 0x33a8,
2134 0x8e97, 0x497e, 0x2ffc, 0x1aa8,
2135 0x16b3, 0x3d62, 0x4f34, 0x8518,
2136 0x1e2f, 0x391a, 0x5cac, 0xf858,
2137 0x1d9f, 0x3b7a, 0x572c, 0xfe18,
2138 0x15f5, 0x2a5a, 0x5264, 0xa3b8,
2139 0x1dbb, 0x3b66, 0x715c, 0xe3f8,
2140 0x4397, 0xc27e, 0x17fc, 0x3ea8,
2141 0x1617, 0x3d3e, 0x6464, 0xb8b8,
2142 0x23ff, 0x12aa, 0xab6c, 0x56d8,
2143 0x2dfb, 0x1ba6, 0x913c, 0x7328,
2144 0x185d, 0x2ca6, 0x7914, 0x9e28,
2145 0x171b, 0x3e36, 0x7d7c, 0xebe8,
2146 0x4199, 0x82ee, 0x19f4, 0x2e58,
2147 0x4807, 0xc40e, 0x130c, 0x3208,
2148 0x1905, 0x2e0a, 0x5804, 0xac08,
2149 0x213f, 0x132a, 0xadfc, 0x5ba8,
2150 0x19a9, 0x2efe, 0xb5cc, 0x6f88,
Doug Thompsonb1289d62009-04-27 16:37:05 +02002151};
2152
Daniel J Bluemanc7e53012012-11-30 16:44:20 +08002153static const u16 x8_vectors[] = {
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002154 0x0145, 0x028a, 0x2374, 0x43c8, 0xa1f0, 0x0520, 0x0a40, 0x1480,
2155 0x0211, 0x0422, 0x0844, 0x1088, 0x01b0, 0x44e0, 0x23c0, 0xed80,
2156 0x1011, 0x0116, 0x022c, 0x0458, 0x08b0, 0x8c60, 0x2740, 0x4e80,
2157 0x0411, 0x0822, 0x1044, 0x0158, 0x02b0, 0x2360, 0x46c0, 0xab80,
2158 0x0811, 0x1022, 0x012c, 0x0258, 0x04b0, 0x4660, 0x8cc0, 0x2780,
2159 0x2071, 0x40e2, 0xa0c4, 0x0108, 0x0210, 0x0420, 0x0840, 0x1080,
2160 0x4071, 0x80e2, 0x0104, 0x0208, 0x0410, 0x0820, 0x1040, 0x2080,
2161 0x8071, 0x0102, 0x0204, 0x0408, 0x0810, 0x1020, 0x2040, 0x4080,
2162 0x019d, 0x03d6, 0x136c, 0x2198, 0x50b0, 0xb2e0, 0x0740, 0x0e80,
2163 0x0189, 0x03ea, 0x072c, 0x0e58, 0x1cb0, 0x56e0, 0x37c0, 0xf580,
2164 0x01fd, 0x0376, 0x06ec, 0x0bb8, 0x1110, 0x2220, 0x4440, 0x8880,
2165 0x0163, 0x02c6, 0x1104, 0x0758, 0x0eb0, 0x2be0, 0x6140, 0xc280,
2166 0x02fd, 0x01c6, 0x0b5c, 0x1108, 0x07b0, 0x25a0, 0x8840, 0x6180,
2167 0x0801, 0x012e, 0x025c, 0x04b8, 0x1370, 0x26e0, 0x57c0, 0xb580,
2168 0x0401, 0x0802, 0x015c, 0x02b8, 0x22b0, 0x13e0, 0x7140, 0xe280,
2169 0x0201, 0x0402, 0x0804, 0x01b8, 0x11b0, 0x31a0, 0x8040, 0x7180,
2170 0x0101, 0x0202, 0x0404, 0x0808, 0x1010, 0x2020, 0x4040, 0x8080,
2171 0x0001, 0x0002, 0x0004, 0x0008, 0x0010, 0x0020, 0x0040, 0x0080,
2172 0x0100, 0x0200, 0x0400, 0x0800, 0x1000, 0x2000, 0x4000, 0x8000,
2173};
2174
Daniel J Bluemanc7e53012012-11-30 16:44:20 +08002175static int decode_syndrome(u16 syndrome, const u16 *vectors, unsigned num_vecs,
Borislav Petkovd34a6ec2011-02-23 17:41:50 +01002176 unsigned v_dim)
Doug Thompsonb1289d62009-04-27 16:37:05 +02002177{
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002178 unsigned int i, err_sym;
Doug Thompsonb1289d62009-04-27 16:37:05 +02002179
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002180 for (err_sym = 0; err_sym < num_vecs / v_dim; err_sym++) {
2181 u16 s = syndrome;
Borislav Petkovd34a6ec2011-02-23 17:41:50 +01002182 unsigned v_idx = err_sym * v_dim;
2183 unsigned v_end = (err_sym + 1) * v_dim;
Doug Thompsonb1289d62009-04-27 16:37:05 +02002184
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002185 /* walk over all 16 bits of the syndrome */
2186 for (i = 1; i < (1U << 16); i <<= 1) {
2187
2188 /* if bit is set in that eigenvector... */
2189 if (v_idx < v_end && vectors[v_idx] & i) {
2190 u16 ev_comp = vectors[v_idx++];
2191
2192 /* ... and bit set in the modified syndrome, */
2193 if (s & i) {
2194 /* remove it. */
2195 s ^= ev_comp;
2196
2197 if (!s)
2198 return err_sym;
2199 }
2200
2201 } else if (s & i)
2202 /* can't get to zero, move to next symbol */
2203 break;
2204 }
Doug Thompsonb1289d62009-04-27 16:37:05 +02002205 }
2206
Joe Perches956b9ba12012-04-29 17:08:39 -03002207 edac_dbg(0, "syndrome(%x) not found\n", syndrome);
Doug Thompsonb1289d62009-04-27 16:37:05 +02002208 return -1;
2209}
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002210
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002211static int map_err_sym_to_channel(int err_sym, int sym_size)
2212{
2213 if (sym_size == 4)
2214 switch (err_sym) {
2215 case 0x20:
2216 case 0x21:
2217 return 0;
2218 break;
2219 case 0x22:
2220 case 0x23:
2221 return 1;
2222 break;
2223 default:
2224 return err_sym >> 4;
2225 break;
2226 }
2227 /* x8 symbols */
2228 else
2229 switch (err_sym) {
2230 /* imaginary bits not in a DIMM */
2231 case 0x10:
2232 WARN(1, KERN_ERR "Invalid error symbol: 0x%x\n",
2233 err_sym);
2234 return -1;
2235 break;
2236
2237 case 0x11:
2238 return 0;
2239 break;
2240 case 0x12:
2241 return 1;
2242 break;
2243 default:
2244 return err_sym >> 3;
2245 break;
2246 }
2247 return -1;
2248}
2249
2250static int get_channel_from_ecc_syndrome(struct mem_ctl_info *mci, u16 syndrome)
2251{
2252 struct amd64_pvt *pvt = mci->pvt_info;
Borislav Petkovad6a32e2010-03-09 12:46:00 +01002253 int err_sym = -1;
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002254
Borislav Petkova3b7db02011-01-19 20:35:12 +01002255 if (pvt->ecc_sym_sz == 8)
Borislav Petkovad6a32e2010-03-09 12:46:00 +01002256 err_sym = decode_syndrome(syndrome, x8_vectors,
2257 ARRAY_SIZE(x8_vectors),
Borislav Petkova3b7db02011-01-19 20:35:12 +01002258 pvt->ecc_sym_sz);
2259 else if (pvt->ecc_sym_sz == 4)
Borislav Petkovad6a32e2010-03-09 12:46:00 +01002260 err_sym = decode_syndrome(syndrome, x4_vectors,
2261 ARRAY_SIZE(x4_vectors),
Borislav Petkova3b7db02011-01-19 20:35:12 +01002262 pvt->ecc_sym_sz);
Borislav Petkovad6a32e2010-03-09 12:46:00 +01002263 else {
Borislav Petkova3b7db02011-01-19 20:35:12 +01002264 amd64_warn("Illegal syndrome type: %u\n", pvt->ecc_sym_sz);
Borislav Petkovad6a32e2010-03-09 12:46:00 +01002265 return err_sym;
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002266 }
Borislav Petkovad6a32e2010-03-09 12:46:00 +01002267
Borislav Petkova3b7db02011-01-19 20:35:12 +01002268 return map_err_sym_to_channel(err_sym, pvt->ecc_sym_sz);
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002269}
2270
Yazen Ghanname70984d2016-11-17 17:57:31 -05002271static void __log_ecc_error(struct mem_ctl_info *mci, struct err_info *err,
Borislav Petkov33ca0642012-08-30 18:01:36 +02002272 u8 ecc_type)
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002273{
Borislav Petkov33ca0642012-08-30 18:01:36 +02002274 enum hw_event_mc_err_type err_type;
2275 const char *string;
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002276
Borislav Petkov33ca0642012-08-30 18:01:36 +02002277 if (ecc_type == 2)
2278 err_type = HW_EVENT_ERR_CORRECTED;
2279 else if (ecc_type == 1)
2280 err_type = HW_EVENT_ERR_UNCORRECTED;
Yazen Ghannamd12a9692016-11-17 17:57:32 -05002281 else if (ecc_type == 3)
2282 err_type = HW_EVENT_ERR_DEFERRED;
Borislav Petkov33ca0642012-08-30 18:01:36 +02002283 else {
2284 WARN(1, "Something is rotten in the state of Denmark.\n");
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002285 return;
2286 }
2287
Borislav Petkov33ca0642012-08-30 18:01:36 +02002288 switch (err->err_code) {
2289 case DECODE_OK:
2290 string = "";
2291 break;
2292 case ERR_NODE:
2293 string = "Failed to map error addr to a node";
2294 break;
2295 case ERR_CSROW:
2296 string = "Failed to map error addr to a csrow";
2297 break;
2298 case ERR_CHANNEL:
2299 string = "unknown syndrome - possible error reporting race";
2300 break;
2301 default:
2302 string = "WTF error";
2303 break;
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002304 }
Borislav Petkov33ca0642012-08-30 18:01:36 +02002305
2306 edac_mc_handle_error(err_type, mci, 1,
2307 err->page, err->offset, err->syndrome,
2308 err->csrow, err->channel, -1,
2309 string, "");
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002310}
2311
Borislav Petkovdf781d02013-12-15 17:29:44 +01002312static inline void decode_bus_error(int node_id, struct mce *m)
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002313{
Daniel J Blueman0c510cc2015-02-17 11:34:38 +08002314 struct mem_ctl_info *mci;
2315 struct amd64_pvt *pvt;
Borislav Petkovf192c7b2011-01-10 14:24:32 +01002316 u8 ecc_type = (m->status >> 45) & 0x3;
Borislav Petkov66fed2d2012-08-09 18:41:07 +02002317 u8 xec = XEC(m->status, 0x1f);
2318 u16 ec = EC(m->status);
Borislav Petkov33ca0642012-08-30 18:01:36 +02002319 u64 sys_addr;
2320 struct err_info err;
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002321
Daniel J Blueman0c510cc2015-02-17 11:34:38 +08002322 mci = edac_mc_find(node_id);
2323 if (!mci)
2324 return;
2325
2326 pvt = mci->pvt_info;
2327
Borislav Petkov66fed2d2012-08-09 18:41:07 +02002328 /* Bail out early if this was an 'observed' error */
Borislav Petkov5980bb92011-01-07 16:26:49 +01002329 if (PP(ec) == NBSL_PP_OBS)
Borislav Petkovb70ef012009-06-25 19:32:38 +02002330 return;
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002331
Borislav Petkovecaf5602009-07-23 16:32:01 +02002332 /* Do only ECC errors */
2333 if (xec && xec != F10_NBSL_EXT_ERR_ECC)
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002334 return;
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002335
Borislav Petkov33ca0642012-08-30 18:01:36 +02002336 memset(&err, 0, sizeof(err));
2337
Borislav Petkova4b4bed2013-08-10 13:54:48 +02002338 sys_addr = get_error_address(pvt, m);
Borislav Petkov33ca0642012-08-30 18:01:36 +02002339
Borislav Petkovecaf5602009-07-23 16:32:01 +02002340 if (ecc_type == 2)
Borislav Petkov33ca0642012-08-30 18:01:36 +02002341 err.syndrome = extract_syndrome(m->status);
2342
2343 pvt->ops->map_sysaddr_to_csrow(mci, sys_addr, &err);
2344
Yazen Ghanname70984d2016-11-17 17:57:31 -05002345 __log_ecc_error(mci, &err, ecc_type);
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002346}
2347
Doug Thompson0ec449e2009-04-27 19:41:25 +02002348/*
Borislav Petkov3f37a362016-05-06 19:44:27 +02002349 * Use pvt->F3 which contains the F3 CPU PCI device to get the related
2350 * F1 (AddrMap) and F2 (Dct) devices. Return negative value on error.
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05002351 * Reserve F0 and F6 on systems with a UMC.
Doug Thompson0ec449e2009-04-27 19:41:25 +02002352 */
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05002353static int
2354reserve_mc_sibling_devs(struct amd64_pvt *pvt, u16 pci_id1, u16 pci_id2)
Doug Thompson0ec449e2009-04-27 19:41:25 +02002355{
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05002356 if (pvt->umc) {
2357 pvt->F0 = pci_get_related_function(pvt->F3->vendor, pci_id1, pvt->F3);
2358 if (!pvt->F0) {
2359 amd64_err("error F0 device not found: vendor %x device 0x%x (broken BIOS?)\n",
2360 PCI_VENDOR_ID_AMD, pci_id1);
2361 return -ENODEV;
2362 }
2363
2364 pvt->F6 = pci_get_related_function(pvt->F3->vendor, pci_id2, pvt->F3);
2365 if (!pvt->F6) {
2366 pci_dev_put(pvt->F0);
2367 pvt->F0 = NULL;
2368
2369 amd64_err("error F6 device not found: vendor %x device 0x%x (broken BIOS?)\n",
2370 PCI_VENDOR_ID_AMD, pci_id2);
2371
2372 return -ENODEV;
2373 }
2374 edac_dbg(1, "F0: %s\n", pci_name(pvt->F0));
2375 edac_dbg(1, "F3: %s\n", pci_name(pvt->F3));
2376 edac_dbg(1, "F6: %s\n", pci_name(pvt->F6));
2377
2378 return 0;
2379 }
2380
Doug Thompson0ec449e2009-04-27 19:41:25 +02002381 /* Reserve the ADDRESS MAP Device */
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05002382 pvt->F1 = pci_get_related_function(pvt->F3->vendor, pci_id1, pvt->F3);
Borislav Petkov8d5b5d92010-10-01 20:11:07 +02002383 if (!pvt->F1) {
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05002384 amd64_err("error address map device not found: vendor %x device 0x%x (broken BIOS?)\n",
2385 PCI_VENDOR_ID_AMD, pci_id1);
Borislav Petkovbbd0c1f62010-10-01 19:27:58 +02002386 return -ENODEV;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002387 }
2388
Borislav Petkov3f37a362016-05-06 19:44:27 +02002389 /* Reserve the DCT Device */
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05002390 pvt->F2 = pci_get_related_function(pvt->F3->vendor, pci_id2, pvt->F3);
Borislav Petkov3f37a362016-05-06 19:44:27 +02002391 if (!pvt->F2) {
Borislav Petkov8d5b5d92010-10-01 20:11:07 +02002392 pci_dev_put(pvt->F1);
2393 pvt->F1 = NULL;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002394
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05002395 amd64_err("error F2 device not found: vendor %x device 0x%x (broken BIOS?)\n",
2396 PCI_VENDOR_ID_AMD, pci_id2);
2397 return -ENODEV;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002398 }
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05002399
Joe Perches956b9ba12012-04-29 17:08:39 -03002400 edac_dbg(1, "F1: %s\n", pci_name(pvt->F1));
2401 edac_dbg(1, "F2: %s\n", pci_name(pvt->F2));
2402 edac_dbg(1, "F3: %s\n", pci_name(pvt->F3));
Doug Thompson0ec449e2009-04-27 19:41:25 +02002403
2404 return 0;
2405}
2406
Borislav Petkov360b7f32010-10-15 19:25:38 +02002407static void free_mc_sibling_devs(struct amd64_pvt *pvt)
Doug Thompson0ec449e2009-04-27 19:41:25 +02002408{
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05002409 if (pvt->umc) {
2410 pci_dev_put(pvt->F0);
2411 pci_dev_put(pvt->F6);
2412 } else {
2413 pci_dev_put(pvt->F1);
2414 pci_dev_put(pvt->F2);
2415 }
Doug Thompson0ec449e2009-04-27 19:41:25 +02002416}
2417
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05002418static void determine_ecc_sym_sz(struct amd64_pvt *pvt)
2419{
2420 pvt->ecc_sym_sz = 4;
2421
2422 if (pvt->umc) {
2423 u8 i;
2424
2425 for (i = 0; i < NUM_UMCS; i++) {
2426 /* Check enabled channels only: */
2427 if ((pvt->umc[i].sdp_ctrl & UMC_SDP_INIT) &&
2428 (pvt->umc[i].ecc_ctrl & BIT(7))) {
2429 pvt->ecc_sym_sz = 8;
2430 break;
2431 }
2432 }
2433
2434 return;
2435 }
2436
2437 if (pvt->fam >= 0x10) {
2438 u32 tmp;
2439
2440 amd64_read_pci_cfg(pvt->F3, EXT_NB_MCA_CFG, &tmp);
2441 /* F16h has only DCT0, so no need to read dbam1. */
2442 if (pvt->fam != 0x16)
2443 amd64_read_dct_pci_cfg(pvt, 1, DBAM0, &pvt->dbam1);
2444
2445 /* F10h, revD and later can do x8 ECC too. */
2446 if ((pvt->fam > 0x10 || pvt->model > 7) && tmp & BIT(25))
2447 pvt->ecc_sym_sz = 8;
2448 }
2449}
2450
2451/*
2452 * Retrieve the hardware registers of the memory controller.
2453 */
2454static void __read_mc_regs_df(struct amd64_pvt *pvt)
2455{
2456 u8 nid = pvt->mc_node_id;
2457 struct amd64_umc *umc;
2458 u32 i, umc_base;
2459
2460 /* Read registers from each UMC */
2461 for (i = 0; i < NUM_UMCS; i++) {
2462
2463 umc_base = get_umc_base(i);
2464 umc = &pvt->umc[i];
2465
2466 amd_smn_read(nid, umc_base + UMCCH_SDP_CTRL, &umc->sdp_ctrl);
2467 amd_smn_read(nid, umc_base + UMCCH_ECC_CTRL, &umc->ecc_ctrl);
2468 amd_smn_read(nid, umc_base + UMCCH_DIMM_CFG, &umc->dimm_cfg);
2469 }
2470}
2471
Doug Thompson0ec449e2009-04-27 19:41:25 +02002472/*
2473 * Retrieve the hardware registers of the memory controller (this includes the
2474 * 'Address Map' and 'Misc' device regs)
2475 */
Borislav Petkov360b7f32010-10-15 19:25:38 +02002476static void read_mc_regs(struct amd64_pvt *pvt)
Doug Thompson0ec449e2009-04-27 19:41:25 +02002477{
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05002478 unsigned int range;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002479 u64 msr_val;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002480
2481 /*
2482 * Retrieve TOP_MEM and TOP_MEM2; no masking off of reserved bits since
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05002483 * those are Read-As-Zero.
Doug Thompson0ec449e2009-04-27 19:41:25 +02002484 */
Borislav Petkove97f8bb2009-10-12 15:27:45 +02002485 rdmsrl(MSR_K8_TOP_MEM1, pvt->top_mem);
Joe Perches956b9ba12012-04-29 17:08:39 -03002486 edac_dbg(0, " TOP_MEM: 0x%016llx\n", pvt->top_mem);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002487
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05002488 /* Check first whether TOP_MEM2 is enabled: */
Doug Thompson0ec449e2009-04-27 19:41:25 +02002489 rdmsrl(MSR_K8_SYSCFG, msr_val);
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05002490 if (msr_val & BIT(21)) {
Borislav Petkove97f8bb2009-10-12 15:27:45 +02002491 rdmsrl(MSR_K8_TOP_MEM2, pvt->top_mem2);
Joe Perches956b9ba12012-04-29 17:08:39 -03002492 edac_dbg(0, " TOP_MEM2: 0x%016llx\n", pvt->top_mem2);
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05002493 } else {
Joe Perches956b9ba12012-04-29 17:08:39 -03002494 edac_dbg(0, " TOP_MEM2 disabled\n");
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05002495 }
2496
2497 if (pvt->umc) {
2498 __read_mc_regs_df(pvt);
2499 amd64_read_pci_cfg(pvt->F0, DF_DHAR, &pvt->dhar);
2500
2501 goto skip;
2502 }
Doug Thompson0ec449e2009-04-27 19:41:25 +02002503
Borislav Petkov5980bb92011-01-07 16:26:49 +01002504 amd64_read_pci_cfg(pvt->F3, NBCAP, &pvt->nbcap);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002505
Borislav Petkov5a5d2372011-01-17 17:52:57 +01002506 read_dram_ctl_register(pvt);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002507
Borislav Petkov7f19bf72010-10-21 18:52:53 +02002508 for (range = 0; range < DRAM_RANGES; range++) {
2509 u8 rw;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002510
Borislav Petkov7f19bf72010-10-21 18:52:53 +02002511 /* read settings for this DRAM range */
2512 read_dram_base_limit_regs(pvt, range);
Borislav Petkove97f8bb2009-10-12 15:27:45 +02002513
Borislav Petkov7f19bf72010-10-21 18:52:53 +02002514 rw = dram_rw(pvt, range);
2515 if (!rw)
2516 continue;
2517
Joe Perches956b9ba12012-04-29 17:08:39 -03002518 edac_dbg(1, " DRAM range[%d], base: 0x%016llx; limit: 0x%016llx\n",
2519 range,
2520 get_dram_base(pvt, range),
2521 get_dram_limit(pvt, range));
Borislav Petkov7f19bf72010-10-21 18:52:53 +02002522
Joe Perches956b9ba12012-04-29 17:08:39 -03002523 edac_dbg(1, " IntlvEn=%s; Range access: %s%s IntlvSel=%d DstNode=%d\n",
2524 dram_intlv_en(pvt, range) ? "Enabled" : "Disabled",
2525 (rw & 0x1) ? "R" : "-",
2526 (rw & 0x2) ? "W" : "-",
2527 dram_intlv_sel(pvt, range),
2528 dram_dst_node(pvt, range));
Doug Thompson0ec449e2009-04-27 19:41:25 +02002529 }
2530
Borislav Petkovbc21fa52010-11-11 17:29:13 +01002531 amd64_read_pci_cfg(pvt->F1, DHAR, &pvt->dhar);
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -05002532 amd64_read_dct_pci_cfg(pvt, 0, DBAM0, &pvt->dbam0);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002533
Borislav Petkov8d5b5d92010-10-01 20:11:07 +02002534 amd64_read_pci_cfg(pvt->F3, F10_ONLINE_SPARE, &pvt->online_spare);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002535
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -05002536 amd64_read_dct_pci_cfg(pvt, 0, DCLR0, &pvt->dclr0);
2537 amd64_read_dct_pci_cfg(pvt, 0, DCHR0, &pvt->dchr0);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002538
Borislav Petkov78da1212010-12-22 19:31:45 +01002539 if (!dct_ganging_enabled(pvt)) {
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -05002540 amd64_read_dct_pci_cfg(pvt, 1, DCLR0, &pvt->dclr1);
2541 amd64_read_dct_pci_cfg(pvt, 1, DCHR0, &pvt->dchr1);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002542 }
Borislav Petkovad6a32e2010-03-09 12:46:00 +01002543
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05002544skip:
2545 read_dct_base_mask(pvt);
2546
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01002547 determine_memory_type(pvt);
2548 edac_dbg(1, " DIMM type: %s\n", edac_mem_types[pvt->dram_type]);
Borislav Petkova3b7db02011-01-19 20:35:12 +01002549
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05002550 determine_ecc_sym_sz(pvt);
Borislav Petkova3b7db02011-01-19 20:35:12 +01002551
Borislav Petkovb2b0c602010-10-08 18:32:29 +02002552 dump_misc_regs(pvt);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002553}
2554
2555/*
2556 * NOTE: CPU Revision Dependent code
2557 *
2558 * Input:
Borislav Petkov11c75ea2010-11-29 19:49:02 +01002559 * @csrow_nr ChipSelect Row Number (0..NUM_CHIPSELECTS-1)
Doug Thompson0ec449e2009-04-27 19:41:25 +02002560 * k8 private pointer to -->
2561 * DRAM Bank Address mapping register
2562 * node_id
2563 * DCL register where dual_channel_active is
2564 *
2565 * The DBAM register consists of 4 sets of 4 bits each definitions:
2566 *
2567 * Bits: CSROWs
2568 * 0-3 CSROWs 0 and 1
2569 * 4-7 CSROWs 2 and 3
2570 * 8-11 CSROWs 4 and 5
2571 * 12-15 CSROWs 6 and 7
2572 *
2573 * Values range from: 0 to 15
2574 * The meaning of the values depends on CPU revision and dual-channel state,
2575 * see relevant BKDG more info.
2576 *
2577 * The memory controller provides for total of only 8 CSROWs in its current
2578 * architecture. Each "pair" of CSROWs normally represents just one DIMM in
2579 * single channel or two (2) DIMMs in dual channel mode.
2580 *
2581 * The following code logic collapses the various tables for CSROW based on CPU
2582 * revision.
2583 *
2584 * Returns:
2585 * The number of PAGE_SIZE pages on the specified CSROW number it
2586 * encompasses
2587 *
2588 */
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01002589static u32 get_csrow_nr_pages(struct amd64_pvt *pvt, u8 dct, int csrow_nr)
Doug Thompson0ec449e2009-04-27 19:41:25 +02002590{
Borislav Petkov1433eb92009-10-21 13:44:36 +02002591 u32 cs_mode, nr_pages;
Ashish Shenoyf92cae42012-02-22 17:20:38 -08002592 u32 dbam = dct ? pvt->dbam1 : pvt->dbam0;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002593
Borislav Petkov10de6492012-09-12 19:00:38 +02002594
Doug Thompson0ec449e2009-04-27 19:41:25 +02002595 /*
2596 * The math on this doesn't look right on the surface because x/2*4 can
2597 * be simplified to x*2 but this expression makes use of the fact that
2598 * it is integral math where 1/2=0. This intermediate value becomes the
2599 * number of bits to shift the DBAM register to extract the proper CSROW
2600 * field.
2601 */
Borislav Petkov0a5dfc32012-09-12 18:16:01 +02002602 cs_mode = DBAM_DIMM(csrow_nr / 2, dbam);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002603
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01002604 nr_pages = pvt->ops->dbam_to_cs(pvt, dct, cs_mode, (csrow_nr / 2))
2605 << (20 - PAGE_SHIFT);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002606
Borislav Petkov10de6492012-09-12 19:00:38 +02002607 edac_dbg(0, "csrow: %d, channel: %d, DBAM idx: %d\n",
2608 csrow_nr, dct, cs_mode);
2609 edac_dbg(0, "nr_pages/channel: %u\n", nr_pages);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002610
2611 return nr_pages;
2612}
2613
2614/*
2615 * Initialize the array of csrow attribute instances, based on the values
2616 * from pci config hardware registers.
2617 */
Borislav Petkov360b7f32010-10-15 19:25:38 +02002618static int init_csrows(struct mem_ctl_info *mci)
Doug Thompson0ec449e2009-04-27 19:41:25 +02002619{
Borislav Petkov10de6492012-09-12 19:00:38 +02002620 struct amd64_pvt *pvt = mci->pvt_info;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002621 struct csrow_info *csrow;
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -03002622 struct dimm_info *dimm;
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -03002623 enum edac_type edac_mode;
Borislav Petkov10de6492012-09-12 19:00:38 +02002624 int i, j, empty = 1;
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -03002625 int nr_pages = 0;
Borislav Petkov10de6492012-09-12 19:00:38 +02002626 u32 val;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002627
Borislav Petkova97fa682010-12-23 14:07:18 +01002628 amd64_read_pci_cfg(pvt->F3, NBCFG, &val);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002629
Borislav Petkov2299ef72010-10-15 17:44:04 +02002630 pvt->nbcfg = val;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002631
Joe Perches956b9ba12012-04-29 17:08:39 -03002632 edac_dbg(0, "node %d, NBCFG=0x%08x[ChipKillEccCap: %d|DramEccEn: %d]\n",
2633 pvt->mc_node_id, val,
2634 !!(val & NBCFG_CHIPKILL), !!(val & NBCFG_ECC_ENABLE));
Doug Thompson0ec449e2009-04-27 19:41:25 +02002635
Borislav Petkov10de6492012-09-12 19:00:38 +02002636 /*
2637 * We iterate over DCT0 here but we look at DCT1 in parallel, if needed.
2638 */
Borislav Petkov11c75ea2010-11-29 19:49:02 +01002639 for_each_chip_select(i, 0, pvt) {
Borislav Petkov10de6492012-09-12 19:00:38 +02002640 bool row_dct0 = !!csrow_enabled(i, 0, pvt);
2641 bool row_dct1 = false;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002642
Borislav Petkova4b4bed2013-08-10 13:54:48 +02002643 if (pvt->fam != 0xf)
Borislav Petkov10de6492012-09-12 19:00:38 +02002644 row_dct1 = !!csrow_enabled(i, 1, pvt);
2645
2646 if (!row_dct0 && !row_dct1)
Doug Thompson0ec449e2009-04-27 19:41:25 +02002647 continue;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002648
Borislav Petkov10de6492012-09-12 19:00:38 +02002649 csrow = mci->csrows[i];
Doug Thompson0ec449e2009-04-27 19:41:25 +02002650 empty = 0;
Borislav Petkov11c75ea2010-11-29 19:49:02 +01002651
Borislav Petkov10de6492012-09-12 19:00:38 +02002652 edac_dbg(1, "MC node: %d, csrow: %d\n",
2653 pvt->mc_node_id, i);
2654
Mauro Carvalho Chehab1eef1282013-03-11 09:07:46 -03002655 if (row_dct0) {
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01002656 nr_pages = get_csrow_nr_pages(pvt, 0, i);
Mauro Carvalho Chehab1eef1282013-03-11 09:07:46 -03002657 csrow->channels[0]->dimm->nr_pages = nr_pages;
2658 }
Borislav Petkov10de6492012-09-12 19:00:38 +02002659
2660 /* K8 has only one DCT */
Borislav Petkova4b4bed2013-08-10 13:54:48 +02002661 if (pvt->fam != 0xf && row_dct1) {
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01002662 int row_dct1_pages = get_csrow_nr_pages(pvt, 1, i);
Mauro Carvalho Chehab1eef1282013-03-11 09:07:46 -03002663
2664 csrow->channels[1]->dimm->nr_pages = row_dct1_pages;
2665 nr_pages += row_dct1_pages;
2666 }
Doug Thompson0ec449e2009-04-27 19:41:25 +02002667
Borislav Petkov10de6492012-09-12 19:00:38 +02002668 edac_dbg(1, "Total csrow%d pages: %u\n", i, nr_pages);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002669
2670 /*
2671 * determine whether CHIPKILL or JUST ECC or NO ECC is operating
2672 */
Borislav Petkova97fa682010-12-23 14:07:18 +01002673 if (pvt->nbcfg & NBCFG_ECC_ENABLE)
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -03002674 edac_mode = (pvt->nbcfg & NBCFG_CHIPKILL) ?
2675 EDAC_S4ECD4ED : EDAC_SECDED;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002676 else
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -03002677 edac_mode = EDAC_NONE;
2678
2679 for (j = 0; j < pvt->channel_count; j++) {
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -03002680 dimm = csrow->channels[j]->dimm;
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01002681 dimm->mtype = pvt->dram_type;
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -03002682 dimm->edac_mode = edac_mode;
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -03002683 }
Doug Thompson0ec449e2009-04-27 19:41:25 +02002684 }
2685
2686 return empty;
2687}
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002688
Borislav Petkov06724532009-09-16 13:05:46 +02002689/* get all cores on this DCT */
Daniel J Blueman8b84c8d2012-11-27 14:32:10 +08002690static void get_cpus_on_this_dct_cpumask(struct cpumask *mask, u16 nid)
Doug Thompsonf9431992009-04-27 19:46:08 +02002691{
Borislav Petkov06724532009-09-16 13:05:46 +02002692 int cpu;
Doug Thompsonf9431992009-04-27 19:46:08 +02002693
Borislav Petkov06724532009-09-16 13:05:46 +02002694 for_each_online_cpu(cpu)
2695 if (amd_get_nb_id(cpu) == nid)
2696 cpumask_set_cpu(cpu, mask);
Doug Thompsonf9431992009-04-27 19:46:08 +02002697}
2698
2699/* check MCG_CTL on all the cpus on this node */
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01002700static bool nb_mce_bank_enabled_on_node(u16 nid)
Doug Thompsonf9431992009-04-27 19:46:08 +02002701{
Rusty Russellba578cb2009-11-03 14:56:35 +10302702 cpumask_var_t mask;
Borislav Petkov50542252009-12-11 18:14:40 +01002703 int cpu, nbe;
Borislav Petkov06724532009-09-16 13:05:46 +02002704 bool ret = false;
Doug Thompsonf9431992009-04-27 19:46:08 +02002705
Rusty Russellba578cb2009-11-03 14:56:35 +10302706 if (!zalloc_cpumask_var(&mask, GFP_KERNEL)) {
Borislav Petkov24f9a7f2010-10-07 18:29:15 +02002707 amd64_warn("%s: Error allocating mask\n", __func__);
Rusty Russellba578cb2009-11-03 14:56:35 +10302708 return false;
2709 }
Borislav Petkov06724532009-09-16 13:05:46 +02002710
Rusty Russellba578cb2009-11-03 14:56:35 +10302711 get_cpus_on_this_dct_cpumask(mask, nid);
Borislav Petkov06724532009-09-16 13:05:46 +02002712
Rusty Russellba578cb2009-11-03 14:56:35 +10302713 rdmsr_on_cpus(mask, MSR_IA32_MCG_CTL, msrs);
Borislav Petkov06724532009-09-16 13:05:46 +02002714
Rusty Russellba578cb2009-11-03 14:56:35 +10302715 for_each_cpu(cpu, mask) {
Borislav Petkov50542252009-12-11 18:14:40 +01002716 struct msr *reg = per_cpu_ptr(msrs, cpu);
Borislav Petkov5980bb92011-01-07 16:26:49 +01002717 nbe = reg->l & MSR_MCGCTL_NBE;
Borislav Petkov06724532009-09-16 13:05:46 +02002718
Joe Perches956b9ba12012-04-29 17:08:39 -03002719 edac_dbg(0, "core: %u, MCG_CTL: 0x%llx, NB MSR is %s\n",
2720 cpu, reg->q,
2721 (nbe ? "enabled" : "disabled"));
Borislav Petkov06724532009-09-16 13:05:46 +02002722
2723 if (!nbe)
2724 goto out;
Borislav Petkov06724532009-09-16 13:05:46 +02002725 }
2726 ret = true;
2727
2728out:
Rusty Russellba578cb2009-11-03 14:56:35 +10302729 free_cpumask_var(mask);
Doug Thompsonf9431992009-04-27 19:46:08 +02002730 return ret;
2731}
2732
Daniel J Bluemanc7e53012012-11-30 16:44:20 +08002733static int toggle_ecc_err_reporting(struct ecc_settings *s, u16 nid, bool on)
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002734{
2735 cpumask_var_t cmask;
Borislav Petkov50542252009-12-11 18:14:40 +01002736 int cpu;
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002737
2738 if (!zalloc_cpumask_var(&cmask, GFP_KERNEL)) {
Borislav Petkov24f9a7f2010-10-07 18:29:15 +02002739 amd64_warn("%s: error allocating mask\n", __func__);
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002740 return false;
2741 }
2742
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02002743 get_cpus_on_this_dct_cpumask(cmask, nid);
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002744
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002745 rdmsr_on_cpus(cmask, MSR_IA32_MCG_CTL, msrs);
2746
2747 for_each_cpu(cpu, cmask) {
2748
Borislav Petkov50542252009-12-11 18:14:40 +01002749 struct msr *reg = per_cpu_ptr(msrs, cpu);
2750
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002751 if (on) {
Borislav Petkov5980bb92011-01-07 16:26:49 +01002752 if (reg->l & MSR_MCGCTL_NBE)
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02002753 s->flags.nb_mce_enable = 1;
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002754
Borislav Petkov5980bb92011-01-07 16:26:49 +01002755 reg->l |= MSR_MCGCTL_NBE;
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002756 } else {
2757 /*
Borislav Petkovd95cf4d2010-02-24 14:49:47 +01002758 * Turn off NB MCE reporting only when it was off before
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002759 */
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02002760 if (!s->flags.nb_mce_enable)
Borislav Petkov5980bb92011-01-07 16:26:49 +01002761 reg->l &= ~MSR_MCGCTL_NBE;
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002762 }
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002763 }
2764 wrmsr_on_cpus(cmask, MSR_IA32_MCG_CTL, msrs);
2765
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002766 free_cpumask_var(cmask);
2767
2768 return 0;
2769}
2770
Daniel J Bluemanc7e53012012-11-30 16:44:20 +08002771static bool enable_ecc_error_reporting(struct ecc_settings *s, u16 nid,
Borislav Petkov2299ef72010-10-15 17:44:04 +02002772 struct pci_dev *F3)
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002773{
Borislav Petkov2299ef72010-10-15 17:44:04 +02002774 bool ret = true;
Borislav Petkovc9f4f262010-12-22 19:48:20 +01002775 u32 value, mask = 0x3; /* UECC/CECC enable */
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002776
Borislav Petkov2299ef72010-10-15 17:44:04 +02002777 if (toggle_ecc_err_reporting(s, nid, ON)) {
2778 amd64_warn("Error enabling ECC reporting over MCGCTL!\n");
2779 return false;
2780 }
2781
Borislav Petkovc9f4f262010-12-22 19:48:20 +01002782 amd64_read_pci_cfg(F3, NBCTL, &value);
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002783
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02002784 s->old_nbctl = value & mask;
2785 s->nbctl_valid = true;
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002786
2787 value |= mask;
Borislav Petkovc9f4f262010-12-22 19:48:20 +01002788 amd64_write_pci_cfg(F3, NBCTL, value);
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002789
Borislav Petkova97fa682010-12-23 14:07:18 +01002790 amd64_read_pci_cfg(F3, NBCFG, &value);
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002791
Joe Perches956b9ba12012-04-29 17:08:39 -03002792 edac_dbg(0, "1: node %d, NBCFG=0x%08x[DramEccEn: %d]\n",
2793 nid, value, !!(value & NBCFG_ECC_ENABLE));
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002794
Borislav Petkova97fa682010-12-23 14:07:18 +01002795 if (!(value & NBCFG_ECC_ENABLE)) {
Borislav Petkov24f9a7f2010-10-07 18:29:15 +02002796 amd64_warn("DRAM ECC disabled on this node, enabling...\n");
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002797
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02002798 s->flags.nb_ecc_prev = 0;
Borislav Petkovd95cf4d2010-02-24 14:49:47 +01002799
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002800 /* Attempt to turn on DRAM ECC Enable */
Borislav Petkova97fa682010-12-23 14:07:18 +01002801 value |= NBCFG_ECC_ENABLE;
2802 amd64_write_pci_cfg(F3, NBCFG, value);
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002803
Borislav Petkova97fa682010-12-23 14:07:18 +01002804 amd64_read_pci_cfg(F3, NBCFG, &value);
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002805
Borislav Petkova97fa682010-12-23 14:07:18 +01002806 if (!(value & NBCFG_ECC_ENABLE)) {
Borislav Petkov24f9a7f2010-10-07 18:29:15 +02002807 amd64_warn("Hardware rejected DRAM ECC enable,"
2808 "check memory DIMM configuration.\n");
Borislav Petkov2299ef72010-10-15 17:44:04 +02002809 ret = false;
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002810 } else {
Borislav Petkov24f9a7f2010-10-07 18:29:15 +02002811 amd64_info("Hardware accepted DRAM ECC Enable\n");
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002812 }
Borislav Petkovd95cf4d2010-02-24 14:49:47 +01002813 } else {
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02002814 s->flags.nb_ecc_prev = 1;
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002815 }
Borislav Petkovd95cf4d2010-02-24 14:49:47 +01002816
Joe Perches956b9ba12012-04-29 17:08:39 -03002817 edac_dbg(0, "2: node %d, NBCFG=0x%08x[DramEccEn: %d]\n",
2818 nid, value, !!(value & NBCFG_ECC_ENABLE));
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002819
Borislav Petkov2299ef72010-10-15 17:44:04 +02002820 return ret;
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002821}
2822
Daniel J Bluemanc7e53012012-11-30 16:44:20 +08002823static void restore_ecc_error_reporting(struct ecc_settings *s, u16 nid,
Borislav Petkov360b7f32010-10-15 19:25:38 +02002824 struct pci_dev *F3)
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002825{
Borislav Petkovc9f4f262010-12-22 19:48:20 +01002826 u32 value, mask = 0x3; /* UECC/CECC enable */
2827
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02002828 if (!s->nbctl_valid)
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002829 return;
2830
Borislav Petkovc9f4f262010-12-22 19:48:20 +01002831 amd64_read_pci_cfg(F3, NBCTL, &value);
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002832 value &= ~mask;
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02002833 value |= s->old_nbctl;
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002834
Borislav Petkovc9f4f262010-12-22 19:48:20 +01002835 amd64_write_pci_cfg(F3, NBCTL, value);
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002836
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02002837 /* restore previous BIOS DRAM ECC "off" setting we force-enabled */
2838 if (!s->flags.nb_ecc_prev) {
Borislav Petkova97fa682010-12-23 14:07:18 +01002839 amd64_read_pci_cfg(F3, NBCFG, &value);
2840 value &= ~NBCFG_ECC_ENABLE;
2841 amd64_write_pci_cfg(F3, NBCFG, value);
Borislav Petkovd95cf4d2010-02-24 14:49:47 +01002842 }
2843
2844 /* restore the NB Enable MCGCTL bit */
Borislav Petkov2299ef72010-10-15 17:44:04 +02002845 if (toggle_ecc_err_reporting(s, nid, OFF))
Borislav Petkov24f9a7f2010-10-07 18:29:15 +02002846 amd64_warn("Error restoring NB MCGCTL settings!\n");
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002847}
2848
Doug Thompsonf9431992009-04-27 19:46:08 +02002849/*
Borislav Petkov2299ef72010-10-15 17:44:04 +02002850 * EDAC requires that the BIOS have ECC enabled before
2851 * taking over the processing of ECC errors. A command line
2852 * option allows to force-enable hardware ECC later in
2853 * enable_ecc_error_reporting().
Doug Thompsonf9431992009-04-27 19:46:08 +02002854 */
Borislav Petkovcab4d272010-02-11 17:15:57 +01002855static const char *ecc_msg =
2856 "ECC disabled in the BIOS or no ECC capability, module will not load.\n"
2857 " Either enable ECC checking or force module loading by setting "
2858 "'ecc_enable_override'.\n"
2859 " (Note that use of the override may cause unknown side effects.)\n";
Borislav Petkovbe3468e2009-08-05 15:47:22 +02002860
Daniel J Bluemanc7e53012012-11-30 16:44:20 +08002861static bool ecc_enabled(struct pci_dev *F3, u16 nid)
Doug Thompsonf9431992009-04-27 19:46:08 +02002862{
Borislav Petkov06724532009-09-16 13:05:46 +02002863 bool nb_mce_en = false;
Yazen Ghannam196b79f2016-11-17 17:57:34 -05002864 u8 ecc_en = 0, i;
2865 u32 value;
Doug Thompsonf9431992009-04-27 19:46:08 +02002866
Yazen Ghannam196b79f2016-11-17 17:57:34 -05002867 if (boot_cpu_data.x86 >= 0x17) {
2868 u8 umc_en_mask = 0, ecc_en_mask = 0;
Doug Thompsonf9431992009-04-27 19:46:08 +02002869
Yazen Ghannam196b79f2016-11-17 17:57:34 -05002870 for (i = 0; i < NUM_UMCS; i++) {
2871 u32 base = get_umc_base(i);
2872
2873 /* Only check enabled UMCs. */
2874 if (amd_smn_read(nid, base + UMCCH_SDP_CTRL, &value))
2875 continue;
2876
2877 if (!(value & UMC_SDP_INIT))
2878 continue;
2879
2880 umc_en_mask |= BIT(i);
2881
2882 if (amd_smn_read(nid, base + UMCCH_UMC_CAP_HI, &value))
2883 continue;
2884
2885 if (value & UMC_ECC_ENABLED)
2886 ecc_en_mask |= BIT(i);
2887 }
2888
2889 /* Check whether at least one UMC is enabled: */
2890 if (umc_en_mask)
2891 ecc_en = umc_en_mask == ecc_en_mask;
2892
2893 /* Assume UMC MCA banks are enabled. */
2894 nb_mce_en = true;
2895 } else {
2896 amd64_read_pci_cfg(F3, NBCFG, &value);
2897
2898 ecc_en = !!(value & NBCFG_ECC_ENABLE);
2899
2900 nb_mce_en = nb_mce_bank_enabled_on_node(nid);
2901 if (!nb_mce_en)
2902 amd64_notice("NB MCE bank disabled, set MSR 0x%08x[4] on node %d to enable.\n",
2903 MSR_IA32_MCG_CTL, nid);
2904 }
2905
Borislav Petkov2299ef72010-10-15 17:44:04 +02002906 amd64_info("DRAM ECC %s.\n", (ecc_en ? "enabled" : "disabled"));
Doug Thompsonf9431992009-04-27 19:46:08 +02002907
Borislav Petkov2299ef72010-10-15 17:44:04 +02002908 if (!ecc_en || !nb_mce_en) {
2909 amd64_notice("%s", ecc_msg);
2910 return false;
Borislav Petkov43f5e682009-12-21 18:55:18 +01002911 }
Borislav Petkov2299ef72010-10-15 17:44:04 +02002912 return true;
Doug Thompsonf9431992009-04-27 19:46:08 +02002913}
2914
Borislav Petkovdf71a052011-01-19 18:15:10 +01002915static void setup_mci_misc_attrs(struct mem_ctl_info *mci,
2916 struct amd64_family_type *fam)
Doug Thompson7d6034d2009-04-27 20:01:01 +02002917{
2918 struct amd64_pvt *pvt = mci->pvt_info;
2919
2920 mci->mtype_cap = MEM_FLAG_DDR2 | MEM_FLAG_RDDR2;
2921 mci->edac_ctl_cap = EDAC_FLAG_NONE;
Doug Thompson7d6034d2009-04-27 20:01:01 +02002922
Borislav Petkov5980bb92011-01-07 16:26:49 +01002923 if (pvt->nbcap & NBCAP_SECDED)
Doug Thompson7d6034d2009-04-27 20:01:01 +02002924 mci->edac_ctl_cap |= EDAC_FLAG_SECDED;
2925
Borislav Petkov5980bb92011-01-07 16:26:49 +01002926 if (pvt->nbcap & NBCAP_CHIPKILL)
Doug Thompson7d6034d2009-04-27 20:01:01 +02002927 mci->edac_ctl_cap |= EDAC_FLAG_S4ECD4ED;
2928
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01002929 mci->edac_cap = determine_edac_cap(pvt);
Doug Thompson7d6034d2009-04-27 20:01:01 +02002930 mci->mod_name = EDAC_MOD_STR;
2931 mci->mod_ver = EDAC_AMD64_VERSION;
Borislav Petkovdf71a052011-01-19 18:15:10 +01002932 mci->ctl_name = fam->ctl_name;
Yazen Ghanname7934b72016-11-17 17:57:30 -05002933 mci->dev_name = pci_name(pvt->F3);
Doug Thompson7d6034d2009-04-27 20:01:01 +02002934 mci->ctl_page_to_phys = NULL;
2935
Doug Thompson7d6034d2009-04-27 20:01:01 +02002936 /* memory scrubber interface */
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01002937 mci->set_sdram_scrub_rate = set_scrub_rate;
2938 mci->get_sdram_scrub_rate = get_scrub_rate;
Doug Thompson7d6034d2009-04-27 20:01:01 +02002939}
2940
Borislav Petkov0092b202010-10-01 19:20:05 +02002941/*
2942 * returns a pointer to the family descriptor on success, NULL otherwise.
2943 */
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01002944static struct amd64_family_type *per_family_init(struct amd64_pvt *pvt)
Borislav Petkov395ae782010-10-01 18:38:19 +02002945{
Borislav Petkov0092b202010-10-01 19:20:05 +02002946 struct amd64_family_type *fam_type = NULL;
2947
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05002948 pvt->ext_model = boot_cpu_data.x86_model >> 4;
Borislav Petkova4b4bed2013-08-10 13:54:48 +02002949 pvt->stepping = boot_cpu_data.x86_mask;
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05002950 pvt->model = boot_cpu_data.x86_model;
2951 pvt->fam = boot_cpu_data.x86;
2952
2953 switch (pvt->fam) {
Borislav Petkov395ae782010-10-01 18:38:19 +02002954 case 0xf:
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01002955 fam_type = &family_types[K8_CPUS];
2956 pvt->ops = &family_types[K8_CPUS].ops;
Borislav Petkov395ae782010-10-01 18:38:19 +02002957 break;
Borislav Petkovdf71a052011-01-19 18:15:10 +01002958
Borislav Petkov395ae782010-10-01 18:38:19 +02002959 case 0x10:
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01002960 fam_type = &family_types[F10_CPUS];
2961 pvt->ops = &family_types[F10_CPUS].ops;
Borislav Petkovdf71a052011-01-19 18:15:10 +01002962 break;
2963
2964 case 0x15:
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05002965 if (pvt->model == 0x30) {
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01002966 fam_type = &family_types[F15_M30H_CPUS];
2967 pvt->ops = &family_types[F15_M30H_CPUS].ops;
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05002968 break;
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01002969 } else if (pvt->model == 0x60) {
2970 fam_type = &family_types[F15_M60H_CPUS];
2971 pvt->ops = &family_types[F15_M60H_CPUS].ops;
2972 break;
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05002973 }
2974
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01002975 fam_type = &family_types[F15_CPUS];
2976 pvt->ops = &family_types[F15_CPUS].ops;
Borislav Petkov395ae782010-10-01 18:38:19 +02002977 break;
2978
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -05002979 case 0x16:
Aravind Gopalakrishnan85a88852014-02-20 10:28:46 -06002980 if (pvt->model == 0x30) {
2981 fam_type = &family_types[F16_M30H_CPUS];
2982 pvt->ops = &family_types[F16_M30H_CPUS].ops;
2983 break;
2984 }
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01002985 fam_type = &family_types[F16_CPUS];
2986 pvt->ops = &family_types[F16_CPUS].ops;
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -05002987 break;
2988
Yazen Ghannamf1cbbec2016-11-17 17:57:35 -05002989 case 0x17:
2990 fam_type = &family_types[F17_CPUS];
2991 pvt->ops = &family_types[F17_CPUS].ops;
2992 break;
2993
Borislav Petkov395ae782010-10-01 18:38:19 +02002994 default:
Borislav Petkov24f9a7f2010-10-07 18:29:15 +02002995 amd64_err("Unsupported family!\n");
Borislav Petkov0092b202010-10-01 19:20:05 +02002996 return NULL;
Borislav Petkov395ae782010-10-01 18:38:19 +02002997 }
Borislav Petkov0092b202010-10-01 19:20:05 +02002998
Borislav Petkovdf71a052011-01-19 18:15:10 +01002999 amd64_info("%s %sdetected (node %d).\n", fam_type->ctl_name,
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05003000 (pvt->fam == 0xf ?
Borislav Petkov24f9a7f2010-10-07 18:29:15 +02003001 (pvt->ext_model >= K8_REV_F ? "revF or later "
3002 : "revE or earlier ")
3003 : ""), pvt->mc_node_id);
Borislav Petkov0092b202010-10-01 19:20:05 +02003004 return fam_type;
Borislav Petkov395ae782010-10-01 18:38:19 +02003005}
3006
Takashi Iwaie339f1e2015-02-04 11:48:53 +01003007static const struct attribute_group *amd64_edac_attr_groups[] = {
3008#ifdef CONFIG_EDAC_DEBUG
3009 &amd64_edac_dbg_group,
3010#endif
3011#ifdef CONFIG_EDAC_AMD64_ERROR_INJECTION
3012 &amd64_edac_inj_group,
3013#endif
3014 NULL
3015};
3016
Borislav Petkov3f37a362016-05-06 19:44:27 +02003017static int init_one_instance(unsigned int nid)
Doug Thompson7d6034d2009-04-27 20:01:01 +02003018{
Borislav Petkov3f37a362016-05-06 19:44:27 +02003019 struct pci_dev *F3 = node_to_amd_nb(nid)->misc;
Borislav Petkov0092b202010-10-01 19:20:05 +02003020 struct amd64_family_type *fam_type = NULL;
Borislav Petkov360b7f32010-10-15 19:25:38 +02003021 struct mem_ctl_info *mci = NULL;
Mauro Carvalho Chehabab5a5032012-04-16 15:03:50 -03003022 struct edac_mc_layer layers[2];
Borislav Petkov3f37a362016-05-06 19:44:27 +02003023 struct amd64_pvt *pvt = NULL;
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05003024 u16 pci_id1, pci_id2;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003025 int err = 0, ret;
3026
3027 ret = -ENOMEM;
3028 pvt = kzalloc(sizeof(struct amd64_pvt), GFP_KERNEL);
3029 if (!pvt)
Borislav Petkov360b7f32010-10-15 19:25:38 +02003030 goto err_ret;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003031
Borislav Petkov360b7f32010-10-15 19:25:38 +02003032 pvt->mc_node_id = nid;
Borislav Petkov3f37a362016-05-06 19:44:27 +02003033 pvt->F3 = F3;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003034
Borislav Petkov395ae782010-10-01 18:38:19 +02003035 ret = -EINVAL;
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01003036 fam_type = per_family_init(pvt);
Borislav Petkov0092b202010-10-01 19:20:05 +02003037 if (!fam_type)
Borislav Petkov395ae782010-10-01 18:38:19 +02003038 goto err_free;
3039
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05003040 if (pvt->fam >= 0x17) {
3041 pvt->umc = kcalloc(NUM_UMCS, sizeof(struct amd64_umc), GFP_KERNEL);
3042 if (!pvt->umc) {
3043 ret = -ENOMEM;
3044 goto err_free;
3045 }
3046
3047 pci_id1 = fam_type->f0_id;
3048 pci_id2 = fam_type->f6_id;
3049 } else {
3050 pci_id1 = fam_type->f1_id;
3051 pci_id2 = fam_type->f2_id;
3052 }
3053
3054 err = reserve_mc_sibling_devs(pvt, pci_id1, pci_id2);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003055 if (err)
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05003056 goto err_post_init;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003057
Borislav Petkov360b7f32010-10-15 19:25:38 +02003058 read_mc_regs(pvt);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003059
Doug Thompson7d6034d2009-04-27 20:01:01 +02003060 /*
3061 * We need to determine how many memory channels there are. Then use
3062 * that information for calculating the size of the dynamic instance
Borislav Petkov360b7f32010-10-15 19:25:38 +02003063 * tables in the 'mci' structure.
Doug Thompson7d6034d2009-04-27 20:01:01 +02003064 */
Borislav Petkov360b7f32010-10-15 19:25:38 +02003065 ret = -EINVAL;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003066 pvt->channel_count = pvt->ops->early_channel_count(pvt);
3067 if (pvt->channel_count < 0)
Borislav Petkov360b7f32010-10-15 19:25:38 +02003068 goto err_siblings;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003069
3070 ret = -ENOMEM;
Mauro Carvalho Chehabab5a5032012-04-16 15:03:50 -03003071 layers[0].type = EDAC_MC_LAYER_CHIP_SELECT;
3072 layers[0].size = pvt->csels[0].b_cnt;
3073 layers[0].is_virt_csrow = true;
3074 layers[1].type = EDAC_MC_LAYER_CHANNEL;
Borislav Petkovf0a56c42013-07-23 20:01:23 +02003075
3076 /*
3077 * Always allocate two channels since we can have setups with DIMMs on
3078 * only one channel. Also, this simplifies handling later for the price
3079 * of a couple of KBs tops.
3080 */
3081 layers[1].size = 2;
Mauro Carvalho Chehabab5a5032012-04-16 15:03:50 -03003082 layers[1].is_virt_csrow = false;
Borislav Petkovf0a56c42013-07-23 20:01:23 +02003083
Mauro Carvalho Chehabca0907b2012-05-02 14:37:00 -03003084 mci = edac_mc_alloc(nid, ARRAY_SIZE(layers), layers, 0);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003085 if (!mci)
Borislav Petkov360b7f32010-10-15 19:25:38 +02003086 goto err_siblings;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003087
3088 mci->pvt_info = pvt;
Borislav Petkov3f37a362016-05-06 19:44:27 +02003089 mci->pdev = &pvt->F3->dev;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003090
Borislav Petkovdf71a052011-01-19 18:15:10 +01003091 setup_mci_misc_attrs(mci, fam_type);
Borislav Petkov360b7f32010-10-15 19:25:38 +02003092
3093 if (init_csrows(mci))
Doug Thompson7d6034d2009-04-27 20:01:01 +02003094 mci->edac_cap = EDAC_FLAG_NONE;
3095
Doug Thompson7d6034d2009-04-27 20:01:01 +02003096 ret = -ENODEV;
Takashi Iwaie339f1e2015-02-04 11:48:53 +01003097 if (edac_mc_add_mc_with_groups(mci, amd64_edac_attr_groups)) {
Joe Perches956b9ba12012-04-29 17:08:39 -03003098 edac_dbg(1, "failed edac_mc_add_mc()\n");
Doug Thompson7d6034d2009-04-27 20:01:01 +02003099 goto err_add_mc;
3100 }
3101
Borislav Petkov549d0422009-07-24 13:51:42 +02003102 /* register stuff with EDAC MCE */
3103 if (report_gart_errors)
3104 amd_report_gart_errors(true);
3105
Borislav Petkovdf781d02013-12-15 17:29:44 +01003106 amd_register_ecc_decoder(decode_bus_error);
Borislav Petkov549d0422009-07-24 13:51:42 +02003107
Doug Thompson7d6034d2009-04-27 20:01:01 +02003108 return 0;
3109
3110err_add_mc:
3111 edac_mc_free(mci);
3112
Borislav Petkov360b7f32010-10-15 19:25:38 +02003113err_siblings:
3114 free_mc_sibling_devs(pvt);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003115
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05003116err_post_init:
3117 if (pvt->fam >= 0x17)
3118 kfree(pvt->umc);
3119
Borislav Petkov360b7f32010-10-15 19:25:38 +02003120err_free:
3121 kfree(pvt);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003122
Borislav Petkov360b7f32010-10-15 19:25:38 +02003123err_ret:
Doug Thompson7d6034d2009-04-27 20:01:01 +02003124 return ret;
3125}
3126
Borislav Petkov3f37a362016-05-06 19:44:27 +02003127static int probe_one_instance(unsigned int nid)
Doug Thompson7d6034d2009-04-27 20:01:01 +02003128{
Borislav Petkov2299ef72010-10-15 17:44:04 +02003129 struct pci_dev *F3 = node_to_amd_nb(nid)->misc;
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02003130 struct ecc_settings *s;
Borislav Petkov3f37a362016-05-06 19:44:27 +02003131 int ret;
Borislav Petkovb8cfa022010-10-01 19:35:38 +02003132
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02003133 ret = -ENOMEM;
3134 s = kzalloc(sizeof(struct ecc_settings), GFP_KERNEL);
3135 if (!s)
Borislav Petkov2299ef72010-10-15 17:44:04 +02003136 goto err_out;
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02003137
3138 ecc_stngs[nid] = s;
3139
Borislav Petkov2299ef72010-10-15 17:44:04 +02003140 if (!ecc_enabled(F3, nid)) {
3141 ret = -ENODEV;
3142
3143 if (!ecc_enable_override)
3144 goto err_enable;
3145
Yazen Ghannam044e7a42016-11-22 15:40:16 -06003146 if (boot_cpu_data.x86 >= 0x17) {
3147 amd64_warn("Forcing ECC on is not recommended on newer systems. Please enable ECC in BIOS.");
3148 goto err_enable;
3149 } else
3150 amd64_warn("Forcing ECC on!\n");
Borislav Petkov2299ef72010-10-15 17:44:04 +02003151
3152 if (!enable_ecc_error_reporting(s, nid, F3))
3153 goto err_enable;
3154 }
3155
Borislav Petkov3f37a362016-05-06 19:44:27 +02003156 ret = init_one_instance(nid);
Borislav Petkov360b7f32010-10-15 19:25:38 +02003157 if (ret < 0) {
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02003158 amd64_err("Error probing instance: %d\n", nid);
Yazen Ghannam044e7a42016-11-22 15:40:16 -06003159
3160 if (boot_cpu_data.x86 < 0x17)
3161 restore_ecc_error_reporting(s, nid, F3);
Borislav Petkov360b7f32010-10-15 19:25:38 +02003162 }
Doug Thompson7d6034d2009-04-27 20:01:01 +02003163
3164 return ret;
Borislav Petkov2299ef72010-10-15 17:44:04 +02003165
3166err_enable:
3167 kfree(s);
3168 ecc_stngs[nid] = NULL;
3169
3170err_out:
3171 return ret;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003172}
3173
Borislav Petkov3f37a362016-05-06 19:44:27 +02003174static void remove_one_instance(unsigned int nid)
Doug Thompson7d6034d2009-04-27 20:01:01 +02003175{
Borislav Petkov360b7f32010-10-15 19:25:38 +02003176 struct pci_dev *F3 = node_to_amd_nb(nid)->misc;
3177 struct ecc_settings *s = ecc_stngs[nid];
Borislav Petkov3f37a362016-05-06 19:44:27 +02003178 struct mem_ctl_info *mci;
3179 struct amd64_pvt *pvt;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003180
Borislav Petkov3f37a362016-05-06 19:44:27 +02003181 mci = find_mci_by_dev(&F3->dev);
Borislav Petkova4b4bed2013-08-10 13:54:48 +02003182 WARN_ON(!mci);
3183
Doug Thompson7d6034d2009-04-27 20:01:01 +02003184 /* Remove from EDAC CORE tracking list */
Borislav Petkov3f37a362016-05-06 19:44:27 +02003185 mci = edac_mc_del_mc(&F3->dev);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003186 if (!mci)
3187 return;
3188
3189 pvt = mci->pvt_info;
3190
Borislav Petkov360b7f32010-10-15 19:25:38 +02003191 restore_ecc_error_reporting(s, nid, F3);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003192
Borislav Petkov360b7f32010-10-15 19:25:38 +02003193 free_mc_sibling_devs(pvt);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003194
Borislav Petkov549d0422009-07-24 13:51:42 +02003195 /* unregister from EDAC MCE */
3196 amd_report_gart_errors(false);
Borislav Petkovdf781d02013-12-15 17:29:44 +01003197 amd_unregister_ecc_decoder(decode_bus_error);
Borislav Petkov549d0422009-07-24 13:51:42 +02003198
Borislav Petkov360b7f32010-10-15 19:25:38 +02003199 kfree(ecc_stngs[nid]);
3200 ecc_stngs[nid] = NULL;
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02003201
Doug Thompson7d6034d2009-04-27 20:01:01 +02003202 /* Free the EDAC CORE resources */
Borislav Petkov8f68ed92009-12-21 15:15:59 +01003203 mci->pvt_info = NULL;
Borislav Petkov8f68ed92009-12-21 15:15:59 +01003204
3205 kfree(pvt);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003206 edac_mc_free(mci);
3207}
3208
Borislav Petkov360b7f32010-10-15 19:25:38 +02003209static void setup_pci_device(void)
Doug Thompson7d6034d2009-04-27 20:01:01 +02003210{
3211 struct mem_ctl_info *mci;
3212 struct amd64_pvt *pvt;
3213
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01003214 if (pci_ctl)
Doug Thompson7d6034d2009-04-27 20:01:01 +02003215 return;
3216
Borislav Petkov2ec591a2015-02-17 10:58:34 +01003217 mci = edac_mc_find(0);
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01003218 if (!mci)
3219 return;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003220
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01003221 pvt = mci->pvt_info;
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05003222 if (pvt->umc)
3223 pci_ctl = edac_pci_create_generic_ctl(&pvt->F0->dev, EDAC_MOD_STR);
3224 else
3225 pci_ctl = edac_pci_create_generic_ctl(&pvt->F2->dev, EDAC_MOD_STR);
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01003226 if (!pci_ctl) {
3227 pr_warn("%s(): Unable to create PCI control\n", __func__);
3228 pr_warn("%s(): PCI error report via EDAC not set\n", __func__);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003229 }
3230}
3231
Yazen Ghannamd6efab72016-09-15 19:07:17 -05003232static const struct x86_cpu_id amd64_cpuids[] = {
3233 { X86_VENDOR_AMD, 0xF, X86_MODEL_ANY, X86_FEATURE_ANY, 0 },
3234 { X86_VENDOR_AMD, 0x10, X86_MODEL_ANY, X86_FEATURE_ANY, 0 },
3235 { X86_VENDOR_AMD, 0x15, X86_MODEL_ANY, X86_FEATURE_ANY, 0 },
3236 { X86_VENDOR_AMD, 0x16, X86_MODEL_ANY, X86_FEATURE_ANY, 0 },
3237 { }
3238};
3239MODULE_DEVICE_TABLE(x86cpu, amd64_cpuids);
3240
Doug Thompson7d6034d2009-04-27 20:01:01 +02003241static int __init amd64_edac_init(void)
3242{
Borislav Petkov360b7f32010-10-15 19:25:38 +02003243 int err = -ENODEV;
Borislav Petkov3f37a362016-05-06 19:44:27 +02003244 int i;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003245
Hans Rosenfeld9653a5c2010-10-29 17:14:31 +02003246 if (amd_cache_northbridges() < 0)
Borislav Petkov56b34b92009-12-21 18:13:01 +01003247 goto err_ret;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003248
Borislav Petkov6ba92fe2016-06-16 01:13:18 +02003249 opstate_init();
3250
Borislav Petkovcc4d8862010-10-13 16:11:59 +02003251 err = -ENOMEM;
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02003252 ecc_stngs = kzalloc(amd_nb_num() * sizeof(ecc_stngs[0]), GFP_KERNEL);
Borislav Petkov2ec591a2015-02-17 10:58:34 +01003253 if (!ecc_stngs)
Borislav Petkova9f0fbe2011-03-29 18:10:53 +02003254 goto err_free;
Borislav Petkovcc4d8862010-10-13 16:11:59 +02003255
Borislav Petkov50542252009-12-11 18:14:40 +01003256 msrs = msrs_alloc();
Borislav Petkov56b34b92009-12-21 18:13:01 +01003257 if (!msrs)
Borislav Petkov360b7f32010-10-15 19:25:38 +02003258 goto err_free;
Borislav Petkov50542252009-12-11 18:14:40 +01003259
Borislav Petkov3f37a362016-05-06 19:44:27 +02003260 for (i = 0; i < amd_nb_num(); i++)
3261 if (probe_one_instance(i)) {
3262 /* unwind properly */
3263 while (--i >= 0)
3264 remove_one_instance(i);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003265
Borislav Petkov3f37a362016-05-06 19:44:27 +02003266 goto err_pci;
3267 }
Doug Thompson7d6034d2009-04-27 20:01:01 +02003268
Borislav Petkov360b7f32010-10-15 19:25:38 +02003269 setup_pci_device();
Tomasz Palaf5b10c42014-11-02 11:22:12 +01003270
3271#ifdef CONFIG_X86_32
3272 amd64_err("%s on 32-bit is unsupported. USE AT YOUR OWN RISK!\n", EDAC_MOD_STR);
3273#endif
3274
Borislav Petkovde0336b2016-04-27 12:21:21 +02003275 printk(KERN_INFO "AMD64 EDAC driver v%s\n", EDAC_AMD64_VERSION);
3276
Borislav Petkov360b7f32010-10-15 19:25:38 +02003277 return 0;
Borislav Petkov56b34b92009-12-21 18:13:01 +01003278
Borislav Petkov56b34b92009-12-21 18:13:01 +01003279err_pci:
3280 msrs_free(msrs);
3281 msrs = NULL;
Borislav Petkovcc4d8862010-10-13 16:11:59 +02003282
Borislav Petkov360b7f32010-10-15 19:25:38 +02003283err_free:
Borislav Petkov360b7f32010-10-15 19:25:38 +02003284 kfree(ecc_stngs);
3285 ecc_stngs = NULL;
3286
Borislav Petkov56b34b92009-12-21 18:13:01 +01003287err_ret:
Doug Thompson7d6034d2009-04-27 20:01:01 +02003288 return err;
3289}
3290
3291static void __exit amd64_edac_exit(void)
3292{
Borislav Petkov3f37a362016-05-06 19:44:27 +02003293 int i;
3294
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01003295 if (pci_ctl)
3296 edac_pci_release_generic_ctl(pci_ctl);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003297
Borislav Petkov3f37a362016-05-06 19:44:27 +02003298 for (i = 0; i < amd_nb_num(); i++)
3299 remove_one_instance(i);
Borislav Petkov50542252009-12-11 18:14:40 +01003300
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02003301 kfree(ecc_stngs);
3302 ecc_stngs = NULL;
3303
Borislav Petkov50542252009-12-11 18:14:40 +01003304 msrs_free(msrs);
3305 msrs = NULL;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003306}
3307
3308module_init(amd64_edac_init);
3309module_exit(amd64_edac_exit);
3310
3311MODULE_LICENSE("GPL");
3312MODULE_AUTHOR("SoftwareBitMaker: Doug Thompson, "
3313 "Dave Peterson, Thayne Harbaugh");
3314MODULE_DESCRIPTION("MC support for AMD64 memory controllers - "
3315 EDAC_AMD64_VERSION);
3316
3317module_param(edac_op_state, int, 0444);
3318MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI");