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