2 * Copyright (C) 2006-2007 PA Semi, Inc
4 * Author: Egor Martovetsky <egor@pasemi.com>
5 * Maintained by: Olof Johansson <olof@lixom.net>
7 * Driver for the PWRficient onchip memory controllers
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include <linux/module.h>
25 #include <linux/init.h>
26 #include <linux/pci.h>
27 #include <linux/pci_ids.h>
28 #include <linux/slab.h>
29 #include <linux/edac.h>
30 #include "edac_core.h"
32 #define MODULE_NAME "pasemi_edac"
34 #define MCCFG_MCEN 0x300
35 #define MCCFG_MCEN_MMC_EN 0x00000001
36 #define MCCFG_ERRCOR 0x388
37 #define MCCFG_ERRCOR_RNK_FAIL_DET_EN 0x00000100
38 #define MCCFG_ERRCOR_ECC_GEN_EN 0x00000010
39 #define MCCFG_ERRCOR_ECC_CRR_EN 0x00000001
40 #define MCCFG_SCRUB 0x384
41 #define MCCFG_SCRUB_RGLR_SCRB_EN 0x00000001
42 #define MCDEBUG_ERRCTL1 0x728
43 #define MCDEBUG_ERRCTL1_RFL_LOG_EN 0x00080000
44 #define MCDEBUG_ERRCTL1_MBE_LOG_EN 0x00040000
45 #define MCDEBUG_ERRCTL1_SBE_LOG_EN 0x00020000
46 #define MCDEBUG_ERRSTA 0x730
47 #define MCDEBUG_ERRSTA_RFL_STATUS 0x00000004
48 #define MCDEBUG_ERRSTA_MBE_STATUS 0x00000002
49 #define MCDEBUG_ERRSTA_SBE_STATUS 0x00000001
50 #define MCDEBUG_ERRCNT1 0x734
51 #define MCDEBUG_ERRCNT1_SBE_CNT_OVRFLO 0x00000080
52 #define MCDEBUG_ERRLOG1A 0x738
53 #define MCDEBUG_ERRLOG1A_MERR_TYPE_M 0x30000000
54 #define MCDEBUG_ERRLOG1A_MERR_TYPE_NONE 0x00000000
55 #define MCDEBUG_ERRLOG1A_MERR_TYPE_SBE 0x10000000
56 #define MCDEBUG_ERRLOG1A_MERR_TYPE_MBE 0x20000000
57 #define MCDEBUG_ERRLOG1A_MERR_TYPE_RFL 0x30000000
58 #define MCDEBUG_ERRLOG1A_MERR_BA_M 0x00700000
59 #define MCDEBUG_ERRLOG1A_MERR_BA_S 20
60 #define MCDEBUG_ERRLOG1A_MERR_CS_M 0x00070000
61 #define MCDEBUG_ERRLOG1A_MERR_CS_S 16
62 #define MCDEBUG_ERRLOG1A_SYNDROME_M 0x0000ffff
63 #define MCDRAM_RANKCFG 0x114
64 #define MCDRAM_RANKCFG_EN 0x00000001
65 #define MCDRAM_RANKCFG_TYPE_SIZE_M 0x000001c0
66 #define MCDRAM_RANKCFG_TYPE_SIZE_S 6
68 #define PASEMI_EDAC_NR_CSROWS 8
69 #define PASEMI_EDAC_NR_CHANS 1
70 #define PASEMI_EDAC_ERROR_GRAIN 64
72 static int last_page_in_mmc
;
73 static int system_mmc_id
;
76 static u32
pasemi_edac_get_error_info(struct mem_ctl_info
*mci
)
78 struct pci_dev
*pdev
= to_pci_dev(mci
->dev
);
81 pci_read_config_dword(pdev
, MCDEBUG_ERRSTA
,
84 tmp
&= (MCDEBUG_ERRSTA_RFL_STATUS
| MCDEBUG_ERRSTA_MBE_STATUS
85 | MCDEBUG_ERRSTA_SBE_STATUS
);
88 if (tmp
& MCDEBUG_ERRSTA_SBE_STATUS
)
89 pci_write_config_dword(pdev
, MCDEBUG_ERRCNT1
,
90 MCDEBUG_ERRCNT1_SBE_CNT_OVRFLO
);
91 pci_write_config_dword(pdev
, MCDEBUG_ERRSTA
, tmp
);
97 static void pasemi_edac_process_error_info(struct mem_ctl_info
*mci
, u32 errsta
)
99 struct pci_dev
*pdev
= to_pci_dev(mci
->dev
);
106 pci_read_config_dword(pdev
, MCDEBUG_ERRLOG1A
, &errlog1a
);
108 cs
= (errlog1a
& MCDEBUG_ERRLOG1A_MERR_CS_M
) >>
109 MCDEBUG_ERRLOG1A_MERR_CS_S
;
111 /* uncorrectable/multi-bit errors */
112 if (errsta
& (MCDEBUG_ERRSTA_MBE_STATUS
|
113 MCDEBUG_ERRSTA_RFL_STATUS
)) {
114 edac_mc_handle_ue(mci
, mci
->csrows
[cs
].first_page
, 0,
118 /* correctable/single-bit errors */
119 if (errsta
& MCDEBUG_ERRSTA_SBE_STATUS
) {
120 edac_mc_handle_ce(mci
, mci
->csrows
[cs
].first_page
, 0,
121 0, cs
, 0, mci
->ctl_name
);
125 static void pasemi_edac_check(struct mem_ctl_info
*mci
)
129 errsta
= pasemi_edac_get_error_info(mci
);
131 pasemi_edac_process_error_info(mci
, errsta
);
134 static int pasemi_edac_init_csrows(struct mem_ctl_info
*mci
,
135 struct pci_dev
*pdev
,
136 enum edac_type edac_mode
)
138 struct csrow_info
*csrow
;
142 for (index
= 0; index
< mci
->nr_csrows
; index
++) {
143 csrow
= &mci
->csrows
[index
];
145 pci_read_config_dword(pdev
,
146 MCDRAM_RANKCFG
+ (index
* 12),
149 if (!(rankcfg
& MCDRAM_RANKCFG_EN
))
152 switch ((rankcfg
& MCDRAM_RANKCFG_TYPE_SIZE_M
) >>
153 MCDRAM_RANKCFG_TYPE_SIZE_S
) {
155 csrow
->nr_pages
= 128 << (20 - PAGE_SHIFT
);
158 csrow
->nr_pages
= 256 << (20 - PAGE_SHIFT
);
162 csrow
->nr_pages
= 512 << (20 - PAGE_SHIFT
);
165 csrow
->nr_pages
= 1024 << (20 - PAGE_SHIFT
);
168 csrow
->nr_pages
= 2048 << (20 - PAGE_SHIFT
);
171 edac_mc_printk(mci
, KERN_ERR
,
172 "Unrecognized Rank Config. rankcfg=%u\n",
177 csrow
->first_page
= last_page_in_mmc
;
178 csrow
->last_page
= csrow
->first_page
+ csrow
->nr_pages
- 1;
179 last_page_in_mmc
+= csrow
->nr_pages
;
180 csrow
->page_mask
= 0;
181 csrow
->grain
= PASEMI_EDAC_ERROR_GRAIN
;
182 csrow
->mtype
= MEM_DDR
;
183 csrow
->dtype
= DEV_UNKNOWN
;
184 csrow
->edac_mode
= edac_mode
;
189 static int __devinit
pasemi_edac_probe(struct pci_dev
*pdev
,
190 const struct pci_device_id
*ent
)
192 struct mem_ctl_info
*mci
= NULL
;
193 u32 errctl1
, errcor
, scrub
, mcen
;
195 pci_read_config_dword(pdev
, MCCFG_MCEN
, &mcen
);
196 if (!(mcen
& MCCFG_MCEN_MMC_EN
))
200 * We should think about enabling other error detection later on
203 pci_read_config_dword(pdev
, MCDEBUG_ERRCTL1
, &errctl1
);
204 errctl1
|= MCDEBUG_ERRCTL1_SBE_LOG_EN
|
205 MCDEBUG_ERRCTL1_MBE_LOG_EN
|
206 MCDEBUG_ERRCTL1_RFL_LOG_EN
;
207 pci_write_config_dword(pdev
, MCDEBUG_ERRCTL1
, errctl1
);
209 mci
= edac_mc_alloc(0, PASEMI_EDAC_NR_CSROWS
, PASEMI_EDAC_NR_CHANS
,
215 pci_read_config_dword(pdev
, MCCFG_ERRCOR
, &errcor
);
216 errcor
|= MCCFG_ERRCOR_RNK_FAIL_DET_EN
|
217 MCCFG_ERRCOR_ECC_GEN_EN
|
218 MCCFG_ERRCOR_ECC_CRR_EN
;
220 mci
->dev
= &pdev
->dev
;
221 mci
->mtype_cap
= MEM_FLAG_DDR
| MEM_FLAG_RDDR
;
222 mci
->edac_ctl_cap
= EDAC_FLAG_NONE
| EDAC_FLAG_EC
| EDAC_FLAG_SECDED
;
223 mci
->edac_cap
= (errcor
& MCCFG_ERRCOR_ECC_GEN_EN
) ?
224 ((errcor
& MCCFG_ERRCOR_ECC_CRR_EN
) ?
225 (EDAC_FLAG_EC
| EDAC_FLAG_SECDED
) : EDAC_FLAG_EC
) :
227 mci
->mod_name
= MODULE_NAME
;
228 mci
->dev_name
= pci_name(pdev
);
229 mci
->ctl_name
= "pasemi,pwrficient-mc";
230 mci
->edac_check
= pasemi_edac_check
;
231 mci
->ctl_page_to_phys
= NULL
;
232 pci_read_config_dword(pdev
, MCCFG_SCRUB
, &scrub
);
233 mci
->scrub_cap
= SCRUB_FLAG_HW_PROG
| SCRUB_FLAG_HW_SRC
;
235 ((errcor
& MCCFG_ERRCOR_ECC_CRR_EN
) ? SCRUB_FLAG_HW_SRC
: 0) |
236 ((scrub
& MCCFG_SCRUB_RGLR_SCRB_EN
) ? SCRUB_FLAG_HW_PROG
: 0);
238 if (pasemi_edac_init_csrows(mci
, pdev
,
239 (mci
->edac_cap
& EDAC_FLAG_SECDED
) ?
241 ((mci
->edac_cap
& EDAC_FLAG_EC
) ?
242 EDAC_EC
: EDAC_NONE
)))
248 pasemi_edac_get_error_info(mci
);
250 if (edac_mc_add_mc(mci
))
253 /* get this far and it's successful */
261 static void __devexit
pasemi_edac_remove(struct pci_dev
*pdev
)
263 struct mem_ctl_info
*mci
= edac_mc_del_mc(&pdev
->dev
);
272 static const struct pci_device_id pasemi_edac_pci_tbl
[] = {
273 { PCI_DEVICE(PCI_VENDOR_ID_PASEMI
, 0xa00a) },
277 MODULE_DEVICE_TABLE(pci
, pasemi_edac_pci_tbl
);
279 static struct pci_driver pasemi_edac_driver
= {
281 .probe
= pasemi_edac_probe
,
282 .remove
= __devexit_p(pasemi_edac_remove
),
283 .id_table
= pasemi_edac_pci_tbl
,
286 static int __init
pasemi_edac_init(void)
288 /* Ensure that the OPSTATE is set correctly for POLL or NMI */
291 return pci_register_driver(&pasemi_edac_driver
);
294 static void __exit
pasemi_edac_exit(void)
296 pci_unregister_driver(&pasemi_edac_driver
);
299 module_init(pasemi_edac_init
);
300 module_exit(pasemi_edac_exit
);
302 MODULE_LICENSE("GPL");
303 MODULE_AUTHOR("Egor Martovetsky <egor@pasemi.com>");
304 MODULE_DESCRIPTION("MC support for PA Semi PWRficient memory controller");
305 module_param(edac_op_state
, int, 0444);
306 MODULE_PARM_DESC(edac_op_state
, "EDAC Error Reporting state: 0=Poll,1=NMI");