Convert CONFIG_SYS_BOOTM_LEN to Kconfig
[platform/kernel/u-boot.git] / include / configs / pico-imx8mq.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2018 NXP
4  */
5
6 #ifndef __IMX8M_PICOPI_H
7 #define __IMX8M_PICOPI_H
8
9 #include <linux/sizes.h>
10 #include <asm/arch/imx-regs.h>
11
12 #define CONFIG_SYS_MONITOR_LEN          (512 * 1024)
13
14 #ifdef CONFIG_SPL_BUILD
15 /*#define CONFIG_ENABLE_DDR_TRAINING_DEBUG*/
16 #define CONFIG_SYS_SPL_PTE_RAM_BASE     0x41580000
17
18 /* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
19 #define CONFIG_MALLOC_F_ADDR            0x182000
20 /* For RAW image gives a error info not panic */
21 #endif
22
23 /* ENET Config */
24 /* ENET1 */
25 #if defined(CONFIG_CMD_NET)
26 #define CONFIG_FEC_MXC_PHYADDR          1
27 #endif
28
29 /* Initial environment variables */
30 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
31         "script=boot.scr\0"                                             \
32         "image=Image\0"                                                 \
33         "console=ttymxc0,115200\0"                                      \
34         "fdt_addr=0x43000000\0"                                         \
35         "fdt_high=0xffffffffffffffff\0"                                 \
36         "fdt_file=imx8mq-pico-pi.dtb\0"                                 \
37         "initrd_addr=0x43800000\0"                                      \
38         "initrd_high=0xffffffffffffffff\0"                              \
39         "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0"              \
40         "mmcpart=1\0"   \
41         "mmcroot=/dev/mmcblk1p2 rootwait rw\0"                  \
42         "mmcautodetect=yes\0"                                           \
43         "mmcargs=setenv bootargs console=${console} root=${mmcroot}\0 " \
44         "loadbootscript="                                               \
45                 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
46         "bootscript=echo Running bootscript from mmc ...; source\0"     \
47         "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
48         "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
49         "mmcboot=echo Booting from mmc ...; "                           \
50                 "run mmcargs; "                                         \
51                 "echo wait for boot; "                                  \
52                 "fi;\0"                                                 \
53         "netargs=setenv bootargs console=${console} "                   \
54                 "root=/dev/nfs "                                        \
55                 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0"       \
56         "netboot=echo Booting from net ...; "                           \
57                 "run netargs;  "                                        \
58                 "if test ${ip_dyn} = yes; then "                        \
59                         "setenv get_cmd dhcp; "                         \
60                 "else "                                                 \
61                         "setenv get_cmd tftp; "                         \
62                 "fi; "                                                  \
63                 "${get_cmd} ${loadaddr} ${image}; "                     \
64                 "booti; "
65
66 /* Link Definitions */
67
68 #define CONFIG_SYS_INIT_RAM_ADDR        0x40000000
69 #define CONFIG_SYS_INIT_RAM_SIZE        0x80000
70
71
72 #define CONFIG_SYS_SDRAM_BASE           0x40000000
73 #define PHYS_SDRAM                      0x40000000
74 #define PHYS_SDRAM_SIZE                 0x80000000      /* 2 GiB DDR */
75
76 #define CONFIG_MXC_UART_BASE            UART_BASE_ADDR(1)
77
78 #define CONFIG_SYS_FSL_USDHC_NUM        2
79 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
80
81 #endif