blob: c17a98958bd57ba1daa41f6de5bd8d8f4aefb6a9 [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 Glass3ab95982018-08-01 15:22:37 -060051 align: Entry start offset alignment, or None
Simon Glassbf7fd502016-11-25 20:15:51 -070052 align_size: Entry size alignment, or None
Simon Glass3ab95982018-08-01 15:22:37 -060053 align_end: Entry end offset alignment, or None
Simon Glassbf7fd502016-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 Glass8287ee82019-07-08 14:25:30 -060057 compress: Compression algoithm used (e.g. 'lz4'), 'none' if none
Simon Glassc52c9e72019-07-08 14:25:37 -060058 orig_offset: Original offset value read from node
59 orig_size: Original size value read from node
Simon Glassbf7fd502016-11-25 20:15:51 -070060 """
Simon Glassc6bd6e22019-07-20 12:23:45 -060061 def __init__(self, section, etype, node, name_prefix=''):
Simon Glass8dbb7442019-08-24 07:22:44 -060062 # Put this here to allow entry-docs and help to work without libfdt
63 global state
Simon Glass16287932020-04-17 18:09:03 -060064 from binman import state
Simon Glass8dbb7442019-08-24 07:22:44 -060065
Simon Glass25ac0e62018-06-01 09:38:14 -060066 self.section = section
Simon Glassbf7fd502016-11-25 20:15:51 -070067 self.etype = etype
68 self._node = node
Simon Glassc8d48ef2018-06-01 09:38:21 -060069 self.name = node and (name_prefix + node.name) or 'none'
Simon Glass3ab95982018-08-01 15:22:37 -060070 self.offset = None
Simon Glassbf7fd502016-11-25 20:15:51 -070071 self.size = None
Simon Glass9a5d3dc2019-10-31 07:43:02 -060072 self.pre_reset_size = None
Simon Glass8287ee82019-07-08 14:25:30 -060073 self.uncomp_size = None
Simon Glass24d0d3c2018-07-17 13:25:47 -060074 self.data = None
Simon Glassbf7fd502016-11-25 20:15:51 -070075 self.contents_size = 0
76 self.align = None
77 self.align_size = None
78 self.align_end = None
79 self.pad_before = 0
80 self.pad_after = 0
Simon Glass3ab95982018-08-01 15:22:37 -060081 self.offset_unset = False
Simon Glassdbf6be92018-08-01 15:22:42 -060082 self.image_pos = None
Simon Glassba64a0b2018-09-14 04:57:29 -060083 self._expand_size = False
Simon Glass8287ee82019-07-08 14:25:30 -060084 self.compress = 'none'
Simon Glassb1cca952020-07-09 18:39:40 -060085 self.missing = False
Simon Glassbf7fd502016-11-25 20:15:51 -070086
87 @staticmethod
Simon Glassc073ced2019-07-08 14:25:31 -060088 def Lookup(node_path, etype):
Simon Glassfd8d1f72018-07-17 13:25:36 -060089 """Look up the entry class for a node.
Simon Glassbf7fd502016-11-25 20:15:51 -070090
91 Args:
Simon Glassfd8d1f72018-07-17 13:25:36 -060092 node_node: Path name of Node object containing information about
93 the entry to create (used for errors)
94 etype: Entry type to use
Simon Glassbf7fd502016-11-25 20:15:51 -070095
96 Returns:
Simon Glassfd8d1f72018-07-17 13:25:36 -060097 The entry class object if found, else None
Simon Glassbf7fd502016-11-25 20:15:51 -070098 """
Simon Glassdd57c132018-06-01 09:38:11 -060099 # Convert something like 'u-boot@0' to 'u_boot' since we are only
100 # interested in the type.
Simon Glassbf7fd502016-11-25 20:15:51 -0700101 module_name = etype.replace('-', '_')
Simon Glassdd57c132018-06-01 09:38:11 -0600102 if '@' in module_name:
103 module_name = module_name.split('@')[0]
Simon Glassbf7fd502016-11-25 20:15:51 -0700104 module = modules.get(module_name)
105
Simon Glassbadf0ec2018-06-01 09:38:15 -0600106 # Also allow entry-type modules to be brought in from the etype directory.
107
Simon Glassbf7fd502016-11-25 20:15:51 -0700108 # Import the module if we have not already done so.
109 if not module:
110 try:
Simon Glass16287932020-04-17 18:09:03 -0600111 module = importlib.import_module('binman.etype.' + module_name)
Simon Glassfd8d1f72018-07-17 13:25:36 -0600112 except ImportError as e:
113 raise ValueError("Unknown entry type '%s' in node '%s' (expected etype/%s.py, error '%s'" %
114 (etype, node_path, module_name, e))
Simon Glassbf7fd502016-11-25 20:15:51 -0700115 modules[module_name] = module
116
Simon Glassfd8d1f72018-07-17 13:25:36 -0600117 # Look up the expected class name
118 return getattr(module, 'Entry_%s' % module_name)
119
120 @staticmethod
121 def Create(section, node, etype=None):
122 """Create a new entry for a node.
123
124 Args:
125 section: Section object containing this node
126 node: Node object containing information about the entry to
127 create
128 etype: Entry type to use, or None to work it out (used for tests)
129
130 Returns:
131 A new Entry object of the correct type (a subclass of Entry)
132 """
133 if not etype:
134 etype = fdt_util.GetString(node, 'type', node.name)
Simon Glassc073ced2019-07-08 14:25:31 -0600135 obj = Entry.Lookup(node.path, etype)
Simon Glassfd8d1f72018-07-17 13:25:36 -0600136
Simon Glassbf7fd502016-11-25 20:15:51 -0700137 # Call its constructor to get the object we want.
Simon Glass25ac0e62018-06-01 09:38:14 -0600138 return obj(section, etype, node)
Simon Glassbf7fd502016-11-25 20:15:51 -0700139
140 def ReadNode(self):
141 """Read entry information from the node
142
Simon Glassc6bd6e22019-07-20 12:23:45 -0600143 This must be called as the first thing after the Entry is created.
144
Simon Glassbf7fd502016-11-25 20:15:51 -0700145 This reads all the fields we recognise from the node, ready for use.
146 """
Simon Glass15a587c2018-07-17 13:25:51 -0600147 if 'pos' in self._node.props:
148 self.Raise("Please use 'offset' instead of 'pos'")
Simon Glass3ab95982018-08-01 15:22:37 -0600149 self.offset = fdt_util.GetInt(self._node, 'offset')
Simon Glassbf7fd502016-11-25 20:15:51 -0700150 self.size = fdt_util.GetInt(self._node, 'size')
Simon Glass12bb1a92019-07-20 12:23:51 -0600151 self.orig_offset = fdt_util.GetInt(self._node, 'orig-offset')
152 self.orig_size = fdt_util.GetInt(self._node, 'orig-size')
153 if self.GetImage().copy_to_orig:
154 self.orig_offset = self.offset
155 self.orig_size = self.size
Simon Glassc52c9e72019-07-08 14:25:37 -0600156
Simon Glassffded752019-07-08 14:25:46 -0600157 # These should not be set in input files, but are set in an FDT map,
158 # which is also read by this code.
159 self.image_pos = fdt_util.GetInt(self._node, 'image-pos')
160 self.uncomp_size = fdt_util.GetInt(self._node, 'uncomp-size')
161
Simon Glassbf7fd502016-11-25 20:15:51 -0700162 self.align = fdt_util.GetInt(self._node, 'align')
163 if tools.NotPowerOfTwo(self.align):
164 raise ValueError("Node '%s': Alignment %s must be a power of two" %
165 (self._node.path, self.align))
166 self.pad_before = fdt_util.GetInt(self._node, 'pad-before', 0)
167 self.pad_after = fdt_util.GetInt(self._node, 'pad-after', 0)
168 self.align_size = fdt_util.GetInt(self._node, 'align-size')
169 if tools.NotPowerOfTwo(self.align_size):
Simon Glass8beb11e2019-07-08 14:25:47 -0600170 self.Raise("Alignment size %s must be a power of two" %
171 self.align_size)
Simon Glassbf7fd502016-11-25 20:15:51 -0700172 self.align_end = fdt_util.GetInt(self._node, 'align-end')
Simon Glass3ab95982018-08-01 15:22:37 -0600173 self.offset_unset = fdt_util.GetBool(self._node, 'offset-unset')
Simon Glassba64a0b2018-09-14 04:57:29 -0600174 self.expand_size = fdt_util.GetBool(self._node, 'expand-size')
Simon Glassbf7fd502016-11-25 20:15:51 -0700175
Simon Glass6c234bf2018-09-14 04:57:18 -0600176 def GetDefaultFilename(self):
177 return None
178
Simon Glassa8adb6d2019-07-20 12:23:28 -0600179 def GetFdts(self):
180 """Get the device trees used by this entry
Simon Glass539aece2018-09-14 04:57:22 -0600181
182 Returns:
Simon Glassa8adb6d2019-07-20 12:23:28 -0600183 Empty dict, if this entry is not a .dtb, otherwise:
184 Dict:
185 key: Filename from this entry (without the path)
Simon Glass4bdd3002019-07-20 12:23:31 -0600186 value: Tuple:
187 Fdt object for this dtb, or None if not available
188 Filename of file containing this dtb
Simon Glass539aece2018-09-14 04:57:22 -0600189 """
Simon Glassa8adb6d2019-07-20 12:23:28 -0600190 return {}
Simon Glass539aece2018-09-14 04:57:22 -0600191
Simon Glass0a98b282018-09-14 04:57:28 -0600192 def ExpandEntries(self):
193 pass
194
Simon Glass078ab1a2018-07-06 10:27:41 -0600195 def AddMissingProperties(self):
196 """Add new properties to the device tree as needed for this entry"""
Simon Glassdbf6be92018-08-01 15:22:42 -0600197 for prop in ['offset', 'size', 'image-pos']:
Simon Glass078ab1a2018-07-06 10:27:41 -0600198 if not prop in self._node.props:
Simon Glassf46621d2018-09-14 04:57:21 -0600199 state.AddZeroProp(self._node, prop)
Simon Glass12bb1a92019-07-20 12:23:51 -0600200 if self.GetImage().allow_repack:
201 if self.orig_offset is not None:
202 state.AddZeroProp(self._node, 'orig-offset', True)
203 if self.orig_size is not None:
204 state.AddZeroProp(self._node, 'orig-size', True)
205
Simon Glass8287ee82019-07-08 14:25:30 -0600206 if self.compress != 'none':
207 state.AddZeroProp(self._node, 'uncomp-size')
Simon Glasse0e5df92018-09-14 04:57:31 -0600208 err = state.CheckAddHashProp(self._node)
209 if err:
210 self.Raise(err)
Simon Glass078ab1a2018-07-06 10:27:41 -0600211
212 def SetCalculatedProperties(self):
213 """Set the value of device-tree properties calculated by binman"""
Simon Glassf46621d2018-09-14 04:57:21 -0600214 state.SetInt(self._node, 'offset', self.offset)
215 state.SetInt(self._node, 'size', self.size)
Simon Glass8beb11e2019-07-08 14:25:47 -0600216 base = self.section.GetRootSkipAtStart() if self.section else 0
217 state.SetInt(self._node, 'image-pos', self.image_pos - base)
Simon Glass12bb1a92019-07-20 12:23:51 -0600218 if self.GetImage().allow_repack:
219 if self.orig_offset is not None:
220 state.SetInt(self._node, 'orig-offset', self.orig_offset, True)
221 if self.orig_size is not None:
222 state.SetInt(self._node, 'orig-size', self.orig_size, True)
Simon Glass8287ee82019-07-08 14:25:30 -0600223 if self.uncomp_size is not None:
224 state.SetInt(self._node, 'uncomp-size', self.uncomp_size)
Simon Glasse0e5df92018-09-14 04:57:31 -0600225 state.CheckSetHashValue(self._node, self.GetData)
Simon Glass078ab1a2018-07-06 10:27:41 -0600226
Simon Glassecab8972018-07-06 10:27:40 -0600227 def ProcessFdt(self, fdt):
Simon Glass6ed45ba2018-09-14 04:57:24 -0600228 """Allow entries to adjust the device tree
229
230 Some entries need to adjust the device tree for their purposes. This
231 may involve adding or deleting properties.
232
233 Returns:
234 True if processing is complete
235 False if processing could not be completed due to a dependency.
236 This will cause the entry to be retried after others have been
237 called
238 """
Simon Glassecab8972018-07-06 10:27:40 -0600239 return True
240
Simon Glassc8d48ef2018-06-01 09:38:21 -0600241 def SetPrefix(self, prefix):
242 """Set the name prefix for a node
243
244 Args:
245 prefix: Prefix to set, or '' to not use a prefix
246 """
247 if prefix:
248 self.name = prefix + self.name
249
Simon Glass5c890232018-07-06 10:27:19 -0600250 def SetContents(self, data):
251 """Set the contents of an entry
252
253 This sets both the data and content_size properties
254
255 Args:
Simon Glass5b463fc2019-07-08 14:25:33 -0600256 data: Data to set to the contents (bytes)
Simon Glass5c890232018-07-06 10:27:19 -0600257 """
258 self.data = data
259 self.contents_size = len(self.data)
260
261 def ProcessContentsUpdate(self, data):
Simon Glass5b463fc2019-07-08 14:25:33 -0600262 """Update the contents of an entry, after the size is fixed
Simon Glass5c890232018-07-06 10:27:19 -0600263
Simon Glassa0dcaf22019-07-08 14:25:35 -0600264 This checks that the new data is the same size as the old. If the size
265 has changed, this triggers a re-run of the packing algorithm.
Simon Glass5c890232018-07-06 10:27:19 -0600266
267 Args:
Simon Glass5b463fc2019-07-08 14:25:33 -0600268 data: Data to set to the contents (bytes)
Simon Glass5c890232018-07-06 10:27:19 -0600269
270 Raises:
271 ValueError if the new data size is not the same as the old
272 """
Simon Glassa0dcaf22019-07-08 14:25:35 -0600273 size_ok = True
Simon Glassc52c9e72019-07-08 14:25:37 -0600274 new_size = len(data)
Simon Glass61ec04f2019-07-20 12:23:58 -0600275 if state.AllowEntryExpansion() and new_size > self.contents_size:
276 # self.data will indicate the new size needed
277 size_ok = False
278 elif state.AllowEntryContraction() and new_size < self.contents_size:
279 size_ok = False
280
281 # If not allowed to change, try to deal with it or give up
282 if size_ok:
Simon Glassc52c9e72019-07-08 14:25:37 -0600283 if new_size > self.contents_size:
Simon Glass61ec04f2019-07-20 12:23:58 -0600284 self.Raise('Cannot update entry size from %d to %d' %
285 (self.contents_size, new_size))
286
287 # Don't let the data shrink. Pad it if necessary
288 if size_ok and new_size < self.contents_size:
289 data += tools.GetBytes(0, self.contents_size - new_size)
290
291 if not size_ok:
292 tout.Debug("Entry '%s' size change from %s to %s" % (
293 self._node.path, ToHex(self.contents_size),
294 ToHex(new_size)))
Simon Glass5c890232018-07-06 10:27:19 -0600295 self.SetContents(data)
Simon Glassa0dcaf22019-07-08 14:25:35 -0600296 return size_ok
Simon Glass5c890232018-07-06 10:27:19 -0600297
Simon Glassbf7fd502016-11-25 20:15:51 -0700298 def ObtainContents(self):
299 """Figure out the contents of an entry.
300
301 Returns:
302 True if the contents were found, False if another call is needed
303 after the other entries are processed.
304 """
305 # No contents by default: subclasses can implement this
306 return True
307
Simon Glassc52c9e72019-07-08 14:25:37 -0600308 def ResetForPack(self):
309 """Reset offset/size fields so that packing can be done again"""
Simon Glass9f297b02019-07-20 12:23:36 -0600310 self.Detail('ResetForPack: offset %s->%s, size %s->%s' %
311 (ToHex(self.offset), ToHex(self.orig_offset),
312 ToHex(self.size), ToHex(self.orig_size)))
Simon Glass9a5d3dc2019-10-31 07:43:02 -0600313 self.pre_reset_size = self.size
Simon Glassc52c9e72019-07-08 14:25:37 -0600314 self.offset = self.orig_offset
315 self.size = self.orig_size
316
Simon Glass3ab95982018-08-01 15:22:37 -0600317 def Pack(self, offset):
Simon Glass25ac0e62018-06-01 09:38:14 -0600318 """Figure out how to pack the entry into the section
Simon Glassbf7fd502016-11-25 20:15:51 -0700319
320 Most of the time the entries are not fully specified. There may be
321 an alignment but no size. In that case we take the size from the
322 contents of the entry.
323
Simon Glass3ab95982018-08-01 15:22:37 -0600324 If an entry has no hard-coded offset, it will be placed at @offset.
Simon Glassbf7fd502016-11-25 20:15:51 -0700325
Simon Glass3ab95982018-08-01 15:22:37 -0600326 Once this function is complete, both the offset and size of the
Simon Glassbf7fd502016-11-25 20:15:51 -0700327 entry will be know.
328
329 Args:
Simon Glass3ab95982018-08-01 15:22:37 -0600330 Current section offset pointer
Simon Glassbf7fd502016-11-25 20:15:51 -0700331
332 Returns:
Simon Glass3ab95982018-08-01 15:22:37 -0600333 New section offset pointer (after this entry)
Simon Glassbf7fd502016-11-25 20:15:51 -0700334 """
Simon Glass9f297b02019-07-20 12:23:36 -0600335 self.Detail('Packing: offset=%s, size=%s, content_size=%x' %
336 (ToHex(self.offset), ToHex(self.size),
337 self.contents_size))
Simon Glass3ab95982018-08-01 15:22:37 -0600338 if self.offset is None:
339 if self.offset_unset:
340 self.Raise('No offset set with offset-unset: should another '
341 'entry provide this correct offset?')
342 self.offset = tools.Align(offset, self.align)
Simon Glassbf7fd502016-11-25 20:15:51 -0700343 needed = self.pad_before + self.contents_size + self.pad_after
344 needed = tools.Align(needed, self.align_size)
345 size = self.size
346 if not size:
347 size = needed
Simon Glass3ab95982018-08-01 15:22:37 -0600348 new_offset = self.offset + size
349 aligned_offset = tools.Align(new_offset, self.align_end)
350 if aligned_offset != new_offset:
351 size = aligned_offset - self.offset
352 new_offset = aligned_offset
Simon Glassbf7fd502016-11-25 20:15:51 -0700353
354 if not self.size:
355 self.size = size
356
357 if self.size < needed:
358 self.Raise("Entry contents size is %#x (%d) but entry size is "
359 "%#x (%d)" % (needed, needed, self.size, self.size))
360 # Check that the alignment is correct. It could be wrong if the
Simon Glass3ab95982018-08-01 15:22:37 -0600361 # and offset or size values were provided (i.e. not calculated), but
Simon Glassbf7fd502016-11-25 20:15:51 -0700362 # conflict with the provided alignment values
363 if self.size != tools.Align(self.size, self.align_size):
364 self.Raise("Size %#x (%d) does not match align-size %#x (%d)" %
365 (self.size, self.size, self.align_size, self.align_size))
Simon Glass3ab95982018-08-01 15:22:37 -0600366 if self.offset != tools.Align(self.offset, self.align):
367 self.Raise("Offset %#x (%d) does not match align %#x (%d)" %
368 (self.offset, self.offset, self.align, self.align))
Simon Glass9f297b02019-07-20 12:23:36 -0600369 self.Detail(' - packed: offset=%#x, size=%#x, content_size=%#x, next_offset=%x' %
370 (self.offset, self.size, self.contents_size, new_offset))
Simon Glassbf7fd502016-11-25 20:15:51 -0700371
Simon Glass3ab95982018-08-01 15:22:37 -0600372 return new_offset
Simon Glassbf7fd502016-11-25 20:15:51 -0700373
374 def Raise(self, msg):
375 """Convenience function to raise an error referencing a node"""
376 raise ValueError("Node '%s': %s" % (self._node.path, msg))
377
Simon Glass9f297b02019-07-20 12:23:36 -0600378 def Detail(self, msg):
379 """Convenience function to log detail referencing a node"""
380 tag = "Node '%s'" % self._node.path
381 tout.Detail('%30s: %s' % (tag, msg))
382
Simon Glass53af22a2018-07-17 13:25:32 -0600383 def GetEntryArgsOrProps(self, props, required=False):
384 """Return the values of a set of properties
385
386 Args:
387 props: List of EntryArg objects
388
389 Raises:
390 ValueError if a property is not found
391 """
392 values = []
393 missing = []
394 for prop in props:
395 python_prop = prop.name.replace('-', '_')
396 if hasattr(self, python_prop):
397 value = getattr(self, python_prop)
398 else:
399 value = None
400 if value is None:
401 value = self.GetArg(prop.name, prop.datatype)
402 if value is None and required:
403 missing.append(prop.name)
404 values.append(value)
405 if missing:
406 self.Raise('Missing required properties/entry args: %s' %
407 (', '.join(missing)))
408 return values
409
Simon Glassbf7fd502016-11-25 20:15:51 -0700410 def GetPath(self):
411 """Get the path of a node
412
413 Returns:
414 Full path of the node for this entry
415 """
416 return self._node.path
417
418 def GetData(self):
Simon Glass9f297b02019-07-20 12:23:36 -0600419 self.Detail('GetData: size %s' % ToHexSize(self.data))
Simon Glassbf7fd502016-11-25 20:15:51 -0700420 return self.data
421
Simon Glass3ab95982018-08-01 15:22:37 -0600422 def GetOffsets(self):
Simon Glassed7dd5e2019-07-08 13:18:30 -0600423 """Get the offsets for siblings
424
425 Some entry types can contain information about the position or size of
426 other entries. An example of this is the Intel Flash Descriptor, which
427 knows where the Intel Management Engine section should go.
428
429 If this entry knows about the position of other entries, it can specify
430 this by returning values here
431
432 Returns:
433 Dict:
434 key: Entry type
435 value: List containing position and size of the given entry
Simon Glasscf549042019-07-08 13:18:39 -0600436 type. Either can be None if not known
Simon Glassed7dd5e2019-07-08 13:18:30 -0600437 """
Simon Glassbf7fd502016-11-25 20:15:51 -0700438 return {}
439
Simon Glasscf549042019-07-08 13:18:39 -0600440 def SetOffsetSize(self, offset, size):
441 """Set the offset and/or size of an entry
442
443 Args:
444 offset: New offset, or None to leave alone
445 size: New size, or None to leave alone
446 """
447 if offset is not None:
448 self.offset = offset
449 if size is not None:
450 self.size = size
Simon Glassbf7fd502016-11-25 20:15:51 -0700451
Simon Glassdbf6be92018-08-01 15:22:42 -0600452 def SetImagePos(self, image_pos):
453 """Set the position in the image
454
455 Args:
456 image_pos: Position of this entry in the image
457 """
458 self.image_pos = image_pos + self.offset
459
Simon Glassbf7fd502016-11-25 20:15:51 -0700460 def ProcessContents(self):
Simon Glassa0dcaf22019-07-08 14:25:35 -0600461 """Do any post-packing updates of entry contents
462
463 This function should call ProcessContentsUpdate() to update the entry
464 contents, if necessary, returning its return value here.
465
466 Args:
467 data: Data to set to the contents (bytes)
468
469 Returns:
470 True if the new data size is OK, False if expansion is needed
471
472 Raises:
473 ValueError if the new data size is not the same as the old and
474 state.AllowEntryExpansion() is False
475 """
476 return True
Simon Glass19790632017-11-13 18:55:01 -0700477
Simon Glassf55382b2018-06-01 09:38:13 -0600478 def WriteSymbols(self, section):
Simon Glass19790632017-11-13 18:55:01 -0700479 """Write symbol values into binary files for access at run time
480
481 Args:
Simon Glassf55382b2018-06-01 09:38:13 -0600482 section: Section containing the entry
Simon Glass19790632017-11-13 18:55:01 -0700483 """
484 pass
Simon Glass18546952018-06-01 09:38:16 -0600485
Simon Glass3ab95982018-08-01 15:22:37 -0600486 def CheckOffset(self):
487 """Check that the entry offsets are correct
Simon Glass18546952018-06-01 09:38:16 -0600488
Simon Glass3ab95982018-08-01 15:22:37 -0600489 This is used for entries which have extra offset requirements (other
Simon Glass18546952018-06-01 09:38:16 -0600490 than having to be fully inside their section). Sub-classes can implement
491 this function and raise if there is a problem.
492 """
493 pass
Simon Glass3b0c3822018-06-01 09:38:20 -0600494
Simon Glass8122f392018-07-17 13:25:28 -0600495 @staticmethod
Simon Glass163ed6c2018-09-14 04:57:36 -0600496 def GetStr(value):
497 if value is None:
498 return '<none> '
499 return '%08x' % value
500
501 @staticmethod
Simon Glass1be70d22018-07-17 13:25:49 -0600502 def WriteMapLine(fd, indent, name, offset, size, image_pos):
Simon Glass163ed6c2018-09-14 04:57:36 -0600503 print('%s %s%s %s %s' % (Entry.GetStr(image_pos), ' ' * indent,
504 Entry.GetStr(offset), Entry.GetStr(size),
505 name), file=fd)
Simon Glass8122f392018-07-17 13:25:28 -0600506
Simon Glass3b0c3822018-06-01 09:38:20 -0600507 def WriteMap(self, fd, indent):
508 """Write a map of the entry to a .map file
509
510 Args:
511 fd: File to write the map to
512 indent: Curent indent level of map (0=none, 1=one level, etc.)
513 """
Simon Glass1be70d22018-07-17 13:25:49 -0600514 self.WriteMapLine(fd, indent, self.name, self.offset, self.size,
515 self.image_pos)
Simon Glass53af22a2018-07-17 13:25:32 -0600516
Simon Glass11e36cc2018-07-17 13:25:38 -0600517 def GetEntries(self):
518 """Return a list of entries contained by this entry
519
520 Returns:
521 List of entries, or None if none. A normal entry has no entries
522 within it so will return None
523 """
524 return None
525
Simon Glass53af22a2018-07-17 13:25:32 -0600526 def GetArg(self, name, datatype=str):
527 """Get the value of an entry argument or device-tree-node property
528
529 Some node properties can be provided as arguments to binman. First check
530 the entry arguments, and fall back to the device tree if not found
531
532 Args:
533 name: Argument name
534 datatype: Data type (str or int)
535
536 Returns:
537 Value of argument as a string or int, or None if no value
538
539 Raises:
540 ValueError if the argument cannot be converted to in
541 """
Simon Glassc55a50f2018-09-14 04:57:19 -0600542 value = state.GetEntryArg(name)
Simon Glass53af22a2018-07-17 13:25:32 -0600543 if value is not None:
544 if datatype == int:
545 try:
546 value = int(value)
547 except ValueError:
548 self.Raise("Cannot convert entry arg '%s' (value '%s') to integer" %
549 (name, value))
550 elif datatype == str:
551 pass
552 else:
553 raise ValueError("GetArg() internal error: Unknown data type '%s'" %
554 datatype)
555 else:
556 value = fdt_util.GetDatatype(self._node, name, datatype)
557 return value
Simon Glassfd8d1f72018-07-17 13:25:36 -0600558
559 @staticmethod
560 def WriteDocs(modules, test_missing=None):
561 """Write out documentation about the various entry types to stdout
562
563 Args:
564 modules: List of modules to include
565 test_missing: Used for testing. This is a module to report
566 as missing
567 """
568 print('''Binman Entry Documentation
569===========================
570
571This file describes the entry types supported by binman. These entry types can
572be placed in an image one by one to build up a final firmware image. It is
573fairly easy to create new entry types. Just add a new file to the 'etype'
574directory. You can use the existing entries as examples.
575
576Note that some entries are subclasses of others, using and extending their
577features to produce new behaviours.
578
579
580''')
581 modules = sorted(modules)
582
583 # Don't show the test entry
584 if '_testing' in modules:
585 modules.remove('_testing')
586 missing = []
587 for name in modules:
Simon Glass16287932020-04-17 18:09:03 -0600588 module = Entry.Lookup('WriteDocs', name)
Simon Glassfd8d1f72018-07-17 13:25:36 -0600589 docs = getattr(module, '__doc__')
590 if test_missing == name:
591 docs = None
592 if docs:
593 lines = docs.splitlines()
594 first_line = lines[0]
595 rest = [line[4:] for line in lines[1:]]
596 hdr = 'Entry: %s: %s' % (name.replace('_', '-'), first_line)
597 print(hdr)
598 print('-' * len(hdr))
599 print('\n'.join(rest))
600 print()
601 print()
602 else:
603 missing.append(name)
604
605 if missing:
606 raise ValueError('Documentation is missing for modules: %s' %
607 ', '.join(missing))
Simon Glassa326b492018-09-14 04:57:11 -0600608
609 def GetUniqueName(self):
610 """Get a unique name for a node
611
612 Returns:
613 String containing a unique name for a node, consisting of the name
614 of all ancestors (starting from within the 'binman' node) separated
615 by a dot ('.'). This can be useful for generating unique filesnames
616 in the output directory.
617 """
618 name = self.name
619 node = self._node
620 while node.parent:
621 node = node.parent
622 if node.name == 'binman':
623 break
624 name = '%s.%s' % (node.name, name)
625 return name
Simon Glassba64a0b2018-09-14 04:57:29 -0600626
627 def ExpandToLimit(self, limit):
628 """Expand an entry so that it ends at the given offset limit"""
629 if self.offset + self.size < limit:
630 self.size = limit - self.offset
631 # Request the contents again, since changing the size requires that
632 # the data grows. This should not fail, but check it to be sure.
633 if not self.ObtainContents():
634 self.Raise('Cannot obtain contents when expanding entry')
Simon Glassfa1c9372019-07-08 13:18:38 -0600635
636 def HasSibling(self, name):
637 """Check if there is a sibling of a given name
638
639 Returns:
640 True if there is an entry with this name in the the same section,
641 else False
642 """
643 return name in self.section.GetEntries()
Simon Glasscf228942019-07-08 14:25:28 -0600644
645 def GetSiblingImagePos(self, name):
646 """Return the image position of the given sibling
647
648 Returns:
649 Image position of sibling, or None if the sibling has no position,
650 or False if there is no such sibling
651 """
652 if not self.HasSibling(name):
653 return False
654 return self.section.GetEntries()[name].image_pos
Simon Glass41b8ba02019-07-08 14:25:43 -0600655
656 @staticmethod
657 def AddEntryInfo(entries, indent, name, etype, size, image_pos,
658 uncomp_size, offset, entry):
659 """Add a new entry to the entries list
660
661 Args:
662 entries: List (of EntryInfo objects) to add to
663 indent: Current indent level to add to list
664 name: Entry name (string)
665 etype: Entry type (string)
666 size: Entry size in bytes (int)
667 image_pos: Position within image in bytes (int)
668 uncomp_size: Uncompressed size if the entry uses compression, else
669 None
670 offset: Entry offset within parent in bytes (int)
671 entry: Entry object
672 """
673 entries.append(EntryInfo(indent, name, etype, size, image_pos,
674 uncomp_size, offset, entry))
675
676 def ListEntries(self, entries, indent):
677 """Add files in this entry to the list of entries
678
679 This can be overridden by subclasses which need different behaviour.
680
681 Args:
682 entries: List (of EntryInfo objects) to add to
683 indent: Current indent level to add to list
684 """
685 self.AddEntryInfo(entries, indent, self.name, self.etype, self.size,
686 self.image_pos, self.uncomp_size, self.offset, self)
Simon Glassf667e452019-07-08 14:25:50 -0600687
688 def ReadData(self, decomp=True):
689 """Read the data for an entry from the image
690
691 This is used when the image has been read in and we want to extract the
692 data for a particular entry from that image.
693
694 Args:
695 decomp: True to decompress any compressed data before returning it;
696 False to return the raw, uncompressed data
697
698 Returns:
699 Entry data (bytes)
700 """
701 # Use True here so that we get an uncompressed section to work from,
702 # although compressed sections are currently not supported
Simon Glass2d553c02019-09-25 08:56:21 -0600703 tout.Debug("ReadChildData section '%s', entry '%s'" %
704 (self.section.GetPath(), self.GetPath()))
Simon Glassa9cd39e2019-07-20 12:24:04 -0600705 data = self.section.ReadChildData(self, decomp)
706 return data
Simon Glassd5079332019-07-20 12:23:41 -0600707
Simon Glass4e185e82019-09-25 08:56:20 -0600708 def ReadChildData(self, child, decomp=True):
Simon Glass2d553c02019-09-25 08:56:21 -0600709 """Read the data for a particular child entry
Simon Glass4e185e82019-09-25 08:56:20 -0600710
711 This reads data from the parent and extracts the piece that relates to
712 the given child.
713
714 Args:
Simon Glass2d553c02019-09-25 08:56:21 -0600715 child: Child entry to read data for (must be valid)
Simon Glass4e185e82019-09-25 08:56:20 -0600716 decomp: True to decompress any compressed data before returning it;
717 False to return the raw, uncompressed data
718
719 Returns:
720 Data for the child (bytes)
721 """
722 pass
723
Simon Glassd5079332019-07-20 12:23:41 -0600724 def LoadData(self, decomp=True):
725 data = self.ReadData(decomp)
Simon Glass10f9d002019-07-20 12:23:50 -0600726 self.contents_size = len(data)
Simon Glassd5079332019-07-20 12:23:41 -0600727 self.ProcessContentsUpdate(data)
728 self.Detail('Loaded data size %x' % len(data))
Simon Glassc5ad04b2019-07-20 12:23:46 -0600729
730 def GetImage(self):
731 """Get the image containing this entry
732
733 Returns:
734 Image object containing this entry
735 """
736 return self.section.GetImage()
Simon Glass10f9d002019-07-20 12:23:50 -0600737
738 def WriteData(self, data, decomp=True):
739 """Write the data to an entry in the image
740
741 This is used when the image has been read in and we want to replace the
742 data for a particular entry in that image.
743
744 The image must be re-packed and written out afterwards.
745
746 Args:
747 data: Data to replace it with
748 decomp: True to compress the data if needed, False if data is
749 already compressed so should be used as is
750
751 Returns:
752 True if the data did not result in a resize of this entry, False if
753 the entry must be resized
754 """
Simon Glass9a5d3dc2019-10-31 07:43:02 -0600755 if self.size is not None:
756 self.contents_size = self.size
757 else:
758 self.contents_size = self.pre_reset_size
Simon Glass10f9d002019-07-20 12:23:50 -0600759 ok = self.ProcessContentsUpdate(data)
760 self.Detail('WriteData: size=%x, ok=%s' % (len(data), ok))
Simon Glass7210c892019-07-20 12:24:05 -0600761 section_ok = self.section.WriteChildData(self)
762 return ok and section_ok
763
764 def WriteChildData(self, child):
765 """Handle writing the data in a child entry
766
767 This should be called on the child's parent section after the child's
768 data has been updated. It
769
770 This base-class implementation does nothing, since the base Entry object
771 does not have any children.
772
773 Args:
774 child: Child Entry that was written
775
776 Returns:
777 True if the section could be updated successfully, False if the
778 data is such that the section could not updat
779 """
780 return True
Simon Glasseba1f0c2019-07-20 12:23:55 -0600781
782 def GetSiblingOrder(self):
783 """Get the relative order of an entry amoung its siblings
784
785 Returns:
786 'start' if this entry is first among siblings, 'end' if last,
787 otherwise None
788 """
789 entries = list(self.section.GetEntries().values())
790 if entries:
791 if self == entries[0]:
792 return 'start'
793 elif self == entries[-1]:
794 return 'end'
795 return 'middle'
Simon Glass4f9f1052020-07-09 18:39:38 -0600796
797 def SetAllowMissing(self, allow_missing):
798 """Set whether a section allows missing external blobs
799
800 Args:
801 allow_missing: True if allowed, False if not allowed
802 """
803 # This is meaningless for anything other than sections
804 pass
Simon Glassb1cca952020-07-09 18:39:40 -0600805
806 def CheckMissing(self, missing_list):
807 """Check if any entries in this section have missing external blobs
808
809 If there are missing blobs, the entries are added to the list
810
811 Args:
812 missing_list: List of Entry objects to be added to
813 """
814 if self.missing:
815 missing_list.append(self)