diff options
| author | Dan Crowell <dcrowell@us.ibm.com> | 2018-03-20 09:20:17 -0500 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2018-06-26 11:18:28 -0400 |
| commit | 0e138b0da002197cc86f601be5b307386a5fdfab (patch) | |
| tree | 9412e5b2803d1022f30b2646ddaefc333a627ac9 /src/usr/errl | |
| parent | d2482ab7773d854ec50ffcd7d92bb019a217d4e3 (diff) | |
| download | talos-hostboot-0e138b0da002197cc86f601be5b307386a5fdfab.tar.gz talos-hostboot-0e138b0da002197cc86f601be5b307386a5fdfab.zip | |
Modify debug framework to be build-independent
During boot, Hostboot will push key pointers into memory. This
allows the debug tools to find the pointers (using a known static
memory address) to base memory accesses on. This replaces the
existing symbol lookup that we use now. That means we don't
need to have the exact symbol file for the build we're debugging
against.
Change-Id: I4618e15a3dc90acc3a89520a502eb818c1b4258c
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/56097
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: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/errl')
| -rw-r--r-- | src/usr/errl/errlmanager.C | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/usr/errl/errlmanager.C b/src/usr/errl/errlmanager.C index 4476640f7..d3dd871aa 100644 --- a/src/usr/errl/errlmanager.C +++ b/src/usr/errl/errlmanager.C @@ -54,6 +54,7 @@ #include <functional> #include <hwas/common/deconfigGard.H> #include <kernel/terminate.H> +#include <debugpointers.H> namespace ERRORLOG { @@ -153,6 +154,10 @@ ErrlManager::ErrlManager() : l_pMarker->length = 0; #endif + DEBUG::add_debug_pointer(DEBUG::ERRORLOGS, + &g_ErrlStorage, + 4); + // to determine the starting log ID, we need to do this in 2 steps // first, determine our node // BYTE 0 of the PLID is the ID: 0x9# where # is the node instance. |

