#include <linux/module.h>
#include <asm/octeon/cvmx.h>
#include <asm/octeon/cvmx-npi-defs.h>
#include <asm/octeon/cvmx-pci-defs.h>
#include <asm/octeon/octeon.h>
static void octeon_pci_poll(struct edac_pci_ctl_info *pci)
union cvmx_pci_cfg01 cfg01;
cfg01.u32 = octeon_npi_read32(CVMX_NPI_PCI_CFG01);
edac_pci_handle_pe(pci, pci->ctl_name);
octeon_npi_write32(CVMX_NPI_PCI_CFG01, cfg01.u32);
edac_pci_handle_npe(pci, "Signaled System Error");
octeon_npi_write32(CVMX_NPI_PCI_CFG01, cfg01.u32);
edac_pci_handle_npe(pci, "Received Master Abort");
octeon_npi_write32(CVMX_NPI_PCI_CFG01, cfg01.u32);
edac_pci_handle_npe(pci, "Received Target Abort");
octeon_npi_write32(CVMX_NPI_PCI_CFG01, cfg01.u32);
edac_pci_handle_npe(pci, "Signaled Target Abort");
octeon_npi_write32(CVMX_NPI_PCI_CFG01, cfg01.u32);
edac_pci_handle_npe(pci, "Master Data Parity Error");
octeon_npi_write32(CVMX_NPI_PCI_CFG01, cfg01.u32);
static int octeon_pci_probe(struct platform_device *pdev)
struct edac_pci_ctl_info *pci;