All of lore.kernel.org
 help / color / mirror / Atom feed
From: Siew Chin Lim <elly.siew.chin.lim@intel.com>
To: u-boot@lists.denx.de
Subject: [v2, 02/16] arm: socfpga: soc64: Add FIT generator script for pack itb with ATF
Date: Thu,  1 Oct 2020 02:16:00 -0700	[thread overview]
Message-ID: <20201001091614.184612-3-elly.siew.chin.lim@intel.com> (raw)
In-Reply-To: <20201001091614.184612-1-elly.siew.chin.lim@intel.com>

From: Chee Hong Ang <chee.hong.ang@intel.com>

Generate a FIT image for Intel SOCFPGA (64bits) which
include U-boot proper, ATF and DTB for U-boot proper.

Signed-off-by: Chee Hong Ang <chee.hong.ang@intel.com>
Signed-off-by: Siew Chin Lim <elly.siew.chin.lim@intel.com>

---
v2:
- Move soc64 folder from board/altera to board/intel folder
---
 board/intel/soc64/fit_spl_atf.sh | 92 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 92 insertions(+)
 create mode 100755 board/intel/soc64/fit_spl_atf.sh

diff --git a/board/intel/soc64/fit_spl_atf.sh b/board/intel/soc64/fit_spl_atf.sh
new file mode 100755
index 0000000000..40f0e20c05
--- /dev/null
+++ b/board/intel/soc64/fit_spl_atf.sh
@@ -0,0 +1,92 @@
+#!/bin/sh
+#
+# SPDX-License-Identifier: GPL-2.0+
+#
+# script to generate FIT image source for Stratix 10 and
+# Agilex boards with U-Boot proper, ATF and device tree
+# for U-Boot proper.
+#
+# usage: $0 <DT_NAME>
+
+BL31="bl31.bin"
+if [ ! -f $BL31 ]; then
+	echo "BL31 file \"$BL31\" NOT found!" >&2
+	exit 1
+fi
+
+BL33="u-boot-nodtb.bin"
+if [ ! -f $BL33 ]; then
+	echo "BL33 file \"$BL33\" NOT found!" >&2
+	exit 1
+fi
+
+if [ -f "$1" ] ; then
+	DT_NAME="$1"
+else
+	echo "File not found: \"$1\"" >&2
+	exit 1
+fi
+
+cat << __PREAMBLE_EOF
+/*
+ * Copyright (C) 2020 Intel Corporation. All rights reserved
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+/dts-v1/;
+
+/ {
+	description = "FIT image with U-Boot proper, ATF bl31, U-Boot DTB";
+	#address-cells = <1>;
+
+__PREAMBLE_EOF
+
+cat << __IMAGES_EOF
+	images {
+		uboot {
+			description = "U-Boot SoC64";
+			data = /incbin/("$BL33");
+			type = "standalone";
+			os = "U-Boot";
+			arch = "arm64";
+			compression = "none";
+			load = <0x00200000>;
+		};
+
+		atf {
+			description = "ARM Trusted Firmware";
+			data = /incbin/("$BL31");
+			type = "firmware";
+			os = "arm-trusted-firmware";
+			arch = "arm64";
+			compression = "none";
+			load = <0x00001000>;
+			entry = <0x00001000>;
+		};
+
+		fdt {
+			description = "U-Boot SoC64 flat device-tree";
+			data = /incbin/("$DT_NAME");
+			type = "flat_dt";
+			compression = "none";
+		};
+	};
+
+__IMAGES_EOF
+
+cat << __CONFIGS_EOF
+	configurations {
+		default = "conf";
+		conf {
+			description = "Intel SoC64 FPGA";
+			firmware = "atf";
+			loadables = "uboot";
+			fdt = "fdt";
+		};
+	};
+__CONFIGS_EOF
+
+cat << __END_EOF
+};
+__END_EOF
-- 
2.13.0

  parent reply	other threads:[~2020-10-01  9:16 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-01  9:15 [v2, 00/16] Enable ARM Trusted Firmware for U-Boot Siew Chin Lim
2020-10-01  9:15 ` [v2, 01/16] arm: socfpga: soc64: Remove CONFIG_OF_EMBED Siew Chin Lim
2020-10-01  9:16 ` Siew Chin Lim [this message]
2020-10-01  9:16 ` [v2, 03/16] arm: socfpga: Add function for checking description from FIT image Siew Chin Lim
2020-10-01  9:16 ` [v2, 04/16] arm: socfpga: soc64: Load FIT image with ATF support Siew Chin Lim
2020-10-01  9:16 ` [v2, 05/16] arm: socfpga: soc64: Override 'lowlevel_init' to support ATF Siew Chin Lim
2020-10-01  9:16 ` [v2, 06/16] arm: socfpga: Disable "spin-table" method for booting Linux Siew Chin Lim
2020-10-01  9:16 ` [v2, 07/16] arm: socfpga: soc64: Add SMC helper function for Intel SOCFPGA (64bits) Siew Chin Lim
2020-10-01  9:16 ` [v2, 08/16] arm: socfpga: soc64: Define SMC function identifiers for PSCI SiP services Siew Chin Lim
2020-10-01  9:16 ` [v2, 09/16] mmc: dwmmc: socfpga: Add ATF support for MMC driver Siew Chin Lim
2020-10-01  9:16 ` [v2, 10/16] net: designware: socfpga: Add ATF support for MAC driver Siew Chin Lim
2020-10-01  9:16 ` [v2, 11/16] arm: socfpga: soc64: Add ATF support for Reset Manager driver Siew Chin Lim
2020-10-01  9:16 ` [v2, 12/16] arm: socfpga: soc64: Add ATF support for FPGA reconfig driver Siew Chin Lim
2020-10-01  9:16 ` [v2, 13/16] arm: socfpga: mailbox: Add 'SYSTEM_RESET' PSCI support to mbox_reset_cold() Siew Chin Lim
2020-10-01  9:16 ` [v2, 14/16] arm: socfpga: soc64: SSBL shall not setup stack on OCRAM Siew Chin Lim
2020-10-01  9:16 ` [v2, 15/16] arm: socfpga: soc64: Skip handoff data access in SSBL Siew Chin Lim
2020-10-01  9:16 ` [v2, 16/16] configs: socfpga: Add defconfig for Agilex and Stratix 10 with ATF support Siew Chin Lim
2020-10-01 16:52 ` [v2, 00/16] Enable ARM Trusted Firmware for U-Boot Michal Simek
2020-10-01 18:37   ` Simon Glass
2020-10-01 18:48     ` Marek Vasut
2020-10-01 20:33       ` Tom Rini
2020-10-01 21:46       ` Simon Glass

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20201001091614.184612-3-elly.siew.chin.lim@intel.com \
    --to=elly.siew.chin.lim@intel.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.