Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 1 | Prerequisites |
| 2 | ============= |
| 3 | |
| 4 | This document describes the software requirements for building |TF-A| for |
| 5 | AArch32 and AArch64 target platforms. |
| 6 | |
| 7 | It may possible to build |TF-A| with combinations of software packages that are |
| 8 | different from those listed below, however only the software described in this |
| 9 | document can be officially supported. |
Sandrine Bailleux | b386f0a | 2022-07-11 10:53:42 +0200 | [diff] [blame] | 10 | |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 11 | Build Host |
| 12 | ---------- |
| 13 | |
| 14 | |TF-A| can be built using either a Linux or a Windows machine as the build host. |
| 15 | |
| 16 | A relatively recent Linux distribution is recommended for building |TF-A|. We |
| 17 | have performed tests using Ubuntu 16.04 LTS (64-bit) but other distributions |
| 18 | should also work fine as a base, provided that the necessary tools and libraries |
| 19 | can be installed. |
| 20 | |
| 21 | .. _prerequisites_toolchain: |
| 22 | |
| 23 | Toolchain |
| 24 | --------- |
| 25 | |
| 26 | |TF-A| can be built with any of the following *cross-compiler* toolchains that |
| 27 | target the Armv7-A or Armv8-A architectures: |
| 28 | |
Jayanth Dodderi Chidanand | 8b957ed | 2022-09-12 14:50:12 +0100 | [diff] [blame] | 29 | - GCC >= 11.3.Rel1 (from the `Arm Developer website`_) |
Harrison Mutai | 38a293a | 2022-02-23 11:37:12 +0000 | [diff] [blame] | 30 | - Clang >= 14.0.0 |
| 31 | - Arm Compiler >= 6.18 |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 32 | |
| 33 | In addition, a native compiler is required to build the supporting tools. |
| 34 | |
| 35 | .. note:: |
| 36 | The software has also been built on Windows 7 Enterprise SP1, using CMD.EXE, |
| 37 | Cygwin, and Msys (MinGW) shells, using version 5.3.1 of the GNU toolchain. |
| 38 | |
| 39 | .. note:: |
| 40 | For instructions on how to select the cross compiler refer to |
| 41 | :ref:`Performing an Initial Build`. |
| 42 | |
| 43 | .. _prerequisites_software_and_libraries: |
| 44 | |
| 45 | Software and Libraries |
| 46 | ---------------------- |
| 47 | |
| 48 | The following tools are required to obtain and build |TF-A|: |
| 49 | |
| 50 | - An appropriate toolchain (see :ref:`prerequisites_toolchain`) |
| 51 | - GNU Make |
| 52 | - Git |
| 53 | |
| 54 | The following libraries must be available to build one or more components or |
| 55 | supporting tools: |
| 56 | |
Juan Pablo Conde | 3539c74 | 2022-10-25 19:41:02 -0400 | [diff] [blame] | 57 | - OpenSSL >= 1.1.1 (v3.0.0 to v3.0.6 highly discouraged due to security issues) |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 58 | |
Juan Pablo Conde | 3539c74 | 2022-10-25 19:41:02 -0400 | [diff] [blame] | 59 | Required to build the cert_create, encrypt_fw, and fiptool tools. |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 60 | |
Juan Pablo Conde | 5286552 | 2022-06-28 16:56:32 -0400 | [diff] [blame] | 61 | .. note:: |
| 62 | |
Juan Pablo Conde | 3539c74 | 2022-10-25 19:41:02 -0400 | [diff] [blame] | 63 | If using OpenSSL 3, older Linux versions may require it to be built from |
| 64 | source code, as it may not be available in the default package repositories. |
| 65 | Please refer to the OpenSSL project documentation for more information. |
Juan Pablo Conde | 5286552 | 2022-06-28 16:56:32 -0400 | [diff] [blame] | 66 | |
Sandrine Bailleux | 878a998 | 2022-04-22 15:47:31 +0200 | [diff] [blame] | 67 | The following libraries are required for Trusted Board Boot and Measured Boot |
| 68 | support: |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 69 | |
Daniel Boulby | 831e4bc | 2022-09-23 09:37:20 +0100 | [diff] [blame] | 70 | - mbed TLS == 2.28.1 (tag: ``mbedtls-2.28.1``) |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 71 | |
| 72 | These tools are optional: |
| 73 | |
| 74 | - Device Tree Compiler (DTC) >= 1.4.6 |
| 75 | |
| 76 | Needed if you want to rebuild the provided Flattened Device Tree (FDT) |
| 77 | source files (``.dts`` files). DTC is available for Linux through the package |
| 78 | repositories of most distributions. |
| 79 | |
Daniel Boulby | df83a83 | 2022-05-03 16:46:16 +0100 | [diff] [blame] | 80 | - Arm `Development Studio (Arm-DS)`_ |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 81 | |
| 82 | The standard software package used for debugging software on Arm development |
| 83 | platforms and |FVP| models. |
| 84 | |
Chris Kay | 32b292d | 2021-11-02 10:19:37 +0000 | [diff] [blame] | 85 | - Node.js >= 16 |
Chris Kay | 46e17f9 | 2020-12-09 12:56:27 +0000 | [diff] [blame] | 86 | |
| 87 | Highly recommended, and necessary in order to install and use the packaged |
| 88 | Git hooks and helper tools. Without these tools you will need to rely on the |
| 89 | CI for feedback on commit message conformance. |
| 90 | |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 91 | Package Installation (Linux) |
| 92 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 93 | |
| 94 | If you are using the recommended Ubuntu distribution then you can install the |
| 95 | required packages with the following command: |
| 96 | |
| 97 | .. code:: shell |
| 98 | |
Juan Pablo Conde | 5286552 | 2022-06-28 16:56:32 -0400 | [diff] [blame] | 99 | sudo apt install build-essential git |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 100 | |
| 101 | The optional packages can be installed using: |
| 102 | |
| 103 | .. code:: shell |
| 104 | |
| 105 | sudo apt install device-tree-compiler |
| 106 | |
Chris Kay | d855ae2 | 2022-10-10 14:34:23 +0100 | [diff] [blame] | 107 | Additionally, to install a version of Node.js compatible with TF-A's repository |
| 108 | scripts, you can use the `Node Version Manager`_. To install both NVM and an |
| 109 | appropriate version of Node.js, run the following **from the root directory of |
| 110 | the repository**: |
Chris Kay | 46e17f9 | 2020-12-09 12:56:27 +0000 | [diff] [blame] | 111 | |
| 112 | .. code:: shell |
| 113 | |
Chris Kay | d855ae2 | 2022-10-10 14:34:23 +0100 | [diff] [blame] | 114 | curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash |
| 115 | exec "$SHELL" -ic "nvm install; exec $SHELL" |
Chris Kay | 46e17f9 | 2020-12-09 12:56:27 +0000 | [diff] [blame] | 116 | |
| 117 | .. _Node Version Manager: https://github.com/nvm-sh/nvm#install--update-script |
| 118 | |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 119 | Supporting Files |
| 120 | ---------------- |
| 121 | |
| 122 | TF-A has been tested with pre-built binaries and file systems from `Linaro |
Zelalem | c005fdf | 2021-06-01 17:05:16 -0500 | [diff] [blame] | 123 | Release 20.01`_. Alternatively, you can build the binaries from source using |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 124 | instructions in :ref:`Performing an Initial Build`. |
| 125 | |
| 126 | .. _prerequisites_get_source: |
| 127 | |
| 128 | Getting the TF-A Source |
| 129 | ----------------------- |
| 130 | |
| 131 | Source code for |TF-A| is maintained in a Git repository hosted on |
| 132 | TrustedFirmware.org. To clone this repository from the server, run the following |
| 133 | in your shell: |
| 134 | |
| 135 | .. code:: shell |
| 136 | |
Chris Kay | 46e17f9 | 2020-12-09 12:56:27 +0000 | [diff] [blame] | 137 | git clone "https://review.trustedfirmware.org/TF-A/trusted-firmware-a" |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 138 | |
Chris Kay | 46e17f9 | 2020-12-09 12:56:27 +0000 | [diff] [blame] | 139 | Additional Steps for Contributors |
| 140 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 141 | |
Chris Kay | 46e17f9 | 2020-12-09 12:56:27 +0000 | [diff] [blame] | 142 | If you are planning on contributing back to TF-A, there are some things you'll |
| 143 | want to know. |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 144 | |
Chris Kay | 46e17f9 | 2020-12-09 12:56:27 +0000 | [diff] [blame] | 145 | TF-A is hosted by a `Gerrit Code Review`_ server. Gerrit requires that all |
| 146 | commits include a ``Change-Id`` footer, and this footer is typically |
| 147 | automatically generated by a Git hook installed by you, the developer. |
| 148 | |
| 149 | If you have Node.js installed already, you can automatically install this hook, |
| 150 | along with any additional hooks and Javascript-based tooling that we use, by |
| 151 | running from within your newly-cloned repository: |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 152 | |
| 153 | .. code:: shell |
| 154 | |
Chris Kay | 2ff006b | 2021-05-17 11:18:56 +0100 | [diff] [blame] | 155 | npm install --no-save |
Chris Kay | 46e17f9 | 2020-12-09 12:56:27 +0000 | [diff] [blame] | 156 | |
| 157 | If you have opted **not** to install Node.js, you can install the Gerrit hook |
| 158 | manually by running: |
| 159 | |
| 160 | .. code:: shell |
| 161 | |
| 162 | curl -Lo $(git rev-parse --git-dir)/hooks/commit-msg https://review.trustedfirmware.org/tools/hooks/commit-msg |
| 163 | chmod +x $(git rev-parse --git-dir)/hooks/commit-msg |
| 164 | |
| 165 | You can read more about Git hooks in the *githooks* page of the Git |
| 166 | documentation, available `here <https://git-scm.com/docs/githooks>`_. |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 167 | |
| 168 | -------------- |
| 169 | |
Harrison Mutai | 38a293a | 2022-02-23 11:37:12 +0000 | [diff] [blame] | 170 | *Copyright (c) 2021-2022, Arm Limited. All rights reserved.* |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 171 | |
Sandrine Bailleux | e356a18 | 2022-04-15 11:17:40 +0200 | [diff] [blame] | 172 | .. _Arm Developer website: https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/downloads |
Chris Kay | 46e17f9 | 2020-12-09 12:56:27 +0000 | [diff] [blame] | 173 | .. _Gerrit Code Review: https://www.gerritcodereview.com/ |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 174 | .. _Linaro Release Notes: https://community.arm.com/dev-platforms/w/docs/226/old-release-notes |
| 175 | .. _Linaro instructions: https://community.arm.com/dev-platforms/w/docs/304/arm-reference-platforms-deliverables |
Daniel Boulby | df83a83 | 2022-05-03 16:46:16 +0100 | [diff] [blame] | 176 | .. _Development Studio (Arm-DS): https://developer.arm.com/Tools%20and%20Software/Arm%20Development%20Studio |
Zelalem | c005fdf | 2021-06-01 17:05:16 -0500 | [diff] [blame] | 177 | .. _Linaro Release 20.01: http://releases.linaro.org/members/arm/platforms/20.01 |