blob: 28b238eecefcc9da7496d395b908eb3b09c0707c [file] [log] [blame]
Ralf Baechlef65aad42012-10-17 00:39:09 +02001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
David Daneye1ced092012-11-15 13:58:59 -08006 * Copyright (C) 2012 Cavium, Inc.
Ralf Baechlef65aad42012-10-17 00:39:09 +02007 * Copyright (C) 2009 Wind River Systems,
8 * written by Ralf Baechle <ralf@linux-mips.org>
9 */
10#include <linux/module.h>
11#include <linux/init.h>
12#include <linux/slab.h>
13#include <linux/io.h>
14#include <linux/edac.h>
15
16#include <asm/octeon/cvmx.h>
17#include <asm/octeon/cvmx-npi-defs.h>
18#include <asm/octeon/cvmx-pci-defs.h>
19#include <asm/octeon/octeon.h>
20
Ralf Baechlef65aad42012-10-17 00:39:09 +020021#include "edac_module.h"
22
David Daneye1ced092012-11-15 13:58:59 -080023static void octeon_pci_poll(struct edac_pci_ctl_info *pci)
Ralf Baechlef65aad42012-10-17 00:39:09 +020024{
25 union cvmx_pci_cfg01 cfg01;
26
27 cfg01.u32 = octeon_npi_read32(CVMX_NPI_PCI_CFG01);
28 if (cfg01.s.dpe) { /* Detected parity error */
29 edac_pci_handle_pe(pci, pci->ctl_name);
30 cfg01.s.dpe = 1; /* Reset */
31 octeon_npi_write32(CVMX_NPI_PCI_CFG01, cfg01.u32);
32 }
33 if (cfg01.s.sse) {
34 edac_pci_handle_npe(pci, "Signaled System Error");
35 cfg01.s.sse = 1; /* Reset */
36 octeon_npi_write32(CVMX_NPI_PCI_CFG01, cfg01.u32);
37 }
38 if (cfg01.s.rma) {
39 edac_pci_handle_npe(pci, "Received Master Abort");
40 cfg01.s.rma = 1; /* Reset */
41 octeon_npi_write32(CVMX_NPI_PCI_CFG01, cfg01.u32);
42 }
43 if (cfg01.s.rta) {
44 edac_pci_handle_npe(pci, "Received Target Abort");
45 cfg01.s.rta = 1; /* Reset */
46 octeon_npi_write32(CVMX_NPI_PCI_CFG01, cfg01.u32);
47 }
48 if (cfg01.s.sta) {
49 edac_pci_handle_npe(pci, "Signaled Target Abort");
50 cfg01.s.sta = 1; /* Reset */
51 octeon_npi_write32(CVMX_NPI_PCI_CFG01, cfg01.u32);
52 }
53 if (cfg01.s.mdpe) {
54 edac_pci_handle_npe(pci, "Master Data Parity Error");
55 cfg01.s.mdpe = 1; /* Reset */
56 octeon_npi_write32(CVMX_NPI_PCI_CFG01, cfg01.u32);
57 }
Ralf Baechlef65aad42012-10-17 00:39:09 +020058}
59
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -080060static int octeon_pci_probe(struct platform_device *pdev)
Ralf Baechlef65aad42012-10-17 00:39:09 +020061{
62 struct edac_pci_ctl_info *pci;
63 int res = 0;
64
65 pci = edac_pci_alloc_ctl_info(0, "octeon_pci_err");
66 if (!pci)
67 return -ENOMEM;
68
69 pci->dev = &pdev->dev;
70 platform_set_drvdata(pdev, pci);
71 pci->dev_name = dev_name(&pdev->dev);
72
73 pci->mod_name = "octeon-pci";
74 pci->ctl_name = "octeon_pci_err";
David Daneye1ced092012-11-15 13:58:59 -080075 pci->edac_check = octeon_pci_poll;
Ralf Baechlef65aad42012-10-17 00:39:09 +020076
77 if (edac_pci_add_device(pci, 0) > 0) {
78 pr_err("%s: edac_pci_add_device() failed\n", __func__);
79 goto err;
80 }
81
82 return 0;
83
84err:
85 edac_pci_free_ctl_info(pci);
86
87 return res;
88}
89
David Daneye1ced092012-11-15 13:58:59 -080090static int octeon_pci_remove(struct platform_device *pdev)
Ralf Baechlef65aad42012-10-17 00:39:09 +020091{
92 struct edac_pci_ctl_info *pci = platform_get_drvdata(pdev);
93
94 edac_pci_del_device(&pdev->dev);
95 edac_pci_free_ctl_info(pci);
96
97 return 0;
98}
99
David Daneye1ced092012-11-15 13:58:59 -0800100static struct platform_driver octeon_pci_driver = {
101 .probe = octeon_pci_probe,
102 .remove = octeon_pci_remove,
Ralf Baechlef65aad42012-10-17 00:39:09 +0200103 .driver = {
David Daneye1ced092012-11-15 13:58:59 -0800104 .name = "octeon_pci_edac",
Ralf Baechlef65aad42012-10-17 00:39:09 +0200105 }
106};
David Daneye1ced092012-11-15 13:58:59 -0800107module_platform_driver(octeon_pci_driver);
Ralf Baechlef65aad42012-10-17 00:39:09 +0200108
109MODULE_LICENSE("GPL");
110MODULE_AUTHOR("Ralf Baechle <ralf@linux-mips.org>");