Add plat_psci_cpu_resume cpu and entry point parameters

Add cpu and entry point parameters to PSCI resume function
called upon cold boot or CPU resume from off.

Change-Id: Ic1710e85297772210a3e52595a978cf949d409b1
Signed-off-by: Olivier Deprez <olivier.deprez@arm.com>
diff --git a/inc/hf/arch/plat/psci.h b/inc/hf/arch/plat/psci.h
index d42cbc7..5cbef53 100644
--- a/inc/hf/arch/plat/psci.h
+++ b/inc/hf/arch/plat/psci.h
@@ -28,4 +28,4 @@
 void plat_psci_cpu_suspend(uint32_t power_state);
 
 /** Called when a CPU resumes from being off or suspended. */
-void plat_psci_cpu_resume(void);
+void plat_psci_cpu_resume(struct cpu *c, ipaddr_t entry_point);