blob: 6a173e663d0fcfc1505e570c8b37dc59ddf71c0f [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Simon Glass2574ef62016-11-25 20:15:51 -07002# Copyright (c) 2016 Google, Inc
3#
Simon Glass2574ef62016-11-25 20:15:51 -07004# Base class for all entries
5#
6
Simon Glass30732662018-06-01 09:38:20 -06007from __future__ import print_function
8
Simon Glass2574ef62016-11-25 20:15:51 -07009# importlib was introduced in Python 2.7 but there was a report of it not
10# working in 2.7.12, so we work around this:
11# http://lists.denx.de/pipermail/u-boot/2016-October/269729.html
12try:
13 import importlib
14 have_importlib = True
15except:
16 have_importlib = False
17
18import fdt_util
Simon Glass691198c2018-06-01 09:38:15 -060019import os
20import sys
Simon Glass2574ef62016-11-25 20:15:51 -070021import tools
22
23modules = {}
24
Simon Glass691198c2018-06-01 09:38:15 -060025our_path = os.path.dirname(os.path.realpath(__file__))
26
Simon Glass2574ef62016-11-25 20:15:51 -070027class Entry(object):
Simon Glassad5a7712018-06-01 09:38:14 -060028 """An Entry in the section
Simon Glass2574ef62016-11-25 20:15:51 -070029
30 An entry corresponds to a single node in the device-tree description
Simon Glassad5a7712018-06-01 09:38:14 -060031 of the section. Each entry ends up being a part of the final section.
Simon Glass2574ef62016-11-25 20:15:51 -070032 Entries can be placed either right next to each other, or with padding
33 between them. The type of the entry determines the data that is in it.
34
35 This class is not used by itself. All entry objects are subclasses of
36 Entry.
37
38 Attributes:
Simon Glassad5a7712018-06-01 09:38:14 -060039 section: The section containing this entry
Simon Glass2574ef62016-11-25 20:15:51 -070040 node: The node that created this entry
Simon Glassad5a7712018-06-01 09:38:14 -060041 pos: Absolute position of entry within the section, None if not known
Simon Glass2574ef62016-11-25 20:15:51 -070042 size: Entry size in bytes, None if not known
43 contents_size: Size of contents in bytes, 0 by default
44 align: Entry start position alignment, or None
45 align_size: Entry size alignment, or None
46 align_end: Entry end position alignment, or None
47 pad_before: Number of pad bytes before the contents, 0 if none
48 pad_after: Number of pad bytes after the contents, 0 if none
49 data: Contents of entry (string of bytes)
50 """
Simon Glass3b78d532018-06-01 09:38:21 -060051 def __init__(self, section, etype, node, read_node=True, name_prefix=''):
Simon Glassad5a7712018-06-01 09:38:14 -060052 self.section = section
Simon Glass2574ef62016-11-25 20:15:51 -070053 self.etype = etype
54 self._node = node
Simon Glass3b78d532018-06-01 09:38:21 -060055 self.name = node and (name_prefix + node.name) or 'none'
Simon Glass2574ef62016-11-25 20:15:51 -070056 self.pos = None
57 self.size = None
Simon Glass2e1169f2018-07-06 10:27:19 -060058 self.data = ''
Simon Glass2574ef62016-11-25 20:15:51 -070059 self.contents_size = 0
60 self.align = None
61 self.align_size = None
62 self.align_end = None
63 self.pad_before = 0
64 self.pad_after = 0
65 self.pos_unset = False
66 if read_node:
67 self.ReadNode()
68
69 @staticmethod
Simon Glassad5a7712018-06-01 09:38:14 -060070 def Create(section, node, etype=None):
Simon Glass2574ef62016-11-25 20:15:51 -070071 """Create a new entry for a node.
72
73 Args:
Simon Glassad5a7712018-06-01 09:38:14 -060074 section: Image object containing this node
Simon Glass2574ef62016-11-25 20:15:51 -070075 node: Node object containing information about the entry to create
76 etype: Entry type to use, or None to work it out (used for tests)
77
78 Returns:
79 A new Entry object of the correct type (a subclass of Entry)
80 """
81 if not etype:
82 etype = fdt_util.GetString(node, 'type', node.name)
Simon Glasse76a3e62018-06-01 09:38:11 -060083
84 # Convert something like 'u-boot@0' to 'u_boot' since we are only
85 # interested in the type.
Simon Glass2574ef62016-11-25 20:15:51 -070086 module_name = etype.replace('-', '_')
Simon Glasse76a3e62018-06-01 09:38:11 -060087 if '@' in module_name:
88 module_name = module_name.split('@')[0]
Simon Glass2574ef62016-11-25 20:15:51 -070089 module = modules.get(module_name)
90
Simon Glass691198c2018-06-01 09:38:15 -060091 # Also allow entry-type modules to be brought in from the etype directory.
92
Simon Glass2574ef62016-11-25 20:15:51 -070093 # Import the module if we have not already done so.
94 if not module:
Simon Glass691198c2018-06-01 09:38:15 -060095 old_path = sys.path
96 sys.path.insert(0, os.path.join(our_path, 'etype'))
Simon Glass2574ef62016-11-25 20:15:51 -070097 try:
98 if have_importlib:
99 module = importlib.import_module(module_name)
100 else:
101 module = __import__(module_name)
102 except ImportError:
103 raise ValueError("Unknown entry type '%s' in node '%s'" %
104 (etype, node.path))
Simon Glass691198c2018-06-01 09:38:15 -0600105 finally:
106 sys.path = old_path
Simon Glass2574ef62016-11-25 20:15:51 -0700107 modules[module_name] = module
108
109 # Call its constructor to get the object we want.
110 obj = getattr(module, 'Entry_%s' % module_name)
Simon Glassad5a7712018-06-01 09:38:14 -0600111 return obj(section, etype, node)
Simon Glass2574ef62016-11-25 20:15:51 -0700112
113 def ReadNode(self):
114 """Read entry information from the node
115
116 This reads all the fields we recognise from the node, ready for use.
117 """
118 self.pos = fdt_util.GetInt(self._node, 'pos')
119 self.size = fdt_util.GetInt(self._node, 'size')
120 self.align = fdt_util.GetInt(self._node, 'align')
121 if tools.NotPowerOfTwo(self.align):
122 raise ValueError("Node '%s': Alignment %s must be a power of two" %
123 (self._node.path, self.align))
124 self.pad_before = fdt_util.GetInt(self._node, 'pad-before', 0)
125 self.pad_after = fdt_util.GetInt(self._node, 'pad-after', 0)
126 self.align_size = fdt_util.GetInt(self._node, 'align-size')
127 if tools.NotPowerOfTwo(self.align_size):
128 raise ValueError("Node '%s': Alignment size %s must be a power "
129 "of two" % (self._node.path, self.align_size))
130 self.align_end = fdt_util.GetInt(self._node, 'align-end')
131 self.pos_unset = fdt_util.GetBool(self._node, 'pos-unset')
132
Simon Glasse22f8fa2018-07-06 10:27:41 -0600133 def AddMissingProperties(self):
134 """Add new properties to the device tree as needed for this entry"""
135 for prop in ['pos', 'size']:
136 if not prop in self._node.props:
137 self._node.AddZeroProp(prop)
138
139 def SetCalculatedProperties(self):
140 """Set the value of device-tree properties calculated by binman"""
141 self._node.SetInt('pos', self.pos)
142 self._node.SetInt('size', self.size)
143
Simon Glass92307732018-07-06 10:27:40 -0600144 def ProcessFdt(self, fdt):
145 return True
146
Simon Glass3b78d532018-06-01 09:38:21 -0600147 def SetPrefix(self, prefix):
148 """Set the name prefix for a node
149
150 Args:
151 prefix: Prefix to set, or '' to not use a prefix
152 """
153 if prefix:
154 self.name = prefix + self.name
155
Simon Glass2e1169f2018-07-06 10:27:19 -0600156 def SetContents(self, data):
157 """Set the contents of an entry
158
159 This sets both the data and content_size properties
160
161 Args:
162 data: Data to set to the contents (string)
163 """
164 self.data = data
165 self.contents_size = len(self.data)
166
167 def ProcessContentsUpdate(self, data):
168 """Update the contens of an entry, after the size is fixed
169
170 This checks that the new data is the same size as the old.
171
172 Args:
173 data: Data to set to the contents (string)
174
175 Raises:
176 ValueError if the new data size is not the same as the old
177 """
178 if len(data) != self.contents_size:
179 self.Raise('Cannot update entry size from %d to %d' %
180 (len(data), self.contents_size))
181 self.SetContents(data)
182
Simon Glass2574ef62016-11-25 20:15:51 -0700183 def ObtainContents(self):
184 """Figure out the contents of an entry.
185
186 Returns:
187 True if the contents were found, False if another call is needed
188 after the other entries are processed.
189 """
190 # No contents by default: subclasses can implement this
191 return True
192
193 def Pack(self, pos):
Simon Glassad5a7712018-06-01 09:38:14 -0600194 """Figure out how to pack the entry into the section
Simon Glass2574ef62016-11-25 20:15:51 -0700195
196 Most of the time the entries are not fully specified. There may be
197 an alignment but no size. In that case we take the size from the
198 contents of the entry.
199
200 If an entry has no hard-coded position, it will be placed at @pos.
201
202 Once this function is complete, both the position and size of the
203 entry will be know.
204
205 Args:
Simon Glassad5a7712018-06-01 09:38:14 -0600206 Current section position pointer
Simon Glass2574ef62016-11-25 20:15:51 -0700207
208 Returns:
Simon Glassad5a7712018-06-01 09:38:14 -0600209 New section position pointer (after this entry)
Simon Glass2574ef62016-11-25 20:15:51 -0700210 """
211 if self.pos is None:
212 if self.pos_unset:
213 self.Raise('No position set with pos-unset: should another '
214 'entry provide this correct position?')
215 self.pos = tools.Align(pos, self.align)
216 needed = self.pad_before + self.contents_size + self.pad_after
217 needed = tools.Align(needed, self.align_size)
218 size = self.size
219 if not size:
220 size = needed
221 new_pos = self.pos + size
222 aligned_pos = tools.Align(new_pos, self.align_end)
223 if aligned_pos != new_pos:
224 size = aligned_pos - self.pos
225 new_pos = aligned_pos
226
227 if not self.size:
228 self.size = size
229
230 if self.size < needed:
231 self.Raise("Entry contents size is %#x (%d) but entry size is "
232 "%#x (%d)" % (needed, needed, self.size, self.size))
233 # Check that the alignment is correct. It could be wrong if the
234 # and pos or size values were provided (i.e. not calculated), but
235 # conflict with the provided alignment values
236 if self.size != tools.Align(self.size, self.align_size):
237 self.Raise("Size %#x (%d) does not match align-size %#x (%d)" %
238 (self.size, self.size, self.align_size, self.align_size))
239 if self.pos != tools.Align(self.pos, self.align):
240 self.Raise("Position %#x (%d) does not match align %#x (%d)" %
241 (self.pos, self.pos, self.align, self.align))
242
243 return new_pos
244
245 def Raise(self, msg):
246 """Convenience function to raise an error referencing a node"""
247 raise ValueError("Node '%s': %s" % (self._node.path, msg))
248
249 def GetPath(self):
250 """Get the path of a node
251
252 Returns:
253 Full path of the node for this entry
254 """
255 return self._node.path
256
257 def GetData(self):
258 return self.data
259
260 def GetPositions(self):
261 return {}
262
263 def SetPositionSize(self, pos, size):
264 self.pos = pos
265 self.size = size
266
267 def ProcessContents(self):
268 pass
Simon Glass4ca8e042017-11-13 18:55:01 -0700269
Simon Glass8a6f56e2018-06-01 09:38:13 -0600270 def WriteSymbols(self, section):
Simon Glass4ca8e042017-11-13 18:55:01 -0700271 """Write symbol values into binary files for access at run time
272
273 Args:
Simon Glass8a6f56e2018-06-01 09:38:13 -0600274 section: Section containing the entry
Simon Glass4ca8e042017-11-13 18:55:01 -0700275 """
276 pass
Simon Glassa91e1152018-06-01 09:38:16 -0600277
278 def CheckPosition(self):
279 """Check that the entry positions are correct
280
281 This is used for entries which have extra position requirements (other
282 than having to be fully inside their section). Sub-classes can implement
283 this function and raise if there is a problem.
284 """
285 pass
Simon Glass30732662018-06-01 09:38:20 -0600286
287 def WriteMap(self, fd, indent):
288 """Write a map of the entry to a .map file
289
290 Args:
291 fd: File to write the map to
292 indent: Curent indent level of map (0=none, 1=one level, etc.)
293 """
294 print('%s%08x %08x %s' % (' ' * indent, self.pos, self.size,
295 self.name), file=fd)