blob: dc898be6179efd9296106d296446994bcdd703c1 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Simon Glassbf7fd502016-11-25 20:15:51 -07002# Copyright (c) 2016 Google, Inc
3# Written by Simon Glass <sjg@chromium.org>
4#
Simon Glassbf7fd502016-11-25 20:15:51 -07005# Creates binary images from input files controlled by a description
6#
7
Simon Glass2ca84682019-05-14 15:53:37 -06008from __future__ import print_function
9
Simon Glassbf7fd502016-11-25 20:15:51 -070010from collections import OrderedDict
11import os
12import sys
13import tools
14
Simon Glassac62fba2019-07-08 13:18:53 -060015import cbfs_util
Simon Glassbf7fd502016-11-25 20:15:51 -070016import command
Simon Glass7fe91732017-11-13 18:55:00 -070017import elf
Simon Glassbf7fd502016-11-25 20:15:51 -070018from image import Image
Simon Glassc55a50f2018-09-14 04:57:19 -060019import state
Simon Glassbf7fd502016-11-25 20:15:51 -070020import tout
21
22# List of images we plan to create
23# Make this global so that it can be referenced from tests
24images = OrderedDict()
25
26def _ReadImageDesc(binman_node):
27 """Read the image descriptions from the /binman node
28
29 This normally produces a single Image object called 'image'. But if
30 multiple images are present, they will all be returned.
31
32 Args:
33 binman_node: Node object of the /binman node
34 Returns:
35 OrderedDict of Image objects, each of which describes an image
36 """
37 images = OrderedDict()
38 if 'multiple-images' in binman_node.props:
39 for node in binman_node.subnodes:
40 images[node.name] = Image(node.name, node)
41 else:
42 images['image'] = Image('image', binman_node)
43 return images
44
Simon Glassec3f3782017-05-27 07:38:29 -060045def _FindBinmanNode(dtb):
Simon Glassbf7fd502016-11-25 20:15:51 -070046 """Find the 'binman' node in the device tree
47
48 Args:
Simon Glassec3f3782017-05-27 07:38:29 -060049 dtb: Fdt object to scan
Simon Glassbf7fd502016-11-25 20:15:51 -070050 Returns:
51 Node object of /binman node, or None if not found
52 """
Simon Glassec3f3782017-05-27 07:38:29 -060053 for node in dtb.GetRoot().subnodes:
Simon Glassbf7fd502016-11-25 20:15:51 -070054 if node.name == 'binman':
55 return node
56 return None
57
Simon Glassc55a50f2018-09-14 04:57:19 -060058def WriteEntryDocs(modules, test_missing=None):
59 """Write out documentation for all entries
Simon Glassecab8972018-07-06 10:27:40 -060060
61 Args:
Simon Glassc55a50f2018-09-14 04:57:19 -060062 modules: List of Module objects to get docs for
63 test_missing: Used for testing only, to force an entry's documeentation
64 to show as missing even if it is present. Should be set to None in
65 normal use.
Simon Glassecab8972018-07-06 10:27:40 -060066 """
Simon Glassfd8d1f72018-07-17 13:25:36 -060067 from entry import Entry
68 Entry.WriteDocs(modules, test_missing)
69
Simon Glass61f564d2019-07-08 14:25:48 -060070
71def ListEntries(image_fname, entry_paths):
72 """List the entries in an image
73
74 This decodes the supplied image and displays a table of entries from that
75 image, preceded by a header.
76
77 Args:
78 image_fname: Image filename to process
79 entry_paths: List of wildcarded paths (e.g. ['*dtb*', 'u-boot*',
80 'section/u-boot'])
81 """
82 image = Image.FromFile(image_fname)
83
84 entries, lines, widths = image.GetListEntries(entry_paths)
85
86 num_columns = len(widths)
87 for linenum, line in enumerate(lines):
88 if linenum == 1:
89 # Print header line
90 print('-' * (sum(widths) + num_columns * 2))
91 out = ''
92 for i, item in enumerate(line):
93 width = -widths[i]
94 if item.startswith('>'):
95 width = -width
96 item = item[1:]
97 txt = '%*s ' % (width, item)
98 out += txt
99 print(out.rstrip())
100
Simon Glassf667e452019-07-08 14:25:50 -0600101
102def ReadEntry(image_fname, entry_path, decomp=True):
103 """Extract an entry from an image
104
105 This extracts the data from a particular entry in an image
106
107 Args:
108 image_fname: Image filename to process
109 entry_path: Path to entry to extract
110 decomp: True to return uncompressed data, if the data is compress
111 False to return the raw data
112
113 Returns:
114 data extracted from the entry
115 """
116 image = Image.FromFile(image_fname)
117 entry = image.FindEntryPath(entry_path)
118 return entry.ReadData(decomp)
119
120
Simon Glass71ce0ba2019-07-08 14:25:52 -0600121def ExtractEntries(image_fname, output_fname, outdir, entry_paths,
122 decomp=True):
123 """Extract the data from one or more entries and write it to files
124
125 Args:
126 image_fname: Image filename to process
127 output_fname: Single output filename to use if extracting one file, None
128 otherwise
129 outdir: Output directory to use (for any number of files), else None
130 entry_paths: List of entry paths to extract
131 decomp: True to compress the entry data
132
133 Returns:
134 List of EntryInfo records that were written
135 """
136 image = Image.FromFile(image_fname)
137
138 # Output an entry to a single file, as a special case
139 if output_fname:
140 if not entry_paths:
141 raise ValueError('Must specify an entry path to write with -o')
142 if len(entry_paths) != 1:
143 raise ValueError('Must specify exactly one entry path to write with -o')
144 entry = image.FindEntryPath(entry_paths[0])
145 data = entry.ReadData(decomp)
146 tools.WriteFile(output_fname, data)
147 tout.Notice("Wrote %#x bytes to file '%s'" % (len(data), output_fname))
148 return
149
150 # Otherwise we will output to a path given by the entry path of each entry.
151 # This means that entries will appear in subdirectories if they are part of
152 # a sub-section.
153 einfos = image.GetListEntries(entry_paths)[0]
154 tout.Notice('%d entries match and will be written' % len(einfos))
155 for einfo in einfos:
156 entry = einfo.entry
157 data = entry.ReadData(decomp)
158 path = entry.GetPath()[1:]
159 fname = os.path.join(outdir, path)
160
161 # If this entry has children, create a directory for it and put its
162 # data in a file called 'root' in that directory
163 if entry.GetEntries():
164 if not os.path.exists(fname):
165 os.makedirs(fname)
166 fname = os.path.join(fname, 'root')
167 tout.Notice("Write entry '%s' to '%s'" % (entry.GetPath(), fname))
168 tools.WriteFile(fname, data)
169 return einfos
170
171
Simon Glass53cd5d92019-07-08 14:25:29 -0600172def Binman(args):
Simon Glassbf7fd502016-11-25 20:15:51 -0700173 """The main control code for binman
174
175 This assumes that help and test options have already been dealt with. It
176 deals with the core task of building images.
177
178 Args:
Simon Glass53cd5d92019-07-08 14:25:29 -0600179 args: Command line arguments Namespace object
Simon Glassbf7fd502016-11-25 20:15:51 -0700180 """
181 global images
182
Simon Glass53cd5d92019-07-08 14:25:29 -0600183 if args.full_help:
Simon Glassbf7fd502016-11-25 20:15:51 -0700184 pager = os.getenv('PAGER')
185 if not pager:
186 pager = 'more'
187 fname = os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])),
188 'README')
189 command.Run(pager, fname)
190 return 0
191
Simon Glass61f564d2019-07-08 14:25:48 -0600192 if args.cmd == 'ls':
193 ListEntries(args.image, args.paths)
194 return 0
195
Simon Glass71ce0ba2019-07-08 14:25:52 -0600196 if args.cmd == 'extract':
197 try:
198 tools.PrepareOutputDir(None)
199 ExtractEntries(args.image, args.filename, args.outdir, args.paths,
200 not args.uncompressed)
201 finally:
202 tools.FinaliseOutputDir()
203 return 0
204
Simon Glassbf7fd502016-11-25 20:15:51 -0700205 # Try to figure out which device tree contains our image description
Simon Glass53cd5d92019-07-08 14:25:29 -0600206 if args.dt:
207 dtb_fname = args.dt
Simon Glassbf7fd502016-11-25 20:15:51 -0700208 else:
Simon Glass53cd5d92019-07-08 14:25:29 -0600209 board = args.board
Simon Glassbf7fd502016-11-25 20:15:51 -0700210 if not board:
211 raise ValueError('Must provide a board to process (use -b <board>)')
Simon Glass53cd5d92019-07-08 14:25:29 -0600212 board_pathname = os.path.join(args.build_dir, board)
Simon Glassbf7fd502016-11-25 20:15:51 -0700213 dtb_fname = os.path.join(board_pathname, 'u-boot.dtb')
Simon Glass53cd5d92019-07-08 14:25:29 -0600214 if not args.indir:
215 args.indir = ['.']
216 args.indir.append(board_pathname)
Simon Glassbf7fd502016-11-25 20:15:51 -0700217
218 try:
Simon Glass9b1a8042018-07-17 13:25:34 -0600219 # Import these here in case libfdt.py is not available, in which case
220 # the above help option still works.
221 import fdt
222 import fdt_util
223
Simon Glass53cd5d92019-07-08 14:25:29 -0600224 tout.Init(args.verbosity)
225 elf.debug = args.debug
226 cbfs_util.VERBOSE = args.verbosity > 2
227 state.use_fake_dtb = args.fake_dtb
Simon Glassbf7fd502016-11-25 20:15:51 -0700228 try:
Simon Glass53cd5d92019-07-08 14:25:29 -0600229 tools.SetInputDirs(args.indir)
230 tools.PrepareOutputDir(args.outdir, args.preserve)
231 tools.SetToolPaths(args.toolpath)
232 state.SetEntryArgs(args.entry_arg)
Simon Glassecab8972018-07-06 10:27:40 -0600233
234 # Get the device tree ready by compiling it and copying the compiled
235 # output into a file in our output directly. Then scan it for use
236 # in binman.
237 dtb_fname = fdt_util.EnsureCompiled(dtb_fname)
Simon Glass6ed45ba2018-09-14 04:57:24 -0600238 fname = tools.GetOutputFilename('u-boot.dtb.out')
239 tools.WriteFile(fname, tools.ReadFile(dtb_fname))
Simon Glassecab8972018-07-06 10:27:40 -0600240 dtb = fdt.FdtScan(fname)
241
Simon Glassec3f3782017-05-27 07:38:29 -0600242 node = _FindBinmanNode(dtb)
Simon Glassbf7fd502016-11-25 20:15:51 -0700243 if not node:
244 raise ValueError("Device tree '%s' does not have a 'binman' "
245 "node" % dtb_fname)
Simon Glassecab8972018-07-06 10:27:40 -0600246
Simon Glassbf7fd502016-11-25 20:15:51 -0700247 images = _ReadImageDesc(node)
Simon Glassecab8972018-07-06 10:27:40 -0600248
Simon Glass53cd5d92019-07-08 14:25:29 -0600249 if args.image:
Simon Glass0bfa7b02018-09-14 04:57:12 -0600250 skip = []
Simon Glass58632a72019-05-17 22:00:45 -0600251 new_images = OrderedDict()
Simon Glass50979152019-05-14 15:53:41 -0600252 for name, image in images.items():
Simon Glass53cd5d92019-07-08 14:25:29 -0600253 if name in args.image:
Simon Glass58632a72019-05-17 22:00:45 -0600254 new_images[name] = image
255 else:
Simon Glass0bfa7b02018-09-14 04:57:12 -0600256 skip.append(name)
Simon Glass58632a72019-05-17 22:00:45 -0600257 images = new_images
Simon Glass53cd5d92019-07-08 14:25:29 -0600258 if skip and args.verbosity >= 2:
Simon Glass2ca84682019-05-14 15:53:37 -0600259 print('Skipping images: %s' % ', '.join(skip))
Simon Glass0bfa7b02018-09-14 04:57:12 -0600260
Simon Glass539aece2018-09-14 04:57:22 -0600261 state.Prepare(images, dtb)
Simon Glass2a72cc72018-09-14 04:57:20 -0600262
Simon Glassecab8972018-07-06 10:27:40 -0600263 # Prepare the device tree by making sure that any missing
264 # properties are added (e.g. 'pos' and 'size'). The values of these
265 # may not be correct yet, but we add placeholders so that the
266 # size of the device tree is correct. Later, in
267 # SetCalculatedProperties() we will insert the correct values
268 # without changing the device-tree size, thus ensuring that our
Simon Glass3ab95982018-08-01 15:22:37 -0600269 # entry offsets remain the same.
Simon Glassecab8972018-07-06 10:27:40 -0600270 for image in images.values():
Simon Glass0a98b282018-09-14 04:57:28 -0600271 image.ExpandEntries()
Simon Glass53cd5d92019-07-08 14:25:29 -0600272 if args.update_fdt:
Simon Glass078ab1a2018-07-06 10:27:41 -0600273 image.AddMissingProperties()
Simon Glassecab8972018-07-06 10:27:40 -0600274 image.ProcessFdt(dtb)
275
Simon Glass2a72cc72018-09-14 04:57:20 -0600276 for dtb_item in state.GetFdts():
277 dtb_item.Sync(auto_resize=True)
278 dtb_item.Pack()
279 dtb_item.Flush()
Simon Glassecab8972018-07-06 10:27:40 -0600280
Simon Glassbf7fd502016-11-25 20:15:51 -0700281 for image in images.values():
282 # Perform all steps for this image, including checking and
283 # writing it. This means that errors found with a later
284 # image will be reported after earlier images are already
285 # completed and written, but that does not seem important.
286 image.GetEntryContents()
Simon Glass3ab95982018-08-01 15:22:37 -0600287 image.GetEntryOffsets()
Simon Glassc52c9e72019-07-08 14:25:37 -0600288
289 # We need to pack the entries to figure out where everything
290 # should be placed. This sets the offset/size of each entry.
291 # However, after packing we call ProcessEntryContents() which
292 # may result in an entry changing size. In that case we need to
293 # do another pass. Since the device tree often contains the
294 # final offset/size information we try to make space for this in
295 # AddMissingProperties() above. However, if the device is
296 # compressed we cannot know this compressed size in advance,
297 # since changing an offset from 0x100 to 0x104 (for example) can
298 # alter the compressed size of the device tree. So we need a
299 # third pass for this.
300 passes = 3
301 for pack_pass in range(passes):
302 try:
303 image.PackEntries()
304 image.CheckSize()
305 image.CheckEntries()
306 except Exception as e:
307 if args.map:
308 fname = image.WriteMap()
309 print("Wrote map file '%s' to show errors" % fname)
310 raise
311 image.SetImagePos()
312 if args.update_fdt:
313 image.SetCalculatedProperties()
314 for dtb_item in state.GetFdts():
315 dtb_item.Sync()
316 sizes_ok = image.ProcessEntryContents()
317 if sizes_ok:
318 break
319 image.ResetForPack()
320 if not sizes_ok:
321 image.Raise('Entries expanded after packing (tried %s passes)' %
322 passes)
323
Simon Glass19790632017-11-13 18:55:01 -0700324 image.WriteSymbols()
Simon Glassbf7fd502016-11-25 20:15:51 -0700325 image.BuildImage()
Simon Glass53cd5d92019-07-08 14:25:29 -0600326 if args.map:
Simon Glass3b0c3822018-06-01 09:38:20 -0600327 image.WriteMap()
Simon Glass2a72cc72018-09-14 04:57:20 -0600328
329 # Write the updated FDTs to our output files
330 for dtb_item in state.GetFdts():
331 tools.WriteFile(dtb_item._fname, dtb_item.GetContents())
332
Simon Glassbf7fd502016-11-25 20:15:51 -0700333 finally:
334 tools.FinaliseOutputDir()
335 finally:
336 tout.Uninit()
337
338 return 0