doc: Update readme.rst for v2.1 release
[project/bcm63xx/atf.git] / readme.rst
1 Trusted Firmware-A - version 2.1
2 ================================
3
4 Trusted Firmware-A (TF-A) provides a reference implementation of secure world
5 software for `Armv7-A and Armv8-A`_, including a `Secure Monitor`_ executing
6 at Exception Level 3 (EL3). It implements various Arm interface standards,
7 such as:
8
9 - The `Power State Coordination Interface (PSCI)`_
10 - Trusted Board Boot Requirements (TBBR, Arm DEN0006C-1)
11 - `SMC Calling Convention`_
12 - `System Control and Management Interface (SCMI)`_
13 - `Software Delegated Exception Interface (SDEI)`_
14
15 Where possible, the code is designed for reuse or porting to other Armv7-A and
16 Armv8-A model and hardware platforms.
17
18 This release provides a suitable starting point for productization of secure
19 world boot and runtime firmware, in either the AArch32 or AArch64 execution
20 states.
21
22 Users are encouraged to do their own security validation, including penetration
23 testing, on any secure world code derived from TF-A.
24
25 Arm will continue development in collaboration with interested parties to
26 provide a full reference implementation of Secure Monitor code and Arm standards
27 to the benefit of all developers working with Armv7-A and Armv8-A TrustZone
28 technology.
29
30 License
31 -------
32
33 The software is provided under a BSD-3-Clause `license`_. Contributions to this
34 project are accepted under the same license with developer sign-off as
35 described in the `Contributing Guidelines`_.
36
37 This project contains code from other projects as listed below. The original
38 license text is included in those source files.
39
40 - The libc source code is derived from `FreeBSD`_ and `SCC`_. FreeBSD uses
41 various BSD licenses, including BSD-3-Clause and BSD-2-Clause. The SCC code
42 is used under the BSD-3-Clause license with the author's permission.
43
44 - The libfdt source code is disjunctively dual licensed
45 (GPL-2.0+ OR BSD-2-Clause). It is used by this project under the terms of
46 the BSD-2-Clause license. Any contributions to this code must be made under
47 the terms of both licenses.
48
49 - The LLVM compiler-rt source code is disjunctively dual licensed
50 (NCSA OR MIT). It is used by this project under the terms of the NCSA
51 license (also known as the University of Illinois/NCSA Open Source License),
52 which is a permissive license compatible with BSD-3-Clause. Any
53 contributions to this code must be made under the terms of both licenses.
54
55 - The zlib source code is licensed under the Zlib license, which is a
56 permissive license compatible with BSD-3-Clause.
57
58 - Some STMicroelectronics platform source code is disjunctively dual licensed
59 (GPL-2.0+ OR BSD-3-Clause). It is used by this project under the terms of the
60 BSD-3-Clause license. Any contributions to this code must be made under the
61 terms of both licenses.
62
63 Functionality
64 -------------
65
66 - Initialization of the secure world, for example exception vectors, control
67 registers and interrupts for the platform.
68
69 - Library support for CPU specific reset and power down sequences. This
70 includes support for errata workarounds and the latest Arm DynamIQ CPUs.
71
72 - Drivers to enable standard initialization of Arm System IP, for example
73 Generic Interrupt Controller (GIC), Cache Coherent Interconnect (CCI),
74 Cache Coherent Network (CCN), Network Interconnect (NIC) and TrustZone
75 Controller (TZC).
76
77 - A generic `SCMI`_ driver to interface with conforming power controllers, for
78 example the Arm System Control Processor (SCP).
79
80 - SMC (Secure Monitor Call) handling, conforming to the `SMC Calling
81 Convention`_ using an EL3 runtime services framework.
82
83 - `PSCI`_ library support for CPU, cluster and system power management
84 use-cases.
85 This library is pre-integrated with the AArch64 EL3 Runtime Software, and
86 is also suitable for integration with other AArch32 EL3 Runtime Software,
87 for example an AArch32 Secure OS.
88
89 - A minimal AArch32 Secure Payload (SP\_MIN) to demonstrate `PSCI`_ library
90 integration with AArch32 EL3 Runtime Software.
91
92 - Secure Monitor library code such as world switching, EL1 context management
93 and interrupt routing.
94 When a Secure-EL1 Payload (SP) is present, for example a Secure OS, the
95 AArch64 EL3 Runtime Software must be integrated with a Secure Payload
96 Dispatcher (SPD) component to customize the interaction with the SP.
97
98 - A Test SP and SPD to demonstrate AArch64 Secure Monitor functionality and SP
99 interaction with PSCI.
100
101 - SPDs for the `OP-TEE Secure OS`_, `NVIDIA Trusted Little Kernel`_
102 and `Trusty Secure OS`_.
103
104 - A Trusted Board Boot implementation, conforming to all mandatory TBBR
105 requirements. This includes image authentication, Firmware Update (or
106 recovery mode), and packaging of the various firmware images into a
107 Firmware Image Package (FIP).
108
109 - Pre-integration of TBB with the Arm CryptoCell product, to take advantage of
110 its hardware Root of Trust and crypto acceleration services.
111
112 - Reliability, Availability, and Serviceability (RAS) functionality, including
113
114 - A Secure Partition Manager (SPM) to manage Secure Partitions in
115 Secure-EL0, which can be used to implement simple management and
116 security services.
117
118 - An SDEI dispatcher to route interrupt-based SDEI events.
119
120 - An Exception Handling Framework (EHF) that allows dispatching of EL3
121 interrupts to their registered handlers, to facilitate firmware-first
122 error handling.
123
124 - A dynamic configuration framework that enables each of the firmware images
125 to be configured at runtime if required by the platform. It also enables
126 loading of a hardware configuration (for example, a kernel device tree)
127 as part of the FIP, to be passed through the firmware stages.
128
129 - Support for alternative boot flows, for example to support platforms where
130 the EL3 Runtime Software is loaded using other firmware or a separate
131 secure system processor, or where a non-TF-A ROM expects BL2 to be loaded
132 at EL3.
133
134 - Support for the GCC, LLVM and Arm Compiler 6 toolchains.
135
136 - Support for combining several libraries into a "romlib" image that may be
137 shared across images to reduce memory footprint. The romlib image is stored
138 in ROM but is accessed through a jump-table that may be stored
139 in read-write memory, allowing for the library code to be patched.
140
141 - A prototype implementation of a Secure Partition Manager (SPM) that is based
142 on the SPCI and SPRT specifications.
143
144 - Support for ARMv8.3 pointer authentication in the normal and secure worlds.
145 The use of pointer authentication in the normal world is enabled whenever
146 architectural support is available, without the need for additional build
147 flags. Use of pointer authentication in the secure world remains an
148 experimental configuration at this time and requires the ``ENABLE_PAUTH``
149 build flag to be set.
150
151 - Position-Independent Executable (PIE) support. Initially for BL31 only, with
152 further support to be added in a future release.
153
154 For a full description of functionality and implementation details, please
155 see the `Firmware Design`_ and supporting documentation. The `Change Log`_
156 provides details of changes made since the last release.
157
158 Platforms
159 ---------
160
161 Various AArch32 and AArch64 builds of this release have been tested on r0, r1
162 and r2 variants of the `Juno Arm Development Platform`_.
163
164 Various AArch64 builds of this release have been tested on the following Arm
165 Fixed Virtual Platforms (`FVP`_) without shifted affinities that do not
166 support threaded CPU cores (64-bit host machine only):
167
168 NOTE: Unless otherwise stated, the model version is Version 11.4 Build 37.
169
170 - ``FVP_Base_Aresx4``
171 - ``FVP_Base_AEMv8A-AEMv8A``
172 - ``FVP_Base_AEMv8A-AEMv8A-AEMv8A-AEMv8A-CCN502``
173 - ``FVP_Base_AEMv8A-AEMv8A``
174 - ``FVP_Base_RevC-2xAEMv8A``
175 - ``FVP_Base_Cortex-A32x4``
176 - ``FVP_Base_Cortex-A35x4``
177 - ``FVP_Base_Cortex-A53x4``
178 - ``FVP_Base_Cortex-A55x4+Cortex-A75x4``
179 - ``FVP_Base_Cortex-A55x4``
180 - ``FVP_Base_Cortex-A57x4-A53x4``
181 - ``FVP_Base_Cortex-A57x4``
182 - ``FVP_Base_Cortex-A72x4-A53x4``
183 - ``FVP_Base_Cortex-A72x4``
184 - ``FVP_Base_Cortex-A73x4-A53x4``
185 - ``FVP_Base_Cortex-A73x4``
186 - ``FVP_Base_Cortex-A75x4``
187 - ``FVP_Base_Cortex-A76x4``
188 - ``FVP_CSS_SGI-575`` (Version 11.3 build 40)
189 - ``Foundation_Platform``
190
191 The latest version of the AArch32 build of TF-A has been tested on the following
192 Arm FVPs without shifted affinities that do not support threaded CPU cores
193 (64-bit host machine only).
194
195 - ``FVP_Base_AEMv8A-AEMv8A``
196 - ``FVP_Base_Cortex-A32x4``
197
198 The Foundation FVP can be downloaded free of charge. The Base FVPs can be
199 licensed from Arm. See the `Arm FVP website`_.
200
201 All the above platforms have been tested with `Linaro Release 18.04`_.
202
203 This release also contains the following platform support:
204
205 - Allwinner sun50i_a64 and sun50i_h6
206 - Amlogic Meson S905 (GXBB)
207 - Arm Juno Software Development Platform
208 - Arm Neoverse N1 System Development Platform (N1SDP)
209 - Arm Neoverse Reference Design N1 Edge (RD-N1-Edge) FVP
210 - Arm Neoverse Reference Design E1 Edge (RD-E1-Edge) FVP
211 - Arm SGI-575 and SGM-775
212 - Arm Versatile Express FVP
213 - HiKey, HiKey960 and Poplar boards
214 - Intel Stratix 10 SoC FPGA
215 - Marvell Armada 3700 and 8K
216 - MediaTek MT6795 and MT8173 SoCs
217 - NVIDIA T132, T186 and T210 SoCs
218 - NXP QorIQ LS1043A, i.MX8MM, i.MX8MQ, i.MX8QX, i.MX8QM and i.MX7Solo WaRP7
219 - QEMU
220 - Raspberry Pi 3
221 - Renesas R-Car Generation 3
222 - RockChip RK3328, RK3368 and RK3399 SoCs
223 - Socionext UniPhier SoC family and SynQuacer SC2A11 SoCs
224 - STMicroelectronics STM32MP1
225 - Texas Instruments K3 SoCs
226 - Xilinx Versal and Zynq UltraScale + MPSoC
227
228 Still to come
229 -------------
230
231 - Support for additional platforms.
232
233 - Refinements to Position Independent Executable (PIE) support.
234
235 - Refinements to SPCI-compliant SPM implementation.
236
237 - Documentation enhancements.
238
239 - Ongoing support for new architectural features, CPUs and System IP.
240
241 - Ongoing support for new Arm system architecture specifications.
242
243 - Ongoing security hardening, optimization and quality improvements.
244
245 For a full list of detailed issues in the current code, please see the `Change
246 Log`_ and the `GitHub issue tracker`_.
247
248 Getting started
249 ---------------
250
251 Get the TF-A source code from `GitHub`_.
252
253 See the `User Guide`_ for instructions on how to install, build and use TF-A
254 with the Arm `FVP`_\ s.
255
256 See the `Firmware Design`_ for information on how TF-A works.
257
258 See the `Porting Guide`_ as well for information about how to use this
259 software on another Armv7-A or Armv8-A platform.
260
261 See the `Contributing Guidelines`_ for information on how to contribute to this
262 project and the `Acknowledgments`_ file for a list of contributors to the
263 project.
264
265 Documentation contents
266 ~~~~~~~~~~~~~~~~~~~~~~
267
268 The `Trusted Firmware-A Documentation Contents`_ page contains an overview of
269 the documentation that is available, with links to facilitate easier browsing.
270
271 IRC channel
272 ~~~~~~~~~~~
273
274 Development discussion takes place on the #trusted-firmware-a channel
275 on the Freenode IRC network. This is not an official support channel.
276 If you have an issue to raise, please use the `GitHub issue tracker`_.
277
278 Feedback and support
279 ~~~~~~~~~~~~~~~~~~~~
280
281 Arm welcomes any feedback on TF-A. If you think you have found a security
282 vulnerability, please report this using the process defined in the TF-A
283 `Security Center`_. For all other feedback, please use the
284 `GitHub issue tracker`_.
285
286 Arm licensees may contact Arm directly via their partner managers.
287
288 Security advisories
289 -------------------
290
291 - `Security Advisory TFV-1`_
292 - `Security Advisory TFV-2`_
293 - `Security Advisory TFV-3`_
294 - `Security Advisory TFV-4`_
295 - `Security Advisory TFV-5`_
296 - `Security Advisory TFV-6`_
297 - `Security Advisory TFV-7`_
298 - `Security Advisory TFV-8`_
299
300
301 --------------
302
303 *Copyright (c) 2013-2019, Arm Limited and Contributors. All rights reserved.*
304
305 .. _Armv7-A and Armv8-A: https://developer.arm.com/products/architecture/a-profile
306 .. _Secure Monitor: http://www.arm.com/products/processors/technologies/trustzone/tee-smc.php
307 .. _Power State Coordination Interface (PSCI): PSCI_
308 .. _PSCI: http://infocenter.arm.com/help/topic/com.arm.doc.den0022d/Power_State_Coordination_Interface_PDD_v1_1_DEN0022D.pdf
309 .. _SMC Calling Convention: http://infocenter.arm.com/help/topic/com.arm.doc.den0028b/ARM_DEN0028B_SMC_Calling_Convention.pdf
310 .. _System Control and Management Interface (SCMI): SCMI_
311 .. _SCMI: http://infocenter.arm.com/help/topic/com.arm.doc.den0056a/DEN0056A_System_Control_and_Management_Interface.pdf
312 .. _Software Delegated Exception Interface (SDEI): SDEI_
313 .. _SDEI: http://infocenter.arm.com/help/topic/com.arm.doc.den0054a/ARM_DEN0054A_Software_Delegated_Exception_Interface.pdf
314 .. _Juno Arm Development Platform: http://www.arm.com/products/tools/development-boards/versatile-express/juno-arm-development-platform.php
315 .. _Arm FVP website: FVP_
316 .. _FVP: https://developer.arm.com/products/system-design/fixed-virtual-platforms
317 .. _Linaro Release 18.04: https://community.arm.com/dev-platforms/b/documents/posts/linaro-release-notes-deprecated#LinaroRelease18.04
318 .. _OP-TEE Secure OS: https://github.com/OP-TEE/optee_os
319 .. _NVIDIA Trusted Little Kernel: http://nv-tegra.nvidia.com/gitweb/?p=3rdparty/ote_partner/tlk.git;a=summary
320 .. _Trusty Secure OS: https://source.android.com/security/trusty
321 .. _GitHub: https://www.github.com/ARM-software/arm-trusted-firmware
322 .. _GitHub issue tracker: https://github.com/ARM-software/tf-issues/issues
323 .. _Security Center: ./docs/security-center.rst
324 .. _license: ./license.rst
325 .. _Contributing Guidelines: ./contributing.rst
326 .. _Acknowledgments: ./acknowledgements.rst
327 .. _Firmware Design: ./docs/firmware-design.rst
328 .. _Change Log: ./docs/change-log.rst
329 .. _User Guide: ./docs/user-guide.rst
330 .. _Porting Guide: ./docs/porting-guide.rst
331 .. _FreeBSD: http://www.freebsd.org
332 .. _SCC: http://www.simple-cc.org/
333 .. _Security Advisory TFV-1: ./docs/security_advisories/security-advisory-tfv-1.rst
334 .. _Security Advisory TFV-2: ./docs/security_advisories/security-advisory-tfv-2.rst
335 .. _Security Advisory TFV-3: ./docs/security_advisories/security-advisory-tfv-3.rst
336 .. _Security Advisory TFV-4: ./docs/security_advisories/security-advisory-tfv-4.rst
337 .. _Security Advisory TFV-5: ./docs/security_advisories/security-advisory-tfv-5.rst
338 .. _Security Advisory TFV-6: ./docs/security_advisories/security-advisory-tfv-6.rst
339 .. _Security Advisory TFV-7: ./docs/security_advisories/security-advisory-tfv-7.rst
340 .. _Security Advisory TFV-8: ./docs/security_advisories/security-advisory-tfv-8.rst
341 .. _Trusted Firmware-A Documentation Contents: ./docs/contents.rst