summaryrefslogtreecommitdiff
path: root/tools/binman/etype/u_boot_spl_with_ucode_ptr.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-11-25 20:15:55 -0700
committerSimon Glass <sjg@chromium.org>2016-12-20 08:09:55 +1300
commit75db0860b1cee8c3b2539878a227c37bfce00046 (patch)
treef83f5581222fc9d81100a5a0e0bf3758709ca967 /tools/binman/etype/u_boot_spl_with_ucode_ptr.py
parentc49deb837cb1ba0a64869fcb4fabac11d3e94ae0 (diff)
downloadu-boot-imx-75db0860b1cee8c3b2539878a227c37bfce00046.zip
u-boot-imx-75db0860b1cee8c3b2539878a227c37bfce00046.tar.gz
u-boot-imx-75db0860b1cee8c3b2539878a227c37bfce00046.tar.bz2
binman: Add support for building x86 ROMs with SPL
When building for 64-bit x86 we need an SPL binary in the ROM. Add support for this. Also increase entry test code coverage to 100%. Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'tools/binman/etype/u_boot_spl_with_ucode_ptr.py')
-rw-r--r--tools/binman/etype/u_boot_spl_with_ucode_ptr.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/tools/binman/etype/u_boot_spl_with_ucode_ptr.py b/tools/binman/etype/u_boot_spl_with_ucode_ptr.py
new file mode 100644
index 0000000..764c282
--- /dev/null
+++ b/tools/binman/etype/u_boot_spl_with_ucode_ptr.py
@@ -0,0 +1,28 @@
+# Copyright (c) 2016 Google, Inc
+# Written by Simon Glass <sjg@chromium.org>
+#
+# SPDX-License-Identifier: GPL-2.0+
+#
+# Entry-type module for an SPL binary with an embedded microcode pointer
+#
+
+import struct
+
+import command
+from entry import Entry
+from blob import Entry_blob
+from u_boot_with_ucode_ptr import Entry_u_boot_with_ucode_ptr
+import tools
+
+class Entry_u_boot_spl_with_ucode_ptr(Entry_u_boot_with_ucode_ptr):
+ """U-Boot SPL with embedded microcode pointer
+
+ See Entry_u_boot_ucode for full details of the entries involved in this
+ process.
+ """
+ def __init__(self, image, etype, node):
+ Entry_blob.__init__(self, image, etype, node)
+ self.elf_fname = 'spl/u-boot-spl'
+
+ def GetDefaultFilename(self):
+ return 'spl/u-boot-spl.bin'