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/edac.h>
20 #include "edac_module.h"
22 #define EDAC_MOD_STR "amd76x_edac"
24 #define amd76x_printk(level, fmt, arg...) \
25 edac_printk(level, "amd76x", fmt, ##arg)
27 #define amd76x_mc_printk(mci, level, fmt, arg...) \
28 edac_mc_chipset_printk(mci, level, "amd76x", fmt, ##arg)
30 #define AMD76X_NR_CSROWS 8
31 #define AMD76X_NR_DIMMS 4
33 /* AMD 76x register addresses - device 0 function 0 - PCI bridge */
35 #define AMD76X_ECC_MODE_STATUS 0x48 /* Mode and status of ECC (32b)
38 * 15:14 SERR enabled: x1=ue 1x=ce
40 * 12 diag: disabled, enabled
41 * 11:10 mode: dis, EC, ECC, ECC+scrub
42 * 9:8 status: x1=ue 1x=ce
47 #define AMD76X_DRAM_MODE_STATUS 0x58 /* DRAM Mode and status (32b)
49 * 31:26 clock disable 5 - 0
52 * 23 mode register service
53 * 22:21 suspend to RAM
54 * 20 burst refresh enable
57 * 17:16 cycles-per-refresh
59 * 7:0 x4 mode enable 7 - 0
62 #define AMD76X_MEM_BASE_ADDR 0xC0 /* Memory base address (8 x 32b)
64 * 31:23 chip-select base
66 * 15:7 chip-select mask
69 * 0 chip-select enable
72 struct amd76x_error_info
{
81 struct amd76x_dev_info
{
85 static const struct amd76x_dev_info amd76x_devs
[] = {
87 .ctl_name
= "AMD761"},
89 .ctl_name
= "AMD762"},
92 static struct edac_pci_ctl_info
*amd76x_pci
;
95 * amd76x_get_error_info - fetch error information
96 * @mci: Memory controller
97 * @info: Info to fill in
99 * Fetch and store the AMD76x ECC status. Clear pending status
100 * on the chip so that further errors will be reported
102 static void amd76x_get_error_info(struct mem_ctl_info
*mci
,
103 struct amd76x_error_info
*info
)
105 struct pci_dev
*pdev
;
107 pdev
= to_pci_dev(mci
->pdev
);
108 pci_read_config_dword(pdev
, AMD76X_ECC_MODE_STATUS
,
109 &info
->ecc_mode_status
);
111 if (info
->ecc_mode_status
& BIT(8))
112 pci_write_bits32(pdev
, AMD76X_ECC_MODE_STATUS
,
113 (u32
) BIT(8), (u32
) BIT(8));
115 if (info
->ecc_mode_status
& BIT(9))
116 pci_write_bits32(pdev
, AMD76X_ECC_MODE_STATUS
,
117 (u32
) BIT(9), (u32
) BIT(9));
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
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
130 static int amd76x_process_error_info(struct mem_ctl_info
*mci
,
131 struct amd76x_error_info
*info
,
140 * Check for an uncorrectable error
142 if (info
->ecc_mode_status
& BIT(8)) {
146 row
= (info
->ecc_mode_status
>> 4) & 0xf;
147 edac_mc_handle_error(HW_EVENT_ERR_UNCORRECTED
, mci
, 1,
148 mci
->csrows
[row
]->first_page
, 0, 0,
155 * Check for a correctable error
157 if (info
->ecc_mode_status
& BIT(9)) {
161 row
= info
->ecc_mode_status
& 0xf;
162 edac_mc_handle_error(HW_EVENT_ERR_CORRECTED
, mci
, 1,
163 mci
->csrows
[row
]->first_page
, 0, 0,
173 * amd76x_check - Poll the controller
174 * @mci: Memory controller
176 * Called by the poll handlers this function reads the status
177 * from the controller and checks for errors.
179 static void amd76x_check(struct mem_ctl_info
*mci
)
181 struct amd76x_error_info info
;
183 amd76x_get_error_info(mci
, &info
);
184 amd76x_process_error_info(mci
, &info
, 1);
187 static void amd76x_init_csrows(struct mem_ctl_info
*mci
, struct pci_dev
*pdev
,
188 enum edac_type edac_mode
)
190 struct csrow_info
*csrow
;
191 struct dimm_info
*dimm
;
192 u32 mba
, mba_base
, mba_mask
, dms
;
195 for (index
= 0; index
< mci
->nr_csrows
; index
++) {
196 csrow
= mci
->csrows
[index
];
197 dimm
= csrow
->channels
[0]->dimm
;
199 /* find the DRAM Chip Select Base address and mask */
200 pci_read_config_dword(pdev
,
201 AMD76X_MEM_BASE_ADDR
+ (index
* 4), &mba
);
206 mba_base
= mba
& 0xff800000UL
;
207 mba_mask
= ((mba
& 0xff80) << 16) | 0x7fffffUL
;
208 pci_read_config_dword(pdev
, AMD76X_DRAM_MODE_STATUS
, &dms
);
209 csrow
->first_page
= mba_base
>> PAGE_SHIFT
;
210 dimm
->nr_pages
= (mba_mask
+ 1) >> PAGE_SHIFT
;
211 csrow
->last_page
= csrow
->first_page
+ dimm
->nr_pages
- 1;
212 csrow
->page_mask
= mba_mask
>> PAGE_SHIFT
;
213 dimm
->grain
= dimm
->nr_pages
<< PAGE_SHIFT
;
214 dimm
->mtype
= MEM_RDDR
;
215 dimm
->dtype
= ((dms
>> index
) & 0x1) ? DEV_X4
: DEV_UNKNOWN
;
216 dimm
->edac_mode
= edac_mode
;
221 * amd76x_probe1 - Perform set up for detected device
222 * @pdev; PCI device detected
223 * @dev_idx: Device type index
225 * We have found an AMD76x and now need to set up the memory
226 * controller status reporting. We configure and set up the
227 * memory controller reporting and claim the device.
229 static int amd76x_probe1(struct pci_dev
*pdev
, int dev_idx
)
231 static const enum edac_type ems_modes
[] = {
237 struct mem_ctl_info
*mci
;
238 struct edac_mc_layer layers
[2];
241 struct amd76x_error_info discard
;
244 pci_read_config_dword(pdev
, AMD76X_ECC_MODE_STATUS
, &ems
);
245 ems_mode
= (ems
>> 10) & 0x3;
247 layers
[0].type
= EDAC_MC_LAYER_CHIP_SELECT
;
248 layers
[0].size
= AMD76X_NR_CSROWS
;
249 layers
[0].is_virt_csrow
= true;
250 layers
[1].type
= EDAC_MC_LAYER_CHANNEL
;
252 layers
[1].is_virt_csrow
= false;
253 mci
= edac_mc_alloc(0, ARRAY_SIZE(layers
), layers
, 0);
258 edac_dbg(0, "mci = %p\n", mci
);
259 mci
->pdev
= &pdev
->dev
;
260 mci
->mtype_cap
= MEM_FLAG_RDDR
;
261 mci
->edac_ctl_cap
= EDAC_FLAG_NONE
| EDAC_FLAG_EC
| EDAC_FLAG_SECDED
;
262 mci
->edac_cap
= ems_mode
?
263 (EDAC_FLAG_EC
| EDAC_FLAG_SECDED
) : EDAC_FLAG_NONE
;
264 mci
->mod_name
= EDAC_MOD_STR
;
265 mci
->ctl_name
= amd76x_devs
[dev_idx
].ctl_name
;
266 mci
->dev_name
= pci_name(pdev
);
267 mci
->edac_check
= amd76x_check
;
268 mci
->ctl_page_to_phys
= NULL
;
270 amd76x_init_csrows(mci
, pdev
, ems_modes
[ems_mode
]);
271 amd76x_get_error_info(mci
, &discard
); /* clear counters */
273 /* Here we assume that we will never see multiple instances of this
274 * type of memory controller. The ID is therefore hardcoded to 0.
276 if (edac_mc_add_mc(mci
)) {
277 edac_dbg(3, "failed edac_mc_add_mc()\n");
281 /* allocating generic PCI control info */
282 amd76x_pci
= edac_pci_create_generic_ctl(&pdev
->dev
, EDAC_MOD_STR
);
285 "%s(): Unable to create PCI control\n",
288 "%s(): PCI error report via EDAC not setup\n",
292 /* get this far and it's successful */
293 edac_dbg(3, "success\n");
301 /* returns count (>= 0), or negative on error */
302 static int amd76x_init_one(struct pci_dev
*pdev
,
303 const struct pci_device_id
*ent
)
307 /* don't need to call pci_enable_device() */
308 return amd76x_probe1(pdev
, ent
->driver_data
);
312 * amd76x_remove_one - driver shutdown
313 * @pdev: PCI device being handed back
315 * Called when the driver is unloaded. Find the matching mci
316 * structure for the device then delete the mci and free the
319 static void amd76x_remove_one(struct pci_dev
*pdev
)
321 struct mem_ctl_info
*mci
;
326 edac_pci_release_generic_ctl(amd76x_pci
);
328 if ((mci
= edac_mc_del_mc(&pdev
->dev
)) == NULL
)
334 static const struct pci_device_id amd76x_pci_tbl
[] = {
336 PCI_VEND_DEV(AMD
, FE_GATE_700C
), PCI_ANY_ID
, PCI_ANY_ID
, 0, 0,
339 PCI_VEND_DEV(AMD
, FE_GATE_700E
), PCI_ANY_ID
, PCI_ANY_ID
, 0, 0,
343 } /* 0 terminated list. */
346 MODULE_DEVICE_TABLE(pci
, amd76x_pci_tbl
);
348 static struct pci_driver amd76x_driver
= {
349 .name
= EDAC_MOD_STR
,
350 .probe
= amd76x_init_one
,
351 .remove
= amd76x_remove_one
,
352 .id_table
= amd76x_pci_tbl
,
355 static int __init
amd76x_init(void)
357 /* Ensure that the OPSTATE is set correctly for POLL or NMI */
360 return pci_register_driver(&amd76x_driver
);
363 static void __exit
amd76x_exit(void)
365 pci_unregister_driver(&amd76x_driver
);
368 module_init(amd76x_init
);
369 module_exit(amd76x_exit
);
371 MODULE_LICENSE("GPL");
372 MODULE_AUTHOR("Linux Networx (http://lnxi.com) Thayne Harbaugh");
373 MODULE_DESCRIPTION("MC support for AMD 76x memory controllers");
375 module_param(edac_op_state
, int, 0444);
376 MODULE_PARM_DESC(edac_op_state
, "EDAC Error Reporting state: 0=Poll,1=NMI");