summaryrefslogtreecommitdiffstats
path: root/src/test/testcases
diff options
context:
space:
mode:
authorRaja Das <rajadas2@in.ibm.com>2017-04-11 04:55:10 -0500
committerAMIT J. TENDOLKAR <amit.tendolkar@in.ibm.com>2017-04-28 01:09:04 -0400
commitd91d48dfc1487d21383c7486b82755445adf25c8 (patch)
treea21e52a6bdc895b54fef812c757f50ea17108c5f /src/test/testcases
parent870114fa26c1d3a855529b6cd63b310347f4576a (diff)
downloadtalos-sbe-d91d48dfc1487d21383c7486b82755445adf25c8.tar.gz
talos-sbe-d91d48dfc1487d21383c7486b82755445adf25c8.zip
SBE Psu Host pass through
Change-Id: I2d357ed234da22b9c38d8d7c5b0d8a04689f9328 RTC: 159753 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/39087 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: AMIT J. TENDOLKAR <amit.tendolkar@in.ibm.com>
Diffstat (limited to 'src/test/testcases')
-rw-r--r--src/test/testcases/testAduMem_124B.py2
-rw-r--r--src/test/testcases/testMemUtil.py10
-rw-r--r--src/test/testcases/testPsuHostPassThrough.py144
-rw-r--r--src/test/testcases/testPutGetMem.xml5
4 files changed, 155 insertions, 6 deletions
diff --git a/src/test/testcases/testAduMem_124B.py b/src/test/testcases/testAduMem_124B.py
index 82336896..9d6cd146 100644
--- a/src/test/testcases/testAduMem_124B.py
+++ b/src/test/testcases/testAduMem_124B.py
@@ -82,7 +82,7 @@ def main( ):
# Test case 4: Invalid length - 3
# GetMemAdu test
- testMemProcUtil.getmem_failure(0x08000000, 3, 0xA5)
+ testMemProcUtil.getmem_failure(0x08000000, 3, 0xA5, 0x0002000A)
print ("Success - invalid length test")
#-------------------------------------------------
diff --git a/src/test/testcases/testMemUtil.py b/src/test/testcases/testMemUtil.py
index d44c56ea..c6b5ab96 100644
--- a/src/test/testcases/testMemUtil.py
+++ b/src/test/testcases/testMemUtil.py
@@ -119,7 +119,7 @@ def getmem(addr, len, flags):
testUtil.readEot( )
return data[:lenExp]
-def getmem_failure(addr, len, flags):
+def getmem_failure(addr, len, flags, responseWord):
req = (getsingleword(6)
+ [0, 0, 0xA4, 0x01]
+ getsingleword(flags)
@@ -127,9 +127,9 @@ def getmem_failure(addr, len, flags):
+ getsingleword(len))
testUtil.writeUsFifo(req)
testUtil.writeEot( )
- expResp = [0x0, 0x0, 0x0, 0x0,
- 0xc0,0xde,0xa4,0x01,
- 0x0,0x2,0x0,0xa,
- 0x0,0x0,0x0,0x03];
+ expResp = ([0x0, 0x0, 0x0, 0x0]
+ + [0xc0,0xde,0xa4,0x01]
+ + getsingleword(responseWord)
+ + [0x0,0x0,0x0,0x03])
testUtil.readDsFifo(expResp)
testUtil.readEot( )
diff --git a/src/test/testcases/testPsuHostPassThrough.py b/src/test/testcases/testPsuHostPassThrough.py
new file mode 100644
index 00000000..d63bd212
--- /dev/null
+++ b/src/test/testcases/testPsuHostPassThrough.py
@@ -0,0 +1,144 @@
+# IBM_PROLOG_BEGIN_TAG
+# This is an automatically generated prolog.
+#
+# $Source: src/test/testcases/testPsuHostPassThrough.py $
+#
+# OpenPOWER sbe Project
+#
+# Contributors Listed Below - COPYRIGHT 2017
+# [+] International Business Machines Corp.
+#
+#
+# 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 sys
+sys.path.append("targets/p9_nimbus/sbeTest" )
+import testPSUUtil
+import testRegistry as reg
+import testUtil
+import testMemUtil
+
+#-------------------------------
+# This is a Test Expected Data
+#-------------------------------
+'''
+This data are the values or strings that needs to be validated for the test.
+'''
+'''
+#------------------------------------------------------------------------------------------------------------------------------
+# SBE side test data -
+#------------------------------------------------------------------------------------------------------------------------------
+'''
+sbe_test_data = (
+ #-----------------------------------------------------------------------------------------------------
+ # OP Reg ValueToWrite size Test Expected Data Description
+ #-----------------------------------------------------------------------------------------------------
+ # FFDC Size, Pass CMD Size
+ ["write", reg.REG_MBOX0, "0000010000F0D704", 8, "None", "Writing to MBOX0 address"],
+ # FFDC Size, Pass CMD Size
+ ["write", reg.REG_MBOX1, "0000010000000100", 8, "None", "Writing to MBOX1 address"],
+ # FFDC Addr
+ ["write", reg.REG_MBOX2, "1234567898765432", 8, "None", "Writing to MBOX2 address"],
+ # Pass Cmd Addr
+ ["write", reg.REG_MBOX3, "0000000008000000", 8, "None", "Writing to MBOX3 address"],
+ ["write", reg.PSU_SBE_DOORBELL_REG_WO_OR, "8000000000000000", 8, "None", "Update SBE Doorbell register to interrupt SBE"],
+ )
+'''
+#---------------------
+# Host side test data - SUCCESS
+#---------------------
+'''
+host_test_data_success = (
+ #----------------------------------------------------------------------------------------------------------------
+ # OP Reg ValueToWrite size Test Expected Data Description
+ #----------------------------------------------------------------------------------------------------------------
+ ["read", reg.REG_MBOX4, "0", 8, "0000000000F0D704", "Reading Host MBOX4 data to Validate"],
+ )
+
+'''
+#-----------------------------------------------------------------------
+# Do not modify - Used to simulate interrupt on Ringing Doorbell on Host
+#-----------------------------------------------------------------------
+'''
+host_polling_data = (
+ #----------------------------------------------------------------------------------------------------------------
+ # OP Reg ValueToWrite size Test Expected Data Description
+ #----------------------------------------------------------------------------------------------------------------
+ ["read", reg.PSU_HOST_DOORBELL_REG_WO_OR, "0", 8, "8000000000000000", "Reading Host Doorbell for Interrupt Bit0"],
+ )
+
+host_pass_through_polling_data = (
+ #----------------------------------------------------------------------------------------------------------------
+ # OP Reg ValueToWrite size Test Expected Data Description
+ #----------------------------------------------------------------------------------------------------------------
+ ["read", reg.PSU_HOST_DOORBELL_REG_WO_OR, "0", 8, "0800000000000000", "Reading Host Doorbell for Interrupt Bit4"],
+ )
+
+
+#-------------------------
+# Main Function
+#-------------------------
+def main():
+ # Run Simics initially
+ testUtil.runCycles( 10000000 );
+
+ # Intialize the class obj instances
+ regObj = testPSUUtil.registry() # Registry obj def for operation
+
+ print "\n Execute SBE Test - Set Pass through Address\n"
+
+ '''
+ Test Case 1
+ '''
+ # HOST->SBE data set execution
+ regObj.ExecuteTestOp( testPSUUtil.simSbeObj, sbe_test_data )
+
+ print "\n Poll on Host side for INTR ...\n"
+ #Poll on HOST DoorBell Register for interrupt
+ regObj.pollingOn( testPSUUtil.simSbeObj, host_polling_data, 5 )
+
+ #SBE->HOST data set execution
+ regObj.ExecuteTestOp( testPSUUtil.simSbeObj, host_test_data_success )
+
+ testUtil.runCycles( 10000000 )
+ # Put mem PBA - Passthrough
+ data = os.urandom(128*2)
+ data = [ord(c) for c in data]
+ # WO FMODE WO LCO PASSTHROUGH
+ testMemUtil.putmem(0x00000000, data, 0x102)
+ #Poll on HOST DoorBell Register for interrupt
+ regObj.pollingOn( testPSUUtil.simSbeObj, host_pass_through_polling_data, 5 )
+
+ readData = testMemUtil.getmem(0x00000000, 128*2, 0x102)
+ if(data == readData):
+ print ("Success - Write-Read PBA - With Pass through Mode")
+ else:
+ print data
+ print readData
+ raise Exception('data mistmach')
+ # Send an invalid size, it should fail
+ testMemUtil.getmem_failure(0x00000000, 128*4, 0x102, 0x0002000a)
+ print ("Success - Wrote an invalid size which failed")
+
+if __name__ == "__main__":
+ main()
+ if err:
+ print ( "\nTest Suite completed with error(s)" )
+ #sys.exit(1)
+ else:
+ print ( "\nTest Suite completed with no errors" )
+ #sys.exit(0);
+
+
diff --git a/src/test/testcases/testPutGetMem.xml b/src/test/testcases/testPutGetMem.xml
index 8e87e3c5..5185ac10 100644
--- a/src/test/testcases/testPutGetMem.xml
+++ b/src/test/testcases/testPutGetMem.xml
@@ -28,3 +28,8 @@
<simcmd>run-python-file targets/p9_nimbus/sbeTest/testMemPBA.py</simcmd>
<exitonerror>yes</exitonerror>
</testcase>
+ <testcase>
+ <simcmd>run-python-file targets/p9_nimbus/sbeTest/testPsuHostPassThrough.py</simcmd>
+ <exitonerror>yes</exitonerror>
+ </testcase>
+
OpenPOWER on IntegriCloud