diff options
| author | Dan Crowell <dcrowell@us.ibm.com> | 2017-07-11 13:11:58 -0500 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-07-13 09:47:05 -0400 |
| commit | 1aa0813d81f7a224583a46e20fd03a437d0ff479 (patch) | |
| tree | 7895cf1fa893d1a75ef3afa2d13e8eeb17626df4 /src/usr/isteps/pm/runtime | |
| parent | 86ce314365a363fee2f5e4d305ebcc1c96f47016 (diff) | |
| download | blackbird-hostboot-1aa0813d81f7a224583a46e20fd03a437d0ff479.tar.gz blackbird-hostboot-1aa0813d81f7a224583a46e20fd03a437d0ff479.zip | |
Correctly handle sbe ranges for multiple chips
Fixing a bug where we did not use unique instance ids for each
SBE's comm and ffdc area. Also reconciled a couple related
mismatches and added some traces for easier debug.
CQ: SW395465
Change-Id: Ib2a50644c114e5b08222b9fb19e92923466fa24c
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/42994
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Martin Gloff <mgloff@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Reviewed-by: Matt Derksen <mderkse1@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-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/usr/isteps/pm/runtime')
| -rw-r--r-- | src/usr/isteps/pm/runtime/rt_pm.C | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/usr/isteps/pm/runtime/rt_pm.C b/src/usr/isteps/pm/runtime/rt_pm.C index 567fdca92..32d3e0a25 100644 --- a/src/usr/isteps/pm/runtime/rt_pm.C +++ b/src/usr/isteps/pm/runtime/rt_pm.C @@ -435,7 +435,9 @@ namespace RTPM itr != procChips.end(); ++itr) { - uint32_t l_instance = (*itr)->getAttr<ATTR_POSITION>(); + // Note: the instance we use to retrieve the data must + // match the value we used to populate HDAT originally + uint32_t l_instance = (*itr)->getAttr<ATTR_HBRT_HYP_ID>(); uint64_t l_homerAddr = g_hostInterfaces-> get_reserved_mem(HBRT_RSVD_MEM__HOMER, l_instance); |

