Add version 2 of xlat tables library
authorAntonio Nino Diaz <antonio.ninodiaz@arm.com>
Wed, 8 Mar 2017 14:40:23 +0000 (14:40 +0000)
committerAntonio Nino Diaz <antonio.ninodiaz@arm.com>
Wed, 8 Mar 2017 14:40:23 +0000 (14:40 +0000)
commit7bb01fb29af23fe63f97d4c94827274feee5baf1
tree9ead81465ef1b2a0faa908a93757a94f862e6cf3
parentd6845d3dc3030335e9c13cf37f9ba1333a776629
Add version 2 of xlat tables library

The folder lib/xlat_tables_v2 has been created to store a new version
of the translation tables library for further modifications in patches
to follow. At the moment it only contains a basic implementation that
supports static regions.

This library allows different translation tables to be modified by
using different 'contexts'. For now, the implementation defaults to
the translation tables used by the current image, but it is possible
to modify other tables than the ones in use.

Added a new API to print debug information for the current state of
the translation tables, rather than printing the information while
the tables are being created. This allows subsequent debug printing
of the xlat tables after they have been changed, which will be useful
when dynamic regions are implemented in a patch to follow.

The common definitions stored in `xlat_tables.h` header have been moved
to a new file common to both versions, `xlat_tables_defs.h`.

All headers related to the translation tables library have been moved to
a the subfolder `xlat_tables`.

Change-Id: Ia55962c33e0b781831d43a548e505206dffc5ea9
Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
14 files changed:
Makefile
include/lib/xlat_tables.h [deleted file]
include/lib/xlat_tables/xlat_mmu_helpers.h [new file with mode: 0644]
include/lib/xlat_tables/xlat_tables.h [new file with mode: 0644]
include/lib/xlat_tables/xlat_tables_defs.h [new file with mode: 0644]
include/lib/xlat_tables/xlat_tables_v2.h [new file with mode: 0644]
lib/xlat_tables_v2/aarch32/xlat_tables_arch.c [new file with mode: 0644]
lib/xlat_tables_v2/aarch32/xlat_tables_arch.h [new file with mode: 0644]
lib/xlat_tables_v2/aarch64/xlat_tables_arch.c [new file with mode: 0644]
lib/xlat_tables_v2/aarch64/xlat_tables_arch.h [new file with mode: 0644]
lib/xlat_tables_v2/xlat_tables.mk [new file with mode: 0644]
lib/xlat_tables_v2/xlat_tables_common.c [new file with mode: 0644]
lib/xlat_tables_v2/xlat_tables_internal.c [new file with mode: 0644]
lib/xlat_tables_v2/xlat_tables_private.h [new file with mode: 0644]