wmi_unified_twt_api.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /*
  2. * Copyright (c) 2018 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: Implement API's specific to TWT component.
  20. */
  21. #ifndef _WMI_UNIFIED_TWT_API_H_
  22. #define _WMI_UNIFIED_TWT_API_H_
  23. #include "wmi_unified_twt_param.h"
  24. /**
  25. * wmi_unified_twt_enable_cmd() - Send WMI command to Enable TWT
  26. * @wmi_hdl: wmi handle
  27. * @params: Parameters to be configured
  28. *
  29. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  30. */
  31. QDF_STATUS wmi_unified_twt_enable_cmd(void *wmi_hdl,
  32. struct wmi_twt_enable_param *params);
  33. /**
  34. * wmi_unified_twt_disable_cmd() - Send WMI command to disable TWT
  35. * @wmi_hdl: wmi handle
  36. * @params: Parameters to be configured
  37. *
  38. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  39. */
  40. QDF_STATUS wmi_unified_twt_disable_cmd(void *wmi_hdl,
  41. struct wmi_twt_disable_param *params);
  42. /**
  43. * wmi_unified_twt_add_dialog_cmd() - Send WMI command to add TWT dialog
  44. * @wmi_hdl: wmi handle
  45. * @params: Parameters to be configured
  46. *
  47. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  48. */
  49. QDF_STATUS wmi_unified_twt_add_dialog_cmd(void *wmi_hdl,
  50. struct wmi_twt_add_dialog_param *params);
  51. /**
  52. * wmi_unified_twt_del_dialog_cmd() - Send WMI command to delete TWT dialog
  53. * @wmi_hdl: wmi handle
  54. * @params: Parameters to be configured
  55. *
  56. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  57. */
  58. QDF_STATUS wmi_unified_twt_del_dialog_cmd(void *wmi_hdl,
  59. struct wmi_twt_del_dialog_param *params);
  60. /**
  61. * wmi_unified_twt_pause_dialog_cmd() - Send WMI command to pause TWT dialog
  62. * @wmi_hdl: wmi handle
  63. * @params: Parameters to be configured
  64. *
  65. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  66. */
  67. QDF_STATUS wmi_unified_twt_pause_dialog_cmd(void *wmi_hdl,
  68. struct wmi_twt_pause_dialog_cmd_param *params);
  69. /**
  70. * wmi_unified_twt_resume_dialog_cmd() - Send WMI command to resume TWT dialog
  71. * @wmi_hdl: wmi handle
  72. * @params: Parameters to be configured
  73. *
  74. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  75. */
  76. QDF_STATUS wmi_unified_twt_resume_dialog_cmd(void *wmi_hdl,
  77. struct wmi_twt_resume_dialog_cmd_param *params);
  78. /**
  79. * wmi_extract_twt_enable_comp_event() - Extract WMI event params for TWT enable
  80. * completion event
  81. * @wmi_hdl: wmi handle
  82. * @evt_buf: Pointer event buffer
  83. * @params: Parameters to extract
  84. *
  85. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  86. */
  87. QDF_STATUS wmi_extract_twt_enable_comp_event(void *wmi_hdl,
  88. uint8_t *evt_buf,
  89. struct wmi_twt_enable_complete_event_param *params);
  90. /**
  91. * wmi_extract_twt_disable_comp_event() - Extract WMI event params for TWT
  92. * disable completion event
  93. * @wmi_hdl: wmi handle
  94. * @evt_buf: Pointer event buffer
  95. * @params: Parameters to extract
  96. *
  97. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  98. */
  99. QDF_STATUS wmi_extract_twt_disable_comp_event(void *wmi_hdl,
  100. uint8_t *evt_buf,
  101. struct wmi_twt_disable_complete_event *params);
  102. /**
  103. * wmi_extract_twt_add_dialog_comp_event() - Extract WMI event params for TWT
  104. * add dialog completion event
  105. * @wmi_hdl: wmi handle
  106. * @evt_buf: Pointer event buffer
  107. * @params: Parameters to extract
  108. *
  109. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  110. */
  111. QDF_STATUS wmi_extract_twt_add_dialog_comp_event(void *wmi_hdl,
  112. uint8_t *evt_buf,
  113. struct wmi_twt_add_dialog_complete_event_param *params);
  114. /**
  115. * wmi_extract_twt_del_dialog_comp_event() - Extract WMI event params for TWT
  116. * delete dialog completion event
  117. * @wmi_hdl: wmi handle
  118. * @evt_buf: Pointer event buffer
  119. * @params: Parameters to extract
  120. *
  121. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  122. */
  123. QDF_STATUS wmi_extract_twt_del_dialog_comp_event(void *wmi_hdl,
  124. uint8_t *evt_buf,
  125. struct wmi_twt_del_dialog_complete_event_param *params);
  126. /**
  127. * wmi_extract_twt_pause_dialog_comp_event() - Extract WMI event params for TWT
  128. * pause dialog completion event
  129. * @wmi_hdl: wmi handle
  130. * @evt_buf: Pointer event buffer
  131. * @params: Parameters to extract
  132. *
  133. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  134. */
  135. QDF_STATUS wmi_extract_twt_pause_dialog_comp_event(void *wmi_hdl,
  136. uint8_t *evt_buf,
  137. struct wmi_twt_pause_dialog_complete_event_param *params);
  138. /**
  139. * wmi_extract_twt_resume_dialog_comp_event() - Extract WMI event params for TWT
  140. * resume dialog completion event
  141. * @wmi_hdl: wmi handle
  142. * @evt_buf: Pointer event buffer
  143. * @params: Parameters to extract
  144. *
  145. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  146. */
  147. QDF_STATUS wmi_extract_twt_resume_dialog_comp_event(void *wmi_hdl,
  148. uint8_t *evt_buf,
  149. struct wmi_twt_resume_dialog_complete_event_param *params);
  150. #ifdef WLAN_SUPPORT_TWT
  151. void wmi_twt_attach_tlv(struct wmi_unified *wmi_handle);
  152. #else
  153. static void wmi_twt_attach_tlv(struct wmi_unified *wmi_handle)
  154. {
  155. return;
  156. }
  157. #endif
  158. #endif /* _WMI_UNIFIED_TWT_API_H_ */