wmi_unified_ocb_api.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. /*
  2. * Copyright (c) 2013-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 OCB component.
  20. */
  21. #ifndef _WMI_UNIFIED_DSRC_API_H_
  22. #define _WMI_UNIFIED_DSRC_API_H_
  23. #include <wlan_ocb_public_structs.h>
  24. /**
  25. * wmi_unified_ocb_start_timing_advert() - start sending the timing
  26. * advertisement frames on a channel
  27. * @wmi_handle: pointer to the wmi handle
  28. * @timing_advert: pointer to the timing advertisement struct
  29. *
  30. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  31. */
  32. QDF_STATUS wmi_unified_ocb_start_timing_advert(struct wmi_unified *wmi_handle,
  33. struct ocb_timing_advert_param *timing_advert);
  34. /**
  35. * wmi_unified_ocb_stop_timing_advert() - stop sending the timing
  36. * advertisement frames on a channel
  37. * @wmi_handle: pointer to the wmi handle
  38. * @timing_advert: pointer to the timing advertisement struct
  39. *
  40. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  41. */
  42. QDF_STATUS wmi_unified_ocb_stop_timing_advert(struct wmi_unified *wmi_handle,
  43. struct ocb_timing_advert_param *timing_advert);
  44. /**
  45. * wmi_unified_ocb_set_config() - send the OCB config to the FW
  46. * @wmi_handle: pointer to the wmi handle
  47. * @config: the OCB configuration
  48. *
  49. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failures
  50. */
  51. QDF_STATUS wmi_unified_ocb_set_config(struct wmi_unified *wmi_handle,
  52. struct ocb_config *config);
  53. /**
  54. * wmi_unified_ocb_get_tsf_timer() - get ocb tsf timer val
  55. * @wmi_handle: pointer to the wmi handle
  56. * @req: request for tsf timer
  57. *
  58. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  59. */
  60. QDF_STATUS wmi_unified_ocb_get_tsf_timer(struct wmi_unified *wmi_handle,
  61. struct ocb_get_tsf_timer_param *req);
  62. /**
  63. * wmi_unified_ocb_set_utc_time_cmd() - get ocb tsf timer val
  64. * @wmi_handle: pointer to the wmi handle
  65. * @vdev_id: vdev id
  66. *
  67. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  68. */
  69. QDF_STATUS wmi_unified_ocb_set_utc_time_cmd(struct wmi_unified *wmi_handle,
  70. struct ocb_utc_param *utc);
  71. /**
  72. * wmi_unified_dcc_get_stats_cmd() - get the DCC channel stats
  73. * @wmi_handle: pointer to the wmi handle
  74. * @get_stats_param: pointer to the dcc stats
  75. *
  76. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  77. */
  78. QDF_STATUS wmi_unified_dcc_get_stats_cmd(struct wmi_unified *wmi_handle,
  79. struct ocb_dcc_get_stats_param *get_stats_param);
  80. /**
  81. * wmi_unified_dcc_clear_stats() - command to clear the DCC stats
  82. * @wmi_handle: pointer to the wmi handle
  83. * @clear_stats_param: parameters to the command
  84. *
  85. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  86. */
  87. QDF_STATUS wmi_unified_dcc_clear_stats(struct wmi_unified *wmi_handle,
  88. struct ocb_dcc_clear_stats_param *clear_stats_param);
  89. /**
  90. * wmi_unified_dcc_update_ndl() - command to update the NDL data
  91. * @wmi_handle: pointer to the wmi handle
  92. * @update_ndl_param: pointer to the request parameters
  93. *
  94. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failures
  95. */
  96. QDF_STATUS wmi_unified_dcc_update_ndl(struct wmi_unified *wmi_handle,
  97. struct ocb_dcc_update_ndl_param *update_ndl_param);
  98. /**
  99. * wmi_extract_ocb_set_channel_config_resp() - extract status from wmi event
  100. * @wmi_handle: wmi handle
  101. * @evt_buf: pointer to event buffer
  102. * @status: status buffer
  103. *
  104. * Return: QDF_STATUS_SUCCESS on success
  105. */
  106. QDF_STATUS
  107. wmi_extract_ocb_set_channel_config_resp(struct wmi_unified *wmi_handle,
  108. void *evt_buf,
  109. uint32_t *status);
  110. /**
  111. * wmi_extract_ocb_tsf_timer() - extract tsf timer from wmi event
  112. * @wmi_handle: wmi handle
  113. * @evt_buf: pointer to event buffer
  114. * @resp: tsf timer
  115. *
  116. * Return: QDF_STATUS_SUCCESS on success
  117. */
  118. QDF_STATUS wmi_extract_ocb_tsf_timer(struct wmi_unified *wmi_handle,
  119. void *evt_buf,
  120. struct ocb_get_tsf_timer_response *resp);
  121. /**
  122. * wmi_extract_dcc_update_ndl_resp() - extract NDL update from wmi event
  123. * @wmi_handle: wmi handle
  124. * @evt_buf: pointer to event buffer
  125. * @resp: ndl update status
  126. *
  127. * Return: QDF_STATUS_SUCCESS on success
  128. */
  129. QDF_STATUS wmi_extract_dcc_update_ndl_resp(struct wmi_unified *wmi_handle,
  130. void *evt_buf, struct ocb_dcc_update_ndl_response *resp);
  131. /**
  132. * wmi_extract_dcc_stats() - extract DCC stats from wmi event
  133. * @wmi_handle: wmi handle
  134. * @evt_buf: pointer to event buffer
  135. * @resp: DCC stats
  136. *
  137. * Since length of the response is variable, response buffer will be allocated.
  138. * The caller must free the response buffer.
  139. *
  140. * Return: QDF_STATUS_SUCCESS on success
  141. */
  142. QDF_STATUS wmi_extract_dcc_stats(struct wmi_unified *wmi_handle,
  143. void *evt_buf,
  144. struct ocb_dcc_get_stats_response **response);
  145. #endif /* _WMI_UNIFIED_DSRC_API_H_ */