1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
# IBM_PROLOG_BEGIN_TAG
# This is an automatically generated prolog.
#
# $Source: src/test/testcases/testSbeDump.py $
#
# OpenPOWER sbe Project
#
# Contributors Listed Below - COPYRIGHT 2016,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 testUtil
err = False
#from testWrite import *
TESTDATA = [0, 0, 0, 2,
0, 0, 0xA8, 0x01]
EXPDATA = [0xc0, 0xde, 0xa8, 0x01,
0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3]
# MAIN Test Run Starts Here...
#-------------------------------------------------
def main():
testUtil.runCycles(10000000)
testUtil.writeUsFifo(TESTDATA)
testUtil.writeEot()
print ("\n HWP internal ffdc")
testUtil.extractHWPFFDC( True )
print ("\n SBE internal ffdc")
data = testUtil.readDsEntryReturnVal()
magicBytes = ((data[0] << 8) | data[1])
if (magicBytes == 0xFFDC) :
print ("\nMagic Bytes Match")
else :
raise Exception('data mistmach')
packLen = ((data[2] << 8) | data[3])
print ("\nFFDC package length = " + str(packLen))
# extract Sequence ID, Command class and command
data = testUtil.readDsEntryReturnVal()
seqId = ((data[0] << 24) | (data[1] << 16))
cmdClass = data[2]
cmd = data[3]
print ("\n SeqId ["+str(seqId)+"] CmdClass ["+str(cmdClass)+"] Cmd ["+str(cmd)+"]")
data = testUtil.readDsEntryReturnVal()
fapiRc = ((data[0] << 24) | (data[1] << 16) | (data[2] << 8) | data[3])
print ("\nFAPI rc = " + str(hex(fapiRc)))
data = testUtil.readDsEntryReturnVal()
primaryStatus = ((data[0] << 8) | data[1])
secondaryStatus = ((data[2] << 8) | data[3])
print ("\nPrimary Status " + str(hex(primaryStatus)) + " Secondary Status "\
+ str(hex(secondaryStatus)))
data = testUtil.readDsEntryReturnVal()
commitID = ((data[0] << 24) | (data[1] << 16) | (data[2] << 8) | data[3])
print ("\ncommitID = " + str(hex(commitID)))
data = testUtil.readDsEntryReturnVal()
ddLevel = ((data[0] << 24) | (data[1] << 16) | (data[2] << 8) | data[3])
print ("\nddLevel = " + str(hex(ddLevel)))
data = testUtil.readDsEntryReturnVal()
header = ((data[0] << 24) | (data[1] << 16) | (data[2] << 8) | data[3])
print ("\nHeader = " + str(hex(header)))
for i in range(0, (bin(header).count("1"))):
#read user data id
data = testUtil.readDsEntryReturnVal()
id = (data[0] << 8) | data[1]
print "User data Id ["+str(hex(id))+"]"
len = (data[2] << 8) | data[3]
#if it is trace field SBE_FFDC_TRACE_DUMP
fileName = ""
if(id == 0x0002):
fileName = "trace.bin"
print ("\nlength of trace dump " + str(len))
#if it is trace field SBE_FFDC_ATTR_DUMP
elif(id == 0x0001):
fileName = "attr.bin"
print ("\nlength of attr dump " + str(len))
myBin = open(fileName, 'wb')
print ("\nwriting "+fileName)
loopCount = (len ) / 4
for j in range(0, loopCount):
data = testUtil.readDsEntryReturnVal()
myBin.write(bytearray(data))
print("write to a file Done")
myBin.close()
print ("Read the Expected data")
testUtil.readDsFifo( EXPDATA )
print ("Read Eot")
testUtil.readEot( )
#-------------------------------------------------
# Calling all test code
#-------------------------------------------------
main()
if err:
print ("\nTest Suite completed with error(s)")
#sys.exit(1)
else:
print ("\nTest Suite completed with no errors")
#sys.exit(0);
|