ls1043a: add env variables to assist boot

Add LS1043ARDB-specific variables to assist the boot process,
and update the related common and LS1043AQDS settings accordingly.

Signed-off-by: Chunguang Li <chunguang.li_2@nxp.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
Chunguang Li
2026-04-02 11:51:30 +08:00
committed by Tom Rini
parent 3e99d17ab3
commit f98f2e2612
3 changed files with 16 additions and 1 deletions

View File

@@ -88,7 +88,7 @@
#include <config_distro_bootcmd.h>
/* Initial environment variables */
#define CFG_EXTRA_ENV_SETTINGS \
#define EXTRA_ENV_SETTINGS \
"hwconfig=fsl_ddr:bank_intlv=auto\0" \
"initrd_high=0xffffffffffffffff\0" \
"kernel_addr=0x61000000\0" \

View File

@@ -295,6 +295,11 @@
/*
* Environment
*/
#ifndef SPL_NO_MISC
/* Initial environment variables */
#define CFG_EXTRA_ENV_SETTINGS \
EXTRA_ENV_SETTINGS
#endif
#include <asm/fsl_secure_boot.h>

View File

@@ -201,4 +201,14 @@
#include <asm/fsl_secure_boot.h>
#ifndef SPL_NO_MISC
/* Initial environment variables */
#define CFG_EXTRA_ENV_SETTINGS \
EXTRA_ENV_SETTINGS \
"board=ls1043ardb\0" \
"fdtfile=fsl-ls1043a-rdb-sdk.dtb\0" \
"image=Image\0" \
"console_dbg=earlycon=uart8250,mmio,0x21c0500\0"
#endif
#endif /* __LS1043ARDB_H__ */