aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarry Liebel <Harry.Liebel@arm.com>2014-02-24 12:01:27 +0000
committerDan Handley <dan.handley@arm.com>2014-02-26 19:53:47 +0000
commitd19e4979bf19004af1d508e57c78fcd675cdbb52 (patch)
treecaac48bf25a26ebd30dfbf9f107d013853e3c05d
parent8aa559c0712c6b119b847c8f336d8074b0815257 (diff)
Reduce GICv3 debug output
Change-Id: Ia8502f8d0566025d8bad150029f49cb63815261d
-rw-r--r--arch/system/gic/gic_v3.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/system/gic/gic_v3.c b/arch/system/gic/gic_v3.c
index 2fef539..b7db1f0 100644
--- a/arch/system/gic/gic_v3.c
+++ b/arch/system/gic/gic_v3.c
@@ -60,8 +60,12 @@ uintptr_t gicv3_get_rdist(uintptr_t gicr_base, uint64_t mpidr)
gicr_aff = (gicr_typer >> GICR_TYPER_AFF_SHIFT) &
GICR_TYPER_AFF_MASK;
if (cpu_aff == gicr_aff) {
- INFO("GICv3 - Found RDIST for MPIDR(0x%lx) at 0x%lx\n",
- mpidr, addr);
+ /* Disable this print for now as it appears every time
+ * when using PSCI CPU_SUSPEND.
+ * TODO: Print this only the first time for each CPU.
+ * INFO("GICv3 - Found RDIST for MPIDR(0x%lx) at 0x%lx\n",
+ * mpidr, addr);
+ */
return addr;
}