Convert CONFIG_PCI_GT64120 to Kconfig
[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 /* FLASH Configuration */
21 #define CONFIG_SYS_FLASH_BASE           0x000000000
22
23 /* SPL Loader Configuration */
24 #if defined(CONFIG_TARGET_J721E_A72_EVM) || defined(CONFIG_TARGET_J7200_A72_EVM)
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 #endif
30
31 #define CONFIG_SYS_BOOTM_LEN            SZ_64M
32
33 /* HyperFlash related configuration */
34
35 /* U-Boot general configuration */
36 #define EXTRA_ENV_J721E_BOARD_SETTINGS                                  \
37         "default_device_tree=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0"      \
38         "findfdt="                                                      \
39                 "setenv name_fdt ${default_device_tree};"               \
40                 "if test $board_name = j721e; then "                    \
41                         "setenv name_fdt k3-j721e-common-proc-board.dtb; fi;" \
42                 "if test $board_name = j721e-eaik || test $board_name = j721e-sk; then "                \
43                         "setenv name_fdt k3-j721e-sk.dtb; fi;"  \
44                 "setenv fdtfile ${name_fdt}\0"                          \
45         "name_kern=Image\0"                                             \
46         "console=ttyS2,115200n8\0"                                      \
47         "args_all=setenv optargs earlycon=ns16550a,mmio32,0x02800000 "  \
48                 "${mtdparts}\0"                                         \
49         "run_kern=booti ${loadaddr} ${rd_spec} ${fdtaddr}\0"
50
51 #define PARTS_DEFAULT \
52         /* Linux partitions */ \
53         "uuid_disk=${uuid_gpt_disk};" \
54         "name=rootfs,start=0,size=-,uuid=${uuid_gpt_rootfs}\0"
55
56 #ifdef CONFIG_SYS_K3_SPL_ATF
57 #if defined(CONFIG_TARGET_J721E_R5_EVM)
58 #define EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC                              \
59         "addr_mcur5f0_0load=0x89000000\0"                               \
60         "name_mcur5f0_0fw=/lib/firmware/j7-mcu-r5f0_0-fw\0"
61 #elif defined(CONFIG_TARGET_J7200_R5_EVM)
62 #define EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC                              \
63         "addr_mcur5f0_0load=0x89000000\0"                               \
64         "name_mcur5f0_0fw=/lib/firmware/j7200-mcu-r5f0_0-fw\0"
65 #endif /* CONFIG_TARGET_J721E_R5_EVM */
66 #else
67 #define EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC ""
68 #endif /* CONFIG_SYS_K3_SPL_ATF */
69
70 /* U-Boot MMC-specific configuration */
71 #define EXTRA_ENV_J721E_BOARD_SETTINGS_MMC                              \
72         "boot=mmc\0"                                                    \
73         "mmcdev=1\0"                                                    \
74         "bootpart=1:2\0"                                                \
75         "bootdir=/boot\0"                                               \
76         EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC                              \
77         "rd_spec=-\0"                                                   \
78         "init_mmc=run args_all args_mmc\0"                              \
79         "get_fdt_mmc=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${name_fdt}\0" \
80         "get_overlay_mmc="                                              \
81                 "fdt address ${fdtaddr};"                               \
82                 "fdt resize 0x100000;"                                  \
83                 "for overlay in $name_overlays;"                        \
84                 "do;"                                                   \
85                 "load mmc ${bootpart} ${dtboaddr} ${bootdir}/${overlay} && "    \
86                 "fdt apply ${dtboaddr};"                                \
87                 "done;\0"                                               \
88         "partitions=" PARTS_DEFAULT                                     \
89         "get_kern_mmc=load mmc ${bootpart} ${loadaddr} "                \
90                 "${bootdir}/${name_kern}\0"                             \
91         "get_fit_mmc=load mmc ${bootpart} ${addr_fit} "                 \
92                 "${bootdir}/${name_fit}\0"                              \
93         "partitions=" PARTS_DEFAULT
94
95 /* Set the default list of remote processors to boot */
96 #if defined(CONFIG_TARGET_J7200_A72_EVM)
97 #define EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY                          \
98         "do_main_cpsw0_qsgmii_phyinit=1\0"                              \
99         "init_main_cpsw0_qsgmii_phy=gpio set gpio@22_17;"               \
100                  "gpio clear gpio@22_16\0"                              \
101         "main_cpsw0_qsgmii_phyinit="                                    \
102         "if test ${do_main_cpsw0_qsgmii_phyinit} -eq 1 && test ${dorprocboot} -eq 1 && " \
103                         "test ${boot} = mmc; then "                     \
104                 "run init_main_cpsw0_qsgmii_phy;"                       \
105         "fi;\0"
106 #ifdef DEFAULT_RPROCS
107 #undef DEFAULT_RPROCS
108 #endif
109 #elif defined(CONFIG_TARGET_J721E_A72_EVM)
110 #define EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY                          \
111         "init_main_cpsw0_qsgmii_phy=gpio set gpio@22_17;"               \
112                  "gpio clear gpio@22_16\0"                              \
113         "main_cpsw0_qsgmii_phyinit="                                    \
114         "if test $board_name = J721EX-PM1-SOM || test $board_name = J721EX-PM2-SOM " \
115         "|| test $board_name = j721e; then " \
116         "do_main_cpsw0_qsgmii_phyinit=1; else "                 \
117         "do_main_cpsw0_qsgmii_phyinit=0; fi;"                   \
118         "if test ${do_main_cpsw0_qsgmii_phyinit} -eq 1 && test ${dorprocboot} -eq 1 && " \
119                         "test ${boot} = mmc; then "                     \
120                 "run init_main_cpsw0_qsgmii_phy;"                       \
121         "fi;\0"
122 #ifdef DEFAULT_RPROCS
123 #undef DEFAULT_RPROCS
124 #endif
125 #endif
126
127 #ifdef CONFIG_TARGET_J721E_A72_EVM
128 #define DEFAULT_RPROCS  ""                                              \
129                 "2 /lib/firmware/j7-main-r5f0_0-fw "                    \
130                 "3 /lib/firmware/j7-main-r5f0_1-fw "                    \
131                 "4 /lib/firmware/j7-main-r5f1_0-fw "                    \
132                 "5 /lib/firmware/j7-main-r5f1_1-fw "                    \
133                 "6 /lib/firmware/j7-c66_0-fw "                          \
134                 "7 /lib/firmware/j7-c66_1-fw "                          \
135                 "8 /lib/firmware/j7-c71_0-fw "
136 #endif /* CONFIG_TARGET_J721E_A72_EVM */
137
138 #ifdef CONFIG_TARGET_J7200_A72_EVM
139 #define DEFAULT_RPROCS ""                                               \
140                 "2 /lib/firmware/j7200-main-r5f0_0-fw "                 \
141                 "3 /lib/firmware/j7200-main-r5f0_1-fw "
142 #endif /* CONFIG_TARGET_J7200_A72_EVM */
143
144 #ifndef EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY
145 #define EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY
146 #endif
147
148 #define EXTRA_ENV_DFUARGS \
149         DFU_ALT_INFO_MMC \
150         DFU_ALT_INFO_EMMC \
151         DFU_ALT_INFO_RAM \
152         DFU_ALT_INFO_OSPI
153
154 #if CONFIG_IS_ENABLED(CMD_PXE)
155 # define BOOT_TARGET_PXE(func) func(PXE, pxe, na)
156 #else
157 # define BOOT_TARGET_PXE(func)
158 #endif
159
160 #if CONFIG_IS_ENABLED(CMD_DHCP)
161 # define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na)
162 #else
163 # define BOOT_TARGET_DHCP(func)
164 #endif
165
166 #define BOOT_TARGET_DEVICES(func) \
167         func(MMC, mmc, 1) \
168         func(MMC, mmc, 0) \
169         BOOT_TARGET_PXE(func) \
170         BOOT_TARGET_DHCP(func)
171
172 #include <config_distro_bootcmd.h>
173
174 /* Incorporate settings into the U-Boot environment */
175 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
176         DEFAULT_LINUX_BOOT_ENV                                          \
177         DEFAULT_MMC_TI_ARGS                                             \
178         DEFAULT_FIT_TI_ARGS                                             \
179         EXTRA_ENV_J721E_BOARD_SETTINGS                                  \
180         EXTRA_ENV_J721E_BOARD_SETTINGS_MMC                              \
181         EXTRA_ENV_RPROC_SETTINGS                                        \
182         EXTRA_ENV_DFUARGS                                               \
183         DEFAULT_UFS_TI_ARGS                                             \
184         EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY                          \
185         BOOTENV
186
187 /* Now for the remaining common defines */
188 #include <configs/ti_armv7_common.h>
189
190 /* MMC ENV related defines */
191
192 #endif /* __CONFIG_J721E_EVM_H */