blob: 9f62322bed2054c32ac14f0d0b08b264b12883fc [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 Glassbf7fd502016-11-25 20:15:51 -070013import tools
Simon Glass16287932020-04-17 18:09:03 -060014from patman.tools import ToHex, ToHexSize
Simon Glasseea264e2019-07-08 14:25:49 -060015import tout
Simon Glassbf7fd502016-11-25 20:15:51 -070016
17modules = {}
18
Simon Glassbadf0ec2018-06-01 09:38:15 -060019our_path = os.path.dirname(os.path.realpath(__file__))
20
Simon Glass53af22a2018-07-17 13:25:32 -060021
22# An argument which can be passed to entries on the command line, in lieu of
23# device-tree properties.
24EntryArg = namedtuple('EntryArg', ['name', 'datatype'])
25
Simon Glass41b8ba02019-07-08 14:25:43 -060026# Information about an entry for use when displaying summaries
27EntryInfo = namedtuple('EntryInfo', ['indent', 'name', 'etype', 'size',
28 'image_pos', 'uncomp_size', 'offset',
29 'entry'])
Simon Glass53af22a2018-07-17 13:25:32 -060030
Simon Glassbf7fd502016-11-25 20:15:51 -070031class Entry(object):
Simon Glass25ac0e62018-06-01 09:38:14 -060032 """An Entry in the section
Simon Glassbf7fd502016-11-25 20:15:51 -070033
34 An entry corresponds to a single node in the device-tree description
Simon Glass25ac0e62018-06-01 09:38:14 -060035 of the section. Each entry ends up being a part of the final section.
Simon Glassbf7fd502016-11-25 20:15:51 -070036 Entries can be placed either right next to each other, or with padding
37 between them. The type of the entry determines the data that is in it.
38
39 This class is not used by itself. All entry objects are subclasses of
40 Entry.
41
42 Attributes:
Simon Glass8122f392018-07-17 13:25:28 -060043 section: Section object containing this entry
Simon Glassbf7fd502016-11-25 20:15:51 -070044 node: The node that created this entry
Simon Glass3ab95982018-08-01 15:22:37 -060045 offset: Offset of entry within the section, None if not known yet (in
46 which case it will be calculated by Pack())
Simon Glassbf7fd502016-11-25 20:15:51 -070047 size: Entry size in bytes, None if not known
Simon Glass9a5d3dc2019-10-31 07:43:02 -060048 pre_reset_size: size as it was before ResetForPack(). This allows us to
49 keep track of the size we started with and detect size changes
Simon Glass8287ee82019-07-08 14:25:30 -060050 uncomp_size: Size of uncompressed data in bytes, if the entry is
51 compressed, else None
Simon Glassbf7fd502016-11-25 20:15:51 -070052 contents_size: Size of contents in bytes, 0 by default
Simon Glass3ab95982018-08-01 15:22:37 -060053 align: Entry start offset alignment, or None
Simon Glassbf7fd502016-11-25 20:15:51 -070054 align_size: Entry size alignment, or None
Simon Glass3ab95982018-08-01 15:22:37 -060055 align_end: Entry end offset alignment, or None
Simon Glassbf7fd502016-11-25 20:15:51 -070056 pad_before: Number of pad bytes before the contents, 0 if none
57 pad_after: Number of pad bytes after the contents, 0 if none
58 data: Contents of entry (string of bytes)
Simon Glass8287ee82019-07-08 14:25:30 -060059 compress: Compression algoithm used (e.g. 'lz4'), 'none' if none
Simon Glassc52c9e72019-07-08 14:25:37 -060060 orig_offset: Original offset value read from node
61 orig_size: Original size value read from node
Simon Glassbf7fd502016-11-25 20:15:51 -070062 """
Simon Glassc6bd6e22019-07-20 12:23:45 -060063 def __init__(self, section, etype, node, name_prefix=''):
Simon Glass8dbb7442019-08-24 07:22:44 -060064 # Put this here to allow entry-docs and help to work without libfdt
65 global state
Simon Glass16287932020-04-17 18:09:03 -060066 from binman import state
Simon Glass8dbb7442019-08-24 07:22:44 -060067
Simon Glass25ac0e62018-06-01 09:38:14 -060068 self.section = section
Simon Glassbf7fd502016-11-25 20:15:51 -070069 self.etype = etype
70 self._node = node
Simon Glassc8d48ef2018-06-01 09:38:21 -060071 self.name = node and (name_prefix + node.name) or 'none'
Simon Glass3ab95982018-08-01 15:22:37 -060072 self.offset = None
Simon Glassbf7fd502016-11-25 20:15:51 -070073 self.size = None
Simon Glass9a5d3dc2019-10-31 07:43:02 -060074 self.pre_reset_size = None
Simon Glass8287ee82019-07-08 14:25:30 -060075 self.uncomp_size = None
Simon Glass24d0d3c2018-07-17 13:25:47 -060076 self.data = None
Simon Glassbf7fd502016-11-25 20:15:51 -070077 self.contents_size = 0
78 self.align = None
79 self.align_size = None
80 self.align_end = None
81 self.pad_before = 0
82 self.pad_after = 0
Simon Glass3ab95982018-08-01 15:22:37 -060083 self.offset_unset = False
Simon Glassdbf6be92018-08-01 15:22:42 -060084 self.image_pos = None
Simon Glassba64a0b2018-09-14 04:57:29 -060085 self._expand_size = False
Simon Glass8287ee82019-07-08 14:25:30 -060086 self.compress = 'none'
Simon Glassbf7fd502016-11-25 20:15:51 -070087
88 @staticmethod
Simon Glassc073ced2019-07-08 14:25:31 -060089 def Lookup(node_path, etype):
Simon Glassfd8d1f72018-07-17 13:25:36 -060090 """Look up the entry class for a node.
Simon Glassbf7fd502016-11-25 20:15:51 -070091
92 Args:
Simon Glassfd8d1f72018-07-17 13:25:36 -060093 node_node: Path name of Node object containing information about
94 the entry to create (used for errors)
95 etype: Entry type to use
Simon Glassbf7fd502016-11-25 20:15:51 -070096
97 Returns:
Simon Glassfd8d1f72018-07-17 13:25:36 -060098 The entry class object if found, else None
Simon Glassbf7fd502016-11-25 20:15:51 -070099 """
Simon Glassdd57c132018-06-01 09:38:11 -0600100 # Convert something like 'u-boot@0' to 'u_boot' since we are only
101 # interested in the type.
Simon Glassbf7fd502016-11-25 20:15:51 -0700102 module_name = etype.replace('-', '_')
Simon Glassdd57c132018-06-01 09:38:11 -0600103 if '@' in module_name:
104 module_name = module_name.split('@')[0]
Simon Glassbf7fd502016-11-25 20:15:51 -0700105 module = modules.get(module_name)
106
Simon Glassbadf0ec2018-06-01 09:38:15 -0600107 # Also allow entry-type modules to be brought in from the etype directory.
108
Simon Glassbf7fd502016-11-25 20:15:51 -0700109 # Import the module if we have not already done so.
110 if not module:
111 try:
Simon Glass16287932020-04-17 18:09:03 -0600112 module = importlib.import_module('binman.etype.' + module_name)
Simon Glassfd8d1f72018-07-17 13:25:36 -0600113 except ImportError as e:
114 raise ValueError("Unknown entry type '%s' in node '%s' (expected etype/%s.py, error '%s'" %
115 (etype, node_path, module_name, e))
Simon Glassbf7fd502016-11-25 20:15:51 -0700116 modules[module_name] = module
117
Simon Glassfd8d1f72018-07-17 13:25:36 -0600118 # Look up the expected class name
119 return getattr(module, 'Entry_%s' % module_name)
120
121 @staticmethod
122 def Create(section, node, etype=None):
123 """Create a new entry for a node.
124
125 Args:
126 section: Section object containing this node
127 node: Node object containing information about the entry to
128 create
129 etype: Entry type to use, or None to work it out (used for tests)
130
131 Returns:
132 A new Entry object of the correct type (a subclass of Entry)
133 """
134 if not etype:
135 etype = fdt_util.GetString(node, 'type', node.name)
Simon Glassc073ced2019-07-08 14:25:31 -0600136 obj = Entry.Lookup(node.path, etype)
Simon Glassfd8d1f72018-07-17 13:25:36 -0600137
Simon Glassbf7fd502016-11-25 20:15:51 -0700138 # Call its constructor to get the object we want.
Simon Glass25ac0e62018-06-01 09:38:14 -0600139 return obj(section, etype, node)
Simon Glassbf7fd502016-11-25 20:15:51 -0700140
141 def ReadNode(self):
142 """Read entry information from the node
143
Simon Glassc6bd6e22019-07-20 12:23:45 -0600144 This must be called as the first thing after the Entry is created.
145
Simon Glassbf7fd502016-11-25 20:15:51 -0700146 This reads all the fields we recognise from the node, ready for use.
147 """
Simon Glass15a587c2018-07-17 13:25:51 -0600148 if 'pos' in self._node.props:
149 self.Raise("Please use 'offset' instead of 'pos'")
Simon Glass3ab95982018-08-01 15:22:37 -0600150 self.offset = fdt_util.GetInt(self._node, 'offset')
Simon Glassbf7fd502016-11-25 20:15:51 -0700151 self.size = fdt_util.GetInt(self._node, 'size')
Simon Glass12bb1a92019-07-20 12:23:51 -0600152 self.orig_offset = fdt_util.GetInt(self._node, 'orig-offset')
153 self.orig_size = fdt_util.GetInt(self._node, 'orig-size')
154 if self.GetImage().copy_to_orig:
155 self.orig_offset = self.offset
156 self.orig_size = self.size
Simon Glassc52c9e72019-07-08 14:25:37 -0600157
Simon Glassffded752019-07-08 14:25:46 -0600158 # These should not be set in input files, but are set in an FDT map,
159 # which is also read by this code.
160 self.image_pos = fdt_util.GetInt(self._node, 'image-pos')
161 self.uncomp_size = fdt_util.GetInt(self._node, 'uncomp-size')
162
Simon Glassbf7fd502016-11-25 20:15:51 -0700163 self.align = fdt_util.GetInt(self._node, 'align')
164 if tools.NotPowerOfTwo(self.align):
165 raise ValueError("Node '%s': Alignment %s must be a power of two" %
166 (self._node.path, self.align))
167 self.pad_before = fdt_util.GetInt(self._node, 'pad-before', 0)
168 self.pad_after = fdt_util.GetInt(self._node, 'pad-after', 0)
169 self.align_size = fdt_util.GetInt(self._node, 'align-size')
170 if tools.NotPowerOfTwo(self.align_size):
Simon Glass8beb11e2019-07-08 14:25:47 -0600171 self.Raise("Alignment size %s must be a power of two" %
172 self.align_size)
Simon Glassbf7fd502016-11-25 20:15:51 -0700173 self.align_end = fdt_util.GetInt(self._node, 'align-end')
Simon Glass3ab95982018-08-01 15:22:37 -0600174 self.offset_unset = fdt_util.GetBool(self._node, 'offset-unset')
Simon Glassba64a0b2018-09-14 04:57:29 -0600175 self.expand_size = fdt_util.GetBool(self._node, 'expand-size')
Simon Glassbf7fd502016-11-25 20:15:51 -0700176
Simon Glass6c234bf2018-09-14 04:57:18 -0600177 def GetDefaultFilename(self):
178 return None
179
Simon Glassa8adb6d2019-07-20 12:23:28 -0600180 def GetFdts(self):
181 """Get the device trees used by this entry
Simon Glass539aece2018-09-14 04:57:22 -0600182
183 Returns:
Simon Glassa8adb6d2019-07-20 12:23:28 -0600184 Empty dict, if this entry is not a .dtb, otherwise:
185 Dict:
186 key: Filename from this entry (without the path)
Simon Glass4bdd3002019-07-20 12:23:31 -0600187 value: Tuple:
188 Fdt object for this dtb, or None if not available
189 Filename of file containing this dtb
Simon Glass539aece2018-09-14 04:57:22 -0600190 """
Simon Glassa8adb6d2019-07-20 12:23:28 -0600191 return {}
Simon Glass539aece2018-09-14 04:57:22 -0600192
Simon Glass0a98b282018-09-14 04:57:28 -0600193 def ExpandEntries(self):
194 pass
195
Simon Glass078ab1a2018-07-06 10:27:41 -0600196 def AddMissingProperties(self):
197 """Add new properties to the device tree as needed for this entry"""
Simon Glassdbf6be92018-08-01 15:22:42 -0600198 for prop in ['offset', 'size', 'image-pos']:
Simon Glass078ab1a2018-07-06 10:27:41 -0600199 if not prop in self._node.props:
Simon Glassf46621d2018-09-14 04:57:21 -0600200 state.AddZeroProp(self._node, prop)
Simon Glass12bb1a92019-07-20 12:23:51 -0600201 if self.GetImage().allow_repack:
202 if self.orig_offset is not None:
203 state.AddZeroProp(self._node, 'orig-offset', True)
204 if self.orig_size is not None:
205 state.AddZeroProp(self._node, 'orig-size', True)
206
Simon Glass8287ee82019-07-08 14:25:30 -0600207 if self.compress != 'none':
208 state.AddZeroProp(self._node, 'uncomp-size')
Simon Glasse0e5df92018-09-14 04:57:31 -0600209 err = state.CheckAddHashProp(self._node)
210 if err:
211 self.Raise(err)
Simon Glass078ab1a2018-07-06 10:27:41 -0600212
213 def SetCalculatedProperties(self):
214 """Set the value of device-tree properties calculated by binman"""
Simon Glassf46621d2018-09-14 04:57:21 -0600215 state.SetInt(self._node, 'offset', self.offset)
216 state.SetInt(self._node, 'size', self.size)
Simon Glass8beb11e2019-07-08 14:25:47 -0600217 base = self.section.GetRootSkipAtStart() if self.section else 0
218 state.SetInt(self._node, 'image-pos', self.image_pos - base)
Simon Glass12bb1a92019-07-20 12:23:51 -0600219 if self.GetImage().allow_repack:
220 if self.orig_offset is not None:
221 state.SetInt(self._node, 'orig-offset', self.orig_offset, True)
222 if self.orig_size is not None:
223 state.SetInt(self._node, 'orig-size', self.orig_size, True)
Simon Glass8287ee82019-07-08 14:25:30 -0600224 if self.uncomp_size is not None:
225 state.SetInt(self._node, 'uncomp-size', self.uncomp_size)
Simon Glasse0e5df92018-09-14 04:57:31 -0600226 state.CheckSetHashValue(self._node, self.GetData)
Simon Glass078ab1a2018-07-06 10:27:41 -0600227
Simon Glassecab8972018-07-06 10:27:40 -0600228 def ProcessFdt(self, fdt):
Simon Glass6ed45ba2018-09-14 04:57:24 -0600229 """Allow entries to adjust the device tree
230
231 Some entries need to adjust the device tree for their purposes. This
232 may involve adding or deleting properties.
233
234 Returns:
235 True if processing is complete
236 False if processing could not be completed due to a dependency.
237 This will cause the entry to be retried after others have been
238 called
239 """
Simon Glassecab8972018-07-06 10:27:40 -0600240 return True
241
Simon Glassc8d48ef2018-06-01 09:38:21 -0600242 def SetPrefix(self, prefix):
243 """Set the name prefix for a node
244
245 Args:
246 prefix: Prefix to set, or '' to not use a prefix
247 """
248 if prefix:
249 self.name = prefix + self.name
250
Simon Glass5c890232018-07-06 10:27:19 -0600251 def SetContents(self, data):
252 """Set the contents of an entry
253
254 This sets both the data and content_size properties
255
256 Args:
Simon Glass5b463fc2019-07-08 14:25:33 -0600257 data: Data to set to the contents (bytes)
Simon Glass5c890232018-07-06 10:27:19 -0600258 """
259 self.data = data
260 self.contents_size = len(self.data)
261
262 def ProcessContentsUpdate(self, data):
Simon Glass5b463fc2019-07-08 14:25:33 -0600263 """Update the contents of an entry, after the size is fixed
Simon Glass5c890232018-07-06 10:27:19 -0600264
Simon Glassa0dcaf22019-07-08 14:25:35 -0600265 This checks that the new data is the same size as the old. If the size
266 has changed, this triggers a re-run of the packing algorithm.
Simon Glass5c890232018-07-06 10:27:19 -0600267
268 Args:
Simon Glass5b463fc2019-07-08 14:25:33 -0600269 data: Data to set to the contents (bytes)
Simon Glass5c890232018-07-06 10:27:19 -0600270
271 Raises:
272 ValueError if the new data size is not the same as the old
273 """
Simon Glassa0dcaf22019-07-08 14:25:35 -0600274 size_ok = True
Simon Glassc52c9e72019-07-08 14:25:37 -0600275 new_size = len(data)
Simon Glass61ec04f2019-07-20 12:23:58 -0600276 if state.AllowEntryExpansion() and new_size > self.contents_size:
277 # self.data will indicate the new size needed
278 size_ok = False
279 elif state.AllowEntryContraction() and new_size < self.contents_size:
280 size_ok = False
281
282 # If not allowed to change, try to deal with it or give up
283 if size_ok:
Simon Glassc52c9e72019-07-08 14:25:37 -0600284 if new_size > self.contents_size:
Simon Glass61ec04f2019-07-20 12:23:58 -0600285 self.Raise('Cannot update entry size from %d to %d' %
286 (self.contents_size, new_size))
287
288 # Don't let the data shrink. Pad it if necessary
289 if size_ok and new_size < self.contents_size:
290 data += tools.GetBytes(0, self.contents_size - new_size)
291
292 if not size_ok:
293 tout.Debug("Entry '%s' size change from %s to %s" % (
294 self._node.path, ToHex(self.contents_size),
295 ToHex(new_size)))
Simon Glass5c890232018-07-06 10:27:19 -0600296 self.SetContents(data)
Simon Glassa0dcaf22019-07-08 14:25:35 -0600297 return size_ok
Simon Glass5c890232018-07-06 10:27:19 -0600298
Simon Glassbf7fd502016-11-25 20:15:51 -0700299 def ObtainContents(self):
300 """Figure out the contents of an entry.
301
302 Returns:
303 True if the contents were found, False if another call is needed
304 after the other entries are processed.
305 """
306 # No contents by default: subclasses can implement this
307 return True
308
Simon Glassc52c9e72019-07-08 14:25:37 -0600309 def ResetForPack(self):
310 """Reset offset/size fields so that packing can be done again"""
Simon Glass9f297b02019-07-20 12:23:36 -0600311 self.Detail('ResetForPack: offset %s->%s, size %s->%s' %
312 (ToHex(self.offset), ToHex(self.orig_offset),
313 ToHex(self.size), ToHex(self.orig_size)))
Simon Glass9a5d3dc2019-10-31 07:43:02 -0600314 self.pre_reset_size = self.size
Simon Glassc52c9e72019-07-08 14:25:37 -0600315 self.offset = self.orig_offset
316 self.size = self.orig_size
317
Simon Glass3ab95982018-08-01 15:22:37 -0600318 def Pack(self, offset):
Simon Glass25ac0e62018-06-01 09:38:14 -0600319 """Figure out how to pack the entry into the section
Simon Glassbf7fd502016-11-25 20:15:51 -0700320
321 Most of the time the entries are not fully specified. There may be
322 an alignment but no size. In that case we take the size from the
323 contents of the entry.
324
Simon Glass3ab95982018-08-01 15:22:37 -0600325 If an entry has no hard-coded offset, it will be placed at @offset.
Simon Glassbf7fd502016-11-25 20:15:51 -0700326
Simon Glass3ab95982018-08-01 15:22:37 -0600327 Once this function is complete, both the offset and size of the
Simon Glassbf7fd502016-11-25 20:15:51 -0700328 entry will be know.
329
330 Args:
Simon Glass3ab95982018-08-01 15:22:37 -0600331 Current section offset pointer
Simon Glassbf7fd502016-11-25 20:15:51 -0700332
333 Returns:
Simon Glass3ab95982018-08-01 15:22:37 -0600334 New section offset pointer (after this entry)
Simon Glassbf7fd502016-11-25 20:15:51 -0700335 """
Simon Glass9f297b02019-07-20 12:23:36 -0600336 self.Detail('Packing: offset=%s, size=%s, content_size=%x' %
337 (ToHex(self.offset), ToHex(self.size),
338 self.contents_size))
Simon Glass3ab95982018-08-01 15:22:37 -0600339 if self.offset is None:
340 if self.offset_unset:
341 self.Raise('No offset set with offset-unset: should another '
342 'entry provide this correct offset?')
343 self.offset = tools.Align(offset, self.align)
Simon Glassbf7fd502016-11-25 20:15:51 -0700344 needed = self.pad_before + self.contents_size + self.pad_after
345 needed = tools.Align(needed, self.align_size)
346 size = self.size
347 if not size:
348 size = needed
Simon Glass3ab95982018-08-01 15:22:37 -0600349 new_offset = self.offset + size
350 aligned_offset = tools.Align(new_offset, self.align_end)
351 if aligned_offset != new_offset:
352 size = aligned_offset - self.offset
353 new_offset = aligned_offset
Simon Glassbf7fd502016-11-25 20:15:51 -0700354
355 if not self.size:
356 self.size = size
357
358 if self.size < needed:
359 self.Raise("Entry contents size is %#x (%d) but entry size is "
360 "%#x (%d)" % (needed, needed, self.size, self.size))
361 # Check that the alignment is correct. It could be wrong if the
Simon Glass3ab95982018-08-01 15:22:37 -0600362 # and offset or size values were provided (i.e. not calculated), but
Simon Glassbf7fd502016-11-25 20:15:51 -0700363 # conflict with the provided alignment values
364 if self.size != tools.Align(self.size, self.align_size):
365 self.Raise("Size %#x (%d) does not match align-size %#x (%d)" %
366 (self.size, self.size, self.align_size, self.align_size))
Simon Glass3ab95982018-08-01 15:22:37 -0600367 if self.offset != tools.Align(self.offset, self.align):
368 self.Raise("Offset %#x (%d) does not match align %#x (%d)" %
369 (self.offset, self.offset, self.align, self.align))
Simon Glass9f297b02019-07-20 12:23:36 -0600370 self.Detail(' - packed: offset=%#x, size=%#x, content_size=%#x, next_offset=%x' %
371 (self.offset, self.size, self.contents_size, new_offset))
Simon Glassbf7fd502016-11-25 20:15:51 -0700372
Simon Glass3ab95982018-08-01 15:22:37 -0600373 return new_offset
Simon Glassbf7fd502016-11-25 20:15:51 -0700374
375 def Raise(self, msg):
376 """Convenience function to raise an error referencing a node"""
377 raise ValueError("Node '%s': %s" % (self._node.path, msg))
378
Simon Glass9f297b02019-07-20 12:23:36 -0600379 def Detail(self, msg):
380 """Convenience function to log detail referencing a node"""
381 tag = "Node '%s'" % self._node.path
382 tout.Detail('%30s: %s' % (tag, msg))
383
Simon Glass53af22a2018-07-17 13:25:32 -0600384 def GetEntryArgsOrProps(self, props, required=False):
385 """Return the values of a set of properties
386
387 Args:
388 props: List of EntryArg objects
389
390 Raises:
391 ValueError if a property is not found
392 """
393 values = []
394 missing = []
395 for prop in props:
396 python_prop = prop.name.replace('-', '_')
397 if hasattr(self, python_prop):
398 value = getattr(self, python_prop)
399 else:
400 value = None
401 if value is None:
402 value = self.GetArg(prop.name, prop.datatype)
403 if value is None and required:
404 missing.append(prop.name)
405 values.append(value)
406 if missing:
407 self.Raise('Missing required properties/entry args: %s' %
408 (', '.join(missing)))
409 return values
410
Simon Glassbf7fd502016-11-25 20:15:51 -0700411 def GetPath(self):
412 """Get the path of a node
413
414 Returns:
415 Full path of the node for this entry
416 """
417 return self._node.path
418
419 def GetData(self):
Simon Glass9f297b02019-07-20 12:23:36 -0600420 self.Detail('GetData: size %s' % ToHexSize(self.data))
Simon Glassbf7fd502016-11-25 20:15:51 -0700421 return self.data
422
Simon Glass3ab95982018-08-01 15:22:37 -0600423 def GetOffsets(self):
Simon Glassed7dd5e2019-07-08 13:18:30 -0600424 """Get the offsets for siblings
425
426 Some entry types can contain information about the position or size of
427 other entries. An example of this is the Intel Flash Descriptor, which
428 knows where the Intel Management Engine section should go.
429
430 If this entry knows about the position of other entries, it can specify
431 this by returning values here
432
433 Returns:
434 Dict:
435 key: Entry type
436 value: List containing position and size of the given entry
Simon Glasscf549042019-07-08 13:18:39 -0600437 type. Either can be None if not known
Simon Glassed7dd5e2019-07-08 13:18:30 -0600438 """
Simon Glassbf7fd502016-11-25 20:15:51 -0700439 return {}
440
Simon Glasscf549042019-07-08 13:18:39 -0600441 def SetOffsetSize(self, offset, size):
442 """Set the offset and/or size of an entry
443
444 Args:
445 offset: New offset, or None to leave alone
446 size: New size, or None to leave alone
447 """
448 if offset is not None:
449 self.offset = offset
450 if size is not None:
451 self.size = size
Simon Glassbf7fd502016-11-25 20:15:51 -0700452
Simon Glassdbf6be92018-08-01 15:22:42 -0600453 def SetImagePos(self, image_pos):
454 """Set the position in the image
455
456 Args:
457 image_pos: Position of this entry in the image
458 """
459 self.image_pos = image_pos + self.offset
460
Simon Glassbf7fd502016-11-25 20:15:51 -0700461 def ProcessContents(self):
Simon Glassa0dcaf22019-07-08 14:25:35 -0600462 """Do any post-packing updates of entry contents
463
464 This function should call ProcessContentsUpdate() to update the entry
465 contents, if necessary, returning its return value here.
466
467 Args:
468 data: Data to set to the contents (bytes)
469
470 Returns:
471 True if the new data size is OK, False if expansion is needed
472
473 Raises:
474 ValueError if the new data size is not the same as the old and
475 state.AllowEntryExpansion() is False
476 """
477 return True
Simon Glass19790632017-11-13 18:55:01 -0700478
Simon Glassf55382b2018-06-01 09:38:13 -0600479 def WriteSymbols(self, section):
Simon Glass19790632017-11-13 18:55:01 -0700480 """Write symbol values into binary files for access at run time
481
482 Args:
Simon Glassf55382b2018-06-01 09:38:13 -0600483 section: Section containing the entry
Simon Glass19790632017-11-13 18:55:01 -0700484 """
485 pass
Simon Glass18546952018-06-01 09:38:16 -0600486
Simon Glass3ab95982018-08-01 15:22:37 -0600487 def CheckOffset(self):
488 """Check that the entry offsets are correct
Simon Glass18546952018-06-01 09:38:16 -0600489
Simon Glass3ab95982018-08-01 15:22:37 -0600490 This is used for entries which have extra offset requirements (other
Simon Glass18546952018-06-01 09:38:16 -0600491 than having to be fully inside their section). Sub-classes can implement
492 this function and raise if there is a problem.
493 """
494 pass
Simon Glass3b0c3822018-06-01 09:38:20 -0600495
Simon Glass8122f392018-07-17 13:25:28 -0600496 @staticmethod
Simon Glass163ed6c2018-09-14 04:57:36 -0600497 def GetStr(value):
498 if value is None:
499 return '<none> '
500 return '%08x' % value
501
502 @staticmethod
Simon Glass1be70d22018-07-17 13:25:49 -0600503 def WriteMapLine(fd, indent, name, offset, size, image_pos):
Simon Glass163ed6c2018-09-14 04:57:36 -0600504 print('%s %s%s %s %s' % (Entry.GetStr(image_pos), ' ' * indent,
505 Entry.GetStr(offset), Entry.GetStr(size),
506 name), file=fd)
Simon Glass8122f392018-07-17 13:25:28 -0600507
Simon Glass3b0c3822018-06-01 09:38:20 -0600508 def WriteMap(self, fd, indent):
509 """Write a map of the entry to a .map file
510
511 Args:
512 fd: File to write the map to
513 indent: Curent indent level of map (0=none, 1=one level, etc.)
514 """
Simon Glass1be70d22018-07-17 13:25:49 -0600515 self.WriteMapLine(fd, indent, self.name, self.offset, self.size,
516 self.image_pos)
Simon Glass53af22a2018-07-17 13:25:32 -0600517
Simon Glass11e36cc2018-07-17 13:25:38 -0600518 def GetEntries(self):
519 """Return a list of entries contained by this entry
520
521 Returns:
522 List of entries, or None if none. A normal entry has no entries
523 within it so will return None
524 """
525 return None
526
Simon Glass53af22a2018-07-17 13:25:32 -0600527 def GetArg(self, name, datatype=str):
528 """Get the value of an entry argument or device-tree-node property
529
530 Some node properties can be provided as arguments to binman. First check
531 the entry arguments, and fall back to the device tree if not found
532
533 Args:
534 name: Argument name
535 datatype: Data type (str or int)
536
537 Returns:
538 Value of argument as a string or int, or None if no value
539
540 Raises:
541 ValueError if the argument cannot be converted to in
542 """
Simon Glassc55a50f2018-09-14 04:57:19 -0600543 value = state.GetEntryArg(name)
Simon Glass53af22a2018-07-17 13:25:32 -0600544 if value is not None:
545 if datatype == int:
546 try:
547 value = int(value)
548 except ValueError:
549 self.Raise("Cannot convert entry arg '%s' (value '%s') to integer" %
550 (name, value))
551 elif datatype == str:
552 pass
553 else:
554 raise ValueError("GetArg() internal error: Unknown data type '%s'" %
555 datatype)
556 else:
557 value = fdt_util.GetDatatype(self._node, name, datatype)
558 return value
Simon Glassfd8d1f72018-07-17 13:25:36 -0600559
560 @staticmethod
561 def WriteDocs(modules, test_missing=None):
562 """Write out documentation about the various entry types to stdout
563
564 Args:
565 modules: List of modules to include
566 test_missing: Used for testing. This is a module to report
567 as missing
568 """
569 print('''Binman Entry Documentation
570===========================
571
572This file describes the entry types supported by binman. These entry types can
573be placed in an image one by one to build up a final firmware image. It is
574fairly easy to create new entry types. Just add a new file to the 'etype'
575directory. You can use the existing entries as examples.
576
577Note that some entries are subclasses of others, using and extending their
578features to produce new behaviours.
579
580
581''')
582 modules = sorted(modules)
583
584 # Don't show the test entry
585 if '_testing' in modules:
586 modules.remove('_testing')
587 missing = []
588 for name in modules:
Simon Glass16287932020-04-17 18:09:03 -0600589 module = Entry.Lookup('WriteDocs', name)
Simon Glassfd8d1f72018-07-17 13:25:36 -0600590 docs = getattr(module, '__doc__')
591 if test_missing == name:
592 docs = None
593 if docs:
594 lines = docs.splitlines()
595 first_line = lines[0]
596 rest = [line[4:] for line in lines[1:]]
597 hdr = 'Entry: %s: %s' % (name.replace('_', '-'), first_line)
598 print(hdr)
599 print('-' * len(hdr))
600 print('\n'.join(rest))
601 print()
602 print()
603 else:
604 missing.append(name)
605
606 if missing:
607 raise ValueError('Documentation is missing for modules: %s' %
608 ', '.join(missing))
Simon Glassa326b492018-09-14 04:57:11 -0600609
610 def GetUniqueName(self):
611 """Get a unique name for a node
612
613 Returns:
614 String containing a unique name for a node, consisting of the name
615 of all ancestors (starting from within the 'binman' node) separated
616 by a dot ('.'). This can be useful for generating unique filesnames
617 in the output directory.
618 """
619 name = self.name
620 node = self._node
621 while node.parent:
622 node = node.parent
623 if node.name == 'binman':
624 break
625 name = '%s.%s' % (node.name, name)
626 return name
Simon Glassba64a0b2018-09-14 04:57:29 -0600627
628 def ExpandToLimit(self, limit):
629 """Expand an entry so that it ends at the given offset limit"""
630 if self.offset + self.size < limit:
631 self.size = limit - self.offset
632 # Request the contents again, since changing the size requires that
633 # the data grows. This should not fail, but check it to be sure.
634 if not self.ObtainContents():
635 self.Raise('Cannot obtain contents when expanding entry')
Simon Glassfa1c9372019-07-08 13:18:38 -0600636
637 def HasSibling(self, name):
638 """Check if there is a sibling of a given name
639
640 Returns:
641 True if there is an entry with this name in the the same section,
642 else False
643 """
644 return name in self.section.GetEntries()
Simon Glasscf228942019-07-08 14:25:28 -0600645
646 def GetSiblingImagePos(self, name):
647 """Return the image position of the given sibling
648
649 Returns:
650 Image position of sibling, or None if the sibling has no position,
651 or False if there is no such sibling
652 """
653 if not self.HasSibling(name):
654 return False
655 return self.section.GetEntries()[name].image_pos
Simon Glass41b8ba02019-07-08 14:25:43 -0600656
657 @staticmethod
658 def AddEntryInfo(entries, indent, name, etype, size, image_pos,
659 uncomp_size, offset, entry):
660 """Add a new entry to the entries list
661
662 Args:
663 entries: List (of EntryInfo objects) to add to
664 indent: Current indent level to add to list
665 name: Entry name (string)
666 etype: Entry type (string)
667 size: Entry size in bytes (int)
668 image_pos: Position within image in bytes (int)
669 uncomp_size: Uncompressed size if the entry uses compression, else
670 None
671 offset: Entry offset within parent in bytes (int)
672 entry: Entry object
673 """
674 entries.append(EntryInfo(indent, name, etype, size, image_pos,
675 uncomp_size, offset, entry))
676
677 def ListEntries(self, entries, indent):
678 """Add files in this entry to the list of entries
679
680 This can be overridden by subclasses which need different behaviour.
681
682 Args:
683 entries: List (of EntryInfo objects) to add to
684 indent: Current indent level to add to list
685 """
686 self.AddEntryInfo(entries, indent, self.name, self.etype, self.size,
687 self.image_pos, self.uncomp_size, self.offset, self)
Simon Glassf667e452019-07-08 14:25:50 -0600688
689 def ReadData(self, decomp=True):
690 """Read the data for an entry from the image
691
692 This is used when the image has been read in and we want to extract the
693 data for a particular entry from that image.
694
695 Args:
696 decomp: True to decompress any compressed data before returning it;
697 False to return the raw, uncompressed data
698
699 Returns:
700 Entry data (bytes)
701 """
702 # Use True here so that we get an uncompressed section to work from,
703 # although compressed sections are currently not supported
Simon Glass2d553c02019-09-25 08:56:21 -0600704 tout.Debug("ReadChildData section '%s', entry '%s'" %
705 (self.section.GetPath(), self.GetPath()))
Simon Glassa9cd39e2019-07-20 12:24:04 -0600706 data = self.section.ReadChildData(self, decomp)
707 return data
Simon Glassd5079332019-07-20 12:23:41 -0600708
Simon Glass4e185e82019-09-25 08:56:20 -0600709 def ReadChildData(self, child, decomp=True):
Simon Glass2d553c02019-09-25 08:56:21 -0600710 """Read the data for a particular child entry
Simon Glass4e185e82019-09-25 08:56:20 -0600711
712 This reads data from the parent and extracts the piece that relates to
713 the given child.
714
715 Args:
Simon Glass2d553c02019-09-25 08:56:21 -0600716 child: Child entry to read data for (must be valid)
Simon Glass4e185e82019-09-25 08:56:20 -0600717 decomp: True to decompress any compressed data before returning it;
718 False to return the raw, uncompressed data
719
720 Returns:
721 Data for the child (bytes)
722 """
723 pass
724
Simon Glassd5079332019-07-20 12:23:41 -0600725 def LoadData(self, decomp=True):
726 data = self.ReadData(decomp)
Simon Glass10f9d002019-07-20 12:23:50 -0600727 self.contents_size = len(data)
Simon Glassd5079332019-07-20 12:23:41 -0600728 self.ProcessContentsUpdate(data)
729 self.Detail('Loaded data size %x' % len(data))
Simon Glassc5ad04b2019-07-20 12:23:46 -0600730
731 def GetImage(self):
732 """Get the image containing this entry
733
734 Returns:
735 Image object containing this entry
736 """
737 return self.section.GetImage()
Simon Glass10f9d002019-07-20 12:23:50 -0600738
739 def WriteData(self, data, decomp=True):
740 """Write the data to an entry in the image
741
742 This is used when the image has been read in and we want to replace the
743 data for a particular entry in that image.
744
745 The image must be re-packed and written out afterwards.
746
747 Args:
748 data: Data to replace it with
749 decomp: True to compress the data if needed, False if data is
750 already compressed so should be used as is
751
752 Returns:
753 True if the data did not result in a resize of this entry, False if
754 the entry must be resized
755 """
Simon Glass9a5d3dc2019-10-31 07:43:02 -0600756 if self.size is not None:
757 self.contents_size = self.size
758 else:
759 self.contents_size = self.pre_reset_size
Simon Glass10f9d002019-07-20 12:23:50 -0600760 ok = self.ProcessContentsUpdate(data)
761 self.Detail('WriteData: size=%x, ok=%s' % (len(data), ok))
Simon Glass7210c892019-07-20 12:24:05 -0600762 section_ok = self.section.WriteChildData(self)
763 return ok and section_ok
764
765 def WriteChildData(self, child):
766 """Handle writing the data in a child entry
767
768 This should be called on the child's parent section after the child's
769 data has been updated. It
770
771 This base-class implementation does nothing, since the base Entry object
772 does not have any children.
773
774 Args:
775 child: Child Entry that was written
776
777 Returns:
778 True if the section could be updated successfully, False if the
779 data is such that the section could not updat
780 """
781 return True
Simon Glasseba1f0c2019-07-20 12:23:55 -0600782
783 def GetSiblingOrder(self):
784 """Get the relative order of an entry amoung its siblings
785
786 Returns:
787 'start' if this entry is first among siblings, 'end' if last,
788 otherwise None
789 """
790 entries = list(self.section.GetEntries().values())
791 if entries:
792 if self == entries[0]:
793 return 'start'
794 elif self == entries[-1]:
795 return 'end'
796 return 'middle'