Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 2 | # Copyright (c) 2016 Google, Inc |
| 3 | # Written by Simon Glass <sjg@chromium.org> |
| 4 | # |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 5 | # Class for an image, the output of binman |
| 6 | # |
| 7 | |
Simon Glass | 4ca8e04 | 2017-11-13 18:55:01 -0700 | [diff] [blame] | 8 | from __future__ import print_function |
| 9 | |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 10 | from collections import OrderedDict |
| 11 | from operator import attrgetter |
Simon Glass | 4ca8e04 | 2017-11-13 18:55:01 -0700 | [diff] [blame] | 12 | import re |
| 13 | import sys |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 14 | |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 15 | import fdt_util |
Simon Glass | eca3221 | 2018-06-01 09:38:12 -0600 | [diff] [blame] | 16 | import bsection |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 17 | import tools |
| 18 | |
| 19 | class 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 Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 31 | _filename: Output filename for image |
Simon Glass | eca3221 | 2018-06-01 09:38:12 -0600 | [diff] [blame] | 32 | _sections: Sections present in this image (may be one or more) |
Simon Glass | 1e32400 | 2018-06-01 09:38:19 -0600 | [diff] [blame] | 33 | |
| 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 Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 38 | """ |
Simon Glass | 4ca8e04 | 2017-11-13 18:55:01 -0700 | [diff] [blame] | 39 | def __init__(self, name, node, test=False): |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 40 | self._node = node |
| 41 | self._name = name |
| 42 | self._size = None |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 43 | self._filename = '%s.bin' % self._name |
Simon Glass | eca3221 | 2018-06-01 09:38:12 -0600 | [diff] [blame] | 44 | if test: |
Simon Glass | 7c767ad | 2018-09-14 04:57:33 -0600 | [diff] [blame] | 45 | self._section = bsection.Section('main-section', None, self._node, |
| 46 | self, True) |
Simon Glass | eca3221 | 2018-06-01 09:38:12 -0600 | [diff] [blame] | 47 | else: |
Simon Glass | 4ca8e04 | 2017-11-13 18:55:01 -0700 | [diff] [blame] | 48 | self._ReadNode() |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 49 | |
| 50 | def _ReadNode(self): |
| 51 | """Read properties from the image node""" |
| 52 | self._size = fdt_util.GetInt(self._node, 'size') |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 53 | filename = fdt_util.GetString(self._node, 'filename') |
| 54 | if filename: |
| 55 | self._filename = filename |
Simon Glass | 7c767ad | 2018-09-14 04:57:33 -0600 | [diff] [blame] | 56 | self._section = bsection.Section('main-section', None, self._node, self) |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 57 | |
Simon Glass | e61b6f6 | 2019-07-08 14:25:37 -0600 | [diff] [blame^] | 58 | def Raise(self, msg): |
| 59 | """Convenience function to raise an error referencing an image""" |
| 60 | raise ValueError("Image '%s': %s" % (self._node.path, msg)) |
| 61 | |
Simon Glass | 0c9d5b5 | 2018-09-14 04:57:22 -0600 | [diff] [blame] | 62 | def GetFdtSet(self): |
| 63 | """Get the set of device tree files used by this image""" |
| 64 | return self._section.GetFdtSet() |
| 65 | |
Simon Glass | ac6328c | 2018-09-14 04:57:28 -0600 | [diff] [blame] | 66 | def ExpandEntries(self): |
| 67 | """Expand out any entries which have calculated sub-entries |
| 68 | |
| 69 | Some entries are expanded out at runtime, e.g. 'files', which produces |
| 70 | a section containing a list of files. Process these entries so that |
| 71 | this information is added to the device tree. |
| 72 | """ |
| 73 | self._section.ExpandEntries() |
| 74 | |
Simon Glass | e22f8fa | 2018-07-06 10:27:41 -0600 | [diff] [blame] | 75 | def AddMissingProperties(self): |
| 76 | """Add properties that are not present in the device tree |
| 77 | |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 78 | When binman has completed packing the entries the offset and size of |
Simon Glass | e22f8fa | 2018-07-06 10:27:41 -0600 | [diff] [blame] | 79 | each entry are known. But before this the device tree may not specify |
| 80 | these. Add any missing properties, with a dummy value, so that the |
| 81 | size of the entry is correct. That way we can insert the correct values |
| 82 | later. |
| 83 | """ |
| 84 | self._section.AddMissingProperties() |
| 85 | |
Simon Glass | 9230773 | 2018-07-06 10:27:40 -0600 | [diff] [blame] | 86 | def ProcessFdt(self, fdt): |
Simon Glass | e219aa4 | 2018-09-14 04:57:24 -0600 | [diff] [blame] | 87 | """Allow entries to adjust the device tree |
| 88 | |
| 89 | Some entries need to adjust the device tree for their purposes. This |
| 90 | may involve adding or deleting properties. |
| 91 | """ |
Simon Glass | 9230773 | 2018-07-06 10:27:40 -0600 | [diff] [blame] | 92 | return self._section.ProcessFdt(fdt) |
| 93 | |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 94 | def GetEntryContents(self): |
Simon Glass | eca3221 | 2018-06-01 09:38:12 -0600 | [diff] [blame] | 95 | """Call ObtainContents() for the section |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 96 | """ |
Simon Glass | eca3221 | 2018-06-01 09:38:12 -0600 | [diff] [blame] | 97 | self._section.GetEntryContents() |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 98 | |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 99 | def GetEntryOffsets(self): |
| 100 | """Handle entries that want to set the offset/size of other entries |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 101 | |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 102 | This calls each entry's GetOffsets() method. If it returns a list |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 103 | of entries to update, it updates them. |
| 104 | """ |
Simon Glass | e8561af | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 105 | self._section.GetEntryOffsets() |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 106 | |
Simon Glass | e61b6f6 | 2019-07-08 14:25:37 -0600 | [diff] [blame^] | 107 | def ResetForPack(self): |
| 108 | """Reset offset/size fields so that packing can be done again""" |
| 109 | self._section.ResetForPack() |
| 110 | |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 111 | def PackEntries(self): |
| 112 | """Pack all entries into the image""" |
Simon Glass | eca3221 | 2018-06-01 09:38:12 -0600 | [diff] [blame] | 113 | self._section.PackEntries() |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 114 | |
Simon Glass | eca3221 | 2018-06-01 09:38:12 -0600 | [diff] [blame] | 115 | def CheckSize(self): |
| 116 | """Check that the image contents does not exceed its size, etc.""" |
| 117 | self._size = self._section.CheckSize() |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 118 | |
| 119 | def CheckEntries(self): |
| 120 | """Check that entries do not overlap or extend outside the image""" |
Simon Glass | eca3221 | 2018-06-01 09:38:12 -0600 | [diff] [blame] | 121 | self._section.CheckEntries() |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 122 | |
Simon Glass | e22f8fa | 2018-07-06 10:27:41 -0600 | [diff] [blame] | 123 | def SetCalculatedProperties(self): |
| 124 | self._section.SetCalculatedProperties() |
| 125 | |
Simon Glass | 9dcc861 | 2018-08-01 15:22:42 -0600 | [diff] [blame] | 126 | def SetImagePos(self): |
| 127 | self._section.SetImagePos(0) |
| 128 | |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 129 | def ProcessEntryContents(self): |
| 130 | """Call the ProcessContents() method for each entry |
| 131 | |
| 132 | This is intended to adjust the contents as needed by the entry type. |
Simon Glass | ec84985 | 2019-07-08 14:25:35 -0600 | [diff] [blame] | 133 | |
| 134 | Returns: |
| 135 | True if the new data size is OK, False if expansion is needed |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 136 | """ |
Simon Glass | ec84985 | 2019-07-08 14:25:35 -0600 | [diff] [blame] | 137 | return self._section.ProcessEntryContents() |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 138 | |
Simon Glass | 4ca8e04 | 2017-11-13 18:55:01 -0700 | [diff] [blame] | 139 | def WriteSymbols(self): |
| 140 | """Write symbol values into binary files for access at run time""" |
Simon Glass | eca3221 | 2018-06-01 09:38:12 -0600 | [diff] [blame] | 141 | self._section.WriteSymbols() |
Simon Glass | 4ca8e04 | 2017-11-13 18:55:01 -0700 | [diff] [blame] | 142 | |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 143 | def BuildImage(self): |
| 144 | """Write the image to a file""" |
| 145 | fname = tools.GetOutputFilename(self._filename) |
| 146 | with open(fname, 'wb') as fd: |
Simon Glass | eca3221 | 2018-06-01 09:38:12 -0600 | [diff] [blame] | 147 | self._section.BuildSection(fd, 0) |
Simon Glass | 2574ef6 | 2016-11-25 20:15:51 -0700 | [diff] [blame] | 148 | |
Simon Glass | eca3221 | 2018-06-01 09:38:12 -0600 | [diff] [blame] | 149 | def GetEntries(self): |
| 150 | return self._section.GetEntries() |
Simon Glass | 3073266 | 2018-06-01 09:38:20 -0600 | [diff] [blame] | 151 | |
| 152 | def WriteMap(self): |
Simon Glass | cd817d5 | 2018-09-14 04:57:36 -0600 | [diff] [blame] | 153 | """Write a map of the image to a .map file |
| 154 | |
| 155 | Returns: |
| 156 | Filename of map file written |
| 157 | """ |
Simon Glass | 3073266 | 2018-06-01 09:38:20 -0600 | [diff] [blame] | 158 | filename = '%s.map' % self._name |
| 159 | fname = tools.GetOutputFilename(filename) |
| 160 | with open(fname, 'w') as fd: |
Simon Glass | 7eca792 | 2018-07-17 13:25:49 -0600 | [diff] [blame] | 161 | print('%8s %8s %8s %s' % ('ImagePos', 'Offset', 'Size', 'Name'), |
| 162 | file=fd) |
Simon Glass | 3073266 | 2018-06-01 09:38:20 -0600 | [diff] [blame] | 163 | self._section.WriteMap(fd, 0) |
Simon Glass | cd817d5 | 2018-09-14 04:57:36 -0600 | [diff] [blame] | 164 | return fname |