summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Tomsich <philipp.tomsich@theobroma-systems.com>2017-02-15 23:50:52 +0100
committerPhilipp Tomsich <philipp.tomsich@theobroma-systems.com>2017-03-09 01:40:21 +0100
commitb67f355dde4a63383f828abaea79ad4aa8df4b1c (patch)
treea2d50785d0e1636cd99e97fd803109e5e92ede06
parent0002c5b93e8da919127c69ce8647b83b9ac8e1c9 (diff)
sunxi: lynx: add lynx_atf.its for FIT image creation
Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
-rw-r--r--board/sunxi/lynx_atf.its42
1 files changed, 42 insertions, 0 deletions
diff --git a/board/sunxi/lynx_atf.its b/board/sunxi/lynx_atf.its
new file mode 100644
index 0000000000..21cd63768a
--- /dev/null
+++ b/board/sunxi/lynx_atf.its
@@ -0,0 +1,42 @@
+/dts-v1/;
+
+/ {
+ description = "Configuration to load ATF before U-Boot";
+ #address-cells = <1>;
+
+ images {
+ uboot {
+ description = "U-Boot (64-bit)";
+ data = /incbin/("../../u-boot-nodtb.bin");
+ type = "standalone";
+ arch = "arm64";
+ compression = "none";
+ load = <0x4a000000>;
+ };
+ atf {
+ description = "ARM Trusted Firmware";
+ data = /incbin/("../../bl31.bin");
+ type = "firmware";
+ arch = "arm64";
+ compression = "none";
+ load = <0x44000>;
+ entry = <0x44000>;
+ };
+ fdt {
+ description = "A64-uQ7 Lynx DT";
+ data = /incbin/("../../arch/arm/dts/sun50i-a64-lynx.dtb");
+ type = "flat_dt";
+ compression = "none";
+ };
+ };
+ configurations {
+ default = "a64_uQ7";
+
+ a64_uQ7 {
+ description = "sun50i-a64-lynx";
+ firmware = "uboot";
+ loadables = "atf";
+ fdt = "fdt";
+ };
+ };
+};