blob: fcfe359f7be5b15bab7ac25ead55c552708f1ea2 [file] [log] [blame]
Alan Cox806c35f2006-01-18 17:44:08 -08001/*
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 Cox806c35f2006-01-18 17:44:08 -080015#include <linux/module.h>
16#include <linux/init.h>
Alan Cox806c35f2006-01-18 17:44:08 -080017#include <linux/pci.h>
18#include <linux/pci_ids.h>
Hitoshi Mitakec3c52bc2008-04-29 01:03:18 -070019#include <linux/edac.h>
Douglas Thompson20bcb7a2007-07-19 01:49:47 -070020#include "edac_core.h"
Alan Cox806c35f2006-01-18 17:44:08 -080021
Michal Marek152ba392011-04-01 12:41:20 +020022#define AMD76X_REVISION " Ver: 2.0.2"
Doug Thompson929a40e2006-07-01 04:35:45 -070023#define EDAC_MOD_STR "amd76x_edac"
Doug Thompson37f04582006-06-30 01:56:07 -070024
Dave Peterson537fba22006-03-26 01:38:40 -080025#define amd76x_printk(level, fmt, arg...) \
Dave Petersone7ecd892006-03-26 01:38:52 -080026 edac_printk(level, "amd76x", fmt, ##arg)
Dave Peterson537fba22006-03-26 01:38:40 -080027
28#define amd76x_mc_printk(mci, level, fmt, arg...) \
Dave Petersone7ecd892006-03-26 01:38:52 -080029 edac_mc_chipset_printk(mci, level, "amd76x", fmt, ##arg)
Dave Peterson537fba22006-03-26 01:38:40 -080030
Alan Cox806c35f2006-01-18 17:44:08 -080031#define AMD76X_NR_CSROWS 8
32#define AMD76X_NR_CHANS 1
33#define AMD76X_NR_DIMMS 4
34
Alan Cox806c35f2006-01-18 17:44:08 -080035/* AMD 76x register addresses - device 0 function 0 - PCI bridge */
Dave Petersone7ecd892006-03-26 01:38:52 -080036
Alan Cox806c35f2006-01-18 17:44:08 -080037#define AMD76X_ECC_MODE_STATUS 0x48 /* Mode and status of ECC (32b)
38 *
39 * 31:16 reserved
40 * 15:14 SERR enabled: x1=ue 1x=ce
41 * 13 reserved
42 * 12 diag: disabled, enabled
43 * 11:10 mode: dis, EC, ECC, ECC+scrub
44 * 9:8 status: x1=ue 1x=ce
45 * 7:4 UE cs row
46 * 3:0 CE cs row
47 */
Dave Petersone7ecd892006-03-26 01:38:52 -080048
Alan Cox806c35f2006-01-18 17:44:08 -080049#define AMD76X_DRAM_MODE_STATUS 0x58 /* DRAM Mode and status (32b)
50 *
51 * 31:26 clock disable 5 - 0
52 * 25 SDRAM init
53 * 24 reserved
54 * 23 mode register service
55 * 22:21 suspend to RAM
56 * 20 burst refresh enable
57 * 19 refresh disable
58 * 18 reserved
59 * 17:16 cycles-per-refresh
60 * 15:8 reserved
61 * 7:0 x4 mode enable 7 - 0
62 */
Dave Petersone7ecd892006-03-26 01:38:52 -080063
Alan Cox806c35f2006-01-18 17:44:08 -080064#define AMD76X_MEM_BASE_ADDR 0xC0 /* Memory base address (8 x 32b)
65 *
66 * 31:23 chip-select base
67 * 22:16 reserved
68 * 15:7 chip-select mask
69 * 6:3 reserved
70 * 2:1 address mode
71 * 0 chip-select enable
72 */
73
Alan Cox806c35f2006-01-18 17:44:08 -080074struct amd76x_error_info {
75 u32 ecc_mode_status;
76};
77
Alan Cox806c35f2006-01-18 17:44:08 -080078enum amd76x_chips {
79 AMD761 = 0,
80 AMD762
81};
82
Alan Cox806c35f2006-01-18 17:44:08 -080083struct amd76x_dev_info {
84 const char *ctl_name;
85};
86
Alan Cox806c35f2006-01-18 17:44:08 -080087static const struct amd76x_dev_info amd76x_devs[] = {
Dave Petersone7ecd892006-03-26 01:38:52 -080088 [AMD761] = {
Douglas Thompson052dfb42007-07-19 01:50:13 -070089 .ctl_name = "AMD761"},
Dave Petersone7ecd892006-03-26 01:38:52 -080090 [AMD762] = {
Douglas Thompson052dfb42007-07-19 01:50:13 -070091 .ctl_name = "AMD762"},
Alan Cox806c35f2006-01-18 17:44:08 -080092};
93
Dave Jiang456a2f92007-07-19 01:50:10 -070094static struct edac_pci_ctl_info *amd76x_pci;
95
Alan Cox806c35f2006-01-18 17:44:08 -080096/**
97 * amd76x_get_error_info - fetch error information
98 * @mci: Memory controller
99 * @info: Info to fill in
100 *
101 * Fetch and store the AMD76x ECC status. Clear pending status
102 * on the chip so that further errors will be reported
103 */
Dave Petersone7ecd892006-03-26 01:38:52 -0800104static void amd76x_get_error_info(struct mem_ctl_info *mci,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700105 struct amd76x_error_info *info)
Alan Cox806c35f2006-01-18 17:44:08 -0800106{
Doug Thompson37f04582006-06-30 01:56:07 -0700107 struct pci_dev *pdev;
108
109 pdev = to_pci_dev(mci->dev);
110 pci_read_config_dword(pdev, AMD76X_ECC_MODE_STATUS,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700111 &info->ecc_mode_status);
Alan Cox806c35f2006-01-18 17:44:08 -0800112
113 if (info->ecc_mode_status & BIT(8))
Doug Thompson37f04582006-06-30 01:56:07 -0700114 pci_write_bits32(pdev, AMD76X_ECC_MODE_STATUS,
Douglas Thompson67cb2b62007-07-19 01:50:02 -0700115 (u32) BIT(8), (u32) BIT(8));
Alan Cox806c35f2006-01-18 17:44:08 -0800116
117 if (info->ecc_mode_status & BIT(9))
Doug Thompson37f04582006-06-30 01:56:07 -0700118 pci_write_bits32(pdev, AMD76X_ECC_MODE_STATUS,
Douglas Thompson67cb2b62007-07-19 01:50:02 -0700119 (u32) BIT(9), (u32) BIT(9));
Alan Cox806c35f2006-01-18 17:44:08 -0800120}
121
Alan Cox806c35f2006-01-18 17:44:08 -0800122/**
123 * amd76x_process_error_info - Error check
124 * @mci: Memory controller
125 * @info: Previously fetched information from chip
126 * @handle_errors: 1 if we should do recovery
127 *
128 * Process the chip state and decide if an error has occurred.
129 * A return of 1 indicates an error. Also if handle_errors is true
130 * then attempt to handle and clean up after the error
131 */
Dave Petersone7ecd892006-03-26 01:38:52 -0800132static int amd76x_process_error_info(struct mem_ctl_info *mci,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700133 struct amd76x_error_info *info,
134 int handle_errors)
Alan Cox806c35f2006-01-18 17:44:08 -0800135{
136 int error_found;
137 u32 row;
138
139 error_found = 0;
140
141 /*
Douglas Thompson67cb2b62007-07-19 01:50:02 -0700142 * Check for an uncorrectable error
Alan Cox806c35f2006-01-18 17:44:08 -0800143 */
144 if (info->ecc_mode_status & BIT(8)) {
145 error_found = 1;
146
147 if (handle_errors) {
148 row = (info->ecc_mode_status >> 4) & 0xf;
Dave Petersone7ecd892006-03-26 01:38:52 -0800149 edac_mc_handle_ue(mci, mci->csrows[row].first_page, 0,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700150 row, mci->ctl_name);
Alan Cox806c35f2006-01-18 17:44:08 -0800151 }
152 }
153
154 /*
Douglas Thompson67cb2b62007-07-19 01:50:02 -0700155 * Check for a correctable error
Alan Cox806c35f2006-01-18 17:44:08 -0800156 */
157 if (info->ecc_mode_status & BIT(9)) {
158 error_found = 1;
159
160 if (handle_errors) {
161 row = info->ecc_mode_status & 0xf;
Dave Petersone7ecd892006-03-26 01:38:52 -0800162 edac_mc_handle_ce(mci, mci->csrows[row].first_page, 0,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700163 0, row, 0, mci->ctl_name);
Alan Cox806c35f2006-01-18 17:44:08 -0800164 }
165 }
Dave Petersone7ecd892006-03-26 01:38:52 -0800166
Alan Cox806c35f2006-01-18 17:44:08 -0800167 return error_found;
168}
169
170/**
171 * amd76x_check - Poll the controller
172 * @mci: Memory controller
173 *
174 * Called by the poll handlers this function reads the status
175 * from the controller and checks for errors.
176 */
Alan Cox806c35f2006-01-18 17:44:08 -0800177static void amd76x_check(struct mem_ctl_info *mci)
178{
179 struct amd76x_error_info info;
Dave Peterson537fba22006-03-26 01:38:40 -0800180 debugf3("%s()\n", __func__);
Alan Cox806c35f2006-01-18 17:44:08 -0800181 amd76x_get_error_info(mci, &info);
182 amd76x_process_error_info(mci, &info, 1);
183}
184
Doug Thompson13189522006-06-30 01:56:08 -0700185static void amd76x_init_csrows(struct mem_ctl_info *mci, struct pci_dev *pdev,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700186 enum edac_type edac_mode)
Alan Cox806c35f2006-01-18 17:44:08 -0800187{
Doug Thompson13189522006-06-30 01:56:08 -0700188 struct csrow_info *csrow;
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300189 struct dimm_info *dimm;
Doug Thompson13189522006-06-30 01:56:08 -0700190 u32 mba, mba_base, mba_mask, dms;
Alan Cox806c35f2006-01-18 17:44:08 -0800191 int index;
Alan Cox806c35f2006-01-18 17:44:08 -0800192
193 for (index = 0; index < mci->nr_csrows; index++) {
Doug Thompson13189522006-06-30 01:56:08 -0700194 csrow = &mci->csrows[index];
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300195 dimm = csrow->channels[0].dimm;
Alan Cox806c35f2006-01-18 17:44:08 -0800196
197 /* find the DRAM Chip Select Base address and mask */
Doug Thompson37f04582006-06-30 01:56:07 -0700198 pci_read_config_dword(pdev,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700199 AMD76X_MEM_BASE_ADDR + (index * 4), &mba);
Alan Cox806c35f2006-01-18 17:44:08 -0800200
201 if (!(mba & BIT(0)))
202 continue;
203
204 mba_base = mba & 0xff800000UL;
205 mba_mask = ((mba & 0xff80) << 16) | 0x7fffffUL;
Doug Thompson37f04582006-06-30 01:56:07 -0700206 pci_read_config_dword(pdev, AMD76X_DRAM_MODE_STATUS, &dms);
Alan Cox806c35f2006-01-18 17:44:08 -0800207 csrow->first_page = mba_base >> PAGE_SHIFT;
208 csrow->nr_pages = (mba_mask + 1) >> PAGE_SHIFT;
209 csrow->last_page = csrow->first_page + csrow->nr_pages - 1;
210 csrow->page_mask = mba_mask >> PAGE_SHIFT;
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300211 dimm->grain = csrow->nr_pages << PAGE_SHIFT;
212 dimm->mtype = MEM_RDDR;
213 dimm->dtype = ((dms >> index) & 0x1) ? DEV_X4 : DEV_UNKNOWN;
214 dimm->edac_mode = edac_mode;
Doug Thompson13189522006-06-30 01:56:08 -0700215 }
216}
217
218/**
219 * amd76x_probe1 - Perform set up for detected device
220 * @pdev; PCI device detected
221 * @dev_idx: Device type index
222 *
223 * We have found an AMD76x and now need to set up the memory
224 * controller status reporting. We configure and set up the
225 * memory controller reporting and claim the device.
226 */
227static int amd76x_probe1(struct pci_dev *pdev, int dev_idx)
228{
229 static const enum edac_type ems_modes[] = {
230 EDAC_NONE,
231 EDAC_EC,
232 EDAC_SECDED,
233 EDAC_SECDED
234 };
235 struct mem_ctl_info *mci = NULL;
236 u32 ems;
237 u32 ems_mode;
238 struct amd76x_error_info discard;
239
240 debugf0("%s()\n", __func__);
241 pci_read_config_dword(pdev, AMD76X_ECC_MODE_STATUS, &ems);
242 ems_mode = (ems >> 10) & 0x3;
Doug Thompsonb8f6f972007-07-19 01:50:26 -0700243 mci = edac_mc_alloc(0, AMD76X_NR_CSROWS, AMD76X_NR_CHANS, 0);
Doug Thompson13189522006-06-30 01:56:08 -0700244
245 if (mci == NULL) {
246 return -ENOMEM;
Alan Cox806c35f2006-01-18 17:44:08 -0800247 }
248
Doug Thompson13189522006-06-30 01:56:08 -0700249 debugf0("%s(): mci = %p\n", __func__, mci);
250 mci->dev = &pdev->dev;
251 mci->mtype_cap = MEM_FLAG_RDDR;
252 mci->edac_ctl_cap = EDAC_FLAG_NONE | EDAC_FLAG_EC | EDAC_FLAG_SECDED;
253 mci->edac_cap = ems_mode ?
Douglas Thompson052dfb42007-07-19 01:50:13 -0700254 (EDAC_FLAG_EC | EDAC_FLAG_SECDED) : EDAC_FLAG_NONE;
Doug Thompson13189522006-06-30 01:56:08 -0700255 mci->mod_name = EDAC_MOD_STR;
256 mci->mod_ver = AMD76X_REVISION;
257 mci->ctl_name = amd76x_devs[dev_idx].ctl_name;
Dave Jiangc4192702007-07-19 01:49:47 -0700258 mci->dev_name = pci_name(pdev);
Doug Thompson13189522006-06-30 01:56:08 -0700259 mci->edac_check = amd76x_check;
260 mci->ctl_page_to_phys = NULL;
261
262 amd76x_init_csrows(mci, pdev, ems_modes[ems_mode]);
Douglas Thompson67cb2b62007-07-19 01:50:02 -0700263 amd76x_get_error_info(mci, &discard); /* clear counters */
Alan Cox806c35f2006-01-18 17:44:08 -0800264
Doug Thompson2d7bbb92006-06-30 01:56:08 -0700265 /* Here we assume that we will never see multiple instances of this
266 * type of memory controller. The ID is therefore hardcoded to 0.
267 */
Doug Thompsonb8f6f972007-07-19 01:50:26 -0700268 if (edac_mc_add_mc(mci)) {
Dave Peterson537fba22006-03-26 01:38:40 -0800269 debugf3("%s(): failed edac_mc_add_mc()\n", __func__);
Alan Cox806c35f2006-01-18 17:44:08 -0800270 goto fail;
271 }
272
Dave Jiang456a2f92007-07-19 01:50:10 -0700273 /* allocating generic PCI control info */
274 amd76x_pci = edac_pci_create_generic_ctl(&pdev->dev, EDAC_MOD_STR);
275 if (!amd76x_pci) {
276 printk(KERN_WARNING
277 "%s(): Unable to create PCI control\n",
278 __func__);
279 printk(KERN_WARNING
280 "%s(): PCI error report via EDAC not setup\n",
281 __func__);
282 }
283
Alan Cox806c35f2006-01-18 17:44:08 -0800284 /* get this far and it's successful */
Dave Peterson537fba22006-03-26 01:38:40 -0800285 debugf3("%s(): success\n", __func__);
Alan Cox806c35f2006-01-18 17:44:08 -0800286 return 0;
287
Douglas Thompson052dfb42007-07-19 01:50:13 -0700288fail:
Doug Thompson13189522006-06-30 01:56:08 -0700289 edac_mc_free(mci);
290 return -ENODEV;
Alan Cox806c35f2006-01-18 17:44:08 -0800291}
292
293/* returns count (>= 0), or negative on error */
294static int __devinit amd76x_init_one(struct pci_dev *pdev,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700295 const struct pci_device_id *ent)
Alan Cox806c35f2006-01-18 17:44:08 -0800296{
Dave Peterson537fba22006-03-26 01:38:40 -0800297 debugf0("%s()\n", __func__);
Alan Cox806c35f2006-01-18 17:44:08 -0800298
Roman Fietzeee6583f2010-05-18 14:45:47 +0200299 /* don't need to call pci_enable_device() */
Alan Cox806c35f2006-01-18 17:44:08 -0800300 return amd76x_probe1(pdev, ent->driver_data);
301}
302
Alan Cox806c35f2006-01-18 17:44:08 -0800303/**
304 * amd76x_remove_one - driver shutdown
305 * @pdev: PCI device being handed back
306 *
307 * Called when the driver is unloaded. Find the matching mci
308 * structure for the device then delete the mci and free the
309 * resources.
310 */
Alan Cox806c35f2006-01-18 17:44:08 -0800311static void __devexit amd76x_remove_one(struct pci_dev *pdev)
312{
313 struct mem_ctl_info *mci;
314
Dave Peterson537fba22006-03-26 01:38:40 -0800315 debugf0("%s()\n", __func__);
Alan Cox806c35f2006-01-18 17:44:08 -0800316
Dave Jiang456a2f92007-07-19 01:50:10 -0700317 if (amd76x_pci)
318 edac_pci_release_generic_ctl(amd76x_pci);
319
Doug Thompson37f04582006-06-30 01:56:07 -0700320 if ((mci = edac_mc_del_mc(&pdev->dev)) == NULL)
Alan Cox806c35f2006-01-18 17:44:08 -0800321 return;
Dave Peterson18dbc332006-03-26 01:38:50 -0800322
Alan Cox806c35f2006-01-18 17:44:08 -0800323 edac_mc_free(mci);
324}
325
Lionel Debroux36c46f32012-02-27 07:41:47 +0100326static DEFINE_PCI_DEVICE_TABLE(amd76x_pci_tbl) = {
Dave Petersone7ecd892006-03-26 01:38:52 -0800327 {
Douglas Thompson67cb2b62007-07-19 01:50:02 -0700328 PCI_VEND_DEV(AMD, FE_GATE_700C), PCI_ANY_ID, PCI_ANY_ID, 0, 0,
329 AMD762},
Dave Petersone7ecd892006-03-26 01:38:52 -0800330 {
Douglas Thompson67cb2b62007-07-19 01:50:02 -0700331 PCI_VEND_DEV(AMD, FE_GATE_700E), PCI_ANY_ID, PCI_ANY_ID, 0, 0,
332 AMD761},
Dave Petersone7ecd892006-03-26 01:38:52 -0800333 {
Douglas Thompson67cb2b62007-07-19 01:50:02 -0700334 0,
335 } /* 0 terminated list. */
Alan Cox806c35f2006-01-18 17:44:08 -0800336};
337
338MODULE_DEVICE_TABLE(pci, amd76x_pci_tbl);
339
Alan Cox806c35f2006-01-18 17:44:08 -0800340static struct pci_driver amd76x_driver = {
Dave Peterson680cbbb2006-03-26 01:38:41 -0800341 .name = EDAC_MOD_STR,
Alan Cox806c35f2006-01-18 17:44:08 -0800342 .probe = amd76x_init_one,
343 .remove = __devexit_p(amd76x_remove_one),
344 .id_table = amd76x_pci_tbl,
345};
346
Alan Coxda9bb1d2006-01-18 17:44:13 -0800347static int __init amd76x_init(void)
Alan Cox806c35f2006-01-18 17:44:08 -0800348{
Hitoshi Mitakec3c52bc2008-04-29 01:03:18 -0700349 /* Ensure that the OPSTATE is set correctly for POLL or NMI */
350 opstate_init();
351
Alan Cox806c35f2006-01-18 17:44:08 -0800352 return pci_register_driver(&amd76x_driver);
353}
354
355static void __exit amd76x_exit(void)
356{
357 pci_unregister_driver(&amd76x_driver);
358}
359
360module_init(amd76x_init);
361module_exit(amd76x_exit);
362
363MODULE_LICENSE("GPL");
364MODULE_AUTHOR("Linux Networx (http://lnxi.com) Thayne Harbaugh");
365MODULE_DESCRIPTION("MC support for AMD 76x memory controllers");
Hitoshi Mitakec3c52bc2008-04-29 01:03:18 -0700366
367module_param(edac_op_state, int, 0444);
368MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI");