blob: 0b98dd3408b9974cd738c4ed634cc1fce0f74c1a [file] [log] [blame]
Tim Small5a2c6752007-07-19 01:49:42 -07001/*
2 * Intel 82443BX/GX (440BX/GX chipset) Memory Controller EDAC kernel
3 * module (C) 2006 Tim Small
4 *
5 * This file may be distributed under the terms of the GNU General
6 * Public License.
7 *
8 * Written by Tim Small <tim@buttersideup.com>, based on work by Linux
9 * Networx, Thayne Harbaugh, Dan Hollis <goemon at anime dot net> and
10 * others.
11 *
12 * 440GX fix by Jason Uhlenkott <juhlenko@akamai.com>.
13 *
14 * Written with reference to 82443BX Host Bridge Datasheet:
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -030015 * http://download.intel.com/design/chipsets/datashts/29063301.pdf
Tim Small5a2c6752007-07-19 01:49:42 -070016 * references to this document given in [].
17 *
18 * This module doesn't support the 440LX, but it may be possible to
19 * make it do so (the 440LX's register definitions are different, but
20 * not completely so - I haven't studied them in enough detail to know
21 * how easy this would be).
22 */
23
24#include <linux/module.h>
25#include <linux/init.h>
26
27#include <linux/pci.h>
28#include <linux/pci_ids.h>
29
Tim Small5a2c6752007-07-19 01:49:42 -070030
Hitoshi Mitakec3c52bc2008-04-29 01:03:18 -070031#include <linux/edac.h>
Douglas Thompson20bcb7a2007-07-19 01:49:47 -070032#include "edac_core.h"
Tim Small5a2c6752007-07-19 01:49:42 -070033
34#define I82443_REVISION "0.1"
35
36#define EDAC_MOD_STR "i82443bxgx_edac"
37
Tim Small5a2c6752007-07-19 01:49:42 -070038/* The 82443BX supports SDRAM, or EDO (EDO for mobile only), "Memory
39 * Size: 8 MB to 512 MB (1GB with Registered DIMMs) with eight memory
40 * rows" "The 82443BX supports multiple-bit error detection and
41 * single-bit error correction when ECC mode is enabled and
42 * single/multi-bit error detection when correction is disabled.
43 * During writes to the DRAM, the 82443BX generates ECC for the data
44 * on a QWord basis. Partial QWord writes require a read-modify-write
45 * cycle when ECC is enabled."
46*/
47
48/* "Additionally, the 82443BX ensures that the data is corrected in
49 * main memory so that accumulation of errors is prevented. Another
50 * error within the same QWord would result in a double-bit error
51 * which is unrecoverable. This is known as hardware scrubbing since
52 * it requires no software intervention to correct the data in memory."
53 */
54
55/* [Also see page 100 (section 4.3), "DRAM Interface"]
56 * [Also see page 112 (section 4.6.1.4), ECC]
57 */
58
59#define I82443BXGX_NR_CSROWS 8
60#define I82443BXGX_NR_CHANS 1
61#define I82443BXGX_NR_DIMMS 4
62
Tim Small5a2c6752007-07-19 01:49:42 -070063/* 82443 PCI Device 0 */
Douglas Thompson11116602007-07-19 01:50:07 -070064#define I82443BXGX_NBXCFG 0x50 /* 32bit register starting at this PCI
65 * config space offset */
66#define I82443BXGX_NBXCFG_OFFSET_NON_ECCROW 24 /* Array of bits, zero if
67 * row is non-ECC */
68#define I82443BXGX_NBXCFG_OFFSET_DRAM_FREQ 12 /* 2 bits,00=100MHz,10=66 MHz */
Tim Small5a2c6752007-07-19 01:49:42 -070069
Douglas Thompson11116602007-07-19 01:50:07 -070070#define I82443BXGX_NBXCFG_OFFSET_DRAM_INTEGRITY 7 /* 2 bits: */
71#define I82443BXGX_NBXCFG_INTEGRITY_NONE 0x0 /* 00 = Non-ECC */
72#define I82443BXGX_NBXCFG_INTEGRITY_EC 0x1 /* 01 = EC (only) */
73#define I82443BXGX_NBXCFG_INTEGRITY_ECC 0x2 /* 10 = ECC */
74#define I82443BXGX_NBXCFG_INTEGRITY_SCRUB 0x3 /* 11 = ECC + HW Scrub */
Tim Small5a2c6752007-07-19 01:49:42 -070075
76#define I82443BXGX_NBXCFG_OFFSET_ECC_DIAG_ENABLE 6
77
Tim Small5a2c6752007-07-19 01:49:42 -070078/* 82443 PCI Device 0 */
Douglas Thompson11116602007-07-19 01:50:07 -070079#define I82443BXGX_EAP 0x80 /* 32bit register starting at this PCI
80 * config space offset, Error Address
81 * Pointer Register */
82#define I82443BXGX_EAP_OFFSET_EAP 12 /* High 20 bits of error address */
83#define I82443BXGX_EAP_OFFSET_MBE BIT(1) /* Err at EAP was multi-bit (W1TC) */
84#define I82443BXGX_EAP_OFFSET_SBE BIT(0) /* Err at EAP was single-bit (W1TC) */
Tim Small5a2c6752007-07-19 01:49:42 -070085
Douglas Thompson11116602007-07-19 01:50:07 -070086#define I82443BXGX_ERRCMD 0x90 /* 8bit register starting at this PCI
Tim Small5a2c6752007-07-19 01:49:42 -070087 * config space offset. */
Douglas Thompson11116602007-07-19 01:50:07 -070088#define I82443BXGX_ERRCMD_OFFSET_SERR_ON_MBE BIT(1) /* 1 = enable */
89#define I82443BXGX_ERRCMD_OFFSET_SERR_ON_SBE BIT(0) /* 1 = enable */
Tim Small5a2c6752007-07-19 01:49:42 -070090
Douglas Thompson11116602007-07-19 01:50:07 -070091#define I82443BXGX_ERRSTS 0x91 /* 16bit register starting at this PCI
Tim Small5a2c6752007-07-19 01:49:42 -070092 * config space offset. */
Douglas Thompson11116602007-07-19 01:50:07 -070093#define I82443BXGX_ERRSTS_OFFSET_MBFRE 5 /* 3 bits - first err row multibit */
94#define I82443BXGX_ERRSTS_OFFSET_MEF BIT(4) /* 1 = MBE occurred */
95#define I82443BXGX_ERRSTS_OFFSET_SBFRE 1 /* 3 bits - first err row singlebit */
96#define I82443BXGX_ERRSTS_OFFSET_SEF BIT(0) /* 1 = SBE occurred */
Tim Small5a2c6752007-07-19 01:49:42 -070097
Douglas Thompson11116602007-07-19 01:50:07 -070098#define I82443BXGX_DRAMC 0x57 /* 8bit register starting at this PCI
99 * config space offset. */
100#define I82443BXGX_DRAMC_OFFSET_DT 3 /* 2 bits, DRAM Type */
101#define I82443BXGX_DRAMC_DRAM_IS_EDO 0 /* 00 = EDO */
Tim Small5a2c6752007-07-19 01:49:42 -0700102#define I82443BXGX_DRAMC_DRAM_IS_SDRAM 1 /* 01 = SDRAM */
Douglas Thompson11116602007-07-19 01:50:07 -0700103#define I82443BXGX_DRAMC_DRAM_IS_RSDRAM 2 /* 10 = Registered SDRAM */
Tim Small5a2c6752007-07-19 01:49:42 -0700104
Douglas Thompson11116602007-07-19 01:50:07 -0700105#define I82443BXGX_DRB 0x60 /* 8x 8bit registers starting at this PCI
106 * config space offset. */
Tim Small5a2c6752007-07-19 01:49:42 -0700107
108/* FIXME - don't poll when ECC disabled? */
109
Tim Small5a2c6752007-07-19 01:49:42 -0700110struct i82443bxgx_edacmc_error_info {
111 u32 eap;
112};
113
Dave Jiang456a2f92007-07-19 01:50:10 -0700114static struct edac_pci_ctl_info *i82443bxgx_pci;
115
Vladislav Bogdanov53a2fe52008-10-15 22:04:26 -0700116static struct pci_dev *mci_pdev; /* init dev: in case that AGP code has
117 * already registered driver
118 */
119
120static int i82443bxgx_registered = 1;
121
Douglas Thompson11116602007-07-19 01:50:07 -0700122static void i82443bxgx_edacmc_get_error_info(struct mem_ctl_info *mci,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700123 struct i82443bxgx_edacmc_error_info
124 *info)
Tim Small5a2c6752007-07-19 01:49:42 -0700125{
126 struct pci_dev *pdev;
127 pdev = to_pci_dev(mci->dev);
128 pci_read_config_dword(pdev, I82443BXGX_EAP, &info->eap);
129 if (info->eap & I82443BXGX_EAP_OFFSET_SBE)
130 /* Clear error to allow next error to be reported [p.61] */
131 pci_write_bits32(pdev, I82443BXGX_EAP,
132 I82443BXGX_EAP_OFFSET_SBE,
133 I82443BXGX_EAP_OFFSET_SBE);
134
135 if (info->eap & I82443BXGX_EAP_OFFSET_MBE)
136 /* Clear error to allow next error to be reported [p.61] */
137 pci_write_bits32(pdev, I82443BXGX_EAP,
138 I82443BXGX_EAP_OFFSET_MBE,
139 I82443BXGX_EAP_OFFSET_MBE);
140}
141
Douglas Thompson11116602007-07-19 01:50:07 -0700142static int i82443bxgx_edacmc_process_error_info(struct mem_ctl_info *mci,
143 struct
144 i82443bxgx_edacmc_error_info
145 *info, int handle_errors)
Tim Small5a2c6752007-07-19 01:49:42 -0700146{
147 int error_found = 0;
148 u32 eapaddr, page, pageoffset;
149
150 /* bits 30:12 hold the 4kb block in which the error occurred
151 * [p.61] */
152 eapaddr = (info->eap & 0xfffff000);
153 page = eapaddr >> PAGE_SHIFT;
154 pageoffset = eapaddr - (page << PAGE_SHIFT);
155
Douglas Thompson11116602007-07-19 01:50:07 -0700156 if (info->eap & I82443BXGX_EAP_OFFSET_SBE) {
Tim Small5a2c6752007-07-19 01:49:42 -0700157 error_found = 1;
158 if (handle_errors)
Douglas Thompson11116602007-07-19 01:50:07 -0700159 edac_mc_handle_ce(mci, page, pageoffset,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700160 /* 440BX/GX don't make syndrome information
161 * available */
162 0, edac_mc_find_csrow_by_page(mci, page), 0,
163 mci->ctl_name);
Tim Small5a2c6752007-07-19 01:49:42 -0700164 }
165
Douglas Thompson11116602007-07-19 01:50:07 -0700166 if (info->eap & I82443BXGX_EAP_OFFSET_MBE) {
Tim Small5a2c6752007-07-19 01:49:42 -0700167 error_found = 1;
168 if (handle_errors)
Douglas Thompson11116602007-07-19 01:50:07 -0700169 edac_mc_handle_ue(mci, page, pageoffset,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700170 edac_mc_find_csrow_by_page(mci, page),
171 mci->ctl_name);
Tim Small5a2c6752007-07-19 01:49:42 -0700172 }
173
174 return error_found;
175}
176
Tim Small5a2c6752007-07-19 01:49:42 -0700177static void i82443bxgx_edacmc_check(struct mem_ctl_info *mci)
178{
179 struct i82443bxgx_edacmc_error_info info;
180
Joe Perches63ae96b2010-05-26 14:44:14 -0700181 debugf1("MC%d: %s: %s()\n", mci->mc_idx, __FILE__, __func__);
Tim Small5a2c6752007-07-19 01:49:42 -0700182 i82443bxgx_edacmc_get_error_info(mci, &info);
183 i82443bxgx_edacmc_process_error_info(mci, &info, 1);
184}
185
Tim Small5a2c6752007-07-19 01:49:42 -0700186static void i82443bxgx_init_csrows(struct mem_ctl_info *mci,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700187 struct pci_dev *pdev,
188 enum edac_type edac_mode,
189 enum mem_type mtype)
Tim Small5a2c6752007-07-19 01:49:42 -0700190{
191 struct csrow_info *csrow;
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300192 struct dimm_info *dimm;
Tim Small5a2c6752007-07-19 01:49:42 -0700193 int index;
194 u8 drbar, dramc;
195 u32 row_base, row_high_limit, row_high_limit_last;
196
197 pci_read_config_byte(pdev, I82443BXGX_DRAMC, &dramc);
198 row_high_limit_last = 0;
199 for (index = 0; index < mci->nr_csrows; index++) {
200 csrow = &mci->csrows[index];
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300201 dimm = csrow->channels[0].dimm;
202
Tim Small5a2c6752007-07-19 01:49:42 -0700203 pci_read_config_byte(pdev, I82443BXGX_DRB + index, &drbar);
Joe Perches63ae96b2010-05-26 14:44:14 -0700204 debugf1("MC%d: %s: %s() Row=%d DRB = %#0x\n",
205 mci->mc_idx, __FILE__, __func__, index, drbar);
Tim Small5a2c6752007-07-19 01:49:42 -0700206 row_high_limit = ((u32) drbar << 23);
207 /* find the DRAM Chip Select Base address and mask */
Joe Perches63ae96b2010-05-26 14:44:14 -0700208 debugf1("MC%d: %s: %s() Row=%d, "
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300209 "Boundary Address=%#0x, Last = %#0x\n",
Joe Perches63ae96b2010-05-26 14:44:14 -0700210 mci->mc_idx, __FILE__, __func__, index, row_high_limit,
Tim Small5a2c6752007-07-19 01:49:42 -0700211 row_high_limit_last);
212
213 /* 440GX goes to 2GB, represented with a DRB of 0. */
214 if (row_high_limit_last && !row_high_limit)
215 row_high_limit = 1UL << 31;
216
217 /* This row is empty [p.49] */
218 if (row_high_limit == row_high_limit_last)
219 continue;
220 row_base = row_high_limit_last;
221 csrow->first_page = row_base >> PAGE_SHIFT;
222 csrow->last_page = (row_high_limit >> PAGE_SHIFT) - 1;
223 csrow->nr_pages = csrow->last_page - csrow->first_page + 1;
224 /* EAP reports in 4kilobyte granularity [61] */
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300225 dimm->grain = 1 << 12;
226 dimm->mtype = mtype;
Tim Small5a2c6752007-07-19 01:49:42 -0700227 /* I don't think 440BX can tell you device type? FIXME? */
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300228 dimm->dtype = DEV_UNKNOWN;
Tim Small5a2c6752007-07-19 01:49:42 -0700229 /* Mode is global to all rows on 440BX */
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300230 dimm->edac_mode = edac_mode;
Tim Small5a2c6752007-07-19 01:49:42 -0700231 row_high_limit_last = row_high_limit;
232 }
233}
234
Douglas Thompson11116602007-07-19 01:50:07 -0700235static int i82443bxgx_edacmc_probe1(struct pci_dev *pdev, int dev_idx)
Tim Small5a2c6752007-07-19 01:49:42 -0700236{
237 struct mem_ctl_info *mci;
238 u8 dramc;
239 u32 nbxcfg, ecc_mode;
240 enum mem_type mtype;
241 enum edac_type edac_mode;
242
Joe Perches63ae96b2010-05-26 14:44:14 -0700243 debugf0("MC: %s: %s()\n", __FILE__, __func__);
Tim Small5a2c6752007-07-19 01:49:42 -0700244
245 /* Something is really hosed if PCI config space reads from
Douglas Thompson052dfb42007-07-19 01:50:13 -0700246 * the MC aren't working.
247 */
Tim Small5a2c6752007-07-19 01:49:42 -0700248 if (pci_read_config_dword(pdev, I82443BXGX_NBXCFG, &nbxcfg))
249 return -EIO;
250
Doug Thompsonb8f6f972007-07-19 01:50:26 -0700251 mci = edac_mc_alloc(0, I82443BXGX_NR_CSROWS, I82443BXGX_NR_CHANS, 0);
Tim Small5a2c6752007-07-19 01:49:42 -0700252
253 if (mci == NULL)
254 return -ENOMEM;
255
Joe Perches63ae96b2010-05-26 14:44:14 -0700256 debugf0("MC: %s: %s(): mci = %p\n", __FILE__, __func__, mci);
Tim Small5a2c6752007-07-19 01:49:42 -0700257 mci->dev = &pdev->dev;
258 mci->mtype_cap = MEM_FLAG_EDO | MEM_FLAG_SDR | MEM_FLAG_RDR;
259 mci->edac_ctl_cap = EDAC_FLAG_NONE | EDAC_FLAG_EC | EDAC_FLAG_SECDED;
260 pci_read_config_byte(pdev, I82443BXGX_DRAMC, &dramc);
261 switch ((dramc >> I82443BXGX_DRAMC_OFFSET_DT) & (BIT(0) | BIT(1))) {
Douglas Thompson11116602007-07-19 01:50:07 -0700262 case I82443BXGX_DRAMC_DRAM_IS_EDO:
Tim Small5a2c6752007-07-19 01:49:42 -0700263 mtype = MEM_EDO;
264 break;
265 case I82443BXGX_DRAMC_DRAM_IS_SDRAM:
266 mtype = MEM_SDR;
267 break;
268 case I82443BXGX_DRAMC_DRAM_IS_RSDRAM:
269 mtype = MEM_RDR;
270 break;
271 default:
Douglas Thompson052dfb42007-07-19 01:50:13 -0700272 debugf0("Unknown/reserved DRAM type value "
273 "in DRAMC register!\n");
Tim Small5a2c6752007-07-19 01:49:42 -0700274 mtype = -MEM_UNKNOWN;
275 }
276
277 if ((mtype == MEM_SDR) || (mtype == MEM_RDR))
278 mci->edac_cap = mci->edac_ctl_cap;
279 else
280 mci->edac_cap = EDAC_FLAG_NONE;
281
282 mci->scrub_cap = SCRUB_FLAG_HW_SRC;
283 pci_read_config_dword(pdev, I82443BXGX_NBXCFG, &nbxcfg);
284 ecc_mode = ((nbxcfg >> I82443BXGX_NBXCFG_OFFSET_DRAM_INTEGRITY) &
Douglas Thompson052dfb42007-07-19 01:50:13 -0700285 (BIT(0) | BIT(1)));
Tim Small5a2c6752007-07-19 01:49:42 -0700286
287 mci->scrub_mode = (ecc_mode == I82443BXGX_NBXCFG_INTEGRITY_SCRUB)
Douglas Thompson052dfb42007-07-19 01:50:13 -0700288 ? SCRUB_HW_SRC : SCRUB_NONE;
Tim Small5a2c6752007-07-19 01:49:42 -0700289
Douglas Thompson11116602007-07-19 01:50:07 -0700290 switch (ecc_mode) {
Tim Small5a2c6752007-07-19 01:49:42 -0700291 case I82443BXGX_NBXCFG_INTEGRITY_NONE:
292 edac_mode = EDAC_NONE;
293 break;
294 case I82443BXGX_NBXCFG_INTEGRITY_EC:
295 edac_mode = EDAC_EC;
296 break;
297 case I82443BXGX_NBXCFG_INTEGRITY_ECC:
298 case I82443BXGX_NBXCFG_INTEGRITY_SCRUB:
299 edac_mode = EDAC_SECDED;
300 break;
301 default:
Douglas Thompson052dfb42007-07-19 01:50:13 -0700302 debugf0("%s(): Unknown/reserved ECC state "
303 "in NBXCFG register!\n", __func__);
Tim Small5a2c6752007-07-19 01:49:42 -0700304 edac_mode = EDAC_UNKNOWN;
305 break;
306 }
307
308 i82443bxgx_init_csrows(mci, pdev, edac_mode, mtype);
309
310 /* Many BIOSes don't clear error flags on boot, so do this
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300311 * here, or we get "phantom" errors occurring at module-load
Tim Small5a2c6752007-07-19 01:49:42 -0700312 * time. */
313 pci_write_bits32(pdev, I82443BXGX_EAP,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700314 (I82443BXGX_EAP_OFFSET_SBE |
315 I82443BXGX_EAP_OFFSET_MBE),
316 (I82443BXGX_EAP_OFFSET_SBE |
317 I82443BXGX_EAP_OFFSET_MBE));
Tim Small5a2c6752007-07-19 01:49:42 -0700318
319 mci->mod_name = EDAC_MOD_STR;
320 mci->mod_ver = I82443_REVISION;
321 mci->ctl_name = "I82443BXGX";
Dave Jiangc4192702007-07-19 01:49:47 -0700322 mci->dev_name = pci_name(pdev);
Tim Small5a2c6752007-07-19 01:49:42 -0700323 mci->edac_check = i82443bxgx_edacmc_check;
324 mci->ctl_page_to_phys = NULL;
325
Doug Thompsonb8f6f972007-07-19 01:50:26 -0700326 if (edac_mc_add_mc(mci)) {
Tim Small5a2c6752007-07-19 01:49:42 -0700327 debugf3("%s(): failed edac_mc_add_mc()\n", __func__);
328 goto fail;
329 }
330
Dave Jiang456a2f92007-07-19 01:50:10 -0700331 /* allocating generic PCI control info */
332 i82443bxgx_pci = edac_pci_create_generic_ctl(&pdev->dev, EDAC_MOD_STR);
333 if (!i82443bxgx_pci) {
334 printk(KERN_WARNING
335 "%s(): Unable to create PCI control\n",
336 __func__);
337 printk(KERN_WARNING
338 "%s(): PCI error report via EDAC not setup\n",
339 __func__);
340 }
341
Joe Perches63ae96b2010-05-26 14:44:14 -0700342 debugf3("MC: %s: %s(): success\n", __FILE__, __func__);
Tim Small5a2c6752007-07-19 01:49:42 -0700343 return 0;
344
Douglas Thompson052dfb42007-07-19 01:50:13 -0700345fail:
Tim Small5a2c6752007-07-19 01:49:42 -0700346 edac_mc_free(mci);
347 return -ENODEV;
348}
Douglas Thompson11116602007-07-19 01:50:07 -0700349
Tim Small5a2c6752007-07-19 01:49:42 -0700350EXPORT_SYMBOL_GPL(i82443bxgx_edacmc_probe1);
351
352/* returns count (>= 0), or negative on error */
353static int __devinit i82443bxgx_edacmc_init_one(struct pci_dev *pdev,
Douglas Thompson11116602007-07-19 01:50:07 -0700354 const struct pci_device_id *ent)
Tim Small5a2c6752007-07-19 01:49:42 -0700355{
Vladislav Bogdanov53a2fe52008-10-15 22:04:26 -0700356 int rc;
357
Joe Perches63ae96b2010-05-26 14:44:14 -0700358 debugf0("MC: %s: %s()\n", __FILE__, __func__);
Tim Small5a2c6752007-07-19 01:49:42 -0700359
Roman Fietzeee6583f2010-05-18 14:45:47 +0200360 /* don't need to call pci_enable_device() */
Vladislav Bogdanov53a2fe52008-10-15 22:04:26 -0700361 rc = i82443bxgx_edacmc_probe1(pdev, ent->driver_data);
362
363 if (mci_pdev == NULL)
364 mci_pdev = pci_dev_get(pdev);
365
366 return rc;
Tim Small5a2c6752007-07-19 01:49:42 -0700367}
368
Tim Small5a2c6752007-07-19 01:49:42 -0700369static void __devexit i82443bxgx_edacmc_remove_one(struct pci_dev *pdev)
370{
371 struct mem_ctl_info *mci;
372
Joe Perches63ae96b2010-05-26 14:44:14 -0700373 debugf0("%s: %s()\n", __FILE__, __func__);
Tim Small5a2c6752007-07-19 01:49:42 -0700374
Dave Jiang456a2f92007-07-19 01:50:10 -0700375 if (i82443bxgx_pci)
376 edac_pci_release_generic_ctl(i82443bxgx_pci);
377
Douglas Thompson11116602007-07-19 01:50:07 -0700378 if ((mci = edac_mc_del_mc(&pdev->dev)) == NULL)
Tim Small5a2c6752007-07-19 01:49:42 -0700379 return;
380
381 edac_mc_free(mci);
382}
Tim Small5a2c6752007-07-19 01:49:42 -0700383
Douglas Thompson11116602007-07-19 01:50:07 -0700384EXPORT_SYMBOL_GPL(i82443bxgx_edacmc_remove_one);
Tim Small5a2c6752007-07-19 01:49:42 -0700385
Lionel Debroux36c46f32012-02-27 07:41:47 +0100386static DEFINE_PCI_DEVICE_TABLE(i82443bxgx_pci_tbl) = {
Tim Small5a2c6752007-07-19 01:49:42 -0700387 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82443BX_0)},
388 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82443BX_2)},
389 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82443GX_0)},
390 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82443GX_2)},
391 {0,} /* 0 terminated list. */
392};
393
394MODULE_DEVICE_TABLE(pci, i82443bxgx_pci_tbl);
395
Tim Small5a2c6752007-07-19 01:49:42 -0700396static struct pci_driver i82443bxgx_edacmc_driver = {
397 .name = EDAC_MOD_STR,
398 .probe = i82443bxgx_edacmc_init_one,
399 .remove = __devexit_p(i82443bxgx_edacmc_remove_one),
400 .id_table = i82443bxgx_pci_tbl,
401};
402
Tim Small5a2c6752007-07-19 01:49:42 -0700403static int __init i82443bxgx_edacmc_init(void)
404{
Vladislav Bogdanov53a2fe52008-10-15 22:04:26 -0700405 int pci_rc;
Hitoshi Mitakec3c52bc2008-04-29 01:03:18 -0700406 /* Ensure that the OPSTATE is set correctly for POLL or NMI */
407 opstate_init();
408
Vladislav Bogdanov53a2fe52008-10-15 22:04:26 -0700409 pci_rc = pci_register_driver(&i82443bxgx_edacmc_driver);
410 if (pci_rc < 0)
411 goto fail0;
412
413 if (mci_pdev == NULL) {
414 const struct pci_device_id *id = &i82443bxgx_pci_tbl[0];
415 int i = 0;
416 i82443bxgx_registered = 0;
417
418 while (mci_pdev == NULL && id->vendor != 0) {
419 mci_pdev = pci_get_device(id->vendor,
420 id->device, NULL);
421 i++;
422 id = &i82443bxgx_pci_tbl[i];
423 }
424 if (!mci_pdev) {
425 debugf0("i82443bxgx pci_get_device fail\n");
426 pci_rc = -ENODEV;
427 goto fail1;
428 }
429
430 pci_rc = i82443bxgx_edacmc_init_one(mci_pdev, i82443bxgx_pci_tbl);
431
432 if (pci_rc < 0) {
433 debugf0("i82443bxgx init fail\n");
434 pci_rc = -ENODEV;
435 goto fail1;
436 }
437 }
438
439 return 0;
440
441fail1:
442 pci_unregister_driver(&i82443bxgx_edacmc_driver);
443
444fail0:
445 if (mci_pdev != NULL)
446 pci_dev_put(mci_pdev);
447
448 return pci_rc;
Tim Small5a2c6752007-07-19 01:49:42 -0700449}
450
Tim Small5a2c6752007-07-19 01:49:42 -0700451static void __exit i82443bxgx_edacmc_exit(void)
452{
453 pci_unregister_driver(&i82443bxgx_edacmc_driver);
Vladislav Bogdanov53a2fe52008-10-15 22:04:26 -0700454
455 if (!i82443bxgx_registered)
456 i82443bxgx_edacmc_remove_one(mci_pdev);
457
458 if (mci_pdev)
459 pci_dev_put(mci_pdev);
Tim Small5a2c6752007-07-19 01:49:42 -0700460}
461
Tim Small5a2c6752007-07-19 01:49:42 -0700462module_init(i82443bxgx_edacmc_init);
463module_exit(i82443bxgx_edacmc_exit);
464
Tim Small5a2c6752007-07-19 01:49:42 -0700465MODULE_LICENSE("GPL");
466MODULE_AUTHOR("Tim Small <tim@buttersideup.com> - WPAD");
467MODULE_DESCRIPTION("EDAC MC support for Intel 82443BX/GX memory controllers");
Hitoshi Mitakec3c52bc2008-04-29 01:03:18 -0700468
469module_param(edac_op_state, int, 0444);
470MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI");