summaryrefslogtreecommitdiffstats
path: root/src/usr/hwpf
diff options
context:
space:
mode:
authorCamVan Nguyen <ctnguyen@us.ibm.com>2012-10-31 11:57:47 -0500
committerA. Patrick Williams III <iawillia@us.ibm.com>2012-11-07 16:04:05 -0600
commit7b6f36d1bec12d368dafb1b380ae90056637594c (patch)
tree070b25d0f3d1d76b4e844728dfb3c453d291d8dc /src/usr/hwpf
parentd871f70ebe8e9e91d8dd4b604dfee0303461b9aa (diff)
downloadtalos-hostboot-7b6f36d1bec12d368dafb1b380ae90056637594c.tar.gz
talos-hostboot-7b6f36d1bec12d368dafb1b380ae90056637594c.zip
Only enable candidate PSI links
Change-Id: Ie3cc120d05ac17126bde15b213a80701878f4a59 RTC: 50561 Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/2187 Reviewed-by: Van H. Lee <vanlee@us.ibm.com> Tested-by: Jenkins Server Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/hwpf')
-rw-r--r--src/usr/hwpf/plat/fapiPlatAttributeService.C79
1 files changed, 47 insertions, 32 deletions
diff --git a/src/usr/hwpf/plat/fapiPlatAttributeService.C b/src/usr/hwpf/plat/fapiPlatAttributeService.C
index 0d72fbd44..a1778861d 100644
--- a/src/usr/hwpf/plat/fapiPlatAttributeService.C
+++ b/src/usr/hwpf/plat/fapiPlatAttributeService.C
@@ -1168,31 +1168,36 @@ fapi::ReturnCode fapiPlatGetProcPsiBridgeBarEnable (
uint8_t &o_psiBridgeBarEnable )
{
fapi::ReturnCode l_fapirc( fapi::FAPI_RC_SUCCESS );
- uint64_t l_procNum = 0;
- uint8_t l_isEnabled = PROC_BARS_DISABLE;
+ o_psiBridgeBarEnable = PROC_BARS_DISABLE;
do {
- /*@
- * @errortype
- * @moduleid MOD_ATTR_PROC_PSI_BRIDGE_BAR_ENABLE_GET
- * @reasoncode RC_ATTR_BAD_TARGET_PARAM
- * @devdesc Null FAPI Target passed to ATTR_GET
- */
- l_fapirc = barsPreCheck(
- i_pTarget,
- fapi::MOD_ATTR_PROC_PSI_BRIDGE_BAR_ENABLE_GET,
- l_procNum,
- l_isEnabled );
- if ( l_fapirc )
+ if (i_pTarget == NULL)
{
- FAPI_ERR("ERROR : NULL FAPI Target");
+ FAPI_ERR("Error: NULL FAPI Target passed");
+ /*@
+ * @errortype
+ * @moduleid MOD_ATTR_PROC_PSI_BRIDGE_BAR_ENABLE_GET
+ * @reasoncode RC_ATTR_BAD_TARGET_PARAM
+ * @devdesc Null FAPI Target passed to ATTR_GET
+ */
+ errlHndl_t l_pError = new ERRORLOG::ErrlEntry(
+ ERRORLOG::ERRL_SEV_INFORMATIONAL,
+ fapi::MOD_ATTR_PROC_PSI_BRIDGE_BAR_ENABLE_GET,
+ fapi::RC_ATTR_BAD_TARGET_PARAM );
+ l_fapirc.setPlatError(reinterpret_cast<void *> (l_pError));
break;
}
- // return
- o_psiBridgeBarEnable = l_isEnabled;
+ const TARGETING::Target* l_pProcTarget =
+ reinterpret_cast<const TARGETING::Target*>(i_pTarget->get());
+ uint64_t bar = l_pProcTarget->getAttr<TARGETING::ATTR_PSI_BRIDGE_BASE_ADDR>();
+ // if bar is not zero
+ if ( bar )
+ {
+ o_psiBridgeBarEnable = PROC_BARS_ENABLE;
+ }
} while(0);
return l_fapirc;
@@ -1203,27 +1208,37 @@ fapi::ReturnCode fapiPlatGetProcFspBarEnable (
uint8_t &o_fspBarEnable )
{
fapi::ReturnCode l_fapirc( fapi::FAPI_RC_SUCCESS );
- uint64_t l_procNum = 0;
- uint8_t l_isEnabled = PROC_BARS_DISABLE;
+ o_fspBarEnable = PROC_BARS_DISABLE;
do {
- /*@
- * @errortype
- * @moduleid MOD_ATTR_PROC_FSP_BAR_ENABLE_GET
- * @reasoncode RC_ATTR_BAD_TARGET_PARAM
- * @devdesc Null FAPI Target passed to ATTR_GET
- */
- l_fapirc = barsPreCheck( i_pTarget,
- fapi::MOD_ATTR_PROC_FSP_BAR_ENABLE_GET,
- l_procNum,
- l_isEnabled );
- if ( l_fapirc )
+ if (i_pTarget == NULL)
{
- FAPI_ERR("ERROR : NULL FAPI Target");
+ FAPI_ERR("Error: NULL FAPI Target passed");
+ /*@
+ * @errortype
+ * @moduleid MOD_ATTR_PROC_FSP_BAR_ENABLE_GET
+ * @reasoncode RC_ATTR_BAD_TARGET_PARAM
+ * @devdesc Null FAPI Target passed to ATTR_GET
+ */
+ errlHndl_t l_pError = new ERRORLOG::ErrlEntry(
+ ERRORLOG::ERRL_SEV_INFORMATIONAL,
+ fapi::MOD_ATTR_PROC_FSP_BAR_ENABLE_GET,
+ fapi::RC_ATTR_BAD_TARGET_PARAM );
+ l_fapirc.setPlatError(reinterpret_cast<void *> (l_pError));
break;
}
- o_fspBarEnable = l_isEnabled;
+ const TARGETING::Target* l_pProcTarget =
+ reinterpret_cast<const TARGETING::Target*>(i_pTarget->get());
+
+ uint64_t bar = l_pProcTarget->getAttr<TARGETING::ATTR_FSP_BASE_ADDR>();
+
+ // if bar is not zero
+ if ( bar )
+ {
+ o_fspBarEnable = PROC_BARS_ENABLE;
+
+ }
} while(0);
OpenPOWER on IntegriCloud