Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 2 | # Copyright (c) 2016 Google, Inc |
| 3 | # Written by Simon Glass <sjg@chromium.org> |
| 4 | # |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 5 | # Creates binary images from input files controlled by a description |
| 6 | # |
| 7 | |
| 8 | from collections import OrderedDict |
Simon Glass | 220ff5f | 2020-08-05 13:27:46 -0600 | [diff] [blame] | 9 | import glob |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 10 | import os |
Simon Glass | c1dc2f8 | 2020-08-29 11:36:14 -0600 | [diff] [blame] | 11 | import pkg_resources |
Simon Glass | a820af7 | 2020-09-06 10:39:09 -0600 | [diff] [blame] | 12 | import re |
Simon Glass | c1dc2f8 | 2020-08-29 11:36:14 -0600 | [diff] [blame] | 13 | |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 14 | import sys |
Simon Glass | a997ea5 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 15 | from patman import tools |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 16 | |
Simon Glass | 4eae925 | 2022-01-09 20:13:50 -0700 | [diff] [blame] | 17 | from binman import bintool |
Simon Glass | c585dd4 | 2020-04-17 18:09:03 -0600 | [diff] [blame] | 18 | from binman import cbfs_util |
| 19 | from binman import elf |
Simon Glass | a997ea5 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 20 | from patman import command |
| 21 | from patman import tout |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 22 | |
Simon Glass | 2a0fa98 | 2022-02-11 13:23:21 -0700 | [diff] [blame] | 23 | # These are imported if needed since they import libfdt |
| 24 | state = None |
| 25 | Image = None |
| 26 | |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 27 | # List of images we plan to create |
| 28 | # Make this global so that it can be referenced from tests |
| 29 | images = OrderedDict() |
| 30 | |
Simon Glass | a820af7 | 2020-09-06 10:39:09 -0600 | [diff] [blame] | 31 | # Help text for each type of missing blob, dict: |
| 32 | # key: Value of the entry's 'missing-msg' or entry name |
| 33 | # value: Text for the help |
| 34 | missing_blob_help = {} |
| 35 | |
Simon Glass | 55ab0b6 | 2021-03-18 20:25:06 +1300 | [diff] [blame] | 36 | def _ReadImageDesc(binman_node, use_expanded): |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 37 | """Read the image descriptions from the /binman node |
| 38 | |
| 39 | This normally produces a single Image object called 'image'. But if |
| 40 | multiple images are present, they will all be returned. |
| 41 | |
| 42 | Args: |
| 43 | binman_node: Node object of the /binman node |
Simon Glass | 55ab0b6 | 2021-03-18 20:25:06 +1300 | [diff] [blame] | 44 | use_expanded: True if the FDT will be updated with the entry information |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 45 | Returns: |
| 46 | OrderedDict of Image objects, each of which describes an image |
| 47 | """ |
Simon Glass | 2a0fa98 | 2022-02-11 13:23:21 -0700 | [diff] [blame] | 48 | # For Image() |
| 49 | # pylint: disable=E1102 |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 50 | images = OrderedDict() |
| 51 | if 'multiple-images' in binman_node.props: |
| 52 | for node in binman_node.subnodes: |
Simon Glass | 55ab0b6 | 2021-03-18 20:25:06 +1300 | [diff] [blame] | 53 | images[node.name] = Image(node.name, node, |
| 54 | use_expanded=use_expanded) |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 55 | else: |
Simon Glass | 55ab0b6 | 2021-03-18 20:25:06 +1300 | [diff] [blame] | 56 | images['image'] = Image('image', binman_node, use_expanded=use_expanded) |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 57 | return images |
| 58 | |
Simon Glass | 22c92ca | 2017-05-27 07:38:29 -0600 | [diff] [blame] | 59 | def _FindBinmanNode(dtb): |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 60 | """Find the 'binman' node in the device tree |
| 61 | |
| 62 | Args: |
Simon Glass | 22c92ca | 2017-05-27 07:38:29 -0600 | [diff] [blame] | 63 | dtb: Fdt object to scan |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 64 | Returns: |
| 65 | Node object of /binman node, or None if not found |
| 66 | """ |
Simon Glass | 22c92ca | 2017-05-27 07:38:29 -0600 | [diff] [blame] | 67 | for node in dtb.GetRoot().subnodes: |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 68 | if node.name == 'binman': |
| 69 | return node |
| 70 | return None |
| 71 | |
Simon Glass | a820af7 | 2020-09-06 10:39:09 -0600 | [diff] [blame] | 72 | def _ReadMissingBlobHelp(): |
| 73 | """Read the missing-blob-help file |
| 74 | |
| 75 | This file containins help messages explaining what to do when external blobs |
| 76 | are missing. |
| 77 | |
| 78 | Returns: |
| 79 | Dict: |
| 80 | key: Message tag (str) |
| 81 | value: Message text (str) |
| 82 | """ |
| 83 | |
| 84 | def _FinishTag(tag, msg, result): |
| 85 | if tag: |
| 86 | result[tag] = msg.rstrip() |
| 87 | tag = None |
| 88 | msg = '' |
| 89 | return tag, msg |
| 90 | |
| 91 | my_data = pkg_resources.resource_string(__name__, 'missing-blob-help') |
| 92 | re_tag = re.compile('^([-a-z0-9]+):$') |
| 93 | result = {} |
| 94 | tag = None |
| 95 | msg = '' |
| 96 | for line in my_data.decode('utf-8').splitlines(): |
| 97 | if not line.startswith('#'): |
| 98 | m_tag = re_tag.match(line) |
| 99 | if m_tag: |
| 100 | _, msg = _FinishTag(tag, msg, result) |
| 101 | tag = m_tag.group(1) |
| 102 | elif tag: |
| 103 | msg += line + '\n' |
| 104 | _FinishTag(tag, msg, result) |
| 105 | return result |
| 106 | |
| 107 | def _ShowBlobHelp(path, text): |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 108 | tout.warning('\n%s:' % path) |
Simon Glass | a820af7 | 2020-09-06 10:39:09 -0600 | [diff] [blame] | 109 | for line in text.splitlines(): |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 110 | tout.warning(' %s' % line) |
Simon Glass | a820af7 | 2020-09-06 10:39:09 -0600 | [diff] [blame] | 111 | |
| 112 | def _ShowHelpForMissingBlobs(missing_list): |
| 113 | """Show help for each missing blob to help the user take action |
| 114 | |
| 115 | Args: |
| 116 | missing_list: List of Entry objects to show help for |
| 117 | """ |
| 118 | global missing_blob_help |
| 119 | |
| 120 | if not missing_blob_help: |
| 121 | missing_blob_help = _ReadMissingBlobHelp() |
| 122 | |
| 123 | for entry in missing_list: |
| 124 | tags = entry.GetHelpTags() |
| 125 | |
| 126 | # Show the first match help message |
| 127 | for tag in tags: |
| 128 | if tag in missing_blob_help: |
| 129 | _ShowBlobHelp(entry._node.path, missing_blob_help[tag]) |
| 130 | break |
| 131 | |
Simon Glass | 220ff5f | 2020-08-05 13:27:46 -0600 | [diff] [blame] | 132 | def GetEntryModules(include_testing=True): |
| 133 | """Get a set of entry class implementations |
| 134 | |
| 135 | Returns: |
| 136 | Set of paths to entry class filenames |
| 137 | """ |
Simon Glass | c1dc2f8 | 2020-08-29 11:36:14 -0600 | [diff] [blame] | 138 | glob_list = pkg_resources.resource_listdir(__name__, 'etype') |
| 139 | glob_list = [fname for fname in glob_list if fname.endswith('.py')] |
Simon Glass | 220ff5f | 2020-08-05 13:27:46 -0600 | [diff] [blame] | 140 | return set([os.path.splitext(os.path.basename(item))[0] |
| 141 | for item in glob_list |
| 142 | if include_testing or '_testing' not in item]) |
| 143 | |
Simon Glass | 29aa736 | 2018-09-14 04:57:19 -0600 | [diff] [blame] | 144 | def WriteEntryDocs(modules, test_missing=None): |
| 145 | """Write out documentation for all entries |
Simon Glass | 9230773 | 2018-07-06 10:27:40 -0600 | [diff] [blame] | 146 | |
| 147 | Args: |
Simon Glass | 29aa736 | 2018-09-14 04:57:19 -0600 | [diff] [blame] | 148 | modules: List of Module objects to get docs for |
Simon Glass | 620c446 | 2022-01-09 20:14:11 -0700 | [diff] [blame] | 149 | test_missing: Used for testing only, to force an entry's documentation |
Simon Glass | 29aa736 | 2018-09-14 04:57:19 -0600 | [diff] [blame] | 150 | to show as missing even if it is present. Should be set to None in |
| 151 | normal use. |
Simon Glass | 9230773 | 2018-07-06 10:27:40 -0600 | [diff] [blame] | 152 | """ |
Simon Glass | c585dd4 | 2020-04-17 18:09:03 -0600 | [diff] [blame] | 153 | from binman.entry import Entry |
Simon Glass | 969616c | 2018-07-17 13:25:36 -0600 | [diff] [blame] | 154 | Entry.WriteDocs(modules, test_missing) |
| 155 | |
Simon Glass | b2fd11d | 2019-07-08 14:25:48 -0600 | [diff] [blame] | 156 | |
Simon Glass | 620c446 | 2022-01-09 20:14:11 -0700 | [diff] [blame] | 157 | def write_bintool_docs(modules, test_missing=None): |
| 158 | """Write out documentation for all bintools |
| 159 | |
| 160 | Args: |
| 161 | modules: List of Module objects to get docs for |
| 162 | test_missing: Used for testing only, to force an entry's documentation |
| 163 | to show as missing even if it is present. Should be set to None in |
| 164 | normal use. |
| 165 | """ |
| 166 | bintool.Bintool.WriteDocs(modules, test_missing) |
| 167 | |
| 168 | |
Simon Glass | b2fd11d | 2019-07-08 14:25:48 -0600 | [diff] [blame] | 169 | def ListEntries(image_fname, entry_paths): |
| 170 | """List the entries in an image |
| 171 | |
| 172 | This decodes the supplied image and displays a table of entries from that |
| 173 | image, preceded by a header. |
| 174 | |
| 175 | Args: |
| 176 | image_fname: Image filename to process |
| 177 | entry_paths: List of wildcarded paths (e.g. ['*dtb*', 'u-boot*', |
| 178 | 'section/u-boot']) |
| 179 | """ |
| 180 | image = Image.FromFile(image_fname) |
| 181 | |
| 182 | entries, lines, widths = image.GetListEntries(entry_paths) |
| 183 | |
| 184 | num_columns = len(widths) |
| 185 | for linenum, line in enumerate(lines): |
| 186 | if linenum == 1: |
| 187 | # Print header line |
| 188 | print('-' * (sum(widths) + num_columns * 2)) |
| 189 | out = '' |
| 190 | for i, item in enumerate(line): |
| 191 | width = -widths[i] |
| 192 | if item.startswith('>'): |
| 193 | width = -width |
| 194 | item = item[1:] |
| 195 | txt = '%*s ' % (width, item) |
| 196 | out += txt |
| 197 | print(out.rstrip()) |
| 198 | |
Simon Glass | 4c613bf | 2019-07-08 14:25:50 -0600 | [diff] [blame] | 199 | |
| 200 | def ReadEntry(image_fname, entry_path, decomp=True): |
| 201 | """Extract an entry from an image |
| 202 | |
| 203 | This extracts the data from a particular entry in an image |
| 204 | |
| 205 | Args: |
| 206 | image_fname: Image filename to process |
| 207 | entry_path: Path to entry to extract |
| 208 | decomp: True to return uncompressed data, if the data is compress |
| 209 | False to return the raw data |
| 210 | |
| 211 | Returns: |
| 212 | data extracted from the entry |
| 213 | """ |
Simon Glass | b9ba4e0 | 2019-08-24 07:22:44 -0600 | [diff] [blame] | 214 | global Image |
Simon Glass | 90cd6f0 | 2020-08-05 13:27:47 -0600 | [diff] [blame] | 215 | from binman.image import Image |
Simon Glass | b9ba4e0 | 2019-08-24 07:22:44 -0600 | [diff] [blame] | 216 | |
Simon Glass | 4c613bf | 2019-07-08 14:25:50 -0600 | [diff] [blame] | 217 | image = Image.FromFile(image_fname) |
| 218 | entry = image.FindEntryPath(entry_path) |
| 219 | return entry.ReadData(decomp) |
| 220 | |
| 221 | |
Simon Glass | 637958f | 2021-11-23 21:09:50 -0700 | [diff] [blame] | 222 | def ShowAltFormats(image): |
| 223 | """Show alternative formats available for entries in the image |
| 224 | |
| 225 | This shows a list of formats available. |
| 226 | |
| 227 | Args: |
| 228 | image (Image): Image to check |
| 229 | """ |
| 230 | alt_formats = {} |
| 231 | image.CheckAltFormats(alt_formats) |
| 232 | print('%-10s %-20s %s' % ('Flag (-F)', 'Entry type', 'Description')) |
| 233 | for name, val in alt_formats.items(): |
| 234 | entry, helptext = val |
| 235 | print('%-10s %-20s %s' % (name, entry.etype, helptext)) |
| 236 | |
| 237 | |
Simon Glass | 980a284 | 2019-07-08 14:25:52 -0600 | [diff] [blame] | 238 | def ExtractEntries(image_fname, output_fname, outdir, entry_paths, |
Simon Glass | 637958f | 2021-11-23 21:09:50 -0700 | [diff] [blame] | 239 | decomp=True, alt_format=None): |
Simon Glass | 980a284 | 2019-07-08 14:25:52 -0600 | [diff] [blame] | 240 | """Extract the data from one or more entries and write it to files |
| 241 | |
| 242 | Args: |
| 243 | image_fname: Image filename to process |
| 244 | output_fname: Single output filename to use if extracting one file, None |
| 245 | otherwise |
| 246 | outdir: Output directory to use (for any number of files), else None |
| 247 | entry_paths: List of entry paths to extract |
Simon Glass | d48f94e | 2019-07-20 12:24:12 -0600 | [diff] [blame] | 248 | decomp: True to decompress the entry data |
Simon Glass | 980a284 | 2019-07-08 14:25:52 -0600 | [diff] [blame] | 249 | |
| 250 | Returns: |
| 251 | List of EntryInfo records that were written |
| 252 | """ |
| 253 | image = Image.FromFile(image_fname) |
| 254 | |
Simon Glass | 637958f | 2021-11-23 21:09:50 -0700 | [diff] [blame] | 255 | if alt_format == 'list': |
| 256 | ShowAltFormats(image) |
| 257 | return |
| 258 | |
Simon Glass | 980a284 | 2019-07-08 14:25:52 -0600 | [diff] [blame] | 259 | # Output an entry to a single file, as a special case |
| 260 | if output_fname: |
| 261 | if not entry_paths: |
Simon Glass | a772d3f | 2019-07-20 12:24:14 -0600 | [diff] [blame] | 262 | raise ValueError('Must specify an entry path to write with -f') |
Simon Glass | 980a284 | 2019-07-08 14:25:52 -0600 | [diff] [blame] | 263 | if len(entry_paths) != 1: |
Simon Glass | a772d3f | 2019-07-20 12:24:14 -0600 | [diff] [blame] | 264 | raise ValueError('Must specify exactly one entry path to write with -f') |
Simon Glass | 980a284 | 2019-07-08 14:25:52 -0600 | [diff] [blame] | 265 | entry = image.FindEntryPath(entry_paths[0]) |
Simon Glass | 637958f | 2021-11-23 21:09:50 -0700 | [diff] [blame] | 266 | data = entry.ReadData(decomp, alt_format) |
Simon Glass | 8002552 | 2022-01-29 14:14:04 -0700 | [diff] [blame] | 267 | tools.write_file(output_fname, data) |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 268 | tout.notice("Wrote %#x bytes to file '%s'" % (len(data), output_fname)) |
Simon Glass | 980a284 | 2019-07-08 14:25:52 -0600 | [diff] [blame] | 269 | return |
| 270 | |
| 271 | # Otherwise we will output to a path given by the entry path of each entry. |
| 272 | # This means that entries will appear in subdirectories if they are part of |
| 273 | # a sub-section. |
| 274 | einfos = image.GetListEntries(entry_paths)[0] |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 275 | tout.notice('%d entries match and will be written' % len(einfos)) |
Simon Glass | 980a284 | 2019-07-08 14:25:52 -0600 | [diff] [blame] | 276 | for einfo in einfos: |
| 277 | entry = einfo.entry |
Simon Glass | 637958f | 2021-11-23 21:09:50 -0700 | [diff] [blame] | 278 | data = entry.ReadData(decomp, alt_format) |
Simon Glass | 980a284 | 2019-07-08 14:25:52 -0600 | [diff] [blame] | 279 | path = entry.GetPath()[1:] |
| 280 | fname = os.path.join(outdir, path) |
| 281 | |
| 282 | # If this entry has children, create a directory for it and put its |
| 283 | # data in a file called 'root' in that directory |
| 284 | if entry.GetEntries(): |
Simon Glass | 4ef93d9 | 2021-03-18 20:24:51 +1300 | [diff] [blame] | 285 | if fname and not os.path.exists(fname): |
Simon Glass | 980a284 | 2019-07-08 14:25:52 -0600 | [diff] [blame] | 286 | os.makedirs(fname) |
| 287 | fname = os.path.join(fname, 'root') |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 288 | tout.notice("Write entry '%s' size %x to '%s'" % |
Simon Glass | 0834945 | 2021-01-06 21:35:13 -0700 | [diff] [blame] | 289 | (entry.GetPath(), len(data), fname)) |
Simon Glass | 8002552 | 2022-01-29 14:14:04 -0700 | [diff] [blame] | 290 | tools.write_file(fname, data) |
Simon Glass | 980a284 | 2019-07-08 14:25:52 -0600 | [diff] [blame] | 291 | return einfos |
| 292 | |
| 293 | |
Simon Glass | 274bd0e | 2019-07-20 12:24:13 -0600 | [diff] [blame] | 294 | def BeforeReplace(image, allow_resize): |
| 295 | """Handle getting an image ready for replacing entries in it |
| 296 | |
| 297 | Args: |
| 298 | image: Image to prepare |
| 299 | """ |
| 300 | state.PrepareFromLoadedData(image) |
| 301 | image.LoadData() |
| 302 | |
| 303 | # If repacking, drop the old offset/size values except for the original |
| 304 | # ones, so we are only left with the constraints. |
| 305 | if allow_resize: |
| 306 | image.ResetForPack() |
| 307 | |
| 308 | |
| 309 | def ReplaceOneEntry(image, entry, data, do_compress, allow_resize): |
| 310 | """Handle replacing a single entry an an image |
| 311 | |
| 312 | Args: |
| 313 | image: Image to update |
| 314 | entry: Entry to write |
| 315 | data: Data to replace with |
| 316 | do_compress: True to compress the data if needed, False if data is |
| 317 | already compressed so should be used as is |
| 318 | allow_resize: True to allow entries to change size (this does a re-pack |
| 319 | of the entries), False to raise an exception |
| 320 | """ |
| 321 | if not entry.WriteData(data, do_compress): |
| 322 | if not image.allow_repack: |
| 323 | entry.Raise('Entry data size does not match, but allow-repack is not present for this image') |
| 324 | if not allow_resize: |
| 325 | entry.Raise('Entry data size does not match, but resize is disabled') |
| 326 | |
| 327 | |
| 328 | def AfterReplace(image, allow_resize, write_map): |
| 329 | """Handle write out an image after replacing entries in it |
| 330 | |
| 331 | Args: |
| 332 | image: Image to write |
| 333 | allow_resize: True to allow entries to change size (this does a re-pack |
| 334 | of the entries), False to raise an exception |
| 335 | write_map: True to write a map file |
| 336 | """ |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 337 | tout.info('Processing image') |
Simon Glass | 274bd0e | 2019-07-20 12:24:13 -0600 | [diff] [blame] | 338 | ProcessImage(image, update_fdt=True, write_map=write_map, |
| 339 | get_contents=False, allow_resize=allow_resize) |
| 340 | |
| 341 | |
| 342 | def WriteEntryToImage(image, entry, data, do_compress=True, allow_resize=True, |
| 343 | write_map=False): |
| 344 | BeforeReplace(image, allow_resize) |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 345 | tout.info('Writing data to %s' % entry.GetPath()) |
Simon Glass | 274bd0e | 2019-07-20 12:24:13 -0600 | [diff] [blame] | 346 | ReplaceOneEntry(image, entry, data, do_compress, allow_resize) |
| 347 | AfterReplace(image, allow_resize=allow_resize, write_map=write_map) |
| 348 | |
| 349 | |
Simon Glass | d48f94e | 2019-07-20 12:24:12 -0600 | [diff] [blame] | 350 | def WriteEntry(image_fname, entry_path, data, do_compress=True, |
| 351 | allow_resize=True, write_map=False): |
Simon Glass | 3971c95 | 2019-07-20 12:24:11 -0600 | [diff] [blame] | 352 | """Replace an entry in an image |
| 353 | |
| 354 | This replaces the data in a particular entry in an image. This size of the |
| 355 | new data must match the size of the old data unless allow_resize is True. |
| 356 | |
| 357 | Args: |
| 358 | image_fname: Image filename to process |
| 359 | entry_path: Path to entry to extract |
| 360 | data: Data to replace with |
Simon Glass | d48f94e | 2019-07-20 12:24:12 -0600 | [diff] [blame] | 361 | do_compress: True to compress the data if needed, False if data is |
Simon Glass | 3971c95 | 2019-07-20 12:24:11 -0600 | [diff] [blame] | 362 | already compressed so should be used as is |
| 363 | allow_resize: True to allow entries to change size (this does a re-pack |
| 364 | of the entries), False to raise an exception |
Simon Glass | d48f94e | 2019-07-20 12:24:12 -0600 | [diff] [blame] | 365 | write_map: True to write a map file |
Simon Glass | 3971c95 | 2019-07-20 12:24:11 -0600 | [diff] [blame] | 366 | |
| 367 | Returns: |
| 368 | Image object that was updated |
| 369 | """ |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 370 | tout.info("Write entry '%s', file '%s'" % (entry_path, image_fname)) |
Simon Glass | 3971c95 | 2019-07-20 12:24:11 -0600 | [diff] [blame] | 371 | image = Image.FromFile(image_fname) |
| 372 | entry = image.FindEntryPath(entry_path) |
Simon Glass | 274bd0e | 2019-07-20 12:24:13 -0600 | [diff] [blame] | 373 | WriteEntryToImage(image, entry, data, do_compress=do_compress, |
| 374 | allow_resize=allow_resize, write_map=write_map) |
Simon Glass | 3971c95 | 2019-07-20 12:24:11 -0600 | [diff] [blame] | 375 | |
Simon Glass | 3971c95 | 2019-07-20 12:24:11 -0600 | [diff] [blame] | 376 | return image |
| 377 | |
Simon Glass | 30033c2 | 2019-07-20 12:24:15 -0600 | [diff] [blame] | 378 | |
| 379 | def ReplaceEntries(image_fname, input_fname, indir, entry_paths, |
| 380 | do_compress=True, allow_resize=True, write_map=False): |
| 381 | """Replace the data from one or more entries from input files |
| 382 | |
| 383 | Args: |
| 384 | image_fname: Image filename to process |
Jan Kiszka | 8ea4443 | 2021-11-11 08:13:30 +0100 | [diff] [blame] | 385 | input_fname: Single input filename to use if replacing one file, None |
Simon Glass | 30033c2 | 2019-07-20 12:24:15 -0600 | [diff] [blame] | 386 | otherwise |
| 387 | indir: Input directory to use (for any number of files), else None |
Jan Kiszka | 8ea4443 | 2021-11-11 08:13:30 +0100 | [diff] [blame] | 388 | entry_paths: List of entry paths to replace |
Simon Glass | 30033c2 | 2019-07-20 12:24:15 -0600 | [diff] [blame] | 389 | do_compress: True if the input data is uncompressed and may need to be |
| 390 | compressed if the entry requires it, False if the data is already |
| 391 | compressed. |
| 392 | write_map: True to write a map file |
| 393 | |
| 394 | Returns: |
| 395 | List of EntryInfo records that were written |
| 396 | """ |
Jan Kiszka | afc8f29 | 2021-11-11 08:14:18 +0100 | [diff] [blame] | 397 | image_fname = os.path.abspath(image_fname) |
Simon Glass | 30033c2 | 2019-07-20 12:24:15 -0600 | [diff] [blame] | 398 | image = Image.FromFile(image_fname) |
| 399 | |
| 400 | # Replace an entry from a single file, as a special case |
| 401 | if input_fname: |
| 402 | if not entry_paths: |
| 403 | raise ValueError('Must specify an entry path to read with -f') |
| 404 | if len(entry_paths) != 1: |
| 405 | raise ValueError('Must specify exactly one entry path to write with -f') |
| 406 | entry = image.FindEntryPath(entry_paths[0]) |
Simon Glass | 8002552 | 2022-01-29 14:14:04 -0700 | [diff] [blame] | 407 | data = tools.read_file(input_fname) |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 408 | tout.notice("Read %#x bytes from file '%s'" % (len(data), input_fname)) |
Simon Glass | 30033c2 | 2019-07-20 12:24:15 -0600 | [diff] [blame] | 409 | WriteEntryToImage(image, entry, data, do_compress=do_compress, |
| 410 | allow_resize=allow_resize, write_map=write_map) |
| 411 | return |
| 412 | |
| 413 | # Otherwise we will input from a path given by the entry path of each entry. |
| 414 | # This means that files must appear in subdirectories if they are part of |
| 415 | # a sub-section. |
| 416 | einfos = image.GetListEntries(entry_paths)[0] |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 417 | tout.notice("Replacing %d matching entries in image '%s'" % |
Simon Glass | 30033c2 | 2019-07-20 12:24:15 -0600 | [diff] [blame] | 418 | (len(einfos), image_fname)) |
| 419 | |
| 420 | BeforeReplace(image, allow_resize) |
| 421 | |
| 422 | for einfo in einfos: |
| 423 | entry = einfo.entry |
| 424 | if entry.GetEntries(): |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 425 | tout.info("Skipping section entry '%s'" % entry.GetPath()) |
Simon Glass | 30033c2 | 2019-07-20 12:24:15 -0600 | [diff] [blame] | 426 | continue |
| 427 | |
| 428 | path = entry.GetPath()[1:] |
| 429 | fname = os.path.join(indir, path) |
| 430 | |
| 431 | if os.path.exists(fname): |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 432 | tout.notice("Write entry '%s' from file '%s'" % |
Simon Glass | 30033c2 | 2019-07-20 12:24:15 -0600 | [diff] [blame] | 433 | (entry.GetPath(), fname)) |
Simon Glass | 8002552 | 2022-01-29 14:14:04 -0700 | [diff] [blame] | 434 | data = tools.read_file(fname) |
Simon Glass | 30033c2 | 2019-07-20 12:24:15 -0600 | [diff] [blame] | 435 | ReplaceOneEntry(image, entry, data, do_compress, allow_resize) |
| 436 | else: |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 437 | tout.warning("Skipping entry '%s' from missing file '%s'" % |
Simon Glass | 30033c2 | 2019-07-20 12:24:15 -0600 | [diff] [blame] | 438 | (entry.GetPath(), fname)) |
| 439 | |
| 440 | AfterReplace(image, allow_resize=allow_resize, write_map=write_map) |
| 441 | return image |
| 442 | |
| 443 | |
Simon Glass | 55ab0b6 | 2021-03-18 20:25:06 +1300 | [diff] [blame] | 444 | def PrepareImagesAndDtbs(dtb_fname, select_images, update_fdt, use_expanded): |
Simon Glass | d3151ff | 2019-07-20 12:23:27 -0600 | [diff] [blame] | 445 | """Prepare the images to be processed and select the device tree |
| 446 | |
| 447 | This function: |
| 448 | - reads in the device tree |
| 449 | - finds and scans the binman node to create all entries |
| 450 | - selects which images to build |
| 451 | - Updates the device tress with placeholder properties for offset, |
| 452 | image-pos, etc. |
| 453 | |
| 454 | Args: |
| 455 | dtb_fname: Filename of the device tree file to use (.dts or .dtb) |
| 456 | selected_images: List of images to output, or None for all |
| 457 | update_fdt: True to update the FDT wth entry offsets, etc. |
Simon Glass | 55ab0b6 | 2021-03-18 20:25:06 +1300 | [diff] [blame] | 458 | use_expanded: True to use expanded versions of entries, if available. |
| 459 | So if 'u-boot' is called for, we use 'u-boot-expanded' instead. This |
| 460 | is needed if update_fdt is True (although tests may disable it) |
Simon Glass | 31ee50f | 2020-09-01 05:13:55 -0600 | [diff] [blame] | 461 | |
| 462 | Returns: |
| 463 | OrderedDict of images: |
| 464 | key: Image name (str) |
| 465 | value: Image object |
Simon Glass | d3151ff | 2019-07-20 12:23:27 -0600 | [diff] [blame] | 466 | """ |
| 467 | # Import these here in case libfdt.py is not available, in which case |
| 468 | # the above help option still works. |
Simon Glass | c585dd4 | 2020-04-17 18:09:03 -0600 | [diff] [blame] | 469 | from dtoc import fdt |
| 470 | from dtoc import fdt_util |
Simon Glass | d3151ff | 2019-07-20 12:23:27 -0600 | [diff] [blame] | 471 | global images |
| 472 | |
| 473 | # Get the device tree ready by compiling it and copying the compiled |
| 474 | # output into a file in our output directly. Then scan it for use |
| 475 | # in binman. |
| 476 | dtb_fname = fdt_util.EnsureCompiled(dtb_fname) |
Simon Glass | 8002552 | 2022-01-29 14:14:04 -0700 | [diff] [blame] | 477 | fname = tools.get_output_filename('u-boot.dtb.out') |
| 478 | tools.write_file(fname, tools.read_file(dtb_fname)) |
Simon Glass | d3151ff | 2019-07-20 12:23:27 -0600 | [diff] [blame] | 479 | dtb = fdt.FdtScan(fname) |
| 480 | |
| 481 | node = _FindBinmanNode(dtb) |
| 482 | if not node: |
| 483 | raise ValueError("Device tree '%s' does not have a 'binman' " |
| 484 | "node" % dtb_fname) |
| 485 | |
Simon Glass | 55ab0b6 | 2021-03-18 20:25:06 +1300 | [diff] [blame] | 486 | images = _ReadImageDesc(node, use_expanded) |
Simon Glass | d3151ff | 2019-07-20 12:23:27 -0600 | [diff] [blame] | 487 | |
| 488 | if select_images: |
| 489 | skip = [] |
| 490 | new_images = OrderedDict() |
| 491 | for name, image in images.items(): |
| 492 | if name in select_images: |
| 493 | new_images[name] = image |
| 494 | else: |
| 495 | skip.append(name) |
| 496 | images = new_images |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 497 | tout.notice('Skipping images: %s' % ', '.join(skip)) |
Simon Glass | d3151ff | 2019-07-20 12:23:27 -0600 | [diff] [blame] | 498 | |
| 499 | state.Prepare(images, dtb) |
| 500 | |
| 501 | # Prepare the device tree by making sure that any missing |
| 502 | # properties are added (e.g. 'pos' and 'size'). The values of these |
| 503 | # may not be correct yet, but we add placeholders so that the |
| 504 | # size of the device tree is correct. Later, in |
| 505 | # SetCalculatedProperties() we will insert the correct values |
| 506 | # without changing the device-tree size, thus ensuring that our |
| 507 | # entry offsets remain the same. |
| 508 | for image in images.values(): |
Simon Glass | 4eae925 | 2022-01-09 20:13:50 -0700 | [diff] [blame] | 509 | image.CollectBintools() |
Simon Glass | d3151ff | 2019-07-20 12:23:27 -0600 | [diff] [blame] | 510 | image.ExpandEntries() |
| 511 | if update_fdt: |
Simon Glass | acd6c6e | 2020-10-26 17:40:17 -0600 | [diff] [blame] | 512 | image.AddMissingProperties(True) |
Simon Glass | d3151ff | 2019-07-20 12:23:27 -0600 | [diff] [blame] | 513 | image.ProcessFdt(dtb) |
| 514 | |
Simon Glass | 5a30060 | 2019-07-20 12:23:29 -0600 | [diff] [blame] | 515 | for dtb_item in state.GetAllFdts(): |
Simon Glass | d3151ff | 2019-07-20 12:23:27 -0600 | [diff] [blame] | 516 | dtb_item.Sync(auto_resize=True) |
| 517 | dtb_item.Pack() |
| 518 | dtb_item.Flush() |
| 519 | return images |
| 520 | |
| 521 | |
Simon Glass | f8a54bc | 2019-07-20 12:23:56 -0600 | [diff] [blame] | 522 | def ProcessImage(image, update_fdt, write_map, get_contents=True, |
Heiko Thiery | 6d45136 | 2022-01-06 11:49:41 +0100 | [diff] [blame] | 523 | allow_resize=True, allow_missing=False, |
| 524 | allow_fake_blobs=False): |
Simon Glass | b766c5e5 | 2019-07-20 12:23:24 -0600 | [diff] [blame] | 525 | """Perform all steps for this image, including checking and # writing it. |
| 526 | |
| 527 | This means that errors found with a later image will be reported after |
| 528 | earlier images are already completed and written, but that does not seem |
| 529 | important. |
| 530 | |
| 531 | Args: |
| 532 | image: Image to process |
| 533 | update_fdt: True to update the FDT wth entry offsets, etc. |
| 534 | write_map: True to write a map file |
Simon Glass | 072959a | 2019-07-20 12:23:50 -0600 | [diff] [blame] | 535 | get_contents: True to get the image contents from files, etc., False if |
| 536 | the contents is already present |
Simon Glass | f8a54bc | 2019-07-20 12:23:56 -0600 | [diff] [blame] | 537 | allow_resize: True to allow entries to change size (this does a re-pack |
| 538 | of the entries), False to raise an exception |
Simon Glass | 5d94cc6 | 2020-07-09 18:39:38 -0600 | [diff] [blame] | 539 | allow_missing: Allow blob_ext objects to be missing |
Heiko Thiery | 6d45136 | 2022-01-06 11:49:41 +0100 | [diff] [blame] | 540 | allow_fake_blobs: Allow blob_ext objects to be faked with dummy files |
Simon Glass | a003cd3 | 2020-07-09 18:39:40 -0600 | [diff] [blame] | 541 | |
| 542 | Returns: |
Heiko Thiery | 6d45136 | 2022-01-06 11:49:41 +0100 | [diff] [blame] | 543 | True if one or more external blobs are missing or faked, |
| 544 | False if all are present |
Simon Glass | b766c5e5 | 2019-07-20 12:23:24 -0600 | [diff] [blame] | 545 | """ |
Simon Glass | 072959a | 2019-07-20 12:23:50 -0600 | [diff] [blame] | 546 | if get_contents: |
Simon Glass | 5d94cc6 | 2020-07-09 18:39:38 -0600 | [diff] [blame] | 547 | image.SetAllowMissing(allow_missing) |
Heiko Thiery | 6d45136 | 2022-01-06 11:49:41 +0100 | [diff] [blame] | 548 | image.SetAllowFakeBlob(allow_fake_blobs) |
Simon Glass | 072959a | 2019-07-20 12:23:50 -0600 | [diff] [blame] | 549 | image.GetEntryContents() |
Simon Glass | b766c5e5 | 2019-07-20 12:23:24 -0600 | [diff] [blame] | 550 | image.GetEntryOffsets() |
| 551 | |
| 552 | # We need to pack the entries to figure out where everything |
| 553 | # should be placed. This sets the offset/size of each entry. |
| 554 | # However, after packing we call ProcessEntryContents() which |
| 555 | # may result in an entry changing size. In that case we need to |
| 556 | # do another pass. Since the device tree often contains the |
| 557 | # final offset/size information we try to make space for this in |
| 558 | # AddMissingProperties() above. However, if the device is |
| 559 | # compressed we cannot know this compressed size in advance, |
| 560 | # since changing an offset from 0x100 to 0x104 (for example) can |
| 561 | # alter the compressed size of the device tree. So we need a |
| 562 | # third pass for this. |
Simon Glass | 37fdd14 | 2019-07-20 12:24:06 -0600 | [diff] [blame] | 563 | passes = 5 |
Simon Glass | b766c5e5 | 2019-07-20 12:23:24 -0600 | [diff] [blame] | 564 | for pack_pass in range(passes): |
| 565 | try: |
| 566 | image.PackEntries() |
Simon Glass | b766c5e5 | 2019-07-20 12:23:24 -0600 | [diff] [blame] | 567 | except Exception as e: |
| 568 | if write_map: |
| 569 | fname = image.WriteMap() |
| 570 | print("Wrote map file '%s' to show errors" % fname) |
| 571 | raise |
| 572 | image.SetImagePos() |
| 573 | if update_fdt: |
| 574 | image.SetCalculatedProperties() |
Simon Glass | 5a30060 | 2019-07-20 12:23:29 -0600 | [diff] [blame] | 575 | for dtb_item in state.GetAllFdts(): |
Simon Glass | b766c5e5 | 2019-07-20 12:23:24 -0600 | [diff] [blame] | 576 | dtb_item.Sync() |
Simon Glass | f8a54bc | 2019-07-20 12:23:56 -0600 | [diff] [blame] | 577 | dtb_item.Flush() |
Simon Glass | e594341 | 2019-08-24 07:23:12 -0600 | [diff] [blame] | 578 | image.WriteSymbols() |
Simon Glass | b766c5e5 | 2019-07-20 12:23:24 -0600 | [diff] [blame] | 579 | sizes_ok = image.ProcessEntryContents() |
| 580 | if sizes_ok: |
| 581 | break |
| 582 | image.ResetForPack() |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 583 | tout.info('Pack completed after %d pass(es)' % (pack_pass + 1)) |
Simon Glass | b766c5e5 | 2019-07-20 12:23:24 -0600 | [diff] [blame] | 584 | if not sizes_ok: |
Simon Glass | 9d8ee32 | 2019-07-20 12:23:58 -0600 | [diff] [blame] | 585 | image.Raise('Entries changed size after packing (tried %s passes)' % |
Simon Glass | b766c5e5 | 2019-07-20 12:23:24 -0600 | [diff] [blame] | 586 | passes) |
| 587 | |
Simon Glass | b766c5e5 | 2019-07-20 12:23:24 -0600 | [diff] [blame] | 588 | image.BuildImage() |
| 589 | if write_map: |
| 590 | image.WriteMap() |
Simon Glass | a003cd3 | 2020-07-09 18:39:40 -0600 | [diff] [blame] | 591 | missing_list = [] |
| 592 | image.CheckMissing(missing_list) |
| 593 | if missing_list: |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 594 | tout.warning("Image '%s' is missing external blobs and is non-functional: %s" % |
Simon Glass | a003cd3 | 2020-07-09 18:39:40 -0600 | [diff] [blame] | 595 | (image.name, ' '.join([e.name for e in missing_list]))) |
Simon Glass | a820af7 | 2020-09-06 10:39:09 -0600 | [diff] [blame] | 596 | _ShowHelpForMissingBlobs(missing_list) |
Heiko Thiery | 6d45136 | 2022-01-06 11:49:41 +0100 | [diff] [blame] | 597 | faked_list = [] |
| 598 | image.CheckFakedBlobs(faked_list) |
| 599 | if faked_list: |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 600 | tout.warning( |
Simon Glass | f9f3403 | 2022-01-09 20:13:45 -0700 | [diff] [blame] | 601 | "Image '%s' has faked external blobs and is non-functional: %s" % |
| 602 | (image.name, ' '.join([os.path.basename(e.GetDefaultFilename()) |
| 603 | for e in faked_list]))) |
Simon Glass | 66152ce | 2022-01-09 20:14:09 -0700 | [diff] [blame] | 604 | missing_bintool_list = [] |
| 605 | image.check_missing_bintools(missing_bintool_list) |
| 606 | if missing_bintool_list: |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 607 | tout.warning( |
Simon Glass | 66152ce | 2022-01-09 20:14:09 -0700 | [diff] [blame] | 608 | "Image '%s' has missing bintools and is non-functional: %s" % |
| 609 | (image.name, ' '.join([os.path.basename(bintool.name) |
| 610 | for bintool in missing_bintool_list]))) |
| 611 | return any([missing_list, faked_list, missing_bintool_list]) |
Simon Glass | b766c5e5 | 2019-07-20 12:23:24 -0600 | [diff] [blame] | 612 | |
| 613 | |
Simon Glass | f46732a | 2019-07-08 14:25:29 -0600 | [diff] [blame] | 614 | def Binman(args): |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 615 | """The main control code for binman |
| 616 | |
| 617 | This assumes that help and test options have already been dealt with. It |
| 618 | deals with the core task of building images. |
| 619 | |
| 620 | Args: |
Simon Glass | f46732a | 2019-07-08 14:25:29 -0600 | [diff] [blame] | 621 | args: Command line arguments Namespace object |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 622 | """ |
Simon Glass | b9ba4e0 | 2019-08-24 07:22:44 -0600 | [diff] [blame] | 623 | global Image |
| 624 | global state |
| 625 | |
Simon Glass | f46732a | 2019-07-08 14:25:29 -0600 | [diff] [blame] | 626 | if args.full_help: |
Simon Glass | 8002552 | 2022-01-29 14:14:04 -0700 | [diff] [blame] | 627 | tools.print_full_help( |
Paul Barker | 25ecd97 | 2021-09-08 12:38:01 +0100 | [diff] [blame] | 628 | os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])), 'README.rst') |
| 629 | ) |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 630 | return 0 |
| 631 | |
Simon Glass | b9ba4e0 | 2019-08-24 07:22:44 -0600 | [diff] [blame] | 632 | # Put these here so that we can import this module without libfdt |
Simon Glass | 90cd6f0 | 2020-08-05 13:27:47 -0600 | [diff] [blame] | 633 | from binman.image import Image |
Simon Glass | c585dd4 | 2020-04-17 18:09:03 -0600 | [diff] [blame] | 634 | from binman import state |
Simon Glass | b9ba4e0 | 2019-08-24 07:22:44 -0600 | [diff] [blame] | 635 | |
Simon Glass | 4eae925 | 2022-01-09 20:13:50 -0700 | [diff] [blame] | 636 | if args.cmd in ['ls', 'extract', 'replace', 'tool']: |
Simon Glass | 9b7f500 | 2019-07-20 12:23:53 -0600 | [diff] [blame] | 637 | try: |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 638 | tout.init(args.verbosity) |
Simon Glass | 8002552 | 2022-01-29 14:14:04 -0700 | [diff] [blame] | 639 | tools.prepare_output_dir(None) |
Simon Glass | df08cbb | 2019-09-15 18:10:36 -0600 | [diff] [blame] | 640 | if args.cmd == 'ls': |
| 641 | ListEntries(args.image, args.paths) |
Simon Glass | b2fd11d | 2019-07-08 14:25:48 -0600 | [diff] [blame] | 642 | |
Simon Glass | df08cbb | 2019-09-15 18:10:36 -0600 | [diff] [blame] | 643 | if args.cmd == 'extract': |
| 644 | ExtractEntries(args.image, args.filename, args.outdir, args.paths, |
Simon Glass | 637958f | 2021-11-23 21:09:50 -0700 | [diff] [blame] | 645 | not args.uncompressed, args.format) |
Simon Glass | 980a284 | 2019-07-08 14:25:52 -0600 | [diff] [blame] | 646 | |
Simon Glass | df08cbb | 2019-09-15 18:10:36 -0600 | [diff] [blame] | 647 | if args.cmd == 'replace': |
| 648 | ReplaceEntries(args.image, args.filename, args.indir, args.paths, |
| 649 | do_compress=not args.compressed, |
| 650 | allow_resize=not args.fix_size, write_map=args.map) |
Simon Glass | 4eae925 | 2022-01-09 20:13:50 -0700 | [diff] [blame] | 651 | |
| 652 | if args.cmd == 'tool': |
Simon Glass | 8002552 | 2022-01-29 14:14:04 -0700 | [diff] [blame] | 653 | tools.set_tool_paths(args.toolpath) |
Simon Glass | 4eae925 | 2022-01-09 20:13:50 -0700 | [diff] [blame] | 654 | if args.list: |
| 655 | bintool.Bintool.list_all() |
| 656 | elif args.fetch: |
| 657 | if not args.bintools: |
| 658 | raise ValueError( |
| 659 | "Please specify bintools to fetch or 'all' or 'missing'") |
| 660 | bintool.Bintool.fetch_tools(bintool.FETCH_ANY, |
| 661 | args.bintools) |
| 662 | else: |
| 663 | raise ValueError("Invalid arguments to 'tool' subcommand") |
Simon Glass | df08cbb | 2019-09-15 18:10:36 -0600 | [diff] [blame] | 664 | except: |
| 665 | raise |
Simon Glass | 30033c2 | 2019-07-20 12:24:15 -0600 | [diff] [blame] | 666 | finally: |
Simon Glass | 8002552 | 2022-01-29 14:14:04 -0700 | [diff] [blame] | 667 | tools.finalise_output_dir() |
Simon Glass | 30033c2 | 2019-07-20 12:24:15 -0600 | [diff] [blame] | 668 | return 0 |
| 669 | |
Simon Glass | adfb849 | 2021-11-03 21:09:18 -0600 | [diff] [blame] | 670 | elf_params = None |
| 671 | if args.update_fdt_in_elf: |
| 672 | elf_params = args.update_fdt_in_elf.split(',') |
| 673 | if len(elf_params) != 4: |
| 674 | raise ValueError('Invalid args %s to --update-fdt-in-elf: expected infile,outfile,begin_sym,end_sym' % |
| 675 | elf_params) |
| 676 | |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 677 | # Try to figure out which device tree contains our image description |
Simon Glass | f46732a | 2019-07-08 14:25:29 -0600 | [diff] [blame] | 678 | if args.dt: |
| 679 | dtb_fname = args.dt |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 680 | else: |
Simon Glass | f46732a | 2019-07-08 14:25:29 -0600 | [diff] [blame] | 681 | board = args.board |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 682 | if not board: |
| 683 | raise ValueError('Must provide a board to process (use -b <board>)') |
Simon Glass | f46732a | 2019-07-08 14:25:29 -0600 | [diff] [blame] | 684 | board_pathname = os.path.join(args.build_dir, board) |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 685 | dtb_fname = os.path.join(board_pathname, 'u-boot.dtb') |
Simon Glass | f46732a | 2019-07-08 14:25:29 -0600 | [diff] [blame] | 686 | if not args.indir: |
| 687 | args.indir = ['.'] |
| 688 | args.indir.append(board_pathname) |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 689 | |
| 690 | try: |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 691 | tout.init(args.verbosity) |
Simon Glass | f46732a | 2019-07-08 14:25:29 -0600 | [diff] [blame] | 692 | elf.debug = args.debug |
| 693 | cbfs_util.VERBOSE = args.verbosity > 2 |
| 694 | state.use_fake_dtb = args.fake_dtb |
Simon Glass | 55ab0b6 | 2021-03-18 20:25:06 +1300 | [diff] [blame] | 695 | |
| 696 | # Normally we replace the 'u-boot' etype with 'u-boot-expanded', etc. |
| 697 | # When running tests this can be disabled using this flag. When not |
| 698 | # updating the FDT in image, it is not needed by binman, but we use it |
| 699 | # for consistency, so that the images look the same to U-Boot at |
| 700 | # runtime. |
| 701 | use_expanded = not args.no_expanded |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 702 | try: |
Simon Glass | 8002552 | 2022-01-29 14:14:04 -0700 | [diff] [blame] | 703 | tools.set_input_dirs(args.indir) |
| 704 | tools.prepare_output_dir(args.outdir, args.preserve) |
| 705 | tools.set_tool_paths(args.toolpath) |
Simon Glass | f46732a | 2019-07-08 14:25:29 -0600 | [diff] [blame] | 706 | state.SetEntryArgs(args.entry_arg) |
Simon Glass | 76f496d | 2021-07-06 10:36:37 -0600 | [diff] [blame] | 707 | state.SetThreads(args.threads) |
Simon Glass | 9230773 | 2018-07-06 10:27:40 -0600 | [diff] [blame] | 708 | |
Simon Glass | d3151ff | 2019-07-20 12:23:27 -0600 | [diff] [blame] | 709 | images = PrepareImagesAndDtbs(dtb_fname, args.image, |
Simon Glass | 55ab0b6 | 2021-03-18 20:25:06 +1300 | [diff] [blame] | 710 | args.update_fdt, use_expanded) |
Heiko Thiery | 6d45136 | 2022-01-06 11:49:41 +0100 | [diff] [blame] | 711 | |
Simon Glass | 76f496d | 2021-07-06 10:36:37 -0600 | [diff] [blame] | 712 | if args.test_section_timeout: |
| 713 | # Set the first image to timeout, used in testThreadTimeout() |
| 714 | images[list(images.keys())[0]].test_section_timeout = True |
Heiko Thiery | 6d45136 | 2022-01-06 11:49:41 +0100 | [diff] [blame] | 715 | invalid = False |
Simon Glass | 66152ce | 2022-01-09 20:14:09 -0700 | [diff] [blame] | 716 | bintool.Bintool.set_missing_list( |
| 717 | args.force_missing_bintools.split(',') if |
| 718 | args.force_missing_bintools else None) |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 719 | for image in images.values(): |
Heiko Thiery | 6d45136 | 2022-01-06 11:49:41 +0100 | [diff] [blame] | 720 | invalid |= ProcessImage(image, args.update_fdt, args.map, |
| 721 | allow_missing=args.allow_missing, |
| 722 | allow_fake_blobs=args.fake_ext_blobs) |
Simon Glass | bdb4031 | 2018-09-14 04:57:20 -0600 | [diff] [blame] | 723 | |
| 724 | # Write the updated FDTs to our output files |
Simon Glass | 5a30060 | 2019-07-20 12:23:29 -0600 | [diff] [blame] | 725 | for dtb_item in state.GetAllFdts(): |
Simon Glass | 8002552 | 2022-01-29 14:14:04 -0700 | [diff] [blame] | 726 | tools.write_file(dtb_item._fname, dtb_item.GetContents()) |
Simon Glass | bdb4031 | 2018-09-14 04:57:20 -0600 | [diff] [blame] | 727 | |
Simon Glass | adfb849 | 2021-11-03 21:09:18 -0600 | [diff] [blame] | 728 | if elf_params: |
| 729 | data = state.GetFdtForEtype('u-boot-dtb').GetContents() |
| 730 | elf.UpdateFile(*elf_params, data) |
| 731 | |
Heiko Thiery | 6d45136 | 2022-01-06 11:49:41 +0100 | [diff] [blame] | 732 | if invalid: |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 733 | tout.warning("\nSome images are invalid") |
Simon Glass | 748a1d4 | 2021-07-06 10:36:41 -0600 | [diff] [blame] | 734 | |
| 735 | # Use this to debug the time take to pack the image |
| 736 | #state.TimingShow() |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 737 | finally: |
Simon Glass | 8002552 | 2022-01-29 14:14:04 -0700 | [diff] [blame] | 738 | tools.finalise_output_dir() |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 739 | finally: |
Simon Glass | 011f1b3 | 2022-01-29 14:14:15 -0700 | [diff] [blame] | 740 | tout.uninit() |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 741 | |
| 742 | return 0 |