commit | 7d5e7aaa8cab37f6dd82cd29f6d7e7c8fc3996ea | [log] [tgz] |
---|---|---|
author | Peng Fan <peng.fan@nxp.com> | Fri Oct 18 15:34:32 2024 +0800 |
committer | Fabio Estevam <festevam@gmail.com> | Fri Oct 18 09:41:09 2024 -0300 |
tree | deebfeefa1d2952d01a477367474343f818793c6 | |
parent | 3bbc54f5cfe9f842296acbb39ba64c9299406e0c [diff] |
cpu: imx8_cpu: Avoid revision to corrupt device tree U-Boot device tree is padded just after U-Boot proper. After the whole stuff loaded to DRAM space, the device tree area is conflict with BSS region before U-Boot relocation. So any write to BSS area before reloc_fdt will corrupt the device tree. Without the fix, there is issue that “binman_init failed:-2” on i.MX8MP-EVK board. Drop 'revision' and use malloc area in cpu_imx_plat->rev. Signed-off-by: Peng Fan <peng.fan@nxp.com>