Convert CONFIG_USB_MAX_CONTROLLER_COUNT to Kconfig
[platform/kernel/u-boot.git] / include / configs / verdin-imx8mm.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2020-2021 Toradex
4  */
5
6 #ifndef __VERDIN_IMX8MM_H
7 #define __VERDIN_IMX8MM_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 #define CONFIG_SYS_BOOTM_LEN           SZ_64M
17
18 #ifdef CONFIG_SPL_BUILD
19 /* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
20 #define CONFIG_MALLOC_F_ADDR            0x930000
21 /* For RAW image gives a error info not panic */
22 #endif
23
24 #define MEM_LAYOUT_ENV_SETTINGS \
25         "fdt_addr_r=0x44000000\0" \
26         "kernel_addr_r=0x42000000\0" \
27         "ramdisk_addr_r=0x46400000\0" \
28         "scriptaddr=0x46000000\0"
29
30 /* Enable Distro Boot */
31 #define BOOT_TARGET_DEVICES(func) \
32         func(MMC, mmc, 1) \
33         func(MMC, mmc, 0) \
34         func(DHCP, dhcp, na)
35 #include <config_distro_bootcmd.h>
36
37 /* Initial environment variables */
38 #define CONFIG_EXTRA_ENV_SETTINGS \
39         BOOTENV \
40         MEM_LAYOUT_ENV_SETTINGS \
41         "bootcmd_mfg=fastboot 0\0" \
42         "boot_file=Image\0" \
43         "boot_script_dhcp=boot.scr\0" \
44         "console=ttymxc0\0" \
45         "fdt_addr=0x43000000\0" \
46         "fdt_board=dev\0" \
47         "initrd_addr=0x43800000\0" \
48         "initrd_high=0xffffffffffffffff\0" \
49         "setup=setenv setupargs console=tty1 console=${console},${baudrate} " \
50                 "consoleblank=0 earlycon\0" \
51         "update_uboot=askenv confirm Did you load flash.bin (y/N)?; " \
52                 "if test \"$confirm\" = \"y\"; then " \
53                 "setexpr blkcnt ${filesize} + 0x1ff && setexpr blkcnt " \
54                 "${blkcnt} / 0x200; mmc dev 0 1; mmc write ${loadaddr} 0x2 " \
55                 "${blkcnt}; fi\0"
56
57 #define CONFIG_SYS_INIT_RAM_ADDR        0x40000000
58 #define CONFIG_SYS_INIT_RAM_SIZE        SZ_2M
59
60 #if defined(CONFIG_ENV_IS_IN_MMC)
61 /* Environment in eMMC, before config block at the end of 1st "boot sector" */
62 #endif
63
64 #define CONFIG_SYS_SDRAM_BASE           0x40000000
65
66 /* SDRAM configuration */
67 #define PHYS_SDRAM                      0x40000000
68 #define PHYS_SDRAM_SIZE                 SZ_2G /* 2GB DDR */
69
70 /* ENET */
71 #define CONFIG_FEC_MXC_PHYADDR          7
72
73 /* USB Configs */
74 #define CONFIG_MXC_USB_PORTSC   (PORT_PTS_UTMI | PORT_PTS_PTW)
75
76 #endif /* __VERDIN_IMX8MM_H */