blob: 83d4671563c2d47cc27abadb61ec4dfd67acc52f [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
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):
17 sumbyte = 0
18 while size:
19 sumbyte = sumbyte + ord(data[start + size - 1])
20 size = size - 1
21 sumbyte = (0x100 - sumbyte) & 0xff
22 return subst(data, start+csum, chr(sumbyte))
23
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040024def main():
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040025 # Get args
Gerd Hoffmann85f8fac2013-09-24 10:06:16 +020026 objinfo, finalsize, rawfile, outfile = sys.argv[1:]
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040027
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040028 # Read in symbols
Johannes Krampf19f789b2014-01-19 16:03:49 +010029 objinfofile = open(objinfo, 'r')
Kevin O'Connor1a4885e2010-09-15 21:28:31 -040030 symbols = layoutrom.parseObjDump(objinfofile, 'in')[1]
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040031
32 # Read in raw file
33 f = open(rawfile, 'rb')
34 rawdata = f.read()
35 f.close()
36 datasize = len(rawdata)
Gerd Hoffmann85f8fac2013-09-24 10:06:16 +020037 finalsize = int(finalsize) * 1024
38 if finalsize == 0:
39 finalsize = 64*1024
40 if datasize > 64*1024:
41 finalsize = 128*1024
42 if datasize > 128*1024:
43 finalsize = 256*1024
44 if datasize > finalsize:
Johannes Krampf064fd062014-01-12 11:14:54 -050045 print("Error! ROM doesn't fit (%d > %d)" % (datasize, finalsize))
46 print(" You have to either increate the size (CONFIG_ROM_SIZE)")
47 print(" or turn off some features (such as hardware support not")
48 print(" needed) to make it fit. Trying a more recent gcc version")
49 print(" might work too.")
Gerd Hoffmann85f8fac2013-09-24 10:06:16 +020050 sys.exit(1)
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040051
52 # Sanity checks
Kevin O'Connor1a4885e2010-09-15 21:28:31 -040053 start = symbols['code32flat_start'].offset
54 end = symbols['code32flat_end'].offset
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040055 expend = layoutrom.BUILD_BIOS_ADDR + layoutrom.BUILD_BIOS_SIZE
56 if end != expend:
Johannes Krampf064fd062014-01-12 11:14:54 -050057 print("Error! Code does not end at 0x%x (got 0x%x)" % (
58 expend, end))
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040059 sys.exit(1)
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040060 if datasize > finalsize:
Johannes Krampf064fd062014-01-12 11:14:54 -050061 print("Error! Code is too big (0x%x vs 0x%x)" % (
62 datasize, finalsize))
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040063 sys.exit(1)
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040064 expdatasize = end - start
65 if datasize != expdatasize:
Johannes Krampf064fd062014-01-12 11:14:54 -050066 print("Error! Unknown extra data (0x%x vs 0x%x)" % (
67 datasize, expdatasize))
Kevin O'Connor871e0a02009-12-30 12:14:53 -050068 sys.exit(1)
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040069
David Woodhousea82be562013-01-17 21:23:46 +000070 # Fix up CSM Compatibility16 table
71 if 'csm_compat_table' in symbols and 'entry_csm' in symbols:
72 # Field offsets within EFI_COMPATIBILITY16_TABLE
73 ENTRY_FIELD_OFS = 14 # Compatibility16CallOffset (UINT16)
74 SIZE_FIELD_OFS = 5 # TableLength (UINT8)
75 CSUM_FIELD_OFS = 4 # TableChecksum (UINT8)
76
77 tableofs = symbols['csm_compat_table'].offset - symbols['code32flat_start'].offset
78 entry_addr = symbols['entry_csm'].offset - layoutrom.BUILD_BIOS_ADDR
79 byte1 = chr(entry_addr & 0xff)
80 byte2 = chr(entry_addr >> 8)
81 rawdata = subst(rawdata, tableofs+ENTRY_FIELD_OFS, byte1+byte2)
82
83 tablesize = ord(rawdata[tableofs+SIZE_FIELD_OFS])
84 rawdata = checksum(rawdata, tableofs, tablesize, CSUM_FIELD_OFS)
85
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040086 # Print statistics
Kevin O'Connor6afc6f82013-02-19 01:02:50 -050087 runtimesize = end - symbols['code32init_end'].offset
Johannes Krampf064fd062014-01-12 11:14:54 -050088 print("Total size: %d Fixed: %d Free: %d (used %.1f%% of %dKiB rom)" % (
Kevin O'Connor94dc9c42010-09-26 18:32:13 -040089 datasize, runtimesize, finalsize - datasize
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040090 , (datasize / float(finalsize)) * 100.0
Johannes Krampf9d7d0442014-01-12 11:19:22 -050091 , int(finalsize / 1024)))
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040092
93 # Write final file
94 f = open(outfile, 'wb')
Johannes Krampf19f789b2014-01-19 16:03:49 +010095 f.write((as_bytes("\0") * (finalsize - datasize)) + rawdata)
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040096 f.close()
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040097
98if __name__ == '__main__':
99 main()