Sathees Balya | 17d8eed | 2019-01-30 15:56:44 +0000 | [diff] [blame] | 1 | Library at ROM |
| 2 | ============== |
| 3 | |
Sathees Balya | 17d8eed | 2019-01-30 15:56:44 +0000 | [diff] [blame] | 4 | This document provides an overview of the "library at ROM" implementation in |
| 5 | Trusted Firmware-A (TF-A). |
| 6 | |
| 7 | Introduction |
| 8 | ~~~~~~~~~~~~ |
| 9 | |
| 10 | The "library at ROM" feature allows platforms to build a library of functions to |
| 11 | be placed in ROM. This reduces SRAM usage by utilising the available space in |
| 12 | ROM. The "library at ROM" contains a jump table with the list of functions that |
| 13 | are placed in ROM. The capabilities of the "library at ROM" are: |
| 14 | |
| 15 | 1. Functions can be from one or several libraries. |
| 16 | |
| 17 | 2. Functions can be patched after they have been programmed into ROM. |
| 18 | |
| 19 | 3. Platform-specific libraries can be placed in ROM. |
| 20 | |
| 21 | 4. Functions can be accessed by one or more BL images. |
| 22 | |
| 23 | Index file |
| 24 | ~~~~~~~~~~ |
| 25 | |
Paul Beesley | 814f8c0 | 2019-03-13 15:49:27 +0000 | [diff] [blame] | 26 | .. image:: ../resources/diagrams/romlib_design.png |
Sathees Balya | 17d8eed | 2019-01-30 15:56:44 +0000 | [diff] [blame] | 27 | :width: 600 |
| 28 | |
| 29 | Library at ROM is described by an index file with the list of functions to be |
| 30 | placed in ROM. The index file is platform specific and its format is: |
| 31 | |
| 32 | :: |
| 33 | |
| 34 | lib function [patch] |
| 35 | |
| 36 | lib -- Name of the library the function belongs to |
| 37 | function -- Name of the function to be placed in library at ROM |
| 38 | [patch] -- Option to patch the function |
| 39 | |
| 40 | It is also possible to insert reserved spaces in the list by using the keyword |
| 41 | "reserved" rather than the "lib" and "function" names as shown below: |
| 42 | |
| 43 | :: |
| 44 | |
Imre Kis | 2d137c5 | 2019-07-09 18:30:58 +0200 | [diff] [blame] | 45 | reserved |
Sathees Balya | 17d8eed | 2019-01-30 15:56:44 +0000 | [diff] [blame] | 46 | |
| 47 | The reserved spaces can be used to add more functions in the future without |
| 48 | affecting the order and location of functions already existing in the jump |
| 49 | table. Also, for additional flexibility and modularity, the index file can |
| 50 | include other index files. |
| 51 | |
| 52 | For an index file example, refer to ``lib/romlib/jmptbl.i``. |
| 53 | |
| 54 | Wrapper functions |
| 55 | ~~~~~~~~~~~~~~~~~ |
| 56 | |
Paul Beesley | 814f8c0 | 2019-03-13 15:49:27 +0000 | [diff] [blame] | 57 | .. image:: ../resources/diagrams/romlib_wrapper.png |
Sathees Balya | 17d8eed | 2019-01-30 15:56:44 +0000 | [diff] [blame] | 58 | :width: 600 |
| 59 | |
| 60 | When invoking a function of the "library at ROM", the calling sequence is as |
| 61 | follows: |
| 62 | |
| 63 | BL image --> wrapper function --> jump table entry --> library at ROM |
| 64 | |
| 65 | The index file is used to create a jump table which is placed in ROM. Then, the |
| 66 | wrappers refer to the jump table to call the "library at ROM" functions. The |
| 67 | wrappers essentially contain a branch instruction to the jump table entry |
| 68 | corresponding to the original function. Finally, the original function in the BL |
| 69 | image(s) is replaced with the wrapper function. |
| 70 | |
| 71 | The "library at ROM" contains a necessary init function that initialises the |
| 72 | global variables defined by the functions inside "library at ROM". |
| 73 | |
Imre Kis | 2d137c5 | 2019-07-09 18:30:58 +0200 | [diff] [blame] | 74 | Script |
| 75 | ~~~~~~ |
Sathees Balya | 17d8eed | 2019-01-30 15:56:44 +0000 | [diff] [blame] | 76 | |
Imre Kis | 2d137c5 | 2019-07-09 18:30:58 +0200 | [diff] [blame] | 77 | There is a ``romlib_generate.py`` Python script that generates the necessary |
| 78 | files for the "library at ROM" to work. It implements multiple functions: |
Sathees Balya | 17d8eed | 2019-01-30 15:56:44 +0000 | [diff] [blame] | 79 | |
Imre Kis | 2d137c5 | 2019-07-09 18:30:58 +0200 | [diff] [blame] | 80 | 1. ``romlib_generate.py gentbl [args]`` - Generates the jump table by parsing |
| 81 | the index file. |
Sathees Balya | 17d8eed | 2019-01-30 15:56:44 +0000 | [diff] [blame] | 82 | |
Imre Kis | 2d137c5 | 2019-07-09 18:30:58 +0200 | [diff] [blame] | 83 | 2. ``romlib_generator.py genvar [args]`` - Generates the jump table global |
| 84 | variable (**not** the jump table itself) with the absolute address in ROM. |
| 85 | This global variable is, basically, a pointer to the jump table. |
Sathees Balya | 17d8eed | 2019-01-30 15:56:44 +0000 | [diff] [blame] | 86 | |
Imre Kis | 2d137c5 | 2019-07-09 18:30:58 +0200 | [diff] [blame] | 87 | 3. ``romlib_generator.py genwrappers [args]`` - Generates a wrapper function for |
| 88 | each entry in the index file except for the ones that contain the keyword |
| 89 | ``patch``. The generated wrapper file is called ``<fn_name>.s``. |
| 90 | |
| 91 | 4. ``romlib_generator.py pre [args]`` - Preprocesses the index file which means |
| 92 | it resolves all the include commands in the file recursively. It can also |
| 93 | generate a dependency file of the included index files which can be directly |
| 94 | used in makefiles. |
| 95 | |
| 96 | Each ``romlib_generate.py`` function has its own manual which is accessible by |
| 97 | runing ``romlib_generator.py [function] --help``. |
| 98 | |
| 99 | ``romlib_generate.py`` requires Python 3 environment. |
| 100 | |
Sathees Balya | 17d8eed | 2019-01-30 15:56:44 +0000 | [diff] [blame] | 101 | |
| 102 | Patching of functions in library at ROM |
| 103 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 104 | |
Imre Kis | 2d137c5 | 2019-07-09 18:30:58 +0200 | [diff] [blame] | 105 | The ``romlib_generator.py genwrappers`` does not generate wrappers for the |
| 106 | entries in the index file that contain the keyword ``patch``. Thus, it allows |
| 107 | calling the function from the actual library by breaking the link to the |
| 108 | "library at ROM" version of this function. |
Sathees Balya | 17d8eed | 2019-01-30 15:56:44 +0000 | [diff] [blame] | 109 | |
| 110 | The calling sequence for a patched function is as follows: |
| 111 | |
| 112 | BL image --> function |
| 113 | |
Louis Mayencourt | bb2c538 | 2019-10-11 15:27:01 +0100 | [diff] [blame] | 114 | Memory impact |
| 115 | ~~~~~~~~~~~~~ |
| 116 | |
| 117 | Using library at ROM will modify the memory layout of the BL images: |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 118 | |
Louis Mayencourt | bb2c538 | 2019-10-11 15:27:01 +0100 | [diff] [blame] | 119 | - The ROM library needs a page aligned RAM section to hold the RW data. This |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 120 | section is defined by the ROMLIB_RW_BASE and ROMLIB_RW_END macros. |
| 121 | On Arm platforms a section of 1 page (0x1000) is allocated at the top of SRAM. |
| 122 | This will have for effect to shift down all the BL images by 1 page. |
| 123 | |
Louis Mayencourt | bb2c538 | 2019-10-11 15:27:01 +0100 | [diff] [blame] | 124 | - Depending on the functions moved to the ROM library, the size of the BL images |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 125 | will be reduced. |
| 126 | For example: moving MbedTLS function into the ROM library reduces BL1 and |
| 127 | BL2, but not BL31. |
| 128 | |
Louis Mayencourt | bb2c538 | 2019-10-11 15:27:01 +0100 | [diff] [blame] | 129 | - This change in BL images size can be taken into consideration to optimize the |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 130 | memory layout when defining the BLx_BASE macros. |
Louis Mayencourt | bb2c538 | 2019-10-11 15:27:01 +0100 | [diff] [blame] | 131 | |
Sathees Balya | 17d8eed | 2019-01-30 15:56:44 +0000 | [diff] [blame] | 132 | Build library at ROM |
| 133 | ~~~~~~~~~~~~~~~~~~~~~ |
| 134 | |
Paul Beesley | d2fcc4e | 2019-05-29 13:59:40 +0100 | [diff] [blame] | 135 | The environment variable ``CROSS_COMPILE`` must be set appropriately. Refer to |
| 136 | :ref:`Performing an Initial Build` for more information about setting this |
| 137 | variable. |
| 138 | |
John Tsichritzis | aec19d3 | 2019-03-08 16:54:13 +0000 | [diff] [blame] | 139 | In the below example the usage of ROMLIB together with mbed TLS is demonstrated |
| 140 | to showcase the benefits of library at ROM - it's not mandatory. |
Sathees Balya | 17d8eed | 2019-01-30 15:56:44 +0000 | [diff] [blame] | 141 | |
Paul Beesley | 493e349 | 2019-03-13 15:11:04 +0000 | [diff] [blame] | 142 | .. code:: shell |
Sathees Balya | 17d8eed | 2019-01-30 15:56:44 +0000 | [diff] [blame] | 143 | |
| 144 | make PLAT=fvp \ |
| 145 | MBEDTLS_DIR=</path/to/mbedtls/> \ |
| 146 | TRUSTED_BOARD_BOOT=1 GENERATE_COT=1 \ |
| 147 | ARM_ROTPK_LOCATION=devel_rsa \ |
| 148 | ROT_KEY=plat/arm/board/common/rotpk/arm_rotprivk_rsa.pem \ |
| 149 | BL33=</path/to/bl33.bin> \ |
| 150 | USE_ROMLIB=1 \ |
| 151 | all fip |
| 152 | |
Sathees Balya | 17d8eed | 2019-01-30 15:56:44 +0000 | [diff] [blame] | 153 | -------------- |
| 154 | |
| 155 | *Copyright (c) 2019, Arm Limited. All rights reserved.* |