diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/plat/stm32mp1.rst | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/plat/stm32mp1.rst b/docs/plat/stm32mp1.rst index bfae9ccc8..75dfa3f70 100644 --- a/docs/plat/stm32mp1.rst +++ b/docs/plat/stm32mp1.rst @@ -69,11 +69,15 @@ Boot sequence ROM code -> BL2 (compiled with BL2_AT_EL3) -> BL32 (SP_min) -> BL33 (U-Boot) +or if Op-TEE is used: + +ROM code -> BL2 (compiled with BL2_AT_EL3) -> OP-TEE -> BL33 (U-Boot) + Build Instructions ------------------ -To build: +To build with SP_min: .. code:: bash @@ -83,6 +87,12 @@ To build: make DEVICE_TREE=stm32mp157c-ev1 all ./tools/mkimage -T stm32image -a 0xC0100000 -e 0xC0100000 -d u-boot.bin u-boot.stm32 +To build TF-A with with Op-TEE support: + +.. code:: bash + + make CROSS_COMPILE=arm-linux-gnueabihf- PLAT=stm32mp1 ARCH=aarch32 ARM_ARCH_MAJOR=7 AARCH32_SP=optee + The following build options are supported: - ``ENABLE_STACK_PROTECTOR``: To enable the stack protection. |