os_if_son.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. /*
  2. * Copyright (c) 2021, The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for any
  5. * purpose with or without fee is hereby granted, provided that the above
  6. * copyright notice and this permission notice appear in all copies.
  7. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  10. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  12. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  13. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  14. */
  15. /**
  16. * DOC : os_if_son.h
  17. *
  18. * WLAN Host Device Driver file for son (Self Organizing Network)
  19. * support.
  20. *
  21. */
  22. #ifndef _OS_IF_SON_H_
  23. #define _OS_IF_SON_H_
  24. #include <qdf_types.h>
  25. #include <wlan_objmgr_vdev_obj.h>
  26. #include <wlan_objmgr_psoc_obj.h>
  27. #include <wlan_objmgr_pdev_obj.h>
  28. #include <wlan_reg_ucfg_api.h>
  29. #include <ieee80211_external.h>
  30. /**
  31. * struct son_callbacks - struct containing callback to non-converged driver
  32. * @os_if_is_acs_in_progress: whether acs is in progress or not
  33. * @os_if_set_bandwidth: set band width
  34. * @os_if_get_bandwidth: get band width
  35. * @os_if_set_chan: set chan
  36. * @os_if_set_country_code: set country code
  37. */
  38. struct son_callbacks {
  39. uint32_t (*os_if_is_acs_in_progress)(struct wlan_objmgr_vdev *vdev);
  40. int (*os_if_set_bandwidth)(struct wlan_objmgr_vdev *vdev,
  41. uint32_t son_bandwidth);
  42. uint32_t (*os_if_get_bandwidth)(struct wlan_objmgr_vdev *vdev);
  43. int (*os_if_set_chan)(struct wlan_objmgr_vdev *vdev, int chan,
  44. enum wlan_band_id son_band);
  45. uint32_t (*os_if_get_sta_count)(struct wlan_objmgr_vdev *vdev);
  46. int (*os_if_set_country_code)(struct wlan_objmgr_vdev *vdev,
  47. char *country_code);
  48. };
  49. /**
  50. * os_if_son_register_hdd_callbacks() - register son hdd callback
  51. * @psoc: psoc
  52. * @cb_obj: pointer to callback
  53. *
  54. * Return: void
  55. */
  56. void os_if_son_register_hdd_callbacks(struct wlan_objmgr_psoc *psoc,
  57. struct son_callbacks *cb_obj);
  58. /**
  59. * os_if_son_get_freq() - get freq
  60. * @vdev: vdev
  61. *
  62. * Return: freq of given vdev
  63. */
  64. qdf_freq_t os_if_son_get_freq(struct wlan_objmgr_vdev *vdev);
  65. /**
  66. * os_if_son_is_acs_in_progress() - whether ACS in progress or not
  67. * @vdev: vdev
  68. *
  69. * Return: true if ACS is in progress
  70. */
  71. uint32_t os_if_son_is_acs_in_progress(struct wlan_objmgr_vdev *vdev);
  72. /**
  73. * os_if_son_is_cac_in_progress() - whether CAC is in progress or not
  74. * @vdev: vdev
  75. *
  76. * Return: true if CAC is in progress
  77. */
  78. uint32_t os_if_son_is_cac_in_progress(struct wlan_objmgr_vdev *vdev);
  79. /**
  80. * os_if_son_set_bandwidth() - set band width
  81. * @vdev: vdev
  82. * @son_bandwidth: band width
  83. *
  84. * Return: 0 on success, negative errno on failure
  85. */
  86. int os_if_son_set_bandwidth(struct wlan_objmgr_vdev *vdev,
  87. uint32_t son_bandwidth);
  88. /**
  89. * os_if_son_get_bandwidth() - get band width
  90. * @vdev: vdev
  91. *
  92. * Return: band width
  93. */
  94. uint32_t os_if_son_get_bandwidth(struct wlan_objmgr_vdev *vdev);
  95. /**
  96. * os_if_son_get_band_info() - get band info
  97. * @vdev: vdev
  98. *
  99. * Return: band info
  100. */
  101. uint32_t os_if_son_get_band_info(struct wlan_objmgr_vdev *vdev);
  102. /**
  103. * os_if_son_get_chan_list() - get a list of chan information
  104. * @vdev: vdev
  105. * @ic_chans: chan information array to get
  106. * @chan_info: pointer to ieee80211_channel_info to get
  107. * @ic_nchans: number of chan information it gets
  108. * @flag_160: flag indicating the API to fill the center frequencies of 160MHz.
  109. *
  110. * Return: 0 on success, negative errno on failure
  111. */
  112. int os_if_son_get_chan_list(struct wlan_objmgr_vdev *vdev,
  113. struct ieee80211_ath_channel *ic_chans,
  114. struct ieee80211_channel_info *chan_info,
  115. uint8_t *ic_nchans, bool flag_160);
  116. /**
  117. * os_if_son_get_sta_count() - get connected STA count
  118. * @vdev: vdev
  119. *
  120. * Return: connected STA count
  121. */
  122. uint32_t os_if_son_get_sta_count(struct wlan_objmgr_vdev *vdev);
  123. /**
  124. * os_if_son_get_bssid() - get bssid of given vdev
  125. * @vdev: vdev
  126. * @bssid: pointer to BSSID
  127. *
  128. * Return: 0 if BSSID is gotten successfully
  129. */
  130. int os_if_son_get_bssid(struct wlan_objmgr_vdev *vdev,
  131. uint8_t bssid[QDF_MAC_ADDR_SIZE]);
  132. /**
  133. * os_if_son_get_ssid() - get ssid of given vdev
  134. * @vdev: vdev
  135. * @ssid: pointer to SSID
  136. * @ssid_len: ssid length
  137. *
  138. * Return: 0 if SSID is gotten successfully
  139. */
  140. int os_if_son_get_ssid(struct wlan_objmgr_vdev *vdev,
  141. char ssid[WLAN_SSID_MAX_LEN + 1],
  142. uint8_t *ssid_len);
  143. /**
  144. * os_if_son_set_chan() - set chan
  145. * @vdev: vdev
  146. * @chan: given chan
  147. * @son_band: given band
  148. *
  149. * Return: 0 on success, negative errno on failure
  150. */
  151. int os_if_son_set_chan(struct wlan_objmgr_vdev *vdev,
  152. int chan, enum wlan_band_id son_band);
  153. /**
  154. * os_if_son_set_cac_timeout() - set cac timeout
  155. * @vdev: vdev
  156. * @cac_timeout: cac timeount to set
  157. *
  158. * Return: 0 if cac time out is set successfully
  159. */
  160. int os_if_son_set_cac_timeout(struct wlan_objmgr_vdev *vdev,
  161. int cac_timeout);
  162. /**
  163. * os_if_son_get_cac_timeout() - get cac timeout
  164. * @vdev: vdev
  165. * @cac_timeout: cac timeout to get
  166. *
  167. * Return 0 if cac time out is get successfully
  168. */
  169. int os_if_son_get_cac_timeout(struct wlan_objmgr_vdev *vdev,
  170. int *cac_timeout);
  171. /**
  172. * os_if_son_set_country_code() - set country code
  173. * @vdev: vdev
  174. * @country_code: country code to set
  175. *
  176. * Return: 0 if country code is set successfully
  177. */
  178. int os_if_son_set_country_code(struct wlan_objmgr_vdev *vdev,
  179. char *country_code);
  180. /**
  181. * os_if_son_get_country_code() - get country code
  182. * @vdev: vdev
  183. * @country_code: country code to get
  184. *
  185. * Return: 0 if country code is get successfully
  186. */
  187. int os_if_son_get_country_code(struct wlan_objmgr_vdev *vdev,
  188. char *country_code);
  189. #endif