blob: 8946d2bc02f44c8b4b37dfa2cf06207d37c77749 [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:
208 Fdt object for this dtb, or None if not available
209 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):
214 pass
215
Simon Glassa9fad072020-10-26 17:40:17 -0600216 def AddMissingProperties(self, have_image_pos):
217 """Add new properties to the device tree as needed for this entry
218
219 Args:
220 have_image_pos: True if this entry has an image position. This can
221 be False if its parent section is compressed, since compression
222 groups all entries together into a compressed block of data,
223 obscuring the start of each individual child entry
224 """
225 for prop in ['offset', 'size']:
Simon Glass078ab1a2018-07-06 10:27:41 -0600226 if not prop in self._node.props:
Simon Glassf46621d2018-09-14 04:57:21 -0600227 state.AddZeroProp(self._node, prop)
Simon Glassa9fad072020-10-26 17:40:17 -0600228 if have_image_pos and 'image-pos' not in self._node.props:
229 state.AddZeroProp(self._node, 'image-pos')
Simon Glass12bb1a92019-07-20 12:23:51 -0600230 if self.GetImage().allow_repack:
231 if self.orig_offset is not None:
232 state.AddZeroProp(self._node, 'orig-offset', True)
233 if self.orig_size is not None:
234 state.AddZeroProp(self._node, 'orig-size', True)
235
Simon Glass8287ee82019-07-08 14:25:30 -0600236 if self.compress != 'none':
237 state.AddZeroProp(self._node, 'uncomp-size')
Simon Glasse0e5df92018-09-14 04:57:31 -0600238 err = state.CheckAddHashProp(self._node)
239 if err:
240 self.Raise(err)
Simon Glass078ab1a2018-07-06 10:27:41 -0600241
242 def SetCalculatedProperties(self):
243 """Set the value of device-tree properties calculated by binman"""
Simon Glassf46621d2018-09-14 04:57:21 -0600244 state.SetInt(self._node, 'offset', self.offset)
245 state.SetInt(self._node, 'size', self.size)
Simon Glass8beb11e2019-07-08 14:25:47 -0600246 base = self.section.GetRootSkipAtStart() if self.section else 0
Simon Glassa9fad072020-10-26 17:40:17 -0600247 if self.image_pos is not None:
248 state.SetInt(self._node, 'image-pos', self.image_pos)
Simon Glass12bb1a92019-07-20 12:23:51 -0600249 if self.GetImage().allow_repack:
250 if self.orig_offset is not None:
251 state.SetInt(self._node, 'orig-offset', self.orig_offset, True)
252 if self.orig_size is not None:
253 state.SetInt(self._node, 'orig-size', self.orig_size, True)
Simon Glass8287ee82019-07-08 14:25:30 -0600254 if self.uncomp_size is not None:
255 state.SetInt(self._node, 'uncomp-size', self.uncomp_size)
Simon Glasse0e5df92018-09-14 04:57:31 -0600256 state.CheckSetHashValue(self._node, self.GetData)
Simon Glass078ab1a2018-07-06 10:27:41 -0600257
Simon Glassecab8972018-07-06 10:27:40 -0600258 def ProcessFdt(self, fdt):
Simon Glass6ed45ba2018-09-14 04:57:24 -0600259 """Allow entries to adjust the device tree
260
261 Some entries need to adjust the device tree for their purposes. This
262 may involve adding or deleting properties.
263
264 Returns:
265 True if processing is complete
266 False if processing could not be completed due to a dependency.
267 This will cause the entry to be retried after others have been
268 called
269 """
Simon Glassecab8972018-07-06 10:27:40 -0600270 return True
271
Simon Glassc8d48ef2018-06-01 09:38:21 -0600272 def SetPrefix(self, prefix):
273 """Set the name prefix for a node
274
275 Args:
276 prefix: Prefix to set, or '' to not use a prefix
277 """
278 if prefix:
279 self.name = prefix + self.name
280
Simon Glass5c890232018-07-06 10:27:19 -0600281 def SetContents(self, data):
282 """Set the contents of an entry
283
284 This sets both the data and content_size properties
285
286 Args:
Simon Glass5b463fc2019-07-08 14:25:33 -0600287 data: Data to set to the contents (bytes)
Simon Glass5c890232018-07-06 10:27:19 -0600288 """
289 self.data = data
290 self.contents_size = len(self.data)
291
292 def ProcessContentsUpdate(self, data):
Simon Glass5b463fc2019-07-08 14:25:33 -0600293 """Update the contents of an entry, after the size is fixed
Simon Glass5c890232018-07-06 10:27:19 -0600294
Simon Glassa0dcaf22019-07-08 14:25:35 -0600295 This checks that the new data is the same size as the old. If the size
296 has changed, this triggers a re-run of the packing algorithm.
Simon Glass5c890232018-07-06 10:27:19 -0600297
298 Args:
Simon Glass5b463fc2019-07-08 14:25:33 -0600299 data: Data to set to the contents (bytes)
Simon Glass5c890232018-07-06 10:27:19 -0600300
301 Raises:
302 ValueError if the new data size is not the same as the old
303 """
Simon Glassa0dcaf22019-07-08 14:25:35 -0600304 size_ok = True
Simon Glassc52c9e72019-07-08 14:25:37 -0600305 new_size = len(data)
Simon Glass61ec04f2019-07-20 12:23:58 -0600306 if state.AllowEntryExpansion() and new_size > self.contents_size:
307 # self.data will indicate the new size needed
308 size_ok = False
309 elif state.AllowEntryContraction() and new_size < self.contents_size:
310 size_ok = False
311
312 # If not allowed to change, try to deal with it or give up
313 if size_ok:
Simon Glassc52c9e72019-07-08 14:25:37 -0600314 if new_size > self.contents_size:
Simon Glass61ec04f2019-07-20 12:23:58 -0600315 self.Raise('Cannot update entry size from %d to %d' %
316 (self.contents_size, new_size))
317
318 # Don't let the data shrink. Pad it if necessary
319 if size_ok and new_size < self.contents_size:
320 data += tools.GetBytes(0, self.contents_size - new_size)
321
322 if not size_ok:
323 tout.Debug("Entry '%s' size change from %s to %s" % (
324 self._node.path, ToHex(self.contents_size),
325 ToHex(new_size)))
Simon Glass5c890232018-07-06 10:27:19 -0600326 self.SetContents(data)
Simon Glassa0dcaf22019-07-08 14:25:35 -0600327 return size_ok
Simon Glass5c890232018-07-06 10:27:19 -0600328
Simon Glassbf7fd502016-11-25 20:15:51 -0700329 def ObtainContents(self):
330 """Figure out the contents of an entry.
331
332 Returns:
333 True if the contents were found, False if another call is needed
334 after the other entries are processed.
335 """
336 # No contents by default: subclasses can implement this
337 return True
338
Simon Glassc52c9e72019-07-08 14:25:37 -0600339 def ResetForPack(self):
340 """Reset offset/size fields so that packing can be done again"""
Simon Glass9f297b02019-07-20 12:23:36 -0600341 self.Detail('ResetForPack: offset %s->%s, size %s->%s' %
342 (ToHex(self.offset), ToHex(self.orig_offset),
343 ToHex(self.size), ToHex(self.orig_size)))
Simon Glass9a5d3dc2019-10-31 07:43:02 -0600344 self.pre_reset_size = self.size
Simon Glassc52c9e72019-07-08 14:25:37 -0600345 self.offset = self.orig_offset
346 self.size = self.orig_size
347
Simon Glass3ab95982018-08-01 15:22:37 -0600348 def Pack(self, offset):
Simon Glass25ac0e62018-06-01 09:38:14 -0600349 """Figure out how to pack the entry into the section
Simon Glassbf7fd502016-11-25 20:15:51 -0700350
351 Most of the time the entries are not fully specified. There may be
352 an alignment but no size. In that case we take the size from the
353 contents of the entry.
354
Simon Glass3ab95982018-08-01 15:22:37 -0600355 If an entry has no hard-coded offset, it will be placed at @offset.
Simon Glassbf7fd502016-11-25 20:15:51 -0700356
Simon Glass3ab95982018-08-01 15:22:37 -0600357 Once this function is complete, both the offset and size of the
Simon Glassbf7fd502016-11-25 20:15:51 -0700358 entry will be know.
359
360 Args:
Simon Glass3ab95982018-08-01 15:22:37 -0600361 Current section offset pointer
Simon Glassbf7fd502016-11-25 20:15:51 -0700362
363 Returns:
Simon Glass3ab95982018-08-01 15:22:37 -0600364 New section offset pointer (after this entry)
Simon Glassbf7fd502016-11-25 20:15:51 -0700365 """
Simon Glass9f297b02019-07-20 12:23:36 -0600366 self.Detail('Packing: offset=%s, size=%s, content_size=%x' %
367 (ToHex(self.offset), ToHex(self.size),
368 self.contents_size))
Simon Glass3ab95982018-08-01 15:22:37 -0600369 if self.offset is None:
370 if self.offset_unset:
371 self.Raise('No offset set with offset-unset: should another '
372 'entry provide this correct offset?')
373 self.offset = tools.Align(offset, self.align)
Simon Glassbf7fd502016-11-25 20:15:51 -0700374 needed = self.pad_before + self.contents_size + self.pad_after
375 needed = tools.Align(needed, self.align_size)
376 size = self.size
377 if not size:
378 size = needed
Simon Glass3ab95982018-08-01 15:22:37 -0600379 new_offset = self.offset + size
380 aligned_offset = tools.Align(new_offset, self.align_end)
381 if aligned_offset != new_offset:
382 size = aligned_offset - self.offset
383 new_offset = aligned_offset
Simon Glassbf7fd502016-11-25 20:15:51 -0700384
385 if not self.size:
386 self.size = size
387
388 if self.size < needed:
389 self.Raise("Entry contents size is %#x (%d) but entry size is "
390 "%#x (%d)" % (needed, needed, self.size, self.size))
391 # Check that the alignment is correct. It could be wrong if the
Simon Glass3ab95982018-08-01 15:22:37 -0600392 # and offset or size values were provided (i.e. not calculated), but
Simon Glassbf7fd502016-11-25 20:15:51 -0700393 # conflict with the provided alignment values
394 if self.size != tools.Align(self.size, self.align_size):
395 self.Raise("Size %#x (%d) does not match align-size %#x (%d)" %
396 (self.size, self.size, self.align_size, self.align_size))
Simon Glass3ab95982018-08-01 15:22:37 -0600397 if self.offset != tools.Align(self.offset, self.align):
398 self.Raise("Offset %#x (%d) does not match align %#x (%d)" %
399 (self.offset, self.offset, self.align, self.align))
Simon Glass9f297b02019-07-20 12:23:36 -0600400 self.Detail(' - packed: offset=%#x, size=%#x, content_size=%#x, next_offset=%x' %
401 (self.offset, self.size, self.contents_size, new_offset))
Simon Glassbf7fd502016-11-25 20:15:51 -0700402
Simon Glass3ab95982018-08-01 15:22:37 -0600403 return new_offset
Simon Glassbf7fd502016-11-25 20:15:51 -0700404
405 def Raise(self, msg):
406 """Convenience function to raise an error referencing a node"""
407 raise ValueError("Node '%s': %s" % (self._node.path, msg))
408
Simon Glass9f297b02019-07-20 12:23:36 -0600409 def Detail(self, msg):
410 """Convenience function to log detail referencing a node"""
411 tag = "Node '%s'" % self._node.path
412 tout.Detail('%30s: %s' % (tag, msg))
413
Simon Glass53af22a2018-07-17 13:25:32 -0600414 def GetEntryArgsOrProps(self, props, required=False):
415 """Return the values of a set of properties
416
417 Args:
418 props: List of EntryArg objects
419
420 Raises:
421 ValueError if a property is not found
422 """
423 values = []
424 missing = []
425 for prop in props:
426 python_prop = prop.name.replace('-', '_')
427 if hasattr(self, python_prop):
428 value = getattr(self, python_prop)
429 else:
430 value = None
431 if value is None:
432 value = self.GetArg(prop.name, prop.datatype)
433 if value is None and required:
434 missing.append(prop.name)
435 values.append(value)
436 if missing:
437 self.Raise('Missing required properties/entry args: %s' %
438 (', '.join(missing)))
439 return values
440
Simon Glassbf7fd502016-11-25 20:15:51 -0700441 def GetPath(self):
442 """Get the path of a node
443
444 Returns:
445 Full path of the node for this entry
446 """
447 return self._node.path
448
449 def GetData(self):
Simon Glass63e7ba62020-10-26 17:40:16 -0600450 """Get the contents of an entry
451
452 Returns:
453 bytes content of the entry, excluding any padding. If the entry is
454 compressed, the compressed data is returned
455 """
Simon Glass9f297b02019-07-20 12:23:36 -0600456 self.Detail('GetData: size %s' % ToHexSize(self.data))
Simon Glassbf7fd502016-11-25 20:15:51 -0700457 return self.data
458
Simon Glass3ab95982018-08-01 15:22:37 -0600459 def GetOffsets(self):
Simon Glassed7dd5e2019-07-08 13:18:30 -0600460 """Get the offsets for siblings
461
462 Some entry types can contain information about the position or size of
463 other entries. An example of this is the Intel Flash Descriptor, which
464 knows where the Intel Management Engine section should go.
465
466 If this entry knows about the position of other entries, it can specify
467 this by returning values here
468
469 Returns:
470 Dict:
471 key: Entry type
472 value: List containing position and size of the given entry
Simon Glasscf549042019-07-08 13:18:39 -0600473 type. Either can be None if not known
Simon Glassed7dd5e2019-07-08 13:18:30 -0600474 """
Simon Glassbf7fd502016-11-25 20:15:51 -0700475 return {}
476
Simon Glasscf549042019-07-08 13:18:39 -0600477 def SetOffsetSize(self, offset, size):
478 """Set the offset and/or size of an entry
479
480 Args:
481 offset: New offset, or None to leave alone
482 size: New size, or None to leave alone
483 """
484 if offset is not None:
485 self.offset = offset
486 if size is not None:
487 self.size = size
Simon Glassbf7fd502016-11-25 20:15:51 -0700488
Simon Glassdbf6be92018-08-01 15:22:42 -0600489 def SetImagePos(self, image_pos):
490 """Set the position in the image
491
492 Args:
493 image_pos: Position of this entry in the image
494 """
495 self.image_pos = image_pos + self.offset
496
Simon Glassbf7fd502016-11-25 20:15:51 -0700497 def ProcessContents(self):
Simon Glassa0dcaf22019-07-08 14:25:35 -0600498 """Do any post-packing updates of entry contents
499
500 This function should call ProcessContentsUpdate() to update the entry
501 contents, if necessary, returning its return value here.
502
503 Args:
504 data: Data to set to the contents (bytes)
505
506 Returns:
507 True if the new data size is OK, False if expansion is needed
508
509 Raises:
510 ValueError if the new data size is not the same as the old and
511 state.AllowEntryExpansion() is False
512 """
513 return True
Simon Glass19790632017-11-13 18:55:01 -0700514
Simon Glassf55382b2018-06-01 09:38:13 -0600515 def WriteSymbols(self, section):
Simon Glass19790632017-11-13 18:55:01 -0700516 """Write symbol values into binary files for access at run time
517
518 Args:
Simon Glassf55382b2018-06-01 09:38:13 -0600519 section: Section containing the entry
Simon Glass19790632017-11-13 18:55:01 -0700520 """
521 pass
Simon Glass18546952018-06-01 09:38:16 -0600522
Simon Glass6ddd6112020-10-26 17:40:18 -0600523 def CheckEntries(self):
Simon Glass3ab95982018-08-01 15:22:37 -0600524 """Check that the entry offsets are correct
Simon Glass18546952018-06-01 09:38:16 -0600525
Simon Glass3ab95982018-08-01 15:22:37 -0600526 This is used for entries which have extra offset requirements (other
Simon Glass18546952018-06-01 09:38:16 -0600527 than having to be fully inside their section). Sub-classes can implement
528 this function and raise if there is a problem.
529 """
530 pass
Simon Glass3b0c3822018-06-01 09:38:20 -0600531
Simon Glass8122f392018-07-17 13:25:28 -0600532 @staticmethod
Simon Glass163ed6c2018-09-14 04:57:36 -0600533 def GetStr(value):
534 if value is None:
535 return '<none> '
536 return '%08x' % value
537
538 @staticmethod
Simon Glass1be70d22018-07-17 13:25:49 -0600539 def WriteMapLine(fd, indent, name, offset, size, image_pos):
Simon Glass163ed6c2018-09-14 04:57:36 -0600540 print('%s %s%s %s %s' % (Entry.GetStr(image_pos), ' ' * indent,
541 Entry.GetStr(offset), Entry.GetStr(size),
542 name), file=fd)
Simon Glass8122f392018-07-17 13:25:28 -0600543
Simon Glass3b0c3822018-06-01 09:38:20 -0600544 def WriteMap(self, fd, indent):
545 """Write a map of the entry to a .map file
546
547 Args:
548 fd: File to write the map to
549 indent: Curent indent level of map (0=none, 1=one level, etc.)
550 """
Simon Glass1be70d22018-07-17 13:25:49 -0600551 self.WriteMapLine(fd, indent, self.name, self.offset, self.size,
552 self.image_pos)
Simon Glass53af22a2018-07-17 13:25:32 -0600553
Simon Glass11e36cc2018-07-17 13:25:38 -0600554 def GetEntries(self):
555 """Return a list of entries contained by this entry
556
557 Returns:
558 List of entries, or None if none. A normal entry has no entries
559 within it so will return None
560 """
561 return None
562
Simon Glass53af22a2018-07-17 13:25:32 -0600563 def GetArg(self, name, datatype=str):
564 """Get the value of an entry argument or device-tree-node property
565
566 Some node properties can be provided as arguments to binman. First check
567 the entry arguments, and fall back to the device tree if not found
568
569 Args:
570 name: Argument name
571 datatype: Data type (str or int)
572
573 Returns:
574 Value of argument as a string or int, or None if no value
575
576 Raises:
577 ValueError if the argument cannot be converted to in
578 """
Simon Glassc55a50f2018-09-14 04:57:19 -0600579 value = state.GetEntryArg(name)
Simon Glass53af22a2018-07-17 13:25:32 -0600580 if value is not None:
581 if datatype == int:
582 try:
583 value = int(value)
584 except ValueError:
585 self.Raise("Cannot convert entry arg '%s' (value '%s') to integer" %
586 (name, value))
587 elif datatype == str:
588 pass
589 else:
590 raise ValueError("GetArg() internal error: Unknown data type '%s'" %
591 datatype)
592 else:
593 value = fdt_util.GetDatatype(self._node, name, datatype)
594 return value
Simon Glassfd8d1f72018-07-17 13:25:36 -0600595
596 @staticmethod
597 def WriteDocs(modules, test_missing=None):
598 """Write out documentation about the various entry types to stdout
599
600 Args:
601 modules: List of modules to include
602 test_missing: Used for testing. This is a module to report
603 as missing
604 """
605 print('''Binman Entry Documentation
606===========================
607
608This file describes the entry types supported by binman. These entry types can
609be placed in an image one by one to build up a final firmware image. It is
610fairly easy to create new entry types. Just add a new file to the 'etype'
611directory. You can use the existing entries as examples.
612
613Note that some entries are subclasses of others, using and extending their
614features to produce new behaviours.
615
616
617''')
618 modules = sorted(modules)
619
620 # Don't show the test entry
621 if '_testing' in modules:
622 modules.remove('_testing')
623 missing = []
624 for name in modules:
Simon Glass16287932020-04-17 18:09:03 -0600625 module = Entry.Lookup('WriteDocs', name)
Simon Glassfd8d1f72018-07-17 13:25:36 -0600626 docs = getattr(module, '__doc__')
627 if test_missing == name:
628 docs = None
629 if docs:
630 lines = docs.splitlines()
631 first_line = lines[0]
632 rest = [line[4:] for line in lines[1:]]
633 hdr = 'Entry: %s: %s' % (name.replace('_', '-'), first_line)
634 print(hdr)
635 print('-' * len(hdr))
636 print('\n'.join(rest))
637 print()
638 print()
639 else:
640 missing.append(name)
641
642 if missing:
643 raise ValueError('Documentation is missing for modules: %s' %
644 ', '.join(missing))
Simon Glassa326b492018-09-14 04:57:11 -0600645
646 def GetUniqueName(self):
647 """Get a unique name for a node
648
649 Returns:
650 String containing a unique name for a node, consisting of the name
651 of all ancestors (starting from within the 'binman' node) separated
652 by a dot ('.'). This can be useful for generating unique filesnames
653 in the output directory.
654 """
655 name = self.name
656 node = self._node
657 while node.parent:
658 node = node.parent
659 if node.name == 'binman':
660 break
661 name = '%s.%s' % (node.name, name)
662 return name
Simon Glassba64a0b2018-09-14 04:57:29 -0600663
664 def ExpandToLimit(self, limit):
665 """Expand an entry so that it ends at the given offset limit"""
666 if self.offset + self.size < limit:
667 self.size = limit - self.offset
668 # Request the contents again, since changing the size requires that
669 # the data grows. This should not fail, but check it to be sure.
670 if not self.ObtainContents():
671 self.Raise('Cannot obtain contents when expanding entry')
Simon Glassfa1c9372019-07-08 13:18:38 -0600672
673 def HasSibling(self, name):
674 """Check if there is a sibling of a given name
675
676 Returns:
677 True if there is an entry with this name in the the same section,
678 else False
679 """
680 return name in self.section.GetEntries()
Simon Glasscf228942019-07-08 14:25:28 -0600681
682 def GetSiblingImagePos(self, name):
683 """Return the image position of the given sibling
684
685 Returns:
686 Image position of sibling, or None if the sibling has no position,
687 or False if there is no such sibling
688 """
689 if not self.HasSibling(name):
690 return False
691 return self.section.GetEntries()[name].image_pos
Simon Glass41b8ba02019-07-08 14:25:43 -0600692
693 @staticmethod
694 def AddEntryInfo(entries, indent, name, etype, size, image_pos,
695 uncomp_size, offset, entry):
696 """Add a new entry to the entries list
697
698 Args:
699 entries: List (of EntryInfo objects) to add to
700 indent: Current indent level to add to list
701 name: Entry name (string)
702 etype: Entry type (string)
703 size: Entry size in bytes (int)
704 image_pos: Position within image in bytes (int)
705 uncomp_size: Uncompressed size if the entry uses compression, else
706 None
707 offset: Entry offset within parent in bytes (int)
708 entry: Entry object
709 """
710 entries.append(EntryInfo(indent, name, etype, size, image_pos,
711 uncomp_size, offset, entry))
712
713 def ListEntries(self, entries, indent):
714 """Add files in this entry to the list of entries
715
716 This can be overridden by subclasses which need different behaviour.
717
718 Args:
719 entries: List (of EntryInfo objects) to add to
720 indent: Current indent level to add to list
721 """
722 self.AddEntryInfo(entries, indent, self.name, self.etype, self.size,
723 self.image_pos, self.uncomp_size, self.offset, self)
Simon Glassf667e452019-07-08 14:25:50 -0600724
725 def ReadData(self, decomp=True):
726 """Read the data for an entry from the image
727
728 This is used when the image has been read in and we want to extract the
729 data for a particular entry from that image.
730
731 Args:
732 decomp: True to decompress any compressed data before returning it;
733 False to return the raw, uncompressed data
734
735 Returns:
736 Entry data (bytes)
737 """
738 # Use True here so that we get an uncompressed section to work from,
739 # although compressed sections are currently not supported
Simon Glass2d553c02019-09-25 08:56:21 -0600740 tout.Debug("ReadChildData section '%s', entry '%s'" %
741 (self.section.GetPath(), self.GetPath()))
Simon Glassa9cd39e2019-07-20 12:24:04 -0600742 data = self.section.ReadChildData(self, decomp)
743 return data
Simon Glassd5079332019-07-20 12:23:41 -0600744
Simon Glass4e185e82019-09-25 08:56:20 -0600745 def ReadChildData(self, child, decomp=True):
Simon Glass2d553c02019-09-25 08:56:21 -0600746 """Read the data for a particular child entry
Simon Glass4e185e82019-09-25 08:56:20 -0600747
748 This reads data from the parent and extracts the piece that relates to
749 the given child.
750
751 Args:
Simon Glass2d553c02019-09-25 08:56:21 -0600752 child: Child entry to read data for (must be valid)
Simon Glass4e185e82019-09-25 08:56:20 -0600753 decomp: True to decompress any compressed data before returning it;
754 False to return the raw, uncompressed data
755
756 Returns:
757 Data for the child (bytes)
758 """
759 pass
760
Simon Glassd5079332019-07-20 12:23:41 -0600761 def LoadData(self, decomp=True):
762 data = self.ReadData(decomp)
Simon Glass10f9d002019-07-20 12:23:50 -0600763 self.contents_size = len(data)
Simon Glassd5079332019-07-20 12:23:41 -0600764 self.ProcessContentsUpdate(data)
765 self.Detail('Loaded data size %x' % len(data))
Simon Glassc5ad04b2019-07-20 12:23:46 -0600766
767 def GetImage(self):
768 """Get the image containing this entry
769
770 Returns:
771 Image object containing this entry
772 """
773 return self.section.GetImage()
Simon Glass10f9d002019-07-20 12:23:50 -0600774
775 def WriteData(self, data, decomp=True):
776 """Write the data to an entry in the image
777
778 This is used when the image has been read in and we want to replace the
779 data for a particular entry in that image.
780
781 The image must be re-packed and written out afterwards.
782
783 Args:
784 data: Data to replace it with
785 decomp: True to compress the data if needed, False if data is
786 already compressed so should be used as is
787
788 Returns:
789 True if the data did not result in a resize of this entry, False if
790 the entry must be resized
791 """
Simon Glass9a5d3dc2019-10-31 07:43:02 -0600792 if self.size is not None:
793 self.contents_size = self.size
794 else:
795 self.contents_size = self.pre_reset_size
Simon Glass10f9d002019-07-20 12:23:50 -0600796 ok = self.ProcessContentsUpdate(data)
797 self.Detail('WriteData: size=%x, ok=%s' % (len(data), ok))
Simon Glass7210c892019-07-20 12:24:05 -0600798 section_ok = self.section.WriteChildData(self)
799 return ok and section_ok
800
801 def WriteChildData(self, child):
802 """Handle writing the data in a child entry
803
804 This should be called on the child's parent section after the child's
805 data has been updated. It
806
807 This base-class implementation does nothing, since the base Entry object
808 does not have any children.
809
810 Args:
811 child: Child Entry that was written
812
813 Returns:
814 True if the section could be updated successfully, False if the
815 data is such that the section could not updat
816 """
817 return True
Simon Glasseba1f0c2019-07-20 12:23:55 -0600818
819 def GetSiblingOrder(self):
820 """Get the relative order of an entry amoung its siblings
821
822 Returns:
823 'start' if this entry is first among siblings, 'end' if last,
824 otherwise None
825 """
826 entries = list(self.section.GetEntries().values())
827 if entries:
828 if self == entries[0]:
829 return 'start'
830 elif self == entries[-1]:
831 return 'end'
832 return 'middle'
Simon Glass4f9f1052020-07-09 18:39:38 -0600833
834 def SetAllowMissing(self, allow_missing):
835 """Set whether a section allows missing external blobs
836
837 Args:
838 allow_missing: True if allowed, False if not allowed
839 """
840 # This is meaningless for anything other than sections
841 pass
Simon Glassb1cca952020-07-09 18:39:40 -0600842
843 def CheckMissing(self, missing_list):
844 """Check if any entries in this section have missing external blobs
845
846 If there are missing blobs, the entries are added to the list
847
848 Args:
849 missing_list: List of Entry objects to be added to
850 """
851 if self.missing:
852 missing_list.append(self)
Simon Glass87958982020-09-01 05:13:57 -0600853
854 def GetAllowMissing(self):
855 """Get whether a section allows missing external blobs
856
857 Returns:
858 True if allowed, False if not allowed
859 """
860 return self.allow_missing
Simon Glassb2381432020-09-06 10:39:09 -0600861
862 def GetHelpTags(self):
863 """Get the tags use for missing-blob help
864
865 Returns:
866 list of possible tags, most desirable first
867 """
868 return list(filter(None, [self.missing_msg, self.name, self.etype]))
Simon Glass87c96292020-10-26 17:40:06 -0600869
870 def CompressData(self, indata):
871 """Compress data according to the entry's compression method
872
873 Args:
874 indata: Data to compress
875
876 Returns:
877 Compressed data (first word is the compressed size)
878 """
Simon Glass97c3e9a2020-10-26 17:40:15 -0600879 self.uncomp_data = indata
Simon Glass87c96292020-10-26 17:40:06 -0600880 if self.compress != 'none':
881 self.uncomp_size = len(indata)
882 data = tools.Compress(indata, self.compress)
883 return data