ipa_rm_resource.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2013-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _IPA_RM_RESOURCE_H_
  6. #define _IPA_RM_RESOURCE_H_
  7. #include <linux/list.h>
  8. #include <linux/ipa.h>
  9. #include "ipa_rm_peers_list.h"
  10. /**
  11. * enum ipa_rm_resource_state - resource state
  12. */
  13. enum ipa_rm_resource_state {
  14. IPA_RM_RELEASED,
  15. IPA_RM_REQUEST_IN_PROGRESS,
  16. IPA_RM_GRANTED,
  17. IPA_RM_RELEASE_IN_PROGRESS
  18. };
  19. /**
  20. * enum ipa_rm_resource_type - IPA resource manager resource type
  21. */
  22. enum ipa_rm_resource_type {
  23. IPA_RM_PRODUCER,
  24. IPA_RM_CONSUMER
  25. };
  26. /**
  27. * struct ipa_rm_notification_info - notification information
  28. * of IPA RM client
  29. * @reg_params: registration parameters
  30. * @explicit: registered explicitly by ipa_rm_register()
  31. * @link: link to the list of all registered clients information
  32. */
  33. struct ipa_rm_notification_info {
  34. struct ipa_rm_register_params reg_params;
  35. bool explicit;
  36. struct list_head link;
  37. };
  38. /**
  39. * struct ipa_rm_resource - IPA RM resource
  40. * @name: name identifying resource
  41. * @type: type of resource (PRODUCER or CONSUMER)
  42. * @floor_voltage: minimum voltage level for operation
  43. * @max_bw: maximum bandwidth required for resource in Mbps
  44. * @state: state of the resource
  45. * @peers_list: list of the peers of the resource
  46. */
  47. struct ipa_rm_resource {
  48. enum ipa_rm_resource_name name;
  49. enum ipa_rm_resource_type type;
  50. enum ipa_voltage_level floor_voltage;
  51. u32 max_bw;
  52. u32 needed_bw;
  53. enum ipa_rm_resource_state state;
  54. struct ipa_rm_peers_list *peers_list;
  55. };
  56. /**
  57. * struct ipa_rm_resource_cons - IPA RM consumer
  58. * @resource: resource
  59. * @usage_count: number of producers in GRANTED / REQUESTED state
  60. * using this consumer
  61. * @request_consumer_in_progress: when set, the consumer is during its request
  62. * phase
  63. * @request_resource: function which should be called to request resource
  64. * from resource manager
  65. * @release_resource: function which should be called to release resource
  66. * from resource manager
  67. * Add new fields after @resource only.
  68. */
  69. struct ipa_rm_resource_cons {
  70. struct ipa_rm_resource resource;
  71. int usage_count;
  72. struct completion request_consumer_in_progress;
  73. int (*request_resource)(void);
  74. int (*release_resource)(void);
  75. };
  76. /**
  77. * struct ipa_rm_resource_prod - IPA RM producer
  78. * @resource: resource
  79. * @event_listeners: clients registered with this producer
  80. * for notifications in resource state
  81. * list Add new fields after @resource only.
  82. */
  83. struct ipa_rm_resource_prod {
  84. struct ipa_rm_resource resource;
  85. struct list_head event_listeners;
  86. int pending_request;
  87. int pending_release;
  88. };
  89. int ipa_rm_resource_create(
  90. struct ipa_rm_create_params *create_params,
  91. struct ipa_rm_resource **resource);
  92. int ipa_rm_resource_delete(struct ipa_rm_resource *resource);
  93. int ipa_rm_resource_producer_register(struct ipa_rm_resource_prod *producer,
  94. struct ipa_rm_register_params *reg_params,
  95. bool explicit);
  96. int ipa_rm_resource_producer_deregister(struct ipa_rm_resource_prod *producer,
  97. struct ipa_rm_register_params *reg_params);
  98. int ipa_rm_resource_add_dependency(struct ipa_rm_resource *resource,
  99. struct ipa_rm_resource *depends_on,
  100. bool userspace_dep);
  101. int ipa_rm_resource_delete_dependency(struct ipa_rm_resource *resource,
  102. struct ipa_rm_resource *depends_on,
  103. bool userspace_dep);
  104. int ipa_rm_resource_producer_request(struct ipa_rm_resource_prod *producer);
  105. int ipa_rm_resource_producer_release(struct ipa_rm_resource_prod *producer);
  106. int ipa_rm_resource_consumer_request(struct ipa_rm_resource_cons *consumer,
  107. u32 needed_bw,
  108. bool inc_usage_count,
  109. bool wake_client);
  110. int ipa_rm_resource_consumer_release(struct ipa_rm_resource_cons *consumer,
  111. u32 needed_bw,
  112. bool dec_usage_count);
  113. int ipa_rm_resource_set_perf_profile(struct ipa_rm_resource *resource,
  114. struct ipa_rm_perf_profile *profile);
  115. void ipa_rm_resource_consumer_handle_cb(struct ipa_rm_resource_cons *consumer,
  116. enum ipa_rm_event event);
  117. void ipa_rm_resource_producer_notify_clients(
  118. struct ipa_rm_resource_prod *producer,
  119. enum ipa_rm_event event,
  120. bool notify_registered_only);
  121. int ipa_rm_resource_producer_print_stat(
  122. struct ipa_rm_resource *resource,
  123. char *buf,
  124. int size);
  125. int ipa_rm_resource_consumer_request_work(struct ipa_rm_resource_cons *consumer,
  126. enum ipa_rm_resource_state prev_state,
  127. u32 needed_bw,
  128. bool notify_completion,
  129. bool dec_client_on_err);
  130. int ipa_rm_resource_consumer_release_work(
  131. struct ipa_rm_resource_cons *consumer,
  132. enum ipa_rm_resource_state prev_state,
  133. bool notify_completion);
  134. #endif /* _IPA_RM_RESOURCE_H_ */