blob: 62d961e689730c69b830f271cec75e8223fe3140 [file] [log] [blame]
Jason Uhlenkott535c6a52007-07-19 01:49:48 -07001/*
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)
7 *
8 * This file may be distributed under the terms of the
9 * GNU General Public License.
10 */
11
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"
18
19#define I3000_REVISION "1.1"
20
21#define EDAC_MOD_STR "i3000_edac"
22
23#define I3000_RANKS 8
24#define I3000_RANKS_PER_CHANNEL 4
25#define I3000_CHANNELS 2
26
27/* Intel 3000 register addresses - device 0 function 0 - DRAM Controller */
28
29#define I3000_MCHBAR 0x44 /* MCH Memory Mapped Register BAR */
30#define I3000_MCHBAR_MASK 0xffffc000
31#define I3000_MMR_WINDOW_SIZE 16384
32
Jason Uhlenkottce783d72008-02-07 00:14:53 -080033#define I3000_EDEAP 0x70 /* Extended DRAM Error Address Pointer (8b)
34 *
35 * 7:1 reserved
36 * 0 bit 32 of address
37 */
38#define I3000_DEAP 0x58 /* DRAM Error Address Pointer (32b)
39 *
40 * 31:7 address
41 * 6:1 reserved
42 * 0 Error channel 0/1
43 */
44#define I3000_DEAP_GRAIN (1 << 7)
Jason Uhlenkott4d2b1652008-02-07 00:14:54 -080045
46static inline unsigned long deap_pfn(u8 edeap, u32 deap)
47{
48 deap >>= PAGE_SHIFT;
49 deap |= (edeap & 1) << (32 - PAGE_SHIFT);
50 return deap;
51}
52
53static inline unsigned long deap_offset(u32 deap)
54{
55 return deap & ~(I3000_DEAP_GRAIN - 1) & ~PAGE_MASK;
56}
57
58static inline int deap_channel(u32 deap)
59{
60 return deap & 1;
61}
Jason Uhlenkott535c6a52007-07-19 01:49:48 -070062
Jason Uhlenkottce783d72008-02-07 00:14:53 -080063#define I3000_DERRSYN 0x5c /* DRAM Error Syndrome (8b)
64 *
65 * 7:0 DRAM ECC Syndrome
66 */
Jason Uhlenkott535c6a52007-07-19 01:49:48 -070067
Jason Uhlenkottce783d72008-02-07 00:14:53 -080068#define I3000_ERRSTS 0xc8 /* Error Status Register (16b)
69 *
70 * 15:12 reserved
71 * 11 MCH Thermal Sensor Event
72 * for SMI/SCI/SERR
73 * 10 reserved
74 * 9 LOCK to non-DRAM Memory Flag (LCKF)
75 * 8 Received Refresh Timeout Flag (RRTOF)
76 * 7:2 reserved
77 * 1 Multi-bit DRAM ECC Error Flag (DMERR)
78 * 0 Single-bit DRAM ECC Error Flag (DSERR)
79 */
Jason Uhlenkott535c6a52007-07-19 01:49:48 -070080#define I3000_ERRSTS_BITS 0x0b03 /* bits which indicate errors */
81#define I3000_ERRSTS_UE 0x0002
82#define I3000_ERRSTS_CE 0x0001
83
Jason Uhlenkottce783d72008-02-07 00:14:53 -080084#define I3000_ERRCMD 0xca /* Error Command (16b)
85 *
86 * 15:12 reserved
87 * 11 SERR on MCH Thermal Sensor Event
88 * (TSESERR)
89 * 10 reserved
90 * 9 SERR on LOCK to non-DRAM Memory
91 * (LCKERR)
92 * 8 SERR on DRAM Refresh Timeout
93 * (DRTOERR)
94 * 7:2 reserved
95 * 1 SERR Multi-Bit DRAM ECC Error
96 * (DMERR)
97 * 0 SERR on Single-Bit ECC Error
98 * (DSERR)
99 */
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700100
101/* Intel MMIO register space - device 0 function 0 - MMR space */
102
103#define I3000_DRB_SHIFT 25 /* 32MiB grain */
104
Jason Uhlenkottce783d72008-02-07 00:14:53 -0800105#define I3000_C0DRB 0x100 /* Channel 0 DRAM Rank Boundary (8b x 4)
106 *
107 * 7:0 Channel 0 DRAM Rank Boundary Address
108 */
109#define I3000_C1DRB 0x180 /* Channel 1 DRAM Rank Boundary (8b x 4)
110 *
111 * 7:0 Channel 1 DRAM Rank Boundary Address
112 */
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700113
Jason Uhlenkottce783d72008-02-07 00:14:53 -0800114#define I3000_C0DRA 0x108 /* Channel 0 DRAM Rank Attribute (8b x 2)
115 *
116 * 7 reserved
117 * 6:4 DRAM odd Rank Attribute
118 * 3 reserved
119 * 2:0 DRAM even Rank Attribute
120 *
121 * Each attribute defines the page
122 * size of the corresponding rank:
123 * 000: unpopulated
124 * 001: reserved
125 * 010: 4 KB
126 * 011: 8 KB
127 * 100: 16 KB
128 * Others: reserved
129 */
130#define I3000_C1DRA 0x188 /* Channel 1 DRAM Rank Attribute (8b x 2) */
Jason Uhlenkott4d2b1652008-02-07 00:14:54 -0800131
132static inline unsigned char odd_rank_attrib(unsigned char dra)
133{
134 return (dra & 0x70) >> 4;
135}
136
137static inline unsigned char even_rank_attrib(unsigned char dra)
138{
139 return dra & 0x07;
140}
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700141
Jason Uhlenkottce783d72008-02-07 00:14:53 -0800142#define I3000_C0DRC0 0x120 /* DRAM Controller Mode 0 (32b)
143 *
144 * 31:30 reserved
145 * 29 Initialization Complete (IC)
146 * 28:11 reserved
147 * 10:8 Refresh Mode Select (RMS)
148 * 7 reserved
149 * 6:4 Mode Select (SMS)
150 * 3:2 reserved
151 * 1:0 DRAM Type (DT)
152 */
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700153
Jason Uhlenkottce783d72008-02-07 00:14:53 -0800154#define I3000_C0DRC1 0x124 /* DRAM Controller Mode 1 (32b)
155 *
156 * 31 Enhanced Addressing Enable (ENHADE)
157 * 30:0 reserved
158 */
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700159
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700160enum i3000p_chips {
161 I3000 = 0,
162};
163
164struct i3000_dev_info {
165 const char *ctl_name;
166};
167
168struct i3000_error_info {
169 u16 errsts;
170 u8 derrsyn;
171 u8 edeap;
172 u32 deap;
173 u16 errsts2;
174};
175
176static const struct i3000_dev_info i3000_devs[] = {
177 [I3000] = {
Douglas Thompson052dfb42007-07-19 01:50:13 -0700178 .ctl_name = "i3000"},
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700179};
180
Douglas Thompsonf0440912007-07-19 01:50:19 -0700181static struct pci_dev *mci_pdev;
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700182static int i3000_registered = 1;
Dave Jiang456a2f92007-07-19 01:50:10 -0700183static struct edac_pci_ctl_info *i3000_pci;
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700184
185static void i3000_get_error_info(struct mem_ctl_info *mci,
Dave Jiang36b82892007-07-19 01:50:04 -0700186 struct i3000_error_info *info)
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700187{
188 struct pci_dev *pdev;
189
190 pdev = to_pci_dev(mci->dev);
191
192 /*
193 * This is a mess because there is no atomic way to read all the
194 * registers at once and the registers can transition from CE being
195 * overwritten by UE.
196 */
197 pci_read_config_word(pdev, I3000_ERRSTS, &info->errsts);
198 if (!(info->errsts & I3000_ERRSTS_BITS))
199 return;
200 pci_read_config_byte(pdev, I3000_EDEAP, &info->edeap);
201 pci_read_config_dword(pdev, I3000_DEAP, &info->deap);
202 pci_read_config_byte(pdev, I3000_DERRSYN, &info->derrsyn);
203 pci_read_config_word(pdev, I3000_ERRSTS, &info->errsts2);
204
205 /*
206 * If the error is the same for both reads then the first set
207 * of reads is valid. If there is a change then there is a CE
208 * with no info and the second set of reads is valid and
209 * should be UE info.
210 */
211 if ((info->errsts ^ info->errsts2) & I3000_ERRSTS_BITS) {
Dave Jiang36b82892007-07-19 01:50:04 -0700212 pci_read_config_byte(pdev, I3000_EDEAP, &info->edeap);
213 pci_read_config_dword(pdev, I3000_DEAP, &info->deap);
214 pci_read_config_byte(pdev, I3000_DERRSYN, &info->derrsyn);
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700215 }
216
Jason Uhlenkottce783d72008-02-07 00:14:53 -0800217 /*
218 * Clear any error bits.
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700219 * (Yes, we really clear bits by writing 1 to them.)
220 */
Dave Jiang36b82892007-07-19 01:50:04 -0700221 pci_write_bits16(pdev, I3000_ERRSTS, I3000_ERRSTS_BITS,
222 I3000_ERRSTS_BITS);
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700223}
224
225static int i3000_process_error_info(struct mem_ctl_info *mci,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700226 struct i3000_error_info *info,
227 int handle_errors)
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700228{
Jason Uhlenkott4d2b1652008-02-07 00:14:54 -0800229 int row, multi_chan, channel;
230 unsigned long pfn, offset;
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700231
232 multi_chan = mci->csrows[0].nr_channels - 1;
233
234 if (!(info->errsts & I3000_ERRSTS_BITS))
235 return 0;
236
237 if (!handle_errors)
238 return 1;
239
240 if ((info->errsts ^ info->errsts2) & I3000_ERRSTS_BITS) {
241 edac_mc_handle_ce_no_info(mci, "UE overwrote CE");
242 info->errsts = info->errsts2;
243 }
244
Jason Uhlenkott4d2b1652008-02-07 00:14:54 -0800245 pfn = deap_pfn(info->edeap, info->deap);
246 offset = deap_offset(info->deap);
247 channel = deap_channel(info->deap);
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700248
249 row = edac_mc_find_csrow_by_page(mci, pfn);
250
251 if (info->errsts & I3000_ERRSTS_UE)
252 edac_mc_handle_ue(mci, pfn, offset, row, "i3000 UE");
253 else
254 edac_mc_handle_ce(mci, pfn, offset, info->derrsyn, row,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700255 multi_chan ? channel : 0, "i3000 CE");
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700256
257 return 1;
258}
259
260static void i3000_check(struct mem_ctl_info *mci)
261{
262 struct i3000_error_info info;
263
264 debugf1("MC%d: %s()\n", mci->mc_idx, __func__);
265 i3000_get_error_info(mci, &info);
266 i3000_process_error_info(mci, &info, 1);
267}
268
269static int i3000_is_interleaved(const unsigned char *c0dra,
270 const unsigned char *c1dra,
271 const unsigned char *c0drb,
272 const unsigned char *c1drb)
273{
274 int i;
275
Jason Uhlenkottce783d72008-02-07 00:14:53 -0800276 /*
277 * If the channels aren't populated identically then
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700278 * we're not interleaved.
279 */
280 for (i = 0; i < I3000_RANKS_PER_CHANNEL / 2; i++)
Jason Uhlenkott4d2b1652008-02-07 00:14:54 -0800281 if (odd_rank_attrib(c0dra[i]) != odd_rank_attrib(c1dra[i]) ||
282 even_rank_attrib(c0dra[i]) !=
283 even_rank_attrib(c1dra[i]))
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700284 return 0;
285
Jason Uhlenkottce783d72008-02-07 00:14:53 -0800286 /*
287 * If the rank boundaries for the two channels are different
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700288 * then we're not interleaved.
289 */
290 for (i = 0; i < I3000_RANKS_PER_CHANNEL; i++)
291 if (c0drb[i] != c1drb[i])
292 return 0;
293
294 return 1;
295}
296
297static int i3000_probe1(struct pci_dev *pdev, int dev_idx)
298{
299 int rc;
300 int i;
301 struct mem_ctl_info *mci = NULL;
302 unsigned long last_cumul_size;
303 int interleaved, nr_channels;
304 unsigned char dra[I3000_RANKS / 2], drb[I3000_RANKS];
305 unsigned char *c0dra = dra, *c1dra = &dra[I3000_RANKS_PER_CHANNEL / 2];
306 unsigned char *c0drb = drb, *c1drb = &drb[I3000_RANKS_PER_CHANNEL];
307 unsigned long mchbar;
Al Viro0bd84962007-07-26 17:36:09 +0100308 void __iomem *window;
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700309
310 debugf0("MC: %s()\n", __func__);
311
Dave Jiang36b82892007-07-19 01:50:04 -0700312 pci_read_config_dword(pdev, I3000_MCHBAR, (u32 *) & mchbar);
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700313 mchbar &= I3000_MCHBAR_MASK;
314 window = ioremap_nocache(mchbar, I3000_MMR_WINDOW_SIZE);
315 if (!window) {
Dave Jiang36b82892007-07-19 01:50:04 -0700316 printk(KERN_ERR "i3000: cannot map mmio space at 0x%lx\n",
Douglas Thompson052dfb42007-07-19 01:50:13 -0700317 mchbar);
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700318 return -ENODEV;
319 }
320
Dave Jiang36b82892007-07-19 01:50:04 -0700321 c0dra[0] = readb(window + I3000_C0DRA + 0); /* ranks 0,1 */
322 c0dra[1] = readb(window + I3000_C0DRA + 1); /* ranks 2,3 */
323 c1dra[0] = readb(window + I3000_C1DRA + 0); /* ranks 0,1 */
324 c1dra[1] = readb(window + I3000_C1DRA + 1); /* ranks 2,3 */
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700325
326 for (i = 0; i < I3000_RANKS_PER_CHANNEL; i++) {
327 c0drb[i] = readb(window + I3000_C0DRB + i);
328 c1drb[i] = readb(window + I3000_C1DRB + i);
329 }
330
331 iounmap(window);
332
Jason Uhlenkottce783d72008-02-07 00:14:53 -0800333 /*
334 * Figure out how many channels we have.
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700335 *
336 * If we have what the datasheet calls "asymmetric channels"
337 * (essentially the same as what was called "virtual single
338 * channel mode" in the i82875) then it's a single channel as
339 * far as EDAC is concerned.
340 */
341 interleaved = i3000_is_interleaved(c0dra, c1dra, c0drb, c1drb);
342 nr_channels = interleaved ? 2 : 1;
Doug Thompsonb8f6f972007-07-19 01:50:26 -0700343 mci = edac_mc_alloc(0, I3000_RANKS / nr_channels, nr_channels, 0);
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700344 if (!mci)
345 return -ENOMEM;
346
347 debugf3("MC: %s(): init mci\n", __func__);
348
349 mci->dev = &pdev->dev;
350 mci->mtype_cap = MEM_FLAG_DDR2;
351
352 mci->edac_ctl_cap = EDAC_FLAG_SECDED;
353 mci->edac_cap = EDAC_FLAG_SECDED;
354
355 mci->mod_name = EDAC_MOD_STR;
356 mci->mod_ver = I3000_REVISION;
357 mci->ctl_name = i3000_devs[dev_idx].ctl_name;
358 mci->dev_name = pci_name(pdev);
359 mci->edac_check = i3000_check;
360 mci->ctl_page_to_phys = NULL;
361
362 /*
363 * The dram rank boundary (DRB) reg values are boundary addresses
364 * for each DRAM rank with a granularity of 32MB. DRB regs are
365 * cumulative; the last one will contain the total memory
366 * contained in all ranks.
367 *
368 * If we're in interleaved mode then we're only walking through
369 * the ranks of controller 0, so we double all the values we see.
370 */
371 for (last_cumul_size = i = 0; i < mci->nr_csrows; i++) {
372 u8 value;
373 u32 cumul_size;
374 struct csrow_info *csrow = &mci->csrows[i];
375
376 value = drb[i];
377 cumul_size = value << (I3000_DRB_SHIFT - PAGE_SHIFT);
378 if (interleaved)
379 cumul_size <<= 1;
380 debugf3("MC: %s(): (%d) cumul_size 0x%x\n",
381 __func__, i, cumul_size);
382 if (cumul_size == last_cumul_size) {
383 csrow->mtype = MEM_EMPTY;
384 continue;
385 }
386
387 csrow->first_page = last_cumul_size;
388 csrow->last_page = cumul_size - 1;
389 csrow->nr_pages = cumul_size - last_cumul_size;
390 last_cumul_size = cumul_size;
391 csrow->grain = I3000_DEAP_GRAIN;
392 csrow->mtype = MEM_DDR2;
393 csrow->dtype = DEV_UNKNOWN;
394 csrow->edac_mode = EDAC_UNKNOWN;
395 }
396
Jason Uhlenkottce783d72008-02-07 00:14:53 -0800397 /*
398 * Clear any error bits.
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700399 * (Yes, we really clear bits by writing 1 to them.)
400 */
Dave Jiang36b82892007-07-19 01:50:04 -0700401 pci_write_bits16(pdev, I3000_ERRSTS, I3000_ERRSTS_BITS,
402 I3000_ERRSTS_BITS);
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700403
404 rc = -ENODEV;
Doug Thompsonb8f6f972007-07-19 01:50:26 -0700405 if (edac_mc_add_mc(mci)) {
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700406 debugf3("MC: %s(): failed edac_mc_add_mc()\n", __func__);
407 goto fail;
408 }
409
Dave Jiang456a2f92007-07-19 01:50:10 -0700410 /* allocating generic PCI control info */
411 i3000_pci = edac_pci_create_generic_ctl(&pdev->dev, EDAC_MOD_STR);
412 if (!i3000_pci) {
413 printk(KERN_WARNING
414 "%s(): Unable to create PCI control\n",
415 __func__);
416 printk(KERN_WARNING
417 "%s(): PCI error report via EDAC not setup\n",
418 __func__);
419 }
420
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700421 /* get this far and it's successful */
422 debugf3("MC: %s(): success\n", __func__);
423 return 0;
424
Jason Uhlenkottce783d72008-02-07 00:14:53 -0800425fail:
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700426 if (mci)
427 edac_mc_free(mci);
428
429 return rc;
430}
431
432/* returns count (>= 0), or negative on error */
433static int __devinit i3000_init_one(struct pci_dev *pdev,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700434 const struct pci_device_id *ent)
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700435{
436 int rc;
437
438 debugf0("MC: %s()\n", __func__);
439
440 if (pci_enable_device(pdev) < 0)
441 return -EIO;
442
443 rc = i3000_probe1(pdev, ent->driver_data);
Jason Uhlenkottce783d72008-02-07 00:14:53 -0800444 if (!mci_pdev)
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700445 mci_pdev = pci_dev_get(pdev);
446
447 return rc;
448}
449
450static void __devexit i3000_remove_one(struct pci_dev *pdev)
451{
452 struct mem_ctl_info *mci;
453
454 debugf0("%s()\n", __func__);
455
Dave Jiang456a2f92007-07-19 01:50:10 -0700456 if (i3000_pci)
457 edac_pci_release_generic_ctl(i3000_pci);
458
Jason Uhlenkottce783d72008-02-07 00:14:53 -0800459 mci = edac_mc_del_mc(&pdev->dev);
460 if (!mci)
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700461 return;
462
463 edac_mc_free(mci);
464}
465
466static const struct pci_device_id i3000_pci_tbl[] __devinitdata = {
467 {
Dave Jiang36b82892007-07-19 01:50:04 -0700468 PCI_VEND_DEV(INTEL, 3000_HB), PCI_ANY_ID, PCI_ANY_ID, 0, 0,
469 I3000},
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700470 {
Dave Jiang36b82892007-07-19 01:50:04 -0700471 0,
472 } /* 0 terminated list. */
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700473};
474
475MODULE_DEVICE_TABLE(pci, i3000_pci_tbl);
476
477static struct pci_driver i3000_driver = {
478 .name = EDAC_MOD_STR,
479 .probe = i3000_init_one,
480 .remove = __devexit_p(i3000_remove_one),
481 .id_table = i3000_pci_tbl,
482};
483
484static int __init i3000_init(void)
485{
486 int pci_rc;
487
488 debugf3("MC: %s()\n", __func__);
489 pci_rc = pci_register_driver(&i3000_driver);
490 if (pci_rc < 0)
491 goto fail0;
492
Jason Uhlenkottce783d72008-02-07 00:14:53 -0800493 if (!mci_pdev) {
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700494 i3000_registered = 0;
495 mci_pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700496 PCI_DEVICE_ID_INTEL_3000_HB, NULL);
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700497 if (!mci_pdev) {
498 debugf0("i3000 pci_get_device fail\n");
499 pci_rc = -ENODEV;
500 goto fail1;
501 }
502
503 pci_rc = i3000_init_one(mci_pdev, i3000_pci_tbl);
504 if (pci_rc < 0) {
505 debugf0("i3000 init fail\n");
506 pci_rc = -ENODEV;
507 goto fail1;
508 }
509 }
510
511 return 0;
512
Douglas Thompson052dfb42007-07-19 01:50:13 -0700513fail1:
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700514 pci_unregister_driver(&i3000_driver);
515
Douglas Thompson052dfb42007-07-19 01:50:13 -0700516fail0:
Jason Uhlenkott535c6a52007-07-19 01:49:48 -0700517 if (mci_pdev)
518 pci_dev_put(mci_pdev);
519
520 return pci_rc;
521}
522
523static void __exit i3000_exit(void)
524{
525 debugf3("MC: %s()\n", __func__);
526
527 pci_unregister_driver(&i3000_driver);
528 if (!i3000_registered) {
529 i3000_remove_one(mci_pdev);
530 pci_dev_put(mci_pdev);
531 }
532}
533
534module_init(i3000_init);
535module_exit(i3000_exit);
536
537MODULE_LICENSE("GPL");
538MODULE_AUTHOR("Akamai Technologies Arthur Ulfeldt/Jason Uhlenkott");
539MODULE_DESCRIPTION("MC support for Intel 3000 memory hub controllers");