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 | # |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 4 | # Base class for all entries |
| 5 | # |
| 6 | |
Simon Glass | 91710b3 | 2018-07-17 13:25:32 -0600 | [diff] [blame] | 7 | from collections import namedtuple |
Simon Glass | 7ccca83 | 2019-10-31 07:42:59 -0600 | [diff] [blame] | 8 | import importlib |
Simon Glass | 691198c | 2018-06-01 09:38:15 -0600 | [diff] [blame] | 9 | import os |
| 10 | import sys |
Simon Glass | 29aa736 | 2018-09-14 04:57:19 -0600 | [diff] [blame] | 11 | |
Simon Glass | c585dd4 | 2020-04-17 18:09:03 -0600 | [diff] [blame] | 12 | from dtoc import fdt_util |
Simon Glass | a997ea5 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 13 | from patman import tools |
Simon Glass | c585dd4 | 2020-04-17 18:09:03 -0600 | [diff] [blame] | 14 | from patman.tools import ToHex, ToHexSize |
Simon Glass | a997ea5 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 15 | from patman import tout |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 16 | |
| 17 | modules = {} |
| 18 | |
Simon Glass | 91710b3 | 2018-07-17 13:25:32 -0600 | [diff] [blame] | 19 | |
| 20 | # An argument which can be passed to entries on the command line, in lieu of |
| 21 | # device-tree properties. |
| 22 | EntryArg = namedtuple('EntryArg', ['name', 'datatype']) |
| 23 | |
Simon Glass | 6b156f8 | 2019-07-08 14:25:43 -0600 | [diff] [blame] | 24 | # Information about an entry for use when displaying summaries |
| 25 | EntryInfo = namedtuple('EntryInfo', ['indent', 'name', 'etype', 'size', |
| 26 | 'image_pos', 'uncomp_size', 'offset', |
| 27 | 'entry']) |
Simon Glass | 91710b3 | 2018-07-17 13:25:32 -0600 | [diff] [blame] | 28 | |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 29 | class Entry(object): |
Simon Glass | ad5a771 | 2018-06-01 09:38:14 -0600 | [diff] [blame] | 30 | """An Entry in the section |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 31 | |
| 32 | An entry corresponds to a single node in the device-tree description |
Simon Glass | ad5a771 | 2018-06-01 09:38:14 -0600 | [diff] [blame] | 33 | of the section. Each entry ends up being a part of the final section. |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 34 | Entries can be placed either right next to each other, or with padding |
| 35 | between them. The type of the entry determines the data that is in it. |
| 36 | |
| 37 | This class is not used by itself. All entry objects are subclasses of |
| 38 | Entry. |
| 39 | |
| 40 | Attributes: |
Simon Glass | 3a9a2b8 | 2018-07-17 13:25:28 -0600 | [diff] [blame] | 41 | section: Section object containing this entry |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 42 | node: The node that created this entry |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 43 | offset: Offset of entry within the section, None if not known yet (in |
| 44 | which case it will be calculated by Pack()) |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 45 | size: Entry size in bytes, None if not known |
Simon Glass | 1fdb487 | 2019-10-31 07:43:02 -0600 | [diff] [blame] | 46 | pre_reset_size: size as it was before ResetForPack(). This allows us to |
| 47 | keep track of the size we started with and detect size changes |
Simon Glass | aa2fcf9 | 2019-07-08 14:25:30 -0600 | [diff] [blame] | 48 | uncomp_size: Size of uncompressed data in bytes, if the entry is |
| 49 | compressed, else None |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 50 | contents_size: Size of contents in bytes, 0 by default |
Simon Glass | afb9caa | 2020-10-26 17:40:10 -0600 | [diff] [blame] | 51 | align: Entry start offset alignment relative to the start of the |
| 52 | containing section, or None |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 53 | align_size: Entry size alignment, or None |
Simon Glass | afb9caa | 2020-10-26 17:40:10 -0600 | [diff] [blame] | 54 | align_end: Entry end offset alignment relative to the start of the |
| 55 | containing section, or None |
Simon Glass | d12599d | 2020-10-26 17:40:09 -0600 | [diff] [blame] | 56 | pad_before: Number of pad bytes before the contents when it is placed |
| 57 | in the containing section, 0 if none. The pad bytes become part of |
| 58 | the entry. |
| 59 | pad_after: Number of pad bytes after the contents when it is placed in |
| 60 | the containing section, 0 if none. The pad bytes become part of |
| 61 | the entry. |
| 62 | data: Contents of entry (string of bytes). This does not include |
Simon Glass | 789b3440 | 2020-10-26 17:40:15 -0600 | [diff] [blame] | 63 | padding created by pad_before or pad_after. If the entry is |
| 64 | compressed, this contains the compressed data. |
| 65 | uncomp_data: Original uncompressed data, if this entry is compressed, |
| 66 | else None |
Simon Glass | aa2fcf9 | 2019-07-08 14:25:30 -0600 | [diff] [blame] | 67 | compress: Compression algoithm used (e.g. 'lz4'), 'none' if none |
Simon Glass | e61b6f6 | 2019-07-08 14:25:37 -0600 | [diff] [blame] | 68 | orig_offset: Original offset value read from node |
| 69 | orig_size: Original size value read from node |
Simon Glass | b8f9037 | 2020-09-01 05:13:57 -0600 | [diff] [blame] | 70 | missing: True if this entry is missing its contents |
| 71 | allow_missing: Allow children of this entry to be missing (used by |
| 72 | subclasses such as Entry_section) |
| 73 | external: True if this entry contains an external binary blob |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 74 | """ |
Simon Glass | 2c360cf | 2019-07-20 12:23:45 -0600 | [diff] [blame] | 75 | def __init__(self, section, etype, node, name_prefix=''): |
Simon Glass | b9ba4e0 | 2019-08-24 07:22:44 -0600 | [diff] [blame] | 76 | # Put this here to allow entry-docs and help to work without libfdt |
| 77 | global state |
Simon Glass | c585dd4 | 2020-04-17 18:09:03 -0600 | [diff] [blame] | 78 | from binman import state |
Simon Glass | b9ba4e0 | 2019-08-24 07:22:44 -0600 | [diff] [blame] | 79 | |
Simon Glass | ad5a771 | 2018-06-01 09:38:14 -0600 | [diff] [blame] | 80 | self.section = section |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 81 | self.etype = etype |
| 82 | self._node = node |
Simon Glass | 3b78d53 | 2018-06-01 09:38:21 -0600 | [diff] [blame] | 83 | self.name = node and (name_prefix + node.name) or 'none' |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 84 | self.offset = None |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 85 | self.size = None |
Simon Glass | 1fdb487 | 2019-10-31 07:43:02 -0600 | [diff] [blame] | 86 | self.pre_reset_size = None |
Simon Glass | aa2fcf9 | 2019-07-08 14:25:30 -0600 | [diff] [blame] | 87 | self.uncomp_size = None |
Simon Glass | 5c35016 | 2018-07-17 13:25:47 -0600 | [diff] [blame] | 88 | self.data = None |
Simon Glass | 789b3440 | 2020-10-26 17:40:15 -0600 | [diff] [blame] | 89 | self.uncomp_data = None |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 90 | self.contents_size = 0 |
| 91 | self.align = None |
| 92 | self.align_size = None |
| 93 | self.align_end = None |
| 94 | self.pad_before = 0 |
| 95 | self.pad_after = 0 |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 96 | self.offset_unset = False |
Simon Glass | 9dcc861 | 2018-08-01 15:22:42 -0600 | [diff] [blame] | 97 | self.image_pos = None |
Simon Glass | fa79a81 | 2018-09-14 04:57:29 -0600 | [diff] [blame] | 98 | self._expand_size = False |
Simon Glass | aa2fcf9 | 2019-07-08 14:25:30 -0600 | [diff] [blame] | 99 | self.compress = 'none' |
Simon Glass | a003cd3 | 2020-07-09 18:39:40 -0600 | [diff] [blame] | 100 | self.missing = False |
Simon Glass | b8f9037 | 2020-09-01 05:13:57 -0600 | [diff] [blame] | 101 | self.external = False |
| 102 | self.allow_missing = False |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 103 | |
| 104 | @staticmethod |
Simon Glass | 2f85941 | 2021-03-18 20:25:04 +1300 | [diff] [blame] | 105 | def Lookup(node_path, etype, expanded): |
Simon Glass | 969616c | 2018-07-17 13:25:36 -0600 | [diff] [blame] | 106 | """Look up the entry class for a node. |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 107 | |
| 108 | Args: |
Simon Glass | 969616c | 2018-07-17 13:25:36 -0600 | [diff] [blame] | 109 | node_node: Path name of Node object containing information about |
| 110 | the entry to create (used for errors) |
| 111 | etype: Entry type to use |
Simon Glass | 2f85941 | 2021-03-18 20:25:04 +1300 | [diff] [blame] | 112 | expanded: Use the expanded version of etype |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 113 | |
| 114 | Returns: |
Simon Glass | 2f85941 | 2021-03-18 20:25:04 +1300 | [diff] [blame] | 115 | The entry class object if found, else None if not found and expanded |
| 116 | is True |
| 117 | |
| 118 | Raise: |
| 119 | ValueError if expanded is False and the class is not found |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 120 | """ |
Simon Glass | e76a3e6 | 2018-06-01 09:38:11 -0600 | [diff] [blame] | 121 | # Convert something like 'u-boot@0' to 'u_boot' since we are only |
| 122 | # interested in the type. |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 123 | module_name = etype.replace('-', '_') |
Simon Glass | 2f85941 | 2021-03-18 20:25:04 +1300 | [diff] [blame] | 124 | |
Simon Glass | e76a3e6 | 2018-06-01 09:38:11 -0600 | [diff] [blame] | 125 | if '@' in module_name: |
| 126 | module_name = module_name.split('@')[0] |
Simon Glass | 2f85941 | 2021-03-18 20:25:04 +1300 | [diff] [blame] | 127 | if expanded: |
| 128 | module_name += '_expanded' |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 129 | module = modules.get(module_name) |
| 130 | |
Simon Glass | 691198c | 2018-06-01 09:38:15 -0600 | [diff] [blame] | 131 | # Also allow entry-type modules to be brought in from the etype directory. |
| 132 | |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 133 | # Import the module if we have not already done so. |
| 134 | if not module: |
| 135 | try: |
Simon Glass | c585dd4 | 2020-04-17 18:09:03 -0600 | [diff] [blame] | 136 | module = importlib.import_module('binman.etype.' + module_name) |
Simon Glass | 969616c | 2018-07-17 13:25:36 -0600 | [diff] [blame] | 137 | except ImportError as e: |
Simon Glass | 2f85941 | 2021-03-18 20:25:04 +1300 | [diff] [blame] | 138 | if expanded: |
| 139 | return None |
Simon Glass | 969616c | 2018-07-17 13:25:36 -0600 | [diff] [blame] | 140 | raise ValueError("Unknown entry type '%s' in node '%s' (expected etype/%s.py, error '%s'" % |
| 141 | (etype, node_path, module_name, e)) |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 142 | modules[module_name] = module |
| 143 | |
Simon Glass | 969616c | 2018-07-17 13:25:36 -0600 | [diff] [blame] | 144 | # Look up the expected class name |
| 145 | return getattr(module, 'Entry_%s' % module_name) |
| 146 | |
| 147 | @staticmethod |
Simon Glass | 2f85941 | 2021-03-18 20:25:04 +1300 | [diff] [blame] | 148 | def Create(section, node, etype=None, expanded=False): |
Simon Glass | 969616c | 2018-07-17 13:25:36 -0600 | [diff] [blame] | 149 | """Create a new entry for a node. |
| 150 | |
| 151 | Args: |
Simon Glass | 2f85941 | 2021-03-18 20:25:04 +1300 | [diff] [blame] | 152 | section: Section object containing this node |
| 153 | node: Node object containing information about the entry to |
| 154 | create |
| 155 | etype: Entry type to use, or None to work it out (used for tests) |
| 156 | expanded: True to use expanded versions of entries, where available |
Simon Glass | 969616c | 2018-07-17 13:25:36 -0600 | [diff] [blame] | 157 | |
| 158 | Returns: |
| 159 | A new Entry object of the correct type (a subclass of Entry) |
| 160 | """ |
| 161 | if not etype: |
| 162 | etype = fdt_util.GetString(node, 'type', node.name) |
Simon Glass | 2f85941 | 2021-03-18 20:25:04 +1300 | [diff] [blame] | 163 | obj = Entry.Lookup(node.path, etype, expanded) |
| 164 | if obj and expanded: |
| 165 | # Check whether to use the expanded entry |
| 166 | new_etype = etype + '-expanded' |
Simon Glass | 7098b7f | 2021-03-21 18:24:30 +1300 | [diff] [blame^] | 167 | can_expand = not fdt_util.GetBool(node, 'no-expanded') |
| 168 | if can_expand and obj.UseExpanded(node, etype, new_etype): |
Simon Glass | 2f85941 | 2021-03-18 20:25:04 +1300 | [diff] [blame] | 169 | etype = new_etype |
| 170 | else: |
| 171 | obj = None |
| 172 | if not obj: |
| 173 | obj = Entry.Lookup(node.path, etype, False) |
Simon Glass | 969616c | 2018-07-17 13:25:36 -0600 | [diff] [blame] | 174 | |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 175 | # Call its constructor to get the object we want. |
Simon Glass | ad5a771 | 2018-06-01 09:38:14 -0600 | [diff] [blame] | 176 | return obj(section, etype, node) |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 177 | |
| 178 | def ReadNode(self): |
| 179 | """Read entry information from the node |
| 180 | |
Simon Glass | 2c360cf | 2019-07-20 12:23:45 -0600 | [diff] [blame] | 181 | This must be called as the first thing after the Entry is created. |
| 182 | |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 183 | This reads all the fields we recognise from the node, ready for use. |
| 184 | """ |
Simon Glass | 24b9744 | 2018-07-17 13:25:51 -0600 | [diff] [blame] | 185 | if 'pos' in self._node.props: |
| 186 | self.Raise("Please use 'offset' instead of 'pos'") |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 187 | self.offset = fdt_util.GetInt(self._node, 'offset') |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 188 | self.size = fdt_util.GetInt(self._node, 'size') |
Simon Glass | fb30e29 | 2019-07-20 12:23:51 -0600 | [diff] [blame] | 189 | self.orig_offset = fdt_util.GetInt(self._node, 'orig-offset') |
| 190 | self.orig_size = fdt_util.GetInt(self._node, 'orig-size') |
| 191 | if self.GetImage().copy_to_orig: |
| 192 | self.orig_offset = self.offset |
| 193 | self.orig_size = self.size |
Simon Glass | e61b6f6 | 2019-07-08 14:25:37 -0600 | [diff] [blame] | 194 | |
Simon Glass | b8424fa | 2019-07-08 14:25:46 -0600 | [diff] [blame] | 195 | # These should not be set in input files, but are set in an FDT map, |
| 196 | # which is also read by this code. |
| 197 | self.image_pos = fdt_util.GetInt(self._node, 'image-pos') |
| 198 | self.uncomp_size = fdt_util.GetInt(self._node, 'uncomp-size') |
| 199 | |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 200 | self.align = fdt_util.GetInt(self._node, 'align') |
| 201 | if tools.NotPowerOfTwo(self.align): |
| 202 | raise ValueError("Node '%s': Alignment %s must be a power of two" % |
| 203 | (self._node.path, self.align)) |
| 204 | self.pad_before = fdt_util.GetInt(self._node, 'pad-before', 0) |
| 205 | self.pad_after = fdt_util.GetInt(self._node, 'pad-after', 0) |
| 206 | self.align_size = fdt_util.GetInt(self._node, 'align-size') |
| 207 | if tools.NotPowerOfTwo(self.align_size): |
Simon Glass | 39dd215 | 2019-07-08 14:25:47 -0600 | [diff] [blame] | 208 | self.Raise("Alignment size %s must be a power of two" % |
| 209 | self.align_size) |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 210 | self.align_end = fdt_util.GetInt(self._node, 'align-end') |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 211 | self.offset_unset = fdt_util.GetBool(self._node, 'offset-unset') |
Simon Glass | fa79a81 | 2018-09-14 04:57:29 -0600 | [diff] [blame] | 212 | self.expand_size = fdt_util.GetBool(self._node, 'expand-size') |
Simon Glass | a820af7 | 2020-09-06 10:39:09 -0600 | [diff] [blame] | 213 | self.missing_msg = fdt_util.GetString(self._node, 'missing-msg') |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 214 | |
Simon Glass | a1301a2 | 2020-10-26 17:40:06 -0600 | [diff] [blame] | 215 | # This is only supported by blobs and sections at present |
| 216 | self.compress = fdt_util.GetString(self._node, 'compress', 'none') |
| 217 | |
Simon Glass | 3732ec3 | 2018-09-14 04:57:18 -0600 | [diff] [blame] | 218 | def GetDefaultFilename(self): |
| 219 | return None |
| 220 | |
Simon Glass | 267112e | 2019-07-20 12:23:28 -0600 | [diff] [blame] | 221 | def GetFdts(self): |
| 222 | """Get the device trees used by this entry |
Simon Glass | 0c9d5b5 | 2018-09-14 04:57:22 -0600 | [diff] [blame] | 223 | |
| 224 | Returns: |
Simon Glass | 267112e | 2019-07-20 12:23:28 -0600 | [diff] [blame] | 225 | Empty dict, if this entry is not a .dtb, otherwise: |
| 226 | Dict: |
| 227 | key: Filename from this entry (without the path) |
Simon Glass | 684a4f1 | 2019-07-20 12:23:31 -0600 | [diff] [blame] | 228 | value: Tuple: |
Simon Glass | 8235dd8 | 2021-03-18 20:25:02 +1300 | [diff] [blame] | 229 | Entry object for this dtb |
Simon Glass | 684a4f1 | 2019-07-20 12:23:31 -0600 | [diff] [blame] | 230 | Filename of file containing this dtb |
Simon Glass | 0c9d5b5 | 2018-09-14 04:57:22 -0600 | [diff] [blame] | 231 | """ |
Simon Glass | 267112e | 2019-07-20 12:23:28 -0600 | [diff] [blame] | 232 | return {} |
Simon Glass | 0c9d5b5 | 2018-09-14 04:57:22 -0600 | [diff] [blame] | 233 | |
Simon Glass | ac6328c | 2018-09-14 04:57:28 -0600 | [diff] [blame] | 234 | def ExpandEntries(self): |
Simon Glass | fcb2a7c | 2021-03-18 20:24:52 +1300 | [diff] [blame] | 235 | """Expand out entries which produce other entries |
| 236 | |
| 237 | Some entries generate subnodes automatically, from which sub-entries |
| 238 | are then created. This method allows those to be added to the binman |
| 239 | definition for the current image. An entry which implements this method |
| 240 | should call state.AddSubnode() to add a subnode and can add properties |
| 241 | with state.AddString(), etc. |
| 242 | |
| 243 | An example is 'files', which produces a section containing a list of |
| 244 | files. |
| 245 | """ |
Simon Glass | ac6328c | 2018-09-14 04:57:28 -0600 | [diff] [blame] | 246 | pass |
| 247 | |
Simon Glass | acd6c6e | 2020-10-26 17:40:17 -0600 | [diff] [blame] | 248 | def AddMissingProperties(self, have_image_pos): |
| 249 | """Add new properties to the device tree as needed for this entry |
| 250 | |
| 251 | Args: |
| 252 | have_image_pos: True if this entry has an image position. This can |
| 253 | be False if its parent section is compressed, since compression |
| 254 | groups all entries together into a compressed block of data, |
| 255 | obscuring the start of each individual child entry |
| 256 | """ |
| 257 | for prop in ['offset', 'size']: |
Simon Glass | e22f8fa | 2018-07-06 10:27:41 -0600 | [diff] [blame] | 258 | if not prop in self._node.props: |
Simon Glass | c8135dc | 2018-09-14 04:57:21 -0600 | [diff] [blame] | 259 | state.AddZeroProp(self._node, prop) |
Simon Glass | acd6c6e | 2020-10-26 17:40:17 -0600 | [diff] [blame] | 260 | if have_image_pos and 'image-pos' not in self._node.props: |
| 261 | state.AddZeroProp(self._node, 'image-pos') |
Simon Glass | fb30e29 | 2019-07-20 12:23:51 -0600 | [diff] [blame] | 262 | if self.GetImage().allow_repack: |
| 263 | if self.orig_offset is not None: |
| 264 | state.AddZeroProp(self._node, 'orig-offset', True) |
| 265 | if self.orig_size is not None: |
| 266 | state.AddZeroProp(self._node, 'orig-size', True) |
| 267 | |
Simon Glass | aa2fcf9 | 2019-07-08 14:25:30 -0600 | [diff] [blame] | 268 | if self.compress != 'none': |
| 269 | state.AddZeroProp(self._node, 'uncomp-size') |
Simon Glass | ae7cf03 | 2018-09-14 04:57:31 -0600 | [diff] [blame] | 270 | err = state.CheckAddHashProp(self._node) |
| 271 | if err: |
| 272 | self.Raise(err) |
Simon Glass | e22f8fa | 2018-07-06 10:27:41 -0600 | [diff] [blame] | 273 | |
| 274 | def SetCalculatedProperties(self): |
| 275 | """Set the value of device-tree properties calculated by binman""" |
Simon Glass | c8135dc | 2018-09-14 04:57:21 -0600 | [diff] [blame] | 276 | state.SetInt(self._node, 'offset', self.offset) |
| 277 | state.SetInt(self._node, 'size', self.size) |
Simon Glass | 39dd215 | 2019-07-08 14:25:47 -0600 | [diff] [blame] | 278 | base = self.section.GetRootSkipAtStart() if self.section else 0 |
Simon Glass | acd6c6e | 2020-10-26 17:40:17 -0600 | [diff] [blame] | 279 | if self.image_pos is not None: |
Simon Glass | eb943b1 | 2020-11-02 12:55:44 -0700 | [diff] [blame] | 280 | state.SetInt(self._node, 'image-pos', self.image_pos - base) |
Simon Glass | fb30e29 | 2019-07-20 12:23:51 -0600 | [diff] [blame] | 281 | if self.GetImage().allow_repack: |
| 282 | if self.orig_offset is not None: |
| 283 | state.SetInt(self._node, 'orig-offset', self.orig_offset, True) |
| 284 | if self.orig_size is not None: |
| 285 | state.SetInt(self._node, 'orig-size', self.orig_size, True) |
Simon Glass | aa2fcf9 | 2019-07-08 14:25:30 -0600 | [diff] [blame] | 286 | if self.uncomp_size is not None: |
| 287 | state.SetInt(self._node, 'uncomp-size', self.uncomp_size) |
Simon Glass | ae7cf03 | 2018-09-14 04:57:31 -0600 | [diff] [blame] | 288 | state.CheckSetHashValue(self._node, self.GetData) |
Simon Glass | e22f8fa | 2018-07-06 10:27:41 -0600 | [diff] [blame] | 289 | |
Simon Glass | 9230773 | 2018-07-06 10:27:40 -0600 | [diff] [blame] | 290 | def ProcessFdt(self, fdt): |
Simon Glass | e219aa4 | 2018-09-14 04:57:24 -0600 | [diff] [blame] | 291 | """Allow entries to adjust the device tree |
| 292 | |
| 293 | Some entries need to adjust the device tree for their purposes. This |
| 294 | may involve adding or deleting properties. |
| 295 | |
| 296 | Returns: |
| 297 | True if processing is complete |
| 298 | False if processing could not be completed due to a dependency. |
| 299 | This will cause the entry to be retried after others have been |
| 300 | called |
| 301 | """ |
Simon Glass | 9230773 | 2018-07-06 10:27:40 -0600 | [diff] [blame] | 302 | return True |
| 303 | |
Simon Glass | 3b78d53 | 2018-06-01 09:38:21 -0600 | [diff] [blame] | 304 | def SetPrefix(self, prefix): |
| 305 | """Set the name prefix for a node |
| 306 | |
| 307 | Args: |
| 308 | prefix: Prefix to set, or '' to not use a prefix |
| 309 | """ |
| 310 | if prefix: |
| 311 | self.name = prefix + self.name |
| 312 | |
Simon Glass | 2e1169f | 2018-07-06 10:27:19 -0600 | [diff] [blame] | 313 | def SetContents(self, data): |
| 314 | """Set the contents of an entry |
| 315 | |
| 316 | This sets both the data and content_size properties |
| 317 | |
| 318 | Args: |
Simon Glass | d17dfea | 2019-07-08 14:25:33 -0600 | [diff] [blame] | 319 | data: Data to set to the contents (bytes) |
Simon Glass | 2e1169f | 2018-07-06 10:27:19 -0600 | [diff] [blame] | 320 | """ |
| 321 | self.data = data |
| 322 | self.contents_size = len(self.data) |
| 323 | |
| 324 | def ProcessContentsUpdate(self, data): |
Simon Glass | d17dfea | 2019-07-08 14:25:33 -0600 | [diff] [blame] | 325 | """Update the contents of an entry, after the size is fixed |
Simon Glass | 2e1169f | 2018-07-06 10:27:19 -0600 | [diff] [blame] | 326 | |
Simon Glass | ec84985 | 2019-07-08 14:25:35 -0600 | [diff] [blame] | 327 | This checks that the new data is the same size as the old. If the size |
| 328 | has changed, this triggers a re-run of the packing algorithm. |
Simon Glass | 2e1169f | 2018-07-06 10:27:19 -0600 | [diff] [blame] | 329 | |
| 330 | Args: |
Simon Glass | d17dfea | 2019-07-08 14:25:33 -0600 | [diff] [blame] | 331 | data: Data to set to the contents (bytes) |
Simon Glass | 2e1169f | 2018-07-06 10:27:19 -0600 | [diff] [blame] | 332 | |
| 333 | Raises: |
| 334 | ValueError if the new data size is not the same as the old |
| 335 | """ |
Simon Glass | ec84985 | 2019-07-08 14:25:35 -0600 | [diff] [blame] | 336 | size_ok = True |
Simon Glass | e61b6f6 | 2019-07-08 14:25:37 -0600 | [diff] [blame] | 337 | new_size = len(data) |
Simon Glass | 9d8ee32 | 2019-07-20 12:23:58 -0600 | [diff] [blame] | 338 | if state.AllowEntryExpansion() and new_size > self.contents_size: |
| 339 | # self.data will indicate the new size needed |
| 340 | size_ok = False |
| 341 | elif state.AllowEntryContraction() and new_size < self.contents_size: |
| 342 | size_ok = False |
| 343 | |
| 344 | # If not allowed to change, try to deal with it or give up |
| 345 | if size_ok: |
Simon Glass | e61b6f6 | 2019-07-08 14:25:37 -0600 | [diff] [blame] | 346 | if new_size > self.contents_size: |
Simon Glass | 9d8ee32 | 2019-07-20 12:23:58 -0600 | [diff] [blame] | 347 | self.Raise('Cannot update entry size from %d to %d' % |
| 348 | (self.contents_size, new_size)) |
| 349 | |
| 350 | # Don't let the data shrink. Pad it if necessary |
| 351 | if size_ok and new_size < self.contents_size: |
| 352 | data += tools.GetBytes(0, self.contents_size - new_size) |
| 353 | |
| 354 | if not size_ok: |
| 355 | tout.Debug("Entry '%s' size change from %s to %s" % ( |
| 356 | self._node.path, ToHex(self.contents_size), |
| 357 | ToHex(new_size))) |
Simon Glass | 2e1169f | 2018-07-06 10:27:19 -0600 | [diff] [blame] | 358 | self.SetContents(data) |
Simon Glass | ec84985 | 2019-07-08 14:25:35 -0600 | [diff] [blame] | 359 | return size_ok |
Simon Glass | 2e1169f | 2018-07-06 10:27:19 -0600 | [diff] [blame] | 360 | |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 361 | def ObtainContents(self): |
| 362 | """Figure out the contents of an entry. |
| 363 | |
| 364 | Returns: |
| 365 | True if the contents were found, False if another call is needed |
| 366 | after the other entries are processed. |
| 367 | """ |
| 368 | # No contents by default: subclasses can implement this |
| 369 | return True |
| 370 | |
Simon Glass | e61b6f6 | 2019-07-08 14:25:37 -0600 | [diff] [blame] | 371 | def ResetForPack(self): |
| 372 | """Reset offset/size fields so that packing can be done again""" |
Simon Glass | b6dff4c | 2019-07-20 12:23:36 -0600 | [diff] [blame] | 373 | self.Detail('ResetForPack: offset %s->%s, size %s->%s' % |
| 374 | (ToHex(self.offset), ToHex(self.orig_offset), |
| 375 | ToHex(self.size), ToHex(self.orig_size))) |
Simon Glass | 1fdb487 | 2019-10-31 07:43:02 -0600 | [diff] [blame] | 376 | self.pre_reset_size = self.size |
Simon Glass | e61b6f6 | 2019-07-08 14:25:37 -0600 | [diff] [blame] | 377 | self.offset = self.orig_offset |
| 378 | self.size = self.orig_size |
| 379 | |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 380 | def Pack(self, offset): |
Simon Glass | ad5a771 | 2018-06-01 09:38:14 -0600 | [diff] [blame] | 381 | """Figure out how to pack the entry into the section |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 382 | |
| 383 | Most of the time the entries are not fully specified. There may be |
| 384 | an alignment but no size. In that case we take the size from the |
| 385 | contents of the entry. |
| 386 | |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 387 | If an entry has no hard-coded offset, it will be placed at @offset. |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 388 | |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 389 | Once this function is complete, both the offset and size of the |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 390 | entry will be know. |
| 391 | |
| 392 | Args: |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 393 | Current section offset pointer |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 394 | |
| 395 | Returns: |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 396 | New section offset pointer (after this entry) |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 397 | """ |
Simon Glass | b6dff4c | 2019-07-20 12:23:36 -0600 | [diff] [blame] | 398 | self.Detail('Packing: offset=%s, size=%s, content_size=%x' % |
| 399 | (ToHex(self.offset), ToHex(self.size), |
| 400 | self.contents_size)) |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 401 | if self.offset is None: |
| 402 | if self.offset_unset: |
| 403 | self.Raise('No offset set with offset-unset: should another ' |
| 404 | 'entry provide this correct offset?') |
| 405 | self.offset = tools.Align(offset, self.align) |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 406 | needed = self.pad_before + self.contents_size + self.pad_after |
| 407 | needed = tools.Align(needed, self.align_size) |
| 408 | size = self.size |
| 409 | if not size: |
| 410 | size = needed |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 411 | new_offset = self.offset + size |
| 412 | aligned_offset = tools.Align(new_offset, self.align_end) |
| 413 | if aligned_offset != new_offset: |
| 414 | size = aligned_offset - self.offset |
| 415 | new_offset = aligned_offset |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 416 | |
| 417 | if not self.size: |
| 418 | self.size = size |
| 419 | |
| 420 | if self.size < needed: |
| 421 | self.Raise("Entry contents size is %#x (%d) but entry size is " |
| 422 | "%#x (%d)" % (needed, needed, self.size, self.size)) |
| 423 | # Check that the alignment is correct. It could be wrong if the |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 424 | # and offset or size values were provided (i.e. not calculated), but |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 425 | # conflict with the provided alignment values |
| 426 | if self.size != tools.Align(self.size, self.align_size): |
| 427 | self.Raise("Size %#x (%d) does not match align-size %#x (%d)" % |
| 428 | (self.size, self.size, self.align_size, self.align_size)) |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 429 | if self.offset != tools.Align(self.offset, self.align): |
| 430 | self.Raise("Offset %#x (%d) does not match align %#x (%d)" % |
| 431 | (self.offset, self.offset, self.align, self.align)) |
Simon Glass | b6dff4c | 2019-07-20 12:23:36 -0600 | [diff] [blame] | 432 | self.Detail(' - packed: offset=%#x, size=%#x, content_size=%#x, next_offset=%x' % |
| 433 | (self.offset, self.size, self.contents_size, new_offset)) |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 434 | |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 435 | return new_offset |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 436 | |
| 437 | def Raise(self, msg): |
| 438 | """Convenience function to raise an error referencing a node""" |
| 439 | raise ValueError("Node '%s': %s" % (self._node.path, msg)) |
| 440 | |
Simon Glass | b6dff4c | 2019-07-20 12:23:36 -0600 | [diff] [blame] | 441 | def Detail(self, msg): |
| 442 | """Convenience function to log detail referencing a node""" |
| 443 | tag = "Node '%s'" % self._node.path |
| 444 | tout.Detail('%30s: %s' % (tag, msg)) |
| 445 | |
Simon Glass | 91710b3 | 2018-07-17 13:25:32 -0600 | [diff] [blame] | 446 | def GetEntryArgsOrProps(self, props, required=False): |
| 447 | """Return the values of a set of properties |
| 448 | |
| 449 | Args: |
| 450 | props: List of EntryArg objects |
| 451 | |
| 452 | Raises: |
| 453 | ValueError if a property is not found |
| 454 | """ |
| 455 | values = [] |
| 456 | missing = [] |
| 457 | for prop in props: |
| 458 | python_prop = prop.name.replace('-', '_') |
| 459 | if hasattr(self, python_prop): |
| 460 | value = getattr(self, python_prop) |
| 461 | else: |
| 462 | value = None |
| 463 | if value is None: |
| 464 | value = self.GetArg(prop.name, prop.datatype) |
| 465 | if value is None and required: |
| 466 | missing.append(prop.name) |
| 467 | values.append(value) |
| 468 | if missing: |
Simon Glass | 3fb2540 | 2021-01-06 21:35:16 -0700 | [diff] [blame] | 469 | self.GetImage().MissingArgs(self, missing) |
Simon Glass | 91710b3 | 2018-07-17 13:25:32 -0600 | [diff] [blame] | 470 | return values |
| 471 | |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 472 | def GetPath(self): |
| 473 | """Get the path of a node |
| 474 | |
| 475 | Returns: |
| 476 | Full path of the node for this entry |
| 477 | """ |
| 478 | return self._node.path |
| 479 | |
| 480 | def GetData(self): |
Simon Glass | 72eeff1 | 2020-10-26 17:40:16 -0600 | [diff] [blame] | 481 | """Get the contents of an entry |
| 482 | |
| 483 | Returns: |
| 484 | bytes content of the entry, excluding any padding. If the entry is |
| 485 | compressed, the compressed data is returned |
| 486 | """ |
Simon Glass | b6dff4c | 2019-07-20 12:23:36 -0600 | [diff] [blame] | 487 | self.Detail('GetData: size %s' % ToHexSize(self.data)) |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 488 | return self.data |
| 489 | |
Simon Glass | e17220f | 2020-11-02 12:55:43 -0700 | [diff] [blame] | 490 | def GetPaddedData(self, data=None): |
| 491 | """Get the data for an entry including any padding |
| 492 | |
| 493 | Gets the entry data and uses its section's pad-byte value to add padding |
| 494 | before and after as defined by the pad-before and pad-after properties. |
| 495 | |
| 496 | This does not consider alignment. |
| 497 | |
| 498 | Returns: |
| 499 | Contents of the entry along with any pad bytes before and |
| 500 | after it (bytes) |
| 501 | """ |
| 502 | if data is None: |
| 503 | data = self.GetData() |
| 504 | return self.section.GetPaddedDataForEntry(self, data) |
| 505 | |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 506 | def GetOffsets(self): |
Simon Glass | 224bc66 | 2019-07-08 13:18:30 -0600 | [diff] [blame] | 507 | """Get the offsets for siblings |
| 508 | |
| 509 | Some entry types can contain information about the position or size of |
| 510 | other entries. An example of this is the Intel Flash Descriptor, which |
| 511 | knows where the Intel Management Engine section should go. |
| 512 | |
| 513 | If this entry knows about the position of other entries, it can specify |
| 514 | this by returning values here |
| 515 | |
| 516 | Returns: |
| 517 | Dict: |
| 518 | key: Entry type |
| 519 | value: List containing position and size of the given entry |
Simon Glass | ed365eb | 2019-07-08 13:18:39 -0600 | [diff] [blame] | 520 | type. Either can be None if not known |
Simon Glass | 224bc66 | 2019-07-08 13:18:30 -0600 | [diff] [blame] | 521 | """ |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 522 | return {} |
| 523 | |
Simon Glass | ed365eb | 2019-07-08 13:18:39 -0600 | [diff] [blame] | 524 | def SetOffsetSize(self, offset, size): |
| 525 | """Set the offset and/or size of an entry |
| 526 | |
| 527 | Args: |
| 528 | offset: New offset, or None to leave alone |
| 529 | size: New size, or None to leave alone |
| 530 | """ |
| 531 | if offset is not None: |
| 532 | self.offset = offset |
| 533 | if size is not None: |
| 534 | self.size = size |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 535 | |
Simon Glass | 9dcc861 | 2018-08-01 15:22:42 -0600 | [diff] [blame] | 536 | def SetImagePos(self, image_pos): |
| 537 | """Set the position in the image |
| 538 | |
| 539 | Args: |
| 540 | image_pos: Position of this entry in the image |
| 541 | """ |
| 542 | self.image_pos = image_pos + self.offset |
| 543 | |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 544 | def ProcessContents(self): |
Simon Glass | ec84985 | 2019-07-08 14:25:35 -0600 | [diff] [blame] | 545 | """Do any post-packing updates of entry contents |
| 546 | |
| 547 | This function should call ProcessContentsUpdate() to update the entry |
| 548 | contents, if necessary, returning its return value here. |
| 549 | |
| 550 | Args: |
| 551 | data: Data to set to the contents (bytes) |
| 552 | |
| 553 | Returns: |
| 554 | True if the new data size is OK, False if expansion is needed |
| 555 | |
| 556 | Raises: |
| 557 | ValueError if the new data size is not the same as the old and |
| 558 | state.AllowEntryExpansion() is False |
| 559 | """ |
| 560 | return True |
Simon Glass | 4ca8e04 | 2017-11-13 18:55:01 -0700 | [diff] [blame] | 561 | |
Simon Glass | 8a6f56e | 2018-06-01 09:38:13 -0600 | [diff] [blame] | 562 | def WriteSymbols(self, section): |
Simon Glass | 4ca8e04 | 2017-11-13 18:55:01 -0700 | [diff] [blame] | 563 | """Write symbol values into binary files for access at run time |
| 564 | |
| 565 | Args: |
Simon Glass | 8a6f56e | 2018-06-01 09:38:13 -0600 | [diff] [blame] | 566 | section: Section containing the entry |
Simon Glass | 4ca8e04 | 2017-11-13 18:55:01 -0700 | [diff] [blame] | 567 | """ |
| 568 | pass |
Simon Glass | a91e115 | 2018-06-01 09:38:16 -0600 | [diff] [blame] | 569 | |
Simon Glass | 55f6807 | 2020-10-26 17:40:18 -0600 | [diff] [blame] | 570 | def CheckEntries(self): |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 571 | """Check that the entry offsets are correct |
Simon Glass | a91e115 | 2018-06-01 09:38:16 -0600 | [diff] [blame] | 572 | |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 573 | This is used for entries which have extra offset requirements (other |
Simon Glass | a91e115 | 2018-06-01 09:38:16 -0600 | [diff] [blame] | 574 | than having to be fully inside their section). Sub-classes can implement |
| 575 | this function and raise if there is a problem. |
| 576 | """ |
| 577 | pass |
Simon Glass | 3073266 | 2018-06-01 09:38:20 -0600 | [diff] [blame] | 578 | |
Simon Glass | 3a9a2b8 | 2018-07-17 13:25:28 -0600 | [diff] [blame] | 579 | @staticmethod |
Simon Glass | cd817d5 | 2018-09-14 04:57:36 -0600 | [diff] [blame] | 580 | def GetStr(value): |
| 581 | if value is None: |
| 582 | return '<none> ' |
| 583 | return '%08x' % value |
| 584 | |
| 585 | @staticmethod |
Simon Glass | 7eca792 | 2018-07-17 13:25:49 -0600 | [diff] [blame] | 586 | def WriteMapLine(fd, indent, name, offset, size, image_pos): |
Simon Glass | cd817d5 | 2018-09-14 04:57:36 -0600 | [diff] [blame] | 587 | print('%s %s%s %s %s' % (Entry.GetStr(image_pos), ' ' * indent, |
| 588 | Entry.GetStr(offset), Entry.GetStr(size), |
| 589 | name), file=fd) |
Simon Glass | 3a9a2b8 | 2018-07-17 13:25:28 -0600 | [diff] [blame] | 590 | |
Simon Glass | 3073266 | 2018-06-01 09:38:20 -0600 | [diff] [blame] | 591 | def WriteMap(self, fd, indent): |
| 592 | """Write a map of the entry to a .map file |
| 593 | |
| 594 | Args: |
| 595 | fd: File to write the map to |
| 596 | indent: Curent indent level of map (0=none, 1=one level, etc.) |
| 597 | """ |
Simon Glass | 7eca792 | 2018-07-17 13:25:49 -0600 | [diff] [blame] | 598 | self.WriteMapLine(fd, indent, self.name, self.offset, self.size, |
| 599 | self.image_pos) |
Simon Glass | 91710b3 | 2018-07-17 13:25:32 -0600 | [diff] [blame] | 600 | |
Simon Glass | 704784b | 2018-07-17 13:25:38 -0600 | [diff] [blame] | 601 | def GetEntries(self): |
| 602 | """Return a list of entries contained by this entry |
| 603 | |
| 604 | Returns: |
| 605 | List of entries, or None if none. A normal entry has no entries |
| 606 | within it so will return None |
| 607 | """ |
| 608 | return None |
| 609 | |
Simon Glass | 91710b3 | 2018-07-17 13:25:32 -0600 | [diff] [blame] | 610 | def GetArg(self, name, datatype=str): |
| 611 | """Get the value of an entry argument or device-tree-node property |
| 612 | |
| 613 | Some node properties can be provided as arguments to binman. First check |
| 614 | the entry arguments, and fall back to the device tree if not found |
| 615 | |
| 616 | Args: |
| 617 | name: Argument name |
| 618 | datatype: Data type (str or int) |
| 619 | |
| 620 | Returns: |
| 621 | Value of argument as a string or int, or None if no value |
| 622 | |
| 623 | Raises: |
| 624 | ValueError if the argument cannot be converted to in |
| 625 | """ |
Simon Glass | 29aa736 | 2018-09-14 04:57:19 -0600 | [diff] [blame] | 626 | value = state.GetEntryArg(name) |
Simon Glass | 91710b3 | 2018-07-17 13:25:32 -0600 | [diff] [blame] | 627 | if value is not None: |
| 628 | if datatype == int: |
| 629 | try: |
| 630 | value = int(value) |
| 631 | except ValueError: |
| 632 | self.Raise("Cannot convert entry arg '%s' (value '%s') to integer" % |
| 633 | (name, value)) |
| 634 | elif datatype == str: |
| 635 | pass |
| 636 | else: |
| 637 | raise ValueError("GetArg() internal error: Unknown data type '%s'" % |
| 638 | datatype) |
| 639 | else: |
| 640 | value = fdt_util.GetDatatype(self._node, name, datatype) |
| 641 | return value |
Simon Glass | 969616c | 2018-07-17 13:25:36 -0600 | [diff] [blame] | 642 | |
| 643 | @staticmethod |
| 644 | def WriteDocs(modules, test_missing=None): |
| 645 | """Write out documentation about the various entry types to stdout |
| 646 | |
| 647 | Args: |
| 648 | modules: List of modules to include |
| 649 | test_missing: Used for testing. This is a module to report |
| 650 | as missing |
| 651 | """ |
| 652 | print('''Binman Entry Documentation |
| 653 | =========================== |
| 654 | |
| 655 | This file describes the entry types supported by binman. These entry types can |
| 656 | be placed in an image one by one to build up a final firmware image. It is |
| 657 | fairly easy to create new entry types. Just add a new file to the 'etype' |
| 658 | directory. You can use the existing entries as examples. |
| 659 | |
| 660 | Note that some entries are subclasses of others, using and extending their |
| 661 | features to produce new behaviours. |
| 662 | |
| 663 | |
| 664 | ''') |
| 665 | modules = sorted(modules) |
| 666 | |
| 667 | # Don't show the test entry |
| 668 | if '_testing' in modules: |
| 669 | modules.remove('_testing') |
| 670 | missing = [] |
| 671 | for name in modules: |
Simon Glass | 2f85941 | 2021-03-18 20:25:04 +1300 | [diff] [blame] | 672 | module = Entry.Lookup('WriteDocs', name, False) |
Simon Glass | 969616c | 2018-07-17 13:25:36 -0600 | [diff] [blame] | 673 | docs = getattr(module, '__doc__') |
| 674 | if test_missing == name: |
| 675 | docs = None |
| 676 | if docs: |
| 677 | lines = docs.splitlines() |
| 678 | first_line = lines[0] |
| 679 | rest = [line[4:] for line in lines[1:]] |
| 680 | hdr = 'Entry: %s: %s' % (name.replace('_', '-'), first_line) |
| 681 | print(hdr) |
| 682 | print('-' * len(hdr)) |
| 683 | print('\n'.join(rest)) |
| 684 | print() |
| 685 | print() |
| 686 | else: |
| 687 | missing.append(name) |
| 688 | |
| 689 | if missing: |
| 690 | raise ValueError('Documentation is missing for modules: %s' % |
| 691 | ', '.join(missing)) |
Simon Glass | 639505b | 2018-09-14 04:57:11 -0600 | [diff] [blame] | 692 | |
| 693 | def GetUniqueName(self): |
| 694 | """Get a unique name for a node |
| 695 | |
| 696 | Returns: |
| 697 | String containing a unique name for a node, consisting of the name |
| 698 | of all ancestors (starting from within the 'binman' node) separated |
| 699 | by a dot ('.'). This can be useful for generating unique filesnames |
| 700 | in the output directory. |
| 701 | """ |
| 702 | name = self.name |
| 703 | node = self._node |
| 704 | while node.parent: |
| 705 | node = node.parent |
| 706 | if node.name == 'binman': |
| 707 | break |
| 708 | name = '%s.%s' % (node.name, name) |
| 709 | return name |
Simon Glass | fa79a81 | 2018-09-14 04:57:29 -0600 | [diff] [blame] | 710 | |
| 711 | def ExpandToLimit(self, limit): |
| 712 | """Expand an entry so that it ends at the given offset limit""" |
| 713 | if self.offset + self.size < limit: |
| 714 | self.size = limit - self.offset |
| 715 | # Request the contents again, since changing the size requires that |
| 716 | # the data grows. This should not fail, but check it to be sure. |
| 717 | if not self.ObtainContents(): |
| 718 | self.Raise('Cannot obtain contents when expanding entry') |
Simon Glass | c4056b8 | 2019-07-08 13:18:38 -0600 | [diff] [blame] | 719 | |
| 720 | def HasSibling(self, name): |
| 721 | """Check if there is a sibling of a given name |
| 722 | |
| 723 | Returns: |
| 724 | True if there is an entry with this name in the the same section, |
| 725 | else False |
| 726 | """ |
| 727 | return name in self.section.GetEntries() |
Simon Glass | cec34ba | 2019-07-08 14:25:28 -0600 | [diff] [blame] | 728 | |
| 729 | def GetSiblingImagePos(self, name): |
| 730 | """Return the image position of the given sibling |
| 731 | |
| 732 | Returns: |
| 733 | Image position of sibling, or None if the sibling has no position, |
| 734 | or False if there is no such sibling |
| 735 | """ |
| 736 | if not self.HasSibling(name): |
| 737 | return False |
| 738 | return self.section.GetEntries()[name].image_pos |
Simon Glass | 6b156f8 | 2019-07-08 14:25:43 -0600 | [diff] [blame] | 739 | |
| 740 | @staticmethod |
| 741 | def AddEntryInfo(entries, indent, name, etype, size, image_pos, |
| 742 | uncomp_size, offset, entry): |
| 743 | """Add a new entry to the entries list |
| 744 | |
| 745 | Args: |
| 746 | entries: List (of EntryInfo objects) to add to |
| 747 | indent: Current indent level to add to list |
| 748 | name: Entry name (string) |
| 749 | etype: Entry type (string) |
| 750 | size: Entry size in bytes (int) |
| 751 | image_pos: Position within image in bytes (int) |
| 752 | uncomp_size: Uncompressed size if the entry uses compression, else |
| 753 | None |
| 754 | offset: Entry offset within parent in bytes (int) |
| 755 | entry: Entry object |
| 756 | """ |
| 757 | entries.append(EntryInfo(indent, name, etype, size, image_pos, |
| 758 | uncomp_size, offset, entry)) |
| 759 | |
| 760 | def ListEntries(self, entries, indent): |
| 761 | """Add files in this entry to the list of entries |
| 762 | |
| 763 | This can be overridden by subclasses which need different behaviour. |
| 764 | |
| 765 | Args: |
| 766 | entries: List (of EntryInfo objects) to add to |
| 767 | indent: Current indent level to add to list |
| 768 | """ |
| 769 | self.AddEntryInfo(entries, indent, self.name, self.etype, self.size, |
| 770 | self.image_pos, self.uncomp_size, self.offset, self) |
Simon Glass | 4c613bf | 2019-07-08 14:25:50 -0600 | [diff] [blame] | 771 | |
| 772 | def ReadData(self, decomp=True): |
| 773 | """Read the data for an entry from the image |
| 774 | |
| 775 | This is used when the image has been read in and we want to extract the |
| 776 | data for a particular entry from that image. |
| 777 | |
| 778 | Args: |
| 779 | decomp: True to decompress any compressed data before returning it; |
| 780 | False to return the raw, uncompressed data |
| 781 | |
| 782 | Returns: |
| 783 | Entry data (bytes) |
| 784 | """ |
| 785 | # Use True here so that we get an uncompressed section to work from, |
| 786 | # although compressed sections are currently not supported |
Simon Glass | 4d8151f | 2019-09-25 08:56:21 -0600 | [diff] [blame] | 787 | tout.Debug("ReadChildData section '%s', entry '%s'" % |
| 788 | (self.section.GetPath(), self.GetPath())) |
Simon Glass | 0cd8ace | 2019-07-20 12:24:04 -0600 | [diff] [blame] | 789 | data = self.section.ReadChildData(self, decomp) |
| 790 | return data |
Simon Glass | af8c45c | 2019-07-20 12:23:41 -0600 | [diff] [blame] | 791 | |
Simon Glass | 23f0047 | 2019-09-25 08:56:20 -0600 | [diff] [blame] | 792 | def ReadChildData(self, child, decomp=True): |
Simon Glass | 4d8151f | 2019-09-25 08:56:21 -0600 | [diff] [blame] | 793 | """Read the data for a particular child entry |
Simon Glass | 23f0047 | 2019-09-25 08:56:20 -0600 | [diff] [blame] | 794 | |
| 795 | This reads data from the parent and extracts the piece that relates to |
| 796 | the given child. |
| 797 | |
| 798 | Args: |
Simon Glass | 4d8151f | 2019-09-25 08:56:21 -0600 | [diff] [blame] | 799 | child: Child entry to read data for (must be valid) |
Simon Glass | 23f0047 | 2019-09-25 08:56:20 -0600 | [diff] [blame] | 800 | decomp: True to decompress any compressed data before returning it; |
| 801 | False to return the raw, uncompressed data |
| 802 | |
| 803 | Returns: |
| 804 | Data for the child (bytes) |
| 805 | """ |
| 806 | pass |
| 807 | |
Simon Glass | af8c45c | 2019-07-20 12:23:41 -0600 | [diff] [blame] | 808 | def LoadData(self, decomp=True): |
| 809 | data = self.ReadData(decomp) |
Simon Glass | 072959a | 2019-07-20 12:23:50 -0600 | [diff] [blame] | 810 | self.contents_size = len(data) |
Simon Glass | af8c45c | 2019-07-20 12:23:41 -0600 | [diff] [blame] | 811 | self.ProcessContentsUpdate(data) |
| 812 | self.Detail('Loaded data size %x' % len(data)) |
Simon Glass | 990b174 | 2019-07-20 12:23:46 -0600 | [diff] [blame] | 813 | |
| 814 | def GetImage(self): |
| 815 | """Get the image containing this entry |
| 816 | |
| 817 | Returns: |
| 818 | Image object containing this entry |
| 819 | """ |
| 820 | return self.section.GetImage() |
Simon Glass | 072959a | 2019-07-20 12:23:50 -0600 | [diff] [blame] | 821 | |
| 822 | def WriteData(self, data, decomp=True): |
| 823 | """Write the data to an entry in the image |
| 824 | |
| 825 | This is used when the image has been read in and we want to replace the |
| 826 | data for a particular entry in that image. |
| 827 | |
| 828 | The image must be re-packed and written out afterwards. |
| 829 | |
| 830 | Args: |
| 831 | data: Data to replace it with |
| 832 | decomp: True to compress the data if needed, False if data is |
| 833 | already compressed so should be used as is |
| 834 | |
| 835 | Returns: |
| 836 | True if the data did not result in a resize of this entry, False if |
| 837 | the entry must be resized |
| 838 | """ |
Simon Glass | 1fdb487 | 2019-10-31 07:43:02 -0600 | [diff] [blame] | 839 | if self.size is not None: |
| 840 | self.contents_size = self.size |
| 841 | else: |
| 842 | self.contents_size = self.pre_reset_size |
Simon Glass | 072959a | 2019-07-20 12:23:50 -0600 | [diff] [blame] | 843 | ok = self.ProcessContentsUpdate(data) |
| 844 | self.Detail('WriteData: size=%x, ok=%s' % (len(data), ok)) |
Simon Glass | d34af7a | 2019-07-20 12:24:05 -0600 | [diff] [blame] | 845 | section_ok = self.section.WriteChildData(self) |
| 846 | return ok and section_ok |
| 847 | |
| 848 | def WriteChildData(self, child): |
| 849 | """Handle writing the data in a child entry |
| 850 | |
| 851 | This should be called on the child's parent section after the child's |
| 852 | data has been updated. It |
| 853 | |
| 854 | This base-class implementation does nothing, since the base Entry object |
| 855 | does not have any children. |
| 856 | |
| 857 | Args: |
| 858 | child: Child Entry that was written |
| 859 | |
| 860 | Returns: |
| 861 | True if the section could be updated successfully, False if the |
| 862 | data is such that the section could not updat |
| 863 | """ |
| 864 | return True |
Simon Glass | 1145376 | 2019-07-20 12:23:55 -0600 | [diff] [blame] | 865 | |
| 866 | def GetSiblingOrder(self): |
| 867 | """Get the relative order of an entry amoung its siblings |
| 868 | |
| 869 | Returns: |
| 870 | 'start' if this entry is first among siblings, 'end' if last, |
| 871 | otherwise None |
| 872 | """ |
| 873 | entries = list(self.section.GetEntries().values()) |
| 874 | if entries: |
| 875 | if self == entries[0]: |
| 876 | return 'start' |
| 877 | elif self == entries[-1]: |
| 878 | return 'end' |
| 879 | return 'middle' |
Simon Glass | 5d94cc6 | 2020-07-09 18:39:38 -0600 | [diff] [blame] | 880 | |
| 881 | def SetAllowMissing(self, allow_missing): |
| 882 | """Set whether a section allows missing external blobs |
| 883 | |
| 884 | Args: |
| 885 | allow_missing: True if allowed, False if not allowed |
| 886 | """ |
| 887 | # This is meaningless for anything other than sections |
| 888 | pass |
Simon Glass | a003cd3 | 2020-07-09 18:39:40 -0600 | [diff] [blame] | 889 | |
| 890 | def CheckMissing(self, missing_list): |
| 891 | """Check if any entries in this section have missing external blobs |
| 892 | |
| 893 | If there are missing blobs, the entries are added to the list |
| 894 | |
| 895 | Args: |
| 896 | missing_list: List of Entry objects to be added to |
| 897 | """ |
| 898 | if self.missing: |
| 899 | missing_list.append(self) |
Simon Glass | b8f9037 | 2020-09-01 05:13:57 -0600 | [diff] [blame] | 900 | |
| 901 | def GetAllowMissing(self): |
| 902 | """Get whether a section allows missing external blobs |
| 903 | |
| 904 | Returns: |
| 905 | True if allowed, False if not allowed |
| 906 | """ |
| 907 | return self.allow_missing |
Simon Glass | a820af7 | 2020-09-06 10:39:09 -0600 | [diff] [blame] | 908 | |
| 909 | def GetHelpTags(self): |
| 910 | """Get the tags use for missing-blob help |
| 911 | |
| 912 | Returns: |
| 913 | list of possible tags, most desirable first |
| 914 | """ |
| 915 | return list(filter(None, [self.missing_msg, self.name, self.etype])) |
Simon Glass | a1301a2 | 2020-10-26 17:40:06 -0600 | [diff] [blame] | 916 | |
| 917 | def CompressData(self, indata): |
| 918 | """Compress data according to the entry's compression method |
| 919 | |
| 920 | Args: |
| 921 | indata: Data to compress |
| 922 | |
| 923 | Returns: |
| 924 | Compressed data (first word is the compressed size) |
| 925 | """ |
Simon Glass | 789b3440 | 2020-10-26 17:40:15 -0600 | [diff] [blame] | 926 | self.uncomp_data = indata |
Simon Glass | a1301a2 | 2020-10-26 17:40:06 -0600 | [diff] [blame] | 927 | if self.compress != 'none': |
| 928 | self.uncomp_size = len(indata) |
| 929 | data = tools.Compress(indata, self.compress) |
| 930 | return data |
Simon Glass | 2f85941 | 2021-03-18 20:25:04 +1300 | [diff] [blame] | 931 | |
| 932 | @classmethod |
| 933 | def UseExpanded(cls, node, etype, new_etype): |
| 934 | """Check whether to use an expanded entry type |
| 935 | |
| 936 | This is called by Entry.Create() when it finds an expanded version of |
| 937 | an entry type (e.g. 'u-boot-expanded'). If this method returns True then |
| 938 | it will be used (e.g. in place of 'u-boot'). If it returns False, it is |
| 939 | ignored. |
| 940 | |
| 941 | Args: |
| 942 | node: Node object containing information about the entry to |
| 943 | create |
| 944 | etype: Original entry type being used |
| 945 | new_etype: New entry type proposed |
| 946 | |
| 947 | Returns: |
| 948 | True to use this entry type, False to use the original one |
| 949 | """ |
| 950 | tout.Info("Node '%s': etype '%s': %s selected" % |
| 951 | (node.path, etype, new_etype)) |
| 952 | return True |