feat: reclaim all resources from an aborted SP

Once any execution context of an SP is aborted, all the resources of
the SP are reclaimed by SPMC. This patch creates a placeholder
function to this effect which can be populated with necessary actions
such as disabling all interrupts belonging to the SP.

Signed-off-by: Madhukar Pappireddy <madhukar.pappireddy@arm.com>
Change-Id: Ia4c2913ad0aeda21770052ca748d41734cafd8b4
diff --git a/inc/hf/arch/plat/ffa.h b/inc/hf/arch/plat/ffa.h
index b5f2d01..3d7b8c0 100644
--- a/inc/hf/arch/plat/ffa.h
+++ b/inc/hf/arch/plat/ffa.h
@@ -371,3 +371,8 @@
  */
 int64_t plat_ffa_interrupt_reconfigure(uint32_t int_id, uint32_t command,
 				       uint32_t value, struct vcpu *current);
+
+/**
+ * Reclaim all resources belonging to VM in aborted state.
+ */
+void plat_ffa_free_vm_resources(struct vm_locked vm_locked);