Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Configuration header file for K3 J721E EVM |
| 4 | * |
Suman Anna | c091bb0 | 2020-08-17 18:15:12 -0500 | [diff] [blame] | 5 | * Copyright (C) 2018-2020 Texas Instruments Incorporated - https://www.ti.com/ |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 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> |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 13 | #include <environment/ti/mmc.h> |
Suman Anna | 0b4ab9c | 2019-09-04 16:01:43 +0530 | [diff] [blame] | 14 | #include <environment/ti/k3_rproc.h> |
Faiz Abbas | 13b6770 | 2019-10-15 18:24:41 +0530 | [diff] [blame] | 15 | #include <environment/ti/ufs.h> |
Vignesh Raghavendra | f4b3c1c | 2019-11-18 19:16:34 +0530 | [diff] [blame] | 16 | #include <environment/ti/k3_dfu.h> |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 17 | |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 18 | /* DDR Configuration */ |
| 19 | #define CONFIG_SYS_SDRAM_BASE1 0x880000000 |
| 20 | |
| 21 | /* SPL Loader Configuration */ |
Lokesh Vutla | cf1d686 | 2020-08-05 22:44:24 +0530 | [diff] [blame] | 22 | #if defined(CONFIG_TARGET_J721E_A72_EVM) || defined(CONFIG_TARGET_J7200_A72_EVM) |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 23 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SPL_TEXT_BASE + \ |
| 24 | CONFIG_SYS_K3_NON_SECURE_MSRAM_SIZE) |
Vignesh Raghavendra | f8d3d4d | 2020-08-13 14:56:19 +0530 | [diff] [blame] | 25 | #define CONFIG_SYS_UBOOT_BASE 0x50280000 |
Vignesh Raghavendra | 4728c6f | 2020-01-27 17:59:26 +0530 | [diff] [blame] | 26 | /* Image load address in RAM for DFU boot*/ |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 27 | #else |
Vignesh Raghavendra | f8d3d4d | 2020-08-13 14:56:19 +0530 | [diff] [blame] | 28 | #define CONFIG_SYS_UBOOT_BASE 0x50080000 |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 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 |
Vignesh Raghavendra | 4728c6f | 2020-01-27 17:59:26 +0530 | [diff] [blame] | 50 | /* Image load address in RAM for DFU boot*/ |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 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 | |
Vignesh Raghavendra | 1fc18e1 | 2019-10-23 13:30:04 +0530 | [diff] [blame] | 62 | /* HyperFlash related configuration */ |
Vignesh Raghavendra | 1fc18e1 | 2019-10-23 13:30:04 +0530 | [diff] [blame] | 63 | |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 64 | /* U-Boot general configuration */ |
| 65 | #define EXTRA_ENV_J721E_BOARD_SETTINGS \ |
| 66 | "default_device_tree=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \ |
Andrew F. Davis | fb03b77 | 2020-01-10 14:35:18 -0500 | [diff] [blame] | 67 | "findfdt=" \ |
| 68 | "setenv name_fdt ${default_device_tree};" \ |
Sinthu Raja | 0ca9f70 | 2022-02-09 15:07:01 +0530 | [diff] [blame] | 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;" \ |
Andrew F. Davis | fb03b77 | 2020-01-10 14:35:18 -0500 | [diff] [blame] | 73 | "setenv fdtfile ${name_fdt}\0" \ |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 74 | "name_kern=Image\0" \ |
| 75 | "console=ttyS2,115200n8\0" \ |
Vignesh Raghavendra | 97103b1 | 2020-02-04 11:09:54 +0530 | [diff] [blame] | 76 | "args_all=setenv optargs earlycon=ns16550a,mmio32,0x02800000 " \ |
| 77 | "${mtdparts}\0" \ |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 78 | "run_kern=booti ${loadaddr} ${rd_spec} ${fdtaddr}\0" |
| 79 | |
Faiz Abbas | 0ee0270 | 2020-01-16 19:42:23 +0530 | [diff] [blame] | 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 | |
Suman Anna | a9e5caf | 2020-08-17 16:57:36 -0500 | [diff] [blame] | 85 | #ifdef CONFIG_SYS_K3_SPL_ATF |
Suman Anna | 615d10f | 2020-08-18 14:09:43 -0500 | [diff] [blame] | 86 | #if defined(CONFIG_TARGET_J721E_R5_EVM) |
Suman Anna | a9e5caf | 2020-08-17 16:57:36 -0500 | [diff] [blame] | 87 | #define EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC \ |
Suman Anna | a9e5caf | 2020-08-17 16:57:36 -0500 | [diff] [blame] | 88 | "addr_mcur5f0_0load=0x89000000\0" \ |
| 89 | "name_mcur5f0_0fw=/lib/firmware/j7-mcu-r5f0_0-fw\0" |
Suman Anna | 615d10f | 2020-08-18 14:09:43 -0500 | [diff] [blame] | 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 */ |
Suman Anna | a9e5caf | 2020-08-17 16:57:36 -0500 | [diff] [blame] | 95 | #else |
| 96 | #define EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC "" |
| 97 | #endif /* CONFIG_SYS_K3_SPL_ATF */ |
| 98 | |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 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" \ |
Suman Anna | a9e5caf | 2020-08-17 16:57:36 -0500 | [diff] [blame] | 105 | EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC \ |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 106 | "rd_spec=-\0" \ |
| 107 | "init_mmc=run args_all args_mmc\0" \ |
Andrew F. Davis | fb03b77 | 2020-01-10 14:35:18 -0500 | [diff] [blame] | 108 | "get_fdt_mmc=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${name_fdt}\0" \ |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 109 | "get_overlay_mmc=" \ |
| 110 | "fdt address ${fdtaddr};" \ |
| 111 | "fdt resize 0x100000;" \ |
Andrew F. Davis | ee53b59 | 2019-08-12 15:59:53 -0400 | [diff] [blame] | 112 | "for overlay in $name_overlays;" \ |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 113 | "do;" \ |
Nishanth Menon | 25364f5 | 2020-10-07 21:47:58 -0500 | [diff] [blame] | 114 | "load mmc ${bootpart} ${dtboaddr} ${bootdir}/${overlay} && " \ |
| 115 | "fdt apply ${dtboaddr};" \ |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 116 | "done;\0" \ |
Faiz Abbas | 0ee0270 | 2020-01-16 19:42:23 +0530 | [diff] [blame] | 117 | "partitions=" PARTS_DEFAULT \ |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 118 | "get_kern_mmc=load mmc ${bootpart} ${loadaddr} " \ |
Andrew F. Davis | fb03b77 | 2020-01-10 14:35:18 -0500 | [diff] [blame] | 119 | "${bootdir}/${name_kern}\0" \ |
| 120 | "get_fit_mmc=load mmc ${bootpart} ${addr_fit} " \ |
| 121 | "${bootdir}/${name_fit}\0" \ |
| 122 | "partitions=" PARTS_DEFAULT |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 123 | |
Suman Anna | c091bb0 | 2020-08-17 18:15:12 -0500 | [diff] [blame] | 124 | /* Set the default list of remote processors to boot */ |
| 125 | #if defined(CONFIG_TARGET_J721E_A72_EVM) || defined(CONFIG_TARGET_J7200_A72_EVM) |
Aswath Govindraju | 5980925 | 2022-01-28 13:41:52 +0530 | [diff] [blame] | 126 | #define EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY \ |
| 127 | "dorprocboot=1\0" \ |
| 128 | "do_main_cpsw0_qsgmii_phyinit=1\0" \ |
| 129 | "init_main_cpsw0_qsgmii_phy=gpio set gpio@22_17;" \ |
| 130 | "gpio clear gpio@22_16\0" \ |
| 131 | "main_cpsw0_qsgmii_phyinit=" \ |
| 132 | "if test ${do_main_cpsw0_qsgmii_phyinit} -eq 1 && test ${dorprocboot} -eq 1 && " \ |
| 133 | "test ${boot} = mmc; then " \ |
| 134 | "run init_main_cpsw0_qsgmii_phy;" \ |
| 135 | "fi;\0" |
Suman Anna | 0b4ab9c | 2019-09-04 16:01:43 +0530 | [diff] [blame] | 136 | #ifdef DEFAULT_RPROCS |
| 137 | #undef DEFAULT_RPROCS |
| 138 | #endif |
Suman Anna | c091bb0 | 2020-08-17 18:15:12 -0500 | [diff] [blame] | 139 | #endif |
| 140 | |
| 141 | #ifdef CONFIG_TARGET_J721E_A72_EVM |
Suman Anna | 0b4ab9c | 2019-09-04 16:01:43 +0530 | [diff] [blame] | 142 | #define DEFAULT_RPROCS "" \ |
Suman Anna | 05e858a | 2021-07-26 16:13:07 -0500 | [diff] [blame] | 143 | "2 /lib/firmware/j7-main-r5f0_0-fw " \ |
Suman Anna | 0b4ab9c | 2019-09-04 16:01:43 +0530 | [diff] [blame] | 144 | "3 /lib/firmware/j7-main-r5f0_1-fw " \ |
| 145 | "4 /lib/firmware/j7-main-r5f1_0-fw " \ |
Suman Anna | 3c19529 | 2020-08-17 16:57:35 -0500 | [diff] [blame] | 146 | "5 /lib/firmware/j7-main-r5f1_1-fw " \ |
Suman Anna | 0b4ab9c | 2019-09-04 16:01:43 +0530 | [diff] [blame] | 147 | "6 /lib/firmware/j7-c66_0-fw " \ |
| 148 | "7 /lib/firmware/j7-c66_1-fw " \ |
| 149 | "8 /lib/firmware/j7-c71_0-fw " |
Suman Anna | c091bb0 | 2020-08-17 18:15:12 -0500 | [diff] [blame] | 150 | #endif /* CONFIG_TARGET_J721E_A72_EVM */ |
| 151 | |
| 152 | #ifdef CONFIG_TARGET_J7200_A72_EVM |
| 153 | #define DEFAULT_RPROCS "" \ |
| 154 | "2 /lib/firmware/j7200-main-r5f0_0-fw " \ |
| 155 | "3 /lib/firmware/j7200-main-r5f0_1-fw " |
| 156 | #endif /* CONFIG_TARGET_J7200_A72_EVM */ |
Suman Anna | 0b4ab9c | 2019-09-04 16:01:43 +0530 | [diff] [blame] | 157 | |
Kishon Vijay Abraham I | 15f4193 | 2021-07-21 21:28:46 +0530 | [diff] [blame] | 158 | #ifndef EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY |
| 159 | #define EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY |
| 160 | #endif |
| 161 | |
Vignesh Raghavendra | f4b3c1c | 2019-11-18 19:16:34 +0530 | [diff] [blame] | 162 | #define EXTRA_ENV_DFUARGS \ |
Vignesh Raghavendra | f4b3c1c | 2019-11-18 19:16:34 +0530 | [diff] [blame] | 163 | DFU_ALT_INFO_MMC \ |
| 164 | DFU_ALT_INFO_EMMC \ |
| 165 | DFU_ALT_INFO_RAM \ |
| 166 | DFU_ALT_INFO_OSPI |
| 167 | |
Lokesh Vutla | cf1d686 | 2020-08-05 22:44:24 +0530 | [diff] [blame] | 168 | #if defined(CONFIG_TARGET_J721E_A72_EVM) || defined(CONFIG_TARGET_J7200_A72_EVM) |
Vignesh Raghavendra | 97103b1 | 2020-02-04 11:09:54 +0530 | [diff] [blame] | 169 | #define EXTRA_ENV_J721E_BOARD_SETTINGS_MTD \ |
| 170 | "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \ |
| 171 | "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" |
| 172 | #else |
| 173 | #define EXTRA_ENV_J721E_BOARD_SETTINGS_MTD |
| 174 | #endif |
| 175 | |
Tom Rini | 7a37630 | 2021-07-01 10:27:43 -0400 | [diff] [blame] | 176 | #if CONFIG_IS_ENABLED(CMD_PXE) |
| 177 | # define BOOT_TARGET_PXE(func) func(PXE, pxe, na) |
| 178 | #else |
| 179 | # define BOOT_TARGET_PXE(func) |
| 180 | #endif |
| 181 | |
| 182 | #if CONFIG_IS_ENABLED(CMD_DHCP) |
| 183 | # define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na) |
| 184 | #else |
| 185 | # define BOOT_TARGET_DHCP(func) |
| 186 | #endif |
| 187 | |
| 188 | #define BOOT_TARGET_DEVICES(func) \ |
| 189 | func(MMC, mmc, 1) \ |
| 190 | func(MMC, mmc, 0) \ |
| 191 | BOOT_TARGET_PXE(func) \ |
| 192 | BOOT_TARGET_DHCP(func) |
| 193 | |
| 194 | #include <config_distro_bootcmd.h> |
| 195 | |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 196 | /* Incorporate settings into the U-Boot environment */ |
| 197 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Nishanth Menon | 25364f5 | 2020-10-07 21:47:58 -0500 | [diff] [blame] | 198 | DEFAULT_LINUX_BOOT_ENV \ |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 199 | DEFAULT_MMC_TI_ARGS \ |
Andrew F. Davis | fb03b77 | 2020-01-10 14:35:18 -0500 | [diff] [blame] | 200 | DEFAULT_FIT_TI_ARGS \ |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 201 | EXTRA_ENV_J721E_BOARD_SETTINGS \ |
Suman Anna | 0b4ab9c | 2019-09-04 16:01:43 +0530 | [diff] [blame] | 202 | EXTRA_ENV_J721E_BOARD_SETTINGS_MMC \ |
Faiz Abbas | 13b6770 | 2019-10-15 18:24:41 +0530 | [diff] [blame] | 203 | EXTRA_ENV_RPROC_SETTINGS \ |
Vignesh Raghavendra | f4b3c1c | 2019-11-18 19:16:34 +0530 | [diff] [blame] | 204 | EXTRA_ENV_DFUARGS \ |
Vignesh Raghavendra | 97103b1 | 2020-02-04 11:09:54 +0530 | [diff] [blame] | 205 | DEFAULT_UFS_TI_ARGS \ |
Tom Rini | 7a37630 | 2021-07-01 10:27:43 -0400 | [diff] [blame] | 206 | EXTRA_ENV_J721E_BOARD_SETTINGS_MTD \ |
Kishon Vijay Abraham I | 15f4193 | 2021-07-21 21:28:46 +0530 | [diff] [blame] | 207 | EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY \ |
Tom Rini | 7a37630 | 2021-07-01 10:27:43 -0400 | [diff] [blame] | 208 | BOOTENV |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 209 | |
| 210 | /* Now for the remaining common defines */ |
| 211 | #include <configs/ti_armv7_common.h> |
| 212 | |
Faiz Abbas | 4250bf8 | 2020-01-16 19:42:24 +0530 | [diff] [blame] | 213 | /* MMC ENV related defines */ |
Faiz Abbas | 4250bf8 | 2020-01-16 19:42:24 +0530 | [diff] [blame] | 214 | |
Lokesh Vutla | f818503 | 2019-06-13 10:29:49 +0530 | [diff] [blame] | 215 | #endif /* __CONFIG_J721E_EVM_H */ |