summaryrefslogtreecommitdiffstats
path: root/src/test/testcases
diff options
context:
space:
mode:
authorspashabk-in <shakeebbk@in.ibm.com>2018-03-27 04:55:59 -0500
committerSachin Gupta <sgupta2m@in.ibm.com>2018-04-02 04:33:46 -0400
commitc10e17d5baea61727cc04ce197eea3f7e5eae534 (patch)
tree85d3edc6d0e27ec01642659c32b1b7478f9456d8 /src/test/testcases
parent80ef172f20912c3c492ee96a3f474fa20f136961 (diff)
downloadtalos-sbe-c10e17d5baea61727cc04ce197eea3f7e5eae534.tar.gz
talos-sbe-c10e17d5baea61727cc04ce197eea3f7e5eae534.zip
Run simics intially till SBE is booted
Change-Id: Iab0eb98231bb1f66944cbb5f990f80ab9e827e49 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/56297 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Sachin Gupta <sgupta2m@in.ibm.com>
Diffstat (limited to 'src/test/testcases')
-rwxr-xr-xsrc/test/testcases/test.xml3
-rw-r--r--src/test/testcases/testRunTillSbeBooted.py45
2 files changed, 48 insertions, 0 deletions
diff --git a/src/test/testcases/test.xml b/src/test/testcases/test.xml
index 6edd31fc..27b8af07 100755
--- a/src/test/testcases/test.xml
+++ b/src/test/testcases/test.xml
@@ -30,6 +30,9 @@
<testcase>
<simcmd>p9Proc0.pib_psu->tppsu_tpbr_interrupt_msg_available=[NIL]</simcmd>
</testcase>
+ <testcase>
+ <simcmd>run-python-file targets/p9_nimbus/sbeTest/testRunTillSbeBooted.py</simcmd>
+ </testcase>
<include>../simics/targets/p9_nimbus/sbeTest/testPSUSetStashPair.xml</include>
<include>../simics/targets/p9_nimbus/sbeTest/testIstep.xml</include>
<include>../simics/targets/p9_nimbus/sbeTest/testSuspendIO.xml</include>
diff --git a/src/test/testcases/testRunTillSbeBooted.py b/src/test/testcases/testRunTillSbeBooted.py
new file mode 100644
index 00000000..0e5898e4
--- /dev/null
+++ b/src/test/testcases/testRunTillSbeBooted.py
@@ -0,0 +1,45 @@
+# IBM_PROLOG_BEGIN_TAG
+# This is an automatically generated prolog.
+#
+# $Source: src/test/testcases/testRunTillSbeBooted.py $
+#
+# OpenPOWER sbe Project
+#
+# Contributors Listed Below - COPYRIGHT 2018
+#
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+# implied. See the License for the specific language governing
+# permissions and limitations under the License.
+#
+# IBM_PROLOG_END_TAG
+import os
+import sys
+sys.path.append("targets/p9_nimbus/sbeTest" )
+import testUtil
+err = False
+
+import testScomUtil
+
+from sim_commands import *
+lbus = conf.p9Proc0.proc_lbus_map
+
+while True:
+ try:
+ if testUtil.read(lbus, 0x2824, 4)[0] & 0x80 :
+ print "SBE is booted, continue"
+ break
+ else:
+ print "SBE is still not booted"
+
+ except:
+ print "."
+ testUtil.runCycles( 10000000 )
OpenPOWER on IntegriCloud