mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-19 19:34:35 +00:00
doc: board: ti: am64: Add boot flow diagram
Add documenatation and boot flow diagram for AM64 EVM/SoC. Suggested-by: Nishanth Menon <nm@ti.com> Signed-off-by: Roger Quadros <rogerq@kernel.org> Reviewed-by: Nishanth Menon <nm@ti.com> Tested-by: Nishanth Menon <nm@ti.com> #SK-AM64B
This commit is contained in:
parent
3fd4410f69
commit
4bf49bade1
3 changed files with 1900 additions and 0 deletions
197
doc/board/ti/am64x_evm.rst
Normal file
197
doc/board/ti/am64x_evm.rst
Normal file
|
@ -0,0 +1,197 @@
|
||||||
|
.. SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
|
||||||
|
.. sectionauthor:: Nishanth Menon <nm@ti.com>
|
||||||
|
|
||||||
|
AM64 Platforms
|
||||||
|
==============
|
||||||
|
|
||||||
|
Introduction:
|
||||||
|
-------------
|
||||||
|
The AM642 SoC belongs to the K3 Multicore SoC architecture platform,
|
||||||
|
providing advanced system integration to enable applications such as
|
||||||
|
Motor Drives, PLC, Remote IO and IoT Gateways.
|
||||||
|
|
||||||
|
Some highlights of this SoC are:
|
||||||
|
|
||||||
|
* Dual Cortex-A53s in a single cluster, two clusters of dual Cortex-R5F
|
||||||
|
MCUs, and a single Cortex-M4F.
|
||||||
|
* Two Gigabit Industrial Communication Subsystems (ICSSG).
|
||||||
|
* Integrated Ethernet switch supporting up to a total of two external
|
||||||
|
ports.
|
||||||
|
* PCIe-GEN2x1L, USB3/USB2, 2xCAN-FD, eMMC and SD, UFS, OSPI memory
|
||||||
|
controller, QSPI, I2C, eCAP/eQEP, ePWM, ADC, among other
|
||||||
|
peripherals.
|
||||||
|
* Centralized System Controller for Security, Power, and Resource
|
||||||
|
Management (DMSC).
|
||||||
|
|
||||||
|
More details can be found in the Technical Reference Manual:
|
||||||
|
https://www.ti.com/lit/pdf/spruim2
|
||||||
|
|
||||||
|
Platform information:
|
||||||
|
|
||||||
|
* AM64-EVM: https://www.ti.com/tool/TMDS64EVM
|
||||||
|
* AM64-SK: https://www.ti.com/tool/SK-AM64B
|
||||||
|
|
||||||
|
Boot Flow:
|
||||||
|
----------
|
||||||
|
Below is the pictorial representation of boot flow:
|
||||||
|
|
||||||
|
.. image:: img/boot_diagram_am64.svg
|
||||||
|
|
||||||
|
- Here TIFS acts as master and provides all the critical services. R5/A53
|
||||||
|
requests TIFS to get these services done as shown in the above diagram.
|
||||||
|
|
||||||
|
Sources:
|
||||||
|
--------
|
||||||
|
|
||||||
|
.. include:: k3.rst
|
||||||
|
:start-after: .. k3_rst_include_start_boot_sources
|
||||||
|
:end-before: .. k3_rst_include_end_boot_sources
|
||||||
|
|
||||||
|
Build procedure:
|
||||||
|
----------------
|
||||||
|
0. Setup the environment variables:
|
||||||
|
|
||||||
|
.. include:: k3.rst
|
||||||
|
:start-after: .. k3_rst_include_start_common_env_vars_desc
|
||||||
|
:end-before: .. k3_rst_include_end_common_env_vars_desc
|
||||||
|
|
||||||
|
.. include:: k3.rst
|
||||||
|
:start-after: .. k3_rst_include_start_board_env_vars_desc
|
||||||
|
:end-before: .. k3_rst_include_end_board_env_vars_desc
|
||||||
|
|
||||||
|
Set the variables corresponding to this platform:
|
||||||
|
|
||||||
|
.. include:: k3.rst
|
||||||
|
:start-after: .. k3_rst_include_start_common_env_vars_defn
|
||||||
|
:end-before: .. k3_rst_include_end_common_env_vars_defn
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
$ export UBOOT_CFG_CORTEXR=am64x_evm_r5_defconfig
|
||||||
|
$ export UBOOT_CFG_CORTEXA=am64x_evm_a53_defconfig
|
||||||
|
$ export TFA_BOARD=lite
|
||||||
|
$ # we dont use any extra TFA parameters
|
||||||
|
$ unset TFA_EXTRA_ARGS
|
||||||
|
$ export OPTEE_PLATFORM=k3-am64x
|
||||||
|
$ # we dont use any extra TFA parameters
|
||||||
|
$ unset OPTEE_EXTRA_ARGS
|
||||||
|
|
||||||
|
.. am64x_evm_rst_include_start_build_steps
|
||||||
|
|
||||||
|
1. Trusted Firmware-A:
|
||||||
|
|
||||||
|
.. include:: k3.rst
|
||||||
|
:start-after: .. k3_rst_include_start_build_steps_tfa
|
||||||
|
:end-before: .. k3_rst_include_end_build_steps_tfa
|
||||||
|
|
||||||
|
|
||||||
|
2. OP-TEE:
|
||||||
|
|
||||||
|
.. include:: k3.rst
|
||||||
|
:start-after: .. k3_rst_include_start_build_steps_optee
|
||||||
|
:end-before: .. k3_rst_include_end_build_steps_optee
|
||||||
|
|
||||||
|
3. U-Boot:
|
||||||
|
|
||||||
|
* 4.1 R5:
|
||||||
|
|
||||||
|
.. include:: k3.rst
|
||||||
|
:start-after: .. k3_rst_include_start_build_steps_spl_r5
|
||||||
|
:end-before: .. k3_rst_include_end_build_steps_spl_r5
|
||||||
|
|
||||||
|
* 4.2 A53:
|
||||||
|
|
||||||
|
.. include:: k3.rst
|
||||||
|
:start-after: .. k3_rst_include_start_build_steps_uboot
|
||||||
|
:end-before: .. k3_rst_include_end_build_steps_uboot
|
||||||
|
.. am64x_evm_rst_include_end_build_steps
|
||||||
|
|
||||||
|
Target Images
|
||||||
|
--------------
|
||||||
|
In order to boot we need tiboot3.bin, tispl.bin and u-boot.img. Each SoC
|
||||||
|
variant (GP, HS-FS, HS-SE) requires a different source for these files.
|
||||||
|
|
||||||
|
- GP
|
||||||
|
|
||||||
|
* tiboot3-am64x-gp-evm.bin from step 3.1
|
||||||
|
* tispl.bin_unsigned, u-boot.img_unsigned from step 3.2
|
||||||
|
|
||||||
|
- HS-FS
|
||||||
|
|
||||||
|
* tiboot3-am64x-hs-fs-evm.bin from step 3.1
|
||||||
|
* tispl.bin, u-boot.img from step 3.2
|
||||||
|
|
||||||
|
- HS-SE
|
||||||
|
|
||||||
|
* tiboot3-am64x-hs-evm.bin from step 3.1
|
||||||
|
* tispl.bin, u-boot.img from step 3.2
|
||||||
|
|
||||||
|
Image formats:
|
||||||
|
--------------
|
||||||
|
|
||||||
|
- tiboot3.bin
|
||||||
|
|
||||||
|
.. image:: img/multi_cert_tiboot3.bin.svg
|
||||||
|
|
||||||
|
- tispl.bin
|
||||||
|
|
||||||
|
.. image:: img/nodm_tispl.bin.svg
|
||||||
|
|
||||||
|
Switch Setting for Boot Mode
|
||||||
|
----------------------------
|
||||||
|
|
||||||
|
Boot Mode pins provide means to select the boot mode and options before the
|
||||||
|
device is powered up. After every POR, they are the main source to populate
|
||||||
|
the Boot Parameter Tables.
|
||||||
|
|
||||||
|
The following table shows some common boot modes used on AM64 platform. More
|
||||||
|
details can be found in the Technical Reference Manual:
|
||||||
|
https://www.ti.com/lit/pdf/spruim2 under the `Boot Mode Pins` section.
|
||||||
|
|
||||||
|
.. list-table:: Boot Modes for AM64x-EVM
|
||||||
|
:widths: 16 16 16
|
||||||
|
:header-rows: 1
|
||||||
|
|
||||||
|
* - Switch Label
|
||||||
|
- SW2: 12345678
|
||||||
|
- SW3: 12345678
|
||||||
|
|
||||||
|
* - SD/MMC
|
||||||
|
- 11000010
|
||||||
|
- 01000000
|
||||||
|
|
||||||
|
* - xSPI/SFDP (OSPI)
|
||||||
|
- 11001110
|
||||||
|
- 01000000
|
||||||
|
|
||||||
|
* - UART
|
||||||
|
- 11011100
|
||||||
|
- 00000000
|
||||||
|
|
||||||
|
.. note ::
|
||||||
|
|
||||||
|
For SW2 and SW3, the switch state in the "ON" position = 1.
|
||||||
|
|
||||||
|
.. list-table:: Boot Modes for AM64x-SK
|
||||||
|
:widths: 16 16 16
|
||||||
|
:header-rows: 1
|
||||||
|
|
||||||
|
* - Switch Label
|
||||||
|
- SW2: 12345678
|
||||||
|
- SW3: 12345678
|
||||||
|
|
||||||
|
* - SD/MMC
|
||||||
|
- 00000010
|
||||||
|
- 01000011
|
||||||
|
|
||||||
|
* - xSPI/SFDP (OSPI)
|
||||||
|
- 00000010
|
||||||
|
- 01110011
|
||||||
|
|
||||||
|
* - UART
|
||||||
|
- 00000000
|
||||||
|
- 00111011
|
||||||
|
|
||||||
|
.. note ::
|
||||||
|
|
||||||
|
For SW2 and SW3, the switch state in the "ON" position = 1.
|
||||||
|
Boot bits on SK is reversed bits to the bootmode signals
|
1702
doc/board/ti/img/boot_diagram_am64.svg
Normal file
1702
doc/board/ti/img/boot_diagram_am64.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 57 KiB |
|
@ -32,6 +32,7 @@ K3 Based SoCs
|
||||||
|
|
||||||
am62x_sk
|
am62x_sk
|
||||||
../toradex/verdin-am62
|
../toradex/verdin-am62
|
||||||
|
am64x_evm
|
||||||
am65x_evm
|
am65x_evm
|
||||||
j7200_evm
|
j7200_evm
|
||||||
j721e_evm
|
j721e_evm
|
||||||
|
|
Loading…
Add table
Reference in a new issue