feat(interrupts): initialize interrupt controller
This patch adds support for initializing interrupt controller interface
while booting hafnium.
We also provide dummy implementation of various interfaces for GICv3
interrupt controller here. The correct implementation is provided in
the following patch.
Change-Id: I40c17ca53e62abffc43b70b1c1bc538734f827b1
Signed-off-by: Madhukar Pappireddy <madhukar.pappireddy@arm.com>
diff --git a/src/arch/fake/hypervisor/cpu.c b/src/arch/fake/hypervisor/cpu.c
index 8f3a5ad..cc35dd7 100644
--- a/src/arch/fake/hypervisor/cpu.c
+++ b/src/arch/fake/hypervisor/cpu.c
@@ -50,4 +50,6 @@
{
(void)c;
(void)entry_point;
+
+ plat_interrupts_controller_hw_init(c);
}