blob: 14b7e7b71eaa2fd8e9bb0488a90a702d7201a259 [file] [log] [blame]
Dave Jiang4f4aeea2008-02-07 00:14:56 -08001/*
2 * Marvell MV64x60 Memory Controller kernel module for PPC platforms
3 *
4 * Author: Dave Jiang <djiang@mvista.com>
5 *
6 * 2006-2007 (c) MontaVista Software, Inc. This file is licensed under
7 * the terms of the GNU General Public License version 2. This program
8 * is licensed "as is" without any warranty of any kind, whether express
9 * or implied.
10 *
11 */
12
13#include <linux/module.h>
14#include <linux/init.h>
Dave Jiang4f4aeea2008-02-07 00:14:56 -080015#include <linux/interrupt.h>
16#include <linux/io.h>
17#include <linux/edac.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/gfp.h>
Dave Jiang4f4aeea2008-02-07 00:14:56 -080019
Dave Jiang4f4aeea2008-02-07 00:14:56 -080020#include "edac_module.h"
21#include "mv64x60_edac.h"
22
23static const char *mv64x60_ctl_name = "MV64x60";
24static int edac_dev_idx;
25static int edac_pci_idx;
26static int edac_mc_idx;
27
28/*********************** PCI err device **********************************/
29#ifdef CONFIG_PCI
30static void mv64x60_pci_check(struct edac_pci_ctl_info *pci)
31{
32 struct mv64x60_pci_pdata *pdata = pci->pvt_info;
33 u32 cause;
34
35 cause = in_le32(pdata->pci_vbase + MV64X60_PCI_ERROR_CAUSE);
36 if (!cause)
37 return;
38
39 printk(KERN_ERR "Error in PCI %d Interface\n", pdata->pci_hose);
40 printk(KERN_ERR "Cause register: 0x%08x\n", cause);
41 printk(KERN_ERR "Address Low: 0x%08x\n",
42 in_le32(pdata->pci_vbase + MV64X60_PCI_ERROR_ADDR_LO));
43 printk(KERN_ERR "Address High: 0x%08x\n",
44 in_le32(pdata->pci_vbase + MV64X60_PCI_ERROR_ADDR_HI));
45 printk(KERN_ERR "Attribute: 0x%08x\n",
46 in_le32(pdata->pci_vbase + MV64X60_PCI_ERROR_ATTR));
47 printk(KERN_ERR "Command: 0x%08x\n",
48 in_le32(pdata->pci_vbase + MV64X60_PCI_ERROR_CMD));
49 out_le32(pdata->pci_vbase + MV64X60_PCI_ERROR_CAUSE, ~cause);
50
51 if (cause & MV64X60_PCI_PE_MASK)
52 edac_pci_handle_pe(pci, pci->ctl_name);
53
54 if (!(cause & MV64X60_PCI_PE_MASK))
55 edac_pci_handle_npe(pci, pci->ctl_name);
56}
57
58static irqreturn_t mv64x60_pci_isr(int irq, void *dev_id)
59{
60 struct edac_pci_ctl_info *pci = dev_id;
61 struct mv64x60_pci_pdata *pdata = pci->pvt_info;
62 u32 val;
63
64 val = in_le32(pdata->pci_vbase + MV64X60_PCI_ERROR_CAUSE);
65 if (!val)
66 return IRQ_NONE;
67
68 mv64x60_pci_check(pci);
69
70 return IRQ_HANDLED;
71}
72
Dave Jiangfcb19172008-07-25 01:49:14 -070073/*
74 * Bit 0 of MV64x60_PCIx_ERR_MASK does not exist on the 64360 and because of
75 * errata FEr-#11 and FEr-##16 for the 64460, it should be 0 on that chip as
76 * well. IOW, don't set bit 0.
77 */
78
79/* Erratum FEr PCI-#16: clear bit 0 of PCI SERRn Mask reg. */
80static int __init mv64x60_pci_fixup(struct platform_device *pdev)
81{
82 struct resource *r;
83 void __iomem *pci_serr;
84
85 r = platform_get_resource(pdev, IORESOURCE_MEM, 1);
86 if (!r) {
87 printk(KERN_ERR "%s: Unable to get resource for "
88 "PCI err regs\n", __func__);
89 return -ENOENT;
90 }
91
Julia Lawall30a61ff2009-09-23 15:57:26 -070092 pci_serr = ioremap(r->start, resource_size(r));
Dave Jiangfcb19172008-07-25 01:49:14 -070093 if (!pci_serr)
94 return -ENOMEM;
95
96 out_le32(pci_serr, in_le32(pci_serr) & ~0x1);
97 iounmap(pci_serr);
98
99 return 0;
100}
101
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800102static int mv64x60_pci_err_probe(struct platform_device *pdev)
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800103{
104 struct edac_pci_ctl_info *pci;
105 struct mv64x60_pci_pdata *pdata;
106 struct resource *r;
107 int res = 0;
108
109 if (!devres_open_group(&pdev->dev, mv64x60_pci_err_probe, GFP_KERNEL))
110 return -ENOMEM;
111
112 pci = edac_pci_alloc_ctl_info(sizeof(*pdata), "mv64x60_pci_err");
113 if (!pci)
114 return -ENOMEM;
115
116 pdata = pci->pvt_info;
117
118 pdata->pci_hose = pdev->id;
119 pdata->name = "mpc85xx_pci_err";
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800120 platform_set_drvdata(pdev, pci);
121 pci->dev = &pdev->dev;
Kay Sievers031d5512009-03-24 16:38:21 -0700122 pci->dev_name = dev_name(&pdev->dev);
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800123 pci->mod_name = EDAC_MOD_STR;
124 pci->ctl_name = pdata->name;
125
126 if (edac_op_state == EDAC_OPSTATE_POLL)
127 pci->edac_check = mv64x60_pci_check;
128
129 pdata->edac_idx = edac_pci_idx++;
130
131 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
132 if (!r) {
133 printk(KERN_ERR "%s: Unable to get resource for "
134 "PCI err regs\n", __func__);
135 res = -ENOENT;
136 goto err;
137 }
138
139 if (!devm_request_mem_region(&pdev->dev,
140 r->start,
Julia Lawall30a61ff2009-09-23 15:57:26 -0700141 resource_size(r),
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800142 pdata->name)) {
143 printk(KERN_ERR "%s: Error while requesting mem region\n",
144 __func__);
145 res = -EBUSY;
146 goto err;
147 }
148
149 pdata->pci_vbase = devm_ioremap(&pdev->dev,
150 r->start,
Julia Lawall30a61ff2009-09-23 15:57:26 -0700151 resource_size(r));
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800152 if (!pdata->pci_vbase) {
153 printk(KERN_ERR "%s: Unable to setup PCI err regs\n", __func__);
154 res = -ENOMEM;
155 goto err;
156 }
157
Dave Jiangfcb19172008-07-25 01:49:14 -0700158 res = mv64x60_pci_fixup(pdev);
159 if (res < 0) {
160 printk(KERN_ERR "%s: PCI fixup failed\n", __func__);
161 goto err;
162 }
163
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800164 out_le32(pdata->pci_vbase + MV64X60_PCI_ERROR_CAUSE, 0);
165 out_le32(pdata->pci_vbase + MV64X60_PCI_ERROR_MASK, 0);
166 out_le32(pdata->pci_vbase + MV64X60_PCI_ERROR_MASK,
167 MV64X60_PCIx_ERR_MASK_VAL);
168
169 if (edac_pci_add_device(pci, pdata->edac_idx) > 0) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300170 edac_dbg(3, "failed edac_pci_add_device()\n");
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800171 goto err;
172 }
173
174 if (edac_op_state == EDAC_OPSTATE_INT) {
175 pdata->irq = platform_get_irq(pdev, 0);
176 res = devm_request_irq(&pdev->dev,
177 pdata->irq,
178 mv64x60_pci_isr,
Michael Opdenacker5c43cbd2014-10-01 12:24:03 +0200179 0,
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800180 "[EDAC] PCI err",
181 pci);
182 if (res < 0) {
183 printk(KERN_ERR "%s: Unable to request irq %d for "
184 "MV64x60 PCI ERR\n", __func__, pdata->irq);
185 res = -ENODEV;
186 goto err2;
187 }
188 printk(KERN_INFO EDAC_MOD_STR " acquired irq %d for PCI Err\n",
189 pdata->irq);
190 }
191
192 devres_remove_group(&pdev->dev, mv64x60_pci_err_probe);
193
194 /* get this far and it's successful */
Joe Perches956b9ba2012-04-29 17:08:39 -0300195 edac_dbg(3, "success\n");
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800196
197 return 0;
198
199err2:
200 edac_pci_del_device(&pdev->dev);
201err:
202 edac_pci_free_ctl_info(pci);
203 devres_release_group(&pdev->dev, mv64x60_pci_err_probe);
204 return res;
205}
206
207static int mv64x60_pci_err_remove(struct platform_device *pdev)
208{
209 struct edac_pci_ctl_info *pci = platform_get_drvdata(pdev);
210
Joe Perches956b9ba2012-04-29 17:08:39 -0300211 edac_dbg(0, "\n");
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800212
213 edac_pci_del_device(&pdev->dev);
214
215 edac_pci_free_ctl_info(pci);
216
217 return 0;
218}
219
220static struct platform_driver mv64x60_pci_err_driver = {
221 .probe = mv64x60_pci_err_probe,
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800222 .remove = mv64x60_pci_err_remove,
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800223 .driver = {
224 .name = "mv64x60_pci_err",
225 }
226};
227
228#endif /* CONFIG_PCI */
229
230/*********************** SRAM err device **********************************/
231static void mv64x60_sram_check(struct edac_device_ctl_info *edac_dev)
232{
233 struct mv64x60_sram_pdata *pdata = edac_dev->pvt_info;
234 u32 cause;
235
236 cause = in_le32(pdata->sram_vbase + MV64X60_SRAM_ERR_CAUSE);
237 if (!cause)
238 return;
239
240 printk(KERN_ERR "Error in internal SRAM\n");
241 printk(KERN_ERR "Cause register: 0x%08x\n", cause);
242 printk(KERN_ERR "Address Low: 0x%08x\n",
243 in_le32(pdata->sram_vbase + MV64X60_SRAM_ERR_ADDR_LO));
244 printk(KERN_ERR "Address High: 0x%08x\n",
245 in_le32(pdata->sram_vbase + MV64X60_SRAM_ERR_ADDR_HI));
246 printk(KERN_ERR "Data Low: 0x%08x\n",
247 in_le32(pdata->sram_vbase + MV64X60_SRAM_ERR_DATA_LO));
248 printk(KERN_ERR "Data High: 0x%08x\n",
249 in_le32(pdata->sram_vbase + MV64X60_SRAM_ERR_DATA_HI));
250 printk(KERN_ERR "Parity: 0x%08x\n",
251 in_le32(pdata->sram_vbase + MV64X60_SRAM_ERR_PARITY));
252 out_le32(pdata->sram_vbase + MV64X60_SRAM_ERR_CAUSE, 0);
253
254 edac_device_handle_ue(edac_dev, 0, 0, edac_dev->ctl_name);
255}
256
257static irqreturn_t mv64x60_sram_isr(int irq, void *dev_id)
258{
259 struct edac_device_ctl_info *edac_dev = dev_id;
260 struct mv64x60_sram_pdata *pdata = edac_dev->pvt_info;
261 u32 cause;
262
263 cause = in_le32(pdata->sram_vbase + MV64X60_SRAM_ERR_CAUSE);
264 if (!cause)
265 return IRQ_NONE;
266
267 mv64x60_sram_check(edac_dev);
268
269 return IRQ_HANDLED;
270}
271
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800272static int mv64x60_sram_err_probe(struct platform_device *pdev)
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800273{
274 struct edac_device_ctl_info *edac_dev;
275 struct mv64x60_sram_pdata *pdata;
276 struct resource *r;
277 int res = 0;
278
279 if (!devres_open_group(&pdev->dev, mv64x60_sram_err_probe, GFP_KERNEL))
280 return -ENOMEM;
281
282 edac_dev = edac_device_alloc_ctl_info(sizeof(*pdata),
283 "sram", 1, NULL, 0, 0, NULL, 0,
284 edac_dev_idx);
285 if (!edac_dev) {
286 devres_release_group(&pdev->dev, mv64x60_sram_err_probe);
287 return -ENOMEM;
288 }
289
290 pdata = edac_dev->pvt_info;
291 pdata->name = "mv64x60_sram_err";
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800292 edac_dev->dev = &pdev->dev;
293 platform_set_drvdata(pdev, edac_dev);
Kay Sievers031d5512009-03-24 16:38:21 -0700294 edac_dev->dev_name = dev_name(&pdev->dev);
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800295
296 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
297 if (!r) {
298 printk(KERN_ERR "%s: Unable to get resource for "
299 "SRAM err regs\n", __func__);
300 res = -ENOENT;
301 goto err;
302 }
303
304 if (!devm_request_mem_region(&pdev->dev,
305 r->start,
Julia Lawall30a61ff2009-09-23 15:57:26 -0700306 resource_size(r),
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800307 pdata->name)) {
308 printk(KERN_ERR "%s: Error while request mem region\n",
309 __func__);
310 res = -EBUSY;
311 goto err;
312 }
313
314 pdata->sram_vbase = devm_ioremap(&pdev->dev,
315 r->start,
Julia Lawall30a61ff2009-09-23 15:57:26 -0700316 resource_size(r));
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800317 if (!pdata->sram_vbase) {
318 printk(KERN_ERR "%s: Unable to setup SRAM err regs\n",
319 __func__);
320 res = -ENOMEM;
321 goto err;
322 }
323
324 /* setup SRAM err registers */
325 out_le32(pdata->sram_vbase + MV64X60_SRAM_ERR_CAUSE, 0);
326
327 edac_dev->mod_name = EDAC_MOD_STR;
328 edac_dev->ctl_name = pdata->name;
329
330 if (edac_op_state == EDAC_OPSTATE_POLL)
331 edac_dev->edac_check = mv64x60_sram_check;
332
333 pdata->edac_idx = edac_dev_idx++;
334
335 if (edac_device_add_device(edac_dev) > 0) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300336 edac_dbg(3, "failed edac_device_add_device()\n");
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800337 goto err;
338 }
339
340 if (edac_op_state == EDAC_OPSTATE_INT) {
341 pdata->irq = platform_get_irq(pdev, 0);
342 res = devm_request_irq(&pdev->dev,
343 pdata->irq,
344 mv64x60_sram_isr,
Michael Opdenacker5c43cbd2014-10-01 12:24:03 +0200345 0,
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800346 "[EDAC] SRAM err",
347 edac_dev);
348 if (res < 0) {
349 printk(KERN_ERR
350 "%s: Unable to request irq %d for "
351 "MV64x60 SRAM ERR\n", __func__, pdata->irq);
352 res = -ENODEV;
353 goto err2;
354 }
355
356 printk(KERN_INFO EDAC_MOD_STR " acquired irq %d for SRAM Err\n",
357 pdata->irq);
358 }
359
360 devres_remove_group(&pdev->dev, mv64x60_sram_err_probe);
361
362 /* get this far and it's successful */
Joe Perches956b9ba2012-04-29 17:08:39 -0300363 edac_dbg(3, "success\n");
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800364
365 return 0;
366
367err2:
368 edac_device_del_device(&pdev->dev);
369err:
370 devres_release_group(&pdev->dev, mv64x60_sram_err_probe);
371 edac_device_free_ctl_info(edac_dev);
372 return res;
373}
374
375static int mv64x60_sram_err_remove(struct platform_device *pdev)
376{
377 struct edac_device_ctl_info *edac_dev = platform_get_drvdata(pdev);
378
Joe Perches956b9ba2012-04-29 17:08:39 -0300379 edac_dbg(0, "\n");
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800380
381 edac_device_del_device(&pdev->dev);
382 edac_device_free_ctl_info(edac_dev);
383
384 return 0;
385}
386
387static struct platform_driver mv64x60_sram_err_driver = {
388 .probe = mv64x60_sram_err_probe,
389 .remove = mv64x60_sram_err_remove,
390 .driver = {
391 .name = "mv64x60_sram_err",
392 }
393};
394
395/*********************** CPU err device **********************************/
396static void mv64x60_cpu_check(struct edac_device_ctl_info *edac_dev)
397{
398 struct mv64x60_cpu_pdata *pdata = edac_dev->pvt_info;
399 u32 cause;
400
401 cause = in_le32(pdata->cpu_vbase[1] + MV64x60_CPU_ERR_CAUSE) &
402 MV64x60_CPU_CAUSE_MASK;
403 if (!cause)
404 return;
405
406 printk(KERN_ERR "Error on CPU interface\n");
407 printk(KERN_ERR "Cause register: 0x%08x\n", cause);
408 printk(KERN_ERR "Address Low: 0x%08x\n",
409 in_le32(pdata->cpu_vbase[0] + MV64x60_CPU_ERR_ADDR_LO));
410 printk(KERN_ERR "Address High: 0x%08x\n",
411 in_le32(pdata->cpu_vbase[0] + MV64x60_CPU_ERR_ADDR_HI));
412 printk(KERN_ERR "Data Low: 0x%08x\n",
413 in_le32(pdata->cpu_vbase[1] + MV64x60_CPU_ERR_DATA_LO));
414 printk(KERN_ERR "Data High: 0x%08x\n",
415 in_le32(pdata->cpu_vbase[1] + MV64x60_CPU_ERR_DATA_HI));
416 printk(KERN_ERR "Parity: 0x%08x\n",
417 in_le32(pdata->cpu_vbase[1] + MV64x60_CPU_ERR_PARITY));
418 out_le32(pdata->cpu_vbase[1] + MV64x60_CPU_ERR_CAUSE, 0);
419
420 edac_device_handle_ue(edac_dev, 0, 0, edac_dev->ctl_name);
421}
422
423static irqreturn_t mv64x60_cpu_isr(int irq, void *dev_id)
424{
425 struct edac_device_ctl_info *edac_dev = dev_id;
426 struct mv64x60_cpu_pdata *pdata = edac_dev->pvt_info;
427 u32 cause;
428
429 cause = in_le32(pdata->cpu_vbase[1] + MV64x60_CPU_ERR_CAUSE) &
430 MV64x60_CPU_CAUSE_MASK;
431 if (!cause)
432 return IRQ_NONE;
433
434 mv64x60_cpu_check(edac_dev);
435
436 return IRQ_HANDLED;
437}
438
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800439static int mv64x60_cpu_err_probe(struct platform_device *pdev)
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800440{
441 struct edac_device_ctl_info *edac_dev;
442 struct resource *r;
443 struct mv64x60_cpu_pdata *pdata;
444 int res = 0;
445
446 if (!devres_open_group(&pdev->dev, mv64x60_cpu_err_probe, GFP_KERNEL))
447 return -ENOMEM;
448
449 edac_dev = edac_device_alloc_ctl_info(sizeof(*pdata),
450 "cpu", 1, NULL, 0, 0, NULL, 0,
451 edac_dev_idx);
452 if (!edac_dev) {
453 devres_release_group(&pdev->dev, mv64x60_cpu_err_probe);
454 return -ENOMEM;
455 }
456
457 pdata = edac_dev->pvt_info;
458 pdata->name = "mv64x60_cpu_err";
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800459 edac_dev->dev = &pdev->dev;
460 platform_set_drvdata(pdev, edac_dev);
Kay Sievers031d5512009-03-24 16:38:21 -0700461 edac_dev->dev_name = dev_name(&pdev->dev);
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800462
463 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
464 if (!r) {
465 printk(KERN_ERR "%s: Unable to get resource for "
466 "CPU err regs\n", __func__);
467 res = -ENOENT;
468 goto err;
469 }
470
471 if (!devm_request_mem_region(&pdev->dev,
472 r->start,
Julia Lawall30a61ff2009-09-23 15:57:26 -0700473 resource_size(r),
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800474 pdata->name)) {
475 printk(KERN_ERR "%s: Error while requesting mem region\n",
476 __func__);
477 res = -EBUSY;
478 goto err;
479 }
480
481 pdata->cpu_vbase[0] = devm_ioremap(&pdev->dev,
482 r->start,
Julia Lawall30a61ff2009-09-23 15:57:26 -0700483 resource_size(r));
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800484 if (!pdata->cpu_vbase[0]) {
485 printk(KERN_ERR "%s: Unable to setup CPU err regs\n", __func__);
486 res = -ENOMEM;
487 goto err;
488 }
489
490 r = platform_get_resource(pdev, IORESOURCE_MEM, 1);
491 if (!r) {
492 printk(KERN_ERR "%s: Unable to get resource for "
493 "CPU err regs\n", __func__);
494 res = -ENOENT;
495 goto err;
496 }
497
498 if (!devm_request_mem_region(&pdev->dev,
499 r->start,
Julia Lawall30a61ff2009-09-23 15:57:26 -0700500 resource_size(r),
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800501 pdata->name)) {
502 printk(KERN_ERR "%s: Error while requesting mem region\n",
503 __func__);
504 res = -EBUSY;
505 goto err;
506 }
507
508 pdata->cpu_vbase[1] = devm_ioremap(&pdev->dev,
509 r->start,
Julia Lawall30a61ff2009-09-23 15:57:26 -0700510 resource_size(r));
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800511 if (!pdata->cpu_vbase[1]) {
512 printk(KERN_ERR "%s: Unable to setup CPU err regs\n", __func__);
513 res = -ENOMEM;
514 goto err;
515 }
516
517 /* setup CPU err registers */
518 out_le32(pdata->cpu_vbase[1] + MV64x60_CPU_ERR_CAUSE, 0);
519 out_le32(pdata->cpu_vbase[1] + MV64x60_CPU_ERR_MASK, 0);
520 out_le32(pdata->cpu_vbase[1] + MV64x60_CPU_ERR_MASK, 0x000000ff);
521
522 edac_dev->mod_name = EDAC_MOD_STR;
523 edac_dev->ctl_name = pdata->name;
524 if (edac_op_state == EDAC_OPSTATE_POLL)
525 edac_dev->edac_check = mv64x60_cpu_check;
526
527 pdata->edac_idx = edac_dev_idx++;
528
529 if (edac_device_add_device(edac_dev) > 0) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300530 edac_dbg(3, "failed edac_device_add_device()\n");
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800531 goto err;
532 }
533
534 if (edac_op_state == EDAC_OPSTATE_INT) {
535 pdata->irq = platform_get_irq(pdev, 0);
536 res = devm_request_irq(&pdev->dev,
537 pdata->irq,
538 mv64x60_cpu_isr,
Michael Opdenacker5c43cbd2014-10-01 12:24:03 +0200539 0,
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800540 "[EDAC] CPU err",
541 edac_dev);
542 if (res < 0) {
543 printk(KERN_ERR
544 "%s: Unable to request irq %d for MV64x60 "
545 "CPU ERR\n", __func__, pdata->irq);
546 res = -ENODEV;
547 goto err2;
548 }
549
550 printk(KERN_INFO EDAC_MOD_STR
551 " acquired irq %d for CPU Err\n", pdata->irq);
552 }
553
554 devres_remove_group(&pdev->dev, mv64x60_cpu_err_probe);
555
556 /* get this far and it's successful */
Joe Perches956b9ba2012-04-29 17:08:39 -0300557 edac_dbg(3, "success\n");
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800558
559 return 0;
560
561err2:
562 edac_device_del_device(&pdev->dev);
563err:
564 devres_release_group(&pdev->dev, mv64x60_cpu_err_probe);
565 edac_device_free_ctl_info(edac_dev);
566 return res;
567}
568
569static int mv64x60_cpu_err_remove(struct platform_device *pdev)
570{
571 struct edac_device_ctl_info *edac_dev = platform_get_drvdata(pdev);
572
Joe Perches956b9ba2012-04-29 17:08:39 -0300573 edac_dbg(0, "\n");
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800574
575 edac_device_del_device(&pdev->dev);
576 edac_device_free_ctl_info(edac_dev);
577 return 0;
578}
579
580static struct platform_driver mv64x60_cpu_err_driver = {
581 .probe = mv64x60_cpu_err_probe,
582 .remove = mv64x60_cpu_err_remove,
583 .driver = {
584 .name = "mv64x60_cpu_err",
585 }
586};
587
588/*********************** DRAM err device **********************************/
589
590static void mv64x60_mc_check(struct mem_ctl_info *mci)
591{
592 struct mv64x60_mc_pdata *pdata = mci->pvt_info;
593 u32 reg;
594 u32 err_addr;
595 u32 sdram_ecc;
596 u32 comp_ecc;
597 u32 syndrome;
598
599 reg = in_le32(pdata->mc_vbase + MV64X60_SDRAM_ERR_ADDR);
600 if (!reg)
601 return;
602
603 err_addr = reg & ~0x3;
604 sdram_ecc = in_le32(pdata->mc_vbase + MV64X60_SDRAM_ERR_ECC_RCVD);
605 comp_ecc = in_le32(pdata->mc_vbase + MV64X60_SDRAM_ERR_ECC_CALC);
606 syndrome = sdram_ecc ^ comp_ecc;
607
608 /* first bit clear in ECC Err Reg, 1 bit error, correctable by HW */
609 if (!(reg & 0x1))
Mauro Carvalho Chehab9eb07a72012-06-04 13:27:43 -0300610 edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, 1,
Mauro Carvalho Chehaba583ac62012-04-16 15:11:20 -0300611 err_addr >> PAGE_SHIFT,
612 err_addr & PAGE_MASK, syndrome,
613 0, 0, -1,
Mauro Carvalho Chehab03f7eae2012-06-04 11:29:25 -0300614 mci->ctl_name, "");
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800615 else /* 2 bit error, UE */
Mauro Carvalho Chehab9eb07a72012-06-04 13:27:43 -0300616 edac_mc_handle_error(HW_EVENT_ERR_UNCORRECTED, mci, 1,
Mauro Carvalho Chehaba583ac62012-04-16 15:11:20 -0300617 err_addr >> PAGE_SHIFT,
618 err_addr & PAGE_MASK, 0,
619 0, 0, -1,
Mauro Carvalho Chehab03f7eae2012-06-04 11:29:25 -0300620 mci->ctl_name, "");
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800621
622 /* clear the error */
623 out_le32(pdata->mc_vbase + MV64X60_SDRAM_ERR_ADDR, 0);
624}
625
626static irqreturn_t mv64x60_mc_isr(int irq, void *dev_id)
627{
628 struct mem_ctl_info *mci = dev_id;
629 struct mv64x60_mc_pdata *pdata = mci->pvt_info;
630 u32 reg;
631
632 reg = in_le32(pdata->mc_vbase + MV64X60_SDRAM_ERR_ADDR);
633 if (!reg)
634 return IRQ_NONE;
635
636 /* writing 0's to the ECC err addr in check function clears irq */
637 mv64x60_mc_check(mci);
638
639 return IRQ_HANDLED;
640}
641
642static void get_total_mem(struct mv64x60_mc_pdata *pdata)
643{
644 struct device_node *np = NULL;
645 const unsigned int *reg;
646
647 np = of_find_node_by_type(NULL, "memory");
648 if (!np)
649 return;
650
Dave Jiang596d3942008-07-25 01:49:13 -0700651 reg = of_get_property(np, "reg", NULL);
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800652
653 pdata->total_mem = reg[1];
654}
655
656static void mv64x60_init_csrows(struct mem_ctl_info *mci,
657 struct mv64x60_mc_pdata *pdata)
658{
659 struct csrow_info *csrow;
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300660 struct dimm_info *dimm;
661
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800662 u32 devtype;
663 u32 ctl;
664
665 get_total_mem(pdata);
666
667 ctl = in_le32(pdata->mc_vbase + MV64X60_SDRAM_CONFIG);
668
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300669 csrow = mci->csrows[0];
670 dimm = csrow->channels[0]->dimm;
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300671
672 dimm->nr_pages = pdata->total_mem >> PAGE_SHIFT;
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300673 dimm->grain = 8;
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800674
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300675 dimm->mtype = (ctl & MV64X60_SDRAM_REGISTERED) ? MEM_RDDR : MEM_DDR;
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800676
677 devtype = (ctl >> 20) & 0x3;
678 switch (devtype) {
679 case 0x0:
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300680 dimm->dtype = DEV_X32;
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800681 break;
682 case 0x2: /* could be X8 too, but no way to tell */
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300683 dimm->dtype = DEV_X16;
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800684 break;
685 case 0x3:
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300686 dimm->dtype = DEV_X4;
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800687 break;
688 default:
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300689 dimm->dtype = DEV_UNKNOWN;
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800690 break;
691 }
692
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300693 dimm->edac_mode = EDAC_SECDED;
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800694}
695
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -0800696static int mv64x60_mc_err_probe(struct platform_device *pdev)
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800697{
698 struct mem_ctl_info *mci;
Mauro Carvalho Chehaba583ac62012-04-16 15:11:20 -0300699 struct edac_mc_layer layers[2];
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800700 struct mv64x60_mc_pdata *pdata;
701 struct resource *r;
702 u32 ctl;
703 int res = 0;
704
705 if (!devres_open_group(&pdev->dev, mv64x60_mc_err_probe, GFP_KERNEL))
706 return -ENOMEM;
707
Mauro Carvalho Chehaba583ac62012-04-16 15:11:20 -0300708 layers[0].type = EDAC_MC_LAYER_CHIP_SELECT;
709 layers[0].size = 1;
710 layers[0].is_virt_csrow = true;
711 layers[1].type = EDAC_MC_LAYER_CHANNEL;
712 layers[1].size = 1;
713 layers[1].is_virt_csrow = false;
Mauro Carvalho Chehabca0907b2012-05-02 14:37:00 -0300714 mci = edac_mc_alloc(edac_mc_idx, ARRAY_SIZE(layers), layers,
Mauro Carvalho Chehaba583ac62012-04-16 15:11:20 -0300715 sizeof(struct mv64x60_mc_pdata));
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800716 if (!mci) {
717 printk(KERN_ERR "%s: No memory for CPU err\n", __func__);
718 devres_release_group(&pdev->dev, mv64x60_mc_err_probe);
719 return -ENOMEM;
720 }
721
722 pdata = mci->pvt_info;
Mauro Carvalho Chehabfd687502012-03-16 07:44:18 -0300723 mci->pdev = &pdev->dev;
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800724 platform_set_drvdata(pdev, mci);
725 pdata->name = "mv64x60_mc_err";
Kay Sievers031d5512009-03-24 16:38:21 -0700726 mci->dev_name = dev_name(&pdev->dev);
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800727 pdata->edac_idx = edac_mc_idx++;
728
729 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
730 if (!r) {
731 printk(KERN_ERR "%s: Unable to get resource for "
732 "MC err regs\n", __func__);
733 res = -ENOENT;
734 goto err;
735 }
736
737 if (!devm_request_mem_region(&pdev->dev,
738 r->start,
Julia Lawall30a61ff2009-09-23 15:57:26 -0700739 resource_size(r),
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800740 pdata->name)) {
741 printk(KERN_ERR "%s: Error while requesting mem region\n",
742 __func__);
743 res = -EBUSY;
744 goto err;
745 }
746
747 pdata->mc_vbase = devm_ioremap(&pdev->dev,
748 r->start,
Julia Lawall30a61ff2009-09-23 15:57:26 -0700749 resource_size(r));
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800750 if (!pdata->mc_vbase) {
751 printk(KERN_ERR "%s: Unable to setup MC err regs\n", __func__);
752 res = -ENOMEM;
753 goto err;
754 }
755
756 ctl = in_le32(pdata->mc_vbase + MV64X60_SDRAM_CONFIG);
757 if (!(ctl & MV64X60_SDRAM_ECC)) {
758 /* Non-ECC RAM? */
759 printk(KERN_WARNING "%s: No ECC DIMMs discovered\n", __func__);
760 res = -ENODEV;
761 goto err2;
762 }
763
Joe Perches956b9ba2012-04-29 17:08:39 -0300764 edac_dbg(3, "init mci\n");
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800765 mci->mtype_cap = MEM_FLAG_RDDR | MEM_FLAG_DDR;
766 mci->edac_ctl_cap = EDAC_FLAG_NONE | EDAC_FLAG_SECDED;
767 mci->edac_cap = EDAC_FLAG_SECDED;
768 mci->mod_name = EDAC_MOD_STR;
769 mci->mod_ver = MV64x60_REVISION;
770 mci->ctl_name = mv64x60_ctl_name;
771
772 if (edac_op_state == EDAC_OPSTATE_POLL)
773 mci->edac_check = mv64x60_mc_check;
774
775 mci->ctl_page_to_phys = NULL;
776
777 mci->scrub_mode = SCRUB_SW_SRC;
778
779 mv64x60_init_csrows(mci, pdata);
780
781 /* setup MC registers */
782 out_le32(pdata->mc_vbase + MV64X60_SDRAM_ERR_ADDR, 0);
783 ctl = in_le32(pdata->mc_vbase + MV64X60_SDRAM_ERR_ECC_CNTL);
784 ctl = (ctl & 0xff00ffff) | 0x10000;
785 out_le32(pdata->mc_vbase + MV64X60_SDRAM_ERR_ECC_CNTL, ctl);
786
Dan Carpenter30263b42015-01-28 22:13:51 +0300787 res = edac_mc_add_mc(mci);
788 if (res) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300789 edac_dbg(3, "failed edac_mc_add_mc()\n");
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800790 goto err;
791 }
792
793 if (edac_op_state == EDAC_OPSTATE_INT) {
794 /* acquire interrupt that reports errors */
795 pdata->irq = platform_get_irq(pdev, 0);
796 res = devm_request_irq(&pdev->dev,
797 pdata->irq,
798 mv64x60_mc_isr,
Michael Opdenacker5c43cbd2014-10-01 12:24:03 +0200799 0,
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800800 "[EDAC] MC err",
801 mci);
802 if (res < 0) {
803 printk(KERN_ERR "%s: Unable to request irq %d for "
804 "MV64x60 DRAM ERR\n", __func__, pdata->irq);
805 res = -ENODEV;
806 goto err2;
807 }
808
809 printk(KERN_INFO EDAC_MOD_STR " acquired irq %d for MC Err\n",
810 pdata->irq);
811 }
812
813 /* get this far and it's successful */
Joe Perches956b9ba2012-04-29 17:08:39 -0300814 edac_dbg(3, "success\n");
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800815
816 return 0;
817
818err2:
819 edac_mc_del_mc(&pdev->dev);
820err:
821 devres_release_group(&pdev->dev, mv64x60_mc_err_probe);
822 edac_mc_free(mci);
823 return res;
824}
825
826static int mv64x60_mc_err_remove(struct platform_device *pdev)
827{
828 struct mem_ctl_info *mci = platform_get_drvdata(pdev);
829
Joe Perches956b9ba2012-04-29 17:08:39 -0300830 edac_dbg(0, "\n");
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800831
832 edac_mc_del_mc(&pdev->dev);
833 edac_mc_free(mci);
834 return 0;
835}
836
837static struct platform_driver mv64x60_mc_err_driver = {
838 .probe = mv64x60_mc_err_probe,
839 .remove = mv64x60_mc_err_remove,
840 .driver = {
841 .name = "mv64x60_mc_err",
842 }
843};
844
Thierry Reding768ce422015-12-02 17:18:58 +0100845static struct platform_driver * const drivers[] = {
846 &mv64x60_mc_err_driver,
847 &mv64x60_cpu_err_driver,
848 &mv64x60_sram_err_driver,
849#ifdef CONFIG_PCI
850 &mv64x60_pci_err_driver,
851#endif
852};
853
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800854static int __init mv64x60_edac_init(void)
855{
856 int ret = 0;
857
858 printk(KERN_INFO "Marvell MV64x60 EDAC driver " MV64x60_REVISION "\n");
859 printk(KERN_INFO "\t(C) 2006-2007 MontaVista Software\n");
860 /* make sure error reporting method is sane */
861 switch (edac_op_state) {
862 case EDAC_OPSTATE_POLL:
863 case EDAC_OPSTATE_INT:
864 break;
865 default:
866 edac_op_state = EDAC_OPSTATE_INT;
867 break;
868 }
869
Thierry Reding768ce422015-12-02 17:18:58 +0100870 return platform_register_drivers(drivers, ARRAY_SIZE(drivers));
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800871}
872module_init(mv64x60_edac_init);
873
874static void __exit mv64x60_edac_exit(void)
875{
Thierry Reding768ce422015-12-02 17:18:58 +0100876 platform_unregister_drivers(drivers, ARRAY_SIZE(drivers));
Dave Jiang4f4aeea2008-02-07 00:14:56 -0800877}
878module_exit(mv64x60_edac_exit);
879
880MODULE_LICENSE("GPL");
881MODULE_AUTHOR("Montavista Software, Inc.");
882module_param(edac_op_state, int, 0444);
883MODULE_PARM_DESC(edac_op_state,
884 "EDAC Error Reporting state: 0=Poll, 2=Interrupt");