lkml.org 
[lkml]   [2013]   [Feb]   [20]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH EDAC 4/6] ghes_edac: Make it compliant with UEFI spec 2.3.1
    Date
    The UEFI spec defines the memory error types ans the bits that
    validate each field on the memory error record, at
    Appendix N om items N.2.5 (Memory Error Section) and
    N.2.11 (Error Status). Make the error description compliant with
    it, only showing the valid fields.

    The EDAC error log is now properly reporting the error:

    [ 55.058218] {1}[Hardware Error]: Hardware error from APEI Generic Hardware Error Source: 0
    [ 55.067450] {1}[Hardware Error]: APEI generic hardware error status
    [ 55.074445] {1}[Hardware Error]: severity: 2, corrected
    [ 55.080284] {1}[Hardware Error]: section: 0, severity: 2, corrected
    [ 55.087287] {1}[Hardware Error]: flags: 0x01
    [ 55.092081] {1}[Hardware Error]: primary
    [ 55.096463] {1}[Hardware Error]: section_type: memory error
    [ 55.102707] {1}[Hardware Error]: error_status: 0x0000000000000400
    [ 55.109520] {1}[Hardware Error]: physical_address: 0x0000000809f56000
    [ 55.116721] {1}[Hardware Error]: node: 0
    [ 55.121125] {1}[Hardware Error]: card: 0
    [ 55.125508] {1}[Hardware Error]: module: 0
    [ 55.130127] {1}[Hardware Error]: device: 0
    [ 55.134724] {1}[Hardware Error]: error_type: 18, unknown
    [ 55.140699] EDAC MC0: 1 CE reserved error (18) on unknown label (node:0 card:0 module:0 page:0x809f56 offset:0x0 grain:0 syndrome:0x0 - status(0x0000000000000400): Storage error in memory (DRAM))

    Tested on a 4 CPUs E5-4650 Sandy Bridge machine.

    Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
    ---
    drivers/edac/ghes_edac.c | 188 +++++++++++++++++++++++++++++++++++++++++++----
    1 file changed, 173 insertions(+), 15 deletions(-)

    diff --git a/drivers/edac/ghes_edac.c b/drivers/edac/ghes_edac.c
    index 9d7f797..41db89a 100644
    --- a/drivers/edac/ghes_edac.c
    +++ b/drivers/edac/ghes_edac.c
    @@ -177,19 +177,19 @@ void ghes_edac_report_mem_error(struct ghes *ghes, int sev,
    {
    struct edac_raw_error_desc *e = &ghes->mci->error_desc;
    enum hw_event_mc_err_type type;
    + char other_detail[160] = "";
    + char msg[80] = "";
    + char *p;

    /* Cleans the error report buffer */
    memset(e, 0, sizeof (*e));
    e->error_count = 1;
    - e->msg = "APEI";
    - strcpy(e->label, "unknown");
    - e->other_detail = "";
    -
    - if (mem_err->validation_bits & CPER_MEM_VALID_PHYSICAL_ADDRESS) {
    - e->page_frame_number = mem_err->physical_addr >> PAGE_SHIFT;
    - e->offset_in_page = mem_err->physical_addr & ~PAGE_MASK;
    - e->grain = ~(mem_err->physical_addr_mask & ~PAGE_MASK);
    - }
    + strcpy(e->label, "unknown label");
    + e->msg = msg;
    + e->other_detail = other_detail;
    + e->top_layer = -1;
    + e->mid_layer = -1;
    + e->low_layer = -1;

    switch(sev) {
    case GHES_SEV_CORRECTED:
    @@ -206,12 +206,170 @@ void ghes_edac_report_mem_error(struct ghes *ghes, int sev,
    type = HW_EVENT_ERR_INFO;
    }

    - sprintf(e->location,
    - "node:%d card:%d module:%d bank:%d device:%d row: %d column:%d bit_pos:%d",
    - mem_err->node, mem_err->card, mem_err->module,
    - mem_err->bank, mem_err->device, mem_err->row, mem_err->column,
    - mem_err->bit_pos);
    - edac_dbg(3, "error at location %s\n", e->location);
    + /* Error type, mapped on e->msg */
    + if (mem_err->validation_bits & CPER_MEM_VALID_ERROR_TYPE) {
    + p = msg;
    + switch (mem_err->error_type) {
    + case 0:
    + p += sprintf(p, "Unknown");
    + break;
    + case 1:
    + p += sprintf(p, "No error");
    + break;
    + case 2:
    + p += sprintf(p, "Single-bit ECC");
    + break;
    + case 3:
    + p += sprintf(p, "Multi-bit ECC");
    + break;
    + case 4:
    + p += sprintf(p, "Single-symbol ChipKill ECC");
    + break;
    + case 5:
    + p += sprintf(p, "Multi-symbol ChipKill ECC");
    + break;
    + case 6:
    + p += sprintf(p, "Master abort");
    + break;
    + case 7:
    + p += sprintf(p, "Target abort");
    + break;
    + case 8:
    + p += sprintf(p, "Parity Error");
    + break;
    + case 9:
    + p += sprintf(p, "Watchdog timeout");
    + break;
    + case 10:
    + p += sprintf(p, "Invalid address");
    + break;
    + case 11:
    + p += sprintf(p, "Mirror Broken");
    + break;
    + case 12:
    + p += sprintf(p, "Memory Sparing");
    + break;
    + case 13:
    + p += sprintf(p, "Scrub corrected error");
    + break;
    + case 14:
    + p += sprintf(p, "Scrub uncorrected error");
    + break;
    + case 15:
    + p += sprintf(p, "Physical Memory Map-out event");
    + break;
    + default:
    + p += sprintf(p, "reserved error (%d)",
    + mem_err->error_type);
    + }
    + } else {
    + strcpy(msg, "unknown error");
    + }
    +
    + /* Error address */
    + if (mem_err->validation_bits & CPER_MEM_VALID_PHYSICAL_ADDRESS) {
    + e->page_frame_number = mem_err->physical_addr >> PAGE_SHIFT;
    + e->offset_in_page = mem_err->physical_addr & ~PAGE_MASK;
    + }
    +
    + /* Error grain */
    + if (mem_err->validation_bits & CPER_MEM_VALID_PHYSICAL_ADDRESS_MASK) {
    + e->grain = ~(mem_err->physical_addr_mask & ~PAGE_MASK);
    + }
    +
    + /* Memory error location, mapped on e->location */
    + p = e->location;
    + if (mem_err->validation_bits & CPER_MEM_VALID_NODE)
    + p += sprintf(p, "node:%d ", mem_err->node);
    + if (mem_err->validation_bits & CPER_MEM_VALID_CARD)
    + p += sprintf(p, "card:%d ", mem_err->card);
    + if (mem_err->validation_bits & CPER_MEM_VALID_MODULE)
    + p += sprintf(p, "module:%d ", mem_err->module);
    + if (mem_err->validation_bits & CPER_MEM_VALID_BANK)
    + p += sprintf(p, "bank:%d ", mem_err->bank);
    + if (mem_err->validation_bits & CPER_MEM_VALID_ROW)
    + p += sprintf(p, "row:%d ", mem_err->row);
    + if (mem_err->validation_bits & CPER_MEM_VALID_COLUMN)
    + p += sprintf(p, "col:%d ", mem_err->column);
    + if (mem_err->validation_bits & CPER_MEM_VALID_BIT_POSITION)
    + p += sprintf(p, "bit_pos:%d ", mem_err->bit_pos);
    + if (p > e->location)
    + *(p - 1) = '\0';
    +
    + /* All other fields are mapped on e->other_detail */
    + p= other_detail;
    + if (mem_err->validation_bits & CPER_MEM_VALID_ERROR_STATUS) {
    + u64 status = mem_err->error_status;
    +
    + p += sprintf(p, "status(0x%016llx): ", (long long)status);
    + switch ((status >> 8) & 0xff) {
    + case 1:
    + p += sprintf(p, "Error detected internal to the component ");
    + break;
    + case 16:
    + p += sprintf(p, "Error detected in the bus ");
    + break;
    + case 4:
    + p += sprintf(p, "Storage error in memory (DRAM) ");
    + break;
    + case 5:
    + p += sprintf(p, "Storage error in TLB ");
    + break;
    + case 6:
    + p += sprintf(p, "Storage error in cache ");
    + break;
    + case 7:
    + p += sprintf(p, "Error in one or more functional units ");
    + break;
    + case 8:
    + p += sprintf(p, "component failed self test ");
    + break;
    + case 9:
    + p += sprintf(p, "Overflow or undervalue of internal queue ");
    + break;
    + case 17:
    + p += sprintf(p, "Virtual address not found on IO-TLB or IO-PDIR ");
    + break;
    + case 18:
    + p += sprintf(p, "Improper access error ");
    + break;
    + case 19:
    + p += sprintf(p, "Access to a memory address which is not mapped to any component ");
    + break;
    + case 20:
    + p += sprintf(p, "Loss of Lockstep ");
    + break;
    + case 21:
    + p += sprintf(p, "Response not associated with a request ");
    + break;
    + case 22:
    + p += sprintf(p, "Bus parity error (must also set the A, C, or D Bits) ");
    + break;
    + case 23:
    + p += sprintf(p, "Detection of a PATH_ERROR ");
    + break;
    + case 25:
    + p += sprintf(p, "Bus operation timeout ");
    + break;
    + case 26:
    + p += sprintf(p, "A read was issued to data that has been poisoned ");
    + break;
    + default:
    + p += sprintf(p, "reserved ");
    + break;
    + }
    + }
    + if (mem_err->validation_bits & CPER_MEM_VALID_REQUESTOR_ID)
    + p += sprintf(p, "requestor ID: 0x%016llx ",
    + (long long)mem_err->requestor_id);
    + if (mem_err->validation_bits & CPER_MEM_VALID_RESPONDER_ID)
    + p += sprintf(p, "responder ID: 0x%016llx ",
    + (long long)mem_err->responder_id);
    + if (mem_err->validation_bits & CPER_MEM_VALID_TARGET_ID)
    + p += sprintf(p, "target ID: 0x%016llx ",
    + (long long)mem_err->responder_id);
    + if (p > other_detail)
    + *(p - 1) = '\0';

    edac_raw_mc_handle_error(type, ghes->mci, e);
    }
    --
    1.8.1.2


    \
     
     \ /
      Last update: 2013-02-20 13:21    [W:3.202 / U:0.036 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site