All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/19] Support android boot image v3/v4
@ 2023-02-05 23:50 Safae Ouajih
  2023-02-05 23:50 ` [PATCH v3 01/19] android: boot: rename andr_img_hdr -> andr_boot_img_hdr_v0 Safae Ouajih
                   ` (20 more replies)
  0 siblings, 21 replies; 44+ messages in thread
From: Safae Ouajih @ 2023-02-05 23:50 UTC (permalink / raw)
  To: sjg; +Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

Hello everyone,

* This is based on Roman Stratiienko's work to support boot image header version 3 and 4.

* This supports the new boot image headers v3, v4 and bootconfig feature.
https://source.android.com/docs/core/architecture/bootloader/boot-image-header
https://source.android.com/docs/core/architecture/bootloader/implementing-bootconfig

- Tested on Amlogic Khadas vim3l, a reference board for Android Open Source Project
  https://www.khadas.com/vim3l

  And on AM625 Texas Instruments board with 5.10 linux kernel

Main changes :
- New partition : vendor boot, with a specific vendor ramdisk
- DTB is stored in the vendor boot partition
- The generic ramdisk is placed after the vendor ramdisk
- Bootconfig feature support


Here is a link to see the related android boot flow changes on KHADAS vim3l as an example:
https://gitlab.baylibre.com/baylibre/amlogic/atv/u-boot/-/commits/souajih/BootImagev4/

Changes in v3:
- Ddd documentation for v3,v4 boot image header
- Add mkbootimg tool to Dockerfile
- Add full comments for functions/structs in include/image.h and include/android_image.h
- Add map_sysmem() to make the boot work on Sandbox
- Rename andr_vendor_img_hdr -> andr_vnd_boot_img_hdr

Changes in v2:
- Rework parts of the code to fix the abootimg test: test_abootimg
- Update test_abootimg to support boot image header v4
- Remove LIBXBC library, import and adapt the functions to support bootconfig feature
- Rename the used structures :
	andr_boot_img_hdr_v0_v1_v2 -> andr_boot_img_hdr_v0
       	andr_boot_img_hdr_v3_v4 -> andr_boot_img_hdr_v3
	andr_vendor_boot_img_hdr_v3_v4 -> andr_vendor_img_hdr

Safae Ouajih (19):
  android: boot: rename andr_img_hdr -> andr_boot_img_hdr_v0
  android: boot: support vendor boot image in abootimg
  android: boot: replace android_image_check_header
  android: boot: add boot image header v3 and v4 structures
  android: boot: kcomp: support andr_image_data
  android: boot: move to andr_image_data structure
  android: boot: content print is not supported for v3,v4 header version
  android: boot: boot image header v3,v4 do not support recovery DTBO
  android: boot: add vendor boot image to prepare for v3,v4 support
  android: boot: update android_image_get_data to support v3,v4
  android: boot: ramdisk: support vendor ramdisk
  android: boot: support extra command line
  android: boot: update android_image_get_dtb_img_addr to support v3,v4
  drivers: fastboot: zImage flashing is not supported for v3,v4
  android: boot: support boot image header version 3 and 4
  android: boot: support bootconfig
  doc: android: add documentation for v3,v4 boot image header
  test/py: android: extend abootimg test
  Dockerfile: add mkbootimg tool

 boot/bootm.c                                |  37 +-
 boot/image-android.c                        | 461 ++++++++++++++++----
 boot/image-board.c                          |  19 +-
 boot/image-fdt.c                            |   5 +-
 cmd/abootimg.c                              |  75 +++-
 doc/android/boot-image.rst                  |  13 +-
 drivers/fastboot/fb_mmc.c                   |  19 +-
 include/android_image.h                     | 228 +++++++++-
 include/image.h                             | 173 +++++++-
 test/py/tests/test_android/test_abootimg.py | 136 +++++-
 tools/docker/Dockerfile                     |   4 +
 11 files changed, 1009 insertions(+), 161 deletions(-)

--
2.34.1


^ permalink raw reply	[flat|nested] 44+ messages in thread

* [PATCH v3 01/19] android: boot: rename andr_img_hdr -> andr_boot_img_hdr_v0
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
@ 2023-02-05 23:50 ` Safae Ouajih
  2023-02-05 23:50 ` [PATCH v3 02/19] android: boot: support vendor boot image in abootimg Safae Ouajih
                   ` (19 subsequent siblings)
  20 siblings, 0 replies; 44+ messages in thread
From: Safae Ouajih @ 2023-02-05 23:50 UTC (permalink / raw)
  To: sjg; +Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

Android introduced boot header version 3 or 4.
The header structure change with version 3 and 4 to support
the new updates such as:
- Introducing Vendor boot image: with a vendor ramdisk
- Bootconfig feature (v4)

Change andr_img_hdr struct name to maintain support for version v0,
v1 and v2 while introducing version 3 and 4.

Signed-off-by: Safae Ouajih <souajih@baylibre.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
---
 boot/image-android.c      |  37 ++++++++-----
 boot/image-fdt.c          |   2 +-
 cmd/abootimg.c            |   4 +-
 drivers/fastboot/fb_mmc.c |   8 +--
 include/android_image.h   |   4 +-
 include/image.h           | 107 ++++++++++++++++++++++++++++++++++----
 6 files changed, 129 insertions(+), 33 deletions(-)

diff --git a/boot/image-android.c b/boot/image-android.c
index 2628db3741..b070974791 100644
--- a/boot/image-android.c
+++ b/boot/image-android.c
@@ -18,7 +18,7 @@
 
 static char andr_tmp_str[ANDR_BOOT_ARGS_SIZE + 1];
 
-static ulong android_image_get_kernel_addr(const struct andr_img_hdr *hdr)
+static ulong android_image_get_kernel_addr(const struct andr_boot_img_hdr_v0 *hdr)
 {
 	/*
 	 * All the Android tools that generate a boot.img use this
@@ -59,7 +59,7 @@ static ulong android_image_get_kernel_addr(const struct andr_img_hdr *hdr)
  * Return: Zero, os start address and length on success,
  *		otherwise on failure.
  */
-int android_image_get_kernel(const struct andr_img_hdr *hdr, int verify,
+int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
 			     ulong *os_data, ulong *os_len)
 {
 	u32 kernel_addr = android_image_get_kernel_addr(hdr);
@@ -122,12 +122,21 @@ int android_image_get_kernel(const struct andr_img_hdr *hdr, int verify,
 	return 0;
 }
 
-int android_image_check_header(const struct andr_img_hdr *hdr)
+/**
+ * android_image_check_header() - Check the magic of boot image
+ *
+ * This checks the header of Android boot image and verifies the
+ * magic is "ANDROID!"
+ *
+ * @hdr: Pointer to boot image
+ * Return: 0 if the magic is correct, non-zero if there is a magic mismatch
+ */
+int android_image_check_header(const struct andr_boot_img_hdr_v0 *hdr)
 {
 	return memcmp(ANDR_BOOT_MAGIC, hdr->magic, ANDR_BOOT_MAGIC_SIZE);
 }
 
-ulong android_image_get_end(const struct andr_img_hdr *hdr)
+ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr)
 {
 	ulong end;
 
@@ -150,12 +159,12 @@ ulong android_image_get_end(const struct andr_img_hdr *hdr)
 	return end;
 }
 
-ulong android_image_get_kload(const struct andr_img_hdr *hdr)
+ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr)
 {
 	return android_image_get_kernel_addr(hdr);
 }
 
-ulong android_image_get_kcomp(const struct andr_img_hdr *hdr)
+ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr)
 {
 	const void *p = (void *)((uintptr_t)hdr + hdr->page_size);
 
@@ -167,7 +176,7 @@ ulong android_image_get_kcomp(const struct andr_img_hdr *hdr)
 		return image_decomp_type(p, sizeof(u32));
 }
 
-int android_image_get_ramdisk(const struct andr_img_hdr *hdr,
+int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
 			      ulong *rd_data, ulong *rd_len)
 {
 	if (!hdr->ramdisk_size) {
@@ -186,8 +195,8 @@ int android_image_get_ramdisk(const struct andr_img_hdr *hdr,
 	return 0;
 }
 
-int android_image_get_second(const struct andr_img_hdr *hdr,
-			      ulong *second_data, ulong *second_len)
+int android_image_get_second(const struct andr_boot_img_hdr_v0 *hdr,
+			     ulong *second_data, ulong *second_len)
 {
 	if (!hdr->second_size) {
 		*second_data = *second_len = 0;
@@ -226,7 +235,7 @@ int android_image_get_second(const struct andr_img_hdr *hdr,
  */
 bool android_image_get_dtbo(ulong hdr_addr, ulong *addr, u32 *size)
 {
-	const struct andr_img_hdr *hdr;
+	const struct andr_boot_img_hdr_v0 *hdr;
 	ulong dtbo_img_addr;
 	bool ret = true;
 
@@ -275,7 +284,7 @@ exit:
  */
 static bool android_image_get_dtb_img_addr(ulong hdr_addr, ulong *addr)
 {
-	const struct andr_img_hdr *hdr;
+	const struct andr_boot_img_hdr_v0 *hdr;
 	ulong dtb_img_addr;
 	bool ret = true;
 
@@ -328,7 +337,7 @@ exit:
 bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
 				    u32 *size)
 {
-	const struct andr_img_hdr *hdr;
+	const struct andr_boot_img_hdr_v0 *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 */
@@ -393,7 +402,7 @@ bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
  * returns:
  *     no returned results
  */
-void android_print_contents(const struct andr_img_hdr *hdr)
+void android_print_contents(const struct andr_boot_img_hdr_v0 *hdr)
 {
 	const char * const p = IMAGE_INDENT_STRING;
 	/* os_version = ver << 11 | lvl */
@@ -485,7 +494,7 @@ static bool android_image_print_dtb_info(const struct fdt_header *fdt,
  */
 bool android_image_print_dtb_contents(ulong hdr_addr)
 {
-	const struct andr_img_hdr *hdr;
+	const struct andr_boot_img_hdr_v0 *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 */
diff --git a/boot/image-fdt.c b/boot/image-fdt.c
index b830a0ab41..1181cb60f0 100644
--- a/boot/image-fdt.c
+++ b/boot/image-fdt.c
@@ -529,7 +529,7 @@ int boot_get_fdt(int flag, int argc, char *const argv[], uint8_t arch,
 		}
 #ifdef CONFIG_ANDROID_BOOT_IMAGE
 	} else if (genimg_get_format(buf) == IMAGE_FORMAT_ANDROID) {
-		struct andr_img_hdr *hdr = buf;
+		struct andr_boot_img_hdr_v0 *hdr = buf;
 		ulong		fdt_data, fdt_len;
 		u32			fdt_size, dtb_idx;
 		/*
diff --git a/cmd/abootimg.c b/cmd/abootimg.c
index f48a9dcb02..0262adb1e5 100644
--- a/cmd/abootimg.c
+++ b/cmd/abootimg.c
@@ -18,7 +18,7 @@ static ulong _abootimg_addr = -1;
 
 static int abootimg_get_ver(int argc, char *const argv[])
 {
-	const struct andr_img_hdr *hdr;
+	const struct andr_boot_img_hdr_v0 *hdr;
 	int res = CMD_RET_SUCCESS;
 
 	if (argc > 1)
@@ -65,7 +65,7 @@ static int abootimg_get_recovery_dtbo(int argc, char *const argv[])
 
 static int abootimg_get_dtb_load_addr(int argc, char *const argv[])
 {
-	const struct andr_img_hdr *hdr;
+	const struct andr_boot_img_hdr_v0 *hdr;
 	int res = CMD_RET_SUCCESS;
 
 	if (argc > 1)
diff --git a/drivers/fastboot/fb_mmc.c b/drivers/fastboot/fb_mmc.c
index 033c510bc0..6d0112fdf4 100644
--- a/drivers/fastboot/fb_mmc.c
+++ b/drivers/fastboot/fb_mmc.c
@@ -287,7 +287,7 @@ static void fb_mmc_boot_ops(struct blk_desc *dev_desc, void *buffer,
  */
 static lbaint_t fb_mmc_get_boot_header(struct blk_desc *dev_desc,
 				       struct disk_partition *info,
-				       struct andr_img_hdr *hdr,
+				       struct andr_boot_img_hdr_v0 *hdr,
 				       char *response)
 {
 	ulong sector_size;		/* boot partition sector size */
@@ -296,7 +296,7 @@ static lbaint_t fb_mmc_get_boot_header(struct blk_desc *dev_desc,
 
 	/* Calculate boot image sectors count */
 	sector_size = info->blksz;
-	hdr_sectors = DIV_ROUND_UP(sizeof(struct andr_img_hdr), sector_size);
+	hdr_sectors = DIV_ROUND_UP(sizeof(struct andr_boot_img_hdr_v0), sector_size);
 	if (hdr_sectors == 0) {
 		pr_err("invalid number of boot sectors: 0\n");
 		fastboot_fail("invalid number of boot sectors: 0", response);
@@ -338,7 +338,7 @@ static int fb_mmc_update_zimage(struct blk_desc *dev_desc,
 				char *response)
 {
 	uintptr_t hdr_addr;			/* boot image header address */
-	struct andr_img_hdr *hdr;		/* boot image header */
+	struct andr_boot_img_hdr_v0 *hdr;		/* boot image header */
 	lbaint_t hdr_sectors;			/* boot image header sectors */
 	u8 *ramdisk_buffer;
 	u32 ramdisk_sector_start;
@@ -361,7 +361,7 @@ static int fb_mmc_update_zimage(struct blk_desc *dev_desc,
 
 	/* Put boot image header in fastboot buffer after downloaded zImage */
 	hdr_addr = (uintptr_t)download_buffer + ALIGN(download_bytes, PAGE_SIZE);
-	hdr = (struct andr_img_hdr *)hdr_addr;
+	hdr = (struct andr_boot_img_hdr_v0 *)hdr_addr;
 
 	/* Read boot image header */
 	hdr_sectors = fb_mmc_get_boot_header(dev_desc, &info, hdr, response);
diff --git a/include/android_image.h b/include/android_image.h
index 54d25af068..2bdcab9122 100644
--- a/include/android_image.h
+++ b/include/android_image.h
@@ -20,9 +20,9 @@
 #define ANDR_BOOT_ARGS_SIZE 512
 #define ANDR_BOOT_EXTRA_ARGS_SIZE 1024
 
-/* The bootloader expects the structure of andr_img_hdr with header
+/* The bootloader expects the structure of andr_boot_img_hdr_v0 with header
  * version 0 to be as follows: */
-struct andr_img_hdr {
+struct andr_boot_img_hdr_v0 {
     /* Must be ANDR_BOOT_MAGIC. */
     char magic[ANDR_BOOT_MAGIC_SIZE];
 
diff --git a/include/image.h b/include/image.h
index 7717a4c13d..735484117d 100644
--- a/include/image.h
+++ b/include/image.h
@@ -1734,21 +1734,108 @@ int fit_image_cipher_get_algo(const void *fit, int noffset, char **algo);
 
 struct cipher_algo *image_get_cipher_algo(const char *full_name);
 
-struct andr_img_hdr;
-int android_image_check_header(const struct andr_img_hdr *hdr);
-int android_image_get_kernel(const struct andr_img_hdr *hdr, int verify,
+struct andr_boot_img_hdr_v0;
+
+/**
+ * android_image_check_header() - Check the magic of boot image
+ *
+ * This checks the header of Android boot image and verifies the
+ * magic is "ANDROID!"
+ *
+ * @hdr: Pointer to image header
+ * Return: 0 if the magic is correct, non-zero if there is a magic mismatch
+ */
+int android_image_check_header(const struct andr_boot_img_hdr_v0 *hdr);
+
+/**
+ * android_image_get_kernel() - Processes kernel part of Android boot images
+ *
+ * This function returns the os image's start address and length. Also,
+ * it appends the kernel command line to the bootargs env variable.
+ *
+ * @hdr:	Pointer to image header, which is at the start
+ *			of the image.
+ * @verify:	Checksum verification flag. Currently unimplemented.
+ * @os_data:	Pointer to a ulong variable, will hold os data start
+ *			address.
+ * @os_len:	Pointer to a ulong variable, will hold os data length.
+ * Return: Zero, os start address and length on success,
+ *		otherwise on failure.
+ */
+int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
 			     ulong *os_data, ulong *os_len);
-int android_image_get_ramdisk(const struct andr_img_hdr *hdr,
+
+/**
+ * android_image_get_ramdisk() - Extracts the ramdisk load address and its size
+ *
+ * This extracts the load address of the ramdisk and its size
+ *
+ * @hdr:	Pointer to image header
+ * @rd_data:	Pointer to a ulong variable, will hold ramdisk address
+ * @rd_len:	Pointer to a ulong variable, will hold ramdisk length
+ * Return: 0 if succeeded, -1 if ramdisk size is 0
+ */
+int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
 			      ulong *rd_data, ulong *rd_len);
-int android_image_get_second(const struct andr_img_hdr *hdr,
-			      ulong *second_data, ulong *second_len);
+
+/**
+ * android_image_get_second() - Extracts the secondary bootloader address
+ * and its size
+ *
+ * This extracts the address of the secondary bootloader and its size
+ *
+ * @hdr:	 Pointer to image header
+ * @second_data: Pointer to a ulong variable, will hold secondary bootloader address
+ * @second_len : Pointer to a ulong variable, will hold secondary bootloader length
+ * Return: 0 if succeeded, -1 if secondary bootloader size is 0
+ */
+int android_image_get_second(const struct andr_boot_img_hdr_v0 *hdr,
+			     ulong *second_data, ulong *second_len);
 bool android_image_get_dtbo(ulong hdr_addr, ulong *addr, u32 *size);
 bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
 				    u32 *size);
-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);
+
+/**
+ * android_image_get_end() - Get the end of Android boot image
+ *
+ * This returns the end address of Android boot image address
+ *
+ * @hdr: Pointer to image header
+ * Return: The end address of Android boot image
+ */
+ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr);
+
+/**
+ * android_image_get_kload() - Get the kernel load address
+ *
+ * This returns the kernel load address. The load address is extracted
+ * from the boot image header or the "kernel_addr_r" environment variable
+ *
+ * @hdr: Pointer to image header
+ * Return: The kernel load address
+ */
+ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr);
+
+/**
+ * android_image_get_kcomp() - Get kernel compression type
+ *
+ * This gets the kernel compression type from the boot image header
+ *
+ * @hdr: Pointer to image header
+ * Return: Kernel compression type
+ */
+ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr);
+
+/**
+ * android_print_contents() - Prints out the contents of the Android format image
+ *
+ * This formats a multi line Android image contents description.
+ * The routine prints out Android image properties
+ *
+ * @hdr: Pointer to the Android format image header
+ * Return: no returned results
+ */
+void android_print_contents(const struct andr_boot_img_hdr_v0 *hdr);
 bool android_image_print_dtb_contents(ulong hdr_addr);
 
 /**
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [PATCH v3 02/19] android: boot: support vendor boot image in abootimg
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
  2023-02-05 23:50 ` [PATCH v3 01/19] android: boot: rename andr_img_hdr -> andr_boot_img_hdr_v0 Safae Ouajih
@ 2023-02-05 23:50 ` Safae Ouajih
  2023-02-05 23:50 ` [PATCH v3 03/19] android: boot: replace android_image_check_header Safae Ouajih
                   ` (18 subsequent siblings)
  20 siblings, 0 replies; 44+ messages in thread
From: Safae Ouajih @ 2023-02-05 23:50 UTC (permalink / raw)
  To: sjg; +Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

Vendor boot image is introduced in boot image header
version 3 and 4. Please check [1] for more details.

To prepare for boot image v3/v4 support, allow the abootimg command
to store the vendor_boot image address.

Full support for this new format will be done in a future patch.

Link:[1] https://source.android.com/docs/core/architecture/bootloader/partitions/vendor-boot-partitions

Signed-off-by: Safae Ouajih <souajih@baylibre.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
---
 cmd/abootimg.c | 18 +++++++++++++++---
 1 file changed, 15 insertions(+), 3 deletions(-)

diff --git a/cmd/abootimg.c b/cmd/abootimg.c
index 0262adb1e5..026c03f91c 100644
--- a/cmd/abootimg.c
+++ b/cmd/abootimg.c
@@ -15,6 +15,7 @@
 
 /* Please use abootimg_addr() macro to obtain the boot image address */
 static ulong _abootimg_addr = -1;
+static ulong _avendor_bootimg_addr = -1;
 
 static int abootimg_get_ver(int argc, char *const argv[])
 {
@@ -158,7 +159,7 @@ static int do_abootimg_addr(struct cmd_tbl *cmdtp, int flag, int argc,
 	char *endp;
 	ulong img_addr;
 
-	if (argc != 2)
+	if (argc < 2 || argc > 3)
 		return CMD_RET_USAGE;
 
 	img_addr = hextoul(argv[1], &endp);
@@ -168,6 +169,17 @@ static int do_abootimg_addr(struct cmd_tbl *cmdtp, int flag, int argc,
 	}
 
 	_abootimg_addr = img_addr;
+
+	if (argc == 3) {
+		img_addr = simple_strtoul(argv[2], &endp, 16);
+		if (*endp != '\0') {
+			printf("Error: Wrong vendor image address\n");
+			return CMD_RET_FAILURE;
+		}
+
+		_avendor_bootimg_addr = img_addr;
+	}
+
 	return CMD_RET_SUCCESS;
 }
 
@@ -211,7 +223,7 @@ static int do_abootimg_dump(struct cmd_tbl *cmdtp, int flag, int argc,
 }
 
 static struct cmd_tbl cmd_abootimg_sub[] = {
-	U_BOOT_CMD_MKENT(addr, 2, 1, do_abootimg_addr, "", ""),
+	U_BOOT_CMD_MKENT(addr, 3, 1, do_abootimg_addr, "", ""),
 	U_BOOT_CMD_MKENT(dump, 2, 1, do_abootimg_dump, "", ""),
 	U_BOOT_CMD_MKENT(get, 5, 1, do_abootimg_get, "", ""),
 };
@@ -239,7 +251,7 @@ static int do_abootimg(struct cmd_tbl *cmdtp, int flag, int argc,
 U_BOOT_CMD(
 	abootimg, CONFIG_SYS_MAXARGS, 0, do_abootimg,
 	"manipulate Android Boot Image",
-	"addr <addr>\n"
+	"addr <boot_img_addr> [<vendor_boot_img_addr>]>\n"
 	"    - set the address in RAM where boot image is located\n"
 	"      ($loadaddr is used by default)\n"
 	"abootimg dump dtb\n"
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [PATCH v3 03/19] android: boot: replace android_image_check_header
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
  2023-02-05 23:50 ` [PATCH v3 01/19] android: boot: rename andr_img_hdr -> andr_boot_img_hdr_v0 Safae Ouajih
  2023-02-05 23:50 ` [PATCH v3 02/19] android: boot: support vendor boot image in abootimg Safae Ouajih
@ 2023-02-05 23:50 ` Safae Ouajih
  2023-02-05 23:50 ` [PATCH v3 04/19] android: boot: add boot image header v3 and v4 structures Safae Ouajih
                   ` (17 subsequent siblings)
  20 siblings, 0 replies; 44+ messages in thread
From: Safae Ouajih @ 2023-02-05 23:50 UTC (permalink / raw)
  To: sjg; +Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

With the new vendor boot image introduced in versions 3 and 4
of boot image header, the header check must be done for both boot
image and vendor boot image. Thus, replace android_image_check_header()
by is_android_boot_image_header() to only refer to boot image header check.

Signed-off-by: Safae Ouajih <souajih@baylibre.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
---
 boot/image-android.c      | 17 ++++-------------
 boot/image-board.c        |  2 +-
 cmd/abootimg.c            |  4 ++--
 drivers/fastboot/fb_mmc.c |  3 +--
 include/image.h           | 22 +++++++++++-----------
 5 files changed, 19 insertions(+), 29 deletions(-)

diff --git a/boot/image-android.c b/boot/image-android.c
index b070974791..ac7cb479c1 100644
--- a/boot/image-android.c
+++ b/boot/image-android.c
@@ -122,18 +122,9 @@ int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
 	return 0;
 }
 
-/**
- * android_image_check_header() - Check the magic of boot image
- *
- * This checks the header of Android boot image and verifies the
- * magic is "ANDROID!"
- *
- * @hdr: Pointer to boot image
- * Return: 0 if the magic is correct, non-zero if there is a magic mismatch
- */
-int android_image_check_header(const struct andr_boot_img_hdr_v0 *hdr)
+bool is_android_boot_image_header(const struct andr_boot_img_hdr_v0 *hdr)
 {
-	return memcmp(ANDR_BOOT_MAGIC, hdr->magic, ANDR_BOOT_MAGIC_SIZE);
+	return !memcmp(ANDR_BOOT_MAGIC, hdr, ANDR_BOOT_MAGIC_SIZE);
 }
 
 ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr)
@@ -240,7 +231,7 @@ bool android_image_get_dtbo(ulong hdr_addr, ulong *addr, u32 *size)
 	bool ret = true;
 
 	hdr = map_sysmem(hdr_addr, sizeof(*hdr));
