ipa_rm_dependency_graph.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2013-2018, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/slab.h>
  6. #include "ipa_rm_dependency_graph.h"
  7. #include "ipa_rm_i.h"
  8. static int ipa_rm_dep_get_index(enum ipa_rm_resource_name resource_name)
  9. {
  10. int resource_index = IPA_RM_INDEX_INVALID;
  11. if (IPA_RM_RESORCE_IS_PROD(resource_name))
  12. resource_index = ipa_rm_prod_index(resource_name);
  13. else if (IPA_RM_RESORCE_IS_CONS(resource_name))
  14. resource_index = ipa_rm_cons_index(resource_name);
  15. return resource_index;
  16. }
  17. /**
  18. * ipa_rm_dep_graph_create() - creates graph
  19. * @dep_graph: [out] created dependency graph
  20. *
  21. * Returns: dependency graph on success, NULL on failure
  22. */
  23. int ipa_rm_dep_graph_create(struct ipa_rm_dep_graph **dep_graph)
  24. {
  25. int result = 0;
  26. *dep_graph = kzalloc(sizeof(**dep_graph), GFP_KERNEL);
  27. if (!*dep_graph)
  28. result = -ENOMEM;
  29. return result;
  30. }
  31. /**
  32. * ipa_rm_dep_graph_delete() - destroyes the graph
  33. * @graph: [in] dependency graph
  34. *
  35. * Frees all resources.
  36. */
  37. void ipa_rm_dep_graph_delete(struct ipa_rm_dep_graph *graph)
  38. {
  39. int resource_index;
  40. if (!graph) {
  41. IPA_RM_ERR("invalid params\n");
  42. return;
  43. }
  44. for (resource_index = 0;
  45. resource_index < IPA_RM_RESOURCE_MAX;
  46. resource_index++)
  47. kfree(graph->resource_table[resource_index]);
  48. memset(graph->resource_table, 0, sizeof(graph->resource_table));
  49. }
  50. /**
  51. * ipa_rm_dep_graph_get_resource() - provides a resource by name
  52. * @graph: [in] dependency graph
  53. * @name: [in] name of the resource
  54. * @resource: [out] resource in case of success
  55. *
  56. * Returns: 0 on success, negative on failure
  57. */
  58. int ipa_rm_dep_graph_get_resource(
  59. struct ipa_rm_dep_graph *graph,
  60. enum ipa_rm_resource_name resource_name,
  61. struct ipa_rm_resource **resource)
  62. {
  63. int result;
  64. int resource_index;
  65. if (!graph) {
  66. result = -EINVAL;
  67. goto bail;
  68. }
  69. resource_index = ipa_rm_dep_get_index(resource_name);
  70. if (resource_index == IPA_RM_INDEX_INVALID) {
  71. result = -EINVAL;
  72. goto bail;
  73. }
  74. *resource = graph->resource_table[resource_index];
  75. if (!*resource) {
  76. result = -EINVAL;
  77. goto bail;
  78. }
  79. result = 0;
  80. bail:
  81. return result;
  82. }
  83. /**
  84. * ipa_rm_dep_graph_add() - adds resource to graph
  85. * @graph: [in] dependency graph
  86. * @resource: [in] resource to add
  87. *
  88. * Returns: 0 on success, negative on failure
  89. */
  90. int ipa_rm_dep_graph_add(struct ipa_rm_dep_graph *graph,
  91. struct ipa_rm_resource *resource)
  92. {
  93. int result = 0;
  94. int resource_index;
  95. if (!graph || !resource) {
  96. result = -EINVAL;
  97. goto bail;
  98. }
  99. resource_index = ipa_rm_dep_get_index(resource->name);
  100. if (resource_index == IPA_RM_INDEX_INVALID) {
  101. result = -EINVAL;
  102. goto bail;
  103. }
  104. graph->resource_table[resource_index] = resource;
  105. bail:
  106. return result;
  107. }
  108. /**
  109. * ipa_rm_dep_graph_remove() - removes resource from graph
  110. * @graph: [in] dependency graph
  111. * @resource: [in] resource to add
  112. *
  113. * Returns: 0 on success, negative on failure
  114. */
  115. int ipa_rm_dep_graph_remove(struct ipa_rm_dep_graph *graph,
  116. enum ipa_rm_resource_name resource_name)
  117. {
  118. if (!graph)
  119. return -EINVAL;
  120. graph->resource_table[resource_name] = NULL;
  121. return 0;
  122. }
  123. /**
  124. * ipa_rm_dep_graph_add_dependency() - adds dependency between
  125. * two nodes in graph
  126. * @graph: [in] dependency graph
  127. * @resource_name: [in] resource to add
  128. * @depends_on_name: [in] resource to add
  129. * @userspace_dep: [in] operation requested by userspace ?
  130. *
  131. * Returns: 0 on success, negative on failure
  132. */
  133. int ipa_rm_dep_graph_add_dependency(struct ipa_rm_dep_graph *graph,
  134. enum ipa_rm_resource_name resource_name,
  135. enum ipa_rm_resource_name depends_on_name,
  136. bool userspace_dep)
  137. {
  138. struct ipa_rm_resource *dependent = NULL;
  139. struct ipa_rm_resource *dependency = NULL;
  140. int result;
  141. if (!graph ||
  142. !IPA_RM_RESORCE_IS_PROD(resource_name) ||
  143. !IPA_RM_RESORCE_IS_CONS(depends_on_name)) {
  144. IPA_RM_ERR("invalid params\n");
  145. result = -EINVAL;
  146. goto bail;
  147. }
  148. if (ipa_rm_dep_graph_get_resource(graph,
  149. resource_name,
  150. &dependent)) {
  151. IPA_RM_ERR("%s does not exist\n",
  152. ipa_rm_resource_str(resource_name));
  153. result = -EINVAL;
  154. goto bail;
  155. }
  156. if (ipa_rm_dep_graph_get_resource(graph,
  157. depends_on_name,
  158. &dependency)) {
  159. IPA_RM_ERR("%s does not exist\n",
  160. ipa_rm_resource_str(depends_on_name));
  161. result = -EINVAL;
  162. goto bail;
  163. }
  164. result = ipa_rm_resource_add_dependency(dependent, dependency,
  165. userspace_dep);
  166. bail:
  167. IPA_RM_DBG("EXIT with %d\n", result);
  168. return result;
  169. }
  170. /**
  171. * ipa_rm_dep_graph_delete_dependency() - deleted dependency between
  172. * two nodes in graph
  173. * @graph: [in] dependency graph
  174. * @resource_name: [in] resource to delete
  175. * @depends_on_name: [in] resource to delete
  176. * @userspace_dep: [in] operation requested by userspace ?
  177. *
  178. * Returns: 0 on success, negative on failure
  179. *
  180. */
  181. int ipa_rm_dep_graph_delete_dependency(struct ipa_rm_dep_graph *graph,
  182. enum ipa_rm_resource_name resource_name,
  183. enum ipa_rm_resource_name depends_on_name,
  184. bool userspace_dep)
  185. {
  186. struct ipa_rm_resource *dependent = NULL;
  187. struct ipa_rm_resource *dependency = NULL;
  188. int result;
  189. if (!graph ||
  190. !IPA_RM_RESORCE_IS_PROD(resource_name) ||
  191. !IPA_RM_RESORCE_IS_CONS(depends_on_name)) {
  192. IPA_RM_ERR("invalid params\n");
  193. result = -EINVAL;
  194. goto bail;
  195. }
  196. if (ipa_rm_dep_graph_get_resource(graph,
  197. resource_name,
  198. &dependent)) {
  199. IPA_RM_DBG("%s does not exist\n",
  200. ipa_rm_resource_str(resource_name));
  201. result = -EINVAL;
  202. goto bail;
  203. }
  204. if (ipa_rm_dep_graph_get_resource(graph,
  205. depends_on_name,
  206. &dependency)) {
  207. IPA_RM_DBG("%s does not exist\n",
  208. ipa_rm_resource_str(depends_on_name));
  209. result = -EINVAL;
  210. goto bail;
  211. }
  212. result = ipa_rm_resource_delete_dependency(dependent, dependency,
  213. userspace_dep);
  214. bail:
  215. IPA_RM_DBG("EXIT with %d\n", result);
  216. return result;
  217. }