blob: abea7517e8b5bcf745b9ac347d3a5af01907d33d [file] [log] [blame]
Lokesh Vutla1a9dd212019-06-13 10:29:49 +05301/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Configuration header file for K3 J721E EVM
4 *
Suman Anna5c8e9332020-08-17 18:15:12 -05005 * Copyright (C) 2018-2020 Texas Instruments Incorporated - https://www.ti.com/
Lokesh Vutla1a9dd212019-06-13 10:29:49 +05306 * 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>
Lokesh Vutla1a9dd212019-06-13 10:29:49 +053013#include <environment/ti/mmc.h>
Suman Annacf8387c2019-09-04 16:01:43 +053014#include <environment/ti/k3_rproc.h>
Faiz Abbasde304c52019-10-15 18:24:41 +053015#include <environment/ti/ufs.h>
Vignesh Raghavendrab1558012019-11-18 19:16:34 +053016#include <environment/ti/k3_dfu.h>
Lokesh Vutla1a9dd212019-06-13 10:29:49 +053017
Lokesh Vutla1a9dd212019-06-13 10:29:49 +053018/* DDR Configuration */
19#define CONFIG_SYS_SDRAM_BASE1 0x880000000
20
21/* SPL Loader Configuration */
Lokesh Vutla046ad432020-08-05 22:44:24 +053022#if defined(CONFIG_TARGET_J721E_A72_EVM) || defined(CONFIG_TARGET_J7200_A72_EVM)
Lokesh Vutla1a9dd212019-06-13 10:29:49 +053023#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SPL_TEXT_BASE + \
24 CONFIG_SYS_K3_NON_SECURE_MSRAM_SIZE)
Vignesh Raghavendraf2d531f2020-08-13 14:56:19 +053025#define CONFIG_SYS_UBOOT_BASE 0x50280000
Vignesh Raghavendra853a6892020-01-27 17:59:26 +053026/* Image load address in RAM for DFU boot*/
Lokesh Vutla1a9dd212019-06-13 10:29:49 +053027#else
Vignesh Raghavendraf2d531f2020-08-13 14:56:19 +053028#define CONFIG_SYS_UBOOT_BASE 0x50080000
Lokesh Vutla1a9dd212019-06-13 10:29:49 +053029/*
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
Vignesh Raghavendra853a6892020-01-27 17:59:26 +053050/* Image load address in RAM for DFU boot*/
Lokesh Vutla1a9dd212019-06-13 10:29:49 +053051#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
Vignesh Raghavendra8af36ce2019-10-23 13:30:04 +053062/* HyperFlash related configuration */
Vignesh Raghavendra8af36ce2019-10-23 13:30:04 +053063
Lokesh Vutla1a9dd212019-06-13 10:29:49 +053064/* U-Boot general configuration */
65#define EXTRA_ENV_J721E_BOARD_SETTINGS \
66 "default_device_tree=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
Andrew F. Davis1929a8b2020-01-10 14:35:18 -050067 "findfdt=" \
68 "setenv name_fdt ${default_device_tree};" \
69 "setenv fdtfile ${name_fdt}\0" \
Lokesh Vutla1a9dd212019-06-13 10:29:49 +053070 "name_kern=Image\0" \
71 "console=ttyS2,115200n8\0" \
Vignesh Raghavendra34af0dd2020-02-04 11:09:54 +053072 "args_all=setenv optargs earlycon=ns16550a,mmio32,0x02800000 " \
73 "${mtdparts}\0" \
Lokesh Vutla1a9dd212019-06-13 10:29:49 +053074 "run_kern=booti ${loadaddr} ${rd_spec} ${fdtaddr}\0"
75
Faiz Abbasee95ddc2020-01-16 19:42:23 +053076#define PARTS_DEFAULT \
77 /* Linux partitions */ \
78 "uuid_disk=${uuid_gpt_disk};" \
79 "name=rootfs,start=0,size=-,uuid=${uuid_gpt_rootfs}\0"
80
Suman Anna72fd6012020-08-17 16:57:36 -050081#ifdef CONFIG_SYS_K3_SPL_ATF
Suman Anna153e7502020-08-18 14:09:43 -050082#if defined(CONFIG_TARGET_J721E_R5_EVM)
Suman Anna72fd6012020-08-17 16:57:36 -050083#define EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC \
Suman Anna72fd6012020-08-17 16:57:36 -050084 "addr_mcur5f0_0load=0x89000000\0" \
85 "name_mcur5f0_0fw=/lib/firmware/j7-mcu-r5f0_0-fw\0"
Suman Anna153e7502020-08-18 14:09:43 -050086#elif defined(CONFIG_TARGET_J7200_R5_EVM)
87#define EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC \
88 "addr_mcur5f0_0load=0x89000000\0" \
89 "name_mcur5f0_0fw=/lib/firmware/j7200-mcu-r5f0_0-fw\0"
90#endif /* CONFIG_TARGET_J721E_R5_EVM */
Suman Anna72fd6012020-08-17 16:57:36 -050091#else
92#define EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC ""
93#endif /* CONFIG_SYS_K3_SPL_ATF */
94
Lokesh Vutla1a9dd212019-06-13 10:29:49 +053095/* U-Boot MMC-specific configuration */
96#define EXTRA_ENV_J721E_BOARD_SETTINGS_MMC \
97 "boot=mmc\0" \
98 "mmcdev=1\0" \
99 "bootpart=1:2\0" \
100 "bootdir=/boot\0" \
Suman Anna72fd6012020-08-17 16:57:36 -0500101 EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC \
Lokesh Vutla1a9dd212019-06-13 10:29:49 +0530102 "rd_spec=-\0" \
103 "init_mmc=run args_all args_mmc\0" \
Andrew F. Davis1929a8b2020-01-10 14:35:18 -0500104 "get_fdt_mmc=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${name_fdt}\0" \
Lokesh Vutla1a9dd212019-06-13 10:29:49 +0530105 "get_overlay_mmc=" \
106 "fdt address ${fdtaddr};" \
107 "fdt resize 0x100000;" \
Andrew F. Davis685fb742019-08-12 15:59:53 -0400108 "for overlay in $name_overlays;" \
Lokesh Vutla1a9dd212019-06-13 10:29:49 +0530109 "do;" \
Nishanth Menon3aa34082020-10-07 21:47:58 -0500110 "load mmc ${bootpart} ${dtboaddr} ${bootdir}/${overlay} && " \
111 "fdt apply ${dtboaddr};" \
Lokesh Vutla1a9dd212019-06-13 10:29:49 +0530112 "done;\0" \
Faiz Abbasee95ddc2020-01-16 19:42:23 +0530113 "partitions=" PARTS_DEFAULT \
Lokesh Vutla1a9dd212019-06-13 10:29:49 +0530114 "get_kern_mmc=load mmc ${bootpart} ${loadaddr} " \
Andrew F. Davis1929a8b2020-01-10 14:35:18 -0500115 "${bootdir}/${name_kern}\0" \
116 "get_fit_mmc=load mmc ${bootpart} ${addr_fit} " \
117 "${bootdir}/${name_fit}\0" \
118 "partitions=" PARTS_DEFAULT
Lokesh Vutla1a9dd212019-06-13 10:29:49 +0530119
Suman Anna5c8e9332020-08-17 18:15:12 -0500120/* Set the default list of remote processors to boot */
121#if defined(CONFIG_TARGET_J721E_A72_EVM) || defined(CONFIG_TARGET_J7200_A72_EVM)
Suman Annacf8387c2019-09-04 16:01:43 +0530122#ifdef DEFAULT_RPROCS
123#undef DEFAULT_RPROCS
124#endif
Suman Anna5c8e9332020-08-17 18:15:12 -0500125#endif
126
127#ifdef CONFIG_TARGET_J721E_A72_EVM
Suman Annacf8387c2019-09-04 16:01:43 +0530128#define DEFAULT_RPROCS "" \
Suman Anna70ce1322021-07-26 16:13:07 -0500129 "2 /lib/firmware/j7-main-r5f0_0-fw " \
Suman Annacf8387c2019-09-04 16:01:43 +0530130 "3 /lib/firmware/j7-main-r5f0_1-fw " \
131 "4 /lib/firmware/j7-main-r5f1_0-fw " \
Suman Annaa9264162020-08-17 16:57:35 -0500132 "5 /lib/firmware/j7-main-r5f1_1-fw " \
Suman Annacf8387c2019-09-04 16:01:43 +0530133 "6 /lib/firmware/j7-c66_0-fw " \
134 "7 /lib/firmware/j7-c66_1-fw " \
135 "8 /lib/firmware/j7-c71_0-fw "
Suman Anna5c8e9332020-08-17 18:15:12 -0500136#endif /* CONFIG_TARGET_J721E_A72_EVM */
137
138#ifdef CONFIG_TARGET_J7200_A72_EVM
Kishon Vijay Abraham Iac0d6722021-07-21 21:28:46 +0530139#define EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY \
140 "do_main_cpsw0_qsgmii_phyinit=1\0" \
141 "init_main_cpsw0_qsgmii_phy=gpio set gpio@22_17;" \
142 "gpio clear gpio@22_16\0" \
143 "main_cpsw0_qsgmii_phyinit=" \
144 "if test ${do_main_cpsw0_qsgmii_phyinit} -eq 1 && test ${dorprocboot} -eq 1 && " \
145 "test ${boot} = mmc; then " \
146 "run init_main_cpsw0_qsgmii_phy;" \
147 "fi;\0"
Suman Anna5c8e9332020-08-17 18:15:12 -0500148#define DEFAULT_RPROCS "" \
149 "2 /lib/firmware/j7200-main-r5f0_0-fw " \
150 "3 /lib/firmware/j7200-main-r5f0_1-fw "
151#endif /* CONFIG_TARGET_J7200_A72_EVM */
Suman Annacf8387c2019-09-04 16:01:43 +0530152
Kishon Vijay Abraham Iac0d6722021-07-21 21:28:46 +0530153#ifndef EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY
154#define EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY
155#endif
156
Vignesh Raghavendrab1558012019-11-18 19:16:34 +0530157#define EXTRA_ENV_DFUARGS \
Vignesh Raghavendrab1558012019-11-18 19:16:34 +0530158 DFU_ALT_INFO_MMC \
159 DFU_ALT_INFO_EMMC \
160 DFU_ALT_INFO_RAM \
161 DFU_ALT_INFO_OSPI
162
Lokesh Vutla046ad432020-08-05 22:44:24 +0530163#if defined(CONFIG_TARGET_J721E_A72_EVM) || defined(CONFIG_TARGET_J7200_A72_EVM)
Vignesh Raghavendra34af0dd2020-02-04 11:09:54 +0530164#define EXTRA_ENV_J721E_BOARD_SETTINGS_MTD \
165 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
166 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0"
167#else
168#define EXTRA_ENV_J721E_BOARD_SETTINGS_MTD
169#endif
170
Tom Rini4613f1f2021-07-01 10:27:43 -0400171#if CONFIG_IS_ENABLED(CMD_PXE)
172# define BOOT_TARGET_PXE(func) func(PXE, pxe, na)
173#else
174# define BOOT_TARGET_PXE(func)
175#endif
176
177#if CONFIG_IS_ENABLED(CMD_DHCP)
178# define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na)
179#else
180# define BOOT_TARGET_DHCP(func)
181#endif
182
183#define BOOT_TARGET_DEVICES(func) \
184 func(MMC, mmc, 1) \
185 func(MMC, mmc, 0) \
186 BOOT_TARGET_PXE(func) \
187 BOOT_TARGET_DHCP(func)
188
189#include <config_distro_bootcmd.h>
190
Lokesh Vutla1a9dd212019-06-13 10:29:49 +0530191/* Incorporate settings into the U-Boot environment */
192#define CONFIG_EXTRA_ENV_SETTINGS \
Nishanth Menon3aa34082020-10-07 21:47:58 -0500193 DEFAULT_LINUX_BOOT_ENV \
Lokesh Vutla1a9dd212019-06-13 10:29:49 +0530194 DEFAULT_MMC_TI_ARGS \
Andrew F. Davis1929a8b2020-01-10 14:35:18 -0500195 DEFAULT_FIT_TI_ARGS \
Lokesh Vutla1a9dd212019-06-13 10:29:49 +0530196 EXTRA_ENV_J721E_BOARD_SETTINGS \
Suman Annacf8387c2019-09-04 16:01:43 +0530197 EXTRA_ENV_J721E_BOARD_SETTINGS_MMC \
Faiz Abbasde304c52019-10-15 18:24:41 +0530198 EXTRA_ENV_RPROC_SETTINGS \
Vignesh Raghavendrab1558012019-11-18 19:16:34 +0530199 EXTRA_ENV_DFUARGS \
Vignesh Raghavendra34af0dd2020-02-04 11:09:54 +0530200 DEFAULT_UFS_TI_ARGS \
Tom Rini4613f1f2021-07-01 10:27:43 -0400201 EXTRA_ENV_J721E_BOARD_SETTINGS_MTD \
Kishon Vijay Abraham Iac0d6722021-07-21 21:28:46 +0530202 EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY \
Tom Rini4613f1f2021-07-01 10:27:43 -0400203 BOOTENV
Lokesh Vutla1a9dd212019-06-13 10:29:49 +0530204
205/* Now for the remaining common defines */
206#include <configs/ti_armv7_common.h>
207
Faiz Abbasd40f61d2020-01-16 19:42:24 +0530208/* MMC ENV related defines */
Faiz Abbasd40f61d2020-01-16 19:42:24 +0530209
Lokesh Vutla1a9dd212019-06-13 10:29:49 +0530210#endif /* __CONFIG_J721E_EVM_H */