blob: fdd963794cdb529f9dcfe9a17a1abfc9d3ecce38 [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
Yazen Ghannam07ed82e2016-11-28 08:50:21 -0600765static void debug_display_dimm_sizes_df(struct amd64_pvt *pvt, u8 ctrl)
766{
767 u32 *dcsb = ctrl ? pvt->csels[1].csbases : pvt->csels[0].csbases;
768 int dimm, size0, size1;
769
770 edac_printk(KERN_DEBUG, EDAC_MC, "UMC%d chip selects:\n", ctrl);
771
772 for (dimm = 0; dimm < 4; dimm++) {
773 size0 = 0;
774
775 if (dcsb[dimm*2] & DCSB_CS_ENABLE)
776 size0 = pvt->ops->dbam_to_cs(pvt, ctrl, 0, dimm);
777
778 size1 = 0;
779 if (dcsb[dimm*2 + 1] & DCSB_CS_ENABLE)
780 size1 = pvt->ops->dbam_to_cs(pvt, ctrl, 0, dimm);
781
782 amd64_info(EDAC_MC ": %d: %5dMB %d: %5dMB\n",
783 dimm * 2, size0,
784 dimm * 2 + 1, size1);
785 }
786}
787
788static void __dump_misc_regs_df(struct amd64_pvt *pvt)
789{
790 struct amd64_umc *umc;
791 u32 i, tmp, umc_base;
792
793 for (i = 0; i < NUM_UMCS; i++) {
794 umc_base = get_umc_base(i);
795 umc = &pvt->umc[i];
796
797 edac_dbg(1, "UMC%d DIMM cfg: 0x%x\n", i, umc->dimm_cfg);
798 edac_dbg(1, "UMC%d UMC cfg: 0x%x\n", i, umc->umc_cfg);
799 edac_dbg(1, "UMC%d SDP ctrl: 0x%x\n", i, umc->sdp_ctrl);
800 edac_dbg(1, "UMC%d ECC ctrl: 0x%x\n", i, umc->ecc_ctrl);
801
802 amd_smn_read(pvt->mc_node_id, umc_base + UMCCH_ECC_BAD_SYMBOL, &tmp);
803 edac_dbg(1, "UMC%d ECC bad symbol: 0x%x\n", i, tmp);
804
805 amd_smn_read(pvt->mc_node_id, umc_base + UMCCH_UMC_CAP, &tmp);
806 edac_dbg(1, "UMC%d UMC cap: 0x%x\n", i, tmp);
807 edac_dbg(1, "UMC%d UMC cap high: 0x%x\n", i, umc->umc_cap_hi);
808
809 edac_dbg(1, "UMC%d ECC capable: %s, ChipKill ECC capable: %s\n",
810 i, (umc->umc_cap_hi & BIT(30)) ? "yes" : "no",
811 (umc->umc_cap_hi & BIT(31)) ? "yes" : "no");
812 edac_dbg(1, "UMC%d All DIMMs support ECC: %s\n",
813 i, (umc->umc_cfg & BIT(12)) ? "yes" : "no");
814 edac_dbg(1, "UMC%d x4 DIMMs present: %s\n",
815 i, (umc->dimm_cfg & BIT(6)) ? "yes" : "no");
816 edac_dbg(1, "UMC%d x16 DIMMs present: %s\n",
817 i, (umc->dimm_cfg & BIT(7)) ? "yes" : "no");
818
819 if (pvt->dram_type == MEM_LRDDR4) {
820 amd_smn_read(pvt->mc_node_id, umc_base + UMCCH_ADDR_CFG, &tmp);
821 edac_dbg(1, "UMC%d LRDIMM %dx rank multiply\n",
822 i, 1 << ((tmp >> 4) & 0x3));
823 }
824
825 debug_display_dimm_sizes_df(pvt, i);
826 }
827
828 edac_dbg(1, "F0x104 (DRAM Hole Address): 0x%08x, base: 0x%08x\n",
829 pvt->dhar, dhar_base(pvt));
830}
831
Doug Thompson2da11652009-04-27 16:09:09 +0200832/* Display and decode various NB registers for debug purposes. */
Yazen Ghannam07ed82e2016-11-28 08:50:21 -0600833static void __dump_misc_regs(struct amd64_pvt *pvt)
Doug Thompson2da11652009-04-27 16:09:09 +0200834{
Joe Perches956b9ba12012-04-29 17:08:39 -0300835 edac_dbg(1, "F3xE8 (NB Cap): 0x%08x\n", pvt->nbcap);
Doug Thompson2da11652009-04-27 16:09:09 +0200836
Joe Perches956b9ba12012-04-29 17:08:39 -0300837 edac_dbg(1, " NB two channel DRAM capable: %s\n",
838 (pvt->nbcap & NBCAP_DCT_DUAL) ? "yes" : "no");
Borislav Petkov68798e12009-11-03 16:18:33 +0100839
Joe Perches956b9ba12012-04-29 17:08:39 -0300840 edac_dbg(1, " ECC capable: %s, ChipKill ECC capable: %s\n",
841 (pvt->nbcap & NBCAP_SECDED) ? "yes" : "no",
842 (pvt->nbcap & NBCAP_CHIPKILL) ? "yes" : "no");
Borislav Petkov68798e12009-11-03 16:18:33 +0100843
Borislav Petkovd1ea71c2013-12-15 17:54:27 +0100844 debug_dump_dramcfg_low(pvt, pvt->dclr0, 0);
Doug Thompson2da11652009-04-27 16:09:09 +0200845
Joe Perches956b9ba12012-04-29 17:08:39 -0300846 edac_dbg(1, "F3xB0 (Online Spare): 0x%08x\n", pvt->online_spare);
Doug Thompson2da11652009-04-27 16:09:09 +0200847
Joe Perches956b9ba12012-04-29 17:08:39 -0300848 edac_dbg(1, "F1xF0 (DRAM Hole Address): 0x%08x, base: 0x%08x, offset: 0x%08x\n",
849 pvt->dhar, dhar_base(pvt),
Borislav Petkova4b4bed2013-08-10 13:54:48 +0200850 (pvt->fam == 0xf) ? k8_dhar_offset(pvt)
851 : f10_dhar_offset(pvt));
Doug Thompson2da11652009-04-27 16:09:09 +0200852
Borislav Petkovd1ea71c2013-12-15 17:54:27 +0100853 debug_display_dimm_sizes(pvt, 0);
Borislav Petkov4d796362011-02-03 15:59:57 +0100854
Borislav Petkov8de1d912009-10-16 13:39:30 +0200855 /* everything below this point is Fam10h and above */
Borislav Petkova4b4bed2013-08-10 13:54:48 +0200856 if (pvt->fam == 0xf)
Doug Thompson2da11652009-04-27 16:09:09 +0200857 return;
Borislav Petkov4d796362011-02-03 15:59:57 +0100858
Borislav Petkovd1ea71c2013-12-15 17:54:27 +0100859 debug_display_dimm_sizes(pvt, 1);
Doug Thompson2da11652009-04-27 16:09:09 +0200860
Borislav Petkov8de1d912009-10-16 13:39:30 +0200861 /* Only if NOT ganged does dclr1 have valid info */
Borislav Petkov68798e12009-11-03 16:18:33 +0100862 if (!dct_ganging_enabled(pvt))
Borislav Petkovd1ea71c2013-12-15 17:54:27 +0100863 debug_dump_dramcfg_low(pvt, pvt->dclr1, 1);
Doug Thompson2da11652009-04-27 16:09:09 +0200864}
865
Yazen Ghannam07ed82e2016-11-28 08:50:21 -0600866/* Display and decode various NB registers for debug purposes. */
867static void dump_misc_regs(struct amd64_pvt *pvt)
868{
869 if (pvt->umc)
870 __dump_misc_regs_df(pvt);
871 else
872 __dump_misc_regs(pvt);
873
874 edac_dbg(1, " DramHoleValid: %s\n", dhar_valid(pvt) ? "yes" : "no");
875
876 amd64_info("using %s syndromes.\n",
877 ((pvt->ecc_sym_sz == 8) ? "x8" : "x4"));
878}
879
Doug Thompson94be4bf2009-04-27 16:12:00 +0200880/*
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -0500881 * See BKDG, F2x[1,0][5C:40], F2[1,0][6C:60]
Doug Thompson94be4bf2009-04-27 16:12:00 +0200882 */
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100883static void prep_chip_selects(struct amd64_pvt *pvt)
Doug Thompson94be4bf2009-04-27 16:12:00 +0200884{
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -0500885 if (pvt->fam == 0xf && pvt->ext_model < K8_REV_F) {
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100886 pvt->csels[0].b_cnt = pvt->csels[1].b_cnt = 8;
887 pvt->csels[0].m_cnt = pvt->csels[1].m_cnt = 8;
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +0100888 } else if (pvt->fam == 0x15 && pvt->model == 0x30) {
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -0500889 pvt->csels[0].b_cnt = pvt->csels[1].b_cnt = 4;
890 pvt->csels[0].m_cnt = pvt->csels[1].m_cnt = 2;
Borislav Petkov9d858bb2009-09-21 14:35:51 +0200891 } else {
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100892 pvt->csels[0].b_cnt = pvt->csels[1].b_cnt = 8;
893 pvt->csels[0].m_cnt = pvt->csels[1].m_cnt = 4;
Doug Thompson94be4bf2009-04-27 16:12:00 +0200894 }
895}
896
897/*
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100898 * Function 2 Offset F10_DCSB0; read in the DCS Base and DCS Mask registers
Doug Thompson94be4bf2009-04-27 16:12:00 +0200899 */
Borislav Petkovb2b0c602010-10-08 18:32:29 +0200900static void read_dct_base_mask(struct amd64_pvt *pvt)
Doug Thompson94be4bf2009-04-27 16:12:00 +0200901{
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500902 int base_reg0, base_reg1, mask_reg0, mask_reg1, cs;
Doug Thompson94be4bf2009-04-27 16:12:00 +0200903
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100904 prep_chip_selects(pvt);
Doug Thompson94be4bf2009-04-27 16:12:00 +0200905
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500906 if (pvt->umc) {
907 base_reg0 = get_umc_base(0) + UMCCH_BASE_ADDR;
908 base_reg1 = get_umc_base(1) + UMCCH_BASE_ADDR;
909 mask_reg0 = get_umc_base(0) + UMCCH_ADDR_MASK;
910 mask_reg1 = get_umc_base(1) + UMCCH_ADDR_MASK;
911 } else {
912 base_reg0 = DCSB0;
913 base_reg1 = DCSB1;
914 mask_reg0 = DCSM0;
915 mask_reg1 = DCSM1;
916 }
917
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100918 for_each_chip_select(cs, 0, pvt) {
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500919 int reg0 = base_reg0 + (cs * 4);
920 int reg1 = base_reg1 + (cs * 4);
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100921 u32 *base0 = &pvt->csels[0].csbases[cs];
922 u32 *base1 = &pvt->csels[1].csbases[cs];
Borislav Petkovb2b0c602010-10-08 18:32:29 +0200923
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500924 if (pvt->umc) {
925 if (!amd_smn_read(pvt->mc_node_id, reg0, base0))
926 edac_dbg(0, " DCSB0[%d]=0x%08x reg: 0x%x\n",
927 cs, *base0, reg0);
Doug Thompson94be4bf2009-04-27 16:12:00 +0200928
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500929 if (!amd_smn_read(pvt->mc_node_id, reg1, base1))
930 edac_dbg(0, " DCSB1[%d]=0x%08x reg: 0x%x\n",
931 cs, *base1, reg1);
932 } else {
933 if (!amd64_read_dct_pci_cfg(pvt, 0, reg0, base0))
934 edac_dbg(0, " DCSB0[%d]=0x%08x reg: F2x%x\n",
935 cs, *base0, reg0);
Borislav Petkovb2b0c602010-10-08 18:32:29 +0200936
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500937 if (pvt->fam == 0xf)
938 continue;
939
940 if (!amd64_read_dct_pci_cfg(pvt, 1, reg0, base1))
941 edac_dbg(0, " DCSB1[%d]=0x%08x reg: F2x%x\n",
942 cs, *base1, (pvt->fam == 0x10) ? reg1
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -0500943 : reg0);
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500944 }
Doug Thompson94be4bf2009-04-27 16:12:00 +0200945 }
946
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100947 for_each_chip_select_mask(cs, 0, pvt) {
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500948 int reg0 = mask_reg0 + (cs * 4);
949 int reg1 = mask_reg1 + (cs * 4);
Borislav Petkov11c75ea2010-11-29 19:49:02 +0100950 u32 *mask0 = &pvt->csels[0].csmasks[cs];
951 u32 *mask1 = &pvt->csels[1].csmasks[cs];
Borislav Petkovb2b0c602010-10-08 18:32:29 +0200952
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500953 if (pvt->umc) {
954 if (!amd_smn_read(pvt->mc_node_id, reg0, mask0))
955 edac_dbg(0, " DCSM0[%d]=0x%08x reg: 0x%x\n",
956 cs, *mask0, reg0);
Doug Thompson94be4bf2009-04-27 16:12:00 +0200957
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500958 if (!amd_smn_read(pvt->mc_node_id, reg1, mask1))
959 edac_dbg(0, " DCSM1[%d]=0x%08x reg: 0x%x\n",
960 cs, *mask1, reg1);
961 } else {
962 if (!amd64_read_dct_pci_cfg(pvt, 0, reg0, mask0))
963 edac_dbg(0, " DCSM0[%d]=0x%08x reg: F2x%x\n",
964 cs, *mask0, reg0);
Borislav Petkovb2b0c602010-10-08 18:32:29 +0200965
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500966 if (pvt->fam == 0xf)
967 continue;
968
969 if (!amd64_read_dct_pci_cfg(pvt, 1, reg0, mask1))
970 edac_dbg(0, " DCSM1[%d]=0x%08x reg: F2x%x\n",
971 cs, *mask1, (pvt->fam == 0x10) ? reg1
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -0500972 : reg0);
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -0500973 }
Doug Thompson94be4bf2009-04-27 16:12:00 +0200974 }
975}
976
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +0100977static void determine_memory_type(struct amd64_pvt *pvt)
Doug Thompson94be4bf2009-04-27 16:12:00 +0200978{
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +0100979 u32 dram_ctrl, dcsm;
Doug Thompson94be4bf2009-04-27 16:12:00 +0200980
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +0100981 switch (pvt->fam) {
982 case 0xf:
983 if (pvt->ext_model >= K8_REV_F)
984 goto ddr3;
985
986 pvt->dram_type = (pvt->dclr0 & BIT(18)) ? MEM_DDR : MEM_RDDR;
987 return;
988
989 case 0x10:
Borislav Petkov6b4c0bd2009-11-12 15:37:57 +0100990 if (pvt->dchr0 & DDR3_MODE)
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +0100991 goto ddr3;
992
993 pvt->dram_type = (pvt->dclr0 & BIT(16)) ? MEM_DDR2 : MEM_RDDR2;
994 return;
995
996 case 0x15:
997 if (pvt->model < 0x60)
998 goto ddr3;
999
1000 /*
1001 * Model 0x60h needs special handling:
1002 *
1003 * We use a Chip Select value of '0' to obtain dcsm.
1004 * Theoretically, it is possible to populate LRDIMMs of different
1005 * 'Rank' value on a DCT. But this is not the common case. So,
1006 * it's reasonable to assume all DIMMs are going to be of same
1007 * 'type' until proven otherwise.
1008 */
1009 amd64_read_dct_pci_cfg(pvt, 0, DRAM_CONTROL, &dram_ctrl);
1010 dcsm = pvt->csels[0].csmasks[0];
1011
1012 if (((dram_ctrl >> 8) & 0x7) == 0x2)
1013 pvt->dram_type = MEM_DDR4;
1014 else if (pvt->dclr0 & BIT(16))
1015 pvt->dram_type = MEM_DDR3;
1016 else if (dcsm & 0x3)
1017 pvt->dram_type = MEM_LRDDR3;
Borislav Petkov6b4c0bd2009-11-12 15:37:57 +01001018 else
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01001019 pvt->dram_type = MEM_RDDR3;
1020
1021 return;
1022
1023 case 0x16:
1024 goto ddr3;
1025
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05001026 case 0x17:
1027 if ((pvt->umc[0].dimm_cfg | pvt->umc[1].dimm_cfg) & BIT(5))
1028 pvt->dram_type = MEM_LRDDR4;
1029 else if ((pvt->umc[0].dimm_cfg | pvt->umc[1].dimm_cfg) & BIT(4))
1030 pvt->dram_type = MEM_RDDR4;
1031 else
1032 pvt->dram_type = MEM_DDR4;
1033 return;
1034
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01001035 default:
1036 WARN(1, KERN_ERR "%s: Family??? 0x%x\n", __func__, pvt->fam);
1037 pvt->dram_type = MEM_EMPTY;
Doug Thompson94be4bf2009-04-27 16:12:00 +02001038 }
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01001039 return;
Doug Thompson94be4bf2009-04-27 16:12:00 +02001040
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01001041ddr3:
1042 pvt->dram_type = (pvt->dclr0 & BIT(16)) ? MEM_DDR3 : MEM_RDDR3;
Doug Thompson94be4bf2009-04-27 16:12:00 +02001043}
1044
Borislav Petkovcb328502010-12-22 14:28:24 +01001045/* Get the number of DCT channels the memory controller is using. */
Doug Thompsonddff8762009-04-27 16:14:52 +02001046static int k8_early_channel_count(struct amd64_pvt *pvt)
1047{
Borislav Petkovcb328502010-12-22 14:28:24 +01001048 int flag;
Doug Thompsonddff8762009-04-27 16:14:52 +02001049
Borislav Petkov9f56da02010-10-01 19:44:53 +02001050 if (pvt->ext_model >= K8_REV_F)
Doug Thompsonddff8762009-04-27 16:14:52 +02001051 /* RevF (NPT) and later */
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001052 flag = pvt->dclr0 & WIDTH_128;
Borislav Petkov9f56da02010-10-01 19:44:53 +02001053 else
Doug Thompsonddff8762009-04-27 16:14:52 +02001054 /* RevE and earlier */
1055 flag = pvt->dclr0 & REVE_WIDTH_128;
Doug Thompsonddff8762009-04-27 16:14:52 +02001056
1057 /* not used */
1058 pvt->dclr1 = 0;
1059
1060 return (flag) ? 2 : 1;
1061}
1062
Borislav Petkov70046622011-01-10 14:37:27 +01001063/* On F10h and later ErrAddr is MC4_ADDR[47:1] */
Borislav Petkova4b4bed2013-08-10 13:54:48 +02001064static u64 get_error_address(struct amd64_pvt *pvt, struct mce *m)
Doug Thompsonddff8762009-04-27 16:14:52 +02001065{
Borislav Petkov2ec591a2015-02-17 10:58:34 +01001066 u16 mce_nid = amd_get_nb_id(m->extcpu);
1067 struct mem_ctl_info *mci;
Borislav Petkov70046622011-01-10 14:37:27 +01001068 u8 start_bit = 1;
1069 u8 end_bit = 47;
Borislav Petkov2ec591a2015-02-17 10:58:34 +01001070 u64 addr;
1071
1072 mci = edac_mc_find(mce_nid);
1073 if (!mci)
1074 return 0;
1075
1076 pvt = mci->pvt_info;
Borislav Petkov70046622011-01-10 14:37:27 +01001077
Borislav Petkova4b4bed2013-08-10 13:54:48 +02001078 if (pvt->fam == 0xf) {
Borislav Petkov70046622011-01-10 14:37:27 +01001079 start_bit = 3;
1080 end_bit = 39;
1081 }
1082
Chen, Gong10ef6b02013-10-18 14:29:07 -07001083 addr = m->addr & GENMASK_ULL(end_bit, start_bit);
Borislav Petkovc1ae6832011-03-30 15:42:10 +02001084
1085 /*
1086 * Erratum 637 workaround
1087 */
Borislav Petkova4b4bed2013-08-10 13:54:48 +02001088 if (pvt->fam == 0x15) {
Borislav Petkovc1ae6832011-03-30 15:42:10 +02001089 u64 cc6_base, tmp_addr;
1090 u32 tmp;
Daniel J Blueman8b84c8d2012-11-27 14:32:10 +08001091 u8 intlv_en;
Borislav Petkovc1ae6832011-03-30 15:42:10 +02001092
Chen, Gong10ef6b02013-10-18 14:29:07 -07001093 if ((addr & GENMASK_ULL(47, 24)) >> 24 != 0x00fdf7)
Borislav Petkovc1ae6832011-03-30 15:42:10 +02001094 return addr;
1095
Borislav Petkovc1ae6832011-03-30 15:42:10 +02001096
1097 amd64_read_pci_cfg(pvt->F1, DRAM_LOCAL_NODE_LIM, &tmp);
1098 intlv_en = tmp >> 21 & 0x7;
1099
1100 /* add [47:27] + 3 trailing bits */
Chen, Gong10ef6b02013-10-18 14:29:07 -07001101 cc6_base = (tmp & GENMASK_ULL(20, 0)) << 3;
Borislav Petkovc1ae6832011-03-30 15:42:10 +02001102
1103 /* reverse and add DramIntlvEn */
1104 cc6_base |= intlv_en ^ 0x7;
1105
1106 /* pin at [47:24] */
1107 cc6_base <<= 24;
1108
1109 if (!intlv_en)
Chen, Gong10ef6b02013-10-18 14:29:07 -07001110 return cc6_base | (addr & GENMASK_ULL(23, 0));
Borislav Petkovc1ae6832011-03-30 15:42:10 +02001111
1112 amd64_read_pci_cfg(pvt->F1, DRAM_LOCAL_NODE_BASE, &tmp);
1113
1114 /* faster log2 */
Chen, Gong10ef6b02013-10-18 14:29:07 -07001115 tmp_addr = (addr & GENMASK_ULL(23, 12)) << __fls(intlv_en + 1);
Borislav Petkovc1ae6832011-03-30 15:42:10 +02001116
1117 /* OR DramIntlvSel into bits [14:12] */
Chen, Gong10ef6b02013-10-18 14:29:07 -07001118 tmp_addr |= (tmp & GENMASK_ULL(23, 21)) >> 9;
Borislav Petkovc1ae6832011-03-30 15:42:10 +02001119
1120 /* add remaining [11:0] bits from original MC4_ADDR */
Chen, Gong10ef6b02013-10-18 14:29:07 -07001121 tmp_addr |= addr & GENMASK_ULL(11, 0);
Borislav Petkovc1ae6832011-03-30 15:42:10 +02001122
1123 return cc6_base | tmp_addr;
1124 }
1125
1126 return addr;
Doug Thompsonddff8762009-04-27 16:14:52 +02001127}
1128
Daniel J Bluemane2c0bff2012-11-30 16:44:19 +08001129static struct pci_dev *pci_get_related_function(unsigned int vendor,
1130 unsigned int device,
1131 struct pci_dev *related)
1132{
1133 struct pci_dev *dev = NULL;
1134
1135 while ((dev = pci_get_device(vendor, device, dev))) {
1136 if (pci_domain_nr(dev->bus) == pci_domain_nr(related->bus) &&
1137 (dev->bus->number == related->bus->number) &&
1138 (PCI_SLOT(dev->devfn) == PCI_SLOT(related->devfn)))
1139 break;
1140 }
1141
1142 return dev;
1143}
1144
Borislav Petkov7f19bf72010-10-21 18:52:53 +02001145static void read_dram_base_limit_regs(struct amd64_pvt *pvt, unsigned range)
Doug Thompsonddff8762009-04-27 16:14:52 +02001146{
Daniel J Bluemane2c0bff2012-11-30 16:44:19 +08001147 struct amd_northbridge *nb;
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001148 struct pci_dev *f1 = NULL;
1149 unsigned int pci_func;
Borislav Petkov71d2a322011-02-21 19:37:24 +01001150 int off = range << 3;
Daniel J Bluemane2c0bff2012-11-30 16:44:19 +08001151 u32 llim;
Doug Thompsonddff8762009-04-27 16:14:52 +02001152
Borislav Petkov7f19bf72010-10-21 18:52:53 +02001153 amd64_read_pci_cfg(pvt->F1, DRAM_BASE_LO + off, &pvt->ranges[range].base.lo);
1154 amd64_read_pci_cfg(pvt->F1, DRAM_LIMIT_LO + off, &pvt->ranges[range].lim.lo);
Doug Thompsonddff8762009-04-27 16:14:52 +02001155
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001156 if (pvt->fam == 0xf)
Borislav Petkov7f19bf72010-10-21 18:52:53 +02001157 return;
Doug Thompsonddff8762009-04-27 16:14:52 +02001158
Borislav Petkov7f19bf72010-10-21 18:52:53 +02001159 if (!dram_rw(pvt, range))
1160 return;
Doug Thompsonddff8762009-04-27 16:14:52 +02001161
Borislav Petkov7f19bf72010-10-21 18:52:53 +02001162 amd64_read_pci_cfg(pvt->F1, DRAM_BASE_HI + off, &pvt->ranges[range].base.hi);
1163 amd64_read_pci_cfg(pvt->F1, DRAM_LIMIT_HI + off, &pvt->ranges[range].lim.hi);
Borislav Petkovf08e4572011-03-21 20:45:06 +01001164
Daniel J Bluemane2c0bff2012-11-30 16:44:19 +08001165 /* F15h: factor in CC6 save area by reading dst node's limit reg */
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001166 if (pvt->fam != 0x15)
Daniel J Bluemane2c0bff2012-11-30 16:44:19 +08001167 return;
Borislav Petkovf08e4572011-03-21 20:45:06 +01001168
Daniel J Bluemane2c0bff2012-11-30 16:44:19 +08001169 nb = node_to_amd_nb(dram_dst_node(pvt, range));
1170 if (WARN_ON(!nb))
1171 return;
Borislav Petkovf08e4572011-03-21 20:45:06 +01001172
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01001173 if (pvt->model == 0x60)
1174 pci_func = PCI_DEVICE_ID_AMD_15H_M60H_NB_F1;
1175 else if (pvt->model == 0x30)
1176 pci_func = PCI_DEVICE_ID_AMD_15H_M30H_NB_F1;
1177 else
1178 pci_func = PCI_DEVICE_ID_AMD_15H_NB_F1;
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001179
1180 f1 = pci_get_related_function(nb->misc->vendor, pci_func, nb->misc);
Daniel J Bluemane2c0bff2012-11-30 16:44:19 +08001181 if (WARN_ON(!f1))
1182 return;
Borislav Petkovf08e4572011-03-21 20:45:06 +01001183
Daniel J Bluemane2c0bff2012-11-30 16:44:19 +08001184 amd64_read_pci_cfg(f1, DRAM_LOCAL_NODE_LIM, &llim);
Borislav Petkovf08e4572011-03-21 20:45:06 +01001185
Chen, Gong10ef6b02013-10-18 14:29:07 -07001186 pvt->ranges[range].lim.lo &= GENMASK_ULL(15, 0);
Borislav Petkovf08e4572011-03-21 20:45:06 +01001187
Daniel J Bluemane2c0bff2012-11-30 16:44:19 +08001188 /* {[39:27],111b} */
1189 pvt->ranges[range].lim.lo |= ((llim & 0x1fff) << 3 | 0x7) << 16;
Borislav Petkovf08e4572011-03-21 20:45:06 +01001190
Chen, Gong10ef6b02013-10-18 14:29:07 -07001191 pvt->ranges[range].lim.hi &= GENMASK_ULL(7, 0);
Borislav Petkovf08e4572011-03-21 20:45:06 +01001192
Daniel J Bluemane2c0bff2012-11-30 16:44:19 +08001193 /* [47:40] */
1194 pvt->ranges[range].lim.hi |= llim >> 13;
1195
1196 pci_dev_put(f1);
Doug Thompsonddff8762009-04-27 16:14:52 +02001197}
1198
Borislav Petkovf192c7b2011-01-10 14:24:32 +01001199static void k8_map_sysaddr_to_csrow(struct mem_ctl_info *mci, u64 sys_addr,
Borislav Petkov33ca0642012-08-30 18:01:36 +02001200 struct err_info *err)
Doug Thompsonddff8762009-04-27 16:14:52 +02001201{
Borislav Petkovf192c7b2011-01-10 14:24:32 +01001202 struct amd64_pvt *pvt = mci->pvt_info;
Doug Thompsonddff8762009-04-27 16:14:52 +02001203
Borislav Petkov33ca0642012-08-30 18:01:36 +02001204 error_address_to_page_and_offset(sys_addr, err);
Mauro Carvalho Chehabab5a5032012-04-16 15:03:50 -03001205
1206 /*
1207 * Find out which node the error address belongs to. This may be
1208 * different from the node that detected the error.
1209 */
Borislav Petkov33ca0642012-08-30 18:01:36 +02001210 err->src_mci = find_mc_by_sys_addr(mci, sys_addr);
1211 if (!err->src_mci) {
Mauro Carvalho Chehabab5a5032012-04-16 15:03:50 -03001212 amd64_mc_err(mci, "failed to map error addr 0x%lx to a node\n",
1213 (unsigned long)sys_addr);
Borislav Petkov33ca0642012-08-30 18:01:36 +02001214 err->err_code = ERR_NODE;
Mauro Carvalho Chehabab5a5032012-04-16 15:03:50 -03001215 return;
1216 }
1217
1218 /* Now map the sys_addr to a CSROW */
Borislav Petkov33ca0642012-08-30 18:01:36 +02001219 err->csrow = sys_addr_to_csrow(err->src_mci, sys_addr);
1220 if (err->csrow < 0) {
1221 err->err_code = ERR_CSROW;
Mauro Carvalho Chehabab5a5032012-04-16 15:03:50 -03001222 return;
1223 }
1224
Doug Thompsonddff8762009-04-27 16:14:52 +02001225 /* CHIPKILL enabled */
Borislav Petkovf192c7b2011-01-10 14:24:32 +01001226 if (pvt->nbcfg & NBCFG_CHIPKILL) {
Borislav Petkov33ca0642012-08-30 18:01:36 +02001227 err->channel = get_channel_from_ecc_syndrome(mci, err->syndrome);
1228 if (err->channel < 0) {
Doug Thompsonddff8762009-04-27 16:14:52 +02001229 /*
1230 * Syndrome didn't map, so we don't know which of the
1231 * 2 DIMMs is in error. So we need to ID 'both' of them
1232 * as suspect.
1233 */
Borislav Petkov33ca0642012-08-30 18:01:36 +02001234 amd64_mc_warn(err->src_mci, "unknown syndrome 0x%04x - "
Mauro Carvalho Chehabab5a5032012-04-16 15:03:50 -03001235 "possible error reporting race\n",
Borislav Petkov33ca0642012-08-30 18:01:36 +02001236 err->syndrome);
1237 err->err_code = ERR_CHANNEL;
Doug Thompsonddff8762009-04-27 16:14:52 +02001238 return;
1239 }
1240 } else {
1241 /*
1242 * non-chipkill ecc mode
1243 *
1244 * The k8 documentation is unclear about how to determine the
1245 * channel number when using non-chipkill memory. This method
1246 * was obtained from email communication with someone at AMD.
1247 * (Wish the email was placed in this comment - norsk)
1248 */
Borislav Petkov33ca0642012-08-30 18:01:36 +02001249 err->channel = ((sys_addr & BIT(3)) != 0);
Doug Thompsonddff8762009-04-27 16:14:52 +02001250 }
Doug Thompsonddff8762009-04-27 16:14:52 +02001251}
1252
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001253static int ddr2_cs_size(unsigned i, bool dct_width)
Doug Thompsonddff8762009-04-27 16:14:52 +02001254{
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001255 unsigned shift = 0;
Doug Thompsonddff8762009-04-27 16:14:52 +02001256
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001257 if (i <= 2)
1258 shift = i;
1259 else if (!(i & 0x1))
1260 shift = i >> 1;
Borislav Petkov1433eb92009-10-21 13:44:36 +02001261 else
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001262 shift = (i + 1) >> 1;
Doug Thompsonddff8762009-04-27 16:14:52 +02001263
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001264 return 128 << (shift + !!dct_width);
1265}
1266
1267static int k8_dbam_to_chip_select(struct amd64_pvt *pvt, u8 dct,
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01001268 unsigned cs_mode, int cs_mask_nr)
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001269{
1270 u32 dclr = dct ? pvt->dclr1 : pvt->dclr0;
1271
1272 if (pvt->ext_model >= K8_REV_F) {
1273 WARN_ON(cs_mode > 11);
1274 return ddr2_cs_size(cs_mode, dclr & WIDTH_128);
1275 }
1276 else if (pvt->ext_model >= K8_REV_D) {
Borislav Petkov11b0a312011-11-09 21:28:43 +01001277 unsigned diff;
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001278 WARN_ON(cs_mode > 10);
1279
Borislav Petkov11b0a312011-11-09 21:28:43 +01001280 /*
1281 * the below calculation, besides trying to win an obfuscated C
1282 * contest, maps cs_mode values to DIMM chip select sizes. The
1283 * mappings are:
1284 *
1285 * cs_mode CS size (mb)
1286 * ======= ============
1287 * 0 32
1288 * 1 64
1289 * 2 128
1290 * 3 128
1291 * 4 256
1292 * 5 512
1293 * 6 256
1294 * 7 512
1295 * 8 1024
1296 * 9 1024
1297 * 10 2048
1298 *
1299 * Basically, it calculates a value with which to shift the
1300 * smallest CS size of 32MB.
1301 *
1302 * ddr[23]_cs_size have a similar purpose.
1303 */
1304 diff = cs_mode/3 + (unsigned)(cs_mode > 5);
1305
1306 return 32 << (cs_mode - diff);
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001307 }
1308 else {
1309 WARN_ON(cs_mode > 6);
1310 return 32 << cs_mode;
1311 }
Doug Thompsonddff8762009-04-27 16:14:52 +02001312}
1313
Doug Thompson1afd3c92009-04-27 16:16:50 +02001314/*
1315 * Get the number of DCT channels in use.
1316 *
1317 * Return:
1318 * number of Memory Channels in operation
1319 * Pass back:
1320 * contents of the DCL0_LOW register
1321 */
Borislav Petkov7d20d142011-01-07 17:58:04 +01001322static int f1x_early_channel_count(struct amd64_pvt *pvt)
Doug Thompson1afd3c92009-04-27 16:16:50 +02001323{
Borislav Petkov6ba5dcd2009-10-13 19:26:55 +02001324 int i, j, channels = 0;
Doug Thompsonddff8762009-04-27 16:14:52 +02001325
Borislav Petkov7d20d142011-01-07 17:58:04 +01001326 /* On F10h, if we are in 128 bit mode, then we are using 2 channels */
Borislav Petkova4b4bed2013-08-10 13:54:48 +02001327 if (pvt->fam == 0x10 && (pvt->dclr0 & WIDTH_128))
Borislav Petkov7d20d142011-01-07 17:58:04 +01001328 return 2;
Doug Thompson1afd3c92009-04-27 16:16:50 +02001329
1330 /*
Borislav Petkovd16149e2009-10-16 19:55:49 +02001331 * Need to check if in unganged mode: In such, there are 2 channels,
1332 * but they are not in 128 bit mode and thus the above 'dclr0' status
1333 * bit will be OFF.
Doug Thompson1afd3c92009-04-27 16:16:50 +02001334 *
1335 * Need to check DCT0[0] and DCT1[0] to see if only one of them has
1336 * their CSEnable bit on. If so, then SINGLE DIMM case.
1337 */
Joe Perches956b9ba12012-04-29 17:08:39 -03001338 edac_dbg(0, "Data width is not 128 bits - need more decoding\n");
Doug Thompson1afd3c92009-04-27 16:16:50 +02001339
1340 /*
1341 * Check DRAM Bank Address Mapping values for each DIMM to see if there
1342 * is more than just one DIMM present in unganged mode. Need to check
1343 * both controllers since DIMMs can be placed in either one.
1344 */
Borislav Petkov525a1b22010-12-21 15:53:27 +01001345 for (i = 0; i < 2; i++) {
1346 u32 dbam = (i ? pvt->dbam1 : pvt->dbam0);
Doug Thompson1afd3c92009-04-27 16:16:50 +02001347
Wan Wei57a30852009-08-07 17:04:49 +02001348 for (j = 0; j < 4; j++) {
1349 if (DBAM_DIMM(j, dbam) > 0) {
1350 channels++;
1351 break;
1352 }
1353 }
Doug Thompson1afd3c92009-04-27 16:16:50 +02001354 }
1355
Borislav Petkovd16149e2009-10-16 19:55:49 +02001356 if (channels > 2)
1357 channels = 2;
1358
Borislav Petkov24f9a7f2010-10-07 18:29:15 +02001359 amd64_info("MCT channel count: %d\n", channels);
Doug Thompson1afd3c92009-04-27 16:16:50 +02001360
1361 return channels;
Doug Thompson1afd3c92009-04-27 16:16:50 +02001362}
1363
Yazen Ghannamf1cbbec2016-11-17 17:57:35 -05001364static int f17_early_channel_count(struct amd64_pvt *pvt)
1365{
1366 int i, channels = 0;
1367
1368 /* SDP Control bit 31 (SdpInit) is clear for unused UMC channels */
1369 for (i = 0; i < NUM_UMCS; i++)
1370 channels += !!(pvt->umc[i].sdp_ctrl & UMC_SDP_INIT);
1371
1372 amd64_info("MCT channel count: %d\n", channels);
1373
1374 return channels;
1375}
1376
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001377static int ddr3_cs_size(unsigned i, bool dct_width)
Doug Thompson1afd3c92009-04-27 16:16:50 +02001378{
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001379 unsigned shift = 0;
1380 int cs_size = 0;
1381
1382 if (i == 0 || i == 3 || i == 4)
1383 cs_size = -1;
1384 else if (i <= 2)
1385 shift = i;
1386 else if (i == 12)
1387 shift = 7;
1388 else if (!(i & 0x1))
1389 shift = i >> 1;
1390 else
1391 shift = (i + 1) >> 1;
1392
1393 if (cs_size != -1)
1394 cs_size = (128 * (1 << !!dct_width)) << shift;
1395
1396 return cs_size;
1397}
1398
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01001399static int ddr3_lrdimm_cs_size(unsigned i, unsigned rank_multiply)
1400{
1401 unsigned shift = 0;
1402 int cs_size = 0;
1403
1404 if (i < 4 || i == 6)
1405 cs_size = -1;
1406 else if (i == 12)
1407 shift = 7;
1408 else if (!(i & 0x1))
1409 shift = i >> 1;
1410 else
1411 shift = (i + 1) >> 1;
1412
1413 if (cs_size != -1)
1414 cs_size = rank_multiply * (128 << shift);
1415
1416 return cs_size;
1417}
1418
1419static int ddr4_cs_size(unsigned i)
1420{
1421 int cs_size = 0;
1422
1423 if (i == 0)
1424 cs_size = -1;
1425 else if (i == 1)
1426 cs_size = 1024;
1427 else
1428 /* Min cs_size = 1G */
1429 cs_size = 1024 * (1 << (i >> 1));
1430
1431 return cs_size;
1432}
1433
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001434static int f10_dbam_to_chip_select(struct amd64_pvt *pvt, u8 dct,
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01001435 unsigned cs_mode, int cs_mask_nr)
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001436{
1437 u32 dclr = dct ? pvt->dclr1 : pvt->dclr0;
1438
1439 WARN_ON(cs_mode > 11);
Borislav Petkov1433eb92009-10-21 13:44:36 +02001440
1441 if (pvt->dchr0 & DDR3_MODE || pvt->dchr1 & DDR3_MODE)
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001442 return ddr3_cs_size(cs_mode, dclr & WIDTH_128);
Borislav Petkov1433eb92009-10-21 13:44:36 +02001443 else
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001444 return ddr2_cs_size(cs_mode, dclr & WIDTH_128);
1445}
Borislav Petkov1433eb92009-10-21 13:44:36 +02001446
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001447/*
1448 * F15h supports only 64bit DCT interfaces
1449 */
1450static int f15_dbam_to_chip_select(struct amd64_pvt *pvt, u8 dct,
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01001451 unsigned cs_mode, int cs_mask_nr)
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01001452{
1453 WARN_ON(cs_mode > 12);
1454
1455 return ddr3_cs_size(cs_mode, false);
Doug Thompson1afd3c92009-04-27 16:16:50 +02001456}
1457
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01001458/* F15h M60h supports DDR4 mapping as well.. */
1459static int f15_m60h_dbam_to_chip_select(struct amd64_pvt *pvt, u8 dct,
1460 unsigned cs_mode, int cs_mask_nr)
1461{
1462 int cs_size;
1463 u32 dcsm = pvt->csels[dct].csmasks[cs_mask_nr];
1464
1465 WARN_ON(cs_mode > 12);
1466
1467 if (pvt->dram_type == MEM_DDR4) {
1468 if (cs_mode > 9)
1469 return -1;
1470
1471 cs_size = ddr4_cs_size(cs_mode);
1472 } else if (pvt->dram_type == MEM_LRDDR3) {
1473 unsigned rank_multiply = dcsm & 0xf;
1474
1475 if (rank_multiply == 3)
1476 rank_multiply = 4;
1477 cs_size = ddr3_lrdimm_cs_size(cs_mode, rank_multiply);
1478 } else {
1479 /* Minimum cs size is 512mb for F15hM60h*/
1480 if (cs_mode == 0x1)
1481 return -1;
1482
1483 cs_size = ddr3_cs_size(cs_mode, false);
1484 }
1485
1486 return cs_size;
1487}
1488
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -05001489/*
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001490 * F16h and F15h model 30h have only limited cs_modes.
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -05001491 */
1492static int f16_dbam_to_chip_select(struct amd64_pvt *pvt, u8 dct,
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01001493 unsigned cs_mode, int cs_mask_nr)
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -05001494{
1495 WARN_ON(cs_mode > 12);
1496
1497 if (cs_mode == 6 || cs_mode == 8 ||
1498 cs_mode == 9 || cs_mode == 12)
1499 return -1;
1500 else
1501 return ddr3_cs_size(cs_mode, false);
1502}
1503
Yazen Ghannamf1cbbec2016-11-17 17:57:35 -05001504static int f17_base_addr_to_cs_size(struct amd64_pvt *pvt, u8 umc,
1505 unsigned int cs_mode, int csrow_nr)
1506{
1507 u32 base_addr = pvt->csels[umc].csbases[csrow_nr];
1508
1509 /* Each mask is used for every two base addresses. */
1510 u32 addr_mask = pvt->csels[umc].csmasks[csrow_nr >> 1];
1511
1512 /* Register [31:1] = Address [39:9]. Size is in kBs here. */
1513 u32 size = ((addr_mask >> 1) - (base_addr >> 1) + 1) >> 1;
1514
1515 edac_dbg(1, "BaseAddr: 0x%x, AddrMask: 0x%x\n", base_addr, addr_mask);
1516
1517 /* Return size in MBs. */
1518 return size >> 10;
1519}
1520
Borislav Petkov5a5d2372011-01-17 17:52:57 +01001521static void read_dram_ctl_register(struct amd64_pvt *pvt)
Doug Thompson6163b5d2009-04-27 16:20:17 +02001522{
Doug Thompson6163b5d2009-04-27 16:20:17 +02001523
Borislav Petkova4b4bed2013-08-10 13:54:48 +02001524 if (pvt->fam == 0xf)
Borislav Petkov5a5d2372011-01-17 17:52:57 +01001525 return;
1526
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -05001527 if (!amd64_read_pci_cfg(pvt->F2, DCT_SEL_LO, &pvt->dct_sel_lo)) {
Joe Perches956b9ba12012-04-29 17:08:39 -03001528 edac_dbg(0, "F2x110 (DCTSelLow): 0x%08x, High range addrs at: 0x%x\n",
1529 pvt->dct_sel_lo, dct_sel_baseaddr(pvt));
Doug Thompson6163b5d2009-04-27 16:20:17 +02001530
Joe Perches956b9ba12012-04-29 17:08:39 -03001531 edac_dbg(0, " DCTs operate in %s mode\n",
1532 (dct_ganging_enabled(pvt) ? "ganged" : "unganged"));
Doug Thompson6163b5d2009-04-27 16:20:17 +02001533
Borislav Petkov72381bd2009-10-09 19:14:43 +02001534 if (!dct_ganging_enabled(pvt))
Joe Perches956b9ba12012-04-29 17:08:39 -03001535 edac_dbg(0, " Address range split per DCT: %s\n",
1536 (dct_high_range_enabled(pvt) ? "yes" : "no"));
Borislav Petkov72381bd2009-10-09 19:14:43 +02001537
Joe Perches956b9ba12012-04-29 17:08:39 -03001538 edac_dbg(0, " data interleave for ECC: %s, DRAM cleared since last warm reset: %s\n",
1539 (dct_data_intlv_enabled(pvt) ? "enabled" : "disabled"),
1540 (dct_memory_cleared(pvt) ? "yes" : "no"));
Borislav Petkov72381bd2009-10-09 19:14:43 +02001541
Joe Perches956b9ba12012-04-29 17:08:39 -03001542 edac_dbg(0, " channel interleave: %s, "
1543 "interleave bits selector: 0x%x\n",
1544 (dct_interleave_enabled(pvt) ? "enabled" : "disabled"),
1545 dct_sel_interleave_addr(pvt));
Doug Thompson6163b5d2009-04-27 16:20:17 +02001546 }
1547
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -05001548 amd64_read_pci_cfg(pvt->F2, DCT_SEL_HI, &pvt->dct_sel_hi);
Doug Thompson6163b5d2009-04-27 16:20:17 +02001549}
1550
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001551/*
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001552 * Determine channel (DCT) based on the interleaving mode (see F15h M30h BKDG,
1553 * 2.10.12 Memory Interleaving Modes).
1554 */
1555static u8 f15_m30h_determine_channel(struct amd64_pvt *pvt, u64 sys_addr,
1556 u8 intlv_en, int num_dcts_intlv,
1557 u32 dct_sel)
1558{
1559 u8 channel = 0;
1560 u8 select;
1561
1562 if (!(intlv_en))
1563 return (u8)(dct_sel);
1564
1565 if (num_dcts_intlv == 2) {
1566 select = (sys_addr >> 8) & 0x3;
1567 channel = select ? 0x3 : 0;
Aravind Gopalakrishnan9d0e8d82014-01-21 15:03:36 -06001568 } else if (num_dcts_intlv == 4) {
1569 u8 intlv_addr = dct_sel_interleave_addr(pvt);
1570 switch (intlv_addr) {
1571 case 0x4:
1572 channel = (sys_addr >> 8) & 0x3;
1573 break;
1574 case 0x5:
1575 channel = (sys_addr >> 9) & 0x3;
1576 break;
1577 }
1578 }
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001579 return channel;
1580}
1581
1582/*
Borislav Petkov229a7a12010-12-09 18:57:54 +01001583 * Determine channel (DCT) based on the interleaving mode: F10h BKDG, 2.8.9 Memory
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001584 * Interleaving Modes.
1585 */
Borislav Petkovb15f0fc2011-01-17 15:59:58 +01001586static u8 f1x_determine_channel(struct amd64_pvt *pvt, u64 sys_addr,
Borislav Petkov229a7a12010-12-09 18:57:54 +01001587 bool hi_range_sel, u8 intlv_en)
Doug Thompson6163b5d2009-04-27 16:20:17 +02001588{
Borislav Petkov151fa712011-02-21 19:33:10 +01001589 u8 dct_sel_high = (pvt->dct_sel_lo >> 1) & 1;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001590
1591 if (dct_ganging_enabled(pvt))
Borislav Petkov229a7a12010-12-09 18:57:54 +01001592 return 0;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001593
Borislav Petkov229a7a12010-12-09 18:57:54 +01001594 if (hi_range_sel)
1595 return dct_sel_high;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001596
Borislav Petkov229a7a12010-12-09 18:57:54 +01001597 /*
1598 * see F2x110[DctSelIntLvAddr] - channel interleave mode
1599 */
1600 if (dct_interleave_enabled(pvt)) {
1601 u8 intlv_addr = dct_sel_interleave_addr(pvt);
Doug Thompson6163b5d2009-04-27 16:20:17 +02001602
Borislav Petkov229a7a12010-12-09 18:57:54 +01001603 /* return DCT select function: 0=DCT0, 1=DCT1 */
1604 if (!intlv_addr)
1605 return sys_addr >> 6 & 1;
1606
1607 if (intlv_addr & 0x2) {
1608 u8 shift = intlv_addr & 0x1 ? 9 : 6;
Yazen Ghannamdc0a50a82016-08-03 10:59:15 -04001609 u32 temp = hweight_long((u32) ((sys_addr >> 16) & 0x1F)) & 1;
Borislav Petkov229a7a12010-12-09 18:57:54 +01001610
1611 return ((sys_addr >> shift) & 1) ^ temp;
1612 }
1613
Yazen Ghannamdc0a50a82016-08-03 10:59:15 -04001614 if (intlv_addr & 0x4) {
1615 u8 shift = intlv_addr & 0x1 ? 9 : 8;
1616
1617 return (sys_addr >> shift) & 1;
1618 }
1619
Borislav Petkov229a7a12010-12-09 18:57:54 +01001620 return (sys_addr >> (12 + hweight8(intlv_en))) & 1;
1621 }
1622
1623 if (dct_high_range_enabled(pvt))
1624 return ~dct_sel_high & 1;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001625
1626 return 0;
1627}
1628
Borislav Petkovc8e518d2010-12-10 19:49:19 +01001629/* Convert the sys_addr to the normalized DCT address */
Daniel J Bluemanc7e53012012-11-30 16:44:20 +08001630static u64 f1x_get_norm_dct_addr(struct amd64_pvt *pvt, u8 range,
Borislav Petkovc8e518d2010-12-10 19:49:19 +01001631 u64 sys_addr, bool hi_rng,
1632 u32 dct_sel_base_addr)
Doug Thompson6163b5d2009-04-27 16:20:17 +02001633{
1634 u64 chan_off;
Borislav Petkovc8e518d2010-12-10 19:49:19 +01001635 u64 dram_base = get_dram_base(pvt, range);
1636 u64 hole_off = f10_dhar_offset(pvt);
Dan Carpenter6f3508f2016-01-20 12:54:51 +03001637 u64 dct_sel_base_off = (u64)(pvt->dct_sel_hi & 0xFFFFFC00) << 16;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001638
Borislav Petkovc8e518d2010-12-10 19:49:19 +01001639 if (hi_rng) {
1640 /*
1641 * if
1642 * base address of high range is below 4Gb
1643 * (bits [47:27] at [31:11])
1644 * DRAM address space on this DCT is hoisted above 4Gb &&
1645 * sys_addr > 4Gb
1646 *
1647 * remove hole offset from sys_addr
1648 * else
1649 * remove high range offset from sys_addr
1650 */
1651 if ((!(dct_sel_base_addr >> 16) ||
1652 dct_sel_base_addr < dhar_base(pvt)) &&
Borislav Petkov972ea172011-02-21 19:43:02 +01001653 dhar_valid(pvt) &&
Borislav Petkovc8e518d2010-12-10 19:49:19 +01001654 (sys_addr >= BIT_64(32)))
Borislav Petkovbc21fa52010-11-11 17:29:13 +01001655 chan_off = hole_off;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001656 else
1657 chan_off = dct_sel_base_off;
1658 } else {
Borislav Petkovc8e518d2010-12-10 19:49:19 +01001659 /*
1660 * if
1661 * we have a valid hole &&
1662 * sys_addr > 4Gb
1663 *
1664 * remove hole
1665 * else
1666 * remove dram base to normalize to DCT address
1667 */
Borislav Petkov972ea172011-02-21 19:43:02 +01001668 if (dhar_valid(pvt) && (sys_addr >= BIT_64(32)))
Borislav Petkovbc21fa52010-11-11 17:29:13 +01001669 chan_off = hole_off;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001670 else
Borislav Petkovc8e518d2010-12-10 19:49:19 +01001671 chan_off = dram_base;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001672 }
1673
Chen, Gong10ef6b02013-10-18 14:29:07 -07001674 return (sys_addr & GENMASK_ULL(47,6)) - (chan_off & GENMASK_ULL(47,23));
Doug Thompson6163b5d2009-04-27 16:20:17 +02001675}
1676
Doug Thompson6163b5d2009-04-27 16:20:17 +02001677/*
1678 * checks if the csrow passed in is marked as SPARED, if so returns the new
1679 * spare row
1680 */
Borislav Petkov11c75ea2010-11-29 19:49:02 +01001681static int f10_process_possible_spare(struct amd64_pvt *pvt, u8 dct, int csrow)
Doug Thompson6163b5d2009-04-27 16:20:17 +02001682{
Borislav Petkov614ec9d2011-01-13 18:02:22 +01001683 int tmp_cs;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001684
Borislav Petkov614ec9d2011-01-13 18:02:22 +01001685 if (online_spare_swap_done(pvt, dct) &&
1686 csrow == online_spare_bad_dramcs(pvt, dct)) {
1687
1688 for_each_chip_select(tmp_cs, dct, pvt) {
1689 if (chip_select_base(tmp_cs, dct, pvt) & 0x2) {
1690 csrow = tmp_cs;
1691 break;
1692 }
1693 }
Doug Thompson6163b5d2009-04-27 16:20:17 +02001694 }
1695 return csrow;
1696}
1697
1698/*
1699 * Iterate over the DRAM DCT "base" and "mask" registers looking for a
1700 * SystemAddr match on the specified 'ChannelSelect' and 'NodeID'
1701 *
1702 * Return:
1703 * -EINVAL: NOT FOUND
1704 * 0..csrow = Chip-Select Row
1705 */
Daniel J Bluemanc7e53012012-11-30 16:44:20 +08001706static int f1x_lookup_addr_in_dct(u64 in_addr, u8 nid, u8 dct)
Doug Thompson6163b5d2009-04-27 16:20:17 +02001707{
1708 struct mem_ctl_info *mci;
1709 struct amd64_pvt *pvt;
Borislav Petkov11c75ea2010-11-29 19:49:02 +01001710 u64 cs_base, cs_mask;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001711 int cs_found = -EINVAL;
1712 int csrow;
1713
Borislav Petkov2ec591a2015-02-17 10:58:34 +01001714 mci = edac_mc_find(nid);
Doug Thompson6163b5d2009-04-27 16:20:17 +02001715 if (!mci)
1716 return cs_found;
1717
1718 pvt = mci->pvt_info;
1719
Joe Perches956b9ba12012-04-29 17:08:39 -03001720 edac_dbg(1, "input addr: 0x%llx, DCT: %d\n", in_addr, dct);
Doug Thompson6163b5d2009-04-27 16:20:17 +02001721
Borislav Petkov11c75ea2010-11-29 19:49:02 +01001722 for_each_chip_select(csrow, dct, pvt) {
1723 if (!csrow_enabled(csrow, dct, pvt))
Doug Thompson6163b5d2009-04-27 16:20:17 +02001724 continue;
1725
Borislav Petkov11c75ea2010-11-29 19:49:02 +01001726 get_cs_base_and_mask(pvt, csrow, dct, &cs_base, &cs_mask);
Doug Thompson6163b5d2009-04-27 16:20:17 +02001727
Joe Perches956b9ba12012-04-29 17:08:39 -03001728 edac_dbg(1, " CSROW=%d CSBase=0x%llx CSMask=0x%llx\n",
1729 csrow, cs_base, cs_mask);
Doug Thompson6163b5d2009-04-27 16:20:17 +02001730
Borislav Petkov11c75ea2010-11-29 19:49:02 +01001731 cs_mask = ~cs_mask;
Doug Thompson6163b5d2009-04-27 16:20:17 +02001732
Joe Perches956b9ba12012-04-29 17:08:39 -03001733 edac_dbg(1, " (InputAddr & ~CSMask)=0x%llx (CSBase & ~CSMask)=0x%llx\n",
1734 (in_addr & cs_mask), (cs_base & cs_mask));
Doug Thompson6163b5d2009-04-27 16:20:17 +02001735
Borislav Petkov11c75ea2010-11-29 19:49:02 +01001736 if ((in_addr & cs_mask) == (cs_base & cs_mask)) {
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001737 if (pvt->fam == 0x15 && pvt->model >= 0x30) {
1738 cs_found = csrow;
1739 break;
1740 }
Borislav Petkov11c75ea2010-11-29 19:49:02 +01001741 cs_found = f10_process_possible_spare(pvt, dct, csrow);
Doug Thompson6163b5d2009-04-27 16:20:17 +02001742
Joe Perches956b9ba12012-04-29 17:08:39 -03001743 edac_dbg(1, " MATCH csrow=%d\n", cs_found);
Doug Thompson6163b5d2009-04-27 16:20:17 +02001744 break;
1745 }
1746 }
1747 return cs_found;
1748}
1749
Borislav Petkov95b0ef52011-01-11 22:08:07 +01001750/*
1751 * See F2x10C. Non-interleaved graphics framebuffer memory under the 16G is
1752 * swapped with a region located at the bottom of memory so that the GPU can use
1753 * the interleaved region and thus two channels.
1754 */
Borislav Petkovb15f0fc2011-01-17 15:59:58 +01001755static u64 f1x_swap_interleaved_region(struct amd64_pvt *pvt, u64 sys_addr)
Borislav Petkov95b0ef52011-01-11 22:08:07 +01001756{
1757 u32 swap_reg, swap_base, swap_limit, rgn_size, tmp_addr;
1758
Borislav Petkova4b4bed2013-08-10 13:54:48 +02001759 if (pvt->fam == 0x10) {
Borislav Petkov95b0ef52011-01-11 22:08:07 +01001760 /* only revC3 and revE have that feature */
Borislav Petkova4b4bed2013-08-10 13:54:48 +02001761 if (pvt->model < 4 || (pvt->model < 0xa && pvt->stepping < 3))
Borislav Petkov95b0ef52011-01-11 22:08:07 +01001762 return sys_addr;
1763 }
1764
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -05001765 amd64_read_pci_cfg(pvt->F2, SWAP_INTLV_REG, &swap_reg);
Borislav Petkov95b0ef52011-01-11 22:08:07 +01001766
1767 if (!(swap_reg & 0x1))
1768 return sys_addr;
1769
1770 swap_base = (swap_reg >> 3) & 0x7f;
1771 swap_limit = (swap_reg >> 11) & 0x7f;
1772 rgn_size = (swap_reg >> 20) & 0x7f;
1773 tmp_addr = sys_addr >> 27;
1774
1775 if (!(sys_addr >> 34) &&
1776 (((tmp_addr >= swap_base) &&
1777 (tmp_addr <= swap_limit)) ||
1778 (tmp_addr < rgn_size)))
1779 return sys_addr ^ (u64)swap_base << 27;
1780
1781 return sys_addr;
1782}
1783
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001784/* For a given @dram_range, check if @sys_addr falls within it. */
Borislav Petkove761359a2011-02-21 19:49:01 +01001785static int f1x_match_to_this_node(struct amd64_pvt *pvt, unsigned range,
Borislav Petkov33ca0642012-08-30 18:01:36 +02001786 u64 sys_addr, int *chan_sel)
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001787{
Borislav Petkov229a7a12010-12-09 18:57:54 +01001788 int cs_found = -EINVAL;
Borislav Petkovc8e518d2010-12-10 19:49:19 +01001789 u64 chan_addr;
Borislav Petkov5d4b58e2011-01-13 16:01:13 +01001790 u32 dct_sel_base;
Borislav Petkov11c75ea2010-11-29 19:49:02 +01001791 u8 channel;
Borislav Petkov229a7a12010-12-09 18:57:54 +01001792 bool high_range = false;
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001793
Borislav Petkov7f19bf72010-10-21 18:52:53 +02001794 u8 node_id = dram_dst_node(pvt, range);
Borislav Petkov229a7a12010-12-09 18:57:54 +01001795 u8 intlv_en = dram_intlv_en(pvt, range);
Borislav Petkov7f19bf72010-10-21 18:52:53 +02001796 u32 intlv_sel = dram_intlv_sel(pvt, range);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001797
Joe Perches956b9ba12012-04-29 17:08:39 -03001798 edac_dbg(1, "(range %d) SystemAddr= 0x%llx Limit=0x%llx\n",
1799 range, sys_addr, get_dram_limit(pvt, range));
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001800
Borislav Petkov355fba62011-01-17 13:03:26 +01001801 if (dhar_valid(pvt) &&
1802 dhar_base(pvt) <= sys_addr &&
1803 sys_addr < BIT_64(32)) {
1804 amd64_warn("Huh? Address is in the MMIO hole: 0x%016llx\n",
1805 sys_addr);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001806 return -EINVAL;
Borislav Petkov355fba62011-01-17 13:03:26 +01001807 }
1808
Borislav Petkovf030ddf2011-04-08 15:05:21 +02001809 if (intlv_en && (intlv_sel != ((sys_addr >> 12) & intlv_en)))
Borislav Petkov355fba62011-01-17 13:03:26 +01001810 return -EINVAL;
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001811
Borislav Petkovb15f0fc2011-01-17 15:59:58 +01001812 sys_addr = f1x_swap_interleaved_region(pvt, sys_addr);
Borislav Petkov95b0ef52011-01-11 22:08:07 +01001813
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001814 dct_sel_base = dct_sel_baseaddr(pvt);
1815
1816 /*
1817 * check whether addresses >= DctSelBaseAddr[47:27] are to be used to
1818 * select between DCT0 and DCT1.
1819 */
1820 if (dct_high_range_enabled(pvt) &&
1821 !dct_ganging_enabled(pvt) &&
1822 ((sys_addr >> 27) >= (dct_sel_base >> 11)))
Borislav Petkov229a7a12010-12-09 18:57:54 +01001823 high_range = true;
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001824
Borislav Petkovb15f0fc2011-01-17 15:59:58 +01001825 channel = f1x_determine_channel(pvt, sys_addr, high_range, intlv_en);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001826
Borislav Petkovb15f0fc2011-01-17 15:59:58 +01001827 chan_addr = f1x_get_norm_dct_addr(pvt, range, sys_addr,
Borislav Petkovc8e518d2010-12-10 19:49:19 +01001828 high_range, dct_sel_base);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001829
Borislav Petkove2f79db2011-01-13 14:57:34 +01001830 /* Remove node interleaving, see F1x120 */
1831 if (intlv_en)
1832 chan_addr = ((chan_addr >> (12 + hweight8(intlv_en))) << 12) |
1833 (chan_addr & 0xfff);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001834
Borislav Petkov5d4b58e2011-01-13 16:01:13 +01001835 /* remove channel interleave */
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001836 if (dct_interleave_enabled(pvt) &&
1837 !dct_high_range_enabled(pvt) &&
1838 !dct_ganging_enabled(pvt)) {
Borislav Petkov5d4b58e2011-01-13 16:01:13 +01001839
1840 if (dct_sel_interleave_addr(pvt) != 1) {
1841 if (dct_sel_interleave_addr(pvt) == 0x3)
1842 /* hash 9 */
1843 chan_addr = ((chan_addr >> 10) << 9) |
1844 (chan_addr & 0x1ff);
1845 else
1846 /* A[6] or hash 6 */
1847 chan_addr = ((chan_addr >> 7) << 6) |
1848 (chan_addr & 0x3f);
1849 } else
1850 /* A[12] */
1851 chan_addr = ((chan_addr >> 13) << 12) |
1852 (chan_addr & 0xfff);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001853 }
1854
Joe Perches956b9ba12012-04-29 17:08:39 -03001855 edac_dbg(1, " Normalized DCT addr: 0x%llx\n", chan_addr);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001856
Borislav Petkovb15f0fc2011-01-17 15:59:58 +01001857 cs_found = f1x_lookup_addr_in_dct(chan_addr, node_id, channel);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001858
Borislav Petkov33ca0642012-08-30 18:01:36 +02001859 if (cs_found >= 0)
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001860 *chan_sel = channel;
Borislav Petkov33ca0642012-08-30 18:01:36 +02001861
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001862 return cs_found;
1863}
1864
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001865static int f15_m30h_match_to_this_node(struct amd64_pvt *pvt, unsigned range,
1866 u64 sys_addr, int *chan_sel)
1867{
1868 int cs_found = -EINVAL;
1869 int num_dcts_intlv = 0;
1870 u64 chan_addr, chan_offset;
1871 u64 dct_base, dct_limit;
1872 u32 dct_cont_base_reg, dct_cont_limit_reg, tmp;
1873 u8 channel, alias_channel, leg_mmio_hole, dct_sel, dct_offset_en;
1874
1875 u64 dhar_offset = f10_dhar_offset(pvt);
1876 u8 intlv_addr = dct_sel_interleave_addr(pvt);
1877 u8 node_id = dram_dst_node(pvt, range);
1878 u8 intlv_en = dram_intlv_en(pvt, range);
1879
1880 amd64_read_pci_cfg(pvt->F1, DRAM_CONT_BASE, &dct_cont_base_reg);
1881 amd64_read_pci_cfg(pvt->F1, DRAM_CONT_LIMIT, &dct_cont_limit_reg);
1882
1883 dct_offset_en = (u8) ((dct_cont_base_reg >> 3) & BIT(0));
1884 dct_sel = (u8) ((dct_cont_base_reg >> 4) & 0x7);
1885
1886 edac_dbg(1, "(range %d) SystemAddr= 0x%llx Limit=0x%llx\n",
1887 range, sys_addr, get_dram_limit(pvt, range));
1888
1889 if (!(get_dram_base(pvt, range) <= sys_addr) &&
1890 !(get_dram_limit(pvt, range) >= sys_addr))
1891 return -EINVAL;
1892
1893 if (dhar_valid(pvt) &&
1894 dhar_base(pvt) <= sys_addr &&
1895 sys_addr < BIT_64(32)) {
1896 amd64_warn("Huh? Address is in the MMIO hole: 0x%016llx\n",
1897 sys_addr);
1898 return -EINVAL;
1899 }
1900
1901 /* Verify sys_addr is within DCT Range. */
Aravind Gopalakrishnan4fc06b32013-08-24 10:47:48 -05001902 dct_base = (u64) dct_sel_baseaddr(pvt);
1903 dct_limit = (dct_cont_limit_reg >> 11) & 0x1FFF;
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001904
1905 if (!(dct_cont_base_reg & BIT(0)) &&
Aravind Gopalakrishnan4fc06b32013-08-24 10:47:48 -05001906 !(dct_base <= (sys_addr >> 27) &&
1907 dct_limit >= (sys_addr >> 27)))
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001908 return -EINVAL;
1909
1910 /* Verify number of dct's that participate in channel interleaving. */
1911 num_dcts_intlv = (int) hweight8(intlv_en);
1912
1913 if (!(num_dcts_intlv % 2 == 0) || (num_dcts_intlv > 4))
1914 return -EINVAL;
1915
Yazen Ghannamdc0a50a82016-08-03 10:59:15 -04001916 if (pvt->model >= 0x60)
1917 channel = f1x_determine_channel(pvt, sys_addr, false, intlv_en);
1918 else
1919 channel = f15_m30h_determine_channel(pvt, sys_addr, intlv_en,
1920 num_dcts_intlv, dct_sel);
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001921
1922 /* Verify we stay within the MAX number of channels allowed */
Aravind Gopalakrishnan7f3f5242013-12-04 11:40:11 -06001923 if (channel > 3)
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001924 return -EINVAL;
1925
1926 leg_mmio_hole = (u8) (dct_cont_base_reg >> 1 & BIT(0));
1927
1928 /* Get normalized DCT addr */
1929 if (leg_mmio_hole && (sys_addr >= BIT_64(32)))
1930 chan_offset = dhar_offset;
1931 else
Aravind Gopalakrishnan4fc06b32013-08-24 10:47:48 -05001932 chan_offset = dct_base << 27;
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001933
1934 chan_addr = sys_addr - chan_offset;
1935
1936 /* remove channel interleave */
1937 if (num_dcts_intlv == 2) {
1938 if (intlv_addr == 0x4)
1939 chan_addr = ((chan_addr >> 9) << 8) |
1940 (chan_addr & 0xff);
1941 else if (intlv_addr == 0x5)
1942 chan_addr = ((chan_addr >> 10) << 9) |
1943 (chan_addr & 0x1ff);
1944 else
1945 return -EINVAL;
1946
1947 } else if (num_dcts_intlv == 4) {
1948 if (intlv_addr == 0x4)
1949 chan_addr = ((chan_addr >> 10) << 8) |
1950 (chan_addr & 0xff);
1951 else if (intlv_addr == 0x5)
1952 chan_addr = ((chan_addr >> 11) << 9) |
1953 (chan_addr & 0x1ff);
1954 else
1955 return -EINVAL;
1956 }
1957
1958 if (dct_offset_en) {
1959 amd64_read_pci_cfg(pvt->F1,
1960 DRAM_CONT_HIGH_OFF + (int) channel * 4,
1961 &tmp);
Aravind Gopalakrishnan4fc06b32013-08-24 10:47:48 -05001962 chan_addr += (u64) ((tmp >> 11) & 0xfff) << 27;
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001963 }
1964
1965 f15h_select_dct(pvt, channel);
1966
1967 edac_dbg(1, " Normalized DCT addr: 0x%llx\n", chan_addr);
1968
1969 /*
1970 * Find Chip select:
1971 * if channel = 3, then alias it to 1. This is because, in F15 M30h,
1972 * there is support for 4 DCT's, but only 2 are currently functional.
1973 * They are DCT0 and DCT3. But we have read all registers of DCT3 into
1974 * pvt->csels[1]. So we need to use '1' here to get correct info.
1975 * Refer F15 M30h BKDG Section 2.10 and 2.10.3 for clarifications.
1976 */
1977 alias_channel = (channel == 3) ? 1 : channel;
1978
1979 cs_found = f1x_lookup_addr_in_dct(chan_addr, node_id, alias_channel);
1980
1981 if (cs_found >= 0)
1982 *chan_sel = alias_channel;
1983
1984 return cs_found;
1985}
1986
1987static int f1x_translate_sysaddr_to_cs(struct amd64_pvt *pvt,
1988 u64 sys_addr,
1989 int *chan_sel)
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001990{
Borislav Petkove761359a2011-02-21 19:49:01 +01001991 int cs_found = -EINVAL;
1992 unsigned range;
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001993
Borislav Petkov7f19bf72010-10-21 18:52:53 +02001994 for (range = 0; range < DRAM_RANGES; range++) {
Borislav Petkov7f19bf72010-10-21 18:52:53 +02001995 if (!dram_rw(pvt, range))
Doug Thompsonf71d0a02009-04-27 16:22:43 +02001996 continue;
1997
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05001998 if (pvt->fam == 0x15 && pvt->model >= 0x30)
1999 cs_found = f15_m30h_match_to_this_node(pvt, range,
2000 sys_addr,
2001 chan_sel);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02002002
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05002003 else if ((get_dram_base(pvt, range) <= sys_addr) &&
2004 (get_dram_limit(pvt, range) >= sys_addr)) {
Borislav Petkovb15f0fc2011-01-17 15:59:58 +01002005 cs_found = f1x_match_to_this_node(pvt, range,
Borislav Petkov33ca0642012-08-30 18:01:36 +02002006 sys_addr, chan_sel);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02002007 if (cs_found >= 0)
2008 break;
2009 }
2010 }
2011 return cs_found;
2012}
2013
2014/*
Borislav Petkovbdc30a02009-11-13 15:10:43 +01002015 * For reference see "2.8.5 Routing DRAM Requests" in F10 BKDG. This code maps
2016 * a @sys_addr to NodeID, DCT (channel) and chip select (CSROW).
Doug Thompsonf71d0a02009-04-27 16:22:43 +02002017 *
Borislav Petkovbdc30a02009-11-13 15:10:43 +01002018 * The @sys_addr is usually an error address received from the hardware
2019 * (MCX_ADDR).
Doug Thompsonf71d0a02009-04-27 16:22:43 +02002020 */
Borislav Petkovb15f0fc2011-01-17 15:59:58 +01002021static void f1x_map_sysaddr_to_csrow(struct mem_ctl_info *mci, u64 sys_addr,
Borislav Petkov33ca0642012-08-30 18:01:36 +02002022 struct err_info *err)
Doug Thompsonf71d0a02009-04-27 16:22:43 +02002023{
2024 struct amd64_pvt *pvt = mci->pvt_info;
Doug Thompsonf71d0a02009-04-27 16:22:43 +02002025
Borislav Petkov33ca0642012-08-30 18:01:36 +02002026 error_address_to_page_and_offset(sys_addr, err);
Mauro Carvalho Chehabab5a5032012-04-16 15:03:50 -03002027
Borislav Petkov33ca0642012-08-30 18:01:36 +02002028 err->csrow = f1x_translate_sysaddr_to_cs(pvt, sys_addr, &err->channel);
2029 if (err->csrow < 0) {
2030 err->err_code = ERR_CSROW;
Borislav Petkovbdc30a02009-11-13 15:10:43 +01002031 return;
Doug Thompsonf71d0a02009-04-27 16:22:43 +02002032 }
Borislav Petkovbdc30a02009-11-13 15:10:43 +01002033
Borislav Petkovbdc30a02009-11-13 15:10:43 +01002034 /*
2035 * We need the syndromes for channel detection only when we're
2036 * ganged. Otherwise @chan should already contain the channel at
2037 * this point.
2038 */
Borislav Petkova97fa682010-12-23 14:07:18 +01002039 if (dct_ganging_enabled(pvt))
Borislav Petkov33ca0642012-08-30 18:01:36 +02002040 err->channel = get_channel_from_ecc_syndrome(mci, err->syndrome);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02002041}
2042
2043/*
Borislav Petkov8566c4d2009-10-16 13:48:28 +02002044 * debug routine to display the memory sizes of all logical DIMMs and its
Borislav Petkovcb328502010-12-22 14:28:24 +01002045 * CSROWs
Doug Thompsonf71d0a02009-04-27 16:22:43 +02002046 */
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01002047static void debug_display_dimm_sizes(struct amd64_pvt *pvt, u8 ctrl)
Doug Thompsonf71d0a02009-04-27 16:22:43 +02002048{
Borislav Petkovbb89f5a2012-09-12 18:06:00 +02002049 int dimm, size0, size1;
Borislav Petkov525a1b22010-12-21 15:53:27 +01002050 u32 *dcsb = ctrl ? pvt->csels[1].csbases : pvt->csels[0].csbases;
2051 u32 dbam = ctrl ? pvt->dbam1 : pvt->dbam0;
Doug Thompsonf71d0a02009-04-27 16:22:43 +02002052
Borislav Petkova4b4bed2013-08-10 13:54:48 +02002053 if (pvt->fam == 0xf) {
Borislav Petkov8566c4d2009-10-16 13:48:28 +02002054 /* K8 families < revF not supported yet */
Borislav Petkov1433eb92009-10-21 13:44:36 +02002055 if (pvt->ext_model < K8_REV_F)
Borislav Petkov8566c4d2009-10-16 13:48:28 +02002056 return;
2057 else
2058 WARN_ON(ctrl != 0);
2059 }
2060
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -05002061 if (pvt->fam == 0x10) {
2062 dbam = (ctrl && !dct_ganging_enabled(pvt)) ? pvt->dbam1
2063 : pvt->dbam0;
2064 dcsb = (ctrl && !dct_ganging_enabled(pvt)) ?
2065 pvt->csels[1].csbases :
2066 pvt->csels[0].csbases;
2067 } else if (ctrl) {
2068 dbam = pvt->dbam0;
2069 dcsb = pvt->csels[1].csbases;
2070 }
Joe Perches956b9ba12012-04-29 17:08:39 -03002071 edac_dbg(1, "F2x%d80 (DRAM Bank Address Mapping): 0x%08x\n",
2072 ctrl, dbam);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02002073
Borislav Petkov8566c4d2009-10-16 13:48:28 +02002074 edac_printk(KERN_DEBUG, EDAC_MC, "DCT%d chip selects:\n", ctrl);
2075
Doug Thompsonf71d0a02009-04-27 16:22:43 +02002076 /* Dump memory sizes for DIMM and its CSROWs */
2077 for (dimm = 0; dimm < 4; dimm++) {
2078
2079 size0 = 0;
Borislav Petkov11c75ea2010-11-29 19:49:02 +01002080 if (dcsb[dimm*2] & DCSB_CS_ENABLE)
Yazen Ghannam07ed82e2016-11-28 08:50:21 -06002081 /*
2082 * For F15m60h, we need multiplier for LRDIMM cs_size
2083 * calculation. We pass dimm value to the dbam_to_cs
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01002084 * mapper so we can find the multiplier from the
2085 * corresponding DCSM.
2086 */
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01002087 size0 = pvt->ops->dbam_to_cs(pvt, ctrl,
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01002088 DBAM_DIMM(dimm, dbam),
2089 dimm);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02002090
2091 size1 = 0;
Borislav Petkov11c75ea2010-11-29 19:49:02 +01002092 if (dcsb[dimm*2 + 1] & DCSB_CS_ENABLE)
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01002093 size1 = pvt->ops->dbam_to_cs(pvt, ctrl,
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01002094 DBAM_DIMM(dimm, dbam),
2095 dimm);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02002096
Borislav Petkov24f9a7f2010-10-07 18:29:15 +02002097 amd64_info(EDAC_MC ": %d: %5dMB %d: %5dMB\n",
Borislav Petkovbb89f5a2012-09-12 18:06:00 +02002098 dimm * 2, size0,
2099 dimm * 2 + 1, size1);
Doug Thompsonf71d0a02009-04-27 16:22:43 +02002100 }
2101}
2102
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01002103static struct amd64_family_type family_types[] = {
Doug Thompson4d376072009-04-27 16:25:05 +02002104 [K8_CPUS] = {
Borislav Petkov0092b202010-10-01 19:20:05 +02002105 .ctl_name = "K8",
Borislav Petkov8d5b5d92010-10-01 20:11:07 +02002106 .f1_id = PCI_DEVICE_ID_AMD_K8_NB_ADDRMAP,
Borislav Petkov3f37a362016-05-06 19:44:27 +02002107 .f2_id = PCI_DEVICE_ID_AMD_K8_NB_MEMCTL,
Doug Thompson4d376072009-04-27 16:25:05 +02002108 .ops = {
Borislav Petkov1433eb92009-10-21 13:44:36 +02002109 .early_channel_count = k8_early_channel_count,
Borislav Petkov1433eb92009-10-21 13:44:36 +02002110 .map_sysaddr_to_csrow = k8_map_sysaddr_to_csrow,
2111 .dbam_to_cs = k8_dbam_to_chip_select,
Doug Thompson4d376072009-04-27 16:25:05 +02002112 }
2113 },
2114 [F10_CPUS] = {
Borislav Petkov0092b202010-10-01 19:20:05 +02002115 .ctl_name = "F10h",
Borislav Petkov8d5b5d92010-10-01 20:11:07 +02002116 .f1_id = PCI_DEVICE_ID_AMD_10H_NB_MAP,
Borislav Petkov3f37a362016-05-06 19:44:27 +02002117 .f2_id = PCI_DEVICE_ID_AMD_10H_NB_DRAM,
Doug Thompson4d376072009-04-27 16:25:05 +02002118 .ops = {
Borislav Petkov7d20d142011-01-07 17:58:04 +01002119 .early_channel_count = f1x_early_channel_count,
Borislav Petkovb15f0fc2011-01-17 15:59:58 +01002120 .map_sysaddr_to_csrow = f1x_map_sysaddr_to_csrow,
Borislav Petkov1433eb92009-10-21 13:44:36 +02002121 .dbam_to_cs = f10_dbam_to_chip_select,
Borislav Petkovb2b0c602010-10-08 18:32:29 +02002122 }
2123 },
2124 [F15_CPUS] = {
2125 .ctl_name = "F15h",
Borislav Petkovdf71a052011-01-19 18:15:10 +01002126 .f1_id = PCI_DEVICE_ID_AMD_15H_NB_F1,
Borislav Petkov3f37a362016-05-06 19:44:27 +02002127 .f2_id = PCI_DEVICE_ID_AMD_15H_NB_F2,
Borislav Petkovb2b0c602010-10-08 18:32:29 +02002128 .ops = {
Borislav Petkov7d20d142011-01-07 17:58:04 +01002129 .early_channel_count = f1x_early_channel_count,
Borislav Petkovb15f0fc2011-01-17 15:59:58 +01002130 .map_sysaddr_to_csrow = f1x_map_sysaddr_to_csrow,
Borislav Petkov41d8bfa2011-01-18 19:16:08 +01002131 .dbam_to_cs = f15_dbam_to_chip_select,
Doug Thompson4d376072009-04-27 16:25:05 +02002132 }
2133 },
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05002134 [F15_M30H_CPUS] = {
2135 .ctl_name = "F15h_M30h",
2136 .f1_id = PCI_DEVICE_ID_AMD_15H_M30H_NB_F1,
Borislav Petkov3f37a362016-05-06 19:44:27 +02002137 .f2_id = PCI_DEVICE_ID_AMD_15H_M30H_NB_F2,
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05002138 .ops = {
2139 .early_channel_count = f1x_early_channel_count,
2140 .map_sysaddr_to_csrow = f1x_map_sysaddr_to_csrow,
2141 .dbam_to_cs = f16_dbam_to_chip_select,
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05002142 }
2143 },
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01002144 [F15_M60H_CPUS] = {
2145 .ctl_name = "F15h_M60h",
2146 .f1_id = PCI_DEVICE_ID_AMD_15H_M60H_NB_F1,
Borislav Petkov3f37a362016-05-06 19:44:27 +02002147 .f2_id = PCI_DEVICE_ID_AMD_15H_M60H_NB_F2,
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01002148 .ops = {
2149 .early_channel_count = f1x_early_channel_count,
2150 .map_sysaddr_to_csrow = f1x_map_sysaddr_to_csrow,
2151 .dbam_to_cs = f15_m60h_dbam_to_chip_select,
2152 }
2153 },
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -05002154 [F16_CPUS] = {
2155 .ctl_name = "F16h",
2156 .f1_id = PCI_DEVICE_ID_AMD_16H_NB_F1,
Borislav Petkov3f37a362016-05-06 19:44:27 +02002157 .f2_id = PCI_DEVICE_ID_AMD_16H_NB_F2,
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -05002158 .ops = {
2159 .early_channel_count = f1x_early_channel_count,
2160 .map_sysaddr_to_csrow = f1x_map_sysaddr_to_csrow,
2161 .dbam_to_cs = f16_dbam_to_chip_select,
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -05002162 }
2163 },
Aravind Gopalakrishnan85a88852014-02-20 10:28:46 -06002164 [F16_M30H_CPUS] = {
2165 .ctl_name = "F16h_M30h",
2166 .f1_id = PCI_DEVICE_ID_AMD_16H_M30H_NB_F1,
Borislav Petkov3f37a362016-05-06 19:44:27 +02002167 .f2_id = PCI_DEVICE_ID_AMD_16H_M30H_NB_F2,
Aravind Gopalakrishnan85a88852014-02-20 10:28:46 -06002168 .ops = {
2169 .early_channel_count = f1x_early_channel_count,
2170 .map_sysaddr_to_csrow = f1x_map_sysaddr_to_csrow,
2171 .dbam_to_cs = f16_dbam_to_chip_select,
Aravind Gopalakrishnan85a88852014-02-20 10:28:46 -06002172 }
2173 },
Yazen Ghannamf1cbbec2016-11-17 17:57:35 -05002174 [F17_CPUS] = {
2175 .ctl_name = "F17h",
2176 .f0_id = PCI_DEVICE_ID_AMD_17H_DF_F0,
2177 .f6_id = PCI_DEVICE_ID_AMD_17H_DF_F6,
2178 .ops = {
2179 .early_channel_count = f17_early_channel_count,
2180 .dbam_to_cs = f17_base_addr_to_cs_size,
2181 }
2182 },
Doug Thompson4d376072009-04-27 16:25:05 +02002183};
2184
Doug Thompsonb1289d62009-04-27 16:37:05 +02002185/*
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002186 * These are tables of eigenvectors (one per line) which can be used for the
2187 * construction of the syndrome tables. The modified syndrome search algorithm
2188 * uses those to find the symbol in error and thus the DIMM.
Doug Thompsonb1289d62009-04-27 16:37:05 +02002189 *
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002190 * Algorithm courtesy of Ross LaFetra from AMD.
Doug Thompsonb1289d62009-04-27 16:37:05 +02002191 */
Daniel J Bluemanc7e53012012-11-30 16:44:20 +08002192static const u16 x4_vectors[] = {
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002193 0x2f57, 0x1afe, 0x66cc, 0xdd88,
2194 0x11eb, 0x3396, 0x7f4c, 0xeac8,
2195 0x0001, 0x0002, 0x0004, 0x0008,
2196 0x1013, 0x3032, 0x4044, 0x8088,
2197 0x106b, 0x30d6, 0x70fc, 0xe0a8,
2198 0x4857, 0xc4fe, 0x13cc, 0x3288,
2199 0x1ac5, 0x2f4a, 0x5394, 0xa1e8,
2200 0x1f39, 0x251e, 0xbd6c, 0x6bd8,
2201 0x15c1, 0x2a42, 0x89ac, 0x4758,
2202 0x2b03, 0x1602, 0x4f0c, 0xca08,
2203 0x1f07, 0x3a0e, 0x6b04, 0xbd08,
2204 0x8ba7, 0x465e, 0x244c, 0x1cc8,
2205 0x2b87, 0x164e, 0x642c, 0xdc18,
2206 0x40b9, 0x80de, 0x1094, 0x20e8,
2207 0x27db, 0x1eb6, 0x9dac, 0x7b58,
2208 0x11c1, 0x2242, 0x84ac, 0x4c58,
2209 0x1be5, 0x2d7a, 0x5e34, 0xa718,
2210 0x4b39, 0x8d1e, 0x14b4, 0x28d8,
2211 0x4c97, 0xc87e, 0x11fc, 0x33a8,
2212 0x8e97, 0x497e, 0x2ffc, 0x1aa8,
2213 0x16b3, 0x3d62, 0x4f34, 0x8518,
2214 0x1e2f, 0x391a, 0x5cac, 0xf858,
2215 0x1d9f, 0x3b7a, 0x572c, 0xfe18,
2216 0x15f5, 0x2a5a, 0x5264, 0xa3b8,
2217 0x1dbb, 0x3b66, 0x715c, 0xe3f8,
2218 0x4397, 0xc27e, 0x17fc, 0x3ea8,
2219 0x1617, 0x3d3e, 0x6464, 0xb8b8,
2220 0x23ff, 0x12aa, 0xab6c, 0x56d8,
2221 0x2dfb, 0x1ba6, 0x913c, 0x7328,
2222 0x185d, 0x2ca6, 0x7914, 0x9e28,
2223 0x171b, 0x3e36, 0x7d7c, 0xebe8,
2224 0x4199, 0x82ee, 0x19f4, 0x2e58,
2225 0x4807, 0xc40e, 0x130c, 0x3208,
2226 0x1905, 0x2e0a, 0x5804, 0xac08,
2227 0x213f, 0x132a, 0xadfc, 0x5ba8,
2228 0x19a9, 0x2efe, 0xb5cc, 0x6f88,
Doug Thompsonb1289d62009-04-27 16:37:05 +02002229};
2230
Daniel J Bluemanc7e53012012-11-30 16:44:20 +08002231static const u16 x8_vectors[] = {
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002232 0x0145, 0x028a, 0x2374, 0x43c8, 0xa1f0, 0x0520, 0x0a40, 0x1480,
2233 0x0211, 0x0422, 0x0844, 0x1088, 0x01b0, 0x44e0, 0x23c0, 0xed80,
2234 0x1011, 0x0116, 0x022c, 0x0458, 0x08b0, 0x8c60, 0x2740, 0x4e80,
2235 0x0411, 0x0822, 0x1044, 0x0158, 0x02b0, 0x2360, 0x46c0, 0xab80,
2236 0x0811, 0x1022, 0x012c, 0x0258, 0x04b0, 0x4660, 0x8cc0, 0x2780,
2237 0x2071, 0x40e2, 0xa0c4, 0x0108, 0x0210, 0x0420, 0x0840, 0x1080,
2238 0x4071, 0x80e2, 0x0104, 0x0208, 0x0410, 0x0820, 0x1040, 0x2080,
2239 0x8071, 0x0102, 0x0204, 0x0408, 0x0810, 0x1020, 0x2040, 0x4080,
2240 0x019d, 0x03d6, 0x136c, 0x2198, 0x50b0, 0xb2e0, 0x0740, 0x0e80,
2241 0x0189, 0x03ea, 0x072c, 0x0e58, 0x1cb0, 0x56e0, 0x37c0, 0xf580,
2242 0x01fd, 0x0376, 0x06ec, 0x0bb8, 0x1110, 0x2220, 0x4440, 0x8880,
2243 0x0163, 0x02c6, 0x1104, 0x0758, 0x0eb0, 0x2be0, 0x6140, 0xc280,
2244 0x02fd, 0x01c6, 0x0b5c, 0x1108, 0x07b0, 0x25a0, 0x8840, 0x6180,
2245 0x0801, 0x012e, 0x025c, 0x04b8, 0x1370, 0x26e0, 0x57c0, 0xb580,
2246 0x0401, 0x0802, 0x015c, 0x02b8, 0x22b0, 0x13e0, 0x7140, 0xe280,
2247 0x0201, 0x0402, 0x0804, 0x01b8, 0x11b0, 0x31a0, 0x8040, 0x7180,
2248 0x0101, 0x0202, 0x0404, 0x0808, 0x1010, 0x2020, 0x4040, 0x8080,
2249 0x0001, 0x0002, 0x0004, 0x0008, 0x0010, 0x0020, 0x0040, 0x0080,
2250 0x0100, 0x0200, 0x0400, 0x0800, 0x1000, 0x2000, 0x4000, 0x8000,
2251};
2252
Daniel J Bluemanc7e53012012-11-30 16:44:20 +08002253static int decode_syndrome(u16 syndrome, const u16 *vectors, unsigned num_vecs,
Borislav Petkovd34a6ec2011-02-23 17:41:50 +01002254 unsigned v_dim)
Doug Thompsonb1289d62009-04-27 16:37:05 +02002255{
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002256 unsigned int i, err_sym;
Doug Thompsonb1289d62009-04-27 16:37:05 +02002257
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002258 for (err_sym = 0; err_sym < num_vecs / v_dim; err_sym++) {
2259 u16 s = syndrome;
Borislav Petkovd34a6ec2011-02-23 17:41:50 +01002260 unsigned v_idx = err_sym * v_dim;
2261 unsigned v_end = (err_sym + 1) * v_dim;
Doug Thompsonb1289d62009-04-27 16:37:05 +02002262
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002263 /* walk over all 16 bits of the syndrome */
2264 for (i = 1; i < (1U << 16); i <<= 1) {
2265
2266 /* if bit is set in that eigenvector... */
2267 if (v_idx < v_end && vectors[v_idx] & i) {
2268 u16 ev_comp = vectors[v_idx++];
2269
2270 /* ... and bit set in the modified syndrome, */
2271 if (s & i) {
2272 /* remove it. */
2273 s ^= ev_comp;
2274
2275 if (!s)
2276 return err_sym;
2277 }
2278
2279 } else if (s & i)
2280 /* can't get to zero, move to next symbol */
2281 break;
2282 }
Doug Thompsonb1289d62009-04-27 16:37:05 +02002283 }
2284
Joe Perches956b9ba12012-04-29 17:08:39 -03002285 edac_dbg(0, "syndrome(%x) not found\n", syndrome);
Doug Thompsonb1289d62009-04-27 16:37:05 +02002286 return -1;
2287}
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002288
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002289static int map_err_sym_to_channel(int err_sym, int sym_size)
2290{
2291 if (sym_size == 4)
2292 switch (err_sym) {
2293 case 0x20:
2294 case 0x21:
2295 return 0;
2296 break;
2297 case 0x22:
2298 case 0x23:
2299 return 1;
2300 break;
2301 default:
2302 return err_sym >> 4;
2303 break;
2304 }
2305 /* x8 symbols */
2306 else
2307 switch (err_sym) {
2308 /* imaginary bits not in a DIMM */
2309 case 0x10:
2310 WARN(1, KERN_ERR "Invalid error symbol: 0x%x\n",
2311 err_sym);
2312 return -1;
2313 break;
2314
2315 case 0x11:
2316 return 0;
2317 break;
2318 case 0x12:
2319 return 1;
2320 break;
2321 default:
2322 return err_sym >> 3;
2323 break;
2324 }
2325 return -1;
2326}
2327
2328static int get_channel_from_ecc_syndrome(struct mem_ctl_info *mci, u16 syndrome)
2329{
2330 struct amd64_pvt *pvt = mci->pvt_info;
Borislav Petkovad6a32e2010-03-09 12:46:00 +01002331 int err_sym = -1;
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002332
Borislav Petkova3b7db02011-01-19 20:35:12 +01002333 if (pvt->ecc_sym_sz == 8)
Borislav Petkovad6a32e2010-03-09 12:46:00 +01002334 err_sym = decode_syndrome(syndrome, x8_vectors,
2335 ARRAY_SIZE(x8_vectors),
Borislav Petkova3b7db02011-01-19 20:35:12 +01002336 pvt->ecc_sym_sz);
2337 else if (pvt->ecc_sym_sz == 4)
Borislav Petkovad6a32e2010-03-09 12:46:00 +01002338 err_sym = decode_syndrome(syndrome, x4_vectors,
2339 ARRAY_SIZE(x4_vectors),
Borislav Petkova3b7db02011-01-19 20:35:12 +01002340 pvt->ecc_sym_sz);
Borislav Petkovad6a32e2010-03-09 12:46:00 +01002341 else {
Borislav Petkova3b7db02011-01-19 20:35:12 +01002342 amd64_warn("Illegal syndrome type: %u\n", pvt->ecc_sym_sz);
Borislav Petkovad6a32e2010-03-09 12:46:00 +01002343 return err_sym;
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002344 }
Borislav Petkovad6a32e2010-03-09 12:46:00 +01002345
Borislav Petkova3b7db02011-01-19 20:35:12 +01002346 return map_err_sym_to_channel(err_sym, pvt->ecc_sym_sz);
Borislav Petkovbfc04ae2009-11-12 19:05:07 +01002347}
2348
Yazen Ghanname70984d2016-11-17 17:57:31 -05002349static void __log_ecc_error(struct mem_ctl_info *mci, struct err_info *err,
Borislav Petkov33ca0642012-08-30 18:01:36 +02002350 u8 ecc_type)
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002351{
Borislav Petkov33ca0642012-08-30 18:01:36 +02002352 enum hw_event_mc_err_type err_type;
2353 const char *string;
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002354
Borislav Petkov33ca0642012-08-30 18:01:36 +02002355 if (ecc_type == 2)
2356 err_type = HW_EVENT_ERR_CORRECTED;
2357 else if (ecc_type == 1)
2358 err_type = HW_EVENT_ERR_UNCORRECTED;
Yazen Ghannamd12a9692016-11-17 17:57:32 -05002359 else if (ecc_type == 3)
2360 err_type = HW_EVENT_ERR_DEFERRED;
Borislav Petkov33ca0642012-08-30 18:01:36 +02002361 else {
2362 WARN(1, "Something is rotten in the state of Denmark.\n");
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002363 return;
2364 }
2365
Borislav Petkov33ca0642012-08-30 18:01:36 +02002366 switch (err->err_code) {
2367 case DECODE_OK:
2368 string = "";
2369 break;
2370 case ERR_NODE:
2371 string = "Failed to map error addr to a node";
2372 break;
2373 case ERR_CSROW:
2374 string = "Failed to map error addr to a csrow";
2375 break;
2376 case ERR_CHANNEL:
2377 string = "unknown syndrome - possible error reporting race";
2378 break;
2379 default:
2380 string = "WTF error";
2381 break;
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002382 }
Borislav Petkov33ca0642012-08-30 18:01:36 +02002383
2384 edac_mc_handle_error(err_type, mci, 1,
2385 err->page, err->offset, err->syndrome,
2386 err->csrow, err->channel, -1,
2387 string, "");
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002388}
2389
Borislav Petkovdf781d02013-12-15 17:29:44 +01002390static inline void decode_bus_error(int node_id, struct mce *m)
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002391{
Daniel J Blueman0c510cc2015-02-17 11:34:38 +08002392 struct mem_ctl_info *mci;
2393 struct amd64_pvt *pvt;
Borislav Petkovf192c7b2011-01-10 14:24:32 +01002394 u8 ecc_type = (m->status >> 45) & 0x3;
Borislav Petkov66fed2d2012-08-09 18:41:07 +02002395 u8 xec = XEC(m->status, 0x1f);
2396 u16 ec = EC(m->status);
Borislav Petkov33ca0642012-08-30 18:01:36 +02002397 u64 sys_addr;
2398 struct err_info err;
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002399
Daniel J Blueman0c510cc2015-02-17 11:34:38 +08002400 mci = edac_mc_find(node_id);
2401 if (!mci)
2402 return;
2403
2404 pvt = mci->pvt_info;
2405
Borislav Petkov66fed2d2012-08-09 18:41:07 +02002406 /* Bail out early if this was an 'observed' error */
Borislav Petkov5980bb92011-01-07 16:26:49 +01002407 if (PP(ec) == NBSL_PP_OBS)
Borislav Petkovb70ef012009-06-25 19:32:38 +02002408 return;
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002409
Borislav Petkovecaf5602009-07-23 16:32:01 +02002410 /* Do only ECC errors */
2411 if (xec && xec != F10_NBSL_EXT_ERR_ECC)
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002412 return;
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002413
Borislav Petkov33ca0642012-08-30 18:01:36 +02002414 memset(&err, 0, sizeof(err));
2415
Borislav Petkova4b4bed2013-08-10 13:54:48 +02002416 sys_addr = get_error_address(pvt, m);
Borislav Petkov33ca0642012-08-30 18:01:36 +02002417
Borislav Petkovecaf5602009-07-23 16:32:01 +02002418 if (ecc_type == 2)
Borislav Petkov33ca0642012-08-30 18:01:36 +02002419 err.syndrome = extract_syndrome(m->status);
2420
2421 pvt->ops->map_sysaddr_to_csrow(mci, sys_addr, &err);
2422
Yazen Ghanname70984d2016-11-17 17:57:31 -05002423 __log_ecc_error(mci, &err, ecc_type);
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002424}
2425
Doug Thompson0ec449e2009-04-27 19:41:25 +02002426/*
Borislav Petkov3f37a362016-05-06 19:44:27 +02002427 * Use pvt->F3 which contains the F3 CPU PCI device to get the related
2428 * F1 (AddrMap) and F2 (Dct) devices. Return negative value on error.
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05002429 * Reserve F0 and F6 on systems with a UMC.
Doug Thompson0ec449e2009-04-27 19:41:25 +02002430 */
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05002431static int
2432reserve_mc_sibling_devs(struct amd64_pvt *pvt, u16 pci_id1, u16 pci_id2)
Doug Thompson0ec449e2009-04-27 19:41:25 +02002433{
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05002434 if (pvt->umc) {
2435 pvt->F0 = pci_get_related_function(pvt->F3->vendor, pci_id1, pvt->F3);
2436 if (!pvt->F0) {
2437 amd64_err("error F0 device not found: vendor %x device 0x%x (broken BIOS?)\n",
2438 PCI_VENDOR_ID_AMD, pci_id1);
2439 return -ENODEV;
2440 }
2441
2442 pvt->F6 = pci_get_related_function(pvt->F3->vendor, pci_id2, pvt->F3);
2443 if (!pvt->F6) {
2444 pci_dev_put(pvt->F0);
2445 pvt->F0 = NULL;
2446
2447 amd64_err("error F6 device not found: vendor %x device 0x%x (broken BIOS?)\n",
2448 PCI_VENDOR_ID_AMD, pci_id2);
2449
2450 return -ENODEV;
2451 }
2452 edac_dbg(1, "F0: %s\n", pci_name(pvt->F0));
2453 edac_dbg(1, "F3: %s\n", pci_name(pvt->F3));
2454 edac_dbg(1, "F6: %s\n", pci_name(pvt->F6));
2455
2456 return 0;
2457 }
2458
Doug Thompson0ec449e2009-04-27 19:41:25 +02002459 /* Reserve the ADDRESS MAP Device */
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05002460 pvt->F1 = pci_get_related_function(pvt->F3->vendor, pci_id1, pvt->F3);
Borislav Petkov8d5b5d92010-10-01 20:11:07 +02002461 if (!pvt->F1) {
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05002462 amd64_err("error address map device not found: vendor %x device 0x%x (broken BIOS?)\n",
2463 PCI_VENDOR_ID_AMD, pci_id1);
Borislav Petkovbbd0c1f62010-10-01 19:27:58 +02002464 return -ENODEV;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002465 }
2466
Borislav Petkov3f37a362016-05-06 19:44:27 +02002467 /* Reserve the DCT Device */
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05002468 pvt->F2 = pci_get_related_function(pvt->F3->vendor, pci_id2, pvt->F3);
Borislav Petkov3f37a362016-05-06 19:44:27 +02002469 if (!pvt->F2) {
Borislav Petkov8d5b5d92010-10-01 20:11:07 +02002470 pci_dev_put(pvt->F1);
2471 pvt->F1 = NULL;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002472
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05002473 amd64_err("error F2 device not found: vendor %x device 0x%x (broken BIOS?)\n",
2474 PCI_VENDOR_ID_AMD, pci_id2);
2475 return -ENODEV;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002476 }
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05002477
Joe Perches956b9ba12012-04-29 17:08:39 -03002478 edac_dbg(1, "F1: %s\n", pci_name(pvt->F1));
2479 edac_dbg(1, "F2: %s\n", pci_name(pvt->F2));
2480 edac_dbg(1, "F3: %s\n", pci_name(pvt->F3));
Doug Thompson0ec449e2009-04-27 19:41:25 +02002481
2482 return 0;
2483}
2484
Borislav Petkov360b7f32010-10-15 19:25:38 +02002485static void free_mc_sibling_devs(struct amd64_pvt *pvt)
Doug Thompson0ec449e2009-04-27 19:41:25 +02002486{
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05002487 if (pvt->umc) {
2488 pci_dev_put(pvt->F0);
2489 pci_dev_put(pvt->F6);
2490 } else {
2491 pci_dev_put(pvt->F1);
2492 pci_dev_put(pvt->F2);
2493 }
Doug Thompson0ec449e2009-04-27 19:41:25 +02002494}
2495
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05002496static void determine_ecc_sym_sz(struct amd64_pvt *pvt)
2497{
2498 pvt->ecc_sym_sz = 4;
2499
2500 if (pvt->umc) {
2501 u8 i;
2502
2503 for (i = 0; i < NUM_UMCS; i++) {
2504 /* Check enabled channels only: */
2505 if ((pvt->umc[i].sdp_ctrl & UMC_SDP_INIT) &&
2506 (pvt->umc[i].ecc_ctrl & BIT(7))) {
2507 pvt->ecc_sym_sz = 8;
2508 break;
2509 }
2510 }
2511
2512 return;
2513 }
2514
2515 if (pvt->fam >= 0x10) {
2516 u32 tmp;
2517
2518 amd64_read_pci_cfg(pvt->F3, EXT_NB_MCA_CFG, &tmp);
2519 /* F16h has only DCT0, so no need to read dbam1. */
2520 if (pvt->fam != 0x16)
2521 amd64_read_dct_pci_cfg(pvt, 1, DBAM0, &pvt->dbam1);
2522
2523 /* F10h, revD and later can do x8 ECC too. */
2524 if ((pvt->fam > 0x10 || pvt->model > 7) && tmp & BIT(25))
2525 pvt->ecc_sym_sz = 8;
2526 }
2527}
2528
2529/*
2530 * Retrieve the hardware registers of the memory controller.
2531 */
2532static void __read_mc_regs_df(struct amd64_pvt *pvt)
2533{
2534 u8 nid = pvt->mc_node_id;
2535 struct amd64_umc *umc;
2536 u32 i, umc_base;
2537
2538 /* Read registers from each UMC */
2539 for (i = 0; i < NUM_UMCS; i++) {
2540
2541 umc_base = get_umc_base(i);
2542 umc = &pvt->umc[i];
2543
Yazen Ghannam07ed82e2016-11-28 08:50:21 -06002544 amd_smn_read(nid, umc_base + UMCCH_DIMM_CFG, &umc->dimm_cfg);
2545 amd_smn_read(nid, umc_base + UMCCH_UMC_CFG, &umc->umc_cfg);
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05002546 amd_smn_read(nid, umc_base + UMCCH_SDP_CTRL, &umc->sdp_ctrl);
2547 amd_smn_read(nid, umc_base + UMCCH_ECC_CTRL, &umc->ecc_ctrl);
Yazen Ghannam07ed82e2016-11-28 08:50:21 -06002548 amd_smn_read(nid, umc_base + UMCCH_UMC_CAP_HI, &umc->umc_cap_hi);
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05002549 }
2550}
2551
Doug Thompson0ec449e2009-04-27 19:41:25 +02002552/*
2553 * Retrieve the hardware registers of the memory controller (this includes the
2554 * 'Address Map' and 'Misc' device regs)
2555 */
Borislav Petkov360b7f32010-10-15 19:25:38 +02002556static void read_mc_regs(struct amd64_pvt *pvt)
Doug Thompson0ec449e2009-04-27 19:41:25 +02002557{
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05002558 unsigned int range;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002559 u64 msr_val;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002560
2561 /*
2562 * Retrieve TOP_MEM and TOP_MEM2; no masking off of reserved bits since
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05002563 * those are Read-As-Zero.
Doug Thompson0ec449e2009-04-27 19:41:25 +02002564 */
Borislav Petkove97f8bb2009-10-12 15:27:45 +02002565 rdmsrl(MSR_K8_TOP_MEM1, pvt->top_mem);
Joe Perches956b9ba12012-04-29 17:08:39 -03002566 edac_dbg(0, " TOP_MEM: 0x%016llx\n", pvt->top_mem);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002567
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05002568 /* Check first whether TOP_MEM2 is enabled: */
Doug Thompson0ec449e2009-04-27 19:41:25 +02002569 rdmsrl(MSR_K8_SYSCFG, msr_val);
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05002570 if (msr_val & BIT(21)) {
Borislav Petkove97f8bb2009-10-12 15:27:45 +02002571 rdmsrl(MSR_K8_TOP_MEM2, pvt->top_mem2);
Joe Perches956b9ba12012-04-29 17:08:39 -03002572 edac_dbg(0, " TOP_MEM2: 0x%016llx\n", pvt->top_mem2);
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05002573 } else {
Joe Perches956b9ba12012-04-29 17:08:39 -03002574 edac_dbg(0, " TOP_MEM2 disabled\n");
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05002575 }
2576
2577 if (pvt->umc) {
2578 __read_mc_regs_df(pvt);
2579 amd64_read_pci_cfg(pvt->F0, DF_DHAR, &pvt->dhar);
2580
2581 goto skip;
2582 }
Doug Thompson0ec449e2009-04-27 19:41:25 +02002583
Borislav Petkov5980bb92011-01-07 16:26:49 +01002584 amd64_read_pci_cfg(pvt->F3, NBCAP, &pvt->nbcap);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002585
Borislav Petkov5a5d2372011-01-17 17:52:57 +01002586 read_dram_ctl_register(pvt);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002587
Borislav Petkov7f19bf72010-10-21 18:52:53 +02002588 for (range = 0; range < DRAM_RANGES; range++) {
2589 u8 rw;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002590
Borislav Petkov7f19bf72010-10-21 18:52:53 +02002591 /* read settings for this DRAM range */
2592 read_dram_base_limit_regs(pvt, range);
Borislav Petkove97f8bb2009-10-12 15:27:45 +02002593
Borislav Petkov7f19bf72010-10-21 18:52:53 +02002594 rw = dram_rw(pvt, range);
2595 if (!rw)
2596 continue;
2597
Joe Perches956b9ba12012-04-29 17:08:39 -03002598 edac_dbg(1, " DRAM range[%d], base: 0x%016llx; limit: 0x%016llx\n",
2599 range,
2600 get_dram_base(pvt, range),
2601 get_dram_limit(pvt, range));
Borislav Petkov7f19bf72010-10-21 18:52:53 +02002602
Joe Perches956b9ba12012-04-29 17:08:39 -03002603 edac_dbg(1, " IntlvEn=%s; Range access: %s%s IntlvSel=%d DstNode=%d\n",
2604 dram_intlv_en(pvt, range) ? "Enabled" : "Disabled",
2605 (rw & 0x1) ? "R" : "-",
2606 (rw & 0x2) ? "W" : "-",
2607 dram_intlv_sel(pvt, range),
2608 dram_dst_node(pvt, range));
Doug Thompson0ec449e2009-04-27 19:41:25 +02002609 }
2610
Borislav Petkovbc21fa52010-11-11 17:29:13 +01002611 amd64_read_pci_cfg(pvt->F1, DHAR, &pvt->dhar);
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -05002612 amd64_read_dct_pci_cfg(pvt, 0, DBAM0, &pvt->dbam0);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002613
Borislav Petkov8d5b5d92010-10-01 20:11:07 +02002614 amd64_read_pci_cfg(pvt->F3, F10_ONLINE_SPARE, &pvt->online_spare);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002615
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -05002616 amd64_read_dct_pci_cfg(pvt, 0, DCLR0, &pvt->dclr0);
2617 amd64_read_dct_pci_cfg(pvt, 0, DCHR0, &pvt->dchr0);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002618
Borislav Petkov78da1212010-12-22 19:31:45 +01002619 if (!dct_ganging_enabled(pvt)) {
Aravind Gopalakrishnan7981a282014-09-15 11:37:38 -05002620 amd64_read_dct_pci_cfg(pvt, 1, DCLR0, &pvt->dclr1);
2621 amd64_read_dct_pci_cfg(pvt, 1, DCHR0, &pvt->dchr1);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002622 }
Borislav Petkovad6a32e2010-03-09 12:46:00 +01002623
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05002624skip:
2625 read_dct_base_mask(pvt);
2626
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01002627 determine_memory_type(pvt);
2628 edac_dbg(1, " DIMM type: %s\n", edac_mem_types[pvt->dram_type]);
Borislav Petkova3b7db02011-01-19 20:35:12 +01002629
Yazen Ghannamb64ce7c2016-11-17 17:57:37 -05002630 determine_ecc_sym_sz(pvt);
Borislav Petkova3b7db02011-01-19 20:35:12 +01002631
Borislav Petkovb2b0c602010-10-08 18:32:29 +02002632 dump_misc_regs(pvt);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002633}
2634
2635/*
2636 * NOTE: CPU Revision Dependent code
2637 *
2638 * Input:
Borislav Petkov11c75ea2010-11-29 19:49:02 +01002639 * @csrow_nr ChipSelect Row Number (0..NUM_CHIPSELECTS-1)
Doug Thompson0ec449e2009-04-27 19:41:25 +02002640 * k8 private pointer to -->
2641 * DRAM Bank Address mapping register
2642 * node_id
2643 * DCL register where dual_channel_active is
2644 *
2645 * The DBAM register consists of 4 sets of 4 bits each definitions:
2646 *
2647 * Bits: CSROWs
2648 * 0-3 CSROWs 0 and 1
2649 * 4-7 CSROWs 2 and 3
2650 * 8-11 CSROWs 4 and 5
2651 * 12-15 CSROWs 6 and 7
2652 *
2653 * Values range from: 0 to 15
2654 * The meaning of the values depends on CPU revision and dual-channel state,
2655 * see relevant BKDG more info.
2656 *
2657 * The memory controller provides for total of only 8 CSROWs in its current
2658 * architecture. Each "pair" of CSROWs normally represents just one DIMM in
2659 * single channel or two (2) DIMMs in dual channel mode.
2660 *
2661 * The following code logic collapses the various tables for CSROW based on CPU
2662 * revision.
2663 *
2664 * Returns:
2665 * The number of PAGE_SIZE pages on the specified CSROW number it
2666 * encompasses
2667 *
2668 */
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01002669static u32 get_csrow_nr_pages(struct amd64_pvt *pvt, u8 dct, int csrow_nr)
Doug Thompson0ec449e2009-04-27 19:41:25 +02002670{
Borislav Petkov1433eb92009-10-21 13:44:36 +02002671 u32 cs_mode, nr_pages;
Ashish Shenoyf92cae42012-02-22 17:20:38 -08002672 u32 dbam = dct ? pvt->dbam1 : pvt->dbam0;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002673
Borislav Petkov10de6492012-09-12 19:00:38 +02002674
Doug Thompson0ec449e2009-04-27 19:41:25 +02002675 /*
2676 * The math on this doesn't look right on the surface because x/2*4 can
2677 * be simplified to x*2 but this expression makes use of the fact that
2678 * it is integral math where 1/2=0. This intermediate value becomes the
2679 * number of bits to shift the DBAM register to extract the proper CSROW
2680 * field.
2681 */
Borislav Petkov0a5dfc32012-09-12 18:16:01 +02002682 cs_mode = DBAM_DIMM(csrow_nr / 2, dbam);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002683
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01002684 nr_pages = pvt->ops->dbam_to_cs(pvt, dct, cs_mode, (csrow_nr / 2))
2685 << (20 - PAGE_SHIFT);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002686
Borislav Petkov10de6492012-09-12 19:00:38 +02002687 edac_dbg(0, "csrow: %d, channel: %d, DBAM idx: %d\n",
2688 csrow_nr, dct, cs_mode);
2689 edac_dbg(0, "nr_pages/channel: %u\n", nr_pages);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002690
2691 return nr_pages;
2692}
2693
2694/*
2695 * Initialize the array of csrow attribute instances, based on the values
2696 * from pci config hardware registers.
2697 */
Borislav Petkov360b7f32010-10-15 19:25:38 +02002698static int init_csrows(struct mem_ctl_info *mci)
Doug Thompson0ec449e2009-04-27 19:41:25 +02002699{
Borislav Petkov10de6492012-09-12 19:00:38 +02002700 struct amd64_pvt *pvt = mci->pvt_info;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002701 struct csrow_info *csrow;
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -03002702 struct dimm_info *dimm;
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -03002703 enum edac_type edac_mode;
Borislav Petkov10de6492012-09-12 19:00:38 +02002704 int i, j, empty = 1;
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -03002705 int nr_pages = 0;
Borislav Petkov10de6492012-09-12 19:00:38 +02002706 u32 val;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002707
Borislav Petkova97fa682010-12-23 14:07:18 +01002708 amd64_read_pci_cfg(pvt->F3, NBCFG, &val);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002709
Borislav Petkov2299ef72010-10-15 17:44:04 +02002710 pvt->nbcfg = val;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002711
Joe Perches956b9ba12012-04-29 17:08:39 -03002712 edac_dbg(0, "node %d, NBCFG=0x%08x[ChipKillEccCap: %d|DramEccEn: %d]\n",
2713 pvt->mc_node_id, val,
2714 !!(val & NBCFG_CHIPKILL), !!(val & NBCFG_ECC_ENABLE));
Doug Thompson0ec449e2009-04-27 19:41:25 +02002715
Borislav Petkov10de6492012-09-12 19:00:38 +02002716 /*
2717 * We iterate over DCT0 here but we look at DCT1 in parallel, if needed.
2718 */
Borislav Petkov11c75ea2010-11-29 19:49:02 +01002719 for_each_chip_select(i, 0, pvt) {
Borislav Petkov10de6492012-09-12 19:00:38 +02002720 bool row_dct0 = !!csrow_enabled(i, 0, pvt);
2721 bool row_dct1 = false;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002722
Borislav Petkova4b4bed2013-08-10 13:54:48 +02002723 if (pvt->fam != 0xf)
Borislav Petkov10de6492012-09-12 19:00:38 +02002724 row_dct1 = !!csrow_enabled(i, 1, pvt);
2725
2726 if (!row_dct0 && !row_dct1)
Doug Thompson0ec449e2009-04-27 19:41:25 +02002727 continue;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002728
Borislav Petkov10de6492012-09-12 19:00:38 +02002729 csrow = mci->csrows[i];
Doug Thompson0ec449e2009-04-27 19:41:25 +02002730 empty = 0;
Borislav Petkov11c75ea2010-11-29 19:49:02 +01002731
Borislav Petkov10de6492012-09-12 19:00:38 +02002732 edac_dbg(1, "MC node: %d, csrow: %d\n",
2733 pvt->mc_node_id, i);
2734
Mauro Carvalho Chehab1eef1282013-03-11 09:07:46 -03002735 if (row_dct0) {
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01002736 nr_pages = get_csrow_nr_pages(pvt, 0, i);
Mauro Carvalho Chehab1eef1282013-03-11 09:07:46 -03002737 csrow->channels[0]->dimm->nr_pages = nr_pages;
2738 }
Borislav Petkov10de6492012-09-12 19:00:38 +02002739
2740 /* K8 has only one DCT */
Borislav Petkova4b4bed2013-08-10 13:54:48 +02002741 if (pvt->fam != 0xf && row_dct1) {
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01002742 int row_dct1_pages = get_csrow_nr_pages(pvt, 1, i);
Mauro Carvalho Chehab1eef1282013-03-11 09:07:46 -03002743
2744 csrow->channels[1]->dimm->nr_pages = row_dct1_pages;
2745 nr_pages += row_dct1_pages;
2746 }
Doug Thompson0ec449e2009-04-27 19:41:25 +02002747
Borislav Petkov10de6492012-09-12 19:00:38 +02002748 edac_dbg(1, "Total csrow%d pages: %u\n", i, nr_pages);
Doug Thompson0ec449e2009-04-27 19:41:25 +02002749
2750 /*
2751 * determine whether CHIPKILL or JUST ECC or NO ECC is operating
2752 */
Borislav Petkova97fa682010-12-23 14:07:18 +01002753 if (pvt->nbcfg & NBCFG_ECC_ENABLE)
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -03002754 edac_mode = (pvt->nbcfg & NBCFG_CHIPKILL) ?
2755 EDAC_S4ECD4ED : EDAC_SECDED;
Doug Thompson0ec449e2009-04-27 19:41:25 +02002756 else
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -03002757 edac_mode = EDAC_NONE;
2758
2759 for (j = 0; j < pvt->channel_count; j++) {
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -03002760 dimm = csrow->channels[j]->dimm;
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01002761 dimm->mtype = pvt->dram_type;
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -03002762 dimm->edac_mode = edac_mode;
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -03002763 }
Doug Thompson0ec449e2009-04-27 19:41:25 +02002764 }
2765
2766 return empty;
2767}
Doug Thompsond27bf6f2009-05-06 17:55:27 +02002768
Borislav Petkov06724532009-09-16 13:05:46 +02002769/* get all cores on this DCT */
Daniel J Blueman8b84c8d2012-11-27 14:32:10 +08002770static void get_cpus_on_this_dct_cpumask(struct cpumask *mask, u16 nid)
Doug Thompsonf9431992009-04-27 19:46:08 +02002771{
Borislav Petkov06724532009-09-16 13:05:46 +02002772 int cpu;
Doug Thompsonf9431992009-04-27 19:46:08 +02002773
Borislav Petkov06724532009-09-16 13:05:46 +02002774 for_each_online_cpu(cpu)
2775 if (amd_get_nb_id(cpu) == nid)
2776 cpumask_set_cpu(cpu, mask);
Doug Thompsonf9431992009-04-27 19:46:08 +02002777}
2778
2779/* check MCG_CTL on all the cpus on this node */
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01002780static bool nb_mce_bank_enabled_on_node(u16 nid)
Doug Thompsonf9431992009-04-27 19:46:08 +02002781{
Rusty Russellba578cb2009-11-03 14:56:35 +10302782 cpumask_var_t mask;
Borislav Petkov50542252009-12-11 18:14:40 +01002783 int cpu, nbe;
Borislav Petkov06724532009-09-16 13:05:46 +02002784 bool ret = false;
Doug Thompsonf9431992009-04-27 19:46:08 +02002785
Rusty Russellba578cb2009-11-03 14:56:35 +10302786 if (!zalloc_cpumask_var(&mask, GFP_KERNEL)) {
Borislav Petkov24f9a7f2010-10-07 18:29:15 +02002787 amd64_warn("%s: Error allocating mask\n", __func__);
Rusty Russellba578cb2009-11-03 14:56:35 +10302788 return false;
2789 }
Borislav Petkov06724532009-09-16 13:05:46 +02002790
Rusty Russellba578cb2009-11-03 14:56:35 +10302791 get_cpus_on_this_dct_cpumask(mask, nid);
Borislav Petkov06724532009-09-16 13:05:46 +02002792
Rusty Russellba578cb2009-11-03 14:56:35 +10302793 rdmsr_on_cpus(mask, MSR_IA32_MCG_CTL, msrs);
Borislav Petkov06724532009-09-16 13:05:46 +02002794
Rusty Russellba578cb2009-11-03 14:56:35 +10302795 for_each_cpu(cpu, mask) {
Borislav Petkov50542252009-12-11 18:14:40 +01002796 struct msr *reg = per_cpu_ptr(msrs, cpu);
Borislav Petkov5980bb92011-01-07 16:26:49 +01002797 nbe = reg->l & MSR_MCGCTL_NBE;
Borislav Petkov06724532009-09-16 13:05:46 +02002798
Joe Perches956b9ba12012-04-29 17:08:39 -03002799 edac_dbg(0, "core: %u, MCG_CTL: 0x%llx, NB MSR is %s\n",
2800 cpu, reg->q,
2801 (nbe ? "enabled" : "disabled"));
Borislav Petkov06724532009-09-16 13:05:46 +02002802
2803 if (!nbe)
2804 goto out;
Borislav Petkov06724532009-09-16 13:05:46 +02002805 }
2806 ret = true;
2807
2808out:
Rusty Russellba578cb2009-11-03 14:56:35 +10302809 free_cpumask_var(mask);
Doug Thompsonf9431992009-04-27 19:46:08 +02002810 return ret;
2811}
2812
Daniel J Bluemanc7e53012012-11-30 16:44:20 +08002813static int toggle_ecc_err_reporting(struct ecc_settings *s, u16 nid, bool on)
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002814{
2815 cpumask_var_t cmask;
Borislav Petkov50542252009-12-11 18:14:40 +01002816 int cpu;
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002817
2818 if (!zalloc_cpumask_var(&cmask, GFP_KERNEL)) {
Borislav Petkov24f9a7f2010-10-07 18:29:15 +02002819 amd64_warn("%s: error allocating mask\n", __func__);
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002820 return false;
2821 }
2822
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02002823 get_cpus_on_this_dct_cpumask(cmask, nid);
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002824
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002825 rdmsr_on_cpus(cmask, MSR_IA32_MCG_CTL, msrs);
2826
2827 for_each_cpu(cpu, cmask) {
2828
Borislav Petkov50542252009-12-11 18:14:40 +01002829 struct msr *reg = per_cpu_ptr(msrs, cpu);
2830
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002831 if (on) {
Borislav Petkov5980bb92011-01-07 16:26:49 +01002832 if (reg->l & MSR_MCGCTL_NBE)
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02002833 s->flags.nb_mce_enable = 1;
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002834
Borislav Petkov5980bb92011-01-07 16:26:49 +01002835 reg->l |= MSR_MCGCTL_NBE;
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002836 } else {
2837 /*
Borislav Petkovd95cf4d2010-02-24 14:49:47 +01002838 * Turn off NB MCE reporting only when it was off before
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002839 */
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02002840 if (!s->flags.nb_mce_enable)
Borislav Petkov5980bb92011-01-07 16:26:49 +01002841 reg->l &= ~MSR_MCGCTL_NBE;
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002842 }
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002843 }
2844 wrmsr_on_cpus(cmask, MSR_IA32_MCG_CTL, msrs);
2845
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002846 free_cpumask_var(cmask);
2847
2848 return 0;
2849}
2850
Daniel J Bluemanc7e53012012-11-30 16:44:20 +08002851static bool enable_ecc_error_reporting(struct ecc_settings *s, u16 nid,
Borislav Petkov2299ef72010-10-15 17:44:04 +02002852 struct pci_dev *F3)
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002853{
Borislav Petkov2299ef72010-10-15 17:44:04 +02002854 bool ret = true;
Borislav Petkovc9f4f262010-12-22 19:48:20 +01002855 u32 value, mask = 0x3; /* UECC/CECC enable */
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002856
Borislav Petkov2299ef72010-10-15 17:44:04 +02002857 if (toggle_ecc_err_reporting(s, nid, ON)) {
2858 amd64_warn("Error enabling ECC reporting over MCGCTL!\n");
2859 return false;
2860 }
2861
Borislav Petkovc9f4f262010-12-22 19:48:20 +01002862 amd64_read_pci_cfg(F3, NBCTL, &value);
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002863
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02002864 s->old_nbctl = value & mask;
2865 s->nbctl_valid = true;
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002866
2867 value |= mask;
Borislav Petkovc9f4f262010-12-22 19:48:20 +01002868 amd64_write_pci_cfg(F3, NBCTL, value);
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002869
Borislav Petkova97fa682010-12-23 14:07:18 +01002870 amd64_read_pci_cfg(F3, NBCFG, &value);
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002871
Joe Perches956b9ba12012-04-29 17:08:39 -03002872 edac_dbg(0, "1: node %d, NBCFG=0x%08x[DramEccEn: %d]\n",
2873 nid, value, !!(value & NBCFG_ECC_ENABLE));
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002874
Borislav Petkova97fa682010-12-23 14:07:18 +01002875 if (!(value & NBCFG_ECC_ENABLE)) {
Borislav Petkov24f9a7f2010-10-07 18:29:15 +02002876 amd64_warn("DRAM ECC disabled on this node, enabling...\n");
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002877
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02002878 s->flags.nb_ecc_prev = 0;
Borislav Petkovd95cf4d2010-02-24 14:49:47 +01002879
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002880 /* Attempt to turn on DRAM ECC Enable */
Borislav Petkova97fa682010-12-23 14:07:18 +01002881 value |= NBCFG_ECC_ENABLE;
2882 amd64_write_pci_cfg(F3, NBCFG, value);
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002883
Borislav Petkova97fa682010-12-23 14:07:18 +01002884 amd64_read_pci_cfg(F3, NBCFG, &value);
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002885
Borislav Petkova97fa682010-12-23 14:07:18 +01002886 if (!(value & NBCFG_ECC_ENABLE)) {
Borislav Petkov24f9a7f2010-10-07 18:29:15 +02002887 amd64_warn("Hardware rejected DRAM ECC enable,"
2888 "check memory DIMM configuration.\n");
Borislav Petkov2299ef72010-10-15 17:44:04 +02002889 ret = false;
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002890 } else {
Borislav Petkov24f9a7f2010-10-07 18:29:15 +02002891 amd64_info("Hardware accepted DRAM ECC Enable\n");
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002892 }
Borislav Petkovd95cf4d2010-02-24 14:49:47 +01002893 } else {
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02002894 s->flags.nb_ecc_prev = 1;
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002895 }
Borislav Petkovd95cf4d2010-02-24 14:49:47 +01002896
Joe Perches956b9ba12012-04-29 17:08:39 -03002897 edac_dbg(0, "2: node %d, NBCFG=0x%08x[DramEccEn: %d]\n",
2898 nid, value, !!(value & NBCFG_ECC_ENABLE));
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002899
Borislav Petkov2299ef72010-10-15 17:44:04 +02002900 return ret;
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002901}
2902
Daniel J Bluemanc7e53012012-11-30 16:44:20 +08002903static void restore_ecc_error_reporting(struct ecc_settings *s, u16 nid,
Borislav Petkov360b7f32010-10-15 19:25:38 +02002904 struct pci_dev *F3)
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002905{
Borislav Petkovc9f4f262010-12-22 19:48:20 +01002906 u32 value, mask = 0x3; /* UECC/CECC enable */
2907
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02002908 if (!s->nbctl_valid)
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002909 return;
2910
Borislav Petkovc9f4f262010-12-22 19:48:20 +01002911 amd64_read_pci_cfg(F3, NBCTL, &value);
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002912 value &= ~mask;
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02002913 value |= s->old_nbctl;
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002914
Borislav Petkovc9f4f262010-12-22 19:48:20 +01002915 amd64_write_pci_cfg(F3, NBCTL, value);
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002916
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02002917 /* restore previous BIOS DRAM ECC "off" setting we force-enabled */
2918 if (!s->flags.nb_ecc_prev) {
Borislav Petkova97fa682010-12-23 14:07:18 +01002919 amd64_read_pci_cfg(F3, NBCFG, &value);
2920 value &= ~NBCFG_ECC_ENABLE;
2921 amd64_write_pci_cfg(F3, NBCFG, value);
Borislav Petkovd95cf4d2010-02-24 14:49:47 +01002922 }
2923
2924 /* restore the NB Enable MCGCTL bit */
Borislav Petkov2299ef72010-10-15 17:44:04 +02002925 if (toggle_ecc_err_reporting(s, nid, OFF))
Borislav Petkov24f9a7f2010-10-07 18:29:15 +02002926 amd64_warn("Error restoring NB MCGCTL settings!\n");
Borislav Petkovf6d6ae92009-11-03 15:29:26 +01002927}
2928
Doug Thompsonf9431992009-04-27 19:46:08 +02002929/*
Borislav Petkov2299ef72010-10-15 17:44:04 +02002930 * EDAC requires that the BIOS have ECC enabled before
2931 * taking over the processing of ECC errors. A command line
2932 * option allows to force-enable hardware ECC later in
2933 * enable_ecc_error_reporting().
Doug Thompsonf9431992009-04-27 19:46:08 +02002934 */
Borislav Petkovcab4d272010-02-11 17:15:57 +01002935static const char *ecc_msg =
2936 "ECC disabled in the BIOS or no ECC capability, module will not load.\n"
2937 " Either enable ECC checking or force module loading by setting "
2938 "'ecc_enable_override'.\n"
2939 " (Note that use of the override may cause unknown side effects.)\n";
Borislav Petkovbe3468e2009-08-05 15:47:22 +02002940
Daniel J Bluemanc7e53012012-11-30 16:44:20 +08002941static bool ecc_enabled(struct pci_dev *F3, u16 nid)
Doug Thompsonf9431992009-04-27 19:46:08 +02002942{
Borislav Petkov06724532009-09-16 13:05:46 +02002943 bool nb_mce_en = false;
Yazen Ghannam196b79f2016-11-17 17:57:34 -05002944 u8 ecc_en = 0, i;
2945 u32 value;
Doug Thompsonf9431992009-04-27 19:46:08 +02002946
Yazen Ghannam196b79f2016-11-17 17:57:34 -05002947 if (boot_cpu_data.x86 >= 0x17) {
2948 u8 umc_en_mask = 0, ecc_en_mask = 0;
Doug Thompsonf9431992009-04-27 19:46:08 +02002949
Yazen Ghannam196b79f2016-11-17 17:57:34 -05002950 for (i = 0; i < NUM_UMCS; i++) {
2951 u32 base = get_umc_base(i);
2952
2953 /* Only check enabled UMCs. */
2954 if (amd_smn_read(nid, base + UMCCH_SDP_CTRL, &value))
2955 continue;
2956
2957 if (!(value & UMC_SDP_INIT))
2958 continue;
2959
2960 umc_en_mask |= BIT(i);
2961
2962 if (amd_smn_read(nid, base + UMCCH_UMC_CAP_HI, &value))
2963 continue;
2964
2965 if (value & UMC_ECC_ENABLED)
2966 ecc_en_mask |= BIT(i);
2967 }
2968
2969 /* Check whether at least one UMC is enabled: */
2970 if (umc_en_mask)
2971 ecc_en = umc_en_mask == ecc_en_mask;
2972
2973 /* Assume UMC MCA banks are enabled. */
2974 nb_mce_en = true;
2975 } else {
2976 amd64_read_pci_cfg(F3, NBCFG, &value);
2977
2978 ecc_en = !!(value & NBCFG_ECC_ENABLE);
2979
2980 nb_mce_en = nb_mce_bank_enabled_on_node(nid);
2981 if (!nb_mce_en)
2982 amd64_notice("NB MCE bank disabled, set MSR 0x%08x[4] on node %d to enable.\n",
2983 MSR_IA32_MCG_CTL, nid);
2984 }
2985
Borislav Petkov2299ef72010-10-15 17:44:04 +02002986 amd64_info("DRAM ECC %s.\n", (ecc_en ? "enabled" : "disabled"));
Doug Thompsonf9431992009-04-27 19:46:08 +02002987
Borislav Petkov2299ef72010-10-15 17:44:04 +02002988 if (!ecc_en || !nb_mce_en) {
2989 amd64_notice("%s", ecc_msg);
2990 return false;
Borislav Petkov43f5e682009-12-21 18:55:18 +01002991 }
Borislav Petkov2299ef72010-10-15 17:44:04 +02002992 return true;
Doug Thompsonf9431992009-04-27 19:46:08 +02002993}
2994
Borislav Petkovdf71a052011-01-19 18:15:10 +01002995static void setup_mci_misc_attrs(struct mem_ctl_info *mci,
2996 struct amd64_family_type *fam)
Doug Thompson7d6034d2009-04-27 20:01:01 +02002997{
2998 struct amd64_pvt *pvt = mci->pvt_info;
2999
3000 mci->mtype_cap = MEM_FLAG_DDR2 | MEM_FLAG_RDDR2;
3001 mci->edac_ctl_cap = EDAC_FLAG_NONE;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003002
Borislav Petkov5980bb92011-01-07 16:26:49 +01003003 if (pvt->nbcap & NBCAP_SECDED)
Doug Thompson7d6034d2009-04-27 20:01:01 +02003004 mci->edac_ctl_cap |= EDAC_FLAG_SECDED;
3005
Borislav Petkov5980bb92011-01-07 16:26:49 +01003006 if (pvt->nbcap & NBCAP_CHIPKILL)
Doug Thompson7d6034d2009-04-27 20:01:01 +02003007 mci->edac_ctl_cap |= EDAC_FLAG_S4ECD4ED;
3008
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01003009 mci->edac_cap = determine_edac_cap(pvt);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003010 mci->mod_name = EDAC_MOD_STR;
3011 mci->mod_ver = EDAC_AMD64_VERSION;
Borislav Petkovdf71a052011-01-19 18:15:10 +01003012 mci->ctl_name = fam->ctl_name;
Yazen Ghanname7934b72016-11-17 17:57:30 -05003013 mci->dev_name = pci_name(pvt->F3);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003014 mci->ctl_page_to_phys = NULL;
3015
Doug Thompson7d6034d2009-04-27 20:01:01 +02003016 /* memory scrubber interface */
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01003017 mci->set_sdram_scrub_rate = set_scrub_rate;
3018 mci->get_sdram_scrub_rate = get_scrub_rate;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003019}
3020
Borislav Petkov0092b202010-10-01 19:20:05 +02003021/*
3022 * returns a pointer to the family descriptor on success, NULL otherwise.
3023 */
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01003024static struct amd64_family_type *per_family_init(struct amd64_pvt *pvt)
Borislav Petkov395ae782010-10-01 18:38:19 +02003025{
Borislav Petkov0092b202010-10-01 19:20:05 +02003026 struct amd64_family_type *fam_type = NULL;
3027
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05003028 pvt->ext_model = boot_cpu_data.x86_model >> 4;
Borislav Petkova4b4bed2013-08-10 13:54:48 +02003029 pvt->stepping = boot_cpu_data.x86_mask;
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05003030 pvt->model = boot_cpu_data.x86_model;
3031 pvt->fam = boot_cpu_data.x86;
3032
3033 switch (pvt->fam) {
Borislav Petkov395ae782010-10-01 18:38:19 +02003034 case 0xf:
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01003035 fam_type = &family_types[K8_CPUS];
3036 pvt->ops = &family_types[K8_CPUS].ops;
Borislav Petkov395ae782010-10-01 18:38:19 +02003037 break;
Borislav Petkovdf71a052011-01-19 18:15:10 +01003038
Borislav Petkov395ae782010-10-01 18:38:19 +02003039 case 0x10:
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01003040 fam_type = &family_types[F10_CPUS];
3041 pvt->ops = &family_types[F10_CPUS].ops;
Borislav Petkovdf71a052011-01-19 18:15:10 +01003042 break;
3043
3044 case 0x15:
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05003045 if (pvt->model == 0x30) {
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01003046 fam_type = &family_types[F15_M30H_CPUS];
3047 pvt->ops = &family_types[F15_M30H_CPUS].ops;
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05003048 break;
Aravind Gopalakrishnana597d2a2014-10-30 12:16:09 +01003049 } else if (pvt->model == 0x60) {
3050 fam_type = &family_types[F15_M60H_CPUS];
3051 pvt->ops = &family_types[F15_M60H_CPUS].ops;
3052 break;
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05003053 }
3054
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01003055 fam_type = &family_types[F15_CPUS];
3056 pvt->ops = &family_types[F15_CPUS].ops;
Borislav Petkov395ae782010-10-01 18:38:19 +02003057 break;
3058
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -05003059 case 0x16:
Aravind Gopalakrishnan85a88852014-02-20 10:28:46 -06003060 if (pvt->model == 0x30) {
3061 fam_type = &family_types[F16_M30H_CPUS];
3062 pvt->ops = &family_types[F16_M30H_CPUS].ops;
3063 break;
3064 }
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01003065 fam_type = &family_types[F16_CPUS];
3066 pvt->ops = &family_types[F16_CPUS].ops;
Aravind Gopalakrishnan94c1acf2013-04-17 14:57:13 -05003067 break;
3068
Yazen Ghannamf1cbbec2016-11-17 17:57:35 -05003069 case 0x17:
3070 fam_type = &family_types[F17_CPUS];
3071 pvt->ops = &family_types[F17_CPUS].ops;
3072 break;
3073
Borislav Petkov395ae782010-10-01 18:38:19 +02003074 default:
Borislav Petkov24f9a7f2010-10-07 18:29:15 +02003075 amd64_err("Unsupported family!\n");
Borislav Petkov0092b202010-10-01 19:20:05 +02003076 return NULL;
Borislav Petkov395ae782010-10-01 18:38:19 +02003077 }
Borislav Petkov0092b202010-10-01 19:20:05 +02003078
Borislav Petkovdf71a052011-01-19 18:15:10 +01003079 amd64_info("%s %sdetected (node %d).\n", fam_type->ctl_name,
Aravind Gopalakrishnan18b94f62013-08-09 11:54:49 -05003080 (pvt->fam == 0xf ?
Borislav Petkov24f9a7f2010-10-07 18:29:15 +02003081 (pvt->ext_model >= K8_REV_F ? "revF or later "
3082 : "revE or earlier ")
3083 : ""), pvt->mc_node_id);
Borislav Petkov0092b202010-10-01 19:20:05 +02003084 return fam_type;
Borislav Petkov395ae782010-10-01 18:38:19 +02003085}
3086
Takashi Iwaie339f1e2015-02-04 11:48:53 +01003087static const struct attribute_group *amd64_edac_attr_groups[] = {
3088#ifdef CONFIG_EDAC_DEBUG
3089 &amd64_edac_dbg_group,
3090#endif
3091#ifdef CONFIG_EDAC_AMD64_ERROR_INJECTION
3092 &amd64_edac_inj_group,
3093#endif
3094 NULL
3095};
3096
Borislav Petkov3f37a362016-05-06 19:44:27 +02003097static int init_one_instance(unsigned int nid)
Doug Thompson7d6034d2009-04-27 20:01:01 +02003098{
Borislav Petkov3f37a362016-05-06 19:44:27 +02003099 struct pci_dev *F3 = node_to_amd_nb(nid)->misc;
Borislav Petkov0092b202010-10-01 19:20:05 +02003100 struct amd64_family_type *fam_type = NULL;
Borislav Petkov360b7f32010-10-15 19:25:38 +02003101 struct mem_ctl_info *mci = NULL;
Mauro Carvalho Chehabab5a5032012-04-16 15:03:50 -03003102 struct edac_mc_layer layers[2];
Borislav Petkov3f37a362016-05-06 19:44:27 +02003103 struct amd64_pvt *pvt = NULL;
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05003104 u16 pci_id1, pci_id2;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003105 int err = 0, ret;
3106
3107 ret = -ENOMEM;
3108 pvt = kzalloc(sizeof(struct amd64_pvt), GFP_KERNEL);
3109 if (!pvt)
Borislav Petkov360b7f32010-10-15 19:25:38 +02003110 goto err_ret;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003111
Borislav Petkov360b7f32010-10-15 19:25:38 +02003112 pvt->mc_node_id = nid;
Borislav Petkov3f37a362016-05-06 19:44:27 +02003113 pvt->F3 = F3;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003114
Borislav Petkov395ae782010-10-01 18:38:19 +02003115 ret = -EINVAL;
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01003116 fam_type = per_family_init(pvt);
Borislav Petkov0092b202010-10-01 19:20:05 +02003117 if (!fam_type)
Borislav Petkov395ae782010-10-01 18:38:19 +02003118 goto err_free;
3119
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05003120 if (pvt->fam >= 0x17) {
3121 pvt->umc = kcalloc(NUM_UMCS, sizeof(struct amd64_umc), GFP_KERNEL);
3122 if (!pvt->umc) {
3123 ret = -ENOMEM;
3124 goto err_free;
3125 }
3126
3127 pci_id1 = fam_type->f0_id;
3128 pci_id2 = fam_type->f6_id;
3129 } else {
3130 pci_id1 = fam_type->f1_id;
3131 pci_id2 = fam_type->f2_id;
3132 }
3133
3134 err = reserve_mc_sibling_devs(pvt, pci_id1, pci_id2);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003135 if (err)
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05003136 goto err_post_init;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003137
Borislav Petkov360b7f32010-10-15 19:25:38 +02003138 read_mc_regs(pvt);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003139
Doug Thompson7d6034d2009-04-27 20:01:01 +02003140 /*
3141 * We need to determine how many memory channels there are. Then use
3142 * that information for calculating the size of the dynamic instance
Borislav Petkov360b7f32010-10-15 19:25:38 +02003143 * tables in the 'mci' structure.
Doug Thompson7d6034d2009-04-27 20:01:01 +02003144 */
Borislav Petkov360b7f32010-10-15 19:25:38 +02003145 ret = -EINVAL;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003146 pvt->channel_count = pvt->ops->early_channel_count(pvt);
3147 if (pvt->channel_count < 0)
Borislav Petkov360b7f32010-10-15 19:25:38 +02003148 goto err_siblings;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003149
3150 ret = -ENOMEM;
Mauro Carvalho Chehabab5a5032012-04-16 15:03:50 -03003151 layers[0].type = EDAC_MC_LAYER_CHIP_SELECT;
3152 layers[0].size = pvt->csels[0].b_cnt;
3153 layers[0].is_virt_csrow = true;
3154 layers[1].type = EDAC_MC_LAYER_CHANNEL;
Borislav Petkovf0a56c42013-07-23 20:01:23 +02003155
3156 /*
3157 * Always allocate two channels since we can have setups with DIMMs on
3158 * only one channel. Also, this simplifies handling later for the price
3159 * of a couple of KBs tops.
3160 */
3161 layers[1].size = 2;
Mauro Carvalho Chehabab5a5032012-04-16 15:03:50 -03003162 layers[1].is_virt_csrow = false;
Borislav Petkovf0a56c42013-07-23 20:01:23 +02003163
Mauro Carvalho Chehabca0907b2012-05-02 14:37:00 -03003164 mci = edac_mc_alloc(nid, ARRAY_SIZE(layers), layers, 0);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003165 if (!mci)
Borislav Petkov360b7f32010-10-15 19:25:38 +02003166 goto err_siblings;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003167
3168 mci->pvt_info = pvt;
Borislav Petkov3f37a362016-05-06 19:44:27 +02003169 mci->pdev = &pvt->F3->dev;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003170
Borislav Petkovdf71a052011-01-19 18:15:10 +01003171 setup_mci_misc_attrs(mci, fam_type);
Borislav Petkov360b7f32010-10-15 19:25:38 +02003172
3173 if (init_csrows(mci))
Doug Thompson7d6034d2009-04-27 20:01:01 +02003174 mci->edac_cap = EDAC_FLAG_NONE;
3175
Doug Thompson7d6034d2009-04-27 20:01:01 +02003176 ret = -ENODEV;
Takashi Iwaie339f1e2015-02-04 11:48:53 +01003177 if (edac_mc_add_mc_with_groups(mci, amd64_edac_attr_groups)) {
Joe Perches956b9ba12012-04-29 17:08:39 -03003178 edac_dbg(1, "failed edac_mc_add_mc()\n");
Doug Thompson7d6034d2009-04-27 20:01:01 +02003179 goto err_add_mc;
3180 }
3181
Borislav Petkov549d0422009-07-24 13:51:42 +02003182 /* register stuff with EDAC MCE */
3183 if (report_gart_errors)
3184 amd_report_gart_errors(true);
3185
Borislav Petkovdf781d02013-12-15 17:29:44 +01003186 amd_register_ecc_decoder(decode_bus_error);
Borislav Petkov549d0422009-07-24 13:51:42 +02003187
Doug Thompson7d6034d2009-04-27 20:01:01 +02003188 return 0;
3189
3190err_add_mc:
3191 edac_mc_free(mci);
3192
Borislav Petkov360b7f32010-10-15 19:25:38 +02003193err_siblings:
3194 free_mc_sibling_devs(pvt);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003195
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05003196err_post_init:
3197 if (pvt->fam >= 0x17)
3198 kfree(pvt->umc);
3199
Borislav Petkov360b7f32010-10-15 19:25:38 +02003200err_free:
3201 kfree(pvt);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003202
Borislav Petkov360b7f32010-10-15 19:25:38 +02003203err_ret:
Doug Thompson7d6034d2009-04-27 20:01:01 +02003204 return ret;
3205}
3206
Borislav Petkov3f37a362016-05-06 19:44:27 +02003207static int probe_one_instance(unsigned int nid)
Doug Thompson7d6034d2009-04-27 20:01:01 +02003208{
Borislav Petkov2299ef72010-10-15 17:44:04 +02003209 struct pci_dev *F3 = node_to_amd_nb(nid)->misc;
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02003210 struct ecc_settings *s;
Borislav Petkov3f37a362016-05-06 19:44:27 +02003211 int ret;
Borislav Petkovb8cfa022010-10-01 19:35:38 +02003212
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02003213 ret = -ENOMEM;
3214 s = kzalloc(sizeof(struct ecc_settings), GFP_KERNEL);
3215 if (!s)
Borislav Petkov2299ef72010-10-15 17:44:04 +02003216 goto err_out;
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02003217
3218 ecc_stngs[nid] = s;
3219
Borislav Petkov2299ef72010-10-15 17:44:04 +02003220 if (!ecc_enabled(F3, nid)) {
3221 ret = -ENODEV;
3222
3223 if (!ecc_enable_override)
3224 goto err_enable;
3225
Yazen Ghannam044e7a42016-11-22 15:40:16 -06003226 if (boot_cpu_data.x86 >= 0x17) {
3227 amd64_warn("Forcing ECC on is not recommended on newer systems. Please enable ECC in BIOS.");
3228 goto err_enable;
3229 } else
3230 amd64_warn("Forcing ECC on!\n");
Borislav Petkov2299ef72010-10-15 17:44:04 +02003231
3232 if (!enable_ecc_error_reporting(s, nid, F3))
3233 goto err_enable;
3234 }
3235
Borislav Petkov3f37a362016-05-06 19:44:27 +02003236 ret = init_one_instance(nid);
Borislav Petkov360b7f32010-10-15 19:25:38 +02003237 if (ret < 0) {
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02003238 amd64_err("Error probing instance: %d\n", nid);
Yazen Ghannam044e7a42016-11-22 15:40:16 -06003239
3240 if (boot_cpu_data.x86 < 0x17)
3241 restore_ecc_error_reporting(s, nid, F3);
Borislav Petkov360b7f32010-10-15 19:25:38 +02003242 }
Doug Thompson7d6034d2009-04-27 20:01:01 +02003243
3244 return ret;
Borislav Petkov2299ef72010-10-15 17:44:04 +02003245
3246err_enable:
3247 kfree(s);
3248 ecc_stngs[nid] = NULL;
3249
3250err_out:
3251 return ret;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003252}
3253
Borislav Petkov3f37a362016-05-06 19:44:27 +02003254static void remove_one_instance(unsigned int nid)
Doug Thompson7d6034d2009-04-27 20:01:01 +02003255{
Borislav Petkov360b7f32010-10-15 19:25:38 +02003256 struct pci_dev *F3 = node_to_amd_nb(nid)->misc;
3257 struct ecc_settings *s = ecc_stngs[nid];
Borislav Petkov3f37a362016-05-06 19:44:27 +02003258 struct mem_ctl_info *mci;
3259 struct amd64_pvt *pvt;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003260
Borislav Petkov3f37a362016-05-06 19:44:27 +02003261 mci = find_mci_by_dev(&F3->dev);
Borislav Petkova4b4bed2013-08-10 13:54:48 +02003262 WARN_ON(!mci);
3263
Doug Thompson7d6034d2009-04-27 20:01:01 +02003264 /* Remove from EDAC CORE tracking list */
Borislav Petkov3f37a362016-05-06 19:44:27 +02003265 mci = edac_mc_del_mc(&F3->dev);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003266 if (!mci)
3267 return;
3268
3269 pvt = mci->pvt_info;
3270
Borislav Petkov360b7f32010-10-15 19:25:38 +02003271 restore_ecc_error_reporting(s, nid, F3);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003272
Borislav Petkov360b7f32010-10-15 19:25:38 +02003273 free_mc_sibling_devs(pvt);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003274
Borislav Petkov549d0422009-07-24 13:51:42 +02003275 /* unregister from EDAC MCE */
3276 amd_report_gart_errors(false);
Borislav Petkovdf781d02013-12-15 17:29:44 +01003277 amd_unregister_ecc_decoder(decode_bus_error);
Borislav Petkov549d0422009-07-24 13:51:42 +02003278
Borislav Petkov360b7f32010-10-15 19:25:38 +02003279 kfree(ecc_stngs[nid]);
3280 ecc_stngs[nid] = NULL;
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02003281
Doug Thompson7d6034d2009-04-27 20:01:01 +02003282 /* Free the EDAC CORE resources */
Borislav Petkov8f68ed92009-12-21 15:15:59 +01003283 mci->pvt_info = NULL;
Borislav Petkov8f68ed92009-12-21 15:15:59 +01003284
3285 kfree(pvt);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003286 edac_mc_free(mci);
3287}
3288
Borislav Petkov360b7f32010-10-15 19:25:38 +02003289static void setup_pci_device(void)
Doug Thompson7d6034d2009-04-27 20:01:01 +02003290{
3291 struct mem_ctl_info *mci;
3292 struct amd64_pvt *pvt;
3293
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01003294 if (pci_ctl)
Doug Thompson7d6034d2009-04-27 20:01:01 +02003295 return;
3296
Borislav Petkov2ec591a2015-02-17 10:58:34 +01003297 mci = edac_mc_find(0);
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01003298 if (!mci)
3299 return;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003300
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01003301 pvt = mci->pvt_info;
Yazen Ghannam936fc3a2016-11-17 17:57:36 -05003302 if (pvt->umc)
3303 pci_ctl = edac_pci_create_generic_ctl(&pvt->F0->dev, EDAC_MOD_STR);
3304 else
3305 pci_ctl = edac_pci_create_generic_ctl(&pvt->F2->dev, EDAC_MOD_STR);
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01003306 if (!pci_ctl) {
3307 pr_warn("%s(): Unable to create PCI control\n", __func__);
3308 pr_warn("%s(): PCI error report via EDAC not set\n", __func__);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003309 }
3310}
3311
Yazen Ghannamd6efab72016-09-15 19:07:17 -05003312static const struct x86_cpu_id amd64_cpuids[] = {
3313 { X86_VENDOR_AMD, 0xF, X86_MODEL_ANY, X86_FEATURE_ANY, 0 },
3314 { X86_VENDOR_AMD, 0x10, X86_MODEL_ANY, X86_FEATURE_ANY, 0 },
3315 { X86_VENDOR_AMD, 0x15, X86_MODEL_ANY, X86_FEATURE_ANY, 0 },
3316 { X86_VENDOR_AMD, 0x16, X86_MODEL_ANY, X86_FEATURE_ANY, 0 },
3317 { }
3318};
3319MODULE_DEVICE_TABLE(x86cpu, amd64_cpuids);
3320
Doug Thompson7d6034d2009-04-27 20:01:01 +02003321static int __init amd64_edac_init(void)
3322{
Borislav Petkov360b7f32010-10-15 19:25:38 +02003323 int err = -ENODEV;
Borislav Petkov3f37a362016-05-06 19:44:27 +02003324 int i;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003325
Hans Rosenfeld9653a5c2010-10-29 17:14:31 +02003326 if (amd_cache_northbridges() < 0)
Borislav Petkov56b34b92009-12-21 18:13:01 +01003327 goto err_ret;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003328
Borislav Petkov6ba92fe2016-06-16 01:13:18 +02003329 opstate_init();
3330
Borislav Petkovcc4d8862010-10-13 16:11:59 +02003331 err = -ENOMEM;
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02003332 ecc_stngs = kzalloc(amd_nb_num() * sizeof(ecc_stngs[0]), GFP_KERNEL);
Borislav Petkov2ec591a2015-02-17 10:58:34 +01003333 if (!ecc_stngs)
Borislav Petkova9f0fbe2011-03-29 18:10:53 +02003334 goto err_free;
Borislav Petkovcc4d8862010-10-13 16:11:59 +02003335
Borislav Petkov50542252009-12-11 18:14:40 +01003336 msrs = msrs_alloc();
Borislav Petkov56b34b92009-12-21 18:13:01 +01003337 if (!msrs)
Borislav Petkov360b7f32010-10-15 19:25:38 +02003338 goto err_free;
Borislav Petkov50542252009-12-11 18:14:40 +01003339
Borislav Petkov3f37a362016-05-06 19:44:27 +02003340 for (i = 0; i < amd_nb_num(); i++)
3341 if (probe_one_instance(i)) {
3342 /* unwind properly */
3343 while (--i >= 0)
3344 remove_one_instance(i);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003345
Borislav Petkov3f37a362016-05-06 19:44:27 +02003346 goto err_pci;
3347 }
Doug Thompson7d6034d2009-04-27 20:01:01 +02003348
Borislav Petkov360b7f32010-10-15 19:25:38 +02003349 setup_pci_device();
Tomasz Palaf5b10c42014-11-02 11:22:12 +01003350
3351#ifdef CONFIG_X86_32
3352 amd64_err("%s on 32-bit is unsupported. USE AT YOUR OWN RISK!\n", EDAC_MOD_STR);
3353#endif
3354
Borislav Petkovde0336b2016-04-27 12:21:21 +02003355 printk(KERN_INFO "AMD64 EDAC driver v%s\n", EDAC_AMD64_VERSION);
3356
Borislav Petkov360b7f32010-10-15 19:25:38 +02003357 return 0;
Borislav Petkov56b34b92009-12-21 18:13:01 +01003358
Borislav Petkov56b34b92009-12-21 18:13:01 +01003359err_pci:
3360 msrs_free(msrs);
3361 msrs = NULL;
Borislav Petkovcc4d8862010-10-13 16:11:59 +02003362
Borislav Petkov360b7f32010-10-15 19:25:38 +02003363err_free:
Borislav Petkov360b7f32010-10-15 19:25:38 +02003364 kfree(ecc_stngs);
3365 ecc_stngs = NULL;
3366
Borislav Petkov56b34b92009-12-21 18:13:01 +01003367err_ret:
Doug Thompson7d6034d2009-04-27 20:01:01 +02003368 return err;
3369}
3370
3371static void __exit amd64_edac_exit(void)
3372{
Borislav Petkov3f37a362016-05-06 19:44:27 +02003373 int i;
3374
Borislav Petkovd1ea71c2013-12-15 17:54:27 +01003375 if (pci_ctl)
3376 edac_pci_release_generic_ctl(pci_ctl);
Doug Thompson7d6034d2009-04-27 20:01:01 +02003377
Borislav Petkov3f37a362016-05-06 19:44:27 +02003378 for (i = 0; i < amd_nb_num(); i++)
3379 remove_one_instance(i);
Borislav Petkov50542252009-12-11 18:14:40 +01003380
Borislav Petkovae7bb7c2010-10-14 16:01:30 +02003381 kfree(ecc_stngs);
3382 ecc_stngs = NULL;
3383
Borislav Petkov50542252009-12-11 18:14:40 +01003384 msrs_free(msrs);
3385 msrs = NULL;
Doug Thompson7d6034d2009-04-27 20:01:01 +02003386}
3387
3388module_init(amd64_edac_init);
3389module_exit(amd64_edac_exit);
3390
3391MODULE_LICENSE("GPL");
3392MODULE_AUTHOR("SoftwareBitMaker: Doug Thompson, "
3393 "Dave Peterson, Thayne Harbaugh");
3394MODULE_DESCRIPTION("MC support for AMD64 memory controllers - "
3395 EDAC_AMD64_VERSION);
3396
3397module_param(edac_op_state, int, 0444);
3398MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI");