blob: 324a46b8479b0f96879ac2067b56a0c456621ebc [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
Borislav Petkov52019e42015-09-22 12:36:15 +020032#include "edac_module.h"
Arthur Jones8f421c592008-07-25 01:49:04 -070033
Arthur Jonesb238e572008-07-25 01:49:08 -070034/* register addresses */
Arthur Jones8f421c592008-07-25 01:49:04 -070035
36/* device 16, func 1 */
Arthur Jones43920a52008-07-25 01:49:06 -070037#define I5100_MC 0x40 /* Memory Control Register */
Nils Carlson295439f2009-12-15 16:47:42 -080038#define I5100_MC_SCRBEN_MASK (1 << 7)
39#define I5100_MC_SCRBDONE_MASK (1 << 4)
Arthur Jones8f421c592008-07-25 01:49:04 -070040#define I5100_MS 0x44 /* Memory Status Register */
41#define I5100_SPDDATA 0x48 /* Serial Presence Detect Status Reg */
Arthur Jones8f421c592008-07-25 01:49:04 -070042#define I5100_SPDCMD 0x4c /* Serial Presence Detect Command Reg */
Arthur Jones8f421c592008-07-25 01:49:04 -070043#define I5100_TOLM 0x6c /* Top of Low Memory */
Arthur Jones8f421c592008-07-25 01:49:04 -070044#define I5100_MIR0 0x80 /* Memory Interleave Range 0 */
45#define I5100_MIR1 0x84 /* Memory Interleave Range 1 */
46#define I5100_AMIR_0 0x8c /* Adjusted Memory Interleave Range 0 */
47#define I5100_AMIR_1 0x90 /* Adjusted Memory Interleave Range 1 */
Arthur Jones8f421c592008-07-25 01:49:04 -070048#define I5100_FERR_NF_MEM 0xa0 /* MC First Non Fatal Errors */
Arthur Jones8f421c592008-07-25 01:49:04 -070049#define I5100_FERR_NF_MEM_M16ERR_MASK (1 << 16)
50#define I5100_FERR_NF_MEM_M15ERR_MASK (1 << 15)
51#define I5100_FERR_NF_MEM_M14ERR_MASK (1 << 14)
Arthur Jonesf7952ff2008-07-25 01:49:05 -070052#define I5100_FERR_NF_MEM_M12ERR_MASK (1 << 12)
53#define I5100_FERR_NF_MEM_M11ERR_MASK (1 << 11)
54#define I5100_FERR_NF_MEM_M10ERR_MASK (1 << 10)
55#define I5100_FERR_NF_MEM_M6ERR_MASK (1 << 6)
56#define I5100_FERR_NF_MEM_M5ERR_MASK (1 << 5)
57#define I5100_FERR_NF_MEM_M4ERR_MASK (1 << 4)
Niklas Söderlundb6378cb2012-02-17 07:36:54 -030058#define I5100_FERR_NF_MEM_M1ERR_MASK (1 << 1)
Arthur Jones8f421c592008-07-25 01:49:04 -070059#define I5100_FERR_NF_MEM_ANY_MASK \
60 (I5100_FERR_NF_MEM_M16ERR_MASK | \
61 I5100_FERR_NF_MEM_M15ERR_MASK | \
Arthur Jonesf7952ff2008-07-25 01:49:05 -070062 I5100_FERR_NF_MEM_M14ERR_MASK | \
63 I5100_FERR_NF_MEM_M12ERR_MASK | \
64 I5100_FERR_NF_MEM_M11ERR_MASK | \
65 I5100_FERR_NF_MEM_M10ERR_MASK | \
66 I5100_FERR_NF_MEM_M6ERR_MASK | \
67 I5100_FERR_NF_MEM_M5ERR_MASK | \
68 I5100_FERR_NF_MEM_M4ERR_MASK | \
69 I5100_FERR_NF_MEM_M1ERR_MASK)
Arthur Jones8f421c592008-07-25 01:49:04 -070070#define I5100_NERR_NF_MEM 0xa4 /* MC Next Non-Fatal Errors */
Arthur Jones178d5a72008-07-25 01:49:06 -070071#define I5100_EMASK_MEM 0xa8 /* MC Error Mask Register */
Niklas Söderlund53ceafd2012-08-08 12:30:57 -030072#define I5100_MEM0EINJMSK0 0x200 /* Injection Mask0 Register Channel 0 */
73#define I5100_MEM1EINJMSK0 0x208 /* Injection Mask0 Register Channel 1 */
74#define I5100_MEMXEINJMSK0_EINJEN (1 << 27)
75#define I5100_MEM0EINJMSK1 0x204 /* Injection Mask1 Register Channel 0 */
76#define I5100_MEM1EINJMSK1 0x206 /* Injection Mask1 Register Channel 1 */
77
78/* Device 19, Function 0 */
79#define I5100_DINJ0 0x9a
Arthur Jones8f421c592008-07-25 01:49:04 -070080
81/* device 21 and 22, func 0 */
82#define I5100_MTR_0 0x154 /* Memory Technology Registers 0-3 */
83#define I5100_DMIR 0x15c /* DIMM Interleave Range */
Arthur Jones8f421c592008-07-25 01:49:04 -070084#define I5100_VALIDLOG 0x18c /* Valid Log Markers */
Arthur Jones8f421c592008-07-25 01:49:04 -070085#define I5100_NRECMEMA 0x190 /* Non-Recoverable Memory Error Log Reg A */
Arthur Jones8f421c592008-07-25 01:49:04 -070086#define I5100_NRECMEMB 0x194 /* Non-Recoverable Memory Error Log Reg B */
Arthur Jones8f421c592008-07-25 01:49:04 -070087#define I5100_REDMEMA 0x198 /* Recoverable Memory Data Error Log Reg A */
Arthur Jones8f421c592008-07-25 01:49:04 -070088#define I5100_REDMEMB 0x19c /* Recoverable Memory Data Error Log Reg B */
Arthur Jones8f421c592008-07-25 01:49:04 -070089#define I5100_RECMEMA 0x1a0 /* Recoverable Memory Error Log Reg A */
Arthur Jones8f421c592008-07-25 01:49:04 -070090#define I5100_RECMEMB 0x1a4 /* Recoverable Memory Error Log Reg B */
Arthur Jonesb238e572008-07-25 01:49:08 -070091#define I5100_MTR_4 0x1b0 /* Memory Technology Registers 4,5 */
92
93/* bit field accessors */
94
Nils Carlson295439f2009-12-15 16:47:42 -080095static inline u32 i5100_mc_scrben(u32 mc)
96{
97 return mc >> 7 & 1;
98}
99
Arthur Jonesb238e572008-07-25 01:49:08 -0700100static inline u32 i5100_mc_errdeten(u32 mc)
101{
102 return mc >> 5 & 1;
103}
104
Nils Carlson295439f2009-12-15 16:47:42 -0800105static inline u32 i5100_mc_scrbdone(u32 mc)
106{
107 return mc >> 4 & 1;
108}
109
Arthur Jonesb238e572008-07-25 01:49:08 -0700110static inline u16 i5100_spddata_rdo(u16 a)
111{
112 return a >> 15 & 1;
113}
114
115static inline u16 i5100_spddata_sbe(u16 a)
116{
117 return a >> 13 & 1;
118}
119
120static inline u16 i5100_spddata_busy(u16 a)
121{
122 return a >> 12 & 1;
123}
124
125static inline u16 i5100_spddata_data(u16 a)
126{
127 return a & ((1 << 8) - 1);
128}
129
130static inline u32 i5100_spdcmd_create(u32 dti, u32 ckovrd, u32 sa, u32 ba,
131 u32 data, u32 cmd)
132{
133 return ((dti & ((1 << 4) - 1)) << 28) |
134 ((ckovrd & 1) << 27) |
135 ((sa & ((1 << 3) - 1)) << 24) |
136 ((ba & ((1 << 8) - 1)) << 16) |
137 ((data & ((1 << 8) - 1)) << 8) |
138 (cmd & 1);
139}
140
141static inline u16 i5100_tolm_tolm(u16 a)
142{
143 return a >> 12 & ((1 << 4) - 1);
144}
145
146static inline u16 i5100_mir_limit(u16 a)
147{
148 return a >> 4 & ((1 << 12) - 1);
149}
150
151static inline u16 i5100_mir_way1(u16 a)
152{
153 return a >> 1 & 1;
154}
155
156static inline u16 i5100_mir_way0(u16 a)
157{
158 return a & 1;
159}
160
161static inline u32 i5100_ferr_nf_mem_chan_indx(u32 a)
162{
163 return a >> 28 & 1;
164}
165
166static inline u32 i5100_ferr_nf_mem_any(u32 a)
167{
168 return a & I5100_FERR_NF_MEM_ANY_MASK;
169}
170
171static inline u32 i5100_nerr_nf_mem_any(u32 a)
172{
173 return i5100_ferr_nf_mem_any(a);
174}
175
176static inline u32 i5100_dmir_limit(u32 a)
177{
178 return a >> 16 & ((1 << 11) - 1);
179}
180
181static inline u32 i5100_dmir_rank(u32 a, u32 i)
182{
183 return a >> (4 * i) & ((1 << 2) - 1);
184}
185
186static inline u16 i5100_mtr_present(u16 a)
187{
188 return a >> 10 & 1;
189}
190
191static inline u16 i5100_mtr_ethrottle(u16 a)
192{
193 return a >> 9 & 1;
194}
195
196static inline u16 i5100_mtr_width(u16 a)
197{
198 return a >> 8 & 1;
199}
200
201static inline u16 i5100_mtr_numbank(u16 a)
202{
203 return a >> 6 & 1;
204}
205
206static inline u16 i5100_mtr_numrow(u16 a)
207{
208 return a >> 2 & ((1 << 2) - 1);
209}
210
211static inline u16 i5100_mtr_numcol(u16 a)
212{
213 return a & ((1 << 2) - 1);
214}
215
216
217static inline u32 i5100_validlog_redmemvalid(u32 a)
218{
219 return a >> 2 & 1;
220}
221
222static inline u32 i5100_validlog_recmemvalid(u32 a)
223{
224 return a >> 1 & 1;
225}
226
227static inline u32 i5100_validlog_nrecmemvalid(u32 a)
228{
229 return a & 1;
230}
231
232static inline u32 i5100_nrecmema_merr(u32 a)
233{
234 return a >> 15 & ((1 << 5) - 1);
235}
236
237static inline u32 i5100_nrecmema_bank(u32 a)
238{
239 return a >> 12 & ((1 << 3) - 1);
240}
241
242static inline u32 i5100_nrecmema_rank(u32 a)
243{
244 return a >> 8 & ((1 << 3) - 1);
245}
246
247static inline u32 i5100_nrecmema_dm_buf_id(u32 a)
248{
249 return a & ((1 << 8) - 1);
250}
251
252static inline u32 i5100_nrecmemb_cas(u32 a)
253{
254 return a >> 16 & ((1 << 13) - 1);
255}
256
257static inline u32 i5100_nrecmemb_ras(u32 a)
258{
259 return a & ((1 << 16) - 1);
260}
261
Arthur Jonesb238e572008-07-25 01:49:08 -0700262static inline u32 i5100_recmema_merr(u32 a)
263{
264 return i5100_nrecmema_merr(a);
265}
266
267static inline u32 i5100_recmema_bank(u32 a)
268{
269 return i5100_nrecmema_bank(a);
270}
271
272static inline u32 i5100_recmema_rank(u32 a)
273{
274 return i5100_nrecmema_rank(a);
275}
276
Arthur Jonesb238e572008-07-25 01:49:08 -0700277static inline u32 i5100_recmemb_cas(u32 a)
278{
279 return i5100_nrecmemb_cas(a);
280}
281
282static inline u32 i5100_recmemb_ras(u32 a)
283{
284 return i5100_nrecmemb_ras(a);
285}
Arthur Jones8f421c592008-07-25 01:49:04 -0700286
287/* some generic limits */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800288#define I5100_MAX_RANKS_PER_CHAN 6
289#define I5100_CHANNELS 2
Arthur Jones8f421c592008-07-25 01:49:04 -0700290#define I5100_MAX_RANKS_PER_DIMM 4
291#define I5100_DIMM_ADDR_LINES (6 - 3) /* 64 bits / 8 bits per byte */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800292#define I5100_MAX_DIMM_SLOTS_PER_CHAN 4
Arthur Jones8f421c592008-07-25 01:49:04 -0700293#define I5100_MAX_RANK_INTERLEAVE 4
294#define I5100_MAX_DMIRS 5
Nils Carlson295439f2009-12-15 16:47:42 -0800295#define I5100_SCRUB_REFRESH_RATE (5 * 60 * HZ)
Arthur Jones8f421c592008-07-25 01:49:04 -0700296
297struct i5100_priv {
298 /* ranks on each dimm -- 0 maps to not present -- obtained via SPD */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800299 int dimm_numrank[I5100_CHANNELS][I5100_MAX_DIMM_SLOTS_PER_CHAN];
Arthur Jones8f421c592008-07-25 01:49:04 -0700300
301 /*
302 * mainboard chip select map -- maps i5100 chip selects to
303 * DIMM slot chip selects. In the case of only 4 ranks per
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800304 * channel, the mapping is fairly obvious but not unique.
305 * we map -1 -> NC and assume both channels use the same
Arthur Jones8f421c592008-07-25 01:49:04 -0700306 * map...
307 *
308 */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800309 int dimm_csmap[I5100_MAX_DIMM_SLOTS_PER_CHAN][I5100_MAX_RANKS_PER_DIMM];
Arthur Jones8f421c592008-07-25 01:49:04 -0700310
311 /* memory interleave range */
312 struct {
313 u64 limit;
314 unsigned way[2];
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800315 } mir[I5100_CHANNELS];
Arthur Jones8f421c592008-07-25 01:49:04 -0700316
317 /* adjusted memory interleave range register */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800318 unsigned amir[I5100_CHANNELS];
Arthur Jones8f421c592008-07-25 01:49:04 -0700319
320 /* dimm interleave range */
321 struct {
322 unsigned rank[I5100_MAX_RANK_INTERLEAVE];
323 u64 limit;
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800324 } dmir[I5100_CHANNELS][I5100_MAX_DMIRS];
Arthur Jones8f421c592008-07-25 01:49:04 -0700325
326 /* memory technology registers... */
327 struct {
328 unsigned present; /* 0 or 1 */
329 unsigned ethrottle; /* 0 or 1 */
330 unsigned width; /* 4 or 8 bits */
331 unsigned numbank; /* 2 or 3 lines */
332 unsigned numrow; /* 13 .. 16 lines */
333 unsigned numcol; /* 11 .. 12 lines */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800334 } mtr[I5100_CHANNELS][I5100_MAX_RANKS_PER_CHAN];
Arthur Jones8f421c592008-07-25 01:49:04 -0700335
336 u64 tolm; /* top of low memory in bytes */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800337 unsigned ranksperchan; /* number of ranks per channel */
Arthur Jones8f421c592008-07-25 01:49:04 -0700338
339 struct pci_dev *mc; /* device 16 func 1 */
Niklas Söderlund52608ba2012-08-08 12:30:56 -0300340 struct pci_dev *einj; /* device 19 func 0 */
Arthur Jones8f421c592008-07-25 01:49:04 -0700341 struct pci_dev *ch0mm; /* device 21 func 0 */
342 struct pci_dev *ch1mm; /* device 22 func 0 */
Nils Carlson295439f2009-12-15 16:47:42 -0800343
344 struct delayed_work i5100_scrubbing;
345 int scrub_enable;
Niklas Söderlund53ceafd2012-08-08 12:30:57 -0300346
347 /* Error injection */
348 u8 inject_channel;
349 u8 inject_hlinesel;
350 u8 inject_deviceptr1;
351 u8 inject_deviceptr2;
352 u16 inject_eccmask1;
353 u16 inject_eccmask2;
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -0300354
355 struct dentry *debugfs;
Arthur Jones8f421c592008-07-25 01:49:04 -0700356};
357
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -0300358static struct dentry *i5100_debugfs;
359
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800360/* map a rank/chan to a slot number on the mainboard */
Arthur Jones8f421c592008-07-25 01:49:04 -0700361static int i5100_rank_to_slot(const struct mem_ctl_info *mci,
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800362 int chan, int rank)
Arthur Jones8f421c592008-07-25 01:49:04 -0700363{
364 const struct i5100_priv *priv = mci->pvt_info;
365 int i;
366
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800367 for (i = 0; i < I5100_MAX_DIMM_SLOTS_PER_CHAN; i++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700368 int j;
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800369 const int numrank = priv->dimm_numrank[chan][i];
Arthur Jones8f421c592008-07-25 01:49:04 -0700370
371 for (j = 0; j < numrank; j++)
372 if (priv->dimm_csmap[i][j] == rank)
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800373 return i * 2 + chan;
Arthur Jones8f421c592008-07-25 01:49:04 -0700374 }
375
376 return -1;
377}
378
Arthur Jones8f421c592008-07-25 01:49:04 -0700379static const char *i5100_err_msg(unsigned err)
380{
Arthur Jonesb238e572008-07-25 01:49:08 -0700381 static const char *merrs[] = {
Arthur Jones8f421c592008-07-25 01:49:04 -0700382 "unknown", /* 0 */
383 "uncorrectable data ECC on replay", /* 1 */
384 "unknown", /* 2 */
385 "unknown", /* 3 */
386 "aliased uncorrectable demand data ECC", /* 4 */
387 "aliased uncorrectable spare-copy data ECC", /* 5 */
388 "aliased uncorrectable patrol data ECC", /* 6 */
389 "unknown", /* 7 */
390 "unknown", /* 8 */
391 "unknown", /* 9 */
392 "non-aliased uncorrectable demand data ECC", /* 10 */
393 "non-aliased uncorrectable spare-copy data ECC", /* 11 */
394 "non-aliased uncorrectable patrol data ECC", /* 12 */
395 "unknown", /* 13 */
396 "correctable demand data ECC", /* 14 */
397 "correctable spare-copy data ECC", /* 15 */
398 "correctable patrol data ECC", /* 16 */
399 "unknown", /* 17 */
400 "SPD protocol error", /* 18 */
401 "unknown", /* 19 */
402 "spare copy initiated", /* 20 */
403 "spare copy completed", /* 21 */
404 };
405 unsigned i;
406
407 for (i = 0; i < ARRAY_SIZE(merrs); i++)
408 if (1 << i & err)
409 return merrs[i];
410
411 return "none";
412}
413
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800414/* convert csrow index into a rank (per channel -- 0..5) */
Robert Richterd55c79a2019-09-02 12:33:41 +0000415static unsigned int i5100_csrow_to_rank(const struct mem_ctl_info *mci,
416 unsigned int csrow)
Arthur Jones8f421c592008-07-25 01:49:04 -0700417{
418 const struct i5100_priv *priv = mci->pvt_info;
419
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800420 return csrow % priv->ranksperchan;
Arthur Jones8f421c592008-07-25 01:49:04 -0700421}
422
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800423/* convert csrow index into a channel (0..1) */
Robert Richterd55c79a2019-09-02 12:33:41 +0000424static unsigned int i5100_csrow_to_chan(const struct mem_ctl_info *mci,
425 unsigned int csrow)
Arthur Jones8f421c592008-07-25 01:49:04 -0700426{
427 const struct i5100_priv *priv = mci->pvt_info;
428
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800429 return csrow / priv->ranksperchan;
Arthur Jones8f421c592008-07-25 01:49:04 -0700430}
431
Arthur Jones8f421c592008-07-25 01:49:04 -0700432static void i5100_handle_ce(struct mem_ctl_info *mci,
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800433 int chan,
Arthur Jones8f421c592008-07-25 01:49:04 -0700434 unsigned bank,
435 unsigned rank,
436 unsigned long syndrome,
437 unsigned cas,
438 unsigned ras,
439 const char *msg)
440{
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300441 char detail[80];
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300442
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300443 /* Form out message */
444 snprintf(detail, sizeof(detail),
445 "bank %u, cas %u, ras %u\n",
446 bank, cas, ras);
Arthur Jones8f421c592008-07-25 01:49:04 -0700447
Mauro Carvalho Chehab9eb07a72012-06-04 13:27:43 -0300448 edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, 1,
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300449 0, 0, syndrome,
450 chan, rank, -1,
Mauro Carvalho Chehab03f7eae2012-06-04 11:29:25 -0300451 msg, detail);
Arthur Jones8f421c592008-07-25 01:49:04 -0700452}
453
454static void i5100_handle_ue(struct mem_ctl_info *mci,
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800455 int chan,
Arthur Jones8f421c592008-07-25 01:49:04 -0700456 unsigned bank,
457 unsigned rank,
458 unsigned long syndrome,
459 unsigned cas,
460 unsigned ras,
461 const char *msg)
462{
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300463 char detail[80];
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300464
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300465 /* Form out message */
466 snprintf(detail, sizeof(detail),
467 "bank %u, cas %u, ras %u\n",
468 bank, cas, ras);
Arthur Jones8f421c592008-07-25 01:49:04 -0700469
Mauro Carvalho Chehab9eb07a72012-06-04 13:27:43 -0300470 edac_mc_handle_error(HW_EVENT_ERR_UNCORRECTED, mci, 1,
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300471 0, 0, syndrome,
472 chan, rank, -1,
Mauro Carvalho Chehab03f7eae2012-06-04 11:29:25 -0300473 msg, detail);
Arthur Jones8f421c592008-07-25 01:49:04 -0700474}
475
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800476static void i5100_read_log(struct mem_ctl_info *mci, int chan,
Arthur Jones8f421c592008-07-25 01:49:04 -0700477 u32 ferr, u32 nerr)
478{
479 struct i5100_priv *priv = mci->pvt_info;
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800480 struct pci_dev *pdev = (chan) ? priv->ch1mm : priv->ch0mm;
Arthur Jones8f421c592008-07-25 01:49:04 -0700481 u32 dw;
482 u32 dw2;
483 unsigned syndrome = 0;
Arthur Jones8f421c592008-07-25 01:49:04 -0700484 unsigned merr;
485 unsigned bank;
486 unsigned rank;
487 unsigned cas;
488 unsigned ras;
489
490 pci_read_config_dword(pdev, I5100_VALIDLOG, &dw);
491
Arthur Jonesb238e572008-07-25 01:49:08 -0700492 if (i5100_validlog_redmemvalid(dw)) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700493 pci_read_config_dword(pdev, I5100_REDMEMA, &dw2);
Arthur Jonesb238e572008-07-25 01:49:08 -0700494 syndrome = dw2;
Arthur Jones8f421c592008-07-25 01:49:04 -0700495 pci_read_config_dword(pdev, I5100_REDMEMB, &dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700496 }
497
Arthur Jonesb238e572008-07-25 01:49:08 -0700498 if (i5100_validlog_recmemvalid(dw)) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700499 const char *msg;
500
501 pci_read_config_dword(pdev, I5100_RECMEMA, &dw2);
Arthur Jonesb238e572008-07-25 01:49:08 -0700502 merr = i5100_recmema_merr(dw2);
503 bank = i5100_recmema_bank(dw2);
504 rank = i5100_recmema_rank(dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700505
506 pci_read_config_dword(pdev, I5100_RECMEMB, &dw2);
Arthur Jonesb238e572008-07-25 01:49:08 -0700507 cas = i5100_recmemb_cas(dw2);
508 ras = i5100_recmemb_ras(dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700509
510 /* FIXME: not really sure if this is what merr is...
511 */
512 if (!merr)
513 msg = i5100_err_msg(ferr);
514 else
515 msg = i5100_err_msg(nerr);
516
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800517 i5100_handle_ce(mci, chan, bank, rank, syndrome, cas, ras, msg);
Arthur Jones8f421c592008-07-25 01:49:04 -0700518 }
519
Arthur Jonesb238e572008-07-25 01:49:08 -0700520 if (i5100_validlog_nrecmemvalid(dw)) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700521 const char *msg;
522
523 pci_read_config_dword(pdev, I5100_NRECMEMA, &dw2);
Arthur Jonesb238e572008-07-25 01:49:08 -0700524 merr = i5100_nrecmema_merr(dw2);
525 bank = i5100_nrecmema_bank(dw2);
526 rank = i5100_nrecmema_rank(dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700527
528 pci_read_config_dword(pdev, I5100_NRECMEMB, &dw2);
Arthur Jonesb238e572008-07-25 01:49:08 -0700529 cas = i5100_nrecmemb_cas(dw2);
530 ras = i5100_nrecmemb_ras(dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700531
532 /* FIXME: not really sure if this is what merr is...
533 */
534 if (!merr)
535 msg = i5100_err_msg(ferr);
536 else
537 msg = i5100_err_msg(nerr);
538
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800539 i5100_handle_ue(mci, chan, bank, rank, syndrome, cas, ras, msg);
Arthur Jones8f421c592008-07-25 01:49:04 -0700540 }
541
542 pci_write_config_dword(pdev, I5100_VALIDLOG, dw);
543}
544
545static void i5100_check_error(struct mem_ctl_info *mci)
546{
547 struct i5100_priv *priv = mci->pvt_info;
Niklas Söderlunddf95e422011-12-09 13:12:15 -0300548 u32 dw, dw2;
Arthur Jones8f421c592008-07-25 01:49:04 -0700549
550 pci_read_config_dword(priv->mc, I5100_FERR_NF_MEM, &dw);
Arthur Jonesb238e572008-07-25 01:49:08 -0700551 if (i5100_ferr_nf_mem_any(dw)) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700552
553 pci_read_config_dword(priv->mc, I5100_NERR_NF_MEM, &dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700554
Arthur Jonesb238e572008-07-25 01:49:08 -0700555 i5100_read_log(mci, i5100_ferr_nf_mem_chan_indx(dw),
556 i5100_ferr_nf_mem_any(dw),
557 i5100_nerr_nf_mem_any(dw2));
Niklas Söderlunddf95e422011-12-09 13:12:15 -0300558
559 pci_write_config_dword(priv->mc, I5100_NERR_NF_MEM, dw2);
Arthur Jones8f421c592008-07-25 01:49:04 -0700560 }
Niklas Söderlunddf95e422011-12-09 13:12:15 -0300561 pci_write_config_dword(priv->mc, I5100_FERR_NF_MEM, dw);
Arthur Jones8f421c592008-07-25 01:49:04 -0700562}
563
Nils Carlson295439f2009-12-15 16:47:42 -0800564/* The i5100 chipset will scrub the entire memory once, then
565 * set a done bit. Continuous scrubbing is achieved by enqueing
566 * delayed work to a workqueue, checking every few minutes if
567 * the scrubbing has completed and if so reinitiating it.
568 */
569
570static void i5100_refresh_scrubbing(struct work_struct *work)
571{
Geliang Tang1cac5502016-01-01 22:59:07 +0800572 struct delayed_work *i5100_scrubbing = to_delayed_work(work);
Nils Carlson295439f2009-12-15 16:47:42 -0800573 struct i5100_priv *priv = container_of(i5100_scrubbing,
574 struct i5100_priv,
575 i5100_scrubbing);
576 u32 dw;
577
578 pci_read_config_dword(priv->mc, I5100_MC, &dw);
579
580 if (priv->scrub_enable) {
581
582 pci_read_config_dword(priv->mc, I5100_MC, &dw);
583
584 if (i5100_mc_scrbdone(dw)) {
585 dw |= I5100_MC_SCRBEN_MASK;
586 pci_write_config_dword(priv->mc, I5100_MC, dw);
587 pci_read_config_dword(priv->mc, I5100_MC, &dw);
588 }
589
590 schedule_delayed_work(&(priv->i5100_scrubbing),
591 I5100_SCRUB_REFRESH_RATE);
592 }
593}
594/*
595 * The bandwidth is based on experimentation, feel free to refine it.
596 */
Borislav Petkoveba042a2010-05-25 18:21:07 +0200597static int i5100_set_scrub_rate(struct mem_ctl_info *mci, u32 bandwidth)
Nils Carlson295439f2009-12-15 16:47:42 -0800598{
599 struct i5100_priv *priv = mci->pvt_info;
600 u32 dw;
601
602 pci_read_config_dword(priv->mc, I5100_MC, &dw);
Borislav Petkoveba042a2010-05-25 18:21:07 +0200603 if (bandwidth) {
Nils Carlson295439f2009-12-15 16:47:42 -0800604 priv->scrub_enable = 1;
605 dw |= I5100_MC_SCRBEN_MASK;
606 schedule_delayed_work(&(priv->i5100_scrubbing),
607 I5100_SCRUB_REFRESH_RATE);
608 } else {
609 priv->scrub_enable = 0;
610 dw &= ~I5100_MC_SCRBEN_MASK;
611 cancel_delayed_work(&(priv->i5100_scrubbing));
612 }
613 pci_write_config_dword(priv->mc, I5100_MC, dw);
614
615 pci_read_config_dword(priv->mc, I5100_MC, &dw);
616
Borislav Petkoveba042a2010-05-25 18:21:07 +0200617 bandwidth = 5900000 * i5100_mc_scrben(dw);
Nils Carlson295439f2009-12-15 16:47:42 -0800618
Borislav Petkov39094442010-11-24 19:52:09 +0100619 return bandwidth;
Nils Carlson295439f2009-12-15 16:47:42 -0800620}
621
Borislav Petkov39094442010-11-24 19:52:09 +0100622static int i5100_get_scrub_rate(struct mem_ctl_info *mci)
Nils Carlson295439f2009-12-15 16:47:42 -0800623{
624 struct i5100_priv *priv = mci->pvt_info;
625 u32 dw;
626
627 pci_read_config_dword(priv->mc, I5100_MC, &dw);
628
Borislav Petkov39094442010-11-24 19:52:09 +0100629 return 5900000 * i5100_mc_scrben(dw);
Nils Carlson295439f2009-12-15 16:47:42 -0800630}
631
Arthur Jones8f421c592008-07-25 01:49:04 -0700632static struct pci_dev *pci_get_device_func(unsigned vendor,
633 unsigned device,
634 unsigned func)
635{
636 struct pci_dev *ret = NULL;
637
638 while (1) {
639 ret = pci_get_device(vendor, device, ret);
640
641 if (!ret)
642 break;
643
644 if (PCI_FUNC(ret->devfn) == func)
645 break;
646 }
647
648 return ret;
649}
650
Robert Richterd55c79a2019-09-02 12:33:41 +0000651static unsigned long i5100_npages(struct mem_ctl_info *mci, unsigned int csrow)
Arthur Jones8f421c592008-07-25 01:49:04 -0700652{
653 struct i5100_priv *priv = mci->pvt_info;
Robert Richterd55c79a2019-09-02 12:33:41 +0000654 const unsigned int chan_rank = i5100_csrow_to_rank(mci, csrow);
655 const unsigned int chan = i5100_csrow_to_chan(mci, csrow);
Arthur Jones8f421c592008-07-25 01:49:04 -0700656 unsigned addr_lines;
657
658 /* dimm present? */
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800659 if (!priv->mtr[chan][chan_rank].present)
Arthur Jones8f421c592008-07-25 01:49:04 -0700660 return 0ULL;
661
662 addr_lines =
663 I5100_DIMM_ADDR_LINES +
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800664 priv->mtr[chan][chan_rank].numcol +
665 priv->mtr[chan][chan_rank].numrow +
666 priv->mtr[chan][chan_rank].numbank;
Arthur Jones8f421c592008-07-25 01:49:04 -0700667
668 return (unsigned long)
669 ((unsigned long long) (1ULL << addr_lines) / PAGE_SIZE);
670}
671
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800672static void i5100_init_mtr(struct mem_ctl_info *mci)
Arthur Jones8f421c592008-07-25 01:49:04 -0700673{
674 struct i5100_priv *priv = mci->pvt_info;
675 struct pci_dev *mms[2] = { priv->ch0mm, priv->ch1mm };
676 int i;
677
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800678 for (i = 0; i < I5100_CHANNELS; i++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700679 int j;
680 struct pci_dev *pdev = mms[i];
681
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800682 for (j = 0; j < I5100_MAX_RANKS_PER_CHAN; j++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700683 const unsigned addr =
684 (j < 4) ? I5100_MTR_0 + j * 2 :
685 I5100_MTR_4 + (j - 4) * 2;
686 u16 w;
687
688 pci_read_config_word(pdev, addr, &w);
689
Arthur Jonesb238e572008-07-25 01:49:08 -0700690 priv->mtr[i][j].present = i5100_mtr_present(w);
691 priv->mtr[i][j].ethrottle = i5100_mtr_ethrottle(w);
692 priv->mtr[i][j].width = 4 + 4 * i5100_mtr_width(w);
693 priv->mtr[i][j].numbank = 2 + i5100_mtr_numbank(w);
694 priv->mtr[i][j].numrow = 13 + i5100_mtr_numrow(w);
695 priv->mtr[i][j].numcol = 10 + i5100_mtr_numcol(w);
Arthur Jones8f421c592008-07-25 01:49:04 -0700696 }
697 }
698}
699
700/*
701 * FIXME: make this into a real i2c adapter (so that dimm-decode
702 * will work)?
703 */
704static int i5100_read_spd_byte(const struct mem_ctl_info *mci,
705 u8 ch, u8 slot, u8 addr, u8 *byte)
706{
707 struct i5100_priv *priv = mci->pvt_info;
708 u16 w;
Arthur Jones8f421c592008-07-25 01:49:04 -0700709
710 pci_read_config_word(priv->mc, I5100_SPDDATA, &w);
Arthur Jonesb238e572008-07-25 01:49:08 -0700711 if (i5100_spddata_busy(w))
Arthur Jones8f421c592008-07-25 01:49:04 -0700712 return -1;
713
Arthur Jonesb238e572008-07-25 01:49:08 -0700714 pci_write_config_dword(priv->mc, I5100_SPDCMD,
715 i5100_spdcmd_create(0xa, 1, ch * 4 + slot, addr,
716 0, 0));
Arthur Jones8f421c592008-07-25 01:49:04 -0700717
718 /* wait up to 100ms */
Arthur Jones8f421c592008-07-25 01:49:04 -0700719 udelay(100);
720 while (1) {
721 pci_read_config_word(priv->mc, I5100_SPDDATA, &w);
Arthur Jonesb238e572008-07-25 01:49:08 -0700722 if (!i5100_spddata_busy(w))
Arthur Jones8f421c592008-07-25 01:49:04 -0700723 break;
724 udelay(100);
725 }
726
Arthur Jonesb238e572008-07-25 01:49:08 -0700727 if (!i5100_spddata_rdo(w) || i5100_spddata_sbe(w))
Arthur Jones8f421c592008-07-25 01:49:04 -0700728 return -1;
729
Arthur Jonesb238e572008-07-25 01:49:08 -0700730 *byte = i5100_spddata_data(w);
Arthur Jones8f421c592008-07-25 01:49:04 -0700731
732 return 0;
733}
734
735/*
736 * fill dimm chip select map
737 *
738 * FIXME:
Arthur Jones8f421c592008-07-25 01:49:04 -0700739 * o not the only way to may chip selects to dimm slots
740 * o investigate if there is some way to obtain this map from the bios
741 */
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800742static void i5100_init_dimm_csmap(struct mem_ctl_info *mci)
Arthur Jones8f421c592008-07-25 01:49:04 -0700743{
744 struct i5100_priv *priv = mci->pvt_info;
745 int i;
746
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800747 for (i = 0; i < I5100_MAX_DIMM_SLOTS_PER_CHAN; i++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700748 int j;
749
750 for (j = 0; j < I5100_MAX_RANKS_PER_DIMM; j++)
751 priv->dimm_csmap[i][j] = -1; /* default NC */
752 }
753
754 /* only 2 chip selects per slot... */
Nils Carlsonbbead212009-12-15 16:47:42 -0800755 if (priv->ranksperchan == 4) {
756 priv->dimm_csmap[0][0] = 0;
757 priv->dimm_csmap[0][1] = 3;
758 priv->dimm_csmap[1][0] = 1;
759 priv->dimm_csmap[1][1] = 2;
760 priv->dimm_csmap[2][0] = 2;
761 priv->dimm_csmap[3][0] = 3;
762 } else {
763 priv->dimm_csmap[0][0] = 0;
764 priv->dimm_csmap[0][1] = 1;
765 priv->dimm_csmap[1][0] = 2;
766 priv->dimm_csmap[1][1] = 3;
767 priv->dimm_csmap[2][0] = 4;
768 priv->dimm_csmap[2][1] = 5;
769 }
Arthur Jones8f421c592008-07-25 01:49:04 -0700770}
771
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800772static void i5100_init_dimm_layout(struct pci_dev *pdev,
773 struct mem_ctl_info *mci)
Arthur Jones8f421c592008-07-25 01:49:04 -0700774{
775 struct i5100_priv *priv = mci->pvt_info;
776 int i;
777
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800778 for (i = 0; i < I5100_CHANNELS; i++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700779 int j;
780
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800781 for (j = 0; j < I5100_MAX_DIMM_SLOTS_PER_CHAN; j++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700782 u8 rank;
783
784 if (i5100_read_spd_byte(mci, i, j, 5, &rank) < 0)
785 priv->dimm_numrank[i][j] = 0;
786 else
787 priv->dimm_numrank[i][j] = (rank & 3) + 1;
788 }
789 }
790
791 i5100_init_dimm_csmap(mci);
792}
793
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800794static void i5100_init_interleaving(struct pci_dev *pdev,
795 struct mem_ctl_info *mci)
Arthur Jones8f421c592008-07-25 01:49:04 -0700796{
797 u16 w;
798 u32 dw;
799 struct i5100_priv *priv = mci->pvt_info;
800 struct pci_dev *mms[2] = { priv->ch0mm, priv->ch1mm };
801 int i;
802
803 pci_read_config_word(pdev, I5100_TOLM, &w);
Arthur Jonesb238e572008-07-25 01:49:08 -0700804 priv->tolm = (u64) i5100_tolm_tolm(w) * 256 * 1024 * 1024;
Arthur Jones8f421c592008-07-25 01:49:04 -0700805
806 pci_read_config_word(pdev, I5100_MIR0, &w);
Arthur Jonesb238e572008-07-25 01:49:08 -0700807 priv->mir[0].limit = (u64) i5100_mir_limit(w) << 28;
808 priv->mir[0].way[1] = i5100_mir_way1(w);
809 priv->mir[0].way[0] = i5100_mir_way0(w);
Arthur Jones8f421c592008-07-25 01:49:04 -0700810
811 pci_read_config_word(pdev, I5100_MIR1, &w);
Arthur Jonesb238e572008-07-25 01:49:08 -0700812 priv->mir[1].limit = (u64) i5100_mir_limit(w) << 28;
813 priv->mir[1].way[1] = i5100_mir_way1(w);
814 priv->mir[1].way[0] = i5100_mir_way0(w);
Arthur Jones8f421c592008-07-25 01:49:04 -0700815
816 pci_read_config_word(pdev, I5100_AMIR_0, &w);
817 priv->amir[0] = w;
818 pci_read_config_word(pdev, I5100_AMIR_1, &w);
819 priv->amir[1] = w;
820
Nils Carlsonb18dfd02009-12-15 16:47:40 -0800821 for (i = 0; i < I5100_CHANNELS; i++) {
Arthur Jones8f421c592008-07-25 01:49:04 -0700822 int j;
823
824 for (j = 0; j < 5; j++) {
825 int k;
826
827 pci_read_config_dword(mms[i], I5100_DMIR + j * 4, &dw);
828
829 priv->dmir[i][j].limit =
Arthur Jonesb238e572008-07-25 01:49:08 -0700830 (u64) i5100_dmir_limit(dw) << 28;
Arthur Jones8f421c592008-07-25 01:49:04 -0700831 for (k = 0; k < I5100_MAX_RANKS_PER_DIMM; k++)
832 priv->dmir[i][j].rank[k] =
Arthur Jonesb238e572008-07-25 01:49:08 -0700833 i5100_dmir_rank(dw, k);
Arthur Jones8f421c592008-07-25 01:49:04 -0700834 }
835 }
836
837 i5100_init_mtr(mci);
838}
839
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800840static void i5100_init_csrows(struct mem_ctl_info *mci)
Arthur Jones8f421c592008-07-25 01:49:04 -0700841{
Arthur Jones8f421c592008-07-25 01:49:04 -0700842 struct i5100_priv *priv = mci->pvt_info;
Robert Richterc498afa2019-11-06 09:33:07 +0000843 struct dimm_info *dimm;
Arthur Jones8f421c592008-07-25 01:49:04 -0700844
Robert Richterc498afa2019-11-06 09:33:07 +0000845 mci_for_each_dimm(mci, dimm) {
846 const unsigned long npages = i5100_npages(mci, dimm->idx);
847 const unsigned int chan = i5100_csrow_to_chan(mci, dimm->idx);
848 const unsigned int rank = i5100_csrow_to_rank(mci, dimm->idx);
Arthur Jones8f421c592008-07-25 01:49:04 -0700849
850 if (!npages)
851 continue;
852
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300853 dimm->nr_pages = npages;
Dan Carpenter9d6c7cb2014-02-13 14:17:38 +0300854 dimm->grain = 32;
855 dimm->dtype = (priv->mtr[chan][rank].width == 4) ?
856 DEV_X4 : DEV_X8;
857 dimm->mtype = MEM_RDDR2;
858 dimm->edac_mode = EDAC_SECDED;
859 snprintf(dimm->label, sizeof(dimm->label), "DIMM%u",
860 i5100_rank_to_slot(mci, chan, rank));
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300861
Joe Perches956b9ba12012-04-29 17:08:39 -0300862 edac_dbg(2, "dimm channel %d, rank %d, size %ld\n",
863 chan, rank, (long)PAGES_TO_MiB(npages));
Arthur Jones8f421c592008-07-25 01:49:04 -0700864 }
865}
866
Niklas Söderlund53ceafd2012-08-08 12:30:57 -0300867/****************************************************************************
868 * Error injection routines
869 ****************************************************************************/
870
871static void i5100_do_inject(struct mem_ctl_info *mci)
872{
873 struct i5100_priv *priv = mci->pvt_info;
874 u32 mask0;
875 u16 mask1;
876
877 /* MEM[1:0]EINJMSK0
878 * 31 - ADDRMATCHEN
879 * 29:28 - HLINESEL
880 * 00 Reserved
881 * 01 Lower half of cache line
882 * 10 Upper half of cache line
883 * 11 Both upper and lower parts of cache line
884 * 27 - EINJEN
885 * 25:19 - XORMASK1 for deviceptr1
886 * 9:5 - SEC2RAM for deviceptr2
887 * 4:0 - FIR2RAM for deviceptr1
888 */
889 mask0 = ((priv->inject_hlinesel & 0x3) << 28) |
890 I5100_MEMXEINJMSK0_EINJEN |
891 ((priv->inject_eccmask1 & 0xffff) << 10) |
892 ((priv->inject_deviceptr2 & 0x1f) << 5) |
893 (priv->inject_deviceptr1 & 0x1f);
894
895 /* MEM[1:0]EINJMSK1
896 * 15:0 - XORMASK2 for deviceptr2
897 */
898 mask1 = priv->inject_eccmask2;
899
900 if (priv->inject_channel == 0) {
901 pci_write_config_dword(priv->mc, I5100_MEM0EINJMSK0, mask0);
902 pci_write_config_word(priv->mc, I5100_MEM0EINJMSK1, mask1);
903 } else {
904 pci_write_config_dword(priv->mc, I5100_MEM1EINJMSK0, mask0);
905 pci_write_config_word(priv->mc, I5100_MEM1EINJMSK1, mask1);
906 }
907
908 /* Error Injection Response Function
909 * Intel 5100 Memory Controller Hub Chipset (318378) datasheet
910 * hints about this register but carry no data about them. All
911 * data regarding device 19 is based on experimentation and the
912 * Intel 7300 Chipset Memory Controller Hub (318082) datasheet
913 * which appears to be accurate for the i5100 in this area.
914 *
915 * The injection code don't work without setting this register.
916 * The register needs to be flipped off then on else the hardware
917 * will only preform the first injection.
918 *
919 * Stop condition bits 7:4
920 * 1010 - Stop after one injection
921 * 1011 - Never stop injecting faults
922 *
923 * Start condition bits 3:0
924 * 1010 - Never start
925 * 1011 - Start immediately
926 */
927 pci_write_config_byte(priv->einj, I5100_DINJ0, 0xaa);
928 pci_write_config_byte(priv->einj, I5100_DINJ0, 0xab);
929}
930
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -0300931#define to_mci(k) container_of(k, struct mem_ctl_info, dev)
932static ssize_t inject_enable_write(struct file *file, const char __user *data,
933 size_t count, loff_t *ppos)
934{
935 struct device *dev = file->private_data;
936 struct mem_ctl_info *mci = to_mci(dev);
937
938 i5100_do_inject(mci);
939
940 return count;
941}
942
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -0300943static const struct file_operations i5100_inject_enable_fops = {
Wei Yongjunb0769892013-02-26 17:18:34 +0800944 .open = simple_open,
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -0300945 .write = inject_enable_write,
946 .llseek = generic_file_llseek,
947};
948
949static int i5100_setup_debugfs(struct mem_ctl_info *mci)
950{
951 struct i5100_priv *priv = mci->pvt_info;
952
953 if (!i5100_debugfs)
954 return -ENODEV;
955
Borislav Petkov52019e42015-09-22 12:36:15 +0200956 priv->debugfs = edac_debugfs_create_dir_at(mci->bus->name, i5100_debugfs);
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -0300957
958 if (!priv->debugfs)
959 return -ENOMEM;
960
Borislav Petkov52019e42015-09-22 12:36:15 +0200961 edac_debugfs_create_x8("inject_channel", S_IRUGO | S_IWUSR, priv->debugfs,
962 &priv->inject_channel);
963 edac_debugfs_create_x8("inject_hlinesel", S_IRUGO | S_IWUSR, priv->debugfs,
964 &priv->inject_hlinesel);
965 edac_debugfs_create_x8("inject_deviceptr1", S_IRUGO | S_IWUSR, priv->debugfs,
966 &priv->inject_deviceptr1);
967 edac_debugfs_create_x8("inject_deviceptr2", S_IRUGO | S_IWUSR, priv->debugfs,
968 &priv->inject_deviceptr2);
969 edac_debugfs_create_x16("inject_eccmask1", S_IRUGO | S_IWUSR, priv->debugfs,
970 &priv->inject_eccmask1);
971 edac_debugfs_create_x16("inject_eccmask2", S_IRUGO | S_IWUSR, priv->debugfs,
972 &priv->inject_eccmask2);
973 edac_debugfs_create_file("inject_enable", S_IWUSR, priv->debugfs,
974 &mci->dev, &i5100_inject_enable_fops);
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -0300975
976 return 0;
977
978}
979
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800980static int i5100_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
Arthur Jones8f421c592008-07-25 01:49:04 -0700981{
982 int rc;
983 struct mem_ctl_info *mci;
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -0300984 struct edac_mc_layer layers[2];
Arthur Jones8f421c592008-07-25 01:49:04 -0700985 struct i5100_priv *priv;
Niklas Söderlund52608ba2012-08-08 12:30:56 -0300986 struct pci_dev *ch0mm, *ch1mm, *einj;
Arthur Jones8f421c592008-07-25 01:49:04 -0700987 int ret = 0;
988 u32 dw;
989 int ranksperch;
990
991 if (PCI_FUNC(pdev->devfn) != 1)
992 return -ENODEV;
993
994 rc = pci_enable_device(pdev);
995 if (rc < 0) {
996 ret = rc;
997 goto bail;
998 }
999
Arthur Jones43920a52008-07-25 01:49:06 -07001000 /* ECC enabled? */
1001 pci_read_config_dword(pdev, I5100_MC, &dw);
Arthur Jonesb238e572008-07-25 01:49:08 -07001002 if (!i5100_mc_errdeten(dw)) {
Arthur Jones43920a52008-07-25 01:49:06 -07001003 printk(KERN_INFO "i5100_edac: ECC not enabled.\n");
1004 ret = -ENODEV;
Arthur Jonesb238e572008-07-25 01:49:08 -07001005 goto bail_pdev;
Arthur Jones43920a52008-07-25 01:49:06 -07001006 }
1007
Arthur Jones8f421c592008-07-25 01:49:04 -07001008 /* figure out how many ranks, from strapped state of 48GB_Mode input */
1009 pci_read_config_dword(pdev, I5100_MS, &dw);
1010 ranksperch = !!(dw & (1 << 8)) * 2 + 4;
1011
Arthur Jones178d5a72008-07-25 01:49:06 -07001012 /* enable error reporting... */
1013 pci_read_config_dword(pdev, I5100_EMASK_MEM, &dw);
1014 dw &= ~I5100_FERR_NF_MEM_ANY_MASK;
1015 pci_write_config_dword(pdev, I5100_EMASK_MEM, dw);
1016
Arthur Jones8f421c592008-07-25 01:49:04 -07001017 /* device 21, func 0, Channel 0 Memory Map, Error Flag/Mask, etc... */
1018 ch0mm = pci_get_device_func(PCI_VENDOR_ID_INTEL,
1019 PCI_DEVICE_ID_INTEL_5100_21, 0);
Arthur Jonesb238e572008-07-25 01:49:08 -07001020 if (!ch0mm) {
1021 ret = -ENODEV;
1022 goto bail_pdev;
1023 }
Arthur Jones8f421c592008-07-25 01:49:04 -07001024
1025 rc = pci_enable_device(ch0mm);
1026 if (rc < 0) {
1027 ret = rc;
1028 goto bail_ch0;
1029 }
1030
1031 /* device 22, func 0, Channel 1 Memory Map, Error Flag/Mask, etc... */
1032 ch1mm = pci_get_device_func(PCI_VENDOR_ID_INTEL,
1033 PCI_DEVICE_ID_INTEL_5100_22, 0);
1034 if (!ch1mm) {
1035 ret = -ENODEV;
Arthur Jonesb238e572008-07-25 01:49:08 -07001036 goto bail_disable_ch0;
Arthur Jones8f421c592008-07-25 01:49:04 -07001037 }
1038
1039 rc = pci_enable_device(ch1mm);
1040 if (rc < 0) {
1041 ret = rc;
1042 goto bail_ch1;
1043 }
1044
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -03001045 layers[0].type = EDAC_MC_LAYER_CHANNEL;
1046 layers[0].size = 2;
1047 layers[0].is_virt_csrow = false;
1048 layers[1].type = EDAC_MC_LAYER_SLOT;
1049 layers[1].size = ranksperch;
1050 layers[1].is_virt_csrow = true;
Mauro Carvalho Chehabca0907b2012-05-02 14:37:00 -03001051 mci = edac_mc_alloc(0, ARRAY_SIZE(layers), layers,
Mauro Carvalho Chehabd1afaa02012-04-16 15:09:52 -03001052 sizeof(*priv));
Arthur Jones8f421c592008-07-25 01:49:04 -07001053 if (!mci) {
1054 ret = -ENOMEM;
Arthur Jonesb238e572008-07-25 01:49:08 -07001055 goto bail_disable_ch1;
Arthur Jones8f421c592008-07-25 01:49:04 -07001056 }
1057
Niklas Söderlund52608ba2012-08-08 12:30:56 -03001058
1059 /* device 19, func 0, Error injection */
1060 einj = pci_get_device_func(PCI_VENDOR_ID_INTEL,
1061 PCI_DEVICE_ID_INTEL_5100_19, 0);
1062 if (!einj) {
1063 ret = -ENODEV;
Dinghao Liu857a3132020-08-26 20:14:37 +08001064 goto bail_mc_free;
Niklas Söderlund52608ba2012-08-08 12:30:56 -03001065 }
1066
1067 rc = pci_enable_device(einj);
1068 if (rc < 0) {
1069 ret = rc;
Dinghao Liu857a3132020-08-26 20:14:37 +08001070 goto bail_einj;
Niklas Söderlund52608ba2012-08-08 12:30:56 -03001071 }
1072
Mauro Carvalho Chehabfd687502012-03-16 07:44:18 -03001073 mci->pdev = &pdev->dev;
Arthur Jones8f421c592008-07-25 01:49:04 -07001074
1075 priv = mci->pvt_info;
Nils Carlsonb18dfd02009-12-15 16:47:40 -08001076 priv->ranksperchan = ranksperch;
Arthur Jones8f421c592008-07-25 01:49:04 -07001077 priv->mc = pdev;
1078 priv->ch0mm = ch0mm;
1079 priv->ch1mm = ch1mm;
Niklas Söderlund52608ba2012-08-08 12:30:56 -03001080 priv->einj = einj;
Arthur Jones8f421c592008-07-25 01:49:04 -07001081
Nils Carlson295439f2009-12-15 16:47:42 -08001082 INIT_DELAYED_WORK(&(priv->i5100_scrubbing), i5100_refresh_scrubbing);
1083
1084 /* If scrubbing was already enabled by the bios, start maintaining it */
1085 pci_read_config_dword(pdev, I5100_MC, &dw);
1086 if (i5100_mc_scrben(dw)) {
1087 priv->scrub_enable = 1;
1088 schedule_delayed_work(&(priv->i5100_scrubbing),
1089 I5100_SCRUB_REFRESH_RATE);
1090 }
1091
Arthur Jones8f421c592008-07-25 01:49:04 -07001092 i5100_init_dimm_layout(pdev, mci);
1093 i5100_init_interleaving(pdev, mci);
1094
1095 mci->mtype_cap = MEM_FLAG_FB_DDR2;
1096 mci->edac_ctl_cap = EDAC_FLAG_SECDED;
1097 mci->edac_cap = EDAC_FLAG_SECDED;
1098 mci->mod_name = "i5100_edac.c";
Arthur Jones8f421c592008-07-25 01:49:04 -07001099 mci->ctl_name = "i5100";
1100 mci->dev_name = pci_name(pdev);
Arthur Jonesb238e572008-07-25 01:49:08 -07001101 mci->ctl_page_to_phys = NULL;
Arthur Jones8f421c592008-07-25 01:49:04 -07001102
1103 mci->edac_check = i5100_check_error;
Nils Carlson295439f2009-12-15 16:47:42 -08001104 mci->set_sdram_scrub_rate = i5100_set_scrub_rate;
1105 mci->get_sdram_scrub_rate = i5100_get_scrub_rate;
Arthur Jones8f421c592008-07-25 01:49:04 -07001106
Niklas Söderlund53ceafd2012-08-08 12:30:57 -03001107 priv->inject_channel = 0;
1108 priv->inject_hlinesel = 0;
1109 priv->inject_deviceptr1 = 0;
1110 priv->inject_deviceptr2 = 0;
1111 priv->inject_eccmask1 = 0;
1112 priv->inject_eccmask2 = 0;
1113
Arthur Jones8f421c592008-07-25 01:49:04 -07001114 i5100_init_csrows(mci);
1115
1116 /* this strange construction seems to be in every driver, dunno why */
1117 switch (edac_op_state) {
1118 case EDAC_OPSTATE_POLL:
1119 case EDAC_OPSTATE_NMI:
1120 break;
1121 default:
1122 edac_op_state = EDAC_OPSTATE_POLL;
1123 break;
1124 }
1125
1126 if (edac_mc_add_mc(mci)) {
1127 ret = -ENODEV;
Nils Carlson295439f2009-12-15 16:47:42 -08001128 goto bail_scrub;
Arthur Jones8f421c592008-07-25 01:49:04 -07001129 }
1130
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -03001131 i5100_setup_debugfs(mci);
1132
Arthur Jonesb238e572008-07-25 01:49:08 -07001133 return ret;
Arthur Jones8f421c592008-07-25 01:49:04 -07001134
Nils Carlson295439f2009-12-15 16:47:42 -08001135bail_scrub:
1136 priv->scrub_enable = 0;
1137 cancel_delayed_work_sync(&(priv->i5100_scrubbing));
Niklas Söderlund52608ba2012-08-08 12:30:56 -03001138 pci_disable_device(einj);
1139
1140bail_einj:
1141 pci_dev_put(einj);
1142
Dinghao Liu857a3132020-08-26 20:14:37 +08001143bail_mc_free:
1144 edac_mc_free(mci);
1145
Arthur Jonesb238e572008-07-25 01:49:08 -07001146bail_disable_ch1:
1147 pci_disable_device(ch1mm);
1148
Arthur Jones8f421c592008-07-25 01:49:04 -07001149bail_ch1:
1150 pci_dev_put(ch1mm);
1151
Arthur Jonesb238e572008-07-25 01:49:08 -07001152bail_disable_ch0:
1153 pci_disable_device(ch0mm);
1154
Arthur Jones8f421c592008-07-25 01:49:04 -07001155bail_ch0:
1156 pci_dev_put(ch0mm);
1157
Arthur Jonesb238e572008-07-25 01:49:08 -07001158bail_pdev:
1159 pci_disable_device(pdev);
1160
Arthur Jones8f421c592008-07-25 01:49:04 -07001161bail:
1162 return ret;
1163}
1164
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -08001165static void i5100_remove_one(struct pci_dev *pdev)
Arthur Jones8f421c592008-07-25 01:49:04 -07001166{
1167 struct mem_ctl_info *mci;
1168 struct i5100_priv *priv;
1169
1170 mci = edac_mc_del_mc(&pdev->dev);
1171
1172 if (!mci)
1173 return;
1174
1175 priv = mci->pvt_info;
Nils Carlson295439f2009-12-15 16:47:42 -08001176
Borislav Petkov52019e42015-09-22 12:36:15 +02001177 edac_debugfs_remove_recursive(priv->debugfs);
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -03001178
Nils Carlson295439f2009-12-15 16:47:42 -08001179 priv->scrub_enable = 0;
1180 cancel_delayed_work_sync(&(priv->i5100_scrubbing));
1181
Arthur Jonesb238e572008-07-25 01:49:08 -07001182 pci_disable_device(pdev);
1183 pci_disable_device(priv->ch0mm);
1184 pci_disable_device(priv->ch1mm);
Niklas Söderlund52608ba2012-08-08 12:30:56 -03001185 pci_disable_device(priv->einj);
Arthur Jones8f421c592008-07-25 01:49:04 -07001186 pci_dev_put(priv->ch0mm);
1187 pci_dev_put(priv->ch1mm);
Niklas Söderlund52608ba2012-08-08 12:30:56 -03001188 pci_dev_put(priv->einj);
Arthur Jones8f421c592008-07-25 01:49:04 -07001189
1190 edac_mc_free(mci);
1191}
1192
Jingoo Hanba935f42013-12-06 10:23:08 +01001193static const struct pci_device_id i5100_pci_tbl[] = {
Arthur Jones8f421c592008-07-25 01:49:04 -07001194 /* Device 16, Function 0, Channel 0 Memory Map, Error Flag/Mask, ... */
1195 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5100_16) },
1196 { 0, }
1197};
1198MODULE_DEVICE_TABLE(pci, i5100_pci_tbl);
1199
1200static struct pci_driver i5100_driver = {
1201 .name = KBUILD_BASENAME,
1202 .probe = i5100_init_one,
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -08001203 .remove = i5100_remove_one,
Arthur Jones8f421c592008-07-25 01:49:04 -07001204 .id_table = i5100_pci_tbl,
1205};
1206
1207static int __init i5100_init(void)
1208{
1209 int pci_rc;
1210
Borislav Petkov52019e42015-09-22 12:36:15 +02001211 i5100_debugfs = edac_debugfs_create_dir_at("i5100_edac", NULL);
Arthur Jones8f421c592008-07-25 01:49:04 -07001212
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -03001213 pci_rc = pci_register_driver(&i5100_driver);
Arthur Jones8f421c592008-07-25 01:49:04 -07001214 return (pci_rc < 0) ? pci_rc : 0;
1215}
1216
1217static void __exit i5100_exit(void)
1218{
Borislav Petkov52019e42015-09-22 12:36:15 +02001219 edac_debugfs_remove(i5100_debugfs);
Niklas Söderlund9cbc6d32012-08-08 12:30:58 -03001220
Arthur Jones8f421c592008-07-25 01:49:04 -07001221 pci_unregister_driver(&i5100_driver);
1222}
1223
1224module_init(i5100_init);
1225module_exit(i5100_exit);
1226
1227MODULE_LICENSE("GPL");
1228MODULE_AUTHOR
1229 ("Arthur Jones <ajones@riverbed.com>");
1230MODULE_DESCRIPTION("MC Driver for Intel I5100 memory controllers");