2 * Intel 3200/3210 Memory Controller kernel module
3 * Copyright (C) 2008-2009 Akamai Technologies, Inc.
4 * Portions by Hitoshi Mitake <h.mitake@gmail.com>.
6 * This file may be distributed under the terms of the
7 * GNU General Public License.
10 #include <linux/module.h>
11 #include <linux/init.h>
12 #include <linux/pci.h>
13 #include <linux/pci_ids.h>
14 #include <linux/edac.h>
16 #include "edac_core.h"
18 #define I3200_REVISION "1.1"
20 #define EDAC_MOD_STR "i3200_edac"
22 #define PCI_DEVICE_ID_INTEL_3200_HB 0x29f0
25 #define I3200_RANKS_PER_CHANNEL 4
26 #define I3200_CHANNELS 2
28 /* Intel 3200 register addresses - device 0 function 0 - DRAM Controller */
30 #define I3200_MCHBAR_LOW 0x48 /* MCH Memory Mapped Register BAR */
31 #define I3200_MCHBAR_HIGH 0x4c
32 #define I3200_MCHBAR_MASK 0xfffffc000ULL /* bits 35:14 */
33 #define I3200_MMR_WINDOW_SIZE 16384
35 #define I3200_TOM 0xa0 /* Top of Memory (16b)
38 * 9:0 total populated physical memory
40 #define I3200_TOM_MASK 0x3ff /* bits 9:0 */
41 #define I3200_TOM_SHIFT 26 /* 64MiB grain */
43 #define I3200_ERRSTS 0xc8 /* Error Status Register (16b)
46 * 14 Isochronous TBWRR Run Behind FIFO Full
48 * 13 Isochronous TBWRR Run Behind FIFO Put
51 * 11 MCH Thermal Sensor Event
52 * for SMI/SCI/SERR (GTSE)
54 * 9 LOCK to non-DRAM Memory Flag (LCKF)
56 * 7 DRAM Throttle Flag (DTF)
58 * 1 Multi-bit DRAM ECC Error Flag (DMERR)
59 * 0 Single-bit DRAM ECC Error Flag (DSERR)
61 #define I3200_ERRSTS_UE 0x0002
62 #define I3200_ERRSTS_CE 0x0001
63 #define I3200_ERRSTS_BITS (I3200_ERRSTS_UE | I3200_ERRSTS_CE)
66 /* Intel MMIO register space - device 0 function 0 - MMR space */
68 #define I3200_C0DRB 0x200 /* Channel 0 DRAM Rank Boundary (16b x 4)
71 * 9:0 Channel 0 DRAM Rank Boundary Address
73 #define I3200_C1DRB 0x600 /* Channel 1 DRAM Rank Boundary (16b x 4) */
74 #define I3200_DRB_MASK 0x3ff /* bits 9:0 */
75 #define I3200_DRB_SHIFT 26 /* 64MiB grain */
77 #define I3200_C0ECCERRLOG 0x280 /* Channel 0 ECC Error Log (64b)
79 * 63:48 Error Column Address (ERRCOL)
80 * 47:32 Error Row Address (ERRROW)
81 * 31:29 Error Bank Address (ERRBANK)
82 * 28:27 Error Rank Address (ERRRANK)
84 * 23:16 Error Syndrome (ERRSYND)
86 * 1 Multiple Bit Error Status (MERRSTS)
87 * 0 Correctable Error Status (CERRSTS)
89 #define I3200_C1ECCERRLOG 0x680 /* Chan 1 ECC Error Log (64b) */
90 #define I3200_ECCERRLOG_CE 0x1
91 #define I3200_ECCERRLOG_UE 0x2
92 #define I3200_ECCERRLOG_RANK_BITS 0x18000000
93 #define I3200_ECCERRLOG_RANK_SHIFT 27
94 #define I3200_ECCERRLOG_SYNDROME_BITS 0xff0000
95 #define I3200_ECCERRLOG_SYNDROME_SHIFT 16
96 #define I3200_CAPID0 0xe0 /* P.95 of spec for details */
102 static int nr_channels
;
104 static int how_many_channels(struct pci_dev
*pdev
)
106 unsigned char capid0_8b
; /* 8th byte of CAPID0 */
108 pci_read_config_byte(pdev
, I3200_CAPID0
+ 8, &capid0_8b
);
109 if (capid0_8b
& 0x20) { /* check DCD: Dual Channel Disable */
110 debugf0("In single channel mode.\n");
113 debugf0("In dual channel mode.\n");
118 static unsigned long eccerrlog_syndrome(u64 log
)
120 return (log
& I3200_ECCERRLOG_SYNDROME_BITS
) >>
121 I3200_ECCERRLOG_SYNDROME_SHIFT
;
124 static int eccerrlog_row(int channel
, u64 log
)
126 u64 rank
= ((log
& I3200_ECCERRLOG_RANK_BITS
) >>
127 I3200_ECCERRLOG_RANK_SHIFT
);
128 return rank
| (channel
* I3200_RANKS_PER_CHANNEL
);
135 struct i3200_dev_info
{
136 const char *ctl_name
;
139 struct i3200_error_info
{
142 u64 eccerrlog
[I3200_CHANNELS
];
145 static const struct i3200_dev_info i3200_devs
[] = {
151 static struct pci_dev
*mci_pdev
;
152 static int i3200_registered
= 1;
155 static void i3200_clear_error_info(struct mem_ctl_info
*mci
)
157 struct pci_dev
*pdev
;
159 pdev
= to_pci_dev(mci
->dev
);
162 * Clear any error bits.
163 * (Yes, we really clear bits by writing 1 to them.)
165 pci_write_bits16(pdev
, I3200_ERRSTS
, I3200_ERRSTS_BITS
,
169 static void i3200_get_and_clear_error_info(struct mem_ctl_info
*mci
,
170 struct i3200_error_info
*info
)
172 struct pci_dev
*pdev
;
173 struct i3200_priv
*priv
= mci
->pvt_info
;
174 void __iomem
*window
= priv
->window
;
176 pdev
= to_pci_dev(mci
->dev
);
179 * This is a mess because there is no atomic way to read all the
180 * registers at once and the registers can transition from CE being
183 pci_read_config_word(pdev
, I3200_ERRSTS
, &info
->errsts
);
184 if (!(info
->errsts
& I3200_ERRSTS_BITS
))
187 info
->eccerrlog
[0] = readq(window
+ I3200_C0ECCERRLOG
);
188 if (nr_channels
== 2)
189 info
->eccerrlog
[1] = readq(window
+ I3200_C1ECCERRLOG
);
191 pci_read_config_word(pdev
, I3200_ERRSTS
, &info
->errsts2
);
194 * If the error is the same for both reads then the first set
195 * of reads is valid. If there is a change then there is a CE
196 * with no info and the second set of reads is valid and
199 if ((info
->errsts
^ info
->errsts2
) & I3200_ERRSTS_BITS
) {
200 info
->eccerrlog
[0] = readq(window
+ I3200_C0ECCERRLOG
);
201 if (nr_channels
== 2)
202 info
->eccerrlog
[1] = readq(window
+ I3200_C1ECCERRLOG
);
205 i3200_clear_error_info(mci
);
208 static void i3200_process_error_info(struct mem_ctl_info
*mci
,
209 struct i3200_error_info
*info
)
214 if (!(info
->errsts
& I3200_ERRSTS_BITS
))
217 if ((info
->errsts
^ info
->errsts2
) & I3200_ERRSTS_BITS
) {
218 edac_mc_handle_ce_no_info(mci
, "UE overwrote CE");
219 info
->errsts
= info
->errsts2
;
222 for (channel
= 0; channel
< nr_channels
; channel
++) {
223 log
= info
->eccerrlog
[channel
];
224 if (log
& I3200_ECCERRLOG_UE
) {
225 edac_mc_handle_ue(mci
, 0, 0,
226 eccerrlog_row(channel
, log
),
228 } else if (log
& I3200_ECCERRLOG_CE
) {
229 edac_mc_handle_ce(mci
, 0, 0,
230 eccerrlog_syndrome(log
),
231 eccerrlog_row(channel
, log
), 0,
237 static void i3200_check(struct mem_ctl_info
*mci
)
239 struct i3200_error_info info
;
241 debugf1("MC%d: %s()\n", mci
->mc_idx
, __func__
);
242 i3200_get_and_clear_error_info(mci
, &info
);
243 i3200_process_error_info(mci
, &info
);
247 void __iomem
*i3200_map_mchbar(struct pci_dev
*pdev
)
256 void __iomem
*window
;
258 pci_read_config_dword(pdev
, I3200_MCHBAR_LOW
, &u
.mchbar_low
);
259 pci_read_config_dword(pdev
, I3200_MCHBAR_HIGH
, &u
.mchbar_high
);
260 u
.mchbar
&= I3200_MCHBAR_MASK
;
262 if (u
.mchbar
!= (resource_size_t
)u
.mchbar
) {
264 "i3200: mmio space beyond accessible range (0x%llx)\n",
265 (unsigned long long)u
.mchbar
);
269 window
= ioremap_nocache(u
.mchbar
, I3200_MMR_WINDOW_SIZE
);
271 printk(KERN_ERR
"i3200: cannot map mmio space at 0x%llx\n",
272 (unsigned long long)u
.mchbar
);
278 static void i3200_get_drbs(void __iomem
*window
,
279 u16 drbs
[I3200_CHANNELS
][I3200_RANKS_PER_CHANNEL
])
283 for (i
= 0; i
< I3200_RANKS_PER_CHANNEL
; i
++) {
284 drbs
[0][i
] = readw(window
+ I3200_C0DRB
+ 2*i
) & I3200_DRB_MASK
;
285 drbs
[1][i
] = readw(window
+ I3200_C1DRB
+ 2*i
) & I3200_DRB_MASK
;
289 static bool i3200_is_stacked(struct pci_dev
*pdev
,
290 u16 drbs
[I3200_CHANNELS
][I3200_RANKS_PER_CHANNEL
])
294 pci_read_config_word(pdev
, I3200_TOM
, &tom
);
295 tom
&= I3200_TOM_MASK
;
297 return drbs
[I3200_CHANNELS
- 1][I3200_RANKS_PER_CHANNEL
- 1] == tom
;
300 static unsigned long drb_to_nr_pages(
301 u16 drbs
[I3200_CHANNELS
][I3200_RANKS_PER_CHANNEL
], bool stacked
,
302 int channel
, int rank
)
306 n
= drbs
[channel
][rank
];
308 n
-= drbs
[channel
][rank
- 1];
309 if (stacked
&& (channel
== 1) &&
310 drbs
[channel
][rank
] == drbs
[channel
][I3200_RANKS_PER_CHANNEL
- 1])
311 n
-= drbs
[0][I3200_RANKS_PER_CHANNEL
- 1];
313 n
<<= (I3200_DRB_SHIFT
- PAGE_SHIFT
);
317 static int i3200_probe1(struct pci_dev
*pdev
, int dev_idx
)
321 struct mem_ctl_info
*mci
= NULL
;
322 unsigned long last_page
;
323 u16 drbs
[I3200_CHANNELS
][I3200_RANKS_PER_CHANNEL
];
325 void __iomem
*window
;
326 struct i3200_priv
*priv
;
328 debugf0("MC: %s()\n", __func__
);
330 window
= i3200_map_mchbar(pdev
);
334 i3200_get_drbs(window
, drbs
);
335 nr_channels
= how_many_channels(pdev
);
337 mci
= edac_mc_alloc(sizeof(struct i3200_priv
), I3200_RANKS
,
342 debugf3("MC: %s(): init mci\n", __func__
);
344 mci
->dev
= &pdev
->dev
;
345 mci
->mtype_cap
= MEM_FLAG_DDR2
;
347 mci
->edac_ctl_cap
= EDAC_FLAG_SECDED
;
348 mci
->edac_cap
= EDAC_FLAG_SECDED
;
350 mci
->mod_name
= EDAC_MOD_STR
;
351 mci
->mod_ver
= I3200_REVISION
;
352 mci
->ctl_name
= i3200_devs
[dev_idx
].ctl_name
;
353 mci
->dev_name
= pci_name(pdev
);
354 mci
->edac_check
= i3200_check
;
355 mci
->ctl_page_to_phys
= NULL
;
356 priv
= mci
->pvt_info
;
357 priv
->window
= window
;
359 stacked
= i3200_is_stacked(pdev
, drbs
);
362 * The dram rank boundary (DRB) reg values are boundary addresses
363 * for each DRAM rank with a granularity of 64MB. DRB regs are
364 * cumulative; the last one will contain the total memory
365 * contained in all ranks.
368 for (i
= 0; i
< mci
->nr_csrows
; i
++) {
369 unsigned long nr_pages
;
370 struct csrow_info
*csrow
= &mci
->csrows
[i
];
372 nr_pages
= drb_to_nr_pages(drbs
, stacked
,
373 i
/ I3200_RANKS_PER_CHANNEL
,
374 i
% I3200_RANKS_PER_CHANNEL
);
377 csrow
->mtype
= MEM_EMPTY
;
381 csrow
->first_page
= last_page
+ 1;
382 last_page
+= nr_pages
;
383 csrow
->last_page
= last_page
;
384 csrow
->nr_pages
= nr_pages
;
386 csrow
->grain
= nr_pages
<< PAGE_SHIFT
;
387 csrow
->mtype
= MEM_DDR2
;
388 csrow
->dtype
= DEV_UNKNOWN
;
389 csrow
->edac_mode
= EDAC_UNKNOWN
;
392 i3200_clear_error_info(mci
);
395 if (edac_mc_add_mc(mci
)) {
396 debugf3("MC: %s(): failed edac_mc_add_mc()\n", __func__
);
400 /* get this far and it's successful */
401 debugf3("MC: %s(): success\n", __func__
);
412 static int __devinit
i3200_init_one(struct pci_dev
*pdev
,
413 const struct pci_device_id
*ent
)
417 debugf0("MC: %s()\n", __func__
);
419 if (pci_enable_device(pdev
) < 0)
422 rc
= i3200_probe1(pdev
, ent
->driver_data
);
424 mci_pdev
= pci_dev_get(pdev
);
429 static void __devexit
i3200_remove_one(struct pci_dev
*pdev
)
431 struct mem_ctl_info
*mci
;
432 struct i3200_priv
*priv
;
434 debugf0("%s()\n", __func__
);
436 mci
= edac_mc_del_mc(&pdev
->dev
);
440 priv
= mci
->pvt_info
;
441 iounmap(priv
->window
);
446 static const struct pci_device_id i3200_pci_tbl
[] __devinitdata
= {
448 PCI_VEND_DEV(INTEL
, 3200_HB
), PCI_ANY_ID
, PCI_ANY_ID
, 0, 0,
452 } /* 0 terminated list. */
455 MODULE_DEVICE_TABLE(pci
, i3200_pci_tbl
);
457 static struct pci_driver i3200_driver
= {
458 .name
= EDAC_MOD_STR
,
459 .probe
= i3200_init_one
,
460 .remove
= __devexit_p(i3200_remove_one
),
461 .id_table
= i3200_pci_tbl
,
464 static int __init
i3200_init(void)
468 debugf3("MC: %s()\n", __func__
);
470 /* Ensure that the OPSTATE is set correctly for POLL or NMI */
473 pci_rc
= pci_register_driver(&i3200_driver
);
478 i3200_registered
= 0;
479 mci_pdev
= pci_get_device(PCI_VENDOR_ID_INTEL
,
480 PCI_DEVICE_ID_INTEL_3200_HB
, NULL
);
482 debugf0("i3200 pci_get_device fail\n");
487 pci_rc
= i3200_init_one(mci_pdev
, i3200_pci_tbl
);
489 debugf0("i3200 init fail\n");
498 pci_unregister_driver(&i3200_driver
);
502 pci_dev_put(mci_pdev
);
507 static void __exit
i3200_exit(void)
509 debugf3("MC: %s()\n", __func__
);
511 pci_unregister_driver(&i3200_driver
);
512 if (!i3200_registered
) {
513 i3200_remove_one(mci_pdev
);
514 pci_dev_put(mci_pdev
);
518 module_init(i3200_init
);
519 module_exit(i3200_exit
);
521 MODULE_LICENSE("GPL");
522 MODULE_AUTHOR("Akamai Technologies, Inc.");
523 MODULE_DESCRIPTION("MC support for Intel 3200 memory hub controllers");
525 module_param(edac_op_state
, int, 0444);
526 MODULE_PARM_DESC(edac_op_state
, "EDAC Error Reporting state: 0=Poll,1=NMI");