blob: d7260d7a3bbc069334dde342579f3b40121cc28d [file] [log] [blame]
Paul Beesleyca7145c2019-03-25 16:45:23 +00001Trusted Firmware-A - version 2.1
Dan Handley4def07d2018-03-01 18:44:00 +00002================================
Douglas Raillard6f625742017-06-28 15:23:03 +01003
Dan Handley4def07d2018-03-01 18:44:00 +00004Trusted Firmware-A (TF-A) provides a reference implementation of secure world
Dan Handley5b0b7272018-03-14 13:01:39 +00005software for `Armv7-A and Armv8-A`_, including a `Secure Monitor`_ executing
6at Exception Level 3 (EL3). It implements various Arm interface standards,
7such as:
Dan Handley4bf33492017-07-05 17:40:29 +01008
9- The `Power State Coordination Interface (PSCI)`_
Dan Handley4def07d2018-03-01 18:44:00 +000010- Trusted Board Boot Requirements (TBBR, Arm DEN0006C-1)
Dan Handley4bf33492017-07-05 17:40:29 +010011- `SMC Calling Convention`_
Paul Beesley3c6261b2019-01-10 15:42:39 +000012- `System Control and Management Interface (SCMI)`_
Dan Handley5b0b7272018-03-14 13:01:39 +000013- `Software Delegated Exception Interface (SDEI)`_
Dan Handley4bf33492017-07-05 17:40:29 +010014
Dan Handley5b0b7272018-03-14 13:01:39 +000015Where possible, the code is designed for reuse or porting to other Armv7-A and
16Armv8-A model and hardware platforms.
Douglas Raillard6f625742017-06-28 15:23:03 +010017
Paul Beesleyca7145c2019-03-25 16:45:23 +000018This release provides a suitable starting point for productization of secure
19world boot and runtime firmware, in either the AArch32 or AArch64 execution
20states.
21
22Users are encouraged to do their own security validation, including penetration
23testing, on any secure world code derived from TF-A.
24
Dan Handley4def07d2018-03-01 18:44:00 +000025Arm will continue development in collaboration with interested parties to
26provide a full reference implementation of Secure Monitor code and Arm standards
Dan Handley5b0b7272018-03-14 13:01:39 +000027to the benefit of all developers working with Armv7-A and Armv8-A TrustZone
28technology.
Douglas Raillard6f625742017-06-28 15:23:03 +010029
30License
31-------
32
33The software is provided under a BSD-3-Clause `license`_. Contributions to this
34project are accepted under the same license with developer sign-off as
35described in the `Contributing Guidelines`_.
36
37This project contains code from other projects as listed below. The original
38license text is included in those source files.
39
Antonio Nino Diaz27989a82018-08-17 10:45:47 +010040- 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.
Douglas Raillard6f625742017-06-28 15:23:03 +010043
Dan Handley327cfc22018-07-25 16:42:10 +010044- 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.
Douglas Raillard6f625742017-06-28 15:23:03 +010048
Dan Handley327cfc22018-07-25 16:42:10 +010049- 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.
Dan Handley4bf33492017-07-05 17:40:29 +010054
Dan Handley5b0b7272018-03-14 13:01:39 +000055- The zlib source code is licensed under the Zlib license, which is a
56 permissive license compatible with BSD-3-Clause.
57
Dan Handley327cfc22018-07-25 16:42:10 +010058- 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
Douglas Raillard6f625742017-06-28 15:23:03 +010063Functionality
Paul Beesleyca7145c2019-03-25 16:45:23 +000064-------------
Douglas Raillard6f625742017-06-28 15:23:03 +010065
Dan Handley4bf33492017-07-05 17:40:29 +010066- Initialization of the secure world, for example exception vectors, control
67 registers and interrupts for the platform.
Douglas Raillard6f625742017-06-28 15:23:03 +010068
69- Library support for CPU specific reset and power down sequences. This
Dan Handley4def07d2018-03-01 18:44:00 +000070 includes support for errata workarounds and the latest Arm DynamIQ CPUs.
Douglas Raillard6f625742017-06-28 15:23:03 +010071
Dan Handley4def07d2018-03-01 18:44:00 +000072- Drivers to enable standard initialization of Arm System IP, for example
Dan Handley4bf33492017-07-05 17:40:29 +010073 Generic Interrupt Controller (GIC), Cache Coherent Interconnect (CCI),
74 Cache Coherent Network (CCN), Network Interconnect (NIC) and TrustZone
75 Controller (TZC).
Douglas Raillard6f625742017-06-28 15:23:03 +010076
Dan Handley4bf33492017-07-05 17:40:29 +010077- A generic `SCMI`_ driver to interface with conforming power controllers, for
Dan Handley4def07d2018-03-01 18:44:00 +000078 example the Arm System Control Processor (SCP).
Douglas Raillard6f625742017-06-28 15:23:03 +010079
Dan Handley4bf33492017-07-05 17:40:29 +010080- SMC (Secure Monitor Call) handling, conforming to the `SMC Calling
81 Convention`_ using an EL3 runtime services framework.
Douglas Raillard6f625742017-06-28 15:23:03 +010082
Dan Handley4bf33492017-07-05 17:40:29 +010083- `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.
Douglas Raillard6f625742017-06-28 15:23:03 +010091
92- Secure Monitor library code such as world switching, EL1 context management
93 and interrupt routing.
Dan Handley4bf33492017-07-05 17:40:29 +010094 When a Secure-EL1 Payload (SP) is present, for example a Secure OS, the
Paul Beesleyd1ce4462019-01-10 16:14:04 +000095 AArch64 EL3 Runtime Software must be integrated with a Secure Payload
96 Dispatcher (SPD) component to customize the interaction with the SP.
Douglas Raillard6f625742017-06-28 15:23:03 +010097
Paul Beesleyd1ce4462019-01-10 16:14:04 +000098- A Test SP and SPD to demonstrate AArch64 Secure Monitor functionality and SP
Dan Handley4bf33492017-07-05 17:40:29 +010099 interaction with PSCI.
Douglas Raillard6f625742017-06-28 15:23:03 +0100100
Paul Beesleybe8b4d12019-01-10 15:53:12 +0000101- SPDs for the `OP-TEE Secure OS`_, `NVIDIA Trusted Little Kernel`_
Dan Handley4bf33492017-07-05 17:40:29 +0100102 and `Trusty Secure OS`_.
Douglas Raillard6f625742017-06-28 15:23:03 +0100103
104- A Trusted Board Boot implementation, conforming to all mandatory TBBR
Dan Handley4bf33492017-07-05 17:40:29 +0100105 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).
Douglas Raillard6f625742017-06-28 15:23:03 +0100108
Dan Handley5b0b7272018-03-14 13:01:39 +0000109- 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.
Dan Handley4bf33492017-07-05 17:40:29 +0100128
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
Dan Handley5b0b7272018-03-14 13:01:39 +0000131 secure system processor, or where a non-TF-A ROM expects BL2 to be loaded
132 at EL3.
Dan Handley4bf33492017-07-05 17:40:29 +0100133
Dan Handley4def07d2018-03-01 18:44:00 +0000134- Support for the GCC, LLVM and Arm Compiler 6 toolchains.
Douglas Raillard6f625742017-06-28 15:23:03 +0100135
Paul Beesleyca7145c2019-03-25 16:45:23 +0000136- 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
Joanna Farleyd83bf0b2018-09-11 15:51:31 +0100139 in read-write memory, allowing for the library code to be patched.
140
Paul Beesleyca7145c2019-03-25 16:45:23 +0000141- A prototype implementation of a Secure Partition Manager (SPM) that is based
Paul Beesleybf32bc92019-03-29 10:14:56 +0000142 on the SPCI Alpha 1 and SPRT draft specifications.
Paul Beesleyca7145c2019-03-25 16:45:23 +0000143
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
Douglas Raillard6f625742017-06-28 15:23:03 +0100154For a full description of functionality and implementation details, please
155see the `Firmware Design`_ and supporting documentation. The `Change Log`_
156provides details of changes made since the last release.
157
158Platforms
Paul Beesleyca7145c2019-03-25 16:45:23 +0000159---------
Douglas Raillard6f625742017-06-28 15:23:03 +0100160
Paul Beesleyd1ce4462019-01-10 16:14:04 +0000161Various AArch32 and AArch64 builds of this release have been tested on r0, r1
162and r2 variants of the `Juno Arm Development Platform`_.
Douglas Raillard6f625742017-06-28 15:23:03 +0100163
Ambroise Vincent61924482019-03-28 12:51:48 +0000164The latest version of the AArch64 build of TF-A has been tested on the following
165Arm FVPs without shifted affinities, and that do not support threaded CPU cores
166(64-bit host machine only).
Douglas Raillard6f625742017-06-28 15:23:03 +0100167
Ambroise Vincent61924482019-03-28 12:51:48 +0000168The FVP models used are Version 11.5 Build 33, unless otherwise stated.
Douglas Raillard6f625742017-06-28 15:23:03 +0100169
Joanna Farleyd83bf0b2018-09-11 15:51:31 +0100170- ``FVP_Base_AEMv8A-AEMv8A``
171- ``FVP_Base_AEMv8A-AEMv8A-AEMv8A-AEMv8A-CCN502``
Joanna Farleyd83bf0b2018-09-11 15:51:31 +0100172- ``FVP_Base_RevC-2xAEMv8A``
173- ``FVP_Base_Cortex-A32x4``
Dan Handley4bf33492017-07-05 17:40:29 +0100174- ``FVP_Base_Cortex-A35x4``
175- ``FVP_Base_Cortex-A53x4``
Joanna Farleyd83bf0b2018-09-11 15:51:31 +0100176- ``FVP_Base_Cortex-A55x4+Cortex-A75x4``
177- ``FVP_Base_Cortex-A55x4``
Ambroise Vincent61924482019-03-28 12:51:48 +0000178- ``FVP_Base_Cortex-A57x1-A53x1``
179- ``FVP_Base_Cortex-A57x2-A53x4``
Dan Handley4bf33492017-07-05 17:40:29 +0100180- ``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``
Joanna Farleyd83bf0b2018-09-11 15:51:31 +0100186- ``FVP_Base_Cortex-A75x4``
187- ``FVP_Base_Cortex-A76x4``
Alexei Fedorov9ccc5a52019-04-04 16:26:34 +0100188- ``FVP_Base_Cortex-A76AEx4`` (Tested with internal model)
189- ``FVP_Base_Cortex-A76AEx8`` (Tested with internal model)
Ambroise Vincent61924482019-03-28 12:51:48 +0000190- ``FVP_Base_Neoverse-N1x4`` (Tested with internal model)
191- ``FVP_Base_Deimos``
192- ``FVP_CSS_SGI-575`` (Version 11.3 build 42)
193- ``FVP_CSS_SGM-775`` (Version 11.3 build 42)
194- ``FVP_RD_E1Edge`` (Version 11.3 build 42)
195- ``FVP_RD_N1Edge`` (Version 11.3 build 42)
Joanna Farleyd83bf0b2018-09-11 15:51:31 +0100196- ``Foundation_Platform``
Dan Handley5b0b7272018-03-14 13:01:39 +0000197
Joanna Farleyd83bf0b2018-09-11 15:51:31 +0100198The latest version of the AArch32 build of TF-A has been tested on the following
Ambroise Vincent61924482019-03-28 12:51:48 +0000199Arm FVPs without shifted affinities, and that do not support threaded CPU cores
Joanna Farleyd83bf0b2018-09-11 15:51:31 +0100200(64-bit host machine only).
Dan Handley4bf33492017-07-05 17:40:29 +0100201
Dan Handley5b0b7272018-03-14 13:01:39 +0000202- ``FVP_Base_AEMv8A-AEMv8A``
Dan Handley4bf33492017-07-05 17:40:29 +0100203- ``FVP_Base_Cortex-A32x4``
Douglas Raillard6f625742017-06-28 15:23:03 +0100204
Ambroise Vincent61924482019-03-28 12:51:48 +0000205NOTE: The ``FVP_Base_RevC-2xAEMv8A`` FVP only supports shifted affinities.
206
Douglas Raillard6f625742017-06-28 15:23:03 +0100207The Foundation FVP can be downloaded free of charge. The Base FVPs can be
Dan Handley4def07d2018-03-01 18:44:00 +0000208licensed from Arm. See the `Arm FVP website`_.
Dan Handley4bf33492017-07-05 17:40:29 +0100209
Joanna Farleyd83bf0b2018-09-11 15:51:31 +0100210All the above platforms have been tested with `Linaro Release 18.04`_.
Douglas Raillard6f625742017-06-28 15:23:03 +0100211
212This release also contains the following platform support:
213
Paul Beesleyca7145c2019-03-25 16:45:23 +0000214- Allwinner sun50i_a64 and sun50i_h6
Antonio Nino Diaz37f647a2018-10-10 23:52:39 +0100215- Amlogic Meson S905 (GXBB)
Remi Pommarel9b5a8aa2019-04-01 11:34:09 +0200216- Amlogic Meson S905x (GXL)
Paul Beesleyca7145c2019-03-25 16:45:23 +0000217- Arm Juno Software Development Platform
218- Arm Neoverse N1 System Development Platform (N1SDP)
219- Arm Neoverse Reference Design N1 Edge (RD-N1-Edge) FVP
220- Arm Neoverse Reference Design E1 Edge (RD-E1-Edge) FVP
221- Arm SGI-575 and SGM-775
222- Arm Versatile Express FVP
Dan Handley5b0b7272018-03-14 13:01:39 +0000223- HiKey, HiKey960 and Poplar boards
Paul Beesleyca7145c2019-03-25 16:45:23 +0000224- Intel Stratix 10 SoC FPGA
Antonio Nino Diaz91ce07b2019-01-17 12:16:07 +0000225- Marvell Armada 3700 and 8K
Douglas Raillard6f625742017-06-28 15:23:03 +0100226- MediaTek MT6795 and MT8173 SoCs
Antonio Nino Diaz91ce07b2019-01-17 12:16:07 +0000227- NVIDIA T132, T186 and T210 SoCs
Paul Beesleyca7145c2019-03-25 16:45:23 +0000228- NXP QorIQ LS1043A, i.MX8MM, i.MX8MQ, i.MX8QX, i.MX8QM and i.MX7Solo WaRP7
Antonio Nino Diaz91ce07b2019-01-17 12:16:07 +0000229- QEMU
230- Raspberry Pi 3
Paul Beesleyca7145c2019-03-25 16:45:23 +0000231- Renesas R-Car Generation 3
Dan Handley4bf33492017-07-05 17:40:29 +0100232- RockChip RK3328, RK3368 and RK3399 SoCs
Sumit Garg150c38e2018-06-21 11:28:18 +0530233- Socionext UniPhier SoC family and SynQuacer SC2A11 SoCs
Joanna Farleyd83bf0b2018-09-11 15:51:31 +0100234- STMicroelectronics STM32MP1
Nishanth Menon1841c532016-10-14 01:13:34 +0000235- Texas Instruments K3 SoCs
Antonio Nino Diaz91ce07b2019-01-17 12:16:07 +0000236- Xilinx Versal and Zynq UltraScale + MPSoC
Douglas Raillard6f625742017-06-28 15:23:03 +0100237
Dan Handley5b0b7272018-03-14 13:01:39 +0000238Still to come
Paul Beesleyca7145c2019-03-25 16:45:23 +0000239-------------
Douglas Raillard6f625742017-06-28 15:23:03 +0100240
Paul Beesleyca7145c2019-03-25 16:45:23 +0000241- Support for additional platforms.
Douglas Raillard6f625742017-06-28 15:23:03 +0100242
Paul Beesleyca7145c2019-03-25 16:45:23 +0000243- Refinements to Position Independent Executable (PIE) support.
244
Paul Beesleybf32bc92019-03-29 10:14:56 +0000245- Refinements to the SPCI-based SPM implementation as the draft SPCI and SPRT
246 specifications continue to evolve.
Paul Beesleyca7145c2019-03-25 16:45:23 +0000247
248- Documentation enhancements.
Dan Handley5b0b7272018-03-14 13:01:39 +0000249
Douglas Raillard6f625742017-06-28 15:23:03 +0100250- Ongoing support for new architectural features, CPUs and System IP.
251
Dan Handley5b0b7272018-03-14 13:01:39 +0000252- Ongoing support for new Arm system architecture specifications.
Douglas Raillard6f625742017-06-28 15:23:03 +0100253
254- Ongoing security hardening, optimization and quality improvements.
255
Dan Handley4bf33492017-07-05 17:40:29 +0100256For a full list of detailed issues in the current code, please see the `Change
Louis Mayencourt63fdda22019-03-22 11:47:22 +0000257Log`_ and the `issue tracker`_.
Douglas Raillard6f625742017-06-28 15:23:03 +0100258
Dan Handley5b0b7272018-03-14 13:01:39 +0000259Getting started
Douglas Raillard6f625742017-06-28 15:23:03 +0100260---------------
261
Louis Mayencourt63fdda22019-03-22 11:47:22 +0000262See the `User Guide`_ for instructions on how to download, install, build and
263use TF-A with the Arm `FVP`_\ s.
Douglas Raillard6f625742017-06-28 15:23:03 +0100264
Paul Beesleyd1ce4462019-01-10 16:14:04 +0000265See the `Firmware Design`_ for information on how TF-A works.
Douglas Raillard6f625742017-06-28 15:23:03 +0100266
267See the `Porting Guide`_ as well for information about how to use this
Dan Handley5b0b7272018-03-14 13:01:39 +0000268software on another Armv7-A or Armv8-A platform.
Douglas Raillard6f625742017-06-28 15:23:03 +0100269
270See the `Contributing Guidelines`_ for information on how to contribute to this
271project and the `Acknowledgments`_ file for a list of contributors to the
272project.
273
Paul Beesleyca7145c2019-03-25 16:45:23 +0000274Documentation contents
275~~~~~~~~~~~~~~~~~~~~~~
276
277The `Trusted Firmware-A Documentation Contents`_ page contains an overview of
278the documentation that is available, with links to facilitate easier browsing.
279
Dimitris Papastamos8dd7bc62018-07-30 15:38:04 +0100280IRC channel
281~~~~~~~~~~~
282
283Development discussion takes place on the #trusted-firmware-a channel
284on the Freenode IRC network. This is not an official support channel.
Louis Mayencourt63fdda22019-03-22 11:47:22 +0000285If you have an issue to raise, please use the `issue tracker`_.
Dimitris Papastamos8dd7bc62018-07-30 15:38:04 +0100286
Douglas Raillard6f625742017-06-28 15:23:03 +0100287Feedback and support
288~~~~~~~~~~~~~~~~~~~~
289
Dan Handley4def07d2018-03-01 18:44:00 +0000290Arm welcomes any feedback on TF-A. If you think you have found a security
291vulnerability, please report this using the process defined in the TF-A
Sandrine Bailleux3655ed82019-03-12 15:07:27 +0100292`Security Center`_. For all other feedback, please use the
Louis Mayencourt63fdda22019-03-22 11:47:22 +0000293`issue tracker`_.
Douglas Raillard6f625742017-06-28 15:23:03 +0100294
Dan Handley4def07d2018-03-01 18:44:00 +0000295Arm licensees may contact Arm directly via their partner managers.
Douglas Raillard6f625742017-06-28 15:23:03 +0100296
Joel Huttond0f98092019-02-26 16:23:54 +0000297Security advisories
Paul Beesleyca7145c2019-03-25 16:45:23 +0000298-------------------
Joel Huttond0f98092019-02-26 16:23:54 +0000299
Sandrine Bailleux74f1f642019-03-12 15:10:49 +0100300- `Security Advisory TFV-1`_
301- `Security Advisory TFV-2`_
302- `Security Advisory TFV-3`_
303- `Security Advisory TFV-4`_
304- `Security Advisory TFV-5`_
305- `Security Advisory TFV-6`_
306- `Security Advisory TFV-7`_
307- `Security Advisory TFV-8`_
Joel Huttond0f98092019-02-26 16:23:54 +0000308
309
Douglas Raillard6f625742017-06-28 15:23:03 +0100310--------------
311
Antonio Nino Diaz91ce07b2019-01-17 12:16:07 +0000312*Copyright (c) 2013-2019, Arm Limited and Contributors. All rights reserved.*
Douglas Raillard6f625742017-06-28 15:23:03 +0100313
Dan Handley5b0b7272018-03-14 13:01:39 +0000314.. _Armv7-A and Armv8-A: https://developer.arm.com/products/architecture/a-profile
Douglas Raillard6f625742017-06-28 15:23:03 +0100315.. _Secure Monitor: http://www.arm.com/products/processors/technologies/trustzone/tee-smc.php
Dan Handley4bf33492017-07-05 17:40:29 +0100316.. _Power State Coordination Interface (PSCI): PSCI_
317.. _PSCI: http://infocenter.arm.com/help/topic/com.arm.doc.den0022d/Power_State_Coordination_Interface_PDD_v1_1_DEN0022D.pdf
318.. _SMC Calling Convention: http://infocenter.arm.com/help/topic/com.arm.doc.den0028b/ARM_DEN0028B_SMC_Calling_Convention.pdf
Paul Beesley3c6261b2019-01-10 15:42:39 +0000319.. _System Control and Management Interface (SCMI): SCMI_
Dan Handley4bf33492017-07-05 17:40:29 +0100320.. _SCMI: http://infocenter.arm.com/help/topic/com.arm.doc.den0056a/DEN0056A_System_Control_and_Management_Interface.pdf
danh-armed811262018-03-20 17:01:39 +0000321.. _Software Delegated Exception Interface (SDEI): SDEI_
Dan Handley5b0b7272018-03-14 13:01:39 +0000322.. _SDEI: http://infocenter.arm.com/help/topic/com.arm.doc.den0054a/ARM_DEN0054A_Software_Delegated_Exception_Interface.pdf
Dan Handley4def07d2018-03-01 18:44:00 +0000323.. _Juno Arm Development Platform: http://www.arm.com/products/tools/development-boards/versatile-express/juno-arm-development-platform.php
324.. _Arm FVP website: FVP_
Dan Handley4bf33492017-07-05 17:40:29 +0100325.. _FVP: https://developer.arm.com/products/system-design/fixed-virtual-platforms
Joanna Farleyd83bf0b2018-09-11 15:51:31 +0100326.. _Linaro Release 18.04: https://community.arm.com/dev-platforms/b/documents/posts/linaro-release-notes-deprecated#LinaroRelease18.04
Douglas Raillard6f625742017-06-28 15:23:03 +0100327.. _OP-TEE Secure OS: https://github.com/OP-TEE/optee_os
Paul Beesleybe8b4d12019-01-10 15:53:12 +0000328.. _NVIDIA Trusted Little Kernel: http://nv-tegra.nvidia.com/gitweb/?p=3rdparty/ote_partner/tlk.git;a=summary
Dan Handley4bf33492017-07-05 17:40:29 +0100329.. _Trusty Secure OS: https://source.android.com/security/trusty
Louis Mayencourt63fdda22019-03-22 11:47:22 +0000330.. _trustedfirmware.org: https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git
331.. _issue tracker: http://issues.trustedfirmware.org
Joel Huttond0f98092019-02-26 16:23:54 +0000332.. _Security Center: ./docs/security-center.rst
Dan Handley4bf33492017-07-05 17:40:29 +0100333.. _license: ./license.rst
334.. _Contributing Guidelines: ./contributing.rst
335.. _Acknowledgments: ./acknowledgements.rst
Douglas Raillard6f625742017-06-28 15:23:03 +0100336.. _Firmware Design: ./docs/firmware-design.rst
337.. _Change Log: ./docs/change-log.rst
Douglas Raillard6f625742017-06-28 15:23:03 +0100338.. _User Guide: ./docs/user-guide.rst
339.. _Porting Guide: ./docs/porting-guide.rst
Antonio Nino Diaz27989a82018-08-17 10:45:47 +0100340.. _FreeBSD: http://www.freebsd.org
341.. _SCC: http://www.simple-cc.org/
Joel Huttond0f98092019-02-26 16:23:54 +0000342.. _Security Advisory TFV-1: ./docs/security_advisories/security-advisory-tfv-1.rst
343.. _Security Advisory TFV-2: ./docs/security_advisories/security-advisory-tfv-2.rst
344.. _Security Advisory TFV-3: ./docs/security_advisories/security-advisory-tfv-3.rst
345.. _Security Advisory TFV-4: ./docs/security_advisories/security-advisory-tfv-4.rst
346.. _Security Advisory TFV-5: ./docs/security_advisories/security-advisory-tfv-5.rst
347.. _Security Advisory TFV-6: ./docs/security_advisories/security-advisory-tfv-6.rst
348.. _Security Advisory TFV-7: ./docs/security_advisories/security-advisory-tfv-7.rst
349.. _Security Advisory TFV-8: ./docs/security_advisories/security-advisory-tfv-8.rst
Paul Beesleyca7145c2019-03-25 16:45:23 +0000350.. _Trusted Firmware-A Documentation Contents: ./docs/contents.rst