Blame view

drivers/edac/ie31200_edac.c 18.5 KB
09c434b8a   Thomas Gleixner   treewide: Add SPD...
1
  // SPDX-License-Identifier: GPL-2.0-only
7ee40b897   Jason Baron   ie31200_edac: Int...
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  /*
   * Intel E3-1200
   * Copyright (C) 2014 Jason Baron <jbaron@akamai.com>
   *
   * Support for the E3-1200 processor family. Heavily based on previous
   * Intel EDAC drivers.
   *
   * Since the DRAM controller is on the cpu chip, we can use its PCI device
   * id to identify these processors.
   *
   * PCI DRAM controller device ids (Taken from The PCI ID Repository - http://pci-ids.ucw.cz/)
   *
   * 0108: Xeon E3-1200 Processor Family DRAM Controller
   * 010c: Xeon E3-1200/2nd Generation Core Processor Family DRAM Controller
   * 0150: Xeon E3-1200 v2/3rd Gen Core processor DRAM Controller
   * 0158: Xeon E3-1200 v2/Ivy Bridge DRAM Controller
   * 015c: Xeon E3-1200 v2/3rd Gen Core processor DRAM Controller
   * 0c04: Xeon E3-1200 v3/4th Gen Core Processor DRAM Controller
   * 0c08: Xeon E3-1200 v3 Processor DRAM Controller
953dee9bb   Jason Baron   EDAC, ie31200_eda...
21
   * 1918: Xeon E3-1200 v5 Skylake Host Bridge/DRAM Registers
7103de0e5   Jason Baron   EDAC, ie31200: Ad...
22
   * 5918: Xeon E3-1200 Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers
c452a9d30   Marco Elver   EDAC/ie31200: Add...
23
   * 3e..: 8th/9th Gen Core Processor Host Bridge/DRAM Registers
7ee40b897   Jason Baron   ie31200_edac: Int...
24
25
26
27
   *
   * Based on Intel specification:
   * http://www.intel.com/content/dam/www/public/us/en/documents/datasheets/xeon-e3-1200v3-vol-2-datasheet.pdf
   * http://www.intel.com/content/www/us/en/processors/xeon/xeon-e3-1200-family-vol-2-datasheet.html
7103de0e5   Jason Baron   EDAC, ie31200: Ad...
28
   * http://www.intel.com/content/www/us/en/processors/core/7th-gen-core-family-mobile-h-processor-lines-datasheet-vol-2.html
c452a9d30   Marco Elver   EDAC/ie31200: Add...
29
   * https://www.intel.com/content/www/us/en/products/docs/processors/core/8th-gen-core-family-datasheet-vol-2.html
7ee40b897   Jason Baron   ie31200_edac: Int...
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
   *
   * According to the above datasheet (p.16):
   * "
   * 6. Software must not access B0/D0/F0 32-bit memory-mapped registers with
   * requests that cross a DW boundary.
   * "
   *
   * Thus, we make use of the explicit: lo_hi_readq(), which breaks the readq into
   * 2 readl() calls. This restriction may be lifted in subsequent chip releases,
   * but lo_hi_readq() ensures that we are safe across all e3-1200 processors.
   */
  
  #include <linux/module.h>
  #include <linux/init.h>
  #include <linux/pci.h>
  #include <linux/pci_ids.h>
  #include <linux/edac.h>
2f8e2c877   Christoph Hellwig   move io-64-nonato...
47
  #include <linux/io-64-nonatomic-lo-hi.h>
78d88e8a3   Mauro Carvalho Chehab   edac: rename edac...
48
  #include "edac_module.h"
7ee40b897   Jason Baron   ie31200_edac: Int...
49

