ipa_rm_dependency_graph.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2013-2018, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _IPA_RM_DEPENDENCY_GRAPH_H_
  6. #define _IPA_RM_DEPENDENCY_GRAPH_H_
  7. #include <linux/list.h>
  8. #include <linux/ipa.h>
  9. #include "ipa_rm_resource.h"
  10. struct ipa_rm_dep_graph {
  11. struct ipa_rm_resource *resource_table[IPA_RM_RESOURCE_MAX];
  12. };
  13. int ipa_rm_dep_graph_get_resource(
  14. struct ipa_rm_dep_graph *graph,
  15. enum ipa_rm_resource_name name,
  16. struct ipa_rm_resource **resource);
  17. int ipa_rm_dep_graph_create(struct ipa_rm_dep_graph **dep_graph);
  18. void ipa_rm_dep_graph_delete(struct ipa_rm_dep_graph *graph);
  19. int ipa_rm_dep_graph_add(struct ipa_rm_dep_graph *graph,
  20. struct ipa_rm_resource *resource);
  21. int ipa_rm_dep_graph_remove(struct ipa_rm_dep_graph *graph,
  22. enum ipa_rm_resource_name resource_name);
  23. int ipa_rm_dep_graph_add_dependency(struct ipa_rm_dep_graph *graph,
  24. enum ipa_rm_resource_name resource_name,
  25. enum ipa_rm_resource_name depends_on_name,
  26. bool userspsace_dep);
  27. int ipa_rm_dep_graph_delete_dependency(struct ipa_rm_dep_graph *graph,
  28. enum ipa_rm_resource_name resource_name,
  29. enum ipa_rm_resource_name depends_on_name,
  30. bool userspsace_dep);
  31. #endif /* _IPA_RM_DEPENDENCY_GRAPH_H_ */