diff options
author | Sumit Kumar <sumit_kumar@in.ibm.com> | 2019-01-16 04:06:16 -0600 |
---|---|---|
committer | Christian R. Geddes <crgeddes@us.ibm.com> | 2019-01-29 11:29:14 -0600 |
commit | 30e3c861cc2391d30e9ef0bf50df8c5a62c03d17 (patch) | |
tree | 2f59844ea090eb887e5e9b1ae6d2f5e166ed5550 | |
parent | 98baafa55ea7f351293ee10f8f48085af0312738 (diff) | |
download | talos-hostboot-30e3c861cc2391d30e9ef0bf50df8c5a62c03d17.tar.gz talos-hostboot-30e3c861cc2391d30e9ef0bf50df8c5a62c03d17.zip |
eRepair(Zeppelin): Fix to invalidate centaur vpd records
Change-Id: I77b16a78a1c24aeda0b6d919c7b65fd27064b117
CQ:SW453701
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/70523
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Christopher W. Steffen <cwsteffen@us.ibm.com>
Reviewed-by: Sachin Gupta <sgupta2m@in.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/70525
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com>
-rwxr-xr-x | src/import/chips/p9/procedures/hwp/io/p9_io_erepairGetFailedLanesHwp.H | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/src/import/chips/p9/procedures/hwp/io/p9_io_erepairGetFailedLanesHwp.H b/src/import/chips/p9/procedures/hwp/io/p9_io_erepairGetFailedLanesHwp.H index 88918d1c1..9b03c0b06 100755 --- a/src/import/chips/p9/procedures/hwp/io/p9_io_erepairGetFailedLanesHwp.H +++ b/src/import/chips/p9/procedures/hwp/io/p9_io_erepairGetFailedLanesHwp.H @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2015,2018 */ +/* Contributors Listed Below - COPYRIGHT 2015,2019 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -469,24 +469,6 @@ fapi2::ReturnCode determineRepairLanesMemBuf( if( (l_chipPosition != l_memBus->device.proc_centaur_id) || (l_busNum != l_memBus->device.memChannel) ) { - FAPI_INF("Invalidate Centaur vpd record"); - - // Reset lane value to invalidate record and - // update number of records accordingly - l_memBus->failBit = 0; - l_vpdHeadPtr->availNumRecord--; - - FAPI_INF("Set VPD data:RC:0x%x KW:0x%x BS:%d ", l_vpdRecord, fapi2::MBVPD_KEYWORD_PDI, l_mBufSize); - - /*** Write the updated eRepair buffer back to Centaur FRU VPD ***/ - FAPI_TRY( setMBvpdField( - l_vpdRecord, - fapi2::MBVPD_KEYWORD_PDI, - i_target, - i_buf, - l_mBufSize), - "Update erepair centaur data to VPD failed w/rc=0x%x", - static_cast<uint64_t>(fapi2::current_err) ); continue; } |