diff options
author | danh-arm <dan.handley@arm.com> | 2016-12-19 15:39:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-19 15:39:01 +0000 |
commit | 78b4c5b0785f73eb95a58ac9fe8d696f3fef5224 (patch) | |
tree | 690ec0932a1ac07be849fca63cd6677da3aed161 /docs/porting-guide.md | |
parent | 176129530e80491a789ea6402a18b65834c7fe54 (diff) | |
parent | 2240f45b1aa238b0bfa6b9ec608ec1574e5088bd (diff) |
Merge pull request #778 from antonio-nino-diaz-arm/an/xlat-fixes
Fixes and improvements to translation tables library
Diffstat (limited to 'docs/porting-guide.md')
-rw-r--r-- | docs/porting-guide.md | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/docs/porting-guide.md b/docs/porting-guide.md index 74a0a85f..67caa045 100644 --- a/docs/porting-guide.md +++ b/docs/porting-guide.md @@ -443,7 +443,19 @@ constant must also be defined: * **#define : ADDR_SPACE_SIZE** Defines the total size of the address space in bytes. For example, for a 32 - bit address space, this value should be `(1ull << 32)`. + bit address space, this value should be `(1ull << 32)`. This definition is + now deprecated, platforms should use `PLAT_PHY_ADDR_SPACE_SIZE` and + `PLAT_VIRT_ADDR_SPACE_SIZE` instead. + +* **#define : PLAT_VIRT_ADDR_SPACE_SIZE** + + Defines the total size of the virtual address space in bytes. For example, + for a 32 bit virtual address space, this value should be `(1ull << 32)`. + +* **#define : PLAT_PHY_ADDR_SPACE_SIZE** + + Defines the total size of the physical address space in bytes. For example, + for a 32 bit physical address space, this value should be `(1ull << 32)`. If the platform port uses the IO storage framework, the following constants must also be defined: |