ipa_pm.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2017-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _IPA_PM_H_
  6. #define _IPA_PM_H_
  7. #include <linux/msm_ipa.h>
  8. /* internal to ipa */
  9. #define IPA_PM_MAX_CLIENTS 32 /* actual max is value -1 since we start from 1*/
  10. #define IPA_PM_MAX_EX_CL 64
  11. #define IPA_PM_THRESHOLD_MAX 5
  12. #define IPA_PM_EXCEPTION_MAX 5
  13. #define IPA_PM_DEFERRED_TIMEOUT 10
  14. /*
  15. * ipa_pm group names
  16. *
  17. * Default stands for individual clients while other groups share one throughput
  18. * Some groups also have special flags like modem which do not vote for clock
  19. * but is accounted for in clock scaling while activated
  20. */
  21. enum ipa_pm_group {
  22. IPA_PM_GROUP_DEFAULT,
  23. IPA_PM_GROUP_APPS,
  24. IPA_PM_GROUP_MODEM,
  25. IPA_PM_GROUP_MAX,
  26. };
  27. /*
  28. * ipa_pm_cb_event
  29. *
  30. * specifies what kind of callback is being called.
  31. * IPA_PM_CLIENT_ACTIVATED: the client has completed asynchronous activation
  32. * IPA_PM_REQUEST_WAKEUP: wake up the client after it has been suspended
  33. */
  34. enum ipa_pm_cb_event {
  35. IPA_PM_CLIENT_ACTIVATED,
  36. IPA_PM_REQUEST_WAKEUP,
  37. IPA_PM_CB_EVENT_MAX,
  38. };
  39. /*
  40. * struct ipa_pm_exception - clients included in exception and its threshold
  41. * @usecase: comma separated client names
  42. * @threshold: the threshold values for the exception
  43. */
  44. struct ipa_pm_exception {
  45. const char *usecase;
  46. int threshold[IPA_PM_THRESHOLD_MAX];
  47. };
  48. /*
  49. * struct ipa_pm_init_params - parameters needed for initializng the pm
  50. * @default_threshold: the thresholds used if no exception passes
  51. * @threshold_size: size of the threshold
  52. * @exceptions: list of exceptions for the pm
  53. * @exception_size: size of the exception_list
  54. */
  55. struct ipa_pm_init_params {
  56. int default_threshold[IPA_PM_THRESHOLD_MAX];
  57. int threshold_size;
  58. struct ipa_pm_exception exceptions[IPA_PM_EXCEPTION_MAX];
  59. int exception_size;
  60. };
  61. /*
  62. * struct ipa_pm_register_params - parameters needed to register a client
  63. * @name: name of the client
  64. * @callback: pointer to the client's callback function
  65. * @user_data: pointer to the client's callback parameters
  66. * @group: group number of the client
  67. * @skip_clk_vote: 0 if client votes for clock when activated, 1 if no vote
  68. */
  69. struct ipa_pm_register_params {
  70. const char *name;
  71. void (*callback)(void *user_data, enum ipa_pm_cb_event);
  72. void *user_data;
  73. enum ipa_pm_group group;
  74. bool skip_clk_vote;
  75. };
  76. #if IS_ENABLED(CONFIG_IPA3)
  77. int ipa_pm_register(struct ipa_pm_register_params *params, u32 *hdl);
  78. int ipa_pm_associate_ipa_cons_to_client(u32 hdl, enum ipa_client_type consumer);
  79. int ipa_pm_activate(u32 hdl);
  80. int ipa_pm_activate_sync(u32 hdl);
  81. int ipa_pm_deferred_deactivate(u32 hdl);
  82. int ipa_pm_deactivate_sync(u32 hdl);
  83. int ipa_pm_set_throughput(u32 hdl, int throughput);
  84. int ipa_pm_deregister(u32 hdl);
  85. /* IPA Internal Functions */
  86. int ipa_pm_init(struct ipa_pm_init_params *params);
  87. int ipa_pm_destroy(void);
  88. int ipa_pm_handle_suspend(u32 pipe_bitmask);
  89. int ipa_pm_deactivate_all_deferred(void);
  90. int ipa_pm_stat(char *buf, int size);
  91. int ipa_pm_exceptions_stat(char *buf, int size);
  92. void ipa_pm_set_clock_index(int index);
  93. #else /* IS_ENABLED(CONFIG_IPA3) */
  94. static inline int ipa_pm_register(
  95. struct ipa_pm_register_params *params, u32 *hdl)
  96. {
  97. return -EPERM;
  98. }
  99. static inline int ipa_pm_associate_ipa_cons_to_client(
  100. u32 hdl, enum ipa_client_type consumer)
  101. {
  102. return -EPERM;
  103. }
  104. static inline int ipa_pm_activate(u32 hdl)
  105. {
  106. return -EPERM;
  107. }
  108. static inline int ipa_pm_activate_sync(u32 hdl)
  109. {
  110. return -EPERM;
  111. }
  112. static inline int ipa_pm_deferred_deactivate(u32 hdl)
  113. {
  114. return -EPERM;
  115. }
  116. static inline int ipa_pm_deactivate_sync(u32 hdl)
  117. {
  118. return -EPERM;
  119. }
  120. static inline int ipa_pm_set_throughput(u32 hdl, int throughput)
  121. {
  122. return -EPERM;
  123. }
  124. static inline int ipa_pm_deregister(u32 hdl)
  125. {
  126. return -EPERM;
  127. }
  128. /* IPA Internal Functions */
  129. static inline int ipa_pm_init(struct ipa_pm_init_params *params)
  130. {
  131. return -EPERM;
  132. }
  133. static inline int ipa_pm_destroy(void)
  134. {
  135. return -EPERM;
  136. }
  137. static inline int ipa_pm_handle_suspend(u32 pipe_bitmask)
  138. {
  139. return -EPERM;
  140. }
  141. static inline int ipa_pm_deactivate_all_deferred(void)
  142. {
  143. return -EPERM;
  144. }
  145. static inline int ipa_pm_stat(char *buf, int size)
  146. {
  147. return -EPERM;
  148. }
  149. static inline int ipa_pm_exceptions_stat(char *buf, int size)
  150. {
  151. return -EPERM;
  152. }
  153. #endif /* IS_ENABLED(CONFIG_IPA3) */
  154. #endif /* _IPA_PM_H_ */