blob: 9182584417825ed3b599092ec1f0dfc0007e26a1 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Simon Glass57454f42016-11-25 20:15:52 -07002# Copyright (c) 2016 Google, Inc
3# Written by Simon Glass <sjg@chromium.org>
4#
Simon Glass57454f42016-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 Glass45d556d2020-07-09 18:39:45 -06009import collections
Simon Glassc585dd42020-04-17 18:09:03 -060010import gzip
Simon Glassae7cf032018-09-14 04:57:31 -060011import hashlib
Simon Glass57454f42016-11-25 20:15:52 -070012from optparse import OptionParser
13import os
Simon Glass45d556d2020-07-09 18:39:45 -060014import re
Simon Glass57454f42016-11-25 20:15:52 -070015import shutil
16import struct
17import sys
18import tempfile
19import unittest
20
Simon Glassc585dd42020-04-17 18:09:03 -060021from binman import cbfs_util
22from binman import cmdline
23from binman import control
24from binman import elf
25from binman import elf_test
26from binman import fmap_util
Simon Glassc585dd42020-04-17 18:09:03 -060027from binman import state
28from dtoc import fdt
29from dtoc import fdt_util
30from binman.etype import fdtmap
31from binman.etype import image_header
Simon Glass90cd6f02020-08-05 13:27:47 -060032from binman.image import Image
Simon Glassa997ea52020-04-17 18:09:04 -060033from patman import command
34from patman import test_util
35from patman import tools
36from patman import tout
Simon Glass57454f42016-11-25 20:15:52 -070037
38# Contents of test files, corresponding to different entry types
Simon Glass303f62f2019-05-17 22:00:46 -060039U_BOOT_DATA = b'1234'
40U_BOOT_IMG_DATA = b'img'
Simon Glass4e353e22019-08-24 07:23:04 -060041U_BOOT_SPL_DATA = b'56780123456789abcdefghi'
42U_BOOT_TPL_DATA = b'tpl9876543210fedcbazyw'
Simon Glass303f62f2019-05-17 22:00:46 -060043BLOB_DATA = b'89'
44ME_DATA = b'0abcd'
45VGA_DATA = b'vga'
46U_BOOT_DTB_DATA = b'udtb'
47U_BOOT_SPL_DTB_DATA = b'spldtb'
48U_BOOT_TPL_DTB_DATA = b'tpldtb'
49X86_START16_DATA = b'start16'
50X86_START16_SPL_DATA = b'start16spl'
51X86_START16_TPL_DATA = b'start16tpl'
Simon Glass0b074d62019-08-24 07:22:48 -060052X86_RESET16_DATA = b'reset16'
53X86_RESET16_SPL_DATA = b'reset16spl'
54X86_RESET16_TPL_DATA = b'reset16tpl'
Simon Glass303f62f2019-05-17 22:00:46 -060055PPC_MPC85XX_BR_DATA = b'ppcmpc85xxbr'
56U_BOOT_NODTB_DATA = b'nodtb with microcode pointer somewhere in here'
57U_BOOT_SPL_NODTB_DATA = b'splnodtb with microcode pointer somewhere in here'
58U_BOOT_TPL_NODTB_DATA = b'tplnodtb with microcode pointer somewhere in here'
59FSP_DATA = b'fsp'
60CMC_DATA = b'cmc'
61VBT_DATA = b'vbt'
62MRC_DATA = b'mrc'
Simon Glass2ca52032018-07-17 13:25:33 -060063TEXT_DATA = 'text'
64TEXT_DATA2 = 'text2'
65TEXT_DATA3 = 'text3'
Simon Glass303f62f2019-05-17 22:00:46 -060066CROS_EC_RW_DATA = b'ecrw'
67GBB_DATA = b'gbbd'
68BMPBLK_DATA = b'bmp'
69VBLOCK_DATA = b'vblk'
70FILES_DATA = (b"sorry I'm late\nOh, don't bother apologising, I'm " +
71 b"sorry you're alive\n")
Simon Glassccec0262019-07-08 13:18:42 -060072COMPRESS_DATA = b'compress xxxxxxxxxxxxxxxxxxxxxx data'
Simon Glassd92c8362020-10-26 17:40:25 -060073COMPRESS_DATA_BIG = COMPRESS_DATA * 2
Simon Glass303f62f2019-05-17 22:00:46 -060074REFCODE_DATA = b'refcode'
Simon Glassba7985d2019-08-24 07:23:07 -060075FSP_M_DATA = b'fsp_m'
Simon Glass4d9086d2019-10-20 21:31:35 -060076FSP_S_DATA = b'fsp_s'
Simon Glass9ea87b22019-10-20 21:31:36 -060077FSP_T_DATA = b'fsp_t'
Simon Glass559c4de2020-09-01 05:13:58 -060078ATF_BL31_DATA = b'bl31'
Samuel Holland9d8cc632020-10-21 21:12:15 -050079SCP_DATA = b'scp'
Simon Glassa435cd12020-09-01 05:13:59 -060080TEST_FDT1_DATA = b'fdt1'
81TEST_FDT2_DATA = b'test-fdt2'
Simon Glassa0729502020-09-06 10:35:33 -060082ENV_DATA = b'var1=1\nvar2="2"'
Simon Glassa435cd12020-09-01 05:13:59 -060083
84# Subdirectory of the input dir to use to put test FDTs
85TEST_FDT_SUBDIR = 'fdts'
Simon Glassdb168d42018-07-17 13:25:39 -060086
Simon Glass2c6adba2019-07-20 12:23:47 -060087# The expected size for the device tree in some tests
Simon Glass4c613bf2019-07-08 14:25:50 -060088EXTRACT_DTB_SIZE = 0x3c9
89
Simon Glass2c6adba2019-07-20 12:23:47 -060090# Properties expected to be in the device tree when update_dtb is used
91BASE_DTB_PROPS = ['offset', 'size', 'image-pos']
92
Simon Glassfb30e292019-07-20 12:23:51 -060093# Extra properties expected to be in the device tree when allow-repack is used
94REPACK_DTB_PROPS = ['orig-offset', 'orig-size']
95
Simon Glass57454f42016-11-25 20:15:52 -070096
97class TestFunctional(unittest.TestCase):
98 """Functional tests for binman
99
100 Most of these use a sample .dts file to build an image and then check
101 that it looks correct. The sample files are in the test/ subdirectory
102 and are numbered.
103
104 For each entry type a very small test file is created using fixed
105 string contents. This makes it easy to test that things look right, and
106 debug problems.
107
108 In some cases a 'real' file must be used - these are also supplied in
109 the test/ diurectory.
110 """
111 @classmethod
Simon Glass862f8e22019-08-24 07:22:43 -0600112 def setUpClass(cls):
Simon Glassb3393262017-11-12 21:52:20 -0700113 global entry
Simon Glassc585dd42020-04-17 18:09:03 -0600114 from binman import entry
Simon Glassb3393262017-11-12 21:52:20 -0700115
Simon Glass57454f42016-11-25 20:15:52 -0700116 # Handle the case where argv[0] is 'python'
Simon Glass862f8e22019-08-24 07:22:43 -0600117 cls._binman_dir = os.path.dirname(os.path.realpath(sys.argv[0]))
118 cls._binman_pathname = os.path.join(cls._binman_dir, 'binman')
Simon Glass57454f42016-11-25 20:15:52 -0700119
120 # Create a temporary directory for input files
Simon Glass862f8e22019-08-24 07:22:43 -0600121 cls._indir = tempfile.mkdtemp(prefix='binmant.')
Simon Glass57454f42016-11-25 20:15:52 -0700122
123 # Create some test files
124 TestFunctional._MakeInputFile('u-boot.bin', U_BOOT_DATA)
125 TestFunctional._MakeInputFile('u-boot.img', U_BOOT_IMG_DATA)
126 TestFunctional._MakeInputFile('spl/u-boot-spl.bin', U_BOOT_SPL_DATA)
Simon Glass8425a1f2018-07-17 13:25:48 -0600127 TestFunctional._MakeInputFile('tpl/u-boot-tpl.bin', U_BOOT_TPL_DATA)
Simon Glass57454f42016-11-25 20:15:52 -0700128 TestFunctional._MakeInputFile('blobfile', BLOB_DATA)
Simon Glass72232452016-11-25 20:15:53 -0700129 TestFunctional._MakeInputFile('me.bin', ME_DATA)
130 TestFunctional._MakeInputFile('vga.bin', VGA_DATA)
Simon Glass862f8e22019-08-24 07:22:43 -0600131 cls._ResetDtbs()
Simon Glass0b074d62019-08-24 07:22:48 -0600132
Jagdish Gediya311d4842018-09-03 21:35:08 +0530133 TestFunctional._MakeInputFile('u-boot-br.bin', PPC_MPC85XX_BR_DATA)
Simon Glass0b074d62019-08-24 07:22:48 -0600134
Simon Glassabab18c2019-08-24 07:22:49 -0600135 TestFunctional._MakeInputFile('u-boot-x86-start16.bin', X86_START16_DATA)
136 TestFunctional._MakeInputFile('spl/u-boot-x86-start16-spl.bin',
Simon Glasse83679d2017-11-12 21:52:26 -0700137 X86_START16_SPL_DATA)
Simon Glassabab18c2019-08-24 07:22:49 -0600138 TestFunctional._MakeInputFile('tpl/u-boot-x86-start16-tpl.bin',
Simon Glassed40e962018-09-14 04:57:10 -0600139 X86_START16_TPL_DATA)
Simon Glass0b074d62019-08-24 07:22:48 -0600140
141 TestFunctional._MakeInputFile('u-boot-x86-reset16.bin',
142 X86_RESET16_DATA)
143 TestFunctional._MakeInputFile('spl/u-boot-x86-reset16-spl.bin',
144 X86_RESET16_SPL_DATA)
145 TestFunctional._MakeInputFile('tpl/u-boot-x86-reset16-tpl.bin',
146 X86_RESET16_TPL_DATA)
147
Simon Glass57454f42016-11-25 20:15:52 -0700148 TestFunctional._MakeInputFile('u-boot-nodtb.bin', U_BOOT_NODTB_DATA)
Simon Glass3d274232017-11-12 21:52:27 -0700149 TestFunctional._MakeInputFile('spl/u-boot-spl-nodtb.bin',
150 U_BOOT_SPL_NODTB_DATA)
Simon Glass3fb4f422018-09-14 04:57:32 -0600151 TestFunctional._MakeInputFile('tpl/u-boot-tpl-nodtb.bin',
152 U_BOOT_TPL_NODTB_DATA)
Simon Glassb4176d42016-11-25 20:15:56 -0700153 TestFunctional._MakeInputFile('fsp.bin', FSP_DATA)
154 TestFunctional._MakeInputFile('cmc.bin', CMC_DATA)
Bin Mengd7bcdf52017-08-15 22:41:54 -0700155 TestFunctional._MakeInputFile('vbt.bin', VBT_DATA)
Simon Glassa409c932017-11-12 21:52:28 -0700156 TestFunctional._MakeInputFile('mrc.bin', MRC_DATA)
Simon Glassdb168d42018-07-17 13:25:39 -0600157 TestFunctional._MakeInputFile('ecrw.bin', CROS_EC_RW_DATA)
Simon Glassc1ae83c2018-07-17 13:25:44 -0600158 TestFunctional._MakeInputDir('devkeys')
159 TestFunctional._MakeInputFile('bmpblk.bin', BMPBLK_DATA)
Simon Glass41902e42018-10-01 12:22:31 -0600160 TestFunctional._MakeInputFile('refcode.bin', REFCODE_DATA)
Simon Glassba7985d2019-08-24 07:23:07 -0600161 TestFunctional._MakeInputFile('fsp_m.bin', FSP_M_DATA)
Simon Glass4d9086d2019-10-20 21:31:35 -0600162 TestFunctional._MakeInputFile('fsp_s.bin', FSP_S_DATA)
Simon Glass9ea87b22019-10-20 21:31:36 -0600163 TestFunctional._MakeInputFile('fsp_t.bin', FSP_T_DATA)
Simon Glass57454f42016-11-25 20:15:52 -0700164
Simon Glassf6290892019-08-24 07:22:53 -0600165 cls._elf_testdir = os.path.join(cls._indir, 'elftest')
166 elf_test.BuildElfTestFiles(cls._elf_testdir)
167
Simon Glass72232452016-11-25 20:15:53 -0700168 # ELF file with a '_dt_ucode_base_size' symbol
Simon Glass4affd4b2019-08-24 07:22:54 -0600169 TestFunctional._MakeInputFile('u-boot',
170 tools.ReadFile(cls.ElfTestFile('u_boot_ucode_ptr')))
Simon Glass72232452016-11-25 20:15:53 -0700171
172 # Intel flash descriptor file
Simon Glasse88cef92020-07-09 18:39:41 -0600173 cls._SetupDescriptor()
Simon Glass72232452016-11-25 20:15:53 -0700174
Simon Glass862f8e22019-08-24 07:22:43 -0600175 shutil.copytree(cls.TestFile('files'),
176 os.path.join(cls._indir, 'files'))
Simon Glassac6328c2018-09-14 04:57:28 -0600177
Simon Glass7ba33592018-09-14 04:57:26 -0600178 TestFunctional._MakeInputFile('compress', COMPRESS_DATA)
Simon Glassd92c8362020-10-26 17:40:25 -0600179 TestFunctional._MakeInputFile('compress_big', COMPRESS_DATA_BIG)
Simon Glass559c4de2020-09-01 05:13:58 -0600180 TestFunctional._MakeInputFile('bl31.bin', ATF_BL31_DATA)
Samuel Holland9d8cc632020-10-21 21:12:15 -0500181 TestFunctional._MakeInputFile('scp.bin', SCP_DATA)
Simon Glass7ba33592018-09-14 04:57:26 -0600182
Simon Glassa435cd12020-09-01 05:13:59 -0600183 # Add a few .dtb files for testing
184 TestFunctional._MakeInputFile('%s/test-fdt1.dtb' % TEST_FDT_SUBDIR,
185 TEST_FDT1_DATA)
186 TestFunctional._MakeInputFile('%s/test-fdt2.dtb' % TEST_FDT_SUBDIR,
187 TEST_FDT2_DATA)
188
Simon Glassa0729502020-09-06 10:35:33 -0600189 TestFunctional._MakeInputFile('env.txt', ENV_DATA)
190
Simon Glass1de34482019-07-08 13:18:53 -0600191 # Travis-CI may have an old lz4
Simon Glass862f8e22019-08-24 07:22:43 -0600192 cls.have_lz4 = True
Simon Glass1de34482019-07-08 13:18:53 -0600193 try:
194 tools.Run('lz4', '--no-frame-crc', '-c',
Simon Glasscc311ac2019-10-31 07:42:50 -0600195 os.path.join(cls._indir, 'u-boot.bin'), binary=True)
Simon Glass1de34482019-07-08 13:18:53 -0600196 except:
Simon Glass862f8e22019-08-24 07:22:43 -0600197 cls.have_lz4 = False
Simon Glass1de34482019-07-08 13:18:53 -0600198
Simon Glass57454f42016-11-25 20:15:52 -0700199 @classmethod
Simon Glass862f8e22019-08-24 07:22:43 -0600200 def tearDownClass(cls):
Simon Glass57454f42016-11-25 20:15:52 -0700201 """Remove the temporary input directory and its contents"""
Simon Glass862f8e22019-08-24 07:22:43 -0600202 if cls.preserve_indir:
203 print('Preserving input dir: %s' % cls._indir)
Simon Glass1c420c92019-07-08 13:18:49 -0600204 else:
Simon Glass862f8e22019-08-24 07:22:43 -0600205 if cls._indir:
206 shutil.rmtree(cls._indir)
207 cls._indir = None
Simon Glass57454f42016-11-25 20:15:52 -0700208
Simon Glass1c420c92019-07-08 13:18:49 -0600209 @classmethod
Simon Glasscebfab22019-07-08 13:18:50 -0600210 def setup_test_args(cls, preserve_indir=False, preserve_outdirs=False,
Simon Glassf46732a2019-07-08 14:25:29 -0600211 toolpath=None, verbosity=None):
Simon Glass1c420c92019-07-08 13:18:49 -0600212 """Accept arguments controlling test execution
213
214 Args:
215 preserve_indir: Preserve the shared input directory used by all
216 tests in this class.
217 preserve_outdir: Preserve the output directories used by tests. Each
218 test has its own, so this is normally only useful when running a
219 single test.
Simon Glasscebfab22019-07-08 13:18:50 -0600220 toolpath: ist of paths to use for tools
Simon Glass1c420c92019-07-08 13:18:49 -0600221 """
222 cls.preserve_indir = preserve_indir
223 cls.preserve_outdirs = preserve_outdirs
Simon Glasscebfab22019-07-08 13:18:50 -0600224 cls.toolpath = toolpath
Simon Glassf46732a2019-07-08 14:25:29 -0600225 cls.verbosity = verbosity
Simon Glass1c420c92019-07-08 13:18:49 -0600226
Simon Glass1de34482019-07-08 13:18:53 -0600227 def _CheckLz4(self):
228 if not self.have_lz4:
229 self.skipTest('lz4 --no-frame-crc not available')
230
Simon Glassee9d10d2019-07-20 12:24:09 -0600231 def _CleanupOutputDir(self):
232 """Remove the temporary output directory"""
233 if self.preserve_outdirs:
234 print('Preserving output dir: %s' % tools.outdir)
235 else:
236 tools._FinaliseForTest()
237
Simon Glass57454f42016-11-25 20:15:52 -0700238 def setUp(self):
239 # Enable this to turn on debugging output
240 # tout.Init(tout.DEBUG)
241 command.test_result = None
242
243 def tearDown(self):
244 """Remove the temporary output directory"""
Simon Glassee9d10d2019-07-20 12:24:09 -0600245 self._CleanupOutputDir()
Simon Glass57454f42016-11-25 20:15:52 -0700246
Simon Glassb3d6fc72019-07-20 12:24:10 -0600247 def _SetupImageInTmpdir(self):
248 """Set up the output image in a new temporary directory
249
250 This is used when an image has been generated in the output directory,
251 but we want to run binman again. This will create a new output
252 directory and fail to delete the original one.
253
254 This creates a new temporary directory, copies the image to it (with a
255 new name) and removes the old output directory.
256
257 Returns:
258 Tuple:
259 Temporary directory to use
260 New image filename
261 """
262 image_fname = tools.GetOutputFilename('image.bin')
263 tmpdir = tempfile.mkdtemp(prefix='binman.')
264 updated_fname = os.path.join(tmpdir, 'image-updated.bin')
265 tools.WriteFile(updated_fname, tools.ReadFile(image_fname))
266 self._CleanupOutputDir()
267 return tmpdir, updated_fname
268
Simon Glass8425a1f2018-07-17 13:25:48 -0600269 @classmethod
Simon Glass862f8e22019-08-24 07:22:43 -0600270 def _ResetDtbs(cls):
Simon Glass8425a1f2018-07-17 13:25:48 -0600271 TestFunctional._MakeInputFile('u-boot.dtb', U_BOOT_DTB_DATA)
272 TestFunctional._MakeInputFile('spl/u-boot-spl.dtb', U_BOOT_SPL_DTB_DATA)
273 TestFunctional._MakeInputFile('tpl/u-boot-tpl.dtb', U_BOOT_TPL_DTB_DATA)
274
Simon Glass57454f42016-11-25 20:15:52 -0700275 def _RunBinman(self, *args, **kwargs):
276 """Run binman using the command line
277
278 Args:
279 Arguments to pass, as a list of strings
280 kwargs: Arguments to pass to Command.RunPipe()
281 """
282 result = command.RunPipe([[self._binman_pathname] + list(args)],
283 capture=True, capture_stderr=True, raise_on_error=False)
284 if result.return_code and kwargs.get('raise_on_error', True):
285 raise Exception("Error running '%s': %s" % (' '.join(args),
286 result.stdout + result.stderr))
287 return result
288
Simon Glassf46732a2019-07-08 14:25:29 -0600289 def _DoBinman(self, *argv):
Simon Glass57454f42016-11-25 20:15:52 -0700290 """Run binman using directly (in the same process)
291
292 Args:
293 Arguments to pass, as a list of strings
294 Returns:
295 Return value (0 for success)
296 """
Simon Glassf46732a2019-07-08 14:25:29 -0600297 argv = list(argv)
298 args = cmdline.ParseArgs(argv)
299 args.pager = 'binman-invalid-pager'
300 args.build_dir = self._indir
Simon Glass57454f42016-11-25 20:15:52 -0700301
302 # For testing, you can force an increase in verbosity here
Simon Glassf46732a2019-07-08 14:25:29 -0600303 # args.verbosity = tout.DEBUG
304 return control.Binman(args)
Simon Glass57454f42016-11-25 20:15:52 -0700305
Simon Glass91710b32018-07-17 13:25:32 -0600306 def _DoTestFile(self, fname, debug=False, map=False, update_dtb=False,
Simon Glassb4595d82019-04-25 21:58:34 -0600307 entry_args=None, images=None, use_real_dtb=False,
Simon Glassed930672021-03-18 20:25:05 +1300308 use_expanded=False, verbosity=None, allow_missing=False,
309 extra_indirs=None):
Simon Glass57454f42016-11-25 20:15:52 -0700310 """Run binman with a given test file
311
312 Args:
Simon Glass511f6582018-10-01 12:22:30 -0600313 fname: Device-tree source filename to use (e.g. 005_simple.dts)
Simon Glass1e324002018-06-01 09:38:19 -0600314 debug: True to enable debugging output
Simon Glass30732662018-06-01 09:38:20 -0600315 map: True to output map files for the images
Simon Glasse8561af2018-08-01 15:22:37 -0600316 update_dtb: Update the offset and size of each entry in the device
Simon Glassa87014e2018-07-06 10:27:42 -0600317 tree before packing it into the image
Simon Glass3b376c32018-09-14 04:57:12 -0600318 entry_args: Dict of entry args to supply to binman
319 key: arg name
320 value: value of that arg
321 images: List of image names to build
Simon Glass31ee50f2020-09-01 05:13:55 -0600322 use_real_dtb: True to use the test file as the contents of
323 the u-boot-dtb entry. Normally this is not needed and the
324 test contents (the U_BOOT_DTB_DATA string) can be used.
325 But in some test we need the real contents.
Simon Glassed930672021-03-18 20:25:05 +1300326 use_expanded: True to use expanded entries where available, e.g.
327 'u-boot-expanded' instead of 'u-boot'
Simon Glass31ee50f2020-09-01 05:13:55 -0600328 verbosity: Verbosity level to use (0-3, None=don't set it)
329 allow_missing: Set the '--allow-missing' flag so that missing
330 external binaries just produce a warning instead of an error
Simon Glassa435cd12020-09-01 05:13:59 -0600331 extra_indirs: Extra input directories to add using -I
Simon Glass57454f42016-11-25 20:15:52 -0700332 """
Simon Glassf46732a2019-07-08 14:25:29 -0600333 args = []
Simon Glass075a45c2017-11-13 18:55:00 -0700334 if debug:
335 args.append('-D')
Simon Glassf46732a2019-07-08 14:25:29 -0600336 if verbosity is not None:
337 args.append('-v%d' % verbosity)
338 elif self.verbosity:
339 args.append('-v%d' % self.verbosity)
340 if self.toolpath:
341 for path in self.toolpath:
342 args += ['--toolpath', path]
343 args += ['build', '-p', '-I', self._indir, '-d', self.TestFile(fname)]
Simon Glass30732662018-06-01 09:38:20 -0600344 if map:
345 args.append('-m')
Simon Glassa87014e2018-07-06 10:27:42 -0600346 if update_dtb:
Simon Glass38a411c2019-07-08 13:18:47 -0600347 args.append('-u')
Simon Glass31402012018-09-14 04:57:23 -0600348 if not use_real_dtb:
349 args.append('--fake-dtb')
Simon Glassed930672021-03-18 20:25:05 +1300350 if not use_expanded:
351 args.append('--no-expanded')
Simon Glass91710b32018-07-17 13:25:32 -0600352 if entry_args:
Simon Glass5f3645b2019-05-14 15:53:41 -0600353 for arg, value in entry_args.items():
Simon Glass91710b32018-07-17 13:25:32 -0600354 args.append('-a%s=%s' % (arg, value))
Simon Glass5d94cc62020-07-09 18:39:38 -0600355 if allow_missing:
356 args.append('-M')
Simon Glass3b376c32018-09-14 04:57:12 -0600357 if images:
358 for image in images:
359 args += ['-i', image]
Simon Glassa435cd12020-09-01 05:13:59 -0600360 if extra_indirs:
361 for indir in extra_indirs:
362 args += ['-I', indir]
Simon Glass075a45c2017-11-13 18:55:00 -0700363 return self._DoBinman(*args)
Simon Glass57454f42016-11-25 20:15:52 -0700364
365 def _SetupDtb(self, fname, outfile='u-boot.dtb'):
Simon Glass72232452016-11-25 20:15:53 -0700366 """Set up a new test device-tree file
367
368 The given file is compiled and set up as the device tree to be used
369 for ths test.
370
371 Args:
372 fname: Filename of .dts file to read
Simon Glass1e324002018-06-01 09:38:19 -0600373 outfile: Output filename for compiled device-tree binary
Simon Glass72232452016-11-25 20:15:53 -0700374
375 Returns:
Simon Glass1e324002018-06-01 09:38:19 -0600376 Contents of device-tree binary
Simon Glass72232452016-11-25 20:15:53 -0700377 """
Simon Glassb8d2daa2019-07-20 12:23:49 -0600378 tmpdir = tempfile.mkdtemp(prefix='binmant.')
379 dtb = fdt_util.EnsureCompiled(self.TestFile(fname), tmpdir)
Simon Glass33486662019-05-14 15:53:42 -0600380 with open(dtb, 'rb') as fd:
Simon Glass57454f42016-11-25 20:15:52 -0700381 data = fd.read()
382 TestFunctional._MakeInputFile(outfile, data)
Simon Glassb8d2daa2019-07-20 12:23:49 -0600383 shutil.rmtree(tmpdir)
Simon Glass752e7552018-10-01 21:12:41 -0600384 return data
Simon Glass57454f42016-11-25 20:15:52 -0700385
Simon Glasse219aa42018-09-14 04:57:24 -0600386 def _GetDtbContentsForSplTpl(self, dtb_data, name):
387 """Create a version of the main DTB for SPL or SPL
388
389 For testing we don't actually have different versions of the DTB. With
390 U-Boot we normally run fdtgrep to remove unwanted nodes, but for tests
391 we don't normally have any unwanted nodes.
392
393 We still want the DTBs for SPL and TPL to be different though, since
394 otherwise it is confusing to know which one we are looking at. So add
395 an 'spl' or 'tpl' property to the top-level node.
Simon Glass31ee50f2020-09-01 05:13:55 -0600396
397 Args:
398 dtb_data: dtb data to modify (this should be a value devicetree)
399 name: Name of a new property to add
400
401 Returns:
402 New dtb data with the property added
Simon Glasse219aa42018-09-14 04:57:24 -0600403 """
404 dtb = fdt.Fdt.FromData(dtb_data)
405 dtb.Scan()
406 dtb.GetNode('/binman').AddZeroProp(name)
407 dtb.Sync(auto_resize=True)
408 dtb.Pack()
409 return dtb.GetContents()
410
Simon Glassed930672021-03-18 20:25:05 +1300411 def _DoReadFileDtb(self, fname, use_real_dtb=False, use_expanded=False,
412 map=False, update_dtb=False, entry_args=None,
413 reset_dtbs=True, extra_indirs=None):
Simon Glass57454f42016-11-25 20:15:52 -0700414 """Run binman and return the resulting image
415
416 This runs binman with a given test file and then reads the resulting
417 output file. It is a shortcut function since most tests need to do
418 these steps.
419
420 Raises an assertion failure if binman returns a non-zero exit code.
421
422 Args:
Simon Glass511f6582018-10-01 12:22:30 -0600423 fname: Device-tree source filename to use (e.g. 005_simple.dts)
Simon Glass57454f42016-11-25 20:15:52 -0700424 use_real_dtb: True to use the test file as the contents of
425 the u-boot-dtb entry. Normally this is not needed and the
426 test contents (the U_BOOT_DTB_DATA string) can be used.
427 But in some test we need the real contents.
Simon Glassed930672021-03-18 20:25:05 +1300428 use_expanded: True to use expanded entries where available, e.g.
429 'u-boot-expanded' instead of 'u-boot'
Simon Glass30732662018-06-01 09:38:20 -0600430 map: True to output map files for the images
Simon Glasse8561af2018-08-01 15:22:37 -0600431 update_dtb: Update the offset and size of each entry in the device
Simon Glassa87014e2018-07-06 10:27:42 -0600432 tree before packing it into the image
Simon Glass31ee50f2020-09-01 05:13:55 -0600433 entry_args: Dict of entry args to supply to binman
434 key: arg name
435 value: value of that arg
436 reset_dtbs: With use_real_dtb the test dtb is overwritten by this
437 function. If reset_dtbs is True, then the original test dtb
438 is written back before this function finishes
Simon Glassa435cd12020-09-01 05:13:59 -0600439 extra_indirs: Extra input directories to add using -I
Simon Glass72232452016-11-25 20:15:53 -0700440
441 Returns:
442 Tuple:
443 Resulting image contents
444 Device tree contents
Simon Glass30732662018-06-01 09:38:20 -0600445 Map data showing contents of image (or None if none)
Simon Glassdef77b52018-07-17 13:25:27 -0600446 Output device tree binary filename ('u-boot.dtb' path)
Simon Glass57454f42016-11-25 20:15:52 -0700447 """
Simon Glass72232452016-11-25 20:15:53 -0700448 dtb_data = None
Simon Glass57454f42016-11-25 20:15:52 -0700449 # Use the compiled test file as the u-boot-dtb input
450 if use_real_dtb:
Simon Glass72232452016-11-25 20:15:53 -0700451 dtb_data = self._SetupDtb(fname)
Simon Glasse219aa42018-09-14 04:57:24 -0600452
453 # For testing purposes, make a copy of the DT for SPL and TPL. Add
454 # a node indicating which it is, so aid verification.
455 for name in ['spl', 'tpl']:
456 dtb_fname = '%s/u-boot-%s.dtb' % (name, name)
457 outfile = os.path.join(self._indir, dtb_fname)
458 TestFunctional._MakeInputFile(dtb_fname,
459 self._GetDtbContentsForSplTpl(dtb_data, name))
Simon Glass57454f42016-11-25 20:15:52 -0700460
461 try:
Simon Glass91710b32018-07-17 13:25:32 -0600462 retcode = self._DoTestFile(fname, map=map, update_dtb=update_dtb,
Simon Glassa435cd12020-09-01 05:13:59 -0600463 entry_args=entry_args, use_real_dtb=use_real_dtb,
Simon Glassed930672021-03-18 20:25:05 +1300464 use_expanded=use_expanded, extra_indirs=extra_indirs)
Simon Glass57454f42016-11-25 20:15:52 -0700465 self.assertEqual(0, retcode)
Simon Glasse219aa42018-09-14 04:57:24 -0600466 out_dtb_fname = tools.GetOutputFilename('u-boot.dtb.out')
Simon Glass57454f42016-11-25 20:15:52 -0700467
468 # Find the (only) image, read it and return its contents
469 image = control.images['image']
Simon Glassa87014e2018-07-06 10:27:42 -0600470 image_fname = tools.GetOutputFilename('image.bin')
471 self.assertTrue(os.path.exists(image_fname))
Simon Glass30732662018-06-01 09:38:20 -0600472 if map:
473 map_fname = tools.GetOutputFilename('image.map')
474 with open(map_fname) as fd:
475 map_data = fd.read()
476 else:
477 map_data = None
Simon Glass33486662019-05-14 15:53:42 -0600478 with open(image_fname, 'rb') as fd:
Simon Glassa87014e2018-07-06 10:27:42 -0600479 return fd.read(), dtb_data, map_data, out_dtb_fname
Simon Glass57454f42016-11-25 20:15:52 -0700480 finally:
481 # Put the test file back
Simon Glasse219aa42018-09-14 04:57:24 -0600482 if reset_dtbs and use_real_dtb:
Simon Glass8425a1f2018-07-17 13:25:48 -0600483 self._ResetDtbs()
Simon Glass57454f42016-11-25 20:15:52 -0700484
Simon Glass5b4bce32019-07-08 14:25:26 -0600485 def _DoReadFileRealDtb(self, fname):
486 """Run binman with a real .dtb file and return the resulting data
487
488 Args:
489 fname: DT source filename to use (e.g. 082_fdt_update_all.dts)
490
491 Returns:
492 Resulting image contents
493 """
494 return self._DoReadFileDtb(fname, use_real_dtb=True, update_dtb=True)[0]
495
Simon Glass72232452016-11-25 20:15:53 -0700496 def _DoReadFile(self, fname, use_real_dtb=False):
Simon Glass1e324002018-06-01 09:38:19 -0600497 """Helper function which discards the device-tree binary
498
499 Args:
Simon Glass511f6582018-10-01 12:22:30 -0600500 fname: Device-tree source filename to use (e.g. 005_simple.dts)
Simon Glass1e324002018-06-01 09:38:19 -0600501 use_real_dtb: True to use the test file as the contents of
502 the u-boot-dtb entry. Normally this is not needed and the
503 test contents (the U_BOOT_DTB_DATA string) can be used.
504 But in some test we need the real contents.
Simon Glassdef77b52018-07-17 13:25:27 -0600505
506 Returns:
507 Resulting image contents
Simon Glass1e324002018-06-01 09:38:19 -0600508 """
Simon Glass72232452016-11-25 20:15:53 -0700509 return self._DoReadFileDtb(fname, use_real_dtb)[0]
510
Simon Glass57454f42016-11-25 20:15:52 -0700511 @classmethod
Simon Glass862f8e22019-08-24 07:22:43 -0600512 def _MakeInputFile(cls, fname, contents):
Simon Glass57454f42016-11-25 20:15:52 -0700513 """Create a new test input file, creating directories as needed
514
515 Args:
Simon Glasse8561af2018-08-01 15:22:37 -0600516 fname: Filename to create
Simon Glass57454f42016-11-25 20:15:52 -0700517 contents: File contents to write in to the file
518 Returns:
519 Full pathname of file created
520 """
Simon Glass862f8e22019-08-24 07:22:43 -0600521 pathname = os.path.join(cls._indir, fname)
Simon Glass57454f42016-11-25 20:15:52 -0700522 dirname = os.path.dirname(pathname)
523 if dirname and not os.path.exists(dirname):
524 os.makedirs(dirname)
525 with open(pathname, 'wb') as fd:
526 fd.write(contents)
527 return pathname
528
529 @classmethod
Simon Glass862f8e22019-08-24 07:22:43 -0600530 def _MakeInputDir(cls, dirname):
Simon Glassc1ae83c2018-07-17 13:25:44 -0600531 """Create a new test input directory, creating directories as needed
532
533 Args:
534 dirname: Directory name to create
535
536 Returns:
537 Full pathname of directory created
538 """
Simon Glass862f8e22019-08-24 07:22:43 -0600539 pathname = os.path.join(cls._indir, dirname)
Simon Glassc1ae83c2018-07-17 13:25:44 -0600540 if not os.path.exists(pathname):
541 os.makedirs(pathname)
542 return pathname
543
544 @classmethod
Simon Glass862f8e22019-08-24 07:22:43 -0600545 def _SetupSplElf(cls, src_fname='bss_data'):
Simon Glass7057d022018-10-01 21:12:47 -0600546 """Set up an ELF file with a '_dt_ucode_base_size' symbol
547
548 Args:
549 Filename of ELF file to use as SPL
550 """
Simon Glass93a806f2019-08-24 07:22:59 -0600551 TestFunctional._MakeInputFile('spl/u-boot-spl',
552 tools.ReadFile(cls.ElfTestFile(src_fname)))
Simon Glass7057d022018-10-01 21:12:47 -0600553
554 @classmethod
Simon Glass3eb5b202019-08-24 07:23:00 -0600555 def _SetupTplElf(cls, src_fname='bss_data'):
556 """Set up an ELF file with a '_dt_ucode_base_size' symbol
557
558 Args:
559 Filename of ELF file to use as TPL
560 """
561 TestFunctional._MakeInputFile('tpl/u-boot-tpl',
562 tools.ReadFile(cls.ElfTestFile(src_fname)))
563
564 @classmethod
Simon Glasse88cef92020-07-09 18:39:41 -0600565 def _SetupDescriptor(cls):
566 with open(cls.TestFile('descriptor.bin'), 'rb') as fd:
567 TestFunctional._MakeInputFile('descriptor.bin', fd.read())
568
569 @classmethod
Simon Glass862f8e22019-08-24 07:22:43 -0600570 def TestFile(cls, fname):
571 return os.path.join(cls._binman_dir, 'test', fname)
Simon Glass57454f42016-11-25 20:15:52 -0700572
Simon Glassf6290892019-08-24 07:22:53 -0600573 @classmethod
574 def ElfTestFile(cls, fname):
575 return os.path.join(cls._elf_testdir, fname)
576
Simon Glass57454f42016-11-25 20:15:52 -0700577 def AssertInList(self, grep_list, target):
578 """Assert that at least one of a list of things is in a target
579
580 Args:
581 grep_list: List of strings to check
582 target: Target string
583 """
584 for grep in grep_list:
585 if grep in target:
586 return
Simon Glass848cdb52019-05-17 22:00:50 -0600587 self.fail("Error: '%s' not found in '%s'" % (grep_list, target))
Simon Glass57454f42016-11-25 20:15:52 -0700588
589 def CheckNoGaps(self, entries):
590 """Check that all entries fit together without gaps
591
592 Args:
593 entries: List of entries to check
594 """
Simon Glasse8561af2018-08-01 15:22:37 -0600595 offset = 0
Simon Glass57454f42016-11-25 20:15:52 -0700596 for entry in entries.values():
Simon Glasse8561af2018-08-01 15:22:37 -0600597 self.assertEqual(offset, entry.offset)
598 offset += entry.size
Simon Glass57454f42016-11-25 20:15:52 -0700599
Simon Glass72232452016-11-25 20:15:53 -0700600 def GetFdtLen(self, dtb):
Simon Glass1e324002018-06-01 09:38:19 -0600601 """Get the totalsize field from a device-tree binary
Simon Glass72232452016-11-25 20:15:53 -0700602
603 Args:
Simon Glass1e324002018-06-01 09:38:19 -0600604 dtb: Device-tree binary contents
Simon Glass72232452016-11-25 20:15:53 -0700605
606 Returns:
Simon Glass1e324002018-06-01 09:38:19 -0600607 Total size of device-tree binary, from the header
Simon Glass72232452016-11-25 20:15:53 -0700608 """
609 return struct.unpack('>L', dtb[4:8])[0]
610
Simon Glass0f621332019-07-08 14:25:27 -0600611 def _GetPropTree(self, dtb, prop_names, prefix='/binman/'):
Simon Glassa87014e2018-07-06 10:27:42 -0600612 def AddNode(node, path):
613 if node.name != '/':
614 path += '/' + node.name
Simon Glass0f621332019-07-08 14:25:27 -0600615 for prop in node.props.values():
616 if prop.name in prop_names:
617 prop_path = path + ':' + prop.name
618 tree[prop_path[len(prefix):]] = fdt_util.fdt32_to_cpu(
619 prop.value)
Simon Glassa87014e2018-07-06 10:27:42 -0600620 for subnode in node.subnodes:
Simon Glassa87014e2018-07-06 10:27:42 -0600621 AddNode(subnode, path)
622
623 tree = {}
Simon Glassa87014e2018-07-06 10:27:42 -0600624 AddNode(dtb.GetRoot(), '')
625 return tree
626
Simon Glass57454f42016-11-25 20:15:52 -0700627 def testRun(self):
628 """Test a basic run with valid args"""
629 result = self._RunBinman('-h')
630
631 def testFullHelp(self):
632 """Test that the full help is displayed with -H"""
633 result = self._RunBinman('-H')
634 help_file = os.path.join(self._binman_dir, 'README')
Tom Rinic3c0b6d2018-01-16 15:29:50 -0500635 # Remove possible extraneous strings
636 extra = '::::::::::::::\n' + help_file + '\n::::::::::::::\n'
637 gothelp = result.stdout.replace(extra, '')
638 self.assertEqual(len(gothelp), os.path.getsize(help_file))
Simon Glass57454f42016-11-25 20:15:52 -0700639 self.assertEqual(0, len(result.stderr))
640 self.assertEqual(0, result.return_code)
641
642 def testFullHelpInternal(self):
643 """Test that the full help is displayed with -H"""
644 try:
645 command.test_result = command.CommandResult()
646 result = self._DoBinman('-H')
647 help_file = os.path.join(self._binman_dir, 'README')
648 finally:
649 command.test_result = None
650
651 def testHelp(self):
652 """Test that the basic help is displayed with -h"""
653 result = self._RunBinman('-h')
654 self.assertTrue(len(result.stdout) > 200)
655 self.assertEqual(0, len(result.stderr))
656 self.assertEqual(0, result.return_code)
657
Simon Glass57454f42016-11-25 20:15:52 -0700658 def testBoard(self):
659 """Test that we can run it with a specific board"""
Simon Glass511f6582018-10-01 12:22:30 -0600660 self._SetupDtb('005_simple.dts', 'sandbox/u-boot.dtb')
Simon Glass57454f42016-11-25 20:15:52 -0700661 TestFunctional._MakeInputFile('sandbox/u-boot.bin', U_BOOT_DATA)
Simon Glassed930672021-03-18 20:25:05 +1300662 result = self._DoBinman('build', '-n', '-b', 'sandbox')
Simon Glass57454f42016-11-25 20:15:52 -0700663 self.assertEqual(0, result)
664
665 def testNeedBoard(self):
666 """Test that we get an error when no board ius supplied"""
667 with self.assertRaises(ValueError) as e:
Simon Glassf46732a2019-07-08 14:25:29 -0600668 result = self._DoBinman('build')
Simon Glass57454f42016-11-25 20:15:52 -0700669 self.assertIn("Must provide a board to process (use -b <board>)",
670 str(e.exception))
671
672 def testMissingDt(self):
Simon Glass1e324002018-06-01 09:38:19 -0600673 """Test that an invalid device-tree file generates an error"""
Simon Glass57454f42016-11-25 20:15:52 -0700674 with self.assertRaises(Exception) as e:
Simon Glassf46732a2019-07-08 14:25:29 -0600675 self._RunBinman('build', '-d', 'missing_file')
Simon Glass57454f42016-11-25 20:15:52 -0700676 # We get one error from libfdt, and a different one from fdtget.
677 self.AssertInList(["Couldn't open blob from 'missing_file'",
678 'No such file or directory'], str(e.exception))
679
680 def testBrokenDt(self):
Simon Glass1e324002018-06-01 09:38:19 -0600681 """Test that an invalid device-tree source file generates an error
Simon Glass57454f42016-11-25 20:15:52 -0700682
683 Since this is a source file it should be compiled and the error
684 will come from the device-tree compiler (dtc).
685 """
686 with self.assertRaises(Exception) as e:
Simon Glassf46732a2019-07-08 14:25:29 -0600687 self._RunBinman('build', '-d', self.TestFile('001_invalid.dts'))
Simon Glass57454f42016-11-25 20:15:52 -0700688 self.assertIn("FATAL ERROR: Unable to parse input tree",
689 str(e.exception))
690
691 def testMissingNode(self):
692 """Test that a device tree without a 'binman' node generates an error"""
693 with self.assertRaises(Exception) as e:
Simon Glassf46732a2019-07-08 14:25:29 -0600694 self._DoBinman('build', '-d', self.TestFile('002_missing_node.dts'))
Simon Glass57454f42016-11-25 20:15:52 -0700695 self.assertIn("does not have a 'binman' node", str(e.exception))
696
697 def testEmpty(self):
698 """Test that an empty binman node works OK (i.e. does nothing)"""
Simon Glassf46732a2019-07-08 14:25:29 -0600699 result = self._RunBinman('build', '-d', self.TestFile('003_empty.dts'))
Simon Glass57454f42016-11-25 20:15:52 -0700700 self.assertEqual(0, len(result.stderr))
701 self.assertEqual(0, result.return_code)
702
703 def testInvalidEntry(self):
704 """Test that an invalid entry is flagged"""
705 with self.assertRaises(Exception) as e:
Simon Glassf46732a2019-07-08 14:25:29 -0600706 result = self._RunBinman('build', '-d',
Simon Glass511f6582018-10-01 12:22:30 -0600707 self.TestFile('004_invalid_entry.dts'))
Simon Glass57454f42016-11-25 20:15:52 -0700708 self.assertIn("Unknown entry type 'not-a-valid-type' in node "
709 "'/binman/not-a-valid-type'", str(e.exception))
710
711 def testSimple(self):
712 """Test a simple binman with a single file"""
Simon Glass511f6582018-10-01 12:22:30 -0600713 data = self._DoReadFile('005_simple.dts')
Simon Glass57454f42016-11-25 20:15:52 -0700714 self.assertEqual(U_BOOT_DATA, data)
715
Simon Glass075a45c2017-11-13 18:55:00 -0700716 def testSimpleDebug(self):
717 """Test a simple binman run with debugging enabled"""
Simon Glass52d06212019-07-08 14:25:53 -0600718 self._DoTestFile('005_simple.dts', debug=True)
Simon Glass075a45c2017-11-13 18:55:00 -0700719
Simon Glass57454f42016-11-25 20:15:52 -0700720 def testDual(self):
721 """Test that we can handle creating two images
722
723 This also tests image padding.
724 """
Simon Glass511f6582018-10-01 12:22:30 -0600725 retcode = self._DoTestFile('006_dual_image.dts')
Simon Glass57454f42016-11-25 20:15:52 -0700726 self.assertEqual(0, retcode)
727
728 image = control.images['image1']
Simon Glass39dd2152019-07-08 14:25:47 -0600729 self.assertEqual(len(U_BOOT_DATA), image.size)
Simon Glass57454f42016-11-25 20:15:52 -0700730 fname = tools.GetOutputFilename('image1.bin')
731 self.assertTrue(os.path.exists(fname))
Simon Glass33486662019-05-14 15:53:42 -0600732 with open(fname, 'rb') as fd:
Simon Glass57454f42016-11-25 20:15:52 -0700733 data = fd.read()
734 self.assertEqual(U_BOOT_DATA, data)
735
736 image = control.images['image2']
Simon Glass39dd2152019-07-08 14:25:47 -0600737 self.assertEqual(3 + len(U_BOOT_DATA) + 5, image.size)
Simon Glass57454f42016-11-25 20:15:52 -0700738 fname = tools.GetOutputFilename('image2.bin')
739 self.assertTrue(os.path.exists(fname))
Simon Glass33486662019-05-14 15:53:42 -0600740 with open(fname, 'rb') as fd:
Simon Glass57454f42016-11-25 20:15:52 -0700741 data = fd.read()
742 self.assertEqual(U_BOOT_DATA, data[3:7])
Simon Glassac0d4952019-05-14 15:53:47 -0600743 self.assertEqual(tools.GetBytes(0, 3), data[:3])
744 self.assertEqual(tools.GetBytes(0, 5), data[7:])
Simon Glass57454f42016-11-25 20:15:52 -0700745
746 def testBadAlign(self):
747 """Test that an invalid alignment value is detected"""
748 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -0600749 self._DoTestFile('007_bad_align.dts')
Simon Glass57454f42016-11-25 20:15:52 -0700750 self.assertIn("Node '/binman/u-boot': Alignment 23 must be a power "
751 "of two", str(e.exception))
752
753 def testPackSimple(self):
754 """Test that packing works as expected"""
Simon Glass511f6582018-10-01 12:22:30 -0600755 retcode = self._DoTestFile('008_pack.dts')
Simon Glass57454f42016-11-25 20:15:52 -0700756 self.assertEqual(0, retcode)
757 self.assertIn('image', control.images)
758 image = control.images['image']
Simon Glasseca32212018-06-01 09:38:12 -0600759 entries = image.GetEntries()
Simon Glass57454f42016-11-25 20:15:52 -0700760 self.assertEqual(5, len(entries))
761
762 # First u-boot
763 self.assertIn('u-boot', entries)
764 entry = entries['u-boot']
Simon Glasse8561af2018-08-01 15:22:37 -0600765 self.assertEqual(0, entry.offset)
Simon Glass57454f42016-11-25 20:15:52 -0700766 self.assertEqual(len(U_BOOT_DATA), entry.size)
767
768 # Second u-boot, aligned to 16-byte boundary
769 self.assertIn('u-boot-align', entries)
770 entry = entries['u-boot-align']
Simon Glasse8561af2018-08-01 15:22:37 -0600771 self.assertEqual(16, entry.offset)
Simon Glass57454f42016-11-25 20:15:52 -0700772 self.assertEqual(len(U_BOOT_DATA), entry.size)
773
774 # Third u-boot, size 23 bytes
775 self.assertIn('u-boot-size', entries)
776 entry = entries['u-boot-size']
Simon Glasse8561af2018-08-01 15:22:37 -0600777 self.assertEqual(20, entry.offset)
Simon Glass57454f42016-11-25 20:15:52 -0700778 self.assertEqual(len(U_BOOT_DATA), entry.contents_size)
779 self.assertEqual(23, entry.size)
780
781 # Fourth u-boot, placed immediate after the above
782 self.assertIn('u-boot-next', entries)
783 entry = entries['u-boot-next']
Simon Glasse8561af2018-08-01 15:22:37 -0600784 self.assertEqual(43, entry.offset)
Simon Glass57454f42016-11-25 20:15:52 -0700785 self.assertEqual(len(U_BOOT_DATA), entry.size)
786
Simon Glasse8561af2018-08-01 15:22:37 -0600787 # Fifth u-boot, placed at a fixed offset
Simon Glass57454f42016-11-25 20:15:52 -0700788 self.assertIn('u-boot-fixed', entries)
789 entry = entries['u-boot-fixed']
Simon Glasse8561af2018-08-01 15:22:37 -0600790 self.assertEqual(61, entry.offset)
Simon Glass57454f42016-11-25 20:15:52 -0700791 self.assertEqual(len(U_BOOT_DATA), entry.size)
792
Simon Glass39dd2152019-07-08 14:25:47 -0600793 self.assertEqual(65, image.size)
Simon Glass57454f42016-11-25 20:15:52 -0700794
795 def testPackExtra(self):
796 """Test that extra packing feature works as expected"""
Simon Glassafb9caa2020-10-26 17:40:10 -0600797 data, _, _, out_dtb_fname = self._DoReadFileDtb('009_pack_extra.dts',
798 update_dtb=True)
Simon Glass57454f42016-11-25 20:15:52 -0700799
Simon Glass57454f42016-11-25 20:15:52 -0700800 self.assertIn('image', control.images)
801 image = control.images['image']
Simon Glasseca32212018-06-01 09:38:12 -0600802 entries = image.GetEntries()
Simon Glass57454f42016-11-25 20:15:52 -0700803 self.assertEqual(5, len(entries))
804
805 # First u-boot with padding before and after
806 self.assertIn('u-boot', entries)
807 entry = entries['u-boot']
Simon Glasse8561af2018-08-01 15:22:37 -0600808 self.assertEqual(0, entry.offset)
Simon Glass57454f42016-11-25 20:15:52 -0700809 self.assertEqual(3, entry.pad_before)
810 self.assertEqual(3 + 5 + len(U_BOOT_DATA), entry.size)
Simon Glass187202f2020-10-26 17:40:08 -0600811 self.assertEqual(U_BOOT_DATA, entry.data)
812 self.assertEqual(tools.GetBytes(0, 3) + U_BOOT_DATA +
813 tools.GetBytes(0, 5), data[:entry.size])
814 pos = entry.size
Simon Glass57454f42016-11-25 20:15:52 -0700815
816 # Second u-boot has an aligned size, but it has no effect
817 self.assertIn('u-boot-align-size-nop', entries)
818 entry = entries['u-boot-align-size-nop']
Simon Glass187202f2020-10-26 17:40:08 -0600819 self.assertEqual(pos, entry.offset)
820 self.assertEqual(len(U_BOOT_DATA), entry.size)
821 self.assertEqual(U_BOOT_DATA, entry.data)
822 self.assertEqual(U_BOOT_DATA, data[pos:pos + entry.size])
823 pos += entry.size
Simon Glass57454f42016-11-25 20:15:52 -0700824
825 # Third u-boot has an aligned size too
826 self.assertIn('u-boot-align-size', entries)
827 entry = entries['u-boot-align-size']
Simon Glass187202f2020-10-26 17:40:08 -0600828 self.assertEqual(pos, entry.offset)
Simon Glass57454f42016-11-25 20:15:52 -0700829 self.assertEqual(32, entry.size)
Simon Glass187202f2020-10-26 17:40:08 -0600830 self.assertEqual(U_BOOT_DATA, entry.data)
831 self.assertEqual(U_BOOT_DATA + tools.GetBytes(0, 32 - len(U_BOOT_DATA)),
832 data[pos:pos + entry.size])
833 pos += entry.size
Simon Glass57454f42016-11-25 20:15:52 -0700834
835 # Fourth u-boot has an aligned end
836 self.assertIn('u-boot-align-end', entries)
837 entry = entries['u-boot-align-end']
Simon Glasse8561af2018-08-01 15:22:37 -0600838 self.assertEqual(48, entry.offset)
Simon Glass57454f42016-11-25 20:15:52 -0700839 self.assertEqual(16, entry.size)
Simon Glass187202f2020-10-26 17:40:08 -0600840 self.assertEqual(U_BOOT_DATA, entry.data[:len(U_BOOT_DATA)])
841 self.assertEqual(U_BOOT_DATA + tools.GetBytes(0, 16 - len(U_BOOT_DATA)),
842 data[pos:pos + entry.size])
843 pos += entry.size
Simon Glass57454f42016-11-25 20:15:52 -0700844
845 # Fifth u-boot immediately afterwards
846 self.assertIn('u-boot-align-both', entries)
847 entry = entries['u-boot-align-both']
Simon Glasse8561af2018-08-01 15:22:37 -0600848 self.assertEqual(64, entry.offset)
Simon Glass57454f42016-11-25 20:15:52 -0700849 self.assertEqual(64, entry.size)
Simon Glass187202f2020-10-26 17:40:08 -0600850 self.assertEqual(U_BOOT_DATA, entry.data[:len(U_BOOT_DATA)])
851 self.assertEqual(U_BOOT_DATA + tools.GetBytes(0, 64 - len(U_BOOT_DATA)),
852 data[pos:pos + entry.size])
Simon Glass57454f42016-11-25 20:15:52 -0700853
854 self.CheckNoGaps(entries)
Simon Glass39dd2152019-07-08 14:25:47 -0600855 self.assertEqual(128, image.size)
Simon Glass57454f42016-11-25 20:15:52 -0700856
Simon Glassafb9caa2020-10-26 17:40:10 -0600857 dtb = fdt.Fdt(out_dtb_fname)
858 dtb.Scan()
859 props = self._GetPropTree(dtb, ['size', 'offset', 'image-pos'])
860 expected = {
861 'image-pos': 0,
862 'offset': 0,
863 'size': 128,
864
865 'u-boot:image-pos': 0,
866 'u-boot:offset': 0,
867 'u-boot:size': 3 + 5 + len(U_BOOT_DATA),
868
869 'u-boot-align-size-nop:image-pos': 12,
870 'u-boot-align-size-nop:offset': 12,
871 'u-boot-align-size-nop:size': 4,
872
873 'u-boot-align-size:image-pos': 16,
874 'u-boot-align-size:offset': 16,
875 'u-boot-align-size:size': 32,
876
877 'u-boot-align-end:image-pos': 48,
878 'u-boot-align-end:offset': 48,
879 'u-boot-align-end:size': 16,
880
881 'u-boot-align-both:image-pos': 64,
882 'u-boot-align-both:offset': 64,
883 'u-boot-align-both:size': 64,
884 }
885 self.assertEqual(expected, props)
886
Simon Glass57454f42016-11-25 20:15:52 -0700887 def testPackAlignPowerOf2(self):
888 """Test that invalid entry alignment is detected"""
889 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -0600890 self._DoTestFile('010_pack_align_power2.dts')
Simon Glass57454f42016-11-25 20:15:52 -0700891 self.assertIn("Node '/binman/u-boot': Alignment 5 must be a power "
892 "of two", str(e.exception))
893
894 def testPackAlignSizePowerOf2(self):
895 """Test that invalid entry size alignment is detected"""
896 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -0600897 self._DoTestFile('011_pack_align_size_power2.dts')
Simon Glass57454f42016-11-25 20:15:52 -0700898 self.assertIn("Node '/binman/u-boot': Alignment size 55 must be a "
899 "power of two", str(e.exception))
900
901 def testPackInvalidAlign(self):
Simon Glasse8561af2018-08-01 15:22:37 -0600902 """Test detection of an offset that does not match its alignment"""
Simon Glass57454f42016-11-25 20:15:52 -0700903 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -0600904 self._DoTestFile('012_pack_inv_align.dts')
Simon Glasse8561af2018-08-01 15:22:37 -0600905 self.assertIn("Node '/binman/u-boot': Offset 0x5 (5) does not match "
Simon Glass57454f42016-11-25 20:15:52 -0700906 "align 0x4 (4)", str(e.exception))
907
908 def testPackInvalidSizeAlign(self):
909 """Test that invalid entry size alignment is detected"""
910 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -0600911 self._DoTestFile('013_pack_inv_size_align.dts')
Simon Glass57454f42016-11-25 20:15:52 -0700912 self.assertIn("Node '/binman/u-boot': Size 0x5 (5) does not match "
913 "align-size 0x4 (4)", str(e.exception))
914
915 def testPackOverlap(self):
916 """Test that overlapping regions are detected"""
917 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -0600918 self._DoTestFile('014_pack_overlap.dts')
Simon Glasse8561af2018-08-01 15:22:37 -0600919 self.assertIn("Node '/binman/u-boot-align': Offset 0x3 (3) overlaps "
Simon Glass57454f42016-11-25 20:15:52 -0700920 "with previous entry '/binman/u-boot' ending at 0x4 (4)",
921 str(e.exception))
922
923 def testPackEntryOverflow(self):
924 """Test that entries that overflow their size are detected"""
925 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -0600926 self._DoTestFile('015_pack_overflow.dts')
Simon Glass57454f42016-11-25 20:15:52 -0700927 self.assertIn("Node '/binman/u-boot': Entry contents size is 0x4 (4) "
928 "but entry size is 0x3 (3)", str(e.exception))
929
930 def testPackImageOverflow(self):
931 """Test that entries which overflow the image size are detected"""
932 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -0600933 self._DoTestFile('016_pack_image_overflow.dts')
Simon Glasseca32212018-06-01 09:38:12 -0600934 self.assertIn("Section '/binman': contents size 0x4 (4) exceeds section "
Simon Glass57454f42016-11-25 20:15:52 -0700935 "size 0x3 (3)", str(e.exception))
936
937 def testPackImageSize(self):
938 """Test that the image size can be set"""
Simon Glass511f6582018-10-01 12:22:30 -0600939 retcode = self._DoTestFile('017_pack_image_size.dts')
Simon Glass57454f42016-11-25 20:15:52 -0700940 self.assertEqual(0, retcode)
941 self.assertIn('image', control.images)
942 image = control.images['image']
Simon Glass39dd2152019-07-08 14:25:47 -0600943 self.assertEqual(7, image.size)
Simon Glass57454f42016-11-25 20:15:52 -0700944
945 def testPackImageSizeAlign(self):
946 """Test that image size alignemnt works as expected"""
Simon Glass511f6582018-10-01 12:22:30 -0600947 retcode = self._DoTestFile('018_pack_image_align.dts')
Simon Glass57454f42016-11-25 20:15:52 -0700948 self.assertEqual(0, retcode)
949 self.assertIn('image', control.images)
950 image = control.images['image']
Simon Glass39dd2152019-07-08 14:25:47 -0600951 self.assertEqual(16, image.size)
Simon Glass57454f42016-11-25 20:15:52 -0700952
953 def testPackInvalidImageAlign(self):
954 """Test that invalid image alignment is detected"""
955 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -0600956 self._DoTestFile('019_pack_inv_image_align.dts')
Simon Glasseca32212018-06-01 09:38:12 -0600957 self.assertIn("Section '/binman': Size 0x7 (7) does not match "
Simon Glass57454f42016-11-25 20:15:52 -0700958 "align-size 0x8 (8)", str(e.exception))
959
960 def testPackAlignPowerOf2(self):
961 """Test that invalid image alignment is detected"""
962 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -0600963 self._DoTestFile('020_pack_inv_image_align_power2.dts')
Simon Glass39dd2152019-07-08 14:25:47 -0600964 self.assertIn("Image '/binman': Alignment size 131 must be a power of "
Simon Glass57454f42016-11-25 20:15:52 -0700965 "two", str(e.exception))
966
967 def testImagePadByte(self):
968 """Test that the image pad byte can be specified"""
Simon Glass7057d022018-10-01 21:12:47 -0600969 self._SetupSplElf()
Simon Glass511f6582018-10-01 12:22:30 -0600970 data = self._DoReadFile('021_image_pad.dts')
Simon Glassac0d4952019-05-14 15:53:47 -0600971 self.assertEqual(U_BOOT_SPL_DATA + tools.GetBytes(0xff, 1) +
972 U_BOOT_DATA, data)
Simon Glass57454f42016-11-25 20:15:52 -0700973
974 def testImageName(self):
975 """Test that image files can be named"""
Simon Glass511f6582018-10-01 12:22:30 -0600976 retcode = self._DoTestFile('022_image_name.dts')
Simon Glass57454f42016-11-25 20:15:52 -0700977 self.assertEqual(0, retcode)
978 image = control.images['image1']
979 fname = tools.GetOutputFilename('test-name')
980 self.assertTrue(os.path.exists(fname))
981
982 image = control.images['image2']
983 fname = tools.GetOutputFilename('test-name.xx')
984 self.assertTrue(os.path.exists(fname))
985
986 def testBlobFilename(self):
987 """Test that generic blobs can be provided by filename"""
Simon Glass511f6582018-10-01 12:22:30 -0600988 data = self._DoReadFile('023_blob.dts')
Simon Glass57454f42016-11-25 20:15:52 -0700989 self.assertEqual(BLOB_DATA, data)
990
991 def testPackSorted(self):
992 """Test that entries can be sorted"""
Simon Glass7057d022018-10-01 21:12:47 -0600993 self._SetupSplElf()
Simon Glass511f6582018-10-01 12:22:30 -0600994 data = self._DoReadFile('024_sorted.dts')
Simon Glassac0d4952019-05-14 15:53:47 -0600995 self.assertEqual(tools.GetBytes(0, 1) + U_BOOT_SPL_DATA +
996 tools.GetBytes(0, 2) + U_BOOT_DATA, data)
Simon Glass57454f42016-11-25 20:15:52 -0700997
Simon Glasse8561af2018-08-01 15:22:37 -0600998 def testPackZeroOffset(self):
999 """Test that an entry at offset 0 is not given a new offset"""
Simon Glass57454f42016-11-25 20:15:52 -07001000 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001001 self._DoTestFile('025_pack_zero_size.dts')
Simon Glasse8561af2018-08-01 15:22:37 -06001002 self.assertIn("Node '/binman/u-boot-spl': Offset 0x0 (0) overlaps "
Simon Glass57454f42016-11-25 20:15:52 -07001003 "with previous entry '/binman/u-boot' ending at 0x4 (4)",
1004 str(e.exception))
1005
1006 def testPackUbootDtb(self):
1007 """Test that a device tree can be added to U-Boot"""
Simon Glass511f6582018-10-01 12:22:30 -06001008 data = self._DoReadFile('026_pack_u_boot_dtb.dts')
Simon Glass57454f42016-11-25 20:15:52 -07001009 self.assertEqual(U_BOOT_NODTB_DATA + U_BOOT_DTB_DATA, data)
Simon Glass72232452016-11-25 20:15:53 -07001010
1011 def testPackX86RomNoSize(self):
1012 """Test that the end-at-4gb property requires a size property"""
1013 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001014 self._DoTestFile('027_pack_4gb_no_size.dts')
Simon Glass39dd2152019-07-08 14:25:47 -06001015 self.assertIn("Image '/binman': Section size must be provided when "
Simon Glass72232452016-11-25 20:15:53 -07001016 "using end-at-4gb", str(e.exception))
1017
Jagdish Gediya0fb978c2018-09-03 21:35:07 +05301018 def test4gbAndSkipAtStartTogether(self):
1019 """Test that the end-at-4gb and skip-at-size property can't be used
1020 together"""
1021 with self.assertRaises(ValueError) as e:
Simon Glass11f2bd02019-08-24 07:23:02 -06001022 self._DoTestFile('098_4gb_and_skip_at_start_together.dts')
Simon Glass39dd2152019-07-08 14:25:47 -06001023 self.assertIn("Image '/binman': Provide either 'end-at-4gb' or "
Jagdish Gediya0fb978c2018-09-03 21:35:07 +05301024 "'skip-at-start'", str(e.exception))
1025
Simon Glass72232452016-11-25 20:15:53 -07001026 def testPackX86RomOutside(self):
Simon Glasse8561af2018-08-01 15:22:37 -06001027 """Test that the end-at-4gb property checks for offset boundaries"""
Simon Glass72232452016-11-25 20:15:53 -07001028 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001029 self._DoTestFile('028_pack_4gb_outside.dts')
Simon Glassd6179862020-10-26 17:40:05 -06001030 self.assertIn("Node '/binman/u-boot': Offset 0x0 (0) size 0x4 (4) "
1031 "is outside the section '/binman' starting at "
1032 '0xffffffe0 (4294967264) of size 0x20 (32)',
Simon Glass72232452016-11-25 20:15:53 -07001033 str(e.exception))
1034
1035 def testPackX86Rom(self):
1036 """Test that a basic x86 ROM can be created"""
Simon Glass7057d022018-10-01 21:12:47 -06001037 self._SetupSplElf()
Simon Glass1d167762019-08-24 07:23:01 -06001038 data = self._DoReadFile('029_x86_rom.dts')
Simon Glass4e353e22019-08-24 07:23:04 -06001039 self.assertEqual(U_BOOT_DATA + tools.GetBytes(0, 3) + U_BOOT_SPL_DATA +
Simon Glassac0d4952019-05-14 15:53:47 -06001040 tools.GetBytes(0, 2), data)
Simon Glass72232452016-11-25 20:15:53 -07001041
1042 def testPackX86RomMeNoDesc(self):
1043 """Test that an invalid Intel descriptor entry is detected"""
Simon Glasse88cef92020-07-09 18:39:41 -06001044 try:
Simon Glass14c596c2020-07-25 15:11:19 -06001045 TestFunctional._MakeInputFile('descriptor-empty.bin', b'')
Simon Glasse88cef92020-07-09 18:39:41 -06001046 with self.assertRaises(ValueError) as e:
Simon Glass14c596c2020-07-25 15:11:19 -06001047 self._DoTestFile('163_x86_rom_me_empty.dts')
Simon Glasse88cef92020-07-09 18:39:41 -06001048 self.assertIn("Node '/binman/intel-descriptor': Cannot find Intel Flash Descriptor (FD) signature",
1049 str(e.exception))
1050 finally:
1051 self._SetupDescriptor()
Simon Glass72232452016-11-25 20:15:53 -07001052
1053 def testPackX86RomBadDesc(self):
1054 """Test that the Intel requires a descriptor entry"""
1055 with self.assertRaises(ValueError) as e:
Simon Glass1d167762019-08-24 07:23:01 -06001056 self._DoTestFile('030_x86_rom_me_no_desc.dts')
Simon Glasse8561af2018-08-01 15:22:37 -06001057 self.assertIn("Node '/binman/intel-me': No offset set with "
1058 "offset-unset: should another entry provide this correct "
1059 "offset?", str(e.exception))
Simon Glass72232452016-11-25 20:15:53 -07001060
1061 def testPackX86RomMe(self):
1062 """Test that an x86 ROM with an ME region can be created"""
Simon Glass1d167762019-08-24 07:23:01 -06001063 data = self._DoReadFile('031_x86_rom_me.dts')
Simon Glass759af872019-07-08 13:18:54 -06001064 expected_desc = tools.ReadFile(self.TestFile('descriptor.bin'))
1065 if data[:0x1000] != expected_desc:
1066 self.fail('Expected descriptor binary at start of image')
Simon Glass72232452016-11-25 20:15:53 -07001067 self.assertEqual(ME_DATA, data[0x1000:0x1000 + len(ME_DATA)])
1068
1069 def testPackVga(self):
1070 """Test that an image with a VGA binary can be created"""
Simon Glass1d167762019-08-24 07:23:01 -06001071 data = self._DoReadFile('032_intel_vga.dts')
Simon Glass72232452016-11-25 20:15:53 -07001072 self.assertEqual(VGA_DATA, data[:len(VGA_DATA)])
1073
1074 def testPackStart16(self):
1075 """Test that an image with an x86 start16 region can be created"""
Simon Glass1d167762019-08-24 07:23:01 -06001076 data = self._DoReadFile('033_x86_start16.dts')
Simon Glass72232452016-11-25 20:15:53 -07001077 self.assertEqual(X86_START16_DATA, data[:len(X86_START16_DATA)])
1078
Jagdish Gediya311d4842018-09-03 21:35:08 +05301079 def testPackPowerpcMpc85xxBootpgResetvec(self):
1080 """Test that an image with powerpc-mpc85xx-bootpg-resetvec can be
1081 created"""
Simon Glass11f2bd02019-08-24 07:23:02 -06001082 data = self._DoReadFile('150_powerpc_mpc85xx_bootpg_resetvec.dts')
Jagdish Gediya311d4842018-09-03 21:35:08 +05301083 self.assertEqual(PPC_MPC85XX_BR_DATA, data[:len(PPC_MPC85XX_BR_DATA)])
1084
Simon Glass6ba679c2018-07-06 10:27:17 -06001085 def _RunMicrocodeTest(self, dts_fname, nodtb_data, ucode_second=False):
Simon Glass820af1d2018-07-06 10:27:16 -06001086 """Handle running a test for insertion of microcode
1087
1088 Args:
1089 dts_fname: Name of test .dts file
1090 nodtb_data: Data that we expect in the first section
Simon Glass6ba679c2018-07-06 10:27:17 -06001091 ucode_second: True if the microsecond entry is second instead of
1092 third
Simon Glass820af1d2018-07-06 10:27:16 -06001093
1094 Returns:
1095 Tuple:
1096 Contents of first region (U-Boot or SPL)
Simon Glasse8561af2018-08-01 15:22:37 -06001097 Offset and size components of microcode pointer, as inserted
Simon Glass820af1d2018-07-06 10:27:16 -06001098 in the above (two 4-byte words)
1099 """
Simon Glass3d274232017-11-12 21:52:27 -07001100 data = self._DoReadFile(dts_fname, True)
Simon Glass72232452016-11-25 20:15:53 -07001101
1102 # Now check the device tree has no microcode
Simon Glass6ba679c2018-07-06 10:27:17 -06001103 if ucode_second:
1104 ucode_content = data[len(nodtb_data):]
1105 ucode_pos = len(nodtb_data)
1106 dtb_with_ucode = ucode_content[16:]
1107 fdt_len = self.GetFdtLen(dtb_with_ucode)
1108 else:
1109 dtb_with_ucode = data[len(nodtb_data):]
1110 fdt_len = self.GetFdtLen(dtb_with_ucode)
1111 ucode_content = dtb_with_ucode[fdt_len:]
1112 ucode_pos = len(nodtb_data) + fdt_len
Simon Glass72232452016-11-25 20:15:53 -07001113 fname = tools.GetOutputFilename('test.dtb')
1114 with open(fname, 'wb') as fd:
Simon Glass820af1d2018-07-06 10:27:16 -06001115 fd.write(dtb_with_ucode)
Simon Glass22c92ca2017-05-27 07:38:29 -06001116 dtb = fdt.FdtScan(fname)
1117 ucode = dtb.GetNode('/microcode')
Simon Glass72232452016-11-25 20:15:53 -07001118 self.assertTrue(ucode)
1119 for node in ucode.subnodes:
1120 self.assertFalse(node.props.get('data'))
1121
Simon Glass72232452016-11-25 20:15:53 -07001122 # Check that the microcode appears immediately after the Fdt
1123 # This matches the concatenation of the data properties in
Simon Glasse83679d2017-11-12 21:52:26 -07001124 # the /microcode/update@xxx nodes in 34_x86_ucode.dts.
Simon Glass72232452016-11-25 20:15:53 -07001125 ucode_data = struct.pack('>4L', 0x12345678, 0x12345679, 0xabcd0000,
1126 0x78235609)
Simon Glass820af1d2018-07-06 10:27:16 -06001127 self.assertEqual(ucode_data, ucode_content[:len(ucode_data)])
Simon Glass72232452016-11-25 20:15:53 -07001128
1129 # Check that the microcode pointer was inserted. It should match the
Simon Glasse8561af2018-08-01 15:22:37 -06001130 # expected offset and size
Simon Glass72232452016-11-25 20:15:53 -07001131 pos_and_size = struct.pack('<2L', 0xfffffe00 + ucode_pos,
1132 len(ucode_data))
Simon Glass6ba679c2018-07-06 10:27:17 -06001133 u_boot = data[:len(nodtb_data)]
1134 return u_boot, pos_and_size
Simon Glass3d274232017-11-12 21:52:27 -07001135
1136 def testPackUbootMicrocode(self):
1137 """Test that x86 microcode can be handled correctly
1138
1139 We expect to see the following in the image, in order:
1140 u-boot-nodtb.bin with a microcode pointer inserted at the correct
1141 place
1142 u-boot.dtb with the microcode removed
1143 the microcode
1144 """
Simon Glass511f6582018-10-01 12:22:30 -06001145 first, pos_and_size = self._RunMicrocodeTest('034_x86_ucode.dts',
Simon Glass3d274232017-11-12 21:52:27 -07001146 U_BOOT_NODTB_DATA)
Simon Glass303f62f2019-05-17 22:00:46 -06001147 self.assertEqual(b'nodtb with microcode' + pos_and_size +
1148 b' somewhere in here', first)
Simon Glass72232452016-11-25 20:15:53 -07001149
Simon Glassbac25c82017-05-27 07:38:26 -06001150 def _RunPackUbootSingleMicrocode(self):
Simon Glass72232452016-11-25 20:15:53 -07001151 """Test that x86 microcode can be handled correctly
1152
1153 We expect to see the following in the image, in order:
1154 u-boot-nodtb.bin with a microcode pointer inserted at the correct
1155 place
1156 u-boot.dtb with the microcode
1157 an empty microcode region
1158 """
1159 # We need the libfdt library to run this test since only that allows
1160 # finding the offset of a property. This is required by
1161 # Entry_u_boot_dtb_with_ucode.ObtainContents().
Simon Glass511f6582018-10-01 12:22:30 -06001162 data = self._DoReadFile('035_x86_single_ucode.dts', True)
Simon Glass72232452016-11-25 20:15:53 -07001163
1164 second = data[len(U_BOOT_NODTB_DATA):]
1165
1166 fdt_len = self.GetFdtLen(second)
1167 third = second[fdt_len:]
1168 second = second[:fdt_len]
1169
Simon Glassbac25c82017-05-27 07:38:26 -06001170 ucode_data = struct.pack('>2L', 0x12345678, 0x12345679)
1171 self.assertIn(ucode_data, second)
1172 ucode_pos = second.find(ucode_data) + len(U_BOOT_NODTB_DATA)
Simon Glass72232452016-11-25 20:15:53 -07001173
Simon Glassbac25c82017-05-27 07:38:26 -06001174 # Check that the microcode pointer was inserted. It should match the
Simon Glasse8561af2018-08-01 15:22:37 -06001175 # expected offset and size
Simon Glassbac25c82017-05-27 07:38:26 -06001176 pos_and_size = struct.pack('<2L', 0xfffffe00 + ucode_pos,
1177 len(ucode_data))
1178 first = data[:len(U_BOOT_NODTB_DATA)]
Simon Glass303f62f2019-05-17 22:00:46 -06001179 self.assertEqual(b'nodtb with microcode' + pos_and_size +
1180 b' somewhere in here', first)
Simon Glass996021e2016-11-25 20:15:54 -07001181
Simon Glassd2dfb5f2016-11-25 20:15:55 -07001182 def testPackUbootSingleMicrocode(self):
1183 """Test that x86 microcode can be handled correctly with fdt_normal.
1184 """
Simon Glassbac25c82017-05-27 07:38:26 -06001185 self._RunPackUbootSingleMicrocode()
Simon Glassd2dfb5f2016-11-25 20:15:55 -07001186
Simon Glass996021e2016-11-25 20:15:54 -07001187 def testUBootImg(self):
1188 """Test that u-boot.img can be put in a file"""
Simon Glass511f6582018-10-01 12:22:30 -06001189 data = self._DoReadFile('036_u_boot_img.dts')
Simon Glass996021e2016-11-25 20:15:54 -07001190 self.assertEqual(U_BOOT_IMG_DATA, data)
Simon Glassd2dfb5f2016-11-25 20:15:55 -07001191
1192 def testNoMicrocode(self):
1193 """Test that a missing microcode region is detected"""
1194 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001195 self._DoReadFile('037_x86_no_ucode.dts', True)
Simon Glassd2dfb5f2016-11-25 20:15:55 -07001196 self.assertIn("Node '/binman/u-boot-dtb-with-ucode': No /microcode "
1197 "node found in ", str(e.exception))
1198
1199 def testMicrocodeWithoutNode(self):
1200 """Test that a missing u-boot-dtb-with-ucode node is detected"""
1201 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001202 self._DoReadFile('038_x86_ucode_missing_node.dts', True)
Simon Glassd2dfb5f2016-11-25 20:15:55 -07001203 self.assertIn("Node '/binman/u-boot-with-ucode-ptr': Cannot find "
1204 "microcode region u-boot-dtb-with-ucode", str(e.exception))
1205
1206 def testMicrocodeWithoutNode2(self):
1207 """Test that a missing u-boot-ucode node is detected"""
1208 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001209 self._DoReadFile('039_x86_ucode_missing_node2.dts', True)
Simon Glassd2dfb5f2016-11-25 20:15:55 -07001210 self.assertIn("Node '/binman/u-boot-with-ucode-ptr': Cannot find "
1211 "microcode region u-boot-ucode", str(e.exception))
1212
1213 def testMicrocodeWithoutPtrInElf(self):
1214 """Test that a U-Boot binary without the microcode symbol is detected"""
1215 # ELF file without a '_dt_ucode_base_size' symbol
Simon Glassd2dfb5f2016-11-25 20:15:55 -07001216 try:
Simon Glassfaaaa162019-08-24 07:22:55 -06001217 TestFunctional._MakeInputFile('u-boot',
1218 tools.ReadFile(self.ElfTestFile('u_boot_no_ucode_ptr')))
Simon Glassd2dfb5f2016-11-25 20:15:55 -07001219
1220 with self.assertRaises(ValueError) as e:
Simon Glassbac25c82017-05-27 07:38:26 -06001221 self._RunPackUbootSingleMicrocode()
Simon Glassd2dfb5f2016-11-25 20:15:55 -07001222 self.assertIn("Node '/binman/u-boot-with-ucode-ptr': Cannot locate "
1223 "_dt_ucode_base_size symbol in u-boot", str(e.exception))
1224
1225 finally:
1226 # Put the original file back
Simon Glass4affd4b2019-08-24 07:22:54 -06001227 TestFunctional._MakeInputFile('u-boot',
1228 tools.ReadFile(self.ElfTestFile('u_boot_ucode_ptr')))
Simon Glassd2dfb5f2016-11-25 20:15:55 -07001229
1230 def testMicrocodeNotInImage(self):
1231 """Test that microcode must be placed within the image"""
1232 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001233 self._DoReadFile('040_x86_ucode_not_in_image.dts', True)
Simon Glassd2dfb5f2016-11-25 20:15:55 -07001234 self.assertIn("Node '/binman/u-boot-with-ucode-ptr': Microcode "
1235 "pointer _dt_ucode_base_size at fffffe14 is outside the "
Simon Glassad5a7712018-06-01 09:38:14 -06001236 "section ranging from 00000000 to 0000002e", str(e.exception))
Simon Glassd2dfb5f2016-11-25 20:15:55 -07001237
1238 def testWithoutMicrocode(self):
1239 """Test that we can cope with an image without microcode (e.g. qemu)"""
Simon Glassfaaaa162019-08-24 07:22:55 -06001240 TestFunctional._MakeInputFile('u-boot',
1241 tools.ReadFile(self.ElfTestFile('u_boot_no_ucode_ptr')))
Simon Glass511f6582018-10-01 12:22:30 -06001242 data, dtb, _, _ = self._DoReadFileDtb('044_x86_optional_ucode.dts', True)
Simon Glassd2dfb5f2016-11-25 20:15:55 -07001243
1244 # Now check the device tree has no microcode
1245 self.assertEqual(U_BOOT_NODTB_DATA, data[:len(U_BOOT_NODTB_DATA)])
1246 second = data[len(U_BOOT_NODTB_DATA):]
1247
1248 fdt_len = self.GetFdtLen(second)
1249 self.assertEqual(dtb, second[:fdt_len])
1250
1251 used_len = len(U_BOOT_NODTB_DATA) + fdt_len
1252 third = data[used_len:]
Simon Glassac0d4952019-05-14 15:53:47 -06001253 self.assertEqual(tools.GetBytes(0, 0x200 - used_len), third)
Simon Glassd2dfb5f2016-11-25 20:15:55 -07001254
1255 def testUnknownPosSize(self):
1256 """Test that microcode must be placed within the image"""
1257 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001258 self._DoReadFile('041_unknown_pos_size.dts', True)
Simon Glasse8561af2018-08-01 15:22:37 -06001259 self.assertIn("Section '/binman': Unable to set offset/size for unknown "
Simon Glassd2dfb5f2016-11-25 20:15:55 -07001260 "entry 'invalid-entry'", str(e.exception))
Simon Glassb4176d42016-11-25 20:15:56 -07001261
1262 def testPackFsp(self):
1263 """Test that an image with a FSP binary can be created"""
Simon Glass1d167762019-08-24 07:23:01 -06001264 data = self._DoReadFile('042_intel_fsp.dts')
Simon Glassb4176d42016-11-25 20:15:56 -07001265 self.assertEqual(FSP_DATA, data[:len(FSP_DATA)])
1266
1267 def testPackCmc(self):
Bin Mengd7bcdf52017-08-15 22:41:54 -07001268 """Test that an image with a CMC binary can be created"""
Simon Glass1d167762019-08-24 07:23:01 -06001269 data = self._DoReadFile('043_intel_cmc.dts')
Simon Glassb4176d42016-11-25 20:15:56 -07001270 self.assertEqual(CMC_DATA, data[:len(CMC_DATA)])
Bin Mengd7bcdf52017-08-15 22:41:54 -07001271
1272 def testPackVbt(self):
1273 """Test that an image with a VBT binary can be created"""
Simon Glass1d167762019-08-24 07:23:01 -06001274 data = self._DoReadFile('046_intel_vbt.dts')
Bin Mengd7bcdf52017-08-15 22:41:54 -07001275 self.assertEqual(VBT_DATA, data[:len(VBT_DATA)])
Simon Glassac599912017-11-12 21:52:22 -07001276
Simon Glass7f94e832017-11-12 21:52:25 -07001277 def testSplBssPad(self):
1278 """Test that we can pad SPL's BSS with zeros"""
Simon Glass3d274232017-11-12 21:52:27 -07001279 # ELF file with a '__bss_size' symbol
Simon Glass7057d022018-10-01 21:12:47 -06001280 self._SetupSplElf()
Simon Glass511f6582018-10-01 12:22:30 -06001281 data = self._DoReadFile('047_spl_bss_pad.dts')
Simon Glassac0d4952019-05-14 15:53:47 -06001282 self.assertEqual(U_BOOT_SPL_DATA + tools.GetBytes(0, 10) + U_BOOT_DATA,
1283 data)
Simon Glass7f94e832017-11-12 21:52:25 -07001284
Simon Glass04cda032018-10-01 21:12:42 -06001285 def testSplBssPadMissing(self):
1286 """Test that a missing symbol is detected"""
Simon Glass7057d022018-10-01 21:12:47 -06001287 self._SetupSplElf('u_boot_ucode_ptr')
Simon Glass24ad3652017-11-13 18:54:54 -07001288 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001289 self._DoReadFile('047_spl_bss_pad.dts')
Simon Glass24ad3652017-11-13 18:54:54 -07001290 self.assertIn('Expected __bss_size symbol in spl/u-boot-spl',
1291 str(e.exception))
1292
Simon Glasse83679d2017-11-12 21:52:26 -07001293 def testPackStart16Spl(self):
Simon Glassed40e962018-09-14 04:57:10 -06001294 """Test that an image with an x86 start16 SPL region can be created"""
Simon Glass1d167762019-08-24 07:23:01 -06001295 data = self._DoReadFile('048_x86_start16_spl.dts')
Simon Glasse83679d2017-11-12 21:52:26 -07001296 self.assertEqual(X86_START16_SPL_DATA, data[:len(X86_START16_SPL_DATA)])
1297
Simon Glass6ba679c2018-07-06 10:27:17 -06001298 def _PackUbootSplMicrocode(self, dts, ucode_second=False):
1299 """Helper function for microcode tests
Simon Glass3d274232017-11-12 21:52:27 -07001300
1301 We expect to see the following in the image, in order:
1302 u-boot-spl-nodtb.bin with a microcode pointer inserted at the
1303 correct place
1304 u-boot.dtb with the microcode removed
1305 the microcode
Simon Glass6ba679c2018-07-06 10:27:17 -06001306
1307 Args:
1308 dts: Device tree file to use for test
1309 ucode_second: True if the microsecond entry is second instead of
1310 third
Simon Glass3d274232017-11-12 21:52:27 -07001311 """
Simon Glass7057d022018-10-01 21:12:47 -06001312 self._SetupSplElf('u_boot_ucode_ptr')
Simon Glass6ba679c2018-07-06 10:27:17 -06001313 first, pos_and_size = self._RunMicrocodeTest(dts, U_BOOT_SPL_NODTB_DATA,
1314 ucode_second=ucode_second)
Simon Glass303f62f2019-05-17 22:00:46 -06001315 self.assertEqual(b'splnodtb with microc' + pos_and_size +
1316 b'ter somewhere in here', first)
Simon Glass3d274232017-11-12 21:52:27 -07001317
Simon Glass6ba679c2018-07-06 10:27:17 -06001318 def testPackUbootSplMicrocode(self):
1319 """Test that x86 microcode can be handled correctly in SPL"""
Simon Glass511f6582018-10-01 12:22:30 -06001320 self._PackUbootSplMicrocode('049_x86_ucode_spl.dts')
Simon Glass6ba679c2018-07-06 10:27:17 -06001321
1322 def testPackUbootSplMicrocodeReorder(self):
1323 """Test that order doesn't matter for microcode entries
1324
1325 This is the same as testPackUbootSplMicrocode but when we process the
1326 u-boot-ucode entry we have not yet seen the u-boot-dtb-with-ucode
1327 entry, so we reply on binman to try later.
1328 """
Simon Glass511f6582018-10-01 12:22:30 -06001329 self._PackUbootSplMicrocode('058_x86_ucode_spl_needs_retry.dts',
Simon Glass6ba679c2018-07-06 10:27:17 -06001330 ucode_second=True)
1331
Simon Glassa409c932017-11-12 21:52:28 -07001332 def testPackMrc(self):
1333 """Test that an image with an MRC binary can be created"""
Simon Glass511f6582018-10-01 12:22:30 -06001334 data = self._DoReadFile('050_intel_mrc.dts')
Simon Glassa409c932017-11-12 21:52:28 -07001335 self.assertEqual(MRC_DATA, data[:len(MRC_DATA)])
1336
Simon Glass9aa6a6f2017-11-13 18:54:55 -07001337 def testSplDtb(self):
1338 """Test that an image with spl/u-boot-spl.dtb can be created"""
Simon Glass511f6582018-10-01 12:22:30 -06001339 data = self._DoReadFile('051_u_boot_spl_dtb.dts')
Simon Glass9aa6a6f2017-11-13 18:54:55 -07001340 self.assertEqual(U_BOOT_SPL_DTB_DATA, data[:len(U_BOOT_SPL_DTB_DATA)])
1341
Simon Glass0a6da312017-11-13 18:54:56 -07001342 def testSplNoDtb(self):
1343 """Test that an image with spl/u-boot-spl-nodtb.bin can be created"""
Simon Glass511f6582018-10-01 12:22:30 -06001344 data = self._DoReadFile('052_u_boot_spl_nodtb.dts')
Simon Glass0a6da312017-11-13 18:54:56 -07001345 self.assertEqual(U_BOOT_SPL_NODTB_DATA, data[:len(U_BOOT_SPL_NODTB_DATA)])
1346
Simon Glass31e04cb2021-03-18 20:24:56 +13001347 def checkSymbols(self, dts, base_data, u_boot_offset):
1348 """Check the image contains the expected symbol values
1349
1350 Args:
1351 dts: Device tree file to use for test
1352 base_data: Data before and after 'u-boot' section
1353 u_boot_offset: Offset of 'u-boot' section in image
1354 """
Simon Glass5d0c0262019-08-24 07:22:56 -06001355 elf_fname = self.ElfTestFile('u_boot_binman_syms')
Simon Glass4ca8e042017-11-13 18:55:01 -07001356 syms = elf.GetSymbols(elf_fname, ['binman', 'image'])
1357 addr = elf.GetSymbolAddress(elf_fname, '__image_copy_start')
Simon Glass31e04cb2021-03-18 20:24:56 +13001358 self.assertEqual(syms['_binman_u_boot_spl_any_prop_offset'].address,
1359 addr)
Simon Glass4ca8e042017-11-13 18:55:01 -07001360
Simon Glass7057d022018-10-01 21:12:47 -06001361 self._SetupSplElf('u_boot_binman_syms')
Simon Glass31e04cb2021-03-18 20:24:56 +13001362 data = self._DoReadFile(dts)
1363 # The image should contain the symbols from u_boot_binman_syms.c
1364 # Note that image_pos is adjusted by the base address of the image,
1365 # which is 0x10 in our test image
1366 sym_values = struct.pack('<LQLL', 0x00,
1367 u_boot_offset + len(U_BOOT_DATA),
1368 0x10 + u_boot_offset, 0x04)
1369 expected = (sym_values + base_data[20:] +
Simon Glassac0d4952019-05-14 15:53:47 -06001370 tools.GetBytes(0xff, 1) + U_BOOT_DATA + sym_values +
Simon Glass31e04cb2021-03-18 20:24:56 +13001371 base_data[20:])
Simon Glass4ca8e042017-11-13 18:55:01 -07001372 self.assertEqual(expected, data)
1373
Simon Glass31e04cb2021-03-18 20:24:56 +13001374 def testSymbols(self):
1375 """Test binman can assign symbols embedded in U-Boot"""
1376 self.checkSymbols('053_symbols.dts', U_BOOT_SPL_DATA, 0x18)
1377
1378 def testSymbolsNoDtb(self):
1379 """Test binman can assign symbols embedded in U-Boot SPL"""
1380 self.checkSymbols('192_symbols_nodtb.dts',
1381 U_BOOT_SPL_NODTB_DATA + U_BOOT_SPL_DTB_DATA,
1382 0x38)
1383
Simon Glasse76a3e62018-06-01 09:38:11 -06001384 def testPackUnitAddress(self):
1385 """Test that we support multiple binaries with the same name"""
Simon Glass511f6582018-10-01 12:22:30 -06001386 data = self._DoReadFile('054_unit_address.dts')
Simon Glasse76a3e62018-06-01 09:38:11 -06001387 self.assertEqual(U_BOOT_DATA + U_BOOT_DATA, data)
1388
Simon Glassa91e1152018-06-01 09:38:16 -06001389 def testSections(self):
1390 """Basic test of sections"""
Simon Glass511f6582018-10-01 12:22:30 -06001391 data = self._DoReadFile('055_sections.dts')
Simon Glass303f62f2019-05-17 22:00:46 -06001392 expected = (U_BOOT_DATA + tools.GetBytes(ord('!'), 12) +
1393 U_BOOT_DATA + tools.GetBytes(ord('a'), 12) +
1394 U_BOOT_DATA + tools.GetBytes(ord('&'), 4))
Simon Glassa91e1152018-06-01 09:38:16 -06001395 self.assertEqual(expected, data)
Simon Glassac599912017-11-12 21:52:22 -07001396
Simon Glass30732662018-06-01 09:38:20 -06001397 def testMap(self):
1398 """Tests outputting a map of the images"""
Simon Glass511f6582018-10-01 12:22:30 -06001399 _, _, map_data, _ = self._DoReadFileDtb('055_sections.dts', map=True)
Simon Glass7eca7922018-07-17 13:25:49 -06001400 self.assertEqual('''ImagePos Offset Size Name
140100000000 00000000 00000028 main-section
140200000000 00000000 00000010 section@0
140300000000 00000000 00000004 u-boot
140400000010 00000010 00000010 section@1
140500000010 00000000 00000004 u-boot
140600000020 00000020 00000004 section@2
140700000020 00000000 00000004 u-boot
Simon Glass30732662018-06-01 09:38:20 -06001408''', map_data)
1409
Simon Glass3b78d532018-06-01 09:38:21 -06001410 def testNamePrefix(self):
1411 """Tests that name prefixes are used"""
Simon Glass511f6582018-10-01 12:22:30 -06001412 _, _, map_data, _ = self._DoReadFileDtb('056_name_prefix.dts', map=True)
Simon Glass7eca7922018-07-17 13:25:49 -06001413 self.assertEqual('''ImagePos Offset Size Name
141400000000 00000000 00000028 main-section
141500000000 00000000 00000010 section@0
141600000000 00000000 00000004 ro-u-boot
141700000010 00000010 00000010 section@1
141800000010 00000000 00000004 rw-u-boot
Simon Glass3b78d532018-06-01 09:38:21 -06001419''', map_data)
1420
Simon Glass6ba679c2018-07-06 10:27:17 -06001421 def testUnknownContents(self):
1422 """Test that obtaining the contents works as expected"""
1423 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001424 self._DoReadFile('057_unknown_contents.dts', True)
Simon Glass39dd2152019-07-08 14:25:47 -06001425 self.assertIn("Image '/binman': Internal error: Could not complete "
Simon Glassc585dd42020-04-17 18:09:03 -06001426 "processing of contents: remaining ["
1427 "<binman.etype._testing.Entry__testing ", str(e.exception))
Simon Glass6ba679c2018-07-06 10:27:17 -06001428
Simon Glass2e1169f2018-07-06 10:27:19 -06001429 def testBadChangeSize(self):
1430 """Test that trying to change the size of an entry fails"""
Simon Glasse61b6f62019-07-08 14:25:37 -06001431 try:
1432 state.SetAllowEntryExpansion(False)
1433 with self.assertRaises(ValueError) as e:
1434 self._DoReadFile('059_change_size.dts', True)
Simon Glass8c702fb2019-07-20 12:23:57 -06001435 self.assertIn("Node '/binman/_testing': Cannot update entry size from 2 to 3",
Simon Glasse61b6f62019-07-08 14:25:37 -06001436 str(e.exception))
1437 finally:
1438 state.SetAllowEntryExpansion(True)
Simon Glass2e1169f2018-07-06 10:27:19 -06001439
Simon Glassa87014e2018-07-06 10:27:42 -06001440 def testUpdateFdt(self):
Simon Glasse8561af2018-08-01 15:22:37 -06001441 """Test that we can update the device tree with offset/size info"""
Simon Glass511f6582018-10-01 12:22:30 -06001442 _, _, _, out_dtb_fname = self._DoReadFileDtb('060_fdt_update.dts',
Simon Glassa87014e2018-07-06 10:27:42 -06001443 update_dtb=True)
Simon Glass5463a6a2018-07-17 13:25:52 -06001444 dtb = fdt.Fdt(out_dtb_fname)
1445 dtb.Scan()
Simon Glassfb30e292019-07-20 12:23:51 -06001446 props = self._GetPropTree(dtb, BASE_DTB_PROPS + REPACK_DTB_PROPS)
Simon Glassa87014e2018-07-06 10:27:42 -06001447 self.assertEqual({
Simon Glass9dcc8612018-08-01 15:22:42 -06001448 'image-pos': 0,
Simon Glass3a9a2b82018-07-17 13:25:28 -06001449 'offset': 0,
Simon Glasse8561af2018-08-01 15:22:37 -06001450 '_testing:offset': 32,
Simon Glass8c702fb2019-07-20 12:23:57 -06001451 '_testing:size': 2,
Simon Glass9dcc8612018-08-01 15:22:42 -06001452 '_testing:image-pos': 32,
Simon Glasse8561af2018-08-01 15:22:37 -06001453 'section@0/u-boot:offset': 0,
Simon Glassa87014e2018-07-06 10:27:42 -06001454 'section@0/u-boot:size': len(U_BOOT_DATA),
Simon Glass9dcc8612018-08-01 15:22:42 -06001455 'section@0/u-boot:image-pos': 0,
Simon Glasse8561af2018-08-01 15:22:37 -06001456 'section@0:offset': 0,
Simon Glassa87014e2018-07-06 10:27:42 -06001457 'section@0:size': 16,
Simon Glass9dcc8612018-08-01 15:22:42 -06001458 'section@0:image-pos': 0,
Simon Glassa87014e2018-07-06 10:27:42 -06001459
Simon Glasse8561af2018-08-01 15:22:37 -06001460 'section@1/u-boot:offset': 0,
Simon Glassa87014e2018-07-06 10:27:42 -06001461 'section@1/u-boot:size': len(U_BOOT_DATA),
Simon Glass9dcc8612018-08-01 15:22:42 -06001462 'section@1/u-boot:image-pos': 16,
Simon Glasse8561af2018-08-01 15:22:37 -06001463 'section@1:offset': 16,
Simon Glassa87014e2018-07-06 10:27:42 -06001464 'section@1:size': 16,
Simon Glass9dcc8612018-08-01 15:22:42 -06001465 'section@1:image-pos': 16,
Simon Glassa87014e2018-07-06 10:27:42 -06001466 'size': 40
1467 }, props)
1468
1469 def testUpdateFdtBad(self):
1470 """Test that we detect when ProcessFdt never completes"""
1471 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001472 self._DoReadFileDtb('061_fdt_update_bad.dts', update_dtb=True)
Simon Glassa87014e2018-07-06 10:27:42 -06001473 self.assertIn('Could not complete processing of Fdt: remaining '
Simon Glassc585dd42020-04-17 18:09:03 -06001474 '[<binman.etype._testing.Entry__testing',
1475 str(e.exception))
Simon Glass2e1169f2018-07-06 10:27:19 -06001476
Simon Glass91710b32018-07-17 13:25:32 -06001477 def testEntryArgs(self):
1478 """Test passing arguments to entries from the command line"""
1479 entry_args = {
1480 'test-str-arg': 'test1',
1481 'test-int-arg': '456',
1482 }
Simon Glass511f6582018-10-01 12:22:30 -06001483 self._DoReadFileDtb('062_entry_args.dts', entry_args=entry_args)
Simon Glass91710b32018-07-17 13:25:32 -06001484 self.assertIn('image', control.images)
1485 entry = control.images['image'].GetEntries()['_testing']
1486 self.assertEqual('test0', entry.test_str_fdt)
1487 self.assertEqual('test1', entry.test_str_arg)
1488 self.assertEqual(123, entry.test_int_fdt)
1489 self.assertEqual(456, entry.test_int_arg)
1490
1491 def testEntryArgsMissing(self):
1492 """Test missing arguments and properties"""
1493 entry_args = {
1494 'test-int-arg': '456',
1495 }
Simon Glass511f6582018-10-01 12:22:30 -06001496 self._DoReadFileDtb('063_entry_args_missing.dts', entry_args=entry_args)
Simon Glass91710b32018-07-17 13:25:32 -06001497 entry = control.images['image'].GetEntries()['_testing']
1498 self.assertEqual('test0', entry.test_str_fdt)
1499 self.assertEqual(None, entry.test_str_arg)
1500 self.assertEqual(None, entry.test_int_fdt)
1501 self.assertEqual(456, entry.test_int_arg)
1502
1503 def testEntryArgsRequired(self):
1504 """Test missing arguments and properties"""
1505 entry_args = {
1506 'test-int-arg': '456',
1507 }
1508 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001509 self._DoReadFileDtb('064_entry_args_required.dts')
Simon Glass21db0ff2020-09-01 05:13:54 -06001510 self.assertIn("Node '/binman/_testing': "
1511 'Missing required properties/entry args: test-str-arg, '
1512 'test-int-fdt, test-int-arg',
Simon Glass91710b32018-07-17 13:25:32 -06001513 str(e.exception))
1514
1515 def testEntryArgsInvalidFormat(self):
1516 """Test that an invalid entry-argument format is detected"""
Simon Glassf46732a2019-07-08 14:25:29 -06001517 args = ['build', '-d', self.TestFile('064_entry_args_required.dts'),
1518 '-ano-value']
Simon Glass91710b32018-07-17 13:25:32 -06001519 with self.assertRaises(ValueError) as e:
1520 self._DoBinman(*args)
1521 self.assertIn("Invalid entry arguemnt 'no-value'", str(e.exception))
1522
1523 def testEntryArgsInvalidInteger(self):
1524 """Test that an invalid entry-argument integer is detected"""
1525 entry_args = {
1526 'test-int-arg': 'abc',
1527 }
1528 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001529 self._DoReadFileDtb('062_entry_args.dts', entry_args=entry_args)
Simon Glass91710b32018-07-17 13:25:32 -06001530 self.assertIn("Node '/binman/_testing': Cannot convert entry arg "
1531 "'test-int-arg' (value 'abc') to integer",
1532 str(e.exception))
1533
1534 def testEntryArgsInvalidDatatype(self):
1535 """Test that an invalid entry-argument datatype is detected
1536
1537 This test could be written in entry_test.py except that it needs
1538 access to control.entry_args, which seems more than that module should
1539 be able to see.
1540 """
1541 entry_args = {
1542 'test-bad-datatype-arg': '12',
1543 }
1544 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001545 self._DoReadFileDtb('065_entry_args_unknown_datatype.dts',
Simon Glass91710b32018-07-17 13:25:32 -06001546 entry_args=entry_args)
1547 self.assertIn('GetArg() internal error: Unknown data type ',
1548 str(e.exception))
1549
Simon Glass2ca52032018-07-17 13:25:33 -06001550 def testText(self):
1551 """Test for a text entry type"""
1552 entry_args = {
1553 'test-id': TEXT_DATA,
1554 'test-id2': TEXT_DATA2,
1555 'test-id3': TEXT_DATA3,
1556 }
Simon Glass511f6582018-10-01 12:22:30 -06001557 data, _, _, _ = self._DoReadFileDtb('066_text.dts',
Simon Glass2ca52032018-07-17 13:25:33 -06001558 entry_args=entry_args)
Simon Glass303f62f2019-05-17 22:00:46 -06001559 expected = (tools.ToBytes(TEXT_DATA) +
1560 tools.GetBytes(0, 8 - len(TEXT_DATA)) +
1561 tools.ToBytes(TEXT_DATA2) + tools.ToBytes(TEXT_DATA3) +
Simon Glass47f6a622019-07-08 13:18:40 -06001562 b'some text' + b'more text')
Simon Glass2ca52032018-07-17 13:25:33 -06001563 self.assertEqual(expected, data)
1564
Simon Glass969616c2018-07-17 13:25:36 -06001565 def testEntryDocs(self):
1566 """Test for creation of entry documentation"""
1567 with test_util.capture_sys_output() as (stdout, stderr):
Simon Glass220ff5f2020-08-05 13:27:46 -06001568 control.WriteEntryDocs(control.GetEntryModules())
Simon Glass969616c2018-07-17 13:25:36 -06001569 self.assertTrue(len(stdout.getvalue()) > 0)
1570
1571 def testEntryDocsMissing(self):
1572 """Test handling of missing entry documentation"""
1573 with self.assertRaises(ValueError) as e:
1574 with test_util.capture_sys_output() as (stdout, stderr):
Simon Glass220ff5f2020-08-05 13:27:46 -06001575 control.WriteEntryDocs(control.GetEntryModules(), 'u_boot')
Simon Glass969616c2018-07-17 13:25:36 -06001576 self.assertIn('Documentation is missing for modules: u_boot',
1577 str(e.exception))
1578
Simon Glass704784b2018-07-17 13:25:38 -06001579 def testFmap(self):
1580 """Basic test of generation of a flashrom fmap"""
Simon Glass511f6582018-10-01 12:22:30 -06001581 data = self._DoReadFile('067_fmap.dts')
Simon Glass704784b2018-07-17 13:25:38 -06001582 fhdr, fentries = fmap_util.DecodeFmap(data[32:])
Simon Glass303f62f2019-05-17 22:00:46 -06001583 expected = (U_BOOT_DATA + tools.GetBytes(ord('!'), 12) +
1584 U_BOOT_DATA + tools.GetBytes(ord('a'), 12))
Simon Glass704784b2018-07-17 13:25:38 -06001585 self.assertEqual(expected, data[:32])
Simon Glass303f62f2019-05-17 22:00:46 -06001586 self.assertEqual(b'__FMAP__', fhdr.signature)
Simon Glass704784b2018-07-17 13:25:38 -06001587 self.assertEqual(1, fhdr.ver_major)
1588 self.assertEqual(0, fhdr.ver_minor)
1589 self.assertEqual(0, fhdr.base)
1590 self.assertEqual(16 + 16 +
1591 fmap_util.FMAP_HEADER_LEN +
1592 fmap_util.FMAP_AREA_LEN * 3, fhdr.image_size)
Simon Glass303f62f2019-05-17 22:00:46 -06001593 self.assertEqual(b'FMAP', fhdr.name)
Simon Glass704784b2018-07-17 13:25:38 -06001594 self.assertEqual(3, fhdr.nareas)
1595 for fentry in fentries:
1596 self.assertEqual(0, fentry.flags)
1597
1598 self.assertEqual(0, fentries[0].offset)
1599 self.assertEqual(4, fentries[0].size)
Simon Glass303f62f2019-05-17 22:00:46 -06001600 self.assertEqual(b'RO_U_BOOT', fentries[0].name)
Simon Glass704784b2018-07-17 13:25:38 -06001601
1602 self.assertEqual(16, fentries[1].offset)
1603 self.assertEqual(4, fentries[1].size)
Simon Glass303f62f2019-05-17 22:00:46 -06001604 self.assertEqual(b'RW_U_BOOT', fentries[1].name)
Simon Glass704784b2018-07-17 13:25:38 -06001605
1606 self.assertEqual(32, fentries[2].offset)
1607 self.assertEqual(fmap_util.FMAP_HEADER_LEN +
1608 fmap_util.FMAP_AREA_LEN * 3, fentries[2].size)
Simon Glass303f62f2019-05-17 22:00:46 -06001609 self.assertEqual(b'FMAP', fentries[2].name)
Simon Glass704784b2018-07-17 13:25:38 -06001610
Simon Glassdb168d42018-07-17 13:25:39 -06001611 def testBlobNamedByArg(self):
1612 """Test we can add a blob with the filename coming from an entry arg"""
1613 entry_args = {
1614 'cros-ec-rw-path': 'ecrw.bin',
1615 }
Simon Glass21db0ff2020-09-01 05:13:54 -06001616 self._DoReadFileDtb('068_blob_named_by_arg.dts', entry_args=entry_args)
Simon Glassdb168d42018-07-17 13:25:39 -06001617
Simon Glass53f53992018-07-17 13:25:40 -06001618 def testFill(self):
1619 """Test for an fill entry type"""
Simon Glass511f6582018-10-01 12:22:30 -06001620 data = self._DoReadFile('069_fill.dts')
Simon Glassac0d4952019-05-14 15:53:47 -06001621 expected = tools.GetBytes(0xff, 8) + tools.GetBytes(0, 8)
Simon Glass53f53992018-07-17 13:25:40 -06001622 self.assertEqual(expected, data)
1623
1624 def testFillNoSize(self):
1625 """Test for an fill entry type with no size"""
1626 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001627 self._DoReadFile('070_fill_no_size.dts')
Simon Glass53f53992018-07-17 13:25:40 -06001628 self.assertIn("'fill' entry must have a size property",
1629 str(e.exception))
1630
Simon Glassc1ae83c2018-07-17 13:25:44 -06001631 def _HandleGbbCommand(self, pipe_list):
1632 """Fake calls to the futility utility"""
1633 if pipe_list[0][0] == 'futility':
1634 fname = pipe_list[0][-1]
1635 # Append our GBB data to the file, which will happen every time the
1636 # futility command is called.
Simon Glass33486662019-05-14 15:53:42 -06001637 with open(fname, 'ab') as fd:
Simon Glassc1ae83c2018-07-17 13:25:44 -06001638 fd.write(GBB_DATA)
1639 return command.CommandResult()
1640
1641 def testGbb(self):
1642 """Test for the Chromium OS Google Binary Block"""
1643 command.test_result = self._HandleGbbCommand
1644 entry_args = {
1645 'keydir': 'devkeys',
1646 'bmpblk': 'bmpblk.bin',
1647 }
Simon Glass511f6582018-10-01 12:22:30 -06001648 data, _, _, _ = self._DoReadFileDtb('071_gbb.dts', entry_args=entry_args)
Simon Glassc1ae83c2018-07-17 13:25:44 -06001649
1650 # Since futility
Simon Glassac0d4952019-05-14 15:53:47 -06001651 expected = (GBB_DATA + GBB_DATA + tools.GetBytes(0, 8) +
1652 tools.GetBytes(0, 0x2180 - 16))
Simon Glassc1ae83c2018-07-17 13:25:44 -06001653 self.assertEqual(expected, data)
1654
1655 def testGbbTooSmall(self):
1656 """Test for the Chromium OS Google Binary Block being large enough"""
1657 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001658 self._DoReadFileDtb('072_gbb_too_small.dts')
Simon Glassc1ae83c2018-07-17 13:25:44 -06001659 self.assertIn("Node '/binman/gbb': GBB is too small",
1660 str(e.exception))
1661
1662 def testGbbNoSize(self):
1663 """Test for the Chromium OS Google Binary Block having a size"""
1664 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001665 self._DoReadFileDtb('073_gbb_no_size.dts')
Simon Glassc1ae83c2018-07-17 13:25:44 -06001666 self.assertIn("Node '/binman/gbb': GBB must have a fixed size",
1667 str(e.exception))
1668
Simon Glass5c350162018-07-17 13:25:47 -06001669 def _HandleVblockCommand(self, pipe_list):
Simon Glass220c6222021-01-06 21:35:17 -07001670 """Fake calls to the futility utility
1671
1672 The expected pipe is:
1673
1674 [('futility', 'vbutil_firmware', '--vblock',
1675 'vblock.vblock', '--keyblock', 'devkeys/firmware.keyblock',
1676 '--signprivate', 'devkeys/firmware_data_key.vbprivk',
1677 '--version', '1', '--fv', 'input.vblock', '--kernelkey',
1678 'devkeys/kernel_subkey.vbpubk', '--flags', '1')]
1679
1680 This writes to the output file (here, 'vblock.vblock'). If
1681 self._hash_data is False, it writes VBLOCK_DATA, else it writes a hash
1682 of the input data (here, 'input.vblock').
1683 """
Simon Glass5c350162018-07-17 13:25:47 -06001684 if pipe_list[0][0] == 'futility':
1685 fname = pipe_list[0][3]
Simon Glass639505b2018-09-14 04:57:11 -06001686 with open(fname, 'wb') as fd:
Simon Glass220c6222021-01-06 21:35:17 -07001687 if self._hash_data:
1688 infile = pipe_list[0][11]
1689 m = hashlib.sha256()
1690 data = tools.ReadFile(infile)
1691 m.update(data)
1692 fd.write(m.digest())
1693 else:
1694 fd.write(VBLOCK_DATA)
1695
Simon Glass5c350162018-07-17 13:25:47 -06001696 return command.CommandResult()
1697
1698 def testVblock(self):
1699 """Test for the Chromium OS Verified Boot Block"""
Simon Glass220c6222021-01-06 21:35:17 -07001700 self._hash_data = False
Simon Glass5c350162018-07-17 13:25:47 -06001701 command.test_result = self._HandleVblockCommand
1702 entry_args = {
1703 'keydir': 'devkeys',
1704 }
Simon Glass511f6582018-10-01 12:22:30 -06001705 data, _, _, _ = self._DoReadFileDtb('074_vblock.dts',
Simon Glass5c350162018-07-17 13:25:47 -06001706 entry_args=entry_args)
1707 expected = U_BOOT_DATA + VBLOCK_DATA + U_BOOT_DTB_DATA
1708 self.assertEqual(expected, data)
1709
1710 def testVblockNoContent(self):
1711 """Test we detect a vblock which has no content to sign"""
1712 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001713 self._DoReadFile('075_vblock_no_content.dts')
Simon Glass5c350162018-07-17 13:25:47 -06001714 self.assertIn("Node '/binman/vblock': Vblock must have a 'content' "
1715 'property', str(e.exception))
1716
1717 def testVblockBadPhandle(self):
1718 """Test that we detect a vblock with an invalid phandle in contents"""
1719 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001720 self._DoReadFile('076_vblock_bad_phandle.dts')
Simon Glass5c350162018-07-17 13:25:47 -06001721 self.assertIn("Node '/binman/vblock': Cannot find node for phandle "
1722 '1000', str(e.exception))
1723
1724 def testVblockBadEntry(self):
1725 """Test that we detect an entry that points to a non-entry"""
1726 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001727 self._DoReadFile('077_vblock_bad_entry.dts')
Simon Glass5c350162018-07-17 13:25:47 -06001728 self.assertIn("Node '/binman/vblock': Cannot find entry for node "
1729 "'other'", str(e.exception))
1730
Simon Glass220c6222021-01-06 21:35:17 -07001731 def testVblockContent(self):
1732 """Test that the vblock signs the right data"""
1733 self._hash_data = True
1734 command.test_result = self._HandleVblockCommand
1735 entry_args = {
1736 'keydir': 'devkeys',
1737 }
1738 data = self._DoReadFileDtb(
1739 '189_vblock_content.dts', use_real_dtb=True, update_dtb=True,
1740 entry_args=entry_args)[0]
1741 hashlen = 32 # SHA256 hash is 32 bytes
1742 self.assertEqual(U_BOOT_DATA, data[:len(U_BOOT_DATA)])
1743 hashval = data[-hashlen:]
1744 dtb = data[len(U_BOOT_DATA):-hashlen]
1745
1746 expected_data = U_BOOT_DATA + dtb
1747
1748 # The hashval should be a hash of the dtb
1749 m = hashlib.sha256()
1750 m.update(expected_data)
1751 expected_hashval = m.digest()
1752 self.assertEqual(expected_hashval, hashval)
1753
Simon Glass8425a1f2018-07-17 13:25:48 -06001754 def testTpl(self):
Simon Glass3eb5b202019-08-24 07:23:00 -06001755 """Test that an image with TPL and its device tree can be created"""
Simon Glass8425a1f2018-07-17 13:25:48 -06001756 # ELF file with a '__bss_size' symbol
Simon Glass3eb5b202019-08-24 07:23:00 -06001757 self._SetupTplElf()
Simon Glass511f6582018-10-01 12:22:30 -06001758 data = self._DoReadFile('078_u_boot_tpl.dts')
Simon Glass8425a1f2018-07-17 13:25:48 -06001759 self.assertEqual(U_BOOT_TPL_DATA + U_BOOT_TPL_DTB_DATA, data)
1760
Simon Glass24b97442018-07-17 13:25:51 -06001761 def testUsesPos(self):
1762 """Test that the 'pos' property cannot be used anymore"""
1763 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001764 data = self._DoReadFile('079_uses_pos.dts')
Simon Glass24b97442018-07-17 13:25:51 -06001765 self.assertIn("Node '/binman/u-boot': Please use 'offset' instead of "
1766 "'pos'", str(e.exception))
1767
Simon Glass274bf092018-09-14 04:57:08 -06001768 def testFillZero(self):
1769 """Test for an fill entry type with a size of 0"""
Simon Glass511f6582018-10-01 12:22:30 -06001770 data = self._DoReadFile('080_fill_empty.dts')
Simon Glassac0d4952019-05-14 15:53:47 -06001771 self.assertEqual(tools.GetBytes(0, 16), data)
Simon Glass274bf092018-09-14 04:57:08 -06001772
Simon Glass267de432018-09-14 04:57:09 -06001773 def testTextMissing(self):
1774 """Test for a text entry type where there is no text"""
1775 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001776 self._DoReadFileDtb('066_text.dts',)
Simon Glass267de432018-09-14 04:57:09 -06001777 self.assertIn("Node '/binman/text': No value provided for text label "
1778 "'test-id'", str(e.exception))
1779
Simon Glassed40e962018-09-14 04:57:10 -06001780 def testPackStart16Tpl(self):
1781 """Test that an image with an x86 start16 TPL region can be created"""
Simon Glass1d167762019-08-24 07:23:01 -06001782 data = self._DoReadFile('081_x86_start16_tpl.dts')
Simon Glassed40e962018-09-14 04:57:10 -06001783 self.assertEqual(X86_START16_TPL_DATA, data[:len(X86_START16_TPL_DATA)])
1784
Simon Glass3b376c32018-09-14 04:57:12 -06001785 def testSelectImage(self):
1786 """Test that we can select which images to build"""
Simon Glassb4595d82019-04-25 21:58:34 -06001787 expected = 'Skipping images: image1'
1788
1789 # We should only get the expected message in verbose mode
Simon Glass8a50b4a2019-07-08 13:18:48 -06001790 for verbosity in (0, 2):
Simon Glassb4595d82019-04-25 21:58:34 -06001791 with test_util.capture_sys_output() as (stdout, stderr):
1792 retcode = self._DoTestFile('006_dual_image.dts',
1793 verbosity=verbosity,
1794 images=['image2'])
1795 self.assertEqual(0, retcode)
1796 if verbosity:
1797 self.assertIn(expected, stdout.getvalue())
1798 else:
1799 self.assertNotIn(expected, stdout.getvalue())
Simon Glass3b376c32018-09-14 04:57:12 -06001800
Simon Glassb4595d82019-04-25 21:58:34 -06001801 self.assertFalse(os.path.exists(tools.GetOutputFilename('image1.bin')))
1802 self.assertTrue(os.path.exists(tools.GetOutputFilename('image2.bin')))
Simon Glassb3d6fc72019-07-20 12:24:10 -06001803 self._CleanupOutputDir()
Simon Glass3b376c32018-09-14 04:57:12 -06001804
Simon Glasse219aa42018-09-14 04:57:24 -06001805 def testUpdateFdtAll(self):
1806 """Test that all device trees are updated with offset/size info"""
Simon Glass5b4bce32019-07-08 14:25:26 -06001807 data = self._DoReadFileRealDtb('082_fdt_update_all.dts')
Simon Glasse219aa42018-09-14 04:57:24 -06001808
1809 base_expected = {
1810 'section:image-pos': 0,
1811 'u-boot-tpl-dtb:size': 513,
1812 'u-boot-spl-dtb:size': 513,
1813 'u-boot-spl-dtb:offset': 493,
1814 'image-pos': 0,
1815 'section/u-boot-dtb:image-pos': 0,
1816 'u-boot-spl-dtb:image-pos': 493,
1817 'section/u-boot-dtb:size': 493,
1818 'u-boot-tpl-dtb:image-pos': 1006,
1819 'section/u-boot-dtb:offset': 0,
1820 'section:size': 493,
1821 'offset': 0,
1822 'section:offset': 0,
1823 'u-boot-tpl-dtb:offset': 1006,
1824 'size': 1519
1825 }
1826
1827 # We expect three device-tree files in the output, one after the other.
1828 # Read them in sequence. We look for an 'spl' property in the SPL tree,
1829 # and 'tpl' in the TPL tree, to make sure they are distinct from the
1830 # main U-Boot tree. All three should have the same postions and offset.
1831 start = 0
1832 for item in ['', 'spl', 'tpl']:
1833 dtb = fdt.Fdt.FromData(data[start:])
1834 dtb.Scan()
Simon Glassfb30e292019-07-20 12:23:51 -06001835 props = self._GetPropTree(dtb, BASE_DTB_PROPS + REPACK_DTB_PROPS +
1836 ['spl', 'tpl'])
Simon Glasse219aa42018-09-14 04:57:24 -06001837 expected = dict(base_expected)
1838 if item:
1839 expected[item] = 0
1840 self.assertEqual(expected, props)
1841 start += dtb._fdt_obj.totalsize()
1842
1843 def testUpdateFdtOutput(self):
1844 """Test that output DTB files are updated"""
1845 try:
Simon Glass511f6582018-10-01 12:22:30 -06001846 data, dtb_data, _, _ = self._DoReadFileDtb('082_fdt_update_all.dts',
Simon Glasse219aa42018-09-14 04:57:24 -06001847 use_real_dtb=True, update_dtb=True, reset_dtbs=False)
1848
1849 # Unfortunately, compiling a source file always results in a file
1850 # called source.dtb (see fdt_util.EnsureCompiled()). The test
Simon Glass511f6582018-10-01 12:22:30 -06001851 # source file (e.g. test/075_fdt_update_all.dts) thus does not enter
Simon Glasse219aa42018-09-14 04:57:24 -06001852 # binman as a file called u-boot.dtb. To fix this, copy the file
1853 # over to the expected place.
Simon Glasse219aa42018-09-14 04:57:24 -06001854 start = 0
1855 for fname in ['u-boot.dtb.out', 'spl/u-boot-spl.dtb.out',
1856 'tpl/u-boot-tpl.dtb.out']:
1857 dtb = fdt.Fdt.FromData(data[start:])
1858 size = dtb._fdt_obj.totalsize()
1859 pathname = tools.GetOutputFilename(os.path.split(fname)[1])
1860 outdata = tools.ReadFile(pathname)
1861 name = os.path.split(fname)[0]
1862
1863 if name:
1864 orig_indata = self._GetDtbContentsForSplTpl(dtb_data, name)
1865 else:
1866 orig_indata = dtb_data
1867 self.assertNotEqual(outdata, orig_indata,
1868 "Expected output file '%s' be updated" % pathname)
1869 self.assertEqual(outdata, data[start:start + size],
1870 "Expected output file '%s' to match output image" %
1871 pathname)
1872 start += size
1873 finally:
1874 self._ResetDtbs()
1875
Simon Glass7ba33592018-09-14 04:57:26 -06001876 def _decompress(self, data):
Simon Glassccec0262019-07-08 13:18:42 -06001877 return tools.Decompress(data, 'lz4')
Simon Glass7ba33592018-09-14 04:57:26 -06001878
1879 def testCompress(self):
1880 """Test compression of blobs"""
Simon Glass1de34482019-07-08 13:18:53 -06001881 self._CheckLz4()
Simon Glass511f6582018-10-01 12:22:30 -06001882 data, _, _, out_dtb_fname = self._DoReadFileDtb('083_compress.dts',
Simon Glass7ba33592018-09-14 04:57:26 -06001883 use_real_dtb=True, update_dtb=True)
1884 dtb = fdt.Fdt(out_dtb_fname)
1885 dtb.Scan()
1886 props = self._GetPropTree(dtb, ['size', 'uncomp-size'])
1887 orig = self._decompress(data)
1888 self.assertEquals(COMPRESS_DATA, orig)
Simon Glass789b34402020-10-26 17:40:15 -06001889
1890 # Do a sanity check on various fields
1891 image = control.images['image']
1892 entries = image.GetEntries()
1893 self.assertEqual(1, len(entries))
1894
1895 entry = entries['blob']
1896 self.assertEqual(COMPRESS_DATA, entry.uncomp_data)
1897 self.assertEqual(len(COMPRESS_DATA), entry.uncomp_size)
1898 orig = self._decompress(entry.data)
1899 self.assertEqual(orig, entry.uncomp_data)
1900
Simon Glass72eeff12020-10-26 17:40:16 -06001901 self.assertEqual(image.data, entry.data)
1902
Simon Glass7ba33592018-09-14 04:57:26 -06001903 expected = {
1904 'blob:uncomp-size': len(COMPRESS_DATA),
1905 'blob:size': len(data),
1906 'size': len(data),
1907 }
1908 self.assertEqual(expected, props)
1909
Simon Glassac6328c2018-09-14 04:57:28 -06001910 def testFiles(self):
1911 """Test bringing in multiple files"""
Simon Glass511f6582018-10-01 12:22:30 -06001912 data = self._DoReadFile('084_files.dts')
Simon Glassac6328c2018-09-14 04:57:28 -06001913 self.assertEqual(FILES_DATA, data)
1914
1915 def testFilesCompress(self):
1916 """Test bringing in multiple files and compressing them"""
Simon Glass1de34482019-07-08 13:18:53 -06001917 self._CheckLz4()
Simon Glass511f6582018-10-01 12:22:30 -06001918 data = self._DoReadFile('085_files_compress.dts')
Simon Glassac6328c2018-09-14 04:57:28 -06001919
1920 image = control.images['image']
1921 entries = image.GetEntries()
1922 files = entries['files']
Simon Glass39dd2152019-07-08 14:25:47 -06001923 entries = files._entries
Simon Glassac6328c2018-09-14 04:57:28 -06001924
Simon Glass303f62f2019-05-17 22:00:46 -06001925 orig = b''
Simon Glassac6328c2018-09-14 04:57:28 -06001926 for i in range(1, 3):
1927 key = '%d.dat' % i
1928 start = entries[key].image_pos
1929 len = entries[key].size
1930 chunk = data[start:start + len]
1931 orig += self._decompress(chunk)
1932
1933 self.assertEqual(FILES_DATA, orig)
1934
1935 def testFilesMissing(self):
1936 """Test missing files"""
1937 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001938 data = self._DoReadFile('086_files_none.dts')
Simon Glassac6328c2018-09-14 04:57:28 -06001939 self.assertIn("Node '/binman/files': Pattern \'files/*.none\' matched "
1940 'no files', str(e.exception))
1941
1942 def testFilesNoPattern(self):
1943 """Test missing files"""
1944 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001945 data = self._DoReadFile('087_files_no_pattern.dts')
Simon Glassac6328c2018-09-14 04:57:28 -06001946 self.assertIn("Node '/binman/files': Missing 'pattern' property",
1947 str(e.exception))
1948
Simon Glassfa79a812018-09-14 04:57:29 -06001949 def testExpandSize(self):
1950 """Test an expanding entry"""
Simon Glass511f6582018-10-01 12:22:30 -06001951 data, _, map_data, _ = self._DoReadFileDtb('088_expand_size.dts',
Simon Glassfa79a812018-09-14 04:57:29 -06001952 map=True)
Simon Glass303f62f2019-05-17 22:00:46 -06001953 expect = (tools.GetBytes(ord('a'), 8) + U_BOOT_DATA +
1954 MRC_DATA + tools.GetBytes(ord('b'), 1) + U_BOOT_DATA +
1955 tools.GetBytes(ord('c'), 8) + U_BOOT_DATA +
1956 tools.GetBytes(ord('d'), 8))
Simon Glassfa79a812018-09-14 04:57:29 -06001957 self.assertEqual(expect, data)
1958 self.assertEqual('''ImagePos Offset Size Name
195900000000 00000000 00000028 main-section
196000000000 00000000 00000008 fill
196100000008 00000008 00000004 u-boot
19620000000c 0000000c 00000004 section
19630000000c 00000000 00000003 intel-mrc
196400000010 00000010 00000004 u-boot2
196500000014 00000014 0000000c section2
196600000014 00000000 00000008 fill
19670000001c 00000008 00000004 u-boot
196800000020 00000020 00000008 fill2
1969''', map_data)
1970
1971 def testExpandSizeBad(self):
1972 """Test an expanding entry which fails to provide contents"""
Simon Glasscd817d52018-09-14 04:57:36 -06001973 with test_util.capture_sys_output() as (stdout, stderr):
1974 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001975 self._DoReadFileDtb('089_expand_size_bad.dts', map=True)
Simon Glassfa79a812018-09-14 04:57:29 -06001976 self.assertIn("Node '/binman/_testing': Cannot obtain contents when "
1977 'expanding entry', str(e.exception))
1978
Simon Glassae7cf032018-09-14 04:57:31 -06001979 def testHash(self):
1980 """Test hashing of the contents of an entry"""
Simon Glass511f6582018-10-01 12:22:30 -06001981 _, _, _, out_dtb_fname = self._DoReadFileDtb('090_hash.dts',
Simon Glassae7cf032018-09-14 04:57:31 -06001982 use_real_dtb=True, update_dtb=True)
1983 dtb = fdt.Fdt(out_dtb_fname)
1984 dtb.Scan()
1985 hash_node = dtb.GetNode('/binman/u-boot/hash').props['value']
1986 m = hashlib.sha256()
1987 m.update(U_BOOT_DATA)
Simon Glass303f62f2019-05-17 22:00:46 -06001988 self.assertEqual(m.digest(), b''.join(hash_node.value))
Simon Glassae7cf032018-09-14 04:57:31 -06001989
1990 def testHashNoAlgo(self):
1991 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001992 self._DoReadFileDtb('091_hash_no_algo.dts', update_dtb=True)
Simon Glassae7cf032018-09-14 04:57:31 -06001993 self.assertIn("Node \'/binman/u-boot\': Missing \'algo\' property for "
1994 'hash node', str(e.exception))
1995
1996 def testHashBadAlgo(self):
1997 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06001998 self._DoReadFileDtb('092_hash_bad_algo.dts', update_dtb=True)
Simon Glassae7cf032018-09-14 04:57:31 -06001999 self.assertIn("Node '/binman/u-boot': Unknown hash algorithm",
2000 str(e.exception))
2001
2002 def testHashSection(self):
2003 """Test hashing of the contents of an entry"""
Simon Glass511f6582018-10-01 12:22:30 -06002004 _, _, _, out_dtb_fname = self._DoReadFileDtb('099_hash_section.dts',
Simon Glassae7cf032018-09-14 04:57:31 -06002005 use_real_dtb=True, update_dtb=True)
2006 dtb = fdt.Fdt(out_dtb_fname)
2007 dtb.Scan()
2008 hash_node = dtb.GetNode('/binman/section/hash').props['value']
2009 m = hashlib.sha256()
2010 m.update(U_BOOT_DATA)
Simon Glass303f62f2019-05-17 22:00:46 -06002011 m.update(tools.GetBytes(ord('a'), 16))
2012 self.assertEqual(m.digest(), b''.join(hash_node.value))
Simon Glassae7cf032018-09-14 04:57:31 -06002013
Simon Glass3fb4f422018-09-14 04:57:32 -06002014 def testPackUBootTplMicrocode(self):
2015 """Test that x86 microcode can be handled correctly in TPL
2016
2017 We expect to see the following in the image, in order:
2018 u-boot-tpl-nodtb.bin with a microcode pointer inserted at the correct
2019 place
2020 u-boot-tpl.dtb with the microcode removed
2021 the microcode
2022 """
Simon Glass3eb5b202019-08-24 07:23:00 -06002023 self._SetupTplElf('u_boot_ucode_ptr')
Simon Glass511f6582018-10-01 12:22:30 -06002024 first, pos_and_size = self._RunMicrocodeTest('093_x86_tpl_ucode.dts',
Simon Glass3fb4f422018-09-14 04:57:32 -06002025 U_BOOT_TPL_NODTB_DATA)
Simon Glass303f62f2019-05-17 22:00:46 -06002026 self.assertEqual(b'tplnodtb with microc' + pos_and_size +
2027 b'ter somewhere in here', first)
Simon Glass3fb4f422018-09-14 04:57:32 -06002028
Simon Glassc64aea52018-09-14 04:57:34 -06002029 def testFmapX86(self):
2030 """Basic test of generation of a flashrom fmap"""
Simon Glass511f6582018-10-01 12:22:30 -06002031 data = self._DoReadFile('094_fmap_x86.dts')
Simon Glassc64aea52018-09-14 04:57:34 -06002032 fhdr, fentries = fmap_util.DecodeFmap(data[32:])
Simon Glass303f62f2019-05-17 22:00:46 -06002033 expected = U_BOOT_DATA + MRC_DATA + tools.GetBytes(ord('a'), 32 - 7)
Simon Glassc64aea52018-09-14 04:57:34 -06002034 self.assertEqual(expected, data[:32])
2035 fhdr, fentries = fmap_util.DecodeFmap(data[32:])
2036
2037 self.assertEqual(0x100, fhdr.image_size)
2038
2039 self.assertEqual(0, fentries[0].offset)
2040 self.assertEqual(4, fentries[0].size)
Simon Glass303f62f2019-05-17 22:00:46 -06002041 self.assertEqual(b'U_BOOT', fentries[0].name)
Simon Glassc64aea52018-09-14 04:57:34 -06002042
2043 self.assertEqual(4, fentries[1].offset)
2044 self.assertEqual(3, fentries[1].size)
Simon Glass303f62f2019-05-17 22:00:46 -06002045 self.assertEqual(b'INTEL_MRC', fentries[1].name)
Simon Glassc64aea52018-09-14 04:57:34 -06002046
2047 self.assertEqual(32, fentries[2].offset)
2048 self.assertEqual(fmap_util.FMAP_HEADER_LEN +
2049 fmap_util.FMAP_AREA_LEN * 3, fentries[2].size)
Simon Glass303f62f2019-05-17 22:00:46 -06002050 self.assertEqual(b'FMAP', fentries[2].name)
Simon Glassc64aea52018-09-14 04:57:34 -06002051
2052 def testFmapX86Section(self):
2053 """Basic test of generation of a flashrom fmap"""
Simon Glass511f6582018-10-01 12:22:30 -06002054 data = self._DoReadFile('095_fmap_x86_section.dts')
Simon Glass303f62f2019-05-17 22:00:46 -06002055 expected = U_BOOT_DATA + MRC_DATA + tools.GetBytes(ord('b'), 32 - 7)
Simon Glassc64aea52018-09-14 04:57:34 -06002056 self.assertEqual(expected, data[:32])
2057 fhdr, fentries = fmap_util.DecodeFmap(data[36:])
2058
2059 self.assertEqual(0x100, fhdr.image_size)
2060
2061 self.assertEqual(0, fentries[0].offset)
2062 self.assertEqual(4, fentries[0].size)
Simon Glass303f62f2019-05-17 22:00:46 -06002063 self.assertEqual(b'U_BOOT', fentries[0].name)
Simon Glassc64aea52018-09-14 04:57:34 -06002064
2065 self.assertEqual(4, fentries[1].offset)
2066 self.assertEqual(3, fentries[1].size)
Simon Glass303f62f2019-05-17 22:00:46 -06002067 self.assertEqual(b'INTEL_MRC', fentries[1].name)
Simon Glassc64aea52018-09-14 04:57:34 -06002068
2069 self.assertEqual(36, fentries[2].offset)
2070 self.assertEqual(fmap_util.FMAP_HEADER_LEN +
2071 fmap_util.FMAP_AREA_LEN * 3, fentries[2].size)
Simon Glass303f62f2019-05-17 22:00:46 -06002072 self.assertEqual(b'FMAP', fentries[2].name)
Simon Glassc64aea52018-09-14 04:57:34 -06002073
Simon Glassb1714232018-09-14 04:57:35 -06002074 def testElf(self):
2075 """Basic test of ELF entries"""
Simon Glass7057d022018-10-01 21:12:47 -06002076 self._SetupSplElf()
Simon Glass3eb5b202019-08-24 07:23:00 -06002077 self._SetupTplElf()
Simon Glassf6290892019-08-24 07:22:53 -06002078 with open(self.ElfTestFile('bss_data'), 'rb') as fd:
Simon Glassb1714232018-09-14 04:57:35 -06002079 TestFunctional._MakeInputFile('-boot', fd.read())
Simon Glass511f6582018-10-01 12:22:30 -06002080 data = self._DoReadFile('096_elf.dts')
Simon Glassb1714232018-09-14 04:57:35 -06002081
Simon Glass0d673792019-07-08 13:18:25 -06002082 def testElfStrip(self):
Simon Glassb1714232018-09-14 04:57:35 -06002083 """Basic test of ELF entries"""
Simon Glass7057d022018-10-01 21:12:47 -06002084 self._SetupSplElf()
Simon Glassf6290892019-08-24 07:22:53 -06002085 with open(self.ElfTestFile('bss_data'), 'rb') as fd:
Simon Glassb1714232018-09-14 04:57:35 -06002086 TestFunctional._MakeInputFile('-boot', fd.read())
Simon Glass511f6582018-10-01 12:22:30 -06002087 data = self._DoReadFile('097_elf_strip.dts')
Simon Glassb1714232018-09-14 04:57:35 -06002088
Simon Glasscd817d52018-09-14 04:57:36 -06002089 def testPackOverlapMap(self):
2090 """Test that overlapping regions are detected"""
2091 with test_util.capture_sys_output() as (stdout, stderr):
2092 with self.assertRaises(ValueError) as e:
Simon Glass511f6582018-10-01 12:22:30 -06002093 self._DoTestFile('014_pack_overlap.dts', map=True)
Simon Glasscd817d52018-09-14 04:57:36 -06002094 map_fname = tools.GetOutputFilename('image.map')
2095 self.assertEqual("Wrote map file '%s' to show errors\n" % map_fname,
2096 stdout.getvalue())
2097
2098 # We should not get an inmage, but there should be a map file
2099 self.assertFalse(os.path.exists(tools.GetOutputFilename('image.bin')))
2100 self.assertTrue(os.path.exists(map_fname))
Simon Glassb3774752019-05-17 22:00:51 -06002101 map_data = tools.ReadFile(map_fname, binary=False)
Simon Glasscd817d52018-09-14 04:57:36 -06002102 self.assertEqual('''ImagePos Offset Size Name
Simon Glassd99850b2020-10-26 17:40:24 -06002103<none> 00000000 00000008 main-section
Simon Glasscd817d52018-09-14 04:57:36 -06002104<none> 00000000 00000004 u-boot
2105<none> 00000003 00000004 u-boot-align
2106''', map_data)
2107
Simon Glass0d673792019-07-08 13:18:25 -06002108 def testPackRefCode(self):
Simon Glass41902e42018-10-01 12:22:31 -06002109 """Test that an image with an Intel Reference code binary works"""
2110 data = self._DoReadFile('100_intel_refcode.dts')
2111 self.assertEqual(REFCODE_DATA, data[:len(REFCODE_DATA)])
2112
Simon Glasseb023b32019-04-25 21:58:39 -06002113 def testSectionOffset(self):
2114 """Tests use of a section with an offset"""
2115 data, _, map_data, _ = self._DoReadFileDtb('101_sections_offset.dts',
2116 map=True)
2117 self.assertEqual('''ImagePos Offset Size Name
211800000000 00000000 00000038 main-section
211900000004 00000004 00000010 section@0
212000000004 00000000 00000004 u-boot
212100000018 00000018 00000010 section@1
212200000018 00000000 00000004 u-boot
21230000002c 0000002c 00000004 section@2
21240000002c 00000000 00000004 u-boot
2125''', map_data)
2126 self.assertEqual(data,
Simon Glassac0d4952019-05-14 15:53:47 -06002127 tools.GetBytes(0x26, 4) + U_BOOT_DATA +
2128 tools.GetBytes(0x21, 12) +
2129 tools.GetBytes(0x26, 4) + U_BOOT_DATA +
2130 tools.GetBytes(0x61, 12) +
2131 tools.GetBytes(0x26, 4) + U_BOOT_DATA +
2132 tools.GetBytes(0x26, 8))
Simon Glasseb023b32019-04-25 21:58:39 -06002133
Simon Glass1de34482019-07-08 13:18:53 -06002134 def testCbfsRaw(self):
2135 """Test base handling of a Coreboot Filesystem (CBFS)
2136
2137 The exact contents of the CBFS is verified by similar tests in
2138 cbfs_util_test.py. The tests here merely check that the files added to
2139 the CBFS can be found in the final image.
2140 """
2141 data = self._DoReadFile('102_cbfs_raw.dts')
2142 size = 0xb0
2143
2144 cbfs = cbfs_util.CbfsReader(data)
2145 self.assertEqual(size, cbfs.rom_size)
2146
2147 self.assertIn('u-boot-dtb', cbfs.files)
2148 cfile = cbfs.files['u-boot-dtb']
2149 self.assertEqual(U_BOOT_DTB_DATA, cfile.data)
2150
2151 def testCbfsArch(self):
2152 """Test on non-x86 architecture"""
2153 data = self._DoReadFile('103_cbfs_raw_ppc.dts')
2154 size = 0x100
2155
2156 cbfs = cbfs_util.CbfsReader(data)
2157 self.assertEqual(size, cbfs.rom_size)
2158
2159 self.assertIn('u-boot-dtb', cbfs.files)
2160 cfile = cbfs.files['u-boot-dtb']
2161 self.assertEqual(U_BOOT_DTB_DATA, cfile.data)
2162
2163 def testCbfsStage(self):
2164 """Tests handling of a Coreboot Filesystem (CBFS)"""
2165 if not elf.ELF_TOOLS:
2166 self.skipTest('Python elftools not available')
2167 elf_fname = os.path.join(self._indir, 'cbfs-stage.elf')
2168 elf.MakeElf(elf_fname, U_BOOT_DATA, U_BOOT_DTB_DATA)
2169 size = 0xb0
2170
2171 data = self._DoReadFile('104_cbfs_stage.dts')
2172 cbfs = cbfs_util.CbfsReader(data)
2173 self.assertEqual(size, cbfs.rom_size)
2174
2175 self.assertIn('u-boot', cbfs.files)
2176 cfile = cbfs.files['u-boot']
2177 self.assertEqual(U_BOOT_DATA + U_BOOT_DTB_DATA, cfile.data)
2178
2179 def testCbfsRawCompress(self):
2180 """Test handling of compressing raw files"""
2181 self._CheckLz4()
2182 data = self._DoReadFile('105_cbfs_raw_compress.dts')
2183 size = 0x140
2184
2185 cbfs = cbfs_util.CbfsReader(data)
2186 self.assertIn('u-boot', cbfs.files)
2187 cfile = cbfs.files['u-boot']
2188 self.assertEqual(COMPRESS_DATA, cfile.data)
2189
2190 def testCbfsBadArch(self):
2191 """Test handling of a bad architecture"""
2192 with self.assertRaises(ValueError) as e:
2193 self._DoReadFile('106_cbfs_bad_arch.dts')
2194 self.assertIn("Invalid architecture 'bad-arch'", str(e.exception))
2195
2196 def testCbfsNoSize(self):
2197 """Test handling of a missing size property"""
2198 with self.assertRaises(ValueError) as e:
2199 self._DoReadFile('107_cbfs_no_size.dts')
2200 self.assertIn('entry must have a size property', str(e.exception))
2201
2202 def testCbfsNoCOntents(self):
2203 """Test handling of a CBFS entry which does not provide contentsy"""
2204 with self.assertRaises(ValueError) as e:
2205 self._DoReadFile('108_cbfs_no_contents.dts')
2206 self.assertIn('Could not complete processing of contents',
2207 str(e.exception))
2208
2209 def testCbfsBadCompress(self):
2210 """Test handling of a bad architecture"""
2211 with self.assertRaises(ValueError) as e:
2212 self._DoReadFile('109_cbfs_bad_compress.dts')
2213 self.assertIn("Invalid compression in 'u-boot': 'invalid-algo'",
2214 str(e.exception))
2215
2216 def testCbfsNamedEntries(self):
2217 """Test handling of named entries"""
2218 data = self._DoReadFile('110_cbfs_name.dts')
2219
2220 cbfs = cbfs_util.CbfsReader(data)
2221 self.assertIn('FRED', cbfs.files)
2222 cfile1 = cbfs.files['FRED']
2223 self.assertEqual(U_BOOT_DATA, cfile1.data)
2224
2225 self.assertIn('hello', cbfs.files)
2226 cfile2 = cbfs.files['hello']
2227 self.assertEqual(U_BOOT_DTB_DATA, cfile2.data)
2228
Simon Glass759af872019-07-08 13:18:54 -06002229 def _SetupIfwi(self, fname):
2230 """Set up to run an IFWI test
2231
2232 Args:
2233 fname: Filename of input file to provide (fitimage.bin or ifwi.bin)
2234 """
2235 self._SetupSplElf()
Simon Glass3eb5b202019-08-24 07:23:00 -06002236 self._SetupTplElf()
Simon Glass759af872019-07-08 13:18:54 -06002237
2238 # Intel Integrated Firmware Image (IFWI) file
2239 with gzip.open(self.TestFile('%s.gz' % fname), 'rb') as fd:
2240 data = fd.read()
2241 TestFunctional._MakeInputFile(fname,data)
2242
2243 def _CheckIfwi(self, data):
2244 """Check that an image with an IFWI contains the correct output
2245
2246 Args:
2247 data: Conents of output file
2248 """
2249 expected_desc = tools.ReadFile(self.TestFile('descriptor.bin'))
2250 if data[:0x1000] != expected_desc:
2251 self.fail('Expected descriptor binary at start of image')
2252
2253 # We expect to find the TPL wil in subpart IBBP entry IBBL
2254 image_fname = tools.GetOutputFilename('image.bin')
2255 tpl_fname = tools.GetOutputFilename('tpl.out')
2256 tools.RunIfwiTool(image_fname, tools.CMD_EXTRACT, fname=tpl_fname,
2257 subpart='IBBP', entry_name='IBBL')
2258
2259 tpl_data = tools.ReadFile(tpl_fname)
Simon Glassf55bd692019-08-24 07:22:51 -06002260 self.assertEqual(U_BOOT_TPL_DATA, tpl_data[:len(U_BOOT_TPL_DATA)])
Simon Glass759af872019-07-08 13:18:54 -06002261
2262 def testPackX86RomIfwi(self):
2263 """Test that an x86 ROM with Integrated Firmware Image can be created"""
2264 self._SetupIfwi('fitimage.bin')
Simon Glass1d167762019-08-24 07:23:01 -06002265 data = self._DoReadFile('111_x86_rom_ifwi.dts')
Simon Glass759af872019-07-08 13:18:54 -06002266 self._CheckIfwi(data)
2267
2268 def testPackX86RomIfwiNoDesc(self):
2269 """Test that an x86 ROM with IFWI can be created from an ifwi.bin file"""
2270 self._SetupIfwi('ifwi.bin')
Simon Glass1d167762019-08-24 07:23:01 -06002271 data = self._DoReadFile('112_x86_rom_ifwi_nodesc.dts')
Simon Glass759af872019-07-08 13:18:54 -06002272 self._CheckIfwi(data)
2273
2274 def testPackX86RomIfwiNoData(self):
2275 """Test that an x86 ROM with IFWI handles missing data"""
2276 self._SetupIfwi('ifwi.bin')
2277 with self.assertRaises(ValueError) as e:
Simon Glass1d167762019-08-24 07:23:01 -06002278 data = self._DoReadFile('113_x86_rom_ifwi_nodata.dts')
Simon Glass759af872019-07-08 13:18:54 -06002279 self.assertIn('Could not complete processing of contents',
2280 str(e.exception))
Simon Glass91710b32018-07-17 13:25:32 -06002281
Simon Glassc2f1aed2019-07-08 13:18:56 -06002282 def testCbfsOffset(self):
2283 """Test a CBFS with files at particular offsets
2284
2285 Like all CFBS tests, this is just checking the logic that calls
2286 cbfs_util. See cbfs_util_test for fully tests (e.g. test_cbfs_offset()).
2287 """
2288 data = self._DoReadFile('114_cbfs_offset.dts')
2289 size = 0x200
2290
2291 cbfs = cbfs_util.CbfsReader(data)
2292 self.assertEqual(size, cbfs.rom_size)
2293
2294 self.assertIn('u-boot', cbfs.files)
2295 cfile = cbfs.files['u-boot']
2296 self.assertEqual(U_BOOT_DATA, cfile.data)
2297 self.assertEqual(0x40, cfile.cbfs_offset)
2298
2299 self.assertIn('u-boot-dtb', cbfs.files)
2300 cfile2 = cbfs.files['u-boot-dtb']
2301 self.assertEqual(U_BOOT_DTB_DATA, cfile2.data)
2302 self.assertEqual(0x140, cfile2.cbfs_offset)
2303
Simon Glass0f621332019-07-08 14:25:27 -06002304 def testFdtmap(self):
2305 """Test an FDT map can be inserted in the image"""
2306 data = self.data = self._DoReadFileRealDtb('115_fdtmap.dts')
2307 fdtmap_data = data[len(U_BOOT_DATA):]
2308 magic = fdtmap_data[:8]
Simon Glassc5fd10a2019-10-31 07:43:03 -06002309 self.assertEqual(b'_FDTMAP_', magic)
Simon Glass0f621332019-07-08 14:25:27 -06002310 self.assertEqual(tools.GetBytes(0, 8), fdtmap_data[8:16])
2311
2312 fdt_data = fdtmap_data[16:]
2313 dtb = fdt.Fdt.FromData(fdt_data)
2314 dtb.Scan()
Simon Glass2c6adba2019-07-20 12:23:47 -06002315 props = self._GetPropTree(dtb, BASE_DTB_PROPS, prefix='/')
Simon Glass0f621332019-07-08 14:25:27 -06002316 self.assertEqual({
2317 'image-pos': 0,
2318 'offset': 0,
2319 'u-boot:offset': 0,
2320 'u-boot:size': len(U_BOOT_DATA),
2321 'u-boot:image-pos': 0,
2322 'fdtmap:image-pos': 4,
2323 'fdtmap:offset': 4,
2324 'fdtmap:size': len(fdtmap_data),
2325 'size': len(data),
2326 }, props)
2327
2328 def testFdtmapNoMatch(self):
2329 """Check handling of an FDT map when the section cannot be found"""
2330 self.data = self._DoReadFileRealDtb('115_fdtmap.dts')
2331
2332 # Mangle the section name, which should cause a mismatch between the
2333 # correct FDT path and the one expected by the section
2334 image = control.images['image']
Simon Glasscec34ba2019-07-08 14:25:28 -06002335 image._node.path += '-suffix'
Simon Glass0f621332019-07-08 14:25:27 -06002336 entries = image.GetEntries()
2337 fdtmap = entries['fdtmap']
2338 with self.assertRaises(ValueError) as e:
2339 fdtmap._GetFdtmap()
2340 self.assertIn("Cannot locate node for path '/binman-suffix'",
2341 str(e.exception))
2342
Simon Glasscec34ba2019-07-08 14:25:28 -06002343 def testFdtmapHeader(self):
2344 """Test an FDT map and image header can be inserted in the image"""
2345 data = self.data = self._DoReadFileRealDtb('116_fdtmap_hdr.dts')
2346 fdtmap_pos = len(U_BOOT_DATA)
2347 fdtmap_data = data[fdtmap_pos:]
2348 fdt_data = fdtmap_data[16:]
2349 dtb = fdt.Fdt.FromData(fdt_data)
2350 fdt_size = dtb.GetFdtObj().totalsize()
2351 hdr_data = data[-8:]
Simon Glassc5fd10a2019-10-31 07:43:03 -06002352 self.assertEqual(b'BinM', hdr_data[:4])
Simon Glasscec34ba2019-07-08 14:25:28 -06002353 offset = struct.unpack('<I', hdr_data[4:])[0] & 0xffffffff
2354 self.assertEqual(fdtmap_pos - 0x400, offset - (1 << 32))
2355
2356 def testFdtmapHeaderStart(self):
2357 """Test an image header can be inserted at the image start"""
2358 data = self.data = self._DoReadFileRealDtb('117_fdtmap_hdr_start.dts')
2359 fdtmap_pos = 0x100 + len(U_BOOT_DATA)
2360 hdr_data = data[:8]
Simon Glassc5fd10a2019-10-31 07:43:03 -06002361 self.assertEqual(b'BinM', hdr_data[:4])
Simon Glasscec34ba2019-07-08 14:25:28 -06002362 offset = struct.unpack('<I', hdr_data[4:])[0]
2363 self.assertEqual(fdtmap_pos, offset)
2364
2365 def testFdtmapHeaderPos(self):
2366 """Test an image header can be inserted at a chosen position"""
2367 data = self.data = self._DoReadFileRealDtb('118_fdtmap_hdr_pos.dts')
2368 fdtmap_pos = 0x100 + len(U_BOOT_DATA)
2369 hdr_data = data[0x80:0x88]
Simon Glassc5fd10a2019-10-31 07:43:03 -06002370 self.assertEqual(b'BinM', hdr_data[:4])
Simon Glasscec34ba2019-07-08 14:25:28 -06002371 offset = struct.unpack('<I', hdr_data[4:])[0]
2372 self.assertEqual(fdtmap_pos, offset)
2373
2374 def testHeaderMissingFdtmap(self):
2375 """Test an image header requires an fdtmap"""
2376 with self.assertRaises(ValueError) as e:
2377 self.data = self._DoReadFileRealDtb('119_fdtmap_hdr_missing.dts')
2378 self.assertIn("'image_header' section must have an 'fdtmap' sibling",
2379 str(e.exception))
2380
2381 def testHeaderNoLocation(self):
2382 """Test an image header with a no specified location is detected"""
2383 with self.assertRaises(ValueError) as e:
2384 self.data = self._DoReadFileRealDtb('120_hdr_no_location.dts')
2385 self.assertIn("Invalid location 'None', expected 'start' or 'end'",
2386 str(e.exception))
2387
Simon Glasse61b6f62019-07-08 14:25:37 -06002388 def testEntryExpand(self):
2389 """Test expanding an entry after it is packed"""
2390 data = self._DoReadFile('121_entry_expand.dts')
Simon Glass8c702fb2019-07-20 12:23:57 -06002391 self.assertEqual(b'aaa', data[:3])
2392 self.assertEqual(U_BOOT_DATA, data[3:3 + len(U_BOOT_DATA)])
2393 self.assertEqual(b'aaa', data[-3:])
Simon Glasse61b6f62019-07-08 14:25:37 -06002394
2395 def testEntryExpandBad(self):
2396 """Test expanding an entry after it is packed, twice"""
2397 with self.assertRaises(ValueError) as e:
2398 self._DoReadFile('122_entry_expand_twice.dts')
Simon Glass9d8ee322019-07-20 12:23:58 -06002399 self.assertIn("Image '/binman': Entries changed size after packing",
Simon Glasse61b6f62019-07-08 14:25:37 -06002400 str(e.exception))
2401
2402 def testEntryExpandSection(self):
2403 """Test expanding an entry within a section after it is packed"""
2404 data = self._DoReadFile('123_entry_expand_section.dts')
Simon Glass8c702fb2019-07-20 12:23:57 -06002405 self.assertEqual(b'aaa', data[:3])
2406 self.assertEqual(U_BOOT_DATA, data[3:3 + len(U_BOOT_DATA)])
2407 self.assertEqual(b'aaa', data[-3:])
Simon Glasse61b6f62019-07-08 14:25:37 -06002408
Simon Glass90d29682019-07-08 14:25:38 -06002409 def testCompressDtb(self):
2410 """Test that compress of device-tree files is supported"""
2411 self._CheckLz4()
2412 data = self.data = self._DoReadFileRealDtb('124_compress_dtb.dts')
2413 self.assertEqual(U_BOOT_DATA, data[:len(U_BOOT_DATA)])
2414 comp_data = data[len(U_BOOT_DATA):]
2415 orig = self._decompress(comp_data)
2416 dtb = fdt.Fdt.FromData(orig)
2417 dtb.Scan()
2418 props = self._GetPropTree(dtb, ['size', 'uncomp-size'])
2419 expected = {
2420 'u-boot:size': len(U_BOOT_DATA),
2421 'u-boot-dtb:uncomp-size': len(orig),
2422 'u-boot-dtb:size': len(comp_data),
2423 'size': len(data),
2424 }
2425 self.assertEqual(expected, props)
2426
Simon Glass151bbbf2019-07-08 14:25:41 -06002427 def testCbfsUpdateFdt(self):
2428 """Test that we can update the device tree with CBFS offset/size info"""
2429 self._CheckLz4()
2430 data, _, _, out_dtb_fname = self._DoReadFileDtb('125_cbfs_update.dts',
2431 update_dtb=True)
2432 dtb = fdt.Fdt(out_dtb_fname)
2433 dtb.Scan()
Simon Glass2c6adba2019-07-20 12:23:47 -06002434 props = self._GetPropTree(dtb, BASE_DTB_PROPS + ['uncomp-size'])
Simon Glass151bbbf2019-07-08 14:25:41 -06002435 del props['cbfs/u-boot:size']
2436 self.assertEqual({
2437 'offset': 0,
2438 'size': len(data),
2439 'image-pos': 0,
2440 'cbfs:offset': 0,
2441 'cbfs:size': len(data),
2442 'cbfs:image-pos': 0,
2443 'cbfs/u-boot:offset': 0x38,
2444 'cbfs/u-boot:uncomp-size': len(U_BOOT_DATA),
2445 'cbfs/u-boot:image-pos': 0x38,
2446 'cbfs/u-boot-dtb:offset': 0xb8,
2447 'cbfs/u-boot-dtb:size': len(U_BOOT_DATA),
2448 'cbfs/u-boot-dtb:image-pos': 0xb8,
2449 }, props)
2450
Simon Glass3c9b4f22019-07-08 14:25:42 -06002451 def testCbfsBadType(self):
2452 """Test an image header with a no specified location is detected"""
2453 with self.assertRaises(ValueError) as e:
2454 self._DoReadFile('126_cbfs_bad_type.dts')
2455 self.assertIn("Unknown cbfs-type 'badtype'", str(e.exception))
2456
Simon Glass6b156f82019-07-08 14:25:43 -06002457 def testList(self):
2458 """Test listing the files in an image"""
2459 self._CheckLz4()
2460 data = self._DoReadFile('127_list.dts')
2461 image = control.images['image']
2462 entries = image.BuildEntryList()
2463 self.assertEqual(7, len(entries))
2464
2465 ent = entries[0]
2466 self.assertEqual(0, ent.indent)
2467 self.assertEqual('main-section', ent.name)
2468 self.assertEqual('section', ent.etype)
2469 self.assertEqual(len(data), ent.size)
2470 self.assertEqual(0, ent.image_pos)
2471 self.assertEqual(None, ent.uncomp_size)
Simon Glass39dd2152019-07-08 14:25:47 -06002472 self.assertEqual(0, ent.offset)
Simon Glass6b156f82019-07-08 14:25:43 -06002473
2474 ent = entries[1]
2475 self.assertEqual(1, ent.indent)
2476 self.assertEqual('u-boot', ent.name)
2477 self.assertEqual('u-boot', ent.etype)
2478 self.assertEqual(len(U_BOOT_DATA), ent.size)
2479 self.assertEqual(0, ent.image_pos)
2480 self.assertEqual(None, ent.uncomp_size)
2481 self.assertEqual(0, ent.offset)
2482
2483 ent = entries[2]
2484 self.assertEqual(1, ent.indent)
2485 self.assertEqual('section', ent.name)
2486 self.assertEqual('section', ent.etype)
2487 section_size = ent.size
2488 self.assertEqual(0x100, ent.image_pos)
2489 self.assertEqual(None, ent.uncomp_size)
Simon Glass39dd2152019-07-08 14:25:47 -06002490 self.assertEqual(0x100, ent.offset)
Simon Glass6b156f82019-07-08 14:25:43 -06002491
2492 ent = entries[3]
2493 self.assertEqual(2, ent.indent)
2494 self.assertEqual('cbfs', ent.name)
2495 self.assertEqual('cbfs', ent.etype)
2496 self.assertEqual(0x400, ent.size)
2497 self.assertEqual(0x100, ent.image_pos)
2498 self.assertEqual(None, ent.uncomp_size)
2499 self.assertEqual(0, ent.offset)
2500
2501 ent = entries[4]
2502 self.assertEqual(3, ent.indent)
2503 self.assertEqual('u-boot', ent.name)
2504 self.assertEqual('u-boot', ent.etype)
2505 self.assertEqual(len(U_BOOT_DATA), ent.size)
2506 self.assertEqual(0x138, ent.image_pos)
2507 self.assertEqual(None, ent.uncomp_size)
2508 self.assertEqual(0x38, ent.offset)
2509
2510 ent = entries[5]
2511 self.assertEqual(3, ent.indent)
2512 self.assertEqual('u-boot-dtb', ent.name)
2513 self.assertEqual('text', ent.etype)
2514 self.assertGreater(len(COMPRESS_DATA), ent.size)
2515 self.assertEqual(0x178, ent.image_pos)
2516 self.assertEqual(len(COMPRESS_DATA), ent.uncomp_size)
2517 self.assertEqual(0x78, ent.offset)
2518
2519 ent = entries[6]
2520 self.assertEqual(2, ent.indent)
2521 self.assertEqual('u-boot-dtb', ent.name)
2522 self.assertEqual('u-boot-dtb', ent.etype)
2523 self.assertEqual(0x500, ent.image_pos)
2524 self.assertEqual(len(U_BOOT_DTB_DATA), ent.uncomp_size)
2525 dtb_size = ent.size
2526 # Compressing this data expands it since headers are added
2527 self.assertGreater(dtb_size, len(U_BOOT_DTB_DATA))
2528 self.assertEqual(0x400, ent.offset)
2529
2530 self.assertEqual(len(data), 0x100 + section_size)
2531 self.assertEqual(section_size, 0x400 + dtb_size)
2532
Simon Glass8d8bf4e2019-07-08 14:25:44 -06002533 def testFindFdtmap(self):
2534 """Test locating an FDT map in an image"""
2535 self._CheckLz4()
2536 data = self.data = self._DoReadFileRealDtb('128_decode_image.dts')
2537 image = control.images['image']
2538 entries = image.GetEntries()
2539 entry = entries['fdtmap']
2540 self.assertEqual(entry.image_pos, fdtmap.LocateFdtmap(data))
2541
2542 def testFindFdtmapMissing(self):
2543 """Test failing to locate an FDP map"""
2544 data = self._DoReadFile('005_simple.dts')
2545 self.assertEqual(None, fdtmap.LocateFdtmap(data))
2546
Simon Glassed39a3c2019-07-08 14:25:45 -06002547 def testFindImageHeader(self):
2548 """Test locating a image header"""
2549 self._CheckLz4()
Simon Glassb8424fa2019-07-08 14:25:46 -06002550 data = self.data = self._DoReadFileRealDtb('128_decode_image.dts')
Simon Glassed39a3c2019-07-08 14:25:45 -06002551 image = control.images['image']
2552 entries = image.GetEntries()
2553 entry = entries['fdtmap']
2554 # The header should point to the FDT map
2555 self.assertEqual(entry.image_pos, image_header.LocateHeaderOffset(data))
2556
2557 def testFindImageHeaderStart(self):
2558 """Test locating a image header located at the start of an image"""
Simon Glassb8424fa2019-07-08 14:25:46 -06002559 data = self.data = self._DoReadFileRealDtb('117_fdtmap_hdr_start.dts')
Simon Glassed39a3c2019-07-08 14:25:45 -06002560 image = control.images['image']
2561 entries = image.GetEntries()
2562 entry = entries['fdtmap']
2563 # The header should point to the FDT map
2564 self.assertEqual(entry.image_pos, image_header.LocateHeaderOffset(data))
2565
2566 def testFindImageHeaderMissing(self):
2567 """Test failing to locate an image header"""
2568 data = self._DoReadFile('005_simple.dts')
2569 self.assertEqual(None, image_header.LocateHeaderOffset(data))
2570
Simon Glassb8424fa2019-07-08 14:25:46 -06002571 def testReadImage(self):
2572 """Test reading an image and accessing its FDT map"""
2573 self._CheckLz4()
2574 data = self.data = self._DoReadFileRealDtb('128_decode_image.dts')
2575 image_fname = tools.GetOutputFilename('image.bin')
2576 orig_image = control.images['image']
2577 image = Image.FromFile(image_fname)
2578 self.assertEqual(orig_image.GetEntries().keys(),
2579 image.GetEntries().keys())
2580
2581 orig_entry = orig_image.GetEntries()['fdtmap']
2582 entry = image.GetEntries()['fdtmap']
2583 self.assertEquals(orig_entry.offset, entry.offset)
2584 self.assertEquals(orig_entry.size, entry.size)
2585 self.assertEquals(orig_entry.image_pos, entry.image_pos)
2586
2587 def testReadImageNoHeader(self):
2588 """Test accessing an image's FDT map without an image header"""
2589 self._CheckLz4()
2590 data = self._DoReadFileRealDtb('129_decode_image_nohdr.dts')
2591 image_fname = tools.GetOutputFilename('image.bin')
2592 image = Image.FromFile(image_fname)
2593 self.assertTrue(isinstance(image, Image))
Simon Glass072959a2019-07-20 12:23:50 -06002594 self.assertEqual('image', image.image_name[-5:])
Simon Glassb8424fa2019-07-08 14:25:46 -06002595
2596 def testReadImageFail(self):
2597 """Test failing to read an image image's FDT map"""
2598 self._DoReadFile('005_simple.dts')
2599 image_fname = tools.GetOutputFilename('image.bin')
2600 with self.assertRaises(ValueError) as e:
2601 image = Image.FromFile(image_fname)
2602 self.assertIn("Cannot find FDT map in image", str(e.exception))
Simon Glassc2f1aed2019-07-08 13:18:56 -06002603
Simon Glassb2fd11d2019-07-08 14:25:48 -06002604 def testListCmd(self):
2605 """Test listing the files in an image using an Fdtmap"""
2606 self._CheckLz4()
2607 data = self._DoReadFileRealDtb('130_list_fdtmap.dts')
2608
2609 # lz4 compression size differs depending on the version
2610 image = control.images['image']
2611 entries = image.GetEntries()
2612 section_size = entries['section'].size
2613 fdt_size = entries['section'].GetEntries()['u-boot-dtb'].size
2614 fdtmap_offset = entries['fdtmap'].offset
2615
Simon Glassb3d6fc72019-07-20 12:24:10 -06002616 try:
2617 tmpdir, updated_fname = self._SetupImageInTmpdir()
2618 with test_util.capture_sys_output() as (stdout, stderr):
2619 self._DoBinman('ls', '-i', updated_fname)
2620 finally:
2621 shutil.rmtree(tmpdir)
Simon Glassb2fd11d2019-07-08 14:25:48 -06002622 lines = stdout.getvalue().splitlines()
2623 expected = [
2624'Name Image-pos Size Entry-type Offset Uncomp-size',
2625'----------------------------------------------------------------------',
2626'main-section 0 c00 section 0',
2627' u-boot 0 4 u-boot 0',
2628' section 100 %x section 100' % section_size,
2629' cbfs 100 400 cbfs 0',
2630' u-boot 138 4 u-boot 38',
Simon Glassc5fd10a2019-10-31 07:43:03 -06002631' u-boot-dtb 180 105 u-boot-dtb 80 3c9',
Simon Glassb2fd11d2019-07-08 14:25:48 -06002632' u-boot-dtb 500 %x u-boot-dtb 400 3c9' % fdt_size,
Simon Glassc5fd10a2019-10-31 07:43:03 -06002633' fdtmap %x 3bd fdtmap %x' %
Simon Glassb2fd11d2019-07-08 14:25:48 -06002634 (fdtmap_offset, fdtmap_offset),
2635' image-header bf8 8 image-header bf8',
2636 ]
2637 self.assertEqual(expected, lines)
2638
2639 def testListCmdFail(self):
2640 """Test failing to list an image"""
2641 self._DoReadFile('005_simple.dts')
Simon Glassb3d6fc72019-07-20 12:24:10 -06002642 try:
2643 tmpdir, updated_fname = self._SetupImageInTmpdir()
2644 with self.assertRaises(ValueError) as e:
2645 self._DoBinman('ls', '-i', updated_fname)
2646 finally:
2647 shutil.rmtree(tmpdir)
Simon Glassb2fd11d2019-07-08 14:25:48 -06002648 self.assertIn("Cannot find FDT map in image", str(e.exception))
2649
2650 def _RunListCmd(self, paths, expected):
2651 """List out entries and check the result
2652
2653 Args:
2654 paths: List of paths to pass to the list command
2655 expected: Expected list of filenames to be returned, in order
2656 """
2657 self._CheckLz4()
2658 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2659 image_fname = tools.GetOutputFilename('image.bin')
2660 image = Image.FromFile(image_fname)
2661 lines = image.GetListEntries(paths)[1]
2662 files = [line[0].strip() for line in lines[1:]]
2663 self.assertEqual(expected, files)
2664
2665 def testListCmdSection(self):
2666 """Test listing the files in a section"""
2667 self._RunListCmd(['section'],
2668 ['section', 'cbfs', 'u-boot', 'u-boot-dtb', 'u-boot-dtb'])
2669
2670 def testListCmdFile(self):
2671 """Test listing a particular file"""
2672 self._RunListCmd(['*u-boot-dtb'], ['u-boot-dtb', 'u-boot-dtb'])
2673
2674 def testListCmdWildcard(self):
2675 """Test listing a wildcarded file"""
2676 self._RunListCmd(['*boot*'],
2677 ['u-boot', 'u-boot', 'u-boot-dtb', 'u-boot-dtb'])
2678
2679 def testListCmdWildcardMulti(self):
2680 """Test listing a wildcarded file"""
2681 self._RunListCmd(['*cb*', '*head*'],
2682 ['cbfs', 'u-boot', 'u-boot-dtb', 'image-header'])
2683
2684 def testListCmdEmpty(self):
2685 """Test listing a wildcarded file"""
2686 self._RunListCmd(['nothing'], [])
2687
2688 def testListCmdPath(self):
2689 """Test listing the files in a sub-entry of a section"""
2690 self._RunListCmd(['section/cbfs'], ['cbfs', 'u-boot', 'u-boot-dtb'])
2691
Simon Glass4c613bf2019-07-08 14:25:50 -06002692 def _RunExtractCmd(self, entry_name, decomp=True):
2693 """Extract an entry from an image
2694
2695 Args:
2696 entry_name: Entry name to extract
2697 decomp: True to decompress the data if compressed, False to leave
2698 it in its raw uncompressed format
2699
2700 Returns:
2701 data from entry
2702 """
2703 self._CheckLz4()
2704 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2705 image_fname = tools.GetOutputFilename('image.bin')
2706 return control.ReadEntry(image_fname, entry_name, decomp)
2707
2708 def testExtractSimple(self):
2709 """Test extracting a single file"""
2710 data = self._RunExtractCmd('u-boot')
2711 self.assertEqual(U_BOOT_DATA, data)
2712
Simon Glass980a2842019-07-08 14:25:52 -06002713 def testExtractSection(self):
2714 """Test extracting the files in a section"""
2715 data = self._RunExtractCmd('section')
2716 cbfs_data = data[:0x400]
2717 cbfs = cbfs_util.CbfsReader(cbfs_data)
Simon Glassc5fd10a2019-10-31 07:43:03 -06002718 self.assertEqual(['u-boot', 'u-boot-dtb', ''], list(cbfs.files.keys()))
Simon Glass980a2842019-07-08 14:25:52 -06002719 dtb_data = data[0x400:]
2720 dtb = self._decompress(dtb_data)
2721 self.assertEqual(EXTRACT_DTB_SIZE, len(dtb))
2722
2723 def testExtractCompressed(self):
2724 """Test extracting compressed data"""
2725 data = self._RunExtractCmd('section/u-boot-dtb')
2726 self.assertEqual(EXTRACT_DTB_SIZE, len(data))
2727
2728 def testExtractRaw(self):
2729 """Test extracting compressed data without decompressing it"""
2730 data = self._RunExtractCmd('section/u-boot-dtb', decomp=False)
2731 dtb = self._decompress(data)
2732 self.assertEqual(EXTRACT_DTB_SIZE, len(dtb))
2733
2734 def testExtractCbfs(self):
2735 """Test extracting CBFS data"""
2736 data = self._RunExtractCmd('section/cbfs/u-boot')
2737 self.assertEqual(U_BOOT_DATA, data)
2738
2739 def testExtractCbfsCompressed(self):
2740 """Test extracting CBFS compressed data"""
2741 data = self._RunExtractCmd('section/cbfs/u-boot-dtb')
2742 self.assertEqual(EXTRACT_DTB_SIZE, len(data))
2743
2744 def testExtractCbfsRaw(self):
2745 """Test extracting CBFS compressed data without decompressing it"""
2746 data = self._RunExtractCmd('section/cbfs/u-boot-dtb', decomp=False)
Simon Glass37fdd142019-07-20 12:24:06 -06002747 dtb = tools.Decompress(data, 'lzma', with_header=False)
Simon Glass980a2842019-07-08 14:25:52 -06002748 self.assertEqual(EXTRACT_DTB_SIZE, len(dtb))
2749
Simon Glass4c613bf2019-07-08 14:25:50 -06002750 def testExtractBadEntry(self):
2751 """Test extracting a bad section path"""
2752 with self.assertRaises(ValueError) as e:
2753 self._RunExtractCmd('section/does-not-exist')
2754 self.assertIn("Entry 'does-not-exist' not found in '/section'",
2755 str(e.exception))
2756
2757 def testExtractMissingFile(self):
2758 """Test extracting file that does not exist"""
2759 with self.assertRaises(IOError) as e:
2760 control.ReadEntry('missing-file', 'name')
2761
2762 def testExtractBadFile(self):
2763 """Test extracting an invalid file"""
2764 fname = os.path.join(self._indir, 'badfile')
2765 tools.WriteFile(fname, b'')
2766 with self.assertRaises(ValueError) as e:
2767 control.ReadEntry(fname, 'name')
2768
Simon Glass980a2842019-07-08 14:25:52 -06002769 def testExtractCmd(self):
2770 """Test extracting a file fron an image on the command line"""
2771 self._CheckLz4()
2772 self._DoReadFileRealDtb('130_list_fdtmap.dts')
Simon Glass980a2842019-07-08 14:25:52 -06002773 fname = os.path.join(self._indir, 'output.extact')
Simon Glassb3d6fc72019-07-20 12:24:10 -06002774 try:
2775 tmpdir, updated_fname = self._SetupImageInTmpdir()
2776 with test_util.capture_sys_output() as (stdout, stderr):
2777 self._DoBinman('extract', '-i', updated_fname, 'u-boot',
2778 '-f', fname)
2779 finally:
2780 shutil.rmtree(tmpdir)
Simon Glass980a2842019-07-08 14:25:52 -06002781 data = tools.ReadFile(fname)
2782 self.assertEqual(U_BOOT_DATA, data)
2783
2784 def testExtractOneEntry(self):
2785 """Test extracting a single entry fron an image """
2786 self._CheckLz4()
2787 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2788 image_fname = tools.GetOutputFilename('image.bin')
2789 fname = os.path.join(self._indir, 'output.extact')
2790 control.ExtractEntries(image_fname, fname, None, ['u-boot'])
2791 data = tools.ReadFile(fname)
2792 self.assertEqual(U_BOOT_DATA, data)
2793
2794 def _CheckExtractOutput(self, decomp):
2795 """Helper to test file output with and without decompression
2796
2797 Args:
2798 decomp: True to decompress entry data, False to output it raw
2799 """
2800 def _CheckPresent(entry_path, expect_data, expect_size=None):
2801 """Check and remove expected file
2802
2803 This checks the data/size of a file and removes the file both from
2804 the outfiles set and from the output directory. Once all files are
2805 processed, both the set and directory should be empty.
2806
2807 Args:
2808 entry_path: Entry path
2809 expect_data: Data to expect in file, or None to skip check
2810 expect_size: Size of data to expect in file, or None to skip
2811 """
2812 path = os.path.join(outdir, entry_path)
2813 data = tools.ReadFile(path)
2814 os.remove(path)
2815 if expect_data:
2816 self.assertEqual(expect_data, data)
2817 elif expect_size:
2818 self.assertEqual(expect_size, len(data))
2819 outfiles.remove(path)
2820
2821 def _CheckDirPresent(name):
2822 """Remove expected directory
2823
2824 This gives an error if the directory does not exist as expected
2825
2826 Args:
2827 name: Name of directory to remove
2828 """
2829 path = os.path.join(outdir, name)
2830 os.rmdir(path)
2831
2832 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2833 image_fname = tools.GetOutputFilename('image.bin')
2834 outdir = os.path.join(self._indir, 'extract')
2835 einfos = control.ExtractEntries(image_fname, None, outdir, [], decomp)
2836
2837 # Create a set of all file that were output (should be 9)
2838 outfiles = set()
2839 for root, dirs, files in os.walk(outdir):
2840 outfiles |= set([os.path.join(root, fname) for fname in files])
2841 self.assertEqual(9, len(outfiles))
2842 self.assertEqual(9, len(einfos))
2843
2844 image = control.images['image']
2845 entries = image.GetEntries()
2846
2847 # Check the 9 files in various ways
2848 section = entries['section']
2849 section_entries = section.GetEntries()
2850 cbfs_entries = section_entries['cbfs'].GetEntries()
2851 _CheckPresent('u-boot', U_BOOT_DATA)
2852 _CheckPresent('section/cbfs/u-boot', U_BOOT_DATA)
2853 dtb_len = EXTRACT_DTB_SIZE
2854 if not decomp:
2855 dtb_len = cbfs_entries['u-boot-dtb'].size
2856 _CheckPresent('section/cbfs/u-boot-dtb', None, dtb_len)
2857 if not decomp:
2858 dtb_len = section_entries['u-boot-dtb'].size
2859 _CheckPresent('section/u-boot-dtb', None, dtb_len)
2860
2861 fdtmap = entries['fdtmap']
2862 _CheckPresent('fdtmap', fdtmap.data)
2863 hdr = entries['image-header']
2864 _CheckPresent('image-header', hdr.data)
2865
2866 _CheckPresent('section/root', section.data)
2867 cbfs = section_entries['cbfs']
2868 _CheckPresent('section/cbfs/root', cbfs.data)
2869 data = tools.ReadFile(image_fname)
2870 _CheckPresent('root', data)
2871
2872 # There should be no files left. Remove all the directories to check.
2873 # If there are any files/dirs remaining, one of these checks will fail.
2874 self.assertEqual(0, len(outfiles))
2875 _CheckDirPresent('section/cbfs')
2876 _CheckDirPresent('section')
2877 _CheckDirPresent('')
2878 self.assertFalse(os.path.exists(outdir))
2879
2880 def testExtractAllEntries(self):
2881 """Test extracting all entries"""
2882 self._CheckLz4()
2883 self._CheckExtractOutput(decomp=True)
2884
2885 def testExtractAllEntriesRaw(self):
2886 """Test extracting all entries without decompressing them"""
2887 self._CheckLz4()
2888 self._CheckExtractOutput(decomp=False)
2889
2890 def testExtractSelectedEntries(self):
2891 """Test extracting some entries"""
2892 self._CheckLz4()
2893 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2894 image_fname = tools.GetOutputFilename('image.bin')
2895 outdir = os.path.join(self._indir, 'extract')
2896 einfos = control.ExtractEntries(image_fname, None, outdir,
2897 ['*cb*', '*head*'])
2898
2899 # File output is tested by testExtractAllEntries(), so just check that
2900 # the expected entries are selected
2901 names = [einfo.name for einfo in einfos]
2902 self.assertEqual(names,
2903 ['cbfs', 'u-boot', 'u-boot-dtb', 'image-header'])
2904
2905 def testExtractNoEntryPaths(self):
2906 """Test extracting some entries"""
2907 self._CheckLz4()
2908 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2909 image_fname = tools.GetOutputFilename('image.bin')
2910 with self.assertRaises(ValueError) as e:
2911 control.ExtractEntries(image_fname, 'fname', None, [])
Simon Glassa772d3f2019-07-20 12:24:14 -06002912 self.assertIn('Must specify an entry path to write with -f',
Simon Glass980a2842019-07-08 14:25:52 -06002913 str(e.exception))
2914
2915 def testExtractTooManyEntryPaths(self):
2916 """Test extracting some entries"""
2917 self._CheckLz4()
2918 self._DoReadFileRealDtb('130_list_fdtmap.dts')
2919 image_fname = tools.GetOutputFilename('image.bin')
2920 with self.assertRaises(ValueError) as e:
2921 control.ExtractEntries(image_fname, 'fname', None, ['a', 'b'])
Simon Glassa772d3f2019-07-20 12:24:14 -06002922 self.assertIn('Must specify exactly one entry path to write with -f',
Simon Glass980a2842019-07-08 14:25:52 -06002923 str(e.exception))
2924
Simon Glass52d06212019-07-08 14:25:53 -06002925 def testPackAlignSection(self):
2926 """Test that sections can have alignment"""
2927 self._DoReadFile('131_pack_align_section.dts')
2928
2929 self.assertIn('image', control.images)
2930 image = control.images['image']
2931 entries = image.GetEntries()
2932 self.assertEqual(3, len(entries))
2933
2934 # First u-boot
2935 self.assertIn('u-boot', entries)
2936 entry = entries['u-boot']
2937 self.assertEqual(0, entry.offset)
2938 self.assertEqual(0, entry.image_pos)
2939 self.assertEqual(len(U_BOOT_DATA), entry.contents_size)
2940 self.assertEqual(len(U_BOOT_DATA), entry.size)
2941
2942 # Section0
2943 self.assertIn('section0', entries)
2944 section0 = entries['section0']
2945 self.assertEqual(0x10, section0.offset)
2946 self.assertEqual(0x10, section0.image_pos)
2947 self.assertEqual(len(U_BOOT_DATA), section0.size)
2948
2949 # Second u-boot
2950 section_entries = section0.GetEntries()
2951 self.assertIn('u-boot', section_entries)
2952 entry = section_entries['u-boot']
2953 self.assertEqual(0, entry.offset)
2954 self.assertEqual(0x10, entry.image_pos)
2955 self.assertEqual(len(U_BOOT_DATA), entry.contents_size)
2956 self.assertEqual(len(U_BOOT_DATA), entry.size)
2957
2958 # Section1
2959 self.assertIn('section1', entries)
2960 section1 = entries['section1']
2961 self.assertEqual(0x14, section1.offset)
2962 self.assertEqual(0x14, section1.image_pos)
2963 self.assertEqual(0x20, section1.size)
2964
2965 # Second u-boot
2966 section_entries = section1.GetEntries()
2967 self.assertIn('u-boot', section_entries)
2968 entry = section_entries['u-boot']
2969 self.assertEqual(0, entry.offset)
2970 self.assertEqual(0x14, entry.image_pos)
2971 self.assertEqual(len(U_BOOT_DATA), entry.contents_size)
2972 self.assertEqual(len(U_BOOT_DATA), entry.size)
2973
2974 # Section2
2975 self.assertIn('section2', section_entries)
2976 section2 = section_entries['section2']
2977 self.assertEqual(0x4, section2.offset)
2978 self.assertEqual(0x18, section2.image_pos)
2979 self.assertEqual(4, section2.size)
2980
2981 # Third u-boot
2982 section_entries = section2.GetEntries()
2983 self.assertIn('u-boot', section_entries)
2984 entry = section_entries['u-boot']
2985 self.assertEqual(0, entry.offset)
2986 self.assertEqual(0x18, entry.image_pos)
2987 self.assertEqual(len(U_BOOT_DATA), entry.contents_size)
2988 self.assertEqual(len(U_BOOT_DATA), entry.size)
2989
Simon Glassf8a54bc2019-07-20 12:23:56 -06002990 def _RunReplaceCmd(self, entry_name, data, decomp=True, allow_resize=True,
2991 dts='132_replace.dts'):
Simon Glass072959a2019-07-20 12:23:50 -06002992 """Replace an entry in an image
2993
2994 This writes the entry data to update it, then opens the updated file and
2995 returns the value that it now finds there.
2996
2997 Args:
2998 entry_name: Entry name to replace
2999 data: Data to replace it with
3000 decomp: True to compress the data if needed, False if data is
3001 already compressed so should be used as is
Simon Glassf8a54bc2019-07-20 12:23:56 -06003002 allow_resize: True to allow entries to change size, False to raise
3003 an exception
Simon Glass072959a2019-07-20 12:23:50 -06003004
3005 Returns:
3006 Tuple:
3007 data from entry
3008 data from fdtmap (excluding header)
Simon Glassf8a54bc2019-07-20 12:23:56 -06003009 Image object that was modified
Simon Glass072959a2019-07-20 12:23:50 -06003010 """
Simon Glassf8a54bc2019-07-20 12:23:56 -06003011 dtb_data = self._DoReadFileDtb(dts, use_real_dtb=True,
Simon Glass072959a2019-07-20 12:23:50 -06003012 update_dtb=True)[1]
3013
3014 self.assertIn('image', control.images)
3015 image = control.images['image']
3016 entries = image.GetEntries()
3017 orig_dtb_data = entries['u-boot-dtb'].data
3018 orig_fdtmap_data = entries['fdtmap'].data
3019
3020 image_fname = tools.GetOutputFilename('image.bin')
3021 updated_fname = tools.GetOutputFilename('image-updated.bin')
3022 tools.WriteFile(updated_fname, tools.ReadFile(image_fname))
Simon Glassf8a54bc2019-07-20 12:23:56 -06003023 image = control.WriteEntry(updated_fname, entry_name, data, decomp,
3024 allow_resize)
Simon Glass072959a2019-07-20 12:23:50 -06003025 data = control.ReadEntry(updated_fname, entry_name, decomp)
3026
Simon Glassf8a54bc2019-07-20 12:23:56 -06003027 # The DT data should not change unless resized:
3028 if not allow_resize:
3029 new_dtb_data = entries['u-boot-dtb'].data
3030 self.assertEqual(new_dtb_data, orig_dtb_data)
3031 new_fdtmap_data = entries['fdtmap'].data
3032 self.assertEqual(new_fdtmap_data, orig_fdtmap_data)
Simon Glass072959a2019-07-20 12:23:50 -06003033
Simon Glassf8a54bc2019-07-20 12:23:56 -06003034 return data, orig_fdtmap_data[fdtmap.FDTMAP_HDR_LEN:], image
Simon Glass072959a2019-07-20 12:23:50 -06003035
3036 def testReplaceSimple(self):
3037 """Test replacing a single file"""
3038 expected = b'x' * len(U_BOOT_DATA)
Simon Glassf8a54bc2019-07-20 12:23:56 -06003039 data, expected_fdtmap, _ = self._RunReplaceCmd('u-boot', expected,
3040 allow_resize=False)
Simon Glass072959a2019-07-20 12:23:50 -06003041 self.assertEqual(expected, data)
3042
3043 # Test that the state looks right. There should be an FDT for the fdtmap
3044 # that we jsut read back in, and it should match what we find in the
3045 # 'control' tables. Checking for an FDT that does not exist should
3046 # return None.
3047 path, fdtmap = state.GetFdtContents('fdtmap')
Simon Glassf8a54bc2019-07-20 12:23:56 -06003048 self.assertIsNotNone(path)
Simon Glass072959a2019-07-20 12:23:50 -06003049 self.assertEqual(expected_fdtmap, fdtmap)
3050
3051 dtb = state.GetFdtForEtype('fdtmap')
3052 self.assertEqual(dtb.GetContents(), fdtmap)
3053
3054 missing_path, missing_fdtmap = state.GetFdtContents('missing')
3055 self.assertIsNone(missing_path)
3056 self.assertIsNone(missing_fdtmap)
3057
3058 missing_dtb = state.GetFdtForEtype('missing')
3059 self.assertIsNone(missing_dtb)
3060
3061 self.assertEqual('/binman', state.fdt_path_prefix)
3062
3063 def testReplaceResizeFail(self):
3064 """Test replacing a file by something larger"""
3065 expected = U_BOOT_DATA + b'x'
3066 with self.assertRaises(ValueError) as e:
Simon Glassf8a54bc2019-07-20 12:23:56 -06003067 self._RunReplaceCmd('u-boot', expected, allow_resize=False,
3068 dts='139_replace_repack.dts')
Simon Glass072959a2019-07-20 12:23:50 -06003069 self.assertIn("Node '/u-boot': Entry data size does not match, but resize is disabled",
3070 str(e.exception))
3071
3072 def testReplaceMulti(self):
3073 """Test replacing entry data where multiple images are generated"""
3074 data = self._DoReadFileDtb('133_replace_multi.dts', use_real_dtb=True,
3075 update_dtb=True)[0]
3076 expected = b'x' * len(U_BOOT_DATA)
3077 updated_fname = tools.GetOutputFilename('image-updated.bin')
3078 tools.WriteFile(updated_fname, data)
3079 entry_name = 'u-boot'
Simon Glassf8a54bc2019-07-20 12:23:56 -06003080 control.WriteEntry(updated_fname, entry_name, expected,
3081 allow_resize=False)
Simon Glass072959a2019-07-20 12:23:50 -06003082 data = control.ReadEntry(updated_fname, entry_name)
3083 self.assertEqual(expected, data)
3084
3085 # Check the state looks right.
3086 self.assertEqual('/binman/image', state.fdt_path_prefix)
3087
3088 # Now check we can write the first image
3089 image_fname = tools.GetOutputFilename('first-image.bin')
3090 updated_fname = tools.GetOutputFilename('first-updated.bin')
3091 tools.WriteFile(updated_fname, tools.ReadFile(image_fname))
3092 entry_name = 'u-boot'
Simon Glassf8a54bc2019-07-20 12:23:56 -06003093 control.WriteEntry(updated_fname, entry_name, expected,
3094 allow_resize=False)
Simon Glass072959a2019-07-20 12:23:50 -06003095 data = control.ReadEntry(updated_fname, entry_name)
3096 self.assertEqual(expected, data)
3097
3098 # Check the state looks right.
3099 self.assertEqual('/binman/first-image', state.fdt_path_prefix)
Simon Glass39dd2152019-07-08 14:25:47 -06003100
Simon Glassfb30e292019-07-20 12:23:51 -06003101 def testUpdateFdtAllRepack(self):
3102 """Test that all device trees are updated with offset/size info"""
3103 data = self._DoReadFileRealDtb('134_fdt_update_all_repack.dts')
3104 SECTION_SIZE = 0x300
3105 DTB_SIZE = 602
3106 FDTMAP_SIZE = 608
3107 base_expected = {
3108 'offset': 0,
3109 'size': SECTION_SIZE + DTB_SIZE * 2 + FDTMAP_SIZE,
3110 'image-pos': 0,
3111 'section:offset': 0,
3112 'section:size': SECTION_SIZE,
3113 'section:image-pos': 0,
3114 'section/u-boot-dtb:offset': 4,
3115 'section/u-boot-dtb:size': 636,
3116 'section/u-boot-dtb:image-pos': 4,
3117 'u-boot-spl-dtb:offset': SECTION_SIZE,
3118 'u-boot-spl-dtb:size': DTB_SIZE,
3119 'u-boot-spl-dtb:image-pos': SECTION_SIZE,
3120 'u-boot-tpl-dtb:offset': SECTION_SIZE + DTB_SIZE,
3121 'u-boot-tpl-dtb:image-pos': SECTION_SIZE + DTB_SIZE,
3122 'u-boot-tpl-dtb:size': DTB_SIZE,
3123 'fdtmap:offset': SECTION_SIZE + DTB_SIZE * 2,
3124 'fdtmap:size': FDTMAP_SIZE,
3125 'fdtmap:image-pos': SECTION_SIZE + DTB_SIZE * 2,
3126 }
3127 main_expected = {
3128 'section:orig-size': SECTION_SIZE,
3129 'section/u-boot-dtb:orig-offset': 4,
3130 }
3131
3132 # We expect three device-tree files in the output, with the first one
3133 # within a fixed-size section.
3134 # Read them in sequence. We look for an 'spl' property in the SPL tree,
3135 # and 'tpl' in the TPL tree, to make sure they are distinct from the
3136 # main U-Boot tree. All three should have the same positions and offset
3137 # except that the main tree should include the main_expected properties
3138 start = 4
3139 for item in ['', 'spl', 'tpl', None]:
3140 if item is None:
3141 start += 16 # Move past fdtmap header
3142 dtb = fdt.Fdt.FromData(data[start:])
3143 dtb.Scan()
3144 props = self._GetPropTree(dtb,
3145 BASE_DTB_PROPS + REPACK_DTB_PROPS + ['spl', 'tpl'],
3146 prefix='/' if item is None else '/binman/')
3147 expected = dict(base_expected)
3148 if item:
3149 expected[item] = 0
3150 else:
3151 # Main DTB and fdtdec should include the 'orig-' properties
3152 expected.update(main_expected)
3153 # Helpful for debugging:
3154 #for prop in sorted(props):
3155 #print('prop %s %s %s' % (prop, props[prop], expected[prop]))
3156 self.assertEqual(expected, props)
3157 if item == '':
3158 start = SECTION_SIZE
3159 else:
3160 start += dtb._fdt_obj.totalsize()
3161
Simon Glass11453762019-07-20 12:23:55 -06003162 def testFdtmapHeaderMiddle(self):
3163 """Test an FDT map in the middle of an image when it should be at end"""
3164 with self.assertRaises(ValueError) as e:
3165 self._DoReadFileRealDtb('135_fdtmap_hdr_middle.dts')
3166 self.assertIn("Invalid sibling order 'middle' for image-header: Must be at 'end' to match location",
3167 str(e.exception))
3168
3169 def testFdtmapHeaderStartBad(self):
3170 """Test an FDT map in middle of an image when it should be at start"""
3171 with self.assertRaises(ValueError) as e:
3172 self._DoReadFileRealDtb('136_fdtmap_hdr_startbad.dts')
3173 self.assertIn("Invalid sibling order 'end' for image-header: Must be at 'start' to match location",
3174 str(e.exception))
3175
3176 def testFdtmapHeaderEndBad(self):
3177 """Test an FDT map at the start of an image when it should be at end"""
3178 with self.assertRaises(ValueError) as e:
3179 self._DoReadFileRealDtb('137_fdtmap_hdr_endbad.dts')
3180 self.assertIn("Invalid sibling order 'start' for image-header: Must be at 'end' to match location",
3181 str(e.exception))
3182
3183 def testFdtmapHeaderNoSize(self):
3184 """Test an image header at the end of an image with undefined size"""
3185 self._DoReadFileRealDtb('138_fdtmap_hdr_nosize.dts')
3186
Simon Glassf8a54bc2019-07-20 12:23:56 -06003187 def testReplaceResize(self):
3188 """Test replacing a single file in an entry with a larger file"""
3189 expected = U_BOOT_DATA + b'x'
3190 data, _, image = self._RunReplaceCmd('u-boot', expected,
3191 dts='139_replace_repack.dts')
3192 self.assertEqual(expected, data)
3193
3194 entries = image.GetEntries()
3195 dtb_data = entries['u-boot-dtb'].data
3196 dtb = fdt.Fdt.FromData(dtb_data)
3197 dtb.Scan()
3198
3199 # The u-boot section should now be larger in the dtb
3200 node = dtb.GetNode('/binman/u-boot')
3201 self.assertEqual(len(expected), fdt_util.GetInt(node, 'size'))
3202
3203 # Same for the fdtmap
3204 fdata = entries['fdtmap'].data
3205 fdtb = fdt.Fdt.FromData(fdata[fdtmap.FDTMAP_HDR_LEN:])
3206 fdtb.Scan()
3207 fnode = fdtb.GetNode('/u-boot')
3208 self.assertEqual(len(expected), fdt_util.GetInt(fnode, 'size'))
3209
3210 def testReplaceResizeNoRepack(self):
3211 """Test replacing an entry with a larger file when not allowed"""
3212 expected = U_BOOT_DATA + b'x'
3213 with self.assertRaises(ValueError) as e:
3214 self._RunReplaceCmd('u-boot', expected)
3215 self.assertIn('Entry data size does not match, but allow-repack is not present for this image',
3216 str(e.exception))
3217
Simon Glass9d8ee322019-07-20 12:23:58 -06003218 def testEntryShrink(self):
3219 """Test contracting an entry after it is packed"""
3220 try:
3221 state.SetAllowEntryContraction(True)
3222 data = self._DoReadFileDtb('140_entry_shrink.dts',
3223 update_dtb=True)[0]
3224 finally:
3225 state.SetAllowEntryContraction(False)
3226 self.assertEqual(b'a', data[:1])
3227 self.assertEqual(U_BOOT_DATA, data[1:1 + len(U_BOOT_DATA)])
3228 self.assertEqual(b'a', data[-1:])
3229
3230 def testEntryShrinkFail(self):
3231 """Test not being allowed to contract an entry after it is packed"""
3232 data = self._DoReadFileDtb('140_entry_shrink.dts', update_dtb=True)[0]
3233
3234 # In this case there is a spare byte at the end of the data. The size of
3235 # the contents is only 1 byte but we still have the size before it
3236 # shrunk.
3237 self.assertEqual(b'a\0', data[:2])
3238 self.assertEqual(U_BOOT_DATA, data[2:2 + len(U_BOOT_DATA)])
3239 self.assertEqual(b'a\0', data[-2:])
3240
Simon Glass70e32982019-07-20 12:24:01 -06003241 def testDescriptorOffset(self):
3242 """Test that the Intel descriptor is always placed at at the start"""
3243 data = self._DoReadFileDtb('141_descriptor_offset.dts')
3244 image = control.images['image']
3245 entries = image.GetEntries()
3246 desc = entries['intel-descriptor']
3247 self.assertEqual(0xff800000, desc.offset);
3248 self.assertEqual(0xff800000, desc.image_pos);
3249
Simon Glass37fdd142019-07-20 12:24:06 -06003250 def testReplaceCbfs(self):
3251 """Test replacing a single file in CBFS without changing the size"""
3252 self._CheckLz4()
3253 expected = b'x' * len(U_BOOT_DATA)
3254 data = self._DoReadFileRealDtb('142_replace_cbfs.dts')
3255 updated_fname = tools.GetOutputFilename('image-updated.bin')
3256 tools.WriteFile(updated_fname, data)
3257 entry_name = 'section/cbfs/u-boot'
3258 control.WriteEntry(updated_fname, entry_name, expected,
3259 allow_resize=True)
3260 data = control.ReadEntry(updated_fname, entry_name)
3261 self.assertEqual(expected, data)
3262
3263 def testReplaceResizeCbfs(self):
3264 """Test replacing a single file in CBFS with one of a different size"""
3265 self._CheckLz4()
3266 expected = U_BOOT_DATA + b'x'
3267 data = self._DoReadFileRealDtb('142_replace_cbfs.dts')
3268 updated_fname = tools.GetOutputFilename('image-updated.bin')
3269 tools.WriteFile(updated_fname, data)
3270 entry_name = 'section/cbfs/u-boot'
3271 control.WriteEntry(updated_fname, entry_name, expected,
3272 allow_resize=True)
3273 data = control.ReadEntry(updated_fname, entry_name)
3274 self.assertEqual(expected, data)
3275
Simon Glass30033c22019-07-20 12:24:15 -06003276 def _SetupForReplace(self):
3277 """Set up some files to use to replace entries
3278
3279 This generates an image, copies it to a new file, extracts all the files
3280 in it and updates some of them
3281
3282 Returns:
3283 List
3284 Image filename
3285 Output directory
3286 Expected values for updated entries, each a string
3287 """
3288 data = self._DoReadFileRealDtb('143_replace_all.dts')
3289
3290 updated_fname = tools.GetOutputFilename('image-updated.bin')
3291 tools.WriteFile(updated_fname, data)
3292
3293 outdir = os.path.join(self._indir, 'extract')
3294 einfos = control.ExtractEntries(updated_fname, None, outdir, [])
3295
3296 expected1 = b'x' + U_BOOT_DATA + b'y'
3297 u_boot_fname1 = os.path.join(outdir, 'u-boot')
3298 tools.WriteFile(u_boot_fname1, expected1)
3299
3300 expected2 = b'a' + U_BOOT_DATA + b'b'
3301 u_boot_fname2 = os.path.join(outdir, 'u-boot2')
3302 tools.WriteFile(u_boot_fname2, expected2)
3303
3304 expected_text = b'not the same text'
3305 text_fname = os.path.join(outdir, 'text')
3306 tools.WriteFile(text_fname, expected_text)
3307
3308 dtb_fname = os.path.join(outdir, 'u-boot-dtb')
3309 dtb = fdt.FdtScan(dtb_fname)
3310 node = dtb.GetNode('/binman/text')
3311 node.AddString('my-property', 'the value')
3312 dtb.Sync(auto_resize=True)
3313 dtb.Flush()
3314
3315 return updated_fname, outdir, expected1, expected2, expected_text
3316
3317 def _CheckReplaceMultiple(self, entry_paths):
3318 """Handle replacing the contents of multiple entries
3319
3320 Args:
3321 entry_paths: List of entry paths to replace
3322
3323 Returns:
3324 List
3325 Dict of entries in the image:
3326 key: Entry name
3327 Value: Entry object
3328 Expected values for updated entries, each a string
3329 """
3330 updated_fname, outdir, expected1, expected2, expected_text = (
3331 self._SetupForReplace())
3332 control.ReplaceEntries(updated_fname, None, outdir, entry_paths)
3333
3334 image = Image.FromFile(updated_fname)
3335 image.LoadData()
3336 return image.GetEntries(), expected1, expected2, expected_text
3337
3338 def testReplaceAll(self):
3339 """Test replacing the contents of all entries"""
3340 entries, expected1, expected2, expected_text = (
3341 self._CheckReplaceMultiple([]))
3342 data = entries['u-boot'].data
3343 self.assertEqual(expected1, data)
3344
3345 data = entries['u-boot2'].data
3346 self.assertEqual(expected2, data)
3347
3348 data = entries['text'].data
3349 self.assertEqual(expected_text, data)
3350
3351 # Check that the device tree is updated
3352 data = entries['u-boot-dtb'].data
3353 dtb = fdt.Fdt.FromData(data)
3354 dtb.Scan()
3355 node = dtb.GetNode('/binman/text')
3356 self.assertEqual('the value', node.props['my-property'].value)
3357
3358 def testReplaceSome(self):
3359 """Test replacing the contents of a few entries"""
3360 entries, expected1, expected2, expected_text = (
3361 self._CheckReplaceMultiple(['u-boot2', 'text']))
3362
3363 # This one should not change
3364 data = entries['u-boot'].data
3365 self.assertEqual(U_BOOT_DATA, data)
3366
3367 data = entries['u-boot2'].data
3368 self.assertEqual(expected2, data)
3369
3370 data = entries['text'].data
3371 self.assertEqual(expected_text, data)
3372
3373 def testReplaceCmd(self):
3374 """Test replacing a file fron an image on the command line"""
3375 self._DoReadFileRealDtb('143_replace_all.dts')
3376
3377 try:
3378 tmpdir, updated_fname = self._SetupImageInTmpdir()
3379
3380 fname = os.path.join(tmpdir, 'update-u-boot.bin')
3381 expected = b'x' * len(U_BOOT_DATA)
3382 tools.WriteFile(fname, expected)
3383
3384 self._DoBinman('replace', '-i', updated_fname, 'u-boot', '-f', fname)
3385 data = tools.ReadFile(updated_fname)
3386 self.assertEqual(expected, data[:len(expected)])
3387 map_fname = os.path.join(tmpdir, 'image-updated.map')
3388 self.assertFalse(os.path.exists(map_fname))
3389 finally:
3390 shutil.rmtree(tmpdir)
3391
3392 def testReplaceCmdSome(self):
3393 """Test replacing some files fron an image on the command line"""
3394 updated_fname, outdir, expected1, expected2, expected_text = (
3395 self._SetupForReplace())
3396
3397 self._DoBinman('replace', '-i', updated_fname, '-I', outdir,
3398 'u-boot2', 'text')
3399
3400 tools.PrepareOutputDir(None)
3401 image = Image.FromFile(updated_fname)
3402 image.LoadData()
3403 entries = image.GetEntries()
3404
3405 # This one should not change
3406 data = entries['u-boot'].data
3407 self.assertEqual(U_BOOT_DATA, data)
3408
3409 data = entries['u-boot2'].data
3410 self.assertEqual(expected2, data)
3411
3412 data = entries['text'].data
3413 self.assertEqual(expected_text, data)
3414
3415 def testReplaceMissing(self):
3416 """Test replacing entries where the file is missing"""
3417 updated_fname, outdir, expected1, expected2, expected_text = (
3418 self._SetupForReplace())
3419
3420 # Remove one of the files, to generate a warning
3421 u_boot_fname1 = os.path.join(outdir, 'u-boot')
3422 os.remove(u_boot_fname1)
3423
3424 with test_util.capture_sys_output() as (stdout, stderr):
3425 control.ReplaceEntries(updated_fname, None, outdir, [])
3426 self.assertIn("Skipping entry '/u-boot' from missing file",
Simon Glass6e02f7c2020-07-09 18:39:39 -06003427 stderr.getvalue())
Simon Glass30033c22019-07-20 12:24:15 -06003428
3429 def testReplaceCmdMap(self):
3430 """Test replacing a file fron an image on the command line"""
3431 self._DoReadFileRealDtb('143_replace_all.dts')
3432
3433 try:
3434 tmpdir, updated_fname = self._SetupImageInTmpdir()
3435
3436 fname = os.path.join(self._indir, 'update-u-boot.bin')
3437 expected = b'x' * len(U_BOOT_DATA)
3438 tools.WriteFile(fname, expected)
3439
3440 self._DoBinman('replace', '-i', updated_fname, 'u-boot',
3441 '-f', fname, '-m')
3442 map_fname = os.path.join(tmpdir, 'image-updated.map')
3443 self.assertTrue(os.path.exists(map_fname))
3444 finally:
3445 shutil.rmtree(tmpdir)
3446
3447 def testReplaceNoEntryPaths(self):
3448 """Test replacing an entry without an entry path"""
3449 self._DoReadFileRealDtb('143_replace_all.dts')
3450 image_fname = tools.GetOutputFilename('image.bin')
3451 with self.assertRaises(ValueError) as e:
3452 control.ReplaceEntries(image_fname, 'fname', None, [])
3453 self.assertIn('Must specify an entry path to read with -f',
3454 str(e.exception))
3455
3456 def testReplaceTooManyEntryPaths(self):
3457 """Test extracting some entries"""
3458 self._DoReadFileRealDtb('143_replace_all.dts')
3459 image_fname = tools.GetOutputFilename('image.bin')
3460 with self.assertRaises(ValueError) as e:
3461 control.ReplaceEntries(image_fname, 'fname', None, ['a', 'b'])
3462 self.assertIn('Must specify exactly one entry path to write with -f',
3463 str(e.exception))
3464
Simon Glass0b074d62019-08-24 07:22:48 -06003465 def testPackReset16(self):
3466 """Test that an image with an x86 reset16 region can be created"""
3467 data = self._DoReadFile('144_x86_reset16.dts')
3468 self.assertEqual(X86_RESET16_DATA, data[:len(X86_RESET16_DATA)])
3469
3470 def testPackReset16Spl(self):
3471 """Test that an image with an x86 reset16-spl region can be created"""
3472 data = self._DoReadFile('145_x86_reset16_spl.dts')
3473 self.assertEqual(X86_RESET16_SPL_DATA, data[:len(X86_RESET16_SPL_DATA)])
3474
3475 def testPackReset16Tpl(self):
3476 """Test that an image with an x86 reset16-tpl region can be created"""
3477 data = self._DoReadFile('146_x86_reset16_tpl.dts')
3478 self.assertEqual(X86_RESET16_TPL_DATA, data[:len(X86_RESET16_TPL_DATA)])
3479
Simon Glass232f90c2019-08-24 07:22:50 -06003480 def testPackIntelFit(self):
3481 """Test that an image with an Intel FIT and pointer can be created"""
3482 data = self._DoReadFile('147_intel_fit.dts')
3483 self.assertEqual(U_BOOT_DATA, data[:len(U_BOOT_DATA)])
3484 fit = data[16:32];
3485 self.assertEqual(b'_FIT_ \x01\x00\x00\x00\x00\x01\x80}' , fit)
3486 ptr = struct.unpack('<i', data[0x40:0x44])[0]
3487
3488 image = control.images['image']
3489 entries = image.GetEntries()
3490 expected_ptr = entries['intel-fit'].image_pos - (1 << 32)
3491 self.assertEqual(expected_ptr, ptr)
3492
3493 def testPackIntelFitMissing(self):
3494 """Test detection of a FIT pointer with not FIT region"""
3495 with self.assertRaises(ValueError) as e:
3496 self._DoReadFile('148_intel_fit_missing.dts')
3497 self.assertIn("'intel-fit-ptr' section must have an 'intel-fit' sibling",
3498 str(e.exception))
3499
Simon Glass72555fa2019-11-06 17:22:44 -07003500 def _CheckSymbolsTplSection(self, dts, expected_vals):
3501 data = self._DoReadFile(dts)
3502 sym_values = struct.pack('<LQLL', *expected_vals)
Simon Glass3eb5b202019-08-24 07:23:00 -06003503 upto1 = 4 + len(U_BOOT_SPL_DATA)
Simon Glass3f8ff012019-08-24 07:23:05 -06003504 expected1 = tools.GetBytes(0xff, 4) + sym_values + U_BOOT_SPL_DATA[20:]
Simon Glass3eb5b202019-08-24 07:23:00 -06003505 self.assertEqual(expected1, data[:upto1])
3506
3507 upto2 = upto1 + 1 + len(U_BOOT_SPL_DATA)
Simon Glass3f8ff012019-08-24 07:23:05 -06003508 expected2 = tools.GetBytes(0xff, 1) + sym_values + U_BOOT_SPL_DATA[20:]
Simon Glass3eb5b202019-08-24 07:23:00 -06003509 self.assertEqual(expected2, data[upto1:upto2])
3510
Simon Glass4e353e22019-08-24 07:23:04 -06003511 upto3 = 0x34 + len(U_BOOT_DATA)
3512 expected3 = tools.GetBytes(0xff, 1) + U_BOOT_DATA
Simon Glass3eb5b202019-08-24 07:23:00 -06003513 self.assertEqual(expected3, data[upto2:upto3])
3514
Simon Glass3f8ff012019-08-24 07:23:05 -06003515 expected4 = sym_values + U_BOOT_TPL_DATA[20:]
Simon Glass72555fa2019-11-06 17:22:44 -07003516 self.assertEqual(expected4, data[upto3:upto3 + len(U_BOOT_TPL_DATA)])
3517
3518 def testSymbolsTplSection(self):
3519 """Test binman can assign symbols embedded in U-Boot TPL in a section"""
3520 self._SetupSplElf('u_boot_binman_syms')
3521 self._SetupTplElf('u_boot_binman_syms')
3522 self._CheckSymbolsTplSection('149_symbols_tpl.dts',
3523 [0x04, 0x1c, 0x10 + 0x34, 0x04])
3524
3525 def testSymbolsTplSectionX86(self):
3526 """Test binman can assign symbols in a section with end-at-4gb"""
3527 self._SetupSplElf('u_boot_binman_syms_x86')
3528 self._SetupTplElf('u_boot_binman_syms_x86')
3529 self._CheckSymbolsTplSection('155_symbols_tpl_x86.dts',
3530 [0xffffff04, 0xffffff1c, 0xffffff34,
3531 0x04])
Simon Glass3eb5b202019-08-24 07:23:00 -06003532
Simon Glass98c59572019-08-24 07:23:03 -06003533 def testPackX86RomIfwiSectiom(self):
3534 """Test that a section can be placed in an IFWI region"""
3535 self._SetupIfwi('fitimage.bin')
3536 data = self._DoReadFile('151_x86_rom_ifwi_section.dts')
3537 self._CheckIfwi(data)
3538
Simon Glassba7985d2019-08-24 07:23:07 -06003539 def testPackFspM(self):
3540 """Test that an image with a FSP memory-init binary can be created"""
3541 data = self._DoReadFile('152_intel_fsp_m.dts')
3542 self.assertEqual(FSP_M_DATA, data[:len(FSP_M_DATA)])
3543
Simon Glass4d9086d2019-10-20 21:31:35 -06003544 def testPackFspS(self):
3545 """Test that an image with a FSP silicon-init binary can be created"""
3546 data = self._DoReadFile('153_intel_fsp_s.dts')
3547 self.assertEqual(FSP_S_DATA, data[:len(FSP_S_DATA)])
Simon Glassba7985d2019-08-24 07:23:07 -06003548
Simon Glass9ea87b22019-10-20 21:31:36 -06003549 def testPackFspT(self):
3550 """Test that an image with a FSP temp-ram-init binary can be created"""
3551 data = self._DoReadFile('154_intel_fsp_t.dts')
3552 self.assertEqual(FSP_T_DATA, data[:len(FSP_T_DATA)])
3553
Simon Glass48f3aad2020-07-09 18:39:31 -06003554 def testMkimage(self):
3555 """Test using mkimage to build an image"""
3556 data = self._DoReadFile('156_mkimage.dts')
3557
3558 # Just check that the data appears in the file somewhere
3559 self.assertIn(U_BOOT_SPL_DATA, data)
3560
Simon Glass5e560182020-07-09 18:39:36 -06003561 def testExtblob(self):
3562 """Test an image with an external blob"""
3563 data = self._DoReadFile('157_blob_ext.dts')
3564 self.assertEqual(REFCODE_DATA, data)
3565
3566 def testExtblobMissing(self):
3567 """Test an image with a missing external blob"""
3568 with self.assertRaises(ValueError) as e:
3569 self._DoReadFile('158_blob_ext_missing.dts')
3570 self.assertIn("Filename 'missing-file' not found in input path",
3571 str(e.exception))
3572
Simon Glass5d94cc62020-07-09 18:39:38 -06003573 def testExtblobMissingOk(self):
3574 """Test an image with an missing external blob that is allowed"""
Simon Glassa003cd32020-07-09 18:39:40 -06003575 with test_util.capture_sys_output() as (stdout, stderr):
3576 self._DoTestFile('158_blob_ext_missing.dts', allow_missing=True)
3577 err = stderr.getvalue()
3578 self.assertRegex(err, "Image 'main-section'.*missing.*: blob-ext")
3579
3580 def testExtblobMissingOkSect(self):
3581 """Test an image with an missing external blob that is allowed"""
3582 with test_util.capture_sys_output() as (stdout, stderr):
3583 self._DoTestFile('159_blob_ext_missing_sect.dts',
3584 allow_missing=True)
3585 err = stderr.getvalue()
3586 self.assertRegex(err, "Image 'main-section'.*missing.*: "
3587 "blob-ext blob-ext2")
Simon Glass5d94cc62020-07-09 18:39:38 -06003588
Simon Glasse88cef92020-07-09 18:39:41 -06003589 def testPackX86RomMeMissingDesc(self):
3590 """Test that an missing Intel descriptor entry is allowed"""
Simon Glasse88cef92020-07-09 18:39:41 -06003591 with test_util.capture_sys_output() as (stdout, stderr):
Simon Glass14c596c2020-07-25 15:11:19 -06003592 self._DoTestFile('164_x86_rom_me_missing.dts', allow_missing=True)
Simon Glasse88cef92020-07-09 18:39:41 -06003593 err = stderr.getvalue()
3594 self.assertRegex(err,
3595 "Image 'main-section'.*missing.*: intel-descriptor")
3596
3597 def testPackX86RomMissingIfwi(self):
3598 """Test that an x86 ROM with Integrated Firmware Image can be created"""
3599 self._SetupIfwi('fitimage.bin')
3600 pathname = os.path.join(self._indir, 'fitimage.bin')
3601 os.remove(pathname)
3602 with test_util.capture_sys_output() as (stdout, stderr):
3603 self._DoTestFile('111_x86_rom_ifwi.dts', allow_missing=True)
3604 err = stderr.getvalue()
3605 self.assertRegex(err, "Image 'main-section'.*missing.*: intel-ifwi")
3606
Simon Glassd70829a2020-07-09 18:39:42 -06003607 def testPackOverlap(self):
3608 """Test that zero-size overlapping regions are ignored"""
3609 self._DoTestFile('160_pack_overlap_zero.dts')
3610
Simon Glass45d556d2020-07-09 18:39:45 -06003611 def testSimpleFit(self):
3612 """Test an image with a FIT inside"""
3613 data = self._DoReadFile('161_fit.dts')
3614 self.assertEqual(U_BOOT_DATA, data[:len(U_BOOT_DATA)])
3615 self.assertEqual(U_BOOT_NODTB_DATA, data[-len(U_BOOT_NODTB_DATA):])
3616 fit_data = data[len(U_BOOT_DATA):-len(U_BOOT_NODTB_DATA)]
3617
3618 # The data should be inside the FIT
3619 dtb = fdt.Fdt.FromData(fit_data)
3620 dtb.Scan()
3621 fnode = dtb.GetNode('/images/kernel')
3622 self.assertIn('data', fnode.props)
3623
3624 fname = os.path.join(self._indir, 'fit_data.fit')
3625 tools.WriteFile(fname, fit_data)
3626 out = tools.Run('dumpimage', '-l', fname)
3627
3628 # Check a few features to make sure the plumbing works. We don't need
3629 # to test the operation of mkimage or dumpimage here. First convert the
3630 # output into a dict where the keys are the fields printed by dumpimage
3631 # and the values are a list of values for each field
3632 lines = out.splitlines()
3633
3634 # Converts "Compression: gzip compressed" into two groups:
3635 # 'Compression' and 'gzip compressed'
3636 re_line = re.compile(r'^ *([^:]*)(?:: *(.*))?$')
3637 vals = collections.defaultdict(list)
3638 for line in lines:
3639 mat = re_line.match(line)
3640 vals[mat.group(1)].append(mat.group(2))
3641
3642 self.assertEquals('FIT description: test-desc', lines[0])
3643 self.assertIn('Created:', lines[1])
3644 self.assertIn('Image 0 (kernel)', vals)
3645 self.assertIn('Hash value', vals)
3646 data_sizes = vals.get('Data Size')
3647 self.assertIsNotNone(data_sizes)
3648 self.assertEqual(2, len(data_sizes))
3649 # Format is "4 Bytes = 0.00 KiB = 0.00 MiB" so take the first word
3650 self.assertEqual(len(U_BOOT_DATA), int(data_sizes[0].split()[0]))
3651 self.assertEqual(len(U_BOOT_SPL_DTB_DATA), int(data_sizes[1].split()[0]))
3652
3653 def testFitExternal(self):
Simon Glass31ee50f2020-09-01 05:13:55 -06003654 """Test an image with an FIT with external images"""
Simon Glass45d556d2020-07-09 18:39:45 -06003655 data = self._DoReadFile('162_fit_external.dts')
3656 fit_data = data[len(U_BOOT_DATA):-2] # _testing is 2 bytes
3657
3658 # The data should be outside the FIT
3659 dtb = fdt.Fdt.FromData(fit_data)
3660 dtb.Scan()
3661 fnode = dtb.GetNode('/images/kernel')
3662 self.assertNotIn('data', fnode.props)
Simon Glassfb30e292019-07-20 12:23:51 -06003663
Alper Nebi Yasak6aae2392020-08-31 12:58:18 +03003664 def testSectionIgnoreHashSignature(self):
3665 """Test that sections ignore hash, signature nodes for its data"""
3666 data = self._DoReadFile('165_section_ignore_hash_signature.dts')
3667 expected = (U_BOOT_DATA + U_BOOT_DATA)
3668 self.assertEqual(expected, data)
3669
Alper Nebi Yasakc5030602020-08-31 12:58:19 +03003670 def testPadInSections(self):
3671 """Test pad-before, pad-after for entries in sections"""
Simon Glassd12599d2020-10-26 17:40:09 -06003672 data, _, _, out_dtb_fname = self._DoReadFileDtb(
3673 '166_pad_in_sections.dts', update_dtb=True)
Alper Nebi Yasakc5030602020-08-31 12:58:19 +03003674 expected = (U_BOOT_DATA + tools.GetBytes(ord('!'), 12) +
3675 U_BOOT_DATA + tools.GetBytes(ord('!'), 6) +
3676 U_BOOT_DATA)
3677 self.assertEqual(expected, data)
3678
Simon Glassd12599d2020-10-26 17:40:09 -06003679 dtb = fdt.Fdt(out_dtb_fname)
3680 dtb.Scan()
3681 props = self._GetPropTree(dtb, ['size', 'image-pos', 'offset'])
3682 expected = {
3683 'image-pos': 0,
3684 'offset': 0,
3685 'size': 12 + 6 + 3 * len(U_BOOT_DATA),
3686
3687 'section:image-pos': 0,
3688 'section:offset': 0,
3689 'section:size': 12 + 6 + 3 * len(U_BOOT_DATA),
3690
3691 'section/before:image-pos': 0,
3692 'section/before:offset': 0,
3693 'section/before:size': len(U_BOOT_DATA),
3694
3695 'section/u-boot:image-pos': 4,
3696 'section/u-boot:offset': 4,
3697 'section/u-boot:size': 12 + len(U_BOOT_DATA) + 6,
3698
3699 'section/after:image-pos': 26,
3700 'section/after:offset': 26,
3701 'section/after:size': len(U_BOOT_DATA),
3702 }
3703 self.assertEqual(expected, props)
3704
Alper Nebi Yasakc261ec12020-08-31 12:58:20 +03003705 def testFitImageSubentryAlignment(self):
3706 """Test relative alignability of FIT image subentries"""
3707 entry_args = {
3708 'test-id': TEXT_DATA,
3709 }
3710 data, _, _, _ = self._DoReadFileDtb('167_fit_image_subentry_alignment.dts',
3711 entry_args=entry_args)
3712 dtb = fdt.Fdt.FromData(data)
3713 dtb.Scan()
3714
3715 node = dtb.GetNode('/images/kernel')
3716 data = dtb.GetProps(node)["data"].bytes
3717 align_pad = 0x10 - (len(U_BOOT_SPL_DATA) % 0x10)
3718 expected = (tools.GetBytes(0, 0x20) + U_BOOT_SPL_DATA +
3719 tools.GetBytes(0, align_pad) + U_BOOT_DATA)
3720 self.assertEqual(expected, data)
3721
3722 node = dtb.GetNode('/images/fdt-1')
3723 data = dtb.GetProps(node)["data"].bytes
3724 expected = (U_BOOT_SPL_DTB_DATA + tools.GetBytes(0, 20) +
3725 tools.ToBytes(TEXT_DATA) + tools.GetBytes(0, 30) +
3726 U_BOOT_DTB_DATA)
3727 self.assertEqual(expected, data)
3728
3729 def testFitExtblobMissingOk(self):
3730 """Test a FIT with a missing external blob that is allowed"""
3731 with test_util.capture_sys_output() as (stdout, stderr):
3732 self._DoTestFile('168_fit_missing_blob.dts',
3733 allow_missing=True)
3734 err = stderr.getvalue()
Simon Glassa820af72020-09-06 10:39:09 -06003735 self.assertRegex(err, "Image 'main-section'.*missing.*: atf-bl31")
Alper Nebi Yasakc261ec12020-08-31 12:58:20 +03003736
Simon Glass21db0ff2020-09-01 05:13:54 -06003737 def testBlobNamedByArgMissing(self):
3738 """Test handling of a missing entry arg"""
3739 with self.assertRaises(ValueError) as e:
3740 self._DoReadFile('068_blob_named_by_arg.dts')
3741 self.assertIn("Missing required properties/entry args: cros-ec-rw-path",
3742 str(e.exception))
3743
Simon Glass559c4de2020-09-01 05:13:58 -06003744 def testPackBl31(self):
3745 """Test that an image with an ATF BL31 binary can be created"""
3746 data = self._DoReadFile('169_atf_bl31.dts')
3747 self.assertEqual(ATF_BL31_DATA, data[:len(ATF_BL31_DATA)])
3748
Samuel Holland9d8cc632020-10-21 21:12:15 -05003749 def testPackScp(self):
3750 """Test that an image with an SCP binary can be created"""
3751 data = self._DoReadFile('172_scp.dts')
3752 self.assertEqual(SCP_DATA, data[:len(SCP_DATA)])
3753
Simon Glassa435cd12020-09-01 05:13:59 -06003754 def testFitFdt(self):
3755 """Test an image with an FIT with multiple FDT images"""
3756 def _CheckFdt(seq, expected_data):
3757 """Check the FDT nodes
3758
3759 Args:
3760 seq: Sequence number to check (0 or 1)
3761 expected_data: Expected contents of 'data' property
3762 """
3763 name = 'fdt-%d' % seq
3764 fnode = dtb.GetNode('/images/%s' % name)
3765 self.assertIsNotNone(fnode)
3766 self.assertEqual({'description','type', 'compression', 'data'},
3767 set(fnode.props.keys()))
3768 self.assertEqual(expected_data, fnode.props['data'].bytes)
3769 self.assertEqual('fdt-test-fdt%d.dtb' % seq,
3770 fnode.props['description'].value)
3771
3772 def _CheckConfig(seq, expected_data):
3773 """Check the configuration nodes
3774
3775 Args:
3776 seq: Sequence number to check (0 or 1)
3777 expected_data: Expected contents of 'data' property
3778 """
3779 cnode = dtb.GetNode('/configurations')
3780 self.assertIn('default', cnode.props)
Simon Glass1032acc2020-09-06 10:39:08 -06003781 self.assertEqual('config-2', cnode.props['default'].value)
Simon Glassa435cd12020-09-01 05:13:59 -06003782
3783 name = 'config-%d' % seq
3784 fnode = dtb.GetNode('/configurations/%s' % name)
3785 self.assertIsNotNone(fnode)
3786 self.assertEqual({'description','firmware', 'loadables', 'fdt'},
3787 set(fnode.props.keys()))
3788 self.assertEqual('conf-test-fdt%d.dtb' % seq,
3789 fnode.props['description'].value)
3790 self.assertEqual('fdt-%d' % seq, fnode.props['fdt'].value)
3791
3792 entry_args = {
3793 'of-list': 'test-fdt1 test-fdt2',
Simon Glass1032acc2020-09-06 10:39:08 -06003794 'default-dt': 'test-fdt2',
Simon Glassa435cd12020-09-01 05:13:59 -06003795 }
3796 data = self._DoReadFileDtb(
Simon Glass1032acc2020-09-06 10:39:08 -06003797 '172_fit_fdt.dts',
Simon Glassa435cd12020-09-01 05:13:59 -06003798 entry_args=entry_args,
3799 extra_indirs=[os.path.join(self._indir, TEST_FDT_SUBDIR)])[0]
3800 self.assertEqual(U_BOOT_NODTB_DATA, data[-len(U_BOOT_NODTB_DATA):])
3801 fit_data = data[len(U_BOOT_DATA):-len(U_BOOT_NODTB_DATA)]
3802
3803 dtb = fdt.Fdt.FromData(fit_data)
3804 dtb.Scan()
3805 fnode = dtb.GetNode('/images/kernel')
3806 self.assertIn('data', fnode.props)
3807
3808 # Check all the properties in fdt-1 and fdt-2
3809 _CheckFdt(1, TEST_FDT1_DATA)
3810 _CheckFdt(2, TEST_FDT2_DATA)
3811
3812 # Check configurations
3813 _CheckConfig(1, TEST_FDT1_DATA)
3814 _CheckConfig(2, TEST_FDT2_DATA)
3815
3816 def testFitFdtMissingList(self):
3817 """Test handling of a missing 'of-list' entry arg"""
3818 with self.assertRaises(ValueError) as e:
Simon Glass1032acc2020-09-06 10:39:08 -06003819 self._DoReadFile('172_fit_fdt.dts')
Simon Glassa435cd12020-09-01 05:13:59 -06003820 self.assertIn("Generator node requires 'of-list' entry argument",
3821 str(e.exception))
3822
3823 def testFitFdtEmptyList(self):
3824 """Test handling of an empty 'of-list' entry arg"""
3825 entry_args = {
3826 'of-list': '',
3827 }
3828 data = self._DoReadFileDtb('170_fit_fdt.dts', entry_args=entry_args)[0]
3829
3830 def testFitFdtMissingProp(self):
3831 """Test handling of a missing 'fit,fdt-list' property"""
3832 with self.assertRaises(ValueError) as e:
3833 self._DoReadFile('171_fit_fdt_missing_prop.dts')
3834 self.assertIn("Generator node requires 'fit,fdt-list' property",
3835 str(e.exception))
Simon Glass559c4de2020-09-01 05:13:58 -06003836
Simon Glass1032acc2020-09-06 10:39:08 -06003837 def testFitFdtEmptyList(self):
3838 """Test handling of an empty 'of-list' entry arg"""
3839 entry_args = {
3840 'of-list': '',
3841 }
3842 data = self._DoReadFileDtb('172_fit_fdt.dts', entry_args=entry_args)[0]
3843
3844 def testFitFdtMissing(self):
3845 """Test handling of a missing 'default-dt' entry arg"""
3846 entry_args = {
3847 'of-list': 'test-fdt1 test-fdt2',
3848 }
3849 with self.assertRaises(ValueError) as e:
3850 self._DoReadFileDtb(
3851 '172_fit_fdt.dts',
3852 entry_args=entry_args,
3853 extra_indirs=[os.path.join(self._indir, TEST_FDT_SUBDIR)])[0]
3854 self.assertIn("Generated 'default' node requires default-dt entry argument",
3855 str(e.exception))
3856
3857 def testFitFdtNotInList(self):
3858 """Test handling of a default-dt that is not in the of-list"""
3859 entry_args = {
3860 'of-list': 'test-fdt1 test-fdt2',
3861 'default-dt': 'test-fdt3',
3862 }
3863 with self.assertRaises(ValueError) as e:
3864 self._DoReadFileDtb(
3865 '172_fit_fdt.dts',
3866 entry_args=entry_args,
3867 extra_indirs=[os.path.join(self._indir, TEST_FDT_SUBDIR)])[0]
3868 self.assertIn("default-dt entry argument 'test-fdt3' not found in fdt list: test-fdt1, test-fdt2",
3869 str(e.exception))
3870
Simon Glassa820af72020-09-06 10:39:09 -06003871 def testFitExtblobMissingHelp(self):
3872 """Test display of help messages when an external blob is missing"""
3873 control.missing_blob_help = control._ReadMissingBlobHelp()
3874 control.missing_blob_help['wibble'] = 'Wibble test'
3875 control.missing_blob_help['another'] = 'Another test'
3876 with test_util.capture_sys_output() as (stdout, stderr):
3877 self._DoTestFile('168_fit_missing_blob.dts',
3878 allow_missing=True)
3879 err = stderr.getvalue()
3880
3881 # We can get the tag from the name, the type or the missing-msg
3882 # property. Check all three.
3883 self.assertIn('You may need to build ARM Trusted', err)
3884 self.assertIn('Wibble test', err)
3885 self.assertIn('Another test', err)
3886
Simon Glass6f1f4d42020-09-06 10:35:32 -06003887 def testMissingBlob(self):
3888 """Test handling of a blob containing a missing file"""
3889 with self.assertRaises(ValueError) as e:
3890 self._DoTestFile('173_missing_blob.dts', allow_missing=True)
3891 self.assertIn("Filename 'missing' not found in input path",
3892 str(e.exception))
3893
Simon Glassa0729502020-09-06 10:35:33 -06003894 def testEnvironment(self):
3895 """Test adding a U-Boot environment"""
3896 data = self._DoReadFile('174_env.dts')
3897 self.assertEqual(U_BOOT_DATA, data[:len(U_BOOT_DATA)])
3898 self.assertEqual(U_BOOT_NODTB_DATA, data[-len(U_BOOT_NODTB_DATA):])
3899 env = data[len(U_BOOT_DATA):-len(U_BOOT_NODTB_DATA)]
3900 self.assertEqual(b'\x1b\x97\x22\x7c\x01var1=1\0var2="2"\0\0\xff\xff',
3901 env)
3902
3903 def testEnvironmentNoSize(self):
3904 """Test that a missing 'size' property is detected"""
3905 with self.assertRaises(ValueError) as e:
Simon Glass8cdc08a2020-10-26 17:40:00 -06003906 self._DoTestFile('175_env_no_size.dts')
Simon Glassa0729502020-09-06 10:35:33 -06003907 self.assertIn("'u-boot-env' entry must have a size property",
3908 str(e.exception))
3909
3910 def testEnvironmentTooSmall(self):
3911 """Test handling of an environment that does not fit"""
3912 with self.assertRaises(ValueError) as e:
Simon Glass8cdc08a2020-10-26 17:40:00 -06003913 self._DoTestFile('176_env_too_small.dts')
Simon Glassa0729502020-09-06 10:35:33 -06003914
3915 # checksum, start byte, environment with \0 terminator, final \0
3916 need = 4 + 1 + len(ENV_DATA) + 1 + 1
3917 short = need - 0x8
3918 self.assertIn("too small to hold data (need %#x more bytes)" % short,
3919 str(e.exception))
3920
Simon Glassd1fdf752020-10-26 17:40:01 -06003921 def testSkipAtStart(self):
3922 """Test handling of skip-at-start section"""
3923 data = self._DoReadFile('177_skip_at_start.dts')
3924 self.assertEqual(U_BOOT_DATA, data)
3925
3926 image = control.images['image']
3927 entries = image.GetEntries()
3928 section = entries['section']
3929 self.assertEqual(0, section.offset)
3930 self.assertEqual(len(U_BOOT_DATA), section.size)
3931 self.assertEqual(U_BOOT_DATA, section.GetData())
3932
3933 entry = section.GetEntries()['u-boot']
3934 self.assertEqual(16, entry.offset)
3935 self.assertEqual(len(U_BOOT_DATA), entry.size)
3936 self.assertEqual(U_BOOT_DATA, entry.data)
3937
3938 def testSkipAtStartPad(self):
3939 """Test handling of skip-at-start section with padded entry"""
3940 data = self._DoReadFile('178_skip_at_start_pad.dts')
3941 before = tools.GetBytes(0, 8)
3942 after = tools.GetBytes(0, 4)
3943 all = before + U_BOOT_DATA + after
3944 self.assertEqual(all, data)
3945
3946 image = control.images['image']
3947 entries = image.GetEntries()
3948 section = entries['section']
3949 self.assertEqual(0, section.offset)
3950 self.assertEqual(len(all), section.size)
3951 self.assertEqual(all, section.GetData())
3952
3953 entry = section.GetEntries()['u-boot']
3954 self.assertEqual(16, entry.offset)
3955 self.assertEqual(len(all), entry.size)
3956 self.assertEqual(U_BOOT_DATA, entry.data)
3957
3958 def testSkipAtStartSectionPad(self):
3959 """Test handling of skip-at-start section with padding"""
3960 data = self._DoReadFile('179_skip_at_start_section_pad.dts')
3961 before = tools.GetBytes(0, 8)
3962 after = tools.GetBytes(0, 4)
3963 all = before + U_BOOT_DATA + after
Simon Glass510ef0f2020-10-26 17:40:13 -06003964 self.assertEqual(all, data)
Simon Glassd1fdf752020-10-26 17:40:01 -06003965
3966 image = control.images['image']
3967 entries = image.GetEntries()
3968 section = entries['section']
3969 self.assertEqual(0, section.offset)
3970 self.assertEqual(len(all), section.size)
Simon Glass72eeff12020-10-26 17:40:16 -06003971 self.assertEqual(U_BOOT_DATA, section.data)
Simon Glass510ef0f2020-10-26 17:40:13 -06003972 self.assertEqual(all, section.GetPaddedData())
Simon Glassd1fdf752020-10-26 17:40:01 -06003973
3974 entry = section.GetEntries()['u-boot']
3975 self.assertEqual(16, entry.offset)
3976 self.assertEqual(len(U_BOOT_DATA), entry.size)
3977 self.assertEqual(U_BOOT_DATA, entry.data)
Simon Glassa0729502020-09-06 10:35:33 -06003978
Simon Glassbb395742020-10-26 17:40:14 -06003979 def testSectionPad(self):
3980 """Testing padding with sections"""
3981 data = self._DoReadFile('180_section_pad.dts')
3982 expected = (tools.GetBytes(ord('&'), 3) +
3983 tools.GetBytes(ord('!'), 5) +
3984 U_BOOT_DATA +
3985 tools.GetBytes(ord('!'), 1) +
3986 tools.GetBytes(ord('&'), 2))
3987 self.assertEqual(expected, data)
3988
3989 def testSectionAlign(self):
3990 """Testing alignment with sections"""
3991 data = self._DoReadFileDtb('181_section_align.dts', map=True)[0]
3992 expected = (b'\0' + # fill section
3993 tools.GetBytes(ord('&'), 1) + # padding to section align
3994 b'\0' + # fill section
3995 tools.GetBytes(ord('!'), 3) + # padding to u-boot align
3996 U_BOOT_DATA +
3997 tools.GetBytes(ord('!'), 4) + # padding to u-boot size
3998 tools.GetBytes(ord('!'), 4)) # padding to section size
3999 self.assertEqual(expected, data)
4000
Simon Glassd92c8362020-10-26 17:40:25 -06004001 def testCompressImage(self):
4002 """Test compression of the entire image"""
4003 self._CheckLz4()
4004 data, _, _, out_dtb_fname = self._DoReadFileDtb(
4005 '182_compress_image.dts', use_real_dtb=True, update_dtb=True)
4006 dtb = fdt.Fdt(out_dtb_fname)
4007 dtb.Scan()
4008 props = self._GetPropTree(dtb, ['offset', 'image-pos', 'size',
4009 'uncomp-size'])
4010 orig = self._decompress(data)
4011 self.assertEquals(COMPRESS_DATA + U_BOOT_DATA, orig)
4012
4013 # Do a sanity check on various fields
4014 image = control.images['image']
4015 entries = image.GetEntries()
4016 self.assertEqual(2, len(entries))
4017
4018 entry = entries['blob']
4019 self.assertEqual(COMPRESS_DATA, entry.data)
4020 self.assertEqual(len(COMPRESS_DATA), entry.size)
4021
4022 entry = entries['u-boot']
4023 self.assertEqual(U_BOOT_DATA, entry.data)
4024 self.assertEqual(len(U_BOOT_DATA), entry.size)
4025
4026 self.assertEqual(len(data), image.size)
4027 self.assertEqual(COMPRESS_DATA + U_BOOT_DATA, image.uncomp_data)
4028 self.assertEqual(len(COMPRESS_DATA + U_BOOT_DATA), image.uncomp_size)
4029 orig = self._decompress(image.data)
4030 self.assertEqual(orig, image.uncomp_data)
4031
4032 expected = {
4033 'blob:offset': 0,
4034 'blob:size': len(COMPRESS_DATA),
4035 'u-boot:offset': len(COMPRESS_DATA),
4036 'u-boot:size': len(U_BOOT_DATA),
4037 'uncomp-size': len(COMPRESS_DATA + U_BOOT_DATA),
4038 'offset': 0,
4039 'image-pos': 0,
4040 'size': len(data),
4041 }
4042 self.assertEqual(expected, props)
4043
4044 def testCompressImageLess(self):
4045 """Test compression where compression reduces the image size"""
4046 self._CheckLz4()
4047 data, _, _, out_dtb_fname = self._DoReadFileDtb(
4048 '183_compress_image_less.dts', use_real_dtb=True, update_dtb=True)
4049 dtb = fdt.Fdt(out_dtb_fname)
4050 dtb.Scan()
4051 props = self._GetPropTree(dtb, ['offset', 'image-pos', 'size',
4052 'uncomp-size'])
4053 orig = self._decompress(data)
4054
4055 self.assertEquals(COMPRESS_DATA + COMPRESS_DATA + U_BOOT_DATA, orig)
4056
4057 # Do a sanity check on various fields
4058 image = control.images['image']
4059 entries = image.GetEntries()
4060 self.assertEqual(2, len(entries))
4061
4062 entry = entries['blob']
4063 self.assertEqual(COMPRESS_DATA_BIG, entry.data)
4064 self.assertEqual(len(COMPRESS_DATA_BIG), entry.size)
4065
4066 entry = entries['u-boot']
4067 self.assertEqual(U_BOOT_DATA, entry.data)
4068 self.assertEqual(len(U_BOOT_DATA), entry.size)
4069
4070 self.assertEqual(len(data), image.size)
4071 self.assertEqual(COMPRESS_DATA_BIG + U_BOOT_DATA, image.uncomp_data)
4072 self.assertEqual(len(COMPRESS_DATA_BIG + U_BOOT_DATA),
4073 image.uncomp_size)
4074 orig = self._decompress(image.data)
4075 self.assertEqual(orig, image.uncomp_data)
4076
4077 expected = {
4078 'blob:offset': 0,
4079 'blob:size': len(COMPRESS_DATA_BIG),
4080 'u-boot:offset': len(COMPRESS_DATA_BIG),
4081 'u-boot:size': len(U_BOOT_DATA),
4082 'uncomp-size': len(COMPRESS_DATA_BIG + U_BOOT_DATA),
4083 'offset': 0,
4084 'image-pos': 0,
4085 'size': len(data),
4086 }
4087 self.assertEqual(expected, props)
4088
4089 def testCompressSectionSize(self):
4090 """Test compression of a section with a fixed size"""
4091 self._CheckLz4()
4092 data, _, _, out_dtb_fname = self._DoReadFileDtb(
4093 '184_compress_section_size.dts', use_real_dtb=True, update_dtb=True)
4094 dtb = fdt.Fdt(out_dtb_fname)
4095 dtb.Scan()
4096 props = self._GetPropTree(dtb, ['offset', 'image-pos', 'size',
4097 'uncomp-size'])
4098 orig = self._decompress(data)
4099 self.assertEquals(COMPRESS_DATA + U_BOOT_DATA, orig)
4100 expected = {
4101 'section/blob:offset': 0,
4102 'section/blob:size': len(COMPRESS_DATA),
4103 'section/u-boot:offset': len(COMPRESS_DATA),
4104 'section/u-boot:size': len(U_BOOT_DATA),
4105 'section:offset': 0,
4106 'section:image-pos': 0,
4107 'section:uncomp-size': len(COMPRESS_DATA + U_BOOT_DATA),
4108 'section:size': 0x30,
4109 'offset': 0,
4110 'image-pos': 0,
4111 'size': 0x30,
4112 }
4113 self.assertEqual(expected, props)
4114
4115 def testCompressSection(self):
4116 """Test compression of a section with no fixed size"""
4117 self._CheckLz4()
4118 data, _, _, out_dtb_fname = self._DoReadFileDtb(
4119 '185_compress_section.dts', use_real_dtb=True, update_dtb=True)
4120 dtb = fdt.Fdt(out_dtb_fname)
4121 dtb.Scan()
4122 props = self._GetPropTree(dtb, ['offset', 'image-pos', 'size',
4123 'uncomp-size'])
4124 orig = self._decompress(data)
4125 self.assertEquals(COMPRESS_DATA + U_BOOT_DATA, orig)
4126 expected = {
4127 'section/blob:offset': 0,
4128 'section/blob:size': len(COMPRESS_DATA),
4129 'section/u-boot:offset': len(COMPRESS_DATA),
4130 'section/u-boot:size': len(U_BOOT_DATA),
4131 'section:offset': 0,
4132 'section:image-pos': 0,
4133 'section:uncomp-size': len(COMPRESS_DATA + U_BOOT_DATA),
4134 'section:size': len(data),
4135 'offset': 0,
4136 'image-pos': 0,
4137 'size': len(data),
4138 }
4139 self.assertEqual(expected, props)
4140
4141 def testCompressExtra(self):
4142 """Test compression of a section with no fixed size"""
4143 self._CheckLz4()
4144 data, _, _, out_dtb_fname = self._DoReadFileDtb(
4145 '186_compress_extra.dts', use_real_dtb=True, update_dtb=True)
4146 dtb = fdt.Fdt(out_dtb_fname)
4147 dtb.Scan()
4148 props = self._GetPropTree(dtb, ['offset', 'image-pos', 'size',
4149 'uncomp-size'])
4150
4151 base = data[len(U_BOOT_DATA):]
4152 self.assertEquals(U_BOOT_DATA, base[:len(U_BOOT_DATA)])
4153 rest = base[len(U_BOOT_DATA):]
4154
4155 # Check compressed data
4156 section1 = self._decompress(rest)
4157 expect1 = tools.Compress(COMPRESS_DATA + U_BOOT_DATA, 'lz4')
4158 self.assertEquals(expect1, rest[:len(expect1)])
4159 self.assertEquals(COMPRESS_DATA + U_BOOT_DATA, section1)
4160 rest1 = rest[len(expect1):]
4161
4162 section2 = self._decompress(rest1)
4163 expect2 = tools.Compress(COMPRESS_DATA + COMPRESS_DATA, 'lz4')
4164 self.assertEquals(expect2, rest1[:len(expect2)])
4165 self.assertEquals(COMPRESS_DATA + COMPRESS_DATA, section2)
4166 rest2 = rest1[len(expect2):]
4167
4168 expect_size = (len(U_BOOT_DATA) + len(U_BOOT_DATA) + len(expect1) +
4169 len(expect2) + len(U_BOOT_DATA))
4170 #self.assertEquals(expect_size, len(data))
4171
4172 #self.assertEquals(U_BOOT_DATA, rest2)
4173
4174 self.maxDiff = None
4175 expected = {
4176 'u-boot:offset': 0,
4177 'u-boot:image-pos': 0,
4178 'u-boot:size': len(U_BOOT_DATA),
4179
4180 'base:offset': len(U_BOOT_DATA),
4181 'base:image-pos': len(U_BOOT_DATA),
4182 'base:size': len(data) - len(U_BOOT_DATA),
4183 'base/u-boot:offset': 0,
4184 'base/u-boot:image-pos': len(U_BOOT_DATA),
4185 'base/u-boot:size': len(U_BOOT_DATA),
4186 'base/u-boot2:offset': len(U_BOOT_DATA) + len(expect1) +
4187 len(expect2),
4188 'base/u-boot2:image-pos': len(U_BOOT_DATA) * 2 + len(expect1) +
4189 len(expect2),
4190 'base/u-boot2:size': len(U_BOOT_DATA),
4191
4192 'base/section:offset': len(U_BOOT_DATA),
4193 'base/section:image-pos': len(U_BOOT_DATA) * 2,
4194 'base/section:size': len(expect1),
4195 'base/section:uncomp-size': len(COMPRESS_DATA + U_BOOT_DATA),
4196 'base/section/blob:offset': 0,
4197 'base/section/blob:size': len(COMPRESS_DATA),
4198 'base/section/u-boot:offset': len(COMPRESS_DATA),
4199 'base/section/u-boot:size': len(U_BOOT_DATA),
4200
4201 'base/section2:offset': len(U_BOOT_DATA) + len(expect1),
4202 'base/section2:image-pos': len(U_BOOT_DATA) * 2 + len(expect1),
4203 'base/section2:size': len(expect2),
4204 'base/section2:uncomp-size': len(COMPRESS_DATA + COMPRESS_DATA),
4205 'base/section2/blob:offset': 0,
4206 'base/section2/blob:size': len(COMPRESS_DATA),
4207 'base/section2/blob2:offset': len(COMPRESS_DATA),
4208 'base/section2/blob2:size': len(COMPRESS_DATA),
4209
4210 'offset': 0,
4211 'image-pos': 0,
4212 'size': len(data),
4213 }
4214 self.assertEqual(expected, props)
4215
Simon Glassecbe4732021-01-06 21:35:15 -07004216 def testSymbolsSubsection(self):
4217 """Test binman can assign symbols from a subsection"""
Simon Glass31e04cb2021-03-18 20:24:56 +13004218 self.checkSymbols('187_symbols_sub.dts', U_BOOT_SPL_DATA, 0x18)
Simon Glassecbe4732021-01-06 21:35:15 -07004219
Simon Glass3fb25402021-01-06 21:35:16 -07004220 def testReadImageEntryArg(self):
4221 """Test reading an image that would need an entry arg to generate"""
4222 entry_args = {
4223 'cros-ec-rw-path': 'ecrw.bin',
4224 }
4225 data = self.data = self._DoReadFileDtb(
4226 '188_image_entryarg.dts',use_real_dtb=True, update_dtb=True,
4227 entry_args=entry_args)
4228
4229 image_fname = tools.GetOutputFilename('image.bin')
4230 orig_image = control.images['image']
4231
4232 # This should not generate an error about the missing 'cros-ec-rw-path'
4233 # since we are reading the image from a file. Compare with
4234 # testEntryArgsRequired()
4235 image = Image.FromFile(image_fname)
4236 self.assertEqual(orig_image.GetEntries().keys(),
4237 image.GetEntries().keys())
4238
Simon Glassa2af7302021-01-06 21:35:18 -07004239 def testFilesAlign(self):
4240 """Test alignment with files"""
4241 data = self._DoReadFile('190_files_align.dts')
4242
4243 # The first string is 15 bytes so will align to 16
4244 expect = FILES_DATA[:15] + b'\0' + FILES_DATA[15:]
4245 self.assertEqual(expect, data)
4246
Simon Glassdb84b562021-01-06 21:35:19 -07004247 def testReadImageSkip(self):
4248 """Test reading an image and accessing its FDT map"""
4249 data = self.data = self._DoReadFileRealDtb('191_read_image_skip.dts')
4250 image_fname = tools.GetOutputFilename('image.bin')
4251 orig_image = control.images['image']
4252 image = Image.FromFile(image_fname)
4253 self.assertEqual(orig_image.GetEntries().keys(),
4254 image.GetEntries().keys())
4255
4256 orig_entry = orig_image.GetEntries()['fdtmap']
4257 entry = image.GetEntries()['fdtmap']
4258 self.assertEqual(orig_entry.offset, entry.offset)
4259 self.assertEqual(orig_entry.size, entry.size)
4260 self.assertEqual(16, entry.image_pos)
4261
4262 u_boot = image.GetEntries()['section'].GetEntries()['u-boot']
4263
4264 self.assertEquals(U_BOOT_DATA, u_boot.ReadData())
4265
Simon Glassc98de972021-03-18 20:24:57 +13004266 def testTplNoDtb(self):
4267 """Test that an image with tpl/u-boot-tpl-nodtb.bin can be created"""
4268 data = self._DoReadFile('192_u_boot_tpl_nodtb.dts')
4269 self.assertEqual(U_BOOT_TPL_NODTB_DATA,
4270 data[:len(U_BOOT_TPL_NODTB_DATA)])
4271
Simon Glass63f41d42021-03-18 20:24:58 +13004272 def testTplBssPad(self):
4273 """Test that we can pad TPL's BSS with zeros"""
4274 # ELF file with a '__bss_size' symbol
4275 self._SetupTplElf()
4276 data = self._DoReadFile('193_tpl_bss_pad.dts')
4277 self.assertEqual(U_BOOT_TPL_DATA + tools.GetBytes(0, 10) + U_BOOT_DATA,
4278 data)
4279
4280 def testTplBssPadMissing(self):
4281 """Test that a missing symbol is detected"""
4282 self._SetupTplElf('u_boot_ucode_ptr')
4283 with self.assertRaises(ValueError) as e:
4284 self._DoReadFile('193_tpl_bss_pad.dts')
4285 self.assertIn('Expected __bss_size symbol in tpl/u-boot-tpl',
4286 str(e.exception))
4287
Simon Glassbb395742020-10-26 17:40:14 -06004288
Simon Glassac599912017-11-12 21:52:22 -07004289if __name__ == "__main__":
4290 unittest.main()