features.rst 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. Feature Overview
  2. ================
  3. This page provides an overview of the current |TF-A| feature set. For a full
  4. description of these features and their implementation details, please see
  5. the documents that are part of the *Components* and *System Design* chapters.
  6. The :ref:`Change Log & Release Notes` provides details of changes made since the
  7. last release.
  8. Current features
  9. ----------------
  10. - Initialization of the secure world, for example exception vectors, control
  11. registers and interrupts for the platform.
  12. - Library support for CPU specific reset and power down sequences. This
  13. includes support for errata workarounds and the latest Arm DynamIQ CPUs.
  14. - Drivers to enable standard initialization of Arm System IP, for example
  15. Generic Interrupt Controller (GIC), Cache Coherent Interconnect (CCI),
  16. Cache Coherent Network (CCN), Network Interconnect (NIC) and TrustZone
  17. Controller (TZC).
  18. - A generic |SCMI| driver to interface with conforming power controllers, for
  19. example the Arm System Control Processor (SCP).
  20. - SMC (Secure Monitor Call) handling, conforming to the `SMC Calling
  21. Convention`_ using an EL3 runtime services framework.
  22. - |PSCI| library support for CPU, cluster and system power management
  23. use-cases.
  24. This library is pre-integrated with the AArch64 EL3 Runtime Software, and
  25. is also suitable for integration with other AArch32 EL3 Runtime Software,
  26. for example an AArch32 Secure OS.
  27. - A minimal AArch32 Secure Payload (*SP_MIN*) to demonstrate |PSCI| library
  28. integration with AArch32 EL3 Runtime Software.
  29. - Secure Monitor library code such as world switching, EL1 context management
  30. and interrupt routing.
  31. When a Secure-EL1 Payload (SP) is present, for example a Secure OS, the
  32. AArch64 EL3 Runtime Software must be integrated with a Secure Payload
  33. Dispatcher (SPD) component to customize the interaction with the SP.
  34. - A Test SP and SPD to demonstrate AArch64 Secure Monitor functionality and SP
  35. interaction with PSCI.
  36. - SPDs for the `OP-TEE Secure OS`_, `NVIDIA Trusted Little Kernel`_,
  37. `Trusty Secure OS`_ and `ProvenCore Secure OS`_.
  38. - A Trusted Board Boot implementation, conforming to all mandatory TBBR
  39. requirements. This includes image authentication, Firmware Update (or
  40. recovery mode), and packaging of the various firmware images into a
  41. Firmware Image Package (FIP).
  42. - Pre-integration of TBB with the Arm CryptoCell product, to take advantage of
  43. its hardware Root of Trust and crypto acceleration services.
  44. - Reliability, Availability, and Serviceability (RAS) functionality, including
  45. - A Secure Partition Manager (SPM) to manage Secure Partitions in
  46. Secure-EL0, which can be used to implement simple management and
  47. security services.
  48. - An |SDEI| dispatcher to route interrupt-based |SDEI| events.
  49. - An Exception Handling Framework (EHF) that allows dispatching of EL3
  50. interrupts to their registered handlers, to facilitate firmware-first
  51. error handling.
  52. - A dynamic configuration framework that enables each of the firmware images
  53. to be configured at runtime if required by the platform. It also enables
  54. loading of a hardware configuration (for example, a kernel device tree)
  55. as part of the FIP, to be passed through the firmware stages.
  56. This feature is now incorporated inside the firmware configuration framework
  57. (fconf).
  58. - Support for alternative boot flows, for example to support platforms where
  59. the EL3 Runtime Software is loaded using other firmware or a separate
  60. secure system processor, or where a non-TF-A ROM expects BL2 to be loaded
  61. at EL3.
  62. - Support for the GCC, LLVM and Arm Compiler 6 toolchains.
  63. - Support for combining several libraries into a "romlib" image that may be
  64. shared across images to reduce memory footprint. The romlib image is stored
  65. in ROM but is accessed through a jump-table that may be stored
  66. in read-write memory, allowing for the library code to be patched.
  67. - Support for the Secure Partition Manager Dispatcher (SPMD) component as a
  68. new standard service.
  69. - Support for ARMv8.3 pointer authentication in the normal and secure worlds.
  70. The use of pointer authentication in the normal world is enabled whenever
  71. architectural support is available, without the need for additional build
  72. flags.
  73. - Position-Independent Executable (PIE) support. Currently for BL2, BL31, and
  74. TSP, with further support to be added in a future release.
  75. Still to come
  76. -------------
  77. - Support for additional platforms.
  78. - Refinements to Position Independent Executable (PIE) support.
  79. - Continued support for the FF-A v1.0 (formally known as SPCI) specification, to enable the
  80. use of secure partition management in the secure world.
  81. - Documentation enhancements.
  82. - Ongoing support for new architectural features, CPUs and System IP.
  83. - Ongoing support for new Arm system architecture specifications.
  84. - Ongoing security hardening, optimization and quality improvements.
  85. .. _SMC Calling Convention: https://developer.arm.com/docs/den0028/latest
  86. .. _OP-TEE Secure OS: https://github.com/OP-TEE/optee_os
  87. .. _NVIDIA Trusted Little Kernel: http://nv-tegra.nvidia.com/gitweb/?p=3rdparty/ote_partner/tlk.git;a=summary
  88. .. _Trusty Secure OS: https://source.android.com/security/trusty
  89. .. _ProvenCore Secure OS: https://provenrun.com/products/provencore/
  90. --------------
  91. *Copyright (c) 2019-2021, Arm Limited. All rights reserved.*