Skip to content

Commit

Permalink
Add new memory related chiplet types to scomtrans function
Browse files Browse the repository at this point in the history
Somehow this got missed when we did a first pass adding in scom
support for axone. Hit this will doing bringup, one of the scominit
HWPs was failing without this while trying to target a MCC chiplet.

Change-Id: Ie17ed1d6a5bdb7ec0e06623436d3eec26dafbf31
RTC: 196806
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/71177
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>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Reviewed-by: Matt Derksen <mderkse1@us.ibm.com>
Reviewed-by: Corey V. Swenson <cswenson@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
  • Loading branch information
crgeddes authored and dcrowell77 committed Feb 5, 2019
1 parent d054b91 commit de4076a
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions src/usr/scom/scomtrans.C
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2012,2018 */
/* Contributors Listed Below - COPYRIGHT 2012,2019 */
/* [+] International Business Machines Corp. */
/* */
/* */
Expand Down Expand Up @@ -935,11 +935,26 @@ bool getChipUnitP9 (TARGETING::TYPE i_type,
o_chipUnit = PU_CAPP_CHIPUNIT;
break;
}
case(TARGETING::TYPE_MC) :
case(TARGETING::TYPE_MC) :
{
o_chipUnit = PU_MC_CHIPUNIT;
break;
}
case(TARGETING::TYPE_MCC) :
{
o_chipUnit = PU_MCC_CHIPUNIT;
break;
}
case(TARGETING::TYPE_OMI) :
{
o_chipUnit = PU_OMI_CHIPUNIT;
break;
}
case(TARGETING::TYPE_OMIC) :
{
o_chipUnit = PU_OMIC_CHIPUNIT;
break;
}
default:
{
l_isError = true;
Expand Down

0 comments on commit de4076a

Please sign in to comment.