Merge branch '2022-03-10-platform-updates' into next
[platform/kernel/u-boot.git] / include / configs / j721e_evm.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Configuration header file for K3 J721E EVM
4  *
5  * Copyright (C) 2018-2020 Texas Instruments Incorporated - https://www.ti.com/
6  *      Lokesh Vutla <lokeshvutla@ti.com>
7  */
8
9 #ifndef __CONFIG_J721E_EVM_H
10 #define __CONFIG_J721E_EVM_H
11
12 #include <linux/sizes.h>
13 #include <environment/ti/mmc.h>
14 #include <environment/ti/k3_rproc.h>
15 #include <environment/ti/ufs.h>
16 #include <environment/ti/k3_dfu.h>
17
18 /* DDR Configuration */
19 #define CONFIG_SYS_SDRAM_BASE1          0x880000000
20
21 /* SPL Loader Configuration */
22 #if defined(CONFIG_TARGET_J721E_A72_EVM) || defined(CONFIG_TARGET_J7200_A72_EVM)
23 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SPL_TEXT_BASE + \
24                                          CONFIG_SYS_K3_NON_SECURE_MSRAM_SIZE)
25 #define CONFIG_SYS_UBOOT_BASE           0x50280000
26 /* Image load address in RAM for DFU boot*/
27 #else
28 #define CONFIG_SYS_UBOOT_BASE           0x50080000
29 /*
30  * Maximum size in memory allocated to the SPL BSS. Keep it as tight as
31  * possible (to allow the build to go through), as this directly affects
32  * our memory footprint. The less we use for BSS the more we have available
33  * for everything else.
34  */
35 #define CONFIG_SPL_BSS_MAX_SIZE         0xA000
36 /*
37  * Link BSS to be within SPL in a dedicated region located near the top of
38  * the MCU SRAM, this way making it available also before relocation. Note
39  * that we are not using the actual top of the MCU SRAM as there is a memory
40  * location filled in by the boot ROM that we want to read out without any
41  * interference from the C context.
42  */
43 #define CONFIG_SPL_BSS_START_ADDR       (CONFIG_SYS_K3_BOOT_PARAM_TABLE_INDEX -\
44                                          CONFIG_SPL_BSS_MAX_SIZE)
45 /* Set the stack right below the SPL BSS section */
46 #define CONFIG_SYS_INIT_SP_ADDR         CONFIG_SPL_BSS_START_ADDR
47 /* Configure R5 SPL post-relocation malloc pool in DDR */
48 #define CONFIG_SYS_SPL_MALLOC_START     0x84000000
49 #define CONFIG_SYS_SPL_MALLOC_SIZE      SZ_16M
50 /* Image load address in RAM for DFU boot*/
51 #endif
52
53 #ifdef CONFIG_SYS_K3_SPL_ATF
54 #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "tispl.bin"
55 #endif
56
57 #define CONFIG_SPL_MAX_SIZE             CONFIG_SYS_K3_MAX_DOWNLODABLE_IMAGE_SIZE
58
59 #define CONFIG_SYS_BOOTM_LEN            SZ_64M
60 #define CONFIG_CQSPI_REF_CLK            133333333
61
62 /* HyperFlash related configuration */
63
64 /* U-Boot general configuration */
65 #define EXTRA_ENV_J721E_BOARD_SETTINGS                                  \
66         "default_device_tree=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0"      \
67         "findfdt="                                                      \
68                 "setenv name_fdt ${default_device_tree};"               \
69                 "if test $board_name = j721e; then "                    \
70                         "setenv name_fdt k3-j721e-common-proc-board.dtb; fi;" \
71                 "if test $board_name = j721e-eaik || test $board_name = j721e-sk; then "                \
72                         "setenv name_fdt k3-j721e-sk.dtb; fi;"  \
73                 "setenv fdtfile ${name_fdt}\0"                          \
74         "name_kern=Image\0"                                             \
75         "console=ttyS2,115200n8\0"                                      \
76         "args_all=setenv optargs earlycon=ns16550a,mmio32,0x02800000 "  \
77                 "${mtdparts}\0"                                         \
78         "run_kern=booti ${loadaddr} ${rd_spec} ${fdtaddr}\0"
79
80 #define PARTS_DEFAULT \
81         /* Linux partitions */ \
82         "uuid_disk=${uuid_gpt_disk};" \
83         "name=rootfs,start=0,size=-,uuid=${uuid_gpt_rootfs}\0"
84
85 #ifdef CONFIG_SYS_K3_SPL_ATF
86 #if defined(CONFIG_TARGET_J721E_R5_EVM)
87 #define EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC                              \
88         "addr_mcur5f0_0load=0x89000000\0"                               \
89         "name_mcur5f0_0fw=/lib/firmware/j7-mcu-r5f0_0-fw\0"
90 #elif defined(CONFIG_TARGET_J7200_R5_EVM)
91 #define EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC                              \
92         "addr_mcur5f0_0load=0x89000000\0"                               \
93         "name_mcur5f0_0fw=/lib/firmware/j7200-mcu-r5f0_0-fw\0"
94 #endif /* CONFIG_TARGET_J721E_R5_EVM */
95 #else
96 #define EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC ""
97 #endif /* CONFIG_SYS_K3_SPL_ATF */
98
99 /* U-Boot MMC-specific configuration */
100 #define EXTRA_ENV_J721E_BOARD_SETTINGS_MMC                              \
101         "boot=mmc\0"                                                    \
102         "mmcdev=1\0"                                                    \
103         "bootpart=1:2\0"                                                \
104         "bootdir=/boot\0"                                               \
105         EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC                              \
106         "rd_spec=-\0"                                                   \
107         "init_mmc=run args_all args_mmc\0"                              \
108         "get_fdt_mmc=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${name_fdt}\0" \
109         "get_overlay_mmc="                                              \
110                 "fdt address ${fdtaddr};"                               \
111                 "fdt resize 0x100000;"                                  \
112                 "for overlay in $name_overlays;"                        \
113                 "do;"                                                   \
114                 "load mmc ${bootpart} ${dtboaddr} ${bootdir}/${overlay} && "    \
115                 "fdt apply ${dtboaddr};"                                \
116                 "done;\0"                                               \
117         "partitions=" PARTS_DEFAULT                                     \
118         "get_kern_mmc=load mmc ${bootpart} ${loadaddr} "                \
119                 "${bootdir}/${name_kern}\0"                             \
120         "get_fit_mmc=load mmc ${bootpart} ${addr_fit} "                 \
121                 "${bootdir}/${name_fit}\0"                              \
122         "partitions=" PARTS_DEFAULT
123
124 /* Set the default list of remote processors to boot */
125 #if defined(CONFIG_TARGET_J7200_A72_EVM)
126 #define EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY                          \
127         "do_main_cpsw0_qsgmii_phyinit=1\0"                              \
128         "init_main_cpsw0_qsgmii_phy=gpio set gpio@22_17;"               \
129                  "gpio clear gpio@22_16\0"                              \
130         "main_cpsw0_qsgmii_phyinit="                                    \
131         "if test ${do_main_cpsw0_qsgmii_phyinit} -eq 1 && test ${dorprocboot} -eq 1 && " \
132                         "test ${boot} = mmc; then "                     \
133                 "run init_main_cpsw0_qsgmii_phy;"                       \
134         "fi;\0"
135 #ifdef DEFAULT_RPROCS
136 #undef DEFAULT_RPROCS
137 #endif
138 #elif defined(CONFIG_TARGET_J721E_A72_EVM)
139 #define EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY                          \
140         "init_main_cpsw0_qsgmii_phy=gpio set gpio@22_17;"               \
141                  "gpio clear gpio@22_16\0"                              \
142         "main_cpsw0_qsgmii_phyinit="                                    \
143         "if test $board_name = J721EX-PM1-SOM || test $board_name = J721EX-PM2-SOM " \
144         "|| test $board_name = j721e; then " \
145         "do_main_cpsw0_qsgmii_phyinit=1; else "                 \
146         "do_main_cpsw0_qsgmii_phyinit=0; fi;"                   \
147         "if test ${do_main_cpsw0_qsgmii_phyinit} -eq 1 && test ${dorprocboot} -eq 1 && " \
148                         "test ${boot} = mmc; then "                     \
149                 "run init_main_cpsw0_qsgmii_phy;"                       \
150         "fi;\0"
151 #ifdef DEFAULT_RPROCS
152 #undef DEFAULT_RPROCS
153 #endif
154 #endif
155
156 #ifdef CONFIG_TARGET_J721E_A72_EVM
157 #define DEFAULT_RPROCS  ""                                              \
158                 "2 /lib/firmware/j7-main-r5f0_0-fw "                    \
159                 "3 /lib/firmware/j7-main-r5f0_1-fw "                    \
160                 "4 /lib/firmware/j7-main-r5f1_0-fw "                    \
161                 "5 /lib/firmware/j7-main-r5f1_1-fw "                    \
162                 "6 /lib/firmware/j7-c66_0-fw "                          \
163                 "7 /lib/firmware/j7-c66_1-fw "                          \
164                 "8 /lib/firmware/j7-c71_0-fw "
165 #endif /* CONFIG_TARGET_J721E_A72_EVM */
166
167 #ifdef CONFIG_TARGET_J7200_A72_EVM
168 #define DEFAULT_RPROCS ""                                               \
169                 "2 /lib/firmware/j7200-main-r5f0_0-fw "                 \
170                 "3 /lib/firmware/j7200-main-r5f0_1-fw "
171 #endif /* CONFIG_TARGET_J7200_A72_EVM */
172
173 #ifndef EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY
174 #define EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY
175 #endif
176
177 #define EXTRA_ENV_DFUARGS \
178         DFU_ALT_INFO_MMC \
179         DFU_ALT_INFO_EMMC \
180         DFU_ALT_INFO_RAM \
181         DFU_ALT_INFO_OSPI
182
183 #if defined(CONFIG_TARGET_J721E_A72_EVM) || defined(CONFIG_TARGET_J7200_A72_EVM)
184 #define EXTRA_ENV_J721E_BOARD_SETTINGS_MTD                              \
185         "mtdids=" CONFIG_MTDIDS_DEFAULT "\0"                            \
186         "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0"
187 #else
188 #define EXTRA_ENV_J721E_BOARD_SETTINGS_MTD
189 #endif
190
191 #if CONFIG_IS_ENABLED(CMD_PXE)
192 # define BOOT_TARGET_PXE(func) func(PXE, pxe, na)
193 #else
194 # define BOOT_TARGET_PXE(func)
195 #endif
196
197 #if CONFIG_IS_ENABLED(CMD_DHCP)
198 # define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na)
199 #else
200 # define BOOT_TARGET_DHCP(func)
201 #endif
202
203 #define BOOT_TARGET_DEVICES(func) \
204         func(MMC, mmc, 1) \
205         func(MMC, mmc, 0) \
206         BOOT_TARGET_PXE(func) \
207         BOOT_TARGET_DHCP(func)
208
209 #include <config_distro_bootcmd.h>
210
211 /* Incorporate settings into the U-Boot environment */
212 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
213         DEFAULT_LINUX_BOOT_ENV                                          \
214         DEFAULT_MMC_TI_ARGS                                             \
215         DEFAULT_FIT_TI_ARGS                                             \
216         EXTRA_ENV_J721E_BOARD_SETTINGS                                  \
217         EXTRA_ENV_J721E_BOARD_SETTINGS_MMC                              \
218         EXTRA_ENV_RPROC_SETTINGS                                        \
219         EXTRA_ENV_DFUARGS                                               \
220         DEFAULT_UFS_TI_ARGS                                             \
221         EXTRA_ENV_J721E_BOARD_SETTINGS_MTD                              \
222         EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY                          \
223         BOOTENV
224
225 /* Now for the remaining common defines */
226 #include <configs/ti_armv7_common.h>
227
228 /* MMC ENV related defines */
229
230 #endif /* __CONFIG_J721E_EVM_H */