diff options
| author | Fabio Estevam <[email protected]> | 2024-09-09 16:30:03 -0300 |
|---|---|---|
| committer | Fabio Estevam <[email protected]> | 2024-09-09 21:52:15 -0300 |
| commit | 9d921355d942091f24269602ca464864cb0719f3 (patch) | |
| tree | c9ed11600dd893d2a09b2c6604068a8b3da37202 | |
| parent | 7b2d4ecd7f6593771dd3118c8bab525d727a91e0 (diff) | |
imx8mq-u-boot: Pass FIT offset to fix boot regression
Since commit 37e50627efac ("ARM: dts: imx: Convert i.MX8M flash.bin
image generation to binman") the imx8mq-evk fails to boot:
U-Boot SPL 2024.10-rc4 (Sep 09 2024 - 16:08:22 -0300)
PMIC: PFUZE100 ID=0x10
SEC0: RNG instantiated
Normal Boot
Trying to boot from MMC2
Fix it by passing the offset property for the FIT image, just like
it is done on i.MX8MM.
Fixes: 37e50627efac ("ARM: dts: imx: Convert i.MX8M flash.bin image generation to binman")
Signed-off-by: Fabio Estevam <[email protected]>
Reviewed-by: Peng Fan <[email protected]>
Acked-by: Marek Vasut <[email protected]>
| -rw-r--r-- | arch/arm/dts/imx8mq-u-boot.dtsi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/dts/imx8mq-u-boot.dtsi b/arch/arm/dts/imx8mq-u-boot.dtsi index e1cd6f8996d..9b895a63857 100644 --- a/arch/arm/dts/imx8mq-u-boot.dtsi +++ b/arch/arm/dts/imx8mq-u-boot.dtsi @@ -111,6 +111,8 @@ #endif #address-cells = <1>; + offset = <0x57c00>; + images { uboot { arch = "arm64"; |
