aboutsummaryrefslogtreecommitdiff
path: root/include/lib
diff options
context:
space:
mode:
authorLauren Wehrmeister <lauren.wehrmeister@arm.com>2020-06-04 18:35:30 +0000
committerTrustedFirmware Code Review <review@review.trustedfirmware.org>2020-06-04 18:35:30 +0000
commitf2c3b1ba6347b9c7709a2be9e78a9032bb204efe (patch)
tree44ecde906590e85c2afa35e5285edc2e7b367891 /include/lib
parentb53139c36dfdd13b3bedba5c08461060c55b8940 (diff)
parent0922e481e5a2dc2925ca9f26a4de7c9ef7abe1d6 (diff)
downloadtrusted-firmware-a-f2c3b1ba6347b9c7709a2be9e78a9032bb204efe.tar.gz
Merge "xlat_tables_v2: add base table section name parameter for spm_mm" into integration
Diffstat (limited to 'include/lib')
-rw-r--r--include/lib/xlat_tables/xlat_tables_v2.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/lib/xlat_tables/xlat_tables_v2.h b/include/lib/xlat_tables/xlat_tables_v2.h
index 8eb84a8929..359b9839a9 100644
--- a/include/lib/xlat_tables/xlat_tables_v2.h
+++ b/include/lib/xlat_tables/xlat_tables_v2.h
@@ -201,16 +201,20 @@ typedef struct xlat_ctx xlat_ctx_t;
* _section_name:
* Specify the name of the section where the translation tables have to be
* placed by the linker.
+ *
+ * _base_table_section_name:
+ * Specify the name of the section where the base translation tables have to
+ * be placed by the linker.
*/
#define REGISTER_XLAT_CONTEXT2(_ctx_name, _mmap_count, _xlat_tables_count, \
_virt_addr_space_size, _phy_addr_space_size, \
- _xlat_regime, _section_name) \
+ _xlat_regime, _section_name, _base_table_section_name) \
REGISTER_XLAT_CONTEXT_FULL_SPEC(_ctx_name, (_mmap_count), \
(_xlat_tables_count), \
(_virt_addr_space_size), \
(_phy_addr_space_size), \
(_xlat_regime), \
- (_section_name), ".bss" \
+ (_section_name), (_base_table_section_name) \
)
/******************************************************************************