On Sat, 21 Jan 2023 at 16:25, Samuel Holland <[email protected]> wrote: > > On sunxi boards, SPL looks for U-Boot at a 32 KiB offset, unless SPL is > larger than 32 KiB, in which case U-Boot immediately follows SPL. See > the logic in spl_mmc_get_uboot_raw_sector() and spl_spi_load_image(). > > In two cases, the existing binman description mismatches the SPL code. > For 64-bit boards, binman would place U-Boot immediately following SPL, > even if SPL is smaller than 32 KiB. This can happen when SPL MMC support > is disabled (i.e. when booting from SPI flash). > > In contrast, for 32-bit boards, binman would place U-Boot at 32 KiB, > even if SPL is larger than that. This happens because the 'offset' > property does not consider the size of previous entries. > > Fix both issues by setting a minimum size for the SPL entry, which > exactly matches the logic in the SPL code. Unfortunately, this size must > be provided as a magic number, since none of the relevant config symbols > (SPL_PAD_TO, SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR, and SYS_SPI_U_BOOT_OFFS) > are guaranteed to be defined in all cases. > > Fixes: cfa3db602caf ("sunxi: Convert 64-bit boards to use binman") > Signed-off-by: Samuel Holland <[email protected]> > --- > > arch/arm/dts/sunxi-u-boot.dtsi | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-)
Reviewed-by: Simon Glass <[email protected]> > > diff --git a/arch/arm/dts/sunxi-u-boot.dtsi b/arch/arm/dts/sunxi-u-boot.dtsi > index 2028d5b6a9..8a6c9e901a 100644 > --- a/arch/arm/dts/sunxi-u-boot.dtsi > +++ b/arch/arm/dts/sunxi-u-boot.dtsi > @@ -31,6 +31,11 @@ > pad-byte = <0xff>; > > blob { > + /* > + * This value matches SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR > + * and SYS_SPI_U_BOOT_OFFS if those are defined. > + */ > + min-size = <0x8000>; > filename = "spl/sunxi-spl.bin"; > }; > > @@ -107,7 +112,6 @@ > }; > #else > u-boot-img { > - offset = <CONFIG_SPL_PAD_TO>; > }; > #endif > }; > -- > 2.37.4 >

