blob: 5167925c9c6071dc2b96585a6cc8b90e847c7d3e [file] [log] [blame]
Bryan Brattlof16a30b32022-12-19 14:29:50 -06001.. SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
2.. sectionauthor:: Bryan Brattlof <bb@ti.com>
3
4K3 Generation
5=============
6
7Summary
8-------
9
10Texas Instrument's K3 family of SoCs utilize a heterogeneous multicore
11and highly integrated device architecture targeted to maximize
12performance and power efficiency for a wide range of industrial,
13automotive and other broad market segments.
14
15Typically the processing cores and the peripherals for these devices are
16partitioned into three functional domains to provide ultra-low power
17modes as well as accommodating application and industrial safety systems
18on the same SoC. These functional domains are typically called the:
19
20* Wakeup (WKUP) domain
21* Micro-controller (MCU) domain
22* Main domain
23
24For a more detailed view of what peripherals are attached to each
25domain, consult the device specific documentation.
26
27K3 Based SoCs
28-------------
29
30.. toctree::
31 :maxdepth: 1
32
Nishanth Menone57f6392023-08-25 13:03:05 -050033 am62x_beagleplay
Bryan Brattlof16a30b32022-12-19 14:29:50 -060034 am62x_sk
Marcel Ziswiler7d1a1062023-08-04 12:08:08 +020035 ../toradex/verdin-am62
Roger Quadros4bf49ba2023-08-05 11:14:39 +030036 am64x_evm
Neha Malcom Francis1ee652a2023-07-22 00:14:43 +053037 am65x_evm
Nishanth Menon5c86c572023-07-27 13:59:01 -050038 j7200_evm
39 j721e_evm
Manorit Chawdhry2b313262023-10-06 10:16:00 +053040 j721s2_evm
Bryan Brattlof16a30b32022-12-19 14:29:50 -060041
42Boot Flow Overview
43------------------
44
45For all K3 SoCs the first core started will be inside the Security
46Management Subsystem (SMS) which will secure the device and start a core
47in the wakeup domain to run the ROM code. ROM will then initialize the
48boot media needed to load the binaries packaged inside `tiboot3.bin`,
49including a 32bit U-Boot SPL, (called the wakup SPL) that ROM will jump
50to after it has finished loading everything into internal SRAM.
51
Nishanth Menon6e8fa062023-07-27 13:59:02 -050052.. image:: img/boot_flow_01.svg
Heinrich Schuchardt7f629282023-08-22 11:40:55 -050053 :alt: Boot flow up to wakeup domain SPL
Bryan Brattlof16a30b32022-12-19 14:29:50 -060054
55The wakeup SPL, running on a wakeup domain core, will initialize DDR and
56any peripherals needed load the larger binaries inside the `tispl.bin`
57into DDR. Once loaded the wakeup SPL will start one of the 'big'
58application cores inside the main domain to initialize the main domain,
Neha Malcom Francis1ee652a2023-07-22 00:14:43 +053059starting with Trusted Firmware-A (TF-A), before moving on to start
60OP-TEE and the main domain's U-Boot SPL.
Bryan Brattlof16a30b32022-12-19 14:29:50 -060061
Nishanth Menon6e8fa062023-07-27 13:59:02 -050062.. image:: img/boot_flow_02.svg
Heinrich Schuchardt7f629282023-08-22 11:40:55 -050063 :alt: Boot flow up to main domain SPL
Bryan Brattlof16a30b32022-12-19 14:29:50 -060064
65The main domain's SPL, running on a 64bit application core, has
66virtually unlimited space (billions of bytes now that DDR is working) to
67initialize even more peripherals needed to load in the `u-boot.img`
68which loads more firmware into the micro-controller & wakeup domains and
69finally prepare the main domain to run Linux.
70
Nishanth Menon6e8fa062023-07-27 13:59:02 -050071.. image:: img/boot_flow_03.svg
Heinrich Schuchardt7f629282023-08-22 11:40:55 -050072 :alt: Complete boot flow up to Linux
Bryan Brattlof16a30b32022-12-19 14:29:50 -060073
74This is the typical boot flow for all K3 based SoCs, however this flow
75offers quite a lot in the terms of flexibility, especially on High
76Security (HS) SoCs.
77
78Boot Flow Variations
79^^^^^^^^^^^^^^^^^^^^
80
81All K3 SoCs will generally use the above boot flow with two main
82differences depending on the capabilities of the boot ROM and the number
83of cores inside the device. These differences split the bootflow into
84essentially 4 unique but very similar flows:
85
86* Split binary with a combined firmware: (eg: AM65)
87* Combined binary with a combined firmware: (eg: AM64)
88* Split binary with a split firmware: (eg: J721E)
89* Combined binary with a split firmware: (eg: AM62)
90
91For devices that utilize the split binary approach, ROM is not capable
92of loading the firmware into the SoC requiring the wakeup domain's
93U-Boot SPL to load the firmware.
94
95Devices with a split firmware will have two firmwares loaded into the
96device at different times during the bootup process. TI's Foundational
97Security (TIFS), needed to operate the Security Management Subsystem,
98will either be loaded by ROM or the WKUP U-Boot SPL, then once the
99wakeup U-Boot SPL has completed, the second Device Management (DM)
100firmware can be loaded on the now free core in the wakeup domain.
101
102For more information on the bootup process of your SoC, consult the
103device specific boot flow documentation.
104
105Software Sources
106----------------
107
108All scripts and code needed to build the `tiboot3.bin`, `tispl.bin` and
109`u-boot.img` for all K3 SoCs can be located at the following places
110online
111
Nishanth Menoncce3e7a2023-07-27 13:58:44 -0500112.. k3_rst_include_start_boot_sources
113
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600114* **Das U-Boot**
115
116 | **source:** https://source.denx.de/u-boot/u-boot.git
117 | **branch:** master
118
Neha Malcom Francis1ee652a2023-07-22 00:14:43 +0530119* **Trusted Firmware-A (TF-A)**
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600120
Neha Malcom Francis1ee652a2023-07-22 00:14:43 +0530121 | **source:** https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600122 | **branch:** master
123
Neha Malcom Francis1ee652a2023-07-22 00:14:43 +0530124* **Open Portable Trusted Execution Environment (OP-TEE)**
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600125
126 | **source:** https://github.com/OP-TEE/optee_os.git
127 | **branch:** master
128
Nishanth Menon4e4f3442023-08-22 11:41:07 -0500129* **TI Firmware (TIFS, DM, SYSFW)**
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600130
131 | **source:** https://git.ti.com/git/processor-firmware/ti-linux-firmware.git
132 | **branch:** ti-linux-firmware
133
Nishanth Menon4e4f3442023-08-22 11:41:07 -0500134.. note::
135
136 The TI Firmware required for functionality of the system can be
137 one of the following combination (see platform specific boot diagram for
138 further information as to which component runs on which processor):
139
140 * **TIFS** - TI Foundational Security Firmware - Consists of purely firmware
141 meant to run on the security enclave.
142 * **DM** - Device Management firmware also called TI System Control Interface
143 server (TISCI Server) - This component purely plays the role of managing
144 device resources such as power, clock, interrupts, dma etc. This firmware
145 runs on a dedicated or multi-use microcontroller outside the security
146 enclave.
147
148 OR
149
150 * **SYSFW** - System firmware - consists of both TIFS and DM both running on
151 the security enclave.
152
Nishanth Menoncce3e7a2023-07-27 13:58:44 -0500153.. k3_rst_include_end_boot_sources
154
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600155Build Procedure
156---------------
157
158Depending on the specifics of your device, you will need three or more
159binaries to boot your SoC.
160
161* `tiboot3.bin` (bootloader for the wakeup domain)
162* `tispl.bin` (bootloader for the main domain)
163* `u-boot.img`
164
165During the bootup process, both the 32bit wakeup domain and the 64bit
166main domains will be involved. This means everything inside the
167`tiboot3.bin` running in the wakeup domain will need to be compiled for
16832bit cores and most binaries in the `tispl.bin` will need to be
169compiled for 64bit main domain CPU cores.
170
171All of that to say you will need both a 32bit and 64bit cross compiler
172(assuming you're using an x86 desktop)
173
Nishanth Menonc727b812023-07-27 13:58:48 -0500174.. k3_rst_include_start_common_env_vars_desc
175.. list-table:: Generic environment variables
176 :widths: 25 25 50
177 :header-rows: 1
178
179 * - S/w Component
180 - Env Variable
181 - Description
182 * - All Software
183 - CC32
184 - Cross compiler for ARMv7 (ARM 32bit), typically arm-linux-gnueabihf-
185 * - All Software
186 - CC64
187 - Cross compiler for ARMv8 (ARM 64bit), typically aarch64-linux-gnu-
188 * - All Software
189 - LNX_FW_PATH
190 - Path to TI Linux firmware repository
191 * - All Software
192 - TFA_PATH
193 - Path to source of Trusted Firmware-A
194 * - All Software
195 - OPTEE_PATH
196 - Path to source of OP-TEE
197.. k3_rst_include_end_common_env_vars_desc
198
199.. k3_rst_include_start_common_env_vars_defn
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500200.. prompt:: bash $
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600201
Nishanth Menonfebc7f12023-08-24 10:40:36 -0500202 export CC32=arm-linux-gnueabihf-
203 export CC64=aarch64-linux-gnu-
204 export LNX_FW_PATH=path/to/ti-linux-firmware
205 export TFA_PATH=path/to/trusted-firmware-a
206 export OPTEE_PATH=path/to/optee_os
Nishanth Menonc727b812023-07-27 13:58:48 -0500207.. k3_rst_include_end_common_env_vars_defn
208
209We will also need some common environment variables set up for the various
210other build sources. we shall use the following, in the build descriptions below:
211
212.. k3_rst_include_start_board_env_vars_desc
213.. list-table:: Board specific environment variables
214 :widths: 25 25 50
215 :header-rows: 1
216
217 * - S/w Component
218 - Env Variable
219 - Description
220 * - U-Boot
221 - UBOOT_CFG_CORTEXR
222 - Defconfig for Cortex-R (Boot processor).
223 * - U-Boot
224 - UBOOT_CFG_CORTEXA
225 - Defconfig for Cortex-A (MPU processor).
226 * - Trusted Firmware-A
227 - TFA_BOARD
228 - Platform name used for building TF-A for Cortex-A Processor.
229 * - Trusted Firmware-A
230 - TFA_EXTRA_ARGS
231 - Any extra arguments used for building TF-A.
232 * - OP-TEE
233 - OPTEE_PLATFORM
234 - Platform name used for building OP-TEE for Cortex-A Processor.
235 * - OP-TEE
236 - OPTEE_EXTRA_ARGS
237 - Any extra arguments used for building OP-TEE.
238.. k3_rst_include_end_board_env_vars_desc
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600239
240Building tiboot3.bin
Heinrich Schuchardtb214e882023-10-28 11:59:32 +0200241^^^^^^^^^^^^^^^^^^^^
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600242
2431. To generate the U-Boot SPL for the wakeup domain, use the following
244 commands, substituting :code:`{SOC}` for the name of your device (eg:
Neha Malcom Francis1ee652a2023-07-22 00:14:43 +0530245 am62x) to package the various firmware and the wakeup UBoot SPL into
246 the final `tiboot3.bin` binary. (or the `sysfw.itb` if your device
247 uses the split binary flow)
248
Nishanth Menonc727b812023-07-27 13:58:48 -0500249.. k3_rst_include_start_build_steps_spl_r5
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500250.. prompt:: bash $
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600251
Nishanth Menonfebc7f12023-08-24 10:40:36 -0500252 # inside u-boot source
253 make $UBOOT_CFG_CORTEXR
254 make CROSS_COMPILE=$CC32 BINMAN_INDIRS=$LNX_FW_PATH
Nishanth Menonc727b812023-07-27 13:58:48 -0500255.. k3_rst_include_end_build_steps_spl_r5
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600256
257At this point you should have all the needed binaries to boot the wakeup
258domain of your K3 SoC.
259
260**Combined Binary Boot Flow** (eg: am62x, am64x, ... )
261
Neha Malcom Francis1ee652a2023-07-22 00:14:43 +0530262 `tiboot3-{SOC}-{gp/hs-fs/hs}.bin`
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600263
264**Split Binary Boot Flow** (eg: j721e, am65x)
265
Neha Malcom Francis1ee652a2023-07-22 00:14:43 +0530266 | `tiboot3-{SOC}-{gp/hs-fs/hs}.bin`
267 | `sysfw-{SOC}-{gp/hs-fs/hs}-evm.itb`
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600268
269.. note ::
270
271 It's important to rename the generated `tiboot3.bin` and `sysfw.itb`
272 to match exactly `tiboot3.bin` and `sysfw.itb` as ROM and the wakeup
273 UBoot SPL will only look for and load the files with these names.
274
275Building tispl.bin
Heinrich Schuchardtb214e882023-10-28 11:59:32 +0200276^^^^^^^^^^^^^^^^^^
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600277
278The `tispl.bin` is a standard fitImage combining the firmware need for
279the main domain to function properly as well as Device Management (DM)
280firmware if your device using a split firmware.
281
Neha Malcom Francis1ee652a2023-07-22 00:14:43 +05302822. We will first need TF-A, as it's the first thing to run on the 'big'
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600283 application cores on the main domain.
284
Nishanth Menonc727b812023-07-27 13:58:48 -0500285.. k3_rst_include_start_build_steps_tfa
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500286.. prompt:: bash $
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600287
Nishanth Menonfebc7f12023-08-24 10:40:36 -0500288 # inside trusted-firmware-a source
289 make CROSS_COMPILE=$CC64 ARCH=aarch64 PLAT=k3 SPD=opteed $TFA_EXTRA_ARGS \
290 TARGET_BOARD=$TFA_BOARD
Nishanth Menonc727b812023-07-27 13:58:48 -0500291.. k3_rst_include_end_build_steps_tfa
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600292
Neha Malcom Francis1ee652a2023-07-22 00:14:43 +0530293Typically all `j7*` devices will use `TARGET_BOARD=generic` or `TARGET_BOARD
Nishanth Menonc727b812023-07-27 13:58:48 -0500294=j784s4` (if it is a J784S4 device), while typical Sitara (`am6*`) devices
Neha Malcom Francis1ee652a2023-07-22 00:14:43 +0530295use the `lite` option.
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600296
Neha Malcom Francis1ee652a2023-07-22 00:14:43 +05302973. The Open Portable Trusted Execution Environment (OP-TEE) is designed
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600298 to run as a companion to a non-secure Linux kernel for Cortex-A cores
299 using the TrustZone technology built into the core.
300
Nishanth Menonc727b812023-07-27 13:58:48 -0500301.. k3_rst_include_start_build_steps_optee
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500302.. prompt:: bash $
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600303
Nishanth Menonfebc7f12023-08-24 10:40:36 -0500304 # inside optee_os source
305 make CROSS_COMPILE=$CC32 CROSS_COMPILE64=$CC64 CFG_ARM64_core=y $OPTEE_EXTRA_ARGS \
306 PLATFORM=$OPTEE_PLATFORM
Nishanth Menonc727b812023-07-27 13:58:48 -0500307.. k3_rst_include_end_build_steps_optee
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600308
Neha Malcom Francis1ee652a2023-07-22 00:14:43 +05303094. Finally, after TF-A has initialized the main domain and OP-TEE has
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600310 finished, we can jump back into U-Boot again, this time running on a
311 64bit core in the main domain.
312
Nishanth Menonc727b812023-07-27 13:58:48 -0500313.. k3_rst_include_start_build_steps_uboot
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500314.. prompt:: bash $
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600315
Nishanth Menonfebc7f12023-08-24 10:40:36 -0500316 # inside u-boot source
317 make $UBOOT_CFG_CORTEXA
318 make CROSS_COMPILE=$CC64 BINMAN_INDIRS=$LNX_FW_PATH \
Nishanth Menonc727b812023-07-27 13:58:48 -0500319 BL31=$TFA_PATH/build/k3/$TFA_BOARD/release/bl31.bin \
320 TEE=$OPTEE_PATH/out/arm-plat-k3/core/tee-raw.bin
321.. k3_rst_include_end_build_steps_uboot
Bryan Brattlof16a30b32022-12-19 14:29:50 -0600322
323At this point you should have every binary needed initialize both the
324wakeup and main domain and to boot to the U-Boot prompt
325
326**Main Domain Bootloader**
327
Neha Malcom Francis1ee652a2023-07-22 00:14:43 +0530328 | `tispl.bin` for HS devices or `tispl.bin_unsigned` for GP devices
329 | `u-boot.img` for HS devices or `u-boot.img_unsigned` for GP devices
Manorit Chawdhrya5e86782023-07-14 11:22:29 +0530330
331Fit Signature Signing
332---------------------
333
334K3 Platforms have fit signature signing enabled by default on their primary
335platforms. Here we'll take an example for creating fit image for J721e platform
336and the same can be extended to other platforms
337
3381. Describing FIT source
339
340 .. code-block:: bash
341
342 /dts-v1/;
343
344 / {
345 description = "Kernel fitImage for j721e-hs-evm";
346 #address-cells = <1>;
347
348 images {
349 kernel-1 {
350 description = "Linux kernel";
351 data = /incbin/("Image");
352 type = "kernel";
353 arch = "arm64";
354 os = "linux";
355 compression = "none";
356 load = <0x80080000>;
357 entry = <0x80080000>;
358 hash-1 {
359 algo = "sha512";
360 };
361
362 };
363 fdt-ti_k3-j721e-common-proc-board.dtb {
364 description = "Flattened Device Tree blob";
365 data = /incbin/("k3-j721e-common-proc-board.dtb");
366 type = "flat_dt";
367 arch = "arm64";
368 compression = "none";
369 load = <0x83000000>;
370 hash-1 {
371 algo = "sha512";
372 };
373
374 };
375 };
376
377 configurations {
378 default = "conf-ti_k3-j721e-common-proc-board.dtb";
379 conf-ti_k3-j721e-common-proc-board.dtb {
380 description = "Linux kernel, FDT blob";
381 fdt = "fdt-ti_k3-j721e-common-proc-board.dtb";
382 kernel = "kernel-1";
383 signature-1 {
384 algo = "sha512,rsa4096";
385 key-name-hint = "custMpk";
386 sign-images = "kernel", "fdt";
387 };
388 };
389 };
390 };
391
392 You would require to change the '/incbin/' lines to point to the respective
393 files in your local machine and the key-name-hint also needs to be changed
394 if you are using some other key other than the TI dummy key that we are
395 using for this example.
396
3972. Compile U-boot for the respective board
398
Nishanth Menonc727b812023-07-27 13:58:48 -0500399.. include:: k3.rst
400 :start-after: .. k3_rst_include_start_build_steps_uboot
401 :end-before: .. k3_rst_include_end_build_steps_uboot
Manorit Chawdhrya5e86782023-07-14 11:22:29 +0530402
Nishanth Menonc727b812023-07-27 13:58:48 -0500403.. note::
Manorit Chawdhrya5e86782023-07-14 11:22:29 +0530404
405 The changes only affect a72 binaries so the example just builds that
406
4073. Sign the fit image and embed the dtb in uboot
408
409 Now once the build is done, you'll have a dtb for your board that you'll
410 be passing to mkimage for signing the fitImage and embedding the key in
411 the u-boot dtb.
412
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500413 .. prompt:: bash $
Manorit Chawdhrya5e86782023-07-14 11:22:29 +0530414
415 mkimage -r -f fitImage.its -k $UBOOT_PATH/board/ti/keys -K
416 $UBOOT_PATH/build/a72/dts/dt.dtb
417
418 For signing a secondary platform, pass the -K parameter to that DTB
419
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500420 .. prompt:: bash $
Manorit Chawdhrya5e86782023-07-14 11:22:29 +0530421
422 mkimage -f fitImage.its -k $UBOOT_PATH/board/ti/keys -K
423 $UBOOT_PATH/build/a72/arch/arm/dts/k3-j721e-sk.dtb
424
425 .. note::
426
427 If changing `CONFIG_DEFAULT_DEVICE_TREE` to the secondary platform,
428 binman changes would also be required so that correct dtb gets packaged.
429
430 .. code-block:: bash
431
432 diff --git a/arch/arm/dts/k3-j721e-binman.dtsi b/arch/arm/dts/k3-j721e-binman.dtsi
433 index 673be646b1e3..752fa805fe8d 100644
434 --- a/arch/arm/dts/k3-j721e-binman.dtsi
435 +++ b/arch/arm/dts/k3-j721e-binman.dtsi
436 @@ -299,8 +299,8 @@
437 #define SPL_J721E_SK_DTB "spl/dts/k3-j721e-sk.dtb"
438
439 #define UBOOT_NODTB "u-boot-nodtb.bin"
440 -#define J721E_EVM_DTB "u-boot.dtb"
441 -#define J721E_SK_DTB "arch/arm/dts/k3-j721e-sk.dtb"
442 +#define J721E_EVM_DTB "arch/arm/dts/k3-j721e-common-proc-board.dtb"
443 +#define J721E_SK_DTB "u-boot.dtb"
444
4455. Rebuilt u-boot
446
447 This is required so that the modified dtb gets updated in u-boot.img
448
Nishanth Menonc727b812023-07-27 13:58:48 -0500449.. include:: k3.rst
450 :start-after: .. k3_rst_include_start_build_steps_uboot
451 :end-before: .. k3_rst_include_end_build_steps_uboot
Manorit Chawdhrya5e86782023-07-14 11:22:29 +0530452
4536. (Optional) Enabled FIT_SIGNATURE_ENFORCED
454
455 By default u-boot will boot up the fit image without any authentication as
456 such if the public key is not embedded properly, to check if the public key
457 nodes are proper you can enable FIT_SIGNATURE_ENFORCED that would not rely
458 on the dtb for anything else then the signature node for checking the fit
459 image, rest other things will be enforced such as the property of
460 required-keys. This is not an extensive check so do manual checks also
461
462 This is by default enabled for devices with TI_SECURE_DEVICE enabled.
463
464.. note::
465
466 The devices now also have distroboot enabled so if the fit image doesn't
467 work then the fallback to normal distroboot will be there on hs devices,
468 this will need to be explicitly disabled by changing the boot_targets.
469
470Saving environment
471------------------
472
473SAVEENV is disabled by default and for the new flow uses Uenv.txt as the default
474way for saving the environments. This has been done as Uenv.txt is more granular
475then the saveenv command and can be used across various bootmodes too.
476
477**Writing to MMC/EMMC**
478
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500479.. prompt:: bash =>
Manorit Chawdhrya5e86782023-07-14 11:22:29 +0530480
Nishanth Menonfebc7f12023-08-24 10:40:36 -0500481 env export -t $loadaddr <list of variables>
482 fatwrite mmc ${mmcdev} ${loadaddr} ${bootenvfile} ${filesize}
Manorit Chawdhrya5e86782023-07-14 11:22:29 +0530483
484**Reading from MMC/EMMC**
485
486By default run envboot will read it from the MMC/EMMC partition ( based on
487mmcdev) and set the environments.
488
489If manually needs to be done then the environment can be read from the
490filesystem and then imported
491
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500492.. prompt:: bash =>
Manorit Chawdhrya5e86782023-07-14 11:22:29 +0530493
Nishanth Menonfebc7f12023-08-24 10:40:36 -0500494 fatload mmc ${mmcdev} ${loadaddr} ${bootenvfile}
495 env import -t ${loadaddr} ${filesize}
Jason Kacineseffe5082023-08-03 01:29:22 -0500496
497.. _k3_rst_refer_openocd:
498
499Common Debugging environment - OpenOCD
500--------------------------------------
501
502This section will show you how to connect a board to `OpenOCD
503<https://openocd.org/>`_ and load the SPL symbols for debugging with
504a K3 generation device. To follow this guide, you must build custom
505u-boot binaries, start your board from a boot media such as an SD
506card, and use an OpenOCD environment. This section uses generic
507examples, though you can apply these instructions to any supported K3
508generation device.
509
510The overall structure of this setup is in the following figure.
511
512.. image:: img/openocd-overview.svg
Nishanth Menonc6df5282023-08-22 11:40:56 -0500513 :alt: Overview of OpenOCD setup.
Jason Kacineseffe5082023-08-03 01:29:22 -0500514
515.. note::
516
517 If you find these instructions useful, please consider `donating
518 <https://openocd.org/pages/donations.html>`_ to OpenOCD.
519
520Step 1: Download and install OpenOCD
521^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
522
523To get started, it is more convenient if the distribution you
524use supports OpenOCD by default. Follow the instructions in the
525`getting OpenOCD <https://openocd.org/pages/getting-openocd.html>`_
526documentation to pick the installation steps appropriate to your
527environment. Some references to OpenOCD documentation:
528
529* `OpenOCD User Guide <https://openocd.org/doc/html/index.html>`_
530* `OpenOCD Developer's Guide <https://openocd.org/doc/doxygen/html/index.html>`_
531
532Refer to the release notes corresponding to the `OpenOCD version
533<https://github.com/openocd-org/openocd/releases>`_ to ensure
534
535* Processor support: In general, processor support shouldn't present
536 any difficulties since OpenOCD provides solid support for both ARMv8
537 and ARMv7.
538* SoC support: When working with System-on-a-Chip (SoC), the support
539 usually comes as a TCL config file. It is vital to ensure the correct
540 version of OpenOCD or to use the TCL files from the latest release or
541 the one mentioned.
542* Board or the JTAG adapter support: In most cases, board support is
543 a relatively easy problem if the board has a JTAG pin header. All
544 you need to do is ensure that the adapter you select is compatible
545 with OpenOCD. Some boards come with an onboard JTAG adapter that
546 requires a USB cable to be plugged into the board, in which case, it
547 is vital to ensure that the JTAG adapter is supported. Fortunately,
548 almost all TI K3 SK/EVMs come with TI's XDS110, which has out of the
549 box support by OpenOCD. The board-specific documentation will
550 cover the details and any adapter/dongle recommendations.
551
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500552.. prompt:: bash $
Jason Kacineseffe5082023-08-03 01:29:22 -0500553
554 openocd -v
555
556.. note::
557
558 OpenOCD version 0.12.0 is usually required to connect to most K3
559 devices. If your device is only supported by a newer version than the
560 one provided by your distribution, you may need to build it from the source.
561
562Building OpenOCD from source
563""""""""""""""""""""""""""""
564
565The dependency package installation instructions below are for Debian
566systems, but equivalent instructions should exist for systems with
567other package managers. Please refer to the `OpenOCD Documentation
568<https://openocd.org/>`_ for more recent installation steps.
569
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500570.. prompt:: bash $
Jason Kacineseffe5082023-08-03 01:29:22 -0500571
Nishanth Menonfebc7f12023-08-24 10:40:36 -0500572 # Check the packages to be installed: needs deb-src in sources.list
573 sudo apt build-dep openocd
574 # The following list is NOT complete - please check the latest
575 sudo apt-get install libtool pkg-config texinfo libusb-dev \
Jason Kacineseffe5082023-08-03 01:29:22 -0500576 libusb-1.0.0-dev libftdi-dev libhidapi-dev autoconf automake
Nishanth Menonfebc7f12023-08-24 10:40:36 -0500577 git clone https://github.com/openocd-org/openocd.git openocd
578 cd openocd
579 git submodule init
580 git submodule update
581 ./bootstrap
582 ./configure --prefix=/usr/local/
583 make -j`nproc`
584 sudo make install
Jason Kacineseffe5082023-08-03 01:29:22 -0500585
586.. note::
587
588 The example above uses the GitHub mirror site. See
589 `git repo information <https://openocd.org/doc/html/Developers.html#OpenOCD-Git-Repository>`_
590 information to pick the official git repo.
591 If a specific version is desired, select the version using `git checkout tag`.
592
593Installing OpenOCD udev rules
594"""""""""""""""""""""""""""""
595
596The step is not necessary if the distribution supports the OpenOCD, but
597if building from a source, ensure that the udev rules are installed
598correctly to ensure a sane system.
599
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500600.. prompt:: bash $
Jason Kacineseffe5082023-08-03 01:29:22 -0500601
602 # Go to the OpenOCD source directory
Nishanth Menonfebc7f12023-08-24 10:40:36 -0500603 cd openocd
604 Copy the udev rules to the correct system location
605 sudo cp ./contrib/60-openocd.rules \
Jonathan Humphreys975103f2023-08-22 13:49:03 -0500606 ./src/jtag/drivers/libjaylink/contrib/99-libjaylink.rules \
Jason Kacineseffe5082023-08-03 01:29:22 -0500607 /etc/udev/rules.d/
608 # Get Udev to load the new rules up
Nishanth Menonfebc7f12023-08-24 10:40:36 -0500609 sudo udevadm control --reload-rules
Jason Kacineseffe5082023-08-03 01:29:22 -0500610 # Use the new rules on existing connected devices
Nishanth Menonfebc7f12023-08-24 10:40:36 -0500611 sudo udevadm trigger
Jason Kacineseffe5082023-08-03 01:29:22 -0500612
613Step 2: Setup GDB
614^^^^^^^^^^^^^^^^^
615
616Most systems come with gdb-multiarch package.
617
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500618.. prompt:: bash $
Jason Kacineseffe5082023-08-03 01:29:22 -0500619
620 # Install gdb-multiarch package
Nishanth Menonfebc7f12023-08-24 10:40:36 -0500621 sudo apt-get install gdb-multiarch
Jason Kacineseffe5082023-08-03 01:29:22 -0500622
623Though using GDB natively is normal, developers with interest in using IDE
624may find a few of these interesting:
625
626* `gdb-dashboard <https://github.com/cyrus-and/gdb-dashboard>`_
627* `gef <https://github.com/hugsy/gef>`_
628* `peda <https://github.com/longld/peda>`_
629* `pwndbg <https://github.com/pwndbg/pwndbg>`_
630* `voltron <https://github.com/snare/voltron>`_
631* `ddd <https://www.gnu.org/software/ddd/>`_
632* `vscode <https://www.justinmklam.com/posts/2017/10/vscode-debugger-setup/>`_
633* `vim conque-gdb <https://github.com/vim-scripts/Conque-GDB>`_
634* `emacs realgud <https://github.com/realgud/realgud/wiki/gdb-notes>`_
635* `Lauterbach IDE <https://www2.lauterbach.com/pdf/backend_gdb.pdf>`_
636
637.. warning::
638 LLDB support for OpenOCD is still a work in progress as of this writing.
639 Using GDB is probably the safest option at this point in time.
640
641Step 3: Connect board to PC
642^^^^^^^^^^^^^^^^^^^^^^^^^^^
643There are few patterns of boards in the ecosystem
644
645.. k3_rst_include_start_openocd_connect_XDS110
646
647**Integrated JTAG adapter/dongle**: The board has a micro-USB connector labelled
648XDS110 USB or JTAG. Connect a USB cable to the board to the mentioned port.
649
650.. note::
651
652 There are multiple USB ports on a typical board, So, ensure you have read
653 the user guide for the board and confirmed the silk screen label to ensure
654 connecting to the correct port.
655
656.. k3_rst_include_end_openocd_connect_XDS110
657
658.. k3_rst_include_start_openocd_connect_cti20
659
660**cTI20 connector**: The TI's `cTI20
661<https://software-dl.ti.com/ccs/esd/documents/xdsdebugprobes/emu_JTAG_connectors.html#cti-20-pin-header-information>`_ connector
662is probably the most prevelant on TI platforms. Though many
663TI boards have an onboard XDS110, cTI20 connector is usually
664provided as an alternate scheme to connect alternatives such
665as `Lauterbach <https://www.lauterbach.com/>`_ or `XDS560
666<https://www.ti.com/tool/TMDSEMU560V2STM-U>`_.
667
668To debug on these boards, the following combinations is suggested:
669
670* `TUMPA <https://www.diygadget.com/JTAG-cables-and-microcontroller-programmers/tiao-usb-multi-protocol-adapter-JTAG-spi-i2c-serial>`_
671 or `equivalent dongles supported by OpenOCD. <https://openocd.org/doc/html/Debug-Adapter-Hardware.html#Debug-Adapter-Hardware>`_
672* Cable such as `Tag-connect ribbon cable <https://www.tag-connect.com/product/20-pin-cortex-ribbon-cable-4-length-with-50-mil-connectors>`_
673* Adapter to convert cTI20 to ARM20 such as those from
674 `Segger <https://www.segger.com/products/debug-probes/j-link/accessories/adapters/ti-cti-20-adapter/>`_
675 or `Lauterbach LA-3780 <https://www.lauterbach.com/ad3780.html>`_
676 Or optionally, if you have manufacturing capability then you could try
677 `BeagleBone JTAG Adapter <https://github.com/mmorawiec/BeagleBone-Black-JTAG-Adapters>`_
678
679.. warning::
680 XDS560 and Lauterbach are proprietary solutions and is not supported by
681 OpenOCD.
682 When purchasing an off the shelf adapter/dongle, you do want to be careful
683 about the signalling though. Please
684 `read for additional info <https://software-dl.ti.com/ccs/esd/xdsdebugprobes/emu_JTAG_connectors.html>`_.
685
686.. k3_rst_include_end_openocd_connect_cti20
687
688.. k3_rst_include_start_openocd_connect_tag_connect
689
690**Tag-Connect**: `Tag-Connect <https://www.tag-connect.com/>`_
691pads on the boards which require special cable. Please check the documentation
692to `identify <https://www.tag-connect.com/info/legs-or-no-legs>`_ if "legged"
693or "no-leg" version of the cable is appropriate for the board.
694
695To debug on these boards, you will need:
696
697* `TUMPA <https://www.diygadget.com/JTAG-cables-and-microcontroller-programmers/tiao-usb-multi-protocol-adapter-JTAG-spi-i2c-serial>`_
698 or `equivalent dongles supported by OpenOCD <https://openocd.org/doc/html/Debug-Adapter-Hardware.html#Debug-Adapter-Hardware>`_.
699* Tag-Connect cable appropriate to the board such as
700 `TC2050-IDC-NL <https://www.tag-connect.com/product/TC2050-IDC-NL-10-pin-no-legs-cable-with-ribbon-connector>`_
701* In case of no-leg, version, a
702 `retaining clip <https://www.tag-connect.com/product/tc2050-clip-3pack-retaining-clip>`_
703* Tag-Connect to ARM20
704 `adapter <https://www.tag-connect.com/product/tc2050-arm2010-arm-20-pin-to-tc2050-adapter>`_
705
706.. note::
707 You can optionally use a 3d printed solution such as
708 `Protective cap <https://www.thingiverse.com/thing:3025584>`_ or
709 `clip <https://www.thingiverse.com/thing:3035278>`_ to replace
710 the retaining clip.
711
712.. warning::
713 With the Tag-Connect to ARM20 adapter, Please solder the "Trst" signal for
714 connection to work.
715
716.. k3_rst_include_end_openocd_connect_tag_connect
717
718Debugging with OpenOCD
719^^^^^^^^^^^^^^^^^^^^^^
720
721Debugging U-Boot is different from debugging regular user space
722applications. The bootloader initialization process involves many boot
723media and hardware configuration operations. For K3 devices, there
724are also interactions with security firmware. While reloading the
725"elf" file works through GDB, developers must be mindful of cascading
726initialization's potential consequences.
727
728Consider the following code change:
729
730.. code-block:: diff
731
732 --- a/file.c 2023-07-29 10:55:29.647928811 -0500
733 +++ b/file.c 2023-07-29 10:55:46.091856816 -0500
734 @@ -1,3 +1,3 @@
735 val = readl(reg);
736 -val |= 0x2;
737 +val |= 0x1;
738 writel(val, reg);
739
740Re-running the elf file with the above change will result in the
741register setting 0x3 instead of the intended 0x1. There are other
742hardware blocks which may not behave very well with a re-initialization
743without proper shutdown.
744
745To help narrow the debug down, it is usually simpler to use the
746standard boot media to get to the bootloader and debug only in the area
747of interest.
748
749In general, to debug u-boot spl/u-boot with OpenOCD there are three steps:
750
751* Modify the code adding a loop to allow the debugger to attach
752 near the point of interest. Boot up normally to stop at the loop.
753* Connect with OpenOCD and step out of the loop.
754* Step through the code to find the root of issue.
755
756Typical debugging involves a few iterations of the above sequence.
757Though most bootloader developers like to use printf to debug,
758debug with JTAG tends to be most efficient since it is possible to
759investigate the code flow and inspect hardware registers without
760repeated iterations.
761
762Code modification
763"""""""""""""""""
764
765* **start.S**: Adding an infinite while loop at the very entry of
766 U-Boot. For this, look for the corresponding start.S entry file.
767 This is usually only required when debugging some core SoC or
768 processor related function. For example: arch/arm/cpu/armv8/start.S or
769 arch/arm/cpu/armv7/start.S
770
771.. code-block:: diff
772
773 diff --git a/arch/arm/cpu/armv7/start.S b/arch/arm/cpu/armv7/start.S
774 index 69e281b086..744929e825 100644
775 --- a/arch/arm/cpu/armv7/start.S
776 +++ b/arch/arm/cpu/armv7/start.S
777 @@ -37,6 +37,8 @@
778 #endif
779
780 reset:
781 +dead_loop:
782 + b dead_loop
783 /* Allow the board to save important registers */
784 b save_boot_params
785 save_boot_params_ret:
786
787* **board_init_f**: Adding an infinite while loop at the board entry
788 function. In many cases, it is important to debug the boot process if
789 any changes are made for board-specific applications. Below is a step
790 by step process for debugging the boot SPL or Armv8 SPL:
791
792 To debug the boot process in either domain, we will first
793 add a modification to the code we would like to debug.
794 In this example, we will debug ``board_init_f`` inside
795 ``arch/arm/mach-k3/{soc}_init.c``. Since some sections of U-Boot
796 will be executed multiple times during the bootup process of K3
Jonathan Humphreys975103f2023-08-22 13:49:03 -0500797 devices, we will need to include either ``CONFIG_ARM64`` or
Jason Kacineseffe5082023-08-03 01:29:22 -0500798 ``CONFIG_CPU_V7R`` to catch the CPU at the desired place during the
799 bootup process (Main or Wakeup domains). For example, modify the
800 file as follows (depending on need):
801
802.. code-block:: c
803
804 void board_init_f(ulong dummy)
805 {
806 .
807 .
808 /* Code to run on the R5F (Wakeup/Boot Domain) */
809 if (IS_ENABLED(CONFIG_CPU_V7R)) {
810 volatile int x = 1;
811 while(x) {};
812 }
813 ...
814 /* Code to run on the ARMV8 (Main Domain) */
Jonathan Humphreys975103f2023-08-22 13:49:03 -0500815 if (IS_ENABLED(CONFIG_ARM64)) {
Jason Kacineseffe5082023-08-03 01:29:22 -0500816 volatile int x = 1;
817 while(x) {};
818 }
819 .
820 .
821 }
822
823Connecting with OpenOCD for a debug session
824"""""""""""""""""""""""""""""""""""""""""""
825
826Startup OpenOCD to debug the platform as follows:
827
828* **Integrated JTAG interface**: If the evm has a debugger such as
829 XDS110 inbuilt, there is typically an evm board support added and a
830 cfg file will be available.
831
832.. k3_rst_include_start_openocd_cfg_XDS110
833
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500834.. prompt:: bash $
Jason Kacineseffe5082023-08-03 01:29:22 -0500835
836 openocd -f board/{board_of_choice}.cfg
837
838.. k3_rst_include_end_openocd_cfg_XDS110
839
840.. k3_rst_include_start_openocd_cfg_external_intro
841
842* **External JTAG adapter/interface**: In other cases, where an
843 adapter/dongle is used, a simple cfg file can be created to integrate the
844 SoC and adapter information. See `supported TI K3 SoCs
845 <https://github.com/openocd-org/openocd/blob/master/tcl/target/ti_k3.cfg#L59>`_
846 to decide if the SoC is supported or not.
847
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500848.. prompt:: bash $
Jason Kacineseffe5082023-08-03 01:29:22 -0500849
850 openocd -f openocd_connect.cfg
851
852.. k3_rst_include_end_openocd_cfg_external_intro
853
854 For example, with BeaglePlay (AM62X platform), the openocd_connect.cfg:
855
856.. code-block:: tcl
857
858 # TUMPA example:
859 # http://www.tiaowiki.com/w/TIAO_USB_Multi_Protocol_Adapter_User's_Manual
860 source [find interface/ftdi/tumpa.cfg]
861
862 transport select jtag
863
864 # default JTAG configuration has only SRST and no TRST
865 reset_config srst_only srst_push_pull
866
867 # delay after SRST goes inactive
868 adapter srst delay 20
869
870 if { ![info exists SOC] } {
871 # Set the SoC of interest
872 set SOC am625
873 }
874
875 source [find target/ti_k3.cfg]
876
877 ftdi tdo_sample_edge falling
878
879 # Speeds for FT2232H are in multiples of 2, and 32MHz is tops
880 # max speed we seem to achieve is ~20MHz.. so we pick 16MHz
881 adapter speed 16000
882
883Below is an example of the output of this command:
884
885.. code-block:: console
886
887 Info : Listening on port 6666 for tcl connections
888 Info : Listening on port 4444 for telnet connections
889 Info : XDS110: connected
890 Info : XDS110: vid/pid = 0451/bef3
891 Info : XDS110: firmware version = 3.0.0.20
892 Info : XDS110: hardware version = 0x002f
893 Info : XDS110: connected to target via JTAG
894 Info : XDS110: TCK set to 2500 kHz
895 Info : clock speed 2500 kHz
896 Info : JTAG tap: am625.cpu tap/device found: 0x0bb7e02f (mfg: 0x017 (Texas Instruments), part: 0xbb7e, ver: 0x0)
897 Info : starting gdb server for am625.cpu.sysctrl on 3333
898 Info : Listening on port 3333 for gdb connections
899 Info : starting gdb server for am625.cpu.a53.0 on 3334
900 Info : Listening on port 3334 for gdb connections
901 Info : starting gdb server for am625.cpu.a53.1 on 3335
902 Info : Listening on port 3335 for gdb connections
903 Info : starting gdb server for am625.cpu.a53.2 on 3336
904 Info : Listening on port 3336 for gdb connections
905 Info : starting gdb server for am625.cpu.a53.3 on 3337
906 Info : Listening on port 3337 for gdb connections
907 Info : starting gdb server for am625.cpu.main0_r5.0 on 3338
908 Info : Listening on port 3338 for gdb connections
909 Info : starting gdb server for am625.cpu.gp_mcu on 3339
910 Info : Listening on port 3339 for gdb connections
911
912.. note::
913 Notice the default configuration is non-SMP configuration allowing
914 for each of the core to be attached and debugged simultaneously.
915 ARMv8 SPL/U-Boot starts up on cpu0 of a53/a72.
916
917.. k3_rst_include_start_openocd_cfg_external_gdb
918
919To debug using this server, use GDB directly or your preferred
920GDB-based IDE. To start up GDB in the terminal, run the following
921command.
922
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500923.. prompt:: bash $
Jason Kacineseffe5082023-08-03 01:29:22 -0500924
925 gdb-multiarch
926
927To connect to your desired core, run the following command within GDB:
928
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500929.. prompt:: bash (gdb)
Jason Kacineseffe5082023-08-03 01:29:22 -0500930
931 target extended-remote localhost:{port for desired core}
932
933To load symbols:
934
935.. warning::
936
937 SPL and U-Boot does a re-location of address compared to where it
938 is loaded originally. This step takes place after the DDR size is
939 determined from dt parsing. So, debugging can be split into either
940 "before re-location" or "after re-location". Please refer to the
941 file ''doc/README.arm-relocation'' to see how to grab the relocation
942 address.
943
944* Prior to relocation:
945
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500946.. prompt:: bash (gdb)
Jason Kacineseffe5082023-08-03 01:29:22 -0500947
948 symbol-file {path to elf file}
949
950* After relocation:
951
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500952.. prompt:: bash (gdb)
Jason Kacineseffe5082023-08-03 01:29:22 -0500953
954 # Drop old symbol file
955 symbol-file
956 # Pick up new relocaddr
957 add-symbol-file {path to elf file} {relocaddr}
958
959.. k3_rst_include_end_openocd_cfg_external_gdb
960
961In the above example of AM625,
962
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500963.. prompt:: bash (gdb)
Jason Kacineseffe5082023-08-03 01:29:22 -0500964
965 target extended-remote localhost:3338 <- R5F (Wakeup Domain)
966 target extended-remote localhost:3334 <- A53 (Main Domain)
967
968The core can now be debugged directly within GDB using GDB commands or
969if using IDE, as appropriate to the IDE.
970
971Stepping through the code
972"""""""""""""""""""""""""
973
974`GDB TUI Commands
975<https://sourceware.org/gdb/onlinedocs/gdb/TUI-Commands.html>`_ can
976help set up the display more sensible for debug. Provide the name
977of the layout that can be used to debug. For example, use the GDB
978command ``layout src`` after loading the symbols to see the code and
979breakpoints. To exit the debug loop added above, add any breakpoints
980needed and run the following GDB commands to step out of the debug
981loop set in the ``board_init_f`` function.
982
Nishanth Menon81cf99e2023-11-02 23:40:25 -0500983.. prompt:: bash (gdb)
Jason Kacineseffe5082023-08-03 01:29:22 -0500984
985 set x = 0
986 continue
987
988The platform has now been successfully setup to debug with OpenOCD
989using GDB commands or a GDB-based IDE. See `OpenOCD documentation for
990GDB <https://openocd.org/doc/html/GDB-and-OpenOCD.html>`_ for further
991information.
992
993.. warning::
994
995 On the K3 family of devices, a watchdog timer within the DMSC is
996 enabled by default by the ROM bootcode with a timeout of 3 minutes.
997 The watchdog timer is serviced by System Firmware (SYSFW) or TI
998 Foundational Security (TIFS) during normal operation. If debugging
999 the SPL before the SYSFW is loaded, the watchdog timer will not get
1000 serviced automatically and the debug session will reset after 3
1001 minutes. It is recommended to start debugging SPL code only after
1002 the startup of SYSFW to avoid running into the watchdog timer reset.
1003
1004Miscellaneous notes with OpenOCD
1005^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1006
1007Currently, OpenOCD does not support tracing for K3 platforms. Tracing
1008function could be beneficial if the bug in code occurs deep within
1009nested function and can optionally save developers major trouble of
1010stepping through a large quantity of code.