Merge tag 'u-boot-rockchip-20211015' of https://source.denx.de/u-boot/custodians...
[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 #define CONFIG_SYS_MAX_FLASH_BANKS_DETECT 1
64
65 /* U-Boot general configuration */
66 #define EXTRA_ENV_J721E_BOARD_SETTINGS                                  \
67         "default_device_tree=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0"      \
68         "findfdt="                                                      \
69                 "setenv name_fdt ${default_device_tree};"               \
70                 "setenv fdtfile ${name_fdt}\0"                          \
71         "name_kern=Image\0"                                             \
72         "console=ttyS2,115200n8\0"                                      \
73         "args_all=setenv optargs earlycon=ns16550a,mmio32,0x02800000 "  \
74                 "${mtdparts}\0"                                         \
75         "run_kern=booti ${loadaddr} ${rd_spec} ${fdtaddr}\0"
76
77 #define PARTS_DEFAULT \
78         /* Linux partitions */ \
79         "uuid_disk=${uuid_gpt_disk};" \
80         "name=rootfs,start=0,size=-,uuid=${uuid_gpt_rootfs}\0"
81
82 #ifdef CONFIG_SYS_K3_SPL_ATF
83 #if defined(CONFIG_TARGET_J721E_R5_EVM)
84 #define EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC                              \
85         "addr_mcur5f0_0load=0x89000000\0"                               \
86         "name_mcur5f0_0fw=/lib/firmware/j7-mcu-r5f0_0-fw\0"
87 #elif defined(CONFIG_TARGET_J7200_R5_EVM)
88 #define EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC                              \
89         "addr_mcur5f0_0load=0x89000000\0"                               \
90         "name_mcur5f0_0fw=/lib/firmware/j7200-mcu-r5f0_0-fw\0"
91 #endif /* CONFIG_TARGET_J721E_R5_EVM */
92 #else
93 #define EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC ""
94 #endif /* CONFIG_SYS_K3_SPL_ATF */
95
96 /* U-Boot MMC-specific configuration */
97 #define EXTRA_ENV_J721E_BOARD_SETTINGS_MMC                              \
98         "boot=mmc\0"                                                    \
99         "mmcdev=1\0"                                                    \
100         "bootpart=1:2\0"                                                \
101         "bootdir=/boot\0"                                               \
102         EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC                              \
103         "rd_spec=-\0"                                                   \
104         "init_mmc=run args_all args_mmc\0"                              \
105         "get_fdt_mmc=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${name_fdt}\0" \
106         "get_overlay_mmc="                                              \
107                 "fdt address ${fdtaddr};"                               \
108                 "fdt resize 0x100000;"                                  \
109                 "for overlay in $name_overlays;"                        \
110                 "do;"                                                   \
111                 "load mmc ${bootpart} ${dtboaddr} ${bootdir}/${overlay} && "    \
112                 "fdt apply ${dtboaddr};"                                \
113                 "done;\0"                                               \
114         "partitions=" PARTS_DEFAULT                                     \
115         "get_kern_mmc=load mmc ${bootpart} ${loadaddr} "                \
116                 "${bootdir}/${name_kern}\0"                             \
117         "get_fit_mmc=load mmc ${bootpart} ${addr_fit} "                 \
118                 "${bootdir}/${name_fit}\0"                              \
119         "partitions=" PARTS_DEFAULT
120
121 /* Set the default list of remote processors to boot */
122 #if defined(CONFIG_TARGET_J721E_A72_EVM) || defined(CONFIG_TARGET_J7200_A72_EVM)
123 #ifdef DEFAULT_RPROCS
124 #undef DEFAULT_RPROCS
125 #endif
126 #endif
127
128 #ifdef CONFIG_TARGET_J721E_A72_EVM
129 #define DEFAULT_RPROCS  ""                                              \
130                 "2 /lib/firmware/j7-main-r5f0_0-fw "                    \
131                 "3 /lib/firmware/j7-main-r5f0_1-fw "                    \
132                 "4 /lib/firmware/j7-main-r5f1_0-fw "                    \
133                 "5 /lib/firmware/j7-main-r5f1_1-fw "                    \
134                 "6 /lib/firmware/j7-c66_0-fw "                          \
135                 "7 /lib/firmware/j7-c66_1-fw "                          \
136                 "8 /lib/firmware/j7-c71_0-fw "
137 #endif /* CONFIG_TARGET_J721E_A72_EVM */
138
139 #ifdef CONFIG_TARGET_J7200_A72_EVM
140 #define EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY                          \
141         "do_main_cpsw0_qsgmii_phyinit=1\0"                              \
142         "init_main_cpsw0_qsgmii_phy=gpio set gpio@22_17;"               \
143                  "gpio clear gpio@22_16\0"                              \
144         "main_cpsw0_qsgmii_phyinit="                                    \
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;"                       \
148         "fi;\0"
149 #define DEFAULT_RPROCS ""                                               \
150                 "2 /lib/firmware/j7200-main-r5f0_0-fw "                 \
151                 "3 /lib/firmware/j7200-main-r5f0_1-fw "
152 #endif /* CONFIG_TARGET_J7200_A72_EVM */
153
154 #ifndef EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY
155 #define EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY
156 #endif
157
158 #define EXTRA_ENV_DFUARGS \
159         DFU_ALT_INFO_MMC \
160         DFU_ALT_INFO_EMMC \
161         DFU_ALT_INFO_RAM \
162         DFU_ALT_INFO_OSPI
163
164 #if defined(CONFIG_TARGET_J721E_A72_EVM) || defined(CONFIG_TARGET_J7200_A72_EVM)
165 #define EXTRA_ENV_J721E_BOARD_SETTINGS_MTD                              \
166         "mtdids=" CONFIG_MTDIDS_DEFAULT "\0"                            \
167         "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0"
168 #else
169 #define EXTRA_ENV_J721E_BOARD_SETTINGS_MTD
170 #endif
171
172 #if CONFIG_IS_ENABLED(CMD_PXE)
173 # define BOOT_TARGET_PXE(func) func(PXE, pxe, na)
174 #else
175 # define BOOT_TARGET_PXE(func)
176 #endif
177
178 #if CONFIG_IS_ENABLED(CMD_DHCP)
179 # define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na)
180 #else
181 # define BOOT_TARGET_DHCP(func)
182 #endif
183
184 #define BOOT_TARGET_DEVICES(func) \
185         func(MMC, mmc, 1) \
186         func(MMC, mmc, 0) \
187         BOOT_TARGET_PXE(func) \
188         BOOT_TARGET_DHCP(func)
189
190 #include <config_distro_bootcmd.h>
191
192 /* Incorporate settings into the U-Boot environment */
193 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
194         DEFAULT_LINUX_BOOT_ENV                                          \
195         DEFAULT_MMC_TI_ARGS                                             \
196         DEFAULT_FIT_TI_ARGS                                             \
197         EXTRA_ENV_J721E_BOARD_SETTINGS                                  \
198         EXTRA_ENV_J721E_BOARD_SETTINGS_MMC                              \
199         EXTRA_ENV_RPROC_SETTINGS                                        \
200         EXTRA_ENV_DFUARGS                                               \
201         DEFAULT_UFS_TI_ARGS                                             \
202         EXTRA_ENV_J721E_BOARD_SETTINGS_MTD                              \
203         EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY                          \
204         BOOTENV
205
206 /* Now for the remaining common defines */
207 #include <configs/ti_armv7_common.h>
208
209 /* MMC ENV related defines */
210
211 #endif /* __CONFIG_J721E_EVM_H */