blob: 0f128c4cf5e4d0bd0c4ce8f8dd8ea2bdfedb995d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Simon Glass2574ef62016-11-25 20:15:51 -07002# Copyright (c) 2016 Google, Inc
3#
Simon Glass2574ef62016-11-25 20:15:51 -07004# Base class for all entries
5#
6
Simon Glass91710b32018-07-17 13:25:32 -06007from collections import namedtuple
Simon Glass7ccca832019-10-31 07:42:59 -06008import importlib
Simon Glass691198c2018-06-01 09:38:15 -06009import os
10import sys
Simon Glass29aa7362018-09-14 04:57:19 -060011
Simon Glassc585dd42020-04-17 18:09:03 -060012from dtoc import fdt_util
Simon Glassa997ea52020-04-17 18:09:04 -060013from patman import tools
Simon Glassc585dd42020-04-17 18:09:03 -060014from patman.tools import ToHex, ToHexSize
Simon Glassa997ea52020-04-17 18:09:04 -060015from patman import tout
Simon Glass2574ef62016-11-25 20:15:51 -070016
17modules = {}
18
Simon Glass91710b32018-07-17 13:25:32 -060019
20# An argument which can be passed to entries on the command line, in lieu of
21# device-tree properties.
22EntryArg = namedtuple('EntryArg', ['name', 'datatype'])
23
Simon Glass6b156f82019-07-08 14:25:43 -060024# Information about an entry for use when displaying summaries
25EntryInfo = namedtuple('EntryInfo', ['indent', 'name', 'etype', 'size',
26 'image_pos', 'uncomp_size', 'offset',
27 'entry'])
Simon Glass91710b32018-07-17 13:25:32 -060028
Simon Glass2574ef62016-11-25 20:15:51 -070029class Entry(object):
Simon Glassad5a7712018-06-01 09:38:14 -060030 """An Entry in the section
Simon Glass2574ef62016-11-25 20:15:51 -070031
32 An entry corresponds to a single node in the device-tree description
Simon Glassad5a7712018-06-01 09:38:14 -060033 of the section. Each entry ends up being a part of the final section.
Simon Glass2574ef62016-11-25 20:15:51 -070034 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 Glass3a9a2b82018-07-17 13:25:28 -060041 section: Section object containing this entry
Simon Glass2574ef62016-11-25 20:15:51 -070042 node: The node that created this entry
Simon Glasse8561af2018-08-01 15:22:37 -060043 offset: Offset of entry within the section, None if not known yet (in
44 which case it will be calculated by Pack())
Simon Glass2574ef62016-11-25 20:15:51 -070045 size: Entry size in bytes, None if not known
Simon Glass1fdb4872019-10-31 07:43:02 -060046 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 Glassaa2fcf92019-07-08 14:25:30 -060048 uncomp_size: Size of uncompressed data in bytes, if the entry is
49 compressed, else None
Simon Glass2574ef62016-11-25 20:15:51 -070050 contents_size: Size of contents in bytes, 0 by default
Simon Glasse8561af2018-08-01 15:22:37 -060051 align: Entry start offset alignment, or None
Simon Glass2574ef62016-11-25 20:15:51 -070052 align_size: Entry size alignment, or None
Simon Glasse8561af2018-08-01 15:22:37 -060053 align_end: Entry end offset alignment, or None
Simon Glass2574ef62016-11-25 20:15:51 -070054 pad_before: Number of pad bytes before the contents, 0 if none
55 pad_after: Number of pad bytes after the contents, 0 if none
56 data: Contents of entry (string of bytes)
Simon Glassaa2fcf92019-07-08 14:25:30 -060057 compress: Compression algoithm used (e.g. 'lz4'), 'none' if none
Simon Glasse61b6f62019-07-08 14:25:37 -060058 orig_offset: Original offset value read from node
59 orig_size: Original size value read from node
Simon Glassb8f90372020-09-01 05:13:57 -060060 missing: True if this entry is missing its contents
61 allow_missing: Allow children of this entry to be missing (used by
62 subclasses such as Entry_section)
63 external: True if this entry contains an external binary blob
Simon Glass2574ef62016-11-25 20:15:51 -070064 """
Simon Glass2c360cf2019-07-20 12:23:45 -060065 def __init__(self, section, etype, node, name_prefix=''):
Simon Glassb9ba4e02019-08-24 07:22:44 -060066 # Put this here to allow entry-docs and help to work without libfdt
67 global state
Simon Glassc585dd42020-04-17 18:09:03 -060068 from binman import state
Simon Glassb9ba4e02019-08-24 07:22:44 -060069
Simon Glassad5a7712018-06-01 09:38:14 -060070 self.section = section
Simon Glass2574ef62016-11-25 20:15:51 -070071 self.etype = etype
72 self._node = node
Simon Glass3b78d532018-06-01 09:38:21 -060073 self.name = node and (name_prefix + node.name) or 'none'
Simon Glasse8561af2018-08-01 15:22:37 -060074 self.offset = None
Simon Glass2574ef62016-11-25 20:15:51 -070075 self.size = None
Simon Glass1fdb4872019-10-31 07:43:02 -060076 self.pre_reset_size = None
Simon Glassaa2fcf92019-07-08 14:25:30 -060077 self.uncomp_size = None
Simon Glass5c350162018-07-17 13:25:47 -060078 self.data = None
Simon Glass2574ef62016-11-25 20:15:51 -070079 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 Glasse8561af2018-08-01 15:22:37 -060085 self.offset_unset = False
Simon Glass9dcc8612018-08-01 15:22:42 -060086 self.image_pos = None
Simon Glassfa79a812018-09-14 04:57:29 -060087 self._expand_size = False
Simon Glassaa2fcf92019-07-08 14:25:30 -060088 self.compress = 'none'
Simon Glassa003cd32020-07-09 18:39:40 -060089 self.missing = False
Simon Glassb8f90372020-09-01 05:13:57 -060090 self.external = False
91 self.allow_missing = False
Simon Glass2574ef62016-11-25 20:15:51 -070092
93 @staticmethod
Simon Glass75502932019-07-08 14:25:31 -060094 def Lookup(node_path, etype):
Simon Glass969616c2018-07-17 13:25:36 -060095 """Look up the entry class for a node.
Simon Glass2574ef62016-11-25 20:15:51 -070096
97 Args:
Simon Glass969616c2018-07-17 13:25:36 -060098 node_node: Path name of Node object containing information about
99 the entry to create (used for errors)
100 etype: Entry type to use
Simon Glass2574ef62016-11-25 20:15:51 -0700101
102 Returns:
Simon Glass969616c2018-07-17 13:25:36 -0600103 The entry class object if found, else None
Simon Glass2574ef62016-11-25 20:15:51 -0700104 """
Simon Glasse76a3e62018-06-01 09:38:11 -0600105 # Convert something like 'u-boot@0' to 'u_boot' since we are only
106 # interested in the type.
Simon Glass2574ef62016-11-25 20:15:51 -0700107 module_name = etype.replace('-', '_')
Simon Glasse76a3e62018-06-01 09:38:11 -0600108 if '@' in module_name:
109 module_name = module_name.split('@')[0]
Simon Glass2574ef62016-11-25 20:15:51 -0700110 module = modules.get(module_name)
111
Simon Glass691198c2018-06-01 09:38:15 -0600112 # Also allow entry-type modules to be brought in from the etype directory.
113
Simon Glass2574ef62016-11-25 20:15:51 -0700114 # Import the module if we have not already done so.
115 if not module:
116 try:
Simon Glassc585dd42020-04-17 18:09:03 -0600117 module = importlib.import_module('binman.etype.' + module_name)
Simon Glass969616c2018-07-17 13:25:36 -0600118 except ImportError as e:
119 raise ValueError("Unknown entry type '%s' in node '%s' (expected etype/%s.py, error '%s'" %
120 (etype, node_path, module_name, e))
Simon Glass2574ef62016-11-25 20:15:51 -0700121 modules[module_name] = module
122
Simon Glass969616c2018-07-17 13:25:36 -0600123 # Look up the expected class name
124 return getattr(module, 'Entry_%s' % module_name)
125
126 @staticmethod
127 def Create(section, node, etype=None):
128 """Create a new entry for a node.
129
130 Args:
131 section: Section object containing this node
132 node: Node object containing information about the entry to
133 create
134 etype: Entry type to use, or None to work it out (used for tests)
135
136 Returns:
137 A new Entry object of the correct type (a subclass of Entry)
138 """
139 if not etype:
140 etype = fdt_util.GetString(node, 'type', node.name)
Simon Glass75502932019-07-08 14:25:31 -0600141 obj = Entry.Lookup(node.path, etype)
Simon Glass969616c2018-07-17 13:25:36 -0600142
Simon Glass2574ef62016-11-25 20:15:51 -0700143 # Call its constructor to get the object we want.
Simon Glassad5a7712018-06-01 09:38:14 -0600144 return obj(section, etype, node)
Simon Glass2574ef62016-11-25 20:15:51 -0700145
146 def ReadNode(self):
147 """Read entry information from the node
148
Simon Glass2c360cf2019-07-20 12:23:45 -0600149 This must be called as the first thing after the Entry is created.
150
Simon Glass2574ef62016-11-25 20:15:51 -0700151 This reads all the fields we recognise from the node, ready for use.
152 """
Simon Glass24b97442018-07-17 13:25:51 -0600153 if 'pos' in self._node.props:
154 self.Raise("Please use 'offset' instead of 'pos'")
Simon Glasse8561af2018-08-01 15:22:37 -0600155 self.offset = fdt_util.GetInt(self._node, 'offset')
Simon Glass2574ef62016-11-25 20:15:51 -0700156 self.size = fdt_util.GetInt(self._node, 'size')
Simon Glassfb30e292019-07-20 12:23:51 -0600157 self.orig_offset = fdt_util.GetInt(self._node, 'orig-offset')
158 self.orig_size = fdt_util.GetInt(self._node, 'orig-size')
159 if self.GetImage().copy_to_orig:
160 self.orig_offset = self.offset
161 self.orig_size = self.size
Simon Glasse61b6f62019-07-08 14:25:37 -0600162
Simon Glassb8424fa2019-07-08 14:25:46 -0600163 # These should not be set in input files, but are set in an FDT map,
164 # which is also read by this code.
165 self.image_pos = fdt_util.GetInt(self._node, 'image-pos')
166 self.uncomp_size = fdt_util.GetInt(self._node, 'uncomp-size')
167
Simon Glass2574ef62016-11-25 20:15:51 -0700168 self.align = fdt_util.GetInt(self._node, 'align')
169 if tools.NotPowerOfTwo(self.align):
170 raise ValueError("Node '%s': Alignment %s must be a power of two" %
171 (self._node.path, self.align))
172 self.pad_before = fdt_util.GetInt(self._node, 'pad-before', 0)
173 self.pad_after = fdt_util.GetInt(self._node, 'pad-after', 0)
174 self.align_size = fdt_util.GetInt(self._node, 'align-size')
175 if tools.NotPowerOfTwo(self.align_size):
Simon Glass39dd2152019-07-08 14:25:47 -0600176 self.Raise("Alignment size %s must be a power of two" %
177 self.align_size)
Simon Glass2574ef62016-11-25 20:15:51 -0700178 self.align_end = fdt_util.GetInt(self._node, 'align-end')
Simon Glasse8561af2018-08-01 15:22:37 -0600179 self.offset_unset = fdt_util.GetBool(self._node, 'offset-unset')
Simon Glassfa79a812018-09-14 04:57:29 -0600180 self.expand_size = fdt_util.GetBool(self._node, 'expand-size')
Simon Glass2574ef62016-11-25 20:15:51 -0700181
Simon Glass3732ec32018-09-14 04:57:18 -0600182 def GetDefaultFilename(self):
183 return None
184
Simon Glass267112e2019-07-20 12:23:28 -0600185 def GetFdts(self):
186 """Get the device trees used by this entry
Simon Glass0c9d5b52018-09-14 04:57:22 -0600187
188 Returns:
Simon Glass267112e2019-07-20 12:23:28 -0600189 Empty dict, if this entry is not a .dtb, otherwise:
190 Dict:
191 key: Filename from this entry (without the path)
Simon Glass684a4f12019-07-20 12:23:31 -0600192 value: Tuple:
193 Fdt object for this dtb, or None if not available
194 Filename of file containing this dtb
Simon Glass0c9d5b52018-09-14 04:57:22 -0600195 """
Simon Glass267112e2019-07-20 12:23:28 -0600196 return {}
Simon Glass0c9d5b52018-09-14 04:57:22 -0600197
Simon Glassac6328c2018-09-14 04:57:28 -0600198 def ExpandEntries(self):
199 pass
200
Simon Glasse22f8fa2018-07-06 10:27:41 -0600201 def AddMissingProperties(self):
202 """Add new properties to the device tree as needed for this entry"""
Simon Glass9dcc8612018-08-01 15:22:42 -0600203 for prop in ['offset', 'size', 'image-pos']:
Simon Glasse22f8fa2018-07-06 10:27:41 -0600204 if not prop in self._node.props:
Simon Glassc8135dc2018-09-14 04:57:21 -0600205 state.AddZeroProp(self._node, prop)
Simon Glassfb30e292019-07-20 12:23:51 -0600206 if self.GetImage().allow_repack:
207 if self.orig_offset is not None:
208 state.AddZeroProp(self._node, 'orig-offset', True)
209 if self.orig_size is not None:
210 state.AddZeroProp(self._node, 'orig-size', True)
211
Simon Glassaa2fcf92019-07-08 14:25:30 -0600212 if self.compress != 'none':
213 state.AddZeroProp(self._node, 'uncomp-size')
Simon Glassae7cf032018-09-14 04:57:31 -0600214 err = state.CheckAddHashProp(self._node)
215 if err:
216 self.Raise(err)
Simon Glasse22f8fa2018-07-06 10:27:41 -0600217
218 def SetCalculatedProperties(self):
219 """Set the value of device-tree properties calculated by binman"""
Simon Glassc8135dc2018-09-14 04:57:21 -0600220 state.SetInt(self._node, 'offset', self.offset)
221 state.SetInt(self._node, 'size', self.size)
Simon Glass39dd2152019-07-08 14:25:47 -0600222 base = self.section.GetRootSkipAtStart() if self.section else 0
223 state.SetInt(self._node, 'image-pos', self.image_pos - base)
Simon Glassfb30e292019-07-20 12:23:51 -0600224 if self.GetImage().allow_repack:
225 if self.orig_offset is not None:
226 state.SetInt(self._node, 'orig-offset', self.orig_offset, True)
227 if self.orig_size is not None:
228 state.SetInt(self._node, 'orig-size', self.orig_size, True)
Simon Glassaa2fcf92019-07-08 14:25:30 -0600229 if self.uncomp_size is not None:
230 state.SetInt(self._node, 'uncomp-size', self.uncomp_size)
Simon Glassae7cf032018-09-14 04:57:31 -0600231 state.CheckSetHashValue(self._node, self.GetData)
Simon Glasse22f8fa2018-07-06 10:27:41 -0600232
Simon Glass92307732018-07-06 10:27:40 -0600233 def ProcessFdt(self, fdt):
Simon Glasse219aa42018-09-14 04:57:24 -0600234 """Allow entries to adjust the device tree
235
236 Some entries need to adjust the device tree for their purposes. This
237 may involve adding or deleting properties.
238
239 Returns:
240 True if processing is complete
241 False if processing could not be completed due to a dependency.
242 This will cause the entry to be retried after others have been
243 called
244 """
Simon Glass92307732018-07-06 10:27:40 -0600245 return True
246
Simon Glass3b78d532018-06-01 09:38:21 -0600247 def SetPrefix(self, prefix):
248 """Set the name prefix for a node
249
250 Args:
251 prefix: Prefix to set, or '' to not use a prefix
252 """
253 if prefix:
254 self.name = prefix + self.name
255
Simon Glass2e1169f2018-07-06 10:27:19 -0600256 def SetContents(self, data):
257 """Set the contents of an entry
258
259 This sets both the data and content_size properties
260
261 Args:
Simon Glassd17dfea2019-07-08 14:25:33 -0600262 data: Data to set to the contents (bytes)
Simon Glass2e1169f2018-07-06 10:27:19 -0600263 """
264 self.data = data
265 self.contents_size = len(self.data)
266
267 def ProcessContentsUpdate(self, data):
Simon Glassd17dfea2019-07-08 14:25:33 -0600268 """Update the contents of an entry, after the size is fixed
Simon Glass2e1169f2018-07-06 10:27:19 -0600269
Simon Glassec849852019-07-08 14:25:35 -0600270 This checks that the new data is the same size as the old. If the size
271 has changed, this triggers a re-run of the packing algorithm.
Simon Glass2e1169f2018-07-06 10:27:19 -0600272
273 Args:
Simon Glassd17dfea2019-07-08 14:25:33 -0600274 data: Data to set to the contents (bytes)
Simon Glass2e1169f2018-07-06 10:27:19 -0600275
276 Raises:
277 ValueError if the new data size is not the same as the old
278 """
Simon Glassec849852019-07-08 14:25:35 -0600279 size_ok = True
Simon Glasse61b6f62019-07-08 14:25:37 -0600280 new_size = len(data)
Simon Glass9d8ee322019-07-20 12:23:58 -0600281 if state.AllowEntryExpansion() and new_size > self.contents_size:
282 # self.data will indicate the new size needed
283 size_ok = False
284 elif state.AllowEntryContraction() and new_size < self.contents_size:
285 size_ok = False
286
287 # If not allowed to change, try to deal with it or give up
288 if size_ok:
Simon Glasse61b6f62019-07-08 14:25:37 -0600289 if new_size > self.contents_size:
Simon Glass9d8ee322019-07-20 12:23:58 -0600290 self.Raise('Cannot update entry size from %d to %d' %
291 (self.contents_size, new_size))
292
293 # Don't let the data shrink. Pad it if necessary
294 if size_ok and new_size < self.contents_size:
295 data += tools.GetBytes(0, self.contents_size - new_size)
296
297 if not size_ok:
298 tout.Debug("Entry '%s' size change from %s to %s" % (
299 self._node.path, ToHex(self.contents_size),
300 ToHex(new_size)))
Simon Glass2e1169f2018-07-06 10:27:19 -0600301 self.SetContents(data)
Simon Glassec849852019-07-08 14:25:35 -0600302 return size_ok
Simon Glass2e1169f2018-07-06 10:27:19 -0600303
Simon Glass2574ef62016-11-25 20:15:51 -0700304 def ObtainContents(self):
305 """Figure out the contents of an entry.
306
307 Returns:
308 True if the contents were found, False if another call is needed
309 after the other entries are processed.
310 """
311 # No contents by default: subclasses can implement this
312 return True
313
Simon Glasse61b6f62019-07-08 14:25:37 -0600314 def ResetForPack(self):
315 """Reset offset/size fields so that packing can be done again"""
Simon Glassb6dff4c2019-07-20 12:23:36 -0600316 self.Detail('ResetForPack: offset %s->%s, size %s->%s' %
317 (ToHex(self.offset), ToHex(self.orig_offset),
318 ToHex(self.size), ToHex(self.orig_size)))
Simon Glass1fdb4872019-10-31 07:43:02 -0600319 self.pre_reset_size = self.size
Simon Glasse61b6f62019-07-08 14:25:37 -0600320 self.offset = self.orig_offset
321 self.size = self.orig_size
322
Simon Glasse8561af2018-08-01 15:22:37 -0600323 def Pack(self, offset):
Simon Glassad5a7712018-06-01 09:38:14 -0600324 """Figure out how to pack the entry into the section
Simon Glass2574ef62016-11-25 20:15:51 -0700325
326 Most of the time the entries are not fully specified. There may be
327 an alignment but no size. In that case we take the size from the
328 contents of the entry.
329
Simon Glasse8561af2018-08-01 15:22:37 -0600330 If an entry has no hard-coded offset, it will be placed at @offset.
Simon Glass2574ef62016-11-25 20:15:51 -0700331
Simon Glasse8561af2018-08-01 15:22:37 -0600332 Once this function is complete, both the offset and size of the
Simon Glass2574ef62016-11-25 20:15:51 -0700333 entry will be know.
334
335 Args:
Simon Glasse8561af2018-08-01 15:22:37 -0600336 Current section offset pointer
Simon Glass2574ef62016-11-25 20:15:51 -0700337
338 Returns:
Simon Glasse8561af2018-08-01 15:22:37 -0600339 New section offset pointer (after this entry)
Simon Glass2574ef62016-11-25 20:15:51 -0700340 """
Simon Glassb6dff4c2019-07-20 12:23:36 -0600341 self.Detail('Packing: offset=%s, size=%s, content_size=%x' %
342 (ToHex(self.offset), ToHex(self.size),
343 self.contents_size))
Simon Glasse8561af2018-08-01 15:22:37 -0600344 if self.offset is None:
345 if self.offset_unset:
346 self.Raise('No offset set with offset-unset: should another '
347 'entry provide this correct offset?')
348 self.offset = tools.Align(offset, self.align)
Simon Glass2574ef62016-11-25 20:15:51 -0700349 needed = self.pad_before + self.contents_size + self.pad_after
350 needed = tools.Align(needed, self.align_size)
351 size = self.size
352 if not size:
353 size = needed
Simon Glasse8561af2018-08-01 15:22:37 -0600354 new_offset = self.offset + size
355 aligned_offset = tools.Align(new_offset, self.align_end)
356 if aligned_offset != new_offset:
357 size = aligned_offset - self.offset
358 new_offset = aligned_offset
Simon Glass2574ef62016-11-25 20:15:51 -0700359
360 if not self.size:
361 self.size = size
362
363 if self.size < needed:
364 self.Raise("Entry contents size is %#x (%d) but entry size is "
365 "%#x (%d)" % (needed, needed, self.size, self.size))
366 # Check that the alignment is correct. It could be wrong if the
Simon Glasse8561af2018-08-01 15:22:37 -0600367 # and offset or size values were provided (i.e. not calculated), but
Simon Glass2574ef62016-11-25 20:15:51 -0700368 # conflict with the provided alignment values
369 if self.size != tools.Align(self.size, self.align_size):
370 self.Raise("Size %#x (%d) does not match align-size %#x (%d)" %
371 (self.size, self.size, self.align_size, self.align_size))
Simon Glasse8561af2018-08-01 15:22:37 -0600372 if self.offset != tools.Align(self.offset, self.align):
373 self.Raise("Offset %#x (%d) does not match align %#x (%d)" %
374 (self.offset, self.offset, self.align, self.align))
Simon Glassb6dff4c2019-07-20 12:23:36 -0600375 self.Detail(' - packed: offset=%#x, size=%#x, content_size=%#x, next_offset=%x' %
376 (self.offset, self.size, self.contents_size, new_offset))
Simon Glass2574ef62016-11-25 20:15:51 -0700377
Simon Glasse8561af2018-08-01 15:22:37 -0600378 return new_offset
Simon Glass2574ef62016-11-25 20:15:51 -0700379
380 def Raise(self, msg):
381 """Convenience function to raise an error referencing a node"""
382 raise ValueError("Node '%s': %s" % (self._node.path, msg))
383
Simon Glassb6dff4c2019-07-20 12:23:36 -0600384 def Detail(self, msg):
385 """Convenience function to log detail referencing a node"""
386 tag = "Node '%s'" % self._node.path
387 tout.Detail('%30s: %s' % (tag, msg))
388
Simon Glass91710b32018-07-17 13:25:32 -0600389 def GetEntryArgsOrProps(self, props, required=False):
390 """Return the values of a set of properties
391
392 Args:
393 props: List of EntryArg objects
394
395 Raises:
396 ValueError if a property is not found
397 """
398 values = []
399 missing = []
400 for prop in props:
401 python_prop = prop.name.replace('-', '_')
402 if hasattr(self, python_prop):
403 value = getattr(self, python_prop)
404 else:
405 value = None
406 if value is None:
407 value = self.GetArg(prop.name, prop.datatype)
408 if value is None and required:
409 missing.append(prop.name)
410 values.append(value)
411 if missing:
412 self.Raise('Missing required properties/entry args: %s' %
413 (', '.join(missing)))
414 return values
415
Simon Glass2574ef62016-11-25 20:15:51 -0700416 def GetPath(self):
417 """Get the path of a node
418
419 Returns:
420 Full path of the node for this entry
421 """
422 return self._node.path
423
424 def GetData(self):
Simon Glassb6dff4c2019-07-20 12:23:36 -0600425 self.Detail('GetData: size %s' % ToHexSize(self.data))
Simon Glass2574ef62016-11-25 20:15:51 -0700426 return self.data
427
Simon Glasse8561af2018-08-01 15:22:37 -0600428 def GetOffsets(self):
Simon Glass224bc662019-07-08 13:18:30 -0600429 """Get the offsets for siblings
430
431 Some entry types can contain information about the position or size of
432 other entries. An example of this is the Intel Flash Descriptor, which
433 knows where the Intel Management Engine section should go.
434
435 If this entry knows about the position of other entries, it can specify
436 this by returning values here
437
438 Returns:
439 Dict:
440 key: Entry type
441 value: List containing position and size of the given entry
Simon Glassed365eb2019-07-08 13:18:39 -0600442 type. Either can be None if not known
Simon Glass224bc662019-07-08 13:18:30 -0600443 """
Simon Glass2574ef62016-11-25 20:15:51 -0700444 return {}
445
Simon Glassed365eb2019-07-08 13:18:39 -0600446 def SetOffsetSize(self, offset, size):
447 """Set the offset and/or size of an entry
448
449 Args:
450 offset: New offset, or None to leave alone
451 size: New size, or None to leave alone
452 """
453 if offset is not None:
454 self.offset = offset
455 if size is not None:
456 self.size = size
Simon Glass2574ef62016-11-25 20:15:51 -0700457
Simon Glass9dcc8612018-08-01 15:22:42 -0600458 def SetImagePos(self, image_pos):
459 """Set the position in the image
460
461 Args:
462 image_pos: Position of this entry in the image
463 """
464 self.image_pos = image_pos + self.offset
465
Simon Glass2574ef62016-11-25 20:15:51 -0700466 def ProcessContents(self):
Simon Glassec849852019-07-08 14:25:35 -0600467 """Do any post-packing updates of entry contents
468
469 This function should call ProcessContentsUpdate() to update the entry
470 contents, if necessary, returning its return value here.
471
472 Args:
473 data: Data to set to the contents (bytes)
474
475 Returns:
476 True if the new data size is OK, False if expansion is needed
477
478 Raises:
479 ValueError if the new data size is not the same as the old and
480 state.AllowEntryExpansion() is False
481 """
482 return True
Simon Glass4ca8e042017-11-13 18:55:01 -0700483
Simon Glass8a6f56e2018-06-01 09:38:13 -0600484 def WriteSymbols(self, section):
Simon Glass4ca8e042017-11-13 18:55:01 -0700485 """Write symbol values into binary files for access at run time
486
487 Args:
Simon Glass8a6f56e2018-06-01 09:38:13 -0600488 section: Section containing the entry
Simon Glass4ca8e042017-11-13 18:55:01 -0700489 """
490 pass
Simon Glassa91e1152018-06-01 09:38:16 -0600491
Simon Glasse8561af2018-08-01 15:22:37 -0600492 def CheckOffset(self):
493 """Check that the entry offsets are correct
Simon Glassa91e1152018-06-01 09:38:16 -0600494
Simon Glasse8561af2018-08-01 15:22:37 -0600495 This is used for entries which have extra offset requirements (other
Simon Glassa91e1152018-06-01 09:38:16 -0600496 than having to be fully inside their section). Sub-classes can implement
497 this function and raise if there is a problem.
498 """
499 pass
Simon Glass30732662018-06-01 09:38:20 -0600500
Simon Glass3a9a2b82018-07-17 13:25:28 -0600501 @staticmethod
Simon Glasscd817d52018-09-14 04:57:36 -0600502 def GetStr(value):
503 if value is None:
504 return '<none> '
505 return '%08x' % value
506
507 @staticmethod
Simon Glass7eca7922018-07-17 13:25:49 -0600508 def WriteMapLine(fd, indent, name, offset, size, image_pos):
Simon Glasscd817d52018-09-14 04:57:36 -0600509 print('%s %s%s %s %s' % (Entry.GetStr(image_pos), ' ' * indent,
510 Entry.GetStr(offset), Entry.GetStr(size),
511 name), file=fd)
Simon Glass3a9a2b82018-07-17 13:25:28 -0600512
Simon Glass30732662018-06-01 09:38:20 -0600513 def WriteMap(self, fd, indent):
514 """Write a map of the entry to a .map file
515
516 Args:
517 fd: File to write the map to
518 indent: Curent indent level of map (0=none, 1=one level, etc.)
519 """
Simon Glass7eca7922018-07-17 13:25:49 -0600520 self.WriteMapLine(fd, indent, self.name, self.offset, self.size,
521 self.image_pos)
Simon Glass91710b32018-07-17 13:25:32 -0600522
Simon Glass704784b2018-07-17 13:25:38 -0600523 def GetEntries(self):
524 """Return a list of entries contained by this entry
525
526 Returns:
527 List of entries, or None if none. A normal entry has no entries
528 within it so will return None
529 """
530 return None
531
Simon Glass91710b32018-07-17 13:25:32 -0600532 def GetArg(self, name, datatype=str):
533 """Get the value of an entry argument or device-tree-node property
534
535 Some node properties can be provided as arguments to binman. First check
536 the entry arguments, and fall back to the device tree if not found
537
538 Args:
539 name: Argument name
540 datatype: Data type (str or int)
541
542 Returns:
543 Value of argument as a string or int, or None if no value
544
545 Raises:
546 ValueError if the argument cannot be converted to in
547 """
Simon Glass29aa7362018-09-14 04:57:19 -0600548 value = state.GetEntryArg(name)
Simon Glass91710b32018-07-17 13:25:32 -0600549 if value is not None:
550 if datatype == int:
551 try:
552 value = int(value)
553 except ValueError:
554 self.Raise("Cannot convert entry arg '%s' (value '%s') to integer" %
555 (name, value))
556 elif datatype == str:
557 pass
558 else:
559 raise ValueError("GetArg() internal error: Unknown data type '%s'" %
560 datatype)
561 else:
562 value = fdt_util.GetDatatype(self._node, name, datatype)
563 return value
Simon Glass969616c2018-07-17 13:25:36 -0600564
565 @staticmethod
566 def WriteDocs(modules, test_missing=None):
567 """Write out documentation about the various entry types to stdout
568
569 Args:
570 modules: List of modules to include
571 test_missing: Used for testing. This is a module to report
572 as missing
573 """
574 print('''Binman Entry Documentation
575===========================
576
577This file describes the entry types supported by binman. These entry types can
578be placed in an image one by one to build up a final firmware image. It is
579fairly easy to create new entry types. Just add a new file to the 'etype'
580directory. You can use the existing entries as examples.
581
582Note that some entries are subclasses of others, using and extending their
583features to produce new behaviours.
584
585
586''')
587 modules = sorted(modules)
588
589 # Don't show the test entry
590 if '_testing' in modules:
591 modules.remove('_testing')
592 missing = []
593 for name in modules:
Simon Glassc585dd42020-04-17 18:09:03 -0600594 module = Entry.Lookup('WriteDocs', name)
Simon Glass969616c2018-07-17 13:25:36 -0600595 docs = getattr(module, '__doc__')
596 if test_missing == name:
597 docs = None
598 if docs:
599 lines = docs.splitlines()
600 first_line = lines[0]
601 rest = [line[4:] for line in lines[1:]]
602 hdr = 'Entry: %s: %s' % (name.replace('_', '-'), first_line)
603 print(hdr)
604 print('-' * len(hdr))
605 print('\n'.join(rest))
606 print()
607 print()
608 else:
609 missing.append(name)
610
611 if missing:
612 raise ValueError('Documentation is missing for modules: %s' %
613 ', '.join(missing))
Simon Glass639505b2018-09-14 04:57:11 -0600614
615 def GetUniqueName(self):
616 """Get a unique name for a node
617
618 Returns:
619 String containing a unique name for a node, consisting of the name
620 of all ancestors (starting from within the 'binman' node) separated
621 by a dot ('.'). This can be useful for generating unique filesnames
622 in the output directory.
623 """
624 name = self.name
625 node = self._node
626 while node.parent:
627 node = node.parent
628 if node.name == 'binman':
629 break
630 name = '%s.%s' % (node.name, name)
631 return name
Simon Glassfa79a812018-09-14 04:57:29 -0600632
633 def ExpandToLimit(self, limit):
634 """Expand an entry so that it ends at the given offset limit"""
635 if self.offset + self.size < limit:
636 self.size = limit - self.offset
637 # Request the contents again, since changing the size requires that
638 # the data grows. This should not fail, but check it to be sure.
639 if not self.ObtainContents():
640 self.Raise('Cannot obtain contents when expanding entry')
Simon Glassc4056b82019-07-08 13:18:38 -0600641
642 def HasSibling(self, name):
643 """Check if there is a sibling of a given name
644
645 Returns:
646 True if there is an entry with this name in the the same section,
647 else False
648 """
649 return name in self.section.GetEntries()
Simon Glasscec34ba2019-07-08 14:25:28 -0600650
651 def GetSiblingImagePos(self, name):
652 """Return the image position of the given sibling
653
654 Returns:
655 Image position of sibling, or None if the sibling has no position,
656 or False if there is no such sibling
657 """
658 if not self.HasSibling(name):
659 return False
660 return self.section.GetEntries()[name].image_pos
Simon Glass6b156f82019-07-08 14:25:43 -0600661
662 @staticmethod
663 def AddEntryInfo(entries, indent, name, etype, size, image_pos,
664 uncomp_size, offset, entry):
665 """Add a new entry to the entries list
666
667 Args:
668 entries: List (of EntryInfo objects) to add to
669 indent: Current indent level to add to list
670 name: Entry name (string)
671 etype: Entry type (string)
672 size: Entry size in bytes (int)
673 image_pos: Position within image in bytes (int)
674 uncomp_size: Uncompressed size if the entry uses compression, else
675 None
676 offset: Entry offset within parent in bytes (int)
677 entry: Entry object
678 """
679 entries.append(EntryInfo(indent, name, etype, size, image_pos,
680 uncomp_size, offset, entry))
681
682 def ListEntries(self, entries, indent):
683 """Add files in this entry to the list of entries
684
685 This can be overridden by subclasses which need different behaviour.
686
687 Args:
688 entries: List (of EntryInfo objects) to add to
689 indent: Current indent level to add to list
690 """
691 self.AddEntryInfo(entries, indent, self.name, self.etype, self.size,
692 self.image_pos, self.uncomp_size, self.offset, self)
Simon Glass4c613bf2019-07-08 14:25:50 -0600693
694 def ReadData(self, decomp=True):
695 """Read the data for an entry from the image
696
697 This is used when the image has been read in and we want to extract the
698 data for a particular entry from that image.
699
700 Args:
701 decomp: True to decompress any compressed data before returning it;
702 False to return the raw, uncompressed data
703
704 Returns:
705 Entry data (bytes)
706 """
707 # Use True here so that we get an uncompressed section to work from,
708 # although compressed sections are currently not supported
Simon Glass4d8151f2019-09-25 08:56:21 -0600709 tout.Debug("ReadChildData section '%s', entry '%s'" %
710 (self.section.GetPath(), self.GetPath()))
Simon Glass0cd8ace2019-07-20 12:24:04 -0600711 data = self.section.ReadChildData(self, decomp)
712 return data
Simon Glassaf8c45c2019-07-20 12:23:41 -0600713
Simon Glass23f00472019-09-25 08:56:20 -0600714 def ReadChildData(self, child, decomp=True):
Simon Glass4d8151f2019-09-25 08:56:21 -0600715 """Read the data for a particular child entry
Simon Glass23f00472019-09-25 08:56:20 -0600716
717 This reads data from the parent and extracts the piece that relates to
718 the given child.
719
720 Args:
Simon Glass4d8151f2019-09-25 08:56:21 -0600721 child: Child entry to read data for (must be valid)
Simon Glass23f00472019-09-25 08:56:20 -0600722 decomp: True to decompress any compressed data before returning it;
723 False to return the raw, uncompressed data
724
725 Returns:
726 Data for the child (bytes)
727 """
728 pass
729
Simon Glassaf8c45c2019-07-20 12:23:41 -0600730 def LoadData(self, decomp=True):
731 data = self.ReadData(decomp)
Simon Glass072959a2019-07-20 12:23:50 -0600732 self.contents_size = len(data)
Simon Glassaf8c45c2019-07-20 12:23:41 -0600733 self.ProcessContentsUpdate(data)
734 self.Detail('Loaded data size %x' % len(data))
Simon Glass990b1742019-07-20 12:23:46 -0600735
736 def GetImage(self):
737 """Get the image containing this entry
738
739 Returns:
740 Image object containing this entry
741 """
742 return self.section.GetImage()
Simon Glass072959a2019-07-20 12:23:50 -0600743
744 def WriteData(self, data, decomp=True):
745 """Write the data to an entry in the image
746
747 This is used when the image has been read in and we want to replace the
748 data for a particular entry in that image.
749
750 The image must be re-packed and written out afterwards.
751
752 Args:
753 data: Data to replace it with
754 decomp: True to compress the data if needed, False if data is
755 already compressed so should be used as is
756
757 Returns:
758 True if the data did not result in a resize of this entry, False if
759 the entry must be resized
760 """
Simon Glass1fdb4872019-10-31 07:43:02 -0600761 if self.size is not None:
762 self.contents_size = self.size
763 else:
764 self.contents_size = self.pre_reset_size
Simon Glass072959a2019-07-20 12:23:50 -0600765 ok = self.ProcessContentsUpdate(data)
766 self.Detail('WriteData: size=%x, ok=%s' % (len(data), ok))
Simon Glassd34af7a2019-07-20 12:24:05 -0600767 section_ok = self.section.WriteChildData(self)
768 return ok and section_ok
769
770 def WriteChildData(self, child):
771 """Handle writing the data in a child entry
772
773 This should be called on the child's parent section after the child's
774 data has been updated. It
775
776 This base-class implementation does nothing, since the base Entry object
777 does not have any children.
778
779 Args:
780 child: Child Entry that was written
781
782 Returns:
783 True if the section could be updated successfully, False if the
784 data is such that the section could not updat
785 """
786 return True
Simon Glass11453762019-07-20 12:23:55 -0600787
788 def GetSiblingOrder(self):
789 """Get the relative order of an entry amoung its siblings
790
791 Returns:
792 'start' if this entry is first among siblings, 'end' if last,
793 otherwise None
794 """
795 entries = list(self.section.GetEntries().values())
796 if entries:
797 if self == entries[0]:
798 return 'start'
799 elif self == entries[-1]:
800 return 'end'
801 return 'middle'
Simon Glass5d94cc62020-07-09 18:39:38 -0600802
803 def SetAllowMissing(self, allow_missing):
804 """Set whether a section allows missing external blobs
805
806 Args:
807 allow_missing: True if allowed, False if not allowed
808 """
809 # This is meaningless for anything other than sections
810 pass
Simon Glassa003cd32020-07-09 18:39:40 -0600811
812 def CheckMissing(self, missing_list):
813 """Check if any entries in this section have missing external blobs
814
815 If there are missing blobs, the entries are added to the list
816
817 Args:
818 missing_list: List of Entry objects to be added to
819 """
820 if self.missing:
821 missing_list.append(self)
Simon Glassb8f90372020-09-01 05:13:57 -0600822
823 def GetAllowMissing(self):
824 """Get whether a section allows missing external blobs
825
826 Returns:
827 True if allowed, False if not allowed
828 """
829 return self.allow_missing