PCI-Express AER implemetation: AER core and aerdriver
Patch 3 implements the core part of PCI-Express AER and aerdrv port service driver. When a root port service device is probed, the aerdrv will call request_irq to register irq handler for AER error interrupt. When a device sends an PCI-Express error message to the root port, the root port will trigger an interrupt, by either MSI or IO-APIC, then kernel would run the irq handler. The handler collects root error status register and schedules a work. The work will call the core part to process the error based on its type (Correctable/non-fatal/fatal). As for Correctable errors, the patch chooses to just clear the correctable error status register of the device. As for the non-fatal error, the patch follows generic PCI error handler rules to call the error callback functions of the endpoint's driver. If the device is a bridge, the patch chooses to broadcast the error to downstream devices. As for the fatal error, the patch resets the pci-express link and follows generic PCI error handler rules to call the error callback functions of the endpoint's driver. If the device is a bridge, the patch chooses to broadcast the error to downstream devices. Signed-off-by:Zhang Yanmin <yanmin.zhang@intel.com> Signed-off-by:
Greg Kroah-Hartman <gregkh@suse.de>
Showing
- drivers/pci/pcie/Kconfig 1 addition, 0 deletionsdrivers/pci/pcie/Kconfig
- drivers/pci/pcie/Makefile 3 additions, 0 deletionsdrivers/pci/pcie/Makefile
- drivers/pci/pcie/aer/Kconfig 12 additions, 0 deletionsdrivers/pci/pcie/aer/Kconfig
- drivers/pci/pcie/aer/Makefile 8 additions, 0 deletionsdrivers/pci/pcie/aer/Makefile
- drivers/pci/pcie/aer/aerdrv.c 346 additions, 0 deletionsdrivers/pci/pcie/aer/aerdrv.c
- drivers/pci/pcie/aer/aerdrv.h 125 additions, 0 deletionsdrivers/pci/pcie/aer/aerdrv.h
- drivers/pci/pcie/aer/aerdrv_acpi.c 68 additions, 0 deletionsdrivers/pci/pcie/aer/aerdrv_acpi.c
- drivers/pci/pcie/aer/aerdrv_core.c 757 additions, 0 deletionsdrivers/pci/pcie/aer/aerdrv_core.c
- drivers/pci/pcie/aer/aerdrv_errprint.c 248 additions, 0 deletionsdrivers/pci/pcie/aer/aerdrv_errprint.c
- include/linux/aer.h 24 additions, 0 deletionsinclude/linux/aer.h
- include/linux/pcieport_if.h 6 additions, 0 deletionsinclude/linux/pcieport_if.h
Loading
Please register or sign in to comment