blob: 89011c08dd46fbd619d2711c4a94d809be458fa2 [file] [log] [blame]
Neha Malcom Francis507be122023-07-22 00:14:43 +05301.. SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
2.. sectionauthor:: Neha Francis <n-francis@ti.com>
3
4AM65x Platforms
5===============
6
7Introduction:
8-------------
9The AM65x family of SoCs is the first device family from K3 Multicore
10SoC architecture, targeted for broad market and industrial control with
11aim to meet the complex processing needs of modern embedded products.
12
13The device is built over three domains, each containing specific processing
14cores, voltage domains and peripherals:
15
161. Wake-up (WKUP) domain:
17 * Device Management and Security Controller (DMSC)
18
192. Microcontroller (MCU) domain:
20 * Dual Core ARM Cortex-R5F processor
21
223. MAIN domain:
23 * Quad core 64-bit ARM Cortex-A53
24
Nishanth Menoneaa39c62023-11-01 15:56:03 -050025More info can be found in TRM: https://www.ti.com/lit/pdf/spruid7
Neha Malcom Francis507be122023-07-22 00:14:43 +053026
Nishanth Menon4981d9a2023-07-27 13:59:00 -050027Platform information:
28
29* https://www.ti.com/tool/TMDX654GPEVM
30
Neha Malcom Francis507be122023-07-22 00:14:43 +053031Boot Flow:
32----------
33On AM65x family devices, ROM supports boot only via MCU(R5). This means that
34bootloader has to run on R5 core. In order to meet this constraint, and for
35the following reasons the boot flow is designed as mentioned:
36
371. Need to move away from R5 asap, so that we want to start *any*
38firmware on the R5 cores for example autosar can be loaded to receive CAN
39response and other safety operations to be started. This operation is
40very time critical and is applicable for all automotive use cases.
41
422. U-Boot on A53 should start other remotecores for various
43applications. This should happen before running Linux.
44
453. In production boot flow, we might not like to use full U-Boot,
46instead use Falcon boot flow to reduce boot time.
47
Nishanth Menond683f502023-07-27 13:58:46 -050048.. image:: img/boot_diagram_am65.svg
Heinrich Schuchardt529aed02023-08-22 11:40:59 -050049 :alt: Boot flow diagram
Neha Malcom Francis507be122023-07-22 00:14:43 +053050
51- Here DMSC acts as master and provides all the critical services. R5/A53
52 requests DMSC to get these services done as shown in the above diagram.
53
54Sources:
55--------
Neha Malcom Francis507be122023-07-22 00:14:43 +053056
Nishanth Menonee91e482023-07-27 13:58:44 -050057.. include:: k3.rst
58 :start-after: .. k3_rst_include_start_boot_sources
59 :end-before: .. k3_rst_include_end_boot_sources
Neha Malcom Francis507be122023-07-22 00:14:43 +053060
61Build procedure:
62----------------
Nishanth Menonb7ee22f2023-07-27 13:58:48 -0500630. Setup the environment variables:
Neha Malcom Francis507be122023-07-22 00:14:43 +053064
Nishanth Menonb7ee22f2023-07-27 13:58:48 -050065.. include:: k3.rst
66 :start-after: .. k3_rst_include_start_common_env_vars_desc
67 :end-before: .. k3_rst_include_end_common_env_vars_desc
Neha Malcom Francis507be122023-07-22 00:14:43 +053068
Nishanth Menonb7ee22f2023-07-27 13:58:48 -050069.. include:: k3.rst
70 :start-after: .. k3_rst_include_start_board_env_vars_desc
71 :end-before: .. k3_rst_include_end_board_env_vars_desc
Neha Malcom Francis507be122023-07-22 00:14:43 +053072
Nishanth Menonb7ee22f2023-07-27 13:58:48 -050073Set the variables corresponding to this platform:
Neha Malcom Francis507be122023-07-22 00:14:43 +053074
Nishanth Menonb7ee22f2023-07-27 13:58:48 -050075.. include:: k3.rst
76 :start-after: .. k3_rst_include_start_common_env_vars_defn
77 :end-before: .. k3_rst_include_end_common_env_vars_defn
Nishanth Menonfdd7cb72023-11-02 23:40:26 -050078.. prompt:: bash $
Neha Malcom Francis507be122023-07-22 00:14:43 +053079
Nishanth Menonfdd7cb72023-11-02 23:40:26 -050080 export UBOOT_CFG_CORTEXR=am65x_evm_r5_defconfig
81 export UBOOT_CFG_CORTEXA=am65x_evm_a53_defconfig
82 export TFA_BOARD=generic
83 # we dont use any extra TFA parameters
84 unset TFA_EXTRA_ARGS
85 export OPTEE_PLATFORM=k3-am65x
86 # we dont use any extra OP-TEE parameters
87 unset OPTEE_EXTRA_ARGS
Nishanth Menonb7ee22f2023-07-27 13:58:48 -050088
89.. am65x_evm_rst_include_start_build_steps
90
911. Trusted Firmware-A:
92
93.. include:: k3.rst
94 :start-after: .. k3_rst_include_start_build_steps_tfa
95 :end-before: .. k3_rst_include_end_build_steps_tfa
96
97
982. OP-TEE:
99
100.. include:: k3.rst
101 :start-after: .. k3_rst_include_start_build_steps_optee
102 :end-before: .. k3_rst_include_end_build_steps_optee
Neha Malcom Francis507be122023-07-22 00:14:43 +0530103
1043. U-Boot:
105
Nishanth Menond14cec52023-08-22 11:41:04 -0500106* 3.1 R5:
Neha Malcom Francis507be122023-07-22 00:14:43 +0530107
Nishanth Menonb7ee22f2023-07-27 13:58:48 -0500108.. include:: k3.rst
109 :start-after: .. k3_rst_include_start_build_steps_spl_r5
110 :end-before: .. k3_rst_include_end_build_steps_spl_r5
Neha Malcom Francis507be122023-07-22 00:14:43 +0530111
Nishanth Menond14cec52023-08-22 11:41:04 -0500112* 3.2 A53:
Neha Malcom Francis507be122023-07-22 00:14:43 +0530113
Nishanth Menonb7ee22f2023-07-27 13:58:48 -0500114.. include:: k3.rst
115 :start-after: .. k3_rst_include_start_build_steps_uboot
116 :end-before: .. k3_rst_include_end_build_steps_uboot
117.. am65x_evm_rst_include_end_build_steps
Neha Malcom Francis507be122023-07-22 00:14:43 +0530118
119Target Images
Heinrich Schuchardtb72160b2023-10-28 11:59:32 +0200120-------------
121
Tom Rinifdf45032023-07-25 12:44:16 -0400122In order to boot we need tiboot3.bin, sysfw.itb, tispl.bin and u-boot.img.
123Each SoC variant (GP and HS) requires a different source for these files.
Neha Malcom Francis507be122023-07-22 00:14:43 +0530124
125- GP
126
Nishanth Menond14cec52023-08-22 11:41:04 -0500127 * tiboot3-am65x_sr2-gp-evm.bin, sysfw-am65x_sr2-gp-evm.itb from step 3.1
128 * tispl.bin_unsigned, u-boot.img_unsigned from step 3.2
Neha Malcom Francis507be122023-07-22 00:14:43 +0530129
130- HS
131
Nishanth Menond14cec52023-08-22 11:41:04 -0500132 * tiboot3-am65x_sr2-hs-evm.bin, sysfw-am65x_sr2-hs-evm.itb from step 3.1
133 * tispl.bin, u-boot.img from step 3.2
Neha Malcom Francis507be122023-07-22 00:14:43 +0530134
135Image formats:
136--------------
137
Nishanth Menon91834942023-07-27 13:58:51 -0500138- tiboot3.bin
Neha Malcom Francis507be122023-07-22 00:14:43 +0530139
Nishanth Menon91834942023-07-27 13:58:51 -0500140.. image:: img/no_multi_cert_tiboot3.bin.svg
Heinrich Schuchardt529aed02023-08-22 11:40:59 -0500141 :alt: tiboot3.bin image format
Neha Malcom Francis507be122023-07-22 00:14:43 +0530142
143- tispl.bin
144
Nishanth Menon91834942023-07-27 13:58:51 -0500145.. image:: img/nodm_tispl.bin.svg
Heinrich Schuchardt529aed02023-08-22 11:40:59 -0500146 :alt: tispl.bin image format
Neha Malcom Francis507be122023-07-22 00:14:43 +0530147
148- sysfw.itb
149
Nishanth Menon91834942023-07-27 13:58:51 -0500150.. image:: img/sysfw.itb.svg
Heinrich Schuchardt529aed02023-08-22 11:40:59 -0500151 :alt: sysfw.itb image format
Neha Malcom Francis507be122023-07-22 00:14:43 +0530152
153eMMC:
154-----
155ROM supports booting from eMMC from boot0 partition offset 0x0
156
157Flashing images to eMMC:
158
159The following commands can be used to download tiboot3.bin, tispl.bin,
160u-boot.img, and sysfw.itb from an SD card and write them to the eMMC boot0
161partition at respective addresses.
162
Nishanth Menonfdd7cb72023-11-02 23:40:26 -0500163.. prompt:: bash =>
Neha Malcom Francis507be122023-07-22 00:14:43 +0530164
Nishanth Menonfdd7cb72023-11-02 23:40:26 -0500165 mmc dev 0 1
166 fatload mmc 1 ${loadaddr} tiboot3.bin
167 mmc write ${loadaddr} 0x0 0x400
168 fatload mmc 1 ${loadaddr} tispl.bin
169 mmc write ${loadaddr} 0x400 0x1000
170 fatload mmc 1 ${loadaddr} u-boot.img
171 mmc write ${loadaddr} 0x1400 0x2000
172 fatload mmc 1 ${loadaddr} sysfw.itb
173 mmc write ${loadaddr} 0x3600 0x800
Neha Malcom Francis507be122023-07-22 00:14:43 +0530174
175To give the ROM access to the boot partition, the following commands must be
176used for the first time:
177
Nishanth Menonfdd7cb72023-11-02 23:40:26 -0500178.. prompt:: bash =>
Neha Malcom Francis507be122023-07-22 00:14:43 +0530179
Nishanth Menonfdd7cb72023-11-02 23:40:26 -0500180 mmc partconf 0 1 1 1
181 mmc bootbus 0 1 0 0
Neha Malcom Francis507be122023-07-22 00:14:43 +0530182
183To create a software partition for the rootfs, the following command can be
184used:
185
Nishanth Menonfdd7cb72023-11-02 23:40:26 -0500186.. prompt:: bash =>
Neha Malcom Francis507be122023-07-22 00:14:43 +0530187
Nishanth Menonfdd7cb72023-11-02 23:40:26 -0500188 gpt write mmc 0 ${partitions}
Neha Malcom Francis507be122023-07-22 00:14:43 +0530189
190eMMC layout:
191
Nishanth Menonef930a72023-07-27 13:58:58 -0500192.. image:: img/emmc_am65x_evm_boot0.svg
Heinrich Schuchardt529aed02023-08-22 11:40:59 -0500193 :alt: emmc boot partition layout
Neha Malcom Francis507be122023-07-22 00:14:43 +0530194
195Kernel image and DT are expected to be present in the /boot folder of rootfs.
196To boot kernel from eMMC, use the following commands:
197
Nishanth Menonfdd7cb72023-11-02 23:40:26 -0500198.. prompt:: bash =>
Neha Malcom Francis507be122023-07-22 00:14:43 +0530199
Nishanth Menonfdd7cb72023-11-02 23:40:26 -0500200 setenv mmcdev 0
201 setenv bootpart 0
202 boot
Neha Malcom Francis507be122023-07-22 00:14:43 +0530203
204OSPI:
205-----
206ROM supports booting from OSPI from offset 0x0.
207
208Flashing images to OSPI:
209
210Below commands can be used to download tiboot3.bin, tispl.bin, u-boot.img,
211and sysfw.itb over tftp and then flash those to OSPI at their respective
212addresses.
213
Nishanth Menonfdd7cb72023-11-02 23:40:26 -0500214.. prompt:: bash =>
Neha Malcom Francis507be122023-07-22 00:14:43 +0530215
Nishanth Menonfdd7cb72023-11-02 23:40:26 -0500216 sf probe
217 tftp ${loadaddr} tiboot3.bin
218 sf update $loadaddr 0x0 $filesize
219 tftp ${loadaddr} tispl.bin
220 sf update $loadaddr 0x80000 $filesize
221 tftp ${loadaddr} u-boot.img
222 sf update $loadaddr 0x280000 $filesize
223 tftp ${loadaddr} sysfw.itb
224 sf update $loadaddr 0x6C0000 $filesize
Neha Malcom Francis507be122023-07-22 00:14:43 +0530225
226Flash layout for OSPI:
227
Nishanth Menon2bb20e42023-07-27 13:58:57 -0500228.. image:: img/ospi_sysfw.svg
Heinrich Schuchardt529aed02023-08-22 11:40:59 -0500229 :alt: OSPI flash partition layout
Neha Malcom Francis507be122023-07-22 00:14:43 +0530230
231Kernel Image and DT are expected to be present in the /boot folder of UBIFS
232ospi.rootfs just like in SD card case. U-Boot looks for UBI volume named
233"rootfs" for rootfs.
234
235To boot kernel from OSPI, at the U-Boot prompt:
236
Nishanth Menonfdd7cb72023-11-02 23:40:26 -0500237.. prompt:: bash =>
Neha Malcom Francis507be122023-07-22 00:14:43 +0530238
Nishanth Menonfdd7cb72023-11-02 23:40:26 -0500239 setenv boot ubi
240 boot
Neha Malcom Francis507be122023-07-22 00:14:43 +0530241
242UART:
243-----
244ROM supports booting from MCU_UART0 via X-Modem protocol. The entire UART-based
245boot process up to U-Boot (proper) prompt goes through different stages and uses
246different UART peripherals as follows:
247
Nishanth Menonf0206802023-07-27 13:58:56 -0500248.. list-table:: ROM UART Boot Responsibilities
249 :widths: 16 16 16 16
250 :header-rows: 1
251
252 * - Who
253 - Loading What
254 - Hardware Module
255 - Protocol
256
257 * - Boot ROM
258 - tiboot3.bin
259 - MCU_UART0
260 - X-Modem(*)
261
262 * - R5 SPL
263 - sysfw.itb
264 - MCU_UART0
265 - Y-Modem(*)
266
267 * - R5 SPL
268 - tispl.bin
269 - MAIN_UART0
270 - Y-Modem
Neha Malcom Francis507be122023-07-22 00:14:43 +0530271
Nishanth Menonf0206802023-07-27 13:58:56 -0500272 * - A53 SPL
273 - u-boot.img
274 - MAIN_UART0
275 - Y-Modem
Neha Malcom Francis507be122023-07-22 00:14:43 +0530276
277Note that in addition to X/Y-Modem related protocol timeouts the DMSC
278watchdog timeout of 3min (typ.) needs to be observed until System Firmware
279is fully loaded (from sysfw.itb) and started.
280
281Example bash script sequence for running on a Linux host PC feeding all boot
282artifacts needed to the device:
283
Nishanth Menonfdd7cb72023-11-02 23:40:26 -0500284.. prompt:: bash $
Neha Malcom Francis507be122023-07-22 00:14:43 +0530285
Nishanth Menonfdd7cb72023-11-02 23:40:26 -0500286 MCU_DEV=/dev/ttyUSB1
287 MAIN_DEV=/dev/ttyUSB0
Neha Malcom Francis507be122023-07-22 00:14:43 +0530288
Nishanth Menonfdd7cb72023-11-02 23:40:26 -0500289 stty -F $MCU_DEV 115200 cs8 -cstopb -parenb
290 stty -F $MAIN_DEV 115200 cs8 -cstopb -parenb
Neha Malcom Francis507be122023-07-22 00:14:43 +0530291
Nishanth Menonfdd7cb72023-11-02 23:40:26 -0500292 sb --xmodem tiboot3.bin > $MCU_DEV < $MCU_DEV
293 sb --ymodem sysfw.itb > $MCU_DEV < $MCU_DEV
294 sb --ymodem tispl.bin > $MAIN_DEV < $MAIN_DEV
295 sleep 1
296 sb --xmodem u-boot.img > $MAIN_DEV < $MAIN_DEV
Jason Kacinesb0fdee92023-08-03 01:29:22 -0500297
298Debugging U-Boot
299----------------
300
301See :ref:`Common Debugging environment - OpenOCD<k3_rst_refer_openocd>`: for
302detailed setup information.
303
304.. warning::
305
306 **OpenOCD support since**: v0.12.0
307
308 If the default package version of OpenOCD in your development
309 environment's distribution needs to be updated, it might be necessary to
310 build OpenOCD from the source.
311
312.. include:: k3.rst
313 :start-after: .. k3_rst_include_start_openocd_connect_XDS110
314 :end-before: .. k3_rst_include_end_openocd_connect_XDS110
315
316To start OpenOCD and connect to the board
317
Nishanth Menonfdd7cb72023-11-02 23:40:26 -0500318.. prompt:: bash $
Jason Kacinesb0fdee92023-08-03 01:29:22 -0500319
320 openocd -f board/ti_am654evm.cfg