2 * Intel 3000/3010 Memory Controller kernel module
3 * Copyright (C) 2007 Akamai Technologies, Inc.
4 * Shamelessly copied from:
5 * Intel D82875P Memory Controller kernel module
6 * (C) 2003 Linux Networx (http://lnxi.com)
8 * This file may be distributed under the terms of the
9 * GNU General Public License.
12 #include <linux/module.h>
13 #include <linux/init.h>
14 #include <linux/pci.h>
15 #include <linux/pci_ids.h>
16 #include <linux/slab.h>
17 #include "edac_core.h"
19 #define I3000_REVISION "1.1"
21 #define EDAC_MOD_STR "i3000_edac"
24 #define I3000_RANKS_PER_CHANNEL 4
25 #define I3000_CHANNELS 2
27 /* Intel 3000 register addresses - device 0 function 0 - DRAM Controller */
29 #define I3000_MCHBAR 0x44 /* MCH Memory Mapped Register BAR */
30 #define I3000_MCHBAR_MASK 0xffffc000
31 #define I3000_MMR_WINDOW_SIZE 16384
33 #define I3000_EDEAP 0x70 /* Extended DRAM Error Address Pointer (8b)
38 #define I3000_DEAP 0x58 /* DRAM Error Address Pointer (32b)
44 #define I3000_DEAP_GRAIN (1 << 7)
45 #define I3000_DEAP_PFN(edeap, deap) ((((edeap) & 1) << (32 - PAGE_SHIFT)) | \
46 ((deap) >> PAGE_SHIFT))
47 #define I3000_DEAP_OFFSET(deap) ((deap) & ~(I3000_DEAP_GRAIN-1) & ~PAGE_MASK)
48 #define I3000_DEAP_CHANNEL(deap) ((deap) & 1)
50 #define I3000_DERRSYN 0x5c /* DRAM Error Syndrome (8b)
52 * 7:0 DRAM ECC Syndrome
55 #define I3000_ERRSTS 0xc8 /* Error Status Register (16b)
58 * 11 MCH Thermal Sensor Event for SMI/SCI/SERR
60 * 9 LOCK to non-DRAM Memory Flag (LCKF)
61 * 8 Received Refresh Timeout Flag (RRTOF)
63 * 1 Multiple-bit DRAM ECC Error Flag (DMERR)
64 * 0 Single-bit DRAM ECC Error Flag (DSERR)
66 #define I3000_ERRSTS_BITS 0x0b03 /* bits which indicate errors */
67 #define I3000_ERRSTS_UE 0x0002
68 #define I3000_ERRSTS_CE 0x0001
70 #define I3000_ERRCMD 0xca /* Error Command (16b)
73 * 11 SERR on MCH Thermal Sensor Event (TSESERR)
75 * 9 SERR on LOCK to non-DRAM Memory (LCKERR)
76 * 8 SERR on DRAM Refresh Timeout (DRTOERR)
78 * 1 SERR Multiple-Bit DRAM ECC Error (DMERR)
79 * 0 SERR on Single-Bit ECC Error (DSERR)
82 /* Intel MMIO register space - device 0 function 0 - MMR space */
84 #define I3000_DRB_SHIFT 25 /* 32MiB grain */
86 #define I3000_C0DRB 0x100 /* Channel 0 DRAM Rank Boundary (8b x 4)
88 * 7:0 Channel 0 DRAM Rank Boundary Address
90 #define I3000_C1DRB 0x180 /* Channel 1 DRAM Rank Boundary (8b x 4)
92 * 7:0 Channel 1 DRAM Rank Boundary Address
95 #define I3000_C0DRA 0x108 /* Channel 0 DRAM Rank Attribute (8b x 2)
98 * 6:4 DRAM odd Rank Attribute
100 * 2:0 DRAM even Rank Attribute
102 * Each attribute defines the page
103 * size of the corresponding rank:
111 #define I3000_C1DRA 0x188 /* Channel 1 DRAM Rank Attribute (8b x 2) */
112 #define ODD_RANK_ATTRIB(dra) (((dra) & 0x70) >> 4)
113 #define EVEN_RANK_ATTRIB(dra) ((dra) & 0x07)
115 #define I3000_C0DRC0 0x120 /* DRAM Controller Mode 0 (32b)
118 * 29 Initialization Complete (IC)
120 * 10:8 Refresh Mode Select (RMS)
122 * 6:4 Mode Select (SMS)
127 #define I3000_C0DRC1 0x124 /* DRAM Controller Mode 1 (32b)
129 * 31 Enhanced Addressing Enable (ENHADE)
137 struct i3000_dev_info {
138 const char *ctl_name;
141 struct i3000_error_info {
149 static const struct i3000_dev_info i3000_devs[] = {
151 .ctl_name = "i3000"},
154 static struct pci_dev *mci_pdev = NULL;
155 static int i3000_registered = 1;
156 static struct edac_pci_ctl_info *i3000_pci;
158 static void i3000_get_error_info(struct mem_ctl_info *mci,
159 struct i3000_error_info *info)
161 struct pci_dev *pdev;
163 pdev = to_pci_dev(mci->dev);
166 * This is a mess because there is no atomic way to read all the
167 * registers at once and the registers can transition from CE being
170 pci_read_config_word(pdev, I3000_ERRSTS, &info->errsts);
171 if (!(info->errsts & I3000_ERRSTS_BITS))
173 pci_read_config_byte(pdev, I3000_EDEAP, &info->edeap);
174 pci_read_config_dword(pdev, I3000_DEAP, &info->deap);
175 pci_read_config_byte(pdev, I3000_DERRSYN, &info->derrsyn);
176 pci_read_config_word(pdev, I3000_ERRSTS, &info->errsts2);
179 * If the error is the same for both reads then the first set
180 * of reads is valid. If there is a change then there is a CE
181 * with no info and the second set of reads is valid and
184 if ((info->errsts ^ info->errsts2) & I3000_ERRSTS_BITS) {
185 pci_read_config_byte(pdev, I3000_EDEAP, &info->edeap);
186 pci_read_config_dword(pdev, I3000_DEAP, &info->deap);
187 pci_read_config_byte(pdev, I3000_DERRSYN, &info->derrsyn);
190 /* Clear any error bits.
191 * (Yes, we really clear bits by writing 1 to them.)
193 pci_write_bits16(pdev, I3000_ERRSTS, I3000_ERRSTS_BITS,
197 static int i3000_process_error_info(struct mem_ctl_info *mci,
198 struct i3000_error_info *info,
202 int pfn, offset, channel;
204 multi_chan = mci->csrows[0].nr_channels - 1;
206 if (!(info->errsts & I3000_ERRSTS_BITS))
212 if ((info->errsts ^ info->errsts2) & I3000_ERRSTS_BITS) {
213 edac_mc_handle_ce_no_info(mci, "UE overwrote CE");
214 info->errsts = info->errsts2;
217 pfn = I3000_DEAP_PFN(info->edeap, info->deap);
218 offset = I3000_DEAP_OFFSET(info->deap);
219 channel = I3000_DEAP_CHANNEL(info->deap);
221 row = edac_mc_find_csrow_by_page(mci, pfn);
223 if (info->errsts & I3000_ERRSTS_UE)
224 edac_mc_handle_ue(mci, pfn, offset, row, "i3000 UE");
226 edac_mc_handle_ce(mci, pfn, offset, info->derrsyn, row,
227 multi_chan ? channel : 0, "i3000 CE");
232 static void i3000_check(struct mem_ctl_info *mci)
234 struct i3000_error_info info;
236 debugf1("MC%d: %s()\n", mci->mc_idx, __func__);
237 i3000_get_error_info(mci, &info);
238 i3000_process_error_info(mci, &info, 1);
241 static int i3000_is_interleaved(const unsigned char *c0dra,
242 const unsigned char *c1dra,
243 const unsigned char *c0drb,
244 const unsigned char *c1drb)
248 /* If the channels aren't populated identically then
249 * we're not interleaved.
251 for (i = 0; i < I3000_RANKS_PER_CHANNEL / 2; i++)
252 if (ODD_RANK_ATTRIB(c0dra[i]) != ODD_RANK_ATTRIB(c1dra[i]) ||
253 EVEN_RANK_ATTRIB(c0dra[i]) != EVEN_RANK_ATTRIB(c1dra[i]))
256 /* If the rank boundaries for the two channels are different
257 * then we're not interleaved.
259 for (i = 0; i < I3000_RANKS_PER_CHANNEL; i++)
260 if (c0drb[i] != c1drb[i])
266 static int i3000_probe1(struct pci_dev *pdev, int dev_idx)
270 struct mem_ctl_info *mci = NULL;
271 unsigned long last_cumul_size;
272 int interleaved, nr_channels;
273 unsigned char dra[I3000_RANKS / 2], drb[I3000_RANKS];
274 unsigned char *c0dra = dra, *c1dra = &dra[I3000_RANKS_PER_CHANNEL / 2];
275 unsigned char *c0drb = drb, *c1drb = &drb[I3000_RANKS_PER_CHANNEL];
276 unsigned long mchbar;
279 debugf0("MC: %s()\n", __func__);
281 pci_read_config_dword(pdev, I3000_MCHBAR, (u32 *) & mchbar);
282 mchbar &= I3000_MCHBAR_MASK;
283 window = ioremap_nocache(mchbar, I3000_MMR_WINDOW_SIZE);
285 printk(KERN_ERR "i3000: cannot map mmio space at 0x%lx\n",
290 c0dra[0] = readb(window + I3000_C0DRA + 0); /* ranks 0,1 */
291 c0dra[1] = readb(window + I3000_C0DRA + 1); /* ranks 2,3 */
292 c1dra[0] = readb(window + I3000_C1DRA + 0); /* ranks 0,1 */
293 c1dra[1] = readb(window + I3000_C1DRA + 1); /* ranks 2,3 */
295 for (i = 0; i < I3000_RANKS_PER_CHANNEL; i++) {
296 c0drb[i] = readb(window + I3000_C0DRB + i);
297 c1drb[i] = readb(window + I3000_C1DRB + i);
302 /* Figure out how many channels we have.
304 * If we have what the datasheet calls "asymmetric channels"
305 * (essentially the same as what was called "virtual single
306 * channel mode" in the i82875) then it's a single channel as
307 * far as EDAC is concerned.
309 interleaved = i3000_is_interleaved(c0dra, c1dra, c0drb, c1drb);
310 nr_channels = interleaved ? 2 : 1;
311 mci = edac_mc_alloc(0, I3000_RANKS / nr_channels, nr_channels);
315 debugf3("MC: %s(): init mci\n", __func__);
317 mci->dev = &pdev->dev;
318 mci->mtype_cap = MEM_FLAG_DDR2;
320 mci->edac_ctl_cap = EDAC_FLAG_SECDED;
321 mci->edac_cap = EDAC_FLAG_SECDED;
323 mci->mod_name = EDAC_MOD_STR;
324 mci->mod_ver = I3000_REVISION;
325 mci->ctl_name = i3000_devs[dev_idx].ctl_name;
326 mci->dev_name = pci_name(pdev);
327 mci->edac_check = i3000_check;
328 mci->ctl_page_to_phys = NULL;
331 * The dram rank boundary (DRB) reg values are boundary addresses
332 * for each DRAM rank with a granularity of 32MB. DRB regs are
333 * cumulative; the last one will contain the total memory
334 * contained in all ranks.
336 * If we're in interleaved mode then we're only walking through
337 * the ranks of controller 0, so we double all the values we see.
339 for (last_cumul_size = i = 0; i < mci->nr_csrows; i++) {
342 struct csrow_info *csrow = &mci->csrows[i];
345 cumul_size = value << (I3000_DRB_SHIFT - PAGE_SHIFT);
348 debugf3("MC: %s(): (%d) cumul_size 0x%x\n",
349 __func__, i, cumul_size);
350 if (cumul_size == last_cumul_size) {
351 csrow->mtype = MEM_EMPTY;
355 csrow->first_page = last_cumul_size;
356 csrow->last_page = cumul_size - 1;
357 csrow->nr_pages = cumul_size - last_cumul_size;
358 last_cumul_size = cumul_size;
359 csrow->grain = I3000_DEAP_GRAIN;
360 csrow->mtype = MEM_DDR2;
361 csrow->dtype = DEV_UNKNOWN;
362 csrow->edac_mode = EDAC_UNKNOWN;
365 /* Clear any error bits.
366 * (Yes, we really clear bits by writing 1 to them.)
368 pci_write_bits16(pdev, I3000_ERRSTS, I3000_ERRSTS_BITS,
372 if (edac_mc_add_mc(mci, 0)) {
373 debugf3("MC: %s(): failed edac_mc_add_mc()\n", __func__);
377 /* allocating generic PCI control info */
378 i3000_pci = edac_pci_create_generic_ctl(&pdev->dev, EDAC_MOD_STR);
381 "%s(): Unable to create PCI control\n",
384 "%s(): PCI error report via EDAC not setup\n",
388 /* get this far and it's successful */
389 debugf3("MC: %s(): success\n", __func__);
399 /* returns count (>= 0), or negative on error */
400 static int __devinit i3000_init_one(struct pci_dev *pdev,
401 const struct pci_device_id *ent)
405 debugf0("MC: %s()\n", __func__);
407 if (pci_enable_device(pdev) < 0)
410 rc = i3000_probe1(pdev, ent->driver_data);
411 if (mci_pdev == NULL)
412 mci_pdev = pci_dev_get(pdev);
417 static void __devexit i3000_remove_one(struct pci_dev *pdev)
419 struct mem_ctl_info *mci;
421 debugf0("%s()\n", __func__);
424 edac_pci_release_generic_ctl(i3000_pci);
426 if ((mci = edac_mc_del_mc(&pdev->dev)) == NULL)
432 static const struct pci_device_id i3000_pci_tbl[] __devinitdata = {
434 PCI_VEND_DEV(INTEL, 3000_HB), PCI_ANY_ID, PCI_ANY_ID, 0, 0,
438 } /* 0 terminated list. */
441 MODULE_DEVICE_TABLE(pci, i3000_pci_tbl);
443 static struct pci_driver i3000_driver = {
444 .name = EDAC_MOD_STR,
445 .probe = i3000_init_one,
446 .remove = __devexit_p(i3000_remove_one),
447 .id_table = i3000_pci_tbl,
450 static int __init i3000_init(void)
454 debugf3("MC: %s()\n", __func__);
455 pci_rc = pci_register_driver(&i3000_driver);
459 if (mci_pdev == NULL) {
460 i3000_registered = 0;
461 mci_pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
462 PCI_DEVICE_ID_INTEL_3000_HB, NULL);
464 debugf0("i3000 pci_get_device fail\n");
469 pci_rc = i3000_init_one(mci_pdev, i3000_pci_tbl);
471 debugf0("i3000 init fail\n");
480 pci_unregister_driver(&i3000_driver);
484 pci_dev_put(mci_pdev);
489 static void __exit i3000_exit(void)
491 debugf3("MC: %s()\n", __func__);
493 pci_unregister_driver(&i3000_driver);
494 if (!i3000_registered) {
495 i3000_remove_one(mci_pdev);
496 pci_dev_put(mci_pdev);
500 module_init(i3000_init);
501 module_exit(i3000_exit);
503 MODULE_LICENSE("GPL");
504 MODULE_AUTHOR("Akamai Technologies Arthur Ulfeldt/Jason Uhlenkott");
505 MODULE_DESCRIPTION("MC support for Intel 3000 memory hub controllers");