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