Galanakis, Minos | 41f8597 | 2019-09-30 15:56:40 +0100 | [diff] [blame] | 1 | ################# |
| 2 | Integration guide |
| 3 | ################# |
Gyorgy Szing | db9783c | 2019-04-17 21:08:48 +0200 | [diff] [blame] | 4 | The purpose of this document is to provide a guide on how to integrate TF-M |
| 5 | with other hardware platforms and operating systems. |
| 6 | |
| 7 | ***************** |
| 8 | How to build TF-M |
| 9 | ***************** |
| 10 | Follow the :doc:`Build instructions <tfm_build_instruction>`. |
| 11 | |
| 12 | ******************************************************** |
| 13 | How to export files for building non-secure applications |
| 14 | ******************************************************** |
| 15 | Explained in the :doc:`Build instructions <tfm_build_instruction>`. |
| 16 | |
| 17 | ************************* |
| 18 | How to add a new platform |
| 19 | ************************* |
| 20 | The hardware platforms currently supported are: |
| 21 | |
| 22 | - Soft Macro Model (SMM) Cortex-M33 SSE-200 subsystem for MPS2+ (AN521) |
| 23 | - Cortex-M23 IoT Kit subsystem for MPS2+ (AN519) |
Marton Berke | 8aae06f | 2019-11-25 16:46:12 +0100 | [diff] [blame] | 24 | - Arm SSE-123 Example Subsystem for MPS2+ (AN539) |
Marton Berke | 07fc95f | 2020-08-18 15:24:14 +0200 | [diff] [blame^] | 25 | - Corstone-300 Ecosystem FVP (Cortex-M55 SSE-300 MPS2+) |
Jamie Fox | b8a9270 | 2019-06-05 17:19:31 +0100 | [diff] [blame] | 26 | - Musca-A test chip board (Cortex-M33 SSE-200 subsystem) |
Gyorgy Szing | db9783c | 2019-04-17 21:08:48 +0200 | [diff] [blame] | 27 | - Musca-B1 test chip board (Cortex-M33 SSE-200 subsystem) |
Marton Berke | 8aae06f | 2019-11-25 16:46:12 +0100 | [diff] [blame] | 28 | - Musca-S1 test chip board (Cortex-M33 SSE-200 subsystem) |
Kevin Peng | 0a14211 | 2018-09-21 10:42:22 +0800 | [diff] [blame] | 29 | - CoreLink SSE-200 Subsystem for MPS3 (AN524) |
Marton Berke | e980366 | 2019-11-11 14:11:05 +0100 | [diff] [blame] | 30 | - DesignStart FPGA on Cloud: Cortex-M33 based platform (SSE-200_AWS) |
Ludovic Barre | 8a77bdd | 2020-03-26 19:53:07 +0100 | [diff] [blame] | 31 | - STM32L5xx: Cortex-M33 based platform (STM32L562 and STM32L552 socs) |
Gyorgy Szing | db9783c | 2019-04-17 21:08:48 +0200 | [diff] [blame] | 32 | |
| 33 | The files related to the supported platforms are contained under the |
| 34 | ``platform`` subfolder. The platform specific files are under |
| 35 | ``platform/ext/target``, which is organised by boards |
| 36 | (e.g. ``platform/ext/target/mps2``), while the folder ``platform/ext/common`` |
| 37 | is used to store source and header files which are platform generic. |
| 38 | |
| 39 | More information about subsystems supported by the MPS2+ board can be found in: |
| 40 | `MPS2+ homepage <https://developer.arm.com/products/system-design/development-boards/fpga-prototyping-boards/mps2>`__ |
| 41 | |
Jamie Fox | b8a9270 | 2019-06-05 17:19:31 +0100 | [diff] [blame] | 42 | More information about the Musca-A test chip board can be found in: |
Gyorgy Szing | db9783c | 2019-04-17 21:08:48 +0200 | [diff] [blame] | 43 | `Musca-A homepage <https://developer.arm.com/products/system-design/development-boards/iot-test-chips-and-boards/musca-a-test-chip-board>`__ |
| 44 | |
| 45 | More information about the Musca-B1 test chip board can be found in: |
| 46 | `Musca-B1 homepage <https://www.arm.com/products/development-tools/development-boards/musca-b1-iot>`__ |
| 47 | |
Marton Berke | 8aae06f | 2019-11-25 16:46:12 +0100 | [diff] [blame] | 48 | More information about the Musca-S1 test chip board can be found in: |
| 49 | `Musca-S1 homepage <https://www.arm.com/company/news/2019/05/arm-demonstrates-new-iot-test-chip-and-board>`__ |
| 50 | |
Kevin Peng | 0a14211 | 2018-09-21 10:42:22 +0800 | [diff] [blame] | 51 | More information about subsystems supported by the MPS3 board can be found in: |
| 52 | `MPS3 homepage <https://www.arm.com/products/development-tools/development-boards/mps3>`__ |
| 53 | |
Marton Berke | e980366 | 2019-11-11 14:11:05 +0100 | [diff] [blame] | 54 | More information about the SSE-200_AWS platform can be found in: |
| 55 | `SSE-200_AWS product page <https://aws.amazon.com/marketplace/pp/ARM-DesignStart-FPGA-on-Cloud-Cortex-M33-based-pla/B082DMMTLW>`__ |
| 56 | |
Ludovic Barre | 8a77bdd | 2020-03-26 19:53:07 +0100 | [diff] [blame] | 57 | More information about the STM32L5xx platform can be found in: |
| 58 | `STM32L5 series product page <https://www.st.com/content/st_com/en/products/microcontrollers-microprocessors/stm32-32-bit-arm-cortex-mcus/stm32-ultra-low-power-mcus/stm32l5-series.html>`__ |
| 59 | |
Gyorgy Szing | db9783c | 2019-04-17 21:08:48 +0200 | [diff] [blame] | 60 | Generic drivers and startup/scatter files |
| 61 | ========================================= |
| 62 | The addition of a new platform means the creation of a new subfolder inside |
| 63 | ``target/<board_name>`` to provide an implementation of the drivers currently |
| 64 | used by TF-M, in particular MPC, PPC, and USART drivers. In addition to the |
| 65 | drivers, startup and scatter files need to be provided for the supported |
| 66 | toolchains. |
| 67 | |
| 68 | There are also board specific drivers which are used by the board |
| 69 | platform to interact with the external world, for example during tests, that |
| 70 | have to be provided, e.g. to blink LEDs or count time in the MPS2 board. |
| 71 | |
| 72 | .. Note:: |
| 73 | |
Kevin Peng | c6d7450 | 2020-03-04 16:55:37 +0800 | [diff] [blame] | 74 | Currently ITS, PS and BL2 bootloader use different flash interface |
Gyorgy Szing | db9783c | 2019-04-17 21:08:48 +0200 | [diff] [blame] | 75 | |
| 76 | Target configuration files |
| 77 | ========================== |
| 78 | Inside the base root folder of the selected target, each implementation has to |
| 79 | provide its own copy of ``target_cfg.c/.h``. This file has target specific |
| 80 | configuration functions and settings that are called by the TF-M during the |
| 81 | platform configuration step during TF-M boot. Examples of the configurations |
| 82 | performed during this phase are the MPC configuration, the SAU configuration, |
| 83 | or eventually PPC configuration if supported by the hardware platform. |
| 84 | Similarly, the ``uart_stdout.c`` is used to provide functions needed to redirect |
| 85 | the stdout on UART (this is currently used by TF-M to log messages). |
| 86 | |
| 87 | Platform retarget files |
| 88 | ======================= |
| 89 | An important part that each new platform has to provide is the set of retarget |
| 90 | files which are contained inside the ``retarget`` folder. These files define the |
| 91 | peripheral base addresses for the platform, both for the secure and non-secure |
| 92 | aliases (when available), and bind those addresses to the base addresses used by |
| 93 | the devices available in the hardware platform. |
| 94 | |
| 95 | *************************** |
| 96 | How to integrate another OS |
| 97 | *************************** |
| 98 | To work with TF-M, the OS needs to support the Armv8-M architecture and, in |
| 99 | particular, it needs to be able to run in the non-secure world. More |
| 100 | information about OS migration to the Armv8-M architecture can be found in the |
| 101 | :doc:`OS requirements <os_migration_guide_armv8m>`. Depending upon the system |
| 102 | configuration this may require configuring drivers to use appropriate address |
| 103 | ranges. |
| 104 | |
| 105 | Interface with TF-M |
| 106 | =================== |
| 107 | The files needed for the interface with TF-M are exported at the |
| 108 | ``<build_dir>/install/export/tfm`` path. The NS side is only allowed to call |
| 109 | TF-M secure functions (veneers) from the NS Thread mode. For this reason, the |
| 110 | API is a collection of functions in the ``<build_dir>/install/export/tfm/inc`` |
Kevin Peng | c6d7450 | 2020-03-04 16:55:37 +0800 | [diff] [blame] | 111 | directory. For example, the interface for the Protected Storage (PS) service |
| 112 | is described in the file ``psa_ps_api.h`` as a collection of functions that |
Gyorgy Szing | db9783c | 2019-04-17 21:08:48 +0200 | [diff] [blame] | 113 | call service veneer functions. This API is a wrapper for the secure veneers, |
| 114 | and returns the return value from the service to the caller. |
| 115 | |
Kevin Peng | c6d7450 | 2020-03-04 16:55:37 +0800 | [diff] [blame] | 116 | The protected storage service uses a numerical ID, to identify the clients that |
| 117 | use the service. For details see |
Gyorgy Szing | db9783c | 2019-04-17 21:08:48 +0200 | [diff] [blame] | 118 | :doc:`ns client identification documentation <tfm_ns_client_identification>`. |
| 119 | |
| 120 | Interface with non-secure world regression tests |
| 121 | ================================================ |
| 122 | A non-secure application that wants to run the non-secure regression tests |
| 123 | needs to call the ``tfm_non_secure_client_run_tests()``. This function is |
| 124 | exported into the header file ``test_framework_integ_test.h`` inside the |
| 125 | ``<build_dir>/install`` folder structure in the test specific files, |
| 126 | i.e. ``<build_dir>/install/export/tfm/test/inc``. The non-secure regression |
| 127 | tests are precompiled and delivered as a static library which is available in |
| 128 | ``<build_dir>/install/export/tfm/test/lib``, so that the non-secure application |
| 129 | needs to link against the library to be able to invoke the |
Kevin Peng | c6d7450 | 2020-03-04 16:55:37 +0800 | [diff] [blame] | 130 | ``tfm_non_secure_client_run_tests()`` function. The PS non-secure side |
Gyorgy Szing | db9783c | 2019-04-17 21:08:48 +0200 | [diff] [blame] | 131 | regression tests rely on some OS functionality e.g. threads, mutexes etc. These |
| 132 | functions comply with CMSIS RTOS2 standard and have been exported as thin |
| 133 | wrappers defined in ``os_wrapper.h`` contained in |
| 134 | ``<build_dir>/install/export/tfm/test/inc``. OS needs to provide the |
| 135 | implementation of these wrappers to be able to run the tests. |
| 136 | |
| 137 | NS client Identification |
| 138 | ======================== |
| 139 | See |
| 140 | :doc:`ns client identification documentation <tfm_ns_client_identification>`. |
| 141 | |
Mate Toth-Pal | 12d7a18 | 2019-04-28 14:05:21 +0200 | [diff] [blame] | 142 | ********************* |
| 143 | Non-secure interrupts |
| 144 | ********************* |
| 145 | Non-secure interrupts are allowed to preempt Secure thread mode. |
| 146 | With the current implementation, a NSPE task can spoof the identity of another |
| 147 | NSPE task. This is an issue only when NSPE has provisions for task isolation. |
| 148 | Note, that ``AIRCR.PRIS`` is still set to restrict the priority range available |
| 149 | to NS interrupts to the lower half of available priorities so that it wouldn't |
| 150 | be possible for any non-secure interrupt to preempt a higher-priority secure |
| 151 | interrupt. |
| 152 | |
Gyorgy Szing | db9783c | 2019-04-17 21:08:48 +0200 | [diff] [blame] | 153 | -------------- |
| 154 | |
Kevin Peng | c6d7450 | 2020-03-04 16:55:37 +0800 | [diff] [blame] | 155 | *Copyright (c) 2017-2020, Arm Limited. All rights reserved.* |