Library rt.analysis.basic.interference_bound_fp

Require Import rt.util.all.
Require Import rt.model.basic.schedule rt.model.basic.priority rt.model.basic.workload
               rt.model.basic.interference.
Require Import rt.analysis.basic.workload_bound rt.analysis.basic.interference_bound.

Module InterferenceBoundFP.

  Import Schedule WorkloadBound Priority Interference.
  Export InterferenceBoundGeneric.

    Section Definitions.

    Context {sporadic_task: eqType}.
    Variable task_cost: sporadic_task time.
    Variable task_period: sporadic_task time.
    Variable task_deadline: sporadic_task time.

    (* Let tsk be the task to be analyzed. *)
    Variable tsk: sporadic_task.

    Let task_with_response_time := (sporadic_task × time)%type.

    (* Assume a known response-time bound for each interfering task ... *)
    Variable R_prev: seq task_with_response_time.

    (* ... and an interval length delta. *)
    Variable delta: time.

    (* Assume an FP policy. *)
    Variable higher_eq_priority: FP_policy sporadic_task.

    Let can_interfere_with_tsk := fp_can_interfere_with higher_eq_priority tsk.
    Let total_interference_bound := interference_bound_generic task_cost task_period tsk delta.

    (* The total interference incurred by tsk is bounded by the sum
       of individual task interferences. *)

    Definition total_interference_bound_fp :=
      \sum_((tsk_other, R_other) <- R_prev | can_interfere_with_tsk tsk_other)
         total_interference_bound (tsk_other, R_other).

  End Definitions.

End InterferenceBoundFP.