diff options
author | Simon Glass <sjg@chromium.org> | 2019-07-08 13:18:54 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2019-07-24 12:53:46 -0700 |
commit | c5ac138828c504812f09971a7a95bd73e186782e (patch) | |
tree | 65245cbdfc83e7e14d56ed52e2333126c5ab415e /tools/binman/test/112_x86-rom-ifwi-nodesc.dts | |
parent | ac62fba459ad94d0d6b457a47d90628cc7b76496 (diff) |
binman: Add support for Intel IFWI entries
An Integrated Firmware Image is used to hold various binaries used for
booting with Apollolake and some later devices. Add support for this.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/test/112_x86-rom-ifwi-nodesc.dts')
-rw-r--r-- | tools/binman/test/112_x86-rom-ifwi-nodesc.dts | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tools/binman/test/112_x86-rom-ifwi-nodesc.dts b/tools/binman/test/112_x86-rom-ifwi-nodesc.dts new file mode 100644 index 0000000000..21ec4654ff --- /dev/null +++ b/tools/binman/test/112_x86-rom-ifwi-nodesc.dts @@ -0,0 +1,28 @@ +// SPDX-License-Identifier: GPL-2.0+ + +/dts-v1/; + +/ { + #address-cells = <1>; + #size-cells = <1>; + + binman { + sort-by-offset; + end-at-4gb; + size = <0x800000>; + intel-descriptor { + filename = "descriptor.bin"; + }; + + intel-ifwi { + offset-unset; + filename = "ifwi.bin"; + + u-boot-tpl { + replace; + ifwi-subpart = "IBBP"; + ifwi-entry = "IBBL"; + }; + }; + }; +}; |