"Das U-Boot" Source Tree

doc: phytec: imx8mp: add OP-TEE documentation

Add documentation for the phyBOARD-Pollux i.MX 8M Plus on OP-TEE
integration.
Also add missing '-' to TF-A build instruction while at it.

Signed-off-by: Yannic Moog <y.moog@phytec.de>

authored by

Yannic Moog and committed by
Fabio Estevam
608023b1 142317ae

+19 -1
+19 -1
doc/board/phytec/phycore-imx8mp.rst
··· 9 9 ----------- 10 10 11 11 - Build the ARM Trusted firmware binary 12 + - Build the OP-TEE binary (optional) 12 13 - Get ddr firmware 13 14 - Build U-Boot 14 15 - Boot ··· 20 21 21 22 $ git clone https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git 22 23 $ cd trusted-firmware-a 23 - $ export CROSS_COMPILE=aarch64-linux-gnu 24 + $ export CROSS_COMPILE=aarch64-linux-gnu- 24 25 $ export IMX_BOOT_UART_BASE=0x30860000 26 + $ # with optee 27 + $ make PLAT=imx8mp SPD=opteed bl31 28 + $ # without optee 25 29 $ make PLAT=imx8mp bl31 26 30 31 + Build the OP-TEE binary (optional) 32 + ---------------------------------- 33 + 34 + .. code-block:: bash 35 + 36 + $ git clone https://github.com/OP-TEE/optee_os.git 37 + $ cd optee_os 38 + $ make CFG_TEE_BENCHMARK=n \ 39 + CROSS_COMPILE=aarch64-linux-gnu- \ 40 + O=out/arm \ 41 + PLATFORM=imx-mx8mp_phyboard_pollux \ 42 + CFG_TZDRAM_START=0x56000000 43 + 27 44 Get the ddr firmware 28 45 -------------------- 29 46 ··· 42 59 .. code-block:: bash 43 60 44 61 $ cp <TF-A dir>/build/imx8mp/release/bl31.bin . 62 + $ cp <OP-TEE dir>/out/arm/core/tee-raw.bin tee.bin 45 63 $ cp firmware-imx-8.19/firmware/ddr/synopsys/lpddr4*.bin . 46 64 47 65 Build U-Boot