blob: bc30e411b0dfa5cd71bf80c472cd77f7744d192b [file] [log] [blame]
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +00001##################
2Trusted Firmware M
3##################
4Trusted Firmware M provides a reference implementation of secure world software
Ken Liufc750062020-05-09 15:16:20 +08005for Arm M-profile architecture.
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +00006
7.. Note::
8 The software implementation contained in this project is designed to be a
9 reference implementation of the Platform Security Architecture (PSA).
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000010
11Terms ``TFM`` and ``TF-M`` are commonly used in documents and code and both
Minos Galanakise4094012020-06-12 14:25:34 +010012refer to ``Trusted Firmware M.`` :doc:`Glossary </docs/reference/glossary>` has the list
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000013of terms and abbreviations.
14
15#######
16License
17#######
Minos Galanakise4094012020-06-12 14:25:34 +010018The software is provided under a BSD-3-Clause :doc:`License </docs/contributing/lic>`.
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000019Contributions to this project are accepted under the same license with developer
Minos Galanakise4094012020-06-12 14:25:34 +010020sign-off as described in the :doc:`Contributing Guidelines </docs/contributing/contributing>`.
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000021
22This project contains code from other projects as listed below. The code from
Ken Liufc750062020-05-09 15:16:20 +080023external projects is limited to ``app``, ``bl2``, ``lib`` and ``platform``
24folders. The original license text is included in those source files.
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000025
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000026- The ``app`` folder contains files imported from CMSIS_5 project and the files
27 have Apache 2.0 license.
28- The ``bl2`` folder contains files imported from MCUBoot project and the files
29 have Apache 2.0 license.
Ken Liufc750062020-05-09 15:16:20 +080030- The ``lib`` folder may contain 3rd party files with diverse licenses.
31- The ``platform`` folder currently contains platforms support imported from
32 the external project and the files may have different licenses.
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000033
34.. Note::
Ken Liufc750062020-05-09 15:16:20 +080035 Any folder that contains or directly imports 3rd party code is kept in a
36 specific subfolder named ``ext`` so that it can be isolated if required.
37 The 'ext' folder can be seen in the folders above mentioned.
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000038
Soby Mathew6325be52020-06-17 13:58:51 +010039#########################
40Release Notes and Process
41#########################
42The :doc:`Release Cadence and Process </docs/contributing/release_process>` provides
43release cadence and process information.
44
Minos Galanakise4094012020-06-12 14:25:34 +010045The :doc:`Change Log & Release Notes </docs/reference/changelog>` provides details of
Soby Mathewd8efe8f2020-03-16 15:19:05 +000046major features of the release and platforms supported.
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000047
48###############
49Getting Started
50###############
51
52************
53Prerequisite
54************
55Trusted Firmware M provides a reference implementation of PSA specifications.
56It is assumed that the reader is familiar with PSA concepts and terms. PSA
Ken Liufc750062020-05-09 15:16:20 +080057specifications can be found at
58`Platform Security Architecture Resources <https://developer.arm.com/architectures/security-architectures/platform-security-architecture>`__.
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000059
60The current TF-M implementation specifically targets TrustZone for ARMv8-M so a
61good understanding of the v8-M architecture is also necessary. A good place to
62get started with ARMv8-M is
63`developer.arm.com <https://developer.arm.com/technologies/trustzone>`__.
64
65**********************
66Really getting started
67**********************
Ken Liufc750062020-05-09 15:16:20 +080068Trusted Firmware M source code is available on
Minos Galanakis0f39fa52020-06-08 16:53:53 +010069`git.trustedfirmware.org <https://git.trustedfirmware.org/TF-M/trusted-firmware-m.git/>`__.
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000070
71To build & run TF-M:
72
Minos Galanakise4094012020-06-12 14:25:34 +010073 - Follow the :doc:`SW requirements guide </docs/getting_started/tfm_sw_requirement>`
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000074 to set up your environment.
75 - Follow the
Minos Galanakise4094012020-06-12 14:25:34 +010076 :doc:`Build instructions </docs/getting_started/tfm_build_instruction>` to compile
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000077 and build the TF-M source.
Minos Galanakise4094012020-06-12 14:25:34 +010078 - Follow the :doc:`User guide </docs/getting_started/tfm_user_guide>` for information
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000079 on running the example.
80
81To port TF-M to a another system or OS, follow the
Minos Galanakise4094012020-06-12 14:25:34 +010082:doc:`OS Integration Guide </docs/getting_started/tfm_integration_guide>`
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000083
Minos Galanakise4094012020-06-12 14:25:34 +010084Please also see the :doc:`glossary </docs/reference/glossary>` of terms used in the project.
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000085
Minos Galanakise4094012020-06-12 14:25:34 +010086:doc:`Contributing Guidelines </docs/contributing/contributing>` contains guidance on how to
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000087contribute to this project.
88
89Further documents can be found in the ``docs`` folder.
90
Tamas Banab1c8282020-04-29 10:00:04 +010091###################
92Platforms supported
93###################
Mark Horvath9a5a9b92019-11-29 15:57:55 +010094 - Cortex-M55 system:
95
96 - `Fast model FVP_SSE300_MPS2.
97 <https://developer.arm.com/tools-and-software/open-source-software/arm-platforms-software/arm-ecosystem-fvps>`_
98
Tamas Banab1c8282020-04-29 10:00:04 +010099 - Cortex-M33 system:
100
101 - `FPGA image loaded on MPS2 board.
102 <https://developer.arm.com/products/system-design/development-boards/cortex-m-prototyping-systems/mps2>`_
103 - `Fast model FVP_MPS2_AEMv8M.
104 <https://developer.arm.com/products/system-design/fixed-virtual-platforms>`_
105 - `Musca-A test chip board.
106 <https://developer.arm.com/products/system-design/development-boards/iot-test-chips-and-boards/musca-a-test-chip-board>`_
107 - `Musca-B1 test chip board.
108 <https://developer.arm.com/products/system-design/development-boards/iot-test-chips-and-boards/musca-b-test-chip-board>`_
109 - `Musca-S1 test chip board.
110 <https://developer.arm.com/tools-and-software/development-boards/iot-test-chips-and-boards/musca-s1-test-chip-board>`_
111 - `FPGA image loaded on MPS3 board.
112 <https://developer.arm.com/tools-and-software/development-boards/fpga-prototyping-boards/mps3>`_
113 - `Arm DesignStart FPGA on AWS Cloud.
114 <https://developer.arm.com/docs/101965/0102/arm-designstart-fpga-on-cloud-arm-ds-getting-started>`_
115 - `NXP LPC55S69.
116 <https://www.nxp.com/products/processors-and-microcontrollers/arm-microcontrollers/general-purpose-mcus/lpc5500-cortex-m33/lpcxpresso55s69-development-board:LPC55S69-EVK>`_
Ludovic Barre8a77bdd2020-03-26 19:53:07 +0100117 - `NUCLEO L552ZE Q.
118 <https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-l552ze-q.html>`_
119 - `DISCO L562QE.
120 <https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-discovery-kits/stm32l562e-dk.html>`_
Tamas Banab1c8282020-04-29 10:00:04 +0100121
122 - Cortex-M23 system:
123
124 - `FPGA image loaded on MPS2 board.
125 <https://developer.arm.com/products/system-design/development-boards/cortex-m-prototyping-systems/mps2>`_
126
127 - Dual Core Cortex-M system:
128
129 - `Cypress PSoc64.
130 <https://www.cypress.com/documentation/product-brochures/cypress-psoc-64-secure-microcontrollers>`_
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +0000131
132####################
133Feedback and support
134####################
Minos Galanakisfc6804e2020-03-10 11:03:34 +0000135For this release, feedback is requested via email to
136`tf-m@lists.trustedfirmware.org <tf-m@lists.trustedfirmware.org>`__.
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +0000137
138###############
139Version history
140###############
Soby Mathewd8efe8f2020-03-16 15:19:05 +0000141+-------------+--------------+--------------------+---------------+
142| Version | Date | Description | PSA-arch tag |
143+=============+==============+====================+===============+
144| v1.0-beta | 2019-02-15 | 1.0-beta release | - |
145+-------------+--------------+--------------------+---------------+
146| v1.0-RC1 | 2019-05-31 | 1.0-RC1 release | v19.06_API0.9 |
147+-------------+--------------+--------------------+---------------+
148| v1.0-RC2 | 2019-10-09 | 1.0-RC2 release | v19.06_API0.9 |
149+-------------+--------------+--------------------+---------------+
150| v1.0-RC3 | 2019-11-29 | 1.0-RC3 release | v19.06_API0.9 |
151+-------------+--------------+--------------------+---------------+
152| v1.0 | 2020-03-27 | 1.0 release | v20.03_API1.0 |
153+-------------+--------------+--------------------+---------------+
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +0000154
155--------------
156
Minos Galanakisfc6804e2020-03-10 11:03:34 +0000157*Copyright (c) 2017-2020, Arm Limited. All rights reserved.*