summaryrefslogtreecommitdiff
path: root/plat/hisilicon/hikey960/include
diff options
context:
space:
mode:
authorJohn Tsichritzis <john.tsichritzis@arm.com>2018-10-25 10:05:39 +0100
committerJoel Hutton <Joel.Hutton@Arm.com>2019-01-11 14:35:08 +0000
commite223699220a568c30f4926282b31a87d0b424270 (patch)
tree8efff470efcdc1ed52685278a205b8a03cbddf4a /plat/hisilicon/hikey960/include
parent0541db1e22f9e60ddfcfd663e67c4dc6e3625577 (diff)
hikey960: Fake only 1 core
hikey960 has an unresolved power management bug, so for now we can only run single core tests. The bug report can be found here: https://bugs.96boards.org/show_bug.cgi?id=783 Change-Id: I206fafd7677428f81f48d1c7c1d419402149bd37 Co-authored-by: John Tsichritzis <john.tsichritzis@arm.com> Co-authored-by: Joel Hutton <Joel.Hutton@Arm.com> Signed-off-by: Joel Hutton <Joel.Hutton@Arm.com>
Diffstat (limited to 'plat/hisilicon/hikey960/include')
-rw-r--r--plat/hisilicon/hikey960/include/platform_def.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/plat/hisilicon/hikey960/include/platform_def.h b/plat/hisilicon/hikey960/include/platform_def.h
index fcdd334..e3e878f 100644
--- a/plat/hisilicon/hikey960/include/platform_def.h
+++ b/plat/hisilicon/hikey960/include/platform_def.h
@@ -18,9 +18,13 @@
#define CACHE_WRITEBACK_GRANULE 0x40
-
-#define PLATFORM_CLUSTER_COUNT 2
-#define PLATFORM_CORE_COUNT_PER_CLUSTER 4
+/*
+ * hikey960 has an unresolved power management bug, so for now we can only
+ * run single core tests.
+ * TODO:Update these values when power management bug is resolved
+ */
+#define PLATFORM_CLUSTER_COUNT 1
+#define PLATFORM_CORE_COUNT_PER_CLUSTER 1
#define PLATFORM_CORE_COUNT (PLATFORM_CLUSTER_COUNT * \
PLATFORM_CORE_COUNT_PER_CLUSTER)
#define PLATFORM_NUM_AFFS (PLATFORM_CORE_COUNT + \