blob: 3ce86d5e87aa4b706d8be3e44ef48880ec2154fb [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****************
David Hu69fbb232023-11-22 16:59:54 +080015- app_broker - Common application code that executes the testing, included by the TF-M tests and
16 the `psa-arch-tests`_.
17- cmake - Common CMake utility scripts.
Jianliang Shen5f7b1b72022-05-03 19:01:27 +080018- docs - The documents about test developments.
David Hu69fbb232023-11-22 16:59:54 +080019- erpc - eRPC test framework.
20- lib - TF-M libraries and 3rd-party libraries. May contain either imported source codes or CMake
21 files to fetch the projects.
22- tests_psa_arch - PSA Arch tests integration with TF-M.
23- tests_reg - TF-M regression test codes including test framework, test suites and test services.
Kevin Peng8a711be2020-07-24 11:13:48 +080024
Kevin Penga72eaca2023-03-02 09:57:08 +080025#######
26License
27#######
28The software is provided under a BSD-3-Clause :doc:`License </license>`.
29Contributions to this project are accepted under the same license with developer sign-off as
30described in the
31`TF-M Contributing Guidelines <https://tf-m-user-guide.trustedfirmware.org/contributing/contributing_process.html>`__
32
33This project contains code or pre-built binaries from other projects as listed below.
34The code from external projects is limited to ``CMSIS`` and ``lib`` folders.
35The original license texts are included in those folders.
36
37 - ``CMSIS`` - `Apache License <http://www.apache.org/licenses/>`__ Version 2.0 license
38 - The ``lib/ext`` folder may contain 3rd party projects and files with diverse licenses.
39 Here are some that are different from the BSD-3-Clause and may be a part of the runtime image.
40 The source code for these projects is fetched from upstream at build time only.
41
42 - ``erpc`` - `Modified BSD-3-Clause license <https://github.com/EmbeddedRPC/erpc/blob/develop/LICENSE>`__
Kevin Penge1c99bb2020-06-05 13:21:52 +080043
44####################
45Feedback and support
46####################
47Feedback can be submitted via email to
48`TF-M mailing list <tf-m@lists.trustedfirmware.org>`__.
49
50.. _Trusted Firmware-M: https://git.trustedfirmware.org/TF-M/trusted-firmware-m.git/
Kevin Peng8a711be2020-07-24 11:13:48 +080051.. _psa-arch-tests: https://github.com/ARM-software/psa-arch-tests
Kevin Penge1c99bb2020-06-05 13:21:52 +080052
Kevin Penga72eaca2023-03-02 09:57:08 +080053*Copyright (c) 2020-2023, Arm Limited. All rights reserved.*