Skip to content

Commit

Permalink
Support cumulus 1.1 getPllBucket
Browse files Browse the repository at this point in the history
Change-Id: I870c30ba1fd32a5dfb8ebf43db52adfa80389b54
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/54400
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
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>
Reviewed-by: Dean Sanner <dsanner@us.ibm.com>
Reviewed-by: Prachi Gupta <pragupta@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
  • Loading branch information
sgupta2m authored and wghoffa committed Feb 22, 2018
1 parent 44087e0 commit 8990544
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions src/usr/util/utilcommonattr.C
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,18 @@ errlHndl_t getObusPllBucket(TARGETING::Target * i_chipTarget,
}
else if(l_chipModel == TARGETING::MODEL_CUMULUS)
{
if(l_chipECLevel == 0x10)
{
l_freqList = OBUS_PLL_FREQ_LIST_P9C_10;
}
else
switch (l_chipECLevel)
{
TRACFCOMP(g_util_trace, "Unknown EC level 0x%x for CUMULUS",
l_chipECLevel);
case 0x10:
l_freqList = OBUS_PLL_FREQ_LIST_P9C_10;
break;
case 0x11:
l_freqList = OBUS_PLL_FREQ_LIST_P9C_11;
break;
default:
TRACFCOMP(g_util_trace, "Unknown EC level 0x%x for CUMULUS",
l_chipECLevel);
break;
}
}
//else
Expand Down

0 comments on commit 8990544

Please sign in to comment.