Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 1 | /* |
| 2 | * AMD 76x 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 | * Written by Thayne Harbaugh |
| 8 | * Based on work by Dan Hollis <goemon at anime dot net> and others. |
| 9 | * http://www.anime.net/~goemon/linux-ecc/ |
| 10 | * |
| 11 | * $Id: edac_amd76x.c,v 1.4.2.5 2005/10/05 00:43:44 dsp_llnl Exp $ |
| 12 | * |
| 13 | */ |
| 14 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 15 | #include <linux/module.h> |
| 16 | #include <linux/init.h> |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 17 | #include <linux/pci.h> |
| 18 | #include <linux/pci_ids.h> |
Hitoshi Mitake | c3c52bc | 2008-04-29 01:03:18 -0700 | [diff] [blame] | 19 | #include <linux/edac.h> |
Mauro Carvalho Chehab | 78d88e8 | 2016-10-29 15:16:34 -0200 | [diff] [blame] | 20 | #include "edac_module.h" |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 21 | |
Doug Thompson | 929a40e | 2006-07-01 04:35:45 -0700 | [diff] [blame] | 22 | #define EDAC_MOD_STR "amd76x_edac" |
Doug Thompson | 37f0458 | 2006-06-30 01:56:07 -0700 | [diff] [blame] | 23 | |
Dave Peterson | 537fba2 | 2006-03-26 01:38:40 -0800 | [diff] [blame] | 24 | #define amd76x_printk(level, fmt, arg...) \ |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 25 | edac_printk(level, "amd76x", fmt, ##arg) |
Dave Peterson | 537fba2 | 2006-03-26 01:38:40 -0800 | [diff] [blame] | 26 | |
| 27 | #define amd76x_mc_printk(mci, level, fmt, arg...) \ |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 28 | edac_mc_chipset_printk(mci, level, "amd76x", fmt, ##arg) |
Dave Peterson | 537fba2 | 2006-03-26 01:38:40 -0800 | [diff] [blame] | 29 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 30 | #define AMD76X_NR_CSROWS 8 |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 31 | #define AMD76X_NR_DIMMS 4 |
| 32 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 33 | /* AMD 76x register addresses - device 0 function 0 - PCI bridge */ |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 34 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 35 | #define AMD76X_ECC_MODE_STATUS 0x48 /* Mode and status of ECC (32b) |
| 36 | * |
| 37 | * 31:16 reserved |
| 38 | * 15:14 SERR enabled: x1=ue 1x=ce |
| 39 | * 13 reserved |
| 40 | * 12 diag: disabled, enabled |
| 41 | * 11:10 mode: dis, EC, ECC, ECC+scrub |
| 42 | * 9:8 status: x1=ue 1x=ce |
| 43 | * 7:4 UE cs row |
| 44 | * 3:0 CE cs row |
| 45 | */ |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 46 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 47 | #define AMD76X_DRAM_MODE_STATUS 0x58 /* DRAM Mode and status (32b) |
| 48 | * |
| 49 | * 31:26 clock disable 5 - 0 |
| 50 | * 25 SDRAM init |
| 51 | * 24 reserved |
| 52 | * 23 mode register service |
| 53 | * 22:21 suspend to RAM |
| 54 | * 20 burst refresh enable |
| 55 | * 19 refresh disable |
| 56 | * 18 reserved |
| 57 | * 17:16 cycles-per-refresh |
| 58 | * 15:8 reserved |
| 59 | * 7:0 x4 mode enable 7 - 0 |
| 60 | */ |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 61 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 62 | #define AMD76X_MEM_BASE_ADDR 0xC0 /* Memory base address (8 x 32b) |
| 63 | * |
| 64 | * 31:23 chip-select base |
| 65 | * 22:16 reserved |
| 66 | * 15:7 chip-select mask |
| 67 | * 6:3 reserved |
| 68 | * 2:1 address mode |
| 69 | * 0 chip-select enable |
| 70 | */ |
| 71 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 72 | struct amd76x_error_info { |
| 73 | u32 ecc_mode_status; |
| 74 | }; |
| 75 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 76 | enum amd76x_chips { |
| 77 | AMD761 = 0, |
| 78 | AMD762 |
| 79 | }; |
| 80 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 81 | struct amd76x_dev_info { |
| 82 | const char *ctl_name; |
| 83 | }; |
| 84 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 85 | static const struct amd76x_dev_info amd76x_devs[] = { |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 86 | [AMD761] = { |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 87 | .ctl_name = "AMD761"}, |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 88 | [AMD762] = { |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 89 | .ctl_name = "AMD762"}, |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 90 | }; |
| 91 | |
Dave Jiang | 456a2f9 | 2007-07-19 01:50:10 -0700 | [diff] [blame] | 92 | static struct edac_pci_ctl_info *amd76x_pci; |
| 93 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 94 | /** |
| 95 | * amd76x_get_error_info - fetch error information |
| 96 | * @mci: Memory controller |
| 97 | * @info: Info to fill in |
| 98 | * |
| 99 | * Fetch and store the AMD76x ECC status. Clear pending status |
| 100 | * on the chip so that further errors will be reported |
| 101 | */ |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 102 | static void amd76x_get_error_info(struct mem_ctl_info *mci, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 103 | struct amd76x_error_info *info) |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 104 | { |
Doug Thompson | 37f0458 | 2006-06-30 01:56:07 -0700 | [diff] [blame] | 105 | struct pci_dev *pdev; |
| 106 | |
Mauro Carvalho Chehab | fd68750 | 2012-03-16 07:44:18 -0300 | [diff] [blame] | 107 | pdev = to_pci_dev(mci->pdev); |
Doug Thompson | 37f0458 | 2006-06-30 01:56:07 -0700 | [diff] [blame] | 108 | pci_read_config_dword(pdev, AMD76X_ECC_MODE_STATUS, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 109 | &info->ecc_mode_status); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 110 | |
| 111 | if (info->ecc_mode_status & BIT(8)) |
Doug Thompson | 37f0458 | 2006-06-30 01:56:07 -0700 | [diff] [blame] | 112 | pci_write_bits32(pdev, AMD76X_ECC_MODE_STATUS, |
Douglas Thompson | 67cb2b6 | 2007-07-19 01:50:02 -0700 | [diff] [blame] | 113 | (u32) BIT(8), (u32) BIT(8)); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 114 | |
| 115 | if (info->ecc_mode_status & BIT(9)) |
Doug Thompson | 37f0458 | 2006-06-30 01:56:07 -0700 | [diff] [blame] | 116 | pci_write_bits32(pdev, AMD76X_ECC_MODE_STATUS, |
Douglas Thompson | 67cb2b6 | 2007-07-19 01:50:02 -0700 | [diff] [blame] | 117 | (u32) BIT(9), (u32) BIT(9)); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 118 | } |
| 119 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 120 | /** |
| 121 | * amd76x_process_error_info - Error check |
| 122 | * @mci: Memory controller |
| 123 | * @info: Previously fetched information from chip |
| 124 | * @handle_errors: 1 if we should do recovery |
| 125 | * |
| 126 | * Process the chip state and decide if an error has occurred. |
| 127 | * A return of 1 indicates an error. Also if handle_errors is true |
| 128 | * then attempt to handle and clean up after the error |
| 129 | */ |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 130 | static int amd76x_process_error_info(struct mem_ctl_info *mci, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 131 | struct amd76x_error_info *info, |
| 132 | int handle_errors) |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 133 | { |
| 134 | int error_found; |
| 135 | u32 row; |
| 136 | |
| 137 | error_found = 0; |
| 138 | |
| 139 | /* |
Douglas Thompson | 67cb2b6 | 2007-07-19 01:50:02 -0700 | [diff] [blame] | 140 | * Check for an uncorrectable error |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 141 | */ |
| 142 | if (info->ecc_mode_status & BIT(8)) { |
| 143 | error_found = 1; |
| 144 | |
| 145 | if (handle_errors) { |
| 146 | row = (info->ecc_mode_status >> 4) & 0xf; |
Mauro Carvalho Chehab | 9eb07a7 | 2012-06-04 13:27:43 -0300 | [diff] [blame] | 147 | edac_mc_handle_error(HW_EVENT_ERR_UNCORRECTED, mci, 1, |
Mauro Carvalho Chehab | de3910eb | 2012-04-24 15:05:43 -0300 | [diff] [blame] | 148 | mci->csrows[row]->first_page, 0, 0, |
Mauro Carvalho Chehab | d8c34af | 2012-04-16 15:05:27 -0300 | [diff] [blame] | 149 | row, 0, -1, |
Mauro Carvalho Chehab | 03f7eae | 2012-06-04 11:29:25 -0300 | [diff] [blame] | 150 | mci->ctl_name, ""); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 151 | } |
| 152 | } |
| 153 | |
| 154 | /* |
Douglas Thompson | 67cb2b6 | 2007-07-19 01:50:02 -0700 | [diff] [blame] | 155 | * Check for a correctable error |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 156 | */ |
| 157 | if (info->ecc_mode_status & BIT(9)) { |
| 158 | error_found = 1; |
| 159 | |
| 160 | if (handle_errors) { |
| 161 | row = info->ecc_mode_status & 0xf; |
Mauro Carvalho Chehab | 9eb07a7 | 2012-06-04 13:27:43 -0300 | [diff] [blame] | 162 | edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, 1, |
Mauro Carvalho Chehab | de3910eb | 2012-04-24 15:05:43 -0300 | [diff] [blame] | 163 | mci->csrows[row]->first_page, 0, 0, |
Mauro Carvalho Chehab | d8c34af | 2012-04-16 15:05:27 -0300 | [diff] [blame] | 164 | row, 0, -1, |
Mauro Carvalho Chehab | 03f7eae | 2012-06-04 11:29:25 -0300 | [diff] [blame] | 165 | mci->ctl_name, ""); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 166 | } |
| 167 | } |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 168 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 169 | return error_found; |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * amd76x_check - Poll the controller |
| 174 | * @mci: Memory controller |
| 175 | * |
| 176 | * Called by the poll handlers this function reads the status |
| 177 | * from the controller and checks for errors. |
| 178 | */ |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 179 | static void amd76x_check(struct mem_ctl_info *mci) |
| 180 | { |
| 181 | struct amd76x_error_info info; |
Joe Perches | 956b9ba1 | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 182 | edac_dbg(3, "\n"); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 183 | amd76x_get_error_info(mci, &info); |
| 184 | amd76x_process_error_info(mci, &info, 1); |
| 185 | } |
| 186 | |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 187 | static void amd76x_init_csrows(struct mem_ctl_info *mci, struct pci_dev *pdev, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 188 | enum edac_type edac_mode) |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 189 | { |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 190 | struct csrow_info *csrow; |
Mauro Carvalho Chehab | 084a4fc | 2012-01-27 18:38:08 -0300 | [diff] [blame] | 191 | struct dimm_info *dimm; |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 192 | u32 mba, mba_base, mba_mask, dms; |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 193 | int index; |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 194 | |
| 195 | for (index = 0; index < mci->nr_csrows; index++) { |
Mauro Carvalho Chehab | de3910eb | 2012-04-24 15:05:43 -0300 | [diff] [blame] | 196 | csrow = mci->csrows[index]; |
| 197 | dimm = csrow->channels[0]->dimm; |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 198 | |
| 199 | /* find the DRAM Chip Select Base address and mask */ |
Doug Thompson | 37f0458 | 2006-06-30 01:56:07 -0700 | [diff] [blame] | 200 | pci_read_config_dword(pdev, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 201 | AMD76X_MEM_BASE_ADDR + (index * 4), &mba); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 202 | |
| 203 | if (!(mba & BIT(0))) |
| 204 | continue; |
| 205 | |
| 206 | mba_base = mba & 0xff800000UL; |
| 207 | mba_mask = ((mba & 0xff80) << 16) | 0x7fffffUL; |
Doug Thompson | 37f0458 | 2006-06-30 01:56:07 -0700 | [diff] [blame] | 208 | pci_read_config_dword(pdev, AMD76X_DRAM_MODE_STATUS, &dms); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 209 | csrow->first_page = mba_base >> PAGE_SHIFT; |
Mauro Carvalho Chehab | a895bf8 | 2012-01-28 09:09:38 -0300 | [diff] [blame] | 210 | dimm->nr_pages = (mba_mask + 1) >> PAGE_SHIFT; |
| 211 | csrow->last_page = csrow->first_page + dimm->nr_pages - 1; |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 212 | csrow->page_mask = mba_mask >> PAGE_SHIFT; |
Mauro Carvalho Chehab | a895bf8 | 2012-01-28 09:09:38 -0300 | [diff] [blame] | 213 | dimm->grain = dimm->nr_pages << PAGE_SHIFT; |
Mauro Carvalho Chehab | 084a4fc | 2012-01-27 18:38:08 -0300 | [diff] [blame] | 214 | dimm->mtype = MEM_RDDR; |
| 215 | dimm->dtype = ((dms >> index) & 0x1) ? DEV_X4 : DEV_UNKNOWN; |
| 216 | dimm->edac_mode = edac_mode; |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 217 | } |
| 218 | } |
| 219 | |
| 220 | /** |
| 221 | * amd76x_probe1 - Perform set up for detected device |
| 222 | * @pdev; PCI device detected |
| 223 | * @dev_idx: Device type index |
| 224 | * |
| 225 | * We have found an AMD76x and now need to set up the memory |
| 226 | * controller status reporting. We configure and set up the |
| 227 | * memory controller reporting and claim the device. |
| 228 | */ |
| 229 | static int amd76x_probe1(struct pci_dev *pdev, int dev_idx) |
| 230 | { |
| 231 | static const enum edac_type ems_modes[] = { |
| 232 | EDAC_NONE, |
| 233 | EDAC_EC, |
| 234 | EDAC_SECDED, |
| 235 | EDAC_SECDED |
| 236 | }; |
Mauro Carvalho Chehab | d8c34af | 2012-04-16 15:05:27 -0300 | [diff] [blame] | 237 | struct mem_ctl_info *mci; |
| 238 | struct edac_mc_layer layers[2]; |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 239 | u32 ems; |
| 240 | u32 ems_mode; |
| 241 | struct amd76x_error_info discard; |
| 242 | |
Joe Perches | 956b9ba1 | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 243 | edac_dbg(0, "\n"); |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 244 | pci_read_config_dword(pdev, AMD76X_ECC_MODE_STATUS, &ems); |
| 245 | ems_mode = (ems >> 10) & 0x3; |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 246 | |
Mauro Carvalho Chehab | d8c34af | 2012-04-16 15:05:27 -0300 | [diff] [blame] | 247 | layers[0].type = EDAC_MC_LAYER_CHIP_SELECT; |
| 248 | layers[0].size = AMD76X_NR_CSROWS; |
| 249 | layers[0].is_virt_csrow = true; |
| 250 | layers[1].type = EDAC_MC_LAYER_CHANNEL; |
| 251 | layers[1].size = 1; |
| 252 | layers[1].is_virt_csrow = false; |
Mauro Carvalho Chehab | ca0907b | 2012-05-02 14:37:00 -0300 | [diff] [blame] | 253 | mci = edac_mc_alloc(0, ARRAY_SIZE(layers), layers, 0); |
Mauro Carvalho Chehab | d8c34af | 2012-04-16 15:05:27 -0300 | [diff] [blame] | 254 | |
| 255 | if (mci == NULL) |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 256 | return -ENOMEM; |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 257 | |
Joe Perches | 956b9ba1 | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 258 | edac_dbg(0, "mci = %p\n", mci); |
Mauro Carvalho Chehab | fd68750 | 2012-03-16 07:44:18 -0300 | [diff] [blame] | 259 | mci->pdev = &pdev->dev; |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 260 | mci->mtype_cap = MEM_FLAG_RDDR; |
| 261 | mci->edac_ctl_cap = EDAC_FLAG_NONE | EDAC_FLAG_EC | EDAC_FLAG_SECDED; |
| 262 | mci->edac_cap = ems_mode ? |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 263 | (EDAC_FLAG_EC | EDAC_FLAG_SECDED) : EDAC_FLAG_NONE; |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 264 | mci->mod_name = EDAC_MOD_STR; |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 265 | mci->ctl_name = amd76x_devs[dev_idx].ctl_name; |
Dave Jiang | c419270 | 2007-07-19 01:49:47 -0700 | [diff] [blame] | 266 | mci->dev_name = pci_name(pdev); |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 267 | mci->edac_check = amd76x_check; |
| 268 | mci->ctl_page_to_phys = NULL; |
| 269 | |
| 270 | amd76x_init_csrows(mci, pdev, ems_modes[ems_mode]); |
Douglas Thompson | 67cb2b6 | 2007-07-19 01:50:02 -0700 | [diff] [blame] | 271 | amd76x_get_error_info(mci, &discard); /* clear counters */ |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 272 | |
Doug Thompson | 2d7bbb9 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 273 | /* Here we assume that we will never see multiple instances of this |
| 274 | * type of memory controller. The ID is therefore hardcoded to 0. |
| 275 | */ |
Doug Thompson | b8f6f97 | 2007-07-19 01:50:26 -0700 | [diff] [blame] | 276 | if (edac_mc_add_mc(mci)) { |
Joe Perches | 956b9ba1 | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 277 | edac_dbg(3, "failed edac_mc_add_mc()\n"); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 278 | goto fail; |
| 279 | } |
| 280 | |
Dave Jiang | 456a2f9 | 2007-07-19 01:50:10 -0700 | [diff] [blame] | 281 | /* allocating generic PCI control info */ |
| 282 | amd76x_pci = edac_pci_create_generic_ctl(&pdev->dev, EDAC_MOD_STR); |
| 283 | if (!amd76x_pci) { |
| 284 | printk(KERN_WARNING |
| 285 | "%s(): Unable to create PCI control\n", |
| 286 | __func__); |
| 287 | printk(KERN_WARNING |
| 288 | "%s(): PCI error report via EDAC not setup\n", |
| 289 | __func__); |
| 290 | } |
| 291 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 292 | /* get this far and it's successful */ |
Joe Perches | 956b9ba1 | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 293 | edac_dbg(3, "success\n"); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 294 | return 0; |
| 295 | |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 296 | fail: |
Doug Thompson | 1318952 | 2006-06-30 01:56:08 -0700 | [diff] [blame] | 297 | edac_mc_free(mci); |
| 298 | return -ENODEV; |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | /* returns count (>= 0), or negative on error */ |
Greg Kroah-Hartman | 9b3c6e8 | 2012-12-21 13:23:51 -0800 | [diff] [blame] | 302 | static int amd76x_init_one(struct pci_dev *pdev, |
| 303 | const struct pci_device_id *ent) |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 304 | { |
Joe Perches | 956b9ba1 | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 305 | edac_dbg(0, "\n"); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 306 | |
Roman Fietze | ee6583f | 2010-05-18 14:45:47 +0200 | [diff] [blame] | 307 | /* don't need to call pci_enable_device() */ |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 308 | return amd76x_probe1(pdev, ent->driver_data); |
| 309 | } |
| 310 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 311 | /** |
| 312 | * amd76x_remove_one - driver shutdown |
| 313 | * @pdev: PCI device being handed back |
| 314 | * |
| 315 | * Called when the driver is unloaded. Find the matching mci |
| 316 | * structure for the device then delete the mci and free the |
| 317 | * resources. |
| 318 | */ |
Greg Kroah-Hartman | 9b3c6e8 | 2012-12-21 13:23:51 -0800 | [diff] [blame] | 319 | static void amd76x_remove_one(struct pci_dev *pdev) |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 320 | { |
| 321 | struct mem_ctl_info *mci; |
| 322 | |
Joe Perches | 956b9ba1 | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 323 | edac_dbg(0, "\n"); |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 324 | |
Dave Jiang | 456a2f9 | 2007-07-19 01:50:10 -0700 | [diff] [blame] | 325 | if (amd76x_pci) |
| 326 | edac_pci_release_generic_ctl(amd76x_pci); |
| 327 | |
Doug Thompson | 37f0458 | 2006-06-30 01:56:07 -0700 | [diff] [blame] | 328 | if ((mci = edac_mc_del_mc(&pdev->dev)) == NULL) |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 329 | return; |
Dave Peterson | 18dbc33 | 2006-03-26 01:38:50 -0800 | [diff] [blame] | 330 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 331 | edac_mc_free(mci); |
| 332 | } |
| 333 | |
Jingoo Han | ba935f4 | 2013-12-06 10:23:08 +0100 | [diff] [blame] | 334 | static const struct pci_device_id amd76x_pci_tbl[] = { |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 335 | { |
Douglas Thompson | 67cb2b6 | 2007-07-19 01:50:02 -0700 | [diff] [blame] | 336 | PCI_VEND_DEV(AMD, FE_GATE_700C), PCI_ANY_ID, PCI_ANY_ID, 0, 0, |
| 337 | AMD762}, |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 338 | { |
Douglas Thompson | 67cb2b6 | 2007-07-19 01:50:02 -0700 | [diff] [blame] | 339 | PCI_VEND_DEV(AMD, FE_GATE_700E), PCI_ANY_ID, PCI_ANY_ID, 0, 0, |
| 340 | AMD761}, |
Dave Peterson | e7ecd89 | 2006-03-26 01:38:52 -0800 | [diff] [blame] | 341 | { |
Douglas Thompson | 67cb2b6 | 2007-07-19 01:50:02 -0700 | [diff] [blame] | 342 | 0, |
| 343 | } /* 0 terminated list. */ |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 344 | }; |
| 345 | |
| 346 | MODULE_DEVICE_TABLE(pci, amd76x_pci_tbl); |
| 347 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 348 | static struct pci_driver amd76x_driver = { |
Dave Peterson | 680cbbb | 2006-03-26 01:38:41 -0800 | [diff] [blame] | 349 | .name = EDAC_MOD_STR, |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 350 | .probe = amd76x_init_one, |
Greg Kroah-Hartman | 9b3c6e8 | 2012-12-21 13:23:51 -0800 | [diff] [blame] | 351 | .remove = amd76x_remove_one, |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 352 | .id_table = amd76x_pci_tbl, |
| 353 | }; |
| 354 | |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 355 | static int __init amd76x_init(void) |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 356 | { |
Hitoshi Mitake | c3c52bc | 2008-04-29 01:03:18 -0700 | [diff] [blame] | 357 | /* Ensure that the OPSTATE is set correctly for POLL or NMI */ |
| 358 | opstate_init(); |
| 359 | |
Alan Cox | 806c35f | 2006-01-18 17:44:08 -0800 | [diff] [blame] | 360 | return pci_register_driver(&amd76x_driver); |
| 361 | } |
| 362 | |
| 363 | static void __exit amd76x_exit(void) |
| 364 | { |
| 365 | pci_unregister_driver(&amd76x_driver); |
| 366 | } |
| 367 | |
| 368 | module_init(amd76x_init); |
| 369 | module_exit(amd76x_exit); |
| 370 | |
| 371 | MODULE_LICENSE("GPL"); |
| 372 | MODULE_AUTHOR("Linux Networx (http://lnxi.com) Thayne Harbaugh"); |
| 373 | MODULE_DESCRIPTION("MC support for AMD 76x memory controllers"); |
Hitoshi Mitake | c3c52bc | 2008-04-29 01:03:18 -0700 | [diff] [blame] | 374 | |
| 375 | module_param(edac_op_state, int, 0444); |
| 376 | MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI"); |