diff options
author | Deepika Bhavnani <deepika.bhavnani@arm.com> | 2019-12-13 10:50:07 -0600 |
---|---|---|
committer | Soby Mathew <soby.mathew@arm.com> | 2020-01-24 13:14:55 +0000 |
commit | ac2f6d4353a7b817df97c7f120d13bd6157f7931 (patch) | |
tree | a1298ce59465b6ac4caed9aaa4cc69f39318dbca | |
parent | 713403cb4d36a68afdb37eb87623555bb41ed33c (diff) | |
download | platform_external_arm-trusted-firmware-ac2f6d4353a7b817df97c7f120d13bd6157f7931.tar.gz platform_external_arm-trusted-firmware-ac2f6d4353a7b817df97c7f120d13bd6157f7931.tar.bz2 platform_external_arm-trusted-firmware-ac2f6d4353a7b817df97c7f120d13bd6157f7931.zip |
marvell: Unify Platform specific defines for PSCI module
PLATFORM_CORE_COUNT - Unsigned int
PLATFORM_CLUSTER_COUNT - Unsigned int
PLATFORM_MAX_CPUS_PER_CLUSTER - Unsigned int
PLATFORM_CORE_COUNT_PER_CLUSTER - Unsigned int
Signed-off-by: Deepika Bhavnani <deepika.bhavnani@arm.com>
Change-Id: I7d660d5a9d7e44601353c77e9b6ee4096a277d76
-rw-r--r-- | plat/marvell/a3700/common/include/platform_def.h | 4 | ||||
-rw-r--r-- | plat/marvell/a8k/common/include/platform_def.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/plat/marvell/a3700/common/include/platform_def.h b/plat/marvell/a3700/common/include/platform_def.h index 591f04585..e6660d407 100644 --- a/plat/marvell/a3700/common/include/platform_def.h +++ b/plat/marvell/a3700/common/include/platform_def.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 Marvell International Ltd. + * Copyright (C) 2016-2019 Marvell International Ltd. * * SPDX-License-Identifier: BSD-3-Clause * https://spdx.org/licenses @@ -78,7 +78,7 @@ (PLAT_MARVELL_ATF_LOAD_ADDR + 0x20000) #define PLAT_MARVELL_FIP_MAX_SIZE 0x4000000 -#define PLAT_MARVELL_CLUSTER_CORE_COUNT 2 +#define PLAT_MARVELL_CLUSTER_CORE_COUNT U(2) /* DRAM[2MB..66MB] is used as Trusted ROM */ #define PLAT_MARVELL_TRUSTED_ROM_BASE PLAT_MARVELL_ATF_LOAD_ADDR /* 64 MB TODO: reduce this to minimum needed according to fip image size*/ diff --git a/plat/marvell/a8k/common/include/platform_def.h b/plat/marvell/a8k/common/include/platform_def.h index b9c2e0ed7..ec1c9036c 100644 --- a/plat/marvell/a8k/common/include/platform_def.h +++ b/plat/marvell/a8k/common/include/platform_def.h @@ -86,8 +86,8 @@ #define PLAT_MARVELL_NORTHB_COUNT 1 -#define PLAT_MARVELL_CLUSTER_COUNT 2 -#define PLAT_MARVELL_CLUSTER_CORE_COUNT 2 +#define PLAT_MARVELL_CLUSTER_COUNT U(2) +#define PLAT_MARVELL_CLUSTER_CORE_COUNT U(2) #define PLAT_MARVELL_CORE_COUNT (PLAT_MARVELL_CLUSTER_COUNT * \ PLAT_MARVELL_CLUSTER_CORE_COUNT) |