drivers/edac: cleanup workq ifdefs
[deliverable/linux.git] / drivers / edac / amd76x_edac.c
CommitLineData
806c35f5
AC
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
806c35f5
AC
15#include <linux/module.h>
16#include <linux/init.h>
806c35f5
AC
17#include <linux/pci.h>
18#include <linux/pci_ids.h>
806c35f5 19#include <linux/slab.h>
20bcb7a8 20#include "edac_core.h"
806c35f5 21
20bcb7a8 22#define AMD76X_REVISION " Ver: 2.0.2 " __DATE__
929a40ec 23#define EDAC_MOD_STR "amd76x_edac"
37f04581 24
537fba28 25#define amd76x_printk(level, fmt, arg...) \
e7ecd891 26 edac_printk(level, "amd76x", fmt, ##arg)
537fba28
DP
27
28#define amd76x_mc_printk(mci, level, fmt, arg...) \
e7ecd891 29 edac_mc_chipset_printk(mci, level, "amd76x", fmt, ##arg)
537fba28 30
806c35f5
AC
31#define AMD76X_NR_CSROWS 8
32#define AMD76X_NR_CHANS 1
33#define AMD76X_NR_DIMMS 4
34
806c35f5 35/* AMD 76x register addresses - device 0 function 0 - PCI bridge */
e7ecd891 36
806c35f5
AC
37#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 */
e7ecd891 48
806c35f5
AC
49#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 */
e7ecd891 63
806c35f5
AC
64#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
806c35f5
AC
74struct amd76x_error_info {
75 u32 ecc_mode_status;
76};
77
806c35f5
AC
78enum amd76x_chips {
79 AMD761 = 0,
80 AMD762
81};
82
806c35f5
AC
83struct amd76x_dev_info {
84 const char *ctl_name;
85};
86
806c35f5 87static const struct amd76x_dev_info amd76x_devs[] = {
e7ecd891
DP
88 [AMD761] = {
89 .ctl_name = "AMD761"
90 },
91 [AMD762] = {
92 .ctl_name = "AMD762"
93 },
806c35f5
AC
94};
95
806c35f5
AC
96/**
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 */
e7ecd891
DP
104static void amd76x_get_error_info(struct mem_ctl_info *mci,
105 struct amd76x_error_info *info)
806c35f5 106{
37f04581
DT
107 struct pci_dev *pdev;
108
109 pdev = to_pci_dev(mci->dev);
110 pci_read_config_dword(pdev, AMD76X_ECC_MODE_STATUS,
806c35f5
AC
111 &info->ecc_mode_status);
112
113 if (info->ecc_mode_status & BIT(8))
37f04581 114 pci_write_bits32(pdev, AMD76X_ECC_MODE_STATUS,
e7ecd891 115 (u32) BIT(8), (u32) BIT(8));
806c35f5
AC
116
117 if (info->ecc_mode_status & BIT(9))
37f04581 118 pci_write_bits32(pdev, AMD76X_ECC_MODE_STATUS,
e7ecd891 119 (u32) BIT(9), (u32) BIT(9));
806c35f5
AC
120}
121
806c35f5
AC
122/**
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 */
e7ecd891 132static int amd76x_process_error_info(struct mem_ctl_info *mci,
806c35f5
AC
133 struct amd76x_error_info *info, int handle_errors)
134{
135 int error_found;
136 u32 row;
137
138 error_found = 0;
139
140 /*
141 * Check for an uncorrectable error
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;
e7ecd891
DP
148 edac_mc_handle_ue(mci, mci->csrows[row].first_page, 0,
149 row, mci->ctl_name);
806c35f5
AC
150 }
151 }
152
153 /*
154 * Check for a correctable error
155 */
156 if (info->ecc_mode_status & BIT(9)) {
157 error_found = 1;
158
159 if (handle_errors) {
160 row = info->ecc_mode_status & 0xf;
e7ecd891
DP
161 edac_mc_handle_ce(mci, mci->csrows[row].first_page, 0,
162 0, row, 0, mci->ctl_name);
806c35f5
AC
163 }
164 }
e7ecd891 165
806c35f5
AC
166 return error_found;
167}
168
169/**
170 * amd76x_check - Poll the controller
171 * @mci: Memory controller
172 *
173 * Called by the poll handlers this function reads the status
174 * from the controller and checks for errors.
175 */
806c35f5
AC
176static void amd76x_check(struct mem_ctl_info *mci)
177{
178 struct amd76x_error_info info;
537fba28 179 debugf3("%s()\n", __func__);
806c35f5
AC
180 amd76x_get_error_info(mci, &info);
181 amd76x_process_error_info(mci, &info, 1);
182}
183
13189525
DT
184static void amd76x_init_csrows(struct mem_ctl_info *mci, struct pci_dev *pdev,
185 enum edac_type edac_mode)
186{
187 struct csrow_info *csrow;
188 u32 mba, mba_base, mba_mask, dms;
189 int index;
190
191 for (index = 0; index < mci->nr_csrows; index++) {
192 csrow = &mci->csrows[index];
193
194 /* find the DRAM Chip Select Base address and mask */
195 pci_read_config_dword(pdev,
196 AMD76X_MEM_BASE_ADDR + (index * 4),
197 &mba);
198
199 if (!(mba & BIT(0)))
200 continue;
201
202 mba_base = mba & 0xff800000UL;
203 mba_mask = ((mba & 0xff80) << 16) | 0x7fffffUL;
204 pci_read_config_dword(pdev, AMD76X_DRAM_MODE_STATUS, &dms);
205 csrow->first_page = mba_base >> PAGE_SHIFT;
206 csrow->nr_pages = (mba_mask + 1) >> PAGE_SHIFT;
207 csrow->last_page = csrow->first_page + csrow->nr_pages - 1;
208 csrow->page_mask = mba_mask >> PAGE_SHIFT;
209 csrow->grain = csrow->nr_pages << PAGE_SHIFT;
210 csrow->mtype = MEM_RDDR;
211 csrow->dtype = ((dms >> index) & 0x1) ? DEV_X4 : DEV_UNKNOWN;
212 csrow->edac_mode = edac_mode;
213 }
214}
215
806c35f5
AC
216/**
217 * amd76x_probe1 - Perform set up for detected device
218 * @pdev; PCI device detected
219 * @dev_idx: Device type index
220 *
221 * We have found an AMD76x and now need to set up the memory
222 * controller status reporting. We configure and set up the
223 * memory controller reporting and claim the device.
224 */
806c35f5
AC
225static int amd76x_probe1(struct pci_dev *pdev, int dev_idx)
226{
13189525 227 static const enum edac_type ems_modes[] = {
806c35f5
AC
228 EDAC_NONE,
229 EDAC_EC,
230 EDAC_SECDED,
231 EDAC_SECDED
232 };
13189525 233 struct mem_ctl_info *mci = NULL;
806c35f5
AC
234 u32 ems;
235 u32 ems_mode;
749ede57 236 struct amd76x_error_info discard;
806c35f5 237
537fba28 238 debugf0("%s()\n", __func__);
806c35f5
AC
239 pci_read_config_dword(pdev, AMD76X_ECC_MODE_STATUS, &ems);
240 ems_mode = (ems >> 10) & 0x3;
806c35f5
AC
241 mci = edac_mc_alloc(0, AMD76X_NR_CSROWS, AMD76X_NR_CHANS);
242
243 if (mci == NULL) {
13189525 244 return -ENOMEM;
806c35f5
AC
245 }
246
537fba28 247 debugf0("%s(): mci = %p\n", __func__, mci);
37f04581 248 mci->dev = &pdev->dev;
806c35f5 249 mci->mtype_cap = MEM_FLAG_RDDR;
806c35f5
AC
250 mci->edac_ctl_cap = EDAC_FLAG_NONE | EDAC_FLAG_EC | EDAC_FLAG_SECDED;
251 mci->edac_cap = ems_mode ?
e7ecd891 252 (EDAC_FLAG_EC | EDAC_FLAG_SECDED) : EDAC_FLAG_NONE;
680cbbbb 253 mci->mod_name = EDAC_MOD_STR;
37f04581 254 mci->mod_ver = AMD76X_REVISION;
806c35f5 255 mci->ctl_name = amd76x_devs[dev_idx].ctl_name;
c4192705 256 mci->dev_name = pci_name(pdev);
806c35f5
AC
257 mci->edac_check = amd76x_check;
258 mci->ctl_page_to_phys = NULL;
259
13189525 260 amd76x_init_csrows(mci, pdev, ems_modes[ems_mode]);
749ede57 261 amd76x_get_error_info(mci, &discard); /* clear counters */
806c35f5 262
2d7bbb91
DT
263 /* Here we assume that we will never see multiple instances of this
264 * type of memory controller. The ID is therefore hardcoded to 0.
265 */
266 if (edac_mc_add_mc(mci,0)) {
537fba28 267 debugf3("%s(): failed edac_mc_add_mc()\n", __func__);
806c35f5
AC
268 goto fail;
269 }
270
271 /* get this far and it's successful */
537fba28 272 debugf3("%s(): success\n", __func__);
806c35f5
AC
273 return 0;
274
275fail:
13189525
DT
276 edac_mc_free(mci);
277 return -ENODEV;
806c35f5
AC
278}
279
280/* returns count (>= 0), or negative on error */
281static int __devinit amd76x_init_one(struct pci_dev *pdev,
e7ecd891 282 const struct pci_device_id *ent)
806c35f5 283{
537fba28 284 debugf0("%s()\n", __func__);
806c35f5
AC
285
286 /* don't need to call pci_device_enable() */
287 return amd76x_probe1(pdev, ent->driver_data);
288}
289
806c35f5
AC
290/**
291 * amd76x_remove_one - driver shutdown
292 * @pdev: PCI device being handed back
293 *
294 * Called when the driver is unloaded. Find the matching mci
295 * structure for the device then delete the mci and free the
296 * resources.
297 */
806c35f5
AC
298static void __devexit amd76x_remove_one(struct pci_dev *pdev)
299{
300 struct mem_ctl_info *mci;
301
537fba28 302 debugf0("%s()\n", __func__);
806c35f5 303
37f04581 304 if ((mci = edac_mc_del_mc(&pdev->dev)) == NULL)
806c35f5 305 return;
18dbc337 306
806c35f5
AC
307 edac_mc_free(mci);
308}
309
806c35f5 310static const struct pci_device_id amd76x_pci_tbl[] __devinitdata = {
e7ecd891
DP
311 {
312 PCI_VEND_DEV(AMD, FE_GATE_700C), PCI_ANY_ID, PCI_ANY_ID, 0, 0,
313 AMD762
314 },
315 {
316 PCI_VEND_DEV(AMD, FE_GATE_700E), PCI_ANY_ID, PCI_ANY_ID, 0, 0,
317 AMD761
318 },
319 {
320 0,
321 } /* 0 terminated list. */
806c35f5
AC
322};
323
324MODULE_DEVICE_TABLE(pci, amd76x_pci_tbl);
325
806c35f5 326static struct pci_driver amd76x_driver = {
680cbbbb 327 .name = EDAC_MOD_STR,
806c35f5
AC
328 .probe = amd76x_init_one,
329 .remove = __devexit_p(amd76x_remove_one),
330 .id_table = amd76x_pci_tbl,
331};
332
da9bb1d2 333static int __init amd76x_init(void)
806c35f5
AC
334{
335 return pci_register_driver(&amd76x_driver);
336}
337
338static void __exit amd76x_exit(void)
339{
340 pci_unregister_driver(&amd76x_driver);
341}
342
343module_init(amd76x_init);
344module_exit(amd76x_exit);
345
346MODULE_LICENSE("GPL");
347MODULE_AUTHOR("Linux Networx (http://lnxi.com) Thayne Harbaugh");
348MODULE_DESCRIPTION("MC support for AMD 76x memory controllers");
This page took 0.204415 seconds and 5 git commands to generate.