Convert CONFIG_SPL_STACK to Kconfig
[platform/kernel/u-boot.git] / include / configs / imx8mm-cl-iot-gate.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2019 NXP
4  */
5
6 #ifndef __IMX8MM_CL_IOT_GATE_H
7 #define __IMX8MM_CL_IOT_GATE_H
8
9 #include <linux/sizes.h>
10 #include <linux/stringify.h>
11 #include <asm/arch/imx-regs.h>
12 #include <config_distro_bootcmd.h>
13
14 #define CONFIG_SYS_BOOTM_LEN            (32 * SZ_1M)
15 #define CONFIG_SYS_MONITOR_LEN          SZ_512K
16 #define CONFIG_SYS_UBOOT_BASE   \
17         (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
18
19 #ifdef CONFIG_SPL_BUILD
20 #define CONFIG_SPL_BSS_START_ADDR       0x910000
21 #define CONFIG_SYS_SPL_MALLOC_START     0x42200000
22 #define CONFIG_SYS_SPL_MALLOC_SIZE      SZ_512K /* 512 KB */
23
24 /* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
25 #define CONFIG_MALLOC_F_ADDR            0x912000
26 /* For RAW image gives a error info not panic */
27 #define CONFIG_SPL_ABORT_ON_RAW_IMAGE
28
29 #endif
30
31 /* GUIDs for capsule updatable firmware images */
32 #define IMX8MM_CL_IOT_GATE_FIT_IMAGE_GUID \
33         EFI_GUID(0x7a32a939, 0xab92, 0x467b, 0x91, 0x52, \
34                  0x74, 0x77, 0x1b, 0x95, 0xe6, 0x46)
35
36 #define IMX8MM_CL_IOT_GATE_OPTEE_FIT_IMAGE_GUID \
37         EFI_GUID(0x0bf1165c, 0x1831, 0x4864, 0x94, 0x5e, \
38                  0xac, 0x3d, 0x38, 0x48, 0xf4, 0x99)
39
40 #if CONFIG_IS_ENABLED(CMD_MMC)
41 # define BOOT_TARGET_MMC(func) \
42         func(MMC, mmc, 2)      \
43         func(MMC, mmc, 0)
44 #else
45 # define BOOT_TARGET_MMC(func)
46 #endif
47
48 #if CONFIG_IS_ENABLED(CMD_USB)
49 # define BOOT_TARGET_USB(func) func(USB, usb, 0)
50 #else
51 # define BOOT_TARGET_USB(func)
52 #endif
53
54 #if CONFIG_IS_ENABLED(CMD_PXE)
55 # define BOOT_TARGET_PXE(func) func(PXE, pxe, na)
56 #else
57 # define BOOT_TARGET_PXE(func)
58 #endif
59
60 #if CONFIG_IS_ENABLED(CMD_DHCP)
61 # define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na)
62 #else
63 # define BOOT_TARGET_DHCP(func)
64 #endif
65
66 #define BOOT_TARGET_DEVICES(func) \
67         BOOT_TARGET_USB(func) \
68         BOOT_TARGET_MMC(func) \
69         BOOT_TARGET_PXE(func) \
70         BOOT_TARGET_DHCP(func)
71
72 /* Initial environment variables */
73 #define CONFIG_EXTRA_ENV_SETTINGS               \
74         BOOTENV \
75         "script=boot.scr\0" \
76         "image=Image\0" \
77         "console=ttymxc2,115200 earlycon=ec_imx6q,0x30880000,115200\0" \
78         "fdt_addr=0x43000000\0"                 \
79         "fdt_addr_r=0x43000000\0" \
80         "boot_fit=no\0" \
81         "dfu_alt_info=mmc 2=flash-bin raw 0x42 0x1D00 mmcpart 1\0" \
82         "fdt_file=sb-iotgimx8.dtb\0" \
83         "fdtfile=sb-iotgimx8.dtb\0" \
84         "initrd_addr=0x43800000\0"              \
85         "bootm_size=0x10000000\0" \
86         "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
87         "mmcpart=1\0" \
88         "mmcroot=/dev/mmcblk1p2 rootwait rw\0" \
89         "mmcautodetect=yes\0" \
90         "mmcargs=setenv bootargs console=${console} root=${mmcroot}\0 " \
91         "loadbootscript=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
92         "bootscript=echo Running bootscript from mmc ...; " \
93                 "source\0" \
94         "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
95         "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
96         "kernel_addr_r=0x40480000\0" \
97         "pxefile_addr_r=0x40480000\0" \
98         "ramdisk_addr_r=0x43800000\0" \
99         "mmcboot=echo Booting from mmc ...; " \
100                 "run mmcargs; " \
101                 "if test ${boot_fit} = yes || test ${boot_fit} = try; then " \
102                         "bootm ${loadaddr}; " \
103                 "else " \
104                         "if run loadfdt; then " \
105                                 "booti ${loadaddr} - ${fdt_addr}; " \
106                         "else " \
107                                 "echo WARN: Cannot load the DT; " \
108                         "fi; " \
109                 "fi;\0" \
110         "netargs=setenv bootargs console=${console} " \
111                 "root=/dev/nfs " \
112                 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
113         "netboot=echo Booting from net ...; " \
114                 "run netargs;  " \
115                 "if test ${ip_dyn} = yes; then " \
116                         "setenv get_cmd dhcp; " \
117                 "else " \
118                         "setenv get_cmd tftp; " \
119                 "fi; " \
120                 "${get_cmd} ${loadaddr} ${image}; " \
121                 "if test ${boot_fit} = yes || test ${boot_fit} = try; then " \
122                         "bootm ${loadaddr}; " \
123                 "else " \
124                         "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
125                                 "booti ${loadaddr} - ${fdt_addr}; " \
126                         "else " \
127                                 "echo WARN: Cannot load the DT; " \
128                         "fi; " \
129                 "fi;\0"
130
131 /* Link Definitions */
132
133 #define CONFIG_SYS_INIT_RAM_ADDR        0x40000000
134 #define CONFIG_SYS_INIT_RAM_SIZE        0x80000
135
136
137 #define CONFIG_SYS_SDRAM_BASE           0x40000000
138 #define PHYS_SDRAM                      0x40000000
139 #define PHYS_SDRAM_SIZE                 0x80000000 /* 2GB DDR */
140
141 #define CONFIG_MXC_UART_BASE            UART_BASE_ADDR(3)
142
143 /* USDHC */
144
145 #define CONFIG_SYS_FSL_USDHC_NUM        2
146 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
147
148 #define CONFIG_FEC_MXC_PHYADDR          0
149
150 /* USB Configs */
151 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
152 #define CONFIG_MXC_USB_PORTSC   (PORT_PTS_UTMI | PORT_PTS_PTW)
153 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
154
155 #endif /*__IMX8MM_CL_IOT_GATE_H*/