blob: f922107523e9b54d0f521cf2852f341aab6a0931 [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
Simon Glass539aece2018-09-14 04:57:22 -060021from sets import Set
Simon Glassbadf0ec2018-06-01 09:38:15 -060022import sys
Simon Glassc55a50f2018-09-14 04:57:19 -060023
24import fdt_util
25import state
Simon Glassbf7fd502016-11-25 20:15:51 -070026import tools
27
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
37
Simon Glassbf7fd502016-11-25 20:15:51 -070038class Entry(object):
Simon Glass25ac0e62018-06-01 09:38:14 -060039 """An Entry in the section
Simon Glassbf7fd502016-11-25 20:15:51 -070040
41 An entry corresponds to a single node in the device-tree description
Simon Glass25ac0e62018-06-01 09:38:14 -060042 of the section. Each entry ends up being a part of the final section.
Simon Glassbf7fd502016-11-25 20:15:51 -070043 Entries can be placed either right next to each other, or with padding
44 between them. The type of the entry determines the data that is in it.
45
46 This class is not used by itself. All entry objects are subclasses of
47 Entry.
48
49 Attributes:
Simon Glass8122f392018-07-17 13:25:28 -060050 section: Section object containing this entry
Simon Glassbf7fd502016-11-25 20:15:51 -070051 node: The node that created this entry
Simon Glass3ab95982018-08-01 15:22:37 -060052 offset: Offset of entry within the section, None if not known yet (in
53 which case it will be calculated by Pack())
Simon Glassbf7fd502016-11-25 20:15:51 -070054 size: Entry size in bytes, None if not known
55 contents_size: Size of contents in bytes, 0 by default
Simon Glass3ab95982018-08-01 15:22:37 -060056 align: Entry start offset alignment, or None
Simon Glassbf7fd502016-11-25 20:15:51 -070057 align_size: Entry size alignment, or None
Simon Glass3ab95982018-08-01 15:22:37 -060058 align_end: Entry end offset alignment, or None
Simon Glassbf7fd502016-11-25 20:15:51 -070059 pad_before: Number of pad bytes before the contents, 0 if none
60 pad_after: Number of pad bytes after the contents, 0 if none
61 data: Contents of entry (string of bytes)
62 """
Simon Glassc8d48ef2018-06-01 09:38:21 -060063 def __init__(self, section, etype, node, read_node=True, name_prefix=''):
Simon Glass25ac0e62018-06-01 09:38:14 -060064 self.section = section
Simon Glassbf7fd502016-11-25 20:15:51 -070065 self.etype = etype
66 self._node = node
Simon Glassc8d48ef2018-06-01 09:38:21 -060067 self.name = node and (name_prefix + node.name) or 'none'
Simon Glass3ab95982018-08-01 15:22:37 -060068 self.offset = None
Simon Glassbf7fd502016-11-25 20:15:51 -070069 self.size = None
Simon Glass24d0d3c2018-07-17 13:25:47 -060070 self.data = None
Simon Glassbf7fd502016-11-25 20:15:51 -070071 self.contents_size = 0
72 self.align = None
73 self.align_size = None
74 self.align_end = None
75 self.pad_before = 0
76 self.pad_after = 0
Simon Glass3ab95982018-08-01 15:22:37 -060077 self.offset_unset = False
Simon Glassdbf6be92018-08-01 15:22:42 -060078 self.image_pos = None
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 Glassbf7fd502016-11-25 20:15:51 -0700164
Simon Glass6c234bf2018-09-14 04:57:18 -0600165 def GetDefaultFilename(self):
166 return None
167
Simon Glass539aece2018-09-14 04:57:22 -0600168 def GetFdtSet(self):
169 """Get the set of device trees used by this entry
170
171 Returns:
172 Set containing the filename from this entry, if it is a .dtb, else
173 an empty set
174 """
175 fname = self.GetDefaultFilename()
176 # It would be better to use isinstance(self, Entry_blob_dtb) here but
177 # we cannot access Entry_blob_dtb
178 if fname and fname.endswith('.dtb'):
179 return Set([fname])
180 return Set()
181
Simon Glass078ab1a2018-07-06 10:27:41 -0600182 def AddMissingProperties(self):
183 """Add new properties to the device tree as needed for this entry"""
Simon Glassdbf6be92018-08-01 15:22:42 -0600184 for prop in ['offset', 'size', 'image-pos']:
Simon Glass078ab1a2018-07-06 10:27:41 -0600185 if not prop in self._node.props:
Simon Glassf46621d2018-09-14 04:57:21 -0600186 state.AddZeroProp(self._node, prop)
Simon Glass078ab1a2018-07-06 10:27:41 -0600187
188 def SetCalculatedProperties(self):
189 """Set the value of device-tree properties calculated by binman"""
Simon Glassf46621d2018-09-14 04:57:21 -0600190 state.SetInt(self._node, 'offset', self.offset)
191 state.SetInt(self._node, 'size', self.size)
192 state.SetInt(self._node, 'image-pos', self.image_pos)
Simon Glass078ab1a2018-07-06 10:27:41 -0600193
Simon Glassecab8972018-07-06 10:27:40 -0600194 def ProcessFdt(self, fdt):
Simon Glass6ed45ba2018-09-14 04:57:24 -0600195 """Allow entries to adjust the device tree
196
197 Some entries need to adjust the device tree for their purposes. This
198 may involve adding or deleting properties.
199
200 Returns:
201 True if processing is complete
202 False if processing could not be completed due to a dependency.
203 This will cause the entry to be retried after others have been
204 called
205 """
Simon Glassecab8972018-07-06 10:27:40 -0600206 return True
207
Simon Glassc8d48ef2018-06-01 09:38:21 -0600208 def SetPrefix(self, prefix):
209 """Set the name prefix for a node
210
211 Args:
212 prefix: Prefix to set, or '' to not use a prefix
213 """
214 if prefix:
215 self.name = prefix + self.name
216
Simon Glass5c890232018-07-06 10:27:19 -0600217 def SetContents(self, data):
218 """Set the contents of an entry
219
220 This sets both the data and content_size properties
221
222 Args:
223 data: Data to set to the contents (string)
224 """
225 self.data = data
226 self.contents_size = len(self.data)
227
228 def ProcessContentsUpdate(self, data):
229 """Update the contens of an entry, after the size is fixed
230
231 This checks that the new data is the same size as the old.
232
233 Args:
234 data: Data to set to the contents (string)
235
236 Raises:
237 ValueError if the new data size is not the same as the old
238 """
239 if len(data) != self.contents_size:
240 self.Raise('Cannot update entry size from %d to %d' %
241 (len(data), self.contents_size))
242 self.SetContents(data)
243
Simon Glassbf7fd502016-11-25 20:15:51 -0700244 def ObtainContents(self):
245 """Figure out the contents of an entry.
246
247 Returns:
248 True if the contents were found, False if another call is needed
249 after the other entries are processed.
250 """
251 # No contents by default: subclasses can implement this
252 return True
253
Simon Glass3ab95982018-08-01 15:22:37 -0600254 def Pack(self, offset):
Simon Glass25ac0e62018-06-01 09:38:14 -0600255 """Figure out how to pack the entry into the section
Simon Glassbf7fd502016-11-25 20:15:51 -0700256
257 Most of the time the entries are not fully specified. There may be
258 an alignment but no size. In that case we take the size from the
259 contents of the entry.
260
Simon Glass3ab95982018-08-01 15:22:37 -0600261 If an entry has no hard-coded offset, it will be placed at @offset.
Simon Glassbf7fd502016-11-25 20:15:51 -0700262
Simon Glass3ab95982018-08-01 15:22:37 -0600263 Once this function is complete, both the offset and size of the
Simon Glassbf7fd502016-11-25 20:15:51 -0700264 entry will be know.
265
266 Args:
Simon Glass3ab95982018-08-01 15:22:37 -0600267 Current section offset pointer
Simon Glassbf7fd502016-11-25 20:15:51 -0700268
269 Returns:
Simon Glass3ab95982018-08-01 15:22:37 -0600270 New section offset pointer (after this entry)
Simon Glassbf7fd502016-11-25 20:15:51 -0700271 """
Simon Glass3ab95982018-08-01 15:22:37 -0600272 if self.offset is None:
273 if self.offset_unset:
274 self.Raise('No offset set with offset-unset: should another '
275 'entry provide this correct offset?')
276 self.offset = tools.Align(offset, self.align)
Simon Glassbf7fd502016-11-25 20:15:51 -0700277 needed = self.pad_before + self.contents_size + self.pad_after
278 needed = tools.Align(needed, self.align_size)
279 size = self.size
280 if not size:
281 size = needed
Simon Glass3ab95982018-08-01 15:22:37 -0600282 new_offset = self.offset + size
283 aligned_offset = tools.Align(new_offset, self.align_end)
284 if aligned_offset != new_offset:
285 size = aligned_offset - self.offset
286 new_offset = aligned_offset
Simon Glassbf7fd502016-11-25 20:15:51 -0700287
288 if not self.size:
289 self.size = size
290
291 if self.size < needed:
292 self.Raise("Entry contents size is %#x (%d) but entry size is "
293 "%#x (%d)" % (needed, needed, self.size, self.size))
294 # Check that the alignment is correct. It could be wrong if the
Simon Glass3ab95982018-08-01 15:22:37 -0600295 # and offset or size values were provided (i.e. not calculated), but
Simon Glassbf7fd502016-11-25 20:15:51 -0700296 # conflict with the provided alignment values
297 if self.size != tools.Align(self.size, self.align_size):
298 self.Raise("Size %#x (%d) does not match align-size %#x (%d)" %
299 (self.size, self.size, self.align_size, self.align_size))
Simon Glass3ab95982018-08-01 15:22:37 -0600300 if self.offset != tools.Align(self.offset, self.align):
301 self.Raise("Offset %#x (%d) does not match align %#x (%d)" %
302 (self.offset, self.offset, self.align, self.align))
Simon Glassbf7fd502016-11-25 20:15:51 -0700303
Simon Glass3ab95982018-08-01 15:22:37 -0600304 return new_offset
Simon Glassbf7fd502016-11-25 20:15:51 -0700305
306 def Raise(self, msg):
307 """Convenience function to raise an error referencing a node"""
308 raise ValueError("Node '%s': %s" % (self._node.path, msg))
309
Simon Glass53af22a2018-07-17 13:25:32 -0600310 def GetEntryArgsOrProps(self, props, required=False):
311 """Return the values of a set of properties
312
313 Args:
314 props: List of EntryArg objects
315
316 Raises:
317 ValueError if a property is not found
318 """
319 values = []
320 missing = []
321 for prop in props:
322 python_prop = prop.name.replace('-', '_')
323 if hasattr(self, python_prop):
324 value = getattr(self, python_prop)
325 else:
326 value = None
327 if value is None:
328 value = self.GetArg(prop.name, prop.datatype)
329 if value is None and required:
330 missing.append(prop.name)
331 values.append(value)
332 if missing:
333 self.Raise('Missing required properties/entry args: %s' %
334 (', '.join(missing)))
335 return values
336
Simon Glassbf7fd502016-11-25 20:15:51 -0700337 def GetPath(self):
338 """Get the path of a node
339
340 Returns:
341 Full path of the node for this entry
342 """
343 return self._node.path
344
345 def GetData(self):
346 return self.data
347
Simon Glass3ab95982018-08-01 15:22:37 -0600348 def GetOffsets(self):
Simon Glassbf7fd502016-11-25 20:15:51 -0700349 return {}
350
Simon Glass3ab95982018-08-01 15:22:37 -0600351 def SetOffsetSize(self, pos, size):
352 self.offset = pos
Simon Glassbf7fd502016-11-25 20:15:51 -0700353 self.size = size
354
Simon Glassdbf6be92018-08-01 15:22:42 -0600355 def SetImagePos(self, image_pos):
356 """Set the position in the image
357
358 Args:
359 image_pos: Position of this entry in the image
360 """
361 self.image_pos = image_pos + self.offset
362
Simon Glassbf7fd502016-11-25 20:15:51 -0700363 def ProcessContents(self):
364 pass
Simon Glass19790632017-11-13 18:55:01 -0700365
Simon Glassf55382b2018-06-01 09:38:13 -0600366 def WriteSymbols(self, section):
Simon Glass19790632017-11-13 18:55:01 -0700367 """Write symbol values into binary files for access at run time
368
369 Args:
Simon Glassf55382b2018-06-01 09:38:13 -0600370 section: Section containing the entry
Simon Glass19790632017-11-13 18:55:01 -0700371 """
372 pass
Simon Glass18546952018-06-01 09:38:16 -0600373
Simon Glass3ab95982018-08-01 15:22:37 -0600374 def CheckOffset(self):
375 """Check that the entry offsets are correct
Simon Glass18546952018-06-01 09:38:16 -0600376
Simon Glass3ab95982018-08-01 15:22:37 -0600377 This is used for entries which have extra offset requirements (other
Simon Glass18546952018-06-01 09:38:16 -0600378 than having to be fully inside their section). Sub-classes can implement
379 this function and raise if there is a problem.
380 """
381 pass
Simon Glass3b0c3822018-06-01 09:38:20 -0600382
Simon Glass8122f392018-07-17 13:25:28 -0600383 @staticmethod
Simon Glass1be70d22018-07-17 13:25:49 -0600384 def WriteMapLine(fd, indent, name, offset, size, image_pos):
385 print('%08x %s%08x %08x %s' % (image_pos, ' ' * indent, offset,
386 size, name), file=fd)
Simon Glass8122f392018-07-17 13:25:28 -0600387
Simon Glass3b0c3822018-06-01 09:38:20 -0600388 def WriteMap(self, fd, indent):
389 """Write a map of the entry to a .map file
390
391 Args:
392 fd: File to write the map to
393 indent: Curent indent level of map (0=none, 1=one level, etc.)
394 """
Simon Glass1be70d22018-07-17 13:25:49 -0600395 self.WriteMapLine(fd, indent, self.name, self.offset, self.size,
396 self.image_pos)
Simon Glass53af22a2018-07-17 13:25:32 -0600397
Simon Glass11e36cc2018-07-17 13:25:38 -0600398 def GetEntries(self):
399 """Return a list of entries contained by this entry
400
401 Returns:
402 List of entries, or None if none. A normal entry has no entries
403 within it so will return None
404 """
405 return None
406
Simon Glass53af22a2018-07-17 13:25:32 -0600407 def GetArg(self, name, datatype=str):
408 """Get the value of an entry argument or device-tree-node property
409
410 Some node properties can be provided as arguments to binman. First check
411 the entry arguments, and fall back to the device tree if not found
412
413 Args:
414 name: Argument name
415 datatype: Data type (str or int)
416
417 Returns:
418 Value of argument as a string or int, or None if no value
419
420 Raises:
421 ValueError if the argument cannot be converted to in
422 """
Simon Glassc55a50f2018-09-14 04:57:19 -0600423 value = state.GetEntryArg(name)
Simon Glass53af22a2018-07-17 13:25:32 -0600424 if value is not None:
425 if datatype == int:
426 try:
427 value = int(value)
428 except ValueError:
429 self.Raise("Cannot convert entry arg '%s' (value '%s') to integer" %
430 (name, value))
431 elif datatype == str:
432 pass
433 else:
434 raise ValueError("GetArg() internal error: Unknown data type '%s'" %
435 datatype)
436 else:
437 value = fdt_util.GetDatatype(self._node, name, datatype)
438 return value
Simon Glassfd8d1f72018-07-17 13:25:36 -0600439
440 @staticmethod
441 def WriteDocs(modules, test_missing=None):
442 """Write out documentation about the various entry types to stdout
443
444 Args:
445 modules: List of modules to include
446 test_missing: Used for testing. This is a module to report
447 as missing
448 """
449 print('''Binman Entry Documentation
450===========================
451
452This file describes the entry types supported by binman. These entry types can
453be placed in an image one by one to build up a final firmware image. It is
454fairly easy to create new entry types. Just add a new file to the 'etype'
455directory. You can use the existing entries as examples.
456
457Note that some entries are subclasses of others, using and extending their
458features to produce new behaviours.
459
460
461''')
462 modules = sorted(modules)
463
464 # Don't show the test entry
465 if '_testing' in modules:
466 modules.remove('_testing')
467 missing = []
468 for name in modules:
469 module = Entry.Lookup(name, name, name)
470 docs = getattr(module, '__doc__')
471 if test_missing == name:
472 docs = None
473 if docs:
474 lines = docs.splitlines()
475 first_line = lines[0]
476 rest = [line[4:] for line in lines[1:]]
477 hdr = 'Entry: %s: %s' % (name.replace('_', '-'), first_line)
478 print(hdr)
479 print('-' * len(hdr))
480 print('\n'.join(rest))
481 print()
482 print()
483 else:
484 missing.append(name)
485
486 if missing:
487 raise ValueError('Documentation is missing for modules: %s' %
488 ', '.join(missing))
Simon Glassa326b492018-09-14 04:57:11 -0600489
490 def GetUniqueName(self):
491 """Get a unique name for a node
492
493 Returns:
494 String containing a unique name for a node, consisting of the name
495 of all ancestors (starting from within the 'binman' node) separated
496 by a dot ('.'). This can be useful for generating unique filesnames
497 in the output directory.
498 """
499 name = self.name
500 node = self._node
501 while node.parent:
502 node = node.parent
503 if node.name == 'binman':
504 break
505 name = '%s.%s' % (node.name, name)
506 return name