blob: be9419584a2a0791c114f8351d4fbe144c9b5690 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Simon Glassbf7fd502016-11-25 20:15:51 -07002# Copyright (c) 2016 Google, Inc
3#
Simon Glassbf7fd502016-11-25 20:15:51 -07004# Base class for all entries
5#
6
Simon Glass53af22a2018-07-17 13:25:32 -06007from collections import namedtuple
Simon Glassb4cf5f12019-10-31 07:42:59 -06008import importlib
Simon Glassbadf0ec2018-06-01 09:38:15 -06009import os
10import sys
Simon Glassc55a50f2018-09-14 04:57:19 -060011
Simon Glass16287932020-04-17 18:09:03 -060012from dtoc import fdt_util
Simon Glassbf776672020-04-17 18:09:04 -060013from patman import tools
Simon Glass16287932020-04-17 18:09:03 -060014from patman.tools import ToHex, ToHexSize
Simon Glassbf776672020-04-17 18:09:04 -060015from patman import tout
Simon Glassbf7fd502016-11-25 20:15:51 -070016
17modules = {}
18
Simon Glass53af22a2018-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 Glass41b8ba02019-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 Glass53af22a2018-07-17 13:25:32 -060028
Simon Glassbf7fd502016-11-25 20:15:51 -070029class Entry(object):
Simon Glass25ac0e62018-06-01 09:38:14 -060030 """An Entry in the section
Simon Glassbf7fd502016-11-25 20:15:51 -070031
32 An entry corresponds to a single node in the device-tree description
Simon Glass25ac0e62018-06-01 09:38:14 -060033 of the section. Each entry ends up being a part of the final section.
Simon Glassbf7fd502016-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 Glass8122f392018-07-17 13:25:28 -060041 section: Section object containing this entry
Simon Glassbf7fd502016-11-25 20:15:51 -070042 node: The node that created this entry
Simon Glass3ab95982018-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 Glassbf7fd502016-11-25 20:15:51 -070045 size: Entry size in bytes, None if not known
Simon Glass9a5d3dc2019-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 Glass8287ee82019-07-08 14:25:30 -060048 uncomp_size: Size of uncompressed data in bytes, if the entry is
49 compressed, else None
Simon Glassbf7fd502016-11-25 20:15:51 -070050 contents_size: Size of contents in bytes, 0 by default
Simon Glass4eec34c2020-10-26 17:40:10 -060051 align: Entry start offset alignment relative to the start of the
52 containing section, or None
Simon Glassbf7fd502016-11-25 20:15:51 -070053 align_size: Entry size alignment, or None
Simon Glass4eec34c2020-10-26 17:40:10 -060054 align_end: Entry end offset alignment relative to the start of the
55 containing section, or None
Simon Glassf90d9062020-10-26 17:40:09 -060056 pad_before: Number of pad bytes before the contents when it is placed
57 in the containing section, 0 if none. The pad bytes become part of
58 the entry.
59 pad_after: Number of pad bytes after the contents when it is placed in
60 the containing section, 0 if none. The pad bytes become part of
61 the entry.
62 data: Contents of entry (string of bytes). This does not include
Simon Glass97c3e9a2020-10-26 17:40:15 -060063 padding created by pad_before or pad_after. If the entry is
64 compressed, this contains the compressed data.
65 uncomp_data: Original uncompressed data, if this entry is compressed,
66 else None
Simon Glass8287ee82019-07-08 14:25:30 -060067 compress: Compression algoithm used (e.g. 'lz4'), 'none' if none
Simon Glassc52c9e72019-07-08 14:25:37 -060068 orig_offset: Original offset value read from node
69 orig_size: Original size value read from node
Simon Glass87958982020-09-01 05:13:57 -060070 missing: True if this entry is missing its contents
71 allow_missing: Allow children of this entry to be missing (used by
72 subclasses such as Entry_section)
73 external: True if this entry contains an external binary blob
Simon Glassbf7fd502016-11-25 20:15:51 -070074 """
Simon Glassc6bd6e22019-07-20 12:23:45 -060075 def __init__(self, section, etype, node, name_prefix=''):
Simon Glass8dbb7442019-08-24 07:22:44 -060076 # Put this here to allow entry-docs and help to work without libfdt
77 global state
Simon Glass16287932020-04-17 18:09:03 -060078 from binman import state
Simon Glass8dbb7442019-08-24 07:22:44 -060079
Simon Glass25ac0e62018-06-01 09:38:14 -060080 self.section = section
Simon Glassbf7fd502016-11-25 20:15:51 -070081 self.etype = etype
82 self._node = node
Simon Glassc8d48ef2018-06-01 09:38:21 -060083 self.name = node and (name_prefix + node.name) or 'none'
Simon Glass3ab95982018-08-01 15:22:37 -060084 self.offset = None
Simon Glassbf7fd502016-11-25 20:15:51 -070085 self.size = None
Simon Glass9a5d3dc2019-10-31 07:43:02 -060086 self.pre_reset_size = None
Simon Glass8287ee82019-07-08 14:25:30 -060087 self.uncomp_size = None
Simon Glass24d0d3c2018-07-17 13:25:47 -060088 self.data = None
Simon Glass97c3e9a2020-10-26 17:40:15 -060089 self.uncomp_data = None
Simon Glassbf7fd502016-11-25 20:15:51 -070090 self.contents_size = 0
91 self.align = None
92 self.align_size = None
93 self.align_end = None
94 self.pad_before = 0
95 self.pad_after = 0
Simon Glass3ab95982018-08-01 15:22:37 -060096 self.offset_unset = False
Simon Glassdbf6be92018-08-01 15:22:42 -060097 self.image_pos = None
Simon Glassba64a0b2018-09-14 04:57:29 -060098 self._expand_size = False
Simon Glass8287ee82019-07-08 14:25:30 -060099 self.compress = 'none'
Simon Glassb1cca952020-07-09 18:39:40 -0600100 self.missing = False
Simon Glass87958982020-09-01 05:13:57 -0600101 self.external = False
102 self.allow_missing = False
Simon Glassbf7fd502016-11-25 20:15:51 -0700103
104 @staticmethod
Simon Glassc073ced2019-07-08 14:25:31 -0600105 def Lookup(node_path, etype):
Simon Glassfd8d1f72018-07-17 13:25:36 -0600106 """Look up the entry class for a node.
Simon Glassbf7fd502016-11-25 20:15:51 -0700107
108 Args:
Simon Glassfd8d1f72018-07-17 13:25:36 -0600109 node_node: Path name of Node object containing information about
110 the entry to create (used for errors)
111 etype: Entry type to use
Simon Glassbf7fd502016-11-25 20:15:51 -0700112
113 Returns:
Simon Glassfd8d1f72018-07-17 13:25:36 -0600114 The entry class object if found, else None
Simon Glassbf7fd502016-11-25 20:15:51 -0700115 """
Simon Glassdd57c132018-06-01 09:38:11 -0600116 # Convert something like 'u-boot@0' to 'u_boot' since we are only
117 # interested in the type.
Simon Glassbf7fd502016-11-25 20:15:51 -0700118 module_name = etype.replace('-', '_')
Simon Glassdd57c132018-06-01 09:38:11 -0600119 if '@' in module_name:
120 module_name = module_name.split('@')[0]
Simon Glassbf7fd502016-11-25 20:15:51 -0700121 module = modules.get(module_name)
122
Simon Glassbadf0ec2018-06-01 09:38:15 -0600123 # Also allow entry-type modules to be brought in from the etype directory.
124
Simon Glassbf7fd502016-11-25 20:15:51 -0700125 # Import the module if we have not already done so.
126 if not module:
127 try:
Simon Glass16287932020-04-17 18:09:03 -0600128 module = importlib.import_module('binman.etype.' + module_name)
Simon Glassfd8d1f72018-07-17 13:25:36 -0600129 except ImportError as e:
130 raise ValueError("Unknown entry type '%s' in node '%s' (expected etype/%s.py, error '%s'" %
131 (etype, node_path, module_name, e))
Simon Glassbf7fd502016-11-25 20:15:51 -0700132 modules[module_name] = module
133
Simon Glassfd8d1f72018-07-17 13:25:36 -0600134 # Look up the expected class name
135 return getattr(module, 'Entry_%s' % module_name)
136
137 @staticmethod
138 def Create(section, node, etype=None):
139 """Create a new entry for a node.
140
141 Args:
142 section: Section object containing this node
143 node: Node object containing information about the entry to
144 create
145 etype: Entry type to use, or None to work it out (used for tests)
146
147 Returns:
148 A new Entry object of the correct type (a subclass of Entry)
149 """
150 if not etype:
151 etype = fdt_util.GetString(node, 'type', node.name)
Simon Glassc073ced2019-07-08 14:25:31 -0600152 obj = Entry.Lookup(node.path, etype)
Simon Glassfd8d1f72018-07-17 13:25:36 -0600153
Simon Glassbf7fd502016-11-25 20:15:51 -0700154 # Call its constructor to get the object we want.
Simon Glass25ac0e62018-06-01 09:38:14 -0600155 return obj(section, etype, node)
Simon Glassbf7fd502016-11-25 20:15:51 -0700156
157 def ReadNode(self):
158 """Read entry information from the node
159
Simon Glassc6bd6e22019-07-20 12:23:45 -0600160 This must be called as the first thing after the Entry is created.
161
Simon Glassbf7fd502016-11-25 20:15:51 -0700162 This reads all the fields we recognise from the node, ready for use.
163 """
Simon Glass15a587c2018-07-17 13:25:51 -0600164 if 'pos' in self._node.props:
165 self.Raise("Please use 'offset' instead of 'pos'")
Simon Glass3ab95982018-08-01 15:22:37 -0600166 self.offset = fdt_util.GetInt(self._node, 'offset')
Simon Glassbf7fd502016-11-25 20:15:51 -0700167 self.size = fdt_util.GetInt(self._node, 'size')
Simon Glass12bb1a92019-07-20 12:23:51 -0600168 self.orig_offset = fdt_util.GetInt(self._node, 'orig-offset')
169 self.orig_size = fdt_util.GetInt(self._node, 'orig-size')
170 if self.GetImage().copy_to_orig:
171 self.orig_offset = self.offset
172 self.orig_size = self.size
Simon Glassc52c9e72019-07-08 14:25:37 -0600173
Simon Glassffded752019-07-08 14:25:46 -0600174 # These should not be set in input files, but are set in an FDT map,
175 # which is also read by this code.
176 self.image_pos = fdt_util.GetInt(self._node, 'image-pos')
177 self.uncomp_size = fdt_util.GetInt(self._node, 'uncomp-size')
178
Simon Glassbf7fd502016-11-25 20:15:51 -0700179 self.align = fdt_util.GetInt(self._node, 'align')
180 if tools.NotPowerOfTwo(self.align):
181 raise ValueError("Node '%s': Alignment %s must be a power of two" %
182 (self._node.path, self.align))
183 self.pad_before = fdt_util.GetInt(self._node, 'pad-before', 0)
184 self.pad_after = fdt_util.GetInt(self._node, 'pad-after', 0)
185 self.align_size = fdt_util.GetInt(self._node, 'align-size')
186 if tools.NotPowerOfTwo(self.align_size):
Simon Glass8beb11e2019-07-08 14:25:47 -0600187 self.Raise("Alignment size %s must be a power of two" %
188 self.align_size)
Simon Glassbf7fd502016-11-25 20:15:51 -0700189 self.align_end = fdt_util.GetInt(self._node, 'align-end')
Simon Glass3ab95982018-08-01 15:22:37 -0600190 self.offset_unset = fdt_util.GetBool(self._node, 'offset-unset')
Simon Glassba64a0b2018-09-14 04:57:29 -0600191 self.expand_size = fdt_util.GetBool(self._node, 'expand-size')
Simon Glassb2381432020-09-06 10:39:09 -0600192 self.missing_msg = fdt_util.GetString(self._node, 'missing-msg')
Simon Glassbf7fd502016-11-25 20:15:51 -0700193
Simon Glass87c96292020-10-26 17:40:06 -0600194 # This is only supported by blobs and sections at present
195 self.compress = fdt_util.GetString(self._node, 'compress', 'none')
196
Simon Glass6c234bf2018-09-14 04:57:18 -0600197 def GetDefaultFilename(self):
198 return None
199
Simon Glassa8adb6d2019-07-20 12:23:28 -0600200 def GetFdts(self):
201 """Get the device trees used by this entry
Simon Glass539aece2018-09-14 04:57:22 -0600202
203 Returns:
Simon Glassa8adb6d2019-07-20 12:23:28 -0600204 Empty dict, if this entry is not a .dtb, otherwise:
205 Dict:
206 key: Filename from this entry (without the path)
Simon Glass4bdd3002019-07-20 12:23:31 -0600207 value: Tuple:
Simon Glassadb67bb2021-03-18 20:25:02 +1300208 Entry object for this dtb
Simon Glass4bdd3002019-07-20 12:23:31 -0600209 Filename of file containing this dtb
Simon Glass539aece2018-09-14 04:57:22 -0600210 """
Simon Glassa8adb6d2019-07-20 12:23:28 -0600211 return {}
Simon Glass539aece2018-09-14 04:57:22 -0600212
Simon Glass0a98b282018-09-14 04:57:28 -0600213 def ExpandEntries(self):
Simon Glassa01d1a22021-03-18 20:24:52 +1300214 """Expand out entries which produce other entries
215
216 Some entries generate subnodes automatically, from which sub-entries
217 are then created. This method allows those to be added to the binman
218 definition for the current image. An entry which implements this method
219 should call state.AddSubnode() to add a subnode and can add properties
220 with state.AddString(), etc.
221
222 An example is 'files', which produces a section containing a list of
223 files.
224 """
Simon Glass0a98b282018-09-14 04:57:28 -0600225 pass
226
Simon Glassa9fad072020-10-26 17:40:17 -0600227 def AddMissingProperties(self, have_image_pos):
228 """Add new properties to the device tree as needed for this entry
229
230 Args:
231 have_image_pos: True if this entry has an image position. This can
232 be False if its parent section is compressed, since compression
233 groups all entries together into a compressed block of data,
234 obscuring the start of each individual child entry
235 """
236 for prop in ['offset', 'size']:
Simon Glass078ab1a2018-07-06 10:27:41 -0600237 if not prop in self._node.props:
Simon Glassf46621d2018-09-14 04:57:21 -0600238 state.AddZeroProp(self._node, prop)
Simon Glassa9fad072020-10-26 17:40:17 -0600239 if have_image_pos and 'image-pos' not in self._node.props:
240 state.AddZeroProp(self._node, 'image-pos')
Simon Glass12bb1a92019-07-20 12:23:51 -0600241 if self.GetImage().allow_repack:
242 if self.orig_offset is not None:
243 state.AddZeroProp(self._node, 'orig-offset', True)
244 if self.orig_size is not None:
245 state.AddZeroProp(self._node, 'orig-size', True)
246
Simon Glass8287ee82019-07-08 14:25:30 -0600247 if self.compress != 'none':
248 state.AddZeroProp(self._node, 'uncomp-size')
Simon Glasse0e5df92018-09-14 04:57:31 -0600249 err = state.CheckAddHashProp(self._node)
250 if err:
251 self.Raise(err)
Simon Glass078ab1a2018-07-06 10:27:41 -0600252
253 def SetCalculatedProperties(self):
254 """Set the value of device-tree properties calculated by binman"""
Simon Glassf46621d2018-09-14 04:57:21 -0600255 state.SetInt(self._node, 'offset', self.offset)
256 state.SetInt(self._node, 'size', self.size)
Simon Glass8beb11e2019-07-08 14:25:47 -0600257 base = self.section.GetRootSkipAtStart() if self.section else 0
Simon Glassa9fad072020-10-26 17:40:17 -0600258 if self.image_pos is not None:
Simon Glass08594d42020-11-02 12:55:44 -0700259 state.SetInt(self._node, 'image-pos', self.image_pos - base)
Simon Glass12bb1a92019-07-20 12:23:51 -0600260 if self.GetImage().allow_repack:
261 if self.orig_offset is not None:
262 state.SetInt(self._node, 'orig-offset', self.orig_offset, True)
263 if self.orig_size is not None:
264 state.SetInt(self._node, 'orig-size', self.orig_size, True)
Simon Glass8287ee82019-07-08 14:25:30 -0600265 if self.uncomp_size is not None:
266 state.SetInt(self._node, 'uncomp-size', self.uncomp_size)
Simon Glasse0e5df92018-09-14 04:57:31 -0600267 state.CheckSetHashValue(self._node, self.GetData)
Simon Glass078ab1a2018-07-06 10:27:41 -0600268
Simon Glassecab8972018-07-06 10:27:40 -0600269 def ProcessFdt(self, fdt):
Simon Glass6ed45ba2018-09-14 04:57:24 -0600270 """Allow entries to adjust the device tree
271
272 Some entries need to adjust the device tree for their purposes. This
273 may involve adding or deleting properties.
274
275 Returns:
276 True if processing is complete
277 False if processing could not be completed due to a dependency.
278 This will cause the entry to be retried after others have been
279 called
280 """
Simon Glassecab8972018-07-06 10:27:40 -0600281 return True
282
Simon Glassc8d48ef2018-06-01 09:38:21 -0600283 def SetPrefix(self, prefix):
284 """Set the name prefix for a node
285
286 Args:
287 prefix: Prefix to set, or '' to not use a prefix
288 """
289 if prefix:
290 self.name = prefix + self.name
291
Simon Glass5c890232018-07-06 10:27:19 -0600292 def SetContents(self, data):
293 """Set the contents of an entry
294
295 This sets both the data and content_size properties
296
297 Args:
Simon Glass5b463fc2019-07-08 14:25:33 -0600298 data: Data to set to the contents (bytes)
Simon Glass5c890232018-07-06 10:27:19 -0600299 """
300 self.data = data
301 self.contents_size = len(self.data)
302
303 def ProcessContentsUpdate(self, data):
Simon Glass5b463fc2019-07-08 14:25:33 -0600304 """Update the contents of an entry, after the size is fixed
Simon Glass5c890232018-07-06 10:27:19 -0600305
Simon Glassa0dcaf22019-07-08 14:25:35 -0600306 This checks that the new data is the same size as the old. If the size
307 has changed, this triggers a re-run of the packing algorithm.
Simon Glass5c890232018-07-06 10:27:19 -0600308
309 Args:
Simon Glass5b463fc2019-07-08 14:25:33 -0600310 data: Data to set to the contents (bytes)
Simon Glass5c890232018-07-06 10:27:19 -0600311
312 Raises:
313 ValueError if the new data size is not the same as the old
314 """
Simon Glassa0dcaf22019-07-08 14:25:35 -0600315 size_ok = True
Simon Glassc52c9e72019-07-08 14:25:37 -0600316 new_size = len(data)
Simon Glass61ec04f2019-07-20 12:23:58 -0600317 if state.AllowEntryExpansion() and new_size > self.contents_size:
318 # self.data will indicate the new size needed
319 size_ok = False
320 elif state.AllowEntryContraction() and new_size < self.contents_size:
321 size_ok = False
322
323 # If not allowed to change, try to deal with it or give up
324 if size_ok:
Simon Glassc52c9e72019-07-08 14:25:37 -0600325 if new_size > self.contents_size:
Simon Glass61ec04f2019-07-20 12:23:58 -0600326 self.Raise('Cannot update entry size from %d to %d' %
327 (self.contents_size, new_size))
328
329 # Don't let the data shrink. Pad it if necessary
330 if size_ok and new_size < self.contents_size:
331 data += tools.GetBytes(0, self.contents_size - new_size)
332
333 if not size_ok:
334 tout.Debug("Entry '%s' size change from %s to %s" % (
335 self._node.path, ToHex(self.contents_size),
336 ToHex(new_size)))
Simon Glass5c890232018-07-06 10:27:19 -0600337 self.SetContents(data)
Simon Glassa0dcaf22019-07-08 14:25:35 -0600338 return size_ok
Simon Glass5c890232018-07-06 10:27:19 -0600339
Simon Glassbf7fd502016-11-25 20:15:51 -0700340 def ObtainContents(self):
341 """Figure out the contents of an entry.
342
343 Returns:
344 True if the contents were found, False if another call is needed
345 after the other entries are processed.
346 """
347 # No contents by default: subclasses can implement this
348 return True
349
Simon Glassc52c9e72019-07-08 14:25:37 -0600350 def ResetForPack(self):
351 """Reset offset/size fields so that packing can be done again"""
Simon Glass9f297b02019-07-20 12:23:36 -0600352 self.Detail('ResetForPack: offset %s->%s, size %s->%s' %
353 (ToHex(self.offset), ToHex(self.orig_offset),
354 ToHex(self.size), ToHex(self.orig_size)))
Simon Glass9a5d3dc2019-10-31 07:43:02 -0600355 self.pre_reset_size = self.size
Simon Glassc52c9e72019-07-08 14:25:37 -0600356 self.offset = self.orig_offset
357 self.size = self.orig_size
358
Simon Glass3ab95982018-08-01 15:22:37 -0600359 def Pack(self, offset):
Simon Glass25ac0e62018-06-01 09:38:14 -0600360 """Figure out how to pack the entry into the section
Simon Glassbf7fd502016-11-25 20:15:51 -0700361
362 Most of the time the entries are not fully specified. There may be
363 an alignment but no size. In that case we take the size from the
364 contents of the entry.
365
Simon Glass3ab95982018-08-01 15:22:37 -0600366 If an entry has no hard-coded offset, it will be placed at @offset.
Simon Glassbf7fd502016-11-25 20:15:51 -0700367
Simon Glass3ab95982018-08-01 15:22:37 -0600368 Once this function is complete, both the offset and size of the
Simon Glassbf7fd502016-11-25 20:15:51 -0700369 entry will be know.
370
371 Args:
Simon Glass3ab95982018-08-01 15:22:37 -0600372 Current section offset pointer
Simon Glassbf7fd502016-11-25 20:15:51 -0700373
374 Returns:
Simon Glass3ab95982018-08-01 15:22:37 -0600375 New section offset pointer (after this entry)
Simon Glassbf7fd502016-11-25 20:15:51 -0700376 """
Simon Glass9f297b02019-07-20 12:23:36 -0600377 self.Detail('Packing: offset=%s, size=%s, content_size=%x' %
378 (ToHex(self.offset), ToHex(self.size),
379 self.contents_size))
Simon Glass3ab95982018-08-01 15:22:37 -0600380 if self.offset is None:
381 if self.offset_unset:
382 self.Raise('No offset set with offset-unset: should another '
383 'entry provide this correct offset?')
384 self.offset = tools.Align(offset, self.align)
Simon Glassbf7fd502016-11-25 20:15:51 -0700385 needed = self.pad_before + self.contents_size + self.pad_after
386 needed = tools.Align(needed, self.align_size)
387 size = self.size
388 if not size:
389 size = needed
Simon Glass3ab95982018-08-01 15:22:37 -0600390 new_offset = self.offset + size
391 aligned_offset = tools.Align(new_offset, self.align_end)
392 if aligned_offset != new_offset:
393 size = aligned_offset - self.offset
394 new_offset = aligned_offset
Simon Glassbf7fd502016-11-25 20:15:51 -0700395
396 if not self.size:
397 self.size = size
398
399 if self.size < needed:
400 self.Raise("Entry contents size is %#x (%d) but entry size is "
401 "%#x (%d)" % (needed, needed, self.size, self.size))
402 # Check that the alignment is correct. It could be wrong if the
Simon Glass3ab95982018-08-01 15:22:37 -0600403 # and offset or size values were provided (i.e. not calculated), but
Simon Glassbf7fd502016-11-25 20:15:51 -0700404 # conflict with the provided alignment values
405 if self.size != tools.Align(self.size, self.align_size):
406 self.Raise("Size %#x (%d) does not match align-size %#x (%d)" %
407 (self.size, self.size, self.align_size, self.align_size))
Simon Glass3ab95982018-08-01 15:22:37 -0600408 if self.offset != tools.Align(self.offset, self.align):
409 self.Raise("Offset %#x (%d) does not match align %#x (%d)" %
410 (self.offset, self.offset, self.align, self.align))
Simon Glass9f297b02019-07-20 12:23:36 -0600411 self.Detail(' - packed: offset=%#x, size=%#x, content_size=%#x, next_offset=%x' %
412 (self.offset, self.size, self.contents_size, new_offset))
Simon Glassbf7fd502016-11-25 20:15:51 -0700413
Simon Glass3ab95982018-08-01 15:22:37 -0600414 return new_offset
Simon Glassbf7fd502016-11-25 20:15:51 -0700415
416 def Raise(self, msg):
417 """Convenience function to raise an error referencing a node"""
418 raise ValueError("Node '%s': %s" % (self._node.path, msg))
419
Simon Glass9f297b02019-07-20 12:23:36 -0600420 def Detail(self, msg):
421 """Convenience function to log detail referencing a node"""
422 tag = "Node '%s'" % self._node.path
423 tout.Detail('%30s: %s' % (tag, msg))
424
Simon Glass53af22a2018-07-17 13:25:32 -0600425 def GetEntryArgsOrProps(self, props, required=False):
426 """Return the values of a set of properties
427
428 Args:
429 props: List of EntryArg objects
430
431 Raises:
432 ValueError if a property is not found
433 """
434 values = []
435 missing = []
436 for prop in props:
437 python_prop = prop.name.replace('-', '_')
438 if hasattr(self, python_prop):
439 value = getattr(self, python_prop)
440 else:
441 value = None
442 if value is None:
443 value = self.GetArg(prop.name, prop.datatype)
444 if value is None and required:
445 missing.append(prop.name)
446 values.append(value)
447 if missing:
Simon Glass939d1062021-01-06 21:35:16 -0700448 self.GetImage().MissingArgs(self, missing)
Simon Glass53af22a2018-07-17 13:25:32 -0600449 return values
450
Simon Glassbf7fd502016-11-25 20:15:51 -0700451 def GetPath(self):
452 """Get the path of a node
453
454 Returns:
455 Full path of the node for this entry
456 """
457 return self._node.path
458
459 def GetData(self):
Simon Glass63e7ba62020-10-26 17:40:16 -0600460 """Get the contents of an entry
461
462 Returns:
463 bytes content of the entry, excluding any padding. If the entry is
464 compressed, the compressed data is returned
465 """
Simon Glass9f297b02019-07-20 12:23:36 -0600466 self.Detail('GetData: size %s' % ToHexSize(self.data))
Simon Glassbf7fd502016-11-25 20:15:51 -0700467 return self.data
468
Simon Glass271a0832020-11-02 12:55:43 -0700469 def GetPaddedData(self, data=None):
470 """Get the data for an entry including any padding
471
472 Gets the entry data and uses its section's pad-byte value to add padding
473 before and after as defined by the pad-before and pad-after properties.
474
475 This does not consider alignment.
476
477 Returns:
478 Contents of the entry along with any pad bytes before and
479 after it (bytes)
480 """
481 if data is None:
482 data = self.GetData()
483 return self.section.GetPaddedDataForEntry(self, data)
484
Simon Glass3ab95982018-08-01 15:22:37 -0600485 def GetOffsets(self):
Simon Glassed7dd5e2019-07-08 13:18:30 -0600486 """Get the offsets for siblings
487
488 Some entry types can contain information about the position or size of
489 other entries. An example of this is the Intel Flash Descriptor, which
490 knows where the Intel Management Engine section should go.
491
492 If this entry knows about the position of other entries, it can specify
493 this by returning values here
494
495 Returns:
496 Dict:
497 key: Entry type
498 value: List containing position and size of the given entry
Simon Glasscf549042019-07-08 13:18:39 -0600499 type. Either can be None if not known
Simon Glassed7dd5e2019-07-08 13:18:30 -0600500 """
Simon Glassbf7fd502016-11-25 20:15:51 -0700501 return {}
502
Simon Glasscf549042019-07-08 13:18:39 -0600503 def SetOffsetSize(self, offset, size):
504 """Set the offset and/or size of an entry
505
506 Args:
507 offset: New offset, or None to leave alone
508 size: New size, or None to leave alone
509 """
510 if offset is not None:
511 self.offset = offset
512 if size is not None:
513 self.size = size
Simon Glassbf7fd502016-11-25 20:15:51 -0700514
Simon Glassdbf6be92018-08-01 15:22:42 -0600515 def SetImagePos(self, image_pos):
516 """Set the position in the image
517
518 Args:
519 image_pos: Position of this entry in the image
520 """
521 self.image_pos = image_pos + self.offset
522
Simon Glassbf7fd502016-11-25 20:15:51 -0700523 def ProcessContents(self):
Simon Glassa0dcaf22019-07-08 14:25:35 -0600524 """Do any post-packing updates of entry contents
525
526 This function should call ProcessContentsUpdate() to update the entry
527 contents, if necessary, returning its return value here.
528
529 Args:
530 data: Data to set to the contents (bytes)
531
532 Returns:
533 True if the new data size is OK, False if expansion is needed
534
535 Raises:
536 ValueError if the new data size is not the same as the old and
537 state.AllowEntryExpansion() is False
538 """
539 return True
Simon Glass19790632017-11-13 18:55:01 -0700540
Simon Glassf55382b2018-06-01 09:38:13 -0600541 def WriteSymbols(self, section):
Simon Glass19790632017-11-13 18:55:01 -0700542 """Write symbol values into binary files for access at run time
543
544 Args:
Simon Glassf55382b2018-06-01 09:38:13 -0600545 section: Section containing the entry
Simon Glass19790632017-11-13 18:55:01 -0700546 """
547 pass
Simon Glass18546952018-06-01 09:38:16 -0600548
Simon Glass6ddd6112020-10-26 17:40:18 -0600549 def CheckEntries(self):
Simon Glass3ab95982018-08-01 15:22:37 -0600550 """Check that the entry offsets are correct
Simon Glass18546952018-06-01 09:38:16 -0600551
Simon Glass3ab95982018-08-01 15:22:37 -0600552 This is used for entries which have extra offset requirements (other
Simon Glass18546952018-06-01 09:38:16 -0600553 than having to be fully inside their section). Sub-classes can implement
554 this function and raise if there is a problem.
555 """
556 pass
Simon Glass3b0c3822018-06-01 09:38:20 -0600557
Simon Glass8122f392018-07-17 13:25:28 -0600558 @staticmethod
Simon Glass163ed6c2018-09-14 04:57:36 -0600559 def GetStr(value):
560 if value is None:
561 return '<none> '
562 return '%08x' % value
563
564 @staticmethod
Simon Glass1be70d22018-07-17 13:25:49 -0600565 def WriteMapLine(fd, indent, name, offset, size, image_pos):
Simon Glass163ed6c2018-09-14 04:57:36 -0600566 print('%s %s%s %s %s' % (Entry.GetStr(image_pos), ' ' * indent,
567 Entry.GetStr(offset), Entry.GetStr(size),
568 name), file=fd)
Simon Glass8122f392018-07-17 13:25:28 -0600569
Simon Glass3b0c3822018-06-01 09:38:20 -0600570 def WriteMap(self, fd, indent):
571 """Write a map of the entry to a .map file
572
573 Args:
574 fd: File to write the map to
575 indent: Curent indent level of map (0=none, 1=one level, etc.)
576 """
Simon Glass1be70d22018-07-17 13:25:49 -0600577 self.WriteMapLine(fd, indent, self.name, self.offset, self.size,
578 self.image_pos)
Simon Glass53af22a2018-07-17 13:25:32 -0600579
Simon Glass11e36cc2018-07-17 13:25:38 -0600580 def GetEntries(self):
581 """Return a list of entries contained by this entry
582
583 Returns:
584 List of entries, or None if none. A normal entry has no entries
585 within it so will return None
586 """
587 return None
588
Simon Glass53af22a2018-07-17 13:25:32 -0600589 def GetArg(self, name, datatype=str):
590 """Get the value of an entry argument or device-tree-node property
591
592 Some node properties can be provided as arguments to binman. First check
593 the entry arguments, and fall back to the device tree if not found
594
595 Args:
596 name: Argument name
597 datatype: Data type (str or int)
598
599 Returns:
600 Value of argument as a string or int, or None if no value
601
602 Raises:
603 ValueError if the argument cannot be converted to in
604 """
Simon Glassc55a50f2018-09-14 04:57:19 -0600605 value = state.GetEntryArg(name)
Simon Glass53af22a2018-07-17 13:25:32 -0600606 if value is not None:
607 if datatype == int:
608 try:
609 value = int(value)
610 except ValueError:
611 self.Raise("Cannot convert entry arg '%s' (value '%s') to integer" %
612 (name, value))
613 elif datatype == str:
614 pass
615 else:
616 raise ValueError("GetArg() internal error: Unknown data type '%s'" %
617 datatype)
618 else:
619 value = fdt_util.GetDatatype(self._node, name, datatype)
620 return value
Simon Glassfd8d1f72018-07-17 13:25:36 -0600621
622 @staticmethod
623 def WriteDocs(modules, test_missing=None):
624 """Write out documentation about the various entry types to stdout
625
626 Args:
627 modules: List of modules to include
628 test_missing: Used for testing. This is a module to report
629 as missing
630 """
631 print('''Binman Entry Documentation
632===========================
633
634This file describes the entry types supported by binman. These entry types can
635be placed in an image one by one to build up a final firmware image. It is
636fairly easy to create new entry types. Just add a new file to the 'etype'
637directory. You can use the existing entries as examples.
638
639Note that some entries are subclasses of others, using and extending their
640features to produce new behaviours.
641
642
643''')
644 modules = sorted(modules)
645
646 # Don't show the test entry
647 if '_testing' in modules:
648 modules.remove('_testing')
649 missing = []
650 for name in modules:
Simon Glass16287932020-04-17 18:09:03 -0600651 module = Entry.Lookup('WriteDocs', name)
Simon Glassfd8d1f72018-07-17 13:25:36 -0600652 docs = getattr(module, '__doc__')
653 if test_missing == name:
654 docs = None
655 if docs:
656 lines = docs.splitlines()
657 first_line = lines[0]
658 rest = [line[4:] for line in lines[1:]]
659 hdr = 'Entry: %s: %s' % (name.replace('_', '-'), first_line)
660 print(hdr)
661 print('-' * len(hdr))
662 print('\n'.join(rest))
663 print()
664 print()
665 else:
666 missing.append(name)
667
668 if missing:
669 raise ValueError('Documentation is missing for modules: %s' %
670 ', '.join(missing))
Simon Glassa326b492018-09-14 04:57:11 -0600671
672 def GetUniqueName(self):
673 """Get a unique name for a node
674
675 Returns:
676 String containing a unique name for a node, consisting of the name
677 of all ancestors (starting from within the 'binman' node) separated
678 by a dot ('.'). This can be useful for generating unique filesnames
679 in the output directory.
680 """
681 name = self.name
682 node = self._node
683 while node.parent:
684 node = node.parent
685 if node.name == 'binman':
686 break
687 name = '%s.%s' % (node.name, name)
688 return name
Simon Glassba64a0b2018-09-14 04:57:29 -0600689
690 def ExpandToLimit(self, limit):
691 """Expand an entry so that it ends at the given offset limit"""
692 if self.offset + self.size < limit:
693 self.size = limit - self.offset
694 # Request the contents again, since changing the size requires that
695 # the data grows. This should not fail, but check it to be sure.
696 if not self.ObtainContents():
697 self.Raise('Cannot obtain contents when expanding entry')
Simon Glassfa1c9372019-07-08 13:18:38 -0600698
699 def HasSibling(self, name):
700 """Check if there is a sibling of a given name
701
702 Returns:
703 True if there is an entry with this name in the the same section,
704 else False
705 """
706 return name in self.section.GetEntries()
Simon Glasscf228942019-07-08 14:25:28 -0600707
708 def GetSiblingImagePos(self, name):
709 """Return the image position of the given sibling
710
711 Returns:
712 Image position of sibling, or None if the sibling has no position,
713 or False if there is no such sibling
714 """
715 if not self.HasSibling(name):
716 return False
717 return self.section.GetEntries()[name].image_pos
Simon Glass41b8ba02019-07-08 14:25:43 -0600718
719 @staticmethod
720 def AddEntryInfo(entries, indent, name, etype, size, image_pos,
721 uncomp_size, offset, entry):
722 """Add a new entry to the entries list
723
724 Args:
725 entries: List (of EntryInfo objects) to add to
726 indent: Current indent level to add to list
727 name: Entry name (string)
728 etype: Entry type (string)
729 size: Entry size in bytes (int)
730 image_pos: Position within image in bytes (int)
731 uncomp_size: Uncompressed size if the entry uses compression, else
732 None
733 offset: Entry offset within parent in bytes (int)
734 entry: Entry object
735 """
736 entries.append(EntryInfo(indent, name, etype, size, image_pos,
737 uncomp_size, offset, entry))
738
739 def ListEntries(self, entries, indent):
740 """Add files in this entry to the list of entries
741
742 This can be overridden by subclasses which need different behaviour.
743
744 Args:
745 entries: List (of EntryInfo objects) to add to
746 indent: Current indent level to add to list
747 """
748 self.AddEntryInfo(entries, indent, self.name, self.etype, self.size,
749 self.image_pos, self.uncomp_size, self.offset, self)
Simon Glassf667e452019-07-08 14:25:50 -0600750
751 def ReadData(self, decomp=True):
752 """Read the data for an entry from the image
753
754 This is used when the image has been read in and we want to extract the
755 data for a particular entry from that image.
756
757 Args:
758 decomp: True to decompress any compressed data before returning it;
759 False to return the raw, uncompressed data
760
761 Returns:
762 Entry data (bytes)
763 """
764 # Use True here so that we get an uncompressed section to work from,
765 # although compressed sections are currently not supported
Simon Glass2d553c02019-09-25 08:56:21 -0600766 tout.Debug("ReadChildData section '%s', entry '%s'" %
767 (self.section.GetPath(), self.GetPath()))
Simon Glassa9cd39e2019-07-20 12:24:04 -0600768 data = self.section.ReadChildData(self, decomp)
769 return data
Simon Glassd5079332019-07-20 12:23:41 -0600770
Simon Glass4e185e82019-09-25 08:56:20 -0600771 def ReadChildData(self, child, decomp=True):
Simon Glass2d553c02019-09-25 08:56:21 -0600772 """Read the data for a particular child entry
Simon Glass4e185e82019-09-25 08:56:20 -0600773
774 This reads data from the parent and extracts the piece that relates to
775 the given child.
776
777 Args:
Simon Glass2d553c02019-09-25 08:56:21 -0600778 child: Child entry to read data for (must be valid)
Simon Glass4e185e82019-09-25 08:56:20 -0600779 decomp: True to decompress any compressed data before returning it;
780 False to return the raw, uncompressed data
781
782 Returns:
783 Data for the child (bytes)
784 """
785 pass
786
Simon Glassd5079332019-07-20 12:23:41 -0600787 def LoadData(self, decomp=True):
788 data = self.ReadData(decomp)
Simon Glass10f9d002019-07-20 12:23:50 -0600789 self.contents_size = len(data)
Simon Glassd5079332019-07-20 12:23:41 -0600790 self.ProcessContentsUpdate(data)
791 self.Detail('Loaded data size %x' % len(data))
Simon Glassc5ad04b2019-07-20 12:23:46 -0600792
793 def GetImage(self):
794 """Get the image containing this entry
795
796 Returns:
797 Image object containing this entry
798 """
799 return self.section.GetImage()
Simon Glass10f9d002019-07-20 12:23:50 -0600800
801 def WriteData(self, data, decomp=True):
802 """Write the data to an entry in the image
803
804 This is used when the image has been read in and we want to replace the
805 data for a particular entry in that image.
806
807 The image must be re-packed and written out afterwards.
808
809 Args:
810 data: Data to replace it with
811 decomp: True to compress the data if needed, False if data is
812 already compressed so should be used as is
813
814 Returns:
815 True if the data did not result in a resize of this entry, False if
816 the entry must be resized
817 """
Simon Glass9a5d3dc2019-10-31 07:43:02 -0600818 if self.size is not None:
819 self.contents_size = self.size
820 else:
821 self.contents_size = self.pre_reset_size
Simon Glass10f9d002019-07-20 12:23:50 -0600822 ok = self.ProcessContentsUpdate(data)
823 self.Detail('WriteData: size=%x, ok=%s' % (len(data), ok))
Simon Glass7210c892019-07-20 12:24:05 -0600824 section_ok = self.section.WriteChildData(self)
825 return ok and section_ok
826
827 def WriteChildData(self, child):
828 """Handle writing the data in a child entry
829
830 This should be called on the child's parent section after the child's
831 data has been updated. It
832
833 This base-class implementation does nothing, since the base Entry object
834 does not have any children.
835
836 Args:
837 child: Child Entry that was written
838
839 Returns:
840 True if the section could be updated successfully, False if the
841 data is such that the section could not updat
842 """
843 return True
Simon Glasseba1f0c2019-07-20 12:23:55 -0600844
845 def GetSiblingOrder(self):
846 """Get the relative order of an entry amoung its siblings
847
848 Returns:
849 'start' if this entry is first among siblings, 'end' if last,
850 otherwise None
851 """
852 entries = list(self.section.GetEntries().values())
853 if entries:
854 if self == entries[0]:
855 return 'start'
856 elif self == entries[-1]:
857 return 'end'
858 return 'middle'
Simon Glass4f9f1052020-07-09 18:39:38 -0600859
860 def SetAllowMissing(self, allow_missing):
861 """Set whether a section allows missing external blobs
862
863 Args:
864 allow_missing: True if allowed, False if not allowed
865 """
866 # This is meaningless for anything other than sections
867 pass
Simon Glassb1cca952020-07-09 18:39:40 -0600868
869 def CheckMissing(self, missing_list):
870 """Check if any entries in this section have missing external blobs
871
872 If there are missing blobs, the entries are added to the list
873
874 Args:
875 missing_list: List of Entry objects to be added to
876 """
877 if self.missing:
878 missing_list.append(self)
Simon Glass87958982020-09-01 05:13:57 -0600879
880 def GetAllowMissing(self):
881 """Get whether a section allows missing external blobs
882
883 Returns:
884 True if allowed, False if not allowed
885 """
886 return self.allow_missing
Simon Glassb2381432020-09-06 10:39:09 -0600887
888 def GetHelpTags(self):
889 """Get the tags use for missing-blob help
890
891 Returns:
892 list of possible tags, most desirable first
893 """
894 return list(filter(None, [self.missing_msg, self.name, self.etype]))
Simon Glass87c96292020-10-26 17:40:06 -0600895
896 def CompressData(self, indata):
897 """Compress data according to the entry's compression method
898
899 Args:
900 indata: Data to compress
901
902 Returns:
903 Compressed data (first word is the compressed size)
904 """
Simon Glass97c3e9a2020-10-26 17:40:15 -0600905 self.uncomp_data = indata
Simon Glass87c96292020-10-26 17:40:06 -0600906 if self.compress != 'none':
907 self.uncomp_size = len(indata)
908 data = tools.Compress(indata, self.compress)
909 return data