readme.rst 10.7 KB
Newer Older
1
Trusted Firmware-A - version 1.5
Dan Handley's avatar
Dan Handley committed
2
================================
3

Dan Handley's avatar
Dan Handley committed
4
Trusted Firmware-A (TF-A) provides a reference implementation of secure world
5
6
7
software for `Armv7-A and Armv8-A`_, including a `Secure Monitor`_ executing
at Exception Level 3 (EL3). It implements various Arm interface standards,
such as:
Dan Handley's avatar
Dan Handley committed
8
9

-  The `Power State Coordination Interface (PSCI)`_
Dan Handley's avatar
Dan Handley committed
10
-  Trusted Board Boot Requirements (TBBR, Arm DEN0006C-1)
Dan Handley's avatar
Dan Handley committed
11
12
-  `SMC Calling Convention`_
-  `System Control and Management Interface`_
13
-  `Software Delegated Exception Interface (SDEI)`_
Dan Handley's avatar
Dan Handley committed
14

15
16
Where possible, the code is designed for reuse or porting to other Armv7-A and
Armv8-A model and hardware platforms.
17

Dan Handley's avatar
Dan Handley committed
18
19
Arm will continue development in collaboration with interested parties to
provide a full reference implementation of Secure Monitor code and Arm standards
20
21
to the benefit of all developers working with Armv7-A and Armv8-A TrustZone
technology.
22
23
24
25
26
27
28
29
30
31
32

License
-------

The software is provided under a BSD-3-Clause `license`_. Contributions to this
project are accepted under the same license with developer sign-off as
described in the `Contributing Guidelines`_.

This project contains code from other projects as listed below. The original
license text is included in those source files.

33
34
-  The stdlib source code is derived from FreeBSD code, which uses various
   BSD licenses, including BSD-3-Clause and BSD-2-Clause.
35
36
37
38

-  The libfdt source code is dual licensed. It is used by this project under
   the terms of the BSD-2-Clause license.

Dan Handley's avatar
Dan Handley committed
39
-  The LLVM compiler-rt source code is dual licensed. It is used by this
40
41
   project under the terms of the NCSA license (also known as the University of
   Illinois/NCSA Open Source License).
Dan Handley's avatar
Dan Handley committed
42

43
44
45
46
-  The zlib source code is licensed under the Zlib license, which is a
   permissive license compatible with BSD-3-Clause.

This release
47
48
49
------------

This release provides a suitable starting point for productization of secure
Dan Handley's avatar
Dan Handley committed
50
51
world boot and runtime firmware, in either the AArch32 or AArch64 execution
state.
52
53

Users are encouraged to do their own security validation, including penetration
Dan Handley's avatar
Dan Handley committed
54
testing, on any secure world code derived from TF-A.
55
56
57
58

Functionality
~~~~~~~~~~~~~

Dan Handley's avatar
Dan Handley committed
59
60
-  Initialization of the secure world, for example exception vectors, control
   registers and interrupts for the platform.
61
62

-  Library support for CPU specific reset and power down sequences. This
Dan Handley's avatar
Dan Handley committed
63
   includes support for errata workarounds and the latest Arm DynamIQ CPUs.
64

Dan Handley's avatar
Dan Handley committed
65
-  Drivers to enable standard initialization of Arm System IP, for example
Dan Handley's avatar
Dan Handley committed
66
67
68
69
70
   Generic Interrupt Controller (GIC), Cache Coherent Interconnect (CCI),
   Cache Coherent Network (CCN), Network Interconnect (NIC) and TrustZone
   Controller (TZC).

-  A generic `SCMI`_ driver to interface with conforming power controllers, for
Dan Handley's avatar
Dan Handley committed
71
   example the Arm System Control Processor (SCP).
72

Dan Handley's avatar
Dan Handley committed
73
74
-  SMC (Secure Monitor Call) handling, conforming to the `SMC Calling
   Convention`_ using an EL3 runtime services framework.
75

Dan Handley's avatar
Dan Handley committed
76
77
78
79
80
-  `PSCI`_ library support for CPU, cluster and system power management
   use-cases.
   This library is pre-integrated with the AArch64 EL3 Runtime Software, and
   is also suitable for integration with other AArch32 EL3 Runtime Software,
   for example an AArch32 Secure OS.
81

Dan Handley's avatar
Dan Handley committed
82
83
-  A minimal AArch32 Secure Payload (SP\_MIN) to demonstrate `PSCI`_ library
   integration with AArch32 EL3 Runtime Software.
84
85
86

-  Secure Monitor library code such as world switching, EL1 context management
   and interrupt routing.
Dan Handley's avatar
Dan Handley committed
87
88
89
   When a Secure-EL1 Payload (SP) is present, for example a Secure OS, the
   AArch64 EL3 Runtime Software must be integrated with a dispatcher component
   (SPD) to customize the interaction with the SP.
90

Dan Handley's avatar
Dan Handley committed
91
92
-  A Test SP/SPD to demonstrate AArch64 Secure Monitor functionality and SP
   interaction with PSCI.
93

