blob: 39df659979ac9c8d9b8993ecb6c1db5da157f19c [file] [log] [blame]
Kevin Penge1c99bb2020-06-05 13:21:52 +08001########################
2Trusted Firmware-M Tests
3########################
Kevin Peng8a711be2020-07-24 11:13:48 +08004The Trusted Firmware-M(TF-M) Tests repo is meant to hold various tests for the
Kevin Penge1c99bb2020-06-05 13:21:52 +08005`Trusted Firmware-M`_.
Kevin Peng8a711be2020-07-24 11:13:48 +08006The TF-M tests mainly focus on functionalities of various TF-M componentes such
Kevin Penga72eaca2023-03-02 09:57:08 +08007as the TF-M SPM and various Secure Partitions.
Kevin Peng8a711be2020-07-24 11:13:48 +08008
9There is also the `psa-arch-tests`_ suite which mainly focuses on the
Kevin Penga72eaca2023-03-02 09:57:08 +080010implementation compliance of the Platform Security Architecture (PSA).
Kevin Peng8a711be2020-07-24 11:13:48 +080011
12****************
13Folder Structure
14****************
Kevin Peng8a711be2020-07-24 11:13:48 +080015- app - The application code that executes the testing, including both the TF-M
16 tests and the `psa-arch-tests`_.
Jianliang Shen5f7b1b72022-05-03 19:01:27 +080017- docs - The documents about test developments.
Kevin Peng8a711be2020-07-24 11:13:48 +080018- 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 Penga72eaca2023-03-02 09:57:08 +080021- lib/ext - 3rd party projects. May contain either imported source codes or CMake files to fetch the
22 projects.
Kevin Peng8a711be2020-07-24 11:13:48 +080023
Kevin Penga72eaca2023-03-02 09:57:08 +080024#######
25License
26#######
27The software is provided under a BSD-3-Clause :doc:`License </license>`.
28Contributions to this project are accepted under the same license with developer sign-off as
29described in the
30`TF-M Contributing Guidelines <https://tf-m-user-guide.trustedfirmware.org/contributing/contributing_process.html>`__
31
32This project contains code or pre-built binaries from other projects as listed below.
33The code from external projects is limited to ``CMSIS`` and ``lib`` folders.
34The 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 Penge1c99bb2020-06-05 13:21:52 +080042
43####################
44Feedback and support
45####################
46Feedback 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 Peng8a711be2020-07-24 11:13:48 +080050.. _psa-arch-tests: https://github.com/ARM-software/psa-arch-tests
Kevin Penge1c99bb2020-06-05 13:21:52 +080051
Kevin Penga72eaca2023-03-02 09:57:08 +080052*Copyright (c) 2020-2023, Arm Limited. All rights reserved.*