summaryrefslogtreecommitdiffstats
path: root/sbe/build/tools/Debug/sbe-debug.py
blob: 75ea689cb87a33c8a4d23b6e76e014833700ec98 (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
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
127
128
129
130
131
132
133
134
135
136
137
#!/usr/bin/python
# IBM_PROLOG_BEGIN_TAG
# This is an automatically generated prolog.
#
# $Source: sbe/build/tools/Debug/sbe-debug.py $
#
# OpenPOWER sbe Project
#
# Contributors Listed Below - COPYRIGHT 2016
# [+] 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 os
import subprocess
import re
import random
import argparse
import sys
err = False

syms = {};

def fillSymTable(sbeObjDir):
    symFile = sbeObjDir + "/sbe.syms"
    f = open( symFile, 'r' )
    for line in f:
        words = line.split()
        if( len( words ) == 4 ):
            syms[words[3]] = [words[0], words[1]]

def collectTrace( hwpBinDir, sbeObjDir, target, proc ):
    cmd1 = ("."+hwpBinDir+"/p9_sbe_pibMemDump_wrap.exe " + \
                          syms['g_pk_trace_buf'][0] +\
                          " " + syms['g_pk_trace_buf'][1] + " " + target)
    cmd2 = "." + "/ppe2fsp dumpPibMem sbetrace.bin "
    cmd3 = ("." + "/fsp-trace -s " + sbeObjDir +\
                         "/trexStringFile sbetrace.bin > "+\
                         "sbe_"+str(proc)+"_tracMERG")
    cmd4 = "mv dumpPibMem dumpPibMem_trace"
    print "\ncollecting trace with commands -\n"
    print "cmd1:", cmd1
    rc = os.system( cmd1 )
    if ( rc ):
       print "ERROR running %s: %d " % ( cmd1, rc )
       return 1

    print "cmd2:", cmd2
    rc = os.system( cmd2 )
    if ( rc ):
       print "ERROR running %s: %d " % ( cmd2, rc )
       return 1

    print "cmd3:", cmd3
    rc = os.system( cmd3 )
    if ( rc ):
       print "ERROR running %s: %d " % ( cmd3, rc )
       return 1

    print "cmd4:", cmd4
    rc = os.system( cmd4 )
    if ( rc ):
       print "ERROR running %s: %d " % ( cmd4, rc )
       return 1

def collectAttr( hwpBinDir, sbeObjDir, target, proc ):
    cmd1 = ("."+hwpBinDir+"/p9_sbe_pibMemDump_wrap.exe " +\
                         syms['G_sbe_attrs'][0] + " " + \
                         syms['G_sbe_attrs'][1] + " " + target)
    cmd2 = "mv dumpPibMem sbeAttr.bin"
    cmd3 = ("."+ sbeObjDir + "/p9_xip_tool " +\
                 sbeObjDir + "/sbe_seeprom.bin -ifs attrdump sbeAttr.bin > "+\
                 "sbe_"+str(proc)+"_attrs")
    print "\ncollecting attributes with commands -\n"
    print "cmd1:", cmd1
    rc = os.system( cmd1 )
    if ( rc ):
       print "ERROR running %s: %d " % ( cmd1, rc )
       return 1

    print "cmd2:", cmd2
    rc = os.system( cmd2 )
    if ( rc ):
       print "ERROR running %s: %d " % ( cmd2, rc )
       return 1

    print "cmd3:", cmd3
    rc = os.system( cmd3 )
    if ( rc ):
       print "ERROR running %s: %d " % ( cmd3, rc )
       return 1

def main( argv ):
    parser = argparse.ArgumentParser( description = "SBE Dump Parser" )

    parser.add_argument( '-hwpBinDir', type=str, default = os.getcwd(), \
                                help = 'Path of p9_sbe_pibMemDump_wrap.exe')
    parser.add_argument( '-sbeObjDir', type=str, default = os.getcwd(), \
                                help = 'Path of sbe.syms file')
    parser.add_argument( '-l', '--level', choices = ['all', 'trace', 'attr'],\
                                default='all', help = 'Parser level' )
    parser.add_argument( '-t', '--target', choices = ['AWAN', 'HW'], \
                                required = 'true', help = 'Target type' )
    parser.add_argument( '-p', '--proc', type=int , default = 0, \
                                help = 'Proc Number' )

    args = parser.parse_args()

    if ( args.target == 'AWAN' ):
        target = "1"
    elif ( args.target == 'HW' ):
        target = "0"

    fillSymTable(args.sbeObjDir)
    if ( args.level == 'all' ):
        print "Parsing everything"
        collectTrace( args.hwpBinDir, args.sbeObjDir, target, args.proc )
        collectAttr( args.hwpBinDir, args.sbeObjDir, target, args.proc )
    elif ( args.level == 'trace' ):
        collectTrace( args.hwpBinDir, args.sbeObjDir, target, args.proc )
    elif ( args.level == 'attr' ):
        collectAttr( args.hwpBinDir, args.sbeObjDir, target, args.proc )

if __name__ == "__main__":
    main( sys.argv )
OpenPOWER on IntegriCloud