Dan Handley's avatar
Dan Handley committed
94
95
-  SPDs for the `OP-TEE Secure OS`_, `NVidia Trusted Little Kernel`_
   and `Trusty Secure OS`_.
96
97

-  A Trusted Board Boot implementation, conforming to all mandatory TBBR
Dan Handley's avatar
Dan Handley committed
98
99
100
101
   requirements. This includes image authentication, Firmware Update (or
   recovery mode), and packaging of the various firmware images into a
   Firmware Image Package (FIP).

102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
-  Pre-integration of TBB with the Arm CryptoCell product, to take advantage of
   its hardware Root of Trust and crypto acceleration services.

-  Reliability, Availability, and Serviceability (RAS) functionality, including

   -  A Secure Partition Manager (SPM) to manage Secure Partitions in
      Secure-EL0, which can be used to implement simple management and
      security services.

   -  An SDEI dispatcher to route interrupt-based SDEI events.

   -  An Exception Handling Framework (EHF) that allows dispatching of EL3
      interrupts to their registered handlers, to facilitate firmware-first
      error handling.

-  A dynamic configuration framework that enables each of the firmware images
   to be configured at runtime if required by the platform. It also enables
   loading of a hardware configuration (for example, a kernel device tree)
   as part of the FIP, to be passed through the firmware stages.
121

Dan Handley's avatar
Dan Handley committed
122
123
-  Support for alternative boot flows, for example to support platforms where
   the EL3 Runtime Software is loaded using other firmware or a separate
124
125
   secure system processor, or where a non-TF-A ROM expects BL2 to be loaded
   at EL3.
Dan Handley's avatar
Dan Handley committed
126

Dan Handley's avatar
Dan Handley committed
127
-  Support for the GCC, LLVM and Arm Compiler 6 toolchains.
128
129
130
131
132
133
134
135

For a full description of functionality and implementation details, please
see the `Firmware Design`_ and supporting documentation. The `Change Log`_
provides details of changes made since the last release.

Platforms
~~~~~~~~~

Dan Handley's avatar
Dan Handley committed
136
Various AArch32 and AArch64 builds of this release has been tested on variants
Dan Handley's avatar
Dan Handley committed
137
r0, r1 and r2 of the `Juno Arm Development Platform`_.
Dan Handley's avatar
Dan Handley committed
138

Dan Handley's avatar
Dan Handley committed
139
Various AArch64 builds of this release have been tested on the following Arm
140
141
Fixed Virtual Platforms (`FVP`_) without shifted affinities, and that do not
support threaded CPU cores (64-bit host machine only):
142

143
NOTE: Unless otherwise stated, the FVP Version is 11.2 Build 11.2.33.
144

Dan Handley's avatar
Dan Handley committed
145
-  ``Foundation_Platform``
146
-  ``FVP_Base_AEMv8A-AEMv8A`` (and also Version 9.0, Build 0.8.9005)
Dan Handley's avatar
Dan Handley committed
147
148
149
150
151
152
153
154
-  ``FVP_Base_Cortex-A35x4``
-  ``FVP_Base_Cortex-A53x4``
-  ``FVP_Base_Cortex-A57x4-A53x4``
-  ``FVP_Base_Cortex-A57x4``
-  ``FVP_Base_Cortex-A72x4-A53x4``
-  ``FVP_Base_Cortex-A72x4``
-  ``FVP_Base_Cortex-A73x4-A53x4``
-  ``FVP_Base_Cortex-A73x4``
155
156
157
158
159
160
161
162
163

Additionally, various AArch64 builds were tested on the following Arm `FVP`_ s
with shifted affinities, supporting threaded CPU cores (64-bit host machine
only).

-  ``FVP_Base_Cortex-A55x4-A75x4`` (Version 0.0, build 0.0.4395)
-  ``FVP_Base_Cortex-A55x4`` (Version 0.0, build 0.0.4395)
-  ``FVP_Base_Cortex-A75x4`` (Version 0.0, build 0.0.4395)
-  ``FVP_Base_RevC-2xAEMv8A``
164

Dan Handley's avatar
Dan Handley committed
165
Various AArch32 builds of this release has been tested on the following Arm
166
167
`FVP`_\ s without shifted affinities, and that do not support threaded CPU cores
(64-bit host machine only):
168

169
-  ``FVP_Base_AEMv8A-AEMv8A``
Dan Handley's avatar
Dan Handley committed
170
-  ``FVP_Base_Cortex-A32x4``
171
172

The Foundation FVP can be downloaded free of charge. The Base FVPs can be
Dan Handley's avatar
Dan Handley committed
173
licensed from Arm. See the `Arm FVP website`_.
Dan Handley's avatar
Dan Handley committed
174

175
All the above platforms have been tested with `Linaro Release 17.10`_.
176
177
178

This release also contains the following platform support:

179
-  HiKey, HiKey960 and Poplar boards
180
-  MediaTek MT6795 and MT8173 SoCs
Dan Handley's avatar
Dan Handley committed
181
-  NVidia T132, T186 and T210 SoCs
182
-  QEMU emulator
183
-  Raspberry Pi 3 board
Dan Handley's avatar
Dan Handley committed
184
-  RockChip RK3328, RK3368 and RK3399 SoCs
185
-  Socionext UniPhier SoC family and SynQuacer SC2A11 SoCs
186
-  Texas Instruments K3 SoCs
187
188
-  Xilinx Zynq UltraScale + MPSoC

