Kevin Peng | e1c99bb | 2020-06-05 13:21:52 +0800 | [diff] [blame] | 1 | ######################## |
| 2 | Trusted Firmware-M Tests |
| 3 | ######################## |
Kevin Peng | 8a711be | 2020-07-24 11:13:48 +0800 | [diff] [blame] | 4 | The Trusted Firmware-M(TF-M) Tests repo is meant to hold various tests for the |
Kevin Peng | e1c99bb | 2020-06-05 13:21:52 +0800 | [diff] [blame] | 5 | `Trusted Firmware-M`_. |
Kevin Peng | 8a711be | 2020-07-24 11:13:48 +0800 | [diff] [blame] | 6 | The TF-M tests mainly focus on functionalities of various TF-M componentes such |
Kevin Peng | a72eaca | 2023-03-02 09:57:08 +0800 | [diff] [blame] | 7 | as the TF-M SPM and various Secure Partitions. |
Kevin Peng | 8a711be | 2020-07-24 11:13:48 +0800 | [diff] [blame] | 8 | |
| 9 | There is also the `psa-arch-tests`_ suite which mainly focuses on the |
Kevin Peng | a72eaca | 2023-03-02 09:57:08 +0800 | [diff] [blame] | 10 | implementation compliance of the Platform Security Architecture (PSA). |
Kevin Peng | 8a711be | 2020-07-24 11:13:48 +0800 | [diff] [blame] | 11 | |
| 12 | **************** |
| 13 | Folder Structure |
| 14 | **************** |
Kevin Peng | 8a711be | 2020-07-24 11:13:48 +0800 | [diff] [blame] | 15 | - app - The application code that executes the testing, including both the TF-M |
| 16 | tests and the `psa-arch-tests`_. |
Jianliang Shen | 5f7b1b7 | 2022-05-03 19:01:27 +0800 | [diff] [blame] | 17 | - docs - The documents about test developments. |
Kevin Peng | 8a711be | 2020-07-24 11:13:48 +0800 | [diff] [blame] | 18 | - CMSIS - The libraries of RTX which is the Non-secure RTOS of the tests |
| 19 | - test - The TF-M test codes including test framework, test suites and test |
| 20 | services |
Kevin Peng | a72eaca | 2023-03-02 09:57:08 +0800 | [diff] [blame] | 21 | - lib/ext - 3rd party projects. May contain either imported source codes or CMake files to fetch the |
| 22 | projects. |
Kevin Peng | 8a711be | 2020-07-24 11:13:48 +0800 | [diff] [blame] | 23 | |
Kevin Peng | a72eaca | 2023-03-02 09:57:08 +0800 | [diff] [blame] | 24 | ####### |
| 25 | License |
| 26 | ####### |
| 27 | The software is provided under a BSD-3-Clause :doc:`License </license>`. |
| 28 | Contributions to this project are accepted under the same license with developer sign-off as |
| 29 | described in the |
| 30 | `TF-M Contributing Guidelines <https://tf-m-user-guide.trustedfirmware.org/contributing/contributing_process.html>`__ |
| 31 | |
| 32 | This project contains code or pre-built binaries from other projects as listed below. |
| 33 | The code from external projects is limited to ``CMSIS`` and ``lib`` folders. |
| 34 | The original license texts are included in those folders. |
| 35 | |
| 36 | - ``CMSIS`` - `Apache License <http://www.apache.org/licenses/>`__ Version 2.0 license |
| 37 | - The ``lib/ext`` folder may contain 3rd party projects and files with diverse licenses. |
| 38 | Here are some that are different from the BSD-3-Clause and may be a part of the runtime image. |
| 39 | The source code for these projects is fetched from upstream at build time only. |
| 40 | |
| 41 | - ``erpc`` - `Modified BSD-3-Clause license <https://github.com/EmbeddedRPC/erpc/blob/develop/LICENSE>`__ |
Kevin Peng | e1c99bb | 2020-06-05 13:21:52 +0800 | [diff] [blame] | 42 | |
| 43 | #################### |
| 44 | Feedback and support |
| 45 | #################### |
| 46 | Feedback can be submitted via email to |
| 47 | `TF-M mailing list <tf-m@lists.trustedfirmware.org>`__. |
| 48 | |
| 49 | .. _Trusted Firmware-M: https://git.trustedfirmware.org/TF-M/trusted-firmware-m.git/ |
Kevin Peng | 8a711be | 2020-07-24 11:13:48 +0800 | [diff] [blame] | 50 | .. _psa-arch-tests: https://github.com/ARM-software/psa-arch-tests |
Kevin Peng | e1c99bb | 2020-06-05 13:21:52 +0800 | [diff] [blame] | 51 | |
Kevin Peng | a72eaca | 2023-03-02 09:57:08 +0800 | [diff] [blame] | 52 | *Copyright (c) 2020-2023, Arm Limited. All rights reserved.* |