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