summaryrefslogtreecommitdiffstats
path: root/src/import/chips/p9/procedures/hwp/pm
diff options
context:
space:
mode:
authorDan Crowell <dcrowell@us.ibm.com>2017-12-13 13:15:51 -0600
committerDaniel M. Crowell <dcrowell@us.ibm.com>2017-12-21 00:35:20 -0500
commit59c08f9154744e3d9c69763ced88a18d12ff597c (patch)
treedb9f43a6975bfcf6cccd0fbfd6379cf2e3fed69d /src/import/chips/p9/procedures/hwp/pm
parentd5866aa3d22103e09d90a9fd544190c2afc3b933 (diff)
downloadtalos-hostboot-59c08f9154744e3d9c69763ced88a18d12ff597c.tar.gz
talos-hostboot-59c08f9154744e3d9c69763ced88a18d12ff597c.zip
Remove distracting error message for fallback #V freq
If a system has ATTR_FREQ_PB_MHZ_POUNDV_FALLBACK=0 and a bunch of #V buckets that aren't programmed, we will see some distracting error traces. The logic was changed to ignore the check for a fallback message if the attribute isn't set. Change-Id: I5ef5ed000c499a91a4da9e1b0b1bed38c267c32c Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/50873 Reviewed-by: Brian T. Vanderpool <vanderp@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: HWSV CI <hwsv-ci+hostboot@us.ibm.com> Reviewed-by: Steven B. Janssen <janssens@us.ibm.com> Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com> Reviewed-by: RANGANATHPRASAD G. BRAHMASAMUDRA <prasadbgr@in.ibm.com> Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com> Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/50895 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: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/import/chips/p9/procedures/hwp/pm')
-rw-r--r--src/import/chips/p9/procedures/hwp/pm/p9_pm_get_poundv_bucket_attr.C5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/import/chips/p9/procedures/hwp/pm/p9_pm_get_poundv_bucket_attr.C b/src/import/chips/p9/procedures/hwp/pm/p9_pm_get_poundv_bucket_attr.C
index f004b9ba2..67bdb61a6 100644
--- a/src/import/chips/p9/procedures/hwp/pm/p9_pm_get_poundv_bucket_attr.C
+++ b/src/import/chips/p9/procedures/hwp/pm/p9_pm_get_poundv_bucket_attr.C
@@ -229,13 +229,14 @@ fapi2::ReturnCode p9_pm_get_poundv_bucket_attr(
l_currentBucket = &l_buckets[i];
}
}
- else if(l_pbFreq == l_fallbackNestFreq)
+ else if( (l_pbFreq == l_fallbackNestFreq)
+ && (l_pbFreq != 0) )
{
l_numMatchesFallback++;
if(l_numMatchesFallback > 1)
{
- FAPI_ERR("p9_pm_get_poundv_bucket_attr::"
+ FAPI_INF("p9_pm_get_poundv_bucket_attr::"
" Multiple buckets (%d) reporting the same nest frequency"
" Fallback Nest = %d Bucket ID = %d, First Bucket = %d",
l_numMatchesFallback,
OpenPOWER on IntegriCloud