blob: e5f557749f6584f47a22de8d0f00e70598da0b29 [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):
195 return True
196
Simon Glassc8d48ef2018-06-01 09:38:21 -0600197 def SetPrefix(self, prefix):
198 """Set the name prefix for a node
199
200 Args:
201 prefix: Prefix to set, or '' to not use a prefix
202 """
203 if prefix:
204 self.name = prefix + self.name
205
Simon Glass5c890232018-07-06 10:27:19 -0600206 def SetContents(self, data):
207 """Set the contents of an entry
208
209 This sets both the data and content_size properties
210
211 Args:
212 data: Data to set to the contents (string)
213 """
214 self.data = data
215 self.contents_size = len(self.data)
216
217 def ProcessContentsUpdate(self, data):
218 """Update the contens of an entry, after the size is fixed
219
220 This checks that the new data is the same size as the old.
221
222 Args:
223 data: Data to set to the contents (string)
224
225 Raises:
226 ValueError if the new data size is not the same as the old
227 """
228 if len(data) != self.contents_size:
229 self.Raise('Cannot update entry size from %d to %d' %
230 (len(data), self.contents_size))
231 self.SetContents(data)
232
Simon Glassbf7fd502016-11-25 20:15:51 -0700233 def ObtainContents(self):
234 """Figure out the contents of an entry.
235
236 Returns:
237 True if the contents were found, False if another call is needed
238 after the other entries are processed.
239 """
240 # No contents by default: subclasses can implement this
241 return True
242
Simon Glass3ab95982018-08-01 15:22:37 -0600243 def Pack(self, offset):
Simon Glass25ac0e62018-06-01 09:38:14 -0600244 """Figure out how to pack the entry into the section
Simon Glassbf7fd502016-11-25 20:15:51 -0700245
246 Most of the time the entries are not fully specified. There may be
247 an alignment but no size. In that case we take the size from the
248 contents of the entry.
249
Simon Glass3ab95982018-08-01 15:22:37 -0600250 If an entry has no hard-coded offset, it will be placed at @offset.
Simon Glassbf7fd502016-11-25 20:15:51 -0700251
Simon Glass3ab95982018-08-01 15:22:37 -0600252 Once this function is complete, both the offset and size of the
Simon Glassbf7fd502016-11-25 20:15:51 -0700253 entry will be know.
254
255 Args:
Simon Glass3ab95982018-08-01 15:22:37 -0600256 Current section offset pointer
Simon Glassbf7fd502016-11-25 20:15:51 -0700257
258 Returns:
Simon Glass3ab95982018-08-01 15:22:37 -0600259 New section offset pointer (after this entry)
Simon Glassbf7fd502016-11-25 20:15:51 -0700260 """
Simon Glass3ab95982018-08-01 15:22:37 -0600261 if self.offset is None:
262 if self.offset_unset:
263 self.Raise('No offset set with offset-unset: should another '
264 'entry provide this correct offset?')
265 self.offset = tools.Align(offset, self.align)
Simon Glassbf7fd502016-11-25 20:15:51 -0700266 needed = self.pad_before + self.contents_size + self.pad_after
267 needed = tools.Align(needed, self.align_size)
268 size = self.size
269 if not size:
270 size = needed
Simon Glass3ab95982018-08-01 15:22:37 -0600271 new_offset = self.offset + size
272 aligned_offset = tools.Align(new_offset, self.align_end)
273 if aligned_offset != new_offset:
274 size = aligned_offset - self.offset
275 new_offset = aligned_offset
Simon Glassbf7fd502016-11-25 20:15:51 -0700276
277 if not self.size:
278 self.size = size
279
280 if self.size < needed:
281 self.Raise("Entry contents size is %#x (%d) but entry size is "
282 "%#x (%d)" % (needed, needed, self.size, self.size))
283 # Check that the alignment is correct. It could be wrong if the
Simon Glass3ab95982018-08-01 15:22:37 -0600284 # and offset or size values were provided (i.e. not calculated), but
Simon Glassbf7fd502016-11-25 20:15:51 -0700285 # conflict with the provided alignment values
286 if self.size != tools.Align(self.size, self.align_size):
287 self.Raise("Size %#x (%d) does not match align-size %#x (%d)" %
288 (self.size, self.size, self.align_size, self.align_size))
Simon Glass3ab95982018-08-01 15:22:37 -0600289 if self.offset != tools.Align(self.offset, self.align):
290 self.Raise("Offset %#x (%d) does not match align %#x (%d)" %
291 (self.offset, self.offset, self.align, self.align))
Simon Glassbf7fd502016-11-25 20:15:51 -0700292
Simon Glass3ab95982018-08-01 15:22:37 -0600293 return new_offset
Simon Glassbf7fd502016-11-25 20:15:51 -0700294
295 def Raise(self, msg):
296 """Convenience function to raise an error referencing a node"""
297 raise ValueError("Node '%s': %s" % (self._node.path, msg))
298
Simon Glass53af22a2018-07-17 13:25:32 -0600299 def GetEntryArgsOrProps(self, props, required=False):
300 """Return the values of a set of properties
301
302 Args:
303 props: List of EntryArg objects
304
305 Raises:
306 ValueError if a property is not found
307 """
308 values = []
309 missing = []
310 for prop in props:
311 python_prop = prop.name.replace('-', '_')
312 if hasattr(self, python_prop):
313 value = getattr(self, python_prop)
314 else:
315 value = None
316 if value is None:
317 value = self.GetArg(prop.name, prop.datatype)
318 if value is None and required:
319 missing.append(prop.name)
320 values.append(value)
321 if missing:
322 self.Raise('Missing required properties/entry args: %s' %
323 (', '.join(missing)))
324 return values
325
Simon Glassbf7fd502016-11-25 20:15:51 -0700326 def GetPath(self):
327 """Get the path of a node
328
329 Returns:
330 Full path of the node for this entry
331 """
332 return self._node.path
333
334 def GetData(self):
335 return self.data
336
Simon Glass3ab95982018-08-01 15:22:37 -0600337 def GetOffsets(self):
Simon Glassbf7fd502016-11-25 20:15:51 -0700338 return {}
339
Simon Glass3ab95982018-08-01 15:22:37 -0600340 def SetOffsetSize(self, pos, size):
341 self.offset = pos
Simon Glassbf7fd502016-11-25 20:15:51 -0700342 self.size = size
343
Simon Glassdbf6be92018-08-01 15:22:42 -0600344 def SetImagePos(self, image_pos):
345 """Set the position in the image
346
347 Args:
348 image_pos: Position of this entry in the image
349 """
350 self.image_pos = image_pos + self.offset
351
Simon Glassbf7fd502016-11-25 20:15:51 -0700352 def ProcessContents(self):
353 pass
Simon Glass19790632017-11-13 18:55:01 -0700354
Simon Glassf55382b2018-06-01 09:38:13 -0600355 def WriteSymbols(self, section):
Simon Glass19790632017-11-13 18:55:01 -0700356 """Write symbol values into binary files for access at run time
357
358 Args:
Simon Glassf55382b2018-06-01 09:38:13 -0600359 section: Section containing the entry
Simon Glass19790632017-11-13 18:55:01 -0700360 """
361 pass
Simon Glass18546952018-06-01 09:38:16 -0600362
Simon Glass3ab95982018-08-01 15:22:37 -0600363 def CheckOffset(self):
364 """Check that the entry offsets are correct
Simon Glass18546952018-06-01 09:38:16 -0600365
Simon Glass3ab95982018-08-01 15:22:37 -0600366 This is used for entries which have extra offset requirements (other
Simon Glass18546952018-06-01 09:38:16 -0600367 than having to be fully inside their section). Sub-classes can implement
368 this function and raise if there is a problem.
369 """
370 pass
Simon Glass3b0c3822018-06-01 09:38:20 -0600371
Simon Glass8122f392018-07-17 13:25:28 -0600372 @staticmethod
Simon Glass1be70d22018-07-17 13:25:49 -0600373 def WriteMapLine(fd, indent, name, offset, size, image_pos):
374 print('%08x %s%08x %08x %s' % (image_pos, ' ' * indent, offset,
375 size, name), file=fd)
Simon Glass8122f392018-07-17 13:25:28 -0600376
Simon Glass3b0c3822018-06-01 09:38:20 -0600377 def WriteMap(self, fd, indent):
378 """Write a map of the entry to a .map file
379
380 Args:
381 fd: File to write the map to
382 indent: Curent indent level of map (0=none, 1=one level, etc.)
383 """
Simon Glass1be70d22018-07-17 13:25:49 -0600384 self.WriteMapLine(fd, indent, self.name, self.offset, self.size,
385 self.image_pos)
Simon Glass53af22a2018-07-17 13:25:32 -0600386
Simon Glass11e36cc2018-07-17 13:25:38 -0600387 def GetEntries(self):
388 """Return a list of entries contained by this entry
389
390 Returns:
391 List of entries, or None if none. A normal entry has no entries
392 within it so will return None
393 """
394 return None
395
Simon Glass53af22a2018-07-17 13:25:32 -0600396 def GetArg(self, name, datatype=str):
397 """Get the value of an entry argument or device-tree-node property
398
399 Some node properties can be provided as arguments to binman. First check
400 the entry arguments, and fall back to the device tree if not found
401
402 Args:
403 name: Argument name
404 datatype: Data type (str or int)
405
406 Returns:
407 Value of argument as a string or int, or None if no value
408
409 Raises:
410 ValueError if the argument cannot be converted to in
411 """
Simon Glassc55a50f2018-09-14 04:57:19 -0600412 value = state.GetEntryArg(name)
Simon Glass53af22a2018-07-17 13:25:32 -0600413 if value is not None:
414 if datatype == int:
415 try:
416 value = int(value)
417 except ValueError:
418 self.Raise("Cannot convert entry arg '%s' (value '%s') to integer" %
419 (name, value))
420 elif datatype == str:
421 pass
422 else:
423 raise ValueError("GetArg() internal error: Unknown data type '%s'" %
424 datatype)
425 else:
426 value = fdt_util.GetDatatype(self._node, name, datatype)
427 return value
Simon Glassfd8d1f72018-07-17 13:25:36 -0600428
429 @staticmethod
430 def WriteDocs(modules, test_missing=None):
431 """Write out documentation about the various entry types to stdout
432
433 Args:
434 modules: List of modules to include
435 test_missing: Used for testing. This is a module to report
436 as missing
437 """
438 print('''Binman Entry Documentation
439===========================
440
441This file describes the entry types supported by binman. These entry types can
442be placed in an image one by one to build up a final firmware image. It is
443fairly easy to create new entry types. Just add a new file to the 'etype'
444directory. You can use the existing entries as examples.
445
446Note that some entries are subclasses of others, using and extending their
447features to produce new behaviours.
448
449
450''')
451 modules = sorted(modules)
452
453 # Don't show the test entry
454 if '_testing' in modules:
455 modules.remove('_testing')
456 missing = []
457 for name in modules:
458 module = Entry.Lookup(name, name, name)
459 docs = getattr(module, '__doc__')
460 if test_missing == name:
461 docs = None
462 if docs:
463 lines = docs.splitlines()
464 first_line = lines[0]
465 rest = [line[4:] for line in lines[1:]]
466 hdr = 'Entry: %s: %s' % (name.replace('_', '-'), first_line)
467 print(hdr)
468 print('-' * len(hdr))
469 print('\n'.join(rest))
470 print()
471 print()
472 else:
473 missing.append(name)
474
475 if missing:
476 raise ValueError('Documentation is missing for modules: %s' %
477 ', '.join(missing))
Simon Glassa326b492018-09-14 04:57:11 -0600478
479 def GetUniqueName(self):
480 """Get a unique name for a node
481
482 Returns:
483 String containing a unique name for a node, consisting of the name
484 of all ancestors (starting from within the 'binman' node) separated
485 by a dot ('.'). This can be useful for generating unique filesnames
486 in the output directory.
487 """
488 name = self.name
489 node = self._node
490 while node.parent:
491 node = node.parent
492 if node.name == 'binman':
493 break
494 name = '%s.%s' % (node.name, name)
495 return name