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