-	if (android_image_check_header(hdr)) {
+	if (!is_android_boot_image_header(hdr)) {
 		printf("Error: Boot Image header is incorrect\n");
 		ret = false;
 		goto exit;
@@ -289,7 +280,7 @@ static bool android_image_get_dtb_img_addr(ulong hdr_addr, ulong *addr)
 	bool ret = true;
 
 	hdr = map_sysmem(hdr_addr, sizeof(*hdr));
-	if (android_image_check_header(hdr)) {
+	if (!is_android_boot_image_header(hdr)) {
 		printf("Error: Boot Image header is incorrect\n");
 		ret = false;
 		goto exit;
diff --git a/boot/image-board.c b/boot/image-board.c
index e5d71a3d54..9295b6d0c8 100644
--- a/boot/image-board.c
+++ b/boot/image-board.c
@@ -284,7 +284,7 @@ int genimg_get_format(const void *img_addr)
 			return IMAGE_FORMAT_FIT;
 	}
 	if (IS_ENABLED(CONFIG_ANDROID_BOOT_IMAGE) &&
-	    !android_image_check_header(img_addr))
+	    is_android_boot_image_header(img_addr))
 		return IMAGE_FORMAT_ANDROID;
 
 	return IMAGE_FORMAT_INVALID;
diff --git a/cmd/abootimg.c b/cmd/abootimg.c
index 026c03f91c..b5cfb141ef 100644
--- a/cmd/abootimg.c
+++ b/cmd/abootimg.c
@@ -26,7 +26,7 @@ static int abootimg_get_ver(int argc, char *const argv[])
 		return CMD_RET_USAGE;
 
 	hdr = map_sysmem(abootimg_addr(), sizeof(*hdr));
-	if (android_image_check_header(hdr)) {
+	if (!is_android_boot_image_header(hdr)) {
 		printf("Error: Boot Image header is incorrect\n");
 		res = CMD_RET_FAILURE;
 		goto exit;
@@ -73,7 +73,7 @@ static int abootimg_get_dtb_load_addr(int argc, char *const argv[])
 		return CMD_RET_USAGE;
 
 	hdr = map_sysmem(abootimg_addr(), sizeof(*hdr));
-	if (android_image_check_header(hdr)) {
+	if (!is_android_boot_image_header(hdr)) {
 		printf("Error: Boot Image header is incorrect\n");
 		res = CMD_RET_FAILURE;
 		goto exit;
diff --git a/drivers/fastboot/fb_mmc.c b/drivers/fastboot/fb_mmc.c
index 6d0112fdf4..086e5f7843 100644
--- a/drivers/fastboot/fb_mmc.c
+++ b/drivers/fastboot/fb_mmc.c
@@ -313,8 +313,7 @@ static lbaint_t fb_mmc_get_boot_header(struct blk_desc *dev_desc,
 	}
 
 	/* Check boot header magic string */
-	res = android_image_check_header(hdr);
-	if (res != 0) {
+	if (!is_android_boot_image_header(hdr)) {
 		pr_err("bad boot image magic\n");
 		fastboot_fail("boot partition not initialized", response);
 		return 0;
diff --git a/include/image.h b/include/image.h
index 735484117d..6e67cf4817 100644
--- a/include/image.h
+++ b/include/image.h
@@ -1736,17 +1736,6 @@ struct cipher_algo *image_get_cipher_algo(const char *full_name);
 
 struct andr_boot_img_hdr_v0;
 
-/**
- * android_image_check_header() - Check the magic of boot image
- *
- * This checks the header of Android boot image and verifies the
- * magic is "ANDROID!"
- *
- * @hdr: Pointer to image header
- * Return: 0 if the magic is correct, non-zero if there is a magic mismatch
- */
-int android_image_check_header(const struct andr_boot_img_hdr_v0 *hdr);
-
 /**
  * android_image_get_kernel() - Processes kernel part of Android boot images
  *
@@ -1838,6 +1827,17 @@ ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr);
 void android_print_contents(const struct andr_boot_img_hdr_v0 *hdr);
 bool android_image_print_dtb_contents(ulong hdr_addr);
 
+/**
+ * is_android_boot_image_header() - Check the magic of boot image
+ *
+ * This checks the header of Android boot image and verifies the
+ * magic is "ANDROID!"
+ *
+ * @hdr: Pointer to boot image
+ * Return: non-zero if the magic is correct, zero otherwise
+ */
+bool is_android_boot_image_header(const struct andr_boot_img_hdr_v0 *hdr);
+
 /**
  * board_fit_config_name_match() - Check for a matching board name
  *
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [PATCH v3 04/19] android: boot: add boot image header v3 and v4 structures
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
                   ` (2 preceding siblings ...)
  2023-02-05 23:50 ` [PATCH v3 03/19] android: boot: replace android_image_check_header Safae Ouajih
@ 2023-02-05 23:50 ` Safae Ouajih
  2023-02-05 23:50 ` [PATCH v3 05/19] android: boot: kcomp: support andr_image_data Safae Ouajih
                   ` (16 subsequent siblings)
  20 siblings, 0 replies; 44+ messages in thread
From: Safae Ouajih @ 2023-02-05 23:50 UTC (permalink / raw)
  To: sjg; +Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

Add support for v3/v4 boot image format by adding
the following structures:

- andr_boot_img_hdr_v3 : describes boot image header
- andr_vnd_boot_img_hdr : describes vendor boot image header

These definitions have been copied over from the AOSP documentation at
[1] and [2]

Boot arg sizes are taken from [3]:
commit: 35fb6262bc3f (ANDROID: Support for vendor boot)

This also adds documentation for boot image header v3/v4 structure
that was imported from [4], file: include/bootimg/bootimg.h
commit: 8d0922bfb932 (Adding GKI signature in boot.img v4)

Link:[1] https://source.android.com/docs/core/architecture/bootloader/boot-image-header
Link:[2] https://source.android.com/docs/core/architecture/bootloader/partitions/vendor-boot-partitions#vendor-boot-header
Link:[3] https://android.googlesource.com/platform/external/u-boot
Link:[4] https://android.googlesource.com/platform/system/tools/mkbootimg

Signed-off-by: Safae Ouajih <souajih@baylibre.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
---
 include/android_image.h | 183 +++++++++++++++++++++++++++++++++++++++-
 1 file changed, 182 insertions(+), 1 deletion(-)

diff --git a/include/android_image.h b/include/android_image.h
index 2bdcab9122..f054363001 100644
--- a/include/android_image.h
+++ b/include/android_image.h
@@ -3,7 +3,7 @@
  * This is from the Android Project,
  * Repository: https://android.googlesource.com/platform/system/tools/mkbootimg
  * File: include/bootimg/bootimg.h
- * Commit: e55998a0f2b61b685d5eb4a486ca3a0c680b1a2f
+ * Commit: cce5b1923e3cd2fcb765b512610bdc5c42bc501d
  *
  * Copyright (C) 2007 The Android Open Source Project
  */
@@ -14,11 +14,58 @@
 #include <linux/compiler.h>
 #include <linux/types.h>
 
+#define ANDR_GKI_PAGE_SIZE 4096
 #define ANDR_BOOT_MAGIC "ANDROID!"
 #define ANDR_BOOT_MAGIC_SIZE 8
 #define ANDR_BOOT_NAME_SIZE 16
 #define ANDR_BOOT_ARGS_SIZE 512
 #define ANDR_BOOT_EXTRA_ARGS_SIZE 1024
+#define VENDOR_BOOT_MAGIC "VNDRBOOT"
+#define ANDR_VENDOR_BOOT_MAGIC_SIZE 8
+#define ANDR_VENDOR_BOOT_ARGS_SIZE 2048
+#define ANDR_VENDOR_BOOT_NAME_SIZE 16
+
+struct andr_boot_img_hdr_v3 {
+	u8 magic[ANDR_BOOT_MAGIC_SIZE];
+
+	u32 kernel_size;    /* size in bytes */
+	u32 ramdisk_size;   /* size in bytes */
+
+	u32 os_version;
+
+	u32 header_size;    /* size of boot image header in bytes */
+	u32 reserved[4];
+	u32 header_version; /* offset remains constant for version check */
+
+	u8 cmdline[ANDR_BOOT_ARGS_SIZE + ANDR_BOOT_EXTRA_ARGS_SIZE];
+	/* for boot image header v4 only */
+	u32 signature_size; /* size in bytes */
+};
+
+struct andr_vnd_boot_img_hdr {
+	u8 magic[ANDR_VENDOR_BOOT_MAGIC_SIZE];
+	u32 header_version;
+	u32 page_size;           /* flash page size we assume */
+
+	u32 kernel_addr;         /* physical load addr */
+	u32 ramdisk_addr;        /* physical load addr */
+
+	u32 vendor_ramdisk_size; /* size in bytes */
+
+	u8 cmdline[ANDR_VENDOR_BOOT_ARGS_SIZE];
+
+	u32 tags_addr;           /* physical addr for kernel tags */
+
+	u8 name[ANDR_VENDOR_BOOT_NAME_SIZE]; /* asciiz product name */
+	u32 header_size;         /* size of vendor boot image header in bytes */
+	u32 dtb_size;            /* size of dtb image */
+	u64 dtb_addr;            /* physical load address */
+	/* for boot image header v4 only */
+	u32 vendor_ramdisk_table_size; /* size in bytes for the vendor ramdisk table */
+	u32 vendor_ramdisk_table_entry_num; /* number of entries in the vendor ramdisk table */
+	u32 vendor_ramdisk_table_entry_size; /* size in bytes for a vendor ramdisk table entry */
+	u32 bootconfig_size; /* size in bytes for the bootconfig section */
+};
 
 /* The bootloader expects the structure of andr_boot_img_hdr_v0 with header
  * version 0 to be as follows: */
@@ -136,4 +183,138 @@ struct andr_boot_img_hdr_v0 {
  *    else: jump to kernel_addr
  */
 
+/* When the boot image header has a version of 3, the structure of the boot
+ * image is as follows:
+ *
+ * +---------------------+
+ * | boot header         | 4096 bytes
+ * +---------------------+
+ * | kernel              | m pages
+ * +---------------------+
+ * | ramdisk             | n pages
+ * +---------------------+
+ *
+ * m = (kernel_size + 4096 - 1) / 4096
+ * n = (ramdisk_size + 4096 - 1) / 4096
+ *
+ * Note that in version 3 of the boot image header, page size is fixed at 4096 bytes.
+ *
+ * The structure of the vendor boot image (introduced with version 3 and
+ * required to be present when a v3 boot image is used) is as follows:
+ *
+ * +---------------------+
+ * | vendor boot header  | o pages
+ * +---------------------+
+ * | vendor ramdisk      | p pages
+ * +---------------------+
+ * | dtb                 | q pages
+ * +---------------------+
+ * o = (2112 + page_size - 1) / page_size
+ * p = (vendor_ramdisk_size + page_size - 1) / page_size
+ * q = (dtb_size + page_size - 1) / page_size
+ *
+ * 0. all entities in the boot image are 4096-byte aligned in flash, all
+ *    entities in the vendor boot image are page_size (determined by the vendor
+ *    and specified in the vendor boot image header) aligned in flash
+ * 1. kernel, ramdisk, vendor ramdisk, and DTB are required (size != 0)
+ * 2. load the kernel and DTB at the specified physical address (kernel_addr,
+ *    dtb_addr)
+ * 3. load the vendor ramdisk at ramdisk_addr
+ * 4. load the generic ramdisk immediately following the vendor ramdisk in
+ *    memory
+ * 5. set up registers for kernel entry as required by your architecture
+ * 6. if the platform has a second stage bootloader jump to it (must be
+ *    contained outside boot and vendor boot partitions), otherwise
+ *    jump to kernel_addr
+ */
+
+/* When the boot image header has a version of 4, the structure of the boot
+ * image is as follows:
+ *
+ * +---------------------+
+ * | boot header         | 4096 bytes
+ * +---------------------+
+ * | kernel              | m pages
+ * +---------------------+
+ * | ramdisk             | n pages
+ * +---------------------+
+ * | boot signature      | g pages
+ * +---------------------+
+ *
+ * m = (kernel_size + 4096 - 1) / 4096
+ * n = (ramdisk_size + 4096 - 1) / 4096
+ * g = (signature_size + 4096 - 1) / 4096
+ *
+ * Note that in version 4 of the boot image header, page size is fixed at 4096
+ * bytes.
+ *
+ * The structure of the vendor boot image version 4, which is required to be
+ * present when a version 4 boot image is used, is as follows:
+ *
+ * +------------------------+
+ * | vendor boot header     | o pages
+ * +------------------------+
+ * | vendor ramdisk section | p pages
+ * +------------------------+
+ * | dtb                    | q pages
+ * +------------------------+
+ * | vendor ramdisk table   | r pages
+ * +------------------------+
+ * | bootconfig             | s pages
+ * +------------------------+
+ *
+ * o = (2128 + page_size - 1) / page_size
+ * p = (vendor_ramdisk_size + page_size - 1) / page_size
+ * q = (dtb_size + page_size - 1) / page_size
+ * r = (vendor_ramdisk_table_size + page_size - 1) / page_size
+ * s = (vendor_bootconfig_size + page_size - 1) / page_size
+ *
+ * Note that in version 4 of the vendor boot image, multiple vendor ramdisks can
+ * be included in the vendor boot image. The bootloader can select a subset of
+ * ramdisks to load at runtime. To help the bootloader select the ramdisks, each
+ * ramdisk is tagged with a type tag and a set of hardware identifiers
+ * describing the board, soc or platform that this ramdisk is intended for.
+ *
+ * The vendor ramdisk section is consist of multiple ramdisk images concatenated
+ * one after another, and vendor_ramdisk_size is the size of the section, which
+ * is the total size of all the ramdisks included in the vendor boot image.
+ *
+ * The vendor ramdisk table holds the size, offset, type, name and hardware
+ * identifiers of each ramdisk. The type field denotes the type of its content.
+ * The vendor ramdisk names are unique. The hardware identifiers are specified
+ * in the board_id field in each table entry. The board_id field is consist of a
+ * vector of unsigned integer words, and the encoding scheme is defined by the
+ * hardware vendor.
+ *
+ * For the different type of ramdisks, there are:
+ *    - VENDOR_RAMDISK_TYPE_NONE indicates the value is unspecified.
+ *    - VENDOR_RAMDISK_TYPE_PLATFORM ramdisks contain platform specific bits, so
+ *      the bootloader should always load these into memory.
+ *    - VENDOR_RAMDISK_TYPE_RECOVERY ramdisks contain recovery resources, so
+ *      the bootloader should load these when booting into recovery.
+ *    - VENDOR_RAMDISK_TYPE_DLKM ramdisks contain dynamic loadable kernel
+ *      modules.
+ *
+ * Version 4 of the vendor boot image also adds a bootconfig section to the end
+ * of the image. This section contains Boot Configuration parameters known at
+ * build time. The bootloader is responsible for placing this section directly
+ * after the generic ramdisk, followed by the bootconfig trailer, before
+ * entering the kernel.
+ *
+ * 0. all entities in the boot image are 4096-byte aligned in flash, all
+ *    entities in the vendor boot image are page_size (determined by the vendor
+ *    and specified in the vendor boot image header) aligned in flash
+ * 1. kernel, ramdisk, and DTB are required (size != 0)
+ * 2. load the kernel and DTB at the specified physical address (kernel_addr,
+ *    dtb_addr)
+ * 3. load the vendor ramdisks at ramdisk_addr
+ * 4. load the generic ramdisk immediately following the vendor ramdisk in
+ *    memory
+ * 5. load the bootconfig immediately following the generic ramdisk. Add
+ *    additional bootconfig parameters followed by the bootconfig trailer.
+ * 6. set up registers for kernel entry as required by your architecture
+ * 7. if the platform has a second stage bootloader jump to it (must be
+ *    contained outside boot and vendor boot partitions), otherwise
+ *    jump to kernel_addr
+ */
 #endif
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [PATCH v3 05/19] android: boot: kcomp: support andr_image_data
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
                   ` (3 preceding siblings ...)
  2023-02-05 23:50 ` [PATCH v3 04/19] android: boot: add boot image header v3 and v4 structures Safae Ouajih
@ 2023-02-05 23:50 ` Safae Ouajih
  2023-02-05 23:50 ` [PATCH v3 06/19] android: boot: move to andr_image_data structure Safae Ouajih
                   ` (15 subsequent siblings)
  20 siblings, 0 replies; 44+ messages in thread
From: Safae Ouajih @ 2023-02-05 23:50 UTC (permalink / raw)
  To: sjg; +Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

andr_image_data structure is used as a global representation of
boot image header structure. Introduce this new structure to
support all boot header versions : v0,v1.v2.v3.v4 and to support
v3 and v4 while maitaining support for v0,v1,v2.
The need of using andr_image_data comes from the change of header
structure in both version 3 and 4.

Rework android_image_get_kcomp()  to support this new struct.

Signed-off-by: Safae Ouajih <souajih@baylibre.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
---
 boot/image-android.c    | 75 ++++++++++++++++++++++++++++++++++++++++-
 include/android_image.h | 27 +++++++++++++++
 include/image.h         | 12 +++++++
 3 files changed, 113 insertions(+), 1 deletion(-)

diff --git a/boot/image-android.c b/boot/image-android.c
index ac7cb479c1..ea05c1814f 100644
--- a/boot/image-android.c
+++ b/boot/image-android.c
@@ -18,6 +18,74 @@
 
 static char andr_tmp_str[ANDR_BOOT_ARGS_SIZE + 1];
 
+static void android_boot_image_v0_v1_v2_parse_hdr(const struct andr_boot_img_hdr_v0 *hdr,
+						  struct andr_image_data *data)
+{
+	ulong end;
+
+	data->image_name = hdr->name;
+	data->kcmdline = hdr->cmdline;
+	data->kernel_addr = hdr->kernel_addr;
+	data->ramdisk_addr = hdr->ramdisk_addr;
+	data->header_version = hdr->header_version;
+	data->dtb_load_addr = hdr->dtb_addr;
+
+	end = (ulong)hdr;
+
+	/*
+	 * The header takes a full page, the remaining components are aligned
+	 * on page boundary
+	 */
+
+	end += hdr->page_size;
+
+	data->kernel_ptr = end;
+	data->kernel_size = hdr->kernel_size;
+	end += ALIGN(hdr->kernel_size, hdr->page_size);
+
+	data->ramdisk_ptr = end;
+	data->ramdisk_size = hdr->ramdisk_size;
+	end += ALIGN(hdr->ramdisk_size, hdr->page_size);
+
+	data->second_ptr = end;
+	data->second_size = hdr->second_size;
+	end += ALIGN(hdr->second_size, hdr->page_size);
+
+	if (hdr->header_version >= 1) {
+		data->recovery_dtbo_ptr = end;
+		data->recovery_dtbo_size = hdr->recovery_dtbo_size;
+		end += ALIGN(hdr->recovery_dtbo_size, hdr->page_size);
+	}
+
+	if (hdr->header_version >= 2) {
+		data->dtb_ptr = end;
+		data->dtb_size = hdr->dtb_size;
+		end += ALIGN(hdr->dtb_size, hdr->page_size);
+	}
+
+	data->boot_img_total_size = end - (ulong)hdr;
+}
+
+bool android_image_get_data(const void *boot_hdr, struct andr_image_data *data)
+{
+	if (!boot_hdr || !data) {
+		printf("boot_hdr or data params can't be NULL\n");
+		return false;
+	}
+
+	if (!is_android_boot_image_header(boot_hdr)) {
+		printf("Incorrect boot image header\n");
+		return false;
+	}
+
+	if (((struct andr_boot_img_hdr_v0 *)boot_hdr)->header_version > 2)
+		printf("Only boot image header version 2 and below are supported\n");
+	else
+		android_boot_image_v0_v1_v2_parse_hdr(boot_hdr, data);
+
+	return true;
+}
+
 static ulong android_image_get_kernel_addr(const struct andr_boot_img_hdr_v0 *hdr)
 {
 	/*
@@ -157,8 +225,13 @@ ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr)
 
 ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr)
 {
-	const void *p = (void *)((uintptr_t)hdr + hdr->page_size);
+	struct andr_image_data img_data;
+	const void *p;
+
+	if (!android_image_get_data(hdr, &img_data))
+		return -EINVAL;
 
+	p = (const void *)img_data.kernel_ptr;
 	if (image_get_magic((struct legacy_img_hdr *)p) == IH_MAGIC)
 		return image_get_comp((struct legacy_img_hdr *)p);
 	else if (get_unaligned_le32(p) == LZ4F_MAGIC)
diff --git a/include/android_image.h b/include/android_image.h
index f054363001..fb3a9d9858 100644
--- a/include/android_image.h
+++ b/include/android_image.h
@@ -317,4 +317,31 @@ struct andr_boot_img_hdr_v0 {
  *    contained outside boot and vendor boot partitions), otherwise
  *    jump to kernel_addr
  */
+
+/* Private struct */
+struct andr_image_data {
+	ulong kernel_ptr;  /* kernel address */
+	u32 kernel_size;  /* size in bytes */
+	u32 ramdisk_size;  /* size in bytes */
+	u32 boot_ramdisk_size;  /* size in bytes */
+	ulong second_ptr;  /* secondary bootloader address */
+	u32 second_size;  /* secondary bootloader size */
+	ulong dtb_ptr;  /* address of dtb image */
+	u32 dtb_size;  /* size of dtb image */
+	ulong recovery_dtbo_ptr;  /* size in bytes for recovery DTBO/ACPIO image */
+	u32 recovery_dtbo_size;  /* offset to recovery dtbo/acpio in boot image */
+
+	const char *kcmdline;  /* boot kernel cmdline */
+	const char *kcmdline_extra;  /* vendor-boot extra kernel cmdline */
+	const char *image_name;  /* asciiz product name */
+
+	u32 kernel_addr;  /* physical load addr */
+	ulong ramdisk_addr;  /* physical load addr */
+	ulong ramdisk_ptr;  /* ramdisk address */
+	ulong dtb_load_addr;  /* physical load address for DTB image */
+	ulong tags_addr;  /* physical addr for kernel tags */
+	u32 header_version;  /* version of the boot image header */
+	u32 boot_img_total_size;  /* boot image size */
+};
+
 #endif
diff --git a/include/image.h b/include/image.h
index 6e67cf4817..4bf6c98ced 100644
--- a/include/image.h
+++ b/include/image.h
@@ -1733,7 +1733,19 @@ struct cipher_algo {
 int fit_image_cipher_get_algo(const void *fit, int noffset, char **algo);
 
 struct cipher_algo *image_get_cipher_algo(const char *full_name);
+struct andr_image_data;
 
+/**
+ * android_image_get_data() - Parse Android boot image
+ *
+ * This is used to parse boot image header into andr_image_data
+ * generic structure.
+ *
+ * @boot_hdr: Pointer to boot image header
+ * @data: Pointer to generic boot format structure
+ * Return: true if succeeded, false otherwise
+ */
+bool android_image_get_data(const void *boot_hdr, struct andr_image_data *data);
 struct andr_boot_img_hdr_v0;
 
 /**
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [PATCH v3 06/19] android: boot: move to andr_image_data structure
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
                   ` (4 preceding siblings ...)
  2023-02-05 23:50 ` [PATCH v3 05/19] android: boot: kcomp: support andr_image_data Safae Ouajih
@ 2023-02-05 23:50 ` Safae Ouajih
  2023-02-07  4:02   ` Simon Glass
  2023-02-09 14:26   ` Mattijs Korpershoek
  2023-02-05 23:50 ` [PATCH v3 07/19] android: boot: content print is not supported for v3, v4 header version Safae Ouajih
                   ` (14 subsequent siblings)
  20 siblings, 2 replies; 44+ messages in thread
From: Safae Ouajih @ 2023-02-05 23:50 UTC (permalink / raw)
  To: sjg; +Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

Move from andr_boot_img_hdr_v0 to andr_image_data
structure to prepare for boot image header
version 3 and 4.

Signed-off-by: Safae Ouajih <souajih@baylibre.com>
---
 boot/image-android.c | 121 +++++++++++++++++++++++--------------------
 cmd/abootimg.c       |  31 +++++------
 2 files changed, 81 insertions(+), 71 deletions(-)

diff --git a/boot/image-android.c b/boot/image-android.c
index ea05c1814f..15a735e230 100644
--- a/boot/image-android.c
+++ b/boot/image-android.c
@@ -86,7 +86,7 @@ bool android_image_get_data(const void *boot_hdr, struct andr_image_data *data)
 	return true;
 }
 
-static ulong android_image_get_kernel_addr(const struct andr_boot_img_hdr_v0 *hdr)
+static ulong android_image_get_kernel_addr(struct andr_image_data *img_data)
 {
 	/*
 	 * All the Android tools that generate a boot.img use this
@@ -99,17 +99,17 @@ static ulong android_image_get_kernel_addr(const struct andr_boot_img_hdr_v0 *hd
 	 *
 	 * Otherwise, we will return the actual value set by the user.
 	 */
-	if (hdr->kernel_addr == ANDROID_IMAGE_DEFAULT_KERNEL_ADDR)
-		return (ulong)hdr + hdr->page_size;
+	if (img_data->kernel_addr  == ANDROID_IMAGE_DEFAULT_KERNEL_ADDR)
+		return img_data->kernel_ptr;
 
 	/*
 	 * abootimg creates images where all load addresses are 0
 	 * and we need to fix them.
 	 */
-	if (hdr->kernel_addr == 0 && hdr->ramdisk_addr == 0)
+	if (img_data->kernel_addr == 0 && img_data->ramdisk_addr == 0)
 		return env_get_ulong("kernel_addr_r", 16, 0);
 
-	return hdr->kernel_addr;
+	return img_data->kernel_addr;
 }
 
 /**
@@ -130,27 +130,33 @@ static ulong android_image_get_kernel_addr(const struct andr_boot_img_hdr_v0 *hd
 int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
 			     ulong *os_data, ulong *os_len)
 {
-	u32 kernel_addr = android_image_get_kernel_addr(hdr);
-	const struct legacy_img_hdr *ihdr = (const struct legacy_img_hdr *)
-		((uintptr_t)hdr + hdr->page_size);
+	struct andr_image_data img_data = {0};
+	u32 kernel_addr;
+	const struct legacy_img_hdr *ihdr;
+
+	if (!android_image_get_data(hdr, &img_data))
+		return -EINVAL;
+
+	kernel_addr = android_image_get_kernel_addr(&img_data);
+	ihdr = (const struct legacy_img_hdr *)img_data.kernel_ptr;
 
 	/*
 	 * Not all Android tools use the id field for signing the image with
 	 * sha1 (or anything) so we don't check it. It is not obvious that the
 	 * string is null terminated so we take care of this.
 	 */
-	strncpy(andr_tmp_str, hdr->name, ANDR_BOOT_NAME_SIZE);
+	strlcpy(andr_tmp_str, img_data.image_name, ANDR_BOOT_NAME_SIZE);
 	andr_tmp_str[ANDR_BOOT_NAME_SIZE] = '\0';
 	if (strlen(andr_tmp_str))
 		printf("Android's image name: %s\n", andr_tmp_str);
 
 	printf("Kernel load addr 0x%08x size %u KiB\n",
-	       kernel_addr, DIV_ROUND_UP(hdr->kernel_size, 1024));
+	       kernel_addr, DIV_ROUND_UP(img_data.kernel_size, 1024));
 
 	int len = 0;
-	if (*hdr->cmdline) {
-		printf("Kernel command line: %s\n", hdr->cmdline);
-		len += strlen(hdr->cmdline);
+	if (*img_data.kcmdline) {
+		printf("Kernel command line: %s\n", img_data.kcmdline);
+		len += strlen(img_data.kcmdline);
 	}
 
 	char *bootargs = env_get("bootargs");
@@ -168,8 +174,9 @@ int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
 		strcpy(newbootargs, bootargs);
 		strcat(newbootargs, " ");
 	}
-	if (*hdr->cmdline)
-		strcat(newbootargs, hdr->cmdline);
+
+	if (*img_data.kcmdline)
+		strcat(newbootargs, img_data.kcmdline);
 
 	env_set("bootargs", newbootargs);
 
@@ -177,15 +184,14 @@ int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
 		if (image_get_magic(ihdr) == IH_MAGIC) {
 			*os_data = image_get_data(ihdr);
 		} else {
-			*os_data = (ulong)hdr;
-			*os_data += hdr->page_size;
+			*os_data = img_data.kernel_ptr;
 		}
 	}
 	if (os_len) {
 		if (image_get_magic(ihdr) == IH_MAGIC)
 			*os_len = image_get_data_size(ihdr);
 		else
-			*os_len = hdr->kernel_size;
+			*os_len = img_data.kernel_size;
 	}
 	return 0;
 }
@@ -197,30 +203,25 @@ bool is_android_boot_image_header(const struct andr_boot_img_hdr_v0 *hdr)
 
 ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr)
 {
-	ulong end;
-
-	/*
-	 * The header takes a full page, the remaining components are aligned
-	 * on page boundary
-	 */
-	end = (ulong)hdr;
-	end += hdr->page_size;
-	end += ALIGN(hdr->kernel_size, hdr->page_size);
-	end += ALIGN(hdr->ramdisk_size, hdr->page_size);
-	end += ALIGN(hdr->second_size, hdr->page_size);
+	struct andr_image_data img_data;
 
-	if (hdr->header_version >= 1)
-		end += ALIGN(hdr->recovery_dtbo_size, hdr->page_size);
+	if (!android_image_get_data(hdr, &img_data))
+		return -EINVAL;
 
-	if (hdr->header_version >= 2)
-		end += ALIGN(hdr->dtb_size, hdr->page_size);
+	if (img_data.header_version > 2)
+		return 0;
 
-	return end;
+	return img_data.boot_img_total_size;
 }
 
 ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr)
 {
-	return android_image_get_kernel_addr(hdr);
+	struct andr_image_data img_data;
+
+	if (!android_image_get_data(hdr, &img_data))
+		return -EINVAL;
+
+	return android_image_get_kernel_addr(&img_data);
 }
 
 ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr)
@@ -243,38 +244,43 @@ ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr)
 int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
 			      ulong *rd_data, ulong *rd_len)
 {
-	if (!hdr->ramdisk_size) {
+	struct andr_image_data img_data = {0};
+
+	if (!android_image_get_data(hdr, &img_data))
+		return -EINVAL;
+
+	if (!img_data.ramdisk_size) {
 		*rd_data = *rd_len = 0;
 		return -1;
 	}
 
-	printf("RAM disk load addr 0x%08x size %u KiB\n",
-	       hdr->ramdisk_addr, DIV_ROUND_UP(hdr->ramdisk_size, 1024));
+	printf("RAM disk load addr 0x%08lx size %u KiB\n",
+	       img_data.ramdisk_ptr, DIV_ROUND_UP(img_data.ramdisk_size, 1024));
 
-	*rd_data = (unsigned long)hdr;
-	*rd_data += hdr->page_size;
-	*rd_data += ALIGN(hdr->kernel_size, hdr->page_size);
+	*rd_data = img_data.ramdisk_ptr;
 
-	*rd_len = hdr->ramdisk_size;
+	*rd_len = img_data.ramdisk_size;
 	return 0;
 }
 
 int android_image_get_second(const struct andr_boot_img_hdr_v0 *hdr,
 			     ulong *second_data, ulong *second_len)
 {
-	if (!hdr->second_size) {
+	struct andr_image_data img_data;
+
+	if (!android_image_get_data(hdr, &img_data))
+		return -EINVAL;
+
+	if (!img_data.second_size) {
 		*second_data = *second_len = 0;
 		return -1;
 	}
 
-	*second_data = (unsigned long)hdr;
-	*second_data += hdr->page_size;
-	*second_data += ALIGN(hdr->kernel_size, hdr->page_size);
-	*second_data += ALIGN(hdr->ramdisk_size, hdr->page_size);
+	*second_data = img_data.second_ptr;
 
 	printf("second address is 0x%lx\n",*second_data);
 
-	*second_len = hdr->second_size;
+	*second_len = img_data.second_size;
 	return 0;
 }
 
@@ -401,17 +407,22 @@ exit:
 bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
 				    u32 *size)
 {
+	struct andr_image_data img_data;
 	const struct andr_boot_img_hdr_v0 *hdr;
-	bool res;
+
+	hdr = map_sysmem(hdr_addr, sizeof(*hdr));
+	if (!android_image_get_data(hdr, &img_data)) {
+		unmap_sysmem(hdr);
+		return false;
+	}
+	unmap_sysmem(hdr);
+
 	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;
-
+	android_image_get_dtb_img_addr(hdr_addr, &dtb_img_addr);
 	/* 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,
@@ -419,9 +430,7 @@ bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
 	}
 
 	/* 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);
+	dtb_img_size = img_data.dtb_size;
 	i = 0;
 	dtb_addr = dtb_img_addr;
 	while (dtb_addr < dtb_img_addr + dtb_img_size) {
diff --git a/cmd/abootimg.c b/cmd/abootimg.c
index b5cfb141ef..f04a7c7c8e 100644
--- a/cmd/abootimg.c
+++ b/cmd/abootimg.c
@@ -66,33 +66,34 @@ static int abootimg_get_recovery_dtbo(int argc, char *const argv[])
 
 static int abootimg_get_dtb_load_addr(int argc, char *const argv[])
 {
-	const struct andr_boot_img_hdr_v0 *hdr;
-	int res = CMD_RET_SUCCESS;
-
 	if (argc > 1)
 		return CMD_RET_USAGE;
+	struct andr_image_data img_data = {0};
+	const struct andr_boot_img_hdr_v0 *hdr;
 
 	hdr = map_sysmem(abootimg_addr(), sizeof(*hdr));
-	if (!is_android_boot_image_header(hdr)) {
-		printf("Error: Boot Image header is incorrect\n");
-		res = CMD_RET_FAILURE;
-		goto exit;
+	if (!android_image_get_data(hdr, &img_data)) {
+		unmap_sysmem(hdr);
+		return CMD_RET_FAILURE;
 	}
+	unmap_sysmem(hdr);
 
-	if (hdr->header_version < 2) {
+	if (img_data.header_version < 2) {
 		printf("Error: header_version must be >= 2 for this\n");
-		res = CMD_RET_FAILURE;
-		goto exit;
+		return CMD_RET_FAILURE;
+	}
+
+	if (!img_data.dtb_load_addr) {
+		printf("Error: failed to read dtb_load_addr\n");
+		return CMD_RET_FAILURE;
 	}
 
 	if (argc == 0)
-		printf("%lx\n", (ulong)hdr->dtb_addr);
+		printf("%lx\n", (ulong)img_data.dtb_load_addr);
 	else
-		env_set_hex(argv[0], (ulong)hdr->dtb_addr);
+		env_set_hex(argv[0], (ulong)img_data.dtb_load_addr);
 
-exit:
-	unmap_sysmem(hdr);
-	return res;
+	return CMD_RET_SUCCESS;
 }
 
 static int abootimg_get_dtb_by_index(int argc, char *const argv[])
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [PATCH v3 07/19] android: boot: content print is not supported for v3, v4 header version
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
                   ` (5 preceding siblings ...)
  2023-02-05 23:50 ` [PATCH v3 06/19] android: boot: move to andr_image_data structure Safae Ouajih
@ 2023-02-05 23:50 ` Safae Ouajih
  2023-02-05 23:50 ` [PATCH v3 08/19] android: boot: boot image header v3, v4 do not support recovery DTBO Safae Ouajih
                   ` (13 subsequent siblings)
  20 siblings, 0 replies; 44+ messages in thread
From: Safae Ouajih @ 2023-02-05 23:50 UTC (permalink / raw)
  To: sjg; +Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

Content print is not supported for version 3 and 4 of boot image header.
Thus, only print that content when v2 is used.

Update android_print_contents() to print an error message
when trying to print boot image header version 3 or 4 content.

Signed-off-by: Safae Ouajih <souajih@baylibre.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
---
 boot/image-android.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/boot/image-android.c b/boot/image-android.c
index 15a735e230..31a5d30162 100644
--- a/boot/image-android.c
+++ b/boot/image-android.c
@@ -477,6 +477,10 @@ bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
  */
 void android_print_contents(const struct andr_boot_img_hdr_v0 *hdr)
 {
+	if (hdr->header_version >= 3) {
+		printf("Content print is not supported for boot image header version > 2");
+		return;
+	}
 	const char * const p = IMAGE_INDENT_STRING;
 	/* os_version = ver << 11 | lvl */
 	u32 os_ver = hdr->os_version >> 11;
@@ -509,7 +513,7 @@ void android_print_contents(const struct andr_boot_img_hdr_v0 *hdr)
 		       hdr->header_size);
 	}
 
-	if (hdr->header_version >= 2) {
+	if (hdr->header_version == 2) {
 		printf("%sdtb size:             %x\n", p, hdr->dtb_size);
 		printf("%sdtb addr:             %llx\n", p, hdr->dtb_addr);
 	}
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [PATCH v3 08/19] android: boot: boot image header v3, v4 do not support recovery DTBO
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
                   ` (6 preceding siblings ...)
  2023-02-05 23:50 ` [PATCH v3 07/19] android: boot: content print is not supported for v3, v4 header version Safae Ouajih
@ 2023-02-05 23:50 ` Safae Ouajih
  2023-02-05 23:50 ` [PATCH v3 09/19] android: boot: add vendor boot image to prepare for v3, v4 support Safae Ouajih
                   ` (12 subsequent siblings)
  20 siblings, 0 replies; 44+ messages in thread
From: Safae Ouajih @ 2023-02-05 23:50 UTC (permalink / raw)
  To: sjg; +Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

android_image_get_dtbo() is used to get recovery DTBO via abootimg cmd.
This is not supported in boot image header v3 and v4. Thus, print an
error message when v1,v2 header version are not used.

Signed-off-by: Safae Ouajih <souajih@baylibre.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
---
 boot/image-android.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/boot/image-android.c b/boot/image-android.c
index 31a5d30162..748fd212ae 100644
--- a/boot/image-android.c
+++ b/boot/image-android.c
@@ -316,8 +316,8 @@ bool android_image_get_dtbo(ulong hdr_addr, ulong *addr, u32 *size)
 		goto exit;
 	}
 
-	if (hdr->header_version < 1) {
-		printf("Error: header_version must be >= 1 to get dtbo\n");
+	if (hdr->header_version != 1 && hdr->header_version != 2) {
+		printf("Error: header version must be >= 1 and <= 2 to get dtbo\n");
 		ret = false;
 		goto exit;
 	}
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [PATCH v3 09/19] android: boot: add vendor boot image to prepare for v3, v4 support
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
                   ` (7 preceding siblings ...)
  2023-02-05 23:50 ` [PATCH v3 08/19] android: boot: boot image header v3, v4 do not support recovery DTBO Safae Ouajih
@ 2023-02-05 23:50 ` Safae Ouajih
  2023-02-07  4:02   ` [PATCH v3 09/19] android: boot: add vendor boot image to prepare for v3,v4 support Simon Glass
                     ` (2 more replies)
  2023-02-05 23:50 ` [PATCH v3 10/19] android: boot: update android_image_get_data to support v3, v4 Safae Ouajih
                   ` (11 subsequent siblings)
  20 siblings, 3 replies; 44+ messages in thread
From: Safae Ouajih @ 2023-02-05 23:50 UTC (permalink / raw)
  To: sjg; +Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

Introduce vendor boot image for version 3 and 4 of boot image header.
The vendor boot image will hold extra information about kernel, dtb
and ramdisk.

This is done to prepare for boot image version 3 and 4 support.

Signed-off-by: Safae Ouajih <souajih@baylibre.com>
---
 boot/bootm.c         |  8 +++----
 boot/image-android.c | 54 ++++++++++++++++++++++++++++----------------
 boot/image-board.c   |  3 +--
 boot/image-fdt.c     |  3 ++-
 cmd/abootimg.c       |  4 ++--
 include/image.h      | 48 ++++++++++++++++++++++++++++++---------
 6 files changed, 81 insertions(+), 39 deletions(-)

diff --git a/boot/bootm.c b/boot/bootm.c
index 15fce8ad95..a58e6f391e 100644
--- a/boot/bootm.c
+++ b/boot/bootm.c
@@ -182,11 +182,11 @@ static int bootm_find_os(struct cmd_tbl *cmdtp, int flag, int argc,
 #ifdef CONFIG_ANDROID_BOOT_IMAGE
 	case IMAGE_FORMAT_ANDROID:
 		images.os.type = IH_TYPE_KERNEL;
-		images.os.comp = android_image_get_kcomp(os_hdr);
+		images.os.comp = android_image_get_kcomp(os_hdr, NULL);
 		images.os.os = IH_OS_LINUX;
 
-		images.os.end = android_image_get_end(os_hdr);
-		images.os.load = android_image_get_kload(os_hdr);
+		images.os.end = android_image_get_end(os_hdr, NULL);
+		images.os.load = android_image_get_kload(os_hdr, NULL);
 		images.ep = images.os.load;
 		ep_found = true;
 		break;
@@ -965,7 +965,7 @@ static const void *boot_get_kernel(struct cmd_tbl *cmdtp, int flag, int argc,
 #ifdef CONFIG_ANDROID_BOOT_IMAGE
 	case IMAGE_FORMAT_ANDROID:
 		printf("## Booting Android Image at 0x%08lx ...\n", img_addr);
-		if (android_image_get_kernel(buf, images->verify,
+		if (android_image_get_kernel(buf, NULL, images->verify,
 					     os_data, os_len))
 			return NULL;
 		break;
diff --git a/boot/image-android.c b/boot/image-android.c
index 748fd212ae..f16eebff49 100644
--- a/boot/image-android.c
+++ b/boot/image-android.c
@@ -66,7 +66,8 @@ static void android_boot_image_v0_v1_v2_parse_hdr(const struct andr_boot_img_hdr
 	data->boot_img_total_size = end - (ulong)hdr;
 }
 
-bool android_image_get_data(const void *boot_hdr, struct andr_image_data *data)
+bool android_image_get_data(const void *boot_hdr, const void *vendor_boot_hdr,
+			    struct andr_image_data *data)
 {
 	if (!boot_hdr || !data) {
 		printf("boot_hdr or data params can't be NULL\n");
@@ -114,8 +115,10 @@ static ulong android_image_get_kernel_addr(struct andr_image_data *img_data)
 
 /**
  * android_image_get_kernel() - processes kernel part of Android boot images
- * @hdr:	Pointer to image header, which is at the start
+ * @hdr:	Pointer to boot image header, which is at the start
  *			of the image.
+ * @vendor_boot_img:	Pointer to vendor boot image header, which is at the
+ *				start of the image.
  * @verify:	Checksum verification flag. Currently unimplemented.
  * @os_data:	Pointer to a ulong variable, will hold os data start
  *			address.
@@ -127,14 +130,15 @@ static ulong android_image_get_kernel_addr(struct andr_image_data *img_data)
  * Return: Zero, os start address and length on success,
  *		otherwise on failure.
  */
-int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
+int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr,
+			     const void *vendor_boot_img, int verify,
 			     ulong *os_data, ulong *os_len)
 {
 	struct andr_image_data img_data = {0};
 	u32 kernel_addr;
 	const struct legacy_img_hdr *ihdr;
 
-	if (!android_image_get_data(hdr, &img_data))
+	if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
 		return -EINVAL;
 
 	kernel_addr = android_image_get_kernel_addr(&img_data);
@@ -201,11 +205,12 @@ bool is_android_boot_image_header(const struct andr_boot_img_hdr_v0 *hdr)
 	return !memcmp(ANDR_BOOT_MAGIC, hdr, ANDR_BOOT_MAGIC_SIZE);
 }
 
-ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr)
+ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr,
+			    const void *vendor_boot_img)
 {
 	struct andr_image_data img_data;
 
-	if (!android_image_get_data(hdr, &img_data))
+	if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
 		return -EINVAL;
 
 	if (img_data.header_version > 2)
@@ -214,22 +219,24 @@ ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr)
 	return img_data.boot_img_total_size;
 }
 
-ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr)
+ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr,
+			      const void *vendor_boot_img)
 {
 	struct andr_image_data img_data;
 
-	if (!android_image_get_data(hdr, &img_data))
+	if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
 		return -EINVAL;
 
 	return android_image_get_kernel_addr(&img_data);
 }
 
-ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr)
+ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr,
+			      const void *vendor_boot_img)
 {
 	struct andr_image_data img_data;
 	const void *p;
 
-	if (!android_image_get_data(hdr, &img_data))
+	if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
 		return -EINVAL;
 
 	p = (const void *)img_data.kernel_ptr;
@@ -242,11 +249,11 @@ ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr)
 }
 
 int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
-			      ulong *rd_data, ulong *rd_len)
+			      const void *vendor_boot_img, ulong *rd_data, ulong *rd_len)
 {
 	struct andr_image_data img_data = {0};
 
-	if (!android_image_get_data(hdr, &img_data))
+	if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
 		return -EINVAL;
 
 	if (!img_data.ramdisk_size) {
@@ -268,7 +275,7 @@ int android_image_get_second(const struct andr_boot_img_hdr_v0 *hdr,
 {
 	struct andr_image_data img_data;
 
-	if (!android_image_get_data(hdr, &img_data))
+	if (!android_image_get_data(hdr, NULL, &img_data))
 		return -EINVAL;
 
 	if (!img_data.second_size) {
@@ -348,11 +355,12 @@ exit:
 /**
  * android_image_get_dtb_img_addr() - Get the address of DTB area in boot image.
  * @hdr_addr: Boot image header address
+ * @vhdr_addr: Vendor 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)
+static bool android_image_get_dtb_img_addr(ulong hdr_addr, ulong vhdr_addr, ulong *addr)
 {
 	const struct andr_boot_img_hdr_v0 *hdr;
 	ulong dtb_img_addr;
@@ -395,6 +403,7 @@ exit:
 /**
  * android_image_get_dtb_by_index() - Get address and size of blob in DTB area.
  * @hdr_addr: Boot image header address
+ * @vendor_boot_img: Pointer to vendor boot image header, which is at the start of the image.
  * @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
@@ -404,17 +413,24 @@ exit:
  *
  * Return: true on success or false on error.
  */
-bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
-				    u32 *size)
+bool android_image_get_dtb_by_index(ulong hdr_addr, ulong vendor_boot_img,
+				    u32 index, ulong *addr, u32 *size)
 {
 	struct andr_image_data img_data;
 	const struct andr_boot_img_hdr_v0 *hdr;
+	const struct andr_vnd_boot_img_hdr *vhdr;
 
 	hdr = map_sysmem(hdr_addr, sizeof(*hdr));
-	if (!android_image_get_data(hdr, &img_data)) {
+	if (vendor_boot_img != -1)
+		vhdr = map_sysmem(vendor_boot_img, sizeof(*vhdr));
+	if (!android_image_get_data(hdr, vhdr, &img_data)) {
+		if (vendor_boot_img != -1)
+			unmap_sysmem(vhdr);
 		unmap_sysmem(hdr);
 		return false;
 	}
+	if (vendor_boot_img != -1)
+		unmap_sysmem(vhdr);
 	unmap_sysmem(hdr);
 
 	ulong dtb_img_addr;	/* address of DTB part in boot image */
@@ -422,7 +438,7 @@ bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
 	ulong dtb_addr;		/* address of DTB blob with specified index  */
 	u32 i;			/* index iterator */
 
-	android_image_get_dtb_img_addr(hdr_addr, &dtb_img_addr);
+	android_image_get_dtb_img_addr(hdr_addr, vendor_boot_img, &dtb_img_addr);
 	/* 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,
@@ -578,7 +594,7 @@ bool android_image_print_dtb_contents(ulong hdr_addr)
 	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);
+	res = android_image_get_dtb_img_addr(hdr_addr, 0, &dtb_img_addr);
 	if (!res)
 		return false;
 
diff --git a/boot/image-board.c b/boot/image-board.c
index 9295b6d0c8..b6c9bbe8f5 100644
--- a/boot/image-board.c
+++ b/boot/image-board.c
@@ -428,8 +428,7 @@ static int select_ramdisk(struct bootm_headers *images, const char *select, u8 a
 		if (IS_ENABLED(CONFIG_ANDROID_BOOT_IMAGE)) {
 			void *ptr = map_sysmem(images->os.start, 0);
 			int ret;
-
-			ret = android_image_get_ramdisk(ptr, rd_datap, rd_lenp);
+			ret = android_image_get_ramdisk(ptr, NULL, rd_datap, rd_lenp);
 			unmap_sysmem(ptr);
 			if (ret)
 				return ret;
diff --git a/boot/image-fdt.c b/boot/image-fdt.c
index 1181cb60f0..f270d00a5f 100644
--- a/boot/image-fdt.c
+++ b/boot/image-fdt.c
@@ -536,7 +536,8 @@ int boot_get_fdt(int flag, int argc, char *const argv[], uint8_t arch,
 		 * Firstly check if this android boot image has dtb field.
 		 */
 		dtb_idx = (u32)env_get_ulong("adtb_idx", 10, 0);
-		if (android_image_get_dtb_by_index((ulong)hdr, dtb_idx, &fdt_addr, &fdt_size)) {
+		if (android_image_get_dtb_by_index((ulong)hdr, 0,
+						   dtb_idx, &fdt_addr, &fdt_size)) {
 			fdt_blob = (char *)map_sysmem(fdt_addr, 0);
 			if (fdt_check_header(fdt_blob))
 				goto no_fdt;
diff --git a/cmd/abootimg.c b/cmd/abootimg.c
index f04a7c7c8e..4d6cf0fa3e 100644
--- a/cmd/abootimg.c
+++ b/cmd/abootimg.c
@@ -72,7 +72,7 @@ static int abootimg_get_dtb_load_addr(int argc, char *const argv[])
 	const struct andr_boot_img_hdr_v0 *hdr;
 
 	hdr = map_sysmem(abootimg_addr(), sizeof(*hdr));
-	if (!android_image_get_data(hdr, &img_data)) {
+	if (!android_image_get_data(hdr, NULL, &img_data)) {
 		unmap_sysmem(hdr);
 		return CMD_RET_FAILURE;
 	}
@@ -119,7 +119,7 @@ static int abootimg_get_dtb_by_index(int argc, char *const argv[])
 		return CMD_RET_FAILURE;
 	}
 
-	if (!android_image_get_dtb_by_index(abootimg_addr(), num,
+	if (!android_image_get_dtb_by_index(abootimg_addr(), 0, num,
 					    &addr, &size)) {
 		return CMD_RET_FAILURE;
 	}
diff --git a/include/image.h b/include/image.h
index 4bf6c98ced..f84c03f08f 100644
--- a/include/image.h
+++ b/include/image.h
@@ -1736,16 +1736,19 @@ struct cipher_algo *image_get_cipher_algo(const char *full_name);
 struct andr_image_data;
 
 /**
- * android_image_get_data() - Parse Android boot image
+ * android_image_get_data() - Parse Android boot images
  *
- * This is used to parse boot image header into andr_image_data
- * generic structure.
+ * This is used to parse boot and vendor-boot header into
+ * andr_image_data generic structure.
  *
  * @boot_hdr: Pointer to boot image header
+ * @vendor_boot_hdr: Pointer to vendor boot image header
  * @data: Pointer to generic boot format structure
  * Return: true if succeeded, false otherwise
  */
-bool android_image_get_data(const void *boot_hdr, struct andr_image_data *data);
+bool android_image_get_data(const void *boot_hdr, const void *vendor_boot_hdr,
+			    struct andr_image_data *data);
+
 struct andr_boot_img_hdr_v0;
 
 /**
@@ -1756,6 +1759,7 @@ struct andr_boot_img_hdr_v0;
  *
  * @hdr:	Pointer to image header, which is at the start
  *			of the image.
+ * @vendor_boot_img : Pointer to vendor boot image header
  * @verify:	Checksum verification flag. Currently unimplemented.
  * @os_data:	Pointer to a ulong variable, will hold os data start
  *			address.
@@ -1763,7 +1767,8 @@ struct andr_boot_img_hdr_v0;
  * Return: Zero, os start address and length on success,
  *		otherwise on failure.
  */
-int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
+int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr,
+			     const void *vendor_boot_img, int verify,
 			     ulong *os_data, ulong *os_len);
 
 /**
@@ -1772,12 +1777,13 @@ int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
  * This extracts the load address of the ramdisk and its size
  *
  * @hdr:	Pointer to image header
+ * @vendor_boot_img : Pointer to vendor boot image header
  * @rd_data:	Pointer to a ulong variable, will hold ramdisk address
  * @rd_len:	Pointer to a ulong variable, will hold ramdisk length
  * Return: 0 if succeeded, -1 if ramdisk size is 0
  */
 int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
-			      ulong *rd_data, ulong *rd_len);
+			      const void *vendor_boot_img, ulong *rd_data, ulong *rd_len);
 
 /**
  * android_image_get_second() - Extracts the secondary bootloader address
@@ -1793,8 +1799,22 @@ int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
 int android_image_get_second(const struct andr_boot_img_hdr_v0 *hdr,
 			     ulong *second_data, ulong *second_len);
 bool android_image_get_dtbo(ulong hdr_addr, ulong *addr, u32 *size);
-bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
-				    u32 *size);
+
+/**
+ * android_image_get_dtb_by_index() - Get address and size of blob in DTB area.
+ * @hdr_addr: Boot image header address
+ * @vendor_boot_img: Pointer to vendor boot image header, which is at the start of the image.
+ * @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.
+ */
+bool android_image_get_dtb_by_index(ulong hdr_addr, ulong vendor_boot_img,
+				    u32 index, ulong *addr, u32 *size);
 
 /**
  * android_image_get_end() - Get the end of Android boot image
@@ -1802,9 +1822,11 @@ bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
  * This returns the end address of Android boot image address
  *
  * @hdr: Pointer to image header
+ * @vendor_boot_img : Pointer to vendor boot image header
  * Return: The end address of Android boot image
  */
-ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr);
+ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr,
+			    const void *vendor_boot_img);
 
 /**
  * android_image_get_kload() - Get the kernel load address
@@ -1813,9 +1835,11 @@ ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr);
  * from the boot image header or the "kernel_addr_r" environment variable
  *
  * @hdr: Pointer to image header
+ * @vendor_boot_img : Pointer to vendor boot image header
  * Return: The kernel load address
  */
-ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr);
+ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr,
+			      const void *vendor_boot_img);
 
 /**
  * android_image_get_kcomp() - Get kernel compression type
@@ -1823,9 +1847,11 @@ ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr);
  * This gets the kernel compression type from the boot image header
  *
  * @hdr: Pointer to image header
+ * @vendor_boot_img : Pointer to vendor boot image header
  * Return: Kernel compression type
  */
-ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr);
+ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr,
+			      const void *vendor_boot_img);
 
 /**
  * android_print_contents() - Prints out the contents of the Android format image
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [PATCH v3 10/19] android: boot: update android_image_get_data to support v3, v4
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
                   ` (8 preceding siblings ...)
  2023-02-05 23:50 ` [PATCH v3 09/19] android: boot: add vendor boot image to prepare for v3, v4 support Safae Ouajih
@ 2023-02-05 23:50 ` Safae Ouajih
  2023-02-09 14:32   ` [PATCH v3 10/19] android: boot: update android_image_get_data to support v3,v4 Mattijs Korpershoek
  2023-02-05 23:50 ` [PATCH v3 11/19] android: boot: ramdisk: support vendor ramdisk Safae Ouajih
                   ` (10 subsequent siblings)
  20 siblings, 1 reply; 44+ messages in thread
From: Safae Ouajih @ 2023-02-05 23:50 UTC (permalink / raw)
  To: sjg; +Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

Since boot image header version 3 and 4 introduced vendor boot image,
use the following functions to fill the generic android
structure : andr_image_data:

 - android_boot_image_v3_v4_parse_hdr()
 - android_vendor_boot_image_v3_v4_parse_hdr()

Update android_image_get_data() to support v3 and v4

Signed-off-by: Safae Ouajih <souajih@baylibre.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
---
 boot/image-android.c    | 80 +++++++++++++++++++++++++++++++++++++++--
 include/android_image.h |  3 ++
 include/image.h         | 11 ++++++
 3 files changed, 91 insertions(+), 3 deletions(-)

diff --git a/boot/image-android.c b/boot/image-android.c
index f16eebff49..712d437766 100644
--- a/boot/image-android.c
+++ b/boot/image-android.c
@@ -18,6 +18,65 @@
 
 static char andr_tmp_str[ANDR_BOOT_ARGS_SIZE + 1];
 
+static void android_boot_image_v3_v4_parse_hdr(const struct andr_boot_img_hdr_v3 *hdr,
+					       struct andr_image_data *data)
+{
+	ulong end;
+
+	data->kcmdline = hdr->cmdline;
+	data->header_version = hdr->header_version;
+
+	/*
+	 * The header takes a full page, the remaining components are aligned
+	 * on page boundary.
+	 */
+	end = (ulong)hdr;
+	end += ANDR_GKI_PAGE_SIZE;
+	data->kernel_ptr = end;
+	data->kernel_size = hdr->kernel_size;
+	end += ALIGN(hdr->kernel_size, ANDR_GKI_PAGE_SIZE);
+	data->ramdisk_size = hdr->ramdisk_size;
+	data->boot_ramdisk_size = hdr->ramdisk_size;
+	end += ALIGN(hdr->ramdisk_size, ANDR_GKI_PAGE_SIZE);
+
+	if (hdr->header_version > 3)
+		end += ALIGN(hdr->signature_size, ANDR_GKI_PAGE_SIZE);
+
+	data->boot_img_total_size = end - (ulong)hdr;
+}
+
+static void android_vendor_boot_image_v3_v4_parse_hdr(const struct andr_vnd_boot_img_hdr
+						      *hdr, struct andr_image_data *data)
+{
+	ulong end;
+
+	/*
+	 * The header takes a full page, the remaining components are aligned
+	 * on page boundary.
+	 */
+	data->tags_addr = hdr->tags_addr;
+	data->image_name = hdr->name;
+	data->kernel_addr = hdr->kernel_addr;
+	data->ramdisk_addr = hdr->ramdisk_addr;
+	data->dtb_load_addr = hdr->dtb_addr;
+	end = (ulong)hdr;
+	end += hdr->page_size;
+	if (hdr->vendor_ramdisk_size) {
+		data->vendor_ramdisk_ptr = end;
+		data->vendor_ramdisk_size = hdr->vendor_ramdisk_size;
+		data->ramdisk_size += hdr->vendor_ramdisk_size;
+		end += ALIGN(hdr->vendor_ramdisk_size, hdr->page_size);
+	}
+
+	data->dtb_ptr = end;
+	data->dtb_size = hdr->dtb_size;
+
+	end += ALIGN(hdr->dtb_size, hdr->page_size);
+	end += ALIGN(hdr->vendor_ramdisk_table_size, hdr->page_size);
+	end += ALIGN(hdr->bootconfig_size, hdr->page_size);
+	data->vendor_boot_img_total_size = end - (ulong)hdr;
+}
+
 static void android_boot_image_v0_v1_v2_parse_hdr(const struct andr_boot_img_hdr_v0 *hdr,
 						  struct andr_image_data *data)
 {
@@ -79,10 +138,20 @@ bool android_image_get_data(const void *boot_hdr, const void *vendor_boot_hdr,
 		return false;
 	}
 
-	if (((struct andr_boot_img_hdr_v0 *)boot_hdr)->header_version > 2)
-		printf("Only boot image header version 2 and below are supported\n");
-	else
+	if (((struct andr_boot_img_hdr_v0 *)boot_hdr)->header_version > 2) {
+		if (!vendor_boot_hdr) {
+			printf("For boot header v3+ vendor boot image has to be provided\n");
+			return false;
+		}
+		if (!is_android_vendor_boot_image_header(vendor_boot_hdr)) {
+			printf("Incorrect vendor boot image header\n");
+			return false;
+		}
+		android_boot_image_v3_v4_parse_hdr(boot_hdr, data);
+		android_vendor_boot_image_v3_v4_parse_hdr(vendor_boot_hdr, data);
+	} else {
 		android_boot_image_v0_v1_v2_parse_hdr(boot_hdr, data);
+	}
 
 	return true;
 }
@@ -200,6 +269,11 @@ int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr,
 	return 0;
 }
 
+bool is_android_vendor_boot_image_header(const void *vendor_boot_img)
+{
+	return !memcmp(VENDOR_BOOT_MAGIC, vendor_boot_img, ANDR_VENDOR_BOOT_MAGIC_SIZE);
+}
+
 bool is_android_boot_image_header(const struct andr_boot_img_hdr_v0 *hdr)
 {
 	return !memcmp(ANDR_BOOT_MAGIC, hdr, ANDR_BOOT_MAGIC_SIZE);
diff --git a/include/android_image.h b/include/android_image.h
index fb3a9d9858..99e7803508 100644
--- a/include/android_image.h
+++ b/include/android_image.h
@@ -323,6 +323,8 @@ struct andr_image_data {
 	ulong kernel_ptr;  /* kernel address */
 	u32 kernel_size;  /* size in bytes */
 	u32 ramdisk_size;  /* size in bytes */
+	ulong vendor_ramdisk_ptr;  /* vendor ramdisk address */
+	u32 vendor_ramdisk_size;  /* vendor ramdisk size*/
 	u32 boot_ramdisk_size;  /* size in bytes */
 	ulong second_ptr;  /* secondary bootloader address */
 	u32 second_size;  /* secondary bootloader size */
@@ -342,6 +344,7 @@ struct andr_image_data {
 	ulong tags_addr;  /* physical addr for kernel tags */
 	u32 header_version;  /* version of the boot image header */
 	u32 boot_img_total_size;  /* boot image size */
+	u32 vendor_boot_img_total_size;  /* vendor boot image size */
 };
 
 #endif
diff --git a/include/image.h b/include/image.h
index f84c03f08f..c2e751c136 100644
--- a/include/image.h
+++ b/include/image.h
@@ -1876,6 +1876,17 @@ bool android_image_print_dtb_contents(ulong hdr_addr);
  */
 bool is_android_boot_image_header(const struct andr_boot_img_hdr_v0 *hdr);
 
+/**
+ * is_android_vendor_boot_image_header() - Check the magic of vendor boot image
+ *
+ * This checks the header of Android vendor boot image and verifies the magic
+ * is "VNDRBOOT"
+ *
+ * @vendor_boot_img: Pointer to boot image
+ * Return: non-zero if the magic is correct, zero otherwise
+ */
+bool is_android_vendor_boot_image_header(const void *vendor_boot_img);
+
 /**
  * board_fit_config_name_match() - Check for a matching board name
  *
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [PATCH v3 11/19] android: boot: ramdisk: support vendor ramdisk
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
                   ` (9 preceding siblings ...)
  2023-02-05 23:50 ` [PATCH v3 10/19] android: boot: update android_image_get_data to support v3, v4 Safae Ouajih
@ 2023-02-05 23:50 ` Safae Ouajih
  2023-02-09 14:35   ` Mattijs Korpershoek
  2023-02-05 23:50 ` [PATCH v3 12/19] android: boot: support extra command line Safae Ouajih
                   ` (9 subsequent siblings)
  20 siblings, 1 reply; 44+ messages in thread
From: Safae Ouajih @ 2023-02-05 23:50 UTC (permalink / raw)
  To: sjg; +Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

Version 3 and 4 of boot image header introduced
vendor boot ramdisk: Please check include/android_image.h
for details.

The ramdisk is now split into a generic ramdisk in boot image
and a vendor ramdisk in vendor boot image.

Support the new vendor ramdisk.

Signed-off-by: Safae Ouajih <souajih@baylibre.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
---
 boot/image-android.c | 13 +++++++++++--
 include/image.h      |  4 ++--
 2 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/boot/image-android.c b/boot/image-android.c
index 712d437766..35243fd5b1 100644
--- a/boot/image-android.c
+++ b/boot/image-android.c
@@ -25,6 +25,7 @@ static void android_boot_image_v3_v4_parse_hdr(const struct andr_boot_img_hdr_v3
 
 	data->kcmdline = hdr->cmdline;
 	data->header_version = hdr->header_version;
+	data->ramdisk_ptr = env_get_ulong("ramdisk_addr_r", 16, 0);
 
 	/*
 	 * The header takes a full page, the remaining components are aligned
@@ -322,10 +323,11 @@ ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr,
 		return image_decomp_type(p, sizeof(u32));
 }
 
-int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
-			      const void *vendor_boot_img, ulong *rd_data, ulong *rd_len)
+int android_image_get_ramdisk(const void *hdr, const void *vendor_boot_img,
+			      ulong *rd_data, ulong *rd_len)
 {
 	struct andr_image_data img_data = {0};
+	ulong ramdisk_ptr;
 
 	if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
 		return -EINVAL;
@@ -334,6 +336,13 @@ int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
 		*rd_data = *rd_len = 0;
 		return -1;
 	}
+	if (img_data.header_version > 2) {
+		ramdisk_ptr = img_data.ramdisk_ptr;
+		memcpy((void *)(ramdisk_ptr), (void *)img_data.vendor_ramdisk_ptr,
+		       img_data.vendor_ramdisk_size);
+		memcpy((void *)(ramdisk_ptr + img_data.vendor_ramdisk_size),
+		       (void *)img_data.ramdisk_ptr, img_data.boot_ramdisk_size);
+	}
 
 	printf("RAM disk load addr 0x%08lx size %u KiB\n",
 	       img_data.ramdisk_ptr, DIV_ROUND_UP(img_data.ramdisk_size, 1024));
diff --git a/include/image.h b/include/image.h
index c2e751c136..c4d9b1c575 100644
--- a/include/image.h
+++ b/include/image.h
@@ -1782,8 +1782,8 @@ int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr,
  * @rd_len:	Pointer to a ulong variable, will hold ramdisk length
  * Return: 0 if succeeded, -1 if ramdisk size is 0
  */
-int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
-			      const void *vendor_boot_img, ulong *rd_data, ulong *rd_len);
+int android_image_get_ramdisk(const void *hdr, const void *vendor_boot_img,
+			      ulong *rd_data, ulong *rd_len);
 
 /**
  * android_image_get_second() - Extracts the secondary bootloader address
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [PATCH v3 12/19] android: boot: support extra command line
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
                   ` (10 preceding siblings ...)
  2023-02-05 23:50 ` [PATCH v3 11/19] android: boot: ramdisk: support vendor ramdisk Safae Ouajih
@ 2023-02-05 23:50 ` Safae Ouajih
  2023-02-05 23:50 ` [PATCH v3 13/19] android: boot: update android_image_get_dtb_img_addr to support v3, v4 Safae Ouajih
                   ` (8 subsequent siblings)
  20 siblings, 0 replies; 44+ messages in thread
From: Safae Ouajih @ 2023-02-05 23:50 UTC (permalink / raw)
  To: sjg; +Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

In version 3 and 4 of boot image header, the vendor specific
command line are located in vendor boot image. Thus, use
extra command line to add those cmd to bootargs.

Signed-off-by: Safae Ouajih <souajih@baylibre.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
---
 boot/image-android.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/boot/image-android.c b/boot/image-android.c
index 35243fd5b1..a944f0a31a 100644
--- a/boot/image-android.c
+++ b/boot/image-android.c
@@ -55,6 +55,7 @@ static void android_vendor_boot_image_v3_v4_parse_hdr(const struct andr_vnd_boot
 	 * The header takes a full page, the remaining components are aligned
 	 * on page boundary.
 	 */
+	data->kcmdline_extra = hdr->cmdline;
 	data->tags_addr = hdr->tags_addr;
 	data->image_name = hdr->name;
 	data->kernel_addr = hdr->kernel_addr;
@@ -233,6 +234,11 @@ int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr,
 		len += strlen(img_data.kcmdline);
 	}
 
+	if (img_data.kcmdline_extra) {
+		printf("Kernel extra command line: %s\n", img_data.kcmdline_extra);
+		len += strlen(img_data.kcmdline_extra);
+	}
+
 	char *bootargs = env_get("bootargs");
 	if (bootargs)
 		len += strlen(bootargs);
@@ -252,6 +258,11 @@ int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr,
 	if (*img_data.kcmdline)
 		strcat(newbootargs, img_data.kcmdline);
 
