summaryrefslogtreecommitdiffstats
path: root/sbe/test/testGetCapabilities.py
blob: f9292532269ef98071588ed0082abdb6d28e8006 (plain)
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
import sys
sys.path.append("targets/p9_nimbus/sbeTest" )
import testUtil
err = False

TESTDATA = [0,0,0,2,
            0,0,0xA8,0x02 ]

EXPDATA1 = [0x0,0x0,0x0,0x0,
           0x0,0x0,0x0,0x0,
           0xa1,0x0,0x0,0x01, # istep
           0x0,0x0,0x0,0x0,
           0xa2,0x0,0x0,0x0f, #getscom/putscom/modifyscom/putscomundermask
           0x0,0x0,0x0,0x0,
           0x0,0x0,0x0,0x0,
           0x00,0x0,0x0,0x0];

EXPDATA2 = [0xa4,0x0,0x0,0x0f, #GetMemPba/PutMemPba/GetSramOcc/PutSramOcc
           0x0,0x0,0x0,0x0,
           0xa5,0x0,0x0,0x03, #GetReg/PutReg
           0x0,0x0,0x0,0x0,
           0x0,0x0,0x0,0x0,
           0x0,0x0,0x0,0x0,
           0xa7,0x0,0x0,0x1, #  control Instruction
           0x00,0x0,0x0,0x0];

EXPDATA3 = [0xa8,0x0,0x0,0x02, #getcapability
           0x0,0x0,0x0,0x0,
           0xc0,0xde,0xa8,0x02,
           0x0,0x0,0x0,0x0,
           0x00,0x0,0x0,0x3];


# MAIN Test Run Starts Here...
#-------------------------------------------------
def main( ):
    testUtil.runCycles( 10000000 )
    testUtil.writeUsFifo( TESTDATA )
    testUtil.writeEot( )
    # Ignore first two enteries ( major number, minor number
    # and fw version) as they will keep on changing
    testUtil.readDsEntry( 2 )
    testUtil.readDsFifo( EXPDATA1 )
    testUtil.readDsFifo( EXPDATA2 )
    testUtil.readDsFifo( EXPDATA3 )
    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);

OpenPOWER on IntegriCloud