Re: [PATCH v2 1/2] tools: mkimage: Add StarFive SPL image support

2023-09-16 Thread Milan P . Stanić
On Wed, 2023-09-06 at 14:00, Heinrich Schuchardt wrote:
> The StarFive JH7110 base boards require a header to be prefixed to the SPL
> binary image. This has previously done with a vendor tool 'spl_tool'
> published under a GPL-2-or-later license. Integrate this capability into
> mkimage.
> 
> Signed-off-by: Heinrich Schuchardt 
> Tested-by: Chanho Park 

Tested-by: Milan P. Stanić 

> ---
> v2:
>   no change except for Tested-by credit
> ---
>  boot/image.c|   1 +
>  include/image.h |   1 +
>  tools/Makefile  |   1 +
>  tools/sfspl.c   | 174 
>  4 files changed, 177 insertions(+)
>  create mode 100644 tools/sfspl.c
> 
> diff --git a/boot/image.c b/boot/image.c
> index 5c4f9b807d..3a99d2e897 100644
> --- a/boot/image.c
> +++ b/boot/image.c
> @@ -182,6 +182,7 @@ static const table_entry_t uimage_type[] = {
>   {   IH_TYPE_SUNXI_TOC0, "sunxi_toc0",  "Allwinner TOC0 Boot Image" 
> },
>   {   IH_TYPE_FDT_LEGACY, "fdt_legacy", "legacy Image with Flat 
> Device Tree ", },
>   {   IH_TYPE_RENESAS_SPKG, "spkgimage", "Renesas SPKG Image" },
> + {   IH_TYPE_STARFIVE_SPL, "sfspl", "StarFive SPL Image" },
>   {   -1, "",   "",   },
>  };
>  
> diff --git a/include/image.h b/include/image.h
> index 01a6787d21..5f85bf84a2 100644
> --- a/include/image.h
> +++ b/include/image.h
> @@ -231,6 +231,7 @@ enum image_type_t {
>   IH_TYPE_SUNXI_TOC0, /* Allwinner TOC0 Boot Image */
>   IH_TYPE_FDT_LEGACY, /* Binary Flat Device Tree Blob in a 
> Legacy Image */
>   IH_TYPE_RENESAS_SPKG,   /* Renesas SPKG image */
> + IH_TYPE_STARFIVE_SPL,   /* StarFive SPL image */
>  
>   IH_TYPE_COUNT,  /* Number of image types */
>  };
> diff --git a/tools/Makefile b/tools/Makefile
> index 3d0c4b0dd6..1aa1e36137 100644
> --- a/tools/Makefile
> +++ b/tools/Makefile
> @@ -123,6 +123,7 @@ dumpimage-mkimage-objs := aisimage.o \
>   pblimage.o \
>   pbl_crc32.o \
>   renesas_spkgimage.o \
> + sfspl.o \
>   vybridimage.o \
>   stm32image.o \
>   $(ROCKCHIP_OBS) \
> diff --git a/tools/sfspl.c b/tools/sfspl.c
> new file mode 100644
> index 00..ec18a0a77e
> --- /dev/null
> +++ b/tools/sfspl.c
> @@ -0,0 +1,174 @@
> +// SPDX-License-Identifier: GPL-2.0-or-later
> +/*
> + * Copyright Heinrich Schuchardt 
> + *
> + * The StarFive JH7110 requires to prepend a header to u-boot-spl.bin 
> describing
> + * the payload length and CRC32.
> + *
> + * This module implements support in mkimage and dumpimage for this file 
> format.
> + *
> + * StarFive's spl_tool available under GPL-2.0-and-later at
> + * https://github.com/starfive-tech/Tools implements writing the same file
> + * format and served as a reference.
> + */
> +
> +#include 
> +#include 
> +#include 
> +#include 
> +#include "imagetool.h"
> +
> +#define DEFAULT_VERSION 0x01010101
> +#define DEFAULT_BACKUP 0x20U
> +#define DEFAULT_OFFSET 0x240
> +
> +/**
> + * struct spl_hdr - header for SPL on JH7110
> + *
> + * All fields are low-endian.
> + */
> +struct spl_hdr {
> + /** @offset:offset to SPL header (0x240) */
> + unsigned int offset;
> + /** @bkp_offs:  address of backup SPL, defaults to DEFAULT_BACKUP */
> + unsigned int bkp_offs;
> + /** @zero1: set to zero */
> + unsigned int zero1[159];
> + /** @version:   header version, defaults to DEFAULT_VERSION */
> + unsigned int version;
> + /** @file_size: file size */
> + unsigned int file_size;
> + /** @hdr_size:  size of the file header (0x400) */
> + unsigned int hdr_size;
> + /** @crc32: CRC32 */
> + unsigned int crc32;
> + /** @zero2: set to zero */
> + unsigned int zero2[91];
> +};
> +
> +static int sfspl_check_params(struct image_tool_params *params)
> +{
> + /* Only the RISC-V architecture is supported */
> + if (params->Aflag && params->arch != IH_ARCH_RISCV)
> + return EXIT_FAILURE;
> +
> + return EXIT_SUCCESS;
> +}
> +
> +static int sfspl_verify_header(unsigned char *buf, int size,
> +struct image_tool_params *params)
> +{
> + struct spl_hdr *hdr = (void *)buf;
> + unsigned int hdr_size = le32_to_cpu(hdr->hdr_size);
> + unsigned int file_size = le32_to_cpu(hdr->file_size);
> + unsigned int crc = le32_to_cpu(hdr->crc32);
> + unsigned int crc_check;
> +
> + if (size < 0 ||
> + (size_t)size < sizeof(struct spl_hdr) ||
> + (size_t)size < hdr_size + file_size) {
> + printf("Truncated file\n");
> + return EXIT_FAILURE;
> + }
> + if (hdr->version != DEFAULT_VERSION) {
> + printf("Unknown file format version\n");
> + return EXIT_FAILURE;
> + }
> + crc_check = cr

[PATCH v2 1/2] tools: mkimage: Add StarFive SPL image support

2023-09-06 Thread Heinrich Schuchardt
The StarFive JH7110 base boards require a header to be prefixed to the SPL
binary image. This has previously done with a vendor tool 'spl_tool'
published under a GPL-2-or-later license. Integrate this capability into
mkimage.

Signed-off-by: Heinrich Schuchardt 
Tested-by: Chanho Park 
---
v2:
no change except for Tested-by credit
---
 boot/image.c|   1 +
 include/image.h |   1 +
 tools/Makefile  |   1 +
 tools/sfspl.c   | 174 
 4 files changed, 177 insertions(+)
 create mode 100644 tools/sfspl.c

diff --git a/boot/image.c b/boot/image.c
index 5c4f9b807d..3a99d2e897 100644
--- a/boot/image.c
+++ b/boot/image.c
@@ -182,6 +182,7 @@ static const table_entry_t uimage_type[] = {
{   IH_TYPE_SUNXI_TOC0, "sunxi_toc0",  "Allwinner TOC0 Boot Image" 
},
{   IH_TYPE_FDT_LEGACY, "fdt_legacy", "legacy Image with Flat 
Device Tree ", },
{   IH_TYPE_RENESAS_SPKG, "spkgimage", "Renesas SPKG Image" },
+   {   IH_TYPE_STARFIVE_SPL, "sfspl", "StarFive SPL Image" },
{   -1, "",   "",   },
 };
 
diff --git a/include/image.h b/include/image.h
index 01a6787d21..5f85bf84a2 100644
--- a/include/image.h
+++ b/include/image.h
@@ -231,6 +231,7 @@ enum image_type_t {
IH_TYPE_SUNXI_TOC0, /* Allwinner TOC0 Boot Image */
IH_TYPE_FDT_LEGACY, /* Binary Flat Device Tree Blob in a 
Legacy Image */
IH_TYPE_RENESAS_SPKG,   /* Renesas SPKG image */
+   IH_TYPE_STARFIVE_SPL,   /* StarFive SPL image */
 
IH_TYPE_COUNT,  /* Number of image types */
 };
diff --git a/tools/Makefile b/tools/Makefile
index 3d0c4b0dd6..1aa1e36137 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -123,6 +123,7 @@ dumpimage-mkimage-objs := aisimage.o \
pblimage.o \
pbl_crc32.o \
renesas_spkgimage.o \
+   sfspl.o \
vybridimage.o \
stm32image.o \
$(ROCKCHIP_OBS) \
diff --git a/tools/sfspl.c b/tools/sfspl.c
new file mode 100644
index 00..ec18a0a77e
--- /dev/null
+++ b/tools/sfspl.c
@@ -0,0 +1,174 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * Copyright Heinrich Schuchardt 
+ *
+ * The StarFive JH7110 requires to prepend a header to u-boot-spl.bin 
describing
+ * the payload length and CRC32.
+ *
+ * This module implements support in mkimage and dumpimage for this file 
format.
+ *
+ * StarFive's spl_tool available under GPL-2.0-and-later at
+ * https://github.com/starfive-tech/Tools implements writing the same file
+ * format and served as a reference.
+ */
+
+#include 
+#include 
+#include 
+#include 
+#include "imagetool.h"
+
+#define DEFAULT_VERSION 0x01010101
+#define DEFAULT_BACKUP 0x20U
+#define DEFAULT_OFFSET 0x240
+
+/**
+ * struct spl_hdr - header for SPL on JH7110
+ *
+ * All fields are low-endian.
+ */
+struct spl_hdr {
+   /** @offset:offset to SPL header (0x240) */
+   unsigned int offset;
+   /** @bkp_offs:  address of backup SPL, defaults to DEFAULT_BACKUP */
+   unsigned int bkp_offs;
+   /** @zero1: set to zero */
+   unsigned int zero1[159];
+   /** @version:   header version, defaults to DEFAULT_VERSION */
+   unsigned int version;
+   /** @file_size: file size */
+   unsigned int file_size;
+   /** @hdr_size:  size of the file header (0x400) */
+   unsigned int hdr_size;
+   /** @crc32: CRC32 */
+   unsigned int crc32;
+   /** @zero2: set to zero */
+   unsigned int zero2[91];
+};
+
+static int sfspl_check_params(struct image_tool_params *params)
+{
+   /* Only the RISC-V architecture is supported */
+   if (params->Aflag && params->arch != IH_ARCH_RISCV)
+   return EXIT_FAILURE;
+
+   return EXIT_SUCCESS;
+}
+
+static int sfspl_verify_header(unsigned char *buf, int size,
+  struct image_tool_params *params)
+{
+   struct spl_hdr *hdr = (void *)buf;
+   unsigned int hdr_size = le32_to_cpu(hdr->hdr_size);
+   unsigned int file_size = le32_to_cpu(hdr->file_size);
+   unsigned int crc = le32_to_cpu(hdr->crc32);
+   unsigned int crc_check;
+
+   if (size < 0 ||
+   (size_t)size < sizeof(struct spl_hdr) ||
+   (size_t)size < hdr_size + file_size) {
+   printf("Truncated file\n");
+   return EXIT_FAILURE;
+   }
+   if (hdr->version != DEFAULT_VERSION) {
+   printf("Unknown file format version\n");
+   return EXIT_FAILURE;
+   }
+   crc_check = crc32(0, &buf[hdr_size], size - hdr_size);
+   if (crc_check != crc) {
+   printf("Incorrect CRC32\n");
+   return EXIT_FAILURE;
+   }
+
+   return EXIT_SUCCESS;
+}
+
+static void sfspl_print_header(const void *buf,
+