diff options
| author | Brian Stegmiller <bjs@us.ibm.com> | 2017-12-05 16:01:44 -0600 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-12-08 11:28:58 -0500 |
| commit | 1eba8f47f718aa44800ed5be0f70b1cf795298c9 (patch) | |
| tree | 70da207315086f33eb35c1791b5a865bf676c6e2 /src/include | |
| parent | 18f9c896aa1e4b348d3ae2ed4ff641b91b36cd67 (diff) | |
| download | talos-hostboot-1eba8f47f718aa44800ed5be0f70b1cf795298c9.tar.gz talos-hostboot-1eba8f47f718aa44800ed5be0f70b1cf795298c9.zip | |
Avoid assert on invalid target types for PRD and HWP PLID association
Change-Id: I576559dba463bdc884e7929f731e5a098c6f7749
CQ:SW409720
Backport: release-op910
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/50535
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Zane C. Shelley <zshelle@us.ibm.com>
Reviewed-by: Caleb N. Palmer <cnpalmer@us.ibm.com>
Reviewed-by: Benjamin J. Weisenbeck <bweisenb@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/usr/diag/attn/attnreasoncodes.H | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/include/usr/diag/attn/attnreasoncodes.H b/src/include/usr/diag/attn/attnreasoncodes.H index 5510d719d..ce0cd9dde 100644 --- a/src/include/usr/diag/attn/attnreasoncodes.H +++ b/src/include/usr/diag/attn/attnreasoncodes.H @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2014 */ +/* Contributors Listed Below - COPYRIGHT 2014,2017 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -47,6 +47,7 @@ enum ModuleId { ATTN_INVALID_MODULE = 0x00, ATTN_TEST_FAKE_CALL_PRD = 0x01, // this is used in test code only. + ATTN_CHK_IPL_ATTNS_MODULE = 0x02 }; /** @@ -58,8 +59,10 @@ enum ModuleId enum ReasonCode { ATTN_INVALID_REASONCODE = ATTN_COMP_ID | 0x00, // Invalid Reasoncode - ATTN_TEST_ATTN_FAIL = ATTN_COMP_ID | 0x01, // this is used in + ATTN_TEST_ATTN_FAIL = ATTN_COMP_ID | 0x01, // this is used in // test code only. + ATTN_SEE_HW_ERROR = ATTN_COMP_ID | 0x02 // HW err with no gard + // so PLID still set }; } |