7ee40b897   Jason Baron   ie31200_edac: Int...
50
51
52
53
54
55
56
57
58
59
60
61
  #define EDAC_MOD_STR "ie31200_edac"
  
  #define ie31200_printk(level, fmt, arg...) \
  	edac_printk(level, "ie31200", fmt, ##arg)
  
  #define PCI_DEVICE_ID_INTEL_IE31200_HB_1 0x0108
  #define PCI_DEVICE_ID_INTEL_IE31200_HB_2 0x010c
  #define PCI_DEVICE_ID_INTEL_IE31200_HB_3 0x0150
  #define PCI_DEVICE_ID_INTEL_IE31200_HB_4 0x0158
  #define PCI_DEVICE_ID_INTEL_IE31200_HB_5 0x015c
  #define PCI_DEVICE_ID_INTEL_IE31200_HB_6 0x0c04
  #define PCI_DEVICE_ID_INTEL_IE31200_HB_7 0x0c08
953dee9bb   Jason Baron   EDAC, ie31200_eda...
62
  #define PCI_DEVICE_ID_INTEL_IE31200_HB_8 0x1918
7103de0e5   Jason Baron   EDAC, ie31200: Ad...
63
  #define PCI_DEVICE_ID_INTEL_IE31200_HB_9 0x5918
7ee40b897   Jason Baron   ie31200_edac: Int...
64

c452a9d30   Marco Elver   EDAC/ie31200: Add...
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
  /* Coffee Lake-S */
  #define PCI_DEVICE_ID_INTEL_IE31200_HB_CFL_MASK 0x3e00
  #define PCI_DEVICE_ID_INTEL_IE31200_HB_CFL_1    0x3e0f
  #define PCI_DEVICE_ID_INTEL_IE31200_HB_CFL_2    0x3e18
  #define PCI_DEVICE_ID_INTEL_IE31200_HB_CFL_3    0x3e1f
  #define PCI_DEVICE_ID_INTEL_IE31200_HB_CFL_4    0x3e30
  #define PCI_DEVICE_ID_INTEL_IE31200_HB_CFL_5    0x3e31
  #define PCI_DEVICE_ID_INTEL_IE31200_HB_CFL_6    0x3e32
  #define PCI_DEVICE_ID_INTEL_IE31200_HB_CFL_7    0x3e33
  #define PCI_DEVICE_ID_INTEL_IE31200_HB_CFL_8    0x3ec2
  #define PCI_DEVICE_ID_INTEL_IE31200_HB_CFL_9    0x3ec6
  #define PCI_DEVICE_ID_INTEL_IE31200_HB_CFL_10   0x3eca
  
  /* Test if HB is for Skylake or later. */
  #define DEVICE_ID_SKYLAKE_OR_LATER(did)                                        \
  	(((did) == PCI_DEVICE_ID_INTEL_IE31200_HB_8) ||                        \
  	 ((did) == PCI_DEVICE_ID_INTEL_IE31200_HB_9) ||                        \
  	 (((did) & PCI_DEVICE_ID_INTEL_IE31200_HB_CFL_MASK) ==                 \
  	  PCI_DEVICE_ID_INTEL_IE31200_HB_CFL_MASK))
7ee40b897   Jason Baron   ie31200_edac: Int...
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
  #define IE31200_DIMMS			4
  #define IE31200_RANKS			8
  #define IE31200_RANKS_PER_CHANNEL	4
  #define IE31200_DIMMS_PER_CHANNEL	2
  #define IE31200_CHANNELS		2
  
  /* Intel IE31200 register addresses - device 0 function 0 - DRAM Controller */
  #define IE31200_MCHBAR_LOW		0x48
  #define IE31200_MCHBAR_HIGH		0x4c
  #define IE31200_MCHBAR_MASK		GENMASK_ULL(38, 15)
  #define IE31200_MMR_WINDOW_SIZE		BIT(15)
  
  /*
   * Error Status Register (16b)
   *
   * 15    reserved
   * 14    Isochronous TBWRR Run Behind FIFO Full
   *       (ITCV)
   * 13    Isochronous TBWRR Run Behind FIFO Put
   *       (ITSTV)
   * 12    reserved
   * 11    MCH Thermal Sensor Event
   *       for SMI/SCI/SERR (GTSE)
   * 10    reserved
   *  9    LOCK to non-DRAM Memory Flag (LCKF)
   *  8    reserved
   *  7    DRAM Throttle Flag (DTF)
   *  6:2  reserved
   *  1    Multi-bit DRAM ECC Error Flag (DMERR)
   *  0    Single-bit DRAM ECC Error Flag (DSERR)
   */
  #define IE31200_ERRSTS			0xc8
  #define IE31200_ERRSTS_UE		BIT(1)
  #define IE31200_ERRSTS_CE		BIT(0)
  #define IE31200_ERRSTS_BITS		(IE31200_ERRSTS_UE | IE31200_ERRSTS_CE)
  
  /*
   * Channel 0 ECC Error Log (64b)
   *
   * 63:48 Error Column Address (ERRCOL)
   * 47:32 Error Row Address (ERRROW)
   * 31:29 Error Bank Address (ERRBANK)
   * 28:27 Error Rank Address (ERRRANK)
   * 26:24 reserved
   * 23:16 Error Syndrome (ERRSYND)
   * 15: 2 reserved
   *    1  Multiple Bit Error Status (MERRSTS)
   *    0  Correctable Error Status (CERRSTS)
   */
953dee9bb   Jason Baron   EDAC, ie31200_eda...
133

7ee40b897   Jason Baron   ie31200_edac: Int...
134
135
  #define IE31200_C0ECCERRLOG			0x40c8
  #define IE31200_C1ECCERRLOG			0x44c8
953dee9bb   Jason Baron   EDAC, ie31200_eda...
136
137
  #define IE31200_C0ECCERRLOG_SKL			0x4048
  #define IE31200_C1ECCERRLOG_SKL			0x4448
7ee40b897   Jason Baron   ie31200_edac: Int...
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
  #define IE31200_ECCERRLOG_CE			BIT(0)
  #define IE31200_ECCERRLOG_UE			BIT(1)
  #define IE31200_ECCERRLOG_RANK_BITS		GENMASK_ULL(28, 27)
  #define IE31200_ECCERRLOG_RANK_SHIFT		27
  #define IE31200_ECCERRLOG_SYNDROME_BITS		GENMASK_ULL(23, 16)
  #define IE31200_ECCERRLOG_SYNDROME_SHIFT	16
  
  #define IE31200_ECCERRLOG_SYNDROME(log)		   \
  	((log & IE31200_ECCERRLOG_SYNDROME_BITS) >> \
  	 IE31200_ECCERRLOG_SYNDROME_SHIFT)
  
  #define IE31200_CAPID0			0xe4
  #define IE31200_CAPID0_PDCD		BIT(4)
  #define IE31200_CAPID0_DDPCD		BIT(6)
  #define IE31200_CAPID0_ECC		BIT(1)
953dee9bb   Jason Baron   EDAC, ie31200_eda...
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
  #define IE31200_MAD_DIMM_0_OFFSET		0x5004
  #define IE31200_MAD_DIMM_0_OFFSET_SKL		0x500C
  #define IE31200_MAD_DIMM_SIZE			GENMASK_ULL(7, 0)
  #define IE31200_MAD_DIMM_A_RANK			BIT(17)
  #define IE31200_MAD_DIMM_A_RANK_SHIFT		17
  #define IE31200_MAD_DIMM_A_RANK_SKL		BIT(10)
  #define IE31200_MAD_DIMM_A_RANK_SKL_SHIFT	10
  #define IE31200_MAD_DIMM_A_WIDTH		BIT(19)
  #define IE31200_MAD_DIMM_A_WIDTH_SHIFT		19
  #define IE31200_MAD_DIMM_A_WIDTH_SKL		GENMASK_ULL(9, 8)
  #define IE31200_MAD_DIMM_A_WIDTH_SKL_SHIFT	8
  
  /* Skylake reports 1GB increments, everything else is 256MB */
  #define IE31200_PAGES(n, skl)	\
  	(n << (28 + (2 * skl) - PAGE_SHIFT))
7ee40b897   Jason Baron   ie31200_edac: Int...
168
169
170
171
172
  
  static int nr_channels;
  
  struct ie31200_priv {
  	void __iomem *window;
953dee9bb   Jason Baron   EDAC, ie31200_eda...
173
174
  	void __iomem *c0errlog;
  	void __iomem *c1errlog;
7ee40b897   Jason Baron   ie31200_edac: Int...
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
  };
  
  enum ie31200_chips {
  	IE31200 = 0,
  };
  
  struct ie31200_dev_info {
  	const char *ctl_name;
  };
  
  struct ie31200_error_info {
  	u16 errsts;
  	u16 errsts2;
  	u64 eccerrlog[IE31200_CHANNELS];
  };
  
  static const struct ie31200_dev_info ie31200_devs[] = {
  	[IE31200] = {
  		.ctl_name = "IE31200"
  	},
  };
  
  struct dimm_data {
953dee9bb   Jason Baron   EDAC, ie31200_eda...
198
  	u8 size; /* in multiples of 256MB, except Skylake is 1GB */
7ee40b897   Jason Baron   ie31200_edac: Int...
199
  	u8 dual_rank : 1,
953dee9bb   Jason Baron   EDAC, ie31200_eda...
200
  	   x16_width : 2; /* 0 means x8 width */
7ee40b897   Jason Baron   ie31200_edac: Int...
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
  };
  
  static int how_many_channels(struct pci_dev *pdev)
  {
  	int n_channels;
  	unsigned char capid0_2b; /* 2nd byte of CAPID0 */
  
  	pci_read_config_byte(pdev, IE31200_CAPID0 + 1, &capid0_2b);
  
  	/* check PDCD: Dual Channel Disable */
  	if (capid0_2b & IE31200_CAPID0_PDCD) {
  		edac_dbg(0, "In single channel mode
  ");
  		n_channels = 1;
  	} else {
  		edac_dbg(0, "In dual channel mode
  ");
  		n_channels = 2;
  	}
  
  	/* check DDPCD - check if both channels are filled */
  	if (capid0_2b & IE31200_CAPID0_DDPCD)
  		edac_dbg(0, "2 DIMMS per channel disabled
  ");
  	else
  		edac_dbg(0, "2 DIMMS per channel enabled
  ");
  
  	return n_channels;
  }
  
  static bool ecc_capable(struct pci_dev *pdev)
  {
  	unsigned char capid0_4b; /* 4th byte of CAPID0 */
  
  	pci_read_config_byte(pdev, IE31200_CAPID0 + 3, &capid0_4b);
  	if (capid0_4b & IE31200_CAPID0_ECC)
  		return false;
  	return true;
  }
953dee9bb   Jason Baron   EDAC, ie31200_eda...
241
  static int eccerrlog_row(u64 log)
7ee40b897   Jason Baron   ie31200_edac: Int...
242
  {
953dee9bb   Jason Baron   EDAC, ie31200_eda...
243
244
  	return ((log & IE31200_ECCERRLOG_RANK_BITS) >>
  				IE31200_ECCERRLOG_RANK_SHIFT);
7ee40b897   Jason Baron   ie31200_edac: Int...
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
  }
  
  static void ie31200_clear_error_info(struct mem_ctl_info *mci)
  {
  	/*
  	 * Clear any error bits.
  	 * (Yes, we really clear bits by writing 1 to them.)
  	 */
  	pci_write_bits16(to_pci_dev(mci->pdev), IE31200_ERRSTS,
  			 IE31200_ERRSTS_BITS, IE31200_ERRSTS_BITS);
  }
  
  static void ie31200_get_and_clear_error_info(struct mem_ctl_info *mci,
  					     struct ie31200_error_info *info)
  {
  	struct pci_dev *pdev;
  	struct ie31200_priv *priv = mci->pvt_info;
7ee40b897   Jason Baron   ie31200_edac: Int...
262
263
264
265
266
267
268
269
270
271
272
  
  	pdev = to_pci_dev(mci->pdev);
  
  	/*
  	 * 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, IE31200_ERRSTS, &info->errsts);
  	if (!(info->errsts & IE31200_ERRSTS_BITS))
  		return;
953dee9bb   Jason Baron   EDAC, ie31200_eda...
273
  	info->eccerrlog[0] = lo_hi_readq(priv->c0errlog);
7ee40b897   Jason Baron   ie31200_edac: Int...
274
  	if (nr_channels == 2)
953dee9bb   Jason Baron   EDAC, ie31200_eda...
275
  		info->eccerrlog[1] = lo_hi_readq(priv->c1errlog);
7ee40b897   Jason Baron   ie31200_edac: Int...
276
277
278
279
280
281
282
283
284
285
  
  	pci_read_config_word(pdev, IE31200_ERRSTS, &info->errsts2);
  
  	/*
  	 * If the error is the same for both reads then the first set
  	 * of reads is valid.  If there is a change then there is a CE
  	 * with no info and the second set of reads is valid and
  	 * should be UE info.
  	 */
  	if ((info->errsts ^ info->errsts2) & IE31200_ERRSTS_BITS) {
953dee9bb   Jason Baron   EDAC, ie31200_eda...
286
  		info->eccerrlog[0] = lo_hi_readq(priv->c0errlog);
7ee40b897   Jason Baron   ie31200_edac: Int...
287
288
  		if (nr_channels == 2)
  			info->eccerrlog[1] =
953dee9bb   Jason Baron   EDAC, ie31200_eda...
289
  				lo_hi_readq(priv->c1errlog);
7ee40b897   Jason Baron   ie31200_edac: Int...
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
  	}
  
  	ie31200_clear_error_info(mci);
  }
  
  static void ie31200_process_error_info(struct mem_ctl_info *mci,
  				       struct ie31200_error_info *info)
  {
  	int channel;
  	u64 log;
  
  	if (!(info->errsts & IE31200_ERRSTS_BITS))
  		return;
  
  	if ((info->errsts ^ info->errsts2) & IE31200_ERRSTS_BITS) {
  		edac_mc_handle_error(HW_EVENT_ERR_UNCORRECTED, mci, 1, 0, 0, 0,
  				     -1, -1, -1, "UE overwrote CE", "");
  		info->errsts = info->errsts2;
  	}
  
  	for (channel = 0; channel < nr_channels; channel++) {
  		log = info->eccerrlog[channel];
  		if (log & IE31200_ECCERRLOG_UE) {
  			edac_mc_handle_error(HW_EVENT_ERR_UNCORRECTED, mci, 1,
  					     0, 0, 0,
953dee9bb   Jason Baron   EDAC, ie31200_eda...
315
  					     eccerrlog_row(log),
7ee40b897   Jason Baron   ie31200_edac: Int...
316
317
318
319
320
321
  					     channel, -1,
  					     "ie31200 UE", "");
  		} else if (log & IE31200_ECCERRLOG_CE) {
  			edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, 1,
  					     0, 0,
  					     IE31200_ECCERRLOG_SYNDROME(log),
953dee9bb   Jason Baron   EDAC, ie31200_eda...
322
  					     eccerrlog_row(log),
7ee40b897   Jason Baron   ie31200_edac: Int...
323
324
325
326
327
328
329
330
331
332
333
334
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
365
366
367
368
  					     channel, -1,
  					     "ie31200 CE", "");
  		}
  	}
  }
  
  static void ie31200_check(struct mem_ctl_info *mci)
  {
  	struct ie31200_error_info info;
  
  	edac_dbg(1, "MC%d
  ", mci->mc_idx);
  	ie31200_get_and_clear_error_info(mci, &info);
  	ie31200_process_error_info(mci, &info);
  }
  
  static void __iomem *ie31200_map_mchbar(struct pci_dev *pdev)
  {
  	union {
  		u64 mchbar;
  		struct {
  			u32 mchbar_low;
  			u32 mchbar_high;
  		};
  	} u;
  	void __iomem *window;
  
  	pci_read_config_dword(pdev, IE31200_MCHBAR_LOW, &u.mchbar_low);
  	pci_read_config_dword(pdev, IE31200_MCHBAR_HIGH, &u.mchbar_high);
  	u.mchbar &= IE31200_MCHBAR_MASK;
  
  	if (u.mchbar != (resource_size_t)u.mchbar) {
  		ie31200_printk(KERN_ERR, "mmio space beyond accessible range (0x%llx)
  ",
  			       (unsigned long long)u.mchbar);
  		return NULL;
  	}
  
  	window = ioremap_nocache(u.mchbar, IE31200_MMR_WINDOW_SIZE);
  	if (!window)
  		ie31200_printk(KERN_ERR, "Cannot map mmio space at 0x%llx
  ",
  			       (unsigned long long)u.mchbar);
  
  	return window;
  }
953dee9bb   Jason Baron   EDAC, ie31200_eda...
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
  static void __skl_populate_dimm_info(struct dimm_data *dd, u32 addr_decode,
  				     int chan)
  {
  	dd->size = (addr_decode >> (chan << 4)) & IE31200_MAD_DIMM_SIZE;
  	dd->dual_rank = (addr_decode & (IE31200_MAD_DIMM_A_RANK_SKL << (chan << 4))) ? 1 : 0;
  	dd->x16_width = ((addr_decode & (IE31200_MAD_DIMM_A_WIDTH_SKL << (chan << 4))) >>
  				(IE31200_MAD_DIMM_A_WIDTH_SKL_SHIFT + (chan << 4)));
  }
  
  static void __populate_dimm_info(struct dimm_data *dd, u32 addr_decode,
  				 int chan)
  {
  	dd->size = (addr_decode >> (chan << 3)) & IE31200_MAD_DIMM_SIZE;
  	dd->dual_rank = (addr_decode & (IE31200_MAD_DIMM_A_RANK << chan)) ? 1 : 0;
  	dd->x16_width = (addr_decode & (IE31200_MAD_DIMM_A_WIDTH << chan)) ? 1 : 0;
  }
  
  static void populate_dimm_info(struct dimm_data *dd, u32 addr_decode, int chan,
  			       bool skl)
  {
  	if (skl)
  		__skl_populate_dimm_info(dd, addr_decode, chan);
  	else
  		__populate_dimm_info(dd, addr_decode, chan);
  }
7ee40b897   Jason Baron   ie31200_edac: Int...
394
395
  static int ie31200_probe1(struct pci_dev *pdev, int dev_idx)
  {
78fd4d124   Jason Baron   ie31200_edac: All...
396
  	int i, j, ret;
7ee40b897   Jason Baron   ie31200_edac: Int...
397
398
399
400
401
  	struct mem_ctl_info *mci = NULL;
  	struct edac_mc_layer layers[2];
  	struct dimm_data dimm_info[IE31200_CHANNELS][IE31200_DIMMS_PER_CHANNEL];
  	void __iomem *window;
  	struct ie31200_priv *priv;
953dee9bb   Jason Baron   EDAC, ie31200_eda...
402
  	u32 addr_decode, mad_offset;
7103de0e5   Jason Baron   EDAC, ie31200: Ad...
403
404
  
  	/*
c452a9d30   Marco Elver   EDAC/ie31200: Add...
405
406
  	 * Kaby Lake, Coffee Lake seem to work like Skylake. Please re-visit
  	 * this logic when adding new CPU support.
7103de0e5   Jason Baron   EDAC, ie31200: Ad...
407
  	 */
c452a9d30   Marco Elver   EDAC/ie31200: Add...
408
  	bool skl = DEVICE_ID_SKYLAKE_OR_LATER(pdev->device);
7ee40b897   Jason Baron   ie31200_edac: Int...
409
410
411
412
413
414
415
416
417
  
  	edac_dbg(0, "MC:
  ");
  
  	if (!ecc_capable(pdev)) {
  		ie31200_printk(KERN_INFO, "No ECC support
  ");
  		return -ENODEV;
  	}
7ee40b897   Jason Baron   ie31200_edac: Int...
418
  	nr_channels = how_many_channels(pdev);
7ee40b897   Jason Baron   ie31200_edac: Int...
419
420
421
422
423
424
425
426
  	layers[0].type = EDAC_MC_LAYER_CHIP_SELECT;
  	layers[0].size = IE31200_DIMMS;
  	layers[0].is_virt_csrow = true;
  	layers[1].type = EDAC_MC_LAYER_CHANNEL;
  	layers[1].size = nr_channels;
  	layers[1].is_virt_csrow = false;
  	mci = edac_mc_alloc(0, ARRAY_SIZE(layers), layers,
  			    sizeof(struct ie31200_priv));
7ee40b897   Jason Baron   ie31200_edac: Int...
427
  	if (!mci)
78fd4d124   Jason Baron   ie31200_edac: All...
428
  		return -ENOMEM;
7ee40b897   Jason Baron   ie31200_edac: Int...
429

78fd4d124   Jason Baron   ie31200_edac: All...
430
431
432
433
434
  	window = ie31200_map_mchbar(pdev);
  	if (!window) {
  		ret = -ENODEV;
  		goto fail_free;
  	}
7ee40b897   Jason Baron   ie31200_edac: Int...
435

78fd4d124   Jason Baron   ie31200_edac: All...
436
437
  	edac_dbg(3, "MC: init mci
  ");
7ee40b897   Jason Baron   ie31200_edac: Int...
438
  	mci->pdev = &pdev->dev;
953dee9bb   Jason Baron   EDAC, ie31200_eda...
439
440
441
442
  	if (skl)
  		mci->mtype_cap = MEM_FLAG_DDR4;
  	else
  		mci->mtype_cap = MEM_FLAG_DDR3;
7ee40b897   Jason Baron   ie31200_edac: Int...
443
444
  	mci->edac_ctl_cap = EDAC_FLAG_SECDED;
  	mci->edac_cap = EDAC_FLAG_SECDED;
7ee40b897   Jason Baron   ie31200_edac: Int...
445
  	mci->mod_name = EDAC_MOD_STR;
7ee40b897   Jason Baron   ie31200_edac: Int...
446
447
448
449
450
451
  	mci->ctl_name = ie31200_devs[dev_idx].ctl_name;
  	mci->dev_name = pci_name(pdev);
  	mci->edac_check = ie31200_check;
  	mci->ctl_page_to_phys = NULL;
  	priv = mci->pvt_info;
  	priv->window = window;
953dee9bb   Jason Baron   EDAC, ie31200_eda...
452
453
454
455
456
457
458
459
460
  	if (skl) {
  		priv->c0errlog = window + IE31200_C0ECCERRLOG_SKL;
  		priv->c1errlog = window + IE31200_C1ECCERRLOG_SKL;
  		mad_offset = IE31200_MAD_DIMM_0_OFFSET_SKL;
  	} else {
  		priv->c0errlog = window + IE31200_C0ECCERRLOG;
  		priv->c1errlog = window + IE31200_C1ECCERRLOG;
  		mad_offset = IE31200_MAD_DIMM_0_OFFSET;
  	}
7ee40b897   Jason Baron   ie31200_edac: Int...
461

78fd4d124   Jason Baron   ie31200_edac: All...
462
463
  	/* populate DIMM info */
  	for (i = 0; i < IE31200_CHANNELS; i++) {
953dee9bb   Jason Baron   EDAC, ie31200_eda...
464
  		addr_decode = readl(window + mad_offset +
78fd4d124   Jason Baron   ie31200_edac: All...
465
466
467
468
  					(i * 4));
  		edac_dbg(0, "addr_decode: 0x%x
  ", addr_decode);
  		for (j = 0; j < IE31200_DIMMS_PER_CHANNEL; j++) {
953dee9bb   Jason Baron   EDAC, ie31200_eda...
469
470
  			populate_dimm_info(&dimm_info[i][j], addr_decode, j,
  					   skl);
78fd4d124   Jason Baron   ie31200_edac: All...
471
472
473
474
475
476
477
  			edac_dbg(0, "size: 0x%x, rank: %d, width: %d
  ",
  				 dimm_info[i][j].size,
  				 dimm_info[i][j].dual_rank,
  				 dimm_info[i][j].x16_width);
  		}
  	}
7ee40b897   Jason Baron   ie31200_edac: Int...
478
479
480
481
482
483
484
485
486
487
  	/*
  	 * The dram rank boundary (DRB) reg values are boundary addresses
  	 * for each DRAM rank with a granularity of 64MB.  DRB regs are
  	 * cumulative; the last one will contain the total memory
  	 * contained in all ranks.
  	 */
  	for (i = 0; i < IE31200_DIMMS_PER_CHANNEL; i++) {
  		for (j = 0; j < IE31200_CHANNELS; j++) {
  			struct dimm_info *dimm;
  			unsigned long nr_pages;
953dee9bb   Jason Baron   EDAC, ie31200_eda...
488
  			nr_pages = IE31200_PAGES(dimm_info[j][i].size, skl);
7ee40b897   Jason Baron   ie31200_edac: Int...
489
490
491
492
493
494
495
496
497
498
499
500
  			if (nr_pages == 0)
  				continue;
  
  			if (dimm_info[j][i].dual_rank) {
  				nr_pages = nr_pages / 2;
  				dimm = EDAC_DIMM_PTR(mci->layers, mci->dimms,
  						     mci->n_layers, (i * 2) + 1,
  						     j, 0);
  				dimm->nr_pages = nr_pages;
  				edac_dbg(0, "set nr pages: 0x%lx
  ", nr_pages);
  				dimm->grain = 8; /* just a guess */
953dee9bb   Jason Baron   EDAC, ie31200_eda...
501
502
503
504
  				if (skl)
  					dimm->mtype = MEM_DDR4;
  				else
  					dimm->mtype = MEM_DDR3;
7ee40b897   Jason Baron   ie31200_edac: Int...
505
506
507
508
509
510
511
512
513
  				dimm->dtype = DEV_UNKNOWN;
  				dimm->edac_mode = EDAC_UNKNOWN;
  			}
  			dimm = EDAC_DIMM_PTR(mci->layers, mci->dimms,
  					     mci->n_layers, i * 2, j, 0);
  			dimm->nr_pages = nr_pages;
  			edac_dbg(0, "set nr pages: 0x%lx
  ", nr_pages);
  			dimm->grain = 8; /* same guess */
953dee9bb   Jason Baron   EDAC, ie31200_eda...
514
515
516
517
  			if (skl)
  				dimm->mtype = MEM_DDR4;
  			else
  				dimm->mtype = MEM_DDR3;
7ee40b897   Jason Baron   ie31200_edac: Int...
518
519
520
521
522
523
  			dimm->dtype = DEV_UNKNOWN;
  			dimm->edac_mode = EDAC_UNKNOWN;
  		}
  	}
  
  	ie31200_clear_error_info(mci);
7ee40b897   Jason Baron   ie31200_edac: Int...
524
525
526
  	if (edac_mc_add_mc(mci)) {
  		edac_dbg(3, "MC: failed edac_mc_add_mc()
  ");
78fd4d124   Jason Baron   ie31200_edac: All...
527
528
  		ret = -ENODEV;
  		goto fail_unmap;
7ee40b897   Jason Baron   ie31200_edac: Int...
529
530
531
532
533
534
  	}
  
  	/* get this far and it's successful */
  	edac_dbg(3, "MC: success
  ");
  	return 0;
7ee40b897   Jason Baron   ie31200_edac: Int...
535
536
  fail_unmap:
  	iounmap(window);
78fd4d124   Jason Baron   ie31200_edac: All...
537
538
539
540
  fail_free:
  	edac_mc_free(mci);
  
  	return ret;
7ee40b897   Jason Baron   ie31200_edac: Int...
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
  }
  
  static int ie31200_init_one(struct pci_dev *pdev,
  			    const struct pci_device_id *ent)
  {
  	edac_dbg(0, "MC:
  ");
  
  	if (pci_enable_device(pdev) < 0)
  		return -EIO;
  
  	return ie31200_probe1(pdev, ent->driver_data);
  }
  
  static void ie31200_remove_one(struct pci_dev *pdev)
  {
  	struct mem_ctl_info *mci;
  	struct ie31200_priv *priv;
  
  	edac_dbg(0, "
  ");
  	mci = edac_mc_del_mc(&pdev->dev);
  	if (!mci)
  		return;
  	priv = mci->pvt_info;
  	iounmap(priv->window);
  	edac_mc_free(mci);
  }
  
  static const struct pci_device_id ie31200_pci_tbl[] = {
4d91fde8d   Marco Elver   EDAC/ie31200: Ref...
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
  	{ PCI_VEND_DEV(INTEL, IE31200_HB_1),      PCI_ANY_ID, PCI_ANY_ID, 0, 0, IE31200 },
  	{ PCI_VEND_DEV(INTEL, IE31200_HB_2),      PCI_ANY_ID, PCI_ANY_ID, 0, 0, IE31200 },
  	{ PCI_VEND_DEV(INTEL, IE31200_HB_3),      PCI_ANY_ID, PCI_ANY_ID, 0, 0, IE31200 },
  	{ PCI_VEND_DEV(INTEL, IE31200_HB_4),      PCI_ANY_ID, PCI_ANY_ID, 0, 0, IE31200 },
  	{ PCI_VEND_DEV(INTEL, IE31200_HB_5),      PCI_ANY_ID, PCI_ANY_ID, 0, 0, IE31200 },
  	{ PCI_VEND_DEV(INTEL, IE31200_HB_6),      PCI_ANY_ID, PCI_ANY_ID, 0, 0, IE31200 },
  	{ PCI_VEND_DEV(INTEL, IE31200_HB_7),      PCI_ANY_ID, PCI_ANY_ID, 0, 0, IE31200 },
  	{ PCI_VEND_DEV(INTEL, IE31200_HB_8),      PCI_ANY_ID, PCI_ANY_ID, 0, 0, IE31200 },
  	{ PCI_VEND_DEV(INTEL, IE31200_HB_9),      PCI_ANY_ID, PCI_ANY_ID, 0, 0, IE31200 },
  	{ PCI_VEND_DEV(INTEL, IE31200_HB_CFL_1),  PCI_ANY_ID, PCI_ANY_ID, 0, 0, IE31200 },
  	{ PCI_VEND_DEV(INTEL, IE31200_HB_CFL_2),  PCI_ANY_ID, PCI_ANY_ID, 0, 0, IE31200 },
  	{ PCI_VEND_DEV(INTEL, IE31200_HB_CFL_3),  PCI_ANY_ID, PCI_ANY_ID, 0, 0, IE31200 },
  	{ PCI_VEND_DEV(INTEL, IE31200_HB_CFL_4),  PCI_ANY_ID, PCI_ANY_ID, 0, 0, IE31200 },
  	{ PCI_VEND_DEV(INTEL, IE31200_HB_CFL_5),  PCI_ANY_ID, PCI_ANY_ID, 0, 0, IE31200 },
  	{ PCI_VEND_DEV(INTEL, IE31200_HB_CFL_6),  PCI_ANY_ID, PCI_ANY_ID, 0, 0, IE31200 },
  	{ PCI_VEND_DEV(INTEL, IE31200_HB_CFL_7),  PCI_ANY_ID, PCI_ANY_ID, 0, 0, IE31200 },
  	{ PCI_VEND_DEV(INTEL, IE31200_HB_CFL_8),  PCI_ANY_ID, PCI_ANY_ID, 0, 0, IE31200 },
  	{ PCI_VEND_DEV(INTEL, IE31200_HB_CFL_9),  PCI_ANY_ID, PCI_ANY_ID, 0, 0, IE31200 },
  	{ PCI_VEND_DEV(INTEL, IE31200_HB_CFL_10), PCI_ANY_ID, PCI_ANY_ID, 0, 0, IE31200 },
  	{ 0, } /* 0 terminated list. */
7ee40b897   Jason Baron   ie31200_edac: Int...
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
  };
  MODULE_DEVICE_TABLE(pci, ie31200_pci_tbl);
  
  static struct pci_driver ie31200_driver = {
  	.name = EDAC_MOD_STR,
  	.probe = ie31200_init_one,
  	.remove = ie31200_remove_one,
  	.id_table = ie31200_pci_tbl,
  };
  
  static int __init ie31200_init(void)
  {
  	edac_dbg(3, "MC:
  ");
  	/* Ensure that the OPSTATE is set correctly for POLL or NMI */
  	opstate_init();
  
  	return pci_register_driver(&ie31200_driver);
  }
  
  static void __exit ie31200_exit(void)
  {
  	edac_dbg(3, "MC:
  ");
  	pci_unregister_driver(&ie31200_driver);
  }
  
  module_init(ie31200_init);
  module_exit(ie31200_exit);
  
  MODULE_LICENSE("GPL");
  MODULE_AUTHOR("Jason Baron <jbaron@akamai.com>");
  MODULE_DESCRIPTION("MC support for Intel Processor E31200 memory hub controllers");