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