index.rst 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. Morello Platform
  2. ================
  3. Morello is an ARMv8-A platform that implements the capability architecture extension.
  4. The platform port present at `site <https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git>`_
  5. provides ARMv8-A architecture enablement.
  6. Capability architecture specific changes will be added `here <https://git.morello-project.org/morello>`_
  7. Further information on Morello Platform is available at `info <https://developer.arm.com/architectures/cpu-architecture/a-profile/morello>`_
  8. Boot Sequence
  9. -------------
  10. The SCP initializes the RVBAR registers to point to the AP_BL1. Once RVBAR is
  11. initialized, the primary core is powered on. The primary core boots the AP_BL1.
  12. It performs minimum initialization necessary to load and authenticate the AP
  13. firmware image (the FIP image) from the AP QSPI NOR Flash Memory into the
  14. Trusted SRAM.
  15. AP_BL1 authenticates and loads the AP_BL2 image. AP_BL2 performs additional
  16. initializations, and then authenticates and loads the AP_BL31 and AP_BL33.
  17. AP_BL2 then transfers execution control to AP_BL31, which is the EL3 runtime
  18. firmware. Execution is finally handed off to AP_BL33, which is the non-secure
  19. world (UEFI).
  20. SCP -> AP_BL1 -> AP_BL2 -> AP_BL31 -> AP_BL33
  21. Build Procedure (TF-A only)
  22. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  23. - Obtain arm `toolchain <https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-a/downloads>`_.
  24. Set the CROSS_COMPILE environment variable to point to the toolchain folder.
  25. - Build TF-A:
  26. .. code:: shell
  27. export CROSS_COMPILE=<path-to-aarch64-gcc>/bin/aarch64-none-elf-
  28. make PLAT=morello all
  29. *Copyright (c) 2020-2023, Arm Limited. All rights reserved.*