diff options
author | davidcunado-arm <david.cunado@arm.com> | 2017-10-09 23:09:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-09 23:09:29 +0100 |
commit | 0f49d4968b8a8d1037ce20b7d8372c0055e816d2 (patch) | |
tree | 38a6254d8b466ebc60c8eebb51f17fb606bfb8a3 /docs | |
parent | 4d415c11c436e7a74a151a4fdf5cbdd27664e976 (diff) | |
parent | 609c91917f95e5c2c0dcccbfbea6ff32539bf738 (diff) | |
download | platform_external_arm-trusted-firmware-0f49d4968b8a8d1037ce20b7d8372c0055e816d2.tar.gz platform_external_arm-trusted-firmware-0f49d4968b8a8d1037ce20b7d8372c0055e816d2.tar.bz2 platform_external_arm-trusted-firmware-0f49d4968b8a8d1037ce20b7d8372c0055e816d2.zip |
Merge pull request #1117 from antonio-nino-diaz-arm/an/xlat-improvements
Improvements to the translation tables library v2
Diffstat (limited to 'docs')
-rw-r--r-- | docs/xlat-tables-lib-v2-design.rst | 63 |
1 files changed, 55 insertions, 8 deletions
diff --git a/docs/xlat-tables-lib-v2-design.rst b/docs/xlat-tables-lib-v2-design.rst index 3006ce725..07cbf86c1 100644 --- a/docs/xlat-tables-lib-v2-design.rst +++ b/docs/xlat-tables-lib-v2-design.rst @@ -66,7 +66,8 @@ map. It is one of the key interfaces to the library. It is identified by: - its physical base address; - its virtual base address; - its size; -- its attributes. +- its attributes; +- its mapping granularity (optional). See the ``struct mmap_region`` type in `xlat\_tables\_v2.h`_. @@ -76,9 +77,37 @@ might create new translation tables, update or split existing ones. The region attributes specify the type of memory (for example device or cached normal memory) as well as the memory access permissions (read-only or -read-write, executable or not, secure or non-secure, and so on). See the -``mmap_attr_t`` enumeration type in `xlat\_tables\_v2.h`_. - +read-write, executable or not, secure or non-secure, and so on). In the case of +the EL1&0 translation regime, the attributes also specify whether the region is +a User region (EL0) or Privileged region (EL1). See the ``mmap_attr_t`` +enumeration type in `xlat\_tables\_v2.h`_. Note that for the EL1&0 translation +regime the Execute Never attribute is set simultaneously for both EL1 and EL0. + +The granularity controls the translation table level to go down to when mapping +the region. For example, assuming the MMU has been configured to use a 4KB +granule size, the library might map a 2MB memory region using either of the two +following options: + +- using a single level-2 translation table entry; +- using a level-2 intermediate entry to a level-3 translation table (which + contains 512 entries, each mapping 4KB). + +The first solution potentially requires less translation tables, hence +potentially less memory. However, if part of this 2MB region is later remapped +with different memory attributes, the library might need to split the existing +page tables to refine the mappings. If a single level-2 entry has been used +here, a level-3 table will need to be allocated on the fly and the level-2 +modified to point to this new level-3 table. This has a performance cost at +run-time. + +If the user knows upfront that such a remapping operation is likely to happen +then they might enforce a 4KB mapping granularity for this 2MB region from the +beginning; remapping some of these 4KB pages on the fly then becomes a +lightweight operation. + +The region's granularity is an optional field; if it is not specified the +library will choose the mapping granularity for this region as it sees fit (more +details can be found in `The memory mapping algorithm`_ section below). Translation Context ~~~~~~~~~~~~~~~~~~~ @@ -190,6 +219,11 @@ the ``MAP_REGION*()`` family of helper macros. This is to limit the risk of compatibility breaks, should the ``mmap_region`` structure type evolve in the future. +The ``MAP_REGION()`` and ``MAP_REGION_FLAT()`` macros do not allow specifying a +mapping granularity, which leaves the library implementation free to choose +it. However, in cases where a specific granularity is required, the +``MAP_REGION2()`` macro might be used instead. + As explained earlier in this document, when the dynamic mapping feature is disabled, there is no notion of dynamic regions. Conceptually, there are only static regions. For this reason (and to retain backward compatibility with the @@ -265,6 +299,9 @@ The architectural module Core module ~~~~~~~~~~~ +From mmap regions to translation tables +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + All the APIs in this module work on a translation context. The translation context contains the list of ``mmap_region``, which holds the information of all the regions that are mapped at any given time. Whenever there is a request to @@ -288,14 +325,18 @@ After the ``init_xlat_tables()`` API has been called, only dynamic regions can be added. Changes to the translation tables (as well as the mmap regions list) will take effect immediately. +The memory mapping algorithm +^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + The mapping function is implemented as a recursive algorithm. It is however bound by the level of depth of the translation tables (the ARMv8-A architecture allows up to 4 lookup levels). -By default, the algorithm will attempt to minimize the number of translation -tables created to satisfy the user's request. It will favour mapping a region -using the biggest possible blocks, only creating a sub-table if it is strictly -necessary. This is to reduce the memory footprint of the firmware. +By default [#granularity-ref]_, the algorithm will attempt to minimize the +number of translation tables created to satisfy the user's request. It will +favour mapping a region using the biggest possible blocks, only creating a +sub-table if it is strictly necessary. This is to reduce the memory footprint of +the firmware. The most common reason for needing a sub-table is when a specific mapping requires a finer granularity. Misaligned regions also require a finer @@ -322,6 +363,12 @@ entries in the translation tables are checked to ensure consistency. Please refer to the comments in the source code of the core module for more details about the sorting algorithm in use. +.. [#granularity-ref] That is, when mmap regions do not enforce their mapping + granularity. + +TLB maintenance operations +^^^^^^^^^^^^^^^^^^^^^^^^^^ + The library takes care of performing TLB maintenance operations when required. For example, when the user requests removing a dynamic region, the library invalidates all TLB entries associated to that region to ensure that these |