Bug 219191

Summary: [RHEL5] Include PCIe AER support
Product: Red Hat Enterprise Linux 5 Reporter: Andy Gospodarek <agospoda>
Component: kernelAssignee: Prarit Bhargava <prarit>
Status: CLOSED DUPLICATE QA Contact: Brian Brock <bbrock>
Severity: high Docs Contact:
Priority: high    
Version: 5.0CC: agospoda, andrew.patterson, andriusb, bzeranski, jbaron, jfeeney, jjarvis, jtluka, ltroan, martinez, matt_domsch, noboru.obata.ar, peterm, prarit, rpacheco, sghosh
Target Milestone: alphaKeywords: FutureFeature, Reopened
Target Release: 5.5   
Hardware: x86_64   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Enhancement
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2009-10-21 17:00:50 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 513923, 513924, 513927, 513928, 513930, 517093, 525215, 528540, 533192    
Attachments:
Description Flags
upstream.patch none

Comment 1 Andy Gospodarek 2007-03-08 15:28:42 UTC
Created attachment 149570 [details]
upstream.patch

The upstream patch that adds this support seems to apply cleanly.  I'll post
here when added to my test kernels.

Comment 2 Andy Gospodarek 2007-03-08 22:38:43 UTC
This patch had been encorporated into my rhel5 test kernels available here:

http://people.redhat.com/agospoda/#rhel5

Comment 3 Andy Gospodarek 2008-04-07 15:06:35 UTC
I haven't seen any interest in this, so I'm closing it as NOTABUG.

Comment 4 Andrius Benokraitis 2009-08-27 14:01:39 UTC
Re-opening this bug, since we have multiple partners requesting this support for RHEL 5.5.

Comment 9 Andrew Patterson 2009-10-01 18:52:21 UTC
The above patch looks like the original three patches that initially implemented AER support for 2.6.16.  There have been numerous bug fixes and feature additions since then that should probably be incorporated.  Please look at the backporting notes in BZ 513915 for a list of additional possible patches that you might consider for inclusion.

Comment 15 Matt Domsch 2009-12-12 03:59:12 UTC
If you do add this to RHEL5, please be sure to include this patch now in linux-next.

commit 0584396157ad2d008e2cc76b4ed6254151183a25
Author: Matt Domsch <Matt_Domsch>
Date:   Mon Nov 2 11:51:24 2009 -0600

    PCI: PCIe AER: honor ACPI HEST FIRMWARE FIRST mode

    Feedback from Hidetoshi Seto and Kenji Kaneshige incorporated.  This
    correctly handles PCI-X bridges, PCIe root ports and endpoints, and
    prints debug messages when invalid/reserved types are found in the
    HEST.  PCI devices not in domain/segment 0 are not represented in
    HEST, thus will be ignored.

    Today, the PCIe Advanced Error Reporting (AER) driver attaches itself
    to every PCIe root port for which BIOS reports it should, via ACPI
    _OSC.

    However, _OSC alone is insufficient for newer BIOSes.  Part of ACPI
    4.0 is the new APEI (ACPI Platform Error Interfaces) which is a way
    for OS and BIOS to handshake over which errors for which components
    each will handle.  One table in ACPI 4.0 is the Hardware Error Source
    Table (HEST), where BIOS can define that errors for certain PCIe
    devices (or all devices), should be handled by BIOS ("Firmware First
    mode"), rather than be handled by the OS.

    Dell PowerEdge 11G server BIOS defines Firmware First mode in HEST, so
    that it may manage such errors, log them to the System Event Log, and
    possibly take other actions.  The aer driver should honor this, and
    not attach itself to devices noted as such.

    Furthermore, Kenji Kaneshige reminded us to disallow changing the AER
    registers when respecting Firmware First mode.  Platform firmware is
    expected to manage these, and if changes to them are allowed, it could
    break that firmware's behavior.

    The HEST parsing code may be replaced in the future by a more
    feature-rich implementation.  This patch provides the minimum needed
    to prevent breakage until that implementation is available.

    Reviewed-by: Kenji Kaneshige <kaneshige.kenji.com>
    Reviewed-by: Hidetoshi Seto <seto.hidetoshi.com>
    Signed-off-by: Matt Domsch <Matt_Domsch>
    Signed-off-by: Jesse Barnes <jbarnes>