+	if (img_data.kcmdline_extra) {
+		strcat(newbootargs, " ");
+		strcat(newbootargs, img_data.kcmdline_extra);
+	}
+
 	env_set("bootargs", newbootargs);
 
 	if (os_data) {
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [PATCH v3 13/19] android: boot: update android_image_get_dtb_img_addr to support v3, v4
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
                   ` (11 preceding siblings ...)
  2023-02-05 23:50 ` [PATCH v3 12/19] android: boot: support extra command line Safae Ouajih
@ 2023-02-05 23:50 ` Safae Ouajih
  2023-02-05 23:50 ` [PATCH v3 14/19] drivers: fastboot: zImage flashing is not supported for " Safae Ouajih
                   ` (7 subsequent siblings)
  20 siblings, 0 replies; 44+ messages in thread
From: Safae Ouajih @ 2023-02-05 23:50 UTC (permalink / raw)
  To: sjg; +Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

Add support for boot image version 3 and 4 in
android_image_get_dtb_img_addr().
Since the dtb is now included in vendor_boot image
instead of boot image, extract the dtb address from
vendor_boot image when a v3 or v4 is used.

Signed-off-by: Safae Ouajih <souajih@baylibre.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
---
 boot/image-android.c | 47 +++++++++++++++++++++++++++++++-------------
 1 file changed, 33 insertions(+), 14 deletions(-)

diff --git a/boot/image-android.c b/boot/image-android.c
index a944f0a31a..6be439ed12 100644
--- a/boot/image-android.c
+++ b/boot/image-android.c
@@ -457,6 +457,7 @@ exit:
 static bool android_image_get_dtb_img_addr(ulong hdr_addr, ulong vhdr_addr, ulong *addr)
 {
 	const struct andr_boot_img_hdr_v0 *hdr;
+	const struct andr_vnd_boot_img_hdr *v_hdr;
 	ulong dtb_img_addr;
 	bool ret = true;
 
@@ -473,22 +474,40 @@ static bool android_image_get_dtb_img_addr(ulong hdr_addr, ulong vhdr_addr, ulon
 		goto exit;
 	}
 
-	if (hdr->dtb_size == 0) {
-		printf("Error: dtb_size is 0\n");
-		ret = false;
-		goto exit;
+	if (hdr->header_version == 2) {
+		if (!hdr->dtb_size) {
+			printf("Error: dtb_size is 0\n");
+			ret = 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;
 	}
 
-	/* 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;
-
+	if (hdr->header_version > 2) {
+		v_hdr = map_sysmem(vhdr_addr, sizeof(*v_hdr));
+		if (!v_hdr->dtb_size) {
+			printf("Error: dtb_size is 0\n");
+			ret = false;
+			unmap_sysmem(v_hdr);
+			goto exit;
+		}
+		/* Calculate the address of DTB area in boot image */
+		dtb_img_addr = vhdr_addr;
+		dtb_img_addr += v_hdr->page_size;
+		if (v_hdr->vendor_ramdisk_size)
+			dtb_img_addr += ALIGN(v_hdr->vendor_ramdisk_size, v_hdr->page_size);
+		*addr = dtb_img_addr;
+		unmap_sysmem(v_hdr);
+		goto exit;
+	}
 exit:
 	unmap_sysmem(hdr);
 	return ret;
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [PATCH v3 14/19] drivers: fastboot: zImage flashing is not supported for v3, v4
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
                   ` (12 preceding siblings ...)
  2023-02-05 23:50 ` [PATCH v3 13/19] android: boot: update android_image_get_dtb_img_addr to support v3, v4 Safae Ouajih
@ 2023-02-05 23:50 ` Safae Ouajih
  2023-02-09 14:38   ` [PATCH v3 14/19] drivers: fastboot: zImage flashing is not supported for v3,v4 Mattijs Korpershoek
  2023-02-05 23:50 ` [PATCH v3 15/19] android: boot: support boot image header version 3 and 4 Safae Ouajih
                   ` (6 subsequent siblings)
  20 siblings, 1 reply; 44+ messages in thread
From: Safae Ouajih @ 2023-02-05 23:50 UTC (permalink / raw)
  To: sjg; +Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

With vendor boot image introduced in version 3 and 4 of boot
image header, boot information is located in both boot image
and vendor boot image.

Flashing zImage is not supported for version 3 and 4 since this
requires updating vendor boot image and/or generating a new image.

Print an error message when the boot image header version is
greater than 2.

Signed-off-by: Safae Ouajih <souajih@baylibre.com>
---
 drivers/fastboot/fb_mmc.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/drivers/fastboot/fb_mmc.c b/drivers/fastboot/fb_mmc.c
index 086e5f7843..1dea82835c 100644
--- a/drivers/fastboot/fb_mmc.c
+++ b/drivers/fastboot/fb_mmc.c
@@ -370,6 +370,14 @@ static int fb_mmc_update_zimage(struct blk_desc *dev_desc,
 		return -1;
 	}
 
+	/* Check if boot image header version is 2 or less */
+	if (hdr->header_version > 2) {
+		pr_err("zImage flashing supported only for boot images v2 and less\n");
+		fastboot_fail("zImage flashing supported only for boot images v2 and less",
+			      response);
+		return -EOPNOTSUPP;
+	}
+
 	/* Check if boot image has second stage in it (we don't support it) */
 	if (hdr->second_size > 0) {
 		pr_err("moving second stage is not supported yet\n");
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [PATCH v3 15/19] android: boot: support boot image header version 3 and 4
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
                   ` (13 preceding siblings ...)
  2023-02-05 23:50 ` [PATCH v3 14/19] drivers: fastboot: zImage flashing is not supported for " Safae Ouajih
@ 2023-02-05 23:50 ` Safae Ouajih
  2023-02-09 14:46   ` Mattijs Korpershoek
  2023-02-05 23:50 ` [PATCH v3 16/19] android: boot: support bootconfig Safae Ouajih
                   ` (5 subsequent siblings)
  20 siblings, 1 reply; 44+ messages in thread
From: Safae Ouajih @ 2023-02-05 23:50 UTC (permalink / raw)
  To: sjg; +Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

Enable the support for boot image header version 3 and 4
using abootimg command.

In order to use version 3 or 4:

1- Vendor boot image address should be given to abootimg cmd.

	abootimg addr $1 $vendor_boot_load_addr

2- "ramdisk_addr_r" env variable (ramdisk address) should be set to host
the ramdisk : generic ramdisk + vendor ramdisk

Replace "struct andr_boot_img_hdr_v0*" by "void *" in
some functions since v3 and v4 are now supported as well.

Signed-off-by: Safae Ouajih <souajih@baylibre.com>
---
 boot/bootm.c         | 37 ++++++++++++++++++++++++++++++++-----
 boot/image-android.c | 16 ++++++++++------
 boot/image-board.c   | 18 +++++++++++++++---
 boot/image-fdt.c     |  2 +-
 cmd/abootimg.c       | 24 ++++++++++++++++++++++--
 include/image.h      | 25 +++++++++++++++++++------
 6 files changed, 99 insertions(+), 23 deletions(-)

diff --git a/boot/bootm.c b/boot/bootm.c
index a58e6f391e..a7fc6c4545 100644
--- a/boot/bootm.c
+++ b/boot/bootm.c
@@ -113,6 +113,10 @@ static int bootm_find_os(struct cmd_tbl *cmdtp, int flag, int argc,
 			 char *const argv[])
 {
 	const void *os_hdr;
+#ifdef CONFIG_ANDROID_BOOT_IMAGE
+	const void *vendor_boot_img;
+	const void *boot_img;
+#endif
 	bool ep_found = false;
 	int ret;
 
@@ -181,14 +185,23 @@ static int bootm_find_os(struct cmd_tbl *cmdtp, int flag, int argc,
 #endif
 #ifdef CONFIG_ANDROID_BOOT_IMAGE
 	case IMAGE_FORMAT_ANDROID:
+		boot_img = os_hdr;
+		vendor_boot_img = NULL;
+		if (IS_ENABLED(CONFIG_CMD_ABOOTIMG)) {
+			boot_img = map_sysmem(get_abootimg_addr(), 0);
+			vendor_boot_img = map_sysmem(get_avendor_bootimg_addr(), 0);
+		}
 		images.os.type = IH_TYPE_KERNEL;
-		images.os.comp = android_image_get_kcomp(os_hdr, NULL);
+		images.os.comp = android_image_get_kcomp(boot_img, vendor_boot_img);
 		images.os.os = IH_OS_LINUX;
-
-		images.os.end = android_image_get_end(os_hdr, NULL);
-		images.os.load = android_image_get_kload(os_hdr, NULL);
+		images.os.end = android_image_get_end(boot_img, vendor_boot_img);
+		images.os.load = android_image_get_kload(boot_img, vendor_boot_img);
 		images.ep = images.os.load;
 		ep_found = true;
+		if (IS_ENABLED(CONFIG_CMD_ABOOTIMG)) {
+			unmap_sysmem(vendor_boot_img);
+			unmap_sysmem(boot_img);
+		}
 		break;
 #endif
 	default:
@@ -889,6 +902,10 @@ static const void *boot_get_kernel(struct cmd_tbl *cmdtp, int flag, int argc,
 	int		os_noffset;
 #endif
 
+#ifdef CONFIG_ANDROID_BOOT_IMAGE
+	const void *boot_img;
+	const void *vendor_boot_img;
+#endif
 	img_addr = genimg_get_kernel_addr_fit(argc < 1 ? NULL : argv[0],
 					      &fit_uname_config,
 					      &fit_uname_kernel);
@@ -964,10 +981,20 @@ static const void *boot_get_kernel(struct cmd_tbl *cmdtp, int flag, int argc,
 #endif
 #ifdef CONFIG_ANDROID_BOOT_IMAGE
 	case IMAGE_FORMAT_ANDROID:
+		boot_img = buf;
+		vendor_boot_img = NULL;
+		if (IS_ENABLED(CONFIG_CMD_ABOOTIMG)) {
+			boot_img = map_sysmem(get_abootimg_addr(), 0);
+			vendor_boot_img = map_sysmem(get_avendor_bootimg_addr(), 0);
+		}
 		printf("## Booting Android Image at 0x%08lx ...\n", img_addr);
-		if (android_image_get_kernel(buf, NULL, images->verify,
+		if (android_image_get_kernel(boot_img, vendor_boot_img, images->verify,
 					     os_data, os_len))
 			return NULL;
+		if (IS_ENABLED(CONFIG_CMD_ABOOTIMG)) {
+			unmap_sysmem(vendor_boot_img);
+			unmap_sysmem(boot_img);
+		}
 		break;
 #endif
 	default:
diff --git a/boot/image-android.c b/boot/image-android.c
index 6be439ed12..fb29ff403f 100644
--- a/boot/image-android.c
+++ b/boot/image-android.c
@@ -201,7 +201,7 @@ static ulong android_image_get_kernel_addr(struct andr_image_data *img_data)
  * Return: Zero, os start address and length on success,
  *		otherwise on failure.
  */
-int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr,
+int android_image_get_kernel(const void *hdr,
 			     const void *vendor_boot_img, int verify,
 			     ulong *os_data, ulong *os_len)
 {
@@ -286,7 +286,7 @@ bool is_android_vendor_boot_image_header(const void *vendor_boot_img)
 	return !memcmp(VENDOR_BOOT_MAGIC, vendor_boot_img, ANDR_VENDOR_BOOT_MAGIC_SIZE);
 }
 
-bool is_android_boot_image_header(const struct andr_boot_img_hdr_v0 *hdr)
+bool is_android_boot_image_header(const void *hdr)
 {
 	return !memcmp(ANDR_BOOT_MAGIC, hdr, ANDR_BOOT_MAGIC_SIZE);
 }
@@ -305,7 +305,7 @@ ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr,
 	return img_data.boot_img_total_size;
 }
 
-ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr,
+ulong android_image_get_kload(const void *hdr,
 			      const void *vendor_boot_img)
 {
 	struct andr_image_data img_data;
@@ -316,7 +316,7 @@ ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr,
 	return android_image_get_kernel_addr(&img_data);
 }
 
-ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr,
+ulong android_image_get_kcomp(const void *hdr,
 			      const void *vendor_boot_img)
 {
 	struct andr_image_data img_data;
@@ -364,14 +364,18 @@ int android_image_get_ramdisk(const void *hdr, const void *vendor_boot_img,
 	return 0;
 }
 
-int android_image_get_second(const struct andr_boot_img_hdr_v0 *hdr,
-			     ulong *second_data, ulong *second_len)
+int android_image_get_second(const void *hdr, ulong *second_data, ulong *second_len)
 {
 	struct andr_image_data img_data;
 
 	if (!android_image_get_data(hdr, NULL, &img_data))
 		return -EINVAL;
 
+	if (img_data.header_version > 2) {
+		printf("Second stage bootloader is only supported for boot image version <= 2\n");
+		return -EOPNOTSUPP;
+	}
+
 	if (!img_data.second_size) {
 		*second_data = *second_len = 0;
 		return -1;
diff --git a/boot/image-board.c b/boot/image-board.c
index b6c9bbe8f5..318aed30f8 100644
--- a/boot/image-board.c
+++ b/boot/image-board.c
@@ -426,10 +426,22 @@ static int select_ramdisk(struct bootm_headers *images, const char *select, u8 a
 		break;
 	case IMAGE_FORMAT_ANDROID:
 		if (IS_ENABLED(CONFIG_ANDROID_BOOT_IMAGE)) {
-			void *ptr = map_sysmem(images->os.start, 0);
 			int ret;
-			ret = android_image_get_ramdisk(ptr, NULL, rd_datap, rd_lenp);
-			unmap_sysmem(ptr);
+			if (IS_ENABLED(CONFIG_CMD_ABOOTIMG)) {
+				void *boot_img = map_sysmem(get_abootimg_addr(), 0);
+				void *vendor_boot_img = map_sysmem(get_avendor_bootimg_addr(), 0);
+
+				ret = android_image_get_ramdisk(boot_img, vendor_boot_img,
+								rd_datap, rd_lenp);
+				unmap_sysmem(vendor_boot_img);
+				unmap_sysmem(boot_img);
+			} else {
+				void *ptr = map_sysmem(images->os.start, 0);
+
+				ret = android_image_get_ramdisk(ptr, NULL, rd_datap, rd_lenp);
+				unmap_sysmem(ptr);
+			}
+
 			if (ret)
 				return ret;
 			done = true;
diff --git a/boot/image-fdt.c b/boot/image-fdt.c
index f270d00a5f..5f9cf7b4e6 100644
--- a/boot/image-fdt.c
+++ b/boot/image-fdt.c
@@ -529,7 +529,7 @@ int boot_get_fdt(int flag, int argc, char *const argv[], uint8_t arch,
 		}
 #ifdef CONFIG_ANDROID_BOOT_IMAGE
 	} else if (genimg_get_format(buf) == IMAGE_FORMAT_ANDROID) {
-		struct andr_boot_img_hdr_v0 *hdr = buf;
+		void *hdr = buf;
 		ulong		fdt_data, fdt_len;
 		u32			fdt_size, dtb_idx;
 		/*
diff --git a/cmd/abootimg.c b/cmd/abootimg.c
index 4d6cf0fa3e..2653b555b1 100644
--- a/cmd/abootimg.c
+++ b/cmd/abootimg.c
@@ -17,6 +17,16 @@
 static ulong _abootimg_addr = -1;
 static ulong _avendor_bootimg_addr = -1;
 
+ulong get_abootimg_addr(void)
+{
+	return (_abootimg_addr == -1 ? image_load_addr : _abootimg_addr);
+}
+
+ulong get_avendor_bootimg_addr(void)
+{
+	return _avendor_bootimg_addr;
+}
+
 static int abootimg_get_ver(int argc, char *const argv[])
 {
 	const struct andr_boot_img_hdr_v0 *hdr;
@@ -70,12 +80,21 @@ static int abootimg_get_dtb_load_addr(int argc, char *const argv[])
 		return CMD_RET_USAGE;
 	struct andr_image_data img_data = {0};
 	const struct andr_boot_img_hdr_v0 *hdr;
+	const struct andr_vnd_boot_img_hdr *vhdr;
 
 	hdr = map_sysmem(abootimg_addr(), sizeof(*hdr));
-	if (!android_image_get_data(hdr, NULL, &img_data)) {
+	if (get_avendor_bootimg_addr() != -1)
+		vhdr = map_sysmem(get_avendor_bootimg_addr(), sizeof(*vhdr));
+
+	if (!android_image_get_data(hdr, vhdr, &img_data)) {
+		if (get_avendor_bootimg_addr() != -1)
+			unmap_sysmem(vhdr);
 		unmap_sysmem(hdr);
 		return CMD_RET_FAILURE;
 	}
+
+	if (get_avendor_bootimg_addr() != -1)
+		unmap_sysmem(vhdr);
 	unmap_sysmem(hdr);
 
 	if (img_data.header_version < 2) {
@@ -119,7 +138,8 @@ static int abootimg_get_dtb_by_index(int argc, char *const argv[])
 		return CMD_RET_FAILURE;
 	}
 
-	if (!android_image_get_dtb_by_index(abootimg_addr(), 0, num,
+	if (!android_image_get_dtb_by_index(abootimg_addr(),
+					    get_avendor_bootimg_addr(), num,
 					    &addr, &size)) {
 		return CMD_RET_FAILURE;
 	}
diff --git a/include/image.h b/include/image.h
index c4d9b1c575..456197d6fd 100644
--- a/include/image.h
+++ b/include/image.h
@@ -1767,7 +1767,7 @@ struct andr_boot_img_hdr_v0;
  * Return: Zero, os start address and length on success,
  *		otherwise on failure.
  */
-int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr,
+int android_image_get_kernel(const void *hdr,
 			     const void *vendor_boot_img, int verify,
 			     ulong *os_data, ulong *os_len);
 
@@ -1796,8 +1796,7 @@ int android_image_get_ramdisk(const void *hdr, const void *vendor_boot_img,
  * @second_len : Pointer to a ulong variable, will hold secondary bootloader length
  * Return: 0 if succeeded, -1 if secondary bootloader size is 0
  */
-int android_image_get_second(const struct andr_boot_img_hdr_v0 *hdr,
-			     ulong *second_data, ulong *second_len);
+int android_image_get_second(const void *hdr, ulong *second_data, ulong *second_len);
 bool android_image_get_dtbo(ulong hdr_addr, ulong *addr, u32 *size);
 
 /**
@@ -1838,7 +1837,7 @@ ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr,
  * @vendor_boot_img : Pointer to vendor boot image header
  * Return: The kernel load address
  */
-ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr,
+ulong android_image_get_kload(const void *hdr,
 			      const void *vendor_boot_img);
 
 /**
@@ -1850,7 +1849,7 @@ ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr,
  * @vendor_boot_img : Pointer to vendor boot image header
  * Return: Kernel compression type
  */
-ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr,
+ulong android_image_get_kcomp(const void *hdr,
 			      const void *vendor_boot_img);
 
 /**
@@ -1874,7 +1873,7 @@ bool android_image_print_dtb_contents(ulong hdr_addr);
  * @hdr: Pointer to boot image
  * Return: non-zero if the magic is correct, zero otherwise
  */
-bool is_android_boot_image_header(const struct andr_boot_img_hdr_v0 *hdr);
+bool is_android_boot_image_header(const void *hdr);
 
 /**
  * is_android_vendor_boot_image_header() - Check the magic of vendor boot image
@@ -1887,6 +1886,20 @@ bool is_android_boot_image_header(const struct andr_boot_img_hdr_v0 *hdr);
  */
 bool is_android_vendor_boot_image_header(const void *vendor_boot_img);
 
+/**
+ * get_abootimg_addr() - Get Android boot image address
+ *
+ * Return: Android boot image address
+ */
+ulong get_abootimg_addr(void);
+
+/**
+ * get_avendor_bootimg_addr() - Get Android vendor boot image address
+ *
+ * Return: Android vendor boot image address
+ */
+ulong get_avendor_bootimg_addr(void);
+
 /**
  * board_fit_config_name_match() - Check for a matching board name
  *
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [PATCH v3 16/19] android: boot: support bootconfig
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
                   ` (14 preceding siblings ...)
  2023-02-05 23:50 ` [PATCH v3 15/19] android: boot: support boot image header version 3 and 4 Safae Ouajih
@ 2023-02-05 23:50 ` Safae Ouajih
  2023-02-05 23:50 ` [PATCH v3 17/19] doc: android: add documentation for v3, v4 boot image header Safae Ouajih
                   ` (4 subsequent siblings)
  20 siblings, 0 replies; 44+ messages in thread
From: Safae Ouajih @ 2023-02-05 23:50 UTC (permalink / raw)
  To: sjg; +Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

Support Bootconfig feature.
- The bootconfig feature replaces the androidboot.*
  kernel cmdline options.

This was adapted from downstream [1] commit : 7af0a0506d4d ("cuttlefish:
support bootconfig parameters").

Link:[1] https://android.googlesource.com/platform/external/u-boot/

Signed-off-by: Safae Ouajih <souajih@baylibre.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
---
 boot/image-android.c    | 58 +++++++++++++++++++++++++++++++++++++++--
 include/android_image.h | 11 ++++++++
 2 files changed, 67 insertions(+), 2 deletions(-)

diff --git a/boot/image-android.c b/boot/image-android.c
index fb29ff403f..88e40bc7ec 100644
--- a/boot/image-android.c
+++ b/boot/image-android.c
@@ -18,6 +18,45 @@
 
 static char andr_tmp_str[ANDR_BOOT_ARGS_SIZE + 1];
 
+static ulong checksum(const unsigned char *buffer, ulong size)
+{
+	ulong sum = 0;
+
+	for (ulong i = 0; i < size; i++)
+		sum += buffer[i];
+	return sum;
+}
+
+static bool is_trailer_present(ulong bootconfig_end_addr)
+{
+	return !strncmp((char *)(bootconfig_end_addr - BOOTCONFIG_MAGIC_SIZE),
+			BOOTCONFIG_MAGIC, BOOTCONFIG_MAGIC_SIZE);
+}
+
+static ulong add_trailer(ulong bootconfig_start_addr, ulong bootconfig_size)
+{
+	ulong end;
+	ulong sum;
+
+	if (!bootconfig_start_addr)
+		return -1;
+	if (!bootconfig_size)
+		return 0;
+
+	end = bootconfig_start_addr + bootconfig_size;
+	if (is_trailer_present(end))
+		return 0;
+
+	memcpy((void *)(end), &bootconfig_size, BOOTCONFIG_SIZE_SIZE);
+	sum = checksum((unsigned char *)bootconfig_start_addr, bootconfig_size);
+	memcpy((void *)(end + BOOTCONFIG_SIZE_SIZE), &sum,
+	       BOOTCONFIG_CHECKSUM_SIZE);
+	memcpy((void *)(end + BOOTCONFIG_SIZE_SIZE + BOOTCONFIG_CHECKSUM_SIZE),
+	       BOOTCONFIG_MAGIC, BOOTCONFIG_MAGIC_SIZE);
+
+	return BOOTCONFIG_TRAILER_SIZE;
+}
+
 static void android_boot_image_v3_v4_parse_hdr(const struct andr_boot_img_hdr_v3 *hdr,
 					       struct andr_image_data *data)
 {
@@ -61,6 +100,7 @@ static void android_vendor_boot_image_v3_v4_parse_hdr(const struct andr_vnd_boot
 	data->kernel_addr = hdr->kernel_addr;
 	data->ramdisk_addr = hdr->ramdisk_addr;
 	data->dtb_load_addr = hdr->dtb_addr;
+	data->bootconfig_size = hdr->bootconfig_size;
 	end = (ulong)hdr;
 	end += hdr->page_size;
 	if (hdr->vendor_ramdisk_size) {
@@ -75,7 +115,13 @@ static void android_vendor_boot_image_v3_v4_parse_hdr(const struct andr_vnd_boot
 
 	end += ALIGN(hdr->dtb_size, hdr->page_size);
 	end += ALIGN(hdr->vendor_ramdisk_table_size, hdr->page_size);
-	end += ALIGN(hdr->bootconfig_size, hdr->page_size);
+	data->bootconfig_addr = end;
+	if (hdr->bootconfig_size) {
+		data->bootconfig_size += add_trailer(data->bootconfig_addr,
+						     data->bootconfig_size);
+		data->ramdisk_size += data->bootconfig_size;
+	}
+	end += ALIGN(data->bootconfig_size, hdr->page_size);
 	data->vendor_boot_img_total_size = end - (ulong)hdr;
 }
 
@@ -352,7 +398,15 @@ int android_image_get_ramdisk(const void *hdr, const void *vendor_boot_img,
 		memcpy((void *)(ramdisk_ptr), (void *)img_data.vendor_ramdisk_ptr,
 		       img_data.vendor_ramdisk_size);
 		memcpy((void *)(ramdisk_ptr + img_data.vendor_ramdisk_size),
-		       (void *)img_data.ramdisk_ptr, img_data.boot_ramdisk_size);
+		       (void *)img_data.ramdisk_ptr,
+		       img_data.boot_ramdisk_size);
+		if (img_data.bootconfig_size) {
+			memcpy((void *)
+			       (ramdisk_ptr + img_data.vendor_ramdisk_size +
+			       img_data.boot_ramdisk_size),
+			       (void *)img_data.bootconfig_addr,
+			       img_data.bootconfig_size);
+		}
 	}
 
 	printf("RAM disk load addr 0x%08lx size %u KiB\n",
diff --git a/include/android_image.h b/include/android_image.h
index 99e7803508..d503c980b2 100644
--- a/include/android_image.h
+++ b/include/android_image.h
@@ -25,6 +25,14 @@
 #define ANDR_VENDOR_BOOT_ARGS_SIZE 2048
 #define ANDR_VENDOR_BOOT_NAME_SIZE 16
 
+#define BOOTCONFIG_MAGIC "#BOOTCONFIG\n"
+#define BOOTCONFIG_MAGIC_SIZE 12
+#define BOOTCONFIG_SIZE_SIZE 4
+#define BOOTCONFIG_CHECKSUM_SIZE 4
+#define BOOTCONFIG_TRAILER_SIZE BOOTCONFIG_MAGIC_SIZE + \
+				BOOTCONFIG_SIZE_SIZE + \
+				BOOTCONFIG_CHECKSUM_SIZE
+
 struct andr_boot_img_hdr_v3 {
 	u8 magic[ANDR_BOOT_MAGIC_SIZE];
 
@@ -337,6 +345,9 @@ struct andr_image_data {
 	const char *kcmdline_extra;  /* vendor-boot extra kernel cmdline */
 	const char *image_name;  /* asciiz product name */
 
+	ulong bootconfig_addr;  /* bootconfig image address */
+	ulong bootconfig_size;  /* bootconfig image size */
+
 	u32 kernel_addr;  /* physical load addr */
 	ulong ramdisk_addr;  /* physical load addr */
 	ulong ramdisk_ptr;  /* ramdisk address */
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [PATCH v3 17/19] doc: android: add documentation for v3, v4 boot image header
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
                   ` (15 preceding siblings ...)
  2023-02-05 23:50 ` [PATCH v3 16/19] android: boot: support bootconfig Safae Ouajih
@ 2023-02-05 23:50 ` Safae Ouajih
  2023-02-07  4:02   ` [PATCH v3 17/19] doc: android: add documentation for v3,v4 " Simon Glass
  2023-02-08  8:54   ` Mattijs Korpershoek
  2023-02-05 23:50 ` [PATCH v3 18/19] test/py: android: extend abootimg test Safae Ouajih
                   ` (3 subsequent siblings)
  20 siblings, 2 replies; 44+ messages in thread
From: Safae Ouajih @ 2023-02-05 23:50 UTC (permalink / raw)
  To: sjg; +Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

Update the Android documentation to describe version 3 and 4 of boot
image header.

Signed-off-by: Safae Ouajih <souajih@baylibre.com>
---
 doc/android/boot-image.rst | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/doc/android/boot-image.rst b/doc/android/boot-image.rst
index 71db02521b..c719b4d711 100644
--- a/doc/android/boot-image.rst
+++ b/doc/android/boot-image.rst
@@ -27,11 +27,21 @@ next image headers:
 * v2: used in devices launched with Android 10; adds ``dtb`` field, which
   references payload containing DTB blobs (either concatenated one after the
   other, or in Android DTBO image format)
+* v3: used in devices launched with Android 11; adds ``vendor_boot`` partition
+  and removes the second-stage bootloader and recovery image support. The new
+  ``vendor_boot`` partition holds the device tree blob (DTB) and a vendor ramdisk.
+  The generic ramdisk in ``boot`` partition is loaded immediately following
+  the vendor ramdisk.
+* v4: used in devices launched with Android 12; provides a boot signature in boot
+  image header, supports multiple vendor ramdisk fragments in ``vendor_boot``
+  partition. This version also adds a bootconfig section at the end of the vendor
+  boot image, this section contains boot configuration parameters known at build time
+  (see [9]_ for details).
 
 v2, v1 and v0 formats are backward compatible.
 
 The Android Boot Image format is represented by
-:c:type:`struct andr_img_hdr <andr_img_hdr>` in U-Boot, and can be seen in
+:c:type:`struct andr_image_data <andr_image_data>` in U-Boot, and can be seen in
 ``include/android_image.h``. U-Boot supports booting Android Boot Image and also
 has associated command
 
@@ -153,3 +163,4 @@ References
 .. [6] :doc:`avb2`
 .. [7] https://source.android.com/devices/bootloader
 .. [8] https://connect.linaro.org/resources/san19/san19-217/
+.. [9] https://source.android.com/docs/core/architecture/bootloader/implementing-bootconfig
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [PATCH v3 18/19] test/py: android: extend abootimg test
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
                   ` (16 preceding siblings ...)
  2023-02-05 23:50 ` [PATCH v3 17/19] doc: android: add documentation for v3, v4 boot image header Safae Ouajih
@ 2023-02-05 23:50 ` Safae Ouajih
  2023-02-07 19:02   ` Tom Rini
  2023-02-05 23:50 ` [PATCH v3 19/19] Dockerfile: add mkbootimg tool Safae Ouajih
                   ` (2 subsequent siblings)
  20 siblings, 1 reply; 44+ messages in thread
From: Safae Ouajih @ 2023-02-05 23:50 UTC (permalink / raw)
  To: sjg; +Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

test_abootimg is extended to include the testing of boot images
version 4. For this, boot.img and vendor_boot.img have been
generated using mkbootimg tool with setting the header
version to 4.

This tests:
- Getting the header version using abootimg
- Extracting the load address of the dtb
- Extracting the dtb start address in RAM

Running test:
$ ./test/py/test.py --bd sandbox --build -k test_abootimg

Signed-off-by: Safae Ouajih <souajih@baylibre.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
---
 test/py/tests/test_android/test_abootimg.py | 136 ++++++++++++++++++--
 1 file changed, 123 insertions(+), 13 deletions(-)

diff --git a/test/py/tests/test_android/test_abootimg.py b/test/py/tests/test_android/test_abootimg.py
index 43a7099c46..6a8ff34538 100644
--- a/test/py/tests/test_android/test_abootimg.py
+++ b/test/py/tests/test_android/test_abootimg.py
@@ -32,6 +32,23 @@ Now one can obtain original boot.img from this hex dump like this:
 
     $ xxd -r -p boot.img.gz.hex boot.img.gz
     $ gunzip -9 boot.img.gz
+
+For boot image header version 4, these tests rely on two images that are generated
+using the same steps above :
+
+1- boot.img :
+    $ mkbootimg --kernel ./kernel --ramdisk ./ramdisk.img  \
+                --cmdline "cmdline test" --dtb ./dtb.img   \
+                --os_version R --os_patch_level 2019-06-05 \
+                --header_version 4 --output ./boot.img
+
+2- vendor_boot.img
+    $ mkbootimg --kernel ./kernel --ramdisk ./ramdisk.img  \
+                --cmdline "cmdline test" --dtb ./dtb.img   \
+                --os_version R --os_patch_level 2019-06-05 \
+                --pagesize 4096  --vendor_ramdisk ./ramdisk.img \
+                --header_version 4 --vendor_boot ./vboot.img \
+
 """
 
 # boot.img.gz hex dump
@@ -44,6 +61,24 @@ b7762ffff07d345446c1281805e8a0868d81e117a45e111c0d8dc101b253
 9c03c41a0c90f17fe85400986d82452b6c3680198a192a0ce17c3610ae34
 d4a9820881a70f3873f35352731892f3730b124b32937252a96bb9119ae5
 463a5546f82c1f05a360148c8251300a462e000085bf67f200200000"""
+
+# boot img v4 hex dump
+boot_img_hex = """1f8b080827b0cd630203626f6f742e696d6700edd8bd0d82601885d1d7c4
+58d8c808b88195bd098d8d246e40e42b083f1aa0717be99d003d277916b8
+e5bddc8a7b792d8e8788c896ce9b88d32ebe6c971e7ddd3543cae734cd01
+c0ffc84c0000b0766d1a87d4e5afeadd3dab7a6f10000000f84163d5d7cd
+d43a000000000000000060c53e7544995700400000"""
+
+# vendor boot image v4 hex dump
+vboot_img_hex = """1f8b0808baaecd63020376626f6f742e696d6700edd8310b824018c6f1b3
+222a08f41b3436b4280dcdd19c11d16ee9109d18d59042d047ec8b04cd0d
+d19d5a4345534bf6ffc173ef29272f38e93b1d0ec67dd79d548462aa1cd2
+d5d20b0000f8438678f90c18d584b8a4bbb3a557991ecb2a0000f80d6b2f
+f4179b656be5c532f2fc066f040000000080e23936af2755f62a3d918df1
+db2a7ab67f9ffdeb7df7cda3465ecb79c4ce7e5c577562bb9364b74449a5
+1e467e20c53c0a57de763193c1779b3b4fcd9d4ee27c6a0e00000000c0ff
+309ffea7010000000040f1dc004129855400400000"""
+
 # Expected response for "abootimg dtb_dump" command
 dtb_dump_resp="""## DTB area contents (concat format):
  - DTB #0:
@@ -56,15 +91,21 @@ dtb_dump_resp="""## DTB area contents (concat format):
      (DTB)compatible = y2,z2"""
 # Address in RAM where to load the boot image ('abootimg' looks in $loadaddr)
 loadaddr = 0x1000
+# Address in RAM where to load the vendor boot image ('abootimg' looks in $vloadaddr)
+vloadaddr= 0x10000
 # Expected DTB #1 offset from the boot image start address
 dtb1_offset = 0x187d
+# Expected DTB offset from the vendor boot image start address
+dtb2_offset = 0x207d
 # DTB #1 start address in RAM
 dtb1_addr = loadaddr + dtb1_offset
+# DTB #2 start address in RAM
+dtb2_addr = vloadaddr + dtb2_offset
 
 class AbootimgTestDiskImage(object):
     """Disk image used by abootimg tests."""
 
-    def __init__(self, u_boot_console):
+    def __init__(self, u_boot_console, image_name, hex_img):
         """Initialize a new AbootimgDiskImage object.
 
         Args:
@@ -74,13 +115,13 @@ class AbootimgTestDiskImage(object):
             Nothing.
         """
 
-        gz_hex = u_boot_console.config.persistent_data_dir + '/boot.img.gz.hex'
-        gz = u_boot_console.config.persistent_data_dir + '/boot.img.gz'
+        gz_hex = u_boot_console.config.persistent_data_dir + '/' + image_name  + '.gz.hex'
+        gz = u_boot_console.config.persistent_data_dir + '/' + image_name + '.gz'
 
-        filename = 'boot.img'
+        filename = image_name
         persistent = u_boot_console.config.persistent_data_dir + '/' + filename
         self.path = u_boot_console.config.result_dir  + '/' + filename
-
+        u_boot_console.log.action('persistent is ' + persistent)
         with u_boot_utils.persistent_file_helper(u_boot_console.log, persistent):
             if os.path.exists(persistent):
                 u_boot_console.log.action('Disk image file ' + persistent +
@@ -89,19 +130,17 @@ class AbootimgTestDiskImage(object):
                 u_boot_console.log.action('Generating ' + persistent)
 
                 f = open(gz_hex, "w")
-                f.write(img_hex)
+                f.write(hex_img)
                 f.close()
-
                 cmd = ('xxd', '-r', '-p', gz_hex, gz)
                 u_boot_utils.run_and_log(u_boot_console, cmd)
-
                 cmd = ('gunzip', '-9', gz)
                 u_boot_utils.run_and_log(u_boot_console, cmd)
 
         cmd = ('cp', persistent, self.path)
         u_boot_utils.run_and_log(u_boot_console, cmd)
 
-gtdi = None
+gtdi1 = None
 @pytest.fixture(scope='function')
 def abootimg_disk_image(u_boot_console):
     """pytest fixture to provide a AbootimgTestDiskImage object to tests.
@@ -109,10 +148,36 @@ def abootimg_disk_image(u_boot_console):
     function-scoped. However, we don't need to actually do any function-scope
     work, so this simply returns the same object over and over each time."""
 
-    global gtdi
-    if not gtdi:
-        gtdi = AbootimgTestDiskImage(u_boot_console)
-    return gtdi
+    global gtdi1
+    if not gtdi1:
+        gtdi1 = AbootimgTestDiskImage(u_boot_console, 'boot.img', img_hex)
+    return gtdi1
+
+gtdi2 = None
+@pytest.fixture(scope='function')
+def abootimgv4_disk_image_vboot(u_boot_console):
+    """pytest fixture to provide a AbootimgTestDiskImage object to tests.
+    This is function-scoped because it uses u_boot_console, which is also
+    function-scoped. However, we don't need to actually do any function-scope
+    work, so this simply returns the same object over and over each time."""
+
+    global gtdi2
+    if not gtdi2:
+        gtdi2 = AbootimgTestDiskImage(u_boot_console, 'vendor_boot.img', vboot_img_hex)
+    return gtdi2
+
+gtdi3 = None
+@pytest.fixture(scope='function')
+def abootimgv4_disk_image_boot(u_boot_console):
+    """pytest fixture to provide a AbootimgTestDiskImage object to tests.
+    This is function-scoped because it uses u_boot_console, which is also
+    function-scoped. However, we don't need to actually do any function-scope
+    work, so this simply returns the same object over and over each time."""
+
+    global gtdi3
+    if not gtdi3:
+        gtdi3 = AbootimgTestDiskImage(u_boot_console, 'bootv4.img', boot_img_hex)
+    return gtdi3
 
 @pytest.mark.boardspec('sandbox')
 @pytest.mark.buildconfigspec('android_boot_image')
@@ -157,3 +222,48 @@ def test_abootimg(abootimg_disk_image, u_boot_console):
     u_boot_console.run_command('fdt get value v / model')
     response = u_boot_console.run_command('env print v')
     assert response == 'v=x2'
+
+@pytest.mark.boardspec('sandbox')
+@pytest.mark.buildconfigspec('android_boot_image')
+@pytest.mark.buildconfigspec('cmd_abootimg')
+@pytest.mark.buildconfigspec('cmd_fdt')
+@pytest.mark.requiredtool('xxd')
+@pytest.mark.requiredtool('gunzip')
+def test_abootimgv4(abootimgv4_disk_image_vboot, abootimgv4_disk_image_boot, u_boot_console):
+    """Test the 'abootimg' command with boot image header v4."""
+
+    cons = u_boot_console
+    cons.log.action('Loading disk image to RAM...')
+    cons.run_command('setenv loadaddr 0x%x' % (loadaddr))
+    cons.run_command('setenv vloadaddr 0x%x' % (vloadaddr))
+    cons.run_command('host load hostfs - 0x%x %s' % (vloadaddr,
+	abootimgv4_disk_image_vboot.path))
+    cons.run_command('host load hostfs - 0x%x %s' % (loadaddr,
+        abootimgv4_disk_image_boot.path))
+    cons.run_command('abootimg addr 0x%x 0x%x' % (loadaddr, vloadaddr))
+    cons.log.action('Testing \'abootimg get ver\'...')
+    response = cons.run_command('abootimg get ver')
+    assert response == "4"
+    cons.run_command('abootimg get ver v')
+    response = cons.run_command('env print v')
+    assert response == 'v=4'
+
+    cons.log.action('Testing \'abootimg get recovery_dtbo\'...')
+    response = cons.run_command('abootimg get recovery_dtbo a')
+    assert response == 'Error: header version must be >= 1 and <= 2 to get dtbo'
+
+    cons.log.action('Testing \'abootimg get dtb_load_addr\'...')
+    cons.run_command('abootimg get dtb_load_addr a')
+    response = cons.run_command('env print a')
+    assert response == 'a=11f00000'
+
+    cons.log.action('Testing \'abootimg get dtb --index\'...')
+    cons.run_command('abootimg get dtb --index=1 dtb2_start')
+    response = cons.run_command('env print dtb2_start')
+    correct_str = "dtb2_start=%x" % (dtb2_addr)
+    assert response == correct_str
+
+    cons.run_command('fdt addr $dtb2_start')
+    cons.run_command('fdt get value v / model')
+    response = cons.run_command('env print v')
+    assert response == 'v=x2'
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* [PATCH v3 19/19] Dockerfile: add mkbootimg tool
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
                   ` (17 preceding siblings ...)
  2023-02-05 23:50 ` [PATCH v3 18/19] test/py: android: extend abootimg test Safae Ouajih
@ 2023-02-05 23:50 ` Safae Ouajih
  2023-02-09 14:08 ` [PATCH v3 00/19] Support android boot image v3/v4 Mattijs Korpershoek
  2023-04-05 14:41 ` Tom Rini
  20 siblings, 0 replies; 44+ messages in thread
From: Safae Ouajih @ 2023-02-05 23:50 UTC (permalink / raw)
  To: sjg; +Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

mkbootimg tool is part of the Android project and it is
used to pack Android boot images such as boot image
and vendor_boot image.

Use the following command to run mkbootimg:
$ python3 -m mkbootimg

Add mkbootimg to the docker file

Signed-off-by: Safae Ouajih <souajih@baylibre.com>
---
 tools/docker/Dockerfile | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile
index 202a8145af..f74b866954 100644
--- a/tools/docker/Dockerfile
+++ b/tools/docker/Dockerfile
@@ -226,3 +226,7 @@ RUN /bin/echo -e "\n[toolchain-prefix]\nxtensa = /opt/2020.07/xtensa-dc233c-elf/
 RUN /bin/echo -e "\n[toolchain-alias]\nsh = sh2" >> ~/.buildman
 RUN /bin/echo -e "\nsandbox = x86_64" >> ~/.buildman
 RUN /bin/echo -e "\nx86 = i386" >> ~/.buildman;
+
+# Add mkbootimg tool
+RUN git clone https://android.googlesource.com/platform/system/tools/mkbootimg /home/uboot/mkbootimg
+ENV PYTHONPATH "${PYTHONPATH}:/home/uboot/mkbootimg"
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 17/19] doc: android: add documentation for v3,v4 boot image header
  2023-02-05 23:50 ` [PATCH v3 17/19] doc: android: add documentation for v3, v4 boot image header Safae Ouajih
@ 2023-02-07  4:02   ` Simon Glass
  2023-02-08  8:54   ` Mattijs Korpershoek
  1 sibling, 0 replies; 44+ messages in thread
From: Simon Glass @ 2023-02-07  4:02 UTC (permalink / raw)
  To: Safae Ouajih
  Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

On Sun, 5 Feb 2023 at 16:50, Safae Ouajih <souajih@baylibre.com> wrote:
>
> Update the Android documentation to describe version 3 and 4 of boot
> image header.
>
> Signed-off-by: Safae Ouajih <souajih@baylibre.com>
> ---
>  doc/android/boot-image.rst | 13 ++++++++++++-
>  1 file changed, 12 insertions(+), 1 deletion(-)
>

Reviewed-by: Simon Glass <sjg@chromium.org>

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 06/19] android: boot: move to andr_image_data structure
  2023-02-05 23:50 ` [PATCH v3 06/19] android: boot: move to andr_image_data structure Safae Ouajih
@ 2023-02-07  4:02   ` Simon Glass
  2023-02-09 16:30     ` Safae Ouajih
  2023-02-09 14:26   ` Mattijs Korpershoek
  1 sibling, 1 reply; 44+ messages in thread
From: Simon Glass @ 2023-02-07  4:02 UTC (permalink / raw)
  To: Safae Ouajih
  Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

Hi Safae,

On Sun, 5 Feb 2023 at 16:50, Safae Ouajih <souajih@baylibre.com> wrote:
>
> Move from andr_boot_img_hdr_v0 to andr_image_data
> structure to prepare for boot image header
> version 3 and 4.
>

Change log?


> Signed-off-by: Safae Ouajih <souajih@baylibre.com>
> ---
>  boot/image-android.c | 121 +++++++++++++++++++++++--------------------
>  cmd/abootimg.c       |  31 +++++------
>  2 files changed, 81 insertions(+), 71 deletions(-)
>

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 09/19] android: boot: add vendor boot image to prepare for v3,v4 support
  2023-02-05 23:50 ` [PATCH v3 09/19] android: boot: add vendor boot image to prepare for v3, v4 support Safae Ouajih
@ 2023-02-07  4:02   ` Simon Glass
  2023-02-09 17:01     ` Safae Ouajih
  2023-02-09 14:29   ` Mattijs Korpershoek
  2023-02-09 14:30   ` Mattijs Korpershoek
  2 siblings, 1 reply; 44+ messages in thread
From: Simon Glass @ 2023-02-07  4:02 UTC (permalink / raw)
  To: Safae Ouajih
  Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

On Sun, 5 Feb 2023 at 16:50, Safae Ouajih <souajih@baylibre.com> wrote:
>
> Introduce vendor boot image for version 3 and 4 of boot image header.
> The vendor boot image will hold extra information about kernel, dtb
> and ramdisk.
>
> This is done to prepare for boot image version 3 and 4 support.
>
> Signed-off-by: Safae Ouajih <souajih@baylibre.com>
> ---
>  boot/bootm.c         |  8 +++----
>  boot/image-android.c | 54 ++++++++++++++++++++++++++++----------------
>  boot/image-board.c   |  3 +--
>  boot/image-fdt.c     |  3 ++-
>  cmd/abootimg.c       |  4 ++--
>  include/image.h      | 48 ++++++++++++++++++++++++++++++---------
>  6 files changed, 81 insertions(+), 39 deletions(-)

I don't see a change log but I see some comments. Not sure what else I
said on the review.

Reviewed-by: Simon Glass <sjg@chromium.org>

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 18/19] test/py: android: extend abootimg test
  2023-02-05 23:50 ` [PATCH v3 18/19] test/py: android: extend abootimg test Safae Ouajih
@ 2023-02-07 19:02   ` Tom Rini
  2023-02-09 16:52     ` Safae Ouajih
  2023-02-27 14:15     ` Safae Ouajih
  0 siblings, 2 replies; 44+ messages in thread
From: Tom Rini @ 2023-02-07 19:02 UTC (permalink / raw)
  To: Safae Ouajih
  Cc: sjg, u-boot, sean.anderson, r.stratiienko, mkorpershoek,
	glaroque, khilman

[-- Attachment #1: Type: text/plain, Size: 1326 bytes --]

On Mon, Feb 06, 2023 at 12:50:20AM +0100, Safae Ouajih wrote:

> test_abootimg is extended to include the testing of boot images
> version 4. For this, boot.img and vendor_boot.img have been
> generated using mkbootimg tool with setting the header
> version to 4.
> 
> This tests:
> - Getting the header version using abootimg
> - Extracting the load address of the dtb
> - Extracting the dtb start address in RAM
> 
> Running test:
> $ ./test/py/test.py --bd sandbox --build -k test_abootimg
> 
> Signed-off-by: Safae Ouajih <souajih@baylibre.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>
> ---
>  test/py/tests/test_android/test_abootimg.py | 136 ++++++++++++++++++--
>  1 file changed, 123 insertions(+), 13 deletions(-)

Alright, so I don't know where the failure starts, exactly. And to make
testing this easier, there's currently the
trini/u-boot-gitlab-ci-runner:jammy-20230126-07Feb2023 container you can
use to replicate my problem. The problem is that while this test passes
in CI, with GCC, with Clang it fails, consistently:
https://source.denx.de/u-boot/u-boot/-/jobs/572239#L284
and I'm not quite sure why. I hope that building sandbox with clang and
also just trying these features out interactively will fail too, and so
debugging this will be less of a problem.

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 17/19] doc: android: add documentation for v3,v4 boot image header
  2023-02-05 23:50 ` [PATCH v3 17/19] doc: android: add documentation for v3, v4 boot image header Safae Ouajih
  2023-02-07  4:02   ` [PATCH v3 17/19] doc: android: add documentation for v3,v4 " Simon Glass
@ 2023-02-08  8:54   ` Mattijs Korpershoek
  1 sibling, 0 replies; 44+ messages in thread
From: Mattijs Korpershoek @ 2023-02-08  8:54 UTC (permalink / raw)
  To: Safae Ouajih, sjg; +Cc: u-boot, sean.anderson, r.stratiienko, glaroque, khilman

On lun., févr. 06, 2023 at 00:50, Safae Ouajih <souajih@baylibre.com> wrote:

> Update the Android documentation to describe version 3 and 4 of boot
> image header.
>
> Signed-off-by: Safae Ouajih <souajih@baylibre.com>
> ---

Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>

>  doc/android/boot-image.rst | 13 ++++++++++++-
>  1 file changed, 12 insertions(+), 1 deletion(-)
>
> diff --git a/doc/android/boot-image.rst b/doc/android/boot-image.rst
> index 71db02521b..c719b4d711 100644
> --- a/doc/android/boot-image.rst
> +++ b/doc/android/boot-image.rst
> @@ -27,11 +27,21 @@ next image headers:
>  * v2: used in devices launched with Android 10; adds ``dtb`` field, which
>    references payload containing DTB blobs (either concatenated one after the
>    other, or in Android DTBO image format)
> +* v3: used in devices launched with Android 11; adds ``vendor_boot`` partition
> +  and removes the second-stage bootloader and recovery image support. The new
> +  ``vendor_boot`` partition holds the device tree blob (DTB) and a vendor ramdisk.
> +  The generic ramdisk in ``boot`` partition is loaded immediately following
> +  the vendor ramdisk.
> +* v4: used in devices launched with Android 12; provides a boot signature in boot
> +  image header, supports multiple vendor ramdisk fragments in ``vendor_boot``
> +  partition. This version also adds a bootconfig section at the end of the vendor
> +  boot image, this section contains boot configuration parameters known at build time
> +  (see [9]_ for details).
>  
>  v2, v1 and v0 formats are backward compatible.
>  
>  The Android Boot Image format is represented by
> -:c:type:`struct andr_img_hdr <andr_img_hdr>` in U-Boot, and can be seen in
> +:c:type:`struct andr_image_data <andr_image_data>` in U-Boot, and can be seen in
>  ``include/android_image.h``. U-Boot supports booting Android Boot Image and also
>  has associated command
>  
> @@ -153,3 +163,4 @@ References
>  .. [6] :doc:`avb2`
>  .. [7] https://source.android.com/devices/bootloader
>  .. [8] https://connect.linaro.org/resources/san19/san19-217/
> +.. [9] https://source.android.com/docs/core/architecture/bootloader/implementing-bootconfig
> -- 
> 2.34.1

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 00/19] Support android boot image v3/v4
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
                   ` (18 preceding siblings ...)
  2023-02-05 23:50 ` [PATCH v3 19/19] Dockerfile: add mkbootimg tool Safae Ouajih
@ 2023-02-09 14:08 ` Mattijs Korpershoek
  2023-04-05 14:41 ` Tom Rini
  20 siblings, 0 replies; 44+ messages in thread
From: Mattijs Korpershoek @ 2023-02-09 14:08 UTC (permalink / raw)
  To: Safae Ouajih, sjg; +Cc: u-boot, sean.anderson, r.stratiienko, glaroque, khilman

On Mon, Feb 06, 2023 at 00:50, Safae Ouajih <souajih@baylibre.com> wrote:

> Hello everyone,
>
> * This is based on Roman Stratiienko's work to support boot image header version 3 and 4.
>
> * This supports the new boot image headers v3, v4 and bootconfig feature.
> https://source.android.com/docs/core/architecture/bootloader/boot-image-header
> https://source.android.com/docs/core/architecture/bootloader/implementing-bootconfig
>
> - Tested on Amlogic Khadas vim3l, a reference board for Android Open Source Project
>   https://www.khadas.com/vim3l
>
>   And on AM625 Texas Instruments board with 5.10 linux kernel
>
> Main changes :
> - New partition : vendor boot, with a specific vendor ramdisk
> - DTB is stored in the vendor boot partition
> - The generic ramdisk is placed after the vendor ramdisk
> - Bootconfig feature support
>
>
> Here is a link to see the related android boot flow changes on KHADAS vim3l as an example:
> https://gitlab.baylibre.com/baylibre/amlogic/atv/u-boot/-/commits/souajih/BootImagev4/

Re-tested the whole series on Khadas vim3l board with boot header v2.

Tested-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>

>
> Changes in v3:
> - Ddd documentation for v3,v4 boot image header
> - Add mkbootimg tool to Dockerfile
> - Add full comments for functions/structs in include/image.h and include/android_image.h
> - Add map_sysmem() to make the boot work on Sandbox
> - Rename andr_vendor_img_hdr -> andr_vnd_boot_img_hdr
>
> Changes in v2:
> - Rework parts of the code to fix the abootimg test: test_abootimg
> - Update test_abootimg to support boot image header v4
> - Remove LIBXBC library, import and adapt the functions to support bootconfig feature
> - Rename the used structures :
> 	andr_boot_img_hdr_v0_v1_v2 -> andr_boot_img_hdr_v0
>        	andr_boot_img_hdr_v3_v4 -> andr_boot_img_hdr_v3
> 	andr_vendor_boot_img_hdr_v3_v4 -> andr_vendor_img_hdr
>
> Safae Ouajih (19):
>   android: boot: rename andr_img_hdr -> andr_boot_img_hdr_v0
>   android: boot: support vendor boot image in abootimg
>   android: boot: replace android_image_check_header
>   android: boot: add boot image header v3 and v4 structures
>   android: boot: kcomp: support andr_image_data
>   android: boot: move to andr_image_data structure
>   android: boot: content print is not supported for v3,v4 header version
>   android: boot: boot image header v3,v4 do not support recovery DTBO
>   android: boot: add vendor boot image to prepare for v3,v4 support
>   android: boot: update android_image_get_data to support v3,v4
>   android: boot: ramdisk: support vendor ramdisk
>   android: boot: support extra command line
>   android: boot: update android_image_get_dtb_img_addr to support v3,v4
>   drivers: fastboot: zImage flashing is not supported for v3,v4
>   android: boot: support boot image header version 3 and 4
>   android: boot: support bootconfig
>   doc: android: add documentation for v3,v4 boot image header
>   test/py: android: extend abootimg test
>   Dockerfile: add mkbootimg tool
>
>  boot/bootm.c                                |  37 +-
>  boot/image-android.c                        | 461 ++++++++++++++++----
>  boot/image-board.c                          |  19 +-
>  boot/image-fdt.c                            |   5 +-
>  cmd/abootimg.c                              |  75 +++-
>  doc/android/boot-image.rst                  |  13 +-
>  drivers/fastboot/fb_mmc.c                   |  19 +-
>  include/android_image.h                     | 228 +++++++++-
>  include/image.h                             | 173 +++++++-
>  test/py/tests/test_android/test_abootimg.py | 136 +++++-
>  tools/docker/Dockerfile                     |   4 +
>  11 files changed, 1009 insertions(+), 161 deletions(-)
>
> --
> 2.34.1

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 06/19] android: boot: move to andr_image_data structure
  2023-02-05 23:50 ` [PATCH v3 06/19] android: boot: move to andr_image_data structure Safae Ouajih
  2023-02-07  4:02   ` Simon Glass
@ 2023-02-09 14:26   ` Mattijs Korpershoek
  2023-02-09 16:49     ` Safae Ouajih
  1 sibling, 1 reply; 44+ messages in thread
From: Mattijs Korpershoek @ 2023-02-09 14:26 UTC (permalink / raw)
  To: Safae Ouajih, sjg; +Cc: u-boot, sean.anderson, r.stratiienko, glaroque, khilman

On Mon, Feb 06, 2023 at 00:50, Safae Ouajih <souajih@baylibre.com> wrote:

> Move from andr_boot_img_hdr_v0 to andr_image_data
> structure to prepare for boot image header
> version 3 and 4.
>
> Signed-off-by: Safae Ouajih <souajih@baylibre.com>
> ---
>  boot/image-android.c | 121 +++++++++++++++++++++++--------------------
>  cmd/abootimg.c       |  31 +++++------
>  2 files changed, 81 insertions(+), 71 deletions(-)
>
> diff --git a/boot/image-android.c b/boot/image-android.c
> index ea05c1814f..15a735e230 100644
> --- a/boot/image-android.c
> +++ b/boot/image-android.c
> @@ -86,7 +86,7 @@ bool android_image_get_data(const void *boot_hdr, struct andr_image_data *data)
>  	return true;
>  }
>  
> -static ulong android_image_get_kernel_addr(const struct andr_boot_img_hdr_v0 *hdr)
> +static ulong android_image_get_kernel_addr(struct andr_image_data *img_data)
>  {
>  	/*
>  	 * All the Android tools that generate a boot.img use this
> @@ -99,17 +99,17 @@ static ulong android_image_get_kernel_addr(const struct andr_boot_img_hdr_v0 *hd
>  	 *
>  	 * Otherwise, we will return the actual value set by the user.
>  	 */
> -	if (hdr->kernel_addr == ANDROID_IMAGE_DEFAULT_KERNEL_ADDR)
> -		return (ulong)hdr + hdr->page_size;
> +	if (img_data->kernel_addr  == ANDROID_IMAGE_DEFAULT_KERNEL_ADDR)
> +		return img_data->kernel_ptr;
>  
>  	/*
>  	 * abootimg creates images where all load addresses are 0
>  	 * and we need to fix them.
>  	 */
> -	if (hdr->kernel_addr == 0 && hdr->ramdisk_addr == 0)
> +	if (img_data->kernel_addr == 0 && img_data->ramdisk_addr == 0)
>  		return env_get_ulong("kernel_addr_r", 16, 0);
>  
> -	return hdr->kernel_addr;
> +	return img_data->kernel_addr;
>  }
>  
>  /**
> @@ -130,27 +130,33 @@ static ulong android_image_get_kernel_addr(const struct andr_boot_img_hdr_v0 *hd
>  int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
>  			     ulong *os_data, ulong *os_len)
>  {
> -	u32 kernel_addr = android_image_get_kernel_addr(hdr);
> -	const struct legacy_img_hdr *ihdr = (const struct legacy_img_hdr *)
> -		((uintptr_t)hdr + hdr->page_size);
> +	struct andr_image_data img_data = {0};
> +	u32 kernel_addr;
> +	const struct legacy_img_hdr *ihdr;
> +
> +	if (!android_image_get_data(hdr, &img_data))
> +		return -EINVAL;
> +
> +	kernel_addr = android_image_get_kernel_addr(&img_data);
> +	ihdr = (const struct legacy_img_hdr *)img_data.kernel_ptr;
>  
>  	/*
>  	 * Not all Android tools use the id field for signing the image with
>  	 * sha1 (or anything) so we don't check it. It is not obvious that the
>  	 * string is null terminated so we take care of this.
>  	 */
> -	strncpy(andr_tmp_str, hdr->name, ANDR_BOOT_NAME_SIZE);
> +	strlcpy(andr_tmp_str, img_data.image_name, ANDR_BOOT_NAME_SIZE);

While strlcpy is probably better than strncpy here, it has nothing to do
with this change. Either mention in the commit message that this is
intentional or drop this change.

Note that strncpy was used in v2 of this patch. Why change it to strlcpy here?

>  	andr_tmp_str[ANDR_BOOT_NAME_SIZE] = '\0';
>  	if (strlen(andr_tmp_str))
>  		printf("Android's image name: %s\n", andr_tmp_str);
>  
>  	printf("Kernel load addr 0x%08x size %u KiB\n",
> -	       kernel_addr, DIV_ROUND_UP(hdr->kernel_size, 1024));
> +	       kernel_addr, DIV_ROUND_UP(img_data.kernel_size, 1024));
>  
>  	int len = 0;
> -	if (*hdr->cmdline) {
> -		printf("Kernel command line: %s\n", hdr->cmdline);
> -		len += strlen(hdr->cmdline);
> +	if (*img_data.kcmdline) {
> +		printf("Kernel command line: %s\n", img_data.kcmdline);
> +		len += strlen(img_data.kcmdline);
>  	}
>  
>  	char *bootargs = env_get("bootargs");
> @@ -168,8 +174,9 @@ int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
>  		strcpy(newbootargs, bootargs);
>  		strcat(newbootargs, " ");
>  	}
> -	if (*hdr->cmdline)
> -		strcat(newbootargs, hdr->cmdline);
> +
> +	if (*img_data.kcmdline)
> +		strcat(newbootargs, img_data.kcmdline);
>  
>  	env_set("bootargs", newbootargs);
>  
> @@ -177,15 +184,14 @@ int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
>  		if (image_get_magic(ihdr) == IH_MAGIC) {
>  			*os_data = image_get_data(ihdr);
>  		} else {
> -			*os_data = (ulong)hdr;
> -			*os_data += hdr->page_size;
> +			*os_data = img_data.kernel_ptr;
>  		}
>  	}
>  	if (os_len) {
>  		if (image_get_magic(ihdr) == IH_MAGIC)
>  			*os_len = image_get_data_size(ihdr);
>  		else
> -			*os_len = hdr->kernel_size;
> +			*os_len = img_data.kernel_size;
>  	}
>  	return 0;
>  }
> @@ -197,30 +203,25 @@ bool is_android_boot_image_header(const struct andr_boot_img_hdr_v0 *hdr)
>  
>  ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr)
>  {
> -	ulong end;
> -
> -	/*
> -	 * The header takes a full page, the remaining components are aligned
> -	 * on page boundary
> -	 */
> -	end = (ulong)hdr;
> -	end += hdr->page_size;
> -	end += ALIGN(hdr->kernel_size, hdr->page_size);
> -	end += ALIGN(hdr->ramdisk_size, hdr->page_size);
> -	end += ALIGN(hdr->second_size, hdr->page_size);
> +	struct andr_image_data img_data;
>  
> -	if (hdr->header_version >= 1)
> -		end += ALIGN(hdr->recovery_dtbo_size, hdr->page_size);
> +	if (!android_image_get_data(hdr, &img_data))
> +		return -EINVAL;
>  
> -	if (hdr->header_version >= 2)
> -		end += ALIGN(hdr->dtb_size, hdr->page_size);
> +	if (img_data.header_version > 2)
> +		return 0;
>  
> -	return end;
> +	return img_data.boot_img_total_size;
>  }
>  
>  ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr)
>  {
> -	return android_image_get_kernel_addr(hdr);
> +	struct andr_image_data img_data;
> +
> +	if (!android_image_get_data(hdr, &img_data))
> +		return -EINVAL;
> +
> +	return android_image_get_kernel_addr(&img_data);
>  }
>  
>  ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr)
> @@ -243,38 +244,43 @@ ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr)
>  int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
>  			      ulong *rd_data, ulong *rd_len)
>  {
> -	if (!hdr->ramdisk_size) {
> +	struct andr_image_data img_data = {0};
> +
> +	if (!android_image_get_data(hdr, &img_data))
> +		return -EINVAL;
> +
> +	if (!img_data.ramdisk_size) {
>  		*rd_data = *rd_len = 0;
>  		return -1;
>  	}
>  
> -	printf("RAM disk load addr 0x%08x size %u KiB\n",
> -	       hdr->ramdisk_addr, DIV_ROUND_UP(hdr->ramdisk_size, 1024));
> +	printf("RAM disk load addr 0x%08lx size %u KiB\n",
> +	       img_data.ramdisk_ptr, DIV_ROUND_UP(img_data.ramdisk_size, 1024));
>  
> -	*rd_data = (unsigned long)hdr;
> -	*rd_data += hdr->page_size;
> -	*rd_data += ALIGN(hdr->kernel_size, hdr->page_size);
> +	*rd_data = img_data.ramdisk_ptr;
>  
> -	*rd_len = hdr->ramdisk_size;
> +	*rd_len = img_data.ramdisk_size;
>  	return 0;
>  }
>  
>  int android_image_get_second(const struct andr_boot_img_hdr_v0 *hdr,
>  			     ulong *second_data, ulong *second_len)
>  {
> -	if (!hdr->second_size) {
> +	struct andr_image_data img_data;
> +
> +	if (!android_image_get_data(hdr, &img_data))
> +		return -EINVAL;
> +
> +	if (!img_data.second_size) {
>  		*second_data = *second_len = 0;
>  		return -1;
>  	}
>  
> -	*second_data = (unsigned long)hdr;
> -	*second_data += hdr->page_size;
> -	*second_data += ALIGN(hdr->kernel_size, hdr->page_size);
> -	*second_data += ALIGN(hdr->ramdisk_size, hdr->page_size);
> +	*second_data = img_data.second_ptr;
>  
>  	printf("second address is 0x%lx\n",*second_data);
>  
> -	*second_len = hdr->second_size;
> +	*second_len = img_data.second_size;
>  	return 0;
>  }
>  
> @@ -401,17 +407,22 @@ exit:
>  bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
>  				    u32 *size)
>  {
> +	struct andr_image_data img_data;
>  	const struct andr_boot_img_hdr_v0 *hdr;
> -	bool res;
> +
> +	hdr = map_sysmem(hdr_addr, sizeof(*hdr));
> +	if (!android_image_get_data(hdr, &img_data)) {
> +		unmap_sysmem(hdr);
> +		return false;
> +	}
> +	unmap_sysmem(hdr);
> +
>  	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;
> -
> +	android_image_get_dtb_img_addr(hdr_addr, &dtb_img_addr);

Why drop the error handling here?
Shouldn't we bail out early if this fails?

>  	/* 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,
> @@ -419,9 +430,7 @@ bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
>  	}
>  
>  	/* 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);
> +	dtb_img_size = img_data.dtb_size;
>  	i = 0;
>  	dtb_addr = dtb_img_addr;
>  	while (dtb_addr < dtb_img_addr + dtb_img_size) {
> diff --git a/cmd/abootimg.c b/cmd/abootimg.c
> index b5cfb141ef..f04a7c7c8e 100644
> --- a/cmd/abootimg.c
> +++ b/cmd/abootimg.c
> @@ -66,33 +66,34 @@ static int abootimg_get_recovery_dtbo(int argc, char *const argv[])
>  
>  static int abootimg_get_dtb_load_addr(int argc, char *const argv[])
>  {
> -	const struct andr_boot_img_hdr_v0 *hdr;
> -	int res = CMD_RET_SUCCESS;
> -
>  	if (argc > 1)
>  		return CMD_RET_USAGE;
> +	struct andr_image_data img_data = {0};
> +	const struct andr_boot_img_hdr_v0 *hdr;

Don't move this around. keep the variable declarations at the beginning
of the function as done in the other functions.

>  
>  	hdr = map_sysmem(abootimg_addr(), sizeof(*hdr));
> -	if (!is_android_boot_image_header(hdr)) {
> -		printf("Error: Boot Image header is incorrect\n");
> -		res = CMD_RET_FAILURE;
> -		goto exit;
> +	if (!android_image_get_data(hdr, &img_data)) {
> +		unmap_sysmem(hdr);
> +		return CMD_RET_FAILURE;
>  	}
> +	unmap_sysmem(hdr);
>  
> -	if (hdr->header_version < 2) {
> +	if (img_data.header_version < 2) {
>  		printf("Error: header_version must be >= 2 for this\n");
> -		res = CMD_RET_FAILURE;
> -		goto exit;
> +		return CMD_RET_FAILURE;
> +	}
> +
> +	if (!img_data.dtb_load_addr) {
> +		printf("Error: failed to read dtb_load_addr\n");
> +		return CMD_RET_FAILURE;
>  	}
>  
>  	if (argc == 0)
> -		printf("%lx\n", (ulong)hdr->dtb_addr);
> +		printf("%lx\n", (ulong)img_data.dtb_load_addr);
>  	else
> -		env_set_hex(argv[0], (ulong)hdr->dtb_addr);
> +		env_set_hex(argv[0], (ulong)img_data.dtb_load_addr);
>  
> -exit:
> -	unmap_sysmem(hdr);
> -	return res;
> +	return CMD_RET_SUCCESS;
>  }
>  
>  static int abootimg_get_dtb_by_index(int argc, char *const argv[])
> -- 
> 2.34.1

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 09/19] android: boot: add vendor boot image to prepare for v3,v4 support
  2023-02-05 23:50 ` [PATCH v3 09/19] android: boot: add vendor boot image to prepare for v3, v4 support Safae Ouajih
  2023-02-07  4:02   ` [PATCH v3 09/19] android: boot: add vendor boot image to prepare for v3,v4 support Simon Glass
@ 2023-02-09 14:29   ` Mattijs Korpershoek
  2023-02-09 14:30   ` Mattijs Korpershoek
  2 siblings, 0 replies; 44+ messages in thread
From: Mattijs Korpershoek @ 2023-02-09 14:29 UTC (permalink / raw)
  To: Safae Ouajih, sjg; +Cc: u-boot, sean.anderson, r.stratiienko, glaroque, khilman

On Mon, Feb 06, 2023 at 00:50, Safae Ouajih <souajih@baylibre.com> wrote:

> Introduce vendor boot image for version 3 and 4 of boot image header.
> The vendor boot image will hold extra information about kernel, dtb
> and ramdisk.
>
> This is done to prepare for boot image version 3 and 4 support.
>
> Signed-off-by: Safae Ouajih <souajih@baylibre.com>

Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>

> ---
>  boot/bootm.c         |  8 +++----
>  boot/image-android.c | 54 ++++++++++++++++++++++++++++----------------
>  boot/image-board.c   |  3 +--
>  boot/image-fdt.c     |  3 ++-
>  cmd/abootimg.c       |  4 ++--
>  include/image.h      | 48 ++++++++++++++++++++++++++++++---------
>  6 files changed, 81 insertions(+), 39 deletions(-)
>
> diff --git a/boot/bootm.c b/boot/bootm.c
> index 15fce8ad95..a58e6f391e 100644
> --- a/boot/bootm.c
> +++ b/boot/bootm.c
> @@ -182,11 +182,11 @@ static int bootm_find_os(struct cmd_tbl *cmdtp, int flag, int argc,
>  #ifdef CONFIG_ANDROID_BOOT_IMAGE
>  	case IMAGE_FORMAT_ANDROID:
>  		images.os.type = IH_TYPE_KERNEL;
> -		images.os.comp = android_image_get_kcomp(os_hdr);
> +		images.os.comp = android_image_get_kcomp(os_hdr, NULL);
>  		images.os.os = IH_OS_LINUX;
>  
> -		images.os.end = android_image_get_end(os_hdr);
> -		images.os.load = android_image_get_kload(os_hdr);
> +		images.os.end = android_image_get_end(os_hdr, NULL);
> +		images.os.load = android_image_get_kload(os_hdr, NULL);
>  		images.ep = images.os.load;
>  		ep_found = true;
>  		break;
> @@ -965,7 +965,7 @@ static const void *boot_get_kernel(struct cmd_tbl *cmdtp, int flag, int argc,
>  #ifdef CONFIG_ANDROID_BOOT_IMAGE
>  	case IMAGE_FORMAT_ANDROID:
>  		printf("## Booting Android Image at 0x%08lx ...\n", img_addr);
> -		if (android_image_get_kernel(buf, images->verify,
> +		if (android_image_get_kernel(buf, NULL, images->verify,
>  					     os_data, os_len))
>  			return NULL;
>  		break;
> diff --git a/boot/image-android.c b/boot/image-android.c
> index 748fd212ae..f16eebff49 100644
> --- a/boot/image-android.c
> +++ b/boot/image-android.c
> @@ -66,7 +66,8 @@ static void android_boot_image_v0_v1_v2_parse_hdr(const struct andr_boot_img_hdr
>  	data->boot_img_total_size = end - (ulong)hdr;
>  }
>  
> -bool android_image_get_data(const void *boot_hdr, struct andr_image_data *data)
> +bool android_image_get_data(const void *boot_hdr, const void *vendor_boot_hdr,
> +			    struct andr_image_data *data)
>  {
>  	if (!boot_hdr || !data) {
>  		printf("boot_hdr or data params can't be NULL\n");
> @@ -114,8 +115,10 @@ static ulong android_image_get_kernel_addr(struct andr_image_data *img_data)
>  
>  /**
>   * android_image_get_kernel() - processes kernel part of Android boot images
> - * @hdr:	Pointer to image header, which is at the start
> + * @hdr:	Pointer to boot image header, which is at the start
>   *			of the image.
> + * @vendor_boot_img:	Pointer to vendor boot image header, which is at the
> + *				start of the image.
>   * @verify:	Checksum verification flag. Currently unimplemented.
>   * @os_data:	Pointer to a ulong variable, will hold os data start
>   *			address.
> @@ -127,14 +130,15 @@ static ulong android_image_get_kernel_addr(struct andr_image_data *img_data)
>   * Return: Zero, os start address and length on success,
>   *		otherwise on failure.
>   */
> -int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
> +int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr,
> +			     const void *vendor_boot_img, int verify,
>  			     ulong *os_data, ulong *os_len)
>  {
>  	struct andr_image_data img_data = {0};
>  	u32 kernel_addr;
>  	const struct legacy_img_hdr *ihdr;
>  
> -	if (!android_image_get_data(hdr, &img_data))
> +	if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
>  		return -EINVAL;
>  
>  	kernel_addr = android_image_get_kernel_addr(&img_data);
> @@ -201,11 +205,12 @@ bool is_android_boot_image_header(const struct andr_boot_img_hdr_v0 *hdr)
>  	return !memcmp(ANDR_BOOT_MAGIC, hdr, ANDR_BOOT_MAGIC_SIZE);
>  }
>  
> -ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr)
> +ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr,
> +			    const void *vendor_boot_img)
>  {
>  	struct andr_image_data img_data;
>  
> -	if (!android_image_get_data(hdr, &img_data))
> +	if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
>  		return -EINVAL;
>  
>  	if (img_data.header_version > 2)
> @@ -214,22 +219,24 @@ ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr)
>  	return img_data.boot_img_total_size;
>  }
>  
> -ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr)
> +ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr,
> +			      const void *vendor_boot_img)
>  {
>  	struct andr_image_data img_data;
>  
> -	if (!android_image_get_data(hdr, &img_data))
> +	if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
>  		return -EINVAL;
>  
>  	return android_image_get_kernel_addr(&img_data);
>  }
>  
> -ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr)
> +ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr,
> +			      const void *vendor_boot_img)
>  {
>  	struct andr_image_data img_data;
>  	const void *p;
>  
> -	if (!android_image_get_data(hdr, &img_data))
> +	if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
>  		return -EINVAL;
>  
>  	p = (const void *)img_data.kernel_ptr;
> @@ -242,11 +249,11 @@ ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr)
>  }
>  
>  int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
> -			      ulong *rd_data, ulong *rd_len)
> +			      const void *vendor_boot_img, ulong *rd_data, ulong *rd_len)
>  {
>  	struct andr_image_data img_data = {0};
>  
> -	if (!android_image_get_data(hdr, &img_data))
> +	if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
>  		return -EINVAL;
>  
>  	if (!img_data.ramdisk_size) {
> @@ -268,7 +275,7 @@ int android_image_get_second(const struct andr_boot_img_hdr_v0 *hdr,
>  {
>  	struct andr_image_data img_data;
>  
> -	if (!android_image_get_data(hdr, &img_data))
> +	if (!android_image_get_data(hdr, NULL, &img_data))
>  		return -EINVAL;
>  
>  	if (!img_data.second_size) {
> @@ -348,11 +355,12 @@ exit:
>  /**
>   * android_image_get_dtb_img_addr() - Get the address of DTB area in boot image.
>   * @hdr_addr: Boot image header address
> + * @vhdr_addr: Vendor 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)
> +static bool android_image_get_dtb_img_addr(ulong hdr_addr, ulong vhdr_addr, ulong *addr)
>  {
>  	const struct andr_boot_img_hdr_v0 *hdr;
>  	ulong dtb_img_addr;
> @@ -395,6 +403,7 @@ exit:
>  /**
>   * android_image_get_dtb_by_index() - Get address and size of blob in DTB area.
>   * @hdr_addr: Boot image header address
> + * @vendor_boot_img: Pointer to vendor boot image header, which is at the start of the image.
>   * @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
> @@ -404,17 +413,24 @@ exit:
>   *
>   * Return: true on success or false on error.
>   */
> -bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
> -				    u32 *size)
> +bool android_image_get_dtb_by_index(ulong hdr_addr, ulong vendor_boot_img,
> +				    u32 index, ulong *addr, u32 *size)
>  {
>  	struct andr_image_data img_data;
>  	const struct andr_boot_img_hdr_v0 *hdr;
> +	const struct andr_vnd_boot_img_hdr *vhdr;
>  
>  	hdr = map_sysmem(hdr_addr, sizeof(*hdr));
> -	if (!android_image_get_data(hdr, &img_data)) {
> +	if (vendor_boot_img != -1)
> +		vhdr = map_sysmem(vendor_boot_img, sizeof(*vhdr));
> +	if (!android_image_get_data(hdr, vhdr, &img_data)) {
> +		if (vendor_boot_img != -1)
> +			unmap_sysmem(vhdr);
>  		unmap_sysmem(hdr);
>  		return false;
>  	}
> +	if (vendor_boot_img != -1)
> +		unmap_sysmem(vhdr);
>  	unmap_sysmem(hdr);
>  
>  	ulong dtb_img_addr;	/* address of DTB part in boot image */
> @@ -422,7 +438,7 @@ bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
>  	ulong dtb_addr;		/* address of DTB blob with specified index  */
>  	u32 i;			/* index iterator */
>  
> -	android_image_get_dtb_img_addr(hdr_addr, &dtb_img_addr);
> +	android_image_get_dtb_img_addr(hdr_addr, vendor_boot_img, &dtb_img_addr);
>  	/* 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,
> @@ -578,7 +594,7 @@ bool android_image_print_dtb_contents(ulong hdr_addr)
>  	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);
> +	res = android_image_get_dtb_img_addr(hdr_addr, 0, &dtb_img_addr);
>  	if (!res)
>  		return false;
>  
> diff --git a/boot/image-board.c b/boot/image-board.c
> index 9295b6d0c8..b6c9bbe8f5 100644
> --- a/boot/image-board.c
> +++ b/boot/image-board.c
> @@ -428,8 +428,7 @@ static int select_ramdisk(struct bootm_headers *images, const char *select, u8 a
>  		if (IS_ENABLED(CONFIG_ANDROID_BOOT_IMAGE)) {
>  			void *ptr = map_sysmem(images->os.start, 0);
>  			int ret;
> -
> -			ret = android_image_get_ramdisk(ptr, rd_datap, rd_lenp);
> +			ret = android_image_get_ramdisk(ptr, NULL, rd_datap, rd_lenp);
>  			unmap_sysmem(ptr);
>  			if (ret)
>  				return ret;
> diff --git a/boot/image-fdt.c b/boot/image-fdt.c
> index 1181cb60f0..f270d00a5f 100644
> --- a/boot/image-fdt.c
> +++ b/boot/image-fdt.c
> @@ -536,7 +536,8 @@ int boot_get_fdt(int flag, int argc, char *const argv[], uint8_t arch,
>  		 * Firstly check if this android boot image has dtb field.
>  		 */
>  		dtb_idx = (u32)env_get_ulong("adtb_idx", 10, 0);
> -		if (android_image_get_dtb_by_index((ulong)hdr, dtb_idx, &fdt_addr, &fdt_size)) {
> +		if (android_image_get_dtb_by_index((ulong)hdr, 0,
> +						   dtb_idx, &fdt_addr, &fdt_size)) {
>  			fdt_blob = (char *)map_sysmem(fdt_addr, 0);
>  			if (fdt_check_header(fdt_blob))
>  				goto no_fdt;
> diff --git a/cmd/abootimg.c b/cmd/abootimg.c
> index f04a7c7c8e..4d6cf0fa3e 100644
> --- a/cmd/abootimg.c
> +++ b/cmd/abootimg.c
> @@ -72,7 +72,7 @@ static int abootimg_get_dtb_load_addr(int argc, char *const argv[])
>  	const struct andr_boot_img_hdr_v0 *hdr;
>  
>  	hdr = map_sysmem(abootimg_addr(), sizeof(*hdr));
> -	if (!android_image_get_data(hdr, &img_data)) {
> +	if (!android_image_get_data(hdr, NULL, &img_data)) {
>  		unmap_sysmem(hdr);
>  		return CMD_RET_FAILURE;
>  	}
> @@ -119,7 +119,7 @@ static int abootimg_get_dtb_by_index(int argc, char *const argv[])
>  		return CMD_RET_FAILURE;
>  	}
>  
> -	if (!android_image_get_dtb_by_index(abootimg_addr(), num,
> +	if (!android_image_get_dtb_by_index(abootimg_addr(), 0, num,
>  					    &addr, &size)) {
>  		return CMD_RET_FAILURE;
>  	}
> diff --git a/include/image.h b/include/image.h
> index 4bf6c98ced..f84c03f08f 100644
> --- a/include/image.h
> +++ b/include/image.h
> @@ -1736,16 +1736,19 @@ struct cipher_algo *image_get_cipher_algo(const char *full_name);
>  struct andr_image_data;
>  
>  /**
> - * android_image_get_data() - Parse Android boot image
> + * android_image_get_data() - Parse Android boot images
>   *
> - * This is used to parse boot image header into andr_image_data
> - * generic structure.
> + * This is used to parse boot and vendor-boot header into
> + * andr_image_data generic structure.
>   *
>   * @boot_hdr: Pointer to boot image header
> + * @vendor_boot_hdr: Pointer to vendor boot image header
>   * @data: Pointer to generic boot format structure
>   * Return: true if succeeded, false otherwise
>   */
> -bool android_image_get_data(const void *boot_hdr, struct andr_image_data *data);
> +bool android_image_get_data(const void *boot_hdr, const void *vendor_boot_hdr,
> +			    struct andr_image_data *data);
> +
>  struct andr_boot_img_hdr_v0;
>  
>  /**
> @@ -1756,6 +1759,7 @@ struct andr_boot_img_hdr_v0;
>   *
>   * @hdr:	Pointer to image header, which is at the start
>   *			of the image.
> + * @vendor_boot_img : Pointer to vendor boot image header
>   * @verify:	Checksum verification flag. Currently unimplemented.
>   * @os_data:	Pointer to a ulong variable, will hold os data start
>   *			address.
> @@ -1763,7 +1767,8 @@ struct andr_boot_img_hdr_v0;
>   * Return: Zero, os start address and length on success,
>   *		otherwise on failure.
>   */
> -int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
> +int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr,
> +			     const void *vendor_boot_img, int verify,
>  			     ulong *os_data, ulong *os_len);
>  
>  /**
> @@ -1772,12 +1777,13 @@ int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
>   * This extracts the load address of the ramdisk and its size
>   *
>   * @hdr:	Pointer to image header
> + * @vendor_boot_img : Pointer to vendor boot image header
>   * @rd_data:	Pointer to a ulong variable, will hold ramdisk address
>   * @rd_len:	Pointer to a ulong variable, will hold ramdisk length
>   * Return: 0 if succeeded, -1 if ramdisk size is 0
>   */
>  int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
> -			      ulong *rd_data, ulong *rd_len);
> +			      const void *vendor_boot_img, ulong *rd_data, ulong *rd_len);
>  
>  /**
>   * android_image_get_second() - Extracts the secondary bootloader address
> @@ -1793,8 +1799,22 @@ int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
>  int android_image_get_second(const struct andr_boot_img_hdr_v0 *hdr,
>  			     ulong *second_data, ulong *second_len);
>  bool android_image_get_dtbo(ulong hdr_addr, ulong *addr, u32 *size);
> -bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
> -				    u32 *size);
> +
> +/**
> + * android_image_get_dtb_by_index() - Get address and size of blob in DTB area.
> + * @hdr_addr: Boot image header address
> + * @vendor_boot_img: Pointer to vendor boot image header, which is at the start of the image.
> + * @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.
> + */
> +bool android_image_get_dtb_by_index(ulong hdr_addr, ulong vendor_boot_img,
> +				    u32 index, ulong *addr, u32 *size);
>  
>  /**
>   * android_image_get_end() - Get the end of Android boot image
> @@ -1802,9 +1822,11 @@ bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
>   * This returns the end address of Android boot image address
>   *
>   * @hdr: Pointer to image header
> + * @vendor_boot_img : Pointer to vendor boot image header
>   * Return: The end address of Android boot image
>   */
> -ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr);
> +ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr,
> +			    const void *vendor_boot_img);
>  
>  /**
>   * android_image_get_kload() - Get the kernel load address
> @@ -1813,9 +1835,11 @@ ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr);
>   * from the boot image header or the "kernel_addr_r" environment variable
>   *
>   * @hdr: Pointer to image header
> + * @vendor_boot_img : Pointer to vendor boot image header
>   * Return: The kernel load address
>   */
> -ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr);
> +ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr,
> +			      const void *vendor_boot_img);
>  
>  /**
>   * android_image_get_kcomp() - Get kernel compression type
> @@ -1823,9 +1847,11 @@ ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr);
>   * This gets the kernel compression type from the boot image header
>   *
>   * @hdr: Pointer to image header
> + * @vendor_boot_img : Pointer to vendor boot image header
>   * Return: Kernel compression type
>   */
> -ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr);
> +ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr,
> +			      const void *vendor_boot_img);
>  
>  /**
>   * android_print_contents() - Prints out the contents of the Android format image
> -- 
> 2.34.1

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 09/19] android: boot: add vendor boot image to prepare for v3,v4 support
  2023-02-05 23:50 ` [PATCH v3 09/19] android: boot: add vendor boot image to prepare for v3, v4 support Safae Ouajih
  2023-02-07  4:02   ` [PATCH v3 09/19] android: boot: add vendor boot image to prepare for v3,v4 support Simon Glass
  2023-02-09 14:29   ` Mattijs Korpershoek
@ 2023-02-09 14:30   ` Mattijs Korpershoek
  2 siblings, 0 replies; 44+ messages in thread
From: Mattijs Korpershoek @ 2023-02-09 14:30 UTC (permalink / raw)
  To: Safae Ouajih, sjg; +Cc: u-boot, sean.anderson, r.stratiienko, glaroque, khilman

On Mon, Feb 06, 2023 at 00:50, Safae Ouajih <souajih@baylibre.com> wrote:

> Introduce vendor boot image for version 3 and 4 of boot image header.
> The vendor boot image will hold extra information about kernel, dtb
> and ramdisk.
>
> This is done to prepare for boot image version 3 and 4 support.
>
> Signed-off-by: Safae Ouajih <souajih@baylibre.com>

Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>

> ---
>  boot/bootm.c         |  8 +++----
>  boot/image-android.c | 54 ++++++++++++++++++++++++++++----------------
>  boot/image-board.c   |  3 +--
>  boot/image-fdt.c     |  3 ++-
>  cmd/abootimg.c       |  4 ++--
>  include/image.h      | 48 ++++++++++++++++++++++++++++++---------
>  6 files changed, 81 insertions(+), 39 deletions(-)
>
> diff --git a/boot/bootm.c b/boot/bootm.c
> index 15fce8ad95..a58e6f391e 100644
> --- a/boot/bootm.c
> +++ b/boot/bootm.c
> @@ -182,11 +182,11 @@ static int bootm_find_os(struct cmd_tbl *cmdtp, int flag, int argc,
>  #ifdef CONFIG_ANDROID_BOOT_IMAGE
>  	case IMAGE_FORMAT_ANDROID:
>  		images.os.type = IH_TYPE_KERNEL;
> -		images.os.comp = android_image_get_kcomp(os_hdr);
> +		images.os.comp = android_image_get_kcomp(os_hdr, NULL);
>  		images.os.os = IH_OS_LINUX;
>  
> -		images.os.end = android_image_get_end(os_hdr);
> -		images.os.load = android_image_get_kload(os_hdr);
> +		images.os.end = android_image_get_end(os_hdr, NULL);
> +		images.os.load = android_image_get_kload(os_hdr, NULL);
>  		images.ep = images.os.load;
>  		ep_found = true;
>  		break;
> @@ -965,7 +965,7 @@ static const void *boot_get_kernel(struct cmd_tbl *cmdtp, int flag, int argc,
>  #ifdef CONFIG_ANDROID_BOOT_IMAGE
>  	case IMAGE_FORMAT_ANDROID:
>  		printf("## Booting Android Image at 0x%08lx ...\n", img_addr);
> -		if (android_image_get_kernel(buf, images->verify,
> +		if (android_image_get_kernel(buf, NULL, images->verify,
>  					     os_data, os_len))
>  			return NULL;
>  		break;
> diff --git a/boot/image-android.c b/boot/image-android.c
> index 748fd212ae..f16eebff49 100644
> --- a/boot/image-android.c
> +++ b/boot/image-android.c
> @@ -66,7 +66,8 @@ static void android_boot_image_v0_v1_v2_parse_hdr(const struct andr_boot_img_hdr
>  	data->boot_img_total_size = end - (ulong)hdr;
>  }
>  
> -bool android_image_get_data(const void *boot_hdr, struct andr_image_data *data)
> +bool android_image_get_data(const void *boot_hdr, const void *vendor_boot_hdr,
> +			    struct andr_image_data *data)
>  {
>  	if (!boot_hdr || !data) {
>  		printf("boot_hdr or data params can't be NULL\n");
> @@ -114,8 +115,10 @@ static ulong android_image_get_kernel_addr(struct andr_image_data *img_data)
>  
>  /**
>   * android_image_get_kernel() - processes kernel part of Android boot images
> - * @hdr:	Pointer to image header, which is at the start
> + * @hdr:	Pointer to boot image header, which is at the start
>   *			of the image.
> + * @vendor_boot_img:	Pointer to vendor boot image header, which is at the
> + *				start of the image.
>   * @verify:	Checksum verification flag. Currently unimplemented.
>   * @os_data:	Pointer to a ulong variable, will hold os data start
>   *			address.
> @@ -127,14 +130,15 @@ static ulong android_image_get_kernel_addr(struct andr_image_data *img_data)
>   * Return: Zero, os start address and length on success,
>   *		otherwise on failure.
>   */
> -int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
> +int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr,
> +			     const void *vendor_boot_img, int verify,
>  			     ulong *os_data, ulong *os_len)
>  {
>  	struct andr_image_data img_data = {0};
>  	u32 kernel_addr;
>  	const struct legacy_img_hdr *ihdr;
>  
> -	if (!android_image_get_data(hdr, &img_data))
> +	if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
>  		return -EINVAL;
>  
>  	kernel_addr = android_image_get_kernel_addr(&img_data);
> @@ -201,11 +205,12 @@ bool is_android_boot_image_header(const struct andr_boot_img_hdr_v0 *hdr)
>  	return !memcmp(ANDR_BOOT_MAGIC, hdr, ANDR_BOOT_MAGIC_SIZE);
>  }
>  
> -ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr)
> +ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr,
> +			    const void *vendor_boot_img)
>  {
>  	struct andr_image_data img_data;
>  
> -	if (!android_image_get_data(hdr, &img_data))
> +	if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
>  		return -EINVAL;
>  
>  	if (img_data.header_version > 2)
> @@ -214,22 +219,24 @@ ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr)
>  	return img_data.boot_img_total_size;
>  }
>  
> -ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr)
> +ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr,
> +			      const void *vendor_boot_img)
>  {
>  	struct andr_image_data img_data;
>  
> -	if (!android_image_get_data(hdr, &img_data))
> +	if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
>  		return -EINVAL;
>  
>  	return android_image_get_kernel_addr(&img_data);
>  }
>  
> -ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr)
> +ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr,
> +			      const void *vendor_boot_img)
>  {
>  	struct andr_image_data img_data;
>  	const void *p;
>  
> -	if (!android_image_get_data(hdr, &img_data))
> +	if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
>  		return -EINVAL;
>  
>  	p = (const void *)img_data.kernel_ptr;
> @@ -242,11 +249,11 @@ ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr)
>  }
>  
>  int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
> -			      ulong *rd_data, ulong *rd_len)
> +			      const void *vendor_boot_img, ulong *rd_data, ulong *rd_len)
>  {
>  	struct andr_image_data img_data = {0};
>  
> -	if (!android_image_get_data(hdr, &img_data))
> +	if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
>  		return -EINVAL;
>  
>  	if (!img_data.ramdisk_size) {
> @@ -268,7 +275,7 @@ int android_image_get_second(const struct andr_boot_img_hdr_v0 *hdr,
>  {
>  	struct andr_image_data img_data;
>  
> -	if (!android_image_get_data(hdr, &img_data))
> +	if (!android_image_get_data(hdr, NULL, &img_data))
>  		return -EINVAL;
>  
>  	if (!img_data.second_size) {
> @@ -348,11 +355,12 @@ exit:
>  /**
>   * android_image_get_dtb_img_addr() - Get the address of DTB area in boot image.
>   * @hdr_addr: Boot image header address
> + * @vhdr_addr: Vendor 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)
> +static bool android_image_get_dtb_img_addr(ulong hdr_addr, ulong vhdr_addr, ulong *addr)
>  {
>  	const struct andr_boot_img_hdr_v0 *hdr;
>  	ulong dtb_img_addr;
> @@ -395,6 +403,7 @@ exit:
>  /**
>   * android_image_get_dtb_by_index() - Get address and size of blob in DTB area.
>   * @hdr_addr: Boot image header address
> + * @vendor_boot_img: Pointer to vendor boot image header, which is at the start of the image.
>   * @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
> @@ -404,17 +413,24 @@ exit:
>   *
>   * Return: true on success or false on error.
>   */
> -bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
> -				    u32 *size)
> +bool android_image_get_dtb_by_index(ulong hdr_addr, ulong vendor_boot_img,
> +				    u32 index, ulong *addr, u32 *size)
>  {
>  	struct andr_image_data img_data;
>  	const struct andr_boot_img_hdr_v0 *hdr;
> +	const struct andr_vnd_boot_img_hdr *vhdr;
>  
>  	hdr = map_sysmem(hdr_addr, sizeof(*hdr));
> -	if (!android_image_get_data(hdr, &img_data)) {
> +	if (vendor_boot_img != -1)
> +		vhdr = map_sysmem(vendor_boot_img, sizeof(*vhdr));
> +	if (!android_image_get_data(hdr, vhdr, &img_data)) {
> +		if (vendor_boot_img != -1)
> +			unmap_sysmem(vhdr);
>  		unmap_sysmem(hdr);
>  		return false;
>  	}
> +	if (vendor_boot_img != -1)
> +		unmap_sysmem(vhdr);
>  	unmap_sysmem(hdr);
>  
>  	ulong dtb_img_addr;	/* address of DTB part in boot image */
> @@ -422,7 +438,7 @@ bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
>  	ulong dtb_addr;		/* address of DTB blob with specified index  */
>  	u32 i;			/* index iterator */
>  
> -	android_image_get_dtb_img_addr(hdr_addr, &dtb_img_addr);
> +	android_image_get_dtb_img_addr(hdr_addr, vendor_boot_img, &dtb_img_addr);
>  	/* 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,
> @@ -578,7 +594,7 @@ bool android_image_print_dtb_contents(ulong hdr_addr)
>  	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);
> +	res = android_image_get_dtb_img_addr(hdr_addr, 0, &dtb_img_addr);
>  	if (!res)
>  		return false;
>  
> diff --git a/boot/image-board.c b/boot/image-board.c
> index 9295b6d0c8..b6c9bbe8f5 100644
> --- a/boot/image-board.c
> +++ b/boot/image-board.c
> @@ -428,8 +428,7 @@ static int select_ramdisk(struct bootm_headers *images, const char *select, u8 a
>  		if (IS_ENABLED(CONFIG_ANDROID_BOOT_IMAGE)) {
>  			void *ptr = map_sysmem(images->os.start, 0);
>  			int ret;
> -
> -			ret = android_image_get_ramdisk(ptr, rd_datap, rd_lenp);
> +			ret = android_image_get_ramdisk(ptr, NULL, rd_datap, rd_lenp);
>  			unmap_sysmem(ptr);
>  			if (ret)
>  				return ret;
> diff --git a/boot/image-fdt.c b/boot/image-fdt.c
> index 1181cb60f0..f270d00a5f 100644
> --- a/boot/image-fdt.c
> +++ b/boot/image-fdt.c
> @@ -536,7 +536,8 @@ int boot_get_fdt(int flag, int argc, char *const argv[], uint8_t arch,
>  		 * Firstly check if this android boot image has dtb field.
>  		 */
>  		dtb_idx = (u32)env_get_ulong("adtb_idx", 10, 0);
> -		if (android_image_get_dtb_by_index((ulong)hdr, dtb_idx, &fdt_addr, &fdt_size)) {
> +		if (android_image_get_dtb_by_index((ulong)hdr, 0,
> +						   dtb_idx, &fdt_addr, &fdt_size)) {
>  			fdt_blob = (char *)map_sysmem(fdt_addr, 0);
>  			if (fdt_check_header(fdt_blob))
>  				goto no_fdt;
> diff --git a/cmd/abootimg.c b/cmd/abootimg.c
> index f04a7c7c8e..4d6cf0fa3e 100644
> --- a/cmd/abootimg.c
> +++ b/cmd/abootimg.c
> @@ -72,7 +72,7 @@ static int abootimg_get_dtb_load_addr(int argc, char *const argv[])
>  	const struct andr_boot_img_hdr_v0 *hdr;
>  
>  	hdr = map_sysmem(abootimg_addr(), sizeof(*hdr));
> -	if (!android_image_get_data(hdr, &img_data)) {
> +	if (!android_image_get_data(hdr, NULL, &img_data)) {
>  		unmap_sysmem(hdr);
>  		return CMD_RET_FAILURE;
>  	}
> @@ -119,7 +119,7 @@ static int abootimg_get_dtb_by_index(int argc, char *const argv[])
>  		return CMD_RET_FAILURE;
>  	}
>  
> -	if (!android_image_get_dtb_by_index(abootimg_addr(), num,
> +	if (!android_image_get_dtb_by_index(abootimg_addr(), 0, num,
>  					    &addr, &size)) {
>  		return CMD_RET_FAILURE;
>  	}
> diff --git a/include/image.h b/include/image.h
> index 4bf6c98ced..f84c03f08f 100644
> --- a/include/image.h
> +++ b/include/image.h
> @@ -1736,16 +1736,19 @@ struct cipher_algo *image_get_cipher_algo(const char *full_name);
>  struct andr_image_data;
>  
>  /**
> - * android_image_get_data() - Parse Android boot image
> + * android_image_get_data() - Parse Android boot images
>   *
> - * This is used to parse boot image header into andr_image_data
> - * generic structure.
> + * This is used to parse boot and vendor-boot header into
> + * andr_image_data generic structure.
>   *
>   * @boot_hdr: Pointer to boot image header
> + * @vendor_boot_hdr: Pointer to vendor boot image header
>   * @data: Pointer to generic boot format structure
>   * Return: true if succeeded, false otherwise
>   */
> -bool android_image_get_data(const void *boot_hdr, struct andr_image_data *data);
> +bool android_image_get_data(const void *boot_hdr, const void *vendor_boot_hdr,
> +			    struct andr_image_data *data);
> +
>  struct andr_boot_img_hdr_v0;
>  
>  /**
> @@ -1756,6 +1759,7 @@ struct andr_boot_img_hdr_v0;
>   *
>   * @hdr:	Pointer to image header, which is at the start
>   *			of the image.
> + * @vendor_boot_img : Pointer to vendor boot image header
>   * @verify:	Checksum verification flag. Currently unimplemented.
>   * @os_data:	Pointer to a ulong variable, will hold os data start
>   *			address.
> @@ -1763,7 +1767,8 @@ struct andr_boot_img_hdr_v0;
>   * Return: Zero, os start address and length on success,
>   *		otherwise on failure.
>   */
> -int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
> +int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr,
> +			     const void *vendor_boot_img, int verify,
>  			     ulong *os_data, ulong *os_len);
>  
>  /**
> @@ -1772,12 +1777,13 @@ int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
>   * This extracts the load address of the ramdisk and its size
>   *
>   * @hdr:	Pointer to image header
> + * @vendor_boot_img : Pointer to vendor boot image header
>   * @rd_data:	Pointer to a ulong variable, will hold ramdisk address
>   * @rd_len:	Pointer to a ulong variable, will hold ramdisk length
>   * Return: 0 if succeeded, -1 if ramdisk size is 0
>   */
>  int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
> -			      ulong *rd_data, ulong *rd_len);
> +			      const void *vendor_boot_img, ulong *rd_data, ulong *rd_len);
>  
>  /**
>   * android_image_get_second() - Extracts the secondary bootloader address
> @@ -1793,8 +1799,22 @@ int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
>  int android_image_get_second(const struct andr_boot_img_hdr_v0 *hdr,
>  			     ulong *second_data, ulong *second_len);
>  bool android_image_get_dtbo(ulong hdr_addr, ulong *addr, u32 *size);
> -bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
> -				    u32 *size);
> +
> +/**
> + * android_image_get_dtb_by_index() - Get address and size of blob in DTB area.
> + * @hdr_addr: Boot image header address
> + * @vendor_boot_img: Pointer to vendor boot image header, which is at the start of the image.
> + * @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.
> + */
> +bool android_image_get_dtb_by_index(ulong hdr_addr, ulong vendor_boot_img,
> +				    u32 index, ulong *addr, u32 *size);
>  
>  /**
>   * android_image_get_end() - Get the end of Android boot image
> @@ -1802,9 +1822,11 @@ bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
>   * This returns the end address of Android boot image address
>   *
>   * @hdr: Pointer to image header
> + * @vendor_boot_img : Pointer to vendor boot image header
>   * Return: The end address of Android boot image
>   */
> -ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr);
> +ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr,
> +			    const void *vendor_boot_img);
>  
>  /**
>   * android_image_get_kload() - Get the kernel load address
> @@ -1813,9 +1835,11 @@ ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr);
>   * from the boot image header or the "kernel_addr_r" environment variable
>   *
>   * @hdr: Pointer to image header
> + * @vendor_boot_img : Pointer to vendor boot image header
>   * Return: The kernel load address
>   */
> -ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr);
> +ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr,
> +			      const void *vendor_boot_img);
>  
>  /**
>   * android_image_get_kcomp() - Get kernel compression type
> @@ -1823,9 +1847,11 @@ ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr);
>   * This gets the kernel compression type from the boot image header
>   *
>   * @hdr: Pointer to image header
> + * @vendor_boot_img : Pointer to vendor boot image header
>   * Return: Kernel compression type
>   */
> -ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr);
> +ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr,
> +			      const void *vendor_boot_img);
>  
>  /**
>   * android_print_contents() - Prints out the contents of the Android format image
> -- 
> 2.34.1

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 10/19] android: boot: update android_image_get_data to support v3,v4
  2023-02-05 23:50 ` [PATCH v3 10/19] android: boot: update android_image_get_data to support v3, v4 Safae Ouajih
@ 2023-02-09 14:32   ` Mattijs Korpershoek
  0 siblings, 0 replies; 44+ messages in thread
From: Mattijs Korpershoek @ 2023-02-09 14:32 UTC (permalink / raw)
  To: Safae Ouajih, sjg; +Cc: u-boot, sean.anderson, r.stratiienko, glaroque, khilman

On Mon, Feb 06, 2023 at 00:50, Safae Ouajih <souajih@baylibre.com> wrote:

> Since boot image header version 3 and 4 introduced vendor boot image,
> use the following functions to fill the generic android
> structure : andr_image_data:
>
>  - android_boot_image_v3_v4_parse_hdr()
>  - android_vendor_boot_image_v3_v4_parse_hdr()
>
> Update android_image_get_data() to support v3 and v4
>
> Signed-off-by: Safae Ouajih <souajih@baylibre.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>

Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>

> ---
>  boot/image-android.c    | 80 +++++++++++++++++++++++++++++++++++++++--
>  include/android_image.h |  3 ++
>  include/image.h         | 11 ++++++
>  3 files changed, 91 insertions(+), 3 deletions(-)
>
> diff --git a/boot/image-android.c b/boot/image-android.c
> index f16eebff49..712d437766 100644
> --- a/boot/image-android.c
> +++ b/boot/image-android.c
> @@ -18,6 +18,65 @@
>  
>  static char andr_tmp_str[ANDR_BOOT_ARGS_SIZE + 1];
>  
> +static void android_boot_image_v3_v4_parse_hdr(const struct andr_boot_img_hdr_v3 *hdr,
> +					       struct andr_image_data *data)
> +{
> +	ulong end;
> +
> +	data->kcmdline = hdr->cmdline;
> +	data->header_version = hdr->header_version;
> +
> +	/*
> +	 * The header takes a full page, the remaining components are aligned
> +	 * on page boundary.
> +	 */
> +	end = (ulong)hdr;
> +	end += ANDR_GKI_PAGE_SIZE;
> +	data->kernel_ptr = end;
> +	data->kernel_size = hdr->kernel_size;
> +	end += ALIGN(hdr->kernel_size, ANDR_GKI_PAGE_SIZE);
> +	data->ramdisk_size = hdr->ramdisk_size;
> +	data->boot_ramdisk_size = hdr->ramdisk_size;
> +	end += ALIGN(hdr->ramdisk_size, ANDR_GKI_PAGE_SIZE);
> +
> +	if (hdr->header_version > 3)
> +		end += ALIGN(hdr->signature_size, ANDR_GKI_PAGE_SIZE);
> +
> +	data->boot_img_total_size = end - (ulong)hdr;
> +}
> +
> +static void android_vendor_boot_image_v3_v4_parse_hdr(const struct andr_vnd_boot_img_hdr
> +						      *hdr, struct andr_image_data *data)
> +{
> +	ulong end;
> +
> +	/*
> +	 * The header takes a full page, the remaining components are aligned
> +	 * on page boundary.
> +	 */
> +	data->tags_addr = hdr->tags_addr;
> +	data->image_name = hdr->name;
> +	data->kernel_addr = hdr->kernel_addr;
> +	data->ramdisk_addr = hdr->ramdisk_addr;
> +	data->dtb_load_addr = hdr->dtb_addr;
> +	end = (ulong)hdr;
> +	end += hdr->page_size;
> +	if (hdr->vendor_ramdisk_size) {
> +		data->vendor_ramdisk_ptr = end;
> +		data->vendor_ramdisk_size = hdr->vendor_ramdisk_size;
> +		data->ramdisk_size += hdr->vendor_ramdisk_size;
> +		end += ALIGN(hdr->vendor_ramdisk_size, hdr->page_size);
> +	}
> +
> +	data->dtb_ptr = end;
> +	data->dtb_size = hdr->dtb_size;
> +
> +	end += ALIGN(hdr->dtb_size, hdr->page_size);
> +	end += ALIGN(hdr->vendor_ramdisk_table_size, hdr->page_size);
> +	end += ALIGN(hdr->bootconfig_size, hdr->page_size);
> +	data->vendor_boot_img_total_size = end - (ulong)hdr;
> +}
> +
>  static void android_boot_image_v0_v1_v2_parse_hdr(const struct andr_boot_img_hdr_v0 *hdr,
>  						  struct andr_image_data *data)
>  {
> @@ -79,10 +138,20 @@ bool android_image_get_data(const void *boot_hdr, const void *vendor_boot_hdr,
>  		return false;
>  	}
>  
> -	if (((struct andr_boot_img_hdr_v0 *)boot_hdr)->header_version > 2)
> -		printf("Only boot image header version 2 and below are supported\n");
> -	else
> +	if (((struct andr_boot_img_hdr_v0 *)boot_hdr)->header_version > 2) {
> +		if (!vendor_boot_hdr) {
> +			printf("For boot header v3+ vendor boot image has to be provided\n");
> +			return false;
> +		}
> +		if (!is_android_vendor_boot_image_header(vendor_boot_hdr)) {
> +			printf("Incorrect vendor boot image header\n");
> +			return false;
> +		}
> +		android_boot_image_v3_v4_parse_hdr(boot_hdr, data);
> +		android_vendor_boot_image_v3_v4_parse_hdr(vendor_boot_hdr, data);
> +	} else {
>  		android_boot_image_v0_v1_v2_parse_hdr(boot_hdr, data);
> +	}
>  
>  	return true;
>  }
> @@ -200,6 +269,11 @@ int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr,
>  	return 0;
>  }
>  
> +bool is_android_vendor_boot_image_header(const void *vendor_boot_img)
> +{
> +	return !memcmp(VENDOR_BOOT_MAGIC, vendor_boot_img, ANDR_VENDOR_BOOT_MAGIC_SIZE);
> +}
> +
>  bool is_android_boot_image_header(const struct andr_boot_img_hdr_v0 *hdr)
>  {
>  	return !memcmp(ANDR_BOOT_MAGIC, hdr, ANDR_BOOT_MAGIC_SIZE);
> diff --git a/include/android_image.h b/include/android_image.h
> index fb3a9d9858..99e7803508 100644
> --- a/include/android_image.h
> +++ b/include/android_image.h
> @@ -323,6 +323,8 @@ struct andr_image_data {
>  	ulong kernel_ptr;  /* kernel address */
>  	u32 kernel_size;  /* size in bytes */
>  	u32 ramdisk_size;  /* size in bytes */
> +	ulong vendor_ramdisk_ptr;  /* vendor ramdisk address */
> +	u32 vendor_ramdisk_size;  /* vendor ramdisk size*/
>  	u32 boot_ramdisk_size;  /* size in bytes */
>  	ulong second_ptr;  /* secondary bootloader address */
>  	u32 second_size;  /* secondary bootloader size */
> @@ -342,6 +344,7 @@ struct andr_image_data {
>  	ulong tags_addr;  /* physical addr for kernel tags */
>  	u32 header_version;  /* version of the boot image header */
>  	u32 boot_img_total_size;  /* boot image size */
> +	u32 vendor_boot_img_total_size;  /* vendor boot image size */
>  };
>  
>  #endif
> diff --git a/include/image.h b/include/image.h
> index f84c03f08f..c2e751c136 100644
> --- a/include/image.h
> +++ b/include/image.h
> @@ -1876,6 +1876,17 @@ bool android_image_print_dtb_contents(ulong hdr_addr);
>   */
>  bool is_android_boot_image_header(const struct andr_boot_img_hdr_v0 *hdr);
>  
> +/**
> + * is_android_vendor_boot_image_header() - Check the magic of vendor boot image
> + *
> + * This checks the header of Android vendor boot image and verifies the magic
> + * is "VNDRBOOT"
> + *
> + * @vendor_boot_img: Pointer to boot image
> + * Return: non-zero if the magic is correct, zero otherwise
> + */
> +bool is_android_vendor_boot_image_header(const void *vendor_boot_img);
> +
>  /**
>   * board_fit_config_name_match() - Check for a matching board name
>   *
> -- 
> 2.34.1

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 11/19] android: boot: ramdisk: support vendor ramdisk
  2023-02-05 23:50 ` [PATCH v3 11/19] android: boot: ramdisk: support vendor ramdisk Safae Ouajih
@ 2023-02-09 14:35   ` Mattijs Korpershoek
  2023-04-07  8:56     ` Roman Stratiienko
  0 siblings, 1 reply; 44+ messages in thread
From: Mattijs Korpershoek @ 2023-02-09 14:35 UTC (permalink / raw)
  To: Safae Ouajih, sjg; +Cc: u-boot, sean.anderson, r.stratiienko, glaroque, khilman

On Mon, Feb 06, 2023 at 00:50, Safae Ouajih <souajih@baylibre.com> wrote:

> Version 3 and 4 of boot image header introduced
> vendor boot ramdisk: Please check include/android_image.h
> for details.
>
> The ramdisk is now split into a generic ramdisk in boot image
> and a vendor ramdisk in vendor boot image.
>
> Support the new vendor ramdisk.
>
> Signed-off-by: Safae Ouajih <souajih@baylibre.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>

Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>

> ---
>  boot/image-android.c | 13 +++++++++++--
>  include/image.h      |  4 ++--
>  2 files changed, 13 insertions(+), 4 deletions(-)
>
> diff --git a/boot/image-android.c b/boot/image-android.c
> index 712d437766..35243fd5b1 100644
> --- a/boot/image-android.c
> +++ b/boot/image-android.c
> @@ -25,6 +25,7 @@ static void android_boot_image_v3_v4_parse_hdr(const struct andr_boot_img_hdr_v3
>  
>  	data->kcmdline = hdr->cmdline;
>  	data->header_version = hdr->header_version;
> +	data->ramdisk_ptr = env_get_ulong("ramdisk_addr_r", 16, 0);
>  
>  	/*
>  	 * The header takes a full page, the remaining components are aligned
> @@ -322,10 +323,11 @@ ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr,
>  		return image_decomp_type(p, sizeof(u32));
>  }
>  
> -int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
> -			      const void *vendor_boot_img, ulong *rd_data, ulong *rd_len)
> +int android_image_get_ramdisk(const void *hdr, const void *vendor_boot_img,
> +			      ulong *rd_data, ulong *rd_len)
>  {
>  	struct andr_image_data img_data = {0};
> +	ulong ramdisk_ptr;
>  
>  	if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
>  		return -EINVAL;
> @@ -334,6 +336,13 @@ int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
>  		*rd_data = *rd_len = 0;
>  		return -1;
>  	}
> +	if (img_data.header_version > 2) {
> +		ramdisk_ptr = img_data.ramdisk_ptr;
> +		memcpy((void *)(ramdisk_ptr), (void *)img_data.vendor_ramdisk_ptr,
> +		       img_data.vendor_ramdisk_size);
> +		memcpy((void *)(ramdisk_ptr + img_data.vendor_ramdisk_size),
> +		       (void *)img_data.ramdisk_ptr, img_data.boot_ramdisk_size);
> +	}
>  
>  	printf("RAM disk load addr 0x%08lx size %u KiB\n",
>  	       img_data.ramdisk_ptr, DIV_ROUND_UP(img_data.ramdisk_size, 1024));
> diff --git a/include/image.h b/include/image.h
> index c2e751c136..c4d9b1c575 100644
> --- a/include/image.h
> +++ b/include/image.h
> @@ -1782,8 +1782,8 @@ int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr,
>   * @rd_len:	Pointer to a ulong variable, will hold ramdisk length
>   * Return: 0 if succeeded, -1 if ramdisk size is 0
>   */
> -int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
> -			      const void *vendor_boot_img, ulong *rd_data, ulong *rd_len);
> +int android_image_get_ramdisk(const void *hdr, const void *vendor_boot_img,
> +			      ulong *rd_data, ulong *rd_len);
>  
>  /**
>   * android_image_get_second() - Extracts the secondary bootloader address
> -- 
> 2.34.1

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 14/19] drivers: fastboot: zImage flashing is not supported for v3,v4
  2023-02-05 23:50 ` [PATCH v3 14/19] drivers: fastboot: zImage flashing is not supported for " Safae Ouajih
@ 2023-02-09 14:38   ` Mattijs Korpershoek
  0 siblings, 0 replies; 44+ messages in thread
From: Mattijs Korpershoek @ 2023-02-09 14:38 UTC (permalink / raw)
  To: Safae Ouajih, sjg; +Cc: u-boot, sean.anderson, r.stratiienko, glaroque, khilman

On Mon, Feb 06, 2023 at 00:50, Safae Ouajih <souajih@baylibre.com> wrote:

> With vendor boot image introduced in version 3 and 4 of boot
> image header, boot information is located in both boot image
> and vendor boot image.
>
> Flashing zImage is not supported for version 3 and 4 since this
> requires updating vendor boot image and/or generating a new image.
>
> Print an error message when the boot image header version is
> greater than 2.
>
> Signed-off-by: Safae Ouajih <souajih@baylibre.com>

Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>

> ---
>  drivers/fastboot/fb_mmc.c | 8 ++++++++
>  1 file changed, 8 insertions(+)
>
> diff --git a/drivers/fastboot/fb_mmc.c b/drivers/fastboot/fb_mmc.c
> index 086e5f7843..1dea82835c 100644
> --- a/drivers/fastboot/fb_mmc.c
> +++ b/drivers/fastboot/fb_mmc.c
> @@ -370,6 +370,14 @@ static int fb_mmc_update_zimage(struct blk_desc *dev_desc,
>  		return -1;
>  	}
>  
> +	/* Check if boot image header version is 2 or less */
> +	if (hdr->header_version > 2) {
> +		pr_err("zImage flashing supported only for boot images v2 and less\n");
> +		fastboot_fail("zImage flashing supported only for boot images v2 and less",
> +			      response);
> +		return -EOPNOTSUPP;
> +	}
> +
>  	/* Check if boot image has second stage in it (we don't support it) */
>  	if (hdr->second_size > 0) {
>  		pr_err("moving second stage is not supported yet\n");
> -- 
> 2.34.1

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 15/19] android: boot: support boot image header version 3 and 4
  2023-02-05 23:50 ` [PATCH v3 15/19] android: boot: support boot image header version 3 and 4 Safae Ouajih
@ 2023-02-09 14:46   ` Mattijs Korpershoek
  0 siblings, 0 replies; 44+ messages in thread
From: Mattijs Korpershoek @ 2023-02-09 14:46 UTC (permalink / raw)
  To: Safae Ouajih, sjg; +Cc: u-boot, sean.anderson, r.stratiienko, glaroque, khilman

On Mon, Feb 06, 2023 at 00:50, Safae Ouajih <souajih@baylibre.com> wrote:

> Enable the support for boot image header version 3 and 4
> using abootimg command.
>
> In order to use version 3 or 4:
>
> 1- Vendor boot image address should be given to abootimg cmd.
>
> 	abootimg addr $1 $vendor_boot_load_addr
>
> 2- "ramdisk_addr_r" env variable (ramdisk address) should be set to host
> the ramdisk : generic ramdisk + vendor ramdisk
>
> Replace "struct andr_boot_img_hdr_v0*" by "void *" in
> some functions since v3 and v4 are now supported as well.
>
> Signed-off-by: Safae Ouajih <souajih@baylibre.com>

Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>

> ---
>  boot/bootm.c         | 37 ++++++++++++++++++++++++++++++++-----
>  boot/image-android.c | 16 ++++++++++------
>  boot/image-board.c   | 18 +++++++++++++++---
>  boot/image-fdt.c     |  2 +-
>  cmd/abootimg.c       | 24 ++++++++++++++++++++++--
>  include/image.h      | 25 +++++++++++++++++++------
>  6 files changed, 99 insertions(+), 23 deletions(-)
>
> diff --git a/boot/bootm.c b/boot/bootm.c
> index a58e6f391e..a7fc6c4545 100644
> --- a/boot/bootm.c
> +++ b/boot/bootm.c
> @@ -113,6 +113,10 @@ static int bootm_find_os(struct cmd_tbl *cmdtp, int flag, int argc,
>  			 char *const argv[])
>  {
>  	const void *os_hdr;
> +#ifdef CONFIG_ANDROID_BOOT_IMAGE
> +	const void *vendor_boot_img;
> +	const void *boot_img;
> +#endif
>  	bool ep_found = false;
>  	int ret;
>  
> @@ -181,14 +185,23 @@ static int bootm_find_os(struct cmd_tbl *cmdtp, int flag, int argc,
>  #endif
>  #ifdef CONFIG_ANDROID_BOOT_IMAGE
>  	case IMAGE_FORMAT_ANDROID:
> +		boot_img = os_hdr;
> +		vendor_boot_img = NULL;
> +		if (IS_ENABLED(CONFIG_CMD_ABOOTIMG)) {
> +			boot_img = map_sysmem(get_abootimg_addr(), 0);
> +			vendor_boot_img = map_sysmem(get_avendor_bootimg_addr(), 0);
> +		}
>  		images.os.type = IH_TYPE_KERNEL;
> -		images.os.comp = android_image_get_kcomp(os_hdr, NULL);
> +		images.os.comp = android_image_get_kcomp(boot_img, vendor_boot_img);
>  		images.os.os = IH_OS_LINUX;
> -
> -		images.os.end = android_image_get_end(os_hdr, NULL);
> -		images.os.load = android_image_get_kload(os_hdr, NULL);
> +		images.os.end = android_image_get_end(boot_img, vendor_boot_img);
> +		images.os.load = android_image_get_kload(boot_img, vendor_boot_img);
>  		images.ep = images.os.load;
>  		ep_found = true;
> +		if (IS_ENABLED(CONFIG_CMD_ABOOTIMG)) {
> +			unmap_sysmem(vendor_boot_img);
> +			unmap_sysmem(boot_img);
> +		}
>  		break;
>  #endif
>  	default:
> @@ -889,6 +902,10 @@ static const void *boot_get_kernel(struct cmd_tbl *cmdtp, int flag, int argc,
>  	int		os_noffset;
>  #endif
>  
> +#ifdef CONFIG_ANDROID_BOOT_IMAGE
> +	const void *boot_img;
> +	const void *vendor_boot_img;
> +#endif
>  	img_addr = genimg_get_kernel_addr_fit(argc < 1 ? NULL : argv[0],
>  					      &fit_uname_config,
>  					      &fit_uname_kernel);
> @@ -964,10 +981,20 @@ static const void *boot_get_kernel(struct cmd_tbl *cmdtp, int flag, int argc,
>  #endif
>  #ifdef CONFIG_ANDROID_BOOT_IMAGE
>  	case IMAGE_FORMAT_ANDROID:
> +		boot_img = buf;
> +		vendor_boot_img = NULL;
> +		if (IS_ENABLED(CONFIG_CMD_ABOOTIMG)) {
> +			boot_img = map_sysmem(get_abootimg_addr(), 0);
> +			vendor_boot_img = map_sysmem(get_avendor_bootimg_addr(), 0);
> +		}
>  		printf("## Booting Android Image at 0x%08lx ...\n", img_addr);
> -		if (android_image_get_kernel(buf, NULL, images->verify,
> +		if (android_image_get_kernel(boot_img, vendor_boot_img, images->verify,
>  					     os_data, os_len))
>  			return NULL;
> +		if (IS_ENABLED(CONFIG_CMD_ABOOTIMG)) {
> +			unmap_sysmem(vendor_boot_img);
> +			unmap_sysmem(boot_img);
> +		}
>  		break;
>  #endif
>  	default:
> diff --git a/boot/image-android.c b/boot/image-android.c
> index 6be439ed12..fb29ff403f 100644
> --- a/boot/image-android.c
> +++ b/boot/image-android.c
> @@ -201,7 +201,7 @@ static ulong android_image_get_kernel_addr(struct andr_image_data *img_data)
>   * Return: Zero, os start address and length on success,
>   *		otherwise on failure.
>   */
> -int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr,
> +int android_image_get_kernel(const void *hdr,
>  			     const void *vendor_boot_img, int verify,
>  			     ulong *os_data, ulong *os_len)
>  {
> @@ -286,7 +286,7 @@ bool is_android_vendor_boot_image_header(const void *vendor_boot_img)
>  	return !memcmp(VENDOR_BOOT_MAGIC, vendor_boot_img, ANDR_VENDOR_BOOT_MAGIC_SIZE);
>  }
>  
> -bool is_android_boot_image_header(const struct andr_boot_img_hdr_v0 *hdr)
> +bool is_android_boot_image_header(const void *hdr)
>  {
>  	return !memcmp(ANDR_BOOT_MAGIC, hdr, ANDR_BOOT_MAGIC_SIZE);
>  }
> @@ -305,7 +305,7 @@ ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr,
>  	return img_data.boot_img_total_size;
>  }
>  
> -ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr,
> +ulong android_image_get_kload(const void *hdr,
>  			      const void *vendor_boot_img)
>  {
>  	struct andr_image_data img_data;
> @@ -316,7 +316,7 @@ ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr,
>  	return android_image_get_kernel_addr(&img_data);
>  }
>  
> -ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr,
> +ulong android_image_get_kcomp(const void *hdr,
>  			      const void *vendor_boot_img)
>  {
>  	struct andr_image_data img_data;
> @@ -364,14 +364,18 @@ int android_image_get_ramdisk(const void *hdr, const void *vendor_boot_img,
>  	return 0;
>  }
>  
> -int android_image_get_second(const struct andr_boot_img_hdr_v0 *hdr,
> -			     ulong *second_data, ulong *second_len)
> +int android_image_get_second(const void *hdr, ulong *second_data, ulong *second_len)
>  {
>  	struct andr_image_data img_data;
>  
>  	if (!android_image_get_data(hdr, NULL, &img_data))
>  		return -EINVAL;
>  
> +	if (img_data.header_version > 2) {
> +		printf("Second stage bootloader is only supported for boot image version <= 2\n");
> +		return -EOPNOTSUPP;
> +	}
> +
>  	if (!img_data.second_size) {
>  		*second_data = *second_len = 0;
>  		return -1;
> diff --git a/boot/image-board.c b/boot/image-board.c
> index b6c9bbe8f5..318aed30f8 100644
> --- a/boot/image-board.c
> +++ b/boot/image-board.c
> @@ -426,10 +426,22 @@ static int select_ramdisk(struct bootm_headers *images, const char *select, u8 a
>  		break;
>  	case IMAGE_FORMAT_ANDROID:
>  		if (IS_ENABLED(CONFIG_ANDROID_BOOT_IMAGE)) {
> -			void *ptr = map_sysmem(images->os.start, 0);
>  			int ret;
> -			ret = android_image_get_ramdisk(ptr, NULL, rd_datap, rd_lenp);
> -			unmap_sysmem(ptr);
> +			if (IS_ENABLED(CONFIG_CMD_ABOOTIMG)) {
> +				void *boot_img = map_sysmem(get_abootimg_addr(), 0);
> +				void *vendor_boot_img = map_sysmem(get_avendor_bootimg_addr(), 0);
> +
> +				ret = android_image_get_ramdisk(boot_img, vendor_boot_img,
> +								rd_datap, rd_lenp);
> +				unmap_sysmem(vendor_boot_img);
> +				unmap_sysmem(boot_img);
> +			} else {
> +				void *ptr = map_sysmem(images->os.start, 0);
> +
> +				ret = android_image_get_ramdisk(ptr, NULL, rd_datap, rd_lenp);
> +				unmap_sysmem(ptr);
> +			}
> +
>  			if (ret)
>  				return ret;
>  			done = true;
> diff --git a/boot/image-fdt.c b/boot/image-fdt.c
> index f270d00a5f..5f9cf7b4e6 100644
> --- a/boot/image-fdt.c
> +++ b/boot/image-fdt.c
> @@ -529,7 +529,7 @@ int boot_get_fdt(int flag, int argc, char *const argv[], uint8_t arch,
>  		}
>  #ifdef CONFIG_ANDROID_BOOT_IMAGE
>  	} else if (genimg_get_format(buf) == IMAGE_FORMAT_ANDROID) {
> -		struct andr_boot_img_hdr_v0 *hdr = buf;
> +		void *hdr = buf;
>  		ulong		fdt_data, fdt_len;
>  		u32			fdt_size, dtb_idx;
>  		/*
> diff --git a/cmd/abootimg.c b/cmd/abootimg.c
> index 4d6cf0fa3e..2653b555b1 100644
> --- a/cmd/abootimg.c
> +++ b/cmd/abootimg.c
> @@ -17,6 +17,16 @@
>  static ulong _abootimg_addr = -1;
>  static ulong _avendor_bootimg_addr = -1;
>  
> +ulong get_abootimg_addr(void)
> +{
> +	return (_abootimg_addr == -1 ? image_load_addr : _abootimg_addr);
> +}
> +
> +ulong get_avendor_bootimg_addr(void)
> +{
> +	return _avendor_bootimg_addr;
> +}
> +
>  static int abootimg_get_ver(int argc, char *const argv[])
>  {
>  	const struct andr_boot_img_hdr_v0 *hdr;
> @@ -70,12 +80,21 @@ static int abootimg_get_dtb_load_addr(int argc, char *const argv[])
>  		return CMD_RET_USAGE;
>  	struct andr_image_data img_data = {0};
>  	const struct andr_boot_img_hdr_v0 *hdr;
> +	const struct andr_vnd_boot_img_hdr *vhdr;
>  
>  	hdr = map_sysmem(abootimg_addr(), sizeof(*hdr));
> -	if (!android_image_get_data(hdr, NULL, &img_data)) {
> +	if (get_avendor_bootimg_addr() != -1)
> +		vhdr = map_sysmem(get_avendor_bootimg_addr(), sizeof(*vhdr));
> +
> +	if (!android_image_get_data(hdr, vhdr, &img_data)) {
> +		if (get_avendor_bootimg_addr() != -1)
> +			unmap_sysmem(vhdr);
>  		unmap_sysmem(hdr);
>  		return CMD_RET_FAILURE;
>  	}
> +
> +	if (get_avendor_bootimg_addr() != -1)
> +		unmap_sysmem(vhdr);
>  	unmap_sysmem(hdr);
>  
>  	if (img_data.header_version < 2) {
> @@ -119,7 +138,8 @@ static int abootimg_get_dtb_by_index(int argc, char *const argv[])
>  		return CMD_RET_FAILURE;
>  	}
>  
> -	if (!android_image_get_dtb_by_index(abootimg_addr(), 0, num,
> +	if (!android_image_get_dtb_by_index(abootimg_addr(),
> +					    get_avendor_bootimg_addr(), num,
>  					    &addr, &size)) {
>  		return CMD_RET_FAILURE;
>  	}
> diff --git a/include/image.h b/include/image.h
> index c4d9b1c575..456197d6fd 100644
> --- a/include/image.h
> +++ b/include/image.h
> @@ -1767,7 +1767,7 @@ struct andr_boot_img_hdr_v0;
>   * Return: Zero, os start address and length on success,
>   *		otherwise on failure.
>   */
> -int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr,
> +int android_image_get_kernel(const void *hdr,
>  			     const void *vendor_boot_img, int verify,
>  			     ulong *os_data, ulong *os_len);
>  
> @@ -1796,8 +1796,7 @@ int android_image_get_ramdisk(const void *hdr, const void *vendor_boot_img,
>   * @second_len : Pointer to a ulong variable, will hold secondary bootloader length
>   * Return: 0 if succeeded, -1 if secondary bootloader size is 0
>   */
> -int android_image_get_second(const struct andr_boot_img_hdr_v0 *hdr,
> -			     ulong *second_data, ulong *second_len);
> +int android_image_get_second(const void *hdr, ulong *second_data, ulong *second_len);
>  bool android_image_get_dtbo(ulong hdr_addr, ulong *addr, u32 *size);
>  
>  /**
> @@ -1838,7 +1837,7 @@ ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr,
>   * @vendor_boot_img : Pointer to vendor boot image header
>   * Return: The kernel load address
>   */
> -ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr,
> +ulong android_image_get_kload(const void *hdr,
>  			      const void *vendor_boot_img);
>  
>  /**
> @@ -1850,7 +1849,7 @@ ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr,
>   * @vendor_boot_img : Pointer to vendor boot image header
>   * Return: Kernel compression type
>   */
> -ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr,
> +ulong android_image_get_kcomp(const void *hdr,
>  			      const void *vendor_boot_img);
>  
>  /**
> @@ -1874,7 +1873,7 @@ bool android_image_print_dtb_contents(ulong hdr_addr);
>   * @hdr: Pointer to boot image
>   * Return: non-zero if the magic is correct, zero otherwise
>   */
> -bool is_android_boot_image_header(const struct andr_boot_img_hdr_v0 *hdr);
> +bool is_android_boot_image_header(const void *hdr);
>  
>  /**
>   * is_android_vendor_boot_image_header() - Check the magic of vendor boot image
> @@ -1887,6 +1886,20 @@ bool is_android_boot_image_header(const struct andr_boot_img_hdr_v0 *hdr);
>   */
>  bool is_android_vendor_boot_image_header(const void *vendor_boot_img);
>  
> +/**
> + * get_abootimg_addr() - Get Android boot image address
> + *
> + * Return: Android boot image address
> + */
> +ulong get_abootimg_addr(void);
> +
> +/**
> + * get_avendor_bootimg_addr() - Get Android vendor boot image address
> + *
> + * Return: Android vendor boot image address
> + */
> +ulong get_avendor_bootimg_addr(void);
> +
>  /**
>   * board_fit_config_name_match() - Check for a matching board name
>   *
> -- 
> 2.34.1

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 06/19] android: boot: move to andr_image_data structure
  2023-02-07  4:02   ` Simon Glass
@ 2023-02-09 16:30     ` Safae Ouajih
  0 siblings, 0 replies; 44+ messages in thread
From: Safae Ouajih @ 2023-02-09 16:30 UTC (permalink / raw)
  To: Simon Glass
  Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman


On 07/02/2023 05:02, Simon Glass wrote:
> Hi Safae,
>
> On Sun, 5 Feb 2023 at 16:50, Safae Ouajih <souajih@baylibre.com> wrote:
>> Move from andr_boot_img_hdr_v0 to andr_image_data
>> structure to prepare for boot image header
>> version 3 and 4.
>>
> Change log?
>

Hi Simon,

I will make sure to include changelogs in v4.

For this patch it would be :

--

v2->v3

- Remove #ifdef directives that are not needed in v3

- Use strlcpy instead of strncpy as required by checkpatch.pl

- Fix coding style (spaces at the start of a line) in 
android_image_get_second() as required by checkpatch.pl

Thank you for the review,

BRs,

Safae


>> Signed-off-by: Safae Ouajih <souajih@baylibre.com>
>> ---
>>   boot/image-android.c | 121 +++++++++++++++++++++++--------------------
>>   cmd/abootimg.c       |  31 +++++------
>>   2 files changed, 81 insertions(+), 71 deletions(-)
>>

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 06/19] android: boot: move to andr_image_data structure
  2023-02-09 14:26   ` Mattijs Korpershoek
@ 2023-02-09 16:49     ` Safae Ouajih
  0 siblings, 0 replies; 44+ messages in thread
From: Safae Ouajih @ 2023-02-09 16:49 UTC (permalink / raw)
  To: Mattijs Korpershoek, sjg
  Cc: u-boot, sean.anderson, r.stratiienko, glaroque, khilman


On 09/02/2023 15:26, Mattijs Korpershoek wrote:
> On Mon, Feb 06, 2023 at 00:50, Safae Ouajih <souajih@baylibre.com> wrote:
>
>> Move from andr_boot_img_hdr_v0 to andr_image_data
>> structure to prepare for boot image header
>> version 3 and 4.
>>
>> Signed-off-by: Safae Ouajih <souajih@baylibre.com>
>> ---
>>   boot/image-android.c | 121 +++++++++++++++++++++++--------------------
>>   cmd/abootimg.c       |  31 +++++------
>>   2 files changed, 81 insertions(+), 71 deletions(-)
>>
>> diff --git a/boot/image-android.c b/boot/image-android.c
>> index ea05c1814f..15a735e230 100644
>> --- a/boot/image-android.c
>> +++ b/boot/image-android.c
>> @@ -86,7 +86,7 @@ bool android_image_get_data(const void *boot_hdr, struct andr_image_data *data)
>>   	return true;
>>   }
>>   
>> -static ulong android_image_get_kernel_addr(const struct andr_boot_img_hdr_v0 *hdr)
>> +static ulong android_image_get_kernel_addr(struct andr_image_data *img_data)
>>   {
>>   	/*
>>   	 * All the Android tools that generate a boot.img use this
>> @@ -99,17 +99,17 @@ static ulong android_image_get_kernel_addr(const struct andr_boot_img_hdr_v0 *hd
>>   	 *
>>   	 * Otherwise, we will return the actual value set by the user.
>>   	 */
>> -	if (hdr->kernel_addr == ANDROID_IMAGE_DEFAULT_KERNEL_ADDR)
>> -		return (ulong)hdr + hdr->page_size;
>> +	if (img_data->kernel_addr  == ANDROID_IMAGE_DEFAULT_KERNEL_ADDR)
>> +		return img_data->kernel_ptr;
>>   
>>   	/*
>>   	 * abootimg creates images where all load addresses are 0
>>   	 * and we need to fix them.
>>   	 */
>> -	if (hdr->kernel_addr == 0 && hdr->ramdisk_addr == 0)
>> +	if (img_data->kernel_addr == 0 && img_data->ramdisk_addr == 0)
>>   		return env_get_ulong("kernel_addr_r", 16, 0);
>>   
>> -	return hdr->kernel_addr;
>> +	return img_data->kernel_addr;
>>   }
>>   
>>   /**
>> @@ -130,27 +130,33 @@ static ulong android_image_get_kernel_addr(const struct andr_boot_img_hdr_v0 *hd
>>   int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
>>   			     ulong *os_data, ulong *os_len)
>>   {
>> -	u32 kernel_addr = android_image_get_kernel_addr(hdr);
>> -	const struct legacy_img_hdr *ihdr = (const struct legacy_img_hdr *)
>> -		((uintptr_t)hdr + hdr->page_size);
>> +	struct andr_image_data img_data = {0};
>> +	u32 kernel_addr;
>> +	const struct legacy_img_hdr *ihdr;
>> +
>> +	if (!android_image_get_data(hdr, &img_data))
>> +		return -EINVAL;
>> +
>> +	kernel_addr = android_image_get_kernel_addr(&img_data);
>> +	ihdr = (const struct legacy_img_hdr *)img_data.kernel_ptr;
>>   
>>   	/*
>>   	 * Not all Android tools use the id field for signing the image with
>>   	 * sha1 (or anything) so we don't check it. It is not obvious that the
>>   	 * string is null terminated so we take care of this.
>>   	 */
>> -	strncpy(andr_tmp_str, hdr->name, ANDR_BOOT_NAME_SIZE);
>> +	strlcpy(andr_tmp_str, img_data.image_name, ANDR_BOOT_NAME_SIZE);
> While strlcpy is probably better than strncpy here, it has nothing to do
> with this change. Either mention in the commit message that this is
> intentional or drop this change.
>
> Note that strncpy was used in v2 of this patch. Why change it to strlcpy here?

Hello Mattijs,

Thank you for the review,

This is done to fix checkpatch.pl warning :  WARNING: strlcpy is 
preferred over strncpy

>
>>   	andr_tmp_str[ANDR_BOOT_NAME_SIZE] = '\0';
>>   	if (strlen(andr_tmp_str))
>>   		printf("Android's image name: %s\n", andr_tmp_str);
>>   
>>   	printf("Kernel load addr 0x%08x size %u KiB\n",
>> -	       kernel_addr, DIV_ROUND_UP(hdr->kernel_size, 1024));
>> +	       kernel_addr, DIV_ROUND_UP(img_data.kernel_size, 1024));
>>   
>>   	int len = 0;
>> -	if (*hdr->cmdline) {
>> -		printf("Kernel command line: %s\n", hdr->cmdline);
>> -		len += strlen(hdr->cmdline);
>> +	if (*img_data.kcmdline) {
>> +		printf("Kernel command line: %s\n", img_data.kcmdline);
>> +		len += strlen(img_data.kcmdline);
>>   	}
>>   
>>   	char *bootargs = env_get("bootargs");
>> @@ -168,8 +174,9 @@ int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
>>   		strcpy(newbootargs, bootargs);
>>   		strcat(newbootargs, " ");
>>   	}
>> -	if (*hdr->cmdline)
>> -		strcat(newbootargs, hdr->cmdline);
>> +
>> +	if (*img_data.kcmdline)
>> +		strcat(newbootargs, img_data.kcmdline);
>>   
>>   	env_set("bootargs", newbootargs);
>>   
>> @@ -177,15 +184,14 @@ int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr, int verify,
>>   		if (image_get_magic(ihdr) == IH_MAGIC) {
>>   			*os_data = image_get_data(ihdr);
>>   		} else {
>> -			*os_data = (ulong)hdr;
>> -			*os_data += hdr->page_size;
>> +			*os_data = img_data.kernel_ptr;
>>   		}
>>   	}
>>   	if (os_len) {
>>   		if (image_get_magic(ihdr) == IH_MAGIC)
>>   			*os_len = image_get_data_size(ihdr);
>>   		else
>> -			*os_len = hdr->kernel_size;
>> +			*os_len = img_data.kernel_size;
>>   	}
>>   	return 0;
>>   }
>> @@ -197,30 +203,25 @@ bool is_android_boot_image_header(const struct andr_boot_img_hdr_v0 *hdr)
>>   
>>   ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr)
>>   {
>> -	ulong end;
>> -
>> -	/*
>> -	 * The header takes a full page, the remaining components are aligned
>> -	 * on page boundary
>> -	 */
>> -	end = (ulong)hdr;
>> -	end += hdr->page_size;
>> -	end += ALIGN(hdr->kernel_size, hdr->page_size);
>> -	end += ALIGN(hdr->ramdisk_size, hdr->page_size);
>> -	end += ALIGN(hdr->second_size, hdr->page_size);
>> +	struct andr_image_data img_data;
>>   
>> -	if (hdr->header_version >= 1)
>> -		end += ALIGN(hdr->recovery_dtbo_size, hdr->page_size);
>> +	if (!android_image_get_data(hdr, &img_data))
>> +		return -EINVAL;
>>   
>> -	if (hdr->header_version >= 2)
>> -		end += ALIGN(hdr->dtb_size, hdr->page_size);
>> +	if (img_data.header_version > 2)
>> +		return 0;
>>   
>> -	return end;
>> +	return img_data.boot_img_total_size;
>>   }
>>   
>>   ulong android_image_get_kload(const struct andr_boot_img_hdr_v0 *hdr)
>>   {
>> -	return android_image_get_kernel_addr(hdr);
>> +	struct andr_image_data img_data;
>> +
>> +	if (!android_image_get_data(hdr, &img_data))
>> +		return -EINVAL;
>> +
>> +	return android_image_get_kernel_addr(&img_data);
>>   }
>>   
>>   ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr)
>> @@ -243,38 +244,43 @@ ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr)
>>   int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
>>   			      ulong *rd_data, ulong *rd_len)
>>   {
>> -	if (!hdr->ramdisk_size) {
>> +	struct andr_image_data img_data = {0};
>> +
>> +	if (!android_image_get_data(hdr, &img_data))
>> +		return -EINVAL;
>> +
>> +	if (!img_data.ramdisk_size) {
>>   		*rd_data = *rd_len = 0;
>>   		return -1;
>>   	}
>>   
>> -	printf("RAM disk load addr 0x%08x size %u KiB\n",
>> -	       hdr->ramdisk_addr, DIV_ROUND_UP(hdr->ramdisk_size, 1024));
>> +	printf("RAM disk load addr 0x%08lx size %u KiB\n",
>> +	       img_data.ramdisk_ptr, DIV_ROUND_UP(img_data.ramdisk_size, 1024));
>>   
>> -	*rd_data = (unsigned long)hdr;
>> -	*rd_data += hdr->page_size;
>> -	*rd_data += ALIGN(hdr->kernel_size, hdr->page_size);
>> +	*rd_data = img_data.ramdisk_ptr;
>>   
>> -	*rd_len = hdr->ramdisk_size;
>> +	*rd_len = img_data.ramdisk_size;
>>   	return 0;
>>   }
>>   
>>   int android_image_get_second(const struct andr_boot_img_hdr_v0 *hdr,
>>   			     ulong *second_data, ulong *second_len)
>>   {
>> -	if (!hdr->second_size) {
>> +	struct andr_image_data img_data;
>> +
>> +	if (!android_image_get_data(hdr, &img_data))
>> +		return -EINVAL;
>> +
>> +	if (!img_data.second_size) {
>>   		*second_data = *second_len = 0;
>>   		return -1;
>>   	}
>>   
>> -	*second_data = (unsigned long)hdr;
>> -	*second_data += hdr->page_size;
>> -	*second_data += ALIGN(hdr->kernel_size, hdr->page_size);
>> -	*second_data += ALIGN(hdr->ramdisk_size, hdr->page_size);
>> +	*second_data = img_data.second_ptr;
>>   
>>   	printf("second address is 0x%lx\n",*second_data);
>>   
>> -	*second_len = hdr->second_size;
>> +	*second_len = img_data.second_size;
>>   	return 0;
>>   }
>>   
>> @@ -401,17 +407,22 @@ exit:
>>   bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
>>   				    u32 *size)
>>   {
>> +	struct andr_image_data img_data;
>>   	const struct andr_boot_img_hdr_v0 *hdr;
>> -	bool res;
>> +
>> +	hdr = map_sysmem(hdr_addr, sizeof(*hdr));
>> +	if (!android_image_get_data(hdr, &img_data)) {
>> +		unmap_sysmem(hdr);
>> +		return false;
>> +	}
>> +	unmap_sysmem(hdr);
>> +
>>   	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;
>> -
>> +	android_image_get_dtb_img_addr(hdr_addr, &dtb_img_addr);
> Why drop the error handling here?
> Shouldn't we bail out early if this fails?

Will be added in a v4 as well as all your remarks

BRs,

Safae

>>   	/* 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,
>> @@ -419,9 +430,7 @@ bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
>>   	}
>>   
>>   	/* 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);
>> +	dtb_img_size = img_data.dtb_size;
>>   	i = 0;
>>   	dtb_addr = dtb_img_addr;
>>   	while (dtb_addr < dtb_img_addr + dtb_img_size) {
>> diff --git a/cmd/abootimg.c b/cmd/abootimg.c
>> index b5cfb141ef..f04a7c7c8e 100644
>> --- a/cmd/abootimg.c
>> +++ b/cmd/abootimg.c
>> @@ -66,33 +66,34 @@ static int abootimg_get_recovery_dtbo(int argc, char *const argv[])
>>   
>>   static int abootimg_get_dtb_load_addr(int argc, char *const argv[])
>>   {
>> -	const struct andr_boot_img_hdr_v0 *hdr;
>> -	int res = CMD_RET_SUCCESS;
>> -
>>   	if (argc > 1)
>>   		return CMD_RET_USAGE;
>> +	struct andr_image_data img_data = {0};
>> +	const struct andr_boot_img_hdr_v0 *hdr;
> Don't move this around. keep the variable declarations at the beginning
> of the function as done in the other functions.
>
>>   
>>   	hdr = map_sysmem(abootimg_addr(), sizeof(*hdr));
>> -	if (!is_android_boot_image_header(hdr)) {
>> -		printf("Error: Boot Image header is incorrect\n");
>> -		res = CMD_RET_FAILURE;
>> -		goto exit;
>> +	if (!android_image_get_data(hdr, &img_data)) {
>> +		unmap_sysmem(hdr);
>> +		return CMD_RET_FAILURE;
>>   	}
>> +	unmap_sysmem(hdr);
>>   
>> -	if (hdr->header_version < 2) {
>> +	if (img_data.header_version < 2) {
>>   		printf("Error: header_version must be >= 2 for this\n");
>> -		res = CMD_RET_FAILURE;
>> -		goto exit;
>> +		return CMD_RET_FAILURE;
>> +	}
>> +
>> +	if (!img_data.dtb_load_addr) {
>> +		printf("Error: failed to read dtb_load_addr\n");
>> +		return CMD_RET_FAILURE;
>>   	}
>>   
>>   	if (argc == 0)
>> -		printf("%lx\n", (ulong)hdr->dtb_addr);
>> +		printf("%lx\n", (ulong)img_data.dtb_load_addr);
>>   	else
>> -		env_set_hex(argv[0], (ulong)hdr->dtb_addr);
>> +		env_set_hex(argv[0], (ulong)img_data.dtb_load_addr);
>>   
>> -exit:
>> -	unmap_sysmem(hdr);
>> -	return res;
>> +	return CMD_RET_SUCCESS;
>>   }
>>   
>>   static int abootimg_get_dtb_by_index(int argc, char *const argv[])
>> -- 
>> 2.34.1

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 18/19] test/py: android: extend abootimg test
  2023-02-07 19:02   ` Tom Rini
@ 2023-02-09 16:52     ` Safae Ouajih
  2023-02-27 14:15     ` Safae Ouajih
  1 sibling, 0 replies; 44+ messages in thread
From: Safae Ouajih @ 2023-02-09 16:52 UTC (permalink / raw)
  To: Tom Rini
  Cc: sjg, u-boot, sean.anderson, r.stratiienko, mkorpershoek,
	glaroque, khilman


On 07/02/2023 20:02, Tom Rini wrote:
> On Mon, Feb 06, 2023 at 12:50:20AM +0100, Safae Ouajih wrote:
>
>> test_abootimg is extended to include the testing of boot images
>> version 4. For this, boot.img and vendor_boot.img have been
>> generated using mkbootimg tool with setting the header
>> version to 4.
>>
>> This tests:
>> - Getting the header version using abootimg
>> - Extracting the load address of the dtb
>> - Extracting the dtb start address in RAM
>>
>> Running test:
>> $ ./test/py/test.py --bd sandbox --build -k test_abootimg
>>
>> Signed-off-by: Safae Ouajih <souajih@baylibre.com>
>> Reviewed-by: Simon Glass <sjg@chromium.org>
>> ---
>>   test/py/tests/test_android/test_abootimg.py | 136 ++++++++++++++++++--
>>   1 file changed, 123 insertions(+), 13 deletions(-)
> Alright, so I don't know where the failure starts, exactly. And to make
> testing this easier, there's currently the
> trini/u-boot-gitlab-ci-runner:jammy-20230126-07Feb2023 container you can
> use to replicate my problem. The problem is that while this test passes
> in CI, with GCC, with Clang it fails, consistently:
> https://source.denx.de/u-boot/u-boot/-/jobs/572239#L284
> and I'm not quite sure why. I hope that building sandbox with clang and
> also just trying these features out interactively will fail too, and so
> debugging this will be less of a problem.
>
Hi Tom,

I will try to reproduce this fail and fix it on a v4.

Thank you for reporting,

BRs,

Safae


^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 09/19] android: boot: add vendor boot image to prepare for v3,v4 support
  2023-02-07  4:02   ` [PATCH v3 09/19] android: boot: add vendor boot image to prepare for v3,v4 support Simon Glass
@ 2023-02-09 17:01     ` Safae Ouajih
  0 siblings, 0 replies; 44+ messages in thread
From: Safae Ouajih @ 2023-02-09 17:01 UTC (permalink / raw)
  To: Simon Glass
  Cc: u-boot, sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman


On 07/02/2023 05:02, Simon Glass wrote:
> On Sun, 5 Feb 2023 at 16:50, Safae Ouajih <souajih@baylibre.com> wrote:
>> Introduce vendor boot image for version 3 and 4 of boot image header.
>> The vendor boot image will hold extra information about kernel, dtb
>> and ramdisk.
>>
>> This is done to prepare for boot image version 3 and 4 support.
>>
>> Signed-off-by: Safae Ouajih <souajih@baylibre.com>
>> ---
>>   boot/bootm.c         |  8 +++----
>>   boot/image-android.c | 54 ++++++++++++++++++++++++++++----------------
>>   boot/image-board.c   |  3 +--
>>   boot/image-fdt.c     |  3 ++-
>>   cmd/abootimg.c       |  4 ++--
>>   include/image.h      | 48 ++++++++++++++++++++++++++++++---------
>>   6 files changed, 81 insertions(+), 39 deletions(-)
> I don't see a change log but I see some comments. Not sure what else I
> said on the review.

Only the comments changed to add the new partition

Thank you for the review,

BR,

Safae

> Reviewed-by: Simon Glass <sjg@chromium.org>

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 18/19] test/py: android: extend abootimg test
  2023-02-07 19:02   ` Tom Rini
  2023-02-09 16:52     ` Safae Ouajih
@ 2023-02-27 14:15     ` Safae Ouajih
  2023-02-27 14:18       ` Tom Rini
  1 sibling, 1 reply; 44+ messages in thread
From: Safae Ouajih @ 2023-02-27 14:15 UTC (permalink / raw)
  To: Tom Rini
  Cc: sjg, u-boot, sean.anderson, r.stratiienko, mkorpershoek,
	glaroque, khilman


On 07/02/2023 20:02, Tom Rini wrote:
> On Mon, Feb 06, 2023 at 12:50:20AM +0100, Safae Ouajih wrote:
>
>> test_abootimg is extended to include the testing of boot images
>> version 4. For this, boot.img and vendor_boot.img have been
>> generated using mkbootimg tool with setting the header
>> version to 4.
>>
>> This tests:
>> - Getting the header version using abootimg
>> - Extracting the load address of the dtb
>> - Extracting the dtb start address in RAM
>>
>> Running test:
>> $ ./test/py/test.py --bd sandbox --build -k test_abootimg
>>
>> Signed-off-by: Safae Ouajih <souajih@baylibre.com>
>> Reviewed-by: Simon Glass <sjg@chromium.org>
>> ---
>>   test/py/tests/test_android/test_abootimg.py | 136 ++++++++++++++++++--
>>   1 file changed, 123 insertions(+), 13 deletions(-)
> Alright, so I don't know where the failure starts, exactly. And to make
> testing this easier, there's currently the
> trini/u-boot-gitlab-ci-runner:jammy-20230126-07Feb2023 container you can
> use to replicate my problem. The problem is that while this test passes
> in CI, with GCC, with Clang it fails, consistently:
> https://source.denx.de/u-boot/u-boot/-/jobs/572239#L284
> and I'm not quite sure why. I hope that building sandbox with clang and
> also just trying these features out interactively will fail too, and so
> debugging this will be less of a problem.
>
Hello Tom,

I have investigated this issue, clang has a strange behavior in:

* abootimg_get_dtb_load_addr() : cmd/abootimg.c
* android_image_get_dtb_by_index() : boot/image-android.c

That is probably linked to some sort of optimization clang does.

However, The fail is not reproducible using clang-15 and clang-16 and also
not reproducible when turning off clang optimizations.

I suggest using clang-15 to run the test or I can remove all optimizations

on the related functions if clang-14 is used.

Best regards,

Safae


^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 18/19] test/py: android: extend abootimg test
  2023-02-27 14:15     ` Safae Ouajih
@ 2023-02-27 14:18       ` Tom Rini
  2023-03-06 19:49         ` Safae Ouajih
  0 siblings, 1 reply; 44+ messages in thread
From: Tom Rini @ 2023-02-27 14:18 UTC (permalink / raw)
  To: Safae Ouajih
  Cc: sjg, u-boot, sean.anderson, r.stratiienko, mkorpershoek,
	glaroque, khilman

[-- Attachment #1: Type: text/plain, Size: 2242 bytes --]

On Mon, Feb 27, 2023 at 03:15:31PM +0100, Safae Ouajih wrote:
> 
> On 07/02/2023 20:02, Tom Rini wrote:
> > On Mon, Feb 06, 2023 at 12:50:20AM +0100, Safae Ouajih wrote:
> > 
> > > test_abootimg is extended to include the testing of boot images
> > > version 4. For this, boot.img and vendor_boot.img have been
> > > generated using mkbootimg tool with setting the header
> > > version to 4.
> > > 
> > > This tests:
> > > - Getting the header version using abootimg
> > > - Extracting the load address of the dtb
> > > - Extracting the dtb start address in RAM
> > > 
> > > Running test:
> > > $ ./test/py/test.py --bd sandbox --build -k test_abootimg
> > > 
> > > Signed-off-by: Safae Ouajih <souajih@baylibre.com>
> > > Reviewed-by: Simon Glass <sjg@chromium.org>
> > > ---
> > >   test/py/tests/test_android/test_abootimg.py | 136 ++++++++++++++++++--
> > >   1 file changed, 123 insertions(+), 13 deletions(-)
> > Alright, so I don't know where the failure starts, exactly. And to make
> > testing this easier, there's currently the
> > trini/u-boot-gitlab-ci-runner:jammy-20230126-07Feb2023 container you can
> > use to replicate my problem. The problem is that while this test passes
> > in CI, with GCC, with Clang it fails, consistently:
> > https://source.denx.de/u-boot/u-boot/-/jobs/572239#L284
> > and I'm not quite sure why. I hope that building sandbox with clang and
> > also just trying these features out interactively will fail too, and so
> > debugging this will be less of a problem.
> > 
> Hello Tom,
> 
> I have investigated this issue, clang has a strange behavior in:
> 
> * abootimg_get_dtb_load_addr() : cmd/abootimg.c
> * android_image_get_dtb_by_index() : boot/image-android.c
> 
> That is probably linked to some sort of optimization clang does.
> 
> However, The fail is not reproducible using clang-15 and clang-16 and also
> not reproducible when turning off clang optimizations.
> 
> I suggest using clang-15 to run the test or I can remove all optimizations
> 
> on the related functions if clang-14 is used.

Thanks for investigating.  I see that 15 is now considered stable, so
I'll update the next branch for that, then re-take this series.

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 18/19] test/py: android: extend abootimg test
  2023-02-27 14:18       ` Tom Rini
@ 2023-03-06 19:49         ` Safae Ouajih
  2023-03-06 20:07           ` Tom Rini
  0 siblings, 1 reply; 44+ messages in thread
From: Safae Ouajih @ 2023-03-06 19:49 UTC (permalink / raw)
  To: Tom Rini
  Cc: sjg, u-boot, sean.anderson, r.stratiienko, mkorpershoek,
	glaroque, khilman


On 27/02/2023 15:18, Tom Rini wrote:
> On Mon, Feb 27, 2023 at 03:15:31PM +0100, Safae Ouajih wrote:
>> On 07/02/2023 20:02, Tom Rini wrote:
>>> On Mon, Feb 06, 2023 at 12:50:20AM +0100, Safae Ouajih wrote:
>>>
>>>> test_abootimg is extended to include the testing of boot images
>>>> version 4. For this, boot.img and vendor_boot.img have been
>>>> generated using mkbootimg tool with setting the header
>>>> version to 4.
>>>>
>>>> This tests:
>>>> - Getting the header version using abootimg
>>>> - Extracting the load address of the dtb
>>>> - Extracting the dtb start address in RAM
>>>>
>>>> Running test:
>>>> $ ./test/py/test.py --bd sandbox --build -k test_abootimg
>>>>
>>>> Signed-off-by: Safae Ouajih <souajih@baylibre.com>
>>>> Reviewed-by: Simon Glass <sjg@chromium.org>
>>>> ---
>>>>    test/py/tests/test_android/test_abootimg.py | 136 ++++++++++++++++++--
>>>>    1 file changed, 123 insertions(+), 13 deletions(-)
>>> Alright, so I don't know where the failure starts, exactly. And to make
>>> testing this easier, there's currently the
>>> trini/u-boot-gitlab-ci-runner:jammy-20230126-07Feb2023 container you can
>>> use to replicate my problem. The problem is that while this test passes
>>> in CI, with GCC, with Clang it fails, consistently:
>>> https://source.denx.de/u-boot/u-boot/-/jobs/572239#L284
>>> and I'm not quite sure why. I hope that building sandbox with clang and
>>> also just trying these features out interactively will fail too, and so
>>> debugging this will be less of a problem.
>>>
>> Hello Tom,
>>
>> I have investigated this issue, clang has a strange behavior in:
>>
>> * abootimg_get_dtb_load_addr() : cmd/abootimg.c
>> * android_image_get_dtb_by_index() : boot/image-android.c
>>
>> That is probably linked to some sort of optimization clang does.
>>
>> However, The fail is not reproducible using clang-15 and clang-16 and also
>> not reproducible when turning off clang optimizations.
>>
>> I suggest using clang-15 to run the test or I can remove all optimizations
>>
>> on the related functions if clang-14 is used.
> Thanks for investigating.  I see that 15 is now considered stable, so
> I'll update the next branch for that, then re-take this series.
>

Hello Tom,

Thank you.

I am a bit confused, do you mean that you will apply this series after 
clang-15 update?

Best regards,

Safae


^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 18/19] test/py: android: extend abootimg test
  2023-03-06 19:49         ` Safae Ouajih
@ 2023-03-06 20:07           ` Tom Rini
  0 siblings, 0 replies; 44+ messages in thread
From: Tom Rini @ 2023-03-06 20:07 UTC (permalink / raw)
  To: Safae Ouajih
  Cc: sjg, u-boot, sean.anderson, r.stratiienko, mkorpershoek,
	glaroque, khilman

[-- Attachment #1: Type: text/plain, Size: 2906 bytes --]

On Mon, Mar 06, 2023 at 08:49:02PM +0100, Safae Ouajih wrote:
> 
> On 27/02/2023 15:18, Tom Rini wrote:
> > On Mon, Feb 27, 2023 at 03:15:31PM +0100, Safae Ouajih wrote:
> > > On 07/02/2023 20:02, Tom Rini wrote:
> > > > On Mon, Feb 06, 2023 at 12:50:20AM +0100, Safae Ouajih wrote:
> > > > 
> > > > > test_abootimg is extended to include the testing of boot images
> > > > > version 4. For this, boot.img and vendor_boot.img have been
> > > > > generated using mkbootimg tool with setting the header
> > > > > version to 4.
> > > > > 
> > > > > This tests:
> > > > > - Getting the header version using abootimg
> > > > > - Extracting the load address of the dtb
> > > > > - Extracting the dtb start address in RAM
> > > > > 
> > > > > Running test:
> > > > > $ ./test/py/test.py --bd sandbox --build -k test_abootimg
> > > > > 
> > > > > Signed-off-by: Safae Ouajih <souajih@baylibre.com>
> > > > > Reviewed-by: Simon Glass <sjg@chromium.org>
> > > > > ---
> > > > >    test/py/tests/test_android/test_abootimg.py | 136 ++++++++++++++++++--
> > > > >    1 file changed, 123 insertions(+), 13 deletions(-)
> > > > Alright, so I don't know where the failure starts, exactly. And to make
> > > > testing this easier, there's currently the
> > > > trini/u-boot-gitlab-ci-runner:jammy-20230126-07Feb2023 container you can
> > > > use to replicate my problem. The problem is that while this test passes
> > > > in CI, with GCC, with Clang it fails, consistently:
> > > > https://source.denx.de/u-boot/u-boot/-/jobs/572239#L284
> > > > and I'm not quite sure why. I hope that building sandbox with clang and
> > > > also just trying these features out interactively will fail too, and so
> > > > debugging this will be less of a problem.
> > > > 
> > > Hello Tom,
> > > 
> > > I have investigated this issue, clang has a strange behavior in:
> > > 
> > > * abootimg_get_dtb_load_addr() : cmd/abootimg.c
> > > * android_image_get_dtb_by_index() : boot/image-android.c
> > > 
> > > That is probably linked to some sort of optimization clang does.
> > > 
> > > However, The fail is not reproducible using clang-15 and clang-16 and also
> > > not reproducible when turning off clang optimizations.
> > > 
> > > I suggest using clang-15 to run the test or I can remove all optimizations
> > > 
> > > on the related functions if clang-14 is used.
> > Thanks for investigating.  I see that 15 is now considered stable, so
> > I'll update the next branch for that, then re-take this series.
> > 
> 
> Hello Tom,
> 
> Thank you.
> 
> I am a bit confused, do you mean that you will apply this series after
> clang-15 update?

Yes, and the series to move CI to clang-15 is currently stuck on some
pytest (real) failures that need to be resolved. But I would expect this
to all be resolved in time for this series here to be included in
v2023.07.

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 00/19] Support android boot image v3/v4
  2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
                   ` (19 preceding siblings ...)
  2023-02-09 14:08 ` [PATCH v3 00/19] Support android boot image v3/v4 Mattijs Korpershoek
@ 2023-04-05 14:41 ` Tom Rini
  20 siblings, 0 replies; 44+ messages in thread
From: Tom Rini @ 2023-04-05 14:41 UTC (permalink / raw)
  To: u-boot, sjg, Safae Ouajih
  Cc: sean.anderson, r.stratiienko, mkorpershoek, glaroque, khilman

On Mon, 06 Feb 2023 00:50:02 +0100, Safae Ouajih wrote:

> * This is based on Roman Stratiienko's work to support boot image header version 3 and 4.
> 
> * This supports the new boot image headers v3, v4 and bootconfig feature.
> https://source.android.com/docs/core/architecture/bootloader/boot-image-header
> https://source.android.com/docs/core/architecture/bootloader/implementing-bootconfig
> 
> - Tested on Amlogic Khadas vim3l, a reference board for Android Open Source Project
>   https://www.khadas.com/vim3l
> 
> [...]

Applied to u-boot/master, thanks!

-- 
Tom


^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 11/19] android: boot: ramdisk: support vendor ramdisk
  2023-02-09 14:35   ` Mattijs Korpershoek
@ 2023-04-07  8:56     ` Roman Stratiienko
  2023-04-07 13:16       ` Mattijs Korpershoek
  0 siblings, 1 reply; 44+ messages in thread
From: Roman Stratiienko @ 2023-04-07  8:56 UTC (permalink / raw)
  To: Mattijs Korpershoek
  Cc: Safae Ouajih, sjg, u-boot, sean.anderson, glaroque, khilman

Hi guys,

I rebased on uboot/master and all is working for me except for the
boot image ramdisk concatenation.
Current memcpy logic overwrites its context. Please find a fix that
works for me here:
https://github.com/GloDroidCommunity/raspberry-pi/blob/151fae1c7ddb7d347034dd135631f8f7075c7968/patches-aosp/glodroid/bootloader/u-boot/0006-android-Fix-ramdisk-loading-for-bootimage-v3.patch

чт, 9 февр. 2023 г. в 16:35, Mattijs Korpershoek <mkorpershoek@baylibre.com>:
>
> On Mon, Feb 06, 2023 at 00:50, Safae Ouajih <souajih@baylibre.com> wrote:
>
> > Version 3 and 4 of boot image header introduced
> > vendor boot ramdisk: Please check include/android_image.h
> > for details.
> >
> > The ramdisk is now split into a generic ramdisk in boot image
> > and a vendor ramdisk in vendor boot image.
> >
> > Support the new vendor ramdisk.
> >
> > Signed-off-by: Safae Ouajih <souajih@baylibre.com>
> > Reviewed-by: Simon Glass <sjg@chromium.org>
>
> Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
>
> > ---
> >  boot/image-android.c | 13 +++++++++++--
> >  include/image.h      |  4 ++--
> >  2 files changed, 13 insertions(+), 4 deletions(-)
> >
> > diff --git a/boot/image-android.c b/boot/image-android.c
> > index 712d437766..35243fd5b1 100644
> > --- a/boot/image-android.c
> > +++ b/boot/image-android.c
> > @@ -25,6 +25,7 @@ static void android_boot_image_v3_v4_parse_hdr(const struct andr_boot_img_hdr_v3
> >
> >       data->kcmdline = hdr->cmdline;
> >       data->header_version = hdr->header_version;
> > +     data->ramdisk_ptr = env_get_ulong("ramdisk_addr_r", 16, 0);
> >
> >       /*
> >        * The header takes a full page, the remaining components are aligned
> > @@ -322,10 +323,11 @@ ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr,
> >               return image_decomp_type(p, sizeof(u32));
> >  }
> >
> > -int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
> > -                           const void *vendor_boot_img, ulong *rd_data, ulong *rd_len)
> > +int android_image_get_ramdisk(const void *hdr, const void *vendor_boot_img,
> > +                           ulong *rd_data, ulong *rd_len)
> >  {
> >       struct andr_image_data img_data = {0};
> > +     ulong ramdisk_ptr;
> >
> >       if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
> >               return -EINVAL;
> > @@ -334,6 +336,13 @@ int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
> >               *rd_data = *rd_len = 0;
> >               return -1;
> >       }
> > +     if (img_data.header_version > 2) {
> > +             ramdisk_ptr = img_data.ramdisk_ptr;
> > +             memcpy((void *)(ramdisk_ptr), (void *)img_data.vendor_ramdisk_ptr,
> > +                    img_data.vendor_ramdisk_size);
> > +             memcpy((void *)(ramdisk_ptr + img_data.vendor_ramdisk_size),
> > +                    (void *)img_data.ramdisk_ptr, img_data.boot_ramdisk_size);
> > +     }
> >
> >       printf("RAM disk load addr 0x%08lx size %u KiB\n",
> >              img_data.ramdisk_ptr, DIV_ROUND_UP(img_data.ramdisk_size, 1024));
> > diff --git a/include/image.h b/include/image.h
> > index c2e751c136..c4d9b1c575 100644
> > --- a/include/image.h
> > +++ b/include/image.h
> > @@ -1782,8 +1782,8 @@ int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr,
> >   * @rd_len:  Pointer to a ulong variable, will hold ramdisk length
> >   * Return: 0 if succeeded, -1 if ramdisk size is 0
> >   */
> > -int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
> > -                           const void *vendor_boot_img, ulong *rd_data, ulong *rd_len);
> > +int android_image_get_ramdisk(const void *hdr, const void *vendor_boot_img,
> > +                           ulong *rd_data, ulong *rd_len);
> >
> >  /**
> >   * android_image_get_second() - Extracts the secondary bootloader address
> > --
> > 2.34.1

^ permalink raw reply	[flat|nested] 44+ messages in thread

* Re: [PATCH v3 11/19] android: boot: ramdisk: support vendor ramdisk
  2023-04-07  8:56     ` Roman Stratiienko
@ 2023-04-07 13:16       ` Mattijs Korpershoek
  0 siblings, 0 replies; 44+ messages in thread
From: Mattijs Korpershoek @ 2023-04-07 13:16 UTC (permalink / raw)
  To: Roman Stratiienko
  Cc: Safae Ouajih, sjg, u-boot, sean.anderson, glaroque, khilman,
	ouajih.safae

Hi Roman,

On ven., avril 07, 2023 at 11:56, Roman Stratiienko <r.stratiienko@gmail.com> wrote:

> Hi guys,
>
> I rebased on uboot/master and all is working for me except for the

Thanks a lot for confirming that things work for you.

> boot image ramdisk concatenation.
> Current memcpy logic overwrites its context. Please find a fix that
> works for me here:
> https://github.com/GloDroidCommunity/raspberry-pi/blob/151fae1c7ddb7d347034dd135631f8f7075c7968/patches-aosp/glodroid/bootloader/u-boot/0006-android-Fix-ramdisk-loading-for-bootimage-v3.patch

Thanks as well for reporting this problem. I did not observe any
problems with the ramdisk concatenation when I tested on a TI AM62x evk board with these:

* https://gitlab.baylibre.com/baylibre/ti/android/aosp/device/ti/am62x/-/merge_requests/29
* https://gitlab.baylibre.com/baylibre/ti/ti-u-boot/-/merge_requests/7
* https://gitlab.baylibre.com/baylibre/ti/ti-linux-kernel/-/merge_requests/75

Note that it's a bit of unfortunate timing for me. I am leaving my office for a
month of break. I will have a look at this when I come back after my vacation.

Regards,
Mattijs

>
> чт, 9 февр. 2023 г. в 16:35, Mattijs Korpershoek <mkorpershoek@baylibre.com>:
>>
>> On Mon, Feb 06, 2023 at 00:50, Safae Ouajih <souajih@baylibre.com> wrote:
>>
>> > Version 3 and 4 of boot image header introduced
>> > vendor boot ramdisk: Please check include/android_image.h
>> > for details.
>> >
>> > The ramdisk is now split into a generic ramdisk in boot image
>> > and a vendor ramdisk in vendor boot image.
>> >
>> > Support the new vendor ramdisk.
>> >
>> > Signed-off-by: Safae Ouajih <souajih@baylibre.com>
>> > Reviewed-by: Simon Glass <sjg@chromium.org>
>>
>> Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
>>
>> > ---
>> >  boot/image-android.c | 13 +++++++++++--
>> >  include/image.h      |  4 ++--
>> >  2 files changed, 13 insertions(+), 4 deletions(-)
>> >
>> > diff --git a/boot/image-android.c b/boot/image-android.c
>> > index 712d437766..35243fd5b1 100644
>> > --- a/boot/image-android.c
>> > +++ b/boot/image-android.c
>> > @@ -25,6 +25,7 @@ static void android_boot_image_v3_v4_parse_hdr(const struct andr_boot_img_hdr_v3
>> >
>> >       data->kcmdline = hdr->cmdline;
>> >       data->header_version = hdr->header_version;
>> > +     data->ramdisk_ptr = env_get_ulong("ramdisk_addr_r", 16, 0);
>> >
>> >       /*
>> >        * The header takes a full page, the remaining components are aligned
>> > @@ -322,10 +323,11 @@ ulong android_image_get_kcomp(const struct andr_boot_img_hdr_v0 *hdr,
>> >               return image_decomp_type(p, sizeof(u32));
>> >  }
>> >
>> > -int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
>> > -                           const void *vendor_boot_img, ulong *rd_data, ulong *rd_len)
>> > +int android_image_get_ramdisk(const void *hdr, const void *vendor_boot_img,
>> > +                           ulong *rd_data, ulong *rd_len)
>> >  {
>> >       struct andr_image_data img_data = {0};
>> > +     ulong ramdisk_ptr;
>> >
>> >       if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
>> >               return -EINVAL;
>> > @@ -334,6 +336,13 @@ int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
>> >               *rd_data = *rd_len = 0;
>> >               return -1;
>> >       }
>> > +     if (img_data.header_version > 2) {
>> > +             ramdisk_ptr = img_data.ramdisk_ptr;
>> > +             memcpy((void *)(ramdisk_ptr), (void *)img_data.vendor_ramdisk_ptr,
>> > +                    img_data.vendor_ramdisk_size);
>> > +             memcpy((void *)(ramdisk_ptr + img_data.vendor_ramdisk_size),
>> > +                    (void *)img_data.ramdisk_ptr, img_data.boot_ramdisk_size);
>> > +     }
>> >
>> >       printf("RAM disk load addr 0x%08lx size %u KiB\n",
>> >              img_data.ramdisk_ptr, DIV_ROUND_UP(img_data.ramdisk_size, 1024));
>> > diff --git a/include/image.h b/include/image.h
>> > index c2e751c136..c4d9b1c575 100644
>> > --- a/include/image.h
>> > +++ b/include/image.h
>> > @@ -1782,8 +1782,8 @@ int android_image_get_kernel(const struct andr_boot_img_hdr_v0 *hdr,
>> >   * @rd_len:  Pointer to a ulong variable, will hold ramdisk length
>> >   * Return: 0 if succeeded, -1 if ramdisk size is 0
>> >   */
>> > -int android_image_get_ramdisk(const struct andr_boot_img_hdr_v0 *hdr,
>> > -                           const void *vendor_boot_img, ulong *rd_data, ulong *rd_len);
>> > +int android_image_get_ramdisk(const void *hdr, const void *vendor_boot_img,
>> > +                           ulong *rd_data, ulong *rd_len);
>> >
>> >  /**
>> >   * android_image_get_second() - Extracts the secondary bootloader address
>> > --
>> > 2.34.1

^ permalink raw reply	[flat|nested] 44+ messages in thread

end of thread, other threads:[~2023-04-07 13:17 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-05 23:50 [PATCH v3 00/19] Support android boot image v3/v4 Safae Ouajih
2023-02-05 23:50 ` [PATCH v3 01/19] android: boot: rename andr_img_hdr -> andr_boot_img_hdr_v0 Safae Ouajih
2023-02-05 23:50 ` [PATCH v3 02/19] android: boot: support vendor boot image in abootimg Safae Ouajih
2023-02-05 23:50 ` [PATCH v3 03/19] android: boot: replace android_image_check_header Safae Ouajih
2023-02-05 23:50 ` [PATCH v3 04/19] android: boot: add boot image header v3 and v4 structures Safae Ouajih
2023-02-05 23:50 ` [PATCH v3 05/19] android: boot: kcomp: support andr_image_data Safae Ouajih
2023-02-05 23:50 ` [PATCH v3 06/19] android: boot: move to andr_image_data structure Safae Ouajih
2023-02-07  4:02   ` Simon Glass
2023-02-09 16:30     ` Safae Ouajih
2023-02-09 14:26   ` Mattijs Korpershoek
2023-02-09 16:49     ` Safae Ouajih
2023-02-05 23:50 ` [PATCH v3 07/19] android: boot: content print is not supported for v3, v4 header version Safae Ouajih
2023-02-05 23:50 ` [PATCH v3 08/19] android: boot: boot image header v3, v4 do not support recovery DTBO Safae Ouajih
2023-02-05 23:50 ` [PATCH v3 09/19] android: boot: add vendor boot image to prepare for v3, v4 support Safae Ouajih
2023-02-07  4:02   ` [PATCH v3 09/19] android: boot: add vendor boot image to prepare for v3,v4 support Simon Glass
2023-02-09 17:01     ` Safae Ouajih
2023-02-09 14:29   ` Mattijs Korpershoek
2023-02-09 14:30   ` Mattijs Korpershoek
2023-02-05 23:50 ` [PATCH v3 10/19] android: boot: update android_image_get_data to support v3, v4 Safae Ouajih
2023-02-09 14:32   ` [PATCH v3 10/19] android: boot: update android_image_get_data to support v3,v4 Mattijs Korpershoek
2023-02-05 23:50 ` [PATCH v3 11/19] android: boot: ramdisk: support vendor ramdisk Safae Ouajih
2023-02-09 14:35   ` Mattijs Korpershoek
2023-04-07  8:56     ` Roman Stratiienko
2023-04-07 13:16       ` Mattijs Korpershoek
2023-02-05 23:50 ` [PATCH v3 12/19] android: boot: support extra command line Safae Ouajih
2023-02-05 23:50 ` [PATCH v3 13/19] android: boot: update android_image_get_dtb_img_addr to support v3, v4 Safae Ouajih
2023-02-05 23:50 ` [PATCH v3 14/19] drivers: fastboot: zImage flashing is not supported for " Safae Ouajih
2023-02-09 14:38   ` [PATCH v3 14/19] drivers: fastboot: zImage flashing is not supported for v3,v4 Mattijs Korpershoek
2023-02-05 23:50 ` [PATCH v3 15/19] android: boot: support boot image header version 3 and 4 Safae Ouajih
2023-02-09 14:46   ` Mattijs Korpershoek
2023-02-05 23:50 ` [PATCH v3 16/19] android: boot: support bootconfig Safae Ouajih
2023-02-05 23:50 ` [PATCH v3 17/19] doc: android: add documentation for v3, v4 boot image header Safae Ouajih
2023-02-07  4:02   ` [PATCH v3 17/19] doc: android: add documentation for v3,v4 " Simon Glass
2023-02-08  8:54   ` Mattijs Korpershoek
2023-02-05 23:50 ` [PATCH v3 18/19] test/py: android: extend abootimg test Safae Ouajih
2023-02-07 19:02   ` Tom Rini
2023-02-09 16:52     ` Safae Ouajih
2023-02-27 14:15     ` Safae Ouajih
2023-02-27 14:18       ` Tom Rini
2023-03-06 19:49         ` Safae Ouajih
2023-03-06 20:07           ` Tom Rini
2023-02-05 23:50 ` [PATCH v3 19/19] Dockerfile: add mkbootimg tool Safae Ouajih
2023-02-09 14:08 ` [PATCH v3 00/19] Support android boot image v3/v4 Mattijs Korpershoek
2023-04-05 14:41 ` Tom Rini

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.