blob: 039010d21a3264967cf1f087922d66863b0a79f9 [file] [log] [blame]
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -04001#!/usr/bin/env python
2# Script to check a bios image and report info on it.
3#
4# Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
5#
6# This file may be distributed under the terms of the GNU GPLv3 license.
7
8import sys
Kevin O'Connor5b8f8092009-09-20 19:47:45 -04009import layoutrom
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040010
11def main():
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040012 # Get args
13 objinfo, rawfile, outfile = sys.argv[1:]
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040014
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040015 # Read in symbols
16 objinfofile = open(objinfo, 'rb')
17 symbols = layoutrom.parseObjDump(objinfofile)[1]
18 syms = {}
19 for name, (addr, section) in symbols.items():
20 syms[name] = addr
21
22 # Read in raw file
23 f = open(rawfile, 'rb')
24 rawdata = f.read()
25 f.close()
26 datasize = len(rawdata)
27 finalsize = 64*1024
28 if datasize > 64*1024:
29 finalsize = 128*1024
30
31 # Sanity checks
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040032 start = syms['code32flat_start']
33 end = syms['code32flat_end']
34 expend = layoutrom.BUILD_BIOS_ADDR + layoutrom.BUILD_BIOS_SIZE
35 if end != expend:
36 print "Error! Code does not end at 0x%x (got 0x%x)" % (
37 expend, end)
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040038 sys.exit(1)
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040039 if datasize > finalsize:
40 print "Error! Code is too big (0x%x vs 0x%x)" % (
41 datasize, finalsize)
42 sys.exit(1)
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040043 expdatasize = end - start
44 if datasize != expdatasize:
Kevin O'Connor871e0a02009-12-30 12:14:53 -050045 print "Error! Unknown extra data (0x%x vs 0x%x)" % (
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040046 datasize, expdatasize)
Kevin O'Connor871e0a02009-12-30 12:14:53 -050047 sys.exit(1)
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040048
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040049 # Print statistics
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040050 print "Total size: %d Free space: %d Percent used: %.1f%% (%dKiB rom)" % (
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040051 datasize, finalsize - datasize
52 , (datasize / float(finalsize)) * 100.0
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040053 , finalsize / 1024)
54
55 # Write final file
56 f = open(outfile, 'wb')
57 f.write(("\0" * (finalsize - datasize)) + rawdata)
58 f.close()
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040059
60if __name__ == '__main__':
61 main()