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