blob: 0a0345bd7432cc37867247ffae3caf30a5cf03b0 [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>
30
31#include "edac_core.h"
32
Arthur Jonesb238e572008-07-25 01:49:08 -070033/* register addresses */
Arthur Jones8f421c592008-07-25 01:49:04 -070034
35/* device 16, func 1 */
Arthur Jones43920a52008-07-25 01:49:06 -070036#define I5100_MC 0x40 /* Memory Control Register */
Nils Carlson295439f2009-12-15 16:47:42 -080037#define I5100_MC_SCRBEN_MASK (1 << 7)
38#define I5100_MC_SCRBDONE_MASK (1 << 4)
Arthur Jones8f421c592008-07-25 01:49:04 -070039#define I5100_MS 0x44 /* Memory Status Register */
40#define I5100_SPDDATA 0x48 /* Serial Presence Detect Status Reg */
Arthur Jones8f421c592008-07-25 01:49:04 -070041#define I5100_SPDCMD 0x4c /* Serial Presence Detect Command Reg */
Arthur Jones8f421c592008-07-25 01:49:04 -070042#define I5100_TOLM 0x6c /* Top of Low Memory */
Arthur Jones8f421c592008-07-25 01:49:04 -070043#define I5100_MIR0 0x80 /* Memory Interleave Range 0 */
44#define I5100_MIR1 0x84 /* Memory Interleave Range 1 */
45#define I5100_AMIR_0 0x8c /* Adjusted Memory Interleave Range 0 */
46#define I5100_AMIR_1 0x90 /* Adjusted Memory Interleave Range 1 */
Arthur Jones8f421c592008-07-25 01:49:04 -070047#define I5100_FERR_NF_MEM 0xa0 /* MC First Non Fatal Errors */
Arthur Jones8f421c592008-07-25 01:49:04 -070048#define I5100_FERR_NF_MEM_M16ERR_MASK (1 << 16)
49#define I5100_FERR_NF_MEM_M15ERR_MASK (1 << 15)
50#define I5100_FERR_NF_MEM_M14ERR_MASK (1 << 14)
Arthur Jonesf7952ff2008-07-25 01:49:05 -070051#define I5100_FERR_NF_MEM_M12ERR_MASK (1 << 12)
52#define I5100_FERR_NF_MEM_M11ERR_MASK (1 << 11)
53#define I5100_FERR_NF_MEM_M10ERR_MASK (1 << 10)
54#define I5100_FERR_NF_MEM_M6ERR_MASK (1 << 6)
55#define I5100_FERR_NF_MEM_M5ERR_MASK (1 << 5)
56#define I5100_FERR_NF_MEM_M4ERR_MASK (1 << 4)
Niklas Söderlundb6378cb2012-02-17 07:36:54 -030057#define I5100_FERR_NF_MEM_M1ERR_MASK (1 << 1)
Arthur Jones8f421c592008-07-25 01:49:04 -070058#define I5100_FERR_NF_MEM_ANY_MASK \
59 (I5100_FERR_NF_MEM_M16ERR_MASK | \
60 I5100_FERR_NF_MEM_M15ERR_MASK | \
Arthur Jonesf7952ff2008-07-25 01:49:05 -070061 I5100_FERR_NF_MEM_M14ERR_MASK | \
62 I5100_FERR_NF_MEM_M12ERR_MASK | \
63 I5100_FERR_NF_MEM_M11ERR_MASK | \
64 I5100_FERR_NF_MEM_M10ERR_MASK | \
65 I5100_FERR_NF_MEM_M6ERR_MASK | \
66 I5100_FERR_NF_MEM_M5ERR_MASK | \
67 I5100_FERR_NF_MEM_M4ERR_MASK | \
68 I5100_FERR_NF_MEM_M1ERR_MASK)
Arthur Jones8f421c592008-07-25 01:49:04 -070069#define I5100_NERR_NF_MEM 0xa4 /* MC Next Non-Fatal Errors */
Arthur Jones178d5a72008-07-25 01:49:06 -070070#define I5100_EMASK_MEM 0xa8 /* MC Error Mask Register */
Niklas Söderlund53ceafd2012-08-08 12:30:57 -030071#define I5100_MEM0EINJMSK0 0x200 /* Injection Mask0 Register Channel 0 */
72#define I5100_MEM1EINJMSK0 0x208 /* Injection Mask0 Register Channel 1 */
73#define I5100_MEMXEINJMSK0_EINJEN (1 << 27)
74#define I5100_MEM0EINJMSK1 0x204 /* Injection Mask1 Register Channel 0 */
75#define I5100_MEM1EINJMSK1 0x206 /* Injection Mask1 Register Channel 1 */
76
77/* Device 19, Function 0 */
78#define I5100_DINJ0 0x9a
Arthur Jones8f421c592008-07-25 01:49:04 -070079
80/* device 21 and 22, func 0 */
81#define I5100_MTR_0 0x154 /* Memory Technology Registers 0-3 */
82#define I5100_DMIR 0x15c /* DIMM Interleave Range */
Arthur Jones8f421c592008-07-25 01:49:04 -070083#define I5100_VALIDLOG 0x18c /* Valid Log Markers */
Arthur Jones8f421c592008-07-25 01:49:04 -070084#define I5100_NRECMEMA 0x190 /* Non-Recoverable Memory Error Log Reg A */
Arthur Jones8f421c592008-07-25 01:49:04 -070085#define I5100_NRECMEMB 0x194 /* Non-Recoverable Memory Error Log Reg B */
Arthur Jones8f421c592008-07-25 01:49:04 -070086#define I5100_REDMEMA 0x198 /* Recoverable Memory Data Error Log Reg A */
Arthur Jones8f421c592008-07-25 01:49:04 -070087#define I5100_REDMEMB 0x19c /* Recoverable Memory Data Error Log Reg B */
Arthur Jones8f421c592008-07-25 01:49:04 -070088#define I5100_RECMEMA 0x1a0 /* Recoverable Memory Error Log Reg A */
Arthur Jones8f421c592008-07-25 01:49:04 -070089#define I5100_RECMEMB 0x1a4 /* Recoverable Memory Error Log Reg B */
Arthur Jonesb238e572008-07-25 01:49:08 -070090#define I5100_MTR_4 0x1b0 /* Memory Technology Registers 4,5 */
91
92/* bit field accessors */
93
Nils Carlson295439f2009-12-15 16:47:42 -080094static inline u32 i5100_mc_scrben(u32 mc)
95{
96 return mc >> 7 & 1;
97}
98
Arthur Jonesb238e572008-07-25 01:49:08 -070099static inline u32 i5100_mc_errdeten(u32 mc)
100{
101 return mc >> 5 & 1;
102}
103
Nils Carlson295439f2009-12-15 16:47:42 -0800104static inline u32 i5100_mc_scrbdone(u32 mc)
105{
106 return mc >> 4 & 1;
107}
108
Arthur Jonesb238e572008-07-25 01:49:08 -0700109static inline u16 i5100_spddata_rdo(u16 a)
110{
111 return a >> 15 & 1;
112}
113
114static inline u16 i5100_spddata_sbe(u16 a)
115{
116 return a >> 13 & 1;
117}
118
119static inline u16 i5100_spddata_busy(u16 a)
120{
121 return a >> 12 & 1;
122}
123
124static inline u16 i5100_spddata_data(u16 a)
125{
126 return a & ((1 << 8) - 1);
127}
128
129static inline u32 i5100_spdcmd_create(u32 dti, u32 ckovrd, u32 sa, u32 ba,
130 u32 data, u32 cmd)
131{
132 return ((dti & ((1 << 4) - 1)) << 28) |
133 ((ckovrd & 1) << 27) |
134 ((sa & ((1 << 3) - 1)) << 24) |
135 ((ba & ((1 << 8) - 1)) << 16) |
136 ((data & ((1 << 8) - 1)) << 8) |
137 (cmd & 1);
138}
139
140static inline u16 i5100_tolm_tolm(u16 a)
141{
142 return a >> 12 & ((1 << 4) - 1);
143}
144
145static inline u16 i5100_mir_limit(u16 a)
146{
147 return a >> 4 & ((1 << 12) - 1);
148}
149
150static inline u16 i5100_mir_way1(u16 a)
151{
152 return a >> 1 & 1;
153}
154
155static inline u16 i5100_mir_way0(u16 a)
156{
157 return a & 1;
158}
159
160static inline u32 i5100_ferr_nf_mem_chan_indx(u32 a)
161{
162 return a >> 28 & 1;
163}
164
165static inline u32 i5100_ferr_nf_mem_any(u32 a)
166{
167 return a & I5100_FERR_NF_MEM_ANY_MASK;
168}
169
170static inline u32 i5100_nerr_nf_mem_any(u32 a)
171{
172 return i5100_ferr_nf_mem_any(a);
173}
174
175static inline u32 i5100_dmir_limit(u32 a)
176{
177 return a >> 16 & ((1 << 11) - 1);
178}
179
180static inline u32 i5100_dmir_rank(u32 a, u32 i)
181{
182 return a >> (4 * i) & ((1 << 2) - 1);
183}
184
185static inline u16 i5100_mtr_present(u16 a)
186{
187 return a >> 10 & 1;
188}
189
190static inline u16 i5100_mtr_ethrottle(u16 a)
191{
192 return a >> 9 & 1;
193}
194
195static inline u16 i5100_mtr_width(u16 a)
196{
197 return a >> 8 & 1;
198}
199
200static inline u16 i5100_mtr_numbank(u16 a)
201{
202 return a >> 6 & 1;
203}
204
205static inline u16 i5100_mtr_numrow(u16 a)
206{
207 return a >> 2 & ((1 << 2) - 1);
208}
209
210static inline u16 i5100_mtr_numcol(u16 a)
211{
212 return a & ((1 << 2) - 1);
213}
214
215
216static inline u32 i5100_validlog_redmemvalid(u32 a)
217{
218 return a >> 2 & 1;
219}
220
221static inline u32 i5100_validlog_recmemvalid(u32 a)
222{
223 return a >> 1 & 1;
224}
225
226static inline u32 i5100_validlog_nrecmemvalid(u32 a)
227{
228 return a & 1;
229}
230
231static inline u32 i5100_nrecmema_merr(u32 a)
232{
233 return a >> 15 & ((1 << 5) - 1);
234}
235
236static inline u32 i5100_nrecmema_bank(u32 a)
237{
238 return a >> 12 & ((1 << 3) - 1);
239}
240
241static inline u32 i5100_nrecmema_rank(u32 a)
242{
243 return a >> 8 & ((1 << 3) - 1);
244}
245
246static inline u32 i5100_nrecmema_dm_buf_id(u32 a)
247{
248 return a & ((1 << 8) - 1);
249}
250
251static inline u32 i5100_nrecmemb_cas(u32 a)
252{
253 return a >> 16 & ((1 << 13) - 1);
254}
255
256static inline u32 i5100_nrecmemb_ras(u32 a)
257{
258 return a & ((1 << 16) - 1);
259}
260
261static inline u32 i5100_redmemb_ecc_locator(u32 a)
262{
263 return a & ((1 << 18) - 1);
264}
265
266static inline u32 i5100_recmema_merr(u32 a)
267{
268 return i5100_nrecmema_merr(a);
269}
270
271static inline u32 i5100_recmema_bank(u32 a)
272{
273 return i5100_nrecmema_bank(a);
274}
275
276static inline u32 i5100_recmema_rank(u32 a)
277{
278 return i5100_nrecmema_rank(a);
279}
280
281static inline u32 i5100_recmema_dm_buf_id(u32 a)
282{
283 return i5100_nrecmema_dm_buf_id(a);
284}
285
286static inline u32 i5100_recmemb_cas(u32 a)
287{
288 return i5100_nrecmemb_cas(a);
289}
290
291static inline u32 i5100_recmemb_ras(u32 a)
292{
293 return i5100_nrecmemb_ras(a);
294}
Arthur Jones8f421c592008-07-25 01:49:04 -0700295
296/* some generic limits */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800297#define I5100_MAX_RANKS_PER_CHAN 6
298#define I5100_CHANNELS 2
Arthur Jones8f421c592008-07-25 01:49:04 -0700299#define I5100_MAX_RANKS_PER_DIMM 4
300#define I5100_DIMM_ADDR_LINES (6 - 3) /* 64 bits / 8 bits per byte */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800301#define I5100_MAX_DIMM_SLOTS_PER_CHAN 4
Arthur Jones8f421c592008-07-25 01:49:04 -0700302#define I5100_MAX_RANK_INTERLEAVE 4
303#define I5100_MAX_DMIRS 5
Nils Carlson295439f2009-12-15 16:47:42 -0800304#define I5100_SCRUB_REFRESH_RATE (5 * 60 * HZ)
Arthur Jones8f421c592008-07-25 01:49:04 -0700305
306struct i5100_priv {
307 /* ranks on each dimm -- 0 maps to not present -- obtained via SPD */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800308 int dimm_numrank[I5100_CHANNELS][I5100_MAX_DIMM_SLOTS_PER_CHAN];
Arthur Jones8f421c592008-07-25 01:49:04 -0700309
310 /*
311 * mainboard chip select map -- maps i5100 chip selects to
312 * DIMM slot chip selects. In the case of only 4 ranks per
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800313 * channel, the mapping is fairly obvious but not unique.
314 * we map -1 -> NC and assume both channels use the same
Arthur Jones8f421c592008-07-25 01:49:04 -0700315 * map...
316 *
317 */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800318 int dimm_csmap[I5100_MAX_DIMM_SLOTS_PER_CHAN][I5100_MAX_RANKS_PER_DIMM];
Arthur Jones8f421c592008-07-25 01:49:04 -0700319
320 /* memory interleave range */
321 struct {
322 u64 limit;
323 unsigned way[2];
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800324 } mir[I5100_CHANNELS];
Arthur Jones8f421c592008-07-25 01:49:04 -0700325
326 /* adjusted memory interleave range register */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800327 unsigned amir[I5100_CHANNELS];
Arthur Jones8f421c592008-07-25 01:49:04 -0700328
329 /* dimm interleave range */
330 struct {
331 unsigned rank[I5100_MAX_RANK_INTERLEAVE];
332 u64 limit;
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800333 } dmir[I5100_CHANNELS][I5100_MAX_DMIRS];
Arthur Jones8f421c592008-07-25 01:49:04 -0700334
335 /* memory technology registers... */
336 struct {
337 unsigned present; /* 0 or 1 */
338 unsigned ethrottle; /* 0 or 1 */
339 unsigned width; /* 4 or 8 bits */
340 unsigned numbank; /* 2 or 3 lines */
341 unsigned numrow; /* 13 .. 16 lines */
342 unsigned numcol; /* 11 .. 12 lines */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800343 } mtr[I5100_CHANNELS][I5100_MAX_RANKS_PER_CHAN];
Arthur Jones8f421c592008-07-25 01:49:04 -0700344
345 u64 tolm; /* top of low memory in bytes */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800346 unsigned ranksperchan; /* number of ranks per channel */
Arthur Jones8f421c592008-07-25 01:49:04 -0700347
348 struct pci_dev *mc; /* device 16 func 1 */
Niklas Söderlund52608ba2012-08-08 12:30:56 -0300349 struct pci_dev *einj; /* device 19 func 0 */
Arthur Jones8f421c592008-07-25 01:49:04 -0700350 struct pci_dev *ch0mm; /* device 21 func 0 */
351 struct pci_dev *ch1mm; /* device 22 func 0 */
Nils Carlson295439f2009-12-15 16:47:42 -0800352
353 struct delayed_work i5100_scrubbing;
354 int scrub_enable;
Niklas Söderlund53ceafd2012-08-08 12:30:57 -0300355
356 /* Error injection */
357 u8 inject_channel;
358 u8 inject_hlinesel;
359 u8 inject_deviceptr1;
360 u8 inject_deviceptr2;
361 u16 inject_eccmask1;
362 u16 inject_eccmask2;
Arthur Jones8f421c592008-07-25 01:49:04 -0700363};
364
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800365/* map a rank/chan to a slot number on the mainboard */
Arthur Jones8f421c592008-07-25 01:49:04 -0700366static int i5100_rank_to_slot(const struct mem_ctl_info *mci,
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800367 int chan, int rank)
Arthur Jones8f421c592008-07-25 01:49:04 -0700368{
369 const struct i5100_priv *priv = mci->pvt_info;
370 int i;
371
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800372 for (i = 0; i < I5100_MAX_DIMM_SLOTS_PER_CHAN; i++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700373 int j;
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800374 const int numrank = priv->dimm_numrank[chan][i];
Arthur Jones8f421c592008-07-25 01:49:04 -0700375
376 for (j = 0; j < numrank; j++)
377 if (priv->dimm_csmap[i][j] == rank)
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800378 return i * 2 + chan;
Arthur Jones8f421c592008-07-25 01:49:04 -0700379 }
380
381 return -1;
382}
383
Arthur Jones8f421c592008-07-25 01:49:04 -0700384static const char *i5100_err_msg(unsigned err)
385{
Arthur Jonesb238e572008-07-25 01:49:08 -0700386 static const char *merrs[] = {
Arthur Jones8f421c592008-07-25 01:49:04 -0700387 "unknown", /* 0 */
388 "uncorrectable data ECC on replay", /* 1 */
389 "unknown", /* 2 */
390 "unknown", /* 3 */
391 "aliased uncorrectable demand data ECC", /* 4 */
392 "aliased uncorrectable spare-copy data ECC", /* 5 */
393 "aliased uncorrectable patrol data ECC", /* 6 */
394 "unknown", /* 7 */
395 "unknown", /* 8 */
396 "unknown", /* 9 */
397 "non-aliased uncorrectable demand data ECC", /* 10 */
398 "non-aliased uncorrectable spare-copy data ECC", /* 11 */
399 "non-aliased uncorrectable patrol data ECC", /* 12 */
400 "unknown", /* 13 */
401 "correctable demand data ECC", /* 14 */
402 "correctable spare-copy data ECC", /* 15 */
403 "correctable patrol data ECC", /* 16 */
404 "unknown", /* 17 */
405 "SPD protocol error", /* 18 */
406 "unknown", /* 19 */
407 "spare copy initiated", /* 20 */
408 "spare copy completed", /* 21 */
409 };
410 unsigned i;
411
412 for (i = 0; i < ARRAY_SIZE(merrs); i++)
413 if (1 << i & err)
414 return merrs[i];
415
416 return "none";
417}
418
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800419/* convert csrow index into a rank (per channel -- 0..5) */
Arthur Jones8f421c592008-07-25 01:49:04 -0700420static int i5100_csrow_to_rank(const struct mem_ctl_info *mci, int csrow)
421{
422 const struct i5100_priv *priv = mci->pvt_info;
423
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800424 return csrow % priv->ranksperchan;
Arthur Jones8f421c592008-07-25 01:49:04 -0700425}
426
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800427/* convert csrow index into a channel (0..1) */
428static int i5100_csrow_to_chan(const struct mem_ctl_info *mci, int csrow)
Arthur Jones8f421c592008-07-25 01:49:04 -0700429{
430 const struct i5100_priv *priv = mci->pvt_info;
431
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800432 return csrow / priv->ranksperchan;
Arthur Jones8f421c592008-07-25 01:49:04 -0700433}
434
Arthur Jones8f421c592008-07-25 01:49:04 -0700435static void i5100_handle_ce(struct mem_ctl_info *mci,
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800436 int chan,
Arthur Jones8f421c592008-07-25 01:49:04 -0700437 unsigned bank,
438 unsigned rank,
439 unsigned long syndrome,
440 unsigned cas,
441 unsigned ras,
442 const char *msg)
443{
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300444 char detail[80];
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300445
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300446 /* Form out message */
447 snprintf(detail, sizeof(detail),
448 "bank %u, cas %u, ras %u\n",
449 bank, cas, ras);
Arthur Jones8f421c592008-07-25 01:49:04 -0700450
Mauro Carvalho Chehab9eb07a72012-06-04 13:27:43 -0300451 edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, 1,
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300452 0, 0, syndrome,
453 chan, rank, -1,
Mauro Carvalho Chehab03f7eae2012-06-04 11:29:25 -0300454 msg, detail);
Arthur Jones8f421c592008-07-25 01:49:04 -0700455}
456
457static void i5100_handle_ue(struct mem_ctl_info *mci,
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800458 int chan,
Arthur Jones8f421c592008-07-25 01:49:04 -0700459 unsigned bank,
460 unsigned rank,
461 unsigned long syndrome,
462 unsigned cas,
463 unsigned ras,
464 const char *msg)
465{
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300466 char detail[80];
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300467
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300468 /* Form out message */
469 snprintf(detail, sizeof(detail),
470 "bank %u, cas %u, ras %u\n",
471 bank, cas, ras);
Arthur Jones8f421c592008-07-25 01:49:04 -0700472
Mauro Carvalho Chehab9eb07a72012-06-04 13:27:43 -0300473 edac_mc_handle_error(HW_EVENT_ERR_UNCORRECTED, mci, 1,
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300474 0, 0, syndrome,
475 chan, rank, -1,
Mauro Carvalho Chehab03f7eae2012-06-04 11:29:25 -0300476 msg, detail);
Arthur Jones8f421c592008-07-25 01:49:04 -0700477}
478
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800479static void i5100_read_log(struct mem_ctl_info *mci, int chan,
Arthur Jones8f421c592008-07-25 01:49:04 -0700480 u32 ferr, u32 nerr)
481{
482 struct i5100_priv *priv = mci->pvt_info;
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800483 struct pci_dev *pdev = (chan) ? priv->ch1mm : priv->ch0mm;
Arthur Jones8f421c592008-07-25 01:49:04 -0700484 u32 dw;
485 u32 dw2;
486 unsigned syndrome = 0;
487 unsigned ecc_loc = 0;
488 unsigned merr;
489 unsigned bank;
490 unsigned rank;
491 unsigned cas;
492 unsigned ras;
493
494 pci_read_config_dword(pdev, I5100_VALIDLOG, &dw);
495
Arthur Jonesb238e572008-07-25 01:49:08 -0700496 if (i5100_validlog_redmemvalid(dw)) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700497 pci_read_config_dword(pdev, I5100_REDMEMA, &dw2);
Arthur Jonesb238e572008-07-25 01:49:08 -0700498 syndrome = dw2;
Arthur Jones8f421c592008-07-25 01:49:04 -0700499 pci_read_config_dword(pdev, I5100_REDMEMB, &dw2);
Arthur Jonesb238e572008-07-25 01:49:08 -0700500 ecc_loc = i5100_redmemb_ecc_locator(dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700501 }
502
Arthur Jonesb238e572008-07-25 01:49:08 -0700503 if (i5100_validlog_recmemvalid(dw)) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700504 const char *msg;
505
506 pci_read_config_dword(pdev, I5100_RECMEMA, &dw2);
Arthur Jonesb238e572008-07-25 01:49:08 -0700507 merr = i5100_recmema_merr(dw2);
508 bank = i5100_recmema_bank(dw2);
509 rank = i5100_recmema_rank(dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700510
511 pci_read_config_dword(pdev, I5100_RECMEMB, &dw2);
Arthur Jonesb238e572008-07-25 01:49:08 -0700512 cas = i5100_recmemb_cas(dw2);
513 ras = i5100_recmemb_ras(dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700514
515 /* FIXME: not really sure if this is what merr is...
516 */
517 if (!merr)
518 msg = i5100_err_msg(ferr);
519 else
520 msg = i5100_err_msg(nerr);
521
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800522 i5100_handle_ce(mci, chan, bank, rank, syndrome, cas, ras, msg);
Arthur Jones8f421c592008-07-25 01:49:04 -0700523 }
524
Arthur Jonesb238e572008-07-25 01:49:08 -0700525 if (i5100_validlog_nrecmemvalid(dw)) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700526 const char *msg;
527
528 pci_read_config_dword(pdev, I5100_NRECMEMA, &dw2);
Arthur Jonesb238e572008-07-25 01:49:08 -0700529 merr = i5100_nrecmema_merr(dw2);
530 bank = i5100_nrecmema_bank(dw2);
531 rank = i5100_nrecmema_rank(dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700532
533 pci_read_config_dword(pdev, I5100_NRECMEMB, &dw2);
Arthur Jonesb238e572008-07-25 01:49:08 -0700534 cas = i5100_nrecmemb_cas(dw2);
535 ras = i5100_nrecmemb_ras(dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700536
537 /* FIXME: not really sure if this is what merr is...
538 */
539 if (!merr)
540 msg = i5100_err_msg(ferr);
541 else
542 msg = i5100_err_msg(nerr);
543
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800544 i5100_handle_ue(mci, chan, bank, rank, syndrome, cas, ras, msg);
Arthur Jones8f421c592008-07-25 01:49:04 -0700545 }
546
547 pci_write_config_dword(pdev, I5100_VALIDLOG, dw);
548}
549
550static void i5100_check_error(struct mem_ctl_info *mci)
551{
552 struct i5100_priv *priv = mci->pvt_info;
Niklas Söderlunddf95e422011-12-09 13:12:15 -0300553 u32 dw, dw2;
Arthur Jones8f421c592008-07-25 01:49:04 -0700554
555 pci_read_config_dword(priv->mc, I5100_FERR_NF_MEM, &dw);
Arthur Jonesb238e572008-07-25 01:49:08 -0700556 if (i5100_ferr_nf_mem_any(dw)) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700557
558 pci_read_config_dword(priv->mc, I5100_NERR_NF_MEM, &dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700559
Arthur Jonesb238e572008-07-25 01:49:08 -0700560 i5100_read_log(mci, i5100_ferr_nf_mem_chan_indx(dw),
561 i5100_ferr_nf_mem_any(dw),
562 i5100_nerr_nf_mem_any(dw2));
Niklas Söderlunddf95e422011-12-09 13:12:15 -0300563
564 pci_write_config_dword(priv->mc, I5100_NERR_NF_MEM, dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700565 }
Niklas Söderlunddf95e422011-12-09 13:12:15 -0300566 pci_write_config_dword(priv->mc, I5100_FERR_NF_MEM, dw);
Arthur Jones8f421c592008-07-25 01:49:04 -0700567}
568
Nils Carlson295439f2009-12-15 16:47:42 -0800569/* The i5100 chipset will scrub the entire memory once, then
570 * set a done bit. Continuous scrubbing is achieved by enqueing
571 * delayed work to a workqueue, checking every few minutes if
572 * the scrubbing has completed and if so reinitiating it.
573 */
574
575static void i5100_refresh_scrubbing(struct work_struct *work)
576{
577 struct delayed_work *i5100_scrubbing = container_of(work,
578 struct delayed_work,
579 work);
580 struct i5100_priv *priv = container_of(i5100_scrubbing,
581 struct i5100_priv,
582 i5100_scrubbing);
583 u32 dw;
584
585 pci_read_config_dword(priv->mc, I5100_MC, &dw);
586
587 if (priv->scrub_enable) {
588
589 pci_read_config_dword(priv->mc, I5100_MC, &dw);
590
591 if (i5100_mc_scrbdone(dw)) {
592 dw |= I5100_MC_SCRBEN_MASK;
593 pci_write_config_dword(priv->mc, I5100_MC, dw);
594 pci_read_config_dword(priv->mc, I5100_MC, &dw);
595 }
596
597 schedule_delayed_work(&(priv->i5100_scrubbing),
598 I5100_SCRUB_REFRESH_RATE);
599 }
600}
601/*
602 * The bandwidth is based on experimentation, feel free to refine it.
603 */
Borislav Petkoveba042a2010-05-25 18:21:07 +0200604static int i5100_set_scrub_rate(struct mem_ctl_info *mci, u32 bandwidth)
Nils Carlson295439f2009-12-15 16:47:42 -0800605{
606 struct i5100_priv *priv = mci->pvt_info;
607 u32 dw;
608
609 pci_read_config_dword(priv->mc, I5100_MC, &dw);
Borislav Petkoveba042a2010-05-25 18:21:07 +0200610 if (bandwidth) {
Nils Carlson295439f2009-12-15 16:47:42 -0800611 priv->scrub_enable = 1;
612 dw |= I5100_MC_SCRBEN_MASK;
613 schedule_delayed_work(&(priv->i5100_scrubbing),
614 I5100_SCRUB_REFRESH_RATE);
615 } else {
616 priv->scrub_enable = 0;
617 dw &= ~I5100_MC_SCRBEN_MASK;
618 cancel_delayed_work(&(priv->i5100_scrubbing));
619 }
620 pci_write_config_dword(priv->mc, I5100_MC, dw);
621
622 pci_read_config_dword(priv->mc, I5100_MC, &dw);
623
Borislav Petkoveba042a2010-05-25 18:21:07 +0200624 bandwidth = 5900000 * i5100_mc_scrben(dw);
Nils Carlson295439f2009-12-15 16:47:42 -0800625
Borislav Petkov39094442010-11-24 19:52:09 +0100626 return bandwidth;
Nils Carlson295439f2009-12-15 16:47:42 -0800627}
628
Borislav Petkov39094442010-11-24 19:52:09 +0100629static int i5100_get_scrub_rate(struct mem_ctl_info *mci)
Nils Carlson295439f2009-12-15 16:47:42 -0800630{
631 struct i5100_priv *priv = mci->pvt_info;
632 u32 dw;
633
634 pci_read_config_dword(priv->mc, I5100_MC, &dw);
635
Borislav Petkov39094442010-11-24 19:52:09 +0100636 return 5900000 * i5100_mc_scrben(dw);
Nils Carlson295439f2009-12-15 16:47:42 -0800637}
638
Arthur Jones8f421c592008-07-25 01:49:04 -0700639static struct pci_dev *pci_get_device_func(unsigned vendor,
640 unsigned device,
641 unsigned func)
642{
643 struct pci_dev *ret = NULL;
644
645 while (1) {
646 ret = pci_get_device(vendor, device, ret);
647
648 if (!ret)
649 break;
650
651 if (PCI_FUNC(ret->devfn) == func)
652 break;
653 }
654
655 return ret;
656}
657
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800658static unsigned long i5100_npages(struct mem_ctl_info *mci, int csrow)
Arthur Jones8f421c592008-07-25 01:49:04 -0700659{
660 struct i5100_priv *priv = mci->pvt_info;
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800661 const unsigned chan_rank = i5100_csrow_to_rank(mci, csrow);
662 const unsigned chan = i5100_csrow_to_chan(mci, csrow);
Arthur Jones8f421c592008-07-25 01:49:04 -0700663 unsigned addr_lines;
664
665 /* dimm present? */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800666 if (!priv->mtr[chan][chan_rank].present)
Arthur Jones8f421c592008-07-25 01:49:04 -0700667 return 0ULL;
668
669 addr_lines =
670 I5100_DIMM_ADDR_LINES +
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800671 priv->mtr[chan][chan_rank].numcol +
672 priv->mtr[chan][chan_rank].numrow +
673 priv->mtr[chan][chan_rank].numbank;
Arthur Jones8f421c592008-07-25 01:49:04 -0700674
675 return (unsigned long)
676 ((unsigned long long) (1ULL << addr_lines) / PAGE_SIZE);
677}
678
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800679static void i5100_init_mtr(struct mem_ctl_info *mci)
Arthur Jones8f421c592008-07-25 01:49:04 -0700680{
681 struct i5100_priv *priv = mci->pvt_info;
682 struct pci_dev *mms[2] = { priv->ch0mm, priv->ch1mm };
683 int i;
684
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800685 for (i = 0; i < I5100_CHANNELS; i++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700686 int j;
687 struct pci_dev *pdev = mms[i];
688
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800689 for (j = 0; j < I5100_MAX_RANKS_PER_CHAN; j++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700690 const unsigned addr =
691 (j < 4) ? I5100_MTR_0 + j * 2 :
692 I5100_MTR_4 + (j - 4) * 2;
693 u16 w;
694
695 pci_read_config_word(pdev, addr, &w);
696
Arthur Jonesb238e572008-07-25 01:49:08 -0700697 priv->mtr[i][j].present = i5100_mtr_present(w);
698 priv->mtr[i][j].ethrottle = i5100_mtr_ethrottle(w);
699 priv->mtr[i][j].width = 4 + 4 * i5100_mtr_width(w);
700 priv->mtr[i][j].numbank = 2 + i5100_mtr_numbank(w);
701 priv->mtr[i][j].numrow = 13 + i5100_mtr_numrow(w);
702 priv->mtr[i][j].numcol = 10 + i5100_mtr_numcol(w);
Arthur Jones8f421c592008-07-25 01:49:04 -0700703 }
704 }
705}
706
707/*
708 * FIXME: make this into a real i2c adapter (so that dimm-decode
709 * will work)?
710 */
711static int i5100_read_spd_byte(const struct mem_ctl_info *mci,
712 u8 ch, u8 slot, u8 addr, u8 *byte)
713{
714 struct i5100_priv *priv = mci->pvt_info;
715 u16 w;
Arthur Jones8f421c592008-07-25 01:49:04 -0700716 unsigned long et;
717
718 pci_read_config_word(priv->mc, I5100_SPDDATA, &w);
Arthur Jonesb238e572008-07-25 01:49:08 -0700719 if (i5100_spddata_busy(w))
Arthur Jones8f421c592008-07-25 01:49:04 -0700720 return -1;
721
Arthur Jonesb238e572008-07-25 01:49:08 -0700722 pci_write_config_dword(priv->mc, I5100_SPDCMD,
723 i5100_spdcmd_create(0xa, 1, ch * 4 + slot, addr,
724 0, 0));
Arthur Jones8f421c592008-07-25 01:49:04 -0700725
726 /* wait up to 100ms */
727 et = jiffies + HZ / 10;
728 udelay(100);
729 while (1) {
730 pci_read_config_word(priv->mc, I5100_SPDDATA, &w);
Arthur Jonesb238e572008-07-25 01:49:08 -0700731 if (!i5100_spddata_busy(w))
Arthur Jones8f421c592008-07-25 01:49:04 -0700732 break;
733 udelay(100);
734 }
735
Arthur Jonesb238e572008-07-25 01:49:08 -0700736 if (!i5100_spddata_rdo(w) || i5100_spddata_sbe(w))
Arthur Jones8f421c592008-07-25 01:49:04 -0700737 return -1;
738
Arthur Jonesb238e572008-07-25 01:49:08 -0700739 *byte = i5100_spddata_data(w);
Arthur Jones8f421c592008-07-25 01:49:04 -0700740
741 return 0;
742}
743
744/*
745 * fill dimm chip select map
746 *
747 * FIXME:
Arthur Jones8f421c592008-07-25 01:49:04 -0700748 * o not the only way to may chip selects to dimm slots
749 * o investigate if there is some way to obtain this map from the bios
750 */
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800751static void i5100_init_dimm_csmap(struct mem_ctl_info *mci)
Arthur Jones8f421c592008-07-25 01:49:04 -0700752{
753 struct i5100_priv *priv = mci->pvt_info;
754 int i;
755
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800756 for (i = 0; i < I5100_MAX_DIMM_SLOTS_PER_CHAN; i++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700757 int j;
758
759 for (j = 0; j < I5100_MAX_RANKS_PER_DIMM; j++)
760 priv->dimm_csmap[i][j] = -1; /* default NC */
761 }
762
763 /* only 2 chip selects per slot... */
Nils Carlsonbbead212009-12-15 16:47:42 -0800764 if (priv->ranksperchan == 4) {
765 priv->dimm_csmap[0][0] = 0;
766 priv->dimm_csmap[0][1] = 3;
767 priv->dimm_csmap[1][0] = 1;
768 priv->dimm_csmap[1][1] = 2;
769 priv->dimm_csmap[2][0] = 2;
770 priv->dimm_csmap[3][0] = 3;
771 } else {
772 priv->dimm_csmap[0][0] = 0;
773 priv->dimm_csmap[0][1] = 1;
774 priv->dimm_csmap[1][0] = 2;
775 priv->dimm_csmap[1][1] = 3;
776 priv->dimm_csmap[2][0] = 4;
777 priv->dimm_csmap[2][1] = 5;
778 }
Arthur Jones8f421c592008-07-25 01:49:04 -0700779}
780
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800781static void i5100_init_dimm_layout(struct pci_dev *pdev,
782 struct mem_ctl_info *mci)
Arthur Jones8f421c592008-07-25 01:49:04 -0700783{
784 struct i5100_priv *priv = mci->pvt_info;
785 int i;
786
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800787 for (i = 0; i < I5100_CHANNELS; i++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700788 int j;
789
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800790 for (j = 0; j < I5100_MAX_DIMM_SLOTS_PER_CHAN; j++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700791 u8 rank;
792
793 if (i5100_read_spd_byte(mci, i, j, 5, &rank) < 0)
794 priv->dimm_numrank[i][j] = 0;
795 else
796 priv->dimm_numrank[i][j] = (rank & 3) + 1;
797 }
798 }
799
800 i5100_init_dimm_csmap(mci);
801}
802
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800803static void i5100_init_interleaving(struct pci_dev *pdev,
804 struct mem_ctl_info *mci)
Arthur Jones8f421c592008-07-25 01:49:04 -0700805{
806 u16 w;
807 u32 dw;
808 struct i5100_priv *priv = mci->pvt_info;
809 struct pci_dev *mms[2] = { priv->ch0mm, priv->ch1mm };
810 int i;
811
812 pci_read_config_word(pdev, I5100_TOLM, &w);
Arthur Jonesb238e572008-07-25 01:49:08 -0700813 priv->tolm = (u64) i5100_tolm_tolm(w) * 256 * 1024 * 1024;
Arthur Jones8f421c592008-07-25 01:49:04 -0700814
815 pci_read_config_word(pdev, I5100_MIR0, &w);
Arthur Jonesb238e572008-07-25 01:49:08 -0700816 priv->mir[0].limit = (u64) i5100_mir_limit(w) << 28;
817 priv->mir[0].way[1] = i5100_mir_way1(w);
818 priv->mir[0].way[0] = i5100_mir_way0(w);
Arthur Jones8f421c592008-07-25 01:49:04 -0700819
820 pci_read_config_word(pdev, I5100_MIR1, &w);
Arthur Jonesb238e572008-07-25 01:49:08 -0700821 priv->mir[1].limit = (u64) i5100_mir_limit(w) << 28;
822 priv->mir[1].way[1] = i5100_mir_way1(w);
823 priv->mir[1].way[0] = i5100_mir_way0(w);
Arthur Jones8f421c592008-07-25 01:49:04 -0700824
825 pci_read_config_word(pdev, I5100_AMIR_0, &w);
826 priv->amir[0] = w;
827 pci_read_config_word(pdev, I5100_AMIR_1, &w);
828 priv->amir[1] = w;
829
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800830 for (i = 0; i < I5100_CHANNELS; i++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700831 int j;
832
833 for (j = 0; j < 5; j++) {
834 int k;
835
836 pci_read_config_dword(mms[i], I5100_DMIR + j * 4, &dw);
837
838 priv->dmir[i][j].limit =
Arthur Jonesb238e572008-07-25 01:49:08 -0700839 (u64) i5100_dmir_limit(dw) << 28;
Arthur Jones8f421c592008-07-25 01:49:04 -0700840 for (k = 0; k < I5100_MAX_RANKS_PER_DIMM; k++)
841 priv->dmir[i][j].rank[k] =
Arthur Jonesb238e572008-07-25 01:49:08 -0700842 i5100_dmir_rank(dw, k);
Arthur Jones8f421c592008-07-25 01:49:04 -0700843 }
844 }
845
846 i5100_init_mtr(mci);
847}
848
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800849static void i5100_init_csrows(struct mem_ctl_info *mci)
Arthur Jones8f421c592008-07-25 01:49:04 -0700850{
851 int i;
Arthur Jones8f421c592008-07-25 01:49:04 -0700852 struct i5100_priv *priv = mci->pvt_info;
853
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300854 for (i = 0; i < mci->tot_dimms; i++) {
855 struct dimm_info *dimm;
Arthur Jones8f421c592008-07-25 01:49:04 -0700856 const unsigned long npages = i5100_npages(mci, i);
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800857 const unsigned chan = i5100_csrow_to_chan(mci, i);
Arthur Jones8f421c592008-07-25 01:49:04 -0700858 const unsigned rank = i5100_csrow_to_rank(mci, i);
859
860 if (!npages)
861 continue;
862
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300863 dimm = EDAC_DIMM_PTR(mci->layers, mci->dimms, mci->n_layers,
864 chan, rank, 0);
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300865
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300866 dimm->nr_pages = npages;
867 if (npages) {
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300868 dimm->grain = 32;
869 dimm->dtype = (priv->mtr[chan][rank].width == 4) ?
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300870 DEV_X4 : DEV_X8;
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300871 dimm->mtype = MEM_RDDR2;
872 dimm->edac_mode = EDAC_SECDED;
873 snprintf(dimm->label, sizeof(dimm->label),
874 "DIMM%u",
875 i5100_rank_to_slot(mci, chan, rank));
876 }
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300877
Joe Perches956b9ba2012-04-29 17:08:39 -0300878 edac_dbg(2, "dimm channel %d, rank %d, size %ld\n",
879 chan, rank, (long)PAGES_TO_MiB(npages));
Arthur Jones8f421c592008-07-25 01:49:04 -0700880 }
881}
882
Niklas Söderlund53ceafd2012-08-08 12:30:57 -0300883/****************************************************************************
884 * Error injection routines
885 ****************************************************************************/
886
887static void i5100_do_inject(struct mem_ctl_info *mci)
888{
889 struct i5100_priv *priv = mci->pvt_info;
890 u32 mask0;
891 u16 mask1;
892
893 /* MEM[1:0]EINJMSK0
894 * 31 - ADDRMATCHEN
895 * 29:28 - HLINESEL
896 * 00 Reserved
897 * 01 Lower half of cache line
898 * 10 Upper half of cache line
899 * 11 Both upper and lower parts of cache line
900 * 27 - EINJEN
901 * 25:19 - XORMASK1 for deviceptr1
902 * 9:5 - SEC2RAM for deviceptr2
903 * 4:0 - FIR2RAM for deviceptr1
904 */
905 mask0 = ((priv->inject_hlinesel & 0x3) << 28) |
906 I5100_MEMXEINJMSK0_EINJEN |
907 ((priv->inject_eccmask1 & 0xffff) << 10) |
908 ((priv->inject_deviceptr2 & 0x1f) << 5) |
909 (priv->inject_deviceptr1 & 0x1f);
910
911 /* MEM[1:0]EINJMSK1
912 * 15:0 - XORMASK2 for deviceptr2
913 */
914 mask1 = priv->inject_eccmask2;
915
916 if (priv->inject_channel == 0) {
917 pci_write_config_dword(priv->mc, I5100_MEM0EINJMSK0, mask0);
918 pci_write_config_word(priv->mc, I5100_MEM0EINJMSK1, mask1);
919 } else {
920 pci_write_config_dword(priv->mc, I5100_MEM1EINJMSK0, mask0);
921 pci_write_config_word(priv->mc, I5100_MEM1EINJMSK1, mask1);
922 }
923
924 /* Error Injection Response Function
925 * Intel 5100 Memory Controller Hub Chipset (318378) datasheet
926 * hints about this register but carry no data about them. All
927 * data regarding device 19 is based on experimentation and the
928 * Intel 7300 Chipset Memory Controller Hub (318082) datasheet
929 * which appears to be accurate for the i5100 in this area.
930 *
931 * The injection code don't work without setting this register.
932 * The register needs to be flipped off then on else the hardware
933 * will only preform the first injection.
934 *
935 * Stop condition bits 7:4
936 * 1010 - Stop after one injection
937 * 1011 - Never stop injecting faults
938 *
939 * Start condition bits 3:0
940 * 1010 - Never start
941 * 1011 - Start immediately
942 */
943 pci_write_config_byte(priv->einj, I5100_DINJ0, 0xaa);
944 pci_write_config_byte(priv->einj, I5100_DINJ0, 0xab);
945}
946
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800947static int i5100_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
Arthur Jones8f421c592008-07-25 01:49:04 -0700948{
949 int rc;
950 struct mem_ctl_info *mci;
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300951 struct edac_mc_layer layers[2];
Arthur Jones8f421c592008-07-25 01:49:04 -0700952 struct i5100_priv *priv;
Niklas Söderlund52608ba2012-08-08 12:30:56 -0300953 struct pci_dev *ch0mm, *ch1mm, *einj;
Arthur Jones8f421c592008-07-25 01:49:04 -0700954 int ret = 0;
955 u32 dw;
956 int ranksperch;
957
958 if (PCI_FUNC(pdev->devfn) != 1)
959 return -ENODEV;
960
961 rc = pci_enable_device(pdev);
962 if (rc < 0) {
963 ret = rc;
964 goto bail;
965 }
966
Arthur Jones43920a52008-07-25 01:49:06 -0700967 /* ECC enabled? */
968 pci_read_config_dword(pdev, I5100_MC, &dw);
Arthur Jonesb238e572008-07-25 01:49:08 -0700969 if (!i5100_mc_errdeten(dw)) {
Arthur Jones43920a52008-07-25 01:49:06 -0700970 printk(KERN_INFO "i5100_edac: ECC not enabled.\n");
971 ret = -ENODEV;
Arthur Jonesb238e572008-07-25 01:49:08 -0700972 goto bail_pdev;
Arthur Jones43920a52008-07-25 01:49:06 -0700973 }
974
Arthur Jones8f421c592008-07-25 01:49:04 -0700975 /* figure out how many ranks, from strapped state of 48GB_Mode input */
976 pci_read_config_dword(pdev, I5100_MS, &dw);
977 ranksperch = !!(dw & (1 << 8)) * 2 + 4;
978
Arthur Jones178d5a72008-07-25 01:49:06 -0700979 /* enable error reporting... */
980 pci_read_config_dword(pdev, I5100_EMASK_MEM, &dw);
981 dw &= ~I5100_FERR_NF_MEM_ANY_MASK;
982 pci_write_config_dword(pdev, I5100_EMASK_MEM, dw);
983
Arthur Jones8f421c592008-07-25 01:49:04 -0700984 /* device 21, func 0, Channel 0 Memory Map, Error Flag/Mask, etc... */
985 ch0mm = pci_get_device_func(PCI_VENDOR_ID_INTEL,
986 PCI_DEVICE_ID_INTEL_5100_21, 0);
Arthur Jonesb238e572008-07-25 01:49:08 -0700987 if (!ch0mm) {
988 ret = -ENODEV;
989 goto bail_pdev;
990 }
Arthur Jones8f421c592008-07-25 01:49:04 -0700991
992 rc = pci_enable_device(ch0mm);
993 if (rc < 0) {
994 ret = rc;
995 goto bail_ch0;
996 }
997
998 /* device 22, func 0, Channel 1 Memory Map, Error Flag/Mask, etc... */
999 ch1mm = pci_get_device_func(PCI_VENDOR_ID_INTEL,
1000 PCI_DEVICE_ID_INTEL_5100_22, 0);
1001 if (!ch1mm) {
1002 ret = -ENODEV;
Arthur Jonesb238e572008-07-25 01:49:08 -07001003 goto bail_disable_ch0;
Arthur Jones8f421c592008-07-25 01:49:04 -07001004 }
1005
1006 rc = pci_enable_device(ch1mm);
1007 if (rc < 0) {
1008 ret = rc;
1009 goto bail_ch1;
1010 }
1011
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -03001012 layers[0].type = EDAC_MC_LAYER_CHANNEL;
1013 layers[0].size = 2;
1014 layers[0].is_virt_csrow = false;
1015 layers[1].type = EDAC_MC_LAYER_SLOT;
1016 layers[1].size = ranksperch;
1017 layers[1].is_virt_csrow = true;
Mauro Carvalho Chehabca0907b2012-05-02 14:37:00 -03001018 mci = edac_mc_alloc(0, ARRAY_SIZE(layers), layers,
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -03001019 sizeof(*priv));
Arthur Jones8f421c592008-07-25 01:49:04 -07001020 if (!mci) {
1021 ret = -ENOMEM;
Arthur Jonesb238e572008-07-25 01:49:08 -07001022 goto bail_disable_ch1;
Arthur Jones8f421c592008-07-25 01:49:04 -07001023 }
1024
Niklas Söderlund52608ba2012-08-08 12:30:56 -03001025
1026 /* device 19, func 0, Error injection */
1027 einj = pci_get_device_func(PCI_VENDOR_ID_INTEL,
1028 PCI_DEVICE_ID_INTEL_5100_19, 0);
1029 if (!einj) {
1030 ret = -ENODEV;
1031 goto bail_einj;
1032 }
1033
1034 rc = pci_enable_device(einj);
1035 if (rc < 0) {
1036 ret = rc;
1037 goto bail_disable_einj;
1038 }
1039
1040
Mauro Carvalho Chehabfd687502012-03-16 07:44:18 -03001041 mci->pdev = &pdev->dev;
Arthur Jones8f421c592008-07-25 01:49:04 -07001042
1043 priv = mci->pvt_info;
Nils Carlsonb18dfd02009-12-15 16:47:40 -08001044 priv->ranksperchan = ranksperch;
Arthur Jones8f421c592008-07-25 01:49:04 -07001045 priv->mc = pdev;
1046 priv->ch0mm = ch0mm;
1047 priv->ch1mm = ch1mm;
Niklas Söderlund52608ba2012-08-08 12:30:56 -03001048 priv->einj = einj;
Arthur Jones8f421c592008-07-25 01:49:04 -07001049
Nils Carlson295439f2009-12-15 16:47:42 -08001050 INIT_DELAYED_WORK(&(priv->i5100_scrubbing), i5100_refresh_scrubbing);
1051
1052 /* If scrubbing was already enabled by the bios, start maintaining it */
1053 pci_read_config_dword(pdev, I5100_MC, &dw);
1054 if (i5100_mc_scrben(dw)) {
1055 priv->scrub_enable = 1;
1056 schedule_delayed_work(&(priv->i5100_scrubbing),
1057 I5100_SCRUB_REFRESH_RATE);
1058 }
1059
Arthur Jones8f421c592008-07-25 01:49:04 -07001060 i5100_init_dimm_layout(pdev, mci);
1061 i5100_init_interleaving(pdev, mci);
1062
1063 mci->mtype_cap = MEM_FLAG_FB_DDR2;
1064 mci->edac_ctl_cap = EDAC_FLAG_SECDED;
1065 mci->edac_cap = EDAC_FLAG_SECDED;
1066 mci->mod_name = "i5100_edac.c";
1067 mci->mod_ver = "not versioned";
1068 mci->ctl_name = "i5100";
1069 mci->dev_name = pci_name(pdev);
Arthur Jonesb238e572008-07-25 01:49:08 -07001070 mci->ctl_page_to_phys = NULL;
Arthur Jones8f421c592008-07-25 01:49:04 -07001071
1072 mci->edac_check = i5100_check_error;
Nils Carlson295439f2009-12-15 16:47:42 -08001073 mci->set_sdram_scrub_rate = i5100_set_scrub_rate;
1074 mci->get_sdram_scrub_rate = i5100_get_scrub_rate;
Arthur Jones8f421c592008-07-25 01:49:04 -07001075
Niklas Söderlund53ceafd2012-08-08 12:30:57 -03001076 priv->inject_channel = 0;
1077 priv->inject_hlinesel = 0;
1078 priv->inject_deviceptr1 = 0;
1079 priv->inject_deviceptr2 = 0;
1080 priv->inject_eccmask1 = 0;
1081 priv->inject_eccmask2 = 0;
1082
Arthur Jones8f421c592008-07-25 01:49:04 -07001083 i5100_init_csrows(mci);
1084
1085 /* this strange construction seems to be in every driver, dunno why */
1086 switch (edac_op_state) {
1087 case EDAC_OPSTATE_POLL:
1088 case EDAC_OPSTATE_NMI:
1089 break;
1090 default:
1091 edac_op_state = EDAC_OPSTATE_POLL;
1092 break;
1093 }
1094
1095 if (edac_mc_add_mc(mci)) {
1096 ret = -ENODEV;
Nils Carlson295439f2009-12-15 16:47:42 -08001097 goto bail_scrub;
Arthur Jones8f421c592008-07-25 01:49:04 -07001098 }
1099
Arthur Jonesb238e572008-07-25 01:49:08 -07001100 return ret;
Arthur Jones8f421c592008-07-25 01:49:04 -07001101
Nils Carlson295439f2009-12-15 16:47:42 -08001102bail_scrub:
1103 priv->scrub_enable = 0;
1104 cancel_delayed_work_sync(&(priv->i5100_scrubbing));
Arthur Jones8f421c592008-07-25 01:49:04 -07001105 edac_mc_free(mci);
1106
Niklas Söderlund52608ba2012-08-08 12:30:56 -03001107bail_disable_einj:
1108 pci_disable_device(einj);
1109
1110bail_einj:
1111 pci_dev_put(einj);
1112
Arthur Jonesb238e572008-07-25 01:49:08 -07001113bail_disable_ch1:
1114 pci_disable_device(ch1mm);
1115
Arthur Jones8f421c592008-07-25 01:49:04 -07001116bail_ch1:
1117 pci_dev_put(ch1mm);
1118
Arthur Jonesb238e572008-07-25 01:49:08 -07001119bail_disable_ch0:
1120 pci_disable_device(ch0mm);
1121
Arthur Jones8f421c592008-07-25 01:49:04 -07001122bail_ch0:
1123 pci_dev_put(ch0mm);
1124
Arthur Jonesb238e572008-07-25 01:49:08 -07001125bail_pdev:
1126 pci_disable_device(pdev);
1127
Arthur Jones8f421c592008-07-25 01:49:04 -07001128bail:
1129 return ret;
1130}
1131
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -08001132static void i5100_remove_one(struct pci_dev *pdev)
Arthur Jones8f421c592008-07-25 01:49:04 -07001133{
1134 struct mem_ctl_info *mci;
1135 struct i5100_priv *priv;
1136
1137 mci = edac_mc_del_mc(&pdev->dev);
1138
1139 if (!mci)
1140 return;
1141
1142 priv = mci->pvt_info;
Nils Carlson295439f2009-12-15 16:47:42 -08001143
1144 priv->scrub_enable = 0;
1145 cancel_delayed_work_sync(&(priv->i5100_scrubbing));
1146
Arthur Jonesb238e572008-07-25 01:49:08 -07001147 pci_disable_device(pdev);
1148 pci_disable_device(priv->ch0mm);
1149 pci_disable_device(priv->ch1mm);
Niklas Söderlund52608ba2012-08-08 12:30:56 -03001150 pci_disable_device(priv->einj);
Arthur Jones8f421c592008-07-25 01:49:04 -07001151 pci_dev_put(priv->ch0mm);
1152 pci_dev_put(priv->ch1mm);
Niklas Söderlund52608ba2012-08-08 12:30:56 -03001153 pci_dev_put(priv->einj);
Arthur Jones8f421c592008-07-25 01:49:04 -07001154
1155 edac_mc_free(mci);
1156}
1157
Lionel Debroux36c46f32012-02-27 07:41:47 +01001158static DEFINE_PCI_DEVICE_TABLE(i5100_pci_tbl) = {
Arthur Jones8f421c592008-07-25 01:49:04 -07001159 /* Device 16, Function 0, Channel 0 Memory Map, Error Flag/Mask, ... */
1160 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5100_16) },
1161 { 0, }
1162};
1163MODULE_DEVICE_TABLE(pci, i5100_pci_tbl);
1164
1165static struct pci_driver i5100_driver = {
1166 .name = KBUILD_BASENAME,
1167 .probe = i5100_init_one,
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -08001168 .remove = i5100_remove_one,
Arthur Jones8f421c592008-07-25 01:49:04 -07001169 .id_table = i5100_pci_tbl,
1170};
1171
1172static int __init i5100_init(void)
1173{
1174 int pci_rc;
1175
1176 pci_rc = pci_register_driver(&i5100_driver);
1177
1178 return (pci_rc < 0) ? pci_rc : 0;
1179}
1180
1181static void __exit i5100_exit(void)
1182{
1183 pci_unregister_driver(&i5100_driver);
1184}
1185
1186module_init(i5100_init);
1187module_exit(i5100_exit);
1188
1189MODULE_LICENSE("GPL");
1190MODULE_AUTHOR
1191 ("Arthur Jones <ajones@riverbed.com>");
1192MODULE_DESCRIPTION("MC Driver for Intel I5100 memory controllers");