From: Stefano Babic <sbabic@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 23/26] spl: Add an option to load a FIT containing U-Boot
Date: Thu, 4 Feb 2016 16:00:21 +0100 [thread overview]
Message-ID: <56B36785.1090508@denx.de> (raw)
In-Reply-To: <1453999186-18747-24-git-send-email-sjg@chromium.org>
Hi Simon,
On 28/01/2016 17:39, Simon Glass wrote:
> This provides a way to load a FIT containing U-Boot and a selection of device
> tree files. The board can select the correct device tree by probing the
> hardware. Then U-Boot is started with the selected device tree.
>
> Signed-off-by: Simon Glass <sjg@chromium.org>
> ---
>
> Kconfig | 11 +++
> common/spl/Makefile | 1 +
> common/spl/spl_fit.c | 192 +++++++++++++++++++++++++++++++++++++++++++++++++++
> include/spl.h | 18 +++++
> 4 files changed, 222 insertions(+)
> create mode 100644 common/spl/spl_fit.c
>
> diff --git a/Kconfig b/Kconfig
> index 3ce5ba1..f32c6c7 100644
> --- a/Kconfig
> +++ b/Kconfig
> @@ -215,6 +215,17 @@ config SYS_TEXT_BASE
> help
> TODO: Move CONFIG_SYS_TEXT_BASE for all the architecture
>
> +config SPL_LOAD_FIT
> + bool "Enable SPL loading U-Boot as a FIT"
> + depends on FIT
> + help
> + Normally with the SPL framework a legacy image is generated as part
> + of the build. This contains U-Boot along with information as to
> + where it should be loaded. This option instead enables generation
> + of a FIT (Flat Image Tree) which provides more flexibility. In
> + particular it can handle selecting from multiple device tree
> + and passing the correct one to U-Boot.
> +
> config SYS_CLK_FREQ
> depends on ARC || ARCH_SUNXI
> int "CPU clock frequency"
> diff --git a/common/spl/Makefile b/common/spl/Makefile
> index 10a4589..2e0f695 100644
> --- a/common/spl/Makefile
> +++ b/common/spl/Makefile
> @@ -10,6 +10,7 @@
>
> ifdef CONFIG_SPL_BUILD
> obj-$(CONFIG_SPL_FRAMEWORK) += spl.o
> +obj-$(CONFIG_SPL_LOAD_FIT) += spl_fit.o
> obj-$(CONFIG_SPL_NOR_SUPPORT) += spl_nor.o
> obj-$(CONFIG_SPL_YMODEM_SUPPORT) += spl_ymodem.o
> obj-$(CONFIG_SPL_NAND_SUPPORT) += spl_nand.o
> diff --git a/common/spl/spl_fit.c b/common/spl/spl_fit.c
> new file mode 100644
> index 0000000..f225f64
> --- /dev/null
> +++ b/common/spl/spl_fit.c
> @@ -0,0 +1,192 @@
> +/*
> + * Copyright (C) 2016 Google, Inc
> + * Written by Simon Glass <sjg@chromium.org>
> + *
> + * SPDX-License-Identifier: GPL-2.0+
> + */
> +
> +#include <common.h>
> +#include <errno.h>
> +#include <spl.h>
> +
I would like to test your patchset, I am trying with a i.MX6 (I want to
build wandboard). It looks like that image.h is missing here.
common/spl/spl_fit.c: In function 'fdt_getprop_u32':
common/spl/spl_fit.c:20:2: warning: implicit declaration of function
'fdt_getprop' [-Wimplicit-function-declaration]
However, in image.h it looks like that IMAGE_USE_FIT is not correctly
set. I am looking why, I have just added these to wandboard_defconfig:
+CONFIG_FIT=y
+CONFIG_SPL_OF_LIBFDT=y
+CONFIG_SPL_LOAD_FIT=y
+CONFIG_OF_LIST="wandboard"
Best regards,
Stefano
> +static ulong fdt_getprop_u32(const void *fdt, int node, const char *prop)
> +{
> + const u32 *cell;
> + int len;
> +
> + cell = fdt_getprop(fdt, node, prop, &len);
> + if (len != sizeof(*cell))
> + return -1U;
> + return fdt32_to_cpu(*cell);
> +}
> +
> +static int spl_fit_select_fdt(const void *fdt, int images, int *fdt_offsetp)
> +{
> + const char *name, *fdt_name;
> + int conf, node, fdt_node;
> + int len;
> +
> + *fdt_offsetp = 0;
> + conf = fdt_path_offset(fdt, FIT_CONFS_PATH);
> + if (conf < 0) {
> + debug("%s: Cannot find /configurations node: %d\n", __func__,
> + conf);
> + return -EINVAL;
> + }
> + for (node = fdt_first_subnode(fdt, conf);
> + node >= 0;
> + node = fdt_next_subnode(fdt, node)) {
> + name = fdt_getprop(fdt, node, "description", &len);
> + if (!name)
> + return -EINVAL;
> + if (board_fit_config_name_match(name))
> + continue;
> +
> + debug("Selecting config '%s'", name);
> + fdt_name = fdt_getprop(fdt, node, FIT_FDT_PROP, &len);
> + if (!fdt_name) {
> + debug("%s: Cannot find fdt name property: %d\n",
> + __func__, len);
> + return -EINVAL;
> + }
> +
> + debug(", fdt '%s'\n", fdt_name);
> + fdt_node = fdt_subnode_offset(fdt, images, fdt_name);
> + if (fdt_node < 0) {
> + debug("%s: Cannot find fdt node '%s': %d\n",
> + __func__, fdt_name, fdt_node);
> + return -EINVAL;
> + }
> +
> + *fdt_offsetp = fdt_getprop_u32(fdt, fdt_node, "data-offset");
> + len = fdt_getprop_u32(fdt, fdt_node, "data-size");
> +#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
> + printf("FIT: Selected '%s'\n", name);
> +#endif
> +
> + return len;
> + }
> +
> +#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
> + printf("No matching DT out of these options:\n");
> + for (node = fdt_first_subnode(fdt, conf);
> + node >= 0;
> + node = fdt_next_subnode(fdt, node)) {
> + name = fdt_getprop(fdt, node, "name", &len);
> + printf(" %s\n", name);
> + }
> +#endif
> +
> + return -ENOENT;
> +}
> +
> +int spl_load_simple_fit(struct spl_load_info *info, ulong sector, void *fit)
> +{
> + int sectors;
> + ulong size, load;
> + unsigned long count;
> + int node, images;
> + void *load_ptr;
> + int fdt_offset, fdt_len;
> + int data_offset, data_size;
> + int base_offset;
> + int src_sector;
> + void *dst;
> +
> + /*
> + * Figure out where the external images start. This is the base for the
> + * data-offset properties in each image.
> + */
> + size = fdt_totalsize(fit);
> + size = (size + 3) & ~3;
> + base_offset = (size + 3) & ~3;
> +
> + /*
> + * So far we only have one block of data from the FIT. Read the entire
> + * thing, including that first block, placing it so it finishes before
> + * where we will load the image.
> + *
> + * Note that we will load the image such that its first byte will be
> + * at the load address. Since that byte may be part-way through a
> + * block, we may load the image up to one block before the load
> + * address. So take account of that here by subtracting an addition
> + * block length from the FIT start position.
> + *
> + * In fact the FIT has its own load address, but we assume it cannot
> + * be before CONFIG_SYS_TEXT_BASE.
> + */
> + fit = (void *)(CONFIG_SYS_TEXT_BASE - size - info->bl_len);
> + sectors = (size + info->bl_len - 1) / info->bl_len;
> + count = info->read(info, sector, sectors, fit);
> + debug("fit read sector %lx, sectors=%d, dst=%p, count=%lu\n",
> + sector, sectors, fit, count);
> + if (count == 0)
> + return -EIO;
> +
> + /* find the firmware image to load */
> + images = fdt_path_offset(fit, FIT_IMAGES_PATH);
> + if (images < 0) {
> + debug("%s: Cannot find /images node: %d\n", __func__, images);
> + return -1;
> + }
> + node = fdt_first_subnode(fit, images);
> + if (node < 0) {
> + debug("%s: Cannot find first image node: %d\n", __func__, node);
> + return -1;
> + }
> +
> + /* Get its information and set up the spl_image structure */
> + data_offset = fdt_getprop_u32(fit, node, "data-offset");
> + data_size = fdt_getprop_u32(fit, node, "data-size");
> + load = fdt_getprop_u32(fit, node, "load");
> + debug("data_offset=%x, data_size=%x\n", data_offset, data_size);
> + spl_image.load_addr = load;
> + spl_image.entry_point = load;
> + spl_image.os = IH_OS_U_BOOT;
> +
> + /*
> + * Work out where to place the image. We read it so that the first
> + * byte will be at 'load'. This may mean we need to load it starting
> + * before then, since we can only read whole blocks.
> + */
> + sectors = (data_size + info->bl_len - 1) / info->bl_len;
> + data_offset += base_offset;
> + load_ptr = (void *)load;
> + debug("U-Boot size %x, data %p\n", data_size, load_ptr);
> + dst = load_ptr - (data_offset % info->bl_len);
> +
> + /* Read the image */
> + src_sector = sector + data_offset / info->bl_len;
> + debug("image: data_offset=%x, dst=%p, src_sector=%x, sectors=%x\n",
> + data_offset, dst, src_sector, sectors);
> + count = info->read(info, src_sector, sectors, dst);
> + if (count != sectors)
> + return -EIO;
> +
> + /* Figure out which device tree the board wants to use */
> + fdt_len = spl_fit_select_fdt(fit, images, &fdt_offset);
> + if (fdt_len < 0)
> + return fdt_len;
> +
> + /*
> + * Read the device tree and place it after the image. There may be
> + * some extra data before it since we can only read entire blocks.
> + */
> + dst = load_ptr + data_size;
> + fdt_offset += base_offset;
> + count = info->read(info, sector + fdt_offset / info->bl_len, sectors,
> + dst);
> + debug("fit read %x sectors to %x, dst %p, data_offset %x\n",
> + sectors, spl_image.load_addr, dst, fdt_offset);
> + if (count != sectors)
> + return -EIO;
> +
> + /*
> + * Copy the device tree so that it starts immediately after the image.
> + * After this we will have the U-Boot image and its device tree ready
> + * for us to start.
> + */
> + memcpy(dst, dst + fdt_offset % info->bl_len, fdt_len);
> +
> + return 0;
> +}
> diff --git a/include/spl.h b/include/spl.h
> index 92cdc04..16f2f6a 100644
> --- a/include/spl.h
> +++ b/include/spl.h
> @@ -29,6 +29,24 @@ struct spl_image_info {
> u32 flags;
> };
>
> +/*
> + * Information required to load data from a device
> + *
> + * @dev: Pointer to the device, e.g. struct mmc *
> + * @priv: Private data for the device
> + * @bl_len: Block length for reading in bytes
> + * @read: Function to call to read from the device
> + */
> +struct spl_load_info {
> + void *dev;
> + void *priv;
> + int bl_len;
> + ulong (*read)(struct spl_load_info *load, ulong sector, ulong count,
> + void *buf);
> +};
> +
> +int spl_load_simple_fit(struct spl_load_info *info, ulong sector, void *fdt);
> +
> #define SPL_COPY_PAYLOAD_ONLY 1
>
> extern struct spl_image_info spl_image;
>
--
=====================================================================
DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================
next prev parent reply other threads:[~2016-02-04 15:00 UTC|newest]
Thread overview: 54+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-28 16:39 [PATCH 00/26] spl: Support loading a FIT image containing U-Boot Simon Glass
2016-01-28 16:39 ` [U-Boot] " Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 01/26] mkimage: Move argument processing into its own function Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 02/26] mkimage: Convert to use getopt() Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 03/26] mkimage: Sort the option processing code by option Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 04/26] mkimage: Move usage() up to the top Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 05/26] mkimage: Show an error message when usage() is called Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 06/26] mkimage: Make 'params' static Simon Glass
[not found] ` <1453999186-18747-1-git-send-email-sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2016-01-28 16:39 ` [PATCH 07/26] libfdt: Add a function to write a property placeholder Simon Glass
2016-01-28 16:39 ` [U-Boot] " Simon Glass
[not found] ` <1453999186-18747-8-git-send-email-sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2016-01-29 5:29 ` David Gibson
2016-01-29 5:29 ` [U-Boot] " David Gibson
[not found] ` <20160129052917.GM23043-1s0os16eZneny3qCrzbmXA@public.gmane.org>
2016-01-29 18:23 ` Simon Glass
2016-01-29 18:23 ` [U-Boot] " Simon Glass
[not found] ` <CAPnjgZ3jOaYuZOeafhnH0dq52uRa8iXjq=kC_8qtnB7Knq9GCA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-01-31 9:55 ` David Gibson
2016-01-31 9:55 ` [U-Boot] " David Gibson
2016-02-17 11:00 ` [U-Boot] [PATCH 00/26] spl: Support loading a FIT image containing U-Boot Belisko Marek
2016-02-17 11:00 ` Belisko Marek
[not found] ` <CAAfyv34var5T==6z35BQnzWa7O1J=0OHHAp3QMaMkfUei7PAYA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-02-19 20:55 ` Simon Glass
2016-02-19 20:55 ` Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 08/26] Correct defconfig ordering Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 09/26] Move CONFIG_OF_LIBFDT to Kconfig Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 10/26] Kconfig: Move CONFIG_FIT and CONFIG_OF_*_SETUP " Simon Glass
2016-01-29 5:52 ` Heiko Schocher
2016-01-28 16:39 ` [U-Boot] [PATCH 11/26] fdt: Adjust DEFAULT_DEVICE_TREE to device on OF_CONTROL Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 12/26] fdt: Allow libfdt to be used in SPL Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 13/26] sunxi: Display the board model on start-up Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 14/26] tools: Include fdt_sw.o in libfdt for mkimage Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 15/26] mkimage: Allow a FIT to include an image of any type Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 16/26] tools: Add a function to obtain the size of a file Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 17/26] image: Add functions to obtain short names Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 18/26] mkimage: Support automatic creating of a FIT without a .its Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 19/26] mkimage: Support adding device tree files to a FIT Simon Glass
2016-02-11 16:36 ` Tom Rini
2016-02-12 15:54 ` Simon Glass
2016-02-12 16:03 ` Tom Rini
2016-01-28 16:39 ` [U-Boot] [PATCH 20/26] mkimage: Support placing data outside the FIT Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 21/26] mkimage: Bring data into the FIT before processing Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 22/26] spl: Add a way for boards to select which device tree to load Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 23/26] spl: Add an option to load a FIT containing U-Boot Simon Glass
2016-02-04 15:00 ` Stefano Babic [this message]
2016-02-22 4:46 ` Simon Glass
2016-02-22 6:45 ` Stefano Babic
2016-01-28 16:39 ` [U-Boot] [PATCH 24/26] spl: Add a way to specify a list of device trees to include Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 25/26] spl: Support loading a FIT from MMC Simon Glass
2016-01-28 16:39 ` [U-Boot] [PATCH 26/26] RFC: sunxi: Enable SPL FIT support Simon Glass
2016-02-16 11:34 ` [PATCH 00/26] spl: Support loading a FIT image containing U-Boot Masahiro Yamada
2016-02-16 11:34 ` [U-Boot] " Masahiro Yamada
[not found] ` <CAK7LNARoFApxsiEw0Qtqw_s4dbN9TWLjrJ8c0zt69gjnnrdeWg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-02-16 12:17 ` Tom Rini
2016-02-16 12:17 ` Tom Rini
2016-02-16 12:30 ` Masahiro Yamada
2016-02-16 12:30 ` Masahiro Yamada
[not found] ` <CAK7LNAS01SnJMefoZVSsqP7jS9bvkRFYZwK5uLoEG1+q_0uzzQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-02-16 13:33 ` Tom Rini
2016-02-16 13:33 ` Tom Rini
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=56B36785.1090508@denx.de \
--to=sbabic@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 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.