diff options
author | Dan Crowell <dcrowell@us.ibm.com> | 2013-11-13 09:32:01 -0600 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2013-12-12 16:27:50 -0600 |
commit | 948809ead9262fe86e78e303f3e5d1a19388f7ee (patch) | |
tree | f96f47384b95e865c9a324747f687f7cc0ca8d59 /src/usr/testcore/rtloader | |
parent | 07c9716fcf31ce5352ce412a643071ea89bd2ca1 (diff) | |
download | talos-hostboot-948809ead9262fe86e78e303f3e5d1a19388f7ee.tar.gz talos-hostboot-948809ead9262fe86e78e303f3e5d1a19388f7ee.zip |
IBSCOM Enablement and Error Handling
Enable IBSCOM for Centaur DD2.x chips
Add appropriate error handling
Flip scom to FSI after IBSCOM fail
Enable reconfig loop cleanup
Code verified on hardware
Change-Id: I394789b900e5779dded78dd5fbcc9b9257e856fb
RTC: 69115
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/7410
Tested-by: Jenkins Server
Reviewed-by: Michael Baiocchi <baiocchi@us.ibm.com>
Reviewed-by: ADAM R. MUHLE <armuhle@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/testcore/rtloader')
-rw-r--r-- | src/usr/testcore/rtloader/loader.H | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/usr/testcore/rtloader/loader.H b/src/usr/testcore/rtloader/loader.H index ea36f1126..03e8e5f39 100644 --- a/src/usr/testcore/rtloader/loader.H +++ b/src/usr/testcore/rtloader/loader.H @@ -32,6 +32,7 @@ #include <errl/errlmanager.H> #include <util/utillidmgr.H> #include <map> +#include <sys/time.h> #include <runtime/interface.h> #include <vpd/vpd_if.H> @@ -105,6 +106,7 @@ class RuntimeLoaderTest : public CxxTest::TestSuite intf->malloc = malloc; intf->free = free; intf->realloc = realloc; + intf->sleep = nanosleep; intf->assert = rt_assert; intf->sendErrorLog = rt_logErr; intf->scom_read = rt_scom_read; |