Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Intel e7xxx Memory Controller kernel module |
| 3 | * (C) 2003 Linux Networx (http://lnxi.com) |
| 4 | * This file may be distributed under the terms of the |
| 5 | * GNU General Public License. |
| 6 | * |
| 7 | * See "enum e7xxx_chips" below for supported chipsets |
| 8 | * |
| 9 | * Written by Thayne Harbaugh |
| 10 | * Based on work by Dan Hollis <goemon at anime dot net> and others. |
| 11 | * http://www.anime.net/~goemon/linux-ecc/ |
| 12 | * |
Mauro Carvalho Chehab | 30ac440 | 2012-04-16 15:07:09 -0300 | [diff] [blame] | 13 | * Datasheet: |
| 14 | * http://www.intel.com/content/www/us/en/chipsets/e7501-chipset-memory-controller-hub-datasheet.html |
| 15 | * |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 16 | * Contributors: |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 17 | * Eric Biederman (Linux Networx) |
| 18 | * Tom Zimmerman (Linux Networx) |
| 19 | * Jim Garlick (Lawrence Livermore National Labs) |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 20 | * Dave Peterson (Lawrence Livermore National Labs) |
| 21 | * That One Guy (Some other place) |
| 22 | * Wang Zhenyu (intel.com) |
| 23 | * |
| 24 | * $Id: edac_e7xxx.c,v 1.5.2.9 2005/10/05 00:43:44 dsp_llnl Exp $ |
| 25 | * |
| 26 | */ |
| 27 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 28 | #include <linux/module.h> |
| 29 | #include <linux/init.h> |
| 30 | #include <linux/pci.h> |
| 31 | #include <linux/pci_ids.h> |
Dave Jiang | c0d1217 | 2007-07-19 01:49:46 -0700 | [diff] [blame] | 32 | #include <linux/edac.h> |
Mauro Carvalho Chehab | 78d88e8 | 2016-10-29 15:16:34 -0200 | [diff] [blame] | 33 | #include "edac_module.h" |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 34 | |
Doug Thompson | 929a40e | 2006-07-01 04:35:45 -0700 | [diff] [blame] | 35 | #define EDAC_MOD_STR "e7xxx_edac" |
Doug Thompson | 37f0458 | 2006-06-30 01:56:07 -0700 | [diff] [blame] | 36 | |
Dave Peterson | 537fba2 | 2006-03-26 01:38:40 -0800 | [diff] [blame] | 37 | #define e7xxx_printk(level, fmt, arg...) \ |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 38 | edac_printk(level, "e7xxx", fmt, ##arg) |
Dave Peterson | 537fba2 | 2006-03-26 01:38:40 -0800 | [diff] [blame] | 39 | |
| 40 | #define e7xxx_mc_printk(mci, level, fmt, arg...) \ |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 41 | edac_mc_chipset_printk(mci, level, "e7xxx", fmt, ##arg) |
Dave Peterson | 537fba2 | 2006-03-26 01:38:40 -0800 | [diff] [blame] | 42 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 43 | #ifndef PCI_DEVICE_ID_INTEL_7205_0 |
| 44 | #define PCI_DEVICE_ID_INTEL_7205_0 0x255d |
| 45 | #endif /* PCI_DEVICE_ID_INTEL_7205_0 */ |
| 46 | |
| 47 | #ifndef PCI_DEVICE_ID_INTEL_7205_1_ERR |
| 48 | #define PCI_DEVICE_ID_INTEL_7205_1_ERR 0x2551 |
| 49 | #endif /* PCI_DEVICE_ID_INTEL_7205_1_ERR */ |
| 50 | |
| 51 | #ifndef PCI_DEVICE_ID_INTEL_7500_0 |
| 52 | #define PCI_DEVICE_ID_INTEL_7500_0 0x2540 |
| 53 | #endif /* PCI_DEVICE_ID_INTEL_7500_0 */ |
| 54 | |
| 55 | #ifndef PCI_DEVICE_ID_INTEL_7500_1_ERR |
| 56 | #define PCI_DEVICE_ID_INTEL_7500_1_ERR 0x2541 |
| 57 | #endif /* PCI_DEVICE_ID_INTEL_7500_1_ERR */ |
| 58 | |
| 59 | #ifndef PCI_DEVICE_ID_INTEL_7501_0 |
| 60 | #define PCI_DEVICE_ID_INTEL_7501_0 0x254c |
| 61 | #endif /* PCI_DEVICE_ID_INTEL_7501_0 */ |
| 62 | |
| 63 | #ifndef PCI_DEVICE_ID_INTEL_7501_1_ERR |
| 64 | #define PCI_DEVICE_ID_INTEL_7501_1_ERR 0x2541 |
| 65 | #endif /* PCI_DEVICE_ID_INTEL_7501_1_ERR */ |
| 66 | |
| 67 | #ifndef PCI_DEVICE_ID_INTEL_7505_0 |
| 68 | #define PCI_DEVICE_ID_INTEL_7505_0 0x2550 |
| 69 | #endif /* PCI_DEVICE_ID_INTEL_7505_0 */ |
| 70 | |
| 71 | #ifndef PCI_DEVICE_ID_INTEL_7505_1_ERR |
| 72 | #define PCI_DEVICE_ID_INTEL_7505_1_ERR 0x2551 |
| 73 | #endif /* PCI_DEVICE_ID_INTEL_7505_1_ERR */ |
| 74 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 75 | #define E7XXX_NR_CSROWS 8 /* number of csrows */ |
Mauro Carvalho Chehab | 30ac440 | 2012-04-16 15:07:09 -0300 | [diff] [blame] | 76 | #define E7XXX_NR_DIMMS 8 /* 2 channels, 4 dimms/channel */ |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 77 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 78 | /* E7XXX register addresses - device 0 function 0 */ |
| 79 | #define E7XXX_DRB 0x60 /* DRAM row boundary register (8b) */ |
| 80 | #define E7XXX_DRA 0x70 /* DRAM row attribute register (8b) */ |
| 81 | /* |
| 82 | * 31 Device width row 7 0=x8 1=x4 |
| 83 | * 27 Device width row 6 |
| 84 | * 23 Device width row 5 |
| 85 | * 19 Device width row 4 |
| 86 | * 15 Device width row 3 |
| 87 | * 11 Device width row 2 |
| 88 | * 7 Device width row 1 |
| 89 | * 3 Device width row 0 |
| 90 | */ |
| 91 | #define E7XXX_DRC 0x7C /* DRAM controller mode reg (32b) */ |
| 92 | /* |
| 93 | * 22 Number channels 0=1,1=2 |
| 94 | * 19:18 DRB Granularity 32/64MB |
| 95 | */ |
| 96 | #define E7XXX_TOLM 0xC4 /* DRAM top of low memory reg (16b) */ |
| 97 | #define E7XXX_REMAPBASE 0xC6 /* DRAM remap base address reg (16b) */ |
| 98 | #define E7XXX_REMAPLIMIT 0xC8 /* DRAM remap limit address reg (16b) */ |
| 99 | |
| 100 | /* E7XXX register addresses - device 0 function 1 */ |
| 101 | #define E7XXX_DRAM_FERR 0x80 /* DRAM first error register (8b) */ |
| 102 | #define E7XXX_DRAM_NERR 0x82 /* DRAM next error register (8b) */ |
| 103 | #define E7XXX_DRAM_CELOG_ADD 0xA0 /* DRAM first correctable memory */ |
| 104 | /* error address register (32b) */ |
| 105 | /* |
| 106 | * 31:28 Reserved |
| 107 | * 27:6 CE address (4k block 33:12) |
| 108 | * 5:0 Reserved |
| 109 | */ |
| 110 | #define E7XXX_DRAM_UELOG_ADD 0xB0 /* DRAM first uncorrectable memory */ |
| 111 | /* error address register (32b) */ |
| 112 | /* |
| 113 | * 31:28 Reserved |
| 114 | * 27:6 CE address (4k block 33:12) |
| 115 | * 5:0 Reserved |
| 116 | */ |
| 117 | #define E7XXX_DRAM_CELOG_SYNDROME 0xD0 /* DRAM first correctable memory */ |
| 118 | /* error syndrome register (16b) */ |
| 119 | |
| 120 | enum e7xxx_chips { |
| 121 | E7500 = 0, |
| 122 | E7501, |
| 123 | E7505, |
| 124 | E7205, |
| 125 | }; |
| 126 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 127 | struct e7xxx_pvt { |
| 128 | struct pci_dev *bridge_ck; |
| 129 | u32 tolm; |
| 130 | u32 remapbase; |
| 131 | u32 remaplimit; |
| 132 | const struct e7xxx_dev_info *dev_info; |
| 133 | }; |
| 134 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 135 | struct e7xxx_dev_info { |
| 136 | u16 err_dev; |
| 137 | const char *ctl_name; |
| 138 | }; |
| 139 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 140 | struct e7xxx_error_info { |
| 141 | u8 dram_ferr; |
| 142 | u8 dram_nerr; |
| 143 | u32 dram_celog_add; |
| 144 | u16 dram_celog_syndrome; |
| 145 | u32 dram_uelog_add; |
| 146 | }; |
| 147 | |
Dave Jiang | 456a2f9 | 2007-07-19 01:50:10 -0700 | [diff] [blame] | 148 | static struct edac_pci_ctl_info *e7xxx_pci; |
| 149 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 150 | static const struct e7xxx_dev_info e7xxx_devs[] = { |
| 151 | [E7500] = { |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 152 | .err_dev = PCI_DEVICE_ID_INTEL_7500_1_ERR, |
| 153 | .ctl_name = "E7500"}, |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 154 | [E7501] = { |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 155 | .err_dev = PCI_DEVICE_ID_INTEL_7501_1_ERR, |
| 156 | .ctl_name = "E7501"}, |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 157 | [E7505] = { |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 158 | .err_dev = PCI_DEVICE_ID_INTEL_7505_1_ERR, |
| 159 | .ctl_name = "E7505"}, |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 160 | [E7205] = { |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 161 | .err_dev = PCI_DEVICE_ID_INTEL_7205_1_ERR, |
| 162 | .ctl_name = "E7205"}, |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 163 | }; |
| 164 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 165 | /* FIXME - is this valid for both SECDED and S4ECD4ED? */ |
| 166 | static inline int e7xxx_find_channel(u16 syndrome) |
| 167 | { |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 168 | edac_dbg(3, "\n"); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 169 | |
| 170 | if ((syndrome & 0xff00) == 0) |
| 171 | return 0; |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 172 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 173 | if ((syndrome & 0x00ff) == 0) |
| 174 | return 1; |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 175 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 176 | if ((syndrome & 0xf000) == 0 || (syndrome & 0x0f00) == 0) |
| 177 | return 0; |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 178 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 179 | return 1; |
| 180 | } |
| 181 | |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 182 | static unsigned long ctl_page_to_phys(struct mem_ctl_info *mci, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 183 | unsigned long page) |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 184 | { |
| 185 | u32 remap; |
Dave Jiang | 849a4c3 | 2007-07-19 01:50:03 -0700 | [diff] [blame] | 186 | struct e7xxx_pvt *pvt = (struct e7xxx_pvt *)mci->pvt_info; |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 187 | |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 188 | edac_dbg(3, "\n"); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 189 | |
| 190 | if ((page < pvt->tolm) || |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 191 | ((page >= 0x100000) && (page < pvt->remapbase))) |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 192 | return page; |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 193 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 194 | remap = (page - pvt->tolm) + pvt->remapbase; |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 195 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 196 | if (remap < pvt->remaplimit) |
| 197 | return remap; |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 198 | |
Dave Peterson | 537fba2 | 2006-03-26 01:38:40 -0800 | [diff] [blame] | 199 | e7xxx_printk(KERN_ERR, "Invalid page %lx - out of range\n", page); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 200 | return pvt->tolm - 1; |
| 201 | } |
| 202 | |
Dave Jiang | 849a4c3 | 2007-07-19 01:50:03 -0700 | [diff] [blame] | 203 | static void process_ce(struct mem_ctl_info *mci, struct e7xxx_error_info *info) |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 204 | { |
| 205 | u32 error_1b, page; |
| 206 | u16 syndrome; |
| 207 | int row; |
| 208 | int channel; |
| 209 | |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 210 | edac_dbg(3, "\n"); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 211 | /* read the error address */ |
| 212 | error_1b = info->dram_celog_add; |
| 213 | /* FIXME - should use PAGE_SHIFT */ |
Dave Jiang | 849a4c3 | 2007-07-19 01:50:03 -0700 | [diff] [blame] | 214 | page = error_1b >> 6; /* convert the address to 4k page */ |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 215 | /* read the syndrome */ |
| 216 | syndrome = info->dram_celog_syndrome; |
| 217 | /* FIXME - check for -1 */ |
| 218 | row = edac_mc_find_csrow_by_page(mci, page); |
| 219 | /* convert syndrome to channel */ |
| 220 | channel = e7xxx_find_channel(syndrome); |
Mauro Carvalho Chehab | 9eb07a7 | 2012-06-04 13:27:43 -0300 | [diff] [blame] | 221 | edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, 1, page, 0, syndrome, |
Mauro Carvalho Chehab | 03f7eae | 2012-06-04 11:29:25 -0300 | [diff] [blame] | 222 | row, channel, -1, "e7xxx CE", ""); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 223 | } |
| 224 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 225 | static void process_ce_no_info(struct mem_ctl_info *mci) |
| 226 | { |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 227 | edac_dbg(3, "\n"); |
Jason Baron | 8030122 | 2014-10-18 16:06:32 +0200 | [diff] [blame] | 228 | edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, 1, 0, 0, 0, -1, -1, -1, |
Mauro Carvalho Chehab | 03f7eae | 2012-06-04 11:29:25 -0300 | [diff] [blame] | 229 | "e7xxx CE log register overflow", ""); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 230 | } |
| 231 | |
Dave Jiang | 849a4c3 | 2007-07-19 01:50:03 -0700 | [diff] [blame] | 232 | static void process_ue(struct mem_ctl_info *mci, struct e7xxx_error_info *info) |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 233 | { |
| 234 | u32 error_2b, block_page; |
| 235 | int row; |
| 236 | |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 237 | edac_dbg(3, "\n"); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 238 | /* read the error address */ |
| 239 | error_2b = info->dram_uelog_add; |
| 240 | /* FIXME - should use PAGE_SHIFT */ |
Dave Jiang | 849a4c3 | 2007-07-19 01:50:03 -0700 | [diff] [blame] | 241 | block_page = error_2b >> 6; /* convert to 4k address */ |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 242 | row = edac_mc_find_csrow_by_page(mci, block_page); |
Mauro Carvalho Chehab | 30ac440 | 2012-04-16 15:07:09 -0300 | [diff] [blame] | 243 | |
Mauro Carvalho Chehab | 9eb07a7 | 2012-06-04 13:27:43 -0300 | [diff] [blame] | 244 | edac_mc_handle_error(HW_EVENT_ERR_UNCORRECTED, mci, 1, block_page, 0, 0, |
Mauro Carvalho Chehab | 03f7eae | 2012-06-04 11:29:25 -0300 | [diff] [blame] | 245 | row, -1, -1, "e7xxx UE", ""); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 246 | } |
| 247 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 248 | static void process_ue_no_info(struct mem_ctl_info *mci) |
| 249 | { |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 250 | edac_dbg(3, "\n"); |
Mauro Carvalho Chehab | 30ac440 | 2012-04-16 15:07:09 -0300 | [diff] [blame] | 251 | |
Mauro Carvalho Chehab | 9eb07a7 | 2012-06-04 13:27:43 -0300 | [diff] [blame] | 252 | edac_mc_handle_error(HW_EVENT_ERR_UNCORRECTED, mci, 1, 0, 0, 0, -1, -1, -1, |
Mauro Carvalho Chehab | 03f7eae | 2012-06-04 11:29:25 -0300 | [diff] [blame] | 253 | "e7xxx UE log register overflow", ""); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 254 | } |
| 255 | |
Dave Jiang | 849a4c3 | 2007-07-19 01:50:03 -0700 | [diff] [blame] | 256 | static void e7xxx_get_error_info(struct mem_ctl_info *mci, |
| 257 | struct e7xxx_error_info *info) |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 258 | { |
| 259 | struct e7xxx_pvt *pvt; |
| 260 | |
Dave Jiang | 849a4c3 | 2007-07-19 01:50:03 -0700 | [diff] [blame] | 261 | pvt = (struct e7xxx_pvt *)mci->pvt_info; |
| 262 | pci_read_config_byte(pvt->bridge_ck, E7XXX_DRAM_FERR, &info->dram_ferr); |
| 263 | pci_read_config_byte(pvt->bridge_ck, E7XXX_DRAM_NERR, &info->dram_nerr); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 264 | |
| 265 | if ((info->dram_ferr & 1) || (info->dram_nerr & 1)) { |
| 266 | pci_read_config_dword(pvt->bridge_ck, E7XXX_DRAM_CELOG_ADD, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 267 | &info->dram_celog_add); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 268 | pci_read_config_word(pvt->bridge_ck, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 269 | E7XXX_DRAM_CELOG_SYNDROME, |
| 270 | &info->dram_celog_syndrome); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 271 | } |
| 272 | |
| 273 | if ((info->dram_ferr & 2) || (info->dram_nerr & 2)) |
| 274 | pci_read_config_dword(pvt->bridge_ck, E7XXX_DRAM_UELOG_ADD, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 275 | &info->dram_uelog_add); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 276 | |
| 277 | if (info->dram_ferr & 3) |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 278 | pci_write_bits8(pvt->bridge_ck, E7XXX_DRAM_FERR, 0x03, 0x03); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 279 | |
| 280 | if (info->dram_nerr & 3) |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 281 | pci_write_bits8(pvt->bridge_ck, E7XXX_DRAM_NERR, 0x03, 0x03); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 282 | } |
| 283 | |
Dave Jiang | 849a4c3 | 2007-07-19 01:50:03 -0700 | [diff] [blame] | 284 | static int e7xxx_process_error_info(struct mem_ctl_info *mci, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 285 | struct e7xxx_error_info *info, |
| 286 | int handle_errors) |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 287 | { |
| 288 | int error_found; |
| 289 | |
| 290 | error_found = 0; |
| 291 | |
| 292 | /* decode and report errors */ |
| 293 | if (info->dram_ferr & 1) { /* check first error correctable */ |
| 294 | error_found = 1; |
| 295 | |
| 296 | if (handle_errors) |
| 297 | process_ce(mci, info); |
| 298 | } |
| 299 | |
| 300 | if (info->dram_ferr & 2) { /* check first error uncorrectable */ |
| 301 | error_found = 1; |
| 302 | |
| 303 | if (handle_errors) |
| 304 | process_ue(mci, info); |
| 305 | } |
| 306 | |
| 307 | if (info->dram_nerr & 1) { /* check next error correctable */ |
| 308 | error_found = 1; |
| 309 | |
| 310 | if (handle_errors) { |
| 311 | if (info->dram_ferr & 1) |
| 312 | process_ce_no_info(mci); |
| 313 | else |
| 314 | process_ce(mci, info); |
| 315 | } |
| 316 | } |
| 317 | |
| 318 | if (info->dram_nerr & 2) { /* check next error uncorrectable */ |
| 319 | error_found = 1; |
| 320 | |
| 321 | if (handle_errors) { |
| 322 | if (info->dram_ferr & 2) |
| 323 | process_ue_no_info(mci); |
| 324 | else |
| 325 | process_ue(mci, info); |
| 326 | } |
| 327 | } |
| 328 | |
| 329 | return error_found; |
| 330 | } |
| 331 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 332 | static void e7xxx_check(struct mem_ctl_info *mci) |
| 333 | { |
| 334 | struct e7xxx_error_info info; |
| 335 | |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 336 | edac_dbg(3, "\n"); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 337 | e7xxx_get_error_info(mci, &info); |
| 338 | e7xxx_process_error_info(mci, &info, 1); |
| 339 | } |
| 340 | |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 341 | /* Return 1 if dual channel mode is active. Else return 0. */ |
| 342 | static inline int dual_channel_active(u32 drc, int dev_idx) |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 343 | { |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 344 | return (dev_idx == E7501) ? ((drc >> 22) & 0x1) : 1; |
| 345 | } |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 346 | |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 347 | /* Return DRB granularity (0=32mb, 1=64mb). */ |
| 348 | static inline int drb_granularity(u32 drc, int dev_idx) |
| 349 | { |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 350 | /* only e7501 can be single channel */ |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 351 | return (dev_idx == E7501) ? ((drc >> 18) & 0x3) : 1; |
| 352 | } |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 353 | |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 354 | static void e7xxx_init_csrows(struct mem_ctl_info *mci, struct pci_dev *pdev, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 355 | int dev_idx, u32 drc) |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 356 | { |
| 357 | unsigned long last_cumul_size; |
Mauro Carvalho Chehab | 084a4fc | 2012-01-27 18:38:08 -0300 | [diff] [blame] | 358 | int index, j; |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 359 | u8 value; |
Mauro Carvalho Chehab | a895bf8 | 2012-01-28 09:09:38 -0300 | [diff] [blame] | 360 | u32 dra, cumul_size, nr_pages; |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 361 | int drc_chan, drc_drbg, drc_ddim, mem_dev; |
| 362 | struct csrow_info *csrow; |
Mauro Carvalho Chehab | 084a4fc | 2012-01-27 18:38:08 -0300 | [diff] [blame] | 363 | struct dimm_info *dimm; |
Mauro Carvalho Chehab | fd63312 | 2012-03-28 19:37:59 -0300 | [diff] [blame] | 364 | enum edac_type edac_mode; |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 365 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 366 | pci_read_config_dword(pdev, E7XXX_DRA, &dra); |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 367 | drc_chan = dual_channel_active(drc, dev_idx); |
| 368 | drc_drbg = drb_granularity(drc, dev_idx); |
| 369 | drc_ddim = (drc >> 20) & 0x3; |
| 370 | last_cumul_size = 0; |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 371 | |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 372 | /* The dram row boundary (DRB) reg values are boundary address |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 373 | * for each DRAM row with a granularity of 32 or 64MB (single/dual |
| 374 | * channel operation). DRB regs are cumulative; therefore DRB7 will |
| 375 | * contain the total memory contained in all eight rows. |
| 376 | */ |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 377 | for (index = 0; index < mci->nr_csrows; index++) { |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 378 | /* mem_dev 0=x8, 1=x4 */ |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 379 | mem_dev = (dra >> (index * 4 + 3)) & 0x1; |
Mauro Carvalho Chehab | de3910eb | 2012-04-24 15:05:43 -0300 | [diff] [blame] | 380 | csrow = mci->csrows[index]; |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 381 | |
Doug Thompson | 37f0458 | 2006-06-30 01:56:07 -0700 | [diff] [blame] | 382 | pci_read_config_byte(pdev, E7XXX_DRB + index, &value); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 383 | /* convert a 64 or 32 MiB DRB to a page size. */ |
| 384 | cumul_size = value << (25 + drc_drbg - PAGE_SHIFT); |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 385 | edac_dbg(3, "(%d) cumul_size 0x%x\n", index, cumul_size); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 386 | if (cumul_size == last_cumul_size) |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 387 | continue; /* not populated */ |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 388 | |
| 389 | csrow->first_page = last_cumul_size; |
| 390 | csrow->last_page = cumul_size - 1; |
Mauro Carvalho Chehab | a895bf8 | 2012-01-28 09:09:38 -0300 | [diff] [blame] | 391 | nr_pages = cumul_size - last_cumul_size; |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 392 | last_cumul_size = cumul_size; |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 393 | |
Mauro Carvalho Chehab | fd63312 | 2012-03-28 19:37:59 -0300 | [diff] [blame] | 394 | /* |
| 395 | * if single channel or x8 devices then SECDED |
| 396 | * if dual channel and x4 then S4ECD4ED |
| 397 | */ |
| 398 | if (drc_ddim) { |
| 399 | if (drc_chan && mem_dev) { |
| 400 | edac_mode = EDAC_S4ECD4ED; |
| 401 | mci->edac_cap |= EDAC_FLAG_S4ECD4ED; |
| 402 | } else { |
| 403 | edac_mode = EDAC_SECDED; |
| 404 | mci->edac_cap |= EDAC_FLAG_SECDED; |
| 405 | } |
| 406 | } else |
| 407 | edac_mode = EDAC_NONE; |
| 408 | |
Mauro Carvalho Chehab | 084a4fc | 2012-01-27 18:38:08 -0300 | [diff] [blame] | 409 | for (j = 0; j < drc_chan + 1; j++) { |
Mauro Carvalho Chehab | de3910eb | 2012-04-24 15:05:43 -0300 | [diff] [blame] | 410 | dimm = csrow->channels[j]->dimm; |
Mauro Carvalho Chehab | 084a4fc | 2012-01-27 18:38:08 -0300 | [diff] [blame] | 411 | |
Mauro Carvalho Chehab | a895bf8 | 2012-01-28 09:09:38 -0300 | [diff] [blame] | 412 | dimm->nr_pages = nr_pages / (drc_chan + 1); |
Mauro Carvalho Chehab | 084a4fc | 2012-01-27 18:38:08 -0300 | [diff] [blame] | 413 | dimm->grain = 1 << 12; /* 4KiB - resolution of CELOG */ |
| 414 | dimm->mtype = MEM_RDDR; /* only one type supported */ |
| 415 | dimm->dtype = mem_dev ? DEV_X4 : DEV_X8; |
Mauro Carvalho Chehab | fd63312 | 2012-03-28 19:37:59 -0300 | [diff] [blame] | 416 | dimm->edac_mode = edac_mode; |
Mauro Carvalho Chehab | 084a4fc | 2012-01-27 18:38:08 -0300 | [diff] [blame] | 417 | } |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 418 | } |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 419 | } |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 420 | |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 421 | static int e7xxx_probe1(struct pci_dev *pdev, int dev_idx) |
| 422 | { |
| 423 | u16 pci_data; |
| 424 | struct mem_ctl_info *mci = NULL; |
Mauro Carvalho Chehab | 30ac440 | 2012-04-16 15:07:09 -0300 | [diff] [blame] | 425 | struct edac_mc_layer layers[2]; |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 426 | struct e7xxx_pvt *pvt = NULL; |
| 427 | u32 drc; |
| 428 | int drc_chan; |
| 429 | struct e7xxx_error_info discard; |
| 430 | |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 431 | edac_dbg(0, "mci\n"); |
Dave Jiang | c0d1217 | 2007-07-19 01:49:46 -0700 | [diff] [blame] | 432 | |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 433 | pci_read_config_dword(pdev, E7XXX_DRC, &drc); |
| 434 | |
| 435 | drc_chan = dual_channel_active(drc, dev_idx); |
Mauro Carvalho Chehab | 30ac440 | 2012-04-16 15:07:09 -0300 | [diff] [blame] | 436 | /* |
| 437 | * According with the datasheet, this device has a maximum of |
| 438 | * 4 DIMMS per channel, either single-rank or dual-rank. So, the |
| 439 | * total amount of dimms is 8 (E7XXX_NR_DIMMS). |
| 440 | * That means that the DIMM is mapped as CSROWs, and the channel |
| 441 | * will map the rank. So, an error to either channel should be |
| 442 | * attributed to the same dimm. |
| 443 | */ |
| 444 | layers[0].type = EDAC_MC_LAYER_CHIP_SELECT; |
| 445 | layers[0].size = E7XXX_NR_CSROWS; |
| 446 | layers[0].is_virt_csrow = true; |
| 447 | layers[1].type = EDAC_MC_LAYER_CHANNEL; |
| 448 | layers[1].size = drc_chan + 1; |
| 449 | layers[1].is_virt_csrow = false; |
Mauro Carvalho Chehab | ca0907b | 2012-05-02 14:37:00 -0300 | [diff] [blame] | 450 | mci = edac_mc_alloc(0, ARRAY_SIZE(layers), layers, sizeof(*pvt)); |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 451 | if (mci == NULL) |
| 452 | return -ENOMEM; |
| 453 | |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 454 | edac_dbg(3, "init mci\n"); |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 455 | mci->mtype_cap = MEM_FLAG_RDDR; |
| 456 | mci->edac_ctl_cap = EDAC_FLAG_NONE | EDAC_FLAG_SECDED | |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 457 | EDAC_FLAG_S4ECD4ED; |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 458 | /* FIXME - what if different memory types are in different csrows? */ |
| 459 | mci->mod_name = EDAC_MOD_STR; |
Mauro Carvalho Chehab | fd68750 | 2012-03-16 07:44:18 -0300 | [diff] [blame] | 460 | mci->pdev = &pdev->dev; |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 461 | edac_dbg(3, "init pvt\n"); |
Dave Jiang | 849a4c3 | 2007-07-19 01:50:03 -0700 | [diff] [blame] | 462 | pvt = (struct e7xxx_pvt *)mci->pvt_info; |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 463 | pvt->dev_info = &e7xxx_devs[dev_idx]; |
| 464 | pvt->bridge_ck = pci_get_device(PCI_VENDOR_ID_INTEL, |
Dave Jiang | 849a4c3 | 2007-07-19 01:50:03 -0700 | [diff] [blame] | 465 | pvt->dev_info->err_dev, pvt->bridge_ck); |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 466 | |
| 467 | if (!pvt->bridge_ck) { |
| 468 | e7xxx_printk(KERN_ERR, "error reporting device not found:" |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 469 | "vendor %x device 0x%x (broken BIOS?)\n", |
| 470 | PCI_VENDOR_ID_INTEL, e7xxx_devs[dev_idx].err_dev); |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 471 | goto fail0; |
| 472 | } |
| 473 | |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 474 | edac_dbg(3, "more mci init\n"); |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 475 | mci->ctl_name = pvt->dev_info->ctl_name; |
Dave Jiang | c419270 | 2007-07-19 01:49:47 -0700 | [diff] [blame] | 476 | mci->dev_name = pci_name(pdev); |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 477 | mci->edac_check = e7xxx_check; |
| 478 | mci->ctl_page_to_phys = ctl_page_to_phys; |
| 479 | e7xxx_init_csrows(mci, pdev, dev_idx, drc); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 480 | mci->edac_cap |= EDAC_FLAG_NONE; |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 481 | edac_dbg(3, "tolm, remapbase, remaplimit\n"); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 482 | /* load the top of low memory, remap base, and remap limit vars */ |
Doug Thompson | 37f0458 | 2006-06-30 01:56:07 -0700 | [diff] [blame] | 483 | pci_read_config_word(pdev, E7XXX_TOLM, &pci_data); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 484 | pvt->tolm = ((u32) pci_data) << 4; |
Doug Thompson | 37f0458 | 2006-06-30 01:56:07 -0700 | [diff] [blame] | 485 | pci_read_config_word(pdev, E7XXX_REMAPBASE, &pci_data); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 486 | pvt->remapbase = ((u32) pci_data) << 14; |
Doug Thompson | 37f0458 | 2006-06-30 01:56:07 -0700 | [diff] [blame] | 487 | pci_read_config_word(pdev, E7XXX_REMAPLIMIT, &pci_data); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 488 | pvt->remaplimit = ((u32) pci_data) << 14; |
Dave Peterson | 537fba2 | 2006-03-26 01:38:40 -0800 | [diff] [blame] | 489 | e7xxx_printk(KERN_INFO, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 490 | "tolm = %x, remapbase = %x, remaplimit = %x\n", pvt->tolm, |
| 491 | pvt->remapbase, pvt->remaplimit); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 492 | |
| 493 | /* clear any pending errors, or initial state bits */ |
Dave Peterson | 749ede5 | 2006-03-26 01:38:45 -0800 | [diff] [blame] | 494 | e7xxx_get_error_info(mci, &discard); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 495 | |
Doug Thompson | 2d7bbb9 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 496 | /* Here we assume that we will never see multiple instances of this |
| 497 | * type of memory controller. The ID is therefore hardcoded to 0. |
| 498 | */ |
Doug Thompson | b8f6f97 | 2007-07-19 01:50:26 -0700 | [diff] [blame] | 499 | if (edac_mc_add_mc(mci)) { |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 500 | edac_dbg(3, "failed edac_mc_add_mc()\n"); |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 501 | goto fail1; |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 502 | } |
| 503 | |
Dave Jiang | 456a2f9 | 2007-07-19 01:50:10 -0700 | [diff] [blame] | 504 | /* allocating generic PCI control info */ |
| 505 | e7xxx_pci = edac_pci_create_generic_ctl(&pdev->dev, EDAC_MOD_STR); |
| 506 | if (!e7xxx_pci) { |
| 507 | printk(KERN_WARNING |
| 508 | "%s(): Unable to create PCI control\n", |
| 509 | __func__); |
| 510 | printk(KERN_WARNING |
| 511 | "%s(): PCI error report via EDAC not setup\n", |
| 512 | __func__); |
| 513 | } |
| 514 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 515 | /* get this far and it's successful */ |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 516 | edac_dbg(3, "success\n"); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 517 | return 0; |
| 518 | |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 519 | fail1: |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 520 | pci_dev_put(pvt->bridge_ck); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 521 | |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 522 | fail0: |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 523 | edac_mc_free(mci); |
| 524 | |
| 525 | return -ENODEV; |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 526 | } |
| 527 | |
| 528 | /* returns count (>= 0), or negative on error */ |
Greg Kroah-Hartman | 9b3c6e8 | 2012-12-21 13:23:51 -0800 | [diff] [blame] | 529 | static int e7xxx_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 530 | { |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 531 | edac_dbg(0, "\n"); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 532 | |
| 533 | /* wake up and enable device */ |
| 534 | return pci_enable_device(pdev) ? |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 535 | -EIO : e7xxx_probe1(pdev, ent->driver_data); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 536 | } |
| 537 | |
Greg Kroah-Hartman | 9b3c6e8 | 2012-12-21 13:23:51 -0800 | [diff] [blame] | 538 | static void e7xxx_remove_one(struct pci_dev *pdev) |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 539 | { |
| 540 | struct mem_ctl_info *mci; |
| 541 | struct e7xxx_pvt *pvt; |
| 542 | |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 543 | edac_dbg(0, "\n"); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 544 | |
Dave Jiang | 456a2f9 | 2007-07-19 01:50:10 -0700 | [diff] [blame] | 545 | if (e7xxx_pci) |
| 546 | edac_pci_release_generic_ctl(e7xxx_pci); |
| 547 | |
Doug Thompson | 37f0458 | 2006-06-30 01:56:07 -0700 | [diff] [blame] | 548 | if ((mci = edac_mc_del_mc(&pdev->dev)) == NULL) |
Dave Peterson | 18dbc33 | 2006-03-26 01:38:50 -0800 | [diff] [blame] | 549 | return; |
| 550 | |
Dave Jiang | 849a4c3 | 2007-07-19 01:50:03 -0700 | [diff] [blame] | 551 | pvt = (struct e7xxx_pvt *)mci->pvt_info; |
Dave Peterson | 18dbc33 | 2006-03-26 01:38:50 -0800 | [diff] [blame] | 552 | pci_dev_put(pvt->bridge_ck); |
| 553 | edac_mc_free(mci); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 554 | } |
| 555 | |
Jingoo Han | ba935f4 | 2013-12-06 10:23:08 +0100 | [diff] [blame] | 556 | static const struct pci_device_id e7xxx_pci_tbl[] = { |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 557 | { |
Dave Jiang | 849a4c3 | 2007-07-19 01:50:03 -0700 | [diff] [blame] | 558 | PCI_VEND_DEV(INTEL, 7205_0), PCI_ANY_ID, PCI_ANY_ID, 0, 0, |
| 559 | E7205}, |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 560 | { |
Dave Jiang | 849a4c3 | 2007-07-19 01:50:03 -0700 | [diff] [blame] | 561 | PCI_VEND_DEV(INTEL, 7500_0), PCI_ANY_ID, PCI_ANY_ID, 0, 0, |
| 562 | E7500}, |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 563 | { |
Dave Jiang | 849a4c3 | 2007-07-19 01:50:03 -0700 | [diff] [blame] | 564 | PCI_VEND_DEV(INTEL, 7501_0), PCI_ANY_ID, PCI_ANY_ID, 0, 0, |
| 565 | E7501}, |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 566 | { |
Dave Jiang | 849a4c3 | 2007-07-19 01:50:03 -0700 | [diff] [blame] | 567 | PCI_VEND_DEV(INTEL, 7505_0), PCI_ANY_ID, PCI_ANY_ID, 0, 0, |
| 568 | E7505}, |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 569 | { |
Dave Jiang | 849a4c3 | 2007-07-19 01:50:03 -0700 | [diff] [blame] | 570 | 0, |
| 571 | } /* 0 terminated list. */ |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 572 | }; |
| 573 | |
| 574 | MODULE_DEVICE_TABLE(pci, e7xxx_pci_tbl); |
| 575 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 576 | static struct pci_driver e7xxx_driver = { |
Dave Peterson | 680cbbb | 2006-03-26 01:38:41 -0800 | [diff] [blame] | 577 | .name = EDAC_MOD_STR, |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 578 | .probe = e7xxx_init_one, |
Greg Kroah-Hartman | 9b3c6e8 | 2012-12-21 13:23:51 -0800 | [diff] [blame] | 579 | .remove = e7xxx_remove_one, |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 580 | .id_table = e7xxx_pci_tbl, |
| 581 | }; |
| 582 | |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 583 | static int __init e7xxx_init(void) |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 584 | { |
Hitoshi Mitake | c3c52bc | 2008-04-29 01:03:18 -0700 | [diff] [blame] | 585 | /* Ensure that the OPSTATE is set correctly for POLL or NMI */ |
| 586 | opstate_init(); |
| 587 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 588 | return pci_register_driver(&e7xxx_driver); |
| 589 | } |
| 590 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 591 | static void __exit e7xxx_exit(void) |
| 592 | { |
| 593 | pci_unregister_driver(&e7xxx_driver); |
| 594 | } |
| 595 | |
| 596 | module_init(e7xxx_init); |
| 597 | module_exit(e7xxx_exit); |
| 598 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 599 | MODULE_LICENSE("GPL"); |
| 600 | MODULE_AUTHOR("Linux Networx (http://lnxi.com) Thayne Harbaugh et al\n" |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 601 | "Based on.work by Dan Hollis et al"); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 602 | MODULE_DESCRIPTION("MC support for Intel e7xxx memory controllers"); |
Dave Jiang | c0d1217 | 2007-07-19 01:49:46 -0700 | [diff] [blame] | 603 | module_param(edac_op_state, int, 0444); |
| 604 | MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI"); |