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.
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/
11 * $Id: edac_amd76x.c,v 1.4.2.5 2005/10/05 00:43:44 dsp_llnl Exp $
15 #include <linux/module.h>
16 #include <linux/init.h>
17 #include <linux/pci.h>
18 #include <linux/pci_ids.h>
19 #include <linux/slab.h>
22 #define AMD76X_REVISION " Ver: 2.0.1 " __DATE__
23 #define EDAC_MOD_STR "amd76x_edac"
25 #define amd76x_printk(level, fmt, arg...) \
26 edac_printk(level, "amd76x", fmt, ##arg)
28 #define amd76x_mc_printk(mci, level, fmt, arg...) \
29 edac_mc_chipset_printk(mci, level, "amd76x", fmt, ##arg)
31 #define AMD76X_NR_CSROWS 8
32 #define AMD76X_NR_CHANS 1
33 #define AMD76X_NR_DIMMS 4
35 /* AMD 76x register addresses - device 0 function 0 - PCI bridge */
37 #define AMD76X_ECC_MODE_STATUS 0x48 /* Mode and status of ECC (32b)
40 * 15:14 SERR enabled: x1=ue 1x=ce
42 * 12 diag: disabled, enabled
43 * 11:10 mode: dis, EC, ECC, ECC+scrub
44 * 9:8 status: x1=ue 1x=ce
49 #define AMD76X_DRAM_MODE_STATUS 0x58 /* DRAM Mode and status (32b)
51 * 31:26 clock disable 5 - 0
54 * 23 mode register service
55 * 22:21 suspend to RAM
56 * 20 burst refresh enable
59 * 17:16 cycles-per-refresh
61 * 7:0 x4 mode enable 7 - 0
64 #define AMD76X_MEM_BASE_ADDR 0xC0 /* Memory base address (8 x 32b)
66 * 31:23 chip-select base
68 * 15:7 chip-select mask
71 * 0 chip-select enable
74 struct amd76x_error_info
{
83 struct amd76x_dev_info
{
87 static const struct amd76x_dev_info amd76x_devs
[] = {
97 * amd76x_get_error_info - fetch error information
98 * @mci: Memory controller
99 * @info: Info to fill in
101 * Fetch and store the AMD76x ECC status. Clear pending status
102 * on the chip so that further errors will be reported
104 static void amd76x_get_error_info(struct mem_ctl_info
*mci
,
105 struct amd76x_error_info
*info
)
107 struct pci_dev
*pdev
;
109 pdev
= to_pci_dev(mci
->dev
);
110 pci_read_config_dword(pdev
, AMD76X_ECC_MODE_STATUS
,
111 &info
->ecc_mode_status
);
113 if (info
->ecc_mode_status
& BIT(8))
114 pci_write_bits32(pdev
, AMD76X_ECC_MODE_STATUS
,
115 (u32
) BIT(8), (u32
) BIT(8));
117 if (info
->ecc_mode_status
& BIT(9))
118 pci_write_bits32(pdev
, AMD76X_ECC_MODE_STATUS
,
119 (u32
) BIT(9), (u32
) BIT(9));
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
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
132 static int amd76x_process_error_info(struct mem_ctl_info
*mci
,
133 struct amd76x_error_info
*info
, int handle_errors
)
141 * Check for an uncorrectable error
143 if (info
->ecc_mode_status
& BIT(8)) {
147 row
= (info
->ecc_mode_status
>> 4) & 0xf;
148 edac_mc_handle_ue(mci
, mci
->csrows
[row
].first_page
, 0,
154 * Check for a correctable error
156 if (info
->ecc_mode_status
& BIT(9)) {
160 row
= info
->ecc_mode_status
& 0xf;
161 edac_mc_handle_ce(mci
, mci
->csrows
[row
].first_page
, 0,
162 0, row
, 0, mci
->ctl_name
);
170 * amd76x_check - Poll the controller
171 * @mci: Memory controller
173 * Called by the poll handlers this function reads the status
174 * from the controller and checks for errors.
176 static void amd76x_check(struct mem_ctl_info
*mci
)
178 struct amd76x_error_info info
;
179 debugf3("%s()\n", __func__
);
180 amd76x_get_error_info(mci
, &info
);
181 amd76x_process_error_info(mci
, &info
, 1);
184 static void amd76x_init_csrows(struct mem_ctl_info
*mci
, struct pci_dev
*pdev
,
185 enum edac_type edac_mode
)
187 struct csrow_info
*csrow
;
188 u32 mba
, mba_base
, mba_mask
, dms
;
191 for (index
= 0; index
< mci
->nr_csrows
; index
++) {
192 csrow
= &mci
->csrows
[index
];
194 /* find the DRAM Chip Select Base address and mask */
195 pci_read_config_dword(pdev
,
196 AMD76X_MEM_BASE_ADDR
+ (index
* 4),
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
;
217 * amd76x_probe1 - Perform set up for detected device
218 * @pdev; PCI device detected
219 * @dev_idx: Device type index
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.
225 static int amd76x_probe1(struct pci_dev
*pdev
, int dev_idx
)
227 static const enum edac_type ems_modes
[] = {
233 struct mem_ctl_info
*mci
= NULL
;
236 struct amd76x_error_info discard
;
238 debugf0("%s()\n", __func__
);
239 pci_read_config_dword(pdev
, AMD76X_ECC_MODE_STATUS
, &ems
);
240 ems_mode
= (ems
>> 10) & 0x3;
241 mci
= edac_mc_alloc(0, AMD76X_NR_CSROWS
, AMD76X_NR_CHANS
);
247 debugf0("%s(): mci = %p\n", __func__
, mci
);
248 mci
->dev
= &pdev
->dev
;
249 mci
->mtype_cap
= MEM_FLAG_RDDR
;
250 mci
->edac_ctl_cap
= EDAC_FLAG_NONE
| EDAC_FLAG_EC
| EDAC_FLAG_SECDED
;
251 mci
->edac_cap
= ems_mode
?
252 (EDAC_FLAG_EC
| EDAC_FLAG_SECDED
) : EDAC_FLAG_NONE
;
253 mci
->mod_name
= EDAC_MOD_STR
;
254 mci
->mod_ver
= AMD76X_REVISION
;
255 mci
->ctl_name
= amd76x_devs
[dev_idx
].ctl_name
;
256 mci
->edac_check
= amd76x_check
;
257 mci
->ctl_page_to_phys
= NULL
;
259 amd76x_init_csrows(mci
, pdev
, ems_modes
[ems_mode
]);
260 amd76x_get_error_info(mci
, &discard
); /* clear counters */
262 /* Here we assume that we will never see multiple instances of this
263 * type of memory controller. The ID is therefore hardcoded to 0.
265 if (edac_mc_add_mc(mci
,0)) {
266 debugf3("%s(): failed edac_mc_add_mc()\n", __func__
);
270 /* get this far and it's successful */
271 debugf3("%s(): success\n", __func__
);
279 /* returns count (>= 0), or negative on error */
280 static int __devinit
amd76x_init_one(struct pci_dev
*pdev
,
281 const struct pci_device_id
*ent
)
283 debugf0("%s()\n", __func__
);
285 /* don't need to call pci_device_enable() */
286 return amd76x_probe1(pdev
, ent
->driver_data
);
290 * amd76x_remove_one - driver shutdown
291 * @pdev: PCI device being handed back
293 * Called when the driver is unloaded. Find the matching mci
294 * structure for the device then delete the mci and free the
297 static void __devexit
amd76x_remove_one(struct pci_dev
*pdev
)
299 struct mem_ctl_info
*mci
;
301 debugf0("%s()\n", __func__
);
303 if ((mci
= edac_mc_del_mc(&pdev
->dev
)) == NULL
)
309 static const struct pci_device_id amd76x_pci_tbl
[] __devinitdata
= {
311 PCI_VEND_DEV(AMD
, FE_GATE_700C
), PCI_ANY_ID
, PCI_ANY_ID
, 0, 0,
315 PCI_VEND_DEV(AMD
, FE_GATE_700E
), PCI_ANY_ID
, PCI_ANY_ID
, 0, 0,
320 } /* 0 terminated list. */
323 MODULE_DEVICE_TABLE(pci
, amd76x_pci_tbl
);
325 static struct pci_driver amd76x_driver
= {
326 .name
= EDAC_MOD_STR
,
327 .probe
= amd76x_init_one
,
328 .remove
= __devexit_p(amd76x_remove_one
),
329 .id_table
= amd76x_pci_tbl
,
332 static int __init
amd76x_init(void)
334 return pci_register_driver(&amd76x_driver
);
337 static void __exit
amd76x_exit(void)
339 pci_unregister_driver(&amd76x_driver
);
342 module_init(amd76x_init
);
343 module_exit(amd76x_exit
);
345 MODULE_LICENSE("GPL");
346 MODULE_AUTHOR("Linux Networx (http://lnxi.com) Thayne Harbaugh");
347 MODULE_DESCRIPTION("MC support for AMD 76x memory controllers");