feat(notifications): bitmaps create and destroy
Handle FF-A calls FFA_NOTIFICATION_BITMAP_CREATE and
FFA_NOTIFICATION_BITMAP_DESTROY.
Interfaces are to be used by the NWd (Hypervisor or single OS kernel).
Change-Id: I0d805875ae6c7f8c080bda04e9e496d9e0d79b00
Signed-off-by: J-Alves <joao.alves@arm.com>
diff --git a/inc/hf/api.h b/inc/hf/api.h
index 7543ac3..75441c4 100644
--- a/inc/hf/api.h
+++ b/inc/hf/api.h
@@ -96,3 +96,8 @@
struct vcpu *api_switch_to_other_world(struct vcpu *current,
struct ffa_value other_world_ret,
enum vcpu_state vcpu_state);
+struct ffa_value api_ffa_notification_bitmap_create(ffa_vm_id_t vm_id,
+ ffa_vcpu_count_t vcpu_count,
+ struct vcpu *current);
+struct ffa_value api_ffa_notification_bitmap_destroy(ffa_vm_id_t vm_id,
+ struct vcpu *current);