aboutsummaryrefslogtreecommitdiff
path: root/docs/getting_started/tfm_sw_requirement.rst
blob: 4a30aa9be4bbc77f0f54d189d1f6513566fb5279 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
#####################
Software requirements
#####################

.. |KEIL_VERSION| replace:: v5.25.2
.. |DEV_STUDIO_VERSION| replace:: 2019.1

A quick reference table is included in the
:ref:`docs/getting_started/tfm_sw_requirement:Tool & Dependency overview` section
of this document.

****************************
Supported build environments
****************************

TF-M officially supports a limited set of build environments and setups. In
this context, official support means that the environments listed below
are actively used by team members and active developers hence users should
be able to recreate the same configurations by following the instructions
described below. In case of problems, the TF-M team provides support
only for these environments, but building in other environments can still be
possible.

The following environments are supported:

    - Ubuntu 16.04 x64
    - Ubuntu 18.04 x64
    - Windows 10 x64

***********
C compilers
***********

To compile TF-M code, at least one of the supported compiler toolchains have to
be available in the build environment. The currently supported compiler
versions are:

    - Arm Compiler v6.10.1+
    - GNU Arm compiler v7.3.1+
    - IAR Arm compiler v8.42.x, v8.50.x

.. Note::
    - The Arm compilers above are provided via Keil uVision |KEIL_VERSION|
      or greater and Arm Development Studio
      |DEV_STUDIO_VERSION| or greater, or they can be downloaded as standalone
      packages from
      `here <https://developer.arm.com/products/software-development-tools/compilers/arm-compiler/downloads/version-6>`__.

    - The GNU Arm compiler can be downloaded from
      `here <https://developer.arm.com/open-source/gnu-toolchain/gnu-rm/downloads>`__.
      On the page select *GNU Arm Embedded Toolchain: 7-2018-q2-update* or an
      above version.

    - GNU Arm compiler version *10-2020-q4-major* has an issue in CMSE support.
      The bug is reported in `here <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99157>`__.
      Select other GNU Arm compiler versions instead.

    - The IAR Arm compilers above are provided via IAR Embedded Workbench (Windows) or
      IAR build tools for linux.
      For information, see
      `here <https://www.iar.com/iar-embedded-workbench/#!?architecture=Arm>`__ or
      `here <https://www.iar.com/iar-embedded-workbench/build-tools-for-linux/>`__.

*****
CMake
*****

The build-system is CMake based and supports the version 3.15 or higher.

    - Please use the latest build version available.
    - Recent versions of CMake can be downloaded from
      https://cmake.org/download/, and older releases are available from
      https://cmake.org/files.

CMake handles all external dependencies, but if you wish to alter this
behaviour, see :ref:`docs/getting_started/tfm_build_instruction:Manual
dependency management`

********
GNU make
********

TF-M project builds using the "Unix Makefiles" generator of CMake
and thus GNU make is needed for the build.

    - On Linux please use the version available in your distribution.
    - On Windows, GNU make v3.81 or higher shall work fine.

CMake generators other than "Unix Makefiles" may work too, but are not
officially supported. You may have a good luck with Ninja.

********************************************
Tools for configuring and programming boards
********************************************

Please follow a board secific documentation for building and programming
tools.

**************
Typical setups
**************

This section lists steps to set-up TF-M build environment under Linux and Windows.
Please also check the `Exceptions and special cases`_  chapter for any special
requirements depending on the tools you are using.

Ubuntu
======

Install the following tools:

    - Arm DS |DEV_STUDIO_VERSION|.
    - Git tools v2.10.0
    - CMake (see the `CMake`_ chapter)
    - GNU Make (see the `GNU make`_ chapter)
    - SRecord v1.58 (for Musca test chip boards)
    - Python3 and the pip package manager (from Python 3.4 it's included)
    - The necessary Python3 packages are listed in the requirements.txt file.
      To install all needed just do:

.. code-block:: bash

    pip install -r tools/requirements.txt


Setup environment variables in Linux
------------------------------------

To import Arm Compiler v6.13 in your bash shell console:

.. code-block:: bash

    export PATH=<ARM_DS_PATH>/sw/ARMCompiler6.13/bin:$PATH
    export ARM_TOOL_VARIANT=ult
    export ARM_PRODUCT_PATH=<ARM_DS_PATH>/sw/mappings
    export ARMLMD_LICENSE_FILE=<LICENSE_FILE_PATH>

To import CMake in your bash shell console:

.. code-block:: bash

    export PATH=<CMake path>/bin:$PATH

To import GNU Arm in your bash shell console:

.. code-block:: bash

    export PATH=<bash path>/bin:$PATH

To import IAR Arm compiler in your bash shell console:

.. code-block:: bash

    export PATH=<IAR compiler path>/bin:$PATH

Windows
=======

Install the following tools:

    - uVision |KEIL_VERSION| or Arm DS |DEV_STUDIO_VERSION| (Arm DS Ultimate Edition)
      or GNU Arm compiler v7.3.1+
    - Git client latest version (https://git-scm.com/download/win)
    - CMake (`native Windows version <https://cmake.org/download/>`__,
      see the `CMake`_ chapter)
    - GNU make
    - `SRecord v1.63 <https://sourceforge.net/projects/srecord/>`__ (for Musca test
      chip boards)
    - Python3 `(native Windows version) <https://www.python.org/downloads/>`__ and
      the pip package manager (from Python 3.4 it's included)
    - The necessary Python3 packages are listed in the requirements.txt file.
      To install all needed just do:

.. code-block:: bash

    pip install -r tools\requirements.txt

Setup environment variables in Windows
--------------------------------------

Add CMake to your PATH variable:

.. code-block:: bash

    set PATH=<CMake_Path>\bin;$PATH

There are several configurations depending on a toolset you are using.
The typical cases are listed below.

Armclang + Arm DS
^^^^^^^^^^^^^^^^^
.. code-block:: bash

    set PATH=<ARM_DS_PATH>\sw\ARMCompiler6.13\bin;$PATH
    set ARM_PRODUCT_PATH=<ARM_DS_PATH>\sw\mappings
    set ARM_TOOL_VARIANT=ult
    set ARMLMD_LICENSE_FILE=<LICENSE_FILE_PATH>

Armclang + Keil MDK Arm
^^^^^^^^^^^^^^^^^^^^^^^

.. code-block:: bash

    set PATH=<uVision path>\ARM\ARMCLANG\bin;$PATH

GNU Arm
^^^^^^^

.. code-block:: bash

    set PATH=<GNU Arm path>\bin;$PATH

**************************
Building the documentation
**************************

The build system is prepared to support generation of two documents:
The Reference Manual and the User Guide.
The Reference Manual is Doxygen based, while the User Guide is
Sphinx based. Both document can be generated in HTML and PDF format.

Support for document generation in the build environment is not mandatory.
Missing document generation tools will not block building the TF-M firmware.

To compile the TF-M Reference Manual
====================================

The following additional tools are needed:

    - Doxygen v1.8.0 or later
    - Graphviz dot v2.38.0 or later
    - PlantUML v1.2018.11 or later
    - Java runtime environment 1.8 or later (for running PlantUML)
    - LaTeX - for PDF generation only
    - PdfLaTeX - for PDF generation only

Set-up the needed tools and environment in Linux
------------------------------------------------

.. code-block:: bash

    sudo apt-get install -y doxygen graphviz default-jre
    mkdir ~/plantuml
    curl -L http://sourceforge.net/projects/plantuml/files/plantuml.jar/download --output ~/plantuml/plantuml.jar
    export PLANTUML_JAR_PATH=~/plantuml/plantuml.jar

For PDF generation:

.. code-block:: bash

    sudo apt-get install -y doxygen-latex

Set-up the needed tools and environment in Windows
--------------------------------------------------

Download and install the following tools:

    - `Doxygen
      1.8.8 <https://sourceforge.net/projects/doxygen/files/snapshots/doxygen-1.8-svn/windows/doxygenw20140924_1_8_8.zip/download>`__
    - `Graphviz
      2.38 <https://graphviz.gitlab.io/_pages/Download/windows/graphviz-2.38.msi>`__
    - The Java runtime is part of the Arm DS installation or can be
      `downloaded from here <https://www.java.com/en/download/>`__
    - `PlantUML <http://sourceforge.net/projects/plantuml/files/plantuml.jar/download>`__
    -  `MikTeX <https://miktex.org/download>`__ - for PDF generation only

Set the environment variables, assuming that:

    - doxygen, dot, and MikTeX binaries are available on the PATH.
    - Java JVM is used from Arm DS installation.

::

    set PLANTUML_JAR_PATH=<plantuml_Path>\plantuml.jar
    set PATH=$PATH;<ARM_DS_PATH>\sw\java\bin

To compile the TF-M User Guide
==============================

The following additional tools are needed:

    - Python3 and the following modules:
    - Sphinx v1.7.9
    - m2r v0.2.0
    - sphinxcontrib-plantuml
    - sphinx-rtd-theme
    - Graphviz dot v2.38.0 or later
    - PlantUML v1.2018.11 or later
    - Java runtime environment 1.8 or later (for running PlantUML)
    - LaTeX - for PDF generation only
    - PdfLaTeX - for PDF generation only

Set-up the tools and environment in Linux
-----------------------------------------

.. code-block:: bash

    sudo apt-get install -y python3 graphviz default-jre
    pip install -r tools/requirements.txt
    mkdir ~/plantuml
    curl -L http://sourceforge.net/projects/plantuml/files/plantuml.jar/download --output ~/plantuml/plantuml.jar

For PDF generation:

.. code-block:: bash

    sudo apt-get install -y doxygen-latex
    export PLANTUML_JAR_PATH=~/plantuml/plantuml.jar

Set-up the tools and environment in Windows
-------------------------------------------

Download and install the following tools:

    - `Graphviz 2.38 <https://graphviz.gitlab.io/_pages/Download/windows/graphviz-2.38.msi>`__
    - The Java runtime is part of the Arm DS installation or can be `downloaded from here <https://www.java.com/en/download/>`__
    - `PlantUML <http://sourceforge.net/projects/plantuml/files/plantuml.jar/download>`__
    -  `MikTeX <https://miktex.org/download>`__ - for PDF generation only
    - Python3 `(native Windows version) <https://www.python.org/downloads/>`__
    - The necessary Python3 packages are listed in the requirements.txt file.
      To install all needed packages just do:

.. code-block:: bash

    pip install -r tools\requirements.txt

.. Note::
     When building the documentation the first time, MikTeX might
     prompt for installing missing LaTeX components. Please allow the MikTeX
     package manager to set-up these.

Set the environment variables, assuming that:

    - plantuml.jar is available at c:\\plantuml\\plantuml.jar
    - doxygen, dot, and MikTeX binaries are available on the PATH.
    - Java JVM is used from DS5 installation.

.. code-block:: bash

    set PLANTUML_JAR_PATH=<plantuml_Path>\plantuml.jar
    set PATH=$PATH;<ARM_DS_PATH>\sw\java\bin

****************************
Exceptions and special cases
****************************

ArmClang
========
    - Arm compiler specific environment variable may need updating based on
      specific products and licenses as explained in
      `product-and-toolkit-configuration <https://developer.arm.com/products/software-development-tools/license-management/resources/product-and-toolkit-configuration>`__.

MikTeX
======
    - When building the documentation the first time, MikTeX might prompt for
      installing missing LaTeX components. Please allow the MikTeX package
      manager to set-up these.

**************************
Tool & Dependency overview
**************************

To build the TF-M firmware the following tools are needed:

.. csv-table:: Tool dependencies
   :header: "Name", "Version", "Component"

   "C compiler",See `C compilers`_,"Firmware"
   "CMake",See `CMake`_,
   "GNU Make",See `GNU make`_,
   "tf-m-tests",`CMake`_ handles it,
   "mbed-crypto",`CMake`_ handles it,
   "MCUboot",`CMake`_ handles it,
   "Python",3.x,"Firmware, User Guide"
   "yaml",,"Firmware"
   "pyasn1",,"Firmware"
   "jinja2",,"Firmware"
   "cryptography",,"Firmware"
   "cbor",,"Firmware"
   "click",,"Firmware"
   "imgtool",,"Firmware"
   "Doxygen",">1.8","Reference manual"
   "Sphinx",">1.4","User Guide"
   "sphinxcontrib-plantuml",,"User Guide"
   "sphinx-trd-theme",,"User Guide"
   "Git",,
   "PlantUML",">v1.2018.11","Reference Manual, User Guide"
   "Graphviz dot",">v2.38.0","Reference manual"
   "Java runtime environment (JRE)",">1.8","Reference Manual, User Guide"
   "LaTex",,"pdf version of Reference Manual and User Guide"
   "PdfLaTex",,"pdf version of Reference Manual and User Guide"

Dependency chain:

.. uml::

   @startuml
    skinparam state {
      BackgroundColor #92AEE0
      FontColor black
      FontSize 16
      AttributeFontColor black
      AttributeFontSize 16
      BackgroundColor<<pdf>> #A293E2
      BackgroundColor<<doc>> #90DED6
    }
    state fw as "Firmware" : TF-M binary
    state c_comp as "C Compiler" : C99
    state gmake as "GNU make"
    state u_guide as "User Guide" <<doc>>
    state refman as "Reference Manual" <<doc>>
    state rtd_theme as "sphinx-rtd-theme" <<doc>>
    state sphnix_puml as "sphinxcontrib-plantuml" <<doc>>
    state JRE as "JRE" <<doc>> : Java Runtime Environment
    state gwiz as "Graphwiz dot" <<doc>>
    state Sphinx as "Sphinx" <<doc>>
    state m2r as "m2r" <<doc>>
    state PlantUML as "PlantUML" <<doc>>
    state LaTex as "LaTex" <<pdf>>
    state PdfLaTex as "PdfLaTex" <<<<pdf>>>>
    state Doxygen as "Doxygen" <<doc>>

    [*] --> fw
    fw --> c_comp
    fw --> CMake
    CMake --> gmake
    fw --> cryptography
    fw --> pyasn1
    fw --> yaml
    fw --> jinja2
    fw --> cbor
    fw --> click
    fw --> imgtool
    cryptography --> Python3
    pyasn1 --> Python3
    yaml --> Python3
    jinja2 --> Python3
    cbor --> Python3
    click --> Python3
    imgtool --> Python3

    [*] --> u_guide
    u_guide --> Sphinx
    Sphinx --> m2r
    Sphinx --> rtd_theme
    Sphinx --> sphnix_puml
    m2r --> Python3
    rtd_theme --> Python3
    sphnix_puml --> Python3
    Sphinx --> PlantUML
    PlantUML --> JRE
    PlantUML --> gwiz
    Sphinx --> LaTex
    LaTex --> PdfLaTex

    [*] --> refman
    refman --> Doxygen
    Doxygen --> PlantUML
    Doxygen --> LaTex
    state Legend {
      state x as "For PDF generation only" <<pdf>>
      state y as "For document generation only" <<doc>>
      state z as "Mandatory"
    }

   @enduml

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

*Copyright (c) 2017-2021, Arm Limited. All rights reserved.*