Blame view

drivers/edac/i82975x_edac.c 18.3 KB
420390f06   Ranganathan Desikan   drivers/edac: new...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  /*
   * Intel 82975X Memory Controller kernel module
   * (C) 2007 aCarLab (India) Pvt. Ltd. (http://acarlab.com)
   * (C) 2007 jetzbroadband (http://jetzbroadband.com)
   * This file may be distributed under the terms of the
   * GNU General Public License.
   *
   * Written by Arvind R.
   *   Copied from i82875p_edac.c source:
   */
  
  #include <linux/module.h>
  #include <linux/init.h>
  #include <linux/pci.h>
  #include <linux/pci_ids.h>
c3c52bce6   Hitoshi Mitake   edac: fix module ...
16
  #include <linux/edac.h>
420390f06   Ranganathan Desikan   drivers/edac: new...
17
  #include "edac_core.h"
152ba3942   Michal Marek   edac: Drop __DATE...
18
  #define I82975X_REVISION	" Ver: 1.0.0"
420390f06   Ranganathan Desikan   drivers/edac: new...
19
20
21
22
23
24
25
26
27
28
29
  #define EDAC_MOD_STR		"i82975x_edac"
  
  #define i82975x_printk(level, fmt, arg...) \
  	edac_printk(level, "i82975x", fmt, ##arg)
  
  #define i82975x_mc_printk(mci, level, fmt, arg...) \
  	edac_mc_chipset_printk(mci, level, "i82975x", fmt, ##arg)
  
  #ifndef PCI_DEVICE_ID_INTEL_82975_0
  #define PCI_DEVICE_ID_INTEL_82975_0	0x277c
  #endif				/* PCI_DEVICE_ID_INTEL_82975_0 */
705213580   Mauro Carvalho Chehab   i82975x_edac: con...
30
31
  #define I82975X_NR_DIMMS		8
  #define I82975X_NR_CSROWS(nr_chans)	(I82975X_NR_DIMMS / (nr_chans))
420390f06   Ranganathan Desikan   drivers/edac: new...
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
  
  /* Intel 82975X register addresses - device 0 function 0 - DRAM Controller */
  #define I82975X_EAP		0x58	/* Dram Error Address Pointer (32b)
  					 *
  					 * 31:7  128 byte cache-line address
  					 * 6:1   reserved
  					 * 0     0: CH0; 1: CH1
  					 */
  
  #define I82975X_DERRSYN		0x5c	/* Dram Error SYNdrome (8b)
  					 *
  					 *  7:0  DRAM ECC Syndrome
  					 */
  
  #define I82975X_DES		0x5d	/* Dram ERRor DeSTination (8b)
  					 * 0h:    Processor Memory Reads
  					 * 1h:7h  reserved
  					 * More - See Page 65 of Intel DocSheet.
  					 */
  
  #define I82975X_ERRSTS		0xc8	/* Error Status Register (16b)
  					 *
  					 * 15:12 reserved
  					 * 11    Thermal Sensor Event
  					 * 10    reserved
  					 *  9    non-DRAM lock error (ndlock)
  					 *  8    Refresh Timeout
  					 *  7:2  reserved
  					 *  1    ECC UE (multibit DRAM error)
  					 *  0    ECC CE (singlebit DRAM error)
  					 */
  
  /* Error Reporting is supported by 3 mechanisms:
    1. DMI SERR generation  ( ERRCMD )
    2. SMI DMI  generation  ( SMICMD )
    3. SCI DMI  generation  ( SCICMD )
  NOTE: Only ONE of the three must be enabled
  */
  #define I82975X_ERRCMD		0xca	/* Error Command (16b)
  					 *
  					 * 15:12 reserved
  					 * 11    Thermal Sensor Event
  					 * 10    reserved
  					 *  9    non-DRAM lock error (ndlock)
  					 *  8    Refresh Timeout
  					 *  7:2  reserved
  					 *  1    ECC UE (multibit DRAM error)
  					 *  0    ECC CE (singlebit DRAM error)
  					 */
  
  #define I82975X_SMICMD		0xcc	/* Error Command (16b)
  					 *
  					 * 15:2  reserved
  					 *  1    ECC UE (multibit DRAM error)
  					 *  0    ECC CE (singlebit DRAM error)
  					 */
  
  #define I82975X_SCICMD		0xce	/* Error Command (16b)
  					 *
  					 * 15:2  reserved
  					 *  1    ECC UE (multibit DRAM error)
  					 *  0    ECC CE (singlebit DRAM error)
  					 */
  
  #define I82975X_XEAP	0xfc	/* Extended Dram Error Address Pointer (8b)
  					 *
  					 * 7:1   reserved
  					 * 0     Bit32 of the Dram Error Address
  					 */
  
  #define I82975X_MCHBAR		0x44	/*
  					 *
  					 * 31:14 Base Addr of 16K memory-mapped
  					 *	configuration space
  					 * 13:1  reserverd
  					 *  0    mem-mapped config space enable
  					 */
  
  /* NOTE: Following addresses have to indexed using MCHBAR offset (44h, 32b) */
  /* Intel 82975x memory mapped register space */
  
  #define I82975X_DRB_SHIFT 25	/* fixed 32MiB grain */
  
  #define I82975X_DRB		0x100	/* DRAM Row Boundary (8b x 8)
  					 *
  					 * 7   set to 1 in highest DRB of
  					 *	channel if 4GB in ch.
  					 * 6:2 upper boundary of rank in
  					 *	32MB grains
  					 * 1:0 set to 0
  					 */
  #define I82975X_DRB_CH0R0		0x100
  #define I82975X_DRB_CH0R1		0x101
  #define I82975X_DRB_CH0R2		0x102
  #define I82975X_DRB_CH0R3		0x103
  #define I82975X_DRB_CH1R0		0x180
  #define I82975X_DRB_CH1R1		0x181
  #define I82975X_DRB_CH1R2		0x182
  #define I82975X_DRB_CH1R3		0x183
  
  
  #define I82975X_DRA		0x108	/* DRAM Row Attribute (4b x 8)
  					 *  defines the PAGE SIZE to be used
  					 *	for the rank
  					 *  7    reserved
  					 *  6:4  row attr of odd rank, i.e. 1
  					 *  3    reserved
  					 *  2:0  row attr of even rank, i.e. 0
  					 *
  					 * 000 = unpopulated
  					 * 001 = reserved
  					 * 010 = 4KiB
  					 * 011 = 8KiB
  					 * 100 = 16KiB
  					 * others = reserved
  					 */
  #define I82975X_DRA_CH0R01		0x108
  #define I82975X_DRA_CH0R23		0x109
  #define I82975X_DRA_CH1R01		0x188
  #define I82975X_DRA_CH1R23		0x189
  
  
  #define I82975X_BNKARC	0x10e /* Type of device in each rank - Bank Arch (16b)
  					 *
  					 * 15:8  reserved
  					 * 7:6  Rank 3 architecture
  					 * 5:4  Rank 2 architecture
  					 * 3:2  Rank 1 architecture
  					 * 1:0  Rank 0 architecture
  					 *
7ba995758   Arvind R   edac: correct com...
162
163
  					 * 00 => 4 banks
  					 * 01 => 8 banks
420390f06   Ranganathan Desikan   drivers/edac: new...
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
  					 */
  #define I82975X_C0BNKARC	0x10e
  #define I82975X_C1BNKARC	0x18e
  
  
  
  #define I82975X_DRC		0x120 /* DRAM Controller Mode0 (32b)
  					 *
  					 * 31:30 reserved
  					 * 29    init complete
  					 * 28:11 reserved, according to Intel
  					 *    22:21 number of channels
  					 *		00=1 01=2 in 82875
  					 *		seems to be ECC mode
  					 *		bits in 82975 in Asus
  					 *		P5W
  					 *	 19:18 Data Integ Mode
  					 *		00=none 01=ECC in 82875
  					 * 10:8  refresh mode
  					 *  7    reserved
  					 *  6:4  mode select
  					 *  3:2  reserved
  					 *  1:0  DRAM type 10=Second Revision
  					 *		DDR2 SDRAM
  					 *         00, 01, 11 reserved
  					 */
  #define I82975X_DRC_CH0M0		0x120
  #define I82975X_DRC_CH1M0		0x1A0
  
  
  #define I82975X_DRC_M1	0x124 /* DRAM Controller Mode1 (32b)
  					 * 31	0=Standard Address Map
  					 *	1=Enhanced Address Map
  					 * 30:0	reserved
  					 */
  
  #define I82975X_DRC_CH0M1		0x124
  #define I82975X_DRC_CH1M1		0x1A4
  
  enum i82975x_chips {
  	I82975X = 0,
  };
  
  struct i82975x_pvt {
  	void __iomem *mch_window;
  };
  
  struct i82975x_dev_info {
  	const char *ctl_name;
  };
  
  struct i82975x_error_info {
  	u16 errsts;
  	u32 eap;
  	u8 des;
  	u8 derrsyn;
  	u16 errsts2;
  	u8 chan;		/* the channel is bit 0 of EAP */
  	u8 xeap;		/* extended eap bit */
  };
  
  static const struct i82975x_dev_info i82975x_devs[] = {
  	[I82975X] = {
  		.ctl_name = "i82975x"
  	},
  };
  
  static struct pci_dev *mci_pdev;	/* init dev: in case that AGP code has
  					 * already registered driver
  					 */
  
  static int i82975x_registered = 1;
  
  static void i82975x_get_error_info(struct mem_ctl_info *mci,
  		struct i82975x_error_info *info)
  {
  	struct pci_dev *pdev;
fd687502d   Mauro Carvalho Chehab   edac: Rename the ...
241
  	pdev = to_pci_dev(mci->pdev);
420390f06   Ranganathan Desikan   drivers/edac: new...
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
  
  	/*
  	 * This is a mess because there is no atomic way to read all the
  	 * registers at once and the registers can transition from CE being
  	 * overwritten by UE.
  	 */
  	pci_read_config_word(pdev, I82975X_ERRSTS, &info->errsts);
  	pci_read_config_dword(pdev, I82975X_EAP, &info->eap);
  	pci_read_config_byte(pdev, I82975X_XEAP, &info->xeap);
  	pci_read_config_byte(pdev, I82975X_DES, &info->des);
  	pci_read_config_byte(pdev, I82975X_DERRSYN, &info->derrsyn);
  	pci_read_config_word(pdev, I82975X_ERRSTS, &info->errsts2);
  
  	pci_write_bits16(pdev, I82975X_ERRSTS, 0x0003, 0x0003);
  
  	/*
  	 * If the error is the same then we can for both reads then
  	 * the first set of reads is valid.  If there is a change then
  	 * there is a CE no info and the second set of reads is valid
  	 * and should be UE info.
  	 */
  	if (!(info->errsts2 & 0x0003))
  		return;
  
  	if ((info->errsts ^ info->errsts2) & 0x0003) {
  		pci_read_config_dword(pdev, I82975X_EAP, &info->eap);
  		pci_read_config_byte(pdev, I82975X_XEAP, &info->xeap);
  		pci_read_config_byte(pdev, I82975X_DES, &info->des);
  		pci_read_config_byte(pdev, I82975X_DERRSYN,
  				&info->derrsyn);
  	}
  }
  
  static int i82975x_process_error_info(struct mem_ctl_info *mci,
  		struct i82975x_error_info *info, int handle_errors)
  {
6099e419a   Arvind R   edac:i82975x fix ...
278
  	int row, chan;
cb60a4226   Arvind R   edac: correct i82...
279
  	unsigned long offst, page;
420390f06   Ranganathan Desikan   drivers/edac: new...
280

420390f06   Ranganathan Desikan   drivers/edac: new...
281
282
283
284
285
286
287
  	if (!(info->errsts2 & 0x0003))
  		return 0;
  
  	if (!handle_errors)
  		return 1;
  
  	if ((info->errsts ^ info->errsts2) & 0x0003) {
9eb07a7fb   Mauro Carvalho Chehab   edac: edac_mc_han...
288
  		edac_mc_handle_error(HW_EVENT_ERR_UNCORRECTED, mci, 1, 0, 0, 0,
03f7eae80   Mauro Carvalho Chehab   edac: remove arch...
289
  				     -1, -1, -1, "UE overwrote CE", "");
420390f06   Ranganathan Desikan   drivers/edac: new...
290
291
  		info->errsts = info->errsts2;
  	}
cb60a4226   Arvind R   edac: correct i82...
292
  	page = (unsigned long) info->eap;
cb60a4226   Arvind R   edac: correct i82...
293
  	page >>= 1;
6099e419a   Arvind R   edac:i82975x fix ...
294
295
296
  	if (info->xeap & 1)
  		page |= 0x80000000;
  	page >>= (PAGE_SHIFT - 1);
cb60a4226   Arvind R   edac: correct i82...
297
  	row = edac_mc_find_csrow_by_page(mci, page);
420390f06   Ranganathan Desikan   drivers/edac: new...
298

6099e419a   Arvind R   edac:i82975x fix ...
299
300
301
302
303
304
305
306
307
308
309
310
  	if (row == -1)	{
  		i82975x_mc_printk(mci, KERN_ERR, "error processing EAP:
  "
  			"\tXEAP=%u
  "
  			"\t EAP=0x%08x
  "
  			"\tPAGE=0x%08x
  ",
  			(info->xeap & 1) ? 1 : 0, info->eap, (unsigned int) page);
  		return 0;
  	}
de3910eb7   Mauro Carvalho Chehab   edac: change the ...
311
  	chan = (mci->csrows[row]->nr_channels == 1) ? 0 : info->eap & 1;
6099e419a   Arvind R   edac:i82975x fix ...
312
313
  	offst = info->eap
  			& ((1 << PAGE_SHIFT) -
de3910eb7   Mauro Carvalho Chehab   edac: change the ...
314
  			   (1 << mci->csrows[row]->channels[chan]->dimm->grain));
6099e419a   Arvind R   edac:i82975x fix ...
315

420390f06   Ranganathan Desikan   drivers/edac: new...
316
  	if (info->errsts & 0x0002)
9eb07a7fb   Mauro Carvalho Chehab   edac: edac_mc_han...
317
  		edac_mc_handle_error(HW_EVENT_ERR_UNCORRECTED, mci, 1,
705213580   Mauro Carvalho Chehab   i82975x_edac: con...
318
319
  				     page, offst, 0,
  				     row, -1, -1,
03f7eae80   Mauro Carvalho Chehab   edac: remove arch...
320
  				     "i82975x UE", "");
420390f06   Ranganathan Desikan   drivers/edac: new...
321
  	else
9eb07a7fb   Mauro Carvalho Chehab   edac: edac_mc_han...
322
  		edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, 1,
705213580   Mauro Carvalho Chehab   i82975x_edac: con...
323
324
  				     page, offst, info->derrsyn,
  				     row, chan ? chan : 0, -1,
03f7eae80   Mauro Carvalho Chehab   edac: remove arch...
325
  				     "i82975x CE", "");
420390f06   Ranganathan Desikan   drivers/edac: new...
326
327
328
329
330
331
332
  
  	return 1;
  }
  
  static void i82975x_check(struct mem_ctl_info *mci)
  {
  	struct i82975x_error_info info;
956b9ba15   Joe Perches   edac: Convert deb...
333
334
  	edac_dbg(1, "MC%d
  ", mci->mc_idx);
420390f06   Ranganathan Desikan   drivers/edac: new...
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
  	i82975x_get_error_info(mci, &info);
  	i82975x_process_error_info(mci, &info, 1);
  }
  
  /* Return 1 if dual channel mode is active.  Else return 0. */
  static int dual_channel_active(void __iomem *mch_window)
  {
  	/*
  	 * We treat interleaved-symmetric configuration as dual-channel - EAP's
  	 * bit-0 giving the channel of the error location.
  	 *
  	 * All other configurations are treated as single channel - the EAP's
  	 * bit-0 will resolve ok in symmetric area of mixed
  	 * (symmetric/asymmetric) configurations
  	 */
  	u8	drb[4][2];
  	int	row;
  	int    dualch;
  
  	for (dualch = 1, row = 0; dualch && (row < 4); row++) {
  		drb[row][0] = readb(mch_window + I82975X_DRB + row);
  		drb[row][1] = readb(mch_window + I82975X_DRB + row + 0x80);
  		dualch = dualch && (drb[row][0] == drb[row][1]);
  	}
  	return dualch;
  }
  
  static enum dev_type i82975x_dram_type(void __iomem *mch_window, int rank)
  {
  	/*
7ba995758   Arvind R   edac: correct com...
365
  	 * ECC is possible on i92975x ONLY with DEV_X8
420390f06   Ranganathan Desikan   drivers/edac: new...
366
367
368
369
370
371
372
373
374
375
  	 */
  	return DEV_X8;
  }
  
  static void i82975x_init_csrows(struct mem_ctl_info *mci,
  		struct pci_dev *pdev, void __iomem *mch_window)
  {
  	struct csrow_info *csrow;
  	unsigned long last_cumul_size;
  	u8 value;
a895bf8b1   Mauro Carvalho Chehab   edac: move nr_pag...
376
  	u32 cumul_size, nr_pages;
cb60a4226   Arvind R   edac: correct i82...
377
  	int index, chan;
084a4fcce   Mauro Carvalho Chehab   edac: move dimm p...
378
379
  	struct dimm_info *dimm;
  	enum dev_type dtype;
420390f06   Ranganathan Desikan   drivers/edac: new...
380
381
382
383
384
385
386
387
  
  	last_cumul_size = 0;
  
  	/*
  	 * 82875 comment:
  	 * The dram row boundary (DRB) reg values are boundary address
  	 * for each DRAM row with a granularity of 32 or 64MB (single/dual
  	 * channel operation).  DRB regs are cumulative; therefore DRB7 will
cb60a4226   Arvind R   edac: correct i82...
388
  	 * contain the total memory contained in all rows.
420390f06   Ranganathan Desikan   drivers/edac: new...
389
390
391
392
  	 *
  	 */
  
  	for (index = 0; index < mci->nr_csrows; index++) {
de3910eb7   Mauro Carvalho Chehab   edac: change the ...
393
  		csrow = mci->csrows[index];
420390f06   Ranganathan Desikan   drivers/edac: new...
394
395
396
397
398
  
  		value = readb(mch_window + I82975X_DRB + index +
  					((index >= 4) ? 0x80 : 0));
  		cumul_size = value;
  		cumul_size <<= (I82975X_DRB_SHIFT - PAGE_SHIFT);
cb60a4226   Arvind R   edac: correct i82...
399
400
401
402
403
404
  		/*
  		 * Adjust cumul_size w.r.t number of channels
  		 *
  		 */
  		if (csrow->nr_channels > 1)
  			cumul_size <<= 1;
956b9ba15   Joe Perches   edac: Convert deb...
405
406
  		edac_dbg(3, "(%d) cumul_size 0x%x
  ", index, cumul_size);
cb60a4226   Arvind R   edac: correct i82...
407

a895bf8b1   Mauro Carvalho Chehab   edac: move nr_pag...
408
  		nr_pages = cumul_size - last_cumul_size;
36683aab9   Mauro Carvalho Chehab   i82975x_edac: Tes...
409
410
  		if (!nr_pages)
  			continue;
cb60a4226   Arvind R   edac: correct i82...
411
412
413
414
415
416
  		/*
  		 * Initialise dram labels
  		 * index values:
  		 *   [0-7] for single-channel; i.e. csrow->nr_channels = 1
  		 *   [0-3] for dual-channel; i.e. csrow->nr_channels = 2
  		 */
084a4fcce   Mauro Carvalho Chehab   edac: move dimm p...
417
418
  		dtype = i82975x_dram_type(mch_window, index);
  		for (chan = 0; chan < csrow->nr_channels; chan++) {
de3910eb7   Mauro Carvalho Chehab   edac: change the ...
419
  			dimm = mci->csrows[index]->channels[chan]->dimm;
a895bf8b1   Mauro Carvalho Chehab   edac: move nr_pag...
420

a895bf8b1   Mauro Carvalho Chehab   edac: move nr_pag...
421
  			dimm->nr_pages = nr_pages / csrow->nr_channels;
479696840   Mauro Carvalho Chehab   i82975x_edac: Fix...
422
423
424
425
  
  			snprintf(csrow->channels[chan]->dimm->label, EDAC_MC_LABEL_LEN, "DIMM %c%d",
  				 (chan == 0) ? 'A' : 'B',
  				 index);
084a4fcce   Mauro Carvalho Chehab   edac: move dimm p...
426
427
428
429
430
  			dimm->grain = 1 << 7;	/* 128Byte cache-line resolution */
  			dimm->dtype = i82975x_dram_type(mch_window, index);
  			dimm->mtype = MEM_DDR2; /* I82975x supports only DDR2 */
  			dimm->edac_mode = EDAC_SECDED; /* only supported */
  		}
cb60a4226   Arvind R   edac: correct i82...
431

420390f06   Ranganathan Desikan   drivers/edac: new...
432
433
  		csrow->first_page = last_cumul_size;
  		csrow->last_page = cumul_size - 1;
420390f06   Ranganathan Desikan   drivers/edac: new...
434
  		last_cumul_size = cumul_size;
420390f06   Ranganathan Desikan   drivers/edac: new...
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
  	}
  }
  
  /* #define  i82975x_DEBUG_IOMEM */
  
  #ifdef i82975x_DEBUG_IOMEM
  static void i82975x_print_dram_timings(void __iomem *mch_window)
  {
  	/*
  	 * The register meanings are from Intel specs;
  	 * (shows 13-5-5-5 for 800-DDR2)
  	 * Asus P5W Bios reports 15-5-4-4
  	 * What's your religion?
  	 */
  	static const int caslats[4] = { 5, 4, 3, 6 };
  	u32	dtreg[2];
  
  	dtreg[0] = readl(mch_window + 0x114);
  	dtreg[1] = readl(mch_window + 0x194);
  	i82975x_printk(KERN_INFO, "DRAM Timings :     Ch0    Ch1
  "
  		"                RAS Active Min = %d     %d
  "
  		"                CAS latency    =  %d      %d
  "
  		"                RAS to CAS     =  %d      %d
  "
  		"                RAS precharge  =  %d      %d
  ",
  		(dtreg[0] >> 19 ) & 0x0f,
  			(dtreg[1] >> 19) & 0x0f,
  		caslats[(dtreg[0] >> 8) & 0x03],
  			caslats[(dtreg[1] >> 8) & 0x03],
  		((dtreg[0] >> 4) & 0x07) + 2,
  			((dtreg[1] >> 4) & 0x07) + 2,
  		(dtreg[0] & 0x07) + 2,
  			(dtreg[1] & 0x07) + 2
  	);
  
  }
  #endif
  
  static int i82975x_probe1(struct pci_dev *pdev, int dev_idx)
  {
  	int rc = -ENODEV;
  	struct mem_ctl_info *mci;
705213580   Mauro Carvalho Chehab   i82975x_edac: con...
481
  	struct edac_mc_layer layers[2];
420390f06   Ranganathan Desikan   drivers/edac: new...
482
483
484
485
486
487
488
489
490
491
  	struct i82975x_pvt *pvt;
  	void __iomem *mch_window;
  	u32 mchbar;
  	u32 drc[2];
  	struct i82975x_error_info discard;
  	int	chans;
  #ifdef i82975x_DEBUG_IOMEM
  	u8 c0drb[4];
  	u8 c1drb[4];
  #endif
956b9ba15   Joe Perches   edac: Convert deb...
492
493
  	edac_dbg(0, "
  ");
420390f06   Ranganathan Desikan   drivers/edac: new...
494
495
496
  
  	pci_read_config_dword(pdev, I82975X_MCHBAR, &mchbar);
  	if (!(mchbar & 1)) {
956b9ba15   Joe Perches   edac: Convert deb...
497
498
  		edac_dbg(3, "failed, MCHBAR disabled!
  ");
420390f06   Ranganathan Desikan   drivers/edac: new...
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
  		goto fail0;
  	}
  	mchbar &= 0xffffc000;	/* bits 31:14 used for 16K window */
  	mch_window = ioremap_nocache(mchbar, 0x1000);
  
  #ifdef i82975x_DEBUG_IOMEM
  	i82975x_printk(KERN_INFO, "MCHBAR real = %0x, remapped = %p
  ",
  					mchbar, mch_window);
  
  	c0drb[0] = readb(mch_window + I82975X_DRB_CH0R0);
  	c0drb[1] = readb(mch_window + I82975X_DRB_CH0R1);
  	c0drb[2] = readb(mch_window + I82975X_DRB_CH0R2);
  	c0drb[3] = readb(mch_window + I82975X_DRB_CH0R3);
  	c1drb[0] = readb(mch_window + I82975X_DRB_CH1R0);
  	c1drb[1] = readb(mch_window + I82975X_DRB_CH1R1);
  	c1drb[2] = readb(mch_window + I82975X_DRB_CH1R2);
  	c1drb[3] = readb(mch_window + I82975X_DRB_CH1R3);
  	i82975x_printk(KERN_INFO, "DRBCH0R0 = 0x%02x
  ", c0drb[0]);
  	i82975x_printk(KERN_INFO, "DRBCH0R1 = 0x%02x
  ", c0drb[1]);
  	i82975x_printk(KERN_INFO, "DRBCH0R2 = 0x%02x
  ", c0drb[2]);
  	i82975x_printk(KERN_INFO, "DRBCH0R3 = 0x%02x
  ", c0drb[3]);
  	i82975x_printk(KERN_INFO, "DRBCH1R0 = 0x%02x
  ", c1drb[0]);
  	i82975x_printk(KERN_INFO, "DRBCH1R1 = 0x%02x
  ", c1drb[1]);
  	i82975x_printk(KERN_INFO, "DRBCH1R2 = 0x%02x
  ", c1drb[2]);
  	i82975x_printk(KERN_INFO, "DRBCH1R3 = 0x%02x
  ", c1drb[3]);
  #endif
  
  	drc[0] = readl(mch_window + I82975X_DRC_CH0M0);
  	drc[1] = readl(mch_window + I82975X_DRC_CH1M0);
  #ifdef i82975x_DEBUG_IOMEM
  	i82975x_printk(KERN_INFO, "DRC_CH0 = %0x, %s
  ", drc[0],
  			((drc[0] >> 21) & 3) == 1 ?
  				"ECC enabled" : "ECC disabled");
  	i82975x_printk(KERN_INFO, "DRC_CH1 = %0x, %s
  ", drc[1],
  			((drc[1] >> 21) & 3) == 1 ?
  				"ECC enabled" : "ECC disabled");
  
  	i82975x_printk(KERN_INFO, "C0 BNKARC = %0x
  ",
  		readw(mch_window + I82975X_C0BNKARC));
  	i82975x_printk(KERN_INFO, "C1 BNKARC = %0x
  ",
  		readw(mch_window + I82975X_C1BNKARC));
  	i82975x_print_dram_timings(mch_window);
  	goto fail1;
  #endif
  	if (!(((drc[0] >> 21) & 3) == 1 || ((drc[1] >> 21) & 3) == 1)) {
  		i82975x_printk(KERN_INFO, "ECC disabled on both channels.
  ");
  		goto fail1;
  	}
  
  	chans = dual_channel_active(mch_window) + 1;
  
  	/* assuming only one controller, index thus is 0 */
705213580   Mauro Carvalho Chehab   i82975x_edac: con...
565
566
567
568
569
570
  	layers[0].type = EDAC_MC_LAYER_CHIP_SELECT;
  	layers[0].size = I82975X_NR_DIMMS;
  	layers[0].is_virt_csrow = true;
  	layers[1].type = EDAC_MC_LAYER_CHANNEL;
  	layers[1].size = I82975X_NR_CSROWS(chans);
  	layers[1].is_virt_csrow = false;
ca0907b9e   Mauro Carvalho Chehab   edac: Remove the ...
571
  	mci = edac_mc_alloc(0, ARRAY_SIZE(layers), layers, sizeof(*pvt));
420390f06   Ranganathan Desikan   drivers/edac: new...
572
573
574
575
  	if (!mci) {
  		rc = -ENOMEM;
  		goto fail1;
  	}
956b9ba15   Joe Perches   edac: Convert deb...
576
577
  	edac_dbg(3, "init mci
  ");
fd687502d   Mauro Carvalho Chehab   edac: Rename the ...
578
  	mci->pdev = &pdev->dev;
da95b3d21   Arvind R   edac: correct i82...
579
  	mci->mtype_cap = MEM_FLAG_DDR2;
420390f06   Ranganathan Desikan   drivers/edac: new...
580
581
582
583
584
  	mci->edac_ctl_cap = EDAC_FLAG_NONE | EDAC_FLAG_SECDED;
  	mci->edac_cap = EDAC_FLAG_NONE | EDAC_FLAG_SECDED;
  	mci->mod_name = EDAC_MOD_STR;
  	mci->mod_ver = I82975X_REVISION;
  	mci->ctl_name = i82975x_devs[dev_idx].ctl_name;
da95b3d21   Arvind R   edac: correct i82...
585
  	mci->dev_name = pci_name(pdev);
420390f06   Ranganathan Desikan   drivers/edac: new...
586
587
  	mci->edac_check = i82975x_check;
  	mci->ctl_page_to_phys = NULL;
956b9ba15   Joe Perches   edac: Convert deb...
588
589
  	edac_dbg(3, "init pvt
  ");
420390f06   Ranganathan Desikan   drivers/edac: new...
590
591
592
  	pvt = (struct i82975x_pvt *) mci->pvt_info;
  	pvt->mch_window = mch_window;
  	i82975x_init_csrows(mci, pdev, mch_window);
da95b3d21   Arvind R   edac: correct i82...
593
  	mci->scrub_mode = SCRUB_HW_SRC;
420390f06   Ranganathan Desikan   drivers/edac: new...
594
595
596
597
  	i82975x_get_error_info(mci, &discard);  /* clear counters */
  
  	/* finalize this instance of memory controller with edac core */
  	if (edac_mc_add_mc(mci)) {
956b9ba15   Joe Perches   edac: Convert deb...
598
599
  		edac_dbg(3, "failed edac_mc_add_mc()
  ");
420390f06   Ranganathan Desikan   drivers/edac: new...
600
601
602
603
  		goto fail2;
  	}
  
  	/* get this far and it's successful */
956b9ba15   Joe Perches   edac: Convert deb...
604
605
  	edac_dbg(3, "success
  ");
420390f06   Ranganathan Desikan   drivers/edac: new...
606
607
608
609
610
611
612
613
614
615
616
617
  	return 0;
  
  fail2:
  	edac_mc_free(mci);
  
  fail1:
  	iounmap(mch_window);
  fail0:
  	return rc;
  }
  
  /* returns count (>= 0), or negative on error */
9b3c6e85c   Greg Kroah-Hartman   Drivers: edac: re...
618
619
  static int i82975x_init_one(struct pci_dev *pdev,
  			    const struct pci_device_id *ent)
420390f06   Ranganathan Desikan   drivers/edac: new...
620
621
  {
  	int rc;
956b9ba15   Joe Perches   edac: Convert deb...
622
623
  	edac_dbg(0, "
  ");
420390f06   Ranganathan Desikan   drivers/edac: new...
624
625
626
627
628
629
630
631
632
633
634
  
  	if (pci_enable_device(pdev) < 0)
  		return -EIO;
  
  	rc = i82975x_probe1(pdev, ent->driver_data);
  
  	if (mci_pdev == NULL)
  		mci_pdev = pci_dev_get(pdev);
  
  	return rc;
  }
9b3c6e85c   Greg Kroah-Hartman   Drivers: edac: re...
635
  static void i82975x_remove_one(struct pci_dev *pdev)
420390f06   Ranganathan Desikan   drivers/edac: new...
636
637
638
  {
  	struct mem_ctl_info *mci;
  	struct i82975x_pvt *pvt;
956b9ba15   Joe Perches   edac: Convert deb...
639
640
  	edac_dbg(0, "
  ");
420390f06   Ranganathan Desikan   drivers/edac: new...
641
642
643
644
645
646
647
648
649
650
651
  
  	mci = edac_mc_del_mc(&pdev->dev);
  	if (mci  == NULL)
  		return;
  
  	pvt = mci->pvt_info;
  	if (pvt->mch_window)
  		iounmap( pvt->mch_window );
  
  	edac_mc_free(mci);
  }
ba935f409   Jingoo Han   EDAC: Remove DEFI...
652
  static const struct pci_device_id i82975x_pci_tbl[] = {
420390f06   Ranganathan Desikan   drivers/edac: new...
653
654
655
656
657
658
659
660
661
662
663
664
665
666
  	{
  		PCI_VEND_DEV(INTEL, 82975_0), PCI_ANY_ID, PCI_ANY_ID, 0, 0,
  		I82975X
  	},
  	{
  		0,
  	}	/* 0 terminated list. */
  };
  
  MODULE_DEVICE_TABLE(pci, i82975x_pci_tbl);
  
  static struct pci_driver i82975x_driver = {
  	.name = EDAC_MOD_STR,
  	.probe = i82975x_init_one,
9b3c6e85c   Greg Kroah-Hartman   Drivers: edac: re...
667
  	.remove = i82975x_remove_one,
420390f06   Ranganathan Desikan   drivers/edac: new...
668
669
670
671
672
673
  	.id_table = i82975x_pci_tbl,
  };
  
  static int __init i82975x_init(void)
  {
  	int pci_rc;
956b9ba15   Joe Perches   edac: Convert deb...
674
675
  	edac_dbg(3, "
  ");
420390f06   Ranganathan Desikan   drivers/edac: new...
676

c3c52bce6   Hitoshi Mitake   edac: fix module ...
677
678
         /* Ensure that the OPSTATE is set correctly for POLL or NMI */
         opstate_init();
420390f06   Ranganathan Desikan   drivers/edac: new...
679
680
681
682
683
684
685
686
687
  	pci_rc = pci_register_driver(&i82975x_driver);
  	if (pci_rc < 0)
  		goto fail0;
  
  	if (mci_pdev == NULL) {
  		mci_pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
  				PCI_DEVICE_ID_INTEL_82975_0, NULL);
  
  		if (!mci_pdev) {
956b9ba15   Joe Perches   edac: Convert deb...
688
689
  			edac_dbg(0, "i82975x pci_get_device fail
  ");
420390f06   Ranganathan Desikan   drivers/edac: new...
690
691
692
693
694
695
696
  			pci_rc = -ENODEV;
  			goto fail1;
  		}
  
  		pci_rc = i82975x_init_one(mci_pdev, i82975x_pci_tbl);
  
  		if (pci_rc < 0) {
956b9ba15   Joe Perches   edac: Convert deb...
697
698
  			edac_dbg(0, "i82975x init fail
  ");
420390f06   Ranganathan Desikan   drivers/edac: new...
699
700
701
702
703
704
705
706
707
708
709
  			pci_rc = -ENODEV;
  			goto fail1;
  		}
  	}
  
  	return 0;
  
  fail1:
  	pci_unregister_driver(&i82975x_driver);
  
  fail0:
726019459   Markus Elfring   EDAC: Delete unne...
710
  	pci_dev_put(mci_pdev);
420390f06   Ranganathan Desikan   drivers/edac: new...
711
712
713
714
715
  	return pci_rc;
  }
  
  static void __exit i82975x_exit(void)
  {
956b9ba15   Joe Perches   edac: Convert deb...
716
717
  	edac_dbg(3, "
  ");
420390f06   Ranganathan Desikan   drivers/edac: new...
718
719
720
721
722
723
724
725
726
727
728
729
730
  
  	pci_unregister_driver(&i82975x_driver);
  
  	if (!i82975x_registered) {
  		i82975x_remove_one(mci_pdev);
  		pci_dev_put(mci_pdev);
  	}
  }
  
  module_init(i82975x_init);
  module_exit(i82975x_exit);
  
  MODULE_LICENSE("GPL");
25527885e   Arvind R   edac: i82975x aut...
731
  MODULE_AUTHOR("Arvind R. <arvino55@gmail.com>");
420390f06   Ranganathan Desikan   drivers/edac: new...
732
  MODULE_DESCRIPTION("MC support for Intel 82975 memory hub controllers");
c3c52bce6   Hitoshi Mitake   edac: fix module ...
733
734
735
  
  module_param(edac_op_state, int, 0444);
  MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI");