All of lore.kernel.org
 help / color / mirror / Atom feed
From: Simon Glass <sjg@chromium.org>
To: u-boot@lists.denx.de
Subject: [PATCH v3 1/9] image: android: Add functions for handling dtb field
Date: Wed, 8 Jan 2020 10:39:36 -0700	[thread overview]
Message-ID: <CAPnjgZ0iTHP=t19Gx4rBF8DtBpO04kEOffn6ZrDwK0YEp87rww@mail.gmail.com> (raw)
In-Reply-To: <20191224195455.31836-2-semen.protsenko@linaro.org>

Hi Sam,

On Tue, 24 Dec 2019 at 12:55, Sam Protsenko <semen.protsenko@linaro.org> wrote:
>
> Android Boot Image v2 adds "DTB" payload (and corresponding field in the
> image header). Provide functions for its handling:
>
>   - android_image_get_dtb_by_index(): Obtain DTB blob from "DTB" part of
>     boot image, by blob's index
>   - android_image_print_dtb_contents(): Iterate over all DTB blobs in
>     "DTB" part of boot image and print those blobs info
>
> "DTB" payload might be in one of the following formats:
>   1. concatenated DTB blobs
>   2. Android DTBO format
>
> The latter requires "android-image-dt.c" functionality, so this commit
> selects that file for building for CONFIG_ANDROID_BOOT_IMAGE option.
>
> Right now this new functionality isn't used, but it can be used further.
> As it's required to apply some specific dtbo blob(s) from "dtbo"
> partition, we can't automate this process inside of "bootm" command. But
> we can do next:
>   - come up with some new command like "abootimg" to extract dtb blob
>     from boot image (using functions from this patch)
>   - extract desired dtbo blobs from "dtbo" partition using "adtimg"
>     command
>   - merge dtbo blobs into dtb blob using "fdt apply" command
>   - pass resulting dtb blob into bootm command in order to boot the
>     Android kernel with Android ramdisk from boot image
>
> Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
> ---
>  common/Makefile        |   2 +-
>  common/image-android.c | 214 +++++++++++++++++++++++++++++++++++++++++
>  include/image.h        |   5 +
>  3 files changed, 220 insertions(+), 1 deletion(-)
>
> diff --git a/common/Makefile b/common/Makefile
> index 029cc0f2ce..1ffddc2f94 100644
> --- a/common/Makefile
> +++ b/common/Makefile
> @@ -108,7 +108,7 @@ endif
>
>  obj-y += image.o
>  obj-$(CONFIG_ANDROID_AB) += android_ab.o
> -obj-$(CONFIG_ANDROID_BOOT_IMAGE) += image-android.o
> +obj-$(CONFIG_ANDROID_BOOT_IMAGE) += image-android.o image-android-dt.o
>  obj-$(CONFIG_$(SPL_TPL_)OF_LIBFDT) += image-fdt.o
>  obj-$(CONFIG_$(SPL_TPL_)FIT) += image-fit.o
>  obj-$(CONFIG_$(SPL_)MULTI_DTB_FIT) += boot_fit.o common_fit.o
> diff --git a/common/image-android.c b/common/image-android.c
> index 3564a64221..1ccad6c556 100644
> --- a/common/image-android.c
> +++ b/common/image-android.c
> @@ -6,10 +6,12 @@
>  #include <common.h>
>  #include <env.h>
>  #include <image.h>
> +#include <image-android-dt.h>

Prefer underscores if possible.

>  #include <android_image.h>
>  #include <malloc.h>
>  #include <errno.h>
>  #include <asm/unaligned.h>
> +#include <mapmem.h>
>
>  #define ANDROID_IMAGE_DEFAULT_KERNEL_ADDR      0x10008000
>
> @@ -195,6 +197,121 @@ int android_image_get_second(const struct andr_img_hdr *hdr,
>         return 0;
>  }
>
> +/**
> + * android_image_get_dtb_img_addr() - Get the address of DTB area in boot image.
> + * @hdr_addr: Boot image header address
> + * @addr: Will contain the address of DTB area in boot image
> + *
> + * Return: true on success or false on fail.
> + */
> +static bool android_image_get_dtb_img_addr(ulong hdr_addr, ulong *addr)
> +{
> +       const struct andr_img_hdr *hdr;
> +       ulong dtb_img_addr;
> +       bool res = true;

Perhaps this isn't universal but at least with DM we use 'ret' for
return code instead of 'res' for result.

> +
> +       hdr = map_sysmem(hdr_addr, sizeof(*hdr));
> +       if (android_image_check_header(hdr)) {
> +               printf("Error: Boot Image header is incorrect\n");
> +               res = false;

Could this function return an error code?

> +               goto exit;
> +       }
> +
> +       if (hdr->header_version < 2) {
> +               printf("Error: header_version must be >= 2 to get dtb\n");
> +               res = false;
> +               goto exit;
> +       }
> +
> +       if (hdr->dtb_size == 0) {

if (!hdr...)

> +               printf("Error: dtb_size is 0\n");
> +               res = false;
> +               goto exit;
> +       }
> +
> +       /* Calculate the address of DTB area in boot image */
> +       dtb_img_addr = hdr_addr;
> +       dtb_img_addr += hdr->page_size;
> +       dtb_img_addr += ALIGN(hdr->kernel_size, hdr->page_size);
> +       dtb_img_addr += ALIGN(hdr->ramdisk_size, hdr->page_size);
> +       dtb_img_addr += ALIGN(hdr->second_size, hdr->page_size);
> +       dtb_img_addr += ALIGN(hdr->recovery_dtbo_size, hdr->page_size);
> +
> +       *addr = dtb_img_addr;
> +
> +exit:
> +       unmap_sysmem(hdr);
> +       return res;
> +}
> +
> +/**
> + * android_image_get_dtb_by_index() - Get address and size of blob in DTB area.
> + * @hdr_addr: Boot image header address
> + * @index: Index of desired DTB in DTB area (starting from 0)
> + * @addr: If not NULL, will contain address to specified DTB
> + * @size: If not NULL, will contain size of specified DTB
> + *
> + * Get the address and size of DTB blob by its index in DTB area of Android
> + * Boot Image in RAM.
> + *
> + * Return: true on success or false on error.

Let's return an error code.

> + */
> +bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
> +                                   u32 *size)

Suggest adding a 'p' suffix to return values, i.e. addrp and sizep.

> +{
> +       const struct andr_img_hdr *hdr;
> +       bool res;
> +       ulong dtb_img_addr;     /* address of DTB part in boot image */
> +       u32 dtb_img_size;       /* size of DTB payload in boot image */
> +       ulong dtb_addr;         /* address of DTB blob with specified index  */
> +       u32 i;                  /* index iterator */

Why use u32 for these variables? Natural types should be used where
possible, i.e. uint or int.

> +
> +       res = android_image_get_dtb_img_addr(hdr_addr, &dtb_img_addr);
> +       if (!res)
> +               return false;
> +
> +       /* Check if DTB area of boot image is in DTBO format */
> +       if (android_dt_check_header(dtb_img_addr)) {
> +               return android_dt_get_fdt_by_index(dtb_img_addr, index, addr,
> +                                                  size);
> +       }
> +
> +       /* Find out the address of DTB with specified index in concat blobs */
> +       hdr = map_sysmem(hdr_addr, sizeof(*hdr));
> +       dtb_img_size = hdr->dtb_size;
> +       unmap_sysmem(hdr);
> +       i = 0;
> +       dtb_addr = dtb_img_addr;
> +       while (dtb_addr < dtb_img_addr + dtb_img_size) {
> +               const struct fdt_header *fdt;
> +               u32 dtb_size;
> +
> +               fdt = map_sysmem(dtb_addr, sizeof(*fdt));
> +               if (fdt_check_header(fdt) != 0) {
> +                       unmap_sysmem(fdt);
> +                       printf("Error: Invalid FDT header for index %u\n", i);
> +                       return false;
> +               }
> +
> +               dtb_size = fdt_totalsize(fdt);
> +               unmap_sysmem(fdt);
> +
> +               if (i == index) {
> +                       if (size)
> +                               *size = dtb_size;
> +                       if (addr)
> +                               *addr = dtb_addr;
> +                       return true;
> +               }
> +
> +               dtb_addr += dtb_size;
> +               ++i;are these are these are these
> +       }
> +
> +       printf("Error: Index is out of bounds (%u/%u)\n", index, i);
> +       return false;
> +}
> +
>  #if !defined(CONFIG_SPL_BUILD)
>  /**
>   * android_print_contents - prints out the contents of the Android format image
> @@ -246,4 +363,101 @@ void android_print_contents(const struct andr_img_hdr *hdr)
>                 printf("%sdtb addr:             %llx\n", p, hdr->dtb_addr);
>         }
>  }
> +

Function comment...what is index?

> +static bool android_image_print_dtb_info(const struct fdt_header *fdt,
> +                                        u32 index)
> +{
> +       int root_node_off;
> +       u32 fdt_size;
> +       const char *model;
> +       const char *compatible;
> +
> +       root_node_off = fdt_path_offset(fdt, "/");
> +       if (root_node_off < 0) {
> +               printf("Error: Root node not found\n");
> +               return false;
> +       }
> +
> +       fdt_size = fdt_totalsize(fdt);
> +       compatible = fdt_getprop(fdt, root_node_off, "compatible",
> +                                NULL);
> +       model = fdt_getprop(fdt, root_node_off, "model", NULL);
> +
> +       printf(" - DTB #%u:\n", index);
> +       printf("           (DTB)size = %d\n", fdt_size);
> +       printf("          (DTB)model = %s\n", model ? model : "(unknown)");
> +       printf("     (DTB)compatible = %s\n",
> +              compatible ? compatible : "(unknown)");
> +
> +       return true;
> +}
> +
> +/**
> + * android_image_print_dtb_contents() - Print info for DTB blobs in DTB area.
> + * @hdr_addr: Boot image header address
> + *
> + * DTB payload in Android Boot Image v2+ can be in one of following formats:
> + *   1. Concatenated DTB blobs
> + *   2. Android DTBO format (see CONFIG_CMD_ADTIMG for details)
> + *
> + * This function does next:
> + *   1. Prints out the format used in DTB area
> + *   2. Iterates over all DTB blobs in DTB area and prints out the info for
> + *      each blob.
> + *
> + * Return: true on success or false on error.

Again I think an error code is better.

> + */
> +bool android_image_print_dtb_contents(ulong hdr_addr)
> +{
> +       const struct andr_img_hdr *hdr;
> +       bool res;
> +       ulong dtb_img_addr;     /* address of DTB part in boot image */
> +       u32 dtb_img_size;       /* size of DTB payload in boot image */
> +       ulong dtb_addr;         /* address of DTB blob with specified index  */
> +       u32 i;                  /* index iterator */
> +
> +       res = android_image_get_dtb_img_addr(hdr_addr, &dtb_img_addr);
> +       if (!res)
> +               return false;
> +
> +       /* Check if DTB area of boot image is in DTBO format */
> +       if (android_dt_check_header(dtb_img_addr)) {
> +               printf("## DTB area contents (DTBO format):\n");
> +               android_dt_print_contents(dtb_img_addr);
> +               return true;
> +       }
> +
> +       printf("## DTB area contents (concat format):\n");
> +
> +       /* Iterate over concatenated DTB blobs */
> +       hdr = map_sysmem(hdr_addr, sizeof(*hdr));
> +       dtb_img_size = hdr->dtb_size;
> +       unmap_sysmem(hdr);
> +       i = 0;
> +       dtb_addr = dtb_img_addr;
> +       while (dtb_addr < dtb_img_addr + dtb_img_size) {
> +               const struct fdt_header *fdt;
> +               u32 dtb_size;
> +
> +               fdt = map_sysmem(dtb_addr, sizeof(*fdt));
> +               if (fdt_check_header(fdt) != 0) {
> +                       unmap_sysmem(fdt);
> +                       printf("Error: Invalid FDT header for index %u\n", i);
> +                       return false;
> +               }
> +
> +               res = android_image_print_dtb_info(fdt, i);
> +               if (!res) {
> +                       unmap_sysmem(fdt);
> +                       return false;
> +               }
> +
> +               dtb_size = fdt_totalsize(fdt);
> +               unmap_sysmem(fdt);
> +               dtb_addr += dtb_size;
> +               ++i;
> +       }
> +
> +       return true;
> +}
>  #endif
> diff --git a/include/image.h b/include/image.h
> index f4d2aaf53e..8e81166be4 100644
> --- a/include/image.h
> +++ b/include/image.h
> @@ -1333,10 +1333,15 @@ int android_image_get_ramdisk(const struct andr_img_hdr *hdr,
>                               ulong *rd_data, ulong *rd_len);
>  int android_image_get_second(const struct andr_img_hdr *hdr,
>                               ulong *second_data, ulong *second_len);
> +bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
> +                                   u32 *size);