189
Still to come
190
191
192
193
~~~~~~~~~~~~~

-  More platform support.

194
195
-  Improved dynamic configuration support.

196
197
-  Ongoing support for new architectural features, CPUs and System IP.

198
-  Ongoing support for new Arm system architecture specifications.
199
200
201

-  Ongoing security hardening, optimization and quality improvements.

Dan Handley's avatar
Dan Handley committed
202
203
For a full list of detailed issues in the current code, please see the `Change
Log`_ and the `GitHub issue tracker`_.
204

205
Getting started
206
207
---------------

Dan Handley's avatar
Dan Handley committed
208
Get the TF-A source code from `GitHub`_.
209
210

See the `User Guide`_ for instructions on how to install, build and use
Dan Handley's avatar
Dan Handley committed
211
the TF-A with the Arm `FVP`_\ s.
212

Dan Handley's avatar
Dan Handley committed
213
See the `Firmware Design`_ for information on how the TF-A works.
214
215

See the `Porting Guide`_ as well for information about how to use this
216
software on another Armv7-A or Armv8-A platform.
217
218
219
220
221
222
223
224

See the `Contributing Guidelines`_ for information on how to contribute to this
project and the `Acknowledgments`_ file for a list of contributors to the
project.

Feedback and support
~~~~~~~~~~~~~~~~~~~~

Dan Handley's avatar
Dan Handley committed
225
226
227
Arm welcomes any feedback on TF-A. If you think you have found a security
vulnerability, please report this using the process defined in the TF-A
`Security Centre`_. For all other feedback, please use the
Dan Handley's avatar
Dan Handley committed
228
`GitHub issue tracker`_.
229

Dan Handley's avatar
Dan Handley committed
230
Arm licensees may contact Arm directly via their partner managers.
231
232
233

--------------

Dan Handley's avatar
Dan Handley committed
234
*Copyright (c) 2013-2018, Arm Limited and Contributors. All rights reserved.*
235

236
.. _Armv7-A and Armv8-A: https://developer.arm.com/products/architecture/a-profile
237
.. _Secure Monitor: http://www.arm.com/products/processors/technologies/trustzone/tee-smc.php
Dan Handley's avatar
Dan Handley committed
238
239
240
241
242
.. _Power State Coordination Interface (PSCI): PSCI_
.. _PSCI: http://infocenter.arm.com/help/topic/com.arm.doc.den0022d/Power_State_Coordination_Interface_PDD_v1_1_DEN0022D.pdf
.. _SMC Calling Convention: http://infocenter.arm.com/help/topic/com.arm.doc.den0028b/ARM_DEN0028B_SMC_Calling_Convention.pdf
.. _System Control and Management Interface: SCMI_
.. _SCMI: http://infocenter.arm.com/help/topic/com.arm.doc.den0056a/DEN0056A_System_Control_and_Management_Interface.pdf
danh-arm's avatar
danh-arm committed
243
.. _Software Delegated Exception Interface (SDEI): SDEI_
244
.. _SDEI: http://infocenter.arm.com/help/topic/com.arm.doc.den0054a/ARM_DEN0054A_Software_Delegated_Exception_Interface.pdf
Dan Handley's avatar
Dan Handley committed
245
246
.. _Juno Arm Development Platform: http://www.arm.com/products/tools/development-boards/versatile-express/juno-arm-development-platform.php
.. _Arm FVP website: FVP_
Dan Handley's avatar
Dan Handley committed
247
.. _FVP: https://developer.arm.com/products/system-design/fixed-virtual-platforms
248
.. _Linaro Release 17.10: https://community.arm.com/dev-platforms/b/documents/posts/linaro-release-notes-deprecated#LinaroRelease17.10
249
250
.. _OP-TEE Secure OS: https://github.com/OP-TEE/optee_os
.. _NVidia Trusted Little Kernel: http://nv-tegra.nvidia.com/gitweb/?p=3rdparty/ote_partner/tlk.git;a=summary
Dan Handley's avatar
Dan Handley committed
251
252
253
254
255
256
257
.. _Trusty Secure OS: https://source.android.com/security/trusty
.. _GitHub: https://www.github.com/ARM-software/arm-trusted-firmware
.. _GitHub issue tracker: https://github.com/ARM-software/tf-issues/issues
.. _Security Centre: https://github.com/ARM-software/arm-trusted-firmware/wiki/ARM-Trusted-Firmware-Security-Centre
.. _license: ./license.rst
.. _Contributing Guidelines: ./contributing.rst
.. _Acknowledgments: ./acknowledgements.rst
258
259
260
261
.. _Firmware Design: ./docs/firmware-design.rst
.. _Change Log: ./docs/change-log.rst
.. _User Guide: ./docs/user-guide.rst
.. _Porting Guide: ./docs/porting-guide.rst