aboutsummaryrefslogtreecommitdiff
path: root/documentation
diff options
context:
space:
mode:
authorEtienne Carriere <etienne.carriere@linaro.org>2018-04-25 14:47:13 +0200
committerJérôme Forissier <jerome.forissier@linaro.org>2018-04-25 18:26:18 +0200
commit6f4e40abea22623e62dfba668f869db2cd01016a (patch)
treeb9f82d8a4b708e6446803215dad7b89c3187e600 /documentation
parent247bea90bfd8889052c0ff37d20071810aeaa967 (diff)
core: remove CFG_ prefix from CFG_SHMEM_START/_SIZE
Almost platform currently define these directives from within the source code, through platform_config.h. These values do not need to be configuration directive with the CFG_ prefix. This change renames the CFG_SHMEM_xxx into TEE_SHMEM_xxx so that they do not mess with the platform configuration directives. Yet, the old CFG_SHMEM_START/SIZE directives can still be used by platform_config.h to set TEE_SHMEM_START/SIZE if the platform supports it (i.e plat-stm). Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org> Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/porting_guidelines.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/porting_guidelines.md b/documentation/porting_guidelines.md
index 702df73b..c8e1d210 100644
--- a/documentation/porting_guidelines.md
+++ b/documentation/porting_guidelines.md
@@ -147,8 +147,8 @@ could look like this:
#define DRAM0_SIZE 0x40000000
/* Below ARM-TF */
-#define CFG_SHMEM_START 0x08000000
-#define CFG_SHMEM_SIZE (4 * 1024 * 1024)
+#define TEE_SHMEM_START 0x08000000
+#define TEE_SHMEM_SIZE (4 * 1024 * 1024)
/* If your device has SRAM */
#define TZSRAM_BASE 0x3F000000