feat(scheduled mode): initialize schedule mode for FFA_RUN
This patch performs the initialization of schedule mode and partition
runtime model for target SP upon FFA_RUN invocation.
Change-Id: I46346e96fe55e7d9be598996380c1877061fd0d6
Signed-off-by: Madhukar Pappireddy <madhukar.pappireddy@arm.com>
diff --git a/src/arch/fake/hypervisor/ffa.c b/src/arch/fake/hypervisor/ffa.c
index 2983ef3..c41169b 100644
--- a/src/arch/fake/hypervisor/ffa.c
+++ b/src/arch/fake/hypervisor/ffa.c
@@ -441,6 +441,14 @@
return true;
}
+void plat_ffa_init_schedule_mode_ffa_run(struct vcpu *current,
+ struct vcpu_locked target_locked)
+{
+ /* Scheduling mode not supported in the Hypervisor/VMs. */
+ (void)current;
+ (void)target_locked;
+}
+
void plat_ffa_wind_call_chain_ffa_direct_req(
struct vcpu_locked current_locked,
struct vcpu_locked receiver_vcpu_locked)