public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Lukasz Majewski <lukma@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [RFC 09/17] arm: imx: Add FIT SPL its
Date: Sat, 19 Jan 2019 00:53:56 +0100	[thread overview]
Message-ID: <20190119005356.5fca47b1@jawa> (raw)
In-Reply-To: <1547647383-9439-10-git-send-email-abel.vesa@nxp.com>

Hi Abel,

> Add simple its in order to allow SPL to boot u-boot proper
> via FIT table.
> 

The mkimage has  [-f fit-image.its|-f auto|-F] -F option so you don't
need to specify *.its file

> Signed-off-by: Abel Vesa <abel.vesa@nxp.com>
> ---
>  arch/arm/mach-imx/mx6/fit_spl.its | 41
> +++++++++++++++++++++++++++++++++++++++ 1 file changed, 41
> insertions(+) create mode 100644 arch/arm/mach-imx/mx6/fit_spl.its
> 
> diff --git a/arch/arm/mach-imx/mx6/fit_spl.its
> b/arch/arm/mach-imx/mx6/fit_spl.its new file mode 100644
> index 0000000..bd5ba09
> --- /dev/null
> +++ b/arch/arm/mach-imx/mx6/fit_spl.its
> @@ -0,0 +1,41 @@
> +/*
> + * Copyright (C) 2018 NXP
> + *
> + * Simple U-boot fit source file containing U-Boot (with dtb
> appended)
> + */
> +
> +/dts-v1/;
> +
> +/ {
> +	description = "Image for u-boot proper (with dtb appended)";
> +	#address-cells = <1>;
> +
> +	images {
> +		#address-cells = <1>;
> +		#size-cells = <0>;
> +
> +		uboot at 1 {
> +			reg = <0>;
> +			description = "U-Boot";
> +			data
> = /incbin/("../../../../u-boot-dtb.bin");
> +			type = "standalone";
> +			os = "U-Boot";
> +			compression = "none";
> +			arch = "arm";
> +			load = <0x17800000>;
> +		};
> +	};
> +
> +	configurations {
> +		#address-cells = <1>;
> +		#size-cells = <0>;
> +
> +		default = "conf at 1";
> +
> +		conf at 1 {
> +			reg = <0>;
> +			description = "i.MX armv7";
> +			loadables = "uboot at 1";
> +		};
> +	};
> +};




Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-59 Fax: (+49)-8142-66989-80 Email: lukma at denx.de
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 488 bytes
Desc: OpenPGP digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190119/a8e3e1ba/attachment.sig>

  reply	other threads:[~2019-01-18 23:53 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-16 14:03 [U-Boot] [RFC 00/17] mx6sabre: Add DM and SPL FIT support Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 01/17] common: Break USB_STORAGE dependency between SPL and u-boot proper Abel Vesa
2019-01-16 18:41   ` Tom Rini
2019-01-16 14:03 ` [U-Boot] [RFC 02/17] usb: ehci-mx6: Make regulator DM_REGULATOR dependent Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 03/17] configs: imx6sabreauto: Add DM_MMC support Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 04/17] configs: imx6sabreauto: Add DM_USB support Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 05/17] mmc: fsl_esdhc: Fix DM_REGULATOR ifdefs for SPL builds Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 06/17] arm: imx: Add board_fit_config_name_match to support FIT in SPL Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 07/17] dts: imx: Add imx6q-sabreauto dts and imx6qdl-sabreauto dtsi files Abel Vesa
2019-01-16 22:08   ` Fabio Estevam
2019-01-16 14:03 ` [U-Boot] [RFC 08/17] dts: imx: Add imx6q-sabresd dts and imx6qdl-sabresd " Abel Vesa
2019-01-16 14:14   ` Fabio Estevam
2019-01-16 14:18     ` Abel Vesa
2019-01-16 14:42       ` Fabio Estevam
2019-01-18 23:54   ` Lukasz Majewski
2019-01-16 14:03 ` [U-Boot] [RFC 09/17] arm: imx: Add FIT SPL its Abel Vesa
2019-01-18 23:53   ` Lukasz Majewski [this message]
2019-01-16 14:03 ` [U-Boot] [RFC 10/17] configs: mx6sabreauto: Add SPL FIT and DM support Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 11/17] configs: mx6sabresd: " Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 12/17] mx6sabreauto: Add DM_GPIO support Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 13/17] mx6sabresd: " Abel Vesa
2019-01-16 14:51   ` Fabio Estevam
2019-01-16 14:03 ` [U-Boot] [RFC 14/17] configs: mx6sabreauto: Add DM_SPI_FLASH necessary configs Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 15/17] configs: mx6sabresd: " Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 16/17] board: mx6sabreauto: Remove the non-DM code Abel Vesa
2019-01-16 14:03 ` [U-Boot] [RFC 17/17] board: mx6sabresd: Remove " Abel Vesa

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=20190119005356.5fca47b1@jawa \
    --to=lukma@denx.de \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox