1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (c) 2020 Engicam srl
4 * Copyright (c) 2020 Amarula Solutions(India)
7 #ifndef __IMX8MM_ICORE_MX8MM_H
8 #define __IMX8MM_ICORE_MX8MM_H
10 #include <linux/sizes.h>
11 #include <asm/arch/imx-regs.h>
13 #define CONFIG_SYS_MONITOR_LEN SZ_512K
14 #define CONFIG_SYS_UBOOT_BASE \
15 (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
17 #ifdef CONFIG_SPL_BUILD
18 /* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
19 # define CONFIG_MALLOC_F_ADDR 0x930000
20 /* For RAW image gives a error info not panic */
21 #endif /* CONFIG_SPL_BUILD */
23 #define BOOT_TARGET_DEVICES(func) \
26 #include <config_distro_bootcmd.h>
28 #define ENV_MEM_LAYOUT_SETTINGS \
29 "fdt_addr_r=0x44000000\0" \
30 "kernel_addr_r=0x42000000\0" \
31 "ramdisk_addr_r=0x46400000\0" \
32 "scriptaddr=0x46000000\0"
34 #define CONFIG_EXTRA_ENV_SETTINGS \
35 ENV_MEM_LAYOUT_SETTINGS \
36 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
37 "console=ttymxc1,115200\0" \
40 /* Link Definitions */
42 #define CONFIG_SYS_INIT_RAM_ADDR 0x40000000
43 #define CONFIG_SYS_INIT_RAM_SIZE SZ_2M
45 #define CONFIG_SYS_SDRAM_BASE 0x40000000
47 /* SDRAM configuration */
48 #define PHYS_SDRAM 0x40000000
49 #define PHYS_SDRAM_SIZE SZ_2G /* 2GB DDR */
52 #define CONFIG_SYS_FSL_USDHC_NUM 2
53 #define CONFIG_SYS_FSL_ESDHC_ADDR 0
55 #endif /* __IMX8MM_ICORE_MX8MM_H */