mirror of
https://xff.cz/git/u-boot/
synced 2025-09-30 15:01:27 +02:00
binman: Add support for Intel FSP-S
This entry is used to hold an Intel FSP-S (Firmware Support Package Silicon init) binary. Add support for this in binman. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
@@ -73,6 +73,7 @@ FILES_DATA = (b"sorry I'm late\nOh, don't bother apologising, I'm " +
|
||||
COMPRESS_DATA = b'compress xxxxxxxxxxxxxxxxxxxxxx data'
|
||||
REFCODE_DATA = b'refcode'
|
||||
FSP_M_DATA = b'fsp_m'
|
||||
FSP_S_DATA = b'fsp_s'
|
||||
|
||||
# The expected size for the device tree in some tests
|
||||
EXTRACT_DTB_SIZE = 0x3c9
|
||||
@@ -149,6 +150,7 @@ class TestFunctional(unittest.TestCase):
|
||||
TestFunctional._MakeInputFile('bmpblk.bin', BMPBLK_DATA)
|
||||
TestFunctional._MakeInputFile('refcode.bin', REFCODE_DATA)
|
||||
TestFunctional._MakeInputFile('fsp_m.bin', FSP_M_DATA)
|
||||
TestFunctional._MakeInputFile('fsp_s.bin', FSP_S_DATA)
|
||||
|
||||
cls._elf_testdir = os.path.join(cls._indir, 'elftest')
|
||||
elf_test.BuildElfTestFiles(cls._elf_testdir)
|
||||
@@ -3332,6 +3334,10 @@ class TestFunctional(unittest.TestCase):
|
||||
data = self._DoReadFile('152_intel_fsp_m.dts')
|
||||
self.assertEqual(FSP_M_DATA, data[:len(FSP_M_DATA)])
|
||||
|
||||
def testPackFspS(self):
|
||||
"""Test that an image with a FSP silicon-init binary can be created"""
|
||||
data = self._DoReadFile('153_intel_fsp_s.dts')
|
||||
self.assertEqual(FSP_S_DATA, data[:len(FSP_S_DATA)])
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
Reference in New Issue
Block a user