diff options
author | Prachi Gupta <pragupta@us.ibm.com> | 2017-11-17 13:45:03 -0600 |
---|---|---|
committer | William G. Hoffa <wghoffa@us.ibm.com> | 2017-11-21 12:24:15 -0500 |
commit | 18cc0dfbc93fd2342c5a35f3c8405e1d0a660a77 (patch) | |
tree | f85b3326ebc77e332795385eb4617cd200c989e4 /src/usr/runtime | |
parent | dfdf4bee880f30dd5aefa3cfba70801ad78c760b (diff) | |
download | talos-hostboot-18cc0dfbc93fd2342c5a35f3c8405e1d0a660a77.tar.gz talos-hostboot-18cc0dfbc93fd2342c5a35f3c8405e1d0a660a77.zip |
Zeppelin BUP updates
- targeting: skip over ATTR_BAD_DQ_BITMAP during fapi attriubte dump
as it is not looked up correctly for cumulus.
Need to add it back in future.
- istep changes:
- remove p9_throttle_sync from istep 13, it is already getting
called in istep 14
- add support for memdiags on cumulus
- centaur pibrc errors: mask out PROTECTION_BIT for centaur scoms as it is
irrelevant for centaurs
- configureHbrtHypIds: correctly setup DMI information
Change-Id: Ifeaca2f58e16b7ecac9e1329409b98bc6a2f38e7
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/49382
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: Corey V. Swenson <cswenson@us.ibm.com>
Reviewed-by: Thomas R. Sand <trsand@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
Diffstat (limited to 'src/usr/runtime')
-rw-r--r-- | src/usr/runtime/customize_attrs_for_payload.C | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/usr/runtime/customize_attrs_for_payload.C b/src/usr/runtime/customize_attrs_for_payload.C index 390f09965..88be0ebc4 100644 --- a/src/usr/runtime/customize_attrs_for_payload.C +++ b/src/usr/runtime/customize_attrs_for_payload.C @@ -406,17 +406,17 @@ errlHndl_t configureHbrtHypIds(const bool i_configForPhyp) getParentAffinityTargets(targetList, (*pIt), TARGETING::CLASS_UNIT, - TARGETING::TYPE_MCS); + TARGETING::TYPE_DMI, false); assert( !targetList.empty() ); - auto mcs_target = targetList[0]; - auto pos = mcs_target->getAttr<TARGETING::ATTR_CHIP_UNIT>(); + auto dmi_target = targetList[0]; + auto pos = dmi_target->getAttr<TARGETING::ATTR_CHIP_UNIT>(); targetList.clear(); getParentAffinityTargets(targetList, - mcs_target, + dmi_target, TARGETING::CLASS_CHIP, - TARGETING::TYPE_PROC); + TARGETING::TYPE_PROC, false); assert( !targetList.empty() ); auto procTarget = targetList[0]; |