blob: d842d89dd665ffc27710cdf273065413ad6f2963 [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
24import state
Simon Glassbf7fd502016-11-25 20:15:51 -070025import tools
26
27modules = {}
28
Simon Glassbadf0ec2018-06-01 09:38:15 -060029our_path = os.path.dirname(os.path.realpath(__file__))
30
Simon Glass53af22a2018-07-17 13:25:32 -060031
32# An argument which can be passed to entries on the command line, in lieu of
33# device-tree properties.
34EntryArg = namedtuple('EntryArg', ['name', 'datatype'])
35
36
Simon Glassbf7fd502016-11-25 20:15:51 -070037class Entry(object):
Simon Glass25ac0e62018-06-01 09:38:14 -060038 """An Entry in the section
Simon Glassbf7fd502016-11-25 20:15:51 -070039
40 An entry corresponds to a single node in the device-tree description
Simon Glass25ac0e62018-06-01 09:38:14 -060041 of the section. Each entry ends up being a part of the final section.
Simon Glassbf7fd502016-11-25 20:15:51 -070042 Entries can be placed either right next to each other, or with padding
43 between them. The type of the entry determines the data that is in it.
44
45 This class is not used by itself. All entry objects are subclasses of
46 Entry.
47
48 Attributes:
Simon Glass8122f392018-07-17 13:25:28 -060049 section: Section object containing this entry
Simon Glassbf7fd502016-11-25 20:15:51 -070050 node: The node that created this entry
Simon Glass3ab95982018-08-01 15:22:37 -060051 offset: Offset of entry within the section, None if not known yet (in
52 which case it will be calculated by Pack())
Simon Glassbf7fd502016-11-25 20:15:51 -070053 size: Entry size in bytes, None if not known
54 contents_size: Size of contents in bytes, 0 by default
Simon Glass3ab95982018-08-01 15:22:37 -060055 align: Entry start offset alignment, or None
Simon Glassbf7fd502016-11-25 20:15:51 -070056 align_size: Entry size alignment, or None
Simon Glass3ab95982018-08-01 15:22:37 -060057 align_end: Entry end offset alignment, or None
Simon Glassbf7fd502016-11-25 20:15:51 -070058 pad_before: Number of pad bytes before the contents, 0 if none
59 pad_after: Number of pad bytes after the contents, 0 if none
60 data: Contents of entry (string of bytes)
61 """
Simon Glassc8d48ef2018-06-01 09:38:21 -060062 def __init__(self, section, etype, node, read_node=True, name_prefix=''):
Simon Glass25ac0e62018-06-01 09:38:14 -060063 self.section = section
Simon Glassbf7fd502016-11-25 20:15:51 -070064 self.etype = etype
65 self._node = node
Simon Glassc8d48ef2018-06-01 09:38:21 -060066 self.name = node and (name_prefix + node.name) or 'none'
Simon Glass3ab95982018-08-01 15:22:37 -060067 self.offset = None
Simon Glassbf7fd502016-11-25 20:15:51 -070068 self.size = None
Simon Glass24d0d3c2018-07-17 13:25:47 -060069 self.data = None
Simon Glassbf7fd502016-11-25 20:15:51 -070070 self.contents_size = 0
71 self.align = None
72 self.align_size = None
73 self.align_end = None
74 self.pad_before = 0
75 self.pad_after = 0
Simon Glass3ab95982018-08-01 15:22:37 -060076 self.offset_unset = False
Simon Glassdbf6be92018-08-01 15:22:42 -060077 self.image_pos = None
Simon Glassba64a0b2018-09-14 04:57:29 -060078 self._expand_size = False
Simon Glassbf7fd502016-11-25 20:15:51 -070079 if read_node:
80 self.ReadNode()
81
82 @staticmethod
Simon Glassfd8d1f72018-07-17 13:25:36 -060083 def Lookup(section, node_path, etype):
84 """Look up the entry class for a node.
Simon Glassbf7fd502016-11-25 20:15:51 -070085
86 Args:
Simon Glassfd8d1f72018-07-17 13:25:36 -060087 section: Section object containing this node
88 node_node: Path name of Node object containing information about
89 the entry to create (used for errors)
90 etype: Entry type to use
Simon Glassbf7fd502016-11-25 20:15:51 -070091
92 Returns:
Simon Glassfd8d1f72018-07-17 13:25:36 -060093 The entry class object if found, else None
Simon Glassbf7fd502016-11-25 20:15:51 -070094 """
Simon Glassdd57c132018-06-01 09:38:11 -060095 # Convert something like 'u-boot@0' to 'u_boot' since we are only
96 # interested in the type.
Simon Glassbf7fd502016-11-25 20:15:51 -070097 module_name = etype.replace('-', '_')
Simon Glassdd57c132018-06-01 09:38:11 -060098 if '@' in module_name:
99 module_name = module_name.split('@')[0]
Simon Glassbf7fd502016-11-25 20:15:51 -0700100 module = modules.get(module_name)
101
Simon Glassbadf0ec2018-06-01 09:38:15 -0600102 # Also allow entry-type modules to be brought in from the etype directory.
103
Simon Glassbf7fd502016-11-25 20:15:51 -0700104 # Import the module if we have not already done so.
105 if not module:
Simon Glassbadf0ec2018-06-01 09:38:15 -0600106 old_path = sys.path
107 sys.path.insert(0, os.path.join(our_path, 'etype'))
Simon Glassbf7fd502016-11-25 20:15:51 -0700108 try:
109 if have_importlib:
110 module = importlib.import_module(module_name)
111 else:
112 module = __import__(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 Glassbadf0ec2018-06-01 09:38:15 -0600116 finally:
117 sys.path = old_path
Simon Glassbf7fd502016-11-25 20:15:51 -0700118 modules[module_name] = module
119
Simon Glassfd8d1f72018-07-17 13:25:36 -0600120 # Look up the expected class name
121 return getattr(module, 'Entry_%s' % module_name)
122
123 @staticmethod
124 def Create(section, node, etype=None):
125 """Create a new entry for a node.
126
127 Args:
128 section: Section object containing this node
129 node: Node object containing information about the entry to
130 create
131 etype: Entry type to use, or None to work it out (used for tests)
132
133 Returns:
134 A new Entry object of the correct type (a subclass of Entry)
135 """
136 if not etype:
137 etype = fdt_util.GetString(node, 'type', node.name)
138 obj = Entry.Lookup(section, node.path, etype)
139
Simon Glassbf7fd502016-11-25 20:15:51 -0700140 # Call its constructor to get the object we want.
Simon Glass25ac0e62018-06-01 09:38:14 -0600141 return obj(section, etype, node)
Simon Glassbf7fd502016-11-25 20:15:51 -0700142
143 def ReadNode(self):
144 """Read entry information from the node
145
146 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')
152 self.align = fdt_util.GetInt(self._node, 'align')
153 if tools.NotPowerOfTwo(self.align):
154 raise ValueError("Node '%s': Alignment %s must be a power of two" %
155 (self._node.path, self.align))
156 self.pad_before = fdt_util.GetInt(self._node, 'pad-before', 0)
157 self.pad_after = fdt_util.GetInt(self._node, 'pad-after', 0)
158 self.align_size = fdt_util.GetInt(self._node, 'align-size')
159 if tools.NotPowerOfTwo(self.align_size):
160 raise ValueError("Node '%s': Alignment size %s must be a power "
161 "of two" % (self._node.path, self.align_size))
162 self.align_end = fdt_util.GetInt(self._node, 'align-end')
Simon Glass3ab95982018-08-01 15:22:37 -0600163 self.offset_unset = fdt_util.GetBool(self._node, 'offset-unset')
Simon Glassba64a0b2018-09-14 04:57:29 -0600164 self.expand_size = fdt_util.GetBool(self._node, 'expand-size')
Simon Glassbf7fd502016-11-25 20:15:51 -0700165
Simon Glass6c234bf2018-09-14 04:57:18 -0600166 def GetDefaultFilename(self):
167 return None
168
Simon Glass539aece2018-09-14 04:57:22 -0600169 def GetFdtSet(self):
170 """Get the set of device trees used by this entry
171
172 Returns:
173 Set containing the filename from this entry, if it is a .dtb, else
174 an empty set
175 """
176 fname = self.GetDefaultFilename()
177 # It would be better to use isinstance(self, Entry_blob_dtb) here but
178 # we cannot access Entry_blob_dtb
179 if fname and fname.endswith('.dtb'):
Simon Glassd141f6c2019-05-14 15:53:39 -0600180 return set([fname])
181 return set()
Simon Glass539aece2018-09-14 04:57:22 -0600182
Simon Glass0a98b282018-09-14 04:57:28 -0600183 def ExpandEntries(self):
184 pass
185
Simon Glass078ab1a2018-07-06 10:27:41 -0600186 def AddMissingProperties(self):
187 """Add new properties to the device tree as needed for this entry"""
Simon Glassdbf6be92018-08-01 15:22:42 -0600188 for prop in ['offset', 'size', 'image-pos']:
Simon Glass078ab1a2018-07-06 10:27:41 -0600189 if not prop in self._node.props:
Simon Glassf46621d2018-09-14 04:57:21 -0600190 state.AddZeroProp(self._node, prop)
Simon Glasse0e5df92018-09-14 04:57:31 -0600191 err = state.CheckAddHashProp(self._node)
192 if err:
193 self.Raise(err)
Simon Glass078ab1a2018-07-06 10:27:41 -0600194
195 def SetCalculatedProperties(self):
196 """Set the value of device-tree properties calculated by binman"""
Simon Glassf46621d2018-09-14 04:57:21 -0600197 state.SetInt(self._node, 'offset', self.offset)
198 state.SetInt(self._node, 'size', self.size)
Simon Glassf8f8df62018-09-14 04:57:34 -0600199 state.SetInt(self._node, 'image-pos',
200 self.image_pos - self.section.GetRootSkipAtStart())
Simon Glasse0e5df92018-09-14 04:57:31 -0600201 state.CheckSetHashValue(self._node, self.GetData)
Simon Glass078ab1a2018-07-06 10:27:41 -0600202
Simon Glassecab8972018-07-06 10:27:40 -0600203 def ProcessFdt(self, fdt):
Simon Glass6ed45ba2018-09-14 04:57:24 -0600204 """Allow entries to adjust the device tree
205
206 Some entries need to adjust the device tree for their purposes. This
207 may involve adding or deleting properties.
208
209 Returns:
210 True if processing is complete
211 False if processing could not be completed due to a dependency.
212 This will cause the entry to be retried after others have been
213 called
214 """
Simon Glassecab8972018-07-06 10:27:40 -0600215 return True
216
Simon Glassc8d48ef2018-06-01 09:38:21 -0600217 def SetPrefix(self, prefix):
218 """Set the name prefix for a node
219
220 Args:
221 prefix: Prefix to set, or '' to not use a prefix
222 """
223 if prefix:
224 self.name = prefix + self.name
225
Simon Glass5c890232018-07-06 10:27:19 -0600226 def SetContents(self, data):
227 """Set the contents of an entry
228
229 This sets both the data and content_size properties
230
231 Args:
232 data: Data to set to the contents (string)
233 """
234 self.data = data
235 self.contents_size = len(self.data)
236
237 def ProcessContentsUpdate(self, data):
238 """Update the contens of an entry, after the size is fixed
239
240 This checks that the new data is the same size as the old.
241
242 Args:
243 data: Data to set to the contents (string)
244
245 Raises:
246 ValueError if the new data size is not the same as the old
247 """
248 if len(data) != self.contents_size:
249 self.Raise('Cannot update entry size from %d to %d' %
250 (len(data), self.contents_size))
251 self.SetContents(data)
252
Simon Glassbf7fd502016-11-25 20:15:51 -0700253 def ObtainContents(self):
254 """Figure out the contents of an entry.
255
256 Returns:
257 True if the contents were found, False if another call is needed
258 after the other entries are processed.
259 """
260 # No contents by default: subclasses can implement this
261 return True
262
Simon Glass3ab95982018-08-01 15:22:37 -0600263 def Pack(self, offset):
Simon Glass25ac0e62018-06-01 09:38:14 -0600264 """Figure out how to pack the entry into the section
Simon Glassbf7fd502016-11-25 20:15:51 -0700265
266 Most of the time the entries are not fully specified. There may be
267 an alignment but no size. In that case we take the size from the
268 contents of the entry.
269
Simon Glass3ab95982018-08-01 15:22:37 -0600270 If an entry has no hard-coded offset, it will be placed at @offset.
Simon Glassbf7fd502016-11-25 20:15:51 -0700271
Simon Glass3ab95982018-08-01 15:22:37 -0600272 Once this function is complete, both the offset and size of the
Simon Glassbf7fd502016-11-25 20:15:51 -0700273 entry will be know.
274
275 Args:
Simon Glass3ab95982018-08-01 15:22:37 -0600276 Current section offset pointer
Simon Glassbf7fd502016-11-25 20:15:51 -0700277
278 Returns:
Simon Glass3ab95982018-08-01 15:22:37 -0600279 New section offset pointer (after this entry)
Simon Glassbf7fd502016-11-25 20:15:51 -0700280 """
Simon Glass3ab95982018-08-01 15:22:37 -0600281 if self.offset is None:
282 if self.offset_unset:
283 self.Raise('No offset set with offset-unset: should another '
284 'entry provide this correct offset?')
285 self.offset = tools.Align(offset, self.align)
Simon Glassbf7fd502016-11-25 20:15:51 -0700286 needed = self.pad_before + self.contents_size + self.pad_after
287 needed = tools.Align(needed, self.align_size)
288 size = self.size
289 if not size:
290 size = needed
Simon Glass3ab95982018-08-01 15:22:37 -0600291 new_offset = self.offset + size
292 aligned_offset = tools.Align(new_offset, self.align_end)
293 if aligned_offset != new_offset:
294 size = aligned_offset - self.offset
295 new_offset = aligned_offset
Simon Glassbf7fd502016-11-25 20:15:51 -0700296
297 if not self.size:
298 self.size = size
299
300 if self.size < needed:
301 self.Raise("Entry contents size is %#x (%d) but entry size is "
302 "%#x (%d)" % (needed, needed, self.size, self.size))
303 # Check that the alignment is correct. It could be wrong if the
Simon Glass3ab95982018-08-01 15:22:37 -0600304 # and offset or size values were provided (i.e. not calculated), but
Simon Glassbf7fd502016-11-25 20:15:51 -0700305 # conflict with the provided alignment values
306 if self.size != tools.Align(self.size, self.align_size):
307 self.Raise("Size %#x (%d) does not match align-size %#x (%d)" %
308 (self.size, self.size, self.align_size, self.align_size))
Simon Glass3ab95982018-08-01 15:22:37 -0600309 if self.offset != tools.Align(self.offset, self.align):
310 self.Raise("Offset %#x (%d) does not match align %#x (%d)" %
311 (self.offset, self.offset, self.align, self.align))
Simon Glassbf7fd502016-11-25 20:15:51 -0700312
Simon Glass3ab95982018-08-01 15:22:37 -0600313 return new_offset
Simon Glassbf7fd502016-11-25 20:15:51 -0700314
315 def Raise(self, msg):
316 """Convenience function to raise an error referencing a node"""
317 raise ValueError("Node '%s': %s" % (self._node.path, msg))
318
Simon Glass53af22a2018-07-17 13:25:32 -0600319 def GetEntryArgsOrProps(self, props, required=False):
320 """Return the values of a set of properties
321
322 Args:
323 props: List of EntryArg objects
324
325 Raises:
326 ValueError if a property is not found
327 """
328 values = []
329 missing = []
330 for prop in props:
331 python_prop = prop.name.replace('-', '_')
332 if hasattr(self, python_prop):
333 value = getattr(self, python_prop)
334 else:
335 value = None
336 if value is None:
337 value = self.GetArg(prop.name, prop.datatype)
338 if value is None and required:
339 missing.append(prop.name)
340 values.append(value)
341 if missing:
342 self.Raise('Missing required properties/entry args: %s' %
343 (', '.join(missing)))
344 return values
345
Simon Glassbf7fd502016-11-25 20:15:51 -0700346 def GetPath(self):
347 """Get the path of a node
348
349 Returns:
350 Full path of the node for this entry
351 """
352 return self._node.path
353
354 def GetData(self):
355 return self.data
356
Simon Glass3ab95982018-08-01 15:22:37 -0600357 def GetOffsets(self):
Simon Glassbf7fd502016-11-25 20:15:51 -0700358 return {}
359
Simon Glass3ab95982018-08-01 15:22:37 -0600360 def SetOffsetSize(self, pos, size):
361 self.offset = pos
Simon Glassbf7fd502016-11-25 20:15:51 -0700362 self.size = size
363
Simon Glassdbf6be92018-08-01 15:22:42 -0600364 def SetImagePos(self, image_pos):
365 """Set the position in the image
366
367 Args:
368 image_pos: Position of this entry in the image
369 """
370 self.image_pos = image_pos + self.offset
371
Simon Glassbf7fd502016-11-25 20:15:51 -0700372 def ProcessContents(self):
373 pass
Simon Glass19790632017-11-13 18:55:01 -0700374
Simon Glassf55382b2018-06-01 09:38:13 -0600375 def WriteSymbols(self, section):
Simon Glass19790632017-11-13 18:55:01 -0700376 """Write symbol values into binary files for access at run time
377
378 Args:
Simon Glassf55382b2018-06-01 09:38:13 -0600379 section: Section containing the entry
Simon Glass19790632017-11-13 18:55:01 -0700380 """
381 pass
Simon Glass18546952018-06-01 09:38:16 -0600382
Simon Glass3ab95982018-08-01 15:22:37 -0600383 def CheckOffset(self):
384 """Check that the entry offsets are correct
Simon Glass18546952018-06-01 09:38:16 -0600385
Simon Glass3ab95982018-08-01 15:22:37 -0600386 This is used for entries which have extra offset requirements (other
Simon Glass18546952018-06-01 09:38:16 -0600387 than having to be fully inside their section). Sub-classes can implement
388 this function and raise if there is a problem.
389 """
390 pass
Simon Glass3b0c3822018-06-01 09:38:20 -0600391
Simon Glass8122f392018-07-17 13:25:28 -0600392 @staticmethod
Simon Glass163ed6c2018-09-14 04:57:36 -0600393 def GetStr(value):
394 if value is None:
395 return '<none> '
396 return '%08x' % value
397
398 @staticmethod
Simon Glass1be70d22018-07-17 13:25:49 -0600399 def WriteMapLine(fd, indent, name, offset, size, image_pos):
Simon Glass163ed6c2018-09-14 04:57:36 -0600400 print('%s %s%s %s %s' % (Entry.GetStr(image_pos), ' ' * indent,
401 Entry.GetStr(offset), Entry.GetStr(size),
402 name), file=fd)
Simon Glass8122f392018-07-17 13:25:28 -0600403
Simon Glass3b0c3822018-06-01 09:38:20 -0600404 def WriteMap(self, fd, indent):
405 """Write a map of the entry to a .map file
406
407 Args:
408 fd: File to write the map to
409 indent: Curent indent level of map (0=none, 1=one level, etc.)
410 """
Simon Glass1be70d22018-07-17 13:25:49 -0600411 self.WriteMapLine(fd, indent, self.name, self.offset, self.size,
412 self.image_pos)
Simon Glass53af22a2018-07-17 13:25:32 -0600413
Simon Glass11e36cc2018-07-17 13:25:38 -0600414 def GetEntries(self):
415 """Return a list of entries contained by this entry
416
417 Returns:
418 List of entries, or None if none. A normal entry has no entries
419 within it so will return None
420 """
421 return None
422
Simon Glass53af22a2018-07-17 13:25:32 -0600423 def GetArg(self, name, datatype=str):
424 """Get the value of an entry argument or device-tree-node property
425
426 Some node properties can be provided as arguments to binman. First check
427 the entry arguments, and fall back to the device tree if not found
428
429 Args:
430 name: Argument name
431 datatype: Data type (str or int)
432
433 Returns:
434 Value of argument as a string or int, or None if no value
435
436 Raises:
437 ValueError if the argument cannot be converted to in
438 """
Simon Glassc55a50f2018-09-14 04:57:19 -0600439 value = state.GetEntryArg(name)
Simon Glass53af22a2018-07-17 13:25:32 -0600440 if value is not None:
441 if datatype == int:
442 try:
443 value = int(value)
444 except ValueError:
445 self.Raise("Cannot convert entry arg '%s' (value '%s') to integer" %
446 (name, value))
447 elif datatype == str:
448 pass
449 else:
450 raise ValueError("GetArg() internal error: Unknown data type '%s'" %
451 datatype)
452 else:
453 value = fdt_util.GetDatatype(self._node, name, datatype)
454 return value
Simon Glassfd8d1f72018-07-17 13:25:36 -0600455
456 @staticmethod
457 def WriteDocs(modules, test_missing=None):
458 """Write out documentation about the various entry types to stdout
459
460 Args:
461 modules: List of modules to include
462 test_missing: Used for testing. This is a module to report
463 as missing
464 """
465 print('''Binman Entry Documentation
466===========================
467
468This file describes the entry types supported by binman. These entry types can
469be placed in an image one by one to build up a final firmware image. It is
470fairly easy to create new entry types. Just add a new file to the 'etype'
471directory. You can use the existing entries as examples.
472
473Note that some entries are subclasses of others, using and extending their
474features to produce new behaviours.
475
476
477''')
478 modules = sorted(modules)
479
480 # Don't show the test entry
481 if '_testing' in modules:
482 modules.remove('_testing')
483 missing = []
484 for name in modules:
485 module = Entry.Lookup(name, name, name)
486 docs = getattr(module, '__doc__')
487 if test_missing == name:
488 docs = None
489 if docs:
490 lines = docs.splitlines()
491 first_line = lines[0]
492 rest = [line[4:] for line in lines[1:]]
493 hdr = 'Entry: %s: %s' % (name.replace('_', '-'), first_line)
494 print(hdr)
495 print('-' * len(hdr))
496 print('\n'.join(rest))
497 print()
498 print()
499 else:
500 missing.append(name)
501
502 if missing:
503 raise ValueError('Documentation is missing for modules: %s' %
504 ', '.join(missing))
Simon Glassa326b492018-09-14 04:57:11 -0600505
506 def GetUniqueName(self):
507 """Get a unique name for a node
508
509 Returns:
510 String containing a unique name for a node, consisting of the name
511 of all ancestors (starting from within the 'binman' node) separated
512 by a dot ('.'). This can be useful for generating unique filesnames
513 in the output directory.
514 """
515 name = self.name
516 node = self._node
517 while node.parent:
518 node = node.parent
519 if node.name == 'binman':
520 break
521 name = '%s.%s' % (node.name, name)
522 return name
Simon Glassba64a0b2018-09-14 04:57:29 -0600523
524 def ExpandToLimit(self, limit):
525 """Expand an entry so that it ends at the given offset limit"""
526 if self.offset + self.size < limit:
527 self.size = limit - self.offset
528 # Request the contents again, since changing the size requires that
529 # the data grows. This should not fail, but check it to be sure.
530 if not self.ObtainContents():
531 self.Raise('Cannot obtain contents when expanding entry')