1 /* SPDX-License-Identifier: GPL-2.0+ */
9 #include <linux/sizes.h>
10 #include <linux/stringify.h>
11 #include <asm/arch/imx-regs.h>
13 #ifdef CONFIG_SPL_BUILD
14 #define CONFIG_SYS_MONITOR_LEN (1024 * 1024)
16 #define CONFIG_SERIAL_LPUART_BASE 0x5a060000
17 #define CONFIG_MALLOC_F_ADDR 0x00120000
21 #ifdef CONFIG_AHAB_BOOT
22 #define AHAB_ENV "sec_boot=yes\0"
24 #define AHAB_ENV "sec_boot=no\0"
27 /* Initial environment variables */
28 #define CONFIG_EXTRA_ENV_SETTINGS \
33 "console=ttyLP0,${baudrate} earlycon=lpuart32,0x5a060000,${baudrate}\0" \
34 "fdt_addr=0x83000000\0" \
35 "fdt_high=0xffffffffffffffff\0" \
37 "fdt_file=undefined\0" \
38 "initrd_addr=0x83800000\0" \
39 "initrd_high=0xffffffffffffffff\0" \
40 "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
42 "mmcroot=/dev/mmcblk1p2 rootwait rw\0" \
43 "mmcautodetect=yes\0" \
44 "mmcargs=setenv bootargs console=${console} root=${mmcroot}\0 " \
45 "loadbootscript=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
46 "bootscript=echo Running bootscript from mmc ...; " \
48 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
49 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
50 "boot_os=booti ${loadaddr} - ${fdt_addr};\0" \
51 "loadcntr=fatload mmc ${mmcdev}:${mmcpart} ${cntr_addr} ${cntr_file}\0" \
52 "auth_os=auth_cntr ${cntr_addr}\0" \
53 "mmcboot=echo Booting from mmc ...; " \
55 "if test ${sec_boot} = yes; then " \
56 "if run auth_os; then " \
59 "echo ERR: failed to authenticate; " \
62 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
63 "if run loadfdt; then " \
66 "echo WARN: Cannot load the DT; " \
69 "echo wait for boot; " \
72 "netargs=setenv bootargs console=${console} " \
74 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
75 "netboot=echo Booting from net ...; " \
77 "if test ${ip_dyn} = yes; then " \
78 "setenv get_cmd dhcp; " \
80 "setenv get_cmd tftp; " \
82 "if test ${sec_boot} = yes; then " \
83 "${get_cmd} ${cntr_addr} ${cntr_file}; " \
84 "if run auth_os; then " \
87 "echo ERR: failed to authenticate; " \
90 "${get_cmd} ${loadaddr} ${image}; " \
91 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
92 "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
93 "booti ${loadaddr} - ${fdt_addr}; " \
95 "echo WARN: Cannot load the DT; " \
102 /* Link Definitions */
104 /* Default environment is in SD */
106 /* On LPDDR4 board, USDHC1 is for eMMC, USDHC2 is for SD on CPU board */
108 #define CONFIG_SYS_SDRAM_BASE 0x80000000
109 #define PHYS_SDRAM_1 0x80000000
110 #define PHYS_SDRAM_2 0x880000000
111 #define PHYS_SDRAM_1_SIZE 0x80000000 /* 2 GB */
112 #define PHYS_SDRAM_2_SIZE 0x100000000 /* 4 GB */
114 #endif /* __IMX8QM_MEK_H */