blob: 303cb500b377707ee95200a7023d31b7a03c60d6 [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/config.h>
16#include <linux/module.h>
17#include <linux/init.h>
Alan Cox806c35f2006-01-18 17:44:08 -080018#include <linux/pci.h>
19#include <linux/pci_ids.h>
Alan Cox806c35f2006-01-18 17:44:08 -080020#include <linux/slab.h>
Alan Cox806c35f2006-01-18 17:44:08 -080021#include "edac_mc.h"
22
Doug Thompson37f04582006-06-30 01:56:07 -070023#define AMD76X_REVISION " Ver: 2.0.0 " __DATE__
24
25
Dave Peterson537fba22006-03-26 01:38:40 -080026#define amd76x_printk(level, fmt, arg...) \
Dave Petersone7ecd892006-03-26 01:38:52 -080027 edac_printk(level, "amd76x", fmt, ##arg)
Dave Peterson537fba22006-03-26 01:38:40 -080028
29#define amd76x_mc_printk(mci, level, fmt, arg...) \
Dave Petersone7ecd892006-03-26 01:38:52 -080030 edac_mc_chipset_printk(mci, level, "amd76x", fmt, ##arg)
Dave Peterson537fba22006-03-26 01:38:40 -080031
Alan Cox806c35f2006-01-18 17:44:08 -080032#define AMD76X_NR_CSROWS 8
33#define AMD76X_NR_CHANS 1
34#define AMD76X_NR_DIMMS 4
35
Alan Cox806c35f2006-01-18 17:44:08 -080036/* AMD 76x register addresses - device 0 function 0 - PCI bridge */
Dave Petersone7ecd892006-03-26 01:38:52 -080037
Alan Cox806c35f2006-01-18 17:44:08 -080038#define AMD76X_ECC_MODE_STATUS 0x48 /* Mode and status of ECC (32b)
39 *
40 * 31:16 reserved
41 * 15:14 SERR enabled: x1=ue 1x=ce
42 * 13 reserved
43 * 12 diag: disabled, enabled
44 * 11:10 mode: dis, EC, ECC, ECC+scrub
45 * 9:8 status: x1=ue 1x=ce
46 * 7:4 UE cs row
47 * 3:0 CE cs row
48 */
Dave Petersone7ecd892006-03-26 01:38:52 -080049
Alan Cox806c35f2006-01-18 17:44:08 -080050#define AMD76X_DRAM_MODE_STATUS 0x58 /* DRAM Mode and status (32b)
51 *
52 * 31:26 clock disable 5 - 0
53 * 25 SDRAM init
54 * 24 reserved
55 * 23 mode register service
56 * 22:21 suspend to RAM
57 * 20 burst refresh enable
58 * 19 refresh disable
59 * 18 reserved
60 * 17:16 cycles-per-refresh
61 * 15:8 reserved
62 * 7:0 x4 mode enable 7 - 0
63 */
Dave Petersone7ecd892006-03-26 01:38:52 -080064
Alan Cox806c35f2006-01-18 17:44:08 -080065#define AMD76X_MEM_BASE_ADDR 0xC0 /* Memory base address (8 x 32b)
66 *
67 * 31:23 chip-select base
68 * 22:16 reserved
69 * 15:7 chip-select mask
70 * 6:3 reserved
71 * 2:1 address mode
72 * 0 chip-select enable
73 */
74
Alan Cox806c35f2006-01-18 17:44:08 -080075struct amd76x_error_info {
76 u32 ecc_mode_status;
77};
78
Alan Cox806c35f2006-01-18 17:44:08 -080079enum amd76x_chips {
80 AMD761 = 0,
81 AMD762
82};
83
Alan Cox806c35f2006-01-18 17:44:08 -080084struct amd76x_dev_info {
85 const char *ctl_name;
86};
87
Alan Cox806c35f2006-01-18 17:44:08 -080088static const struct amd76x_dev_info amd76x_devs[] = {
Dave Petersone7ecd892006-03-26 01:38:52 -080089 [AMD761] = {
90 .ctl_name = "AMD761"
91 },
92 [AMD762] = {
93 .ctl_name = "AMD762"
94 },
Alan Cox806c35f2006-01-18 17:44:08 -080095};
96
Alan Cox806c35f2006-01-18 17:44:08 -080097/**
98 * amd76x_get_error_info - fetch error information
99 * @mci: Memory controller
100 * @info: Info to fill in
101 *
102 * Fetch and store the AMD76x ECC status. Clear pending status
103 * on the chip so that further errors will be reported
104 */
Dave Petersone7ecd892006-03-26 01:38:52 -0800105static void amd76x_get_error_info(struct mem_ctl_info *mci,
106 struct amd76x_error_info *info)
Alan Cox806c35f2006-01-18 17:44:08 -0800107{
Doug Thompson37f04582006-06-30 01:56:07 -0700108 struct pci_dev *pdev;
109
110 pdev = to_pci_dev(mci->dev);
111 pci_read_config_dword(pdev, AMD76X_ECC_MODE_STATUS,
Alan Cox806c35f2006-01-18 17:44:08 -0800112 &info->ecc_mode_status);
113
114 if (info->ecc_mode_status & BIT(8))
Doug Thompson37f04582006-06-30 01:56:07 -0700115 pci_write_bits32(pdev, AMD76X_ECC_MODE_STATUS,
Dave Petersone7ecd892006-03-26 01:38:52 -0800116 (u32) BIT(8), (u32) BIT(8));
Alan Cox806c35f2006-01-18 17:44:08 -0800117
118 if (info->ecc_mode_status & BIT(9))
Doug Thompson37f04582006-06-30 01:56:07 -0700119 pci_write_bits32(pdev, AMD76X_ECC_MODE_STATUS,
Dave Petersone7ecd892006-03-26 01:38:52 -0800120 (u32) BIT(9), (u32) BIT(9));
Alan Cox806c35f2006-01-18 17:44:08 -0800121}
122
Alan Cox806c35f2006-01-18 17:44:08 -0800123/**
124 * amd76x_process_error_info - Error check
125 * @mci: Memory controller
126 * @info: Previously fetched information from chip
127 * @handle_errors: 1 if we should do recovery
128 *
129 * Process the chip state and decide if an error has occurred.
130 * A return of 1 indicates an error. Also if handle_errors is true
131 * then attempt to handle and clean up after the error
132 */
Dave Petersone7ecd892006-03-26 01:38:52 -0800133static int amd76x_process_error_info(struct mem_ctl_info *mci,
Alan Cox806c35f2006-01-18 17:44:08 -0800134 struct amd76x_error_info *info, int handle_errors)
135{
136 int error_found;
137 u32 row;
138
139 error_found = 0;
140
141 /*
142 * Check for an uncorrectable error
143 */
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,
150 row, mci->ctl_name);
Alan Cox806c35f2006-01-18 17:44:08 -0800151 }
152 }
153
154 /*
155 * Check for a correctable error
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;
Dave Petersone7ecd892006-03-26 01:38:52 -0800162 edac_mc_handle_ce(mci, mci->csrows[row].first_page, 0,
163 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
Alan Cox806c35f2006-01-18 17:44:08 -0800185/**
186 * amd76x_probe1 - Perform set up for detected device
187 * @pdev; PCI device detected
188 * @dev_idx: Device type index
189 *
190 * We have found an AMD76x and now need to set up the memory
191 * controller status reporting. We configure and set up the
192 * memory controller reporting and claim the device.
193 */
Alan Cox806c35f2006-01-18 17:44:08 -0800194static int amd76x_probe1(struct pci_dev *pdev, int dev_idx)
195{
196 int rc = -ENODEV;
197 int index;
198 struct mem_ctl_info *mci = NULL;
199 enum edac_type ems_modes[] = {
200 EDAC_NONE,
201 EDAC_EC,
202 EDAC_SECDED,
203 EDAC_SECDED
204 };
205 u32 ems;
206 u32 ems_mode;
Dave Peterson749ede52006-03-26 01:38:45 -0800207 struct amd76x_error_info discard;
Alan Cox806c35f2006-01-18 17:44:08 -0800208
Dave Peterson537fba22006-03-26 01:38:40 -0800209 debugf0("%s()\n", __func__);
Alan Cox806c35f2006-01-18 17:44:08 -0800210 pci_read_config_dword(pdev, AMD76X_ECC_MODE_STATUS, &ems);
211 ems_mode = (ems >> 10) & 0x3;
Alan Cox806c35f2006-01-18 17:44:08 -0800212 mci = edac_mc_alloc(0, AMD76X_NR_CSROWS, AMD76X_NR_CHANS);
213
214 if (mci == NULL) {
215 rc = -ENOMEM;
216 goto fail;
217 }
218
Dave Peterson537fba22006-03-26 01:38:40 -0800219 debugf0("%s(): mci = %p\n", __func__, mci);
Doug Thompson37f04582006-06-30 01:56:07 -0700220 mci->dev = &pdev->dev;
Alan Cox806c35f2006-01-18 17:44:08 -0800221 mci->mtype_cap = MEM_FLAG_RDDR;
Alan Cox806c35f2006-01-18 17:44:08 -0800222 mci->edac_ctl_cap = EDAC_FLAG_NONE | EDAC_FLAG_EC | EDAC_FLAG_SECDED;
223 mci->edac_cap = ems_mode ?
Dave Petersone7ecd892006-03-26 01:38:52 -0800224 (EDAC_FLAG_EC | EDAC_FLAG_SECDED) : EDAC_FLAG_NONE;
Dave Peterson680cbbb2006-03-26 01:38:41 -0800225 mci->mod_name = EDAC_MOD_STR;
Doug Thompson37f04582006-06-30 01:56:07 -0700226 mci->mod_ver = AMD76X_REVISION;
Alan Cox806c35f2006-01-18 17:44:08 -0800227 mci->ctl_name = amd76x_devs[dev_idx].ctl_name;
228 mci->edac_check = amd76x_check;
229 mci->ctl_page_to_phys = NULL;
230
231 for (index = 0; index < mci->nr_csrows; index++) {
232 struct csrow_info *csrow = &mci->csrows[index];
233 u32 mba;
234 u32 mba_base;
235 u32 mba_mask;
236 u32 dms;
237
238 /* find the DRAM Chip Select Base address and mask */
Doug Thompson37f04582006-06-30 01:56:07 -0700239 pci_read_config_dword(pdev,
Dave Petersone7ecd892006-03-26 01:38:52 -0800240 AMD76X_MEM_BASE_ADDR + (index * 4), &mba);
Alan Cox806c35f2006-01-18 17:44:08 -0800241
242 if (!(mba & BIT(0)))
243 continue;
244
245 mba_base = mba & 0xff800000UL;
246 mba_mask = ((mba & 0xff80) << 16) | 0x7fffffUL;
Doug Thompson37f04582006-06-30 01:56:07 -0700247 pci_read_config_dword(pdev, AMD76X_DRAM_MODE_STATUS, &dms);
Alan Cox806c35f2006-01-18 17:44:08 -0800248 csrow->first_page = mba_base >> PAGE_SHIFT;
249 csrow->nr_pages = (mba_mask + 1) >> PAGE_SHIFT;
250 csrow->last_page = csrow->first_page + csrow->nr_pages - 1;
251 csrow->page_mask = mba_mask >> PAGE_SHIFT;
252 csrow->grain = csrow->nr_pages << PAGE_SHIFT;
253 csrow->mtype = MEM_RDDR;
254 csrow->dtype = ((dms >> index) & 0x1) ? DEV_X4 : DEV_UNKNOWN;
255 csrow->edac_mode = ems_modes[ems_mode];
256 }
257
Dave Peterson749ede52006-03-26 01:38:45 -0800258 amd76x_get_error_info(mci, &discard); /* clear counters */
Alan Cox806c35f2006-01-18 17:44:08 -0800259
Doug Thompson2d7bbb92006-06-30 01:56:08 -0700260 /* Here we assume that we will never see multiple instances of this
261 * type of memory controller. The ID is therefore hardcoded to 0.
262 */
263 if (edac_mc_add_mc(mci,0)) {
Dave Peterson537fba22006-03-26 01:38:40 -0800264 debugf3("%s(): failed edac_mc_add_mc()\n", __func__);
Alan Cox806c35f2006-01-18 17:44:08 -0800265 goto fail;
266 }
267
268 /* get this far and it's successful */
Dave Peterson537fba22006-03-26 01:38:40 -0800269 debugf3("%s(): success\n", __func__);
Alan Cox806c35f2006-01-18 17:44:08 -0800270 return 0;
271
272fail:
Dave Peterson225159b2006-03-26 01:38:41 -0800273 if (mci != NULL)
Alan Cox806c35f2006-01-18 17:44:08 -0800274 edac_mc_free(mci);
Alan Cox806c35f2006-01-18 17:44:08 -0800275 return rc;
276}
277
278/* returns count (>= 0), or negative on error */
279static int __devinit amd76x_init_one(struct pci_dev *pdev,
Dave Petersone7ecd892006-03-26 01:38:52 -0800280 const struct pci_device_id *ent)
Alan Cox806c35f2006-01-18 17:44:08 -0800281{
Dave Peterson537fba22006-03-26 01:38:40 -0800282 debugf0("%s()\n", __func__);
Alan Cox806c35f2006-01-18 17:44:08 -0800283
284 /* don't need to call pci_device_enable() */
285 return amd76x_probe1(pdev, ent->driver_data);
286}
287
Alan Cox806c35f2006-01-18 17:44:08 -0800288/**
289 * amd76x_remove_one - driver shutdown
290 * @pdev: PCI device being handed back
291 *
292 * Called when the driver is unloaded. Find the matching mci
293 * structure for the device then delete the mci and free the
294 * resources.
295 */
Alan Cox806c35f2006-01-18 17:44:08 -0800296static void __devexit amd76x_remove_one(struct pci_dev *pdev)
297{
298 struct mem_ctl_info *mci;
299
Dave Peterson537fba22006-03-26 01:38:40 -0800300 debugf0("%s()\n", __func__);
Alan Cox806c35f2006-01-18 17:44:08 -0800301
Doug Thompson37f04582006-06-30 01:56:07 -0700302 if ((mci = edac_mc_del_mc(&pdev->dev)) == NULL)
Alan Cox806c35f2006-01-18 17:44:08 -0800303 return;
Dave Peterson18dbc332006-03-26 01:38:50 -0800304
Alan Cox806c35f2006-01-18 17:44:08 -0800305 edac_mc_free(mci);
306}
307
Alan Cox806c35f2006-01-18 17:44:08 -0800308static const struct pci_device_id amd76x_pci_tbl[] __devinitdata = {
Dave Petersone7ecd892006-03-26 01:38:52 -0800309 {
310 PCI_VEND_DEV(AMD, FE_GATE_700C), PCI_ANY_ID, PCI_ANY_ID, 0, 0,
311 AMD762
312 },
313 {
314 PCI_VEND_DEV(AMD, FE_GATE_700E), PCI_ANY_ID, PCI_ANY_ID, 0, 0,
315 AMD761
316 },
317 {
318 0,
319 } /* 0 terminated list. */
Alan Cox806c35f2006-01-18 17:44:08 -0800320};
321
322MODULE_DEVICE_TABLE(pci, amd76x_pci_tbl);
323
Alan Cox806c35f2006-01-18 17:44:08 -0800324static struct pci_driver amd76x_driver = {
Dave Peterson680cbbb2006-03-26 01:38:41 -0800325 .name = EDAC_MOD_STR,
Alan Cox806c35f2006-01-18 17:44:08 -0800326 .probe = amd76x_init_one,
327 .remove = __devexit_p(amd76x_remove_one),
328 .id_table = amd76x_pci_tbl,
329};
330
Alan Coxda9bb1d2006-01-18 17:44:13 -0800331static int __init amd76x_init(void)
Alan Cox806c35f2006-01-18 17:44:08 -0800332{
333 return pci_register_driver(&amd76x_driver);
334}
335
336static void __exit amd76x_exit(void)
337{
338 pci_unregister_driver(&amd76x_driver);
339}
340
341module_init(amd76x_init);
342module_exit(amd76x_exit);
343
344MODULE_LICENSE("GPL");
345MODULE_AUTHOR("Linux Networx (http://lnxi.com) Thayne Harbaugh");
346MODULE_DESCRIPTION("MC support for AMD 76x memory controllers");