diff options
author | Sandrine Bailleux <sandrine.bailleux@arm.com> | 2016-04-26 14:49:57 +0100 |
---|---|---|
committer | Sandrine Bailleux <sandrine.bailleux@arm.com> | 2016-04-27 09:29:06 +0100 |
commit | 3c2c72fa4c359b8fb5397532f49fdf1fe0f7ad2d (patch) | |
tree | fa44a3f39aa6b6c88cddb72e7ac4aff3c0de8da4 /docs | |
parent | 142ff9b5f5d80d0c5e5a235f5c80570a535c7e72 (diff) |
Doc: Fix the path to the xlat lib
The translation table library code has moved from lib/aarch64/ to
lib/xlat_tables/ since commit 3ca9928df but the Porting Guide still
points to the old location. This patch fixes this issue.
Change-Id: I983a9a100d70eacf6bac71725ffbb4bb5f3732b0
Diffstat (limited to 'docs')
-rw-r--r-- | docs/porting-guide.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/porting-guide.md b/docs/porting-guide.md index 0d713c4a..f6dfe55a 100644 --- a/docs/porting-guide.md +++ b/docs/porting-guide.md @@ -76,8 +76,8 @@ either mandatory or optional. A platform port must enable the Memory Management Unit (MMU) as well as the instruction and data caches for each BL stage. Setting up the translation tables is the responsibility of the platform port because memory maps differ -across platforms. A memory translation library (see `lib/aarch64/xlat_tables.c`) -is provided to help in this setup. Note that although this library supports +across platforms. A memory translation library (see `lib/xlat_tables/`) is +provided to help in this setup. Note that although this library supports non-identity mappings, this is intended only for re-mapping peripheral physical addresses and allows platforms with high I/O addresses to reduce their virtual address space. All other addresses corresponding to code and data must currently |