qdf_platform.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. /*
  2. * Copyright (c) 2018-2019 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /**
  19. * DOC: qdf_platform.h
  20. * This file defines platform API abstractions.
  21. */
  22. #ifndef _QDF_PLATFORM_H
  23. #define _QDF_PLATFORM_H
  24. #include "qdf_types.h"
  25. /**
  26. * qdf_self_recovery_callback() - callback for self recovery
  27. * @reason: the reason for the recovery request
  28. * @func: the caller's function name
  29. * @line: the line number of the callsite
  30. *
  31. * Return: none
  32. */
  33. typedef void (*qdf_self_recovery_callback)(enum qdf_hang_reason reason,
  34. const char *func,
  35. const uint32_t line);
  36. /**
  37. * qdf_is_fw_down_callback() - callback to query if fw is down
  38. *
  39. * Return: true if fw is down and false if fw is not down
  40. */
  41. typedef bool (*qdf_is_fw_down_callback)(void);
  42. /**
  43. * qdf_register_fw_down_callback() - API to register fw down callback
  44. * @is_fw_down: callback to query if fw is down or not
  45. *
  46. * Return: none
  47. */
  48. void qdf_register_fw_down_callback(qdf_is_fw_down_callback is_fw_down);
  49. /**
  50. * qdf_is_fw_down() - API to check if fw is down or not
  51. *
  52. * Return: true: if fw is down
  53. * false: if fw is not down
  54. */
  55. bool qdf_is_fw_down(void);
  56. /**
  57. * qdf_wmi_recv_qmi_cb() - callback to receive WMI over QMI
  58. * @cb_ctx: WMI event recv callback context(wmi_handle)
  59. * @buf: WMI buffer
  60. * @len: WMI buffer len
  61. *
  62. * Return: 0 if success otherwise -EINVAL
  63. */
  64. typedef int (*qdf_wmi_recv_qmi_cb)(void *cb_ctx, void *buf, int len);
  65. /**
  66. * qdf_wmi_send_over_qmi_callback() - callback to send WMI over QMI
  67. * @buf: WMI buffer
  68. * @len: WMI buffer len
  69. * @cb_ctx: WMI event recv callback context(wmi_handle)
  70. * @wmi_rx_cb: WMI event receive call back
  71. *
  72. * Return: QDF_STATUS_SUCCESS if success otherwise QDF error code
  73. */
  74. typedef QDF_STATUS (*qdf_wmi_send_over_qmi_callback)(void *buf, uint32_t len,
  75. void *cb_ctx,
  76. qdf_wmi_recv_qmi_cb
  77. wmi_rx_cb);
  78. /**
  79. * qdf_register_wmi_send_recv_qmi_callback() - Register WMI over QMI callback
  80. * @qdf_wmi_send_over_qmi_callback: callback to send recv WMI data over QMI
  81. *
  82. * Return: none
  83. */
  84. void qdf_register_wmi_send_recv_qmi_callback(qdf_wmi_send_over_qmi_callback
  85. wmi_send_recv_qmi_cb);
  86. /**
  87. * qdf_wmi_send_recv_qmi() - API to send receive WMI data over QMI
  88. * @buf: WMI buffer
  89. * @len: WMI buffer len
  90. * @cb_ctx: WMI event recv callback context(wmi_handle)
  91. * @wmi_rx_cb: WMI event receive call back
  92. *
  93. * Return: QDF STATUS of operation
  94. */
  95. QDF_STATUS qdf_wmi_send_recv_qmi(void *buf, uint32_t len, void *cb_ctx,
  96. qdf_wmi_recv_qmi_cb wmi_rx_cb);
  97. /**
  98. * qdf_register_self_recovery_callback() - register self recovery callback
  99. * @callback: self recovery callback
  100. *
  101. * Return: None
  102. */
  103. void qdf_register_self_recovery_callback(qdf_self_recovery_callback callback);
  104. /**
  105. * qdf_trigger_self_recovery () - trigger self recovery
  106. * @reason: the reason for the recovery request
  107. *
  108. * Call API only in case of fatal error,
  109. * if self_recovery_cb callback is registered, injcets fw crash and recovers
  110. * else raises QDF_BUG()
  111. *
  112. * Return: None
  113. */
  114. #define qdf_trigger_self_recovery(reason) \
  115. __qdf_trigger_self_recovery(reason, __func__, __LINE__)
  116. void __qdf_trigger_self_recovery(enum qdf_hang_reason reason,
  117. const char *func, const uint32_t line);
  118. /**
  119. * qdf_is_recovering_callback() - callback to get driver recovering in progress
  120. * or not
  121. *
  122. * Return: true if driver is doing recovering else false
  123. */
  124. typedef bool (*qdf_is_recovering_callback)(void);
  125. /**
  126. * qdf_register_recovering_state_query_callback() - register recover status
  127. * query callback
  128. *
  129. * Return: none
  130. */
  131. void qdf_register_recovering_state_query_callback(
  132. qdf_is_recovering_callback is_recovering);
  133. /**
  134. * qdf_is_recovering() - get driver recovering in progress status
  135. * or not
  136. *
  137. * Return: true if driver is doing recovering else false
  138. */
  139. bool qdf_is_recovering(void);
  140. /**
  141. * struct qdf_op_sync - opaque operation synchronization context handle
  142. */
  143. struct qdf_op_sync;
  144. typedef int (*qdf_op_protect_cb)(void **out_sync, const char *func);
  145. typedef void (*qdf_op_unprotect_cb)(void *sync, const char *func);
  146. /**
  147. * qdf_op_protect() - attempt to protect a driver operation
  148. * @out_sync: output parameter for the synchronization context, populated on
  149. * success
  150. *
  151. * Return: Errno
  152. */
  153. #define qdf_op_protect(out_sync) __qdf_op_protect(out_sync, __func__)
  154. qdf_must_check int
  155. __qdf_op_protect(struct qdf_op_sync **out_sync, const char *func);
  156. /**
  157. * qdf_op_unprotect() - release driver operation protection
  158. * @sync: synchronization context returned from qdf_op_protect()
  159. *
  160. * Return: None
  161. */
  162. #define qdf_op_unprotect(sync) __qdf_op_unprotect(sync, __func__)
  163. void __qdf_op_unprotect(struct qdf_op_sync *sync, const char *func);
  164. /**
  165. * qdf_op_callbacks_register() - register driver operation protection callbacks
  166. *
  167. * Return: None
  168. */
  169. void qdf_op_callbacks_register(qdf_op_protect_cb on_protect,
  170. qdf_op_unprotect_cb on_unprotect);
  171. /**
  172. * qdf_is_drv_connected_callback() - callback to query if drv is connected
  173. *
  174. * Return: true if drv is connected else false
  175. */
  176. typedef bool (*qdf_is_drv_connected_callback)(void);
  177. /**
  178. * qdf_is_drv_connected() - API to check if drv is connected or not
  179. *
  180. * DRV is dynamic request voting using which fw can do page fault and
  181. * bring in page back without apps wake up
  182. *
  183. * Return: true: if drv is connected
  184. * false: if drv is not connected
  185. */
  186. bool qdf_is_drv_connected(void);
  187. /**
  188. * qdf_register_drv_connected_callback() - API to register drv connected cb
  189. * @is_drv_connected: callback to query if drv is connected or not
  190. *
  191. * Return: none
  192. */
  193. void qdf_register_drv_connected_callback(qdf_is_drv_connected_callback
  194. is_drv_connected);
  195. #endif /*_QDF_PLATFORM_H*/