blob: 610bddf68cc6bb57b02718b22b7ea8cd8b0a92f4 [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 Mathewd8efe8f2020-03-16 15:19:05 +000039#############
40Release Notes
41#############
Minos Galanakise4094012020-06-12 14:25:34 +010042The :doc:`Change Log & Release Notes </docs/reference/changelog>` provides details of
Soby Mathewd8efe8f2020-03-16 15:19:05 +000043major features of the release and platforms supported.
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000044
45###############
46Getting Started
47###############
48
49************
50Prerequisite
51************
52Trusted Firmware M provides a reference implementation of PSA specifications.
53It is assumed that the reader is familiar with PSA concepts and terms. PSA
Ken Liufc750062020-05-09 15:16:20 +080054specifications can be found at
55`Platform Security Architecture Resources <https://developer.arm.com/architectures/security-architectures/platform-security-architecture>`__.
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000056
57The current TF-M implementation specifically targets TrustZone for ARMv8-M so a
58good understanding of the v8-M architecture is also necessary. A good place to
59get started with ARMv8-M is
60`developer.arm.com <https://developer.arm.com/technologies/trustzone>`__.
61
62**********************
63Really getting started
64**********************
Ken Liufc750062020-05-09 15:16:20 +080065Trusted Firmware M source code is available on
Minos Galanakis0f39fa52020-06-08 16:53:53 +010066`git.trustedfirmware.org <https://git.trustedfirmware.org/TF-M/trusted-firmware-m.git/>`__.
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000067
68To build & run TF-M:
69
Minos Galanakise4094012020-06-12 14:25:34 +010070 - Follow the :doc:`SW requirements guide </docs/getting_started/tfm_sw_requirement>`
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000071 to set up your environment.
72 - Follow the
Minos Galanakise4094012020-06-12 14:25:34 +010073 :doc:`Build instructions </docs/getting_started/tfm_build_instruction>` to compile
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000074 and build the TF-M source.
Minos Galanakise4094012020-06-12 14:25:34 +010075 - Follow the :doc:`User guide </docs/getting_started/tfm_user_guide>` for information
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000076 on running the example.
77
78To port TF-M to a another system or OS, follow the
Minos Galanakise4094012020-06-12 14:25:34 +010079:doc:`OS Integration Guide </docs/getting_started/tfm_integration_guide>`
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000080
Minos Galanakise4094012020-06-12 14:25:34 +010081Please also see the :doc:`glossary </docs/reference/glossary>` of terms used in the project.
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000082
Minos Galanakise4094012020-06-12 14:25:34 +010083:doc:`Contributing Guidelines </docs/contributing/contributing>` contains guidance on how to
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +000084contribute to this project.
85
86Further documents can be found in the ``docs`` folder.
87
Tamas Banab1c8282020-04-29 10:00:04 +010088###################
89Platforms supported
90###################
Mark Horvath9a5a9b92019-11-29 15:57:55 +010091 - Cortex-M55 system:
92
93 - `Fast model FVP_SSE300_MPS2.
94 <https://developer.arm.com/tools-and-software/open-source-software/arm-platforms-software/arm-ecosystem-fvps>`_
95
Tamas Banab1c8282020-04-29 10:00:04 +010096 - Cortex-M33 system:
97
98 - `FPGA image loaded on MPS2 board.
99 <https://developer.arm.com/products/system-design/development-boards/cortex-m-prototyping-systems/mps2>`_
100 - `Fast model FVP_MPS2_AEMv8M.
101 <https://developer.arm.com/products/system-design/fixed-virtual-platforms>`_
102 - `Musca-A test chip board.
103 <https://developer.arm.com/products/system-design/development-boards/iot-test-chips-and-boards/musca-a-test-chip-board>`_
104 - `Musca-B1 test chip board.
105 <https://developer.arm.com/products/system-design/development-boards/iot-test-chips-and-boards/musca-b-test-chip-board>`_
106 - `Musca-S1 test chip board.
107 <https://developer.arm.com/tools-and-software/development-boards/iot-test-chips-and-boards/musca-s1-test-chip-board>`_
108 - `FPGA image loaded on MPS3 board.
109 <https://developer.arm.com/tools-and-software/development-boards/fpga-prototyping-boards/mps3>`_
110 - `Arm DesignStart FPGA on AWS Cloud.
111 <https://developer.arm.com/docs/101965/0102/arm-designstart-fpga-on-cloud-arm-ds-getting-started>`_
112 - `NXP LPC55S69.
113 <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 +0100114 - `NUCLEO L552ZE Q.
115 <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>`_
116 - `DISCO L562QE.
117 <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 +0100118
119 - Cortex-M23 system:
120
121 - `FPGA image loaded on MPS2 board.
122 <https://developer.arm.com/products/system-design/development-boards/cortex-m-prototyping-systems/mps2>`_
123
124 - Dual Core Cortex-M system:
125
126 - `Cypress PSoc64.
127 <https://www.cypress.com/documentation/product-brochures/cypress-psoc-64-secure-microcontrollers>`_
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +0000128
129####################
130Feedback and support
131####################
Minos Galanakisfc6804e2020-03-10 11:03:34 +0000132For this release, feedback is requested via email to
133`tf-m@lists.trustedfirmware.org <tf-m@lists.trustedfirmware.org>`__.
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +0000134
135###############
136Version history
137###############
Soby Mathewd8efe8f2020-03-16 15:19:05 +0000138+-------------+--------------+--------------------+---------------+
139| Version | Date | Description | PSA-arch tag |
140+=============+==============+====================+===============+
141| v1.0-beta | 2019-02-15 | 1.0-beta release | - |
142+-------------+--------------+--------------------+---------------+
143| v1.0-RC1 | 2019-05-31 | 1.0-RC1 release | v19.06_API0.9 |
144+-------------+--------------+--------------------+---------------+
145| v1.0-RC2 | 2019-10-09 | 1.0-RC2 release | v19.06_API0.9 |
146+-------------+--------------+--------------------+---------------+
147| v1.0-RC3 | 2019-11-29 | 1.0-RC3 release | v19.06_API0.9 |
148+-------------+--------------+--------------------+---------------+
149| v1.0 | 2020-03-27 | 1.0 release | v20.03_API1.0 |
150+-------------+--------------+--------------------+---------------+
Galanakis, Minos6ccf7ec2019-11-07 15:15:05 +0000151
152--------------
153
Minos Galanakisfc6804e2020-03-10 11:03:34 +0000154*Copyright (c) 2017-2020, Arm Limited. All rights reserved.*