diff options
author | Prachi Gupta <pragupta@us.ibm.com> | 2017-05-04 11:42:10 -0500 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-05-23 14:04:43 -0400 |
commit | 7ab9a90ab7fdf2a336ef327379001133d52d64ba (patch) | |
tree | 153000ab6c75cc8ce179c075efe14092bada1f6e /src/usr/hwas/test | |
parent | 6d153811271a104cd4471633e19d8b51c664fe5d (diff) | |
download | talos-hostboot-7ab9a90ab7fdf2a336ef327379001133d52d64ba.tar.gz talos-hostboot-7ab9a90ab7fdf2a336ef327379001133d52d64ba.zip |
deconfing/gard of OBUS_BRICK/NPU targets
Change-Id: I1388859a81ba8b2e040f6d136eafcf50f1f138ba
RTC:173738
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/40218
Reviewed-by: Matthew A. Ploetz <maploetz@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@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>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/hwas/test')
-rw-r--r-- | src/usr/hwas/test/hwas1test.H | 68 |
1 files changed, 65 insertions, 3 deletions
diff --git a/src/usr/hwas/test/hwas1test.H b/src/usr/hwas/test/hwas1test.H index f038e46e5..0eca4045a 100644 --- a/src/usr/hwas/test/hwas1test.H +++ b/src/usr/hwas/test/hwas1test.H @@ -48,7 +48,6 @@ #include <targeting/common/commontargeting.H> #include <targeting/common/utilFilter.H> - // Buffer with all good data (CUMULUS chip) const uint16_t pgDataAllGood[HWAS::VPD_CP00_PG_DATA_ENTRIES] = {(uint16_t)HWAS::VPD_CP00_PG_FSI_GOOD, @@ -702,6 +701,18 @@ public: pgData[VPD_CP00_PG_OB0_INDEX + l_chipUnit]); break; + case TYPE_OBUS_BRICK: + sprintf(l_type_str, "OBUS_BRICK"); + sprintf(l_pgData, ", pgData = 0x%04x", + pgData[VPD_CP00_PG_N3_INDEX]); + break; + + case TYPE_NPU: + sprintf(l_type_str, "NPU"); + sprintf(l_pgData, ", pgData = 0x%04x", + pgData[VPD_CP00_PG_N3_INDEX]); + break; + case TYPE_PERV: sprintf(l_type_str, "PERV"); sprintf(l_pgData, ", pgData = 0x%04x", @@ -1412,8 +1423,59 @@ public: break; case TYPE_OBUS_BRICK: + { + //Two cases here: + //OBRICK==SMP --> Target should be present regardless of PG + //OBRICK!=SMP --> Target should follow PG + //marking PG bad + pgData[VPD_CP00_PG_N3_INDEX] |= + (uint16_t)VPD_CP00_PG_N3_NPU; + + ATTR_OPTICS_CONFIG_MODE_type config_mode = + pDesc->getAttr<ATTR_OPTICS_CONFIG_MODE>(); + + if (OPTICS_CONFIG_MODE_SMP == config_mode) + { + //Calling with target set as SMP + TS_INFO( "testHWASisDescFunctional: " + "OBUS_BRICK PG is bad and target is SMP"); + + //Since SMP, should always be true, but fail test if false + if (!isDescFunctional(pDesc, pgData)) + { + TS_FAIL("testHWASisDescFunctional>" + "functional = 0x%x, should be true because" + "OBUS_BRICK is SMP: PG = 0x%04x.", + isDescFunctional(pDesc, pgData), + pgData[VPD_CP00_PG_N3_INDEX]); + } + } + else + { + TS_INFO( "testHWASisDescFunctional: " + "OBUS_BRICK PG is bad and target is NVLINK"); + + //Since non-SMP, should return false, but fail test if true + if (isDescFunctional(pDesc, pgData)) + { + TS_FAIL("testHWASisDescFunctional>" + "functional = 0x%x, should be false because" + "OBUS_BRICK is NVLINK: PG = 0x%04x.", + isDescFunctional(pDesc, pgData), + pgData[VPD_CP00_PG_N3_INDEX]); + } + } + + //Setting PG back to good data + pgData[VPD_CP00_PG_N3_INDEX] = + (uint16_t)VPD_CP00_PG_N3_GOOD; + + break; + } + + case TYPE_NPU: TS_INFO( "testHWASisDescFunctional: " - "NV is not functional"); + "NPU is not functional"); pgData[VPD_CP00_PG_N3_INDEX] |= (uint16_t)VPD_CP00_PG_N3_NPU; @@ -1421,7 +1483,7 @@ public: { TS_FAIL("testHWASisDescFunctional>" "functional = 0x%x, should be false, " - "NV = 0x%04x.", + "NPU = 0x%04x.", isDescFunctional(pDesc, pgData), pgData[VPD_CP00_PG_N3_INDEX]); } |