blob: 481f0dd21a1fdc8927f508cde84596843748e673 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Simon Glass4f443042016-11-25 20:15:52 -07002# Copyright (c) 2016 Google, Inc
3# Written by Simon Glass <sjg@chromium.org>
4#
Simon Glass4f443042016-11-25 20:15:52 -07005# To run a single test, change to this directory, and:
6#
7# python -m unittest func_test.TestFunctional.testHelp
8
Simon Glassd5164a72019-07-08 13:18:49 -06009from __future__ import print_function
10
Simon Glasse0e5df92018-09-14 04:57:31 -060011import hashlib
Simon Glass4f443042016-11-25 20:15:52 -070012from optparse import OptionParser
13import os
14import shutil
15import struct
16import sys
17import tempfile
18import unittest
19
20import binman
Simon Glassac62fba2019-07-08 13:18:53 -060021import cbfs_util
Simon Glass4f443042016-11-25 20:15:52 -070022import cmdline
23import command
24import control
Simon Glass19790632017-11-13 18:55:01 -070025import elf
Simon Glass53e22bf2019-08-24 07:22:53 -060026import elf_test
Simon Glass99ed4a22017-05-27 07:38:30 -060027import fdt
Simon Glasse1925fa2019-07-08 14:25:44 -060028from etype import fdtmap
Simon Glass2d260032019-07-08 14:25:45 -060029from etype import image_header
Simon Glass4f443042016-11-25 20:15:52 -070030import fdt_util
Simon Glass11e36cc2018-07-17 13:25:38 -060031import fmap_util
Simon Glassfd8d1f72018-07-17 13:25:36 -060032import test_util
Simon Glassc5ac1382019-07-08 13:18:54 -060033import gzip
Simon Glassffded752019-07-08 14:25:46 -060034from image import Image
Simon Glassc55a50f2018-09-14 04:57:19 -060035import state
Simon Glass4f443042016-11-25 20:15:52 -070036import tools
37import tout
38
39# Contents of test files, corresponding to different entry types
Simon Glassc6c10e72019-05-17 22:00:46 -060040U_BOOT_DATA = b'1234'
41U_BOOT_IMG_DATA = b'img'
Simon Glasseb0086f2019-08-24 07:23:04 -060042U_BOOT_SPL_DATA = b'56780123456789abcdefghi'
43U_BOOT_TPL_DATA = b'tpl9876543210fedcbazyw'
Simon Glassc6c10e72019-05-17 22:00:46 -060044BLOB_DATA = b'89'
45ME_DATA = b'0abcd'
46VGA_DATA = b'vga'
47U_BOOT_DTB_DATA = b'udtb'
48U_BOOT_SPL_DTB_DATA = b'spldtb'
49U_BOOT_TPL_DTB_DATA = b'tpldtb'
50X86_START16_DATA = b'start16'
51X86_START16_SPL_DATA = b'start16spl'
52X86_START16_TPL_DATA = b'start16tpl'
Simon Glass2250ee62019-08-24 07:22:48 -060053X86_RESET16_DATA = b'reset16'
54X86_RESET16_SPL_DATA = b'reset16spl'
55X86_RESET16_TPL_DATA = b'reset16tpl'
Simon Glassc6c10e72019-05-17 22:00:46 -060056PPC_MPC85XX_BR_DATA = b'ppcmpc85xxbr'
57U_BOOT_NODTB_DATA = b'nodtb with microcode pointer somewhere in here'
58U_BOOT_SPL_NODTB_DATA = b'splnodtb with microcode pointer somewhere in here'
59U_BOOT_TPL_NODTB_DATA = b'tplnodtb with microcode pointer somewhere in here'
60FSP_DATA = b'fsp'
61CMC_DATA = b'cmc'
62VBT_DATA = b'vbt'
63MRC_DATA = b'mrc'
Simon Glassbb748372018-07-17 13:25:33 -060064TEXT_DATA = 'text'
65TEXT_DATA2 = 'text2'
66TEXT_DATA3 = 'text3'
Simon Glassc6c10e72019-05-17 22:00:46 -060067CROS_EC_RW_DATA = b'ecrw'
68GBB_DATA = b'gbbd'
69BMPBLK_DATA = b'bmp'
70VBLOCK_DATA = b'vblk'
71FILES_DATA = (b"sorry I'm late\nOh, don't bother apologising, I'm " +
72 b"sorry you're alive\n")
Simon Glassff5c7e32019-07-08 13:18:42 -060073COMPRESS_DATA = b'compress xxxxxxxxxxxxxxxxxxxxxx data'
Simon Glassc6c10e72019-05-17 22:00:46 -060074REFCODE_DATA = b'refcode'
Simon Glassea0fff92019-08-24 07:23:07 -060075FSP_M_DATA = b'fsp_m'
Simon Glassec127af2018-07-17 13:25:39 -060076
Simon Glass6ccbfcd2019-07-20 12:23:47 -060077# The expected size for the device tree in some tests
Simon Glassf667e452019-07-08 14:25:50 -060078EXTRACT_DTB_SIZE = 0x3c9
79
Simon Glass6ccbfcd2019-07-20 12:23:47 -060080# Properties expected to be in the device tree when update_dtb is used
81BASE_DTB_PROPS = ['offset', 'size', 'image-pos']
82
Simon Glass12bb1a92019-07-20 12:23:51 -060083# Extra properties expected to be in the device tree when allow-repack is used
84REPACK_DTB_PROPS = ['orig-offset', 'orig-size']
85
Simon Glass4f443042016-11-25 20:15:52 -070086
87class TestFunctional(unittest.TestCase):
88 """Functional tests for binman
89
90 Most of these use a sample .dts file to build an image and then check
91 that it looks correct. The sample files are in the test/ subdirectory
92 and are numbered.
93
94 For each entry type a very small test file is created using fixed
95 string contents. This makes it easy to test that things look right, and
96 debug problems.
97
98 In some cases a 'real' file must be used - these are also supplied in
99 the test/ diurectory.
100 """
101 @classmethod
Simon Glassb986b3b2019-08-24 07:22:43 -0600102 def setUpClass(cls):
Simon Glass4d5994f2017-11-12 21:52:20 -0700103 global entry
104 import entry
105
Simon Glass4f443042016-11-25 20:15:52 -0700106 # Handle the case where argv[0] is 'python'
Simon Glassb986b3b2019-08-24 07:22:43 -0600107 cls._binman_dir = os.path.dirname(os.path.realpath(sys.argv[0]))
108 cls._binman_pathname = os.path.join(cls._binman_dir, 'binman')
Simon Glass4f443042016-11-25 20:15:52 -0700109
110 # Create a temporary directory for input files
Simon Glassb986b3b2019-08-24 07:22:43 -0600111 cls._indir = tempfile.mkdtemp(prefix='binmant.')
Simon Glass4f443042016-11-25 20:15:52 -0700112
113 # Create some test files
114 TestFunctional._MakeInputFile('u-boot.bin', U_BOOT_DATA)
115 TestFunctional._MakeInputFile('u-boot.img', U_BOOT_IMG_DATA)
116 TestFunctional._MakeInputFile('spl/u-boot-spl.bin', U_BOOT_SPL_DATA)
Simon Glassb8ef5b62018-07-17 13:25:48 -0600117 TestFunctional._MakeInputFile('tpl/u-boot-tpl.bin', U_BOOT_TPL_DATA)
Simon Glass4f443042016-11-25 20:15:52 -0700118 TestFunctional._MakeInputFile('blobfile', BLOB_DATA)
Simon Glasse0ff8552016-11-25 20:15:53 -0700119 TestFunctional._MakeInputFile('me.bin', ME_DATA)
120 TestFunctional._MakeInputFile('vga.bin', VGA_DATA)
Simon Glassb986b3b2019-08-24 07:22:43 -0600121 cls._ResetDtbs()
Simon Glass2250ee62019-08-24 07:22:48 -0600122
Jagdish Gediya9d368f32018-09-03 21:35:08 +0530123 TestFunctional._MakeInputFile('u-boot-br.bin', PPC_MPC85XX_BR_DATA)
Simon Glass2250ee62019-08-24 07:22:48 -0600124
Simon Glass5e239182019-08-24 07:22:49 -0600125 TestFunctional._MakeInputFile('u-boot-x86-start16.bin', X86_START16_DATA)
126 TestFunctional._MakeInputFile('spl/u-boot-x86-start16-spl.bin',
Simon Glass87722132017-11-12 21:52:26 -0700127 X86_START16_SPL_DATA)
Simon Glass5e239182019-08-24 07:22:49 -0600128 TestFunctional._MakeInputFile('tpl/u-boot-x86-start16-tpl.bin',
Simon Glass35b384c2018-09-14 04:57:10 -0600129 X86_START16_TPL_DATA)
Simon Glass2250ee62019-08-24 07:22:48 -0600130
131 TestFunctional._MakeInputFile('u-boot-x86-reset16.bin',
132 X86_RESET16_DATA)
133 TestFunctional._MakeInputFile('spl/u-boot-x86-reset16-spl.bin',
134 X86_RESET16_SPL_DATA)
135 TestFunctional._MakeInputFile('tpl/u-boot-x86-reset16-tpl.bin',
136 X86_RESET16_TPL_DATA)
137
Simon Glass4f443042016-11-25 20:15:52 -0700138 TestFunctional._MakeInputFile('u-boot-nodtb.bin', U_BOOT_NODTB_DATA)
Simon Glass6b187df2017-11-12 21:52:27 -0700139 TestFunctional._MakeInputFile('spl/u-boot-spl-nodtb.bin',
140 U_BOOT_SPL_NODTB_DATA)
Simon Glassf0253632018-09-14 04:57:32 -0600141 TestFunctional._MakeInputFile('tpl/u-boot-tpl-nodtb.bin',
142 U_BOOT_TPL_NODTB_DATA)
Simon Glassda229092016-11-25 20:15:56 -0700143 TestFunctional._MakeInputFile('fsp.bin', FSP_DATA)
144 TestFunctional._MakeInputFile('cmc.bin', CMC_DATA)
Bin Meng59ea8c22017-08-15 22:41:54 -0700145 TestFunctional._MakeInputFile('vbt.bin', VBT_DATA)
Simon Glassca4f4ff2017-11-12 21:52:28 -0700146 TestFunctional._MakeInputFile('mrc.bin', MRC_DATA)
Simon Glassec127af2018-07-17 13:25:39 -0600147 TestFunctional._MakeInputFile('ecrw.bin', CROS_EC_RW_DATA)
Simon Glass0ef87aa2018-07-17 13:25:44 -0600148 TestFunctional._MakeInputDir('devkeys')
149 TestFunctional._MakeInputFile('bmpblk.bin', BMPBLK_DATA)
Simon Glass3ae192c2018-10-01 12:22:31 -0600150 TestFunctional._MakeInputFile('refcode.bin', REFCODE_DATA)
Simon Glassea0fff92019-08-24 07:23:07 -0600151 TestFunctional._MakeInputFile('fsp_m.bin', FSP_M_DATA)
Simon Glass4f443042016-11-25 20:15:52 -0700152
Simon Glass53e22bf2019-08-24 07:22:53 -0600153 cls._elf_testdir = os.path.join(cls._indir, 'elftest')
154 elf_test.BuildElfTestFiles(cls._elf_testdir)
155
Simon Glasse0ff8552016-11-25 20:15:53 -0700156 # ELF file with a '_dt_ucode_base_size' symbol
Simon Glassf514d8f2019-08-24 07:22:54 -0600157 TestFunctional._MakeInputFile('u-boot',
158 tools.ReadFile(cls.ElfTestFile('u_boot_ucode_ptr')))
Simon Glasse0ff8552016-11-25 20:15:53 -0700159
160 # Intel flash descriptor file
Simon Glassb986b3b2019-08-24 07:22:43 -0600161 with open(cls.TestFile('descriptor.bin'), 'rb') as fd:
Simon Glasse0ff8552016-11-25 20:15:53 -0700162 TestFunctional._MakeInputFile('descriptor.bin', fd.read())
163
Simon Glassb986b3b2019-08-24 07:22:43 -0600164 shutil.copytree(cls.TestFile('files'),
165 os.path.join(cls._indir, 'files'))
Simon Glass0a98b282018-09-14 04:57:28 -0600166
Simon Glass83d73c22018-09-14 04:57:26 -0600167 TestFunctional._MakeInputFile('compress', COMPRESS_DATA)
168
Simon Glassac62fba2019-07-08 13:18:53 -0600169 # Travis-CI may have an old lz4
Simon Glassb986b3b2019-08-24 07:22:43 -0600170 cls.have_lz4 = True
Simon Glassac62fba2019-07-08 13:18:53 -0600171 try:
172 tools.Run('lz4', '--no-frame-crc', '-c',
Simon Glassb986b3b2019-08-24 07:22:43 -0600173 os.path.join(cls._indir, 'u-boot.bin'))
Simon Glassac62fba2019-07-08 13:18:53 -0600174 except:
Simon Glassb986b3b2019-08-24 07:22:43 -0600175 cls.have_lz4 = False
Simon Glassac62fba2019-07-08 13:18:53 -0600176
Simon Glass4f443042016-11-25 20:15:52 -0700177 @classmethod
Simon Glassb986b3b2019-08-24 07:22:43 -0600178 def tearDownClass(cls):
Simon Glass4f443042016-11-25 20:15:52 -0700179 """Remove the temporary input directory and its contents"""
Simon Glassb986b3b2019-08-24 07:22:43 -0600180 if cls.preserve_indir:
181 print('Preserving input dir: %s' % cls._indir)
Simon Glassd5164a72019-07-08 13:18:49 -0600182 else:
Simon Glassb986b3b2019-08-24 07:22:43 -0600183 if cls._indir:
184 shutil.rmtree(cls._indir)
185 cls._indir = None
Simon Glass4f443042016-11-25 20:15:52 -0700186
Simon Glassd5164a72019-07-08 13:18:49 -0600187 @classmethod
Simon Glass8acce602019-07-08 13:18:50 -0600188 def setup_test_args(cls, preserve_indir=False, preserve_outdirs=False,
Simon Glass53cd5d92019-07-08 14:25:29 -0600189 toolpath=None, verbosity=None):
Simon Glassd5164a72019-07-08 13:18:49 -0600190 """Accept arguments controlling test execution
191
192 Args:
193 preserve_indir: Preserve the shared input directory used by all
194 tests in this class.
195 preserve_outdir: Preserve the output directories used by tests. Each
196 test has its own, so this is normally only useful when running a
197 single test.
Simon Glass8acce602019-07-08 13:18:50 -0600198 toolpath: ist of paths to use for tools
Simon Glassd5164a72019-07-08 13:18:49 -0600199 """
200 cls.preserve_indir = preserve_indir
201 cls.preserve_outdirs = preserve_outdirs
Simon Glass8acce602019-07-08 13:18:50 -0600202 cls.toolpath = toolpath
Simon Glass53cd5d92019-07-08 14:25:29 -0600203 cls.verbosity = verbosity
Simon Glassd5164a72019-07-08 13:18:49 -0600204
Simon Glassac62fba2019-07-08 13:18:53 -0600205 def _CheckLz4(self):
206 if not self.have_lz4:
207 self.skipTest('lz4 --no-frame-crc not available')
208
Simon Glassbf574f12019-07-20 12:24:09 -0600209 def _CleanupOutputDir(self):
210 """Remove the temporary output directory"""
211 if self.preserve_outdirs:
212 print('Preserving output dir: %s' % tools.outdir)
213 else:
214 tools._FinaliseForTest()
215
Simon Glass4f443042016-11-25 20:15:52 -0700216 def setUp(self):
217 # Enable this to turn on debugging output
218 # tout.Init(tout.DEBUG)
219 command.test_result = None
220
221 def tearDown(self):
222 """Remove the temporary output directory"""
Simon Glassbf574f12019-07-20 12:24:09 -0600223 self._CleanupOutputDir()
Simon Glass4f443042016-11-25 20:15:52 -0700224
Simon Glassf86a7362019-07-20 12:24:10 -0600225 def _SetupImageInTmpdir(self):
226 """Set up the output image in a new temporary directory
227
228 This is used when an image has been generated in the output directory,
229 but we want to run binman again. This will create a new output
230 directory and fail to delete the original one.
231
232 This creates a new temporary directory, copies the image to it (with a
233 new name) and removes the old output directory.
234
235 Returns:
236 Tuple:
237 Temporary directory to use
238 New image filename
239 """
240 image_fname = tools.GetOutputFilename('image.bin')
241 tmpdir = tempfile.mkdtemp(prefix='binman.')
242 updated_fname = os.path.join(tmpdir, 'image-updated.bin')
243 tools.WriteFile(updated_fname, tools.ReadFile(image_fname))
244 self._CleanupOutputDir()
245 return tmpdir, updated_fname
246
Simon Glassb8ef5b62018-07-17 13:25:48 -0600247 @classmethod
Simon Glassb986b3b2019-08-24 07:22:43 -0600248 def _ResetDtbs(cls):
Simon Glassb8ef5b62018-07-17 13:25:48 -0600249 TestFunctional._MakeInputFile('u-boot.dtb', U_BOOT_DTB_DATA)
250 TestFunctional._MakeInputFile('spl/u-boot-spl.dtb', U_BOOT_SPL_DTB_DATA)
251 TestFunctional._MakeInputFile('tpl/u-boot-tpl.dtb', U_BOOT_TPL_DTB_DATA)
252
Simon Glass4f443042016-11-25 20:15:52 -0700253 def _RunBinman(self, *args, **kwargs):
254 """Run binman using the command line
255
256 Args:
257 Arguments to pass, as a list of strings
258 kwargs: Arguments to pass to Command.RunPipe()
259 """
260 result = command.RunPipe([[self._binman_pathname] + list(args)],
261 capture=True, capture_stderr=True, raise_on_error=False)
262 if result.return_code and kwargs.get('raise_on_error', True):
263 raise Exception("Error running '%s': %s" % (' '.join(args),
264 result.stdout + result.stderr))
265 return result
266
Simon Glass53cd5d92019-07-08 14:25:29 -0600267 def _DoBinman(self, *argv):
Simon Glass4f443042016-11-25 20:15:52 -0700268 """Run binman using directly (in the same process)
269
270 Args:
271 Arguments to pass, as a list of strings
272 Returns:
273 Return value (0 for success)
274 """
Simon Glass53cd5d92019-07-08 14:25:29 -0600275 argv = list(argv)
276 args = cmdline.ParseArgs(argv)
277 args.pager = 'binman-invalid-pager'
278 args.build_dir = self._indir
Simon Glass4f443042016-11-25 20:15:52 -0700279
280 # For testing, you can force an increase in verbosity here
Simon Glass53cd5d92019-07-08 14:25:29 -0600281 # args.verbosity = tout.DEBUG
282 return control.Binman(args)
Simon Glass4f443042016-11-25 20:15:52 -0700283
Simon Glass53af22a2018-07-17 13:25:32 -0600284 def _DoTestFile(self, fname, debug=False, map=False, update_dtb=False,
Simon Glasseb833d82019-04-25 21:58:34 -0600285 entry_args=None, images=None, use_real_dtb=False,
286 verbosity=None):
Simon Glass4f443042016-11-25 20:15:52 -0700287 """Run binman with a given test file
288
289 Args:
Simon Glass741f2d62018-10-01 12:22:30 -0600290 fname: Device-tree source filename to use (e.g. 005_simple.dts)
Simon Glass7ae5f312018-06-01 09:38:19 -0600291 debug: True to enable debugging output
Simon Glass3b0c3822018-06-01 09:38:20 -0600292 map: True to output map files for the images
Simon Glass3ab95982018-08-01 15:22:37 -0600293 update_dtb: Update the offset and size of each entry in the device
Simon Glass16b8d6b2018-07-06 10:27:42 -0600294 tree before packing it into the image
Simon Glass0bfa7b02018-09-14 04:57:12 -0600295 entry_args: Dict of entry args to supply to binman
296 key: arg name
297 value: value of that arg
298 images: List of image names to build
Simon Glass4f443042016-11-25 20:15:52 -0700299 """
Simon Glass53cd5d92019-07-08 14:25:29 -0600300 args = []
Simon Glass7fe91732017-11-13 18:55:00 -0700301 if debug:
302 args.append('-D')
Simon Glass53cd5d92019-07-08 14:25:29 -0600303 if verbosity is not None:
304 args.append('-v%d' % verbosity)
305 elif self.verbosity:
306 args.append('-v%d' % self.verbosity)
307 if self.toolpath:
308 for path in self.toolpath:
309 args += ['--toolpath', path]
310 args += ['build', '-p', '-I', self._indir, '-d', self.TestFile(fname)]
Simon Glass3b0c3822018-06-01 09:38:20 -0600311 if map:
312 args.append('-m')
Simon Glass16b8d6b2018-07-06 10:27:42 -0600313 if update_dtb:
Simon Glass2569e102019-07-08 13:18:47 -0600314 args.append('-u')
Simon Glass93d17412018-09-14 04:57:23 -0600315 if not use_real_dtb:
316 args.append('--fake-dtb')
Simon Glass53af22a2018-07-17 13:25:32 -0600317 if entry_args:
Simon Glass50979152019-05-14 15:53:41 -0600318 for arg, value in entry_args.items():
Simon Glass53af22a2018-07-17 13:25:32 -0600319 args.append('-a%s=%s' % (arg, value))
Simon Glass0bfa7b02018-09-14 04:57:12 -0600320 if images:
321 for image in images:
322 args += ['-i', image]
Simon Glass7fe91732017-11-13 18:55:00 -0700323 return self._DoBinman(*args)
Simon Glass4f443042016-11-25 20:15:52 -0700324
325 def _SetupDtb(self, fname, outfile='u-boot.dtb'):
Simon Glasse0ff8552016-11-25 20:15:53 -0700326 """Set up a new test device-tree file
327
328 The given file is compiled and set up as the device tree to be used
329 for ths test.
330
331 Args:
332 fname: Filename of .dts file to read
Simon Glass7ae5f312018-06-01 09:38:19 -0600333 outfile: Output filename for compiled device-tree binary
Simon Glasse0ff8552016-11-25 20:15:53 -0700334
335 Returns:
Simon Glass7ae5f312018-06-01 09:38:19 -0600336 Contents of device-tree binary
Simon Glasse0ff8552016-11-25 20:15:53 -0700337 """
Simon Glassa004f292019-07-20 12:23:49 -0600338 tmpdir = tempfile.mkdtemp(prefix='binmant.')
339 dtb = fdt_util.EnsureCompiled(self.TestFile(fname), tmpdir)
Simon Glass1d0ebf72019-05-14 15:53:42 -0600340 with open(dtb, 'rb') as fd:
Simon Glass4f443042016-11-25 20:15:52 -0700341 data = fd.read()
342 TestFunctional._MakeInputFile(outfile, data)
Simon Glassa004f292019-07-20 12:23:49 -0600343 shutil.rmtree(tmpdir)
Simon Glasse0e62752018-10-01 21:12:41 -0600344 return data
Simon Glass4f443042016-11-25 20:15:52 -0700345
Simon Glass6ed45ba2018-09-14 04:57:24 -0600346 def _GetDtbContentsForSplTpl(self, dtb_data, name):
347 """Create a version of the main DTB for SPL or SPL
348
349 For testing we don't actually have different versions of the DTB. With
350 U-Boot we normally run fdtgrep to remove unwanted nodes, but for tests
351 we don't normally have any unwanted nodes.
352
353 We still want the DTBs for SPL and TPL to be different though, since
354 otherwise it is confusing to know which one we are looking at. So add
355 an 'spl' or 'tpl' property to the top-level node.
356 """
357 dtb = fdt.Fdt.FromData(dtb_data)
358 dtb.Scan()
359 dtb.GetNode('/binman').AddZeroProp(name)
360 dtb.Sync(auto_resize=True)
361 dtb.Pack()
362 return dtb.GetContents()
363
Simon Glass16b8d6b2018-07-06 10:27:42 -0600364 def _DoReadFileDtb(self, fname, use_real_dtb=False, map=False,
Simon Glass6ed45ba2018-09-14 04:57:24 -0600365 update_dtb=False, entry_args=None, reset_dtbs=True):
Simon Glass4f443042016-11-25 20:15:52 -0700366 """Run binman and return the resulting image
367
368 This runs binman with a given test file and then reads the resulting
369 output file. It is a shortcut function since most tests need to do
370 these steps.
371
372 Raises an assertion failure if binman returns a non-zero exit code.
373
374 Args:
Simon Glass741f2d62018-10-01 12:22:30 -0600375 fname: Device-tree source filename to use (e.g. 005_simple.dts)
Simon Glass4f443042016-11-25 20:15:52 -0700376 use_real_dtb: True to use the test file as the contents of
377 the u-boot-dtb entry. Normally this is not needed and the
378 test contents (the U_BOOT_DTB_DATA string) can be used.
379 But in some test we need the real contents.
Simon Glass3b0c3822018-06-01 09:38:20 -0600380 map: True to output map files for the images
Simon Glass3ab95982018-08-01 15:22:37 -0600381 update_dtb: Update the offset and size of each entry in the device
Simon Glass16b8d6b2018-07-06 10:27:42 -0600382 tree before packing it into the image
Simon Glasse0ff8552016-11-25 20:15:53 -0700383
384 Returns:
385 Tuple:
386 Resulting image contents
387 Device tree contents
Simon Glass3b0c3822018-06-01 09:38:20 -0600388 Map data showing contents of image (or None if none)
Simon Glassea6922e2018-07-17 13:25:27 -0600389 Output device tree binary filename ('u-boot.dtb' path)
Simon Glass4f443042016-11-25 20:15:52 -0700390 """
Simon Glasse0ff8552016-11-25 20:15:53 -0700391 dtb_data = None
Simon Glass4f443042016-11-25 20:15:52 -0700392 # Use the compiled test file as the u-boot-dtb input
393 if use_real_dtb:
Simon Glasse0ff8552016-11-25 20:15:53 -0700394 dtb_data = self._SetupDtb(fname)
Simon Glass6ed45ba2018-09-14 04:57:24 -0600395
396 # For testing purposes, make a copy of the DT for SPL and TPL. Add
397 # a node indicating which it is, so aid verification.
398 for name in ['spl', 'tpl']:
399 dtb_fname = '%s/u-boot-%s.dtb' % (name, name)
400 outfile = os.path.join(self._indir, dtb_fname)
401 TestFunctional._MakeInputFile(dtb_fname,
402 self._GetDtbContentsForSplTpl(dtb_data, name))
Simon Glass4f443042016-11-25 20:15:52 -0700403
404 try:
Simon Glass53af22a2018-07-17 13:25:32 -0600405 retcode = self._DoTestFile(fname, map=map, update_dtb=update_dtb,
Simon Glass6ed45ba2018-09-14 04:57:24 -0600406 entry_args=entry_args, use_real_dtb=use_real_dtb)
Simon Glass4f443042016-11-25 20:15:52 -0700407 self.assertEqual(0, retcode)
Simon Glass6ed45ba2018-09-14 04:57:24 -0600408 out_dtb_fname = tools.GetOutputFilename('u-boot.dtb.out')
Simon Glass4f443042016-11-25 20:15:52 -0700409
410 # Find the (only) image, read it and return its contents
411 image = control.images['image']
Simon Glass16b8d6b2018-07-06 10:27:42 -0600412 image_fname = tools.GetOutputFilename('image.bin')
413 self.assertTrue(os.path.exists(image_fname))
Simon Glass3b0c3822018-06-01 09:38:20 -0600414 if map:
415 map_fname = tools.GetOutputFilename('image.map')
416 with open(map_fname) as fd:
417 map_data = fd.read()
418 else:
419 map_data = None
Simon Glass1d0ebf72019-05-14 15:53:42 -0600420 with open(image_fname, 'rb') as fd:
Simon Glass16b8d6b2018-07-06 10:27:42 -0600421 return fd.read(), dtb_data, map_data, out_dtb_fname
Simon Glass4f443042016-11-25 20:15:52 -0700422 finally:
423 # Put the test file back
Simon Glass6ed45ba2018-09-14 04:57:24 -0600424 if reset_dtbs and use_real_dtb:
Simon Glassb8ef5b62018-07-17 13:25:48 -0600425 self._ResetDtbs()
Simon Glass4f443042016-11-25 20:15:52 -0700426
Simon Glass3c081312019-07-08 14:25:26 -0600427 def _DoReadFileRealDtb(self, fname):
428 """Run binman with a real .dtb file and return the resulting data
429
430 Args:
431 fname: DT source filename to use (e.g. 082_fdt_update_all.dts)
432
433 Returns:
434 Resulting image contents
435 """
436 return self._DoReadFileDtb(fname, use_real_dtb=True, update_dtb=True)[0]
437
Simon Glasse0ff8552016-11-25 20:15:53 -0700438 def _DoReadFile(self, fname, use_real_dtb=False):
Simon Glass7ae5f312018-06-01 09:38:19 -0600439 """Helper function which discards the device-tree binary
440
441 Args:
Simon Glass741f2d62018-10-01 12:22:30 -0600442 fname: Device-tree source filename to use (e.g. 005_simple.dts)
Simon Glass7ae5f312018-06-01 09:38:19 -0600443 use_real_dtb: True to use the test file as the contents of
444 the u-boot-dtb entry. Normally this is not needed and the
445 test contents (the U_BOOT_DTB_DATA string) can be used.
446 But in some test we need the real contents.
Simon Glassea6922e2018-07-17 13:25:27 -0600447
448 Returns:
449 Resulting image contents
Simon Glass7ae5f312018-06-01 09:38:19 -0600450 """
Simon Glasse0ff8552016-11-25 20:15:53 -0700451 return self._DoReadFileDtb(fname, use_real_dtb)[0]
452
Simon Glass4f443042016-11-25 20:15:52 -0700453 @classmethod
Simon Glassb986b3b2019-08-24 07:22:43 -0600454 def _MakeInputFile(cls, fname, contents):
Simon Glass4f443042016-11-25 20:15:52 -0700455 """Create a new test input file, creating directories as needed
456
457 Args:
Simon Glass3ab95982018-08-01 15:22:37 -0600458 fname: Filename to create
Simon Glass4f443042016-11-25 20:15:52 -0700459 contents: File contents to write in to the file
460 Returns:
461 Full pathname of file created
462 """
Simon Glassb986b3b2019-08-24 07:22:43 -0600463 pathname = os.path.join(cls._indir, fname)
Simon Glass4f443042016-11-25 20:15:52 -0700464 dirname = os.path.dirname(pathname)
465 if dirname and not os.path.exists(dirname):
466 os.makedirs(dirname)
467 with open(pathname, 'wb') as fd:
468 fd.write(contents)
469 return pathname
470
471 @classmethod
Simon Glassb986b3b2019-08-24 07:22:43 -0600472 def _MakeInputDir(cls, dirname):
Simon Glass0ef87aa2018-07-17 13:25:44 -0600473 """Create a new test input directory, creating directories as needed
474
475 Args:
476 dirname: Directory name to create
477
478 Returns:
479 Full pathname of directory created
480 """
Simon Glassb986b3b2019-08-24 07:22:43 -0600481 pathname = os.path.join(cls._indir, dirname)
Simon Glass0ef87aa2018-07-17 13:25:44 -0600482 if not os.path.exists(pathname):
483 os.makedirs(pathname)
484 return pathname
485
486 @classmethod
Simon Glassb986b3b2019-08-24 07:22:43 -0600487 def _SetupSplElf(cls, src_fname='bss_data'):
Simon Glass11ae93e2018-10-01 21:12:47 -0600488 """Set up an ELF file with a '_dt_ucode_base_size' symbol
489
490 Args:
491 Filename of ELF file to use as SPL
492 """
Simon Glassc9a0b272019-08-24 07:22:59 -0600493 TestFunctional._MakeInputFile('spl/u-boot-spl',
494 tools.ReadFile(cls.ElfTestFile(src_fname)))
Simon Glass11ae93e2018-10-01 21:12:47 -0600495
496 @classmethod
Simon Glass2090f1e2019-08-24 07:23:00 -0600497 def _SetupTplElf(cls, src_fname='bss_data'):
498 """Set up an ELF file with a '_dt_ucode_base_size' symbol
499
500 Args:
501 Filename of ELF file to use as TPL
502 """
503 TestFunctional._MakeInputFile('tpl/u-boot-tpl',
504 tools.ReadFile(cls.ElfTestFile(src_fname)))
505
506 @classmethod
Simon Glassb986b3b2019-08-24 07:22:43 -0600507 def TestFile(cls, fname):
508 return os.path.join(cls._binman_dir, 'test', fname)
Simon Glass4f443042016-11-25 20:15:52 -0700509
Simon Glass53e22bf2019-08-24 07:22:53 -0600510 @classmethod
511 def ElfTestFile(cls, fname):
512 return os.path.join(cls._elf_testdir, fname)
513
Simon Glass4f443042016-11-25 20:15:52 -0700514 def AssertInList(self, grep_list, target):
515 """Assert that at least one of a list of things is in a target
516
517 Args:
518 grep_list: List of strings to check
519 target: Target string
520 """
521 for grep in grep_list:
522 if grep in target:
523 return
Simon Glass1fc62de2019-05-17 22:00:50 -0600524 self.fail("Error: '%s' not found in '%s'" % (grep_list, target))
Simon Glass4f443042016-11-25 20:15:52 -0700525
526 def CheckNoGaps(self, entries):
527 """Check that all entries fit together without gaps
528
529 Args:
530 entries: List of entries to check
531 """
Simon Glass3ab95982018-08-01 15:22:37 -0600532 offset = 0
Simon Glass4f443042016-11-25 20:15:52 -0700533 for entry in entries.values():
Simon Glass3ab95982018-08-01 15:22:37 -0600534 self.assertEqual(offset, entry.offset)
535 offset += entry.size
Simon Glass4f443042016-11-25 20:15:52 -0700536
Simon Glasse0ff8552016-11-25 20:15:53 -0700537 def GetFdtLen(self, dtb):
Simon Glass7ae5f312018-06-01 09:38:19 -0600538 """Get the totalsize field from a device-tree binary
Simon Glasse0ff8552016-11-25 20:15:53 -0700539
540 Args:
Simon Glass7ae5f312018-06-01 09:38:19 -0600541 dtb: Device-tree binary contents
Simon Glasse0ff8552016-11-25 20:15:53 -0700542
543 Returns:
Simon Glass7ae5f312018-06-01 09:38:19 -0600544 Total size of device-tree binary, from the header
Simon Glasse0ff8552016-11-25 20:15:53 -0700545 """
546 return struct.unpack('>L', dtb[4:8])[0]
547
Simon Glass086cec92019-07-08 14:25:27 -0600548 def _GetPropTree(self, dtb, prop_names, prefix='/binman/'):
Simon Glass16b8d6b2018-07-06 10:27:42 -0600549 def AddNode(node, path):
550 if node.name != '/':
551 path += '/' + node.name
Simon Glass086cec92019-07-08 14:25:27 -0600552 for prop in node.props.values():
553 if prop.name in prop_names:
554 prop_path = path + ':' + prop.name
555 tree[prop_path[len(prefix):]] = fdt_util.fdt32_to_cpu(
556 prop.value)
Simon Glass16b8d6b2018-07-06 10:27:42 -0600557 for subnode in node.subnodes:
Simon Glass16b8d6b2018-07-06 10:27:42 -0600558 AddNode(subnode, path)
559
560 tree = {}
Simon Glass16b8d6b2018-07-06 10:27:42 -0600561 AddNode(dtb.GetRoot(), '')
562 return tree
563
Simon Glass4f443042016-11-25 20:15:52 -0700564 def testRun(self):
565 """Test a basic run with valid args"""
566 result = self._RunBinman('-h')
567
568 def testFullHelp(self):
569 """Test that the full help is displayed with -H"""
570 result = self._RunBinman('-H')
571 help_file = os.path.join(self._binman_dir, 'README')
Tom Rini3759df02018-01-16 15:29:50 -0500572 # Remove possible extraneous strings
573 extra = '::::::::::::::\n' + help_file + '\n::::::::::::::\n'
574 gothelp = result.stdout.replace(extra, '')
575 self.assertEqual(len(gothelp), os.path.getsize(help_file))
Simon Glass4f443042016-11-25 20:15:52 -0700576 self.assertEqual(0, len(result.stderr))
577 self.assertEqual(0, result.return_code)
578
579 def testFullHelpInternal(self):
580 """Test that the full help is displayed with -H"""
581 try:
582 command.test_result = command.CommandResult()
583 result = self._DoBinman('-H')
584 help_file = os.path.join(self._binman_dir, 'README')
585 finally:
586 command.test_result = None
587
588 def testHelp(self):
589 """Test that the basic help is displayed with -h"""
590 result = self._RunBinman('-h')
591 self.assertTrue(len(result.stdout) > 200)
592 self.assertEqual(0, len(result.stderr))
593 self.assertEqual(0, result.return_code)
594
Simon Glass4f443042016-11-25 20:15:52 -0700595 def testBoard(self):
596 """Test that we can run it with a specific board"""
Simon Glass741f2d62018-10-01 12:22:30 -0600597 self._SetupDtb('005_simple.dts', 'sandbox/u-boot.dtb')
Simon Glass4f443042016-11-25 20:15:52 -0700598 TestFunctional._MakeInputFile('sandbox/u-boot.bin', U_BOOT_DATA)
Simon Glass53cd5d92019-07-08 14:25:29 -0600599 result = self._DoBinman('build', '-b', 'sandbox')
Simon Glass4f443042016-11-25 20:15:52 -0700600 self.assertEqual(0, result)
601
602 def testNeedBoard(self):
603 """Test that we get an error when no board ius supplied"""
604 with self.assertRaises(ValueError) as e:
Simon Glass53cd5d92019-07-08 14:25:29 -0600605 result = self._DoBinman('build')
Simon Glass4f443042016-11-25 20:15:52 -0700606 self.assertIn("Must provide a board to process (use -b <board>)",
607 str(e.exception))
608
609 def testMissingDt(self):
Simon Glass7ae5f312018-06-01 09:38:19 -0600610 """Test that an invalid device-tree file generates an error"""
Simon Glass4f443042016-11-25 20:15:52 -0700611 with self.assertRaises(Exception) as e:
Simon Glass53cd5d92019-07-08 14:25:29 -0600612 self._RunBinman('build', '-d', 'missing_file')
Simon Glass4f443042016-11-25 20:15:52 -0700613 # We get one error from libfdt, and a different one from fdtget.
614 self.AssertInList(["Couldn't open blob from 'missing_file'",
615 'No such file or directory'], str(e.exception))
616
617 def testBrokenDt(self):
Simon Glass7ae5f312018-06-01 09:38:19 -0600618 """Test that an invalid device-tree source file generates an error
Simon Glass4f443042016-11-25 20:15:52 -0700619
620 Since this is a source file it should be compiled and the error
621 will come from the device-tree compiler (dtc).
622 """
623 with self.assertRaises(Exception) as e:
Simon Glass53cd5d92019-07-08 14:25:29 -0600624 self._RunBinman('build', '-d', self.TestFile('001_invalid.dts'))
Simon Glass4f443042016-11-25 20:15:52 -0700625 self.assertIn("FATAL ERROR: Unable to parse input tree",
626 str(e.exception))
627
628 def testMissingNode(self):
629 """Test that a device tree without a 'binman' node generates an error"""
630 with self.assertRaises(Exception) as e:
Simon Glass53cd5d92019-07-08 14:25:29 -0600631 self._DoBinman('build', '-d', self.TestFile('002_missing_node.dts'))
Simon Glass4f443042016-11-25 20:15:52 -0700632 self.assertIn("does not have a 'binman' node", str(e.exception))
633
634 def testEmpty(self):
635 """Test that an empty binman node works OK (i.e. does nothing)"""
Simon Glass53cd5d92019-07-08 14:25:29 -0600636 result = self._RunBinman('build', '-d', self.TestFile('003_empty.dts'))
Simon Glass4f443042016-11-25 20:15:52 -0700637 self.assertEqual(0, len(result.stderr))
638 self.assertEqual(0, result.return_code)
639
640 def testInvalidEntry(self):
641 """Test that an invalid entry is flagged"""
642 with self.assertRaises(Exception) as e:
Simon Glass53cd5d92019-07-08 14:25:29 -0600643 result = self._RunBinman('build', '-d',
Simon Glass741f2d62018-10-01 12:22:30 -0600644 self.TestFile('004_invalid_entry.dts'))
Simon Glass4f443042016-11-25 20:15:52 -0700645 self.assertIn("Unknown entry type 'not-a-valid-type' in node "
646 "'/binman/not-a-valid-type'", str(e.exception))
647
648 def testSimple(self):
649 """Test a simple binman with a single file"""
Simon Glass741f2d62018-10-01 12:22:30 -0600650 data = self._DoReadFile('005_simple.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700651 self.assertEqual(U_BOOT_DATA, data)
652
Simon Glass7fe91732017-11-13 18:55:00 -0700653 def testSimpleDebug(self):
654 """Test a simple binman run with debugging enabled"""
Simon Glasse2705fa2019-07-08 14:25:53 -0600655 self._DoTestFile('005_simple.dts', debug=True)
Simon Glass7fe91732017-11-13 18:55:00 -0700656
Simon Glass4f443042016-11-25 20:15:52 -0700657 def testDual(self):
658 """Test that we can handle creating two images
659
660 This also tests image padding.
661 """
Simon Glass741f2d62018-10-01 12:22:30 -0600662 retcode = self._DoTestFile('006_dual_image.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700663 self.assertEqual(0, retcode)
664
665 image = control.images['image1']
Simon Glass8beb11e2019-07-08 14:25:47 -0600666 self.assertEqual(len(U_BOOT_DATA), image.size)
Simon Glass4f443042016-11-25 20:15:52 -0700667 fname = tools.GetOutputFilename('image1.bin')
668 self.assertTrue(os.path.exists(fname))
Simon Glass1d0ebf72019-05-14 15:53:42 -0600669 with open(fname, 'rb') as fd:
Simon Glass4f443042016-11-25 20:15:52 -0700670 data = fd.read()
671 self.assertEqual(U_BOOT_DATA, data)
672
673 image = control.images['image2']
Simon Glass8beb11e2019-07-08 14:25:47 -0600674 self.assertEqual(3 + len(U_BOOT_DATA) + 5, image.size)
Simon Glass4f443042016-11-25 20:15:52 -0700675 fname = tools.GetOutputFilename('image2.bin')
676 self.assertTrue(os.path.exists(fname))
Simon Glass1d0ebf72019-05-14 15:53:42 -0600677 with open(fname, 'rb') as fd:
Simon Glass4f443042016-11-25 20:15:52 -0700678 data = fd.read()
679 self.assertEqual(U_BOOT_DATA, data[3:7])
Simon Glasse6d85ff2019-05-14 15:53:47 -0600680 self.assertEqual(tools.GetBytes(0, 3), data[:3])
681 self.assertEqual(tools.GetBytes(0, 5), data[7:])
Simon Glass4f443042016-11-25 20:15:52 -0700682
683 def testBadAlign(self):
684 """Test that an invalid alignment value is detected"""
685 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600686 self._DoTestFile('007_bad_align.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700687 self.assertIn("Node '/binman/u-boot': Alignment 23 must be a power "
688 "of two", str(e.exception))
689
690 def testPackSimple(self):
691 """Test that packing works as expected"""
Simon Glass741f2d62018-10-01 12:22:30 -0600692 retcode = self._DoTestFile('008_pack.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700693 self.assertEqual(0, retcode)
694 self.assertIn('image', control.images)
695 image = control.images['image']
Simon Glass8f1da502018-06-01 09:38:12 -0600696 entries = image.GetEntries()
Simon Glass4f443042016-11-25 20:15:52 -0700697 self.assertEqual(5, len(entries))
698
699 # First u-boot
700 self.assertIn('u-boot', entries)
701 entry = entries['u-boot']
Simon Glass3ab95982018-08-01 15:22:37 -0600702 self.assertEqual(0, entry.offset)
Simon Glass4f443042016-11-25 20:15:52 -0700703 self.assertEqual(len(U_BOOT_DATA), entry.size)
704
705 # Second u-boot, aligned to 16-byte boundary
706 self.assertIn('u-boot-align', entries)
707 entry = entries['u-boot-align']
Simon Glass3ab95982018-08-01 15:22:37 -0600708 self.assertEqual(16, entry.offset)
Simon Glass4f443042016-11-25 20:15:52 -0700709 self.assertEqual(len(U_BOOT_DATA), entry.size)
710
711 # Third u-boot, size 23 bytes
712 self.assertIn('u-boot-size', entries)
713 entry = entries['u-boot-size']
Simon Glass3ab95982018-08-01 15:22:37 -0600714 self.assertEqual(20, entry.offset)
Simon Glass4f443042016-11-25 20:15:52 -0700715 self.assertEqual(len(U_BOOT_DATA), entry.contents_size)
716 self.assertEqual(23, entry.size)
717
718 # Fourth u-boot, placed immediate after the above
719 self.assertIn('u-boot-next', entries)
720 entry = entries['u-boot-next']
Simon Glass3ab95982018-08-01 15:22:37 -0600721 self.assertEqual(43, entry.offset)
Simon Glass4f443042016-11-25 20:15:52 -0700722 self.assertEqual(len(U_BOOT_DATA), entry.size)
723
Simon Glass3ab95982018-08-01 15:22:37 -0600724 # Fifth u-boot, placed at a fixed offset
Simon Glass4f443042016-11-25 20:15:52 -0700725 self.assertIn('u-boot-fixed', entries)
726 entry = entries['u-boot-fixed']
Simon Glass3ab95982018-08-01 15:22:37 -0600727 self.assertEqual(61, entry.offset)
Simon Glass4f443042016-11-25 20:15:52 -0700728 self.assertEqual(len(U_BOOT_DATA), entry.size)
729
Simon Glass8beb11e2019-07-08 14:25:47 -0600730 self.assertEqual(65, image.size)
Simon Glass4f443042016-11-25 20:15:52 -0700731
732 def testPackExtra(self):
733 """Test that extra packing feature works as expected"""
Simon Glass741f2d62018-10-01 12:22:30 -0600734 retcode = self._DoTestFile('009_pack_extra.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700735
736 self.assertEqual(0, retcode)
737 self.assertIn('image', control.images)
738 image = control.images['image']
Simon Glass8f1da502018-06-01 09:38:12 -0600739 entries = image.GetEntries()
Simon Glass4f443042016-11-25 20:15:52 -0700740 self.assertEqual(5, len(entries))
741
742 # First u-boot with padding before and after
743 self.assertIn('u-boot', entries)
744 entry = entries['u-boot']
Simon Glass3ab95982018-08-01 15:22:37 -0600745 self.assertEqual(0, entry.offset)
Simon Glass4f443042016-11-25 20:15:52 -0700746 self.assertEqual(3, entry.pad_before)
747 self.assertEqual(3 + 5 + len(U_BOOT_DATA), entry.size)
748
749 # Second u-boot has an aligned size, but it has no effect
750 self.assertIn('u-boot-align-size-nop', entries)
751 entry = entries['u-boot-align-size-nop']
Simon Glass3ab95982018-08-01 15:22:37 -0600752 self.assertEqual(12, entry.offset)
Simon Glass4f443042016-11-25 20:15:52 -0700753 self.assertEqual(4, entry.size)
754
755 # Third u-boot has an aligned size too
756 self.assertIn('u-boot-align-size', entries)
757 entry = entries['u-boot-align-size']
Simon Glass3ab95982018-08-01 15:22:37 -0600758 self.assertEqual(16, entry.offset)
Simon Glass4f443042016-11-25 20:15:52 -0700759 self.assertEqual(32, entry.size)
760
761 # Fourth u-boot has an aligned end
762 self.assertIn('u-boot-align-end', entries)
763 entry = entries['u-boot-align-end']
Simon Glass3ab95982018-08-01 15:22:37 -0600764 self.assertEqual(48, entry.offset)
Simon Glass4f443042016-11-25 20:15:52 -0700765 self.assertEqual(16, entry.size)
766
767 # Fifth u-boot immediately afterwards
768 self.assertIn('u-boot-align-both', entries)
769 entry = entries['u-boot-align-both']
Simon Glass3ab95982018-08-01 15:22:37 -0600770 self.assertEqual(64, entry.offset)
Simon Glass4f443042016-11-25 20:15:52 -0700771 self.assertEqual(64, entry.size)
772
773 self.CheckNoGaps(entries)
Simon Glass8beb11e2019-07-08 14:25:47 -0600774 self.assertEqual(128, image.size)
Simon Glass4f443042016-11-25 20:15:52 -0700775
776 def testPackAlignPowerOf2(self):
777 """Test that invalid entry alignment is detected"""
778 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600779 self._DoTestFile('010_pack_align_power2.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700780 self.assertIn("Node '/binman/u-boot': Alignment 5 must be a power "
781 "of two", str(e.exception))
782
783 def testPackAlignSizePowerOf2(self):
784 """Test that invalid entry size alignment is detected"""
785 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600786 self._DoTestFile('011_pack_align_size_power2.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700787 self.assertIn("Node '/binman/u-boot': Alignment size 55 must be a "
788 "power of two", str(e.exception))
789
790 def testPackInvalidAlign(self):
Simon Glass3ab95982018-08-01 15:22:37 -0600791 """Test detection of an offset that does not match its alignment"""
Simon Glass4f443042016-11-25 20:15:52 -0700792 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600793 self._DoTestFile('012_pack_inv_align.dts')
Simon Glass3ab95982018-08-01 15:22:37 -0600794 self.assertIn("Node '/binman/u-boot': Offset 0x5 (5) does not match "
Simon Glass4f443042016-11-25 20:15:52 -0700795 "align 0x4 (4)", str(e.exception))
796
797 def testPackInvalidSizeAlign(self):
798 """Test that invalid entry size alignment is detected"""
799 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600800 self._DoTestFile('013_pack_inv_size_align.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700801 self.assertIn("Node '/binman/u-boot': Size 0x5 (5) does not match "
802 "align-size 0x4 (4)", str(e.exception))
803
804 def testPackOverlap(self):
805 """Test that overlapping regions are detected"""
806 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600807 self._DoTestFile('014_pack_overlap.dts')
Simon Glass3ab95982018-08-01 15:22:37 -0600808 self.assertIn("Node '/binman/u-boot-align': Offset 0x3 (3) overlaps "
Simon Glass4f443042016-11-25 20:15:52 -0700809 "with previous entry '/binman/u-boot' ending at 0x4 (4)",
810 str(e.exception))
811
812 def testPackEntryOverflow(self):
813 """Test that entries that overflow their size are detected"""
814 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600815 self._DoTestFile('015_pack_overflow.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700816 self.assertIn("Node '/binman/u-boot': Entry contents size is 0x4 (4) "
817 "but entry size is 0x3 (3)", str(e.exception))
818
819 def testPackImageOverflow(self):
820 """Test that entries which overflow the image size are detected"""
821 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600822 self._DoTestFile('016_pack_image_overflow.dts')
Simon Glass8f1da502018-06-01 09:38:12 -0600823 self.assertIn("Section '/binman': contents size 0x4 (4) exceeds section "
Simon Glass4f443042016-11-25 20:15:52 -0700824 "size 0x3 (3)", str(e.exception))
825
826 def testPackImageSize(self):
827 """Test that the image size can be set"""
Simon Glass741f2d62018-10-01 12:22:30 -0600828 retcode = self._DoTestFile('017_pack_image_size.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700829 self.assertEqual(0, retcode)
830 self.assertIn('image', control.images)
831 image = control.images['image']
Simon Glass8beb11e2019-07-08 14:25:47 -0600832 self.assertEqual(7, image.size)
Simon Glass4f443042016-11-25 20:15:52 -0700833
834 def testPackImageSizeAlign(self):
835 """Test that image size alignemnt works as expected"""
Simon Glass741f2d62018-10-01 12:22:30 -0600836 retcode = self._DoTestFile('018_pack_image_align.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700837 self.assertEqual(0, retcode)
838 self.assertIn('image', control.images)
839 image = control.images['image']
Simon Glass8beb11e2019-07-08 14:25:47 -0600840 self.assertEqual(16, image.size)
Simon Glass4f443042016-11-25 20:15:52 -0700841
842 def testPackInvalidImageAlign(self):
843 """Test that invalid image alignment is detected"""
844 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600845 self._DoTestFile('019_pack_inv_image_align.dts')
Simon Glass8f1da502018-06-01 09:38:12 -0600846 self.assertIn("Section '/binman': Size 0x7 (7) does not match "
Simon Glass4f443042016-11-25 20:15:52 -0700847 "align-size 0x8 (8)", str(e.exception))
848
849 def testPackAlignPowerOf2(self):
850 """Test that invalid image alignment is detected"""
851 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600852 self._DoTestFile('020_pack_inv_image_align_power2.dts')
Simon Glass8beb11e2019-07-08 14:25:47 -0600853 self.assertIn("Image '/binman': Alignment size 131 must be a power of "
Simon Glass4f443042016-11-25 20:15:52 -0700854 "two", str(e.exception))
855
856 def testImagePadByte(self):
857 """Test that the image pad byte can be specified"""
Simon Glass11ae93e2018-10-01 21:12:47 -0600858 self._SetupSplElf()
Simon Glass741f2d62018-10-01 12:22:30 -0600859 data = self._DoReadFile('021_image_pad.dts')
Simon Glasse6d85ff2019-05-14 15:53:47 -0600860 self.assertEqual(U_BOOT_SPL_DATA + tools.GetBytes(0xff, 1) +
861 U_BOOT_DATA, data)
Simon Glass4f443042016-11-25 20:15:52 -0700862
863 def testImageName(self):
864 """Test that image files can be named"""
Simon Glass741f2d62018-10-01 12:22:30 -0600865 retcode = self._DoTestFile('022_image_name.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700866 self.assertEqual(0, retcode)
867 image = control.images['image1']
868 fname = tools.GetOutputFilename('test-name')
869 self.assertTrue(os.path.exists(fname))
870
871 image = control.images['image2']
872 fname = tools.GetOutputFilename('test-name.xx')
873 self.assertTrue(os.path.exists(fname))
874
875 def testBlobFilename(self):
876 """Test that generic blobs can be provided by filename"""
Simon Glass741f2d62018-10-01 12:22:30 -0600877 data = self._DoReadFile('023_blob.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700878 self.assertEqual(BLOB_DATA, data)
879
880 def testPackSorted(self):
881 """Test that entries can be sorted"""
Simon Glass11ae93e2018-10-01 21:12:47 -0600882 self._SetupSplElf()
Simon Glass741f2d62018-10-01 12:22:30 -0600883 data = self._DoReadFile('024_sorted.dts')
Simon Glasse6d85ff2019-05-14 15:53:47 -0600884 self.assertEqual(tools.GetBytes(0, 1) + U_BOOT_SPL_DATA +
885 tools.GetBytes(0, 2) + U_BOOT_DATA, data)
Simon Glass4f443042016-11-25 20:15:52 -0700886
Simon Glass3ab95982018-08-01 15:22:37 -0600887 def testPackZeroOffset(self):
888 """Test that an entry at offset 0 is not given a new offset"""
Simon Glass4f443042016-11-25 20:15:52 -0700889 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600890 self._DoTestFile('025_pack_zero_size.dts')
Simon Glass3ab95982018-08-01 15:22:37 -0600891 self.assertIn("Node '/binman/u-boot-spl': Offset 0x0 (0) overlaps "
Simon Glass4f443042016-11-25 20:15:52 -0700892 "with previous entry '/binman/u-boot' ending at 0x4 (4)",
893 str(e.exception))
894
895 def testPackUbootDtb(self):
896 """Test that a device tree can be added to U-Boot"""
Simon Glass741f2d62018-10-01 12:22:30 -0600897 data = self._DoReadFile('026_pack_u_boot_dtb.dts')
Simon Glass4f443042016-11-25 20:15:52 -0700898 self.assertEqual(U_BOOT_NODTB_DATA + U_BOOT_DTB_DATA, data)
Simon Glasse0ff8552016-11-25 20:15:53 -0700899
900 def testPackX86RomNoSize(self):
901 """Test that the end-at-4gb property requires a size property"""
902 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600903 self._DoTestFile('027_pack_4gb_no_size.dts')
Simon Glass8beb11e2019-07-08 14:25:47 -0600904 self.assertIn("Image '/binman': Section size must be provided when "
Simon Glasse0ff8552016-11-25 20:15:53 -0700905 "using end-at-4gb", str(e.exception))
906
Jagdish Gediya94b57db2018-09-03 21:35:07 +0530907 def test4gbAndSkipAtStartTogether(self):
908 """Test that the end-at-4gb and skip-at-size property can't be used
909 together"""
910 with self.assertRaises(ValueError) as e:
Simon Glassdfdd2b62019-08-24 07:23:02 -0600911 self._DoTestFile('098_4gb_and_skip_at_start_together.dts')
Simon Glass8beb11e2019-07-08 14:25:47 -0600912 self.assertIn("Image '/binman': Provide either 'end-at-4gb' or "
Jagdish Gediya94b57db2018-09-03 21:35:07 +0530913 "'skip-at-start'", str(e.exception))
914
Simon Glasse0ff8552016-11-25 20:15:53 -0700915 def testPackX86RomOutside(self):
Simon Glass3ab95982018-08-01 15:22:37 -0600916 """Test that the end-at-4gb property checks for offset boundaries"""
Simon Glasse0ff8552016-11-25 20:15:53 -0700917 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -0600918 self._DoTestFile('028_pack_4gb_outside.dts')
Simon Glass3ab95982018-08-01 15:22:37 -0600919 self.assertIn("Node '/binman/u-boot': Offset 0x0 (0) is outside "
Simon Glass8f1da502018-06-01 09:38:12 -0600920 "the section starting at 0xffffffe0 (4294967264)",
Simon Glasse0ff8552016-11-25 20:15:53 -0700921 str(e.exception))
922
923 def testPackX86Rom(self):
924 """Test that a basic x86 ROM can be created"""
Simon Glass11ae93e2018-10-01 21:12:47 -0600925 self._SetupSplElf()
Simon Glass9255f3c2019-08-24 07:23:01 -0600926 data = self._DoReadFile('029_x86_rom.dts')
Simon Glasseb0086f2019-08-24 07:23:04 -0600927 self.assertEqual(U_BOOT_DATA + tools.GetBytes(0, 3) + U_BOOT_SPL_DATA +
Simon Glasse6d85ff2019-05-14 15:53:47 -0600928 tools.GetBytes(0, 2), data)
Simon Glasse0ff8552016-11-25 20:15:53 -0700929
930 def testPackX86RomMeNoDesc(self):
931 """Test that an invalid Intel descriptor entry is detected"""
Simon Glassc6c10e72019-05-17 22:00:46 -0600932 TestFunctional._MakeInputFile('descriptor.bin', b'')
Simon Glasse0ff8552016-11-25 20:15:53 -0700933 with self.assertRaises(ValueError) as e:
Simon Glass9255f3c2019-08-24 07:23:01 -0600934 self._DoTestFile('031_x86_rom_me.dts')
Simon Glass458be452019-07-08 13:18:32 -0600935 self.assertIn("Node '/binman/intel-descriptor': Cannot find Intel Flash Descriptor (FD) signature",
936 str(e.exception))
Simon Glasse0ff8552016-11-25 20:15:53 -0700937
938 def testPackX86RomBadDesc(self):
939 """Test that the Intel requires a descriptor entry"""
940 with self.assertRaises(ValueError) as e:
Simon Glass9255f3c2019-08-24 07:23:01 -0600941 self._DoTestFile('030_x86_rom_me_no_desc.dts')
Simon Glass3ab95982018-08-01 15:22:37 -0600942 self.assertIn("Node '/binman/intel-me': No offset set with "
943 "offset-unset: should another entry provide this correct "
944 "offset?", str(e.exception))
Simon Glasse0ff8552016-11-25 20:15:53 -0700945
946 def testPackX86RomMe(self):
947 """Test that an x86 ROM with an ME region can be created"""
Simon Glass9255f3c2019-08-24 07:23:01 -0600948 data = self._DoReadFile('031_x86_rom_me.dts')
Simon Glassc5ac1382019-07-08 13:18:54 -0600949 expected_desc = tools.ReadFile(self.TestFile('descriptor.bin'))
950 if data[:0x1000] != expected_desc:
951 self.fail('Expected descriptor binary at start of image')
Simon Glasse0ff8552016-11-25 20:15:53 -0700952 self.assertEqual(ME_DATA, data[0x1000:0x1000 + len(ME_DATA)])
953
954 def testPackVga(self):
955 """Test that an image with a VGA binary can be created"""
Simon Glass9255f3c2019-08-24 07:23:01 -0600956 data = self._DoReadFile('032_intel_vga.dts')
Simon Glasse0ff8552016-11-25 20:15:53 -0700957 self.assertEqual(VGA_DATA, data[:len(VGA_DATA)])
958
959 def testPackStart16(self):
960 """Test that an image with an x86 start16 region can be created"""
Simon Glass9255f3c2019-08-24 07:23:01 -0600961 data = self._DoReadFile('033_x86_start16.dts')
Simon Glasse0ff8552016-11-25 20:15:53 -0700962 self.assertEqual(X86_START16_DATA, data[:len(X86_START16_DATA)])
963
Jagdish Gediya9d368f32018-09-03 21:35:08 +0530964 def testPackPowerpcMpc85xxBootpgResetvec(self):
965 """Test that an image with powerpc-mpc85xx-bootpg-resetvec can be
966 created"""
Simon Glassdfdd2b62019-08-24 07:23:02 -0600967 data = self._DoReadFile('150_powerpc_mpc85xx_bootpg_resetvec.dts')
Jagdish Gediya9d368f32018-09-03 21:35:08 +0530968 self.assertEqual(PPC_MPC85XX_BR_DATA, data[:len(PPC_MPC85XX_BR_DATA)])
969
Simon Glass736bb0a2018-07-06 10:27:17 -0600970 def _RunMicrocodeTest(self, dts_fname, nodtb_data, ucode_second=False):
Simon Glassadc57012018-07-06 10:27:16 -0600971 """Handle running a test for insertion of microcode
972
973 Args:
974 dts_fname: Name of test .dts file
975 nodtb_data: Data that we expect in the first section
Simon Glass736bb0a2018-07-06 10:27:17 -0600976 ucode_second: True if the microsecond entry is second instead of
977 third
Simon Glassadc57012018-07-06 10:27:16 -0600978
979 Returns:
980 Tuple:
981 Contents of first region (U-Boot or SPL)
Simon Glass3ab95982018-08-01 15:22:37 -0600982 Offset and size components of microcode pointer, as inserted
Simon Glassadc57012018-07-06 10:27:16 -0600983 in the above (two 4-byte words)
984 """
Simon Glass6b187df2017-11-12 21:52:27 -0700985 data = self._DoReadFile(dts_fname, True)
Simon Glasse0ff8552016-11-25 20:15:53 -0700986
987 # Now check the device tree has no microcode
Simon Glass736bb0a2018-07-06 10:27:17 -0600988 if ucode_second:
989 ucode_content = data[len(nodtb_data):]
990 ucode_pos = len(nodtb_data)
991 dtb_with_ucode = ucode_content[16:]
992 fdt_len = self.GetFdtLen(dtb_with_ucode)
993 else:
994 dtb_with_ucode = data[len(nodtb_data):]
995 fdt_len = self.GetFdtLen(dtb_with_ucode)
996 ucode_content = dtb_with_ucode[fdt_len:]
997 ucode_pos = len(nodtb_data) + fdt_len
Simon Glasse0ff8552016-11-25 20:15:53 -0700998 fname = tools.GetOutputFilename('test.dtb')
999 with open(fname, 'wb') as fd:
Simon Glassadc57012018-07-06 10:27:16 -06001000 fd.write(dtb_with_ucode)
Simon Glassec3f3782017-05-27 07:38:29 -06001001 dtb = fdt.FdtScan(fname)
1002 ucode = dtb.GetNode('/microcode')
Simon Glasse0ff8552016-11-25 20:15:53 -07001003 self.assertTrue(ucode)
1004 for node in ucode.subnodes:
1005 self.assertFalse(node.props.get('data'))
1006
Simon Glasse0ff8552016-11-25 20:15:53 -07001007 # Check that the microcode appears immediately after the Fdt
1008 # This matches the concatenation of the data properties in
Simon Glass87722132017-11-12 21:52:26 -07001009 # the /microcode/update@xxx nodes in 34_x86_ucode.dts.
Simon Glasse0ff8552016-11-25 20:15:53 -07001010 ucode_data = struct.pack('>4L', 0x12345678, 0x12345679, 0xabcd0000,
1011 0x78235609)
Simon Glassadc57012018-07-06 10:27:16 -06001012 self.assertEqual(ucode_data, ucode_content[:len(ucode_data)])
Simon Glasse0ff8552016-11-25 20:15:53 -07001013
1014 # Check that the microcode pointer was inserted. It should match the
Simon Glass3ab95982018-08-01 15:22:37 -06001015 # expected offset and size
Simon Glasse0ff8552016-11-25 20:15:53 -07001016 pos_and_size = struct.pack('<2L', 0xfffffe00 + ucode_pos,
1017 len(ucode_data))
Simon Glass736bb0a2018-07-06 10:27:17 -06001018 u_boot = data[:len(nodtb_data)]
1019 return u_boot, pos_and_size
Simon Glass6b187df2017-11-12 21:52:27 -07001020
1021 def testPackUbootMicrocode(self):
1022 """Test that x86 microcode can be handled correctly
1023
1024 We expect to see the following in the image, in order:
1025 u-boot-nodtb.bin with a microcode pointer inserted at the correct
1026 place
1027 u-boot.dtb with the microcode removed
1028 the microcode
1029 """
Simon Glass741f2d62018-10-01 12:22:30 -06001030 first, pos_and_size = self._RunMicrocodeTest('034_x86_ucode.dts',
Simon Glass6b187df2017-11-12 21:52:27 -07001031 U_BOOT_NODTB_DATA)
Simon Glassc6c10e72019-05-17 22:00:46 -06001032 self.assertEqual(b'nodtb with microcode' + pos_and_size +
1033 b' somewhere in here', first)
Simon Glasse0ff8552016-11-25 20:15:53 -07001034
Simon Glass160a7662017-05-27 07:38:26 -06001035 def _RunPackUbootSingleMicrocode(self):
Simon Glasse0ff8552016-11-25 20:15:53 -07001036 """Test that x86 microcode can be handled correctly
1037
1038 We expect to see the following in the image, in order:
1039 u-boot-nodtb.bin with a microcode pointer inserted at the correct
1040 place
1041 u-boot.dtb with the microcode
1042 an empty microcode region
1043 """
1044 # We need the libfdt library to run this test since only that allows
1045 # finding the offset of a property. This is required by
1046 # Entry_u_boot_dtb_with_ucode.ObtainContents().
Simon Glass741f2d62018-10-01 12:22:30 -06001047 data = self._DoReadFile('035_x86_single_ucode.dts', True)
Simon Glasse0ff8552016-11-25 20:15:53 -07001048
1049 second = data[len(U_BOOT_NODTB_DATA):]
1050
1051 fdt_len = self.GetFdtLen(second)
1052 third = second[fdt_len:]
1053 second = second[:fdt_len]
1054
Simon Glass160a7662017-05-27 07:38:26 -06001055 ucode_data = struct.pack('>2L', 0x12345678, 0x12345679)
1056 self.assertIn(ucode_data, second)
1057 ucode_pos = second.find(ucode_data) + len(U_BOOT_NODTB_DATA)
Simon Glasse0ff8552016-11-25 20:15:53 -07001058
Simon Glass160a7662017-05-27 07:38:26 -06001059 # Check that the microcode pointer was inserted. It should match the
Simon Glass3ab95982018-08-01 15:22:37 -06001060 # expected offset and size
Simon Glass160a7662017-05-27 07:38:26 -06001061 pos_and_size = struct.pack('<2L', 0xfffffe00 + ucode_pos,
1062 len(ucode_data))
1063 first = data[:len(U_BOOT_NODTB_DATA)]
Simon Glassc6c10e72019-05-17 22:00:46 -06001064 self.assertEqual(b'nodtb with microcode' + pos_and_size +
1065 b' somewhere in here', first)
Simon Glassc49deb82016-11-25 20:15:54 -07001066
Simon Glass75db0862016-11-25 20:15:55 -07001067 def testPackUbootSingleMicrocode(self):
1068 """Test that x86 microcode can be handled correctly with fdt_normal.
1069 """
Simon Glass160a7662017-05-27 07:38:26 -06001070 self._RunPackUbootSingleMicrocode()
Simon Glass75db0862016-11-25 20:15:55 -07001071
Simon Glassc49deb82016-11-25 20:15:54 -07001072 def testUBootImg(self):
1073 """Test that u-boot.img can be put in a file"""
Simon Glass741f2d62018-10-01 12:22:30 -06001074 data = self._DoReadFile('036_u_boot_img.dts')
Simon Glassc49deb82016-11-25 20:15:54 -07001075 self.assertEqual(U_BOOT_IMG_DATA, data)
Simon Glass75db0862016-11-25 20:15:55 -07001076
1077 def testNoMicrocode(self):
1078 """Test that a missing microcode region is detected"""
1079 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001080 self._DoReadFile('037_x86_no_ucode.dts', True)
Simon Glass75db0862016-11-25 20:15:55 -07001081 self.assertIn("Node '/binman/u-boot-dtb-with-ucode': No /microcode "
1082 "node found in ", str(e.exception))
1083
1084 def testMicrocodeWithoutNode(self):
1085 """Test that a missing u-boot-dtb-with-ucode node is detected"""
1086 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001087 self._DoReadFile('038_x86_ucode_missing_node.dts', True)
Simon Glass75db0862016-11-25 20:15:55 -07001088 self.assertIn("Node '/binman/u-boot-with-ucode-ptr': Cannot find "
1089 "microcode region u-boot-dtb-with-ucode", str(e.exception))
1090
1091 def testMicrocodeWithoutNode2(self):
1092 """Test that a missing u-boot-ucode node is detected"""
1093 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001094 self._DoReadFile('039_x86_ucode_missing_node2.dts', True)
Simon Glass75db0862016-11-25 20:15:55 -07001095 self.assertIn("Node '/binman/u-boot-with-ucode-ptr': Cannot find "
1096 "microcode region u-boot-ucode", str(e.exception))
1097
1098 def testMicrocodeWithoutPtrInElf(self):
1099 """Test that a U-Boot binary without the microcode symbol is detected"""
1100 # ELF file without a '_dt_ucode_base_size' symbol
Simon Glass75db0862016-11-25 20:15:55 -07001101 try:
Simon Glassbccd91d2019-08-24 07:22:55 -06001102 TestFunctional._MakeInputFile('u-boot',
1103 tools.ReadFile(self.ElfTestFile('u_boot_no_ucode_ptr')))
Simon Glass75db0862016-11-25 20:15:55 -07001104
1105 with self.assertRaises(ValueError) as e:
Simon Glass160a7662017-05-27 07:38:26 -06001106 self._RunPackUbootSingleMicrocode()
Simon Glass75db0862016-11-25 20:15:55 -07001107 self.assertIn("Node '/binman/u-boot-with-ucode-ptr': Cannot locate "
1108 "_dt_ucode_base_size symbol in u-boot", str(e.exception))
1109
1110 finally:
1111 # Put the original file back
Simon Glassf514d8f2019-08-24 07:22:54 -06001112 TestFunctional._MakeInputFile('u-boot',
1113 tools.ReadFile(self.ElfTestFile('u_boot_ucode_ptr')))
Simon Glass75db0862016-11-25 20:15:55 -07001114
1115 def testMicrocodeNotInImage(self):
1116 """Test that microcode must be placed within the image"""
1117 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001118 self._DoReadFile('040_x86_ucode_not_in_image.dts', True)
Simon Glass75db0862016-11-25 20:15:55 -07001119 self.assertIn("Node '/binman/u-boot-with-ucode-ptr': Microcode "
1120 "pointer _dt_ucode_base_size at fffffe14 is outside the "
Simon Glass25ac0e62018-06-01 09:38:14 -06001121 "section ranging from 00000000 to 0000002e", str(e.exception))
Simon Glass75db0862016-11-25 20:15:55 -07001122
1123 def testWithoutMicrocode(self):
1124 """Test that we can cope with an image without microcode (e.g. qemu)"""
Simon Glassbccd91d2019-08-24 07:22:55 -06001125 TestFunctional._MakeInputFile('u-boot',
1126 tools.ReadFile(self.ElfTestFile('u_boot_no_ucode_ptr')))
Simon Glass741f2d62018-10-01 12:22:30 -06001127 data, dtb, _, _ = self._DoReadFileDtb('044_x86_optional_ucode.dts', True)
Simon Glass75db0862016-11-25 20:15:55 -07001128
1129 # Now check the device tree has no microcode
1130 self.assertEqual(U_BOOT_NODTB_DATA, data[:len(U_BOOT_NODTB_DATA)])
1131 second = data[len(U_BOOT_NODTB_DATA):]
1132
1133 fdt_len = self.GetFdtLen(second)
1134 self.assertEqual(dtb, second[:fdt_len])
1135
1136 used_len = len(U_BOOT_NODTB_DATA) + fdt_len
1137 third = data[used_len:]
Simon Glasse6d85ff2019-05-14 15:53:47 -06001138 self.assertEqual(tools.GetBytes(0, 0x200 - used_len), third)
Simon Glass75db0862016-11-25 20:15:55 -07001139
1140 def testUnknownPosSize(self):
1141 """Test that microcode must be placed within the image"""
1142 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001143 self._DoReadFile('041_unknown_pos_size.dts', True)
Simon Glass3ab95982018-08-01 15:22:37 -06001144 self.assertIn("Section '/binman': Unable to set offset/size for unknown "
Simon Glass75db0862016-11-25 20:15:55 -07001145 "entry 'invalid-entry'", str(e.exception))
Simon Glassda229092016-11-25 20:15:56 -07001146
1147 def testPackFsp(self):
1148 """Test that an image with a FSP binary can be created"""
Simon Glass9255f3c2019-08-24 07:23:01 -06001149 data = self._DoReadFile('042_intel_fsp.dts')
Simon Glassda229092016-11-25 20:15:56 -07001150 self.assertEqual(FSP_DATA, data[:len(FSP_DATA)])
1151
1152 def testPackCmc(self):
Bin Meng59ea8c22017-08-15 22:41:54 -07001153 """Test that an image with a CMC binary can be created"""
Simon Glass9255f3c2019-08-24 07:23:01 -06001154 data = self._DoReadFile('043_intel_cmc.dts')
Simon Glassda229092016-11-25 20:15:56 -07001155 self.assertEqual(CMC_DATA, data[:len(CMC_DATA)])
Bin Meng59ea8c22017-08-15 22:41:54 -07001156
1157 def testPackVbt(self):
1158 """Test that an image with a VBT binary can be created"""
Simon Glass9255f3c2019-08-24 07:23:01 -06001159 data = self._DoReadFile('046_intel_vbt.dts')
Bin Meng59ea8c22017-08-15 22:41:54 -07001160 self.assertEqual(VBT_DATA, data[:len(VBT_DATA)])
Simon Glass9fc60b42017-11-12 21:52:22 -07001161
Simon Glass56509842017-11-12 21:52:25 -07001162 def testSplBssPad(self):
1163 """Test that we can pad SPL's BSS with zeros"""
Simon Glass6b187df2017-11-12 21:52:27 -07001164 # ELF file with a '__bss_size' symbol
Simon Glass11ae93e2018-10-01 21:12:47 -06001165 self._SetupSplElf()
Simon Glass741f2d62018-10-01 12:22:30 -06001166 data = self._DoReadFile('047_spl_bss_pad.dts')
Simon Glasse6d85ff2019-05-14 15:53:47 -06001167 self.assertEqual(U_BOOT_SPL_DATA + tools.GetBytes(0, 10) + U_BOOT_DATA,
1168 data)
Simon Glass56509842017-11-12 21:52:25 -07001169
Simon Glass86af5112018-10-01 21:12:42 -06001170 def testSplBssPadMissing(self):
1171 """Test that a missing symbol is detected"""
Simon Glass11ae93e2018-10-01 21:12:47 -06001172 self._SetupSplElf('u_boot_ucode_ptr')
Simon Glassb50e5612017-11-13 18:54:54 -07001173 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001174 self._DoReadFile('047_spl_bss_pad.dts')
Simon Glassb50e5612017-11-13 18:54:54 -07001175 self.assertIn('Expected __bss_size symbol in spl/u-boot-spl',
1176 str(e.exception))
1177
Simon Glass87722132017-11-12 21:52:26 -07001178 def testPackStart16Spl(self):
Simon Glass35b384c2018-09-14 04:57:10 -06001179 """Test that an image with an x86 start16 SPL region can be created"""
Simon Glass9255f3c2019-08-24 07:23:01 -06001180 data = self._DoReadFile('048_x86_start16_spl.dts')
Simon Glass87722132017-11-12 21:52:26 -07001181 self.assertEqual(X86_START16_SPL_DATA, data[:len(X86_START16_SPL_DATA)])
1182
Simon Glass736bb0a2018-07-06 10:27:17 -06001183 def _PackUbootSplMicrocode(self, dts, ucode_second=False):
1184 """Helper function for microcode tests
Simon Glass6b187df2017-11-12 21:52:27 -07001185
1186 We expect to see the following in the image, in order:
1187 u-boot-spl-nodtb.bin with a microcode pointer inserted at the
1188 correct place
1189 u-boot.dtb with the microcode removed
1190 the microcode
Simon Glass736bb0a2018-07-06 10:27:17 -06001191
1192 Args:
1193 dts: Device tree file to use for test
1194 ucode_second: True if the microsecond entry is second instead of
1195 third
Simon Glass6b187df2017-11-12 21:52:27 -07001196 """
Simon Glass11ae93e2018-10-01 21:12:47 -06001197 self._SetupSplElf('u_boot_ucode_ptr')
Simon Glass736bb0a2018-07-06 10:27:17 -06001198 first, pos_and_size = self._RunMicrocodeTest(dts, U_BOOT_SPL_NODTB_DATA,
1199 ucode_second=ucode_second)
Simon Glassc6c10e72019-05-17 22:00:46 -06001200 self.assertEqual(b'splnodtb with microc' + pos_and_size +
1201 b'ter somewhere in here', first)
Simon Glass6b187df2017-11-12 21:52:27 -07001202
Simon Glass736bb0a2018-07-06 10:27:17 -06001203 def testPackUbootSplMicrocode(self):
1204 """Test that x86 microcode can be handled correctly in SPL"""
Simon Glass741f2d62018-10-01 12:22:30 -06001205 self._PackUbootSplMicrocode('049_x86_ucode_spl.dts')
Simon Glass736bb0a2018-07-06 10:27:17 -06001206
1207 def testPackUbootSplMicrocodeReorder(self):
1208 """Test that order doesn't matter for microcode entries
1209
1210 This is the same as testPackUbootSplMicrocode but when we process the
1211 u-boot-ucode entry we have not yet seen the u-boot-dtb-with-ucode
1212 entry, so we reply on binman to try later.
1213 """
Simon Glass741f2d62018-10-01 12:22:30 -06001214 self._PackUbootSplMicrocode('058_x86_ucode_spl_needs_retry.dts',
Simon Glass736bb0a2018-07-06 10:27:17 -06001215 ucode_second=True)
1216
Simon Glassca4f4ff2017-11-12 21:52:28 -07001217 def testPackMrc(self):
1218 """Test that an image with an MRC binary can be created"""
Simon Glass741f2d62018-10-01 12:22:30 -06001219 data = self._DoReadFile('050_intel_mrc.dts')
Simon Glassca4f4ff2017-11-12 21:52:28 -07001220 self.assertEqual(MRC_DATA, data[:len(MRC_DATA)])
1221
Simon Glass47419ea2017-11-13 18:54:55 -07001222 def testSplDtb(self):
1223 """Test that an image with spl/u-boot-spl.dtb can be created"""
Simon Glass741f2d62018-10-01 12:22:30 -06001224 data = self._DoReadFile('051_u_boot_spl_dtb.dts')
Simon Glass47419ea2017-11-13 18:54:55 -07001225 self.assertEqual(U_BOOT_SPL_DTB_DATA, data[:len(U_BOOT_SPL_DTB_DATA)])
1226
Simon Glass4e6fdbe2017-11-13 18:54:56 -07001227 def testSplNoDtb(self):
1228 """Test that an image with spl/u-boot-spl-nodtb.bin can be created"""
Simon Glass741f2d62018-10-01 12:22:30 -06001229 data = self._DoReadFile('052_u_boot_spl_nodtb.dts')
Simon Glass4e6fdbe2017-11-13 18:54:56 -07001230 self.assertEqual(U_BOOT_SPL_NODTB_DATA, data[:len(U_BOOT_SPL_NODTB_DATA)])
1231
Simon Glass19790632017-11-13 18:55:01 -07001232 def testSymbols(self):
1233 """Test binman can assign symbols embedded in U-Boot"""
Simon Glass1542c8b2019-08-24 07:22:56 -06001234 elf_fname = self.ElfTestFile('u_boot_binman_syms')
Simon Glass19790632017-11-13 18:55:01 -07001235 syms = elf.GetSymbols(elf_fname, ['binman', 'image'])
1236 addr = elf.GetSymbolAddress(elf_fname, '__image_copy_start')
Simon Glass3ab95982018-08-01 15:22:37 -06001237 self.assertEqual(syms['_binman_u_boot_spl_prop_offset'].address, addr)
Simon Glass19790632017-11-13 18:55:01 -07001238
Simon Glass11ae93e2018-10-01 21:12:47 -06001239 self._SetupSplElf('u_boot_binman_syms')
Simon Glass741f2d62018-10-01 12:22:30 -06001240 data = self._DoReadFile('053_symbols.dts')
Simon Glassb87064c2019-08-24 07:23:05 -06001241 sym_values = struct.pack('<LQLL', 0, 28, 24, 4)
1242 expected = (sym_values + U_BOOT_SPL_DATA[20:] +
Simon Glasse6d85ff2019-05-14 15:53:47 -06001243 tools.GetBytes(0xff, 1) + U_BOOT_DATA + sym_values +
Simon Glassb87064c2019-08-24 07:23:05 -06001244 U_BOOT_SPL_DATA[20:])
Simon Glass19790632017-11-13 18:55:01 -07001245 self.assertEqual(expected, data)
1246
Simon Glassdd57c132018-06-01 09:38:11 -06001247 def testPackUnitAddress(self):
1248 """Test that we support multiple binaries with the same name"""
Simon Glass741f2d62018-10-01 12:22:30 -06001249 data = self._DoReadFile('054_unit_address.dts')
Simon Glassdd57c132018-06-01 09:38:11 -06001250 self.assertEqual(U_BOOT_DATA + U_BOOT_DATA, data)
1251
Simon Glass18546952018-06-01 09:38:16 -06001252 def testSections(self):
1253 """Basic test of sections"""
Simon Glass741f2d62018-10-01 12:22:30 -06001254 data = self._DoReadFile('055_sections.dts')
Simon Glassc6c10e72019-05-17 22:00:46 -06001255 expected = (U_BOOT_DATA + tools.GetBytes(ord('!'), 12) +
1256 U_BOOT_DATA + tools.GetBytes(ord('a'), 12) +
1257 U_BOOT_DATA + tools.GetBytes(ord('&'), 4))
Simon Glass18546952018-06-01 09:38:16 -06001258 self.assertEqual(expected, data)
Simon Glass9fc60b42017-11-12 21:52:22 -07001259
Simon Glass3b0c3822018-06-01 09:38:20 -06001260 def testMap(self):
1261 """Tests outputting a map of the images"""
Simon Glass741f2d62018-10-01 12:22:30 -06001262 _, _, map_data, _ = self._DoReadFileDtb('055_sections.dts', map=True)
Simon Glass1be70d22018-07-17 13:25:49 -06001263 self.assertEqual('''ImagePos Offset Size Name
126400000000 00000000 00000028 main-section
126500000000 00000000 00000010 section@0
126600000000 00000000 00000004 u-boot
126700000010 00000010 00000010 section@1
126800000010 00000000 00000004 u-boot
126900000020 00000020 00000004 section@2
127000000020 00000000 00000004 u-boot
Simon Glass3b0c3822018-06-01 09:38:20 -06001271''', map_data)
1272
Simon Glassc8d48ef2018-06-01 09:38:21 -06001273 def testNamePrefix(self):
1274 """Tests that name prefixes are used"""
Simon Glass741f2d62018-10-01 12:22:30 -06001275 _, _, map_data, _ = self._DoReadFileDtb('056_name_prefix.dts', map=True)
Simon Glass1be70d22018-07-17 13:25:49 -06001276 self.assertEqual('''ImagePos Offset Size Name
127700000000 00000000 00000028 main-section
127800000000 00000000 00000010 section@0
127900000000 00000000 00000004 ro-u-boot
128000000010 00000010 00000010 section@1
128100000010 00000000 00000004 rw-u-boot
Simon Glassc8d48ef2018-06-01 09:38:21 -06001282''', map_data)
1283
Simon Glass736bb0a2018-07-06 10:27:17 -06001284 def testUnknownContents(self):
1285 """Test that obtaining the contents works as expected"""
1286 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001287 self._DoReadFile('057_unknown_contents.dts', True)
Simon Glass8beb11e2019-07-08 14:25:47 -06001288 self.assertIn("Image '/binman': Internal error: Could not complete "
Simon Glass736bb0a2018-07-06 10:27:17 -06001289 "processing of contents: remaining [<_testing.Entry__testing ",
1290 str(e.exception))
1291
Simon Glass5c890232018-07-06 10:27:19 -06001292 def testBadChangeSize(self):
1293 """Test that trying to change the size of an entry fails"""
Simon Glassc52c9e72019-07-08 14:25:37 -06001294 try:
1295 state.SetAllowEntryExpansion(False)
1296 with self.assertRaises(ValueError) as e:
1297 self._DoReadFile('059_change_size.dts', True)
Simon Glass79d3c582019-07-20 12:23:57 -06001298 self.assertIn("Node '/binman/_testing': Cannot update entry size from 2 to 3",
Simon Glassc52c9e72019-07-08 14:25:37 -06001299 str(e.exception))
1300 finally:
1301 state.SetAllowEntryExpansion(True)
Simon Glass5c890232018-07-06 10:27:19 -06001302
Simon Glass16b8d6b2018-07-06 10:27:42 -06001303 def testUpdateFdt(self):
Simon Glass3ab95982018-08-01 15:22:37 -06001304 """Test that we can update the device tree with offset/size info"""
Simon Glass741f2d62018-10-01 12:22:30 -06001305 _, _, _, out_dtb_fname = self._DoReadFileDtb('060_fdt_update.dts',
Simon Glass16b8d6b2018-07-06 10:27:42 -06001306 update_dtb=True)
Simon Glasscee02e62018-07-17 13:25:52 -06001307 dtb = fdt.Fdt(out_dtb_fname)
1308 dtb.Scan()
Simon Glass12bb1a92019-07-20 12:23:51 -06001309 props = self._GetPropTree(dtb, BASE_DTB_PROPS + REPACK_DTB_PROPS)
Simon Glass16b8d6b2018-07-06 10:27:42 -06001310 self.assertEqual({
Simon Glassdbf6be92018-08-01 15:22:42 -06001311 'image-pos': 0,
Simon Glass8122f392018-07-17 13:25:28 -06001312 'offset': 0,
Simon Glass3ab95982018-08-01 15:22:37 -06001313 '_testing:offset': 32,
Simon Glass79d3c582019-07-20 12:23:57 -06001314 '_testing:size': 2,
Simon Glassdbf6be92018-08-01 15:22:42 -06001315 '_testing:image-pos': 32,
Simon Glass3ab95982018-08-01 15:22:37 -06001316 'section@0/u-boot:offset': 0,
Simon Glass16b8d6b2018-07-06 10:27:42 -06001317 'section@0/u-boot:size': len(U_BOOT_DATA),
Simon Glassdbf6be92018-08-01 15:22:42 -06001318 'section@0/u-boot:image-pos': 0,
Simon Glass3ab95982018-08-01 15:22:37 -06001319 'section@0:offset': 0,
Simon Glass16b8d6b2018-07-06 10:27:42 -06001320 'section@0:size': 16,
Simon Glassdbf6be92018-08-01 15:22:42 -06001321 'section@0:image-pos': 0,
Simon Glass16b8d6b2018-07-06 10:27:42 -06001322
Simon Glass3ab95982018-08-01 15:22:37 -06001323 'section@1/u-boot:offset': 0,
Simon Glass16b8d6b2018-07-06 10:27:42 -06001324 'section@1/u-boot:size': len(U_BOOT_DATA),
Simon Glassdbf6be92018-08-01 15:22:42 -06001325 'section@1/u-boot:image-pos': 16,
Simon Glass3ab95982018-08-01 15:22:37 -06001326 'section@1:offset': 16,
Simon Glass16b8d6b2018-07-06 10:27:42 -06001327 'section@1:size': 16,
Simon Glassdbf6be92018-08-01 15:22:42 -06001328 'section@1:image-pos': 16,
Simon Glass16b8d6b2018-07-06 10:27:42 -06001329 'size': 40
1330 }, props)
1331
1332 def testUpdateFdtBad(self):
1333 """Test that we detect when ProcessFdt never completes"""
1334 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001335 self._DoReadFileDtb('061_fdt_update_bad.dts', update_dtb=True)
Simon Glass16b8d6b2018-07-06 10:27:42 -06001336 self.assertIn('Could not complete processing of Fdt: remaining '
1337 '[<_testing.Entry__testing', str(e.exception))
Simon Glass5c890232018-07-06 10:27:19 -06001338
Simon Glass53af22a2018-07-17 13:25:32 -06001339 def testEntryArgs(self):
1340 """Test passing arguments to entries from the command line"""
1341 entry_args = {
1342 'test-str-arg': 'test1',
1343 'test-int-arg': '456',
1344 }
Simon Glass741f2d62018-10-01 12:22:30 -06001345 self._DoReadFileDtb('062_entry_args.dts', entry_args=entry_args)
Simon Glass53af22a2018-07-17 13:25:32 -06001346 self.assertIn('image', control.images)
1347 entry = control.images['image'].GetEntries()['_testing']
1348 self.assertEqual('test0', entry.test_str_fdt)
1349 self.assertEqual('test1', entry.test_str_arg)
1350 self.assertEqual(123, entry.test_int_fdt)
1351 self.assertEqual(456, entry.test_int_arg)
1352
1353 def testEntryArgsMissing(self):
1354 """Test missing arguments and properties"""
1355 entry_args = {
1356 'test-int-arg': '456',
1357 }
Simon Glass741f2d62018-10-01 12:22:30 -06001358 self._DoReadFileDtb('063_entry_args_missing.dts', entry_args=entry_args)
Simon Glass53af22a2018-07-17 13:25:32 -06001359 entry = control.images['image'].GetEntries()['_testing']
1360 self.assertEqual('test0', entry.test_str_fdt)
1361 self.assertEqual(None, entry.test_str_arg)
1362 self.assertEqual(None, entry.test_int_fdt)
1363 self.assertEqual(456, entry.test_int_arg)
1364
1365 def testEntryArgsRequired(self):
1366 """Test missing arguments and properties"""
1367 entry_args = {
1368 'test-int-arg': '456',
1369 }
1370 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001371 self._DoReadFileDtb('064_entry_args_required.dts')
Simon Glass53af22a2018-07-17 13:25:32 -06001372 self.assertIn("Node '/binman/_testing': Missing required "
1373 'properties/entry args: test-str-arg, test-int-fdt, test-int-arg',
1374 str(e.exception))
1375
1376 def testEntryArgsInvalidFormat(self):
1377 """Test that an invalid entry-argument format is detected"""
Simon Glass53cd5d92019-07-08 14:25:29 -06001378 args = ['build', '-d', self.TestFile('064_entry_args_required.dts'),
1379 '-ano-value']
Simon Glass53af22a2018-07-17 13:25:32 -06001380 with self.assertRaises(ValueError) as e:
1381 self._DoBinman(*args)
1382 self.assertIn("Invalid entry arguemnt 'no-value'", str(e.exception))
1383
1384 def testEntryArgsInvalidInteger(self):
1385 """Test that an invalid entry-argument integer is detected"""
1386 entry_args = {
1387 'test-int-arg': 'abc',
1388 }
1389 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001390 self._DoReadFileDtb('062_entry_args.dts', entry_args=entry_args)
Simon Glass53af22a2018-07-17 13:25:32 -06001391 self.assertIn("Node '/binman/_testing': Cannot convert entry arg "
1392 "'test-int-arg' (value 'abc') to integer",
1393 str(e.exception))
1394
1395 def testEntryArgsInvalidDatatype(self):
1396 """Test that an invalid entry-argument datatype is detected
1397
1398 This test could be written in entry_test.py except that it needs
1399 access to control.entry_args, which seems more than that module should
1400 be able to see.
1401 """
1402 entry_args = {
1403 'test-bad-datatype-arg': '12',
1404 }
1405 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001406 self._DoReadFileDtb('065_entry_args_unknown_datatype.dts',
Simon Glass53af22a2018-07-17 13:25:32 -06001407 entry_args=entry_args)
1408 self.assertIn('GetArg() internal error: Unknown data type ',
1409 str(e.exception))
1410
Simon Glassbb748372018-07-17 13:25:33 -06001411 def testText(self):
1412 """Test for a text entry type"""
1413 entry_args = {
1414 'test-id': TEXT_DATA,
1415 'test-id2': TEXT_DATA2,
1416 'test-id3': TEXT_DATA3,
1417 }
Simon Glass741f2d62018-10-01 12:22:30 -06001418 data, _, _, _ = self._DoReadFileDtb('066_text.dts',
Simon Glassbb748372018-07-17 13:25:33 -06001419 entry_args=entry_args)
Simon Glassc6c10e72019-05-17 22:00:46 -06001420 expected = (tools.ToBytes(TEXT_DATA) +
1421 tools.GetBytes(0, 8 - len(TEXT_DATA)) +
1422 tools.ToBytes(TEXT_DATA2) + tools.ToBytes(TEXT_DATA3) +
Simon Glassaa88b502019-07-08 13:18:40 -06001423 b'some text' + b'more text')
Simon Glassbb748372018-07-17 13:25:33 -06001424 self.assertEqual(expected, data)
1425
Simon Glassfd8d1f72018-07-17 13:25:36 -06001426 def testEntryDocs(self):
1427 """Test for creation of entry documentation"""
1428 with test_util.capture_sys_output() as (stdout, stderr):
1429 control.WriteEntryDocs(binman.GetEntryModules())
1430 self.assertTrue(len(stdout.getvalue()) > 0)
1431
1432 def testEntryDocsMissing(self):
1433 """Test handling of missing entry documentation"""
1434 with self.assertRaises(ValueError) as e:
1435 with test_util.capture_sys_output() as (stdout, stderr):
1436 control.WriteEntryDocs(binman.GetEntryModules(), 'u_boot')
1437 self.assertIn('Documentation is missing for modules: u_boot',
1438 str(e.exception))
1439
Simon Glass11e36cc2018-07-17 13:25:38 -06001440 def testFmap(self):
1441 """Basic test of generation of a flashrom fmap"""
Simon Glass741f2d62018-10-01 12:22:30 -06001442 data = self._DoReadFile('067_fmap.dts')
Simon Glass11e36cc2018-07-17 13:25:38 -06001443 fhdr, fentries = fmap_util.DecodeFmap(data[32:])
Simon Glassc6c10e72019-05-17 22:00:46 -06001444 expected = (U_BOOT_DATA + tools.GetBytes(ord('!'), 12) +
1445 U_BOOT_DATA + tools.GetBytes(ord('a'), 12))
Simon Glass11e36cc2018-07-17 13:25:38 -06001446 self.assertEqual(expected, data[:32])
Simon Glassc6c10e72019-05-17 22:00:46 -06001447 self.assertEqual(b'__FMAP__', fhdr.signature)
Simon Glass11e36cc2018-07-17 13:25:38 -06001448 self.assertEqual(1, fhdr.ver_major)
1449 self.assertEqual(0, fhdr.ver_minor)
1450 self.assertEqual(0, fhdr.base)
1451 self.assertEqual(16 + 16 +
1452 fmap_util.FMAP_HEADER_LEN +
1453 fmap_util.FMAP_AREA_LEN * 3, fhdr.image_size)
Simon Glassc6c10e72019-05-17 22:00:46 -06001454 self.assertEqual(b'FMAP', fhdr.name)
Simon Glass11e36cc2018-07-17 13:25:38 -06001455 self.assertEqual(3, fhdr.nareas)
1456 for fentry in fentries:
1457 self.assertEqual(0, fentry.flags)
1458
1459 self.assertEqual(0, fentries[0].offset)
1460 self.assertEqual(4, fentries[0].size)
Simon Glassc6c10e72019-05-17 22:00:46 -06001461 self.assertEqual(b'RO_U_BOOT', fentries[0].name)
Simon Glass11e36cc2018-07-17 13:25:38 -06001462
1463 self.assertEqual(16, fentries[1].offset)
1464 self.assertEqual(4, fentries[1].size)
Simon Glassc6c10e72019-05-17 22:00:46 -06001465 self.assertEqual(b'RW_U_BOOT', fentries[1].name)
Simon Glass11e36cc2018-07-17 13:25:38 -06001466
1467 self.assertEqual(32, fentries[2].offset)
1468 self.assertEqual(fmap_util.FMAP_HEADER_LEN +
1469 fmap_util.FMAP_AREA_LEN * 3, fentries[2].size)
Simon Glassc6c10e72019-05-17 22:00:46 -06001470 self.assertEqual(b'FMAP', fentries[2].name)
Simon Glass11e36cc2018-07-17 13:25:38 -06001471
Simon Glassec127af2018-07-17 13:25:39 -06001472 def testBlobNamedByArg(self):
1473 """Test we can add a blob with the filename coming from an entry arg"""
1474 entry_args = {
1475 'cros-ec-rw-path': 'ecrw.bin',
1476 }
Simon Glass741f2d62018-10-01 12:22:30 -06001477 data, _, _, _ = self._DoReadFileDtb('068_blob_named_by_arg.dts',
Simon Glassec127af2018-07-17 13:25:39 -06001478 entry_args=entry_args)
1479
Simon Glass3af8e492018-07-17 13:25:40 -06001480 def testFill(self):
1481 """Test for an fill entry type"""
Simon Glass741f2d62018-10-01 12:22:30 -06001482 data = self._DoReadFile('069_fill.dts')
Simon Glasse6d85ff2019-05-14 15:53:47 -06001483 expected = tools.GetBytes(0xff, 8) + tools.GetBytes(0, 8)
Simon Glass3af8e492018-07-17 13:25:40 -06001484 self.assertEqual(expected, data)
1485
1486 def testFillNoSize(self):
1487 """Test for an fill entry type with no size"""
1488 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001489 self._DoReadFile('070_fill_no_size.dts')
Simon Glass3af8e492018-07-17 13:25:40 -06001490 self.assertIn("'fill' entry must have a size property",
1491 str(e.exception))
1492
Simon Glass0ef87aa2018-07-17 13:25:44 -06001493 def _HandleGbbCommand(self, pipe_list):
1494 """Fake calls to the futility utility"""
1495 if pipe_list[0][0] == 'futility':
1496 fname = pipe_list[0][-1]
1497 # Append our GBB data to the file, which will happen every time the
1498 # futility command is called.
Simon Glass1d0ebf72019-05-14 15:53:42 -06001499 with open(fname, 'ab') as fd:
Simon Glass0ef87aa2018-07-17 13:25:44 -06001500 fd.write(GBB_DATA)
1501 return command.CommandResult()
1502
1503 def testGbb(self):
1504 """Test for the Chromium OS Google Binary Block"""
1505 command.test_result = self._HandleGbbCommand
1506 entry_args = {
1507 'keydir': 'devkeys',
1508 'bmpblk': 'bmpblk.bin',
1509 }
Simon Glass741f2d62018-10-01 12:22:30 -06001510 data, _, _, _ = self._DoReadFileDtb('071_gbb.dts', entry_args=entry_args)
Simon Glass0ef87aa2018-07-17 13:25:44 -06001511
1512 # Since futility
Simon Glasse6d85ff2019-05-14 15:53:47 -06001513 expected = (GBB_DATA + GBB_DATA + tools.GetBytes(0, 8) +
1514 tools.GetBytes(0, 0x2180 - 16))
Simon Glass0ef87aa2018-07-17 13:25:44 -06001515 self.assertEqual(expected, data)
1516
1517 def testGbbTooSmall(self):
1518 """Test for the Chromium OS Google Binary Block being large enough"""
1519 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001520 self._DoReadFileDtb('072_gbb_too_small.dts')
Simon Glass0ef87aa2018-07-17 13:25:44 -06001521 self.assertIn("Node '/binman/gbb': GBB is too small",
1522 str(e.exception))
1523
1524 def testGbbNoSize(self):
1525 """Test for the Chromium OS Google Binary Block having a size"""
1526 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001527 self._DoReadFileDtb('073_gbb_no_size.dts')
Simon Glass0ef87aa2018-07-17 13:25:44 -06001528 self.assertIn("Node '/binman/gbb': GBB must have a fixed size",
1529 str(e.exception))
1530
Simon Glass24d0d3c2018-07-17 13:25:47 -06001531 def _HandleVblockCommand(self, pipe_list):
1532 """Fake calls to the futility utility"""
1533 if pipe_list[0][0] == 'futility':
1534 fname = pipe_list[0][3]
Simon Glassa326b492018-09-14 04:57:11 -06001535 with open(fname, 'wb') as fd:
Simon Glass24d0d3c2018-07-17 13:25:47 -06001536 fd.write(VBLOCK_DATA)
1537 return command.CommandResult()
1538
1539 def testVblock(self):
1540 """Test for the Chromium OS Verified Boot Block"""
1541 command.test_result = self._HandleVblockCommand
1542 entry_args = {
1543 'keydir': 'devkeys',
1544 }
Simon Glass741f2d62018-10-01 12:22:30 -06001545 data, _, _, _ = self._DoReadFileDtb('074_vblock.dts',
Simon Glass24d0d3c2018-07-17 13:25:47 -06001546 entry_args=entry_args)
1547 expected = U_BOOT_DATA + VBLOCK_DATA + U_BOOT_DTB_DATA
1548 self.assertEqual(expected, data)
1549
1550 def testVblockNoContent(self):
1551 """Test we detect a vblock which has no content to sign"""
1552 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001553 self._DoReadFile('075_vblock_no_content.dts')
Simon Glass24d0d3c2018-07-17 13:25:47 -06001554 self.assertIn("Node '/binman/vblock': Vblock must have a 'content' "
1555 'property', str(e.exception))
1556
1557 def testVblockBadPhandle(self):
1558 """Test that we detect a vblock with an invalid phandle in contents"""
1559 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001560 self._DoReadFile('076_vblock_bad_phandle.dts')
Simon Glass24d0d3c2018-07-17 13:25:47 -06001561 self.assertIn("Node '/binman/vblock': Cannot find node for phandle "
1562 '1000', str(e.exception))
1563
1564 def testVblockBadEntry(self):
1565 """Test that we detect an entry that points to a non-entry"""
1566 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001567 self._DoReadFile('077_vblock_bad_entry.dts')
Simon Glass24d0d3c2018-07-17 13:25:47 -06001568 self.assertIn("Node '/binman/vblock': Cannot find entry for node "
1569 "'other'", str(e.exception))
1570
Simon Glassb8ef5b62018-07-17 13:25:48 -06001571 def testTpl(self):
Simon Glass2090f1e2019-08-24 07:23:00 -06001572 """Test that an image with TPL and its device tree can be created"""
Simon Glassb8ef5b62018-07-17 13:25:48 -06001573 # ELF file with a '__bss_size' symbol
Simon Glass2090f1e2019-08-24 07:23:00 -06001574 self._SetupTplElf()
Simon Glass741f2d62018-10-01 12:22:30 -06001575 data = self._DoReadFile('078_u_boot_tpl.dts')
Simon Glassb8ef5b62018-07-17 13:25:48 -06001576 self.assertEqual(U_BOOT_TPL_DATA + U_BOOT_TPL_DTB_DATA, data)
1577
Simon Glass15a587c2018-07-17 13:25:51 -06001578 def testUsesPos(self):
1579 """Test that the 'pos' property cannot be used anymore"""
1580 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001581 data = self._DoReadFile('079_uses_pos.dts')
Simon Glass15a587c2018-07-17 13:25:51 -06001582 self.assertIn("Node '/binman/u-boot': Please use 'offset' instead of "
1583 "'pos'", str(e.exception))
1584
Simon Glassd178eab2018-09-14 04:57:08 -06001585 def testFillZero(self):
1586 """Test for an fill entry type with a size of 0"""
Simon Glass741f2d62018-10-01 12:22:30 -06001587 data = self._DoReadFile('080_fill_empty.dts')
Simon Glasse6d85ff2019-05-14 15:53:47 -06001588 self.assertEqual(tools.GetBytes(0, 16), data)
Simon Glassd178eab2018-09-14 04:57:08 -06001589
Simon Glass0b489362018-09-14 04:57:09 -06001590 def testTextMissing(self):
1591 """Test for a text entry type where there is no text"""
1592 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001593 self._DoReadFileDtb('066_text.dts',)
Simon Glass0b489362018-09-14 04:57:09 -06001594 self.assertIn("Node '/binman/text': No value provided for text label "
1595 "'test-id'", str(e.exception))
1596
Simon Glass35b384c2018-09-14 04:57:10 -06001597 def testPackStart16Tpl(self):
1598 """Test that an image with an x86 start16 TPL region can be created"""
Simon Glass9255f3c2019-08-24 07:23:01 -06001599 data = self._DoReadFile('081_x86_start16_tpl.dts')
Simon Glass35b384c2018-09-14 04:57:10 -06001600 self.assertEqual(X86_START16_TPL_DATA, data[:len(X86_START16_TPL_DATA)])
1601
Simon Glass0bfa7b02018-09-14 04:57:12 -06001602 def testSelectImage(self):
1603 """Test that we can select which images to build"""
Simon Glasseb833d82019-04-25 21:58:34 -06001604 expected = 'Skipping images: image1'
Simon Glass0bfa7b02018-09-14 04:57:12 -06001605
Simon Glasseb833d82019-04-25 21:58:34 -06001606 # We should only get the expected message in verbose mode
Simon Glassee0c9a72019-07-08 13:18:48 -06001607 for verbosity in (0, 2):
Simon Glasseb833d82019-04-25 21:58:34 -06001608 with test_util.capture_sys_output() as (stdout, stderr):
1609 retcode = self._DoTestFile('006_dual_image.dts',
1610 verbosity=verbosity,
1611 images=['image2'])
1612 self.assertEqual(0, retcode)
1613 if verbosity:
1614 self.assertIn(expected, stdout.getvalue())
1615 else:
1616 self.assertNotIn(expected, stdout.getvalue())
1617
1618 self.assertFalse(os.path.exists(tools.GetOutputFilename('image1.bin')))
1619 self.assertTrue(os.path.exists(tools.GetOutputFilename('image2.bin')))
Simon Glassf86a7362019-07-20 12:24:10 -06001620 self._CleanupOutputDir()
Simon Glass0bfa7b02018-09-14 04:57:12 -06001621
Simon Glass6ed45ba2018-09-14 04:57:24 -06001622 def testUpdateFdtAll(self):
1623 """Test that all device trees are updated with offset/size info"""
Simon Glass3c081312019-07-08 14:25:26 -06001624 data = self._DoReadFileRealDtb('082_fdt_update_all.dts')
Simon Glass6ed45ba2018-09-14 04:57:24 -06001625
1626 base_expected = {
1627 'section:image-pos': 0,
1628 'u-boot-tpl-dtb:size': 513,
1629 'u-boot-spl-dtb:size': 513,
1630 'u-boot-spl-dtb:offset': 493,
1631 'image-pos': 0,
1632 'section/u-boot-dtb:image-pos': 0,
1633 'u-boot-spl-dtb:image-pos': 493,
1634 'section/u-boot-dtb:size': 493,
1635 'u-boot-tpl-dtb:image-pos': 1006,
1636 'section/u-boot-dtb:offset': 0,
1637 'section:size': 493,
1638 'offset': 0,
1639 'section:offset': 0,
1640 'u-boot-tpl-dtb:offset': 1006,
1641 'size': 1519
1642 }
1643
1644 # We expect three device-tree files in the output, one after the other.
1645 # Read them in sequence. We look for an 'spl' property in the SPL tree,
1646 # and 'tpl' in the TPL tree, to make sure they are distinct from the
1647 # main U-Boot tree. All three should have the same postions and offset.
1648 start = 0
1649 for item in ['', 'spl', 'tpl']:
1650 dtb = fdt.Fdt.FromData(data[start:])
1651 dtb.Scan()
Simon Glass12bb1a92019-07-20 12:23:51 -06001652 props = self._GetPropTree(dtb, BASE_DTB_PROPS + REPACK_DTB_PROPS +
1653 ['spl', 'tpl'])
Simon Glass6ed45ba2018-09-14 04:57:24 -06001654 expected = dict(base_expected)
1655 if item:
1656 expected[item] = 0
1657 self.assertEqual(expected, props)
1658 start += dtb._fdt_obj.totalsize()
1659
1660 def testUpdateFdtOutput(self):
1661 """Test that output DTB files are updated"""
1662 try:
Simon Glass741f2d62018-10-01 12:22:30 -06001663 data, dtb_data, _, _ = self._DoReadFileDtb('082_fdt_update_all.dts',
Simon Glass6ed45ba2018-09-14 04:57:24 -06001664 use_real_dtb=True, update_dtb=True, reset_dtbs=False)
1665
1666 # Unfortunately, compiling a source file always results in a file
1667 # called source.dtb (see fdt_util.EnsureCompiled()). The test
Simon Glass741f2d62018-10-01 12:22:30 -06001668 # source file (e.g. test/075_fdt_update_all.dts) thus does not enter
Simon Glass6ed45ba2018-09-14 04:57:24 -06001669 # binman as a file called u-boot.dtb. To fix this, copy the file
1670 # over to the expected place.
1671 #tools.WriteFile(os.path.join(self._indir, 'u-boot.dtb'),
1672 #tools.ReadFile(tools.GetOutputFilename('source.dtb')))
1673 start = 0
1674 for fname in ['u-boot.dtb.out', 'spl/u-boot-spl.dtb.out',
1675 'tpl/u-boot-tpl.dtb.out']:
1676 dtb = fdt.Fdt.FromData(data[start:])
1677 size = dtb._fdt_obj.totalsize()
1678 pathname = tools.GetOutputFilename(os.path.split(fname)[1])
1679 outdata = tools.ReadFile(pathname)
1680 name = os.path.split(fname)[0]
1681
1682 if name:
1683 orig_indata = self._GetDtbContentsForSplTpl(dtb_data, name)
1684 else:
1685 orig_indata = dtb_data
1686 self.assertNotEqual(outdata, orig_indata,
1687 "Expected output file '%s' be updated" % pathname)
1688 self.assertEqual(outdata, data[start:start + size],
1689 "Expected output file '%s' to match output image" %
1690 pathname)
1691 start += size
1692 finally:
1693 self._ResetDtbs()
1694
Simon Glass83d73c22018-09-14 04:57:26 -06001695 def _decompress(self, data):
Simon Glassff5c7e32019-07-08 13:18:42 -06001696 return tools.Decompress(data, 'lz4')
Simon Glass83d73c22018-09-14 04:57:26 -06001697
1698 def testCompress(self):
1699 """Test compression of blobs"""
Simon Glassac62fba2019-07-08 13:18:53 -06001700 self._CheckLz4()
Simon Glass741f2d62018-10-01 12:22:30 -06001701 data, _, _, out_dtb_fname = self._DoReadFileDtb('083_compress.dts',
Simon Glass83d73c22018-09-14 04:57:26 -06001702 use_real_dtb=True, update_dtb=True)
1703 dtb = fdt.Fdt(out_dtb_fname)
1704 dtb.Scan()
1705 props = self._GetPropTree(dtb, ['size', 'uncomp-size'])
1706 orig = self._decompress(data)
1707 self.assertEquals(COMPRESS_DATA, orig)
1708 expected = {
1709 'blob:uncomp-size': len(COMPRESS_DATA),
1710 'blob:size': len(data),
1711 'size': len(data),
1712 }
1713 self.assertEqual(expected, props)
1714
Simon Glass0a98b282018-09-14 04:57:28 -06001715 def testFiles(self):
1716 """Test bringing in multiple files"""
Simon Glass741f2d62018-10-01 12:22:30 -06001717 data = self._DoReadFile('084_files.dts')
Simon Glass0a98b282018-09-14 04:57:28 -06001718 self.assertEqual(FILES_DATA, data)
1719
1720 def testFilesCompress(self):
1721 """Test bringing in multiple files and compressing them"""
Simon Glassac62fba2019-07-08 13:18:53 -06001722 self._CheckLz4()
Simon Glass741f2d62018-10-01 12:22:30 -06001723 data = self._DoReadFile('085_files_compress.dts')
Simon Glass0a98b282018-09-14 04:57:28 -06001724
1725 image = control.images['image']
1726 entries = image.GetEntries()
1727 files = entries['files']
Simon Glass8beb11e2019-07-08 14:25:47 -06001728 entries = files._entries
Simon Glass0a98b282018-09-14 04:57:28 -06001729
Simon Glassc6c10e72019-05-17 22:00:46 -06001730 orig = b''
Simon Glass0a98b282018-09-14 04:57:28 -06001731 for i in range(1, 3):
1732 key = '%d.dat' % i
1733 start = entries[key].image_pos
1734 len = entries[key].size
1735 chunk = data[start:start + len]
1736 orig += self._decompress(chunk)
1737
1738 self.assertEqual(FILES_DATA, orig)
1739
1740 def testFilesMissing(self):
1741 """Test missing files"""
1742 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001743 data = self._DoReadFile('086_files_none.dts')
Simon Glass0a98b282018-09-14 04:57:28 -06001744 self.assertIn("Node '/binman/files': Pattern \'files/*.none\' matched "
1745 'no files', str(e.exception))
1746
1747 def testFilesNoPattern(self):
1748 """Test missing files"""
1749 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001750 data = self._DoReadFile('087_files_no_pattern.dts')
Simon Glass0a98b282018-09-14 04:57:28 -06001751 self.assertIn("Node '/binman/files': Missing 'pattern' property",
1752 str(e.exception))
1753
Simon Glassba64a0b2018-09-14 04:57:29 -06001754 def testExpandSize(self):
1755 """Test an expanding entry"""
Simon Glass741f2d62018-10-01 12:22:30 -06001756 data, _, map_data, _ = self._DoReadFileDtb('088_expand_size.dts',
Simon Glassba64a0b2018-09-14 04:57:29 -06001757 map=True)
Simon Glassc6c10e72019-05-17 22:00:46 -06001758 expect = (tools.GetBytes(ord('a'), 8) + U_BOOT_DATA +
1759 MRC_DATA + tools.GetBytes(ord('b'), 1) + U_BOOT_DATA +
1760 tools.GetBytes(ord('c'), 8) + U_BOOT_DATA +
1761 tools.GetBytes(ord('d'), 8))
Simon Glassba64a0b2018-09-14 04:57:29 -06001762 self.assertEqual(expect, data)
1763 self.assertEqual('''ImagePos Offset Size Name
176400000000 00000000 00000028 main-section
176500000000 00000000 00000008 fill
176600000008 00000008 00000004 u-boot
17670000000c 0000000c 00000004 section
17680000000c 00000000 00000003 intel-mrc
176900000010 00000010 00000004 u-boot2
177000000014 00000014 0000000c section2
177100000014 00000000 00000008 fill
17720000001c 00000008 00000004 u-boot
177300000020 00000020 00000008 fill2
1774''', map_data)
1775
1776 def testExpandSizeBad(self):
1777 """Test an expanding entry which fails to provide contents"""
Simon Glass163ed6c2018-09-14 04:57:36 -06001778 with test_util.capture_sys_output() as (stdout, stderr):
1779 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001780 self._DoReadFileDtb('089_expand_size_bad.dts', map=True)
Simon Glassba64a0b2018-09-14 04:57:29 -06001781 self.assertIn("Node '/binman/_testing': Cannot obtain contents when "
1782 'expanding entry', str(e.exception))
1783
Simon Glasse0e5df92018-09-14 04:57:31 -06001784 def testHash(self):
1785 """Test hashing of the contents of an entry"""
Simon Glass741f2d62018-10-01 12:22:30 -06001786 _, _, _, out_dtb_fname = self._DoReadFileDtb('090_hash.dts',
Simon Glasse0e5df92018-09-14 04:57:31 -06001787 use_real_dtb=True, update_dtb=True)
1788 dtb = fdt.Fdt(out_dtb_fname)
1789 dtb.Scan()
1790 hash_node = dtb.GetNode('/binman/u-boot/hash').props['value']
1791 m = hashlib.sha256()
1792 m.update(U_BOOT_DATA)
Simon Glassc6c10e72019-05-17 22:00:46 -06001793 self.assertEqual(m.digest(), b''.join(hash_node.value))
Simon Glasse0e5df92018-09-14 04:57:31 -06001794
1795 def testHashNoAlgo(self):
1796 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001797 self._DoReadFileDtb('091_hash_no_algo.dts', update_dtb=True)
Simon Glasse0e5df92018-09-14 04:57:31 -06001798 self.assertIn("Node \'/binman/u-boot\': Missing \'algo\' property for "
1799 'hash node', str(e.exception))
1800
1801 def testHashBadAlgo(self):
1802 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001803 self._DoReadFileDtb('092_hash_bad_algo.dts', update_dtb=True)
Simon Glasse0e5df92018-09-14 04:57:31 -06001804 self.assertIn("Node '/binman/u-boot': Unknown hash algorithm",
1805 str(e.exception))
1806
1807 def testHashSection(self):
1808 """Test hashing of the contents of an entry"""
Simon Glass741f2d62018-10-01 12:22:30 -06001809 _, _, _, out_dtb_fname = self._DoReadFileDtb('099_hash_section.dts',
Simon Glasse0e5df92018-09-14 04:57:31 -06001810 use_real_dtb=True, update_dtb=True)
1811 dtb = fdt.Fdt(out_dtb_fname)
1812 dtb.Scan()
1813 hash_node = dtb.GetNode('/binman/section/hash').props['value']
1814 m = hashlib.sha256()
1815 m.update(U_BOOT_DATA)
Simon Glassc6c10e72019-05-17 22:00:46 -06001816 m.update(tools.GetBytes(ord('a'), 16))
1817 self.assertEqual(m.digest(), b''.join(hash_node.value))
Simon Glasse0e5df92018-09-14 04:57:31 -06001818
Simon Glassf0253632018-09-14 04:57:32 -06001819 def testPackUBootTplMicrocode(self):
1820 """Test that x86 microcode can be handled correctly in TPL
1821
1822 We expect to see the following in the image, in order:
1823 u-boot-tpl-nodtb.bin with a microcode pointer inserted at the correct
1824 place
1825 u-boot-tpl.dtb with the microcode removed
1826 the microcode
1827 """
Simon Glass2090f1e2019-08-24 07:23:00 -06001828 self._SetupTplElf('u_boot_ucode_ptr')
Simon Glass741f2d62018-10-01 12:22:30 -06001829 first, pos_and_size = self._RunMicrocodeTest('093_x86_tpl_ucode.dts',
Simon Glassf0253632018-09-14 04:57:32 -06001830 U_BOOT_TPL_NODTB_DATA)
Simon Glassc6c10e72019-05-17 22:00:46 -06001831 self.assertEqual(b'tplnodtb with microc' + pos_and_size +
1832 b'ter somewhere in here', first)
Simon Glassf0253632018-09-14 04:57:32 -06001833
Simon Glassf8f8df62018-09-14 04:57:34 -06001834 def testFmapX86(self):
1835 """Basic test of generation of a flashrom fmap"""
Simon Glass741f2d62018-10-01 12:22:30 -06001836 data = self._DoReadFile('094_fmap_x86.dts')
Simon Glassf8f8df62018-09-14 04:57:34 -06001837 fhdr, fentries = fmap_util.DecodeFmap(data[32:])
Simon Glassc6c10e72019-05-17 22:00:46 -06001838 expected = U_BOOT_DATA + MRC_DATA + tools.GetBytes(ord('a'), 32 - 7)
Simon Glassf8f8df62018-09-14 04:57:34 -06001839 self.assertEqual(expected, data[:32])
1840 fhdr, fentries = fmap_util.DecodeFmap(data[32:])
1841
1842 self.assertEqual(0x100, fhdr.image_size)
1843
1844 self.assertEqual(0, fentries[0].offset)
1845 self.assertEqual(4, fentries[0].size)
Simon Glassc6c10e72019-05-17 22:00:46 -06001846 self.assertEqual(b'U_BOOT', fentries[0].name)
Simon Glassf8f8df62018-09-14 04:57:34 -06001847
1848 self.assertEqual(4, fentries[1].offset)
1849 self.assertEqual(3, fentries[1].size)
Simon Glassc6c10e72019-05-17 22:00:46 -06001850 self.assertEqual(b'INTEL_MRC', fentries[1].name)
Simon Glassf8f8df62018-09-14 04:57:34 -06001851
1852 self.assertEqual(32, fentries[2].offset)
1853 self.assertEqual(fmap_util.FMAP_HEADER_LEN +
1854 fmap_util.FMAP_AREA_LEN * 3, fentries[2].size)
Simon Glassc6c10e72019-05-17 22:00:46 -06001855 self.assertEqual(b'FMAP', fentries[2].name)
Simon Glassf8f8df62018-09-14 04:57:34 -06001856
1857 def testFmapX86Section(self):
1858 """Basic test of generation of a flashrom fmap"""
Simon Glass741f2d62018-10-01 12:22:30 -06001859 data = self._DoReadFile('095_fmap_x86_section.dts')
Simon Glassc6c10e72019-05-17 22:00:46 -06001860 expected = U_BOOT_DATA + MRC_DATA + tools.GetBytes(ord('b'), 32 - 7)
Simon Glassf8f8df62018-09-14 04:57:34 -06001861 self.assertEqual(expected, data[:32])
1862 fhdr, fentries = fmap_util.DecodeFmap(data[36:])
1863
1864 self.assertEqual(0x100, fhdr.image_size)
1865
1866 self.assertEqual(0, fentries[0].offset)
1867 self.assertEqual(4, fentries[0].size)
Simon Glassc6c10e72019-05-17 22:00:46 -06001868 self.assertEqual(b'U_BOOT', fentries[0].name)
Simon Glassf8f8df62018-09-14 04:57:34 -06001869
1870 self.assertEqual(4, fentries[1].offset)
1871 self.assertEqual(3, fentries[1].size)
Simon Glassc6c10e72019-05-17 22:00:46 -06001872 self.assertEqual(b'INTEL_MRC', fentries[1].name)
Simon Glassf8f8df62018-09-14 04:57:34 -06001873
1874 self.assertEqual(36, fentries[2].offset)
1875 self.assertEqual(fmap_util.FMAP_HEADER_LEN +
1876 fmap_util.FMAP_AREA_LEN * 3, fentries[2].size)
Simon Glassc6c10e72019-05-17 22:00:46 -06001877 self.assertEqual(b'FMAP', fentries[2].name)
Simon Glassf8f8df62018-09-14 04:57:34 -06001878
Simon Glassfe1ae3e2018-09-14 04:57:35 -06001879 def testElf(self):
1880 """Basic test of ELF entries"""
Simon Glass11ae93e2018-10-01 21:12:47 -06001881 self._SetupSplElf()
Simon Glass2090f1e2019-08-24 07:23:00 -06001882 self._SetupTplElf()
Simon Glass53e22bf2019-08-24 07:22:53 -06001883 with open(self.ElfTestFile('bss_data'), 'rb') as fd:
Simon Glassfe1ae3e2018-09-14 04:57:35 -06001884 TestFunctional._MakeInputFile('-boot', fd.read())
Simon Glass741f2d62018-10-01 12:22:30 -06001885 data = self._DoReadFile('096_elf.dts')
Simon Glassfe1ae3e2018-09-14 04:57:35 -06001886
Simon Glass093d1682019-07-08 13:18:25 -06001887 def testElfStrip(self):
Simon Glassfe1ae3e2018-09-14 04:57:35 -06001888 """Basic test of ELF entries"""
Simon Glass11ae93e2018-10-01 21:12:47 -06001889 self._SetupSplElf()
Simon Glass53e22bf2019-08-24 07:22:53 -06001890 with open(self.ElfTestFile('bss_data'), 'rb') as fd:
Simon Glassfe1ae3e2018-09-14 04:57:35 -06001891 TestFunctional._MakeInputFile('-boot', fd.read())
Simon Glass741f2d62018-10-01 12:22:30 -06001892 data = self._DoReadFile('097_elf_strip.dts')
Simon Glassfe1ae3e2018-09-14 04:57:35 -06001893
Simon Glass163ed6c2018-09-14 04:57:36 -06001894 def testPackOverlapMap(self):
1895 """Test that overlapping regions are detected"""
1896 with test_util.capture_sys_output() as (stdout, stderr):
1897 with self.assertRaises(ValueError) as e:
Simon Glass741f2d62018-10-01 12:22:30 -06001898 self._DoTestFile('014_pack_overlap.dts', map=True)
Simon Glass163ed6c2018-09-14 04:57:36 -06001899 map_fname = tools.GetOutputFilename('image.map')
1900 self.assertEqual("Wrote map file '%s' to show errors\n" % map_fname,
1901 stdout.getvalue())
1902
1903 # We should not get an inmage, but there should be a map file
1904 self.assertFalse(os.path.exists(tools.GetOutputFilename('image.bin')))
1905 self.assertTrue(os.path.exists(map_fname))
Simon Glasseb546ac2019-05-17 22:00:51 -06001906 map_data = tools.ReadFile(map_fname, binary=False)
Simon Glass163ed6c2018-09-14 04:57:36 -06001907 self.assertEqual('''ImagePos Offset Size Name
1908<none> 00000000 00000007 main-section
1909<none> 00000000 00000004 u-boot
1910<none> 00000003 00000004 u-boot-align
1911''', map_data)
1912
Simon Glass093d1682019-07-08 13:18:25 -06001913 def testPackRefCode(self):
Simon Glass3ae192c2018-10-01 12:22:31 -06001914 """Test that an image with an Intel Reference code binary works"""
1915 data = self._DoReadFile('100_intel_refcode.dts')
1916 self.assertEqual(REFCODE_DATA, data[:len(REFCODE_DATA)])
1917
Simon Glass9481c802019-04-25 21:58:39 -06001918 def testSectionOffset(self):
1919 """Tests use of a section with an offset"""
1920 data, _, map_data, _ = self._DoReadFileDtb('101_sections_offset.dts',
1921 map=True)
1922 self.assertEqual('''ImagePos Offset Size Name
192300000000 00000000 00000038 main-section
192400000004 00000004 00000010 section@0
192500000004 00000000 00000004 u-boot
192600000018 00000018 00000010 section@1
192700000018 00000000 00000004 u-boot
19280000002c 0000002c 00000004 section@2
19290000002c 00000000 00000004 u-boot
1930''', map_data)
1931 self.assertEqual(data,
Simon Glasse6d85ff2019-05-14 15:53:47 -06001932 tools.GetBytes(0x26, 4) + U_BOOT_DATA +
1933 tools.GetBytes(0x21, 12) +
1934 tools.GetBytes(0x26, 4) + U_BOOT_DATA +
1935 tools.GetBytes(0x61, 12) +
1936 tools.GetBytes(0x26, 4) + U_BOOT_DATA +
1937 tools.GetBytes(0x26, 8))
Simon Glass9481c802019-04-25 21:58:39 -06001938
Simon Glassac62fba2019-07-08 13:18:53 -06001939 def testCbfsRaw(self):
1940 """Test base handling of a Coreboot Filesystem (CBFS)
1941
1942 The exact contents of the CBFS is verified by similar tests in
1943 cbfs_util_test.py. The tests here merely check that the files added to
1944 the CBFS can be found in the final image.
1945 """
1946 data = self._DoReadFile('102_cbfs_raw.dts')
1947 size = 0xb0
1948
1949 cbfs = cbfs_util.CbfsReader(data)
1950 self.assertEqual(size, cbfs.rom_size)
1951
1952 self.assertIn('u-boot-dtb', cbfs.files)
1953 cfile = cbfs.files['u-boot-dtb']
1954 self.assertEqual(U_BOOT_DTB_DATA, cfile.data)
1955
1956 def testCbfsArch(self):
1957 """Test on non-x86 architecture"""
1958 data = self._DoReadFile('103_cbfs_raw_ppc.dts')
1959 size = 0x100
1960
1961 cbfs = cbfs_util.CbfsReader(data)
1962 self.assertEqual(size, cbfs.rom_size)
1963
1964 self.assertIn('u-boot-dtb', cbfs.files)
1965 cfile = cbfs.files['u-boot-dtb']
1966 self.assertEqual(U_BOOT_DTB_DATA, cfile.data)
1967
1968 def testCbfsStage(self):
1969 """Tests handling of a Coreboot Filesystem (CBFS)"""
1970 if not elf.ELF_TOOLS:
1971 self.skipTest('Python elftools not available')
1972 elf_fname = os.path.join(self._indir, 'cbfs-stage.elf')
1973 elf.MakeElf(elf_fname, U_BOOT_DATA, U_BOOT_DTB_DATA)
1974 size = 0xb0
1975
1976 data = self._DoReadFile('104_cbfs_stage.dts')
1977 cbfs = cbfs_util.CbfsReader(data)
1978 self.assertEqual(size, cbfs.rom_size)
1979
1980 self.assertIn('u-boot', cbfs.files)
1981 cfile = cbfs.files['u-boot']
1982 self.assertEqual(U_BOOT_DATA + U_BOOT_DTB_DATA, cfile.data)
1983
1984 def testCbfsRawCompress(self):
1985 """Test handling of compressing raw files"""
1986 self._CheckLz4()
1987 data = self._DoReadFile('105_cbfs_raw_compress.dts')
1988 size = 0x140
1989
1990 cbfs = cbfs_util.CbfsReader(data)
1991 self.assertIn('u-boot', cbfs.files)
1992 cfile = cbfs.files['u-boot']
1993 self.assertEqual(COMPRESS_DATA, cfile.data)
1994
1995 def testCbfsBadArch(self):
1996 """Test handling of a bad architecture"""
1997 with self.assertRaises(ValueError) as e:
1998 self._DoReadFile('106_cbfs_bad_arch.dts')
1999 self.assertIn("Invalid architecture 'bad-arch'", str(e.exception))
2000
2001 def testCbfsNoSize(self):
2002 """Test handling of a missing size property"""
2003 with self.assertRaises(ValueError) as e:
2004 self._DoReadFile('107_cbfs_no_size.dts')
2005 self.assertIn('entry must have a size property', str(e.exception))
2006
2007 def testCbfsNoCOntents(self):
2008 """Test handling of a CBFS entry which does not provide contentsy"""
2009 with self.assertRaises(ValueError) as e:
2010 self._DoReadFile('108_cbfs_no_contents.dts')
2011 self.assertIn('Could not complete processing of contents',
2012 str(e.exception))
2013
2014 def testCbfsBadCompress(self):
2015 """Test handling of a bad architecture"""
2016 with self.assertRaises(ValueError) as e:
2017 self._DoReadFile('109_cbfs_bad_compress.dts')
2018 self.assertIn("Invalid compression in 'u-boot': 'invalid-algo'",
2019 str(e.exception))
2020
2021 def testCbfsNamedEntries(self):
2022 """Test handling of named entries"""
2023 data = self._DoReadFile('110_cbfs_name.dts')
2024
2025 cbfs = cbfs_util.CbfsReader(data)
2026 self.assertIn('FRED', cbfs.files)
2027 cfile1 = cbfs.files['FRED']
2028 self.assertEqual(U_BOOT_DATA, cfile1.data)
2029
2030 self.assertIn('hello', cbfs.files)
2031 cfile2 = cbfs.files['hello']
2032 self.assertEqual(U_BOOT_DTB_DATA, cfile2.data)
2033
Simon Glassc5ac1382019-07-08 13:18:54 -06002034 def _SetupIfwi(self, fname):
2035 """Set up to run an IFWI test
2036
2037 Args:
2038 fname: Filename of input file to provide (fitimage.bin or ifwi.bin)
2039 """
2040 self._SetupSplElf()
Simon Glass2090f1e2019-08-24 07:23:00 -06002041 self._SetupTplElf()
Simon Glassc5ac1382019-07-08 13:18:54 -06002042
2043 # Intel Integrated Firmware Image (IFWI) file
2044 with gzip.open(self.TestFile('%s.gz' % fname), 'rb') as fd:
2045 data = fd.read()
2046 TestFunctional._MakeInputFile(fname,data)
2047
2048 def _CheckIfwi(self, data):
2049 """Check that an image with an IFWI contains the correct output
2050
2051 Args:
2052 data: Conents of output file
2053 """
2054 expected_desc = tools.ReadFile(self.TestFile('descriptor.bin'))
2055 if data[:0x1000] != expected_desc:
2056 self.fail('Expected descriptor binary at start of image')
2057
2058 # We expect to find the TPL wil in subpart IBBP entry IBBL
2059 image_fname = tools.GetOutputFilename('image.bin')
2060 tpl_fname = tools.GetOutputFilename('tpl.out')
2061 tools.RunIfwiTool(image_fname, tools.CMD_EXTRACT, fname=tpl_fname,
2062 subpart='IBBP', entry_name='IBBL')
2063
2064 tpl_data = tools.ReadFile(tpl_fname)
Simon Glasse95be632019-08-24 07:22:51 -06002065 self.assertEqual(U_BOOT_TPL_DATA, tpl_data[:len(U_BOOT_TPL_DATA)])
Simon Glassc5ac1382019-07-08 13:18:54 -06002066
2067 def testPackX86RomIfwi(self):
2068 """Test that an x86 ROM with Integrated Firmware Image can be created"""
2069 self._SetupIfwi('fitimage.bin')
Simon Glass9255f3c2019-08-24 07:23:01 -06002070 data = self._DoReadFile('111_x86_rom_ifwi.dts')
Simon Glassc5ac1382019-07-08 13:18:54 -06002071 self._CheckIfwi(data)
2072
2073 def testPackX86RomIfwiNoDesc(self):
2074 """Test that an x86 ROM with IFWI can be created from an ifwi.bin file"""
2075 self._SetupIfwi('ifwi.bin')
Simon Glass9255f3c2019-08-24 07:23:01 -06002076 data = self._DoReadFile('112_x86_rom_ifwi_nodesc.dts')
Simon Glassc5ac1382019-07-08 13:18:54 -06002077 self._CheckIfwi(data)
2078
2079 def testPackX86RomIfwiNoData(self):
2080 """Test that an x86 ROM with IFWI handles missing data"""
2081 self._SetupIfwi('ifwi.bin')
2082 with self.assertRaises(ValueError) as e:
Simon Glass9255f3c2019-08-24 07:23:01 -06002083 data = self._DoReadFile('113_x86_rom_ifwi_nodata.dts')
Simon Glassc5ac1382019-07-08 13:18:54 -06002084 self.assertIn('Could not complete processing of contents',
2085 str(e.exception))
Simon Glass53af22a2018-07-17 13:25:32 -06002086
Simon Glasse073d4e2019-07-08 13:18:56 -06002087 def testCbfsOffset(self):
2088 """Test a CBFS with files at particular offsets
2089
2090 Like all CFBS tests, this is just checking the logic that calls
2091 cbfs_util. See cbfs_util_test for fully tests (e.g. test_cbfs_offset()).
2092 """
2093 data = self._DoReadFile('114_cbfs_offset.dts')
2094 size = 0x200
2095
2096 cbfs = cbfs_util.CbfsReader(data)
2097 self.assertEqual(size, cbfs.rom_size)
2098
2099 self.assertIn('u-boot', cbfs.files)
2100 cfile = cbfs.files['u-boot']
2101 self.assertEqual(U_BOOT_DATA, cfile.data)
2102 self.assertEqual(0x40, cfile.cbfs_offset)
2103
2104 self.assertIn('u-boot-dtb', cbfs.files)
2105 cfile2 = cbfs.files['u-boot-dtb']
2106 self.assertEqual(U_BOOT_DTB_DATA, cfile2.data)
2107 self.assertEqual(0x140, cfile2.cbfs_offset)
2108
Simon Glass086cec92019-07-08 14:25:27 -06002109 def testFdtmap(self):
2110 """Test an FDT map can be inserted in the image"""
2111 data = self.data = self._DoReadFileRealDtb('115_fdtmap.dts')
2112 fdtmap_data = data[len(U_BOOT_DATA):]
2113 magic = fdtmap_data[:8]
2114 self.assertEqual('_FDTMAP_', magic)
2115 self.assertEqual(tools.GetBytes(0, 8), fdtmap_data[8:16])
2116
2117 fdt_data = fdtmap_data[16:]
2118 dtb = fdt.Fdt.FromData(fdt_data)
2119 dtb.Scan()
Simon Glass6ccbfcd2019-07-20 12:23:47 -06002120 props = self._GetPropTree(dtb, BASE_DTB_PROPS, prefix='/')
Simon Glass086cec92019-07-08 14:25:27 -06002121 self.assertEqual({
2122 'image-pos': 0,
2123 'offset': 0,
2124 'u-boot:offset': 0,
2125 'u-boot:size': len(U_BOOT_DATA),
2126 'u-boot:image-pos': 0,
2127 'fdtmap:image-pos': 4,
2128 'fdtmap:offset': 4,
2129 'fdtmap:size': len(fdtmap_data),
2130 'size': len(data),
2131 }, props)
2132
2133 def testFdtmapNoMatch(self):
2134 """Check handling of an FDT map when the section cannot be found"""
2135 self.data = self._DoReadFileRealDtb('115_fdtmap.dts')
2136
2137 # Mangle the section name, which should cause a mismatch between the
2138 # correct FDT path and the one expected by the section
2139 image = control.images['image']
Simon Glasscf228942019-07-08 14:25:28 -06002140 image._node.path += '-suffix'
Simon Glass086cec92019-07-08 14:25:27 -06002141 entries = image.GetEntries()
2142 fdtmap = entries['fdtmap']
2143 with self.assertRaises(ValueError) as e:
2144 fdtmap._GetFdtmap()
2145 self.assertIn("Cannot locate node for path '/binman-suffix'",
2146 str(e.exception))
2147
Simon Glasscf228942019-07-08 14:25:28 -06002148 def testFdtmapHeader(self):
2149 """Test an FDT map and image header can be inserted in the image"""
2150 data = self.data = self._DoReadFileRealDtb('116_fdtmap_hdr.dts')
2151 fdtmap_pos = len(U_BOOT_DATA)
2152 fdtmap_data = data[fdtmap_pos:]
2153 fdt_data = fdtmap_data[16:]
2154 dtb = fdt.Fdt.FromData(fdt_data)
2155 fdt_size = dtb.GetFdtObj().totalsize()
2156 hdr_data = data[-8:]
2157 self.assertEqual('BinM', hdr_data[:4])
2158 offset = struct.unpack('<I', hdr_data[4:])[0] & 0xffffffff
2159 self.assertEqual(fdtmap_pos - 0x400, offset - (1 << 32))
2160
2161 def testFdtmapHeaderStart(self):
2162 """Test an image header can be inserted at the image start"""
2163 data = self.data = self._DoReadFileRealDtb('117_fdtmap_hdr_start.dts')
2164 fdtmap_pos = 0x100 + len(U_BOOT_DATA)
2165 hdr_data = data[:8]
2166 self.assertEqual('BinM', hdr_data[:4])
2167 offset = struct.unpack('<I', hdr_data[4:])[0]
2168 self.assertEqual(fdtmap_pos, offset)
2169
2170 def testFdtmapHeaderPos(self):
2171 """Test an image header can be inserted at a chosen position"""
2172 data = self.data = self._DoReadFileRealDtb('118_fdtmap_hdr_pos.dts')
2173 fdtmap_pos = 0x100 + len(U_BOOT_DATA)
2174 hdr_data = data[0x80:0x88]
2175 self.assertEqual('BinM', hdr_data[:4])
2176 offset = struct.unpack('<I', hdr_data[4:])[0]
2177 self.assertEqual(fdtmap_pos, offset)
2178
2179 def testHeaderMissingFdtmap(self):
2180 """Test an image header requires an fdtmap"""
2181 with self.assertRaises(ValueError) as e:
2182 self.data = self._DoReadFileRealDtb('119_fdtmap_hdr_missing.dts')
2183 self.assertIn("'image_header' section must have an 'fdtmap' sibling",
2184 str(e.exception))
2185
2186 def testHeaderNoLocation(self):
2187 """Test an image header with a no specified location is detected"""
2188 with self.assertRaises(ValueError) as e:
2189 self.data = self._DoReadFileRealDtb('120_hdr_no_location.dts')
2190 self.assertIn("Invalid location 'None', expected 'start' or 'end'",
2191 str(e.exception))
2192
Simon Glassc52c9e72019-07-08 14:25:37 -06002193 def testEntryExpand(self):
2194 """Test expanding an entry after it is packed"""
2195 data = self._DoReadFile('121_entry_expand.dts')
Simon Glass79d3c582019-07-20 12:23:57 -06002196 self.assertEqual(b'aaa', data[:3])
2197 self.assertEqual(U_BOOT_DATA, data[3:3 + len(U_BOOT_DATA)])
2198 self.assertEqual(b'aaa', data[-3:])
Simon Glassc52c9e72019-07-08 14:25:37 -06002199
2200 def testEntryExpandBad(self):
2201 """Test expanding an entry after it is packed, twice"""
2202 with self.assertRaises(ValueError) as e:
2203 self._DoReadFile('122_entry_expand_twice.dts')
Simon Glass61ec04f2019-07-20 12:23:58 -06002204 self.assertIn("Image '/binman': Entries changed size after packing",
Simon Glassc52c9e72019-07-08 14:25:37 -06002205 str(e.exception))
2206
2207 def testEntryExpandSection(self):
2208 """Test expanding an entry within a section after it is packed"""
2209 data = self._DoReadFile('123_entry_expand_section.dts')
Simon Glass79d3c582019-07-20 12:23:57 -06002210 self.assertEqual(b'aaa', data[:3])
2211 self.assertEqual(U_BOOT_DATA, data[3:3 + len(U_BOOT_DATA)])
2212 self.assertEqual(b'aaa', data[-3:])
Simon Glassc52c9e72019-07-08 14:25:37 -06002213
Simon Glass6c223fd2019-07-08 14:25:38 -06002214 def testCompressDtb(self):
2215 """Test that compress of device-tree files is supported"""
2216 self._CheckLz4()
2217 data = self.data = self._DoReadFileRealDtb('124_compress_dtb.dts')
2218 self.assertEqual(U_BOOT_DATA, data[:len(U_BOOT_DATA)])
2219 comp_data = data[len(U_BOOT_DATA):]
2220 orig = self._decompress(comp_data)
2221 dtb = fdt.Fdt.FromData(orig)
2222 dtb.Scan()
2223 props = self._GetPropTree(dtb, ['size', 'uncomp-size'])
2224 expected = {
2225 'u-boot:size': len(U_BOOT_DATA),
2226 'u-boot-dtb:uncomp-size': len(orig),
2227 'u-boot-dtb:size': len(comp_data),
2228 'size': len(data),
2229 }
2230 self.assertEqual(expected, props)
2231
Simon Glass69f7cb32019-07-08 14:25:41 -06002232 def testCbfsUpdateFdt(self):
2233 """Test that we can update the device tree with CBFS offset/size info"""
2234 self._CheckLz4()
2235 data, _, _, out_dtb_fname = self._DoReadFileDtb('125_cbfs_update.dts',
2236 update_dtb=True)
2237 dtb = fdt.Fdt(out_dtb_fname)
2238 dtb.Scan()
Simon Glass6ccbfcd2019-07-20 12:23:47 -06002239 props = self._GetPropTree(dtb, BASE_DTB_PROPS + ['uncomp-size'])
Simon Glass69f7cb32019-07-08 14:25:41 -06002240 del props['cbfs/u-boot:size']
2241 self.assertEqual({
2242 'offset': 0,
2243 'size': len(data),
2244 'image-pos': 0,
2245 'cbfs:offset': 0,
2246 'cbfs:size': len(data),
2247 'cbfs:image-pos': 0,
2248 'cbfs/u-boot:offset': 0x38,
2249 'cbfs/u-boot:uncomp-size': len(U_BOOT_DATA),
2250 'cbfs/u-boot:image-pos': 0x38,
2251 'cbfs/u-boot-dtb:offset': 0xb8,
2252 'cbfs/u-boot-dtb:size': len(U_BOOT_DATA),
2253 'cbfs/u-boot-dtb:image-pos': 0xb8,
2254 }, props)
2255
Simon Glass8a1ad062019-07-08 14:25:42 -06002256 def testCbfsBadType(self):
2257 """Test an image header with a no specified location is detected"""
2258 with self.assertRaises(ValueError) as e:
2259 self._DoReadFile('126_cbfs_bad_type.dts')
2260 self.assertIn("Unknown cbfs-type 'badtype'", str(e.exception))
2261
Simon Glass41b8ba02019-07-08 14:25:43 -06002262 def testList(self):
2263 """Test listing the files in an image"""
2264 self._CheckLz4()
2265 data = self._DoReadFile('127_list.dts')
2266 image = control.images['image']
2267 entries = image.BuildEntryList()
2268 self.assertEqual(7, len(entries))
2269
2270 ent = entries[0]
2271 self.assertEqual(0, ent.indent)
2272 self.assertEqual('main-section', ent.name)
2273 self.assertEqual('section', ent.etype)
2274 self.assertEqual(len(data), ent.size)
2275 self.assertEqual(0, ent.image_pos)
2276 self.assertEqual(None, ent.uncomp_size)
Simon Glass8beb11e2019-07-08 14:25:47 -06002277 self.assertEqual(0, ent.offset)
Simon Glass41b8ba02019-07-08 14:25:43 -06002278
2279 ent = entries[1]
2280 self.assertEqual(1, ent.indent)
2281 self.assertEqual('u-boot', ent.name)
2282 self.assertEqual('u-boot', ent.etype)
2283 self.assertEqual(len(U_BOOT_DATA), ent.size)
2284 self.assertEqual(0, ent.image_pos)
2285 self.assertEqual(None, ent.uncomp_size)
2286 self.assertEqual(0, ent.offset)
2287
2288 ent = entries[2]
2289 self.assertEqual(1, ent.indent)
2290 self.assertEqual('section', ent.name)
2291 self.assertEqual('section', ent.etype)
2292 section_size = ent.size
2293 self.assertEqual(0x100, ent.image_pos)
2294 self.assertEqual(None, ent.uncomp_size)
Simon Glass8beb11e2019-07-08 14:25:47 -06002295 self.assertEqual(0x100, ent.offset)
Simon Glass41b8ba02019-07-08 14:25:43 -06002296
2297 ent = entries[3]
2298 self.assertEqual(2, ent.indent)
2299 self.assertEqual('cbfs', ent.name)
2300 self.assertEqual('cbfs', ent.etype)
2301 self.assertEqual(0x400, ent.size)
2302 self.assertEqual(0x100, ent.image_pos)
2303 self.assertEqual(None, ent.uncomp_size)
2304 self.assertEqual(0, ent.offset)
2305
2306 ent = entries[4]
2307 self.assertEqual(3, ent.indent)
2308 self.assertEqual('u-boot', ent.name)
2309 self.assertEqual('u-boot', ent.etype)
2310 self.assertEqual(len(U_BOOT_DATA), ent.size)
2311 self.assertEqual(0x138, ent.image_pos)
2312 self.assertEqual(None, ent.uncomp_size)
2313 self.assertEqual(0x38, ent.offset)
2314
2315 ent = entries[5]
2316 self.assertEqual(3, ent.indent)
2317 self.assertEqual('u-boot-dtb', ent.name)
2318 self.assertEqual('text', ent.etype)
2319 self.assertGreater(len(COMPRESS_DATA), ent.size)
2320 self.assertEqual(0x178, ent.image_pos)
2321 self.assertEqual(len(COMPRESS_DATA), ent.uncomp_size)
2322 self.assertEqual(0x78, ent.offset)
2323
2324 ent = entries[6]
2325 self.assertEqual(2, ent.indent)
2326 self.assertEqual('u-boot-dtb', ent.name)
2327 self.assertEqual('u-boot-dtb', ent.etype)
2328 self.assertEqual(0x500, ent.image_pos)
2329 self.assertEqual(len(U_BOOT_DTB_DATA), ent.uncomp_size)
2330 dtb_size = ent.size
2331 # Compressing this data expands it since headers are added
2332 self.assertGreater(dtb_size, len(U_BOOT_DTB_DATA))
2333 self.assertEqual(0x400, ent.offset)
2334
2335 self.assertEqual(len(data), 0x100 + section_size)
2336 self.assertEqual(section_size, 0x400 + dtb_size)
2337
Simon Glasse1925fa2019-07-08 14:25:44 -06002338 def testFindFdtmap(self):
2339 """Test locating an FDT map in an image"""
2340 self._CheckLz4()
2341 data = self.data = self._DoReadFileRealDtb('128_decode_image.dts')
2342 image = control.images['image']
2343 entries = image.GetEntries()
2344 entry = entries['fdtmap']
2345 self.assertEqual(entry.image_pos, fdtmap.LocateFdtmap(data))
2346
2347 def testFindFdtmapMissing(self):
2348 """Test failing to locate an FDP map"""
2349 data = self._DoReadFile('005_simple.dts')
2350 self.assertEqual(None, fdtmap.LocateFdtmap(data))
2351
Simon Glass2d260032019-07-08 14:25:45 -06002352 def testFindImageHeader(self):
2353 """Test locating a image header"""
2354 self._CheckLz4()
Simon Glassffded752019-07-08 14:25:46 -06002355 data = self.data = self._DoReadFileRealDtb('128_decode_image.dts')
Simon Glass2d260032019-07-08 14:25:45 -06002356 image = control.images['image']
2357 entries = image.GetEntries()
2358 entry = entries['fdtmap']
2359 # The header should point to the FDT map
2360 self.assertEqual(entry.image_pos, image_header.LocateHeaderOffset(data))
2361
2362 def testFindImageHeaderStart(self):
2363 """Test locating a image header located at the start of an image"""
Simon Glassffded752019-07-08 14:25:46 -06002364 data = self.data = self._DoReadFileRealDtb('117_fdtmap_hdr_start.dts')
Simon Glass2d260032019-07-08 14:25:45 -06002365 image = control.images['image']
2366 entries = image.GetEntries()
2367 entry = entries['fdtmap']
2368 # The header should point to the FDT map
2369 self.assertEqual(entry.image_pos, image_header.LocateHeaderOffset(data))
2370
2371 def testFindImageHeaderMissing(self):
2372 """Test failing to locate an image header"""
2373 data = self._DoReadFile('005_simple.dts')
2374 self.assertEqual(None, image_header.LocateHeaderOffset(data))
2375
Simon Glassffded752019-07-08 14:25:46 -06002376 def testReadImage(self):
2377 """Test reading an image and accessing its FDT map"""
2378 self._CheckLz4()
2379 data = self.data = self._DoReadFileRealDtb('128_decode_image.dts')
2380 image_fname = tools.GetOutputFilename('image.bin')
2381 orig_image = control.images['image']
2382 image = Image.FromFile(image_fname)
2383 self.assertEqual(orig_image.GetEntries().keys(),
2384 image.GetEntries().keys())
2385
2386 orig_entry = orig_image.GetEntries()['fdtmap']
2387 entry = image.GetEntries()['fdtmap']
2388 self.assertEquals(orig_entry.offset, entry.offset)
2389 self.assertEquals(orig_entry.size, entry.size)
2390 self.assertEquals(orig_entry.image_pos, entry.image_pos)
2391
2392 def testReadImageNoHeader(self):
2393 """Test accessing an image's FDT map without an image header"""
2394 self._CheckLz4()
2395 data = self._DoReadFileRealDtb('129_decode_image_nohdr.dts')
2396 image_fname = tools.GetOutputFilename('image.bin')
2397 image = Image.FromFile(image_fname)
2398 self.assertTrue(isinstance(image, Image))
Simon Glass10f9d002019-07-20 12:23:50 -06002399 self.assertEqual('image', image.image_name[-5:])
Simon Glassffded752019-07-08 14:25:46 -06002400
2401 def testReadImageFail(self):
2402 """Test failing to read an image image's FDT map"""
2403 self._DoReadFile('005_simple.dts')
2404 image_fname = tools.GetOutputFilename('image.bin')
2405 with self.assertRaises(ValueError) as e:
2406 image = Image.FromFile(image_fname)
2407 self.assertIn("Cannot find FDT map in image", str(e.exception))
Simon Glasse073d4e2019-07-08 13:18:56 -06002408
Simon Glass61f564d2019-07-08 14:25:48 -06002409 def testListCmd(self):
2410 """Test listing the files in an image using an Fdtmap"""
2411 self._CheckLz4()
2412 data = self._DoReadFileRealDtb('130_list_fdtmap.dts')
2413
2414 # lz4 compression size differs depending on the version
2415 image = control.images['image']
2416 entries = image.GetEntries()
2417 section_size = entries['section'].size
2418 fdt_size = entries['section'].GetEntries()['u-boot-dtb'].size
2419 fdtmap_offset = entries['fdtmap'].offset
2420
Simon Glassf86a7362019-07-20 12:24:10 -06002421 try:
2422 tmpdir, updated_fname = self._SetupImageInTmpdir()
2423 with test_util.capture_sys_output() as (stdout, stderr):
2424 self._DoBinman('ls', '-i', updated_fname)
2425 finally:
2426 shutil.rmtree(tmpdir)
Simon Glass61f564d2019-07-08 14:25:48 -06002427 lines = stdout.getvalue().splitlines()
2428 expected = [
2429'Name Image-pos Size Entry-type Offset Uncomp-size',
2430'----------------------------------------------------------------------',
2431'main-section 0 c00 section 0',
2432' u-boot 0 4 u-boot 0',
2433' section 100 %x section 100' % section_size,
2434' cbfs 100 400 cbfs 0',
2435' u-boot 138 4 u-boot 38',
2436' u-boot-dtb 180 10f u-boot-dtb 80 3c9',
2437' u-boot-dtb 500 %x u-boot-dtb 400 3c9' % fdt_size,
Simon Glass1411ac82019-07-20 12:23:44 -06002438' fdtmap %x 3b4 fdtmap %x' %
Simon Glass61f564d2019-07-08 14:25:48 -06002439 (fdtmap_offset, fdtmap_offset),
2440' image-header bf8 8 image-header bf8',
2441 ]
2442 self.assertEqual(expected, lines)
2443
2444 def testListCmdFail(self):
2445 """Test failing to list an image"""
2446 self._DoReadFile('005_simple.dts')
Simon Glassf86a7362019-07-20 12:24:10 -06002447 try:
2448 tmpdir, updated_fname = self._SetupImageInTmpdir()
2449 with self.assertRaises(ValueError) as e:
2450 self._DoBinman('ls', '-i', updated_fname)
2451 finally:
2452 shutil.rmtree(tmpdir)
Simon Glass61f564d2019-07-08 14:25:48 -06002453 self.assertIn("Cannot find FDT map in image", str(e.exception))
2454
2455 def _RunListCmd(self, paths, expected):
2456 """List out entries and check the result
2457
2458 Args:
2459 paths: List of paths to pass to the list command
2460 expected: Expected list of filenames to be returned, in order
2461 """
2462 self._CheckLz4()
2463 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2464 image_fname = tools.GetOutputFilename('image.bin')
2465 image = Image.FromFile(image_fname)
2466 lines = image.GetListEntries(paths)[1]
2467 files = [line[0].strip() for line in lines[1:]]
2468 self.assertEqual(expected, files)
2469
2470 def testListCmdSection(self):
2471 """Test listing the files in a section"""
2472 self._RunListCmd(['section'],
2473 ['section', 'cbfs', 'u-boot', 'u-boot-dtb', 'u-boot-dtb'])
2474
2475 def testListCmdFile(self):
2476 """Test listing a particular file"""
2477 self._RunListCmd(['*u-boot-dtb'], ['u-boot-dtb', 'u-boot-dtb'])
2478
2479 def testListCmdWildcard(self):
2480 """Test listing a wildcarded file"""
2481 self._RunListCmd(['*boot*'],
2482 ['u-boot', 'u-boot', 'u-boot-dtb', 'u-boot-dtb'])
2483
2484 def testListCmdWildcardMulti(self):
2485 """Test listing a wildcarded file"""
2486 self._RunListCmd(['*cb*', '*head*'],
2487 ['cbfs', 'u-boot', 'u-boot-dtb', 'image-header'])
2488
2489 def testListCmdEmpty(self):
2490 """Test listing a wildcarded file"""
2491 self._RunListCmd(['nothing'], [])
2492
2493 def testListCmdPath(self):
2494 """Test listing the files in a sub-entry of a section"""
2495 self._RunListCmd(['section/cbfs'], ['cbfs', 'u-boot', 'u-boot-dtb'])
2496
Simon Glassf667e452019-07-08 14:25:50 -06002497 def _RunExtractCmd(self, entry_name, decomp=True):
2498 """Extract an entry from an image
2499
2500 Args:
2501 entry_name: Entry name to extract
2502 decomp: True to decompress the data if compressed, False to leave
2503 it in its raw uncompressed format
2504
2505 Returns:
2506 data from entry
2507 """
2508 self._CheckLz4()
2509 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2510 image_fname = tools.GetOutputFilename('image.bin')
2511 return control.ReadEntry(image_fname, entry_name, decomp)
2512
2513 def testExtractSimple(self):
2514 """Test extracting a single file"""
2515 data = self._RunExtractCmd('u-boot')
2516 self.assertEqual(U_BOOT_DATA, data)
2517
Simon Glass71ce0ba2019-07-08 14:25:52 -06002518 def testExtractSection(self):
2519 """Test extracting the files in a section"""
2520 data = self._RunExtractCmd('section')
2521 cbfs_data = data[:0x400]
2522 cbfs = cbfs_util.CbfsReader(cbfs_data)
2523 self.assertEqual(['u-boot', 'u-boot-dtb', ''], cbfs.files.keys())
2524 dtb_data = data[0x400:]
2525 dtb = self._decompress(dtb_data)
2526 self.assertEqual(EXTRACT_DTB_SIZE, len(dtb))
2527
2528 def testExtractCompressed(self):
2529 """Test extracting compressed data"""
2530 data = self._RunExtractCmd('section/u-boot-dtb')
2531 self.assertEqual(EXTRACT_DTB_SIZE, len(data))
2532
2533 def testExtractRaw(self):
2534 """Test extracting compressed data without decompressing it"""
2535 data = self._RunExtractCmd('section/u-boot-dtb', decomp=False)
2536 dtb = self._decompress(data)
2537 self.assertEqual(EXTRACT_DTB_SIZE, len(dtb))
2538
2539 def testExtractCbfs(self):
2540 """Test extracting CBFS data"""
2541 data = self._RunExtractCmd('section/cbfs/u-boot')
2542 self.assertEqual(U_BOOT_DATA, data)
2543
2544 def testExtractCbfsCompressed(self):
2545 """Test extracting CBFS compressed data"""
2546 data = self._RunExtractCmd('section/cbfs/u-boot-dtb')
2547 self.assertEqual(EXTRACT_DTB_SIZE, len(data))
2548
2549 def testExtractCbfsRaw(self):
2550 """Test extracting CBFS compressed data without decompressing it"""
2551 data = self._RunExtractCmd('section/cbfs/u-boot-dtb', decomp=False)
Simon Glasseb0f4a42019-07-20 12:24:06 -06002552 dtb = tools.Decompress(data, 'lzma', with_header=False)
Simon Glass71ce0ba2019-07-08 14:25:52 -06002553 self.assertEqual(EXTRACT_DTB_SIZE, len(dtb))
2554
Simon Glassf667e452019-07-08 14:25:50 -06002555 def testExtractBadEntry(self):
2556 """Test extracting a bad section path"""
2557 with self.assertRaises(ValueError) as e:
2558 self._RunExtractCmd('section/does-not-exist')
2559 self.assertIn("Entry 'does-not-exist' not found in '/section'",
2560 str(e.exception))
2561
2562 def testExtractMissingFile(self):
2563 """Test extracting file that does not exist"""
2564 with self.assertRaises(IOError) as e:
2565 control.ReadEntry('missing-file', 'name')
2566
2567 def testExtractBadFile(self):
2568 """Test extracting an invalid file"""
2569 fname = os.path.join(self._indir, 'badfile')
2570 tools.WriteFile(fname, b'')
2571 with self.assertRaises(ValueError) as e:
2572 control.ReadEntry(fname, 'name')
2573
Simon Glass71ce0ba2019-07-08 14:25:52 -06002574 def testExtractCmd(self):
2575 """Test extracting a file fron an image on the command line"""
2576 self._CheckLz4()
2577 self._DoReadFileRealDtb('130_list_fdtmap.dts')
Simon Glass71ce0ba2019-07-08 14:25:52 -06002578 fname = os.path.join(self._indir, 'output.extact')
Simon Glassf86a7362019-07-20 12:24:10 -06002579 try:
2580 tmpdir, updated_fname = self._SetupImageInTmpdir()
2581 with test_util.capture_sys_output() as (stdout, stderr):
2582 self._DoBinman('extract', '-i', updated_fname, 'u-boot',
2583 '-f', fname)
2584 finally:
2585 shutil.rmtree(tmpdir)
Simon Glass71ce0ba2019-07-08 14:25:52 -06002586 data = tools.ReadFile(fname)
2587 self.assertEqual(U_BOOT_DATA, data)
2588
2589 def testExtractOneEntry(self):
2590 """Test extracting a single entry fron an image """
2591 self._CheckLz4()
2592 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2593 image_fname = tools.GetOutputFilename('image.bin')
2594 fname = os.path.join(self._indir, 'output.extact')
2595 control.ExtractEntries(image_fname, fname, None, ['u-boot'])
2596 data = tools.ReadFile(fname)
2597 self.assertEqual(U_BOOT_DATA, data)
2598
2599 def _CheckExtractOutput(self, decomp):
2600 """Helper to test file output with and without decompression
2601
2602 Args:
2603 decomp: True to decompress entry data, False to output it raw
2604 """
2605 def _CheckPresent(entry_path, expect_data, expect_size=None):
2606 """Check and remove expected file
2607
2608 This checks the data/size of a file and removes the file both from
2609 the outfiles set and from the output directory. Once all files are
2610 processed, both the set and directory should be empty.
2611
2612 Args:
2613 entry_path: Entry path
2614 expect_data: Data to expect in file, or None to skip check
2615 expect_size: Size of data to expect in file, or None to skip
2616 """
2617 path = os.path.join(outdir, entry_path)
2618 data = tools.ReadFile(path)
2619 os.remove(path)
2620 if expect_data:
2621 self.assertEqual(expect_data, data)
2622 elif expect_size:
2623 self.assertEqual(expect_size, len(data))
2624 outfiles.remove(path)
2625
2626 def _CheckDirPresent(name):
2627 """Remove expected directory
2628
2629 This gives an error if the directory does not exist as expected
2630
2631 Args:
2632 name: Name of directory to remove
2633 """
2634 path = os.path.join(outdir, name)
2635 os.rmdir(path)
2636
2637 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2638 image_fname = tools.GetOutputFilename('image.bin')
2639 outdir = os.path.join(self._indir, 'extract')
2640 einfos = control.ExtractEntries(image_fname, None, outdir, [], decomp)
2641
2642 # Create a set of all file that were output (should be 9)
2643 outfiles = set()
2644 for root, dirs, files in os.walk(outdir):
2645 outfiles |= set([os.path.join(root, fname) for fname in files])
2646 self.assertEqual(9, len(outfiles))
2647 self.assertEqual(9, len(einfos))
2648
2649 image = control.images['image']
2650 entries = image.GetEntries()
2651
2652 # Check the 9 files in various ways
2653 section = entries['section']
2654 section_entries = section.GetEntries()
2655 cbfs_entries = section_entries['cbfs'].GetEntries()
2656 _CheckPresent('u-boot', U_BOOT_DATA)
2657 _CheckPresent('section/cbfs/u-boot', U_BOOT_DATA)
2658 dtb_len = EXTRACT_DTB_SIZE
2659 if not decomp:
2660 dtb_len = cbfs_entries['u-boot-dtb'].size
2661 _CheckPresent('section/cbfs/u-boot-dtb', None, dtb_len)
2662 if not decomp:
2663 dtb_len = section_entries['u-boot-dtb'].size
2664 _CheckPresent('section/u-boot-dtb', None, dtb_len)
2665
2666 fdtmap = entries['fdtmap']
2667 _CheckPresent('fdtmap', fdtmap.data)
2668 hdr = entries['image-header']
2669 _CheckPresent('image-header', hdr.data)
2670
2671 _CheckPresent('section/root', section.data)
2672 cbfs = section_entries['cbfs']
2673 _CheckPresent('section/cbfs/root', cbfs.data)
2674 data = tools.ReadFile(image_fname)
2675 _CheckPresent('root', data)
2676
2677 # There should be no files left. Remove all the directories to check.
2678 # If there are any files/dirs remaining, one of these checks will fail.
2679 self.assertEqual(0, len(outfiles))
2680 _CheckDirPresent('section/cbfs')
2681 _CheckDirPresent('section')
2682 _CheckDirPresent('')
2683 self.assertFalse(os.path.exists(outdir))
2684
2685 def testExtractAllEntries(self):
2686 """Test extracting all entries"""
2687 self._CheckLz4()
2688 self._CheckExtractOutput(decomp=True)
2689
2690 def testExtractAllEntriesRaw(self):
2691 """Test extracting all entries without decompressing them"""
2692 self._CheckLz4()
2693 self._CheckExtractOutput(decomp=False)
2694
2695 def testExtractSelectedEntries(self):
2696 """Test extracting some entries"""
2697 self._CheckLz4()
2698 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2699 image_fname = tools.GetOutputFilename('image.bin')
2700 outdir = os.path.join(self._indir, 'extract')
2701 einfos = control.ExtractEntries(image_fname, None, outdir,
2702 ['*cb*', '*head*'])
2703
2704 # File output is tested by testExtractAllEntries(), so just check that
2705 # the expected entries are selected
2706 names = [einfo.name for einfo in einfos]
2707 self.assertEqual(names,
2708 ['cbfs', 'u-boot', 'u-boot-dtb', 'image-header'])
2709
2710 def testExtractNoEntryPaths(self):
2711 """Test extracting some entries"""
2712 self._CheckLz4()
2713 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2714 image_fname = tools.GetOutputFilename('image.bin')
2715 with self.assertRaises(ValueError) as e:
2716 control.ExtractEntries(image_fname, 'fname', None, [])
Simon Glassbb5edc12019-07-20 12:24:14 -06002717 self.assertIn('Must specify an entry path to write with -f',
Simon Glass71ce0ba2019-07-08 14:25:52 -06002718 str(e.exception))
2719
2720 def testExtractTooManyEntryPaths(self):
2721 """Test extracting some entries"""
2722 self._CheckLz4()
2723 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2724 image_fname = tools.GetOutputFilename('image.bin')
2725 with self.assertRaises(ValueError) as e:
2726 control.ExtractEntries(image_fname, 'fname', None, ['a', 'b'])
Simon Glassbb5edc12019-07-20 12:24:14 -06002727 self.assertIn('Must specify exactly one entry path to write with -f',
Simon Glass71ce0ba2019-07-08 14:25:52 -06002728 str(e.exception))
2729
Simon Glasse2705fa2019-07-08 14:25:53 -06002730 def testPackAlignSection(self):
2731 """Test that sections can have alignment"""
2732 self._DoReadFile('131_pack_align_section.dts')
2733
2734 self.assertIn('image', control.images)
2735 image = control.images['image']
2736 entries = image.GetEntries()
2737 self.assertEqual(3, len(entries))
2738
2739 # First u-boot
2740 self.assertIn('u-boot', entries)
2741 entry = entries['u-boot']
2742 self.assertEqual(0, entry.offset)
2743 self.assertEqual(0, entry.image_pos)
2744 self.assertEqual(len(U_BOOT_DATA), entry.contents_size)
2745 self.assertEqual(len(U_BOOT_DATA), entry.size)
2746
2747 # Section0
2748 self.assertIn('section0', entries)
2749 section0 = entries['section0']
2750 self.assertEqual(0x10, section0.offset)
2751 self.assertEqual(0x10, section0.image_pos)
2752 self.assertEqual(len(U_BOOT_DATA), section0.size)
2753
2754 # Second u-boot
2755 section_entries = section0.GetEntries()
2756 self.assertIn('u-boot', section_entries)
2757 entry = section_entries['u-boot']
2758 self.assertEqual(0, entry.offset)
2759 self.assertEqual(0x10, entry.image_pos)
2760 self.assertEqual(len(U_BOOT_DATA), entry.contents_size)
2761 self.assertEqual(len(U_BOOT_DATA), entry.size)
2762
2763 # Section1
2764 self.assertIn('section1', entries)
2765 section1 = entries['section1']
2766 self.assertEqual(0x14, section1.offset)
2767 self.assertEqual(0x14, section1.image_pos)
2768 self.assertEqual(0x20, section1.size)
2769
2770 # Second u-boot
2771 section_entries = section1.GetEntries()
2772 self.assertIn('u-boot', section_entries)
2773 entry = section_entries['u-boot']
2774 self.assertEqual(0, entry.offset)
2775 self.assertEqual(0x14, entry.image_pos)
2776 self.assertEqual(len(U_BOOT_DATA), entry.contents_size)
2777 self.assertEqual(len(U_BOOT_DATA), entry.size)
2778
2779 # Section2
2780 self.assertIn('section2', section_entries)
2781 section2 = section_entries['section2']
2782 self.assertEqual(0x4, section2.offset)
2783 self.assertEqual(0x18, section2.image_pos)
2784 self.assertEqual(4, section2.size)
2785
2786 # Third u-boot
2787 section_entries = section2.GetEntries()
2788 self.assertIn('u-boot', section_entries)
2789 entry = section_entries['u-boot']
2790 self.assertEqual(0, entry.offset)
2791 self.assertEqual(0x18, entry.image_pos)
2792 self.assertEqual(len(U_BOOT_DATA), entry.contents_size)
2793 self.assertEqual(len(U_BOOT_DATA), entry.size)
2794
Simon Glass51014aa2019-07-20 12:23:56 -06002795 def _RunReplaceCmd(self, entry_name, data, decomp=True, allow_resize=True,
2796 dts='132_replace.dts'):
Simon Glass10f9d002019-07-20 12:23:50 -06002797 """Replace an entry in an image
2798
2799 This writes the entry data to update it, then opens the updated file and
2800 returns the value that it now finds there.
2801
2802 Args:
2803 entry_name: Entry name to replace
2804 data: Data to replace it with
2805 decomp: True to compress the data if needed, False if data is
2806 already compressed so should be used as is
Simon Glass51014aa2019-07-20 12:23:56 -06002807 allow_resize: True to allow entries to change size, False to raise
2808 an exception
Simon Glass10f9d002019-07-20 12:23:50 -06002809
2810 Returns:
2811 Tuple:
2812 data from entry
2813 data from fdtmap (excluding header)
Simon Glass51014aa2019-07-20 12:23:56 -06002814 Image object that was modified
Simon Glass10f9d002019-07-20 12:23:50 -06002815 """
Simon Glass51014aa2019-07-20 12:23:56 -06002816 dtb_data = self._DoReadFileDtb(dts, use_real_dtb=True,
Simon Glass10f9d002019-07-20 12:23:50 -06002817 update_dtb=True)[1]
2818
2819 self.assertIn('image', control.images)
2820 image = control.images['image']
2821 entries = image.GetEntries()
2822 orig_dtb_data = entries['u-boot-dtb'].data
2823 orig_fdtmap_data = entries['fdtmap'].data
2824
2825 image_fname = tools.GetOutputFilename('image.bin')
2826 updated_fname = tools.GetOutputFilename('image-updated.bin')
2827 tools.WriteFile(updated_fname, tools.ReadFile(image_fname))
Simon Glass51014aa2019-07-20 12:23:56 -06002828 image = control.WriteEntry(updated_fname, entry_name, data, decomp,
2829 allow_resize)
Simon Glass10f9d002019-07-20 12:23:50 -06002830 data = control.ReadEntry(updated_fname, entry_name, decomp)
2831
Simon Glass51014aa2019-07-20 12:23:56 -06002832 # The DT data should not change unless resized:
2833 if not allow_resize:
2834 new_dtb_data = entries['u-boot-dtb'].data
2835 self.assertEqual(new_dtb_data, orig_dtb_data)
2836 new_fdtmap_data = entries['fdtmap'].data
2837 self.assertEqual(new_fdtmap_data, orig_fdtmap_data)
Simon Glass10f9d002019-07-20 12:23:50 -06002838
Simon Glass51014aa2019-07-20 12:23:56 -06002839 return data, orig_fdtmap_data[fdtmap.FDTMAP_HDR_LEN:], image
Simon Glass10f9d002019-07-20 12:23:50 -06002840
2841 def testReplaceSimple(self):
2842 """Test replacing a single file"""
2843 expected = b'x' * len(U_BOOT_DATA)
Simon Glass51014aa2019-07-20 12:23:56 -06002844 data, expected_fdtmap, _ = self._RunReplaceCmd('u-boot', expected,
2845 allow_resize=False)
Simon Glass10f9d002019-07-20 12:23:50 -06002846 self.assertEqual(expected, data)
2847
2848 # Test that the state looks right. There should be an FDT for the fdtmap
2849 # that we jsut read back in, and it should match what we find in the
2850 # 'control' tables. Checking for an FDT that does not exist should
2851 # return None.
2852 path, fdtmap = state.GetFdtContents('fdtmap')
Simon Glass51014aa2019-07-20 12:23:56 -06002853 self.assertIsNotNone(path)
Simon Glass10f9d002019-07-20 12:23:50 -06002854 self.assertEqual(expected_fdtmap, fdtmap)
2855
2856 dtb = state.GetFdtForEtype('fdtmap')
2857 self.assertEqual(dtb.GetContents(), fdtmap)
2858
2859 missing_path, missing_fdtmap = state.GetFdtContents('missing')
2860 self.assertIsNone(missing_path)
2861 self.assertIsNone(missing_fdtmap)
2862
2863 missing_dtb = state.GetFdtForEtype('missing')
2864 self.assertIsNone(missing_dtb)
2865
2866 self.assertEqual('/binman', state.fdt_path_prefix)
2867
2868 def testReplaceResizeFail(self):
2869 """Test replacing a file by something larger"""
2870 expected = U_BOOT_DATA + b'x'
2871 with self.assertRaises(ValueError) as e:
Simon Glass51014aa2019-07-20 12:23:56 -06002872 self._RunReplaceCmd('u-boot', expected, allow_resize=False,
2873 dts='139_replace_repack.dts')
Simon Glass10f9d002019-07-20 12:23:50 -06002874 self.assertIn("Node '/u-boot': Entry data size does not match, but resize is disabled",
2875 str(e.exception))
2876
2877 def testReplaceMulti(self):
2878 """Test replacing entry data where multiple images are generated"""
2879 data = self._DoReadFileDtb('133_replace_multi.dts', use_real_dtb=True,
2880 update_dtb=True)[0]
2881 expected = b'x' * len(U_BOOT_DATA)
2882 updated_fname = tools.GetOutputFilename('image-updated.bin')
2883 tools.WriteFile(updated_fname, data)
2884 entry_name = 'u-boot'
Simon Glass51014aa2019-07-20 12:23:56 -06002885 control.WriteEntry(updated_fname, entry_name, expected,
2886 allow_resize=False)
Simon Glass10f9d002019-07-20 12:23:50 -06002887 data = control.ReadEntry(updated_fname, entry_name)
2888 self.assertEqual(expected, data)
2889
2890 # Check the state looks right.
2891 self.assertEqual('/binman/image', state.fdt_path_prefix)
2892
2893 # Now check we can write the first image
2894 image_fname = tools.GetOutputFilename('first-image.bin')
2895 updated_fname = tools.GetOutputFilename('first-updated.bin')
2896 tools.WriteFile(updated_fname, tools.ReadFile(image_fname))
2897 entry_name = 'u-boot'
Simon Glass51014aa2019-07-20 12:23:56 -06002898 control.WriteEntry(updated_fname, entry_name, expected,
2899 allow_resize=False)
Simon Glass10f9d002019-07-20 12:23:50 -06002900 data = control.ReadEntry(updated_fname, entry_name)
2901 self.assertEqual(expected, data)
2902
2903 # Check the state looks right.
2904 self.assertEqual('/binman/first-image', state.fdt_path_prefix)
Simon Glass8beb11e2019-07-08 14:25:47 -06002905
Simon Glass12bb1a92019-07-20 12:23:51 -06002906 def testUpdateFdtAllRepack(self):
2907 """Test that all device trees are updated with offset/size info"""
2908 data = self._DoReadFileRealDtb('134_fdt_update_all_repack.dts')
2909 SECTION_SIZE = 0x300
2910 DTB_SIZE = 602
2911 FDTMAP_SIZE = 608
2912 base_expected = {
2913 'offset': 0,
2914 'size': SECTION_SIZE + DTB_SIZE * 2 + FDTMAP_SIZE,
2915 'image-pos': 0,
2916 'section:offset': 0,
2917 'section:size': SECTION_SIZE,
2918 'section:image-pos': 0,
2919 'section/u-boot-dtb:offset': 4,
2920 'section/u-boot-dtb:size': 636,
2921 'section/u-boot-dtb:image-pos': 4,
2922 'u-boot-spl-dtb:offset': SECTION_SIZE,
2923 'u-boot-spl-dtb:size': DTB_SIZE,
2924 'u-boot-spl-dtb:image-pos': SECTION_SIZE,
2925 'u-boot-tpl-dtb:offset': SECTION_SIZE + DTB_SIZE,
2926 'u-boot-tpl-dtb:image-pos': SECTION_SIZE + DTB_SIZE,
2927 'u-boot-tpl-dtb:size': DTB_SIZE,
2928 'fdtmap:offset': SECTION_SIZE + DTB_SIZE * 2,
2929 'fdtmap:size': FDTMAP_SIZE,
2930 'fdtmap:image-pos': SECTION_SIZE + DTB_SIZE * 2,
2931 }
2932 main_expected = {
2933 'section:orig-size': SECTION_SIZE,
2934 'section/u-boot-dtb:orig-offset': 4,
2935 }
2936
2937 # We expect three device-tree files in the output, with the first one
2938 # within a fixed-size section.
2939 # Read them in sequence. We look for an 'spl' property in the SPL tree,
2940 # and 'tpl' in the TPL tree, to make sure they are distinct from the
2941 # main U-Boot tree. All three should have the same positions and offset
2942 # except that the main tree should include the main_expected properties
2943 start = 4
2944 for item in ['', 'spl', 'tpl', None]:
2945 if item is None:
2946 start += 16 # Move past fdtmap header
2947 dtb = fdt.Fdt.FromData(data[start:])
2948 dtb.Scan()
2949 props = self._GetPropTree(dtb,
2950 BASE_DTB_PROPS + REPACK_DTB_PROPS + ['spl', 'tpl'],
2951 prefix='/' if item is None else '/binman/')
2952 expected = dict(base_expected)
2953 if item:
2954 expected[item] = 0
2955 else:
2956 # Main DTB and fdtdec should include the 'orig-' properties
2957 expected.update(main_expected)
2958 # Helpful for debugging:
2959 #for prop in sorted(props):
2960 #print('prop %s %s %s' % (prop, props[prop], expected[prop]))
2961 self.assertEqual(expected, props)
2962 if item == '':
2963 start = SECTION_SIZE
2964 else:
2965 start += dtb._fdt_obj.totalsize()
2966
Simon Glasseba1f0c2019-07-20 12:23:55 -06002967 def testFdtmapHeaderMiddle(self):
2968 """Test an FDT map in the middle of an image when it should be at end"""
2969 with self.assertRaises(ValueError) as e:
2970 self._DoReadFileRealDtb('135_fdtmap_hdr_middle.dts')
2971 self.assertIn("Invalid sibling order 'middle' for image-header: Must be at 'end' to match location",
2972 str(e.exception))
2973
2974 def testFdtmapHeaderStartBad(self):
2975 """Test an FDT map in middle of an image when it should be at start"""
2976 with self.assertRaises(ValueError) as e:
2977 self._DoReadFileRealDtb('136_fdtmap_hdr_startbad.dts')
2978 self.assertIn("Invalid sibling order 'end' for image-header: Must be at 'start' to match location",
2979 str(e.exception))
2980
2981 def testFdtmapHeaderEndBad(self):
2982 """Test an FDT map at the start of an image when it should be at end"""
2983 with self.assertRaises(ValueError) as e:
2984 self._DoReadFileRealDtb('137_fdtmap_hdr_endbad.dts')
2985 self.assertIn("Invalid sibling order 'start' for image-header: Must be at 'end' to match location",
2986 str(e.exception))
2987
2988 def testFdtmapHeaderNoSize(self):
2989 """Test an image header at the end of an image with undefined size"""
2990 self._DoReadFileRealDtb('138_fdtmap_hdr_nosize.dts')
2991
Simon Glass51014aa2019-07-20 12:23:56 -06002992 def testReplaceResize(self):
2993 """Test replacing a single file in an entry with a larger file"""
2994 expected = U_BOOT_DATA + b'x'
2995 data, _, image = self._RunReplaceCmd('u-boot', expected,
2996 dts='139_replace_repack.dts')
2997 self.assertEqual(expected, data)
2998
2999 entries = image.GetEntries()
3000 dtb_data = entries['u-boot-dtb'].data
3001 dtb = fdt.Fdt.FromData(dtb_data)
3002 dtb.Scan()
3003
3004 # The u-boot section should now be larger in the dtb
3005 node = dtb.GetNode('/binman/u-boot')
3006 self.assertEqual(len(expected), fdt_util.GetInt(node, 'size'))
3007
3008 # Same for the fdtmap
3009 fdata = entries['fdtmap'].data
3010 fdtb = fdt.Fdt.FromData(fdata[fdtmap.FDTMAP_HDR_LEN:])
3011 fdtb.Scan()
3012 fnode = fdtb.GetNode('/u-boot')
3013 self.assertEqual(len(expected), fdt_util.GetInt(fnode, 'size'))
3014
3015 def testReplaceResizeNoRepack(self):
3016 """Test replacing an entry with a larger file when not allowed"""
3017 expected = U_BOOT_DATA + b'x'
3018 with self.assertRaises(ValueError) as e:
3019 self._RunReplaceCmd('u-boot', expected)
3020 self.assertIn('Entry data size does not match, but allow-repack is not present for this image',
3021 str(e.exception))
3022
Simon Glass61ec04f2019-07-20 12:23:58 -06003023 def testEntryShrink(self):
3024 """Test contracting an entry after it is packed"""
3025 try:
3026 state.SetAllowEntryContraction(True)
3027 data = self._DoReadFileDtb('140_entry_shrink.dts',
3028 update_dtb=True)[0]
3029 finally:
3030 state.SetAllowEntryContraction(False)
3031 self.assertEqual(b'a', data[:1])
3032 self.assertEqual(U_BOOT_DATA, data[1:1 + len(U_BOOT_DATA)])
3033 self.assertEqual(b'a', data[-1:])
3034
3035 def testEntryShrinkFail(self):
3036 """Test not being allowed to contract an entry after it is packed"""
3037 data = self._DoReadFileDtb('140_entry_shrink.dts', update_dtb=True)[0]
3038
3039 # In this case there is a spare byte at the end of the data. The size of
3040 # the contents is only 1 byte but we still have the size before it
3041 # shrunk.
3042 self.assertEqual(b'a\0', data[:2])
3043 self.assertEqual(U_BOOT_DATA, data[2:2 + len(U_BOOT_DATA)])
3044 self.assertEqual(b'a\0', data[-2:])
3045
Simon Glass27145fd2019-07-20 12:24:01 -06003046 def testDescriptorOffset(self):
3047 """Test that the Intel descriptor is always placed at at the start"""
3048 data = self._DoReadFileDtb('141_descriptor_offset.dts')
3049 image = control.images['image']
3050 entries = image.GetEntries()
3051 desc = entries['intel-descriptor']
3052 self.assertEqual(0xff800000, desc.offset);
3053 self.assertEqual(0xff800000, desc.image_pos);
3054
Simon Glasseb0f4a42019-07-20 12:24:06 -06003055 def testReplaceCbfs(self):
3056 """Test replacing a single file in CBFS without changing the size"""
3057 self._CheckLz4()
3058 expected = b'x' * len(U_BOOT_DATA)
3059 data = self._DoReadFileRealDtb('142_replace_cbfs.dts')
3060 updated_fname = tools.GetOutputFilename('image-updated.bin')
3061 tools.WriteFile(updated_fname, data)
3062 entry_name = 'section/cbfs/u-boot'
3063 control.WriteEntry(updated_fname, entry_name, expected,
3064 allow_resize=True)
3065 data = control.ReadEntry(updated_fname, entry_name)
3066 self.assertEqual(expected, data)
3067
3068 def testReplaceResizeCbfs(self):
3069 """Test replacing a single file in CBFS with one of a different size"""
3070 self._CheckLz4()
3071 expected = U_BOOT_DATA + b'x'
3072 data = self._DoReadFileRealDtb('142_replace_cbfs.dts')
3073 updated_fname = tools.GetOutputFilename('image-updated.bin')
3074 tools.WriteFile(updated_fname, data)
3075 entry_name = 'section/cbfs/u-boot'
3076 control.WriteEntry(updated_fname, entry_name, expected,
3077 allow_resize=True)
3078 data = control.ReadEntry(updated_fname, entry_name)
3079 self.assertEqual(expected, data)
3080
Simon Glassa6cb9952019-07-20 12:24:15 -06003081 def _SetupForReplace(self):
3082 """Set up some files to use to replace entries
3083
3084 This generates an image, copies it to a new file, extracts all the files
3085 in it and updates some of them
3086
3087 Returns:
3088 List
3089 Image filename
3090 Output directory
3091 Expected values for updated entries, each a string
3092 """
3093 data = self._DoReadFileRealDtb('143_replace_all.dts')
3094
3095 updated_fname = tools.GetOutputFilename('image-updated.bin')
3096 tools.WriteFile(updated_fname, data)
3097
3098 outdir = os.path.join(self._indir, 'extract')
3099 einfos = control.ExtractEntries(updated_fname, None, outdir, [])
3100
3101 expected1 = b'x' + U_BOOT_DATA + b'y'
3102 u_boot_fname1 = os.path.join(outdir, 'u-boot')
3103 tools.WriteFile(u_boot_fname1, expected1)
3104
3105 expected2 = b'a' + U_BOOT_DATA + b'b'
3106 u_boot_fname2 = os.path.join(outdir, 'u-boot2')
3107 tools.WriteFile(u_boot_fname2, expected2)
3108
3109 expected_text = b'not the same text'
3110 text_fname = os.path.join(outdir, 'text')
3111 tools.WriteFile(text_fname, expected_text)
3112
3113 dtb_fname = os.path.join(outdir, 'u-boot-dtb')
3114 dtb = fdt.FdtScan(dtb_fname)
3115 node = dtb.GetNode('/binman/text')
3116 node.AddString('my-property', 'the value')
3117 dtb.Sync(auto_resize=True)
3118 dtb.Flush()
3119
3120 return updated_fname, outdir, expected1, expected2, expected_text
3121
3122 def _CheckReplaceMultiple(self, entry_paths):
3123 """Handle replacing the contents of multiple entries
3124
3125 Args:
3126 entry_paths: List of entry paths to replace
3127
3128 Returns:
3129 List
3130 Dict of entries in the image:
3131 key: Entry name
3132 Value: Entry object
3133 Expected values for updated entries, each a string
3134 """
3135 updated_fname, outdir, expected1, expected2, expected_text = (
3136 self._SetupForReplace())
3137 control.ReplaceEntries(updated_fname, None, outdir, entry_paths)
3138
3139 image = Image.FromFile(updated_fname)
3140 image.LoadData()
3141 return image.GetEntries(), expected1, expected2, expected_text
3142
3143 def testReplaceAll(self):
3144 """Test replacing the contents of all entries"""
3145 entries, expected1, expected2, expected_text = (
3146 self._CheckReplaceMultiple([]))
3147 data = entries['u-boot'].data
3148 self.assertEqual(expected1, data)
3149
3150 data = entries['u-boot2'].data
3151 self.assertEqual(expected2, data)
3152
3153 data = entries['text'].data
3154 self.assertEqual(expected_text, data)
3155
3156 # Check that the device tree is updated
3157 data = entries['u-boot-dtb'].data
3158 dtb = fdt.Fdt.FromData(data)
3159 dtb.Scan()
3160 node = dtb.GetNode('/binman/text')
3161 self.assertEqual('the value', node.props['my-property'].value)
3162
3163 def testReplaceSome(self):
3164 """Test replacing the contents of a few entries"""
3165 entries, expected1, expected2, expected_text = (
3166 self._CheckReplaceMultiple(['u-boot2', 'text']))
3167
3168 # This one should not change
3169 data = entries['u-boot'].data
3170 self.assertEqual(U_BOOT_DATA, data)
3171
3172 data = entries['u-boot2'].data
3173 self.assertEqual(expected2, data)
3174
3175 data = entries['text'].data
3176 self.assertEqual(expected_text, data)
3177
3178 def testReplaceCmd(self):
3179 """Test replacing a file fron an image on the command line"""
3180 self._DoReadFileRealDtb('143_replace_all.dts')
3181
3182 try:
3183 tmpdir, updated_fname = self._SetupImageInTmpdir()
3184
3185 fname = os.path.join(tmpdir, 'update-u-boot.bin')
3186 expected = b'x' * len(U_BOOT_DATA)
3187 tools.WriteFile(fname, expected)
3188
3189 self._DoBinman('replace', '-i', updated_fname, 'u-boot', '-f', fname)
3190 data = tools.ReadFile(updated_fname)
3191 self.assertEqual(expected, data[:len(expected)])
3192 map_fname = os.path.join(tmpdir, 'image-updated.map')
3193 self.assertFalse(os.path.exists(map_fname))
3194 finally:
3195 shutil.rmtree(tmpdir)
3196
3197 def testReplaceCmdSome(self):
3198 """Test replacing some files fron an image on the command line"""
3199 updated_fname, outdir, expected1, expected2, expected_text = (
3200 self._SetupForReplace())
3201
3202 self._DoBinman('replace', '-i', updated_fname, '-I', outdir,
3203 'u-boot2', 'text')
3204
3205 tools.PrepareOutputDir(None)
3206 image = Image.FromFile(updated_fname)
3207 image.LoadData()
3208 entries = image.GetEntries()
3209
3210 # This one should not change
3211 data = entries['u-boot'].data
3212 self.assertEqual(U_BOOT_DATA, data)
3213
3214 data = entries['u-boot2'].data
3215 self.assertEqual(expected2, data)
3216
3217 data = entries['text'].data
3218 self.assertEqual(expected_text, data)
3219
3220 def testReplaceMissing(self):
3221 """Test replacing entries where the file is missing"""
3222 updated_fname, outdir, expected1, expected2, expected_text = (
3223 self._SetupForReplace())
3224
3225 # Remove one of the files, to generate a warning
3226 u_boot_fname1 = os.path.join(outdir, 'u-boot')
3227 os.remove(u_boot_fname1)
3228
3229 with test_util.capture_sys_output() as (stdout, stderr):
3230 control.ReplaceEntries(updated_fname, None, outdir, [])
3231 self.assertIn("Skipping entry '/u-boot' from missing file",
3232 stdout.getvalue())
3233
3234 def testReplaceCmdMap(self):
3235 """Test replacing a file fron an image on the command line"""
3236 self._DoReadFileRealDtb('143_replace_all.dts')
3237
3238 try:
3239 tmpdir, updated_fname = self._SetupImageInTmpdir()
3240
3241 fname = os.path.join(self._indir, 'update-u-boot.bin')
3242 expected = b'x' * len(U_BOOT_DATA)
3243 tools.WriteFile(fname, expected)
3244
3245 self._DoBinman('replace', '-i', updated_fname, 'u-boot',
3246 '-f', fname, '-m')
3247 map_fname = os.path.join(tmpdir, 'image-updated.map')
3248 self.assertTrue(os.path.exists(map_fname))
3249 finally:
3250 shutil.rmtree(tmpdir)
3251
3252 def testReplaceNoEntryPaths(self):
3253 """Test replacing an entry without an entry path"""
3254 self._DoReadFileRealDtb('143_replace_all.dts')
3255 image_fname = tools.GetOutputFilename('image.bin')
3256 with self.assertRaises(ValueError) as e:
3257 control.ReplaceEntries(image_fname, 'fname', None, [])
3258 self.assertIn('Must specify an entry path to read with -f',
3259 str(e.exception))
3260
3261 def testReplaceTooManyEntryPaths(self):
3262 """Test extracting some entries"""
3263 self._DoReadFileRealDtb('143_replace_all.dts')
3264 image_fname = tools.GetOutputFilename('image.bin')
3265 with self.assertRaises(ValueError) as e:
3266 control.ReplaceEntries(image_fname, 'fname', None, ['a', 'b'])
3267 self.assertIn('Must specify exactly one entry path to write with -f',
3268 str(e.exception))
3269
Simon Glass2250ee62019-08-24 07:22:48 -06003270 def testPackReset16(self):
3271 """Test that an image with an x86 reset16 region can be created"""
3272 data = self._DoReadFile('144_x86_reset16.dts')
3273 self.assertEqual(X86_RESET16_DATA, data[:len(X86_RESET16_DATA)])
3274
3275 def testPackReset16Spl(self):
3276 """Test that an image with an x86 reset16-spl region can be created"""
3277 data = self._DoReadFile('145_x86_reset16_spl.dts')
3278 self.assertEqual(X86_RESET16_SPL_DATA, data[:len(X86_RESET16_SPL_DATA)])
3279
3280 def testPackReset16Tpl(self):
3281 """Test that an image with an x86 reset16-tpl region can be created"""
3282 data = self._DoReadFile('146_x86_reset16_tpl.dts')
3283 self.assertEqual(X86_RESET16_TPL_DATA, data[:len(X86_RESET16_TPL_DATA)])
3284
Simon Glass5af12072019-08-24 07:22:50 -06003285 def testPackIntelFit(self):
3286 """Test that an image with an Intel FIT and pointer can be created"""
3287 data = self._DoReadFile('147_intel_fit.dts')
3288 self.assertEqual(U_BOOT_DATA, data[:len(U_BOOT_DATA)])
3289 fit = data[16:32];
3290 self.assertEqual(b'_FIT_ \x01\x00\x00\x00\x00\x01\x80}' , fit)
3291 ptr = struct.unpack('<i', data[0x40:0x44])[0]
3292
3293 image = control.images['image']
3294 entries = image.GetEntries()
3295 expected_ptr = entries['intel-fit'].image_pos - (1 << 32)
3296 self.assertEqual(expected_ptr, ptr)
3297
3298 def testPackIntelFitMissing(self):
3299 """Test detection of a FIT pointer with not FIT region"""
3300 with self.assertRaises(ValueError) as e:
3301 self._DoReadFile('148_intel_fit_missing.dts')
3302 self.assertIn("'intel-fit-ptr' section must have an 'intel-fit' sibling",
3303 str(e.exception))
3304
Simon Glass2090f1e2019-08-24 07:23:00 -06003305 def testSymbolsTplSection(self):
3306 """Test binman can assign symbols embedded in U-Boot TPL in a section"""
3307 self._SetupSplElf('u_boot_binman_syms')
3308 self._SetupTplElf('u_boot_binman_syms')
3309 data = self._DoReadFile('149_symbols_tpl.dts')
Simon Glassb87064c2019-08-24 07:23:05 -06003310 sym_values = struct.pack('<LQLL', 4, 0x1c, 0x34, 4)
Simon Glass2090f1e2019-08-24 07:23:00 -06003311 upto1 = 4 + len(U_BOOT_SPL_DATA)
Simon Glassb87064c2019-08-24 07:23:05 -06003312 expected1 = tools.GetBytes(0xff, 4) + sym_values + U_BOOT_SPL_DATA[20:]
Simon Glass2090f1e2019-08-24 07:23:00 -06003313 self.assertEqual(expected1, data[:upto1])
3314
3315 upto2 = upto1 + 1 + len(U_BOOT_SPL_DATA)
Simon Glassb87064c2019-08-24 07:23:05 -06003316 expected2 = tools.GetBytes(0xff, 1) + sym_values + U_BOOT_SPL_DATA[20:]
Simon Glass2090f1e2019-08-24 07:23:00 -06003317 self.assertEqual(expected2, data[upto1:upto2])
3318
Simon Glasseb0086f2019-08-24 07:23:04 -06003319 upto3 = 0x34 + len(U_BOOT_DATA)
3320 expected3 = tools.GetBytes(0xff, 1) + U_BOOT_DATA
Simon Glass2090f1e2019-08-24 07:23:00 -06003321 self.assertEqual(expected3, data[upto2:upto3])
3322
Simon Glassb87064c2019-08-24 07:23:05 -06003323 expected4 = sym_values + U_BOOT_TPL_DATA[20:]
Simon Glass2090f1e2019-08-24 07:23:00 -06003324 self.assertEqual(expected4, data[upto3:])
3325
Simon Glassbf4d0e22019-08-24 07:23:03 -06003326 def testPackX86RomIfwiSectiom(self):
3327 """Test that a section can be placed in an IFWI region"""
3328 self._SetupIfwi('fitimage.bin')
3329 data = self._DoReadFile('151_x86_rom_ifwi_section.dts')
3330 self._CheckIfwi(data)
3331
Simon Glassea0fff92019-08-24 07:23:07 -06003332 def testPackFspM(self):
3333 """Test that an image with a FSP memory-init binary can be created"""
3334 data = self._DoReadFile('152_intel_fsp_m.dts')
3335 self.assertEqual(FSP_M_DATA, data[:len(FSP_M_DATA)])
3336
3337
Simon Glass12bb1a92019-07-20 12:23:51 -06003338
Simon Glass9fc60b42017-11-12 21:52:22 -07003339if __name__ == "__main__":
3340 unittest.main()