blob: 40917775dca1c84fa2f84acbea9a988ec94060e3 [file] [log] [blame]
Arthur Jones8f421c592008-07-25 01:49:04 -07001/*
2 * Intel 5100 Memory Controllers kernel module
3 *
4 * This file may be distributed under the terms of the
5 * GNU General Public License.
6 *
7 * This module is based on the following document:
8 *
9 * Intel 5100X Chipset Memory Controller Hub (MCH) - Datasheet
10 * http://download.intel.com/design/chipsets/datashts/318378.pdf
11 *
Nils Carlsonbbead212009-12-15 16:47:42 -080012 * The intel 5100 has two independent channels. EDAC core currently
13 * can not reflect this configuration so instead the chip-select
Lucas De Marchi25985ed2011-03-30 22:57:33 -030014 * rows for each respective channel are laid out one after another,
Nils Carlsonbbead212009-12-15 16:47:42 -080015 * the first half belonging to channel 0, the second half belonging
16 * to channel 1.
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -030017 *
18 * This driver is for DDR2 DIMMs, and it uses chip select to select among the
19 * several ranks. However, instead of showing memories as ranks, it outputs
20 * them as DIMM's. An internal table creates the association between ranks
21 * and DIMM's.
Arthur Jones8f421c592008-07-25 01:49:04 -070022 */
23#include <linux/module.h>
24#include <linux/init.h>
25#include <linux/pci.h>
26#include <linux/pci_ids.h>
Arthur Jones8f421c592008-07-25 01:49:04 -070027#include <linux/edac.h>
28#include <linux/delay.h>
29#include <linux/mmzone.h>
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -030030#include <linux/debugfs.h>
Arthur Jones8f421c592008-07-25 01:49:04 -070031
32#include "edac_core.h"
Borislav Petkov52019e42015-09-22 12:36:15 +020033#include "edac_module.h"
Arthur Jones8f421c592008-07-25 01:49:04 -070034
Arthur Jonesb238e572008-07-25 01:49:08 -070035/* register addresses */
Arthur Jones8f421c592008-07-25 01:49:04 -070036
37/* device 16, func 1 */
Arthur Jones43920a52008-07-25 01:49:06 -070038#define I5100_MC 0x40 /* Memory Control Register */
Nils Carlson295439f2009-12-15 16:47:42 -080039#define I5100_MC_SCRBEN_MASK (1 << 7)
40#define I5100_MC_SCRBDONE_MASK (1 << 4)
Arthur Jones8f421c592008-07-25 01:49:04 -070041#define I5100_MS 0x44 /* Memory Status Register */
42#define I5100_SPDDATA 0x48 /* Serial Presence Detect Status Reg */
Arthur Jones8f421c592008-07-25 01:49:04 -070043#define I5100_SPDCMD 0x4c /* Serial Presence Detect Command Reg */
Arthur Jones8f421c592008-07-25 01:49:04 -070044#define I5100_TOLM 0x6c /* Top of Low Memory */
Arthur Jones8f421c592008-07-25 01:49:04 -070045#define I5100_MIR0 0x80 /* Memory Interleave Range 0 */
46#define I5100_MIR1 0x84 /* Memory Interleave Range 1 */
47#define I5100_AMIR_0 0x8c /* Adjusted Memory Interleave Range 0 */
48#define I5100_AMIR_1 0x90 /* Adjusted Memory Interleave Range 1 */
Arthur Jones8f421c592008-07-25 01:49:04 -070049#define I5100_FERR_NF_MEM 0xa0 /* MC First Non Fatal Errors */
Arthur Jones8f421c592008-07-25 01:49:04 -070050#define I5100_FERR_NF_MEM_M16ERR_MASK (1 << 16)
51#define I5100_FERR_NF_MEM_M15ERR_MASK (1 << 15)
52#define I5100_FERR_NF_MEM_M14ERR_MASK (1 << 14)
Arthur Jonesf7952ff2008-07-25 01:49:05 -070053#define I5100_FERR_NF_MEM_M12ERR_MASK (1 << 12)
54#define I5100_FERR_NF_MEM_M11ERR_MASK (1 << 11)
55#define I5100_FERR_NF_MEM_M10ERR_MASK (1 << 10)
56#define I5100_FERR_NF_MEM_M6ERR_MASK (1 << 6)
57#define I5100_FERR_NF_MEM_M5ERR_MASK (1 << 5)
58#define I5100_FERR_NF_MEM_M4ERR_MASK (1 << 4)
Niklas Söderlundb6378cb2012-02-17 07:36:54 -030059#define I5100_FERR_NF_MEM_M1ERR_MASK (1 << 1)
Arthur Jones8f421c592008-07-25 01:49:04 -070060#define I5100_FERR_NF_MEM_ANY_MASK \
61 (I5100_FERR_NF_MEM_M16ERR_MASK | \
62 I5100_FERR_NF_MEM_M15ERR_MASK | \
Arthur Jonesf7952ff2008-07-25 01:49:05 -070063 I5100_FERR_NF_MEM_M14ERR_MASK | \
64 I5100_FERR_NF_MEM_M12ERR_MASK | \
65 I5100_FERR_NF_MEM_M11ERR_MASK | \
66 I5100_FERR_NF_MEM_M10ERR_MASK | \
67 I5100_FERR_NF_MEM_M6ERR_MASK | \
68 I5100_FERR_NF_MEM_M5ERR_MASK | \
69 I5100_FERR_NF_MEM_M4ERR_MASK | \
70 I5100_FERR_NF_MEM_M1ERR_MASK)
Arthur Jones8f421c592008-07-25 01:49:04 -070071#define I5100_NERR_NF_MEM 0xa4 /* MC Next Non-Fatal Errors */
Arthur Jones178d5a72008-07-25 01:49:06 -070072#define I5100_EMASK_MEM 0xa8 /* MC Error Mask Register */
Niklas Söderlund53ceafd2012-08-08 12:30:57 -030073#define I5100_MEM0EINJMSK0 0x200 /* Injection Mask0 Register Channel 0 */
74#define I5100_MEM1EINJMSK0 0x208 /* Injection Mask0 Register Channel 1 */
75#define I5100_MEMXEINJMSK0_EINJEN (1 << 27)
76#define I5100_MEM0EINJMSK1 0x204 /* Injection Mask1 Register Channel 0 */
77#define I5100_MEM1EINJMSK1 0x206 /* Injection Mask1 Register Channel 1 */
78
79/* Device 19, Function 0 */
80#define I5100_DINJ0 0x9a
Arthur Jones8f421c592008-07-25 01:49:04 -070081
82/* device 21 and 22, func 0 */
83#define I5100_MTR_0 0x154 /* Memory Technology Registers 0-3 */
84#define I5100_DMIR 0x15c /* DIMM Interleave Range */
Arthur Jones8f421c592008-07-25 01:49:04 -070085#define I5100_VALIDLOG 0x18c /* Valid Log Markers */
Arthur Jones8f421c592008-07-25 01:49:04 -070086#define I5100_NRECMEMA 0x190 /* Non-Recoverable Memory Error Log Reg A */
Arthur Jones8f421c592008-07-25 01:49:04 -070087#define I5100_NRECMEMB 0x194 /* Non-Recoverable Memory Error Log Reg B */
Arthur Jones8f421c592008-07-25 01:49:04 -070088#define I5100_REDMEMA 0x198 /* Recoverable Memory Data Error Log Reg A */
Arthur Jones8f421c592008-07-25 01:49:04 -070089#define I5100_REDMEMB 0x19c /* Recoverable Memory Data Error Log Reg B */
Arthur Jones8f421c592008-07-25 01:49:04 -070090#define I5100_RECMEMA 0x1a0 /* Recoverable Memory Error Log Reg A */
Arthur Jones8f421c592008-07-25 01:49:04 -070091#define I5100_RECMEMB 0x1a4 /* Recoverable Memory Error Log Reg B */
Arthur Jonesb238e572008-07-25 01:49:08 -070092#define I5100_MTR_4 0x1b0 /* Memory Technology Registers 4,5 */
93
94/* bit field accessors */
95
Nils Carlson295439f2009-12-15 16:47:42 -080096static inline u32 i5100_mc_scrben(u32 mc)
97{
98 return mc >> 7 & 1;
99}
100
Arthur Jonesb238e572008-07-25 01:49:08 -0700101static inline u32 i5100_mc_errdeten(u32 mc)
102{
103 return mc >> 5 & 1;
104}
105
Nils Carlson295439f2009-12-15 16:47:42 -0800106static inline u32 i5100_mc_scrbdone(u32 mc)
107{
108 return mc >> 4 & 1;
109}
110
Arthur Jonesb238e572008-07-25 01:49:08 -0700111static inline u16 i5100_spddata_rdo(u16 a)
112{
113 return a >> 15 & 1;
114}
115
116static inline u16 i5100_spddata_sbe(u16 a)
117{
118 return a >> 13 & 1;
119}
120
121static inline u16 i5100_spddata_busy(u16 a)
122{
123 return a >> 12 & 1;
124}
125
126static inline u16 i5100_spddata_data(u16 a)
127{
128 return a & ((1 << 8) - 1);
129}
130
131static inline u32 i5100_spdcmd_create(u32 dti, u32 ckovrd, u32 sa, u32 ba,
132 u32 data, u32 cmd)
133{
134 return ((dti & ((1 << 4) - 1)) << 28) |
135 ((ckovrd & 1) << 27) |
136 ((sa & ((1 << 3) - 1)) << 24) |
137 ((ba & ((1 << 8) - 1)) << 16) |
138 ((data & ((1 << 8) - 1)) << 8) |
139 (cmd & 1);
140}
141
142static inline u16 i5100_tolm_tolm(u16 a)
143{
144 return a >> 12 & ((1 << 4) - 1);
145}
146
147static inline u16 i5100_mir_limit(u16 a)
148{
149 return a >> 4 & ((1 << 12) - 1);
150}
151
152static inline u16 i5100_mir_way1(u16 a)
153{
154 return a >> 1 & 1;
155}
156
157static inline u16 i5100_mir_way0(u16 a)
158{
159 return a & 1;
160}
161
162static inline u32 i5100_ferr_nf_mem_chan_indx(u32 a)
163{
164 return a >> 28 & 1;
165}
166
167static inline u32 i5100_ferr_nf_mem_any(u32 a)
168{
169 return a & I5100_FERR_NF_MEM_ANY_MASK;
170}
171
172static inline u32 i5100_nerr_nf_mem_any(u32 a)
173{
174 return i5100_ferr_nf_mem_any(a);
175}
176
177static inline u32 i5100_dmir_limit(u32 a)
178{
179 return a >> 16 & ((1 << 11) - 1);
180}
181
182static inline u32 i5100_dmir_rank(u32 a, u32 i)
183{
184 return a >> (4 * i) & ((1 << 2) - 1);
185}
186
187static inline u16 i5100_mtr_present(u16 a)
188{
189 return a >> 10 & 1;
190}
191
192static inline u16 i5100_mtr_ethrottle(u16 a)
193{
194 return a >> 9 & 1;
195}
196
197static inline u16 i5100_mtr_width(u16 a)
198{
199 return a >> 8 & 1;
200}
201
202static inline u16 i5100_mtr_numbank(u16 a)
203{
204 return a >> 6 & 1;
205}
206
207static inline u16 i5100_mtr_numrow(u16 a)
208{
209 return a >> 2 & ((1 << 2) - 1);
210}
211
212static inline u16 i5100_mtr_numcol(u16 a)
213{
214 return a & ((1 << 2) - 1);
215}
216
217
218static inline u32 i5100_validlog_redmemvalid(u32 a)
219{
220 return a >> 2 & 1;
221}
222
223static inline u32 i5100_validlog_recmemvalid(u32 a)
224{
225 return a >> 1 & 1;
226}
227
228static inline u32 i5100_validlog_nrecmemvalid(u32 a)
229{
230 return a & 1;
231}
232
233static inline u32 i5100_nrecmema_merr(u32 a)
234{
235 return a >> 15 & ((1 << 5) - 1);
236}
237
238static inline u32 i5100_nrecmema_bank(u32 a)
239{
240 return a >> 12 & ((1 << 3) - 1);
241}
242
243static inline u32 i5100_nrecmema_rank(u32 a)
244{
245 return a >> 8 & ((1 << 3) - 1);
246}
247
248static inline u32 i5100_nrecmema_dm_buf_id(u32 a)
249{
250 return a & ((1 << 8) - 1);
251}
252
253static inline u32 i5100_nrecmemb_cas(u32 a)
254{
255 return a >> 16 & ((1 << 13) - 1);
256}
257
258static inline u32 i5100_nrecmemb_ras(u32 a)
259{
260 return a & ((1 << 16) - 1);
261}
262
263static inline u32 i5100_redmemb_ecc_locator(u32 a)
264{
265 return a & ((1 << 18) - 1);
266}
267
268static inline u32 i5100_recmema_merr(u32 a)
269{
270 return i5100_nrecmema_merr(a);
271}
272
273static inline u32 i5100_recmema_bank(u32 a)
274{
275 return i5100_nrecmema_bank(a);
276}
277
278static inline u32 i5100_recmema_rank(u32 a)
279{
280 return i5100_nrecmema_rank(a);
281}
282
Arthur Jonesb238e572008-07-25 01:49:08 -0700283static inline u32 i5100_recmemb_cas(u32 a)
284{
285 return i5100_nrecmemb_cas(a);
286}
287
288static inline u32 i5100_recmemb_ras(u32 a)
289{
290 return i5100_nrecmemb_ras(a);
291}
Arthur Jones8f421c592008-07-25 01:49:04 -0700292
293/* some generic limits */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800294#define I5100_MAX_RANKS_PER_CHAN 6
295#define I5100_CHANNELS 2
Arthur Jones8f421c592008-07-25 01:49:04 -0700296#define I5100_MAX_RANKS_PER_DIMM 4
297#define I5100_DIMM_ADDR_LINES (6 - 3) /* 64 bits / 8 bits per byte */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800298#define I5100_MAX_DIMM_SLOTS_PER_CHAN 4
Arthur Jones8f421c592008-07-25 01:49:04 -0700299#define I5100_MAX_RANK_INTERLEAVE 4
300#define I5100_MAX_DMIRS 5
Nils Carlson295439f2009-12-15 16:47:42 -0800301#define I5100_SCRUB_REFRESH_RATE (5 * 60 * HZ)
Arthur Jones8f421c592008-07-25 01:49:04 -0700302
303struct i5100_priv {
304 /* ranks on each dimm -- 0 maps to not present -- obtained via SPD */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800305 int dimm_numrank[I5100_CHANNELS][I5100_MAX_DIMM_SLOTS_PER_CHAN];
Arthur Jones8f421c592008-07-25 01:49:04 -0700306
307 /*
308 * mainboard chip select map -- maps i5100 chip selects to
309 * DIMM slot chip selects. In the case of only 4 ranks per
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800310 * channel, the mapping is fairly obvious but not unique.
311 * we map -1 -> NC and assume both channels use the same
Arthur Jones8f421c592008-07-25 01:49:04 -0700312 * map...
313 *
314 */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800315 int dimm_csmap[I5100_MAX_DIMM_SLOTS_PER_CHAN][I5100_MAX_RANKS_PER_DIMM];
Arthur Jones8f421c592008-07-25 01:49:04 -0700316
317 /* memory interleave range */
318 struct {
319 u64 limit;
320 unsigned way[2];
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800321 } mir[I5100_CHANNELS];
Arthur Jones8f421c592008-07-25 01:49:04 -0700322
323 /* adjusted memory interleave range register */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800324 unsigned amir[I5100_CHANNELS];
Arthur Jones8f421c592008-07-25 01:49:04 -0700325
326 /* dimm interleave range */
327 struct {
328 unsigned rank[I5100_MAX_RANK_INTERLEAVE];
329 u64 limit;
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800330 } dmir[I5100_CHANNELS][I5100_MAX_DMIRS];
Arthur Jones8f421c592008-07-25 01:49:04 -0700331
332 /* memory technology registers... */
333 struct {
334 unsigned present; /* 0 or 1 */
335 unsigned ethrottle; /* 0 or 1 */
336 unsigned width; /* 4 or 8 bits */
337 unsigned numbank; /* 2 or 3 lines */
338 unsigned numrow; /* 13 .. 16 lines */
339 unsigned numcol; /* 11 .. 12 lines */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800340 } mtr[I5100_CHANNELS][I5100_MAX_RANKS_PER_CHAN];
Arthur Jones8f421c592008-07-25 01:49:04 -0700341
342 u64 tolm; /* top of low memory in bytes */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800343 unsigned ranksperchan; /* number of ranks per channel */
Arthur Jones8f421c592008-07-25 01:49:04 -0700344
345 struct pci_dev *mc; /* device 16 func 1 */
Niklas Söderlund52608ba2012-08-08 12:30:56 -0300346 struct pci_dev *einj; /* device 19 func 0 */
Arthur Jones8f421c592008-07-25 01:49:04 -0700347 struct pci_dev *ch0mm; /* device 21 func 0 */
348 struct pci_dev *ch1mm; /* device 22 func 0 */
Nils Carlson295439f2009-12-15 16:47:42 -0800349
350 struct delayed_work i5100_scrubbing;
351 int scrub_enable;
Niklas Söderlund53ceafd2012-08-08 12:30:57 -0300352
353 /* Error injection */
354 u8 inject_channel;
355 u8 inject_hlinesel;
356 u8 inject_deviceptr1;
357 u8 inject_deviceptr2;
358 u16 inject_eccmask1;
359 u16 inject_eccmask2;
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -0300360
361 struct dentry *debugfs;
Arthur Jones8f421c592008-07-25 01:49:04 -0700362};
363
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -0300364static struct dentry *i5100_debugfs;
365
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800366/* map a rank/chan to a slot number on the mainboard */
Arthur Jones8f421c592008-07-25 01:49:04 -0700367static int i5100_rank_to_slot(const struct mem_ctl_info *mci,
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800368 int chan, int rank)
Arthur Jones8f421c592008-07-25 01:49:04 -0700369{
370 const struct i5100_priv *priv = mci->pvt_info;
371 int i;
372
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800373 for (i = 0; i < I5100_MAX_DIMM_SLOTS_PER_CHAN; i++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700374 int j;
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800375 const int numrank = priv->dimm_numrank[chan][i];
Arthur Jones8f421c592008-07-25 01:49:04 -0700376
377 for (j = 0; j < numrank; j++)
378 if (priv->dimm_csmap[i][j] == rank)
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800379 return i * 2 + chan;
Arthur Jones8f421c592008-07-25 01:49:04 -0700380 }
381
382 return -1;
383}
384
Arthur Jones8f421c592008-07-25 01:49:04 -0700385static const char *i5100_err_msg(unsigned err)
386{
Arthur Jonesb238e572008-07-25 01:49:08 -0700387 static const char *merrs[] = {
Arthur Jones8f421c592008-07-25 01:49:04 -0700388 "unknown", /* 0 */
389 "uncorrectable data ECC on replay", /* 1 */
390 "unknown", /* 2 */
391 "unknown", /* 3 */
392 "aliased uncorrectable demand data ECC", /* 4 */
393 "aliased uncorrectable spare-copy data ECC", /* 5 */
394 "aliased uncorrectable patrol data ECC", /* 6 */
395 "unknown", /* 7 */
396 "unknown", /* 8 */
397 "unknown", /* 9 */
398 "non-aliased uncorrectable demand data ECC", /* 10 */
399 "non-aliased uncorrectable spare-copy data ECC", /* 11 */
400 "non-aliased uncorrectable patrol data ECC", /* 12 */
401 "unknown", /* 13 */
402 "correctable demand data ECC", /* 14 */
403 "correctable spare-copy data ECC", /* 15 */
404 "correctable patrol data ECC", /* 16 */
405 "unknown", /* 17 */
406 "SPD protocol error", /* 18 */
407 "unknown", /* 19 */
408 "spare copy initiated", /* 20 */
409 "spare copy completed", /* 21 */
410 };
411 unsigned i;
412
413 for (i = 0; i < ARRAY_SIZE(merrs); i++)
414 if (1 << i & err)
415 return merrs[i];
416
417 return "none";
418}
419
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800420/* convert csrow index into a rank (per channel -- 0..5) */
Arthur Jones8f421c592008-07-25 01:49:04 -0700421static int i5100_csrow_to_rank(const struct mem_ctl_info *mci, int csrow)
422{
423 const struct i5100_priv *priv = mci->pvt_info;
424
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800425 return csrow % priv->ranksperchan;
Arthur Jones8f421c592008-07-25 01:49:04 -0700426}
427
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800428/* convert csrow index into a channel (0..1) */
429static int i5100_csrow_to_chan(const struct mem_ctl_info *mci, int csrow)
Arthur Jones8f421c592008-07-25 01:49:04 -0700430{
431 const struct i5100_priv *priv = mci->pvt_info;
432
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800433 return csrow / priv->ranksperchan;
Arthur Jones8f421c592008-07-25 01:49:04 -0700434}
435
Arthur Jones8f421c592008-07-25 01:49:04 -0700436static void i5100_handle_ce(struct mem_ctl_info *mci,
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800437 int chan,
Arthur Jones8f421c592008-07-25 01:49:04 -0700438 unsigned bank,
439 unsigned rank,
440 unsigned long syndrome,
441 unsigned cas,
442 unsigned ras,
443 const char *msg)
444{
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300445 char detail[80];
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300446
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300447 /* Form out message */
448 snprintf(detail, sizeof(detail),
449 "bank %u, cas %u, ras %u\n",
450 bank, cas, ras);
Arthur Jones8f421c592008-07-25 01:49:04 -0700451
Mauro Carvalho Chehab9eb07a72012-06-04 13:27:43 -0300452 edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, 1,
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300453 0, 0, syndrome,
454 chan, rank, -1,
Mauro Carvalho Chehab03f7eae2012-06-04 11:29:25 -0300455 msg, detail);
Arthur Jones8f421c592008-07-25 01:49:04 -0700456}
457
458static void i5100_handle_ue(struct mem_ctl_info *mci,
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800459 int chan,
Arthur Jones8f421c592008-07-25 01:49:04 -0700460 unsigned bank,
461 unsigned rank,
462 unsigned long syndrome,
463 unsigned cas,
464 unsigned ras,
465 const char *msg)
466{
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300467 char detail[80];
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300468
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300469 /* Form out message */
470 snprintf(detail, sizeof(detail),
471 "bank %u, cas %u, ras %u\n",
472 bank, cas, ras);
Arthur Jones8f421c592008-07-25 01:49:04 -0700473
Mauro Carvalho Chehab9eb07a72012-06-04 13:27:43 -0300474 edac_mc_handle_error(HW_EVENT_ERR_UNCORRECTED, mci, 1,
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300475 0, 0, syndrome,
476 chan, rank, -1,
Mauro Carvalho Chehab03f7eae2012-06-04 11:29:25 -0300477 msg, detail);
Arthur Jones8f421c592008-07-25 01:49:04 -0700478}
479
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800480static void i5100_read_log(struct mem_ctl_info *mci, int chan,
Arthur Jones8f421c592008-07-25 01:49:04 -0700481 u32 ferr, u32 nerr)
482{
483 struct i5100_priv *priv = mci->pvt_info;
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800484 struct pci_dev *pdev = (chan) ? priv->ch1mm : priv->ch0mm;
Arthur Jones8f421c592008-07-25 01:49:04 -0700485 u32 dw;
486 u32 dw2;
487 unsigned syndrome = 0;
488 unsigned ecc_loc = 0;
489 unsigned merr;
490 unsigned bank;
491 unsigned rank;
492 unsigned cas;
493 unsigned ras;
494
495 pci_read_config_dword(pdev, I5100_VALIDLOG, &dw);
496
Arthur Jonesb238e572008-07-25 01:49:08 -0700497 if (i5100_validlog_redmemvalid(dw)) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700498 pci_read_config_dword(pdev, I5100_REDMEMA, &dw2);
Arthur Jonesb238e572008-07-25 01:49:08 -0700499 syndrome = dw2;
Arthur Jones8f421c592008-07-25 01:49:04 -0700500 pci_read_config_dword(pdev, I5100_REDMEMB, &dw2);
Arthur Jonesb238e572008-07-25 01:49:08 -0700501 ecc_loc = i5100_redmemb_ecc_locator(dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700502 }
503
Arthur Jonesb238e572008-07-25 01:49:08 -0700504 if (i5100_validlog_recmemvalid(dw)) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700505 const char *msg;
506
507 pci_read_config_dword(pdev, I5100_RECMEMA, &dw2);
Arthur Jonesb238e572008-07-25 01:49:08 -0700508 merr = i5100_recmema_merr(dw2);
509 bank = i5100_recmema_bank(dw2);
510 rank = i5100_recmema_rank(dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700511
512 pci_read_config_dword(pdev, I5100_RECMEMB, &dw2);
Arthur Jonesb238e572008-07-25 01:49:08 -0700513 cas = i5100_recmemb_cas(dw2);
514 ras = i5100_recmemb_ras(dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700515
516 /* FIXME: not really sure if this is what merr is...
517 */
518 if (!merr)
519 msg = i5100_err_msg(ferr);
520 else
521 msg = i5100_err_msg(nerr);
522
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800523 i5100_handle_ce(mci, chan, bank, rank, syndrome, cas, ras, msg);
Arthur Jones8f421c592008-07-25 01:49:04 -0700524 }
525
Arthur Jonesb238e572008-07-25 01:49:08 -0700526 if (i5100_validlog_nrecmemvalid(dw)) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700527 const char *msg;
528
529 pci_read_config_dword(pdev, I5100_NRECMEMA, &dw2);
Arthur Jonesb238e572008-07-25 01:49:08 -0700530 merr = i5100_nrecmema_merr(dw2);
531 bank = i5100_nrecmema_bank(dw2);
532 rank = i5100_nrecmema_rank(dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700533
534 pci_read_config_dword(pdev, I5100_NRECMEMB, &dw2);
Arthur Jonesb238e572008-07-25 01:49:08 -0700535 cas = i5100_nrecmemb_cas(dw2);
536 ras = i5100_nrecmemb_ras(dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700537
538 /* FIXME: not really sure if this is what merr is...
539 */
540 if (!merr)
541 msg = i5100_err_msg(ferr);
542 else
543 msg = i5100_err_msg(nerr);
544
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800545 i5100_handle_ue(mci, chan, bank, rank, syndrome, cas, ras, msg);
Arthur Jones8f421c592008-07-25 01:49:04 -0700546 }
547
548 pci_write_config_dword(pdev, I5100_VALIDLOG, dw);
549}
550
551static void i5100_check_error(struct mem_ctl_info *mci)
552{
553 struct i5100_priv *priv = mci->pvt_info;
Niklas Söderlunddf95e422011-12-09 13:12:15 -0300554 u32 dw, dw2;
Arthur Jones8f421c592008-07-25 01:49:04 -0700555
556 pci_read_config_dword(priv->mc, I5100_FERR_NF_MEM, &dw);
Arthur Jonesb238e572008-07-25 01:49:08 -0700557 if (i5100_ferr_nf_mem_any(dw)) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700558
559 pci_read_config_dword(priv->mc, I5100_NERR_NF_MEM, &dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700560
Arthur Jonesb238e572008-07-25 01:49:08 -0700561 i5100_read_log(mci, i5100_ferr_nf_mem_chan_indx(dw),
562 i5100_ferr_nf_mem_any(dw),
563 i5100_nerr_nf_mem_any(dw2));
Niklas Söderlunddf95e422011-12-09 13:12:15 -0300564
565 pci_write_config_dword(priv->mc, I5100_NERR_NF_MEM, dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700566 }
Niklas Söderlunddf95e422011-12-09 13:12:15 -0300567 pci_write_config_dword(priv->mc, I5100_FERR_NF_MEM, dw);
Arthur Jones8f421c592008-07-25 01:49:04 -0700568}
569
Nils Carlson295439f2009-12-15 16:47:42 -0800570/* The i5100 chipset will scrub the entire memory once, then
571 * set a done bit. Continuous scrubbing is achieved by enqueing
572 * delayed work to a workqueue, checking every few minutes if
573 * the scrubbing has completed and if so reinitiating it.
574 */
575
576static void i5100_refresh_scrubbing(struct work_struct *work)
577{
578 struct delayed_work *i5100_scrubbing = container_of(work,
579 struct delayed_work,
580 work);
581 struct i5100_priv *priv = container_of(i5100_scrubbing,
582 struct i5100_priv,
583 i5100_scrubbing);
584 u32 dw;
585
586 pci_read_config_dword(priv->mc, I5100_MC, &dw);
587
588 if (priv->scrub_enable) {
589
590 pci_read_config_dword(priv->mc, I5100_MC, &dw);
591
592 if (i5100_mc_scrbdone(dw)) {
593 dw |= I5100_MC_SCRBEN_MASK;
594 pci_write_config_dword(priv->mc, I5100_MC, dw);
595 pci_read_config_dword(priv->mc, I5100_MC, &dw);
596 }
597
598 schedule_delayed_work(&(priv->i5100_scrubbing),
599 I5100_SCRUB_REFRESH_RATE);
600 }
601}
602/*
603 * The bandwidth is based on experimentation, feel free to refine it.
604 */
Borislav Petkoveba042a2010-05-25 18:21:07 +0200605static int i5100_set_scrub_rate(struct mem_ctl_info *mci, u32 bandwidth)
Nils Carlson295439f2009-12-15 16:47:42 -0800606{
607 struct i5100_priv *priv = mci->pvt_info;
608 u32 dw;
609
610 pci_read_config_dword(priv->mc, I5100_MC, &dw);
Borislav Petkoveba042a2010-05-25 18:21:07 +0200611 if (bandwidth) {
Nils Carlson295439f2009-12-15 16:47:42 -0800612 priv->scrub_enable = 1;
613 dw |= I5100_MC_SCRBEN_MASK;
614 schedule_delayed_work(&(priv->i5100_scrubbing),
615 I5100_SCRUB_REFRESH_RATE);
616 } else {
617 priv->scrub_enable = 0;
618 dw &= ~I5100_MC_SCRBEN_MASK;
619 cancel_delayed_work(&(priv->i5100_scrubbing));
620 }
621 pci_write_config_dword(priv->mc, I5100_MC, dw);
622
623 pci_read_config_dword(priv->mc, I5100_MC, &dw);
624
Borislav Petkoveba042a2010-05-25 18:21:07 +0200625 bandwidth = 5900000 * i5100_mc_scrben(dw);
Nils Carlson295439f2009-12-15 16:47:42 -0800626
Borislav Petkov39094442010-11-24 19:52:09 +0100627 return bandwidth;
Nils Carlson295439f2009-12-15 16:47:42 -0800628}
629
Borislav Petkov39094442010-11-24 19:52:09 +0100630static int i5100_get_scrub_rate(struct mem_ctl_info *mci)
Nils Carlson295439f2009-12-15 16:47:42 -0800631{
632 struct i5100_priv *priv = mci->pvt_info;
633 u32 dw;
634
635 pci_read_config_dword(priv->mc, I5100_MC, &dw);
636
Borislav Petkov39094442010-11-24 19:52:09 +0100637 return 5900000 * i5100_mc_scrben(dw);
Nils Carlson295439f2009-12-15 16:47:42 -0800638}
639
Arthur Jones8f421c592008-07-25 01:49:04 -0700640static struct pci_dev *pci_get_device_func(unsigned vendor,
641 unsigned device,
642 unsigned func)
643{
644 struct pci_dev *ret = NULL;
645
646 while (1) {
647 ret = pci_get_device(vendor, device, ret);
648
649 if (!ret)
650 break;
651
652 if (PCI_FUNC(ret->devfn) == func)
653 break;
654 }
655
656 return ret;
657}
658
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800659static unsigned long i5100_npages(struct mem_ctl_info *mci, int csrow)
Arthur Jones8f421c592008-07-25 01:49:04 -0700660{
661 struct i5100_priv *priv = mci->pvt_info;
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800662 const unsigned chan_rank = i5100_csrow_to_rank(mci, csrow);
663 const unsigned chan = i5100_csrow_to_chan(mci, csrow);
Arthur Jones8f421c592008-07-25 01:49:04 -0700664 unsigned addr_lines;
665
666 /* dimm present? */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800667 if (!priv->mtr[chan][chan_rank].present)
Arthur Jones8f421c592008-07-25 01:49:04 -0700668 return 0ULL;
669
670 addr_lines =
671 I5100_DIMM_ADDR_LINES +
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800672 priv->mtr[chan][chan_rank].numcol +
673 priv->mtr[chan][chan_rank].numrow +
674 priv->mtr[chan][chan_rank].numbank;
Arthur Jones8f421c592008-07-25 01:49:04 -0700675
676 return (unsigned long)
677 ((unsigned long long) (1ULL << addr_lines) / PAGE_SIZE);
678}
679
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800680static void i5100_init_mtr(struct mem_ctl_info *mci)
Arthur Jones8f421c592008-07-25 01:49:04 -0700681{
682 struct i5100_priv *priv = mci->pvt_info;
683 struct pci_dev *mms[2] = { priv->ch0mm, priv->ch1mm };
684 int i;
685
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800686 for (i = 0; i < I5100_CHANNELS; i++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700687 int j;
688 struct pci_dev *pdev = mms[i];
689
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800690 for (j = 0; j < I5100_MAX_RANKS_PER_CHAN; j++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700691 const unsigned addr =
692 (j < 4) ? I5100_MTR_0 + j * 2 :
693 I5100_MTR_4 + (j - 4) * 2;
694 u16 w;
695
696 pci_read_config_word(pdev, addr, &w);
697
Arthur Jonesb238e572008-07-25 01:49:08 -0700698 priv->mtr[i][j].present = i5100_mtr_present(w);
699 priv->mtr[i][j].ethrottle = i5100_mtr_ethrottle(w);
700 priv->mtr[i][j].width = 4 + 4 * i5100_mtr_width(w);
701 priv->mtr[i][j].numbank = 2 + i5100_mtr_numbank(w);
702 priv->mtr[i][j].numrow = 13 + i5100_mtr_numrow(w);
703 priv->mtr[i][j].numcol = 10 + i5100_mtr_numcol(w);
Arthur Jones8f421c592008-07-25 01:49:04 -0700704 }
705 }
706}
707
708/*
709 * FIXME: make this into a real i2c adapter (so that dimm-decode
710 * will work)?
711 */
712static int i5100_read_spd_byte(const struct mem_ctl_info *mci,
713 u8 ch, u8 slot, u8 addr, u8 *byte)
714{
715 struct i5100_priv *priv = mci->pvt_info;
716 u16 w;
Arthur Jones8f421c592008-07-25 01:49:04 -0700717 unsigned long et;
718
719 pci_read_config_word(priv->mc, I5100_SPDDATA, &w);
Arthur Jonesb238e572008-07-25 01:49:08 -0700720 if (i5100_spddata_busy(w))
Arthur Jones8f421c592008-07-25 01:49:04 -0700721 return -1;
722
Arthur Jonesb238e572008-07-25 01:49:08 -0700723 pci_write_config_dword(priv->mc, I5100_SPDCMD,
724 i5100_spdcmd_create(0xa, 1, ch * 4 + slot, addr,
725 0, 0));
Arthur Jones8f421c592008-07-25 01:49:04 -0700726
727 /* wait up to 100ms */
728 et = jiffies + HZ / 10;
729 udelay(100);
730 while (1) {
731 pci_read_config_word(priv->mc, I5100_SPDDATA, &w);
Arthur Jonesb238e572008-07-25 01:49:08 -0700732 if (!i5100_spddata_busy(w))
Arthur Jones8f421c592008-07-25 01:49:04 -0700733 break;
734 udelay(100);
735 }
736
Arthur Jonesb238e572008-07-25 01:49:08 -0700737 if (!i5100_spddata_rdo(w) || i5100_spddata_sbe(w))
Arthur Jones8f421c592008-07-25 01:49:04 -0700738 return -1;
739
Arthur Jonesb238e572008-07-25 01:49:08 -0700740 *byte = i5100_spddata_data(w);
Arthur Jones8f421c592008-07-25 01:49:04 -0700741
742 return 0;
743}
744
745/*
746 * fill dimm chip select map
747 *
748 * FIXME:
Arthur Jones8f421c592008-07-25 01:49:04 -0700749 * o not the only way to may chip selects to dimm slots
750 * o investigate if there is some way to obtain this map from the bios
751 */
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800752static void i5100_init_dimm_csmap(struct mem_ctl_info *mci)
Arthur Jones8f421c592008-07-25 01:49:04 -0700753{
754 struct i5100_priv *priv = mci->pvt_info;
755 int i;
756
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800757 for (i = 0; i < I5100_MAX_DIMM_SLOTS_PER_CHAN; i++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700758 int j;
759
760 for (j = 0; j < I5100_MAX_RANKS_PER_DIMM; j++)
761 priv->dimm_csmap[i][j] = -1; /* default NC */
762 }
763
764 /* only 2 chip selects per slot... */
Nils Carlsonbbead212009-12-15 16:47:42 -0800765 if (priv->ranksperchan == 4) {
766 priv->dimm_csmap[0][0] = 0;
767 priv->dimm_csmap[0][1] = 3;
768 priv->dimm_csmap[1][0] = 1;
769 priv->dimm_csmap[1][1] = 2;
770 priv->dimm_csmap[2][0] = 2;
771 priv->dimm_csmap[3][0] = 3;
772 } else {
773 priv->dimm_csmap[0][0] = 0;
774 priv->dimm_csmap[0][1] = 1;
775 priv->dimm_csmap[1][0] = 2;
776 priv->dimm_csmap[1][1] = 3;
777 priv->dimm_csmap[2][0] = 4;
778 priv->dimm_csmap[2][1] = 5;
779 }
Arthur Jones8f421c592008-07-25 01:49:04 -0700780}
781
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800782static void i5100_init_dimm_layout(struct pci_dev *pdev,
783 struct mem_ctl_info *mci)
Arthur Jones8f421c592008-07-25 01:49:04 -0700784{
785 struct i5100_priv *priv = mci->pvt_info;
786 int i;
787
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800788 for (i = 0; i < I5100_CHANNELS; i++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700789 int j;
790
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800791 for (j = 0; j < I5100_MAX_DIMM_SLOTS_PER_CHAN; j++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700792 u8 rank;
793
794 if (i5100_read_spd_byte(mci, i, j, 5, &rank) < 0)
795 priv->dimm_numrank[i][j] = 0;
796 else
797 priv->dimm_numrank[i][j] = (rank & 3) + 1;
798 }
799 }
800
801 i5100_init_dimm_csmap(mci);
802}
803
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800804static void i5100_init_interleaving(struct pci_dev *pdev,
805 struct mem_ctl_info *mci)
Arthur Jones8f421c592008-07-25 01:49:04 -0700806{
807 u16 w;
808 u32 dw;
809 struct i5100_priv *priv = mci->pvt_info;
810 struct pci_dev *mms[2] = { priv->ch0mm, priv->ch1mm };
811 int i;
812
813 pci_read_config_word(pdev, I5100_TOLM, &w);
Arthur Jonesb238e572008-07-25 01:49:08 -0700814 priv->tolm = (u64) i5100_tolm_tolm(w) * 256 * 1024 * 1024;
Arthur Jones8f421c592008-07-25 01:49:04 -0700815
816 pci_read_config_word(pdev, I5100_MIR0, &w);
Arthur Jonesb238e572008-07-25 01:49:08 -0700817 priv->mir[0].limit = (u64) i5100_mir_limit(w) << 28;
818 priv->mir[0].way[1] = i5100_mir_way1(w);
819 priv->mir[0].way[0] = i5100_mir_way0(w);
Arthur Jones8f421c592008-07-25 01:49:04 -0700820
821 pci_read_config_word(pdev, I5100_MIR1, &w);
Arthur Jonesb238e572008-07-25 01:49:08 -0700822 priv->mir[1].limit = (u64) i5100_mir_limit(w) << 28;
823 priv->mir[1].way[1] = i5100_mir_way1(w);
824 priv->mir[1].way[0] = i5100_mir_way0(w);
Arthur Jones8f421c592008-07-25 01:49:04 -0700825
826 pci_read_config_word(pdev, I5100_AMIR_0, &w);
827 priv->amir[0] = w;
828 pci_read_config_word(pdev, I5100_AMIR_1, &w);
829 priv->amir[1] = w;
830
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800831 for (i = 0; i < I5100_CHANNELS; i++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700832 int j;
833
834 for (j = 0; j < 5; j++) {
835 int k;
836
837 pci_read_config_dword(mms[i], I5100_DMIR + j * 4, &dw);
838
839 priv->dmir[i][j].limit =
Arthur Jonesb238e572008-07-25 01:49:08 -0700840 (u64) i5100_dmir_limit(dw) << 28;
Arthur Jones8f421c592008-07-25 01:49:04 -0700841 for (k = 0; k < I5100_MAX_RANKS_PER_DIMM; k++)
842 priv->dmir[i][j].rank[k] =
Arthur Jonesb238e572008-07-25 01:49:08 -0700843 i5100_dmir_rank(dw, k);
Arthur Jones8f421c592008-07-25 01:49:04 -0700844 }
845 }
846
847 i5100_init_mtr(mci);
848}
849
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800850static void i5100_init_csrows(struct mem_ctl_info *mci)
Arthur Jones8f421c592008-07-25 01:49:04 -0700851{
852 int i;
Arthur Jones8f421c592008-07-25 01:49:04 -0700853 struct i5100_priv *priv = mci->pvt_info;
854
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300855 for (i = 0; i < mci->tot_dimms; i++) {
856 struct dimm_info *dimm;
Arthur Jones8f421c592008-07-25 01:49:04 -0700857 const unsigned long npages = i5100_npages(mci, i);
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800858 const unsigned chan = i5100_csrow_to_chan(mci, i);
Arthur Jones8f421c592008-07-25 01:49:04 -0700859 const unsigned rank = i5100_csrow_to_rank(mci, i);
860
861 if (!npages)
862 continue;
863
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300864 dimm = EDAC_DIMM_PTR(mci->layers, mci->dimms, mci->n_layers,
865 chan, rank, 0);
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300866
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300867 dimm->nr_pages = npages;
Dan Carpenter9d6c7cb2014-02-13 14:17:38 +0300868 dimm->grain = 32;
869 dimm->dtype = (priv->mtr[chan][rank].width == 4) ?
870 DEV_X4 : DEV_X8;
871 dimm->mtype = MEM_RDDR2;
872 dimm->edac_mode = EDAC_SECDED;
873 snprintf(dimm->label, sizeof(dimm->label), "DIMM%u",
874 i5100_rank_to_slot(mci, chan, rank));
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300875
Joe Perches956b9ba2012-04-29 17:08:39 -0300876 edac_dbg(2, "dimm channel %d, rank %d, size %ld\n",
877 chan, rank, (long)PAGES_TO_MiB(npages));
Arthur Jones8f421c592008-07-25 01:49:04 -0700878 }
879}
880
Niklas Söderlund53ceafd2012-08-08 12:30:57 -0300881/****************************************************************************
882 * Error injection routines
883 ****************************************************************************/
884
885static void i5100_do_inject(struct mem_ctl_info *mci)
886{
887 struct i5100_priv *priv = mci->pvt_info;
888 u32 mask0;
889 u16 mask1;
890
891 /* MEM[1:0]EINJMSK0
892 * 31 - ADDRMATCHEN
893 * 29:28 - HLINESEL
894 * 00 Reserved
895 * 01 Lower half of cache line
896 * 10 Upper half of cache line
897 * 11 Both upper and lower parts of cache line
898 * 27 - EINJEN
899 * 25:19 - XORMASK1 for deviceptr1
900 * 9:5 - SEC2RAM for deviceptr2
901 * 4:0 - FIR2RAM for deviceptr1
902 */
903 mask0 = ((priv->inject_hlinesel & 0x3) << 28) |
904 I5100_MEMXEINJMSK0_EINJEN |
905 ((priv->inject_eccmask1 & 0xffff) << 10) |
906 ((priv->inject_deviceptr2 & 0x1f) << 5) |
907 (priv->inject_deviceptr1 & 0x1f);
908
909 /* MEM[1:0]EINJMSK1
910 * 15:0 - XORMASK2 for deviceptr2
911 */
912 mask1 = priv->inject_eccmask2;
913
914 if (priv->inject_channel == 0) {
915 pci_write_config_dword(priv->mc, I5100_MEM0EINJMSK0, mask0);
916 pci_write_config_word(priv->mc, I5100_MEM0EINJMSK1, mask1);
917 } else {
918 pci_write_config_dword(priv->mc, I5100_MEM1EINJMSK0, mask0);
919 pci_write_config_word(priv->mc, I5100_MEM1EINJMSK1, mask1);
920 }
921
922 /* Error Injection Response Function
923 * Intel 5100 Memory Controller Hub Chipset (318378) datasheet
924 * hints about this register but carry no data about them. All
925 * data regarding device 19 is based on experimentation and the
926 * Intel 7300 Chipset Memory Controller Hub (318082) datasheet
927 * which appears to be accurate for the i5100 in this area.
928 *
929 * The injection code don't work without setting this register.
930 * The register needs to be flipped off then on else the hardware
931 * will only preform the first injection.
932 *
933 * Stop condition bits 7:4
934 * 1010 - Stop after one injection
935 * 1011 - Never stop injecting faults
936 *
937 * Start condition bits 3:0
938 * 1010 - Never start
939 * 1011 - Start immediately
940 */
941 pci_write_config_byte(priv->einj, I5100_DINJ0, 0xaa);
942 pci_write_config_byte(priv->einj, I5100_DINJ0, 0xab);
943}
944
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -0300945#define to_mci(k) container_of(k, struct mem_ctl_info, dev)
946static ssize_t inject_enable_write(struct file *file, const char __user *data,
947 size_t count, loff_t *ppos)
948{
949 struct device *dev = file->private_data;
950 struct mem_ctl_info *mci = to_mci(dev);
951
952 i5100_do_inject(mci);
953
954 return count;
955}
956
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -0300957static const struct file_operations i5100_inject_enable_fops = {
Wei Yongjunb0769892013-02-26 17:18:34 +0800958 .open = simple_open,
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -0300959 .write = inject_enable_write,
960 .llseek = generic_file_llseek,
961};
962
963static int i5100_setup_debugfs(struct mem_ctl_info *mci)
964{
965 struct i5100_priv *priv = mci->pvt_info;
966
967 if (!i5100_debugfs)
968 return -ENODEV;
969
Borislav Petkov52019e42015-09-22 12:36:15 +0200970 priv->debugfs = edac_debugfs_create_dir_at(mci->bus->name, i5100_debugfs);
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -0300971
972 if (!priv->debugfs)
973 return -ENOMEM;
974
Borislav Petkov52019e42015-09-22 12:36:15 +0200975 edac_debugfs_create_x8("inject_channel", S_IRUGO | S_IWUSR, priv->debugfs,
976 &priv->inject_channel);
977 edac_debugfs_create_x8("inject_hlinesel", S_IRUGO | S_IWUSR, priv->debugfs,
978 &priv->inject_hlinesel);
979 edac_debugfs_create_x8("inject_deviceptr1", S_IRUGO | S_IWUSR, priv->debugfs,
980 &priv->inject_deviceptr1);
981 edac_debugfs_create_x8("inject_deviceptr2", S_IRUGO | S_IWUSR, priv->debugfs,
982 &priv->inject_deviceptr2);
983 edac_debugfs_create_x16("inject_eccmask1", S_IRUGO | S_IWUSR, priv->debugfs,
984 &priv->inject_eccmask1);
985 edac_debugfs_create_x16("inject_eccmask2", S_IRUGO | S_IWUSR, priv->debugfs,
986 &priv->inject_eccmask2);
987 edac_debugfs_create_file("inject_enable", S_IWUSR, priv->debugfs,
988 &mci->dev, &i5100_inject_enable_fops);
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -0300989
990 return 0;
991
992}
993
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800994static int i5100_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
Arthur Jones8f421c592008-07-25 01:49:04 -0700995{
996 int rc;
997 struct mem_ctl_info *mci;
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300998 struct edac_mc_layer layers[2];
Arthur Jones8f421c592008-07-25 01:49:04 -0700999 struct i5100_priv *priv;
Niklas Söderlund52608ba2012-08-08 12:30:56 -03001000 struct pci_dev *ch0mm, *ch1mm, *einj;
Arthur Jones8f421c592008-07-25 01:49:04 -07001001 int ret = 0;
1002 u32 dw;
1003 int ranksperch;
1004
1005 if (PCI_FUNC(pdev->devfn) != 1)
1006 return -ENODEV;
1007
1008 rc = pci_enable_device(pdev);
1009 if (rc < 0) {
1010 ret = rc;
1011 goto bail;
1012 }
1013
Arthur Jones43920a52008-07-25 01:49:06 -07001014 /* ECC enabled? */
1015 pci_read_config_dword(pdev, I5100_MC, &dw);
Arthur Jonesb238e572008-07-25 01:49:08 -07001016 if (!i5100_mc_errdeten(dw)) {
Arthur Jones43920a52008-07-25 01:49:06 -07001017 printk(KERN_INFO "i5100_edac: ECC not enabled.\n");
1018 ret = -ENODEV;
Arthur Jonesb238e572008-07-25 01:49:08 -07001019 goto bail_pdev;
Arthur Jones43920a52008-07-25 01:49:06 -07001020 }
1021
Arthur Jones8f421c592008-07-25 01:49:04 -07001022 /* figure out how many ranks, from strapped state of 48GB_Mode input */
1023 pci_read_config_dword(pdev, I5100_MS, &dw);
1024 ranksperch = !!(dw & (1 << 8)) * 2 + 4;
1025
Arthur Jones178d5a72008-07-25 01:49:06 -07001026 /* enable error reporting... */
1027 pci_read_config_dword(pdev, I5100_EMASK_MEM, &dw);
1028 dw &= ~I5100_FERR_NF_MEM_ANY_MASK;
1029 pci_write_config_dword(pdev, I5100_EMASK_MEM, dw);
1030
Arthur Jones8f421c592008-07-25 01:49:04 -07001031 /* device 21, func 0, Channel 0 Memory Map, Error Flag/Mask, etc... */
1032 ch0mm = pci_get_device_func(PCI_VENDOR_ID_INTEL,
1033 PCI_DEVICE_ID_INTEL_5100_21, 0);
Arthur Jonesb238e572008-07-25 01:49:08 -07001034 if (!ch0mm) {
1035 ret = -ENODEV;
1036 goto bail_pdev;
1037 }
Arthur Jones8f421c592008-07-25 01:49:04 -07001038
1039 rc = pci_enable_device(ch0mm);
1040 if (rc < 0) {
1041 ret = rc;
1042 goto bail_ch0;
1043 }
1044
1045 /* device 22, func 0, Channel 1 Memory Map, Error Flag/Mask, etc... */
1046 ch1mm = pci_get_device_func(PCI_VENDOR_ID_INTEL,
1047 PCI_DEVICE_ID_INTEL_5100_22, 0);
1048 if (!ch1mm) {
1049 ret = -ENODEV;
Arthur Jonesb238e572008-07-25 01:49:08 -07001050 goto bail_disable_ch0;
Arthur Jones8f421c592008-07-25 01:49:04 -07001051 }
1052
1053 rc = pci_enable_device(ch1mm);
1054 if (rc < 0) {
1055 ret = rc;
1056 goto bail_ch1;
1057 }
1058
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -03001059 layers[0].type = EDAC_MC_LAYER_CHANNEL;
1060 layers[0].size = 2;
1061 layers[0].is_virt_csrow = false;
1062 layers[1].type = EDAC_MC_LAYER_SLOT;
1063 layers[1].size = ranksperch;
1064 layers[1].is_virt_csrow = true;
Mauro Carvalho Chehabca0907b2012-05-02 14:37:00 -03001065 mci = edac_mc_alloc(0, ARRAY_SIZE(layers), layers,
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -03001066 sizeof(*priv));
Arthur Jones8f421c592008-07-25 01:49:04 -07001067 if (!mci) {
1068 ret = -ENOMEM;
Arthur Jonesb238e572008-07-25 01:49:08 -07001069 goto bail_disable_ch1;
Arthur Jones8f421c592008-07-25 01:49:04 -07001070 }
1071
Niklas Söderlund52608ba2012-08-08 12:30:56 -03001072
1073 /* device 19, func 0, Error injection */
1074 einj = pci_get_device_func(PCI_VENDOR_ID_INTEL,
1075 PCI_DEVICE_ID_INTEL_5100_19, 0);
1076 if (!einj) {
1077 ret = -ENODEV;
1078 goto bail_einj;
1079 }
1080
1081 rc = pci_enable_device(einj);
1082 if (rc < 0) {
1083 ret = rc;
1084 goto bail_disable_einj;
1085 }
1086
1087
Mauro Carvalho Chehabfd687502012-03-16 07:44:18 -03001088 mci->pdev = &pdev->dev;
Arthur Jones8f421c592008-07-25 01:49:04 -07001089
1090 priv = mci->pvt_info;
Nils Carlsonb18dfd02009-12-15 16:47:40 -08001091 priv->ranksperchan = ranksperch;
Arthur Jones8f421c592008-07-25 01:49:04 -07001092 priv->mc = pdev;
1093 priv->ch0mm = ch0mm;
1094 priv->ch1mm = ch1mm;
Niklas Söderlund52608ba2012-08-08 12:30:56 -03001095 priv->einj = einj;
Arthur Jones8f421c592008-07-25 01:49:04 -07001096
Nils Carlson295439f2009-12-15 16:47:42 -08001097 INIT_DELAYED_WORK(&(priv->i5100_scrubbing), i5100_refresh_scrubbing);
1098
1099 /* If scrubbing was already enabled by the bios, start maintaining it */
1100 pci_read_config_dword(pdev, I5100_MC, &dw);
1101 if (i5100_mc_scrben(dw)) {
1102 priv->scrub_enable = 1;
1103 schedule_delayed_work(&(priv->i5100_scrubbing),
1104 I5100_SCRUB_REFRESH_RATE);
1105 }
1106
Arthur Jones8f421c592008-07-25 01:49:04 -07001107 i5100_init_dimm_layout(pdev, mci);
1108 i5100_init_interleaving(pdev, mci);
1109
1110 mci->mtype_cap = MEM_FLAG_FB_DDR2;
1111 mci->edac_ctl_cap = EDAC_FLAG_SECDED;
1112 mci->edac_cap = EDAC_FLAG_SECDED;
1113 mci->mod_name = "i5100_edac.c";
1114 mci->mod_ver = "not versioned";
1115 mci->ctl_name = "i5100";
1116 mci->dev_name = pci_name(pdev);
Arthur Jonesb238e572008-07-25 01:49:08 -07001117 mci->ctl_page_to_phys = NULL;
Arthur Jones8f421c592008-07-25 01:49:04 -07001118
1119 mci->edac_check = i5100_check_error;
Nils Carlson295439f2009-12-15 16:47:42 -08001120 mci->set_sdram_scrub_rate = i5100_set_scrub_rate;
1121 mci->get_sdram_scrub_rate = i5100_get_scrub_rate;
Arthur Jones8f421c592008-07-25 01:49:04 -07001122
Niklas Söderlund53ceafd2012-08-08 12:30:57 -03001123 priv->inject_channel = 0;
1124 priv->inject_hlinesel = 0;
1125 priv->inject_deviceptr1 = 0;
1126 priv->inject_deviceptr2 = 0;
1127 priv->inject_eccmask1 = 0;
1128 priv->inject_eccmask2 = 0;
1129
Arthur Jones8f421c592008-07-25 01:49:04 -07001130 i5100_init_csrows(mci);
1131
1132 /* this strange construction seems to be in every driver, dunno why */
1133 switch (edac_op_state) {
1134 case EDAC_OPSTATE_POLL:
1135 case EDAC_OPSTATE_NMI:
1136 break;
1137 default:
1138 edac_op_state = EDAC_OPSTATE_POLL;
1139 break;
1140 }
1141
1142 if (edac_mc_add_mc(mci)) {
1143 ret = -ENODEV;
Nils Carlson295439f2009-12-15 16:47:42 -08001144 goto bail_scrub;
Arthur Jones8f421c592008-07-25 01:49:04 -07001145 }
1146
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -03001147 i5100_setup_debugfs(mci);
1148
Arthur Jonesb238e572008-07-25 01:49:08 -07001149 return ret;
Arthur Jones8f421c592008-07-25 01:49:04 -07001150
Nils Carlson295439f2009-12-15 16:47:42 -08001151bail_scrub:
1152 priv->scrub_enable = 0;
1153 cancel_delayed_work_sync(&(priv->i5100_scrubbing));
Arthur Jones8f421c592008-07-25 01:49:04 -07001154 edac_mc_free(mci);
1155
Niklas Söderlund52608ba2012-08-08 12:30:56 -03001156bail_disable_einj:
1157 pci_disable_device(einj);
1158
1159bail_einj:
1160 pci_dev_put(einj);
1161
Arthur Jonesb238e572008-07-25 01:49:08 -07001162bail_disable_ch1:
1163 pci_disable_device(ch1mm);
1164
Arthur Jones8f421c592008-07-25 01:49:04 -07001165bail_ch1:
1166 pci_dev_put(ch1mm);
1167
Arthur Jonesb238e572008-07-25 01:49:08 -07001168bail_disable_ch0:
1169 pci_disable_device(ch0mm);
1170
Arthur Jones8f421c592008-07-25 01:49:04 -07001171bail_ch0:
1172 pci_dev_put(ch0mm);
1173
Arthur Jonesb238e572008-07-25 01:49:08 -07001174bail_pdev:
1175 pci_disable_device(pdev);
1176
Arthur Jones8f421c592008-07-25 01:49:04 -07001177bail:
1178 return ret;
1179}
1180
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -08001181static void i5100_remove_one(struct pci_dev *pdev)
Arthur Jones8f421c592008-07-25 01:49:04 -07001182{
1183 struct mem_ctl_info *mci;
1184 struct i5100_priv *priv;
1185
1186 mci = edac_mc_del_mc(&pdev->dev);
1187
1188 if (!mci)
1189 return;
1190
1191 priv = mci->pvt_info;
Nils Carlson295439f2009-12-15 16:47:42 -08001192
Borislav Petkov52019e42015-09-22 12:36:15 +02001193 edac_debugfs_remove_recursive(priv->debugfs);
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -03001194
Nils Carlson295439f2009-12-15 16:47:42 -08001195 priv->scrub_enable = 0;
1196 cancel_delayed_work_sync(&(priv->i5100_scrubbing));
1197
Arthur Jonesb238e572008-07-25 01:49:08 -07001198 pci_disable_device(pdev);
1199 pci_disable_device(priv->ch0mm);
1200 pci_disable_device(priv->ch1mm);
Niklas Söderlund52608ba2012-08-08 12:30:56 -03001201 pci_disable_device(priv->einj);
Arthur Jones8f421c592008-07-25 01:49:04 -07001202 pci_dev_put(priv->ch0mm);
1203 pci_dev_put(priv->ch1mm);
Niklas Söderlund52608ba2012-08-08 12:30:56 -03001204 pci_dev_put(priv->einj);
Arthur Jones8f421c592008-07-25 01:49:04 -07001205
1206 edac_mc_free(mci);
1207}
1208
Jingoo Hanba935f42013-12-06 10:23:08 +01001209static const struct pci_device_id i5100_pci_tbl[] = {
Arthur Jones8f421c592008-07-25 01:49:04 -07001210 /* Device 16, Function 0, Channel 0 Memory Map, Error Flag/Mask, ... */
1211 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5100_16) },
1212 { 0, }
1213};
1214MODULE_DEVICE_TABLE(pci, i5100_pci_tbl);
1215
1216static struct pci_driver i5100_driver = {
1217 .name = KBUILD_BASENAME,
1218 .probe = i5100_init_one,
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -08001219 .remove = i5100_remove_one,
Arthur Jones8f421c592008-07-25 01:49:04 -07001220 .id_table = i5100_pci_tbl,
1221};
1222
1223static int __init i5100_init(void)
1224{
1225 int pci_rc;
1226
Borislav Petkov52019e42015-09-22 12:36:15 +02001227 i5100_debugfs = edac_debugfs_create_dir_at("i5100_edac", NULL);
Arthur Jones8f421c592008-07-25 01:49:04 -07001228
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -03001229 pci_rc = pci_register_driver(&i5100_driver);
Arthur Jones8f421c592008-07-25 01:49:04 -07001230 return (pci_rc < 0) ? pci_rc : 0;
1231}
1232
1233static void __exit i5100_exit(void)
1234{
Borislav Petkov52019e42015-09-22 12:36:15 +02001235 edac_debugfs_remove(i5100_debugfs);
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -03001236
Arthur Jones8f421c592008-07-25 01:49:04 -07001237 pci_unregister_driver(&i5100_driver);
1238}
1239
1240module_init(i5100_init);
1241module_exit(i5100_exit);
1242
1243MODULE_LICENSE("GPL");
1244MODULE_AUTHOR
1245 ("Arthur Jones <ajones@riverbed.com>");
1246MODULE_DESCRIPTION("MC Driver for Intel I5100 memory controllers");