• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1Xilinx Zynq UltraScale+ MPSoC
2=============================
3
4Trusted Firmware-A (TF-A) implements the EL3 firmware layer for Xilinx Zynq
5UltraScale + MPSoC.
6The platform only uses the runtime part of TF-A as ZynqMP already has a
7BootROM (BL1) and FSBL (BL2).
8
9BL31 is TF-A.
10BL32 is an optional Secure Payload.
11BL33 is the non-secure world software (U-Boot, Linux etc).
12
13To build:
14
15.. code:: bash
16
17    make CROSS_COMPILE=aarch64-none-elf- PLAT=zynqmp bl31
18
19To build bl32 TSP you have to rebuild bl31 too:
20
21.. code:: bash
22
23    make CROSS_COMPILE=aarch64-none-elf- PLAT=zynqmp SPD=tspd bl31 bl32
24
25ZynqMP platform specific build options
26--------------------------------------
27
28-  ``ZYNQMP_ATF_MEM_BASE``: Specifies the base address of the bl31 binary.
29-  ``ZYNQMP_ATF_MEM_SIZE``: Specifies the size of the memory region of the bl31 binary.
30-  ``ZYNQMP_BL32_MEM_BASE``: Specifies the base address of the bl32 binary.
31-  ``ZYNQMP_BL32_MEM_SIZE``: Specifies the size of the memory region of the bl32 binary.
32
33-  ``ZYNQMP_CONSOLE``: Select the console driver. Options:
34
35   -  ``cadence``, ``cadence0``: Cadence UART 0
36   -  ``cadence1`` : Cadence UART 1
37
38FSBL->TF-A Parameter Passing
39----------------------------
40
41The FSBL populates a data structure with image information for TF-A. TF-A uses
42that data to hand off to the loaded images. The address of the handoff data
43structure is passed in the ``PMU_GLOBAL.GLOBAL_GEN_STORAGE6`` register. The
44register is free to be used by other software once TF-A has brought up
45further firmware images.
46
47Power Domain Tree
48-----------------
49
50The following power domain tree represents the power domain model used by TF-A
51for ZynqMP:
52
53::
54
55                    +-+
56                    |0|
57                    +-+
58         +-------+---+---+-------+
59         |       |       |       |
60         |       |       |       |
61         v       v       v       v
62        +-+     +-+     +-+     +-+
63        |0|     |1|     |2|     |3|
64        +-+     +-+     +-+     +-+
65
66The 4 leaf power domains represent the individual A53 cores, while resources
67common to the cluster are grouped in the power domain on the top.
68