Skip to content

Commit

Permalink
PRD: Add parser for power management recovery FFDC
Browse files Browse the repository at this point in the history
Change-Id: I9dddac03b780f624caee3ab82a87daae3ad7d986
CQ: SW441419
Backport: release-fips921
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/64786
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Caleb N. Palmer <cnpalmer@us.ibm.com>
Reviewed-by: Zane C. Shelley <zshelle@us.ibm.com>
CMVC-Prereq: 1065199
Squashed: Ifd2c1d1a1d88f02815fe5eab806dfca63938af69
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/64845
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
  • Loading branch information
bweisenb authored and zane131 committed Aug 23, 2018
1 parent 3a589be commit 47994fb
Show file tree
Hide file tree
Showing 6 changed files with 635 additions and 4 deletions.
4 changes: 4 additions & 0 deletions src/usr/diag/prdf/common/plugins/prdfLogParse_common.C
Original file line number Diff line number Diff line change
Expand Up @@ -901,6 +901,10 @@ bool logDataParse( ErrlUsrParser & i_parser, void * i_buffer,
rc = parseExtMemMru( i_buffer, i_buflen, i_parser );
break;

case ErrlPmFfdcData:
rc = parsePmFfdcData(i_buffer, i_buflen, i_parser, i_ver);
break;

default:
printUnknown( i_parser, i_ver, i_sst );
i_parser.PrintHexDump(i_buffer, i_buflen);
Expand Down
1 change: 1 addition & 0 deletions src/usr/diag/prdf/common/plugins/prdfPfa5Data.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ enum ErrlSubsect
ErrlCapData_2 = 2,
ErrlMruData = 62, // For the 80 byte centaur DQ pin map
ErrlString = 10,
ErrlPmFfdcData = 20,
};

struct MsDumpStruct
Expand Down

0 comments on commit 47994fb

Please sign in to comment.