blob: aced5e2cfb28caf8fd922b337cf3bd1a6eb5bcdf [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
Kevin O'Connore51488c2014-05-22 16:59:16 -04008import sys, struct
9import layoutrom, buildrom
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040010
Johannes Krampf19f789b2014-01-19 16:03:49 +010011from python23compat import as_bytes
12
David Woodhousea82be562013-01-17 21:23:46 +000013def subst(data, offset, new):
14 return data[:offset] + new + data[offset + len(new):]
15
16def checksum(data, start, size, csum):
Kevin O'Connore51488c2014-05-22 16:59:16 -040017 sumbyte = buildrom.checksum(data[start:start+size])
18 return subst(data, start+csum, sumbyte)
David Woodhousea82be562013-01-17 21:23:46 +000019
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040020def main():
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040021 # Get args
Gerd Hoffmann85f8fac2013-09-24 10:06:16 +020022 objinfo, finalsize, rawfile, outfile = sys.argv[1:]
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040023
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040024 # Read in symbols
Johannes Krampf19f789b2014-01-19 16:03:49 +010025 objinfofile = open(objinfo, 'r')
Kevin O'Connor1a4885e2010-09-15 21:28:31 -040026 symbols = layoutrom.parseObjDump(objinfofile, 'in')[1]
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040027
28 # Read in raw file
29 f = open(rawfile, 'rb')
30 rawdata = f.read()
31 f.close()
32 datasize = len(rawdata)
Gerd Hoffmann85f8fac2013-09-24 10:06:16 +020033 finalsize = int(finalsize) * 1024
34 if finalsize == 0:
35 finalsize = 64*1024
36 if datasize > 64*1024:
37 finalsize = 128*1024
38 if datasize > 128*1024:
39 finalsize = 256*1024
40 if datasize > finalsize:
Johannes Krampf064fd062014-01-12 11:14:54 -050041 print("Error! ROM doesn't fit (%d > %d)" % (datasize, finalsize))
Andreas Färberb4581222015-03-19 17:23:19 +010042 print(" You have to either increase the size (CONFIG_ROM_SIZE)")
Johannes Krampf064fd062014-01-12 11:14:54 -050043 print(" or turn off some features (such as hardware support not")
44 print(" needed) to make it fit. Trying a more recent gcc version")
45 print(" might work too.")
Gerd Hoffmann85f8fac2013-09-24 10:06:16 +020046 sys.exit(1)
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040047
48 # Sanity checks
Kevin O'Connor1a4885e2010-09-15 21:28:31 -040049 start = symbols['code32flat_start'].offset
50 end = symbols['code32flat_end'].offset
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040051 expend = layoutrom.BUILD_BIOS_ADDR + layoutrom.BUILD_BIOS_SIZE
52 if end != expend:
Johannes Krampf064fd062014-01-12 11:14:54 -050053 print("Error! Code does not end at 0x%x (got 0x%x)" % (
54 expend, end))
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040055 sys.exit(1)
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040056 if datasize > finalsize:
Johannes Krampf064fd062014-01-12 11:14:54 -050057 print("Error! Code is too big (0x%x vs 0x%x)" % (
58 datasize, finalsize))
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040059 sys.exit(1)
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040060 expdatasize = end - start
61 if datasize != expdatasize:
Johannes Krampf064fd062014-01-12 11:14:54 -050062 print("Error! Unknown extra data (0x%x vs 0x%x)" % (
63 datasize, expdatasize))
Kevin O'Connor871e0a02009-12-30 12:14:53 -050064 sys.exit(1)
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040065
David Woodhousea82be562013-01-17 21:23:46 +000066 # Fix up CSM Compatibility16 table
67 if 'csm_compat_table' in symbols and 'entry_csm' in symbols:
68 # Field offsets within EFI_COMPATIBILITY16_TABLE
69 ENTRY_FIELD_OFS = 14 # Compatibility16CallOffset (UINT16)
70 SIZE_FIELD_OFS = 5 # TableLength (UINT8)
71 CSUM_FIELD_OFS = 4 # TableChecksum (UINT8)
72
73 tableofs = symbols['csm_compat_table'].offset - symbols['code32flat_start'].offset
74 entry_addr = symbols['entry_csm'].offset - layoutrom.BUILD_BIOS_ADDR
Kevin O'Connore51488c2014-05-22 16:59:16 -040075 entry_addr = struct.pack('<H', entry_addr)
76 rawdata = subst(rawdata, tableofs+ENTRY_FIELD_OFS, entry_addr)
David Woodhousea82be562013-01-17 21:23:46 +000077
Kevin O'Connore51488c2014-05-22 16:59:16 -040078 tsfield = tableofs+SIZE_FIELD_OFS
79 tablesize = ord(rawdata[tsfield:tsfield+1])
David Woodhousea82be562013-01-17 21:23:46 +000080 rawdata = checksum(rawdata, tableofs, tablesize, CSUM_FIELD_OFS)
81
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040082 # Print statistics
Kevin O'Connor6afc6f82013-02-19 01:02:50 -050083 runtimesize = end - symbols['code32init_end'].offset
Johannes Krampf064fd062014-01-12 11:14:54 -050084 print("Total size: %d Fixed: %d Free: %d (used %.1f%% of %dKiB rom)" % (
Kevin O'Connor94dc9c42010-09-26 18:32:13 -040085 datasize, runtimesize, finalsize - datasize
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040086 , (datasize / float(finalsize)) * 100.0
Johannes Krampf9d7d0442014-01-12 11:19:22 -050087 , int(finalsize / 1024)))
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040088
89 # Write final file
90 f = open(outfile, 'wb')
Johannes Krampf19f789b2014-01-19 16:03:49 +010091 f.write((as_bytes("\0") * (finalsize - datasize)) + rawdata)
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040092 f.close()
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040093
94if __name__ == '__main__':
95 main()