Function comment

>  ulong android_image_get_end(const struct andr_img_hdr *hdr);
>  ulong android_image_get_kload(const struct andr_img_hdr *hdr);
>  ulong android_image_get_kcomp(const struct andr_img_hdr *hdr);
>  void android_print_contents(const struct andr_img_hdr *hdr);
> +#if !defined(CONFIG_SPL_BUILD)
> +bool android_image_print_dtb_contents(ulong hdr_addr);
> +#endif
>
>  #endif /* CONFIG_ANDROID_BOOT_IMAGE */
>
> --
> 2.24.0
>

Regards,
SImon

  reply	other threads:[~2020-01-08 17:39 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-24 19:54 [PATCH v3 0/9] am57xx: Implement Android 10 boot flow Sam Protsenko
2019-12-24 19:54 ` [PATCH v3 1/9] image: android: Add functions for handling dtb field Sam Protsenko
2020-01-08 17:39   ` Simon Glass [this message]
2020-01-10 15:33     ` Sam Protsenko
2020-03-14 20:35       ` Simon Glass
2019-12-24 19:54 ` [PATCH v3 2/9] image: android: Add routine to get dtbo params Sam Protsenko
2020-01-08 17:39   ` Simon Glass
2019-12-24 19:54 ` [PATCH v3 3/9] cmd: abootimg: Add abootimg command Sam Protsenko
2020-01-05 20:38   ` Eugeniu Rosca
2020-01-08 17:39   ` Simon Glass
2019-12-24 19:54 ` [PATCH v3 4/9] doc: android: Add documentation for Android Boot Image Sam Protsenko
2020-01-09 19:34   ` Simon Glass
2019-12-24 19:54 ` [PATCH v3 5/9] test/py: android: Add test for abootimg Sam Protsenko
2020-01-09 19:34   ` Simon Glass
2019-12-24 19:54 ` [PATCH v3 6/9] configs: am57xx_evm: Enable Android commands Sam Protsenko
2020-01-09 19:34   ` Simon Glass
2019-12-24 19:54 ` [PATCH v3 7/9] env: ti: boot: Respect slot_suffix in AVB commands Sam Protsenko
2019-12-24 19:54 ` [PATCH v3 8/9] env: ti: boot: Boot Android with dynamic partitions Sam Protsenko
2019-12-24 19:54 ` [PATCH v3 9/9] arm: ti: boot: Use correct dtb and dtbo on Android boot Sam Protsenko
2020-01-22 17:51 ` [PATCH v3 0/9] am57xx: Implement Android 10 boot flow Bajjuri, Praneeth
2020-01-22 17:52   ` Bajjuri, Praneeth

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='CAPnjgZ0iTHP=t19Gx4rBF8DtBpO04kEOffn6ZrDwK0YEp87rww@mail.gmail.com' \
    --to=sjg@chromium.org \
    --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.