wlan_spectral_utils_api.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. /*
  2. * Copyright (c) 2017-2019 The Linux Foundation. All rights reserved.
  3. *
  4. *
  5. * Permission to use, copy, modify, and/or distribute this software for
  6. * any purpose with or without fee is hereby granted, provided that the
  7. * above copyright notice and this permission notice appear in all
  8. * copies.
  9. *
  10. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  11. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  12. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  13. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  14. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  15. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  16. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  17. * PERFORMANCE OF THIS SOFTWARE.
  18. */
  19. #ifndef _WLAN_SPECTRAL_UTILS_API_H_
  20. #define _WLAN_SPECTRAL_UTILS_API_H_
  21. #include <wlan_objmgr_cmn.h>
  22. #include <wlan_lmac_if_def.h>
  23. /* Forward declaration */
  24. struct direct_buf_rx_data;
  25. struct wmi_spectral_cmd_ops;
  26. /**
  27. * wlan_spectral_is_feature_disabled() - Check if spectral feature is disabled
  28. * @psoc - the physical device object.
  29. *
  30. * Return : true if spectral is disabled, else false.
  31. */
  32. bool wlan_spectral_is_feature_disabled(struct wlan_objmgr_psoc *psoc);
  33. /**
  34. * wlan_spectral_init() - API to init spectral component
  35. *
  36. * This API is invoked from dispatcher init during all component init.
  37. * This API will register all required handlers for pdev and peer object
  38. * create/delete notification.
  39. *
  40. * Return: SUCCESS,
  41. * Failure
  42. */
  43. QDF_STATUS wlan_spectral_init(void);
  44. /**
  45. * wlan_spectral_deinit() - API to deinit spectral component
  46. *
  47. * This API is invoked from dispatcher deinit during all component deinit.
  48. * This API will unregister all registered handlers for pdev and peer object
  49. * create/delete notification.
  50. *
  51. * Return: SUCCESS,
  52. * Failure
  53. */
  54. QDF_STATUS wlan_spectral_deinit(void);
  55. /**
  56. * wlan_lmac_if_sptrl_register_rx_ops() - Register lmac interface Rx operations
  57. * @rx_ops: Pointer to lmac interface Rx operations structure
  58. *
  59. * API to register spectral related lmac interface Rx operations
  60. *
  61. * Return: None
  62. */
  63. void
  64. wlan_lmac_if_sptrl_register_rx_ops(struct wlan_lmac_if_rx_ops *rx_ops);
  65. /**
  66. * wlan_register_wmi_spectral_cmd_ops() - Register operations related to wmi
  67. * commands on spectral parameters
  68. * @pdev - the physical device object
  69. * @cmd_ops - pointer to the structure holding the operations
  70. * related to wmi commands on spectral parameters
  71. *
  72. * API to register operations related to wmi commands on spectral parameters
  73. *
  74. * Return: None
  75. */
  76. void
  77. wlan_register_wmi_spectral_cmd_ops(struct wlan_objmgr_pdev *pdev,
  78. struct wmi_spectral_cmd_ops *cmd_ops);
  79. /**
  80. * struct spectral_legacy_cbacks - Spectral legacy callbacks
  81. * @vdev_get_chan_freq: Get channel frequency
  82. * @vdev_get_chan_freq_seg2: Get secondary 80 center frequency
  83. * @vdev_get_ch_width: Get channel width
  84. * @vdev_get_sec20chan_freq_mhz: Get seconadry 20 frequency
  85. */
  86. struct spectral_legacy_cbacks {
  87. int16_t (*vdev_get_chan_freq)(struct wlan_objmgr_vdev *vdev);
  88. int16_t (*vdev_get_chan_freq_seg2)(struct wlan_objmgr_vdev *vdev);
  89. enum phy_ch_width (*vdev_get_ch_width)(struct wlan_objmgr_vdev *vdev);
  90. int (*vdev_get_sec20chan_freq_mhz)(struct wlan_objmgr_vdev *vdev,
  91. uint16_t *sec20chan_freq);
  92. };
  93. /**
  94. * spectral_vdev_get_chan_freq - Get vdev channel frequency
  95. * @vdev: vdev object
  96. *
  97. * Return: vdev operating frequency
  98. */
  99. int16_t spectral_vdev_get_chan_freq(struct wlan_objmgr_vdev *vdev);
  100. /**
  101. * spectral_vdev_get_chan_freq_seg2 - Get vdev's secondary 80 center frequency
  102. * @vdev: vdev object
  103. *
  104. * Return: vdev secondary 80 center frequency
  105. */
  106. int16_t spectral_vdev_get_chan_freq_seg2(struct wlan_objmgr_vdev *vdev);
  107. /**
  108. * spectral_vdev_get_sec20chan_freq_mhz - Get vdev secondary channel frequency
  109. * @vdev: vdev object
  110. * @sec20chan_freq: secondary channel frequency
  111. *
  112. * Return: secondary channel freq
  113. */
  114. int spectral_vdev_get_sec20chan_freq_mhz(struct wlan_objmgr_vdev *vdev,
  115. uint16_t *sec20chan_freq);
  116. /**
  117. * spectral_register_legacy_cb() - Register spectral legacy callbacks
  118. * commands on spectral parameters
  119. * @psoc - the physical device object
  120. * @legacy_cbacks - Reference to struct spectral_legacy_cbacks from which
  121. * function pointers need to be copied
  122. *
  123. * API to register spectral related legacy callbacks
  124. *
  125. * Return: QDF_STATUS_SUCCESS upon successful registration,
  126. * QDF_STATUS_E_FAILURE upon failure
  127. */
  128. QDF_STATUS spectral_register_legacy_cb(
  129. struct wlan_objmgr_psoc *psoc,
  130. struct spectral_legacy_cbacks *legacy_cbacks);
  131. /**
  132. * spectral_vdev_get_ch_width() - Get the channel bandwidth
  133. * @vdev - Pointer to vdev
  134. *
  135. * API to get the channel bandwidth of a given vdev
  136. *
  137. * Return: Enumeration corresponding to the channel bandwidth
  138. */
  139. enum phy_ch_width
  140. spectral_vdev_get_ch_width(struct wlan_objmgr_vdev *vdev);
  141. /**
  142. * spectral_pdev_open() - Spectral pdev open handler
  143. * @pdev: pointer to pdev object
  144. *
  145. * API to execute operations on pdev open
  146. *
  147. * Return: QDF_STATUS_SUCCESS upon successful registration,
  148. * QDF_STATUS_E_FAILURE upon failure
  149. */
  150. QDF_STATUS spectral_pdev_open(struct wlan_objmgr_pdev *pdev);
  151. /**
  152. * spectral_register_dbr() - register Spectral event handler with DDMA
  153. * @pdev: pointer to pdev object
  154. *
  155. * API to register event handler with Direct DMA
  156. *
  157. * Return: QDF_STATUS_SUCCESS upon successful registration,
  158. * QDF_STATUS_E_FAILURE upon failure
  159. */
  160. QDF_STATUS spectral_register_dbr(struct wlan_objmgr_pdev *pdev);
  161. /**
  162. * spectral_unregister_dbr() - unregister Spectral event handler with DDMA
  163. * @pdev: pointer to pdev object
  164. *
  165. * API to unregister event handler with Direct DMA
  166. *
  167. * Return: QDF_STATUS_SUCCESS upon successful unregistration,
  168. * QDF_STATUS_E_FAILURE upon failure
  169. */
  170. QDF_STATUS spectral_unregister_dbr(struct wlan_objmgr_pdev *pdev);
  171. #ifdef DIRECT_BUF_RX_ENABLE
  172. /**
  173. * spectral_dbr_event_handler() - Spectral dbr event handler
  174. * @pdev: pointer to pdev object
  175. * @payload: dbr event buffer
  176. *
  177. * API to handle spectral dbr event
  178. *
  179. * Return: true to release buf
  180. */
  181. bool spectral_dbr_event_handler(struct wlan_objmgr_pdev *pdev,
  182. struct direct_buf_rx_data *payload);
  183. #endif
  184. #endif /* _WLAN_SPECTRAL_UTILS_API_H_*/