blob: cf4ccbdba85d9b3417bebe9af1e3336a2f93cec9 [file] [log] [blame]
Alan Cox2f768af2006-01-18 17:44:12 -08001/*
2 * Radisys 82600 Embedded chipset Memory Controller kernel module
3 * (C) 2005 EADS Astrium
4 * This file may be distributed under the terms of the
5 * GNU General Public License.
6 *
7 * Written by Tim Small <tim@buttersideup.com>, based on work by Thayne
8 * Harbaugh, Dan Hollis <goemon at anime dot net> and others.
9 *
10 * $Id: edac_r82600.c,v 1.1.2.6 2005/10/05 00:43:44 dsp_llnl Exp $
11 *
12 * Written with reference to 82600 High Integration Dual PCI System
13 * Controller Data Book:
Dave Jiangc4192702007-07-19 01:49:47 -070014 * www.radisys.com/files/support_downloads/007-01277-0002.82600DataBook.pdf
Alan Cox2f768af2006-01-18 17:44:12 -080015 * references to this document given in []
16 */
17
Alan Cox2f768af2006-01-18 17:44:12 -080018#include <linux/module.h>
19#include <linux/init.h>
Alan Cox2f768af2006-01-18 17:44:12 -080020#include <linux/pci.h>
21#include <linux/pci_ids.h>
Hitoshi Mitakec3c52bc2008-04-29 01:03:18 -070022#include <linux/edac.h>
Douglas Thompson20bcb7a2007-07-19 01:49:47 -070023#include "edac_core.h"
Alan Cox2f768af2006-01-18 17:44:12 -080024
Michal Marek152ba392011-04-01 12:41:20 +020025#define R82600_REVISION " Ver: 2.0.2"
Doug Thompson929a40e2006-07-01 04:35:45 -070026#define EDAC_MOD_STR "r82600_edac"
Doug Thompson37f04582006-06-30 01:56:07 -070027
Dave Peterson537fba22006-03-26 01:38:40 -080028#define r82600_printk(level, fmt, arg...) \
Dave Petersone7ecd892006-03-26 01:38:52 -080029 edac_printk(level, "r82600", fmt, ##arg)
Dave Peterson537fba22006-03-26 01:38:40 -080030
31#define r82600_mc_printk(mci, level, fmt, arg...) \
Dave Petersone7ecd892006-03-26 01:38:52 -080032 edac_mc_chipset_printk(mci, level, "r82600", fmt, ##arg)
Dave Peterson537fba22006-03-26 01:38:40 -080033
Alan Cox2f768af2006-01-18 17:44:12 -080034/* Radisys say "The 82600 integrates a main memory SDRAM controller that
35 * supports up to four banks of memory. The four banks can support a mix of
36 * sizes of 64 bit wide (72 bits with ECC) Synchronous DRAM (SDRAM) DIMMs,
37 * each of which can be any size from 16MB to 512MB. Both registered (control
38 * signals buffered) and unbuffered DIMM types are supported. Mixing of
39 * registered and unbuffered DIMMs as well as mixing of ECC and non-ECC DIMMs
40 * is not allowed. The 82600 SDRAM interface operates at the same frequency as
41 * the CPU bus, 66MHz, 100MHz or 133MHz."
42 */
43
44#define R82600_NR_CSROWS 4
45#define R82600_NR_CHANS 1
46#define R82600_NR_DIMMS 4
47
48#define R82600_BRIDGE_ID 0x8200
49
50/* Radisys 82600 register addresses - device 0 function 0 - PCI bridge */
51#define R82600_DRAMC 0x57 /* Various SDRAM related control bits
52 * all bits are R/W
53 *
54 * 7 SDRAM ISA Hole Enable
55 * 6 Flash Page Mode Enable
56 * 5 ECC Enable: 1=ECC 0=noECC
57 * 4 DRAM DIMM Type: 1=
58 * 3 BIOS Alias Disable
59 * 2 SDRAM BIOS Flash Write Enable
60 * 1:0 SDRAM Refresh Rate: 00=Disabled
61 * 01=7.8usec (256Mbit SDRAMs)
62 * 10=15.6us 11=125usec
63 */
64
65#define R82600_SDRAMC 0x76 /* "SDRAM Control Register"
66 * More SDRAM related control bits
67 * all bits are R/W
68 *
69 * 15:8 Reserved.
70 *
71 * 7:5 Special SDRAM Mode Select
72 *
73 * 4 Force ECC
74 *
75 * 1=Drive ECC bits to 0 during
76 * write cycles (i.e. ECC test mode)
77 *
78 * 0=Normal ECC functioning
79 *
80 * 3 Enhanced Paging Enable
81 *
82 * 2 CAS# Latency 0=3clks 1=2clks
83 *
84 * 1 RAS# to CAS# Delay 0=3 1=2
85 *
86 * 0 RAS# Precharge 0=3 1=2
87 */
88
89#define R82600_EAP 0x80 /* ECC Error Address Pointer Register
90 *
91 * 31 Disable Hardware Scrubbing (RW)
92 * 0=Scrub on corrected read
93 * 1=Don't scrub on corrected read
94 *
95 * 30:12 Error Address Pointer (RO)
96 * Upper 19 bits of error address
97 *
98 * 11:4 Syndrome Bits (RO)
99 *
100 * 3 BSERR# on multibit error (RW)
101 * 1=enable 0=disable
102 *
103 * 2 NMI on Single Bit Eror (RW)
104 * 1=NMI triggered by SBE n.b. other
105 * prerequeists
106 * 0=NMI not triggered
107 *
108 * 1 MBE (R/WC)
109 * read 1=MBE at EAP (see above)
110 * read 0=no MBE, or SBE occurred first
111 * write 1=Clear MBE status (must also
112 * clear SBE)
113 * write 0=NOP
114 *
115 * 1 SBE (R/WC)
116 * read 1=SBE at EAP (see above)
117 * read 0=no SBE, or MBE occurred first
118 * write 1=Clear SBE status (must also
119 * clear MBE)
120 * write 0=NOP
121 */
122
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300123#define R82600_DRBA 0x60 /* + 0x60..0x63 SDRAM Row Boundary Address
Alan Cox2f768af2006-01-18 17:44:12 -0800124 * Registers
125 *
126 * 7:0 Address lines 30:24 - upper limit of
127 * each row [p57]
128 */
129
130struct r82600_error_info {
131 u32 eapr;
132};
133
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030134static bool disable_hardware_scrub;
Alan Cox2f768af2006-01-18 17:44:12 -0800135
Dave Jiang456a2f92007-07-19 01:50:10 -0700136static struct edac_pci_ctl_info *r82600_pci;
137
Douglas Thompsoncddbfca2007-07-19 01:50:08 -0700138static void r82600_get_error_info(struct mem_ctl_info *mci,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700139 struct r82600_error_info *info)
Alan Cox2f768af2006-01-18 17:44:12 -0800140{
Doug Thompson37f04582006-06-30 01:56:07 -0700141 struct pci_dev *pdev;
142
Mauro Carvalho Chehabfd687502012-03-16 07:44:18 -0300143 pdev = to_pci_dev(mci->pdev);
Doug Thompson37f04582006-06-30 01:56:07 -0700144 pci_read_config_dword(pdev, R82600_EAP, &info->eapr);
Alan Cox2f768af2006-01-18 17:44:12 -0800145
146 if (info->eapr & BIT(0))
147 /* Clear error to allow next error to be reported [p.62] */
Doug Thompson37f04582006-06-30 01:56:07 -0700148 pci_write_bits32(pdev, R82600_EAP,
Douglas Thompsoncddbfca2007-07-19 01:50:08 -0700149 ((u32) BIT(0) & (u32) BIT(1)),
150 ((u32) BIT(0) & (u32) BIT(1)));
Alan Cox2f768af2006-01-18 17:44:12 -0800151
152 if (info->eapr & BIT(1))
153 /* Clear error to allow next error to be reported [p.62] */
Doug Thompson37f04582006-06-30 01:56:07 -0700154 pci_write_bits32(pdev, R82600_EAP,
Douglas Thompsoncddbfca2007-07-19 01:50:08 -0700155 ((u32) BIT(0) & (u32) BIT(1)),
156 ((u32) BIT(0) & (u32) BIT(1)));
Alan Cox2f768af2006-01-18 17:44:12 -0800157}
158
Douglas Thompsoncddbfca2007-07-19 01:50:08 -0700159static int r82600_process_error_info(struct mem_ctl_info *mci,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700160 struct r82600_error_info *info,
161 int handle_errors)
Alan Cox2f768af2006-01-18 17:44:12 -0800162{
163 int error_found;
164 u32 eapaddr, page;
165 u32 syndrome;
166
167 error_found = 0;
168
169 /* bits 30:12 store the upper 19 bits of the 32 bit error address */
170 eapaddr = ((info->eapr >> 12) & 0x7FFF) << 13;
171 /* Syndrome in bits 11:4 [p.62] */
172 syndrome = (info->eapr >> 4) & 0xFF;
173
174 /* the R82600 reports at less than page *
175 * granularity (upper 19 bits only) */
176 page = eapaddr >> PAGE_SHIFT;
177
Douglas Thompsoncddbfca2007-07-19 01:50:08 -0700178 if (info->eapr & BIT(0)) { /* CE? */
Alan Cox2f768af2006-01-18 17:44:12 -0800179 error_found = 1;
180
181 if (handle_errors)
Mauro Carvalho Chehab63b5d1d2012-04-16 15:12:13 -0300182 edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci,
183 page, 0, syndrome,
184 edac_mc_find_csrow_by_page(mci, page),
185 0, -1,
186 mci->ctl_name, "", NULL);
Alan Cox2f768af2006-01-18 17:44:12 -0800187 }
188
Douglas Thompsoncddbfca2007-07-19 01:50:08 -0700189 if (info->eapr & BIT(1)) { /* UE? */
Alan Cox2f768af2006-01-18 17:44:12 -0800190 error_found = 1;
191
192 if (handle_errors)
193 /* 82600 doesn't give enough info */
Mauro Carvalho Chehab63b5d1d2012-04-16 15:12:13 -0300194 edac_mc_handle_error(HW_EVENT_ERR_UNCORRECTED, mci,
195 page, 0, 0,
196 edac_mc_find_csrow_by_page(mci, page),
197 0, -1,
198 mci->ctl_name, "", NULL);
Alan Cox2f768af2006-01-18 17:44:12 -0800199 }
200
201 return error_found;
202}
203
204static void r82600_check(struct mem_ctl_info *mci)
205{
206 struct r82600_error_info info;
207
Dave Peterson537fba22006-03-26 01:38:40 -0800208 debugf1("MC%d: %s()\n", mci->mc_idx, __func__);
Alan Cox2f768af2006-01-18 17:44:12 -0800209 r82600_get_error_info(mci, &info);
210 r82600_process_error_info(mci, &info, 1);
211}
212
Doug Thompson13189522006-06-30 01:56:08 -0700213static inline int ecc_enabled(u8 dramcr)
214{
215 return dramcr & BIT(5);
216}
217
218static void r82600_init_csrows(struct mem_ctl_info *mci, struct pci_dev *pdev,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700219 u8 dramcr)
Doug Thompson13189522006-06-30 01:56:08 -0700220{
221 struct csrow_info *csrow;
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300222 struct dimm_info *dimm;
Doug Thompson13189522006-06-30 01:56:08 -0700223 int index;
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300224 u8 drbar; /* SDRAM Row Boundary Address Register */
Doug Thompson13189522006-06-30 01:56:08 -0700225 u32 row_high_limit, row_high_limit_last;
226 u32 reg_sdram, ecc_on, row_base;
227
228 ecc_on = ecc_enabled(dramcr);
229 reg_sdram = dramcr & BIT(4);
230 row_high_limit_last = 0;
231
232 for (index = 0; index < mci->nr_csrows; index++) {
233 csrow = &mci->csrows[index];
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300234 dimm = csrow->channels[0].dimm;
Doug Thompson13189522006-06-30 01:56:08 -0700235
236 /* find the DRAM Chip Select Base address and mask */
237 pci_read_config_byte(pdev, R82600_DRBA + index, &drbar);
238
239 debugf1("%s() Row=%d DRBA = %#0x\n", __func__, index, drbar);
240
241 row_high_limit = ((u32) drbar << 24);
242/* row_high_limit = ((u32)drbar << 24) | 0xffffffUL; */
243
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300244 debugf1("%s() Row=%d, Boundary Address=%#0x, Last = %#0x\n",
Doug Thompson13189522006-06-30 01:56:08 -0700245 __func__, index, row_high_limit, row_high_limit_last);
246
247 /* Empty row [p.57] */
248 if (row_high_limit == row_high_limit_last)
249 continue;
250
251 row_base = row_high_limit_last;
252
253 csrow->first_page = row_base >> PAGE_SHIFT;
254 csrow->last_page = (row_high_limit >> PAGE_SHIFT) - 1;
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300255
256 dimm->nr_pages = csrow->last_page - csrow->first_page + 1;
Doug Thompson13189522006-06-30 01:56:08 -0700257 /* Error address is top 19 bits - so granularity is *
258 * 14 bits */
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300259 dimm->grain = 1 << 14;
260 dimm->mtype = reg_sdram ? MEM_RDDR : MEM_DDR;
Doug Thompson13189522006-06-30 01:56:08 -0700261 /* FIXME - check that this is unknowable with this chipset */
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300262 dimm->dtype = DEV_UNKNOWN;
Doug Thompson13189522006-06-30 01:56:08 -0700263
264 /* Mode is global on 82600 */
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300265 dimm->edac_mode = ecc_on ? EDAC_SECDED : EDAC_NONE;
Doug Thompson13189522006-06-30 01:56:08 -0700266 row_high_limit_last = row_high_limit;
267 }
268}
269
Alan Cox2f768af2006-01-18 17:44:12 -0800270static int r82600_probe1(struct pci_dev *pdev, int dev_idx)
271{
Doug Thompson13189522006-06-30 01:56:08 -0700272 struct mem_ctl_info *mci;
Mauro Carvalho Chehab63b5d1d2012-04-16 15:12:13 -0300273 struct edac_mc_layer layers[2];
Alan Cox2f768af2006-01-18 17:44:12 -0800274 u8 dramcr;
Alan Cox2f768af2006-01-18 17:44:12 -0800275 u32 eapr;
276 u32 scrub_disabled;
277 u32 sdram_refresh_rate;
Dave Peterson749ede52006-03-26 01:38:45 -0800278 struct r82600_error_info discard;
Alan Cox2f768af2006-01-18 17:44:12 -0800279
Dave Peterson537fba22006-03-26 01:38:40 -0800280 debugf0("%s()\n", __func__);
Alan Cox2f768af2006-01-18 17:44:12 -0800281 pci_read_config_byte(pdev, R82600_DRAMC, &dramcr);
282 pci_read_config_dword(pdev, R82600_EAP, &eapr);
Alan Cox2f768af2006-01-18 17:44:12 -0800283 scrub_disabled = eapr & BIT(31);
284 sdram_refresh_rate = dramcr & (BIT(0) | BIT(1));
Dave Peterson537fba22006-03-26 01:38:40 -0800285 debugf2("%s(): sdram refresh rate = %#0x\n", __func__,
286 sdram_refresh_rate);
Dave Peterson537fba22006-03-26 01:38:40 -0800287 debugf2("%s(): DRAMC register = %#0x\n", __func__, dramcr);
Mauro Carvalho Chehab63b5d1d2012-04-16 15:12:13 -0300288 layers[0].type = EDAC_MC_LAYER_CHIP_SELECT;
289 layers[0].size = R82600_NR_CSROWS;
290 layers[0].is_virt_csrow = true;
291 layers[1].type = EDAC_MC_LAYER_CHANNEL;
292 layers[1].size = R82600_NR_CHANS;
293 layers[1].is_virt_csrow = false;
Mauro Carvalho Chehabca0907b2012-05-02 14:37:00 -0300294 mci = edac_mc_alloc(0, ARRAY_SIZE(layers), layers, 0);
Doug Thompson13189522006-06-30 01:56:08 -0700295 if (mci == NULL)
296 return -ENOMEM;
Alan Cox2f768af2006-01-18 17:44:12 -0800297
Dave Peterson537fba22006-03-26 01:38:40 -0800298 debugf0("%s(): mci = %p\n", __func__, mci);
Mauro Carvalho Chehabfd687502012-03-16 07:44:18 -0300299 mci->pdev = &pdev->dev;
Alan Cox2f768af2006-01-18 17:44:12 -0800300 mci->mtype_cap = MEM_FLAG_RDDR | MEM_FLAG_DDR;
Alan Cox2f768af2006-01-18 17:44:12 -0800301 mci->edac_ctl_cap = EDAC_FLAG_NONE | EDAC_FLAG_EC | EDAC_FLAG_SECDED;
Dave Petersone7ecd892006-03-26 01:38:52 -0800302 /* FIXME try to work out if the chip leads have been used for COM2
303 * instead on this board? [MA6?] MAYBE:
304 */
Alan Cox2f768af2006-01-18 17:44:12 -0800305
306 /* On the R82600, the pins for memory bits 72:65 - i.e. the *
307 * EC bits are shared with the pins for COM2 (!), so if COM2 *
308 * is enabled, we assume COM2 is wired up, and thus no EDAC *
309 * is possible. */
310 mci->edac_cap = EDAC_FLAG_NONE | EDAC_FLAG_EC | EDAC_FLAG_SECDED;
Dave Petersone7ecd892006-03-26 01:38:52 -0800311
Doug Thompson13189522006-06-30 01:56:08 -0700312 if (ecc_enabled(dramcr)) {
Alan Cox2f768af2006-01-18 17:44:12 -0800313 if (scrub_disabled)
Dave Peterson537fba22006-03-26 01:38:40 -0800314 debugf3("%s(): mci = %p - Scrubbing disabled! EAP: "
315 "%#0x\n", __func__, mci, eapr);
Alan Cox2f768af2006-01-18 17:44:12 -0800316 } else
317 mci->edac_cap = EDAC_FLAG_NONE;
318
Dave Peterson680cbbb2006-03-26 01:38:41 -0800319 mci->mod_name = EDAC_MOD_STR;
Doug Thompson37f04582006-06-30 01:56:07 -0700320 mci->mod_ver = R82600_REVISION;
Alan Cox2f768af2006-01-18 17:44:12 -0800321 mci->ctl_name = "R82600";
Dave Jiangc4192702007-07-19 01:49:47 -0700322 mci->dev_name = pci_name(pdev);
Alan Cox2f768af2006-01-18 17:44:12 -0800323 mci->edac_check = r82600_check;
324 mci->ctl_page_to_phys = NULL;
Doug Thompson13189522006-06-30 01:56:08 -0700325 r82600_init_csrows(mci, pdev, dramcr);
Douglas Thompsoncddbfca2007-07-19 01:50:08 -0700326 r82600_get_error_info(mci, &discard); /* clear counters */
Alan Cox2f768af2006-01-18 17:44:12 -0800327
Doug Thompson2d7bbb92006-06-30 01:56:08 -0700328 /* Here we assume that we will never see multiple instances of this
329 * type of memory controller. The ID is therefore hardcoded to 0.
330 */
Doug Thompsonb8f6f972007-07-19 01:50:26 -0700331 if (edac_mc_add_mc(mci)) {
Dave Peterson537fba22006-03-26 01:38:40 -0800332 debugf3("%s(): failed edac_mc_add_mc()\n", __func__);
Alan Cox2f768af2006-01-18 17:44:12 -0800333 goto fail;
334 }
335
336 /* get this far and it's successful */
337
Alan Cox2f768af2006-01-18 17:44:12 -0800338 if (disable_hardware_scrub) {
Dave Peterson537fba22006-03-26 01:38:40 -0800339 debugf3("%s(): Disabling Hardware Scrub (scrub on error)\n",
340 __func__);
Doug Thompson37f04582006-06-30 01:56:07 -0700341 pci_write_bits32(pdev, R82600_EAP, BIT(31), BIT(31));
Alan Cox2f768af2006-01-18 17:44:12 -0800342 }
343
Dave Jiang456a2f92007-07-19 01:50:10 -0700344 /* allocating generic PCI control info */
345 r82600_pci = edac_pci_create_generic_ctl(&pdev->dev, EDAC_MOD_STR);
346 if (!r82600_pci) {
347 printk(KERN_WARNING
348 "%s(): Unable to create PCI control\n",
349 __func__);
350 printk(KERN_WARNING
351 "%s(): PCI error report via EDAC not setup\n",
352 __func__);
353 }
354
Dave Peterson537fba22006-03-26 01:38:40 -0800355 debugf3("%s(): success\n", __func__);
Alan Cox2f768af2006-01-18 17:44:12 -0800356 return 0;
357
Douglas Thompson052dfb42007-07-19 01:50:13 -0700358fail:
Doug Thompson13189522006-06-30 01:56:08 -0700359 edac_mc_free(mci);
360 return -ENODEV;
Alan Cox2f768af2006-01-18 17:44:12 -0800361}
362
363/* returns count (>= 0), or negative on error */
364static int __devinit r82600_init_one(struct pci_dev *pdev,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700365 const struct pci_device_id *ent)
Alan Cox2f768af2006-01-18 17:44:12 -0800366{
Dave Peterson537fba22006-03-26 01:38:40 -0800367 debugf0("%s()\n", __func__);
Alan Cox2f768af2006-01-18 17:44:12 -0800368
Roman Fietzeee6583f2010-05-18 14:45:47 +0200369 /* don't need to call pci_enable_device() */
Alan Cox2f768af2006-01-18 17:44:12 -0800370 return r82600_probe1(pdev, ent->driver_data);
371}
372
Alan Cox2f768af2006-01-18 17:44:12 -0800373static void __devexit r82600_remove_one(struct pci_dev *pdev)
374{
375 struct mem_ctl_info *mci;
376
Dave Peterson537fba22006-03-26 01:38:40 -0800377 debugf0("%s()\n", __func__);
Alan Cox2f768af2006-01-18 17:44:12 -0800378
Dave Jiang456a2f92007-07-19 01:50:10 -0700379 if (r82600_pci)
380 edac_pci_release_generic_ctl(r82600_pci);
381
Doug Thompson37f04582006-06-30 01:56:07 -0700382 if ((mci = edac_mc_del_mc(&pdev->dev)) == NULL)
Dave Peterson18dbc332006-03-26 01:38:50 -0800383 return;
384
385 edac_mc_free(mci);
Alan Cox2f768af2006-01-18 17:44:12 -0800386}
387
Lionel Debroux36c46f32012-02-27 07:41:47 +0100388static DEFINE_PCI_DEVICE_TABLE(r82600_pci_tbl) = {
Dave Petersone7ecd892006-03-26 01:38:52 -0800389 {
Douglas Thompsoncddbfca2007-07-19 01:50:08 -0700390 PCI_DEVICE(PCI_VENDOR_ID_RADISYS, R82600_BRIDGE_ID)
391 },
Dave Petersone7ecd892006-03-26 01:38:52 -0800392 {
Douglas Thompsoncddbfca2007-07-19 01:50:08 -0700393 0,
394 } /* 0 terminated list. */
Alan Cox2f768af2006-01-18 17:44:12 -0800395};
396
397MODULE_DEVICE_TABLE(pci, r82600_pci_tbl);
398
Alan Cox2f768af2006-01-18 17:44:12 -0800399static struct pci_driver r82600_driver = {
Dave Peterson680cbbb2006-03-26 01:38:41 -0800400 .name = EDAC_MOD_STR,
Alan Cox2f768af2006-01-18 17:44:12 -0800401 .probe = r82600_init_one,
402 .remove = __devexit_p(r82600_remove_one),
403 .id_table = r82600_pci_tbl,
404};
405
Alan Coxda9bb1d2006-01-18 17:44:13 -0800406static int __init r82600_init(void)
Alan Cox2f768af2006-01-18 17:44:12 -0800407{
Hitoshi Mitakec3c52bc2008-04-29 01:03:18 -0700408 /* Ensure that the OPSTATE is set correctly for POLL or NMI */
409 opstate_init();
410
Alan Cox2f768af2006-01-18 17:44:12 -0800411 return pci_register_driver(&r82600_driver);
412}
413
Alan Cox2f768af2006-01-18 17:44:12 -0800414static void __exit r82600_exit(void)
415{
416 pci_unregister_driver(&r82600_driver);
417}
418
Alan Cox2f768af2006-01-18 17:44:12 -0800419module_init(r82600_init);
420module_exit(r82600_exit);
421
Alan Cox2f768af2006-01-18 17:44:12 -0800422MODULE_LICENSE("GPL");
423MODULE_AUTHOR("Tim Small <tim@buttersideup.com> - WPAD Ltd. "
Douglas Thompson052dfb42007-07-19 01:50:13 -0700424 "on behalf of EADS Astrium");
Alan Cox2f768af2006-01-18 17:44:12 -0800425MODULE_DESCRIPTION("MC support for Radisys 82600 memory controllers");
426
427module_param(disable_hardware_scrub, bool, 0644);
428MODULE_PARM_DESC(disable_hardware_scrub,
429 "If set, disable the chipset's automatic scrub for CEs");
Hitoshi Mitakec3c52bc2008-04-29 01:03:18 -0700430
431module_param(edac_op_state, int, 0444);
432MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI");