]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
imx: hab: Use size parameter
authorMarek Vasut <marex@denx.de>
Thu, 31 Aug 2023 14:57:24 +0000 (16:57 +0200)
committerStefano Babic <sbabic@denx.de>
Mon, 16 Oct 2023 14:25:09 +0000 (16:25 +0200)
The current code works by sheer coincidence, because (see HABv4 API
documentation, section 3.4) the RVT authenticate_image call updates
the size that is passed in with the actual size ROM code pulls from
IVT/CSF . So if the input size is larger, that is "fine" . Pass in
size instead to make this really correct.

Signed-off-by: Marek Vasut <marex@denx.de>
arch/arm/mach-imx/spl.c

index 6c13b00ef10e40bb7ed278af6d1ed740ef7b6b71..b30cd9625538f39bbbc185f92e1f84e72d8173c7 100644 (file)
@@ -353,7 +353,7 @@ void *spl_load_simple_fit_fix_load(const void *fit)
        debug("%s: ivt: %p offset: %lx size: %lx\n", __func__, ivt, offset, size);
        debug("%s: ivt self: %x\n", __func__, ivt->self);
 
-       if (imx_hab_authenticate_image((uintptr_t)fit, (uintptr_t)ivt, offset))
+       if (imx_hab_authenticate_image((uintptr_t)fit, (uintptr_t)size, offset))
                panic("spl: ERROR: image authentication unsuccessful\n");
 
        return (void *)fit;