Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 1 | .. SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause |
| 2 | .. sectionauthor:: Udit Kumar <u-kumar1@ti.com> |
| 3 | |
| 4 | J7200 Platforms |
| 5 | =============== |
| 6 | |
| 7 | Introduction: |
| 8 | ------------- |
| 9 | The J7200 family of SoCs are part of K3 Multicore SoC architecture platform |
| 10 | targeting automotive applications. They are designed as a low power, high |
| 11 | performance and highly integrated device architecture, adding significant |
| 12 | enhancement on processing power, graphics capability, video and imaging |
| 13 | processing, virtualization and coherent memory support. |
| 14 | |
| 15 | The device is partitioned into three functional domains, each containing |
| 16 | specific processing cores and peripherals: |
| 17 | |
| 18 | 1. Wake-up (WKUP) domain: |
| 19 | * Device Management and Security Controller (DMSC) |
| 20 | |
| 21 | 2. Microcontroller (MCU) domain: |
| 22 | * Dual Core ARM Cortex-R5F processor |
| 23 | |
| 24 | 3. MAIN domain: |
| 25 | * Dual core 64-bit ARM Cortex-A72 |
| 26 | |
| 27 | More info can be found in TRM: https://www.ti.com/lit/pdf/spruiu1 |
| 28 | |
Nishanth Menon | 08df746 | 2023-07-27 13:59:00 -0500 | [diff] [blame] | 29 | Platform information: |
| 30 | |
| 31 | * https://www.ti.com/tool/J7200XSOMXEVM |
| 32 | |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 33 | Boot Flow: |
| 34 | ---------- |
| 35 | Below is the pictorial representation of boot flow: |
| 36 | |
Nishanth Menon | 68b3baa | 2023-07-27 13:58:45 -0500 | [diff] [blame] | 37 | .. image:: img/boot_diagram_k3_current.svg |
Nishanth Menon | 49509df | 2023-08-22 11:41:00 -0500 | [diff] [blame] | 38 | :alt: Boot flow diagram |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 39 | |
| 40 | - Here DMSC acts as master and provides all the critical services. R5/A72 |
| 41 | requests DMSC to get these services done as shown in the above diagram. |
| 42 | |
| 43 | Sources: |
| 44 | -------- |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 45 | |
Nishanth Menon | cce3e7a | 2023-07-27 13:58:44 -0500 | [diff] [blame] | 46 | .. include:: k3.rst |
| 47 | :start-after: .. k3_rst_include_start_boot_sources |
| 48 | :end-before: .. k3_rst_include_end_boot_sources |
Neha Malcom Francis | 1ee652a | 2023-07-22 00:14:43 +0530 | [diff] [blame] | 49 | |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 50 | Build procedure: |
| 51 | ---------------- |
Nishanth Menon | c727b81 | 2023-07-27 13:58:48 -0500 | [diff] [blame] | 52 | 0. Setup the environment variables: |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 53 | |
Nishanth Menon | c727b81 | 2023-07-27 13:58:48 -0500 | [diff] [blame] | 54 | .. include:: k3.rst |
| 55 | :start-after: .. k3_rst_include_start_common_env_vars_desc |
| 56 | :end-before: .. k3_rst_include_end_common_env_vars_desc |
| 57 | |
| 58 | .. include:: k3.rst |
| 59 | :start-after: .. k3_rst_include_start_board_env_vars_desc |
| 60 | :end-before: .. k3_rst_include_end_board_env_vars_desc |
| 61 | |
| 62 | Set the variables corresponding to this platform: |
| 63 | |
| 64 | .. include:: k3.rst |
| 65 | :start-after: .. k3_rst_include_start_common_env_vars_defn |
| 66 | :end-before: .. k3_rst_include_end_common_env_vars_defn |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 67 | .. code-block:: bash |
| 68 | |
Nishanth Menon | c727b81 | 2023-07-27 13:58:48 -0500 | [diff] [blame] | 69 | $ export UBOOT_CFG_CORTEXR=j7200_evm_r5_defconfig |
| 70 | $ export UBOOT_CFG_CORTEXA=j7200_evm_a72_defconfig |
| 71 | $ export TFA_BOARD=generic |
| 72 | $ # we dont use any extra TFA parameters |
| 73 | $ unset TFA_EXTRA_ARGS |
| 74 | $ export OPTEE_PLATFORM=k3-j7200 |
| 75 | $ # we dont use any extra OP-TEE parameters |
| 76 | $ unset OPTEE_EXTRA_ARGS |
| 77 | |
| 78 | .. j7200_evm_rst_include_start_build_steps |
| 79 | |
| 80 | 1. Trusted Firmware-A: |
| 81 | |
| 82 | .. include:: k3.rst |
| 83 | :start-after: .. k3_rst_include_start_build_steps_tfa |
| 84 | :end-before: .. k3_rst_include_end_build_steps_tfa |
| 85 | |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 86 | |
Neha Malcom Francis | 1ee652a | 2023-07-22 00:14:43 +0530 | [diff] [blame] | 87 | 2. OP-TEE: |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 88 | |
Nishanth Menon | c727b81 | 2023-07-27 13:58:48 -0500 | [diff] [blame] | 89 | .. include:: k3.rst |
| 90 | :start-after: .. k3_rst_include_start_build_steps_optee |
| 91 | :end-before: .. k3_rst_include_end_build_steps_optee |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 92 | |
Neha Malcom Francis | 1ee652a | 2023-07-22 00:14:43 +0530 | [diff] [blame] | 93 | 3. U-Boot: |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 94 | |
Nishanth Menon | 7af00a7 | 2023-08-22 11:41:05 -0500 | [diff] [blame] | 95 | * 3.1 R5: |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 96 | |
Nishanth Menon | c727b81 | 2023-07-27 13:58:48 -0500 | [diff] [blame] | 97 | .. include:: k3.rst |
| 98 | :start-after: .. k3_rst_include_start_build_steps_spl_r5 |
| 99 | :end-before: .. k3_rst_include_end_build_steps_spl_r5 |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 100 | |
Nishanth Menon | 7af00a7 | 2023-08-22 11:41:05 -0500 | [diff] [blame] | 101 | * 3.2 A72: |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 102 | |
Nishanth Menon | c727b81 | 2023-07-27 13:58:48 -0500 | [diff] [blame] | 103 | .. include:: k3.rst |
| 104 | :start-after: .. k3_rst_include_start_build_steps_uboot |
| 105 | :end-before: .. k3_rst_include_end_build_steps_uboot |
| 106 | .. j7200_evm_rst_include_end_build_steps |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 107 | |
| 108 | Target Images |
| 109 | -------------- |
Tom Rini | f687c8f | 2023-07-25 12:44:16 -0400 | [diff] [blame] | 110 | In order to boot we need tiboot3.bin, tispl.bin and u-boot.img. Each SoC |
| 111 | variant (GP, HS-FS, HS-SE) requires a different source for these files. |
Neha Malcom Francis | 1ee652a | 2023-07-22 00:14:43 +0530 | [diff] [blame] | 112 | |
| 113 | - GP |
| 114 | |
Nishanth Menon | 7af00a7 | 2023-08-22 11:41:05 -0500 | [diff] [blame] | 115 | * tiboot3-j7200-gp-evm.bin from step 3.1 |
| 116 | * tispl.bin_unsigned, u-boot.img_unsigned from step 3.2 |
Neha Malcom Francis | 1ee652a | 2023-07-22 00:14:43 +0530 | [diff] [blame] | 117 | |
| 118 | - HS-FS |
| 119 | |
Nishanth Menon | 7af00a7 | 2023-08-22 11:41:05 -0500 | [diff] [blame] | 120 | * tiboot3-j7200_sr2-hs-fs-evm.bin from step 3.1 |
| 121 | * tispl.bin, u-boot.img from step 3.2 |
Neha Malcom Francis | 1ee652a | 2023-07-22 00:14:43 +0530 | [diff] [blame] | 122 | |
| 123 | - HS-SE |
| 124 | |
Nishanth Menon | 7af00a7 | 2023-08-22 11:41:05 -0500 | [diff] [blame] | 125 | * tiboot3-j7200_sr2-hs-evm.bin from step 3.1 |
| 126 | * tispl.bin, u-boot.img from step 3.2 |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 127 | |
| 128 | Image formats: |
| 129 | -------------- |
| 130 | |
Nishanth Menon | f4ade09 | 2023-07-27 13:58:49 -0500 | [diff] [blame] | 131 | - tiboot3.bin |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 132 | |
Nishanth Menon | f4ade09 | 2023-07-27 13:58:49 -0500 | [diff] [blame] | 133 | .. image:: img/j7200_tiboot3.bin.svg |
Nishanth Menon | 49509df | 2023-08-22 11:41:00 -0500 | [diff] [blame] | 134 | :alt: tiboot3.bin image format |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 135 | |
| 136 | - tispl.bin |
| 137 | |
Nishanth Menon | f4ade09 | 2023-07-27 13:58:49 -0500 | [diff] [blame] | 138 | .. image:: img/dm_tispl.bin.svg |
Nishanth Menon | 49509df | 2023-08-22 11:41:00 -0500 | [diff] [blame] | 139 | :alt: tispl.bin image format |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 140 | |
| 141 | Switch Setting for Boot Mode |
| 142 | ---------------------------- |
| 143 | |
| 144 | Boot Mode pins provide means to select the boot mode and options before the |
| 145 | device is powered up. After every POR, they are the main source to populate |
| 146 | the Boot Parameter Tables. |
| 147 | |
| 148 | The following table shows some common boot modes used on J7200 platform. More |
| 149 | details can be found in the Technical Reference Manual: |
| 150 | https://www.ti.com/lit/pdf/spruiu1 under the `Boot Mode Pins` section. |
| 151 | |
Nishanth Menon | f940ec2 | 2023-07-27 13:58:55 -0500 | [diff] [blame] | 152 | .. list-table:: Boot Modes |
| 153 | :widths: 16 16 16 |
| 154 | :header-rows: 1 |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 155 | |
Nishanth Menon | f940ec2 | 2023-07-27 13:58:55 -0500 | [diff] [blame] | 156 | * - Switch Label |
| 157 | - SW9: 12345678 |
| 158 | - SW8: 12345678 |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 159 | |
Nishanth Menon | f940ec2 | 2023-07-27 13:58:55 -0500 | [diff] [blame] | 160 | * - SD |
| 161 | - 00000000 |
| 162 | - 10000010 |
| 163 | |
| 164 | * - EMMC |
| 165 | - 01000000 |
| 166 | - 10000000 |
| 167 | |
| 168 | * - OSPI |
| 169 | - 01000000 |
| 170 | - 00000110 |
| 171 | |
| 172 | * - UART |
| 173 | - 01110000 |
| 174 | - 00000000 |
| 175 | |
| 176 | * - USB DFU |
| 177 | - 00100000 |
| 178 | - 10000000 |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 179 | |
| 180 | For SW8 and SW9, the switch state in the "ON" position = 1. |
| 181 | |
| 182 | eMMC: |
| 183 | ----- |
| 184 | ROM supports booting from eMMC raw read or UDA FS mode. |
| 185 | |
| 186 | Below is memory layout in case of booting from |
| 187 | boot 0/1 partition in raw mode. |
| 188 | |
| 189 | Current allocated size for tiboot3 size is 1MB, tispl is 2MB. |
| 190 | |
| 191 | Size of u-boot.img is taken 4MB for refernece, |
| 192 | But this is subject to change depending upon atf, optee size |
| 193 | |
Nishanth Menon | 93d90bf | 2023-07-27 13:58:59 -0500 | [diff] [blame] | 194 | .. image:: img/emmc_j7200_evm_boot01.svg |
Nishanth Menon | 49509df | 2023-08-22 11:41:00 -0500 | [diff] [blame] | 195 | :alt: Traditional eMMC boot partition layout |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 196 | |
| 197 | In case of UDA FS mode booting, following is layout. |
| 198 | |
| 199 | All boot images tiboot3.bin, tispl and u-boot should be written to |
| 200 | fat formatted UDA FS as file. |
| 201 | |
Nishanth Menon | 93d90bf | 2023-07-27 13:58:59 -0500 | [diff] [blame] | 202 | .. image:: img/emmc_j7200_evm_udafs.svg |
Nishanth Menon | 49509df | 2023-08-22 11:41:00 -0500 | [diff] [blame] | 203 | :alt: eMMC UDA boot partition layout |
Udit Kumar | db7af51 | 2023-05-11 14:47:48 +0530 | [diff] [blame] | 204 | |
| 205 | In case of booting from eMMC, write above images into raw or UDA FS. |
| 206 | and set mmc partconf accordingly. |
Jason Kacines | effe508 | 2023-08-03 01:29:22 -0500 | [diff] [blame] | 207 | |
| 208 | Debugging U-Boot |
| 209 | ---------------- |
| 210 | |
| 211 | See :ref:`Common Debugging environment - OpenOCD<k3_rst_refer_openocd>`: for |
| 212 | detailed setup information. |
| 213 | |
| 214 | .. warning:: |
| 215 | |
| 216 | **OpenOCD support since**: v0.12.0 |
| 217 | |
| 218 | If the default package version of OpenOCD in your development |
| 219 | environment's distribution needs to be updated, it might be necessary to |
| 220 | build OpenOCD from the source. |
| 221 | |
| 222 | .. include:: k3.rst |
| 223 | :start-after: .. k3_rst_include_start_openocd_connect_XDS110 |
| 224 | :end-before: .. k3_rst_include_end_openocd_connect_XDS110 |
| 225 | |
| 226 | To start OpenOCD and connect to the board |
| 227 | |
| 228 | .. code-block:: bash |
| 229 | |
| 230 | openocd -f board/ti_j7200evm.cfg |