880abb5d14d11e87cbc9199e231261774546ed49
[b43-tools.git] / disassembler / brcm80211fwconv
1 #!/usr/bin/env python
2 """
3 #   Copyright (C) 2010  Michael Buesch <mb@bu3sch.de>
4 #
5 #   This program is free software; you can redistribute it and/or modify
6 #   it under the terms of the GNU General Public License version 2
7 #   as published by the Free Software Foundation.
8 #
9 #   This program is distributed in the hope that it will be useful,
10 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 #   GNU General Public License for more details.
13 """
14
15 import sys
16 import getopt
17
18 def indexToName(index):
19         D11UCODE_NAMETAG_START          = 0
20         D11LCN0BSINITVALS24             = 1
21         D11LCN0INITVALS24               = 2
22         D11LCN1BSINITVALS24             = 3
23         D11LCN1INITVALS24               = 4
24         D11LCN2BSINITVALS24             = 5
25         D11LCN2INITVALS24               = 6
26         D11N0ABSINITVALS16              = 7
27         D11N0BSINITVALS16               = 8
28         D11N0INITVALS16                 = 9
29         D11UCODE_OVERSIGHT16_MIMO       = 10
30         D11UCODE_OVERSIGHT16_MIMOSZ     = 11
31         D11UCODE_OVERSIGHT24_LCN        = 12
32         D11UCODE_OVERSIGHT24_LCNSZ      = 13
33         D11UCODE_OVERSIGHT_BOMMAJOR     = 14
34         D11UCODE_OVERSIGHT_BOMMINOR     = 15
35
36         namemap = {
37                 D11UCODE_NAMETAG_START          : "start",
38                 D11LCN0BSINITVALS24             : "LCN0 bs initvals 24",
39                 D11LCN0INITVALS24               : "LCN0 initvals 24",
40                 D11LCN1BSINITVALS24             : "LCN1 bs initvals 24",
41                 D11LCN1INITVALS24               : "LCN1 initvals 24",
42                 D11LCN2BSINITVALS24             : "LCN2 bs initvals 24",
43                 D11LCN2INITVALS24               : "LCN2 initvals 24",
44                 D11N0ABSINITVALS16              : "N0A bs initvals 16",
45                 D11N0BSINITVALS16               : "N0 bs initvals 16",
46                 D11N0INITVALS16                 : "N0 initvals 16",
47                 D11UCODE_OVERSIGHT16_MIMO       : "microcode 16 MIMO",
48                 D11UCODE_OVERSIGHT16_MIMOSZ     : "microcode 16 MIMO size",
49                 D11UCODE_OVERSIGHT24_LCN        : "microcode 24 LCN",
50                 D11UCODE_OVERSIGHT24_LCNSZ      : "microcode 24 LCN size",
51                 D11UCODE_OVERSIGHT_BOMMAJOR     : "bom major",
52                 D11UCODE_OVERSIGHT_BOMMINOR     : "bom minor",
53         }
54         try:
55                 return namemap[index]
56         except KeyError:
57                 return "Unknown"
58
59 def parseHeader(hdr_data, sortByOffset):
60         sections = []
61         for i in range(0, len(hdr_data), 3 * 4):
62                 offset = ord(hdr_data[i + 0]) | (ord(hdr_data[i + 1]) << 8) |\
63                         (ord(hdr_data[i + 2]) << 16) | (ord(hdr_data[i + 3]) << 24)
64                 length = ord(hdr_data[i + 4]) | (ord(hdr_data[i + 5]) << 8) |\
65                         (ord(hdr_data[i + 6]) << 16) | (ord(hdr_data[i + 7]) << 24)
66                 index = ord(hdr_data[i + 8]) | (ord(hdr_data[i + 9]) << 8) |\
67                         (ord(hdr_data[i + 10]) << 16) | (ord(hdr_data[i + 11]) << 24)
68
69                 sections.append( (offset, length, index) )
70         if sortByOffset:
71                 sections.sort(key = lambda x: x[0]) # Sort by offset
72         else:
73                 sections.sort(key = lambda x: x[2]) # Sort by index
74         return sections
75
76 def generateHeaderData(sections):
77         data = []
78         for section in sections:
79                 (offset, length, index) = section
80                 data.append(chr(offset & 0xFF))
81                 data.append(chr((offset >> 8) & 0xFF))
82                 data.append(chr((offset >> 16) & 0xFF))
83                 data.append(chr((offset >> 24) & 0xFF))
84                 data.append(chr(length & 0xFF))
85                 data.append(chr((length >> 8) & 0xFF))
86                 data.append(chr((length >> 16) & 0xFF))
87                 data.append(chr((length >> 24) & 0xFF))
88                 data.append(chr(index & 0xFF))
89                 data.append(chr((index >> 8) & 0xFF))
90                 data.append(chr((index >> 16) & 0xFF))
91                 data.append(chr((index >> 24) & 0xFF))
92         return "".join(data)
93
94 def getSectionByIndex(sections, searchIndex):
95         for section in sections:
96                 (offset, length, index) = section
97                 if searchIndex == index:
98                         return section
99         return None
100
101 def parseHeaderFile(hdr_filepath, sortByOffset=False):
102         try:
103                 hdr_data = file(hdr_filepath, "rb").read()
104         except (IOError), e:
105                 print "Failed to read header file: %s" % e.strerror
106                 return None
107         if len(hdr_data) % (3 * 4) != 0:
108                 print "Invalid header file format"
109                 return None
110         return parseHeader(hdr_data, sortByOffset)
111
112 def dumpInfo(hdr_filepath):
113         sections = parseHeaderFile(hdr_filepath)
114         if not sections:
115                 return 1
116         for section in sections:
117                 (offset, length, index) = section
118                 print "Index %2d   %24s    ==>  offset:0x%08X  length:0x%08X" %\
119                         (index, indexToName(index), offset, length)
120         return 0
121
122 def extractSection(hdr_filepath, bin_filepath, extractIndex, outfilePath):
123         sections = parseHeaderFile(hdr_filepath)
124         if not sections:
125                 return 1
126         section = getSectionByIndex(sections, extractIndex)
127         if not section:
128                 print "Did not find a section with index %d" % extractIndex
129                 return 1
130         (offset, length, index) = section
131         try:
132                 bin_data = file(bin_filepath, "rb").read()
133         except (IOError), e:
134                 print "Failed to read bin file: %s" % e.strerror
135                 return 1
136         try:
137                 outfile = file(outfilePath, "wb")
138                 outfile.write(bin_data[offset : offset + length])
139         except IndexError:
140                 print "Binfile index error."
141                 return 1
142         except (IOError), e:
143                 print "Failed to write output file: %s" % e.strerror
144                 return 1
145         return 0
146
147 def mergeSection(hdr_filepath, bin_filepath, mergeIndex, mergefilePath):
148         sections = parseHeaderFile(hdr_filepath, sortByOffset=True)
149         if not sections:
150                 return 1
151         try:
152                 bin_data = file(bin_filepath, "rb").read()
153         except (IOError), e:
154                 print "Failed to read bin file: %s" % e.strerror
155                 return 1
156         try:
157                 merge_data = file(mergefilePath, "rb").read()
158         except (IOError), e:
159                 print "Failed to open merge output file: %s" % e.strerror
160                 return 1
161         newBin = []
162         newSections = []
163         newOffset = 0
164         for section in sections:
165                 (offset, length, index) = section
166                 if index == mergeIndex:
167                         # We overwrite this section
168                         newBin.append(merge_data)
169                         newSections.append( (newOffset, len(merge_data), index) )
170                         newOffset += len(merge_data)
171                 else:
172                         try:
173                                 newBin.append(bin_data[offset : offset + length])
174                         except IndexError:
175                                 print "Failed to read input data"
176                                 return 1
177                         newSections.append( (newOffset, length, index) )
178                         newOffset += length
179         newBin = "".join(newBin)
180         newHdr = generateHeaderData(newSections)
181         try:
182                 file(bin_filepath, "wb").write(newBin)
183                 file(hdr_filepath, "wb").write(newHdr)
184         except (IOError), e:
185                 print "Failed to write bin or header file: %s" % e.strerror
186                 return 1
187         return 0
188
189 def usage():
190         print "BRCM80211 firmware converter tool"
191         print ""
192         print "Usage: %s [OPTIONS]" % sys.argv[0]
193         print ""
194         print "  -H|--header FILE         Use FILE as header file"
195         print "  -B|--bin FILE            Use FILE as bin file"
196         print ""
197         print "Actions:"
198         print "  -d|--dump                Dump general information"
199         print "  -x|--extract INDEX:FILE  Extract the section with index INDEX to FILE"
200         print "  -m|--merge INDEX:FILE    Merges FILE into the bin file stream at INDEX"
201         print "                           A Merge modifies the files specified in -H and -B"
202         print ""
203         print "  -h|--help                Print this help text"
204
205 def main():
206         opt_header = None
207         opt_bin = None
208         opt_action = None
209         opt_index = None
210         opt_outfile = None
211         opt_mergefile = None
212
213         try:
214                 (opts, args) = getopt.getopt(sys.argv[1:],
215                         "hH:B:dx:m:",
216                         [ "help", "header=", "bin=", "dump", "extract=", "merge=", ])
217         except getopt.GetoptError:
218                 usage()
219                 return 1
220         for (o, v) in opts:
221                 if o in ("-h", "--help"):
222                         usage()
223                         return 0;
224                 if o in ("-H", "--header"):
225                         opt_header = v
226                 if o in ("-B", "--bin"):
227                         opt_bin = v
228                 if o in ("-d", "--dump"):
229                         opt_action = "dump"
230                 if o in ("-x", "--extract"):
231                         opt_action = "extract"
232                         try:
233                                 v = v.split(':')
234                                 opt_index = int(v[0])
235                                 opt_outfile = v[1]
236                         except IndexError, ValueError:
237                                 print "Invalid -x|--extract index number\n"
238                                 usage()
239                                 return 1
240                 if o in ("-m", "--merge"):
241                         opt_action = "merge"
242                         try:
243                                 v = v.split(':')
244                                 opt_index = int(v[0])
245                                 opt_mergefile = v[1]
246                         except IndexError, ValueError:
247                                 print "Invalid -m|--merge index and/or merge file name\n"
248                                 usage()
249                                 return 1
250         if not opt_action:
251                 print "No action specified\n"
252                 usage()
253                 return 1
254         if opt_action == "dump":
255                 if not opt_header:
256                         print "No header file specified\n"
257                         usage()
258                         return 1
259                 return dumpInfo(opt_header)
260         elif opt_action == "extract":
261                 if not opt_header or not opt_bin:
262                         print "No header or bin file specified\n"
263                         usage()
264                         return 1
265                 return extractSection(opt_header, opt_bin, opt_index, opt_outfile)
266         elif opt_action == "merge":
267                 if not opt_header or not opt_bin:
268                         print "No header or bin file specified\n"
269                         usage()
270                         return 1
271                 return mergeSection(opt_header, opt_bin, opt_index, opt_mergefile)
272         return 1
273
274 if __name__ == "__main__":
275         sys.exit(main())