Convert CONFIG_SYS_SPL_MALLOC_SIZE et al to Kconfig
[platform/kernel/u-boot.git] / include / configs / verdin-imx8mp.h
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * Copyright 2022 Toradex
4  */
5
6 #ifndef __VERDIN_IMX8MP_H
7 #define __VERDIN_IMX8MP_H
8
9 #include <asm/arch/imx-regs.h>
10 #include <linux/sizes.h>
11
12 #define CONFIG_SYS_MONITOR_LEN                          SZ_512K
13 #define CONFIG_SYS_UBOOT_BASE   \
14         (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
15
16 #ifdef CONFIG_SPL_BUILD
17 /*#define CONFIG_ENABLE_DDR_TRAINING_DEBUG*/
18
19 /* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
20 #define CONFIG_MALLOC_F_ADDR                            0x184000
21 /* For RAW image gives a error info not panic */
22 #define CONFIG_SPL_ABORT_ON_RAW_IMAGE
23
24 #define CONFIG_POWER_PCA9450
25
26 #define CONFIG_SYS_I2C
27 #endif /* CONFIG_SPL_BUILD */
28
29 /* ENET Config */
30 /* ENET1 */
31 #if defined(CONFIG_CMD_NET)
32 #define CONFIG_FEC_MXC_PHYADDR          7
33
34 #define PHY_ANEG_TIMEOUT 20000
35 #endif /* CONFIG_CMD_NET */
36
37 #define MEM_LAYOUT_ENV_SETTINGS \
38         "fdt_addr_r=0x43000000\0" \
39         "kernel_addr_r=0x40000000\0" \
40         "ramdisk_addr_r=0x46400000\0" \
41         "scriptaddr=0x46000000\0"
42
43 /* Enable Distro Boot */
44 #ifndef CONFIG_SPL_BUILD
45 #define BOOT_TARGET_DEVICES(func) \
46         func(MMC, mmc, 1) \
47         func(MMC, mmc, 2) \
48         func(DHCP, dhcp, na)
49 #include <config_distro_bootcmd.h>
50 #else
51 #define BOOTENV
52 #endif
53
54 #if defined(CONFIG_TDX_EASY_INSTALLER)
55 #  define BOOT_SCRIPT   "boot-tezi.scr"
56 #else
57 #  define BOOT_SCRIPT   "boot.scr"
58 #endif
59
60 /* Initial environment variables */
61 #define CONFIG_EXTRA_ENV_SETTINGS \
62         BOOTENV \
63         MEM_LAYOUT_ENV_SETTINGS \
64         "bootcmd_mfg=fastboot 0\0" \
65         "boot_file=Image\0" \
66         "boot_scripts=" BOOT_SCRIPT "\0" \
67         "boot_script_dhcp=" BOOT_SCRIPT "\0" \
68         "console=ttymxc2\0" \
69         "fdt_board=dev\0" \
70         "initrd_addr=0x43800000\0" \
71         "initrd_high=0xffffffffffffffff\0" \
72         "setup=setenv setupargs console=${console},${baudrate} console=tty1 " \
73                 "consoleblank=0 earlycon\0" \
74         "update_uboot=askenv confirm Did you load flash.bin (y/N)?; " \
75                 "if test \"$confirm\" = \"y\"; then " \
76                 "setexpr blkcnt ${filesize} + 0x1ff && setexpr blkcnt " \
77                 "${blkcnt} / 0x200; mmc dev 2 1; mmc write ${loadaddr} 0x0 " \
78                 "${blkcnt}; fi\0"
79
80 #define CONFIG_SYS_INIT_RAM_ADDR        0x40000000
81 #define CONFIG_SYS_INIT_RAM_SIZE        SZ_512K
82
83 #define CONFIG_SYS_BOOTM_LEN            SZ_64M /* Increase max gunzip size */
84
85 /* i.MX 8M Plus supports max. 8GB memory in two albeit concecutive banks */
86 #define CONFIG_SYS_SDRAM_BASE           0x40000000
87 #define PHYS_SDRAM                      0x40000000
88 #define PHYS_SDRAM_SIZE                 (SZ_2G + SZ_1G)
89 #define PHYS_SDRAM_2                    0x100000000
90 #define PHYS_SDRAM_2_SIZE               (SZ_4G + SZ_1G)
91
92 /* UART */
93 #define CONFIG_MXC_UART_BASE            UART_BASE_ADDR(3)
94
95 #endif /* __VERDIN_IMX8MP_H */