blob: 409c0dca9345df5898b0dc31214a88a0149286d1 [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 Glass3b0c3822018-06-01 09:38:20 -06007from __future__ import print_function
8
Simon Glass53af22a2018-07-17 13:25:32 -06009from collections import namedtuple
10
Simon Glassbf7fd502016-11-25 20:15:51 -070011# importlib was introduced in Python 2.7 but there was a report of it not
12# working in 2.7.12, so we work around this:
13# http://lists.denx.de/pipermail/u-boot/2016-October/269729.html
14try:
15 import importlib
16 have_importlib = True
17except:
18 have_importlib = False
19
Simon Glassbadf0ec2018-06-01 09:38:15 -060020import os
21import sys
Simon Glassc55a50f2018-09-14 04:57:19 -060022
23import fdt_util
Simon Glassbf7fd502016-11-25 20:15:51 -070024import tools
Simon Glass9f297b02019-07-20 12:23:36 -060025from tools import ToHex, ToHexSize
Simon Glasseea264e2019-07-08 14:25:49 -060026import tout
Simon Glassbf7fd502016-11-25 20:15:51 -070027
28modules = {}
29
Simon Glassbadf0ec2018-06-01 09:38:15 -060030our_path = os.path.dirname(os.path.realpath(__file__))
31
Simon Glass53af22a2018-07-17 13:25:32 -060032
33# An argument which can be passed to entries on the command line, in lieu of
34# device-tree properties.
35EntryArg = namedtuple('EntryArg', ['name', 'datatype'])
36
Simon Glass41b8ba02019-07-08 14:25:43 -060037# Information about an entry for use when displaying summaries
38EntryInfo = namedtuple('EntryInfo', ['indent', 'name', 'etype', 'size',
39 'image_pos', 'uncomp_size', 'offset',
40 'entry'])
Simon Glass53af22a2018-07-17 13:25:32 -060041
Simon Glassbf7fd502016-11-25 20:15:51 -070042class Entry(object):
Simon Glass25ac0e62018-06-01 09:38:14 -060043 """An Entry in the section
Simon Glassbf7fd502016-11-25 20:15:51 -070044
45 An entry corresponds to a single node in the device-tree description
Simon Glass25ac0e62018-06-01 09:38:14 -060046 of the section. Each entry ends up being a part of the final section.
Simon Glassbf7fd502016-11-25 20:15:51 -070047 Entries can be placed either right next to each other, or with padding
48 between them. The type of the entry determines the data that is in it.
49
50 This class is not used by itself. All entry objects are subclasses of
51 Entry.
52
53 Attributes:
Simon Glass8122f392018-07-17 13:25:28 -060054 section: Section object containing this entry
Simon Glassbf7fd502016-11-25 20:15:51 -070055 node: The node that created this entry
Simon Glass3ab95982018-08-01 15:22:37 -060056 offset: Offset of entry within the section, None if not known yet (in
57 which case it will be calculated by Pack())
Simon Glassbf7fd502016-11-25 20:15:51 -070058 size: Entry size in bytes, None if not known
Simon Glass8287ee82019-07-08 14:25:30 -060059 uncomp_size: Size of uncompressed data in bytes, if the entry is
60 compressed, else None
Simon Glassbf7fd502016-11-25 20:15:51 -070061 contents_size: Size of contents in bytes, 0 by default
Simon Glass3ab95982018-08-01 15:22:37 -060062 align: Entry start offset alignment, or None
Simon Glassbf7fd502016-11-25 20:15:51 -070063 align_size: Entry size alignment, or None
Simon Glass3ab95982018-08-01 15:22:37 -060064 align_end: Entry end offset alignment, or None
Simon Glassbf7fd502016-11-25 20:15:51 -070065 pad_before: Number of pad bytes before the contents, 0 if none
66 pad_after: Number of pad bytes after the contents, 0 if none
67 data: Contents of entry (string of bytes)
Simon Glass8287ee82019-07-08 14:25:30 -060068 compress: Compression algoithm used (e.g. 'lz4'), 'none' if none
Simon Glassc52c9e72019-07-08 14:25:37 -060069 orig_offset: Original offset value read from node
70 orig_size: Original size value read from node
Simon Glassbf7fd502016-11-25 20:15:51 -070071 """
Simon Glassc6bd6e22019-07-20 12:23:45 -060072 def __init__(self, section, etype, node, name_prefix=''):
Simon Glass8dbb7442019-08-24 07:22:44 -060073 # Put this here to allow entry-docs and help to work without libfdt
74 global state
75 import state
76
Simon Glass25ac0e62018-06-01 09:38:14 -060077 self.section = section
Simon Glassbf7fd502016-11-25 20:15:51 -070078 self.etype = etype
79 self._node = node
Simon Glassc8d48ef2018-06-01 09:38:21 -060080 self.name = node and (name_prefix + node.name) or 'none'
Simon Glass3ab95982018-08-01 15:22:37 -060081 self.offset = None
Simon Glassbf7fd502016-11-25 20:15:51 -070082 self.size = None
Simon Glass8287ee82019-07-08 14:25:30 -060083 self.uncomp_size = None
Simon Glass24d0d3c2018-07-17 13:25:47 -060084 self.data = None
Simon Glassbf7fd502016-11-25 20:15:51 -070085 self.contents_size = 0
86 self.align = None
87 self.align_size = None
88 self.align_end = None
89 self.pad_before = 0
90 self.pad_after = 0
Simon Glass3ab95982018-08-01 15:22:37 -060091 self.offset_unset = False
Simon Glassdbf6be92018-08-01 15:22:42 -060092 self.image_pos = None
Simon Glassba64a0b2018-09-14 04:57:29 -060093 self._expand_size = False
Simon Glass8287ee82019-07-08 14:25:30 -060094 self.compress = 'none'
Simon Glassbf7fd502016-11-25 20:15:51 -070095
96 @staticmethod
Simon Glassc073ced2019-07-08 14:25:31 -060097 def Lookup(node_path, etype):
Simon Glassfd8d1f72018-07-17 13:25:36 -060098 """Look up the entry class for a node.
Simon Glassbf7fd502016-11-25 20:15:51 -070099
100 Args:
Simon Glassfd8d1f72018-07-17 13:25:36 -0600101 node_node: Path name of Node object containing information about
102 the entry to create (used for errors)
103 etype: Entry type to use
Simon Glassbf7fd502016-11-25 20:15:51 -0700104
105 Returns:
Simon Glassfd8d1f72018-07-17 13:25:36 -0600106 The entry class object if found, else None
Simon Glassbf7fd502016-11-25 20:15:51 -0700107 """
Simon Glassdd57c132018-06-01 09:38:11 -0600108 # Convert something like 'u-boot@0' to 'u_boot' since we are only
109 # interested in the type.
Simon Glassbf7fd502016-11-25 20:15:51 -0700110 module_name = etype.replace('-', '_')
Simon Glassdd57c132018-06-01 09:38:11 -0600111 if '@' in module_name:
112 module_name = module_name.split('@')[0]
Simon Glassbf7fd502016-11-25 20:15:51 -0700113 module = modules.get(module_name)
114
Simon Glassbadf0ec2018-06-01 09:38:15 -0600115 # Also allow entry-type modules to be brought in from the etype directory.
116
Simon Glassbf7fd502016-11-25 20:15:51 -0700117 # Import the module if we have not already done so.
118 if not module:
Simon Glassbadf0ec2018-06-01 09:38:15 -0600119 old_path = sys.path
120 sys.path.insert(0, os.path.join(our_path, 'etype'))
Simon Glassbf7fd502016-11-25 20:15:51 -0700121 try:
122 if have_importlib:
123 module = importlib.import_module(module_name)
124 else:
125 module = __import__(module_name)
Simon Glassfd8d1f72018-07-17 13:25:36 -0600126 except ImportError as e:
127 raise ValueError("Unknown entry type '%s' in node '%s' (expected etype/%s.py, error '%s'" %
128 (etype, node_path, module_name, e))
Simon Glassbadf0ec2018-06-01 09:38:15 -0600129 finally:
130 sys.path = old_path
Simon Glassbf7fd502016-11-25 20:15:51 -0700131 modules[module_name] = module
132
Simon Glassfd8d1f72018-07-17 13:25:36 -0600133 # Look up the expected class name
134 return getattr(module, 'Entry_%s' % module_name)
135
136 @staticmethod
137 def Create(section, node, etype=None):
138 """Create a new entry for a node.
139
140 Args:
141 section: Section object containing this node
142 node: Node object containing information about the entry to
143 create
144 etype: Entry type to use, or None to work it out (used for tests)
145
146 Returns:
147 A new Entry object of the correct type (a subclass of Entry)
148 """
149 if not etype:
150 etype = fdt_util.GetString(node, 'type', node.name)
Simon Glassc073ced2019-07-08 14:25:31 -0600151 obj = Entry.Lookup(node.path, etype)
Simon Glassfd8d1f72018-07-17 13:25:36 -0600152
Simon Glassbf7fd502016-11-25 20:15:51 -0700153 # Call its constructor to get the object we want.
Simon Glass25ac0e62018-06-01 09:38:14 -0600154 return obj(section, etype, node)
Simon Glassbf7fd502016-11-25 20:15:51 -0700155
156 def ReadNode(self):
157 """Read entry information from the node
158
Simon Glassc6bd6e22019-07-20 12:23:45 -0600159 This must be called as the first thing after the Entry is created.
160
Simon Glassbf7fd502016-11-25 20:15:51 -0700161 This reads all the fields we recognise from the node, ready for use.
162 """
Simon Glass15a587c2018-07-17 13:25:51 -0600163 if 'pos' in self._node.props:
164 self.Raise("Please use 'offset' instead of 'pos'")
Simon Glass3ab95982018-08-01 15:22:37 -0600165 self.offset = fdt_util.GetInt(self._node, 'offset')
Simon Glassbf7fd502016-11-25 20:15:51 -0700166 self.size = fdt_util.GetInt(self._node, 'size')
Simon Glass12bb1a92019-07-20 12:23:51 -0600167 self.orig_offset = fdt_util.GetInt(self._node, 'orig-offset')
168 self.orig_size = fdt_util.GetInt(self._node, 'orig-size')
169 if self.GetImage().copy_to_orig:
170 self.orig_offset = self.offset
171 self.orig_size = self.size
Simon Glassc52c9e72019-07-08 14:25:37 -0600172
Simon Glassffded752019-07-08 14:25:46 -0600173 # These should not be set in input files, but are set in an FDT map,
174 # which is also read by this code.
175 self.image_pos = fdt_util.GetInt(self._node, 'image-pos')
176 self.uncomp_size = fdt_util.GetInt(self._node, 'uncomp-size')
177
Simon Glassbf7fd502016-11-25 20:15:51 -0700178 self.align = fdt_util.GetInt(self._node, 'align')
179 if tools.NotPowerOfTwo(self.align):
180 raise ValueError("Node '%s': Alignment %s must be a power of two" %
181 (self._node.path, self.align))
182 self.pad_before = fdt_util.GetInt(self._node, 'pad-before', 0)
183 self.pad_after = fdt_util.GetInt(self._node, 'pad-after', 0)
184 self.align_size = fdt_util.GetInt(self._node, 'align-size')
185 if tools.NotPowerOfTwo(self.align_size):
Simon Glass8beb11e2019-07-08 14:25:47 -0600186 self.Raise("Alignment size %s must be a power of two" %
187 self.align_size)
Simon Glassbf7fd502016-11-25 20:15:51 -0700188 self.align_end = fdt_util.GetInt(self._node, 'align-end')
Simon Glass3ab95982018-08-01 15:22:37 -0600189 self.offset_unset = fdt_util.GetBool(self._node, 'offset-unset')
Simon Glassba64a0b2018-09-14 04:57:29 -0600190 self.expand_size = fdt_util.GetBool(self._node, 'expand-size')
Simon Glassbf7fd502016-11-25 20:15:51 -0700191
Simon Glass6c234bf2018-09-14 04:57:18 -0600192 def GetDefaultFilename(self):
193 return None
194
Simon Glassa8adb6d2019-07-20 12:23:28 -0600195 def GetFdts(self):
196 """Get the device trees used by this entry
Simon Glass539aece2018-09-14 04:57:22 -0600197
198 Returns:
Simon Glassa8adb6d2019-07-20 12:23:28 -0600199 Empty dict, if this entry is not a .dtb, otherwise:
200 Dict:
201 key: Filename from this entry (without the path)
Simon Glass4bdd3002019-07-20 12:23:31 -0600202 value: Tuple:
203 Fdt object for this dtb, or None if not available
204 Filename of file containing this dtb
Simon Glass539aece2018-09-14 04:57:22 -0600205 """
Simon Glassa8adb6d2019-07-20 12:23:28 -0600206 return {}
Simon Glass539aece2018-09-14 04:57:22 -0600207
Simon Glass0a98b282018-09-14 04:57:28 -0600208 def ExpandEntries(self):
209 pass
210
Simon Glass078ab1a2018-07-06 10:27:41 -0600211 def AddMissingProperties(self):
212 """Add new properties to the device tree as needed for this entry"""
Simon Glassdbf6be92018-08-01 15:22:42 -0600213 for prop in ['offset', 'size', 'image-pos']:
Simon Glass078ab1a2018-07-06 10:27:41 -0600214 if not prop in self._node.props:
Simon Glassf46621d2018-09-14 04:57:21 -0600215 state.AddZeroProp(self._node, prop)
Simon Glass12bb1a92019-07-20 12:23:51 -0600216 if self.GetImage().allow_repack:
217 if self.orig_offset is not None:
218 state.AddZeroProp(self._node, 'orig-offset', True)
219 if self.orig_size is not None:
220 state.AddZeroProp(self._node, 'orig-size', True)
221
Simon Glass8287ee82019-07-08 14:25:30 -0600222 if self.compress != 'none':
223 state.AddZeroProp(self._node, 'uncomp-size')
Simon Glasse0e5df92018-09-14 04:57:31 -0600224 err = state.CheckAddHashProp(self._node)
225 if err:
226 self.Raise(err)
Simon Glass078ab1a2018-07-06 10:27:41 -0600227
228 def SetCalculatedProperties(self):
229 """Set the value of device-tree properties calculated by binman"""
Simon Glassf46621d2018-09-14 04:57:21 -0600230 state.SetInt(self._node, 'offset', self.offset)
231 state.SetInt(self._node, 'size', self.size)
Simon Glass8beb11e2019-07-08 14:25:47 -0600232 base = self.section.GetRootSkipAtStart() if self.section else 0
233 state.SetInt(self._node, 'image-pos', self.image_pos - base)
Simon Glass12bb1a92019-07-20 12:23:51 -0600234 if self.GetImage().allow_repack:
235 if self.orig_offset is not None:
236 state.SetInt(self._node, 'orig-offset', self.orig_offset, True)
237 if self.orig_size is not None:
238 state.SetInt(self._node, 'orig-size', self.orig_size, True)
Simon Glass8287ee82019-07-08 14:25:30 -0600239 if self.uncomp_size is not None:
240 state.SetInt(self._node, 'uncomp-size', self.uncomp_size)
Simon Glasse0e5df92018-09-14 04:57:31 -0600241 state.CheckSetHashValue(self._node, self.GetData)
Simon Glass078ab1a2018-07-06 10:27:41 -0600242
Simon Glassecab8972018-07-06 10:27:40 -0600243 def ProcessFdt(self, fdt):
Simon Glass6ed45ba2018-09-14 04:57:24 -0600244 """Allow entries to adjust the device tree
245
246 Some entries need to adjust the device tree for their purposes. This
247 may involve adding or deleting properties.
248
249 Returns:
250 True if processing is complete
251 False if processing could not be completed due to a dependency.
252 This will cause the entry to be retried after others have been
253 called
254 """
Simon Glassecab8972018-07-06 10:27:40 -0600255 return True
256
Simon Glassc8d48ef2018-06-01 09:38:21 -0600257 def SetPrefix(self, prefix):
258 """Set the name prefix for a node
259
260 Args:
261 prefix: Prefix to set, or '' to not use a prefix
262 """
263 if prefix:
264 self.name = prefix + self.name
265
Simon Glass5c890232018-07-06 10:27:19 -0600266 def SetContents(self, data):
267 """Set the contents of an entry
268
269 This sets both the data and content_size properties
270
271 Args:
Simon Glass5b463fc2019-07-08 14:25:33 -0600272 data: Data to set to the contents (bytes)
Simon Glass5c890232018-07-06 10:27:19 -0600273 """
274 self.data = data
275 self.contents_size = len(self.data)
276
277 def ProcessContentsUpdate(self, data):
Simon Glass5b463fc2019-07-08 14:25:33 -0600278 """Update the contents of an entry, after the size is fixed
Simon Glass5c890232018-07-06 10:27:19 -0600279
Simon Glassa0dcaf22019-07-08 14:25:35 -0600280 This checks that the new data is the same size as the old. If the size
281 has changed, this triggers a re-run of the packing algorithm.
Simon Glass5c890232018-07-06 10:27:19 -0600282
283 Args:
Simon Glass5b463fc2019-07-08 14:25:33 -0600284 data: Data to set to the contents (bytes)
Simon Glass5c890232018-07-06 10:27:19 -0600285
286 Raises:
287 ValueError if the new data size is not the same as the old
288 """
Simon Glassa0dcaf22019-07-08 14:25:35 -0600289 size_ok = True
Simon Glassc52c9e72019-07-08 14:25:37 -0600290 new_size = len(data)
Simon Glass61ec04f2019-07-20 12:23:58 -0600291 if state.AllowEntryExpansion() and new_size > self.contents_size:
292 # self.data will indicate the new size needed
293 size_ok = False
294 elif state.AllowEntryContraction() and new_size < self.contents_size:
295 size_ok = False
296
297 # If not allowed to change, try to deal with it or give up
298 if size_ok:
Simon Glassc52c9e72019-07-08 14:25:37 -0600299 if new_size > self.contents_size:
Simon Glass61ec04f2019-07-20 12:23:58 -0600300 self.Raise('Cannot update entry size from %d to %d' %
301 (self.contents_size, new_size))
302
303 # Don't let the data shrink. Pad it if necessary
304 if size_ok and new_size < self.contents_size:
305 data += tools.GetBytes(0, self.contents_size - new_size)
306
307 if not size_ok:
308 tout.Debug("Entry '%s' size change from %s to %s" % (
309 self._node.path, ToHex(self.contents_size),
310 ToHex(new_size)))
Simon Glass5c890232018-07-06 10:27:19 -0600311 self.SetContents(data)
Simon Glassa0dcaf22019-07-08 14:25:35 -0600312 return size_ok
Simon Glass5c890232018-07-06 10:27:19 -0600313
Simon Glassbf7fd502016-11-25 20:15:51 -0700314 def ObtainContents(self):
315 """Figure out the contents of an entry.
316
317 Returns:
318 True if the contents were found, False if another call is needed
319 after the other entries are processed.
320 """
321 # No contents by default: subclasses can implement this
322 return True
323
Simon Glassc52c9e72019-07-08 14:25:37 -0600324 def ResetForPack(self):
325 """Reset offset/size fields so that packing can be done again"""
Simon Glass9f297b02019-07-20 12:23:36 -0600326 self.Detail('ResetForPack: offset %s->%s, size %s->%s' %
327 (ToHex(self.offset), ToHex(self.orig_offset),
328 ToHex(self.size), ToHex(self.orig_size)))
Simon Glassc52c9e72019-07-08 14:25:37 -0600329 self.offset = self.orig_offset
330 self.size = self.orig_size
331
Simon Glass3ab95982018-08-01 15:22:37 -0600332 def Pack(self, offset):
Simon Glass25ac0e62018-06-01 09:38:14 -0600333 """Figure out how to pack the entry into the section
Simon Glassbf7fd502016-11-25 20:15:51 -0700334
335 Most of the time the entries are not fully specified. There may be
336 an alignment but no size. In that case we take the size from the
337 contents of the entry.
338
Simon Glass3ab95982018-08-01 15:22:37 -0600339 If an entry has no hard-coded offset, it will be placed at @offset.
Simon Glassbf7fd502016-11-25 20:15:51 -0700340
Simon Glass3ab95982018-08-01 15:22:37 -0600341 Once this function is complete, both the offset and size of the
Simon Glassbf7fd502016-11-25 20:15:51 -0700342 entry will be know.
343
344 Args:
Simon Glass3ab95982018-08-01 15:22:37 -0600345 Current section offset pointer
Simon Glassbf7fd502016-11-25 20:15:51 -0700346
347 Returns:
Simon Glass3ab95982018-08-01 15:22:37 -0600348 New section offset pointer (after this entry)
Simon Glassbf7fd502016-11-25 20:15:51 -0700349 """
Simon Glass9f297b02019-07-20 12:23:36 -0600350 self.Detail('Packing: offset=%s, size=%s, content_size=%x' %
351 (ToHex(self.offset), ToHex(self.size),
352 self.contents_size))
Simon Glass3ab95982018-08-01 15:22:37 -0600353 if self.offset is None:
354 if self.offset_unset:
355 self.Raise('No offset set with offset-unset: should another '
356 'entry provide this correct offset?')
357 self.offset = tools.Align(offset, self.align)
Simon Glassbf7fd502016-11-25 20:15:51 -0700358 needed = self.pad_before + self.contents_size + self.pad_after
359 needed = tools.Align(needed, self.align_size)
360 size = self.size
361 if not size:
362 size = needed
Simon Glass3ab95982018-08-01 15:22:37 -0600363 new_offset = self.offset + size
364 aligned_offset = tools.Align(new_offset, self.align_end)
365 if aligned_offset != new_offset:
366 size = aligned_offset - self.offset
367 new_offset = aligned_offset
Simon Glassbf7fd502016-11-25 20:15:51 -0700368
369 if not self.size:
370 self.size = size
371
372 if self.size < needed:
373 self.Raise("Entry contents size is %#x (%d) but entry size is "
374 "%#x (%d)" % (needed, needed, self.size, self.size))
375 # Check that the alignment is correct. It could be wrong if the
Simon Glass3ab95982018-08-01 15:22:37 -0600376 # and offset or size values were provided (i.e. not calculated), but
Simon Glassbf7fd502016-11-25 20:15:51 -0700377 # conflict with the provided alignment values
378 if self.size != tools.Align(self.size, self.align_size):
379 self.Raise("Size %#x (%d) does not match align-size %#x (%d)" %
380 (self.size, self.size, self.align_size, self.align_size))
Simon Glass3ab95982018-08-01 15:22:37 -0600381 if self.offset != tools.Align(self.offset, self.align):
382 self.Raise("Offset %#x (%d) does not match align %#x (%d)" %
383 (self.offset, self.offset, self.align, self.align))
Simon Glass9f297b02019-07-20 12:23:36 -0600384 self.Detail(' - packed: offset=%#x, size=%#x, content_size=%#x, next_offset=%x' %
385 (self.offset, self.size, self.contents_size, new_offset))
Simon Glassbf7fd502016-11-25 20:15:51 -0700386
Simon Glass3ab95982018-08-01 15:22:37 -0600387 return new_offset
Simon Glassbf7fd502016-11-25 20:15:51 -0700388
389 def Raise(self, msg):
390 """Convenience function to raise an error referencing a node"""
391 raise ValueError("Node '%s': %s" % (self._node.path, msg))
392
Simon Glass9f297b02019-07-20 12:23:36 -0600393 def Detail(self, msg):
394 """Convenience function to log detail referencing a node"""
395 tag = "Node '%s'" % self._node.path
396 tout.Detail('%30s: %s' % (tag, msg))
397
Simon Glass53af22a2018-07-17 13:25:32 -0600398 def GetEntryArgsOrProps(self, props, required=False):
399 """Return the values of a set of properties
400
401 Args:
402 props: List of EntryArg objects
403
404 Raises:
405 ValueError if a property is not found
406 """
407 values = []
408 missing = []
409 for prop in props:
410 python_prop = prop.name.replace('-', '_')
411 if hasattr(self, python_prop):
412 value = getattr(self, python_prop)
413 else:
414 value = None
415 if value is None:
416 value = self.GetArg(prop.name, prop.datatype)
417 if value is None and required:
418 missing.append(prop.name)
419 values.append(value)
420 if missing:
421 self.Raise('Missing required properties/entry args: %s' %
422 (', '.join(missing)))
423 return values
424
Simon Glassbf7fd502016-11-25 20:15:51 -0700425 def GetPath(self):
426 """Get the path of a node
427
428 Returns:
429 Full path of the node for this entry
430 """
431 return self._node.path
432
433 def GetData(self):
Simon Glass9f297b02019-07-20 12:23:36 -0600434 self.Detail('GetData: size %s' % ToHexSize(self.data))
Simon Glassbf7fd502016-11-25 20:15:51 -0700435 return self.data
436
Simon Glass3ab95982018-08-01 15:22:37 -0600437 def GetOffsets(self):
Simon Glassed7dd5e2019-07-08 13:18:30 -0600438 """Get the offsets for siblings
439
440 Some entry types can contain information about the position or size of
441 other entries. An example of this is the Intel Flash Descriptor, which
442 knows where the Intel Management Engine section should go.
443
444 If this entry knows about the position of other entries, it can specify
445 this by returning values here
446
447 Returns:
448 Dict:
449 key: Entry type
450 value: List containing position and size of the given entry
Simon Glasscf549042019-07-08 13:18:39 -0600451 type. Either can be None if not known
Simon Glassed7dd5e2019-07-08 13:18:30 -0600452 """
Simon Glassbf7fd502016-11-25 20:15:51 -0700453 return {}
454
Simon Glasscf549042019-07-08 13:18:39 -0600455 def SetOffsetSize(self, offset, size):
456 """Set the offset and/or size of an entry
457
458 Args:
459 offset: New offset, or None to leave alone
460 size: New size, or None to leave alone
461 """
462 if offset is not None:
463 self.offset = offset
464 if size is not None:
465 self.size = size
Simon Glassbf7fd502016-11-25 20:15:51 -0700466
Simon Glassdbf6be92018-08-01 15:22:42 -0600467 def SetImagePos(self, image_pos):
468 """Set the position in the image
469
470 Args:
471 image_pos: Position of this entry in the image
472 """
473 self.image_pos = image_pos + self.offset
474
Simon Glassbf7fd502016-11-25 20:15:51 -0700475 def ProcessContents(self):
Simon Glassa0dcaf22019-07-08 14:25:35 -0600476 """Do any post-packing updates of entry contents
477
478 This function should call ProcessContentsUpdate() to update the entry
479 contents, if necessary, returning its return value here.
480
481 Args:
482 data: Data to set to the contents (bytes)
483
484 Returns:
485 True if the new data size is OK, False if expansion is needed
486
487 Raises:
488 ValueError if the new data size is not the same as the old and
489 state.AllowEntryExpansion() is False
490 """
491 return True
Simon Glass19790632017-11-13 18:55:01 -0700492
Simon Glassf55382b2018-06-01 09:38:13 -0600493 def WriteSymbols(self, section):
Simon Glass19790632017-11-13 18:55:01 -0700494 """Write symbol values into binary files for access at run time
495
496 Args:
Simon Glassf55382b2018-06-01 09:38:13 -0600497 section: Section containing the entry
Simon Glass19790632017-11-13 18:55:01 -0700498 """
499 pass
Simon Glass18546952018-06-01 09:38:16 -0600500
Simon Glass3ab95982018-08-01 15:22:37 -0600501 def CheckOffset(self):
502 """Check that the entry offsets are correct
Simon Glass18546952018-06-01 09:38:16 -0600503
Simon Glass3ab95982018-08-01 15:22:37 -0600504 This is used for entries which have extra offset requirements (other
Simon Glass18546952018-06-01 09:38:16 -0600505 than having to be fully inside their section). Sub-classes can implement
506 this function and raise if there is a problem.
507 """
508 pass
Simon Glass3b0c3822018-06-01 09:38:20 -0600509
Simon Glass8122f392018-07-17 13:25:28 -0600510 @staticmethod
Simon Glass163ed6c2018-09-14 04:57:36 -0600511 def GetStr(value):
512 if value is None:
513 return '<none> '
514 return '%08x' % value
515
516 @staticmethod
Simon Glass1be70d22018-07-17 13:25:49 -0600517 def WriteMapLine(fd, indent, name, offset, size, image_pos):
Simon Glass163ed6c2018-09-14 04:57:36 -0600518 print('%s %s%s %s %s' % (Entry.GetStr(image_pos), ' ' * indent,
519 Entry.GetStr(offset), Entry.GetStr(size),
520 name), file=fd)
Simon Glass8122f392018-07-17 13:25:28 -0600521
Simon Glass3b0c3822018-06-01 09:38:20 -0600522 def WriteMap(self, fd, indent):
523 """Write a map of the entry to a .map file
524
525 Args:
526 fd: File to write the map to
527 indent: Curent indent level of map (0=none, 1=one level, etc.)
528 """
Simon Glass1be70d22018-07-17 13:25:49 -0600529 self.WriteMapLine(fd, indent, self.name, self.offset, self.size,
530 self.image_pos)
Simon Glass53af22a2018-07-17 13:25:32 -0600531
Simon Glass11e36cc2018-07-17 13:25:38 -0600532 def GetEntries(self):
533 """Return a list of entries contained by this entry
534
535 Returns:
536 List of entries, or None if none. A normal entry has no entries
537 within it so will return None
538 """
539 return None
540
Simon Glass53af22a2018-07-17 13:25:32 -0600541 def GetArg(self, name, datatype=str):
542 """Get the value of an entry argument or device-tree-node property
543
544 Some node properties can be provided as arguments to binman. First check
545 the entry arguments, and fall back to the device tree if not found
546
547 Args:
548 name: Argument name
549 datatype: Data type (str or int)
550
551 Returns:
552 Value of argument as a string or int, or None if no value
553
554 Raises:
555 ValueError if the argument cannot be converted to in
556 """
Simon Glassc55a50f2018-09-14 04:57:19 -0600557 value = state.GetEntryArg(name)
Simon Glass53af22a2018-07-17 13:25:32 -0600558 if value is not None:
559 if datatype == int:
560 try:
561 value = int(value)
562 except ValueError:
563 self.Raise("Cannot convert entry arg '%s' (value '%s') to integer" %
564 (name, value))
565 elif datatype == str:
566 pass
567 else:
568 raise ValueError("GetArg() internal error: Unknown data type '%s'" %
569 datatype)
570 else:
571 value = fdt_util.GetDatatype(self._node, name, datatype)
572 return value
Simon Glassfd8d1f72018-07-17 13:25:36 -0600573
574 @staticmethod
575 def WriteDocs(modules, test_missing=None):
576 """Write out documentation about the various entry types to stdout
577
578 Args:
579 modules: List of modules to include
580 test_missing: Used for testing. This is a module to report
581 as missing
582 """
583 print('''Binman Entry Documentation
584===========================
585
586This file describes the entry types supported by binman. These entry types can
587be placed in an image one by one to build up a final firmware image. It is
588fairly easy to create new entry types. Just add a new file to the 'etype'
589directory. You can use the existing entries as examples.
590
591Note that some entries are subclasses of others, using and extending their
592features to produce new behaviours.
593
594
595''')
596 modules = sorted(modules)
597
598 # Don't show the test entry
599 if '_testing' in modules:
600 modules.remove('_testing')
601 missing = []
602 for name in modules:
Simon Glasse4304402019-07-08 14:25:32 -0600603 if name.startswith('__'):
604 continue
Simon Glassc073ced2019-07-08 14:25:31 -0600605 module = Entry.Lookup(name, name)
Simon Glassfd8d1f72018-07-17 13:25:36 -0600606 docs = getattr(module, '__doc__')
607 if test_missing == name:
608 docs = None
609 if docs:
610 lines = docs.splitlines()
611 first_line = lines[0]
612 rest = [line[4:] for line in lines[1:]]
613 hdr = 'Entry: %s: %s' % (name.replace('_', '-'), first_line)
614 print(hdr)
615 print('-' * len(hdr))
616 print('\n'.join(rest))
617 print()
618 print()
619 else:
620 missing.append(name)
621
622 if missing:
623 raise ValueError('Documentation is missing for modules: %s' %
624 ', '.join(missing))
Simon Glassa326b492018-09-14 04:57:11 -0600625
626 def GetUniqueName(self):
627 """Get a unique name for a node
628
629 Returns:
630 String containing a unique name for a node, consisting of the name
631 of all ancestors (starting from within the 'binman' node) separated
632 by a dot ('.'). This can be useful for generating unique filesnames
633 in the output directory.
634 """
635 name = self.name
636 node = self._node
637 while node.parent:
638 node = node.parent
639 if node.name == 'binman':
640 break
641 name = '%s.%s' % (node.name, name)
642 return name
Simon Glassba64a0b2018-09-14 04:57:29 -0600643
644 def ExpandToLimit(self, limit):
645 """Expand an entry so that it ends at the given offset limit"""
646 if self.offset + self.size < limit:
647 self.size = limit - self.offset
648 # Request the contents again, since changing the size requires that
649 # the data grows. This should not fail, but check it to be sure.
650 if not self.ObtainContents():
651 self.Raise('Cannot obtain contents when expanding entry')
Simon Glassfa1c9372019-07-08 13:18:38 -0600652
653 def HasSibling(self, name):
654 """Check if there is a sibling of a given name
655
656 Returns:
657 True if there is an entry with this name in the the same section,
658 else False
659 """
660 return name in self.section.GetEntries()
Simon Glasscf228942019-07-08 14:25:28 -0600661
662 def GetSiblingImagePos(self, name):
663 """Return the image position of the given sibling
664
665 Returns:
666 Image position of sibling, or None if the sibling has no position,
667 or False if there is no such sibling
668 """
669 if not self.HasSibling(name):
670 return False
671 return self.section.GetEntries()[name].image_pos
Simon Glass41b8ba02019-07-08 14:25:43 -0600672
673 @staticmethod
674 def AddEntryInfo(entries, indent, name, etype, size, image_pos,
675 uncomp_size, offset, entry):
676 """Add a new entry to the entries list
677
678 Args:
679 entries: List (of EntryInfo objects) to add to
680 indent: Current indent level to add to list
681 name: Entry name (string)
682 etype: Entry type (string)
683 size: Entry size in bytes (int)
684 image_pos: Position within image in bytes (int)
685 uncomp_size: Uncompressed size if the entry uses compression, else
686 None
687 offset: Entry offset within parent in bytes (int)
688 entry: Entry object
689 """
690 entries.append(EntryInfo(indent, name, etype, size, image_pos,
691 uncomp_size, offset, entry))
692
693 def ListEntries(self, entries, indent):
694 """Add files in this entry to the list of entries
695
696 This can be overridden by subclasses which need different behaviour.
697
698 Args:
699 entries: List (of EntryInfo objects) to add to
700 indent: Current indent level to add to list
701 """
702 self.AddEntryInfo(entries, indent, self.name, self.etype, self.size,
703 self.image_pos, self.uncomp_size, self.offset, self)
Simon Glassf667e452019-07-08 14:25:50 -0600704
705 def ReadData(self, decomp=True):
706 """Read the data for an entry from the image
707
708 This is used when the image has been read in and we want to extract the
709 data for a particular entry from that image.
710
711 Args:
712 decomp: True to decompress any compressed data before returning it;
713 False to return the raw, uncompressed data
714
715 Returns:
716 Entry data (bytes)
717 """
718 # Use True here so that we get an uncompressed section to work from,
719 # although compressed sections are currently not supported
Simon Glass2d553c02019-09-25 08:56:21 -0600720 tout.Debug("ReadChildData section '%s', entry '%s'" %
721 (self.section.GetPath(), self.GetPath()))
Simon Glassa9cd39e2019-07-20 12:24:04 -0600722 data = self.section.ReadChildData(self, decomp)
723 return data
Simon Glassd5079332019-07-20 12:23:41 -0600724
Simon Glass4e185e82019-09-25 08:56:20 -0600725 def ReadChildData(self, child, decomp=True):
Simon Glass2d553c02019-09-25 08:56:21 -0600726 """Read the data for a particular child entry
Simon Glass4e185e82019-09-25 08:56:20 -0600727
728 This reads data from the parent and extracts the piece that relates to
729 the given child.
730
731 Args:
Simon Glass2d553c02019-09-25 08:56:21 -0600732 child: Child entry to read data for (must be valid)
Simon Glass4e185e82019-09-25 08:56:20 -0600733 decomp: True to decompress any compressed data before returning it;
734 False to return the raw, uncompressed data
735
736 Returns:
737 Data for the child (bytes)
738 """
739 pass
740
Simon Glassd5079332019-07-20 12:23:41 -0600741 def LoadData(self, decomp=True):
742 data = self.ReadData(decomp)
Simon Glass10f9d002019-07-20 12:23:50 -0600743 self.contents_size = len(data)
Simon Glassd5079332019-07-20 12:23:41 -0600744 self.ProcessContentsUpdate(data)
745 self.Detail('Loaded data size %x' % len(data))
Simon Glassc5ad04b2019-07-20 12:23:46 -0600746
747 def GetImage(self):
748 """Get the image containing this entry
749
750 Returns:
751 Image object containing this entry
752 """
753 return self.section.GetImage()
Simon Glass10f9d002019-07-20 12:23:50 -0600754
755 def WriteData(self, data, decomp=True):
756 """Write the data to an entry in the image
757
758 This is used when the image has been read in and we want to replace the
759 data for a particular entry in that image.
760
761 The image must be re-packed and written out afterwards.
762
763 Args:
764 data: Data to replace it with
765 decomp: True to compress the data if needed, False if data is
766 already compressed so should be used as is
767
768 Returns:
769 True if the data did not result in a resize of this entry, False if
770 the entry must be resized
771 """
772 self.contents_size = self.size
773 ok = self.ProcessContentsUpdate(data)
774 self.Detail('WriteData: size=%x, ok=%s' % (len(data), ok))
Simon Glass7210c892019-07-20 12:24:05 -0600775 section_ok = self.section.WriteChildData(self)
776 return ok and section_ok
777
778 def WriteChildData(self, child):
779 """Handle writing the data in a child entry
780
781 This should be called on the child's parent section after the child's
782 data has been updated. It
783
784 This base-class implementation does nothing, since the base Entry object
785 does not have any children.
786
787 Args:
788 child: Child Entry that was written
789
790 Returns:
791 True if the section could be updated successfully, False if the
792 data is such that the section could not updat
793 """
794 return True
Simon Glasseba1f0c2019-07-20 12:23:55 -0600795
796 def GetSiblingOrder(self):
797 """Get the relative order of an entry amoung its siblings
798
799 Returns:
800 'start' if this entry is first among siblings, 'end' if last,
801 otherwise None
802 """
803 entries = list(self.section.GetEntries().values())
804 if entries:
805 if self == entries[0]:
806 return 'start'
807 elif self == entries[-1]:
808 return 'end'
809 return 'middle'