Revert "habv4: tools: Avoid hardcoded CSF size for SPL targets"
authorStefano Babic <sbabic@denx.de>
Fri, 13 Sep 2019 16:53:03 +0000 (18:53 +0200)
committerStefano Babic <sbabic@denx.de>
Tue, 8 Oct 2019 14:35:59 +0000 (16:35 +0200)
This reverts commit 62a52f3f85bf33e286632e99f0d39b2c166af0c4.

common/image.c
tools/default_image.c

index 9badb915f48adea91c2ab2088e518a3ba44ca3d3..179eef0bd2dc8524bec46d4455de88d8da718162 100644 (file)
@@ -61,8 +61,6 @@ static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
 #endif /* !USE_HOSTCC*/
 
 #include <u-boot/crc.h>
-#include <imximage.h>
-#include <generated/autoconf.h>
 
 #ifndef CONFIG_SYS_BARGSIZE
 #define CONFIG_SYS_BARGSIZE 512
@@ -380,9 +378,9 @@ void image_print_contents(const void *ptr)
                }
        } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
                printf("HAB Blocks:   0x%08x   0x0000   0x%08x\n",
-                       image_get_load(hdr) - image_get_header_size(),
-                       (int)(image_get_size(hdr) + image_get_header_size()
-                       + sizeof(flash_header_v2_t) - CONFIG_CSF_SIZE));
+                               image_get_load(hdr) - image_get_header_size(),
+                               image_get_size(hdr) + image_get_header_size()
+                                               - 0x1FE0);
        }
 }
 
index 7a26232779807e187b713b02ad27582abb131bb5..4b7d1ed4a1a5247d72a1f73c65466c2daac486e9 100644 (file)
@@ -19,8 +19,6 @@
 #include <image.h>
 #include <tee/optee.h>
 #include <u-boot/crc.h>
-#include <imximage.h>
-#include <generated/autoconf.h>
 
 static image_header_t header;
 
@@ -108,8 +106,7 @@ static void image_set_header(void *ptr, struct stat *sbuf, int ifd,
 
        if (params->type == IH_TYPE_FIRMWARE_IVT)
                /* Add size of CSF minus IVT */
-               imagesize = sbuf->st_size - sizeof(image_header_t)
-                           + CONFIG_CSF_SIZE - sizeof(flash_header_v2_t);
+               imagesize = sbuf->st_size - sizeof(image_header_t) + 0x1FE0;
        else
                imagesize = sbuf->st_size - sizeof(image_header_t);