Skip to content

Commit 602fe78

Browse files
cnpalmerzane131
authored andcommitted
PRD: Don't ban TPS when all dram repairs used
Change-Id: Icb43170b34381dea31b6f322bd45974a05f080f6 CQ: SW499027 Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/100827 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Reviewed-by: Zane C Shelley <zshelle@us.ibm.com> Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/101259 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>
1 parent 9639e0a commit 602fe78

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/usr/diag/prdf/common/plat/mem/prdfMemMark.C

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/* */
66
/* OpenPOWER HostBoot Project */
77
/* */
8-
/* Contributors Listed Below - COPYRIGHT 2016,2019 */
8+
/* Contributors Listed Below - COPYRIGHT 2016,2020 */
99
/* [+] International Business Machines Corp. */
1010
/* */
1111
/* */
@@ -1394,8 +1394,12 @@ uint32_t applyRasPolicies( ExtensibleChip * i_chip, const MemRank & i_rank,
13941394
io_sc.service_data->clearNvdimmMruListGard();
13951395

13961396
#ifdef __HOSTBOOT_RUNTIME
1397-
// No more repairs left so no point doing any more TPS procedures.
1398-
MemDbUtils::banTps<T>( i_chip, i_rank );
1397+
// Only ban TPS for Centaur
1398+
if ( TYPE_MBA == T )
1399+
{
1400+
// No more repairs left so no point doing any more TPS procedures.
1401+
MemDbUtils::banTps<T>( i_chip, i_rank );
1402+
}
13991403
#endif
14001404
}
14011405

0 commit comments

Comments
 (0)