test(cactus): fix build for tc0 platform
A test sharing memory in the 48-bit address range is breaking TC0
build, define the same memory region for TC0 platform as well.
Currently the test is skipped since TC0 is configured with a 40bit PA
range.
Signed-off-by: Federico Recanati <federico.recanati@arm.com>
Change-Id: I2ccc5757a63cd6473a33b1a396187bcb66fc5726
diff --git a/spm/cactus/plat/arm/tc0/include/cactus_platform_def.h b/spm/cactus/plat/arm/tc0/include/cactus_platform_def.h
index a972440..e5d83d6 100644
--- a/spm/cactus/plat/arm/tc0/include/cactus_platform_def.h
+++ b/spm/cactus/plat/arm/tc0/include/cactus_platform_def.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020-2021, Arm Limited. All rights reserved.
+ * Copyright (c) 2020-2022, Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
@@ -32,5 +32,6 @@
#define CACTUS_SP1_MEM_SHARE_BASE 0xfe500000
#define CACTUS_SP2_MEM_SHARE_BASE 0xfe501000
#define CACTUS_SP3_MEM_SHARE_BASE 0xfe502000
+#define CACTUS_SP3_NS_MEM_SHARE_BASE 0x880080001000ULL
#endif /* CACTUS_PLATFORM_DEF_H */