wmi_unified_api.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. /*
  2. * Copyright (c) 2013-2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. /*
  27. * This file contains the API definitions for the Unified Wireless Module Interface (WMI).
  28. */
  29. #ifndef _WMI_UNIFIED_API_H_
  30. #define _WMI_UNIFIED_API_H_
  31. #include <osdep.h>
  32. #include "a_types.h"
  33. #include "ol_defines.h"
  34. #include "wmi.h"
  35. #include "htc_api.h"
  36. typedef cdf_nbuf_t wmi_buf_t;
  37. #define wmi_buf_data(_buf) cdf_nbuf_data(_buf)
  38. /**
  39. * attach for unified WMI
  40. *
  41. * @param scn_handle : handle to SCN.
  42. * @return opaque handle.
  43. */
  44. void *wmi_unified_attach(void *scn_handle,
  45. int (*func)(struct wmi_unified *, wmi_buf_t));
  46. /**
  47. * detach for unified WMI
  48. *
  49. * @param wmi_handle : handle to WMI.
  50. * @return void.
  51. */
  52. void wmi_unified_detach(struct wmi_unified *wmi_handle);
  53. void
  54. wmi_unified_remove_work(struct wmi_unified *wmi_handle);
  55. /**
  56. * generic function to allocate WMI buffer
  57. *
  58. * @param wmi_handle : handle to WMI.
  59. * @param len : length of the buffer
  60. * @return wmi_buf_t.
  61. */
  62. #ifdef MEMORY_DEBUG
  63. #define wmi_buf_alloc(h, l) wmi_buf_alloc_debug(h, l, __FILE__, __LINE__)
  64. wmi_buf_t
  65. wmi_buf_alloc_debug(wmi_unified_t wmi_handle, uint16_t len,
  66. uint8_t *file_name, uint32_t line_num);
  67. #else
  68. wmi_buf_t wmi_buf_alloc(wmi_unified_t wmi_handle, uint16_t len);
  69. #endif
  70. /**
  71. * generic function frees WMI net buffer
  72. *
  73. * @param net_buf : Pointer ot net_buf to be freed
  74. */
  75. void wmi_buf_free(wmi_buf_t net_buf);
  76. /**
  77. * generic function to send unified WMI command
  78. *
  79. * @param wmi_handle : handle to WMI.
  80. * @param buf : wmi command buffer
  81. * @param buflen : wmi command buffer length
  82. * @return 0 on success and -ve on failure.
  83. */
  84. int
  85. wmi_unified_cmd_send(wmi_unified_t wmi_handle, wmi_buf_t buf, int buflen,
  86. WMI_CMD_ID cmd_id);
  87. /**
  88. * WMI event handler register function
  89. *
  90. * @param wmi_handle : handle to WMI.
  91. * @param event_id : WMI event ID
  92. * @param handler_func : Event handler call back function
  93. * @return 0 on success and -ve on failure.
  94. */
  95. int
  96. wmi_unified_register_event_handler(wmi_unified_t wmi_handle,
  97. WMI_EVT_ID event_id,
  98. wmi_unified_event_handler handler_func);
  99. /**
  100. * WMI event handler unregister function
  101. *
  102. * @param wmi_handle : handle to WMI.
  103. * @param event_id : WMI event ID
  104. * @return 0 on success and -ve on failure.
  105. */
  106. int
  107. wmi_unified_unregister_event_handler(wmi_unified_t wmi_handle,
  108. WMI_EVT_ID event_id);
  109. /**
  110. * request wmi to connet its htc service.
  111. * @param wmi_handle : handle to WMI.
  112. * @return void
  113. */
  114. int
  115. wmi_unified_connect_htc_service(struct wmi_unified *wmi_handle,
  116. void *htc_handle);
  117. /*
  118. * WMI API to verify the host has enough credits to suspend
  119. */
  120. int wmi_is_suspend_ready(wmi_unified_t wmi_handle);
  121. /**
  122. WMI API to get updated host_credits
  123. */
  124. int wmi_get_host_credits(wmi_unified_t wmi_handle);
  125. /**
  126. WMI API to get WMI Pending Commands in the HTC queue
  127. */
  128. int wmi_get_pending_cmds(wmi_unified_t wmi_handle);
  129. /**
  130. WMI API to set target suspend state
  131. */
  132. void wmi_set_target_suspend(wmi_unified_t wmi_handle, bool val);
  133. #ifdef FEATURE_RUNTIME_PM
  134. void
  135. wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val);
  136. bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle);
  137. #else
  138. static inline void
  139. wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val)
  140. {
  141. return;
  142. }
  143. static inline bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle)
  144. {
  145. return false;
  146. }
  147. #endif
  148. /**
  149. * WMA Callback to process fw event.
  150. */
  151. typedef int (*wma_process_fw_event_handler_cbk)(struct wmi_unified *wmi_handle,
  152. wmi_buf_t evt_buf);
  153. void wmi_process_fw_event(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
  154. uint16_t wmi_get_max_msg_len(wmi_unified_t wmi_handle);
  155. #endif /* _WMI_UNIFIED_API_H_ */