blob: c8bce394aa16f1ae29f0d2660c83b239ab216447 [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# Written by Simon Glass <sjg@chromium.org>
4#
Simon Glass2574ef62016-11-25 20:15:51 -07005# Class for an image, the output of binman
6#
7
Simon Glass4ca8e042017-11-13 18:55:01 -07008from __future__ import print_function
9
Simon Glass2574ef62016-11-25 20:15:51 -070010from collections import OrderedDict
11from operator import attrgetter
Simon Glass4ca8e042017-11-13 18:55:01 -070012import re
13import sys
Simon Glass2574ef62016-11-25 20:15:51 -070014
Simon Glass2574ef62016-11-25 20:15:51 -070015import fdt_util
Simon Glasseca32212018-06-01 09:38:12 -060016import bsection
Simon Glass2574ef62016-11-25 20:15:51 -070017import tools
18
19class Image:
20 """A Image, representing an output from binman
21
22 An image is comprised of a collection of entries each containing binary
23 data. The image size must be large enough to hold all of this data.
24
25 This class implements the various operations needed for images.
26
27 Atrtributes:
28 _node: Node object that contains the image definition in device tree
29 _name: Image name
30 _size: Image size in bytes, or None if not known yet
Simon Glass2574ef62016-11-25 20:15:51 -070031 _filename: Output filename for image
Simon Glasseca32212018-06-01 09:38:12 -060032 _sections: Sections present in this image (may be one or more)
Simon Glass1e324002018-06-01 09:38:19 -060033
34 Args:
35 test: True if this is being called from a test of Images. This this case
36 there is no device tree defining the structure of the section, so
37 we create a section manually.
Simon Glass2574ef62016-11-25 20:15:51 -070038 """
Simon Glass4ca8e042017-11-13 18:55:01 -070039 def __init__(self, name, node, test=False):
Simon Glass2574ef62016-11-25 20:15:51 -070040 self._node = node
41 self._name = name
42 self._size = None
Simon Glass2574ef62016-11-25 20:15:51 -070043 self._filename = '%s.bin' % self._name
Simon Glasseca32212018-06-01 09:38:12 -060044 if test:
Simon Glass7c767ad2018-09-14 04:57:33 -060045 self._section = bsection.Section('main-section', None, self._node,
46 self, True)
Simon Glasseca32212018-06-01 09:38:12 -060047 else:
Simon Glass4ca8e042017-11-13 18:55:01 -070048 self._ReadNode()
Simon Glass2574ef62016-11-25 20:15:51 -070049
50 def _ReadNode(self):
51 """Read properties from the image node"""
52 self._size = fdt_util.GetInt(self._node, 'size')
Simon Glass2574ef62016-11-25 20:15:51 -070053 filename = fdt_util.GetString(self._node, 'filename')
54 if filename:
55 self._filename = filename
Simon Glass7c767ad2018-09-14 04:57:33 -060056 self._section = bsection.Section('main-section', None, self._node, self)
Simon Glass2574ef62016-11-25 20:15:51 -070057
Simon Glass0c9d5b52018-09-14 04:57:22 -060058 def GetFdtSet(self):
59 """Get the set of device tree files used by this image"""
60 return self._section.GetFdtSet()
61
Simon Glassac6328c2018-09-14 04:57:28 -060062 def ExpandEntries(self):
63 """Expand out any entries which have calculated sub-entries
64
65 Some entries are expanded out at runtime, e.g. 'files', which produces
66 a section containing a list of files. Process these entries so that
67 this information is added to the device tree.
68 """
69 self._section.ExpandEntries()
70
Simon Glasse22f8fa2018-07-06 10:27:41 -060071 def AddMissingProperties(self):
72 """Add properties that are not present in the device tree
73
Simon Glasse8561af2018-08-01 15:22:37 -060074 When binman has completed packing the entries the offset and size of
Simon Glasse22f8fa2018-07-06 10:27:41 -060075 each entry are known. But before this the device tree may not specify
76 these. Add any missing properties, with a dummy value, so that the
77 size of the entry is correct. That way we can insert the correct values
78 later.
79 """
80 self._section.AddMissingProperties()
81
Simon Glass92307732018-07-06 10:27:40 -060082 def ProcessFdt(self, fdt):
Simon Glasse219aa42018-09-14 04:57:24 -060083 """Allow entries to adjust the device tree
84
85 Some entries need to adjust the device tree for their purposes. This
86 may involve adding or deleting properties.
87 """
Simon Glass92307732018-07-06 10:27:40 -060088 return self._section.ProcessFdt(fdt)
89
Simon Glass2574ef62016-11-25 20:15:51 -070090 def GetEntryContents(self):
Simon Glasseca32212018-06-01 09:38:12 -060091 """Call ObtainContents() for the section
Simon Glass2574ef62016-11-25 20:15:51 -070092 """
Simon Glasseca32212018-06-01 09:38:12 -060093 self._section.GetEntryContents()
Simon Glass2574ef62016-11-25 20:15:51 -070094
Simon Glasse8561af2018-08-01 15:22:37 -060095 def GetEntryOffsets(self):
96 """Handle entries that want to set the offset/size of other entries
Simon Glass2574ef62016-11-25 20:15:51 -070097
Simon Glasse8561af2018-08-01 15:22:37 -060098 This calls each entry's GetOffsets() method. If it returns a list
Simon Glass2574ef62016-11-25 20:15:51 -070099 of entries to update, it updates them.
100 """
Simon Glasse8561af2018-08-01 15:22:37 -0600101 self._section.GetEntryOffsets()
Simon Glass2574ef62016-11-25 20:15:51 -0700102
103 def PackEntries(self):
104 """Pack all entries into the image"""
Simon Glasseca32212018-06-01 09:38:12 -0600105 self._section.PackEntries()
Simon Glass2574ef62016-11-25 20:15:51 -0700106
Simon Glasseca32212018-06-01 09:38:12 -0600107 def CheckSize(self):
108 """Check that the image contents does not exceed its size, etc."""
109 self._size = self._section.CheckSize()
Simon Glass2574ef62016-11-25 20:15:51 -0700110
111 def CheckEntries(self):
112 """Check that entries do not overlap or extend outside the image"""
Simon Glasseca32212018-06-01 09:38:12 -0600113 self._section.CheckEntries()
Simon Glass2574ef62016-11-25 20:15:51 -0700114
Simon Glasse22f8fa2018-07-06 10:27:41 -0600115 def SetCalculatedProperties(self):
116 self._section.SetCalculatedProperties()
117
Simon Glass9dcc8612018-08-01 15:22:42 -0600118 def SetImagePos(self):
119 self._section.SetImagePos(0)
120
Simon Glass2574ef62016-11-25 20:15:51 -0700121 def ProcessEntryContents(self):
122 """Call the ProcessContents() method for each entry
123
124 This is intended to adjust the contents as needed by the entry type.
Simon Glassec849852019-07-08 14:25:35 -0600125
126 Returns:
127 True if the new data size is OK, False if expansion is needed
Simon Glass2574ef62016-11-25 20:15:51 -0700128 """
Simon Glassec849852019-07-08 14:25:35 -0600129 return self._section.ProcessEntryContents()
Simon Glass2574ef62016-11-25 20:15:51 -0700130
Simon Glass4ca8e042017-11-13 18:55:01 -0700131 def WriteSymbols(self):
132 """Write symbol values into binary files for access at run time"""
Simon Glasseca32212018-06-01 09:38:12 -0600133 self._section.WriteSymbols()
Simon Glass4ca8e042017-11-13 18:55:01 -0700134
Simon Glass2574ef62016-11-25 20:15:51 -0700135 def BuildImage(self):
136 """Write the image to a file"""
137 fname = tools.GetOutputFilename(self._filename)
138 with open(fname, 'wb') as fd:
Simon Glasseca32212018-06-01 09:38:12 -0600139 self._section.BuildSection(fd, 0)
Simon Glass2574ef62016-11-25 20:15:51 -0700140
Simon Glasseca32212018-06-01 09:38:12 -0600141 def GetEntries(self):
142 return self._section.GetEntries()
Simon Glass30732662018-06-01 09:38:20 -0600143
144 def WriteMap(self):
Simon Glasscd817d52018-09-14 04:57:36 -0600145 """Write a map of the image to a .map file
146
147 Returns:
148 Filename of map file written
149 """
Simon Glass30732662018-06-01 09:38:20 -0600150 filename = '%s.map' % self._name
151 fname = tools.GetOutputFilename(filename)
152 with open(fname, 'w') as fd:
Simon Glass7eca7922018-07-17 13:25:49 -0600153 print('%8s %8s %8s %s' % ('ImagePos', 'Offset', 'Size', 'Name'),
154 file=fd)
Simon Glass30732662018-06-01 09:38:20 -0600155 self._section.WriteMap(fd, 0)
Simon Glasscd817d52018-09-14 04:57:36 -0600156 return fname