blob: 2a49f68a7cf94061259a2511f272bfc2f1966797 [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>
Mauro Carvalho Chehab78d88e82016-10-29 15:16:34 -020020#include "edac_module.h"
Alan Cox806c35f2006-01-18 17:44:08 -080021
Doug Thompson929a40e2006-07-01 04:35:45 -070022#define EDAC_MOD_STR "amd76x_edac"
Doug Thompson37f04582006-06-30 01:56:07 -070023
Dave Peterson537fba22006-03-26 01:38:40 -080024#define amd76x_printk(level, fmt, arg...) \
Dave Petersone7ecd892006-03-26 01:38:52 -080025 edac_printk(level, "amd76x", fmt, ##arg)
Dave Peterson537fba22006-03-26 01:38:40 -080026
27#define amd76x_mc_printk(mci, level, fmt, arg...) \
Dave Petersone7ecd892006-03-26 01:38:52 -080028 edac_mc_chipset_printk(mci, level, "amd76x", fmt, ##arg)
Dave Peterson537fba22006-03-26 01:38:40 -080029
Alan Cox806c35f2006-01-18 17:44:08 -080030#define AMD76X_NR_CSROWS 8
Alan Cox806c35f2006-01-18 17:44:08 -080031#define AMD76X_NR_DIMMS 4
32
Alan Cox806c35f2006-01-18 17:44:08 -080033/* AMD 76x register addresses - device 0 function 0 - PCI bridge */
Dave Petersone7ecd892006-03-26 01:38:52 -080034
Alan Cox806c35f2006-01-18 17:44:08 -080035#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 Petersone7ecd892006-03-26 01:38:52 -080046
Alan Cox806c35f2006-01-18 17:44:08 -080047#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 Petersone7ecd892006-03-26 01:38:52 -080061
Alan Cox806c35f2006-01-18 17:44:08 -080062#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 Cox806c35f2006-01-18 17:44:08 -080072struct amd76x_error_info {
73 u32 ecc_mode_status;
74};
75
Alan Cox806c35f2006-01-18 17:44:08 -080076enum amd76x_chips {
77 AMD761 = 0,
78 AMD762
79};
80
Alan Cox806c35f2006-01-18 17:44:08 -080081struct amd76x_dev_info {
82 const char *ctl_name;
83};
84
Alan Cox806c35f2006-01-18 17:44:08 -080085static const struct amd76x_dev_info amd76x_devs[] = {
Dave Petersone7ecd892006-03-26 01:38:52 -080086 [AMD761] = {
Douglas Thompson052dfb42007-07-19 01:50:13 -070087 .ctl_name = "AMD761"},
Dave Petersone7ecd892006-03-26 01:38:52 -080088 [AMD762] = {
Douglas Thompson052dfb42007-07-19 01:50:13 -070089 .ctl_name = "AMD762"},
Alan Cox806c35f2006-01-18 17:44:08 -080090};
91
Dave Jiang456a2f92007-07-19 01:50:10 -070092static struct edac_pci_ctl_info *amd76x_pci;
93
Alan Cox806c35f2006-01-18 17:44:08 -080094/**
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 Petersone7ecd892006-03-26 01:38:52 -0800102static void amd76x_get_error_info(struct mem_ctl_info *mci,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700103 struct amd76x_error_info *info)
Alan Cox806c35f2006-01-18 17:44:08 -0800104{
Doug Thompson37f04582006-06-30 01:56:07 -0700105 struct pci_dev *pdev;
106
Mauro Carvalho Chehabfd687502012-03-16 07:44:18 -0300107 pdev = to_pci_dev(mci->pdev);
Doug Thompson37f04582006-06-30 01:56:07 -0700108 pci_read_config_dword(pdev, AMD76X_ECC_MODE_STATUS,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700109 &info->ecc_mode_status);
Alan Cox806c35f2006-01-18 17:44:08 -0800110
111 if (info->ecc_mode_status & BIT(8))
Doug Thompson37f04582006-06-30 01:56:07 -0700112 pci_write_bits32(pdev, AMD76X_ECC_MODE_STATUS,
Douglas Thompson67cb2b62007-07-19 01:50:02 -0700113 (u32) BIT(8), (u32) BIT(8));
Alan Cox806c35f2006-01-18 17:44:08 -0800114
115 if (info->ecc_mode_status & BIT(9))
Doug Thompson37f04582006-06-30 01:56:07 -0700116 pci_write_bits32(pdev, AMD76X_ECC_MODE_STATUS,
Douglas Thompson67cb2b62007-07-19 01:50:02 -0700117 (u32) BIT(9), (u32) BIT(9));
Alan Cox806c35f2006-01-18 17:44:08 -0800118}
119
Alan Cox806c35f2006-01-18 17:44:08 -0800120/**
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 Petersone7ecd892006-03-26 01:38:52 -0800130static int amd76x_process_error_info(struct mem_ctl_info *mci,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700131 struct amd76x_error_info *info,
132 int handle_errors)
Alan Cox806c35f2006-01-18 17:44:08 -0800133{
134 int error_found;
135 u32 row;
136
137 error_found = 0;
138
139 /*
Douglas Thompson67cb2b62007-07-19 01:50:02 -0700140 * Check for an uncorrectable error
Alan Cox806c35f2006-01-18 17:44:08 -0800141 */
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 Chehab9eb07a72012-06-04 13:27:43 -0300147 edac_mc_handle_error(HW_EVENT_ERR_UNCORRECTED, mci, 1,
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300148 mci->csrows[row]->first_page, 0, 0,
Mauro Carvalho Chehabd8c34af2012-04-16 15:05:27 -0300149 row, 0, -1,
Mauro Carvalho Chehab03f7eae2012-06-04 11:29:25 -0300150 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;
Mauro Carvalho Chehab9eb07a72012-06-04 13:27:43 -0300162 edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, 1,
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300163 mci->csrows[row]->first_page, 0, 0,
Mauro Carvalho Chehabd8c34af2012-04-16 15:05:27 -0300164 row, 0, -1,
Mauro Carvalho Chehab03f7eae2012-06-04 11:29:25 -0300165 mci->ctl_name, "");
Alan Cox806c35f2006-01-18 17:44:08 -0800166 }
167 }
Dave Petersone7ecd892006-03-26 01:38:52 -0800168
Alan Cox806c35f2006-01-18 17:44:08 -0800169 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 Cox806c35f2006-01-18 17:44:08 -0800179static void amd76x_check(struct mem_ctl_info *mci)
180{
181 struct amd76x_error_info info;
Alan Cox806c35f2006-01-18 17:44:08 -0800182 amd76x_get_error_info(mci, &info);
183 amd76x_process_error_info(mci, &info, 1);
184}
185
Doug Thompson13189522006-06-30 01:56:08 -0700186static void amd76x_init_csrows(struct mem_ctl_info *mci, struct pci_dev *pdev,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700187 enum edac_type edac_mode)
Alan Cox806c35f2006-01-18 17:44:08 -0800188{
Doug Thompson13189522006-06-30 01:56:08 -0700189 struct csrow_info *csrow;
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300190 struct dimm_info *dimm;
Doug Thompson13189522006-06-30 01:56:08 -0700191 u32 mba, mba_base, mba_mask, dms;
Alan Cox806c35f2006-01-18 17:44:08 -0800192 int index;
Alan Cox806c35f2006-01-18 17:44:08 -0800193
194 for (index = 0; index < mci->nr_csrows; index++) {
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300195 csrow = mci->csrows[index];
196 dimm = csrow->channels[0]->dimm;
Alan Cox806c35f2006-01-18 17:44:08 -0800197
198 /* find the DRAM Chip Select Base address and mask */
Doug Thompson37f04582006-06-30 01:56:07 -0700199 pci_read_config_dword(pdev,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700200 AMD76X_MEM_BASE_ADDR + (index * 4), &mba);
Alan Cox806c35f2006-01-18 17:44:08 -0800201
202 if (!(mba & BIT(0)))
203 continue;
204
205 mba_base = mba & 0xff800000UL;
206 mba_mask = ((mba & 0xff80) << 16) | 0x7fffffUL;
Doug Thompson37f04582006-06-30 01:56:07 -0700207 pci_read_config_dword(pdev, AMD76X_DRAM_MODE_STATUS, &dms);
Alan Cox806c35f2006-01-18 17:44:08 -0800208 csrow->first_page = mba_base >> PAGE_SHIFT;
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300209 dimm->nr_pages = (mba_mask + 1) >> PAGE_SHIFT;
210 csrow->last_page = csrow->first_page + dimm->nr_pages - 1;
Alan Cox806c35f2006-01-18 17:44:08 -0800211 csrow->page_mask = mba_mask >> PAGE_SHIFT;
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300212 dimm->grain = dimm->nr_pages << PAGE_SHIFT;
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300213 dimm->mtype = MEM_RDDR;
214 dimm->dtype = ((dms >> index) & 0x1) ? DEV_X4 : DEV_UNKNOWN;
215 dimm->edac_mode = edac_mode;
Doug Thompson13189522006-06-30 01:56:08 -0700216 }
217}
218
219/**
220 * amd76x_probe1 - Perform set up for detected device
221 * @pdev; PCI device detected
222 * @dev_idx: Device type index
223 *
224 * We have found an AMD76x and now need to set up the memory
225 * controller status reporting. We configure and set up the
226 * memory controller reporting and claim the device.
227 */
228static int amd76x_probe1(struct pci_dev *pdev, int dev_idx)
229{
230 static const enum edac_type ems_modes[] = {
231 EDAC_NONE,
232 EDAC_EC,
233 EDAC_SECDED,
234 EDAC_SECDED
235 };
Mauro Carvalho Chehabd8c34af2012-04-16 15:05:27 -0300236 struct mem_ctl_info *mci;
237 struct edac_mc_layer layers[2];
Doug Thompson13189522006-06-30 01:56:08 -0700238 u32 ems;
239 u32 ems_mode;
240 struct amd76x_error_info discard;
241
Joe Perches956b9ba12012-04-29 17:08:39 -0300242 edac_dbg(0, "\n");
Doug Thompson13189522006-06-30 01:56:08 -0700243 pci_read_config_dword(pdev, AMD76X_ECC_MODE_STATUS, &ems);
244 ems_mode = (ems >> 10) & 0x3;
Doug Thompson13189522006-06-30 01:56:08 -0700245
Mauro Carvalho Chehabd8c34af2012-04-16 15:05:27 -0300246 layers[0].type = EDAC_MC_LAYER_CHIP_SELECT;
247 layers[0].size = AMD76X_NR_CSROWS;
248 layers[0].is_virt_csrow = true;
249 layers[1].type = EDAC_MC_LAYER_CHANNEL;
250 layers[1].size = 1;
251 layers[1].is_virt_csrow = false;
Mauro Carvalho Chehabca0907b2012-05-02 14:37:00 -0300252 mci = edac_mc_alloc(0, ARRAY_SIZE(layers), layers, 0);
Mauro Carvalho Chehabd8c34af2012-04-16 15:05:27 -0300253
254 if (mci == NULL)
Doug Thompson13189522006-06-30 01:56:08 -0700255 return -ENOMEM;
Alan Cox806c35f2006-01-18 17:44:08 -0800256
Joe Perches956b9ba12012-04-29 17:08:39 -0300257 edac_dbg(0, "mci = %p\n", mci);
Mauro Carvalho Chehabfd687502012-03-16 07:44:18 -0300258 mci->pdev = &pdev->dev;
Doug Thompson13189522006-06-30 01:56:08 -0700259 mci->mtype_cap = MEM_FLAG_RDDR;
260 mci->edac_ctl_cap = EDAC_FLAG_NONE | EDAC_FLAG_EC | EDAC_FLAG_SECDED;
261 mci->edac_cap = ems_mode ?
Douglas Thompson052dfb42007-07-19 01:50:13 -0700262 (EDAC_FLAG_EC | EDAC_FLAG_SECDED) : EDAC_FLAG_NONE;
Doug Thompson13189522006-06-30 01:56:08 -0700263 mci->mod_name = EDAC_MOD_STR;
Doug Thompson13189522006-06-30 01:56:08 -0700264 mci->ctl_name = amd76x_devs[dev_idx].ctl_name;
Dave Jiangc4192702007-07-19 01:49:47 -0700265 mci->dev_name = pci_name(pdev);
Doug Thompson13189522006-06-30 01:56:08 -0700266 mci->edac_check = amd76x_check;
267 mci->ctl_page_to_phys = NULL;
268
269 amd76x_init_csrows(mci, pdev, ems_modes[ems_mode]);
Douglas Thompson67cb2b62007-07-19 01:50:02 -0700270 amd76x_get_error_info(mci, &discard); /* clear counters */
Alan Cox806c35f2006-01-18 17:44:08 -0800271
Doug Thompson2d7bbb92006-06-30 01:56:08 -0700272 /* Here we assume that we will never see multiple instances of this
273 * type of memory controller. The ID is therefore hardcoded to 0.
274 */
Doug Thompsonb8f6f972007-07-19 01:50:26 -0700275 if (edac_mc_add_mc(mci)) {
Joe Perches956b9ba12012-04-29 17:08:39 -0300276 edac_dbg(3, "failed edac_mc_add_mc()\n");
Alan Cox806c35f2006-01-18 17:44:08 -0800277 goto fail;
278 }
279
Dave Jiang456a2f92007-07-19 01:50:10 -0700280 /* allocating generic PCI control info */
281 amd76x_pci = edac_pci_create_generic_ctl(&pdev->dev, EDAC_MOD_STR);
282 if (!amd76x_pci) {
283 printk(KERN_WARNING
284 "%s(): Unable to create PCI control\n",
285 __func__);
286 printk(KERN_WARNING
287 "%s(): PCI error report via EDAC not setup\n",
288 __func__);
289 }
290
Alan Cox806c35f2006-01-18 17:44:08 -0800291 /* get this far and it's successful */
Joe Perches956b9ba12012-04-29 17:08:39 -0300292 edac_dbg(3, "success\n");
Alan Cox806c35f2006-01-18 17:44:08 -0800293 return 0;
294
Douglas Thompson052dfb42007-07-19 01:50:13 -0700295fail:
Doug Thompson13189522006-06-30 01:56:08 -0700296 edac_mc_free(mci);
297 return -ENODEV;
Alan Cox806c35f2006-01-18 17:44:08 -0800298}
299
300/* returns count (>= 0), or negative on error */
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800301static int amd76x_init_one(struct pci_dev *pdev,
302 const struct pci_device_id *ent)
Alan Cox806c35f2006-01-18 17:44:08 -0800303{
Joe Perches956b9ba12012-04-29 17:08:39 -0300304 edac_dbg(0, "\n");
Alan Cox806c35f2006-01-18 17:44:08 -0800305
Roman Fietzeee6583f2010-05-18 14:45:47 +0200306 /* don't need to call pci_enable_device() */
Alan Cox806c35f2006-01-18 17:44:08 -0800307 return amd76x_probe1(pdev, ent->driver_data);
308}
309
Alan Cox806c35f2006-01-18 17:44:08 -0800310/**
311 * amd76x_remove_one - driver shutdown
312 * @pdev: PCI device being handed back
313 *
314 * Called when the driver is unloaded. Find the matching mci
315 * structure for the device then delete the mci and free the
316 * resources.
317 */
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800318static void amd76x_remove_one(struct pci_dev *pdev)
Alan Cox806c35f2006-01-18 17:44:08 -0800319{
320 struct mem_ctl_info *mci;
321
Joe Perches956b9ba12012-04-29 17:08:39 -0300322 edac_dbg(0, "\n");
Alan Cox806c35f2006-01-18 17:44:08 -0800323
Dave Jiang456a2f92007-07-19 01:50:10 -0700324 if (amd76x_pci)
325 edac_pci_release_generic_ctl(amd76x_pci);
326
Doug Thompson37f04582006-06-30 01:56:07 -0700327 if ((mci = edac_mc_del_mc(&pdev->dev)) == NULL)
Alan Cox806c35f2006-01-18 17:44:08 -0800328 return;
Dave Peterson18dbc332006-03-26 01:38:50 -0800329
Alan Cox806c35f2006-01-18 17:44:08 -0800330 edac_mc_free(mci);
331}
332
Jingoo Hanba935f42013-12-06 10:23:08 +0100333static const struct pci_device_id amd76x_pci_tbl[] = {
Dave Petersone7ecd892006-03-26 01:38:52 -0800334 {
Douglas Thompson67cb2b62007-07-19 01:50:02 -0700335 PCI_VEND_DEV(AMD, FE_GATE_700C), PCI_ANY_ID, PCI_ANY_ID, 0, 0,
336 AMD762},
Dave Petersone7ecd892006-03-26 01:38:52 -0800337 {
Douglas Thompson67cb2b62007-07-19 01:50:02 -0700338 PCI_VEND_DEV(AMD, FE_GATE_700E), PCI_ANY_ID, PCI_ANY_ID, 0, 0,
339 AMD761},
Dave Petersone7ecd892006-03-26 01:38:52 -0800340 {
Douglas Thompson67cb2b62007-07-19 01:50:02 -0700341 0,
342 } /* 0 terminated list. */
Alan Cox806c35f2006-01-18 17:44:08 -0800343};
344
345MODULE_DEVICE_TABLE(pci, amd76x_pci_tbl);
346
Alan Cox806c35f2006-01-18 17:44:08 -0800347static struct pci_driver amd76x_driver = {
Dave Peterson680cbbb2006-03-26 01:38:41 -0800348 .name = EDAC_MOD_STR,
Alan Cox806c35f2006-01-18 17:44:08 -0800349 .probe = amd76x_init_one,
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800350 .remove = amd76x_remove_one,
Alan Cox806c35f2006-01-18 17:44:08 -0800351 .id_table = amd76x_pci_tbl,
352};
353
Alan Coxda9bb1d2006-01-18 17:44:13 -0800354static int __init amd76x_init(void)
Alan Cox806c35f2006-01-18 17:44:08 -0800355{
Hitoshi Mitakec3c52bc2008-04-29 01:03:18 -0700356 /* Ensure that the OPSTATE is set correctly for POLL or NMI */
357 opstate_init();
358
Alan Cox806c35f2006-01-18 17:44:08 -0800359 return pci_register_driver(&amd76x_driver);
360}
361
362static void __exit amd76x_exit(void)
363{
364 pci_unregister_driver(&amd76x_driver);
365}
366
367module_init(amd76x_init);
368module_exit(amd76x_exit);
369
370MODULE_LICENSE("GPL");
371MODULE_AUTHOR("Linux Networx (http://lnxi.com) Thayne Harbaugh");
372MODULE_DESCRIPTION("MC support for AMD 76x memory controllers");
Hitoshi Mitakec3c52bc2008-04-29 01:03:18 -0700373
374module_param(edac_op_state, int, 0444);
375MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI");