diff options
author | Tom Rini <trini@konsulko.com> | 2018-05-11 07:09:21 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-05-11 07:09:21 -0400 |
commit | c590e62d3b6f6dd72eae1183614f919e3fd7ffcb (patch) | |
tree | 6e53169f3ca008e40a69fc904826ec662d19fb78 /doc | |
parent | 3aba3fd65490eff5305160e92937dc5592ab9bfb (diff) | |
parent | a6f2a6eafe0e5ad71c41341219ae3b187c1f738a (diff) | |
download | u-boot-c590e62d3b6f6dd72eae1183614f919e3fd7ffcb.zip u-boot-c590e62d3b6f6dd72eae1183614f919e3fd7ffcb.tar.gz u-boot-c590e62d3b6f6dd72eae1183614f919e3fd7ffcb.tar.bz2 |
Merge git://git.denx.de/u-boot-fsl-qoriq
Diffstat (limited to 'doc')
-rw-r--r-- | doc/uImage.FIT/sec_firmware_ppa.its | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/doc/uImage.FIT/sec_firmware_ppa.its b/doc/uImage.FIT/sec_firmware_ppa.its new file mode 100644 index 0000000..a7acde1 --- /dev/null +++ b/doc/uImage.FIT/sec_firmware_ppa.its @@ -0,0 +1,49 @@ +/dts-v1/; + +/* + * Example FIT image description file demonstrating the usage + * of SEC Firmware and multiple loadable images loaded by the u-boot. + * For booting PPA (SEC Firmware), "firmware" is searched and loaded. + * + * Multiple binaries will be loaded as "loadables" (if present) at their + * respective load offsets from firmware image address. + */ + +/{ + description = "PPA Firmware"; + #address-cells = <1>; + images { + firmware@1 { + description = "PPA Firmware: <version>"; + data = /incbin/("../obj/monitor.bin"); + type = "firmware"; + arch = "arm64"; + compression = "none"; + }; + trustedOS@1 { + description = "Trusted OS"; + data = /incbin/("../../tee.bin"); + type = "OS"; + arch = "arm64"; + compression = "none"; + load = <0x00200000>; + }; + fuse_scr { + description = "Fuse Script"; + data = /incbin/("../../fuse_scr.bin"); + type = "firmware"; + arch = "arm64"; + compression = "none"; + load = <0x00180000>; + }; + }; + + configurations { + default = "config-1"; + config-1 { + description = "PPA Secure firmware"; + firmware = "firmware@1"; + loadables = "trustedOS@1", "fuse_scr"; + }; + }; +}; |