summaryrefslogtreecommitdiffstats
path: root/src/usr/targeting/attrPlatOverride.C
diff options
context:
space:
mode:
authorStephen Cprek <smcprek@us.ibm.com>2014-10-17 14:27:39 -0500
committerA. Patrick Williams III <iawillia@us.ibm.com>2014-11-13 09:58:07 -0600
commit32796a39f1b46b27632b084066bcc504438f3dbb (patch)
tree64eec73ed1d0b375d65d01042302665ad128f0a4 /src/usr/targeting/attrPlatOverride.C
parenta09cff943a1d12904de650f133a1b39a6de42f1e (diff)
downloadtalos-hostboot-32796a39f1b46b27632b084066bcc504438f3dbb.tar.gz
talos-hostboot-32796a39f1b46b27632b084066bcc504438f3dbb.zip
Separate attr override section of PNOR into 2 parts
New Sections: ATTR_TMP, ATTR_PERM Change-Id: Id66495509076f9637e8720f3d2631e8db7456fb2 RTC:113615 Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/14168 Tested-by: Jenkins Server Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/targeting/attrPlatOverride.C')
-rw-r--r--src/usr/targeting/attrPlatOverride.C184
1 files changed, 127 insertions, 57 deletions
diff --git a/src/usr/targeting/attrPlatOverride.C b/src/usr/targeting/attrPlatOverride.C
index 7f67ab221..3f71da189 100644
--- a/src/usr/targeting/attrPlatOverride.C
+++ b/src/usr/targeting/attrPlatOverride.C
@@ -26,13 +26,13 @@
#include <hwpf/plat/fapiPlatAttrOverrideSync.H>
#include <targeting/common/trace.H>
#include <targeting/common/targreasoncodes.H>
+#include <errl/errlmanager.H>
namespace TARGETING
{
-errlHndl_t getAttrOverrides(PNOR::SectionId i_section,
- AttributeTank* io_tanks[AttributeTank::TANK_LAYER_LAST],
- uint32_t pnorSecOffset)
+errlHndl_t getAttrOverrides(PNOR::SectionInfo_t &i_sectionInfo,
+ AttributeTank* io_tanks[AttributeTank::TANK_LAYER_LAST])
{
TRACFCOMP(g_trac_targeting,"attrPlatOverride::getAttrOverrides ENTER");
@@ -63,65 +63,57 @@ errlHndl_t getAttrOverrides(PNOR::SectionId i_section,
do
{
- // Read PNOR section
- PNOR::SectionInfo_t sectionInfo;
- l_err = PNOR::getSectionInfo( i_section, sectionInfo );
- // Attr override sections are optional so just delete error and break
- if (l_err)
- {
- delete l_err;
- l_err = NULL;
- break;
- }
- uint32_t l_index = pnorSecOffset;
+ uint32_t l_index = 0;
// Deserialize each section
- while (l_index < sectionInfo.size)
+ while (l_index < i_sectionInfo.size)
{
AttrOverrideSection * l_pAttrOverSec =
reinterpret_cast<AttrOverrideSection *>
- (sectionInfo.vaddr + l_index);
+ (i_sectionInfo.vaddr + l_index);
- // Reached termination chunck
- if (l_pAttrOverSec->iv_layer == AttributeTank::TANK_LAYER_NONE)
+ // Reached termination chunk
+ if (l_pAttrOverSec->iv_layer == AttributeTank::TANK_LAYER_TERM)
{
TRACFCOMP(g_trac_targeting,"attrPlatOverride::getAttrOverrides Reached termination section at chunk (0x%x)",
- (sectionInfo.size - l_index));
+ (i_sectionInfo.size - l_index));
break;
}
// Remaining chunk smaller than AttrOverrideSection, quit
- if (sizeof(AttrOverrideSection) > (sectionInfo.size - l_index))
+ if (sizeof(AttrOverrideSection) > (i_sectionInfo.size - l_index))
{
TRACFCOMP(g_trac_targeting,"attrPlatOverride::getAttrOverrides AttrOverrideSection too big for chunk (0x%x)",
- (sectionInfo.size - l_index));
- /*@
- * @errortype
- * @moduleid TARG_GET_ATTR_OVER
- * @reasoncode TARG_RC_ATTR_OVER_PNOR_SEC_SPACE_FAIL
- * @userdata1 PNOR Section specified
- * @userdata2 Size of AttrOverrideSection
- * @devdesc AttrOverrideSection too big to fit in remaining
- * chunck of pnor section
- */
- l_err =
- new ERRORLOG::ErrlEntry
- (ERRORLOG::ERRL_SEV_PREDICTIVE,
- TARG_GET_ATTR_OVER,
- TARG_RC_ATTR_OVER_PNOR_SEC_SPACE_FAIL,
- i_section,
- sizeof(AttrOverrideSection),
- true /*SW callout*/);
- break;
+ (i_sectionInfo.size - l_index));
+ /*@
+ * @errortype
+ * @moduleid TARG_GET_ATTR_OVER
+ * @reasoncode TARG_RC_ATTR_OVER_PNOR_SEC_SPACE_FAIL
+ * @userdata1 PNOR Section specified
+ * @userdata2 Size of AttrOverrideSection
+ * @devdesc AttrOverrideSection too big to fit in remaining
+ * chunck of pnor section
+ * @custdesc Invalid configuration data in firmware pnor
+ */
+ l_err =
+ new ERRORLOG::ErrlEntry
+ (ERRORLOG::ERRL_SEV_PREDICTIVE,
+ TARG_GET_ATTR_OVER,
+ TARG_RC_ATTR_OVER_PNOR_SEC_SPACE_FAIL,
+ i_sectionInfo.id,
+ sizeof(AttrOverrideSection));
+ l_err->addProcedureCallout(HWAS::EPUB_PRC_SP_CODE,
+ HWAS::SRCI_PRIORITY_HIGH);
+ break;
}
l_index += sizeof(AttrOverrideSection);
// Remaining chunk smaller than serialized chunk size, quit
- if (l_pAttrOverSec->iv_size > (sectionInfo.size - l_index))
+ if (l_pAttrOverSec->iv_size > (i_sectionInfo.size - l_index))
{
TRACFCOMP(g_trac_targeting,"attrPlatOverride::getAttrOverrides serialized chunk too big for chunk (0x%x)",
- (sectionInfo.size - l_index));
+ (i_sectionInfo.size - l_index));
/*@
* @errortype
* @moduleid TARG_GET_ATTR_OVER
@@ -130,35 +122,113 @@ errlHndl_t getAttrOverrides(PNOR::SectionId i_section,
* @userdata2 Size of Serialized attribute override
* @devdesc Serialized attribute override chunk too big to
* fit in remaining chunck of pnor section
+ * @custdesc Invalid configuration data in firmware pnor
*/
l_err =
new ERRORLOG::ErrlEntry
(ERRORLOG::ERRL_SEV_PREDICTIVE,
TARG_GET_ATTR_OVER,
TARG_RC_ATTR_OVER_ATTR_DATA_SIZE_FAIL,
- i_section,
- l_pAttrOverSec->iv_size,
- true /*SW callout*/);
+ i_sectionInfo.id,
+ l_pAttrOverSec->iv_size);
+ l_err->addProcedureCallout(HWAS::EPUB_PRC_SP_CODE,
+ HWAS::SRCI_PRIORITY_HIGH);
break;
}
- // Get the AttributeTank that corresponds to the TankLayer in the
- // AttrOverrideSection. Enum starts with TANK_LAYER_NONE so need to
- // substract 1
- AttributeTank* l_ptank = l_pOverTanks[l_pAttrOverSec->iv_layer - 1];
-
- // Create serialized chunck with AttrOverrideSection data
- AttributeTank::AttributeSerializedChunk l_chunk;
- l_chunk.iv_size = l_pAttrOverSec->iv_size;
- l_chunk.iv_pAttributes = &l_pAttrOverSec->iv_chunk[0];
-
- // Deserialize the data with the approriate AttributeTank
- l_ptank->deserializeAttributes(l_chunk);
+ // Check if a tank layer is specified, if not we can't apply the
+ // attribute override.
+ if (l_pAttrOverSec->iv_layer == AttributeTank::TANK_LAYER_NONE)
+ {
+ TRACFCOMP(g_trac_targeting,"attrPlatOverride::getAttrOverrides no tank layer specified at chunk (0x%x)",
+ (i_sectionInfo.size - l_index));
+ /*@
+ * @errortype
+ * @moduleid TARG_GET_ATTR_OVER
+ * @reasoncode TARG_RC_WRITE_ATTR_OVER_NO_TANK_LAYER
+ * @userdata1 PNOR Section specified
+ * @userdata2 Chunk location with no tank layer
+ * @devdesc No tank layer was specified for attribute
+ * override.
+ * @custdesc Invalid configuration data in firmware pnor
+ */
+ l_err =
+ new ERRORLOG::ErrlEntry
+ (ERRORLOG::ERRL_SEV_PREDICTIVE,
+ TARG_GET_ATTR_OVER,
+ TARG_RC_WRITE_ATTR_OVER_NO_TANK_LAYER,
+ i_sectionInfo.id,
+ (i_sectionInfo.size - l_index));
+ l_err->collectTrace("TARG",256);
+ l_err->addProcedureCallout(HWAS::EPUB_PRC_SP_CODE,
+ HWAS::SRCI_PRIORITY_HIGH);
+ ERRORLOG::errlCommit(l_err, TARG_COMP_ID);
+ }
+ // Check if the AttrOverSec is in the correct PNOR section
+ // It was decided that this should not cause a failed IPL, so the
+ // override will not be applied, the errl will be committed, then
+ // we move on.
+ else if (tankLayerToPnor[l_pAttrOverSec->iv_layer - 1].second !=
+ i_sectionInfo.id)
+ {
+ TRACFCOMP(g_trac_targeting,"getAttrOverrides: Failed to apply override - override with TankLayer 0x%X should not be in PNOR::%s",
+ l_pAttrOverSec->iv_layer, i_sectionInfo.name);
+ /*@
+ * @errortype
+ * @moduleid TARG_GET_ATTR_OVER
+ * @reasoncode TARG_RC_WRITE_ATTR_OVER_WRONG_PNOR_SEC
+ * @userdata1 Tank Layer of attribute
+ * @userdata2 PNOR Section specified
+ * @devdesc Attribute override is in the wrong pnor section
+ * needs to be moved to the section associated
+ * with its attribute tank layer
+ * @custdesc Invalid configuration data in firmware pnor
+ */
+ l_err =
+ new ERRORLOG::ErrlEntry
+ (ERRORLOG::ERRL_SEV_PREDICTIVE,
+ TARG_GET_ATTR_OVER,
+ TARG_RC_WRITE_ATTR_OVER_WRONG_PNOR_SEC,
+ l_pAttrOverSec->iv_layer,
+ i_sectionInfo.id);
+ l_err->collectTrace("TARG",256);
+ l_err->addProcedureCallout(HWAS::EPUB_PRC_SP_CODE,
+ HWAS::SRCI_PRIORITY_HIGH);
+ ERRORLOG::errlCommit(l_err, TARG_COMP_ID);
+ }
+ // Only apply attribute override if in the correct PNOR section
+ else
+ {
+ // Get the AttributeTank that corresponds to the TankLayer in
+ // the AttrOverrideSection. Enum starts with TANK_LAYER_NONE
+ // so need to substract 1
+ AttributeTank* l_ptank = l_pOverTanks[l_pAttrOverSec->iv_layer - 1];
+
+ // Create serialized chunck with AttrOverrideSection data
+ AttributeTank::AttributeSerializedChunk l_chunk;
+ l_chunk.iv_size = l_pAttrOverSec->iv_size;
+ l_chunk.iv_pAttributes = &l_pAttrOverSec->iv_chunk[0];
+
+ // Deserialize the data with the approriate AttributeTank
+ l_ptank->deserializeAttributes(l_chunk);
+ }
l_index += l_pAttrOverSec->iv_size;
}
+ if (l_err)
+ {
+ break;
+ }
+
// Write permanent attribute overrides
- l_err = l_PermTank.writePermAttributes();
+ if ((i_sectionInfo.id == PNOR::ATTR_PERM) &&
+ (l_PermTank.size() > 0) )
+ {
+ // l_PermTank should be empty if the section is not ATTR_PERM
+ // with the check above, but sanity check
+ l_err = l_PermTank.writePermAttributes();
+ break;
+ }
} while(0);
OpenPOWER on IntegriCloud