wlan_cfg80211_tdls.h 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. /*
  2. * Copyright (c) 2017-2019 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: declares driver functions interfacing with linux kernel
  20. */
  21. #ifndef _WLAN_CFG80211_TDLS_H_
  22. #define _WLAN_CFG80211_TDLS_H_
  23. #include <linux/version.h>
  24. #include <linux/netdevice.h>
  25. #include <linux/completion.h>
  26. #include <net/cfg80211.h>
  27. #include <qca_vendor.h>
  28. #include <wlan_tdls_public_structs.h>
  29. #include <qdf_list.h>
  30. #include <qdf_types.h>
  31. #include <wlan_tdls_ucfg_api.h>
  32. #ifdef FEATURE_WLAN_TDLS
  33. #define TDLS_VDEV_MAGIC 0x54444c53 /* "TDLS" */
  34. /**
  35. * struct osif_tdls_vdev - OS tdls vdev private structure
  36. * @tdls_add_peer_comp: Completion to add tdls peer
  37. * @tdls_del_peer_comp: Completion to delete tdls peer
  38. * @tdls_mgmt_comp: Completion to send tdls mgmt packets
  39. * @tdls_link_establish_req_comp: Completion to establish link, sync to
  40. * send establish params to firmware, not used today.
  41. * @tdls_teardown_comp: Completion to teardown tdls peer
  42. * @tdls_user_cmd_comp: tdls user command completion event
  43. * @tdls_antenna_switch_comp: Completion to switch antenna
  44. * @tdls_add_peer_status: Peer status after add peer
  45. * @mgmt_tx_completion_status: Tdls mgmt frames TX completion status code
  46. * @tdls_user_cmd_len: tdls user command written buffer length
  47. * @tdls_antenna_switch_status: return status after antenna switch
  48. */
  49. struct osif_tdls_vdev {
  50. struct completion tdls_add_peer_comp;
  51. struct completion tdls_del_peer_comp;
  52. struct completion tdls_mgmt_comp;
  53. struct completion tdls_link_establish_req_comp;
  54. struct completion tdls_teardown_comp;
  55. struct completion tdls_user_cmd_comp;
  56. struct completion tdls_antenna_switch_comp;
  57. QDF_STATUS tdls_add_peer_status;
  58. uint32_t mgmt_tx_completion_status;
  59. uint32_t tdls_user_cmd_len;
  60. int tdls_antenna_switch_status;
  61. };
  62. /**
  63. * enum qca_wlan_vendor_tdls_trigger_mode_vdev_map: Maps the user space TDLS
  64. * trigger mode in the host driver.
  65. * @WLAN_VENDOR_TDLS_TRIGGER_MODE_EXPLICIT: TDLS Connection and
  66. * disconnection handled by user space.
  67. * @WLAN_VENDOR_TDLS_TRIGGER_MODE_IMPLICIT: TDLS connection and
  68. * disconnection controlled by host driver based on data traffic.
  69. * @WLAN_VENDOR_TDLS_TRIGGER_MODE_EXTERNAL: TDLS connection and
  70. * disconnection jointly controlled by user space and host driver.
  71. */
  72. enum qca_wlan_vendor_tdls_trigger_mode_vdev_map {
  73. WLAN_VENDOR_TDLS_TRIGGER_MODE_EXPLICIT =
  74. QCA_WLAN_VENDOR_TDLS_TRIGGER_MODE_EXPLICIT,
  75. WLAN_VENDOR_TDLS_TRIGGER_MODE_IMPLICIT =
  76. QCA_WLAN_VENDOR_TDLS_TRIGGER_MODE_IMPLICIT,
  77. WLAN_VENDOR_TDLS_TRIGGER_MODE_EXTERNAL =
  78. ((QCA_WLAN_VENDOR_TDLS_TRIGGER_MODE_EXPLICIT |
  79. QCA_WLAN_VENDOR_TDLS_TRIGGER_MODE_IMPLICIT) << 1),
  80. };
  81. /**
  82. * wlan_cfg80211_tdls_priv_init() - API to initialize tdls os private
  83. * @osif_priv: vdev os private
  84. *
  85. * API to initialize tdls os private
  86. *
  87. * Return: QDF_STATUS
  88. */
  89. QDF_STATUS wlan_cfg80211_tdls_priv_init(struct vdev_osif_priv *osif_priv);
  90. /**
  91. * wlan_cfg80211_tdls_priv_deinit() - API to deinitialize tdls os private
  92. * @osif_priv: vdev os private
  93. *
  94. * API to deinitialize tdls os private
  95. *
  96. * Return: None
  97. */
  98. void wlan_cfg80211_tdls_priv_deinit(struct vdev_osif_priv *osif_priv);
  99. /**
  100. * wlan_cfg80211_tdls_add_peer() - process cfg80211 add TDLS peer request
  101. * @vdev: vdev object
  102. * @mac: MAC address for TDLS peer
  103. *
  104. * Return: 0 for success; negative errno otherwise
  105. */
  106. int wlan_cfg80211_tdls_add_peer(struct wlan_objmgr_vdev *vdev,
  107. const uint8_t *mac);
  108. /**
  109. * wlan_cfg80211_tdls_update_peer() - process cfg80211 update TDLS peer request
  110. * @vdev: vdev object
  111. * @mac: MAC address for TDLS peer
  112. * @params: Pointer to station parameters
  113. *
  114. * Return: 0 for success; negative errno otherwise
  115. */
  116. int wlan_cfg80211_tdls_update_peer(struct wlan_objmgr_vdev *vdev,
  117. const uint8_t *mac,
  118. struct station_parameters *params);
  119. /**
  120. * wlan_cfg80211_tdls_configure_mode() - configure tdls mode
  121. * @vdev: vdev obj manager
  122. * @trigger_mode: tdls trgger mode
  123. *
  124. * Return: 0 for success; negative errno otherwise
  125. */
  126. int wlan_cfg80211_tdls_configure_mode(struct wlan_objmgr_vdev *vdev,
  127. uint32_t trigger_mode);
  128. /**
  129. * wlan_cfg80211_tdls_oper() - process cfg80211 operation on an TDLS peer
  130. * @vdev: vdev object
  131. * @peer: MAC address of the TDLS peer
  132. * @oper: cfg80211 TDLS operation
  133. *
  134. * Return: 0 on success; negative errno otherwise
  135. */
  136. int wlan_cfg80211_tdls_oper(struct wlan_objmgr_vdev *vdev,
  137. const uint8_t *peer,
  138. enum nl80211_tdls_operation oper);
  139. /**
  140. * wlan_cfg80211_tdls_get_all_peers() - get all the TDLS peers from the list
  141. * @vdev: vdev object
  142. * @buf: output buffer
  143. * @buflen: valid length of the output error
  144. *
  145. * Return: length of the output buffer
  146. */
  147. int wlan_cfg80211_tdls_get_all_peers(struct wlan_objmgr_vdev *vdev,
  148. char *buf, int buflen);
  149. /**
  150. * wlan_cfg80211_tdls_mgmt() - process tdls management frames from the supplicant
  151. * @vdev: vdev object
  152. * @peer: MAC address of the TDLS peer
  153. * @action_code: type of TDLS mgmt frame to be sent
  154. * @dialog_token: dialog token used in the frame
  155. * @status_code: status to be incuded in the frame
  156. * @peer_capability: peer capability information
  157. * @buf: additional IEs to be included
  158. * @len: length of additional Ies
  159. * @oper: cfg80211 TDLS operation
  160. *
  161. * Return: 0 on success; negative errno otherwise
  162. */
  163. int wlan_cfg80211_tdls_mgmt(struct wlan_objmgr_vdev *vdev,
  164. const uint8_t *peer,
  165. uint8_t action_code, uint8_t dialog_token,
  166. uint16_t status_code, uint32_t peer_capability,
  167. const uint8_t *buf, size_t len);
  168. /**
  169. * wlan_tdls_antenna_switch() - process tdls antenna switch
  170. * @vdev: vdev object
  171. * @mode: antenna mode
  172. *
  173. * Return: 0 on success; -EAGAIN to retry
  174. */
  175. int wlan_tdls_antenna_switch(struct wlan_objmgr_vdev *vdev, uint32_t mode);
  176. /**
  177. * wlan_cfg80211_tdls_event_callback() - callback for tdls module
  178. * @userdata: user data
  179. * @type: request callback type
  180. * @param: passed parameter
  181. *
  182. * This is used by TDLS to sync with os interface
  183. *
  184. * Return: None
  185. */
  186. void wlan_cfg80211_tdls_event_callback(void *userdata,
  187. enum tdls_event_type type,
  188. struct tdls_osif_indication *param);
  189. /**
  190. * wlan_cfg80211_tdls_rx_callback() - Callback for rx mgmt frame
  191. * @user_data: pointer to soc object
  192. * @rx_frame: RX mgmt frame information
  193. *
  194. * This callback will be used to rx frames in os interface.
  195. *
  196. * Return: None
  197. */
  198. void wlan_cfg80211_tdls_rx_callback(void *user_data,
  199. struct tdls_rx_mgmt_frame *rx_frame);
  200. /**
  201. * hdd_notify_tdls_reset_adapter() - notify reset adapter to TDLS
  202. * @vdev: vdev object manager
  203. *
  204. * Notify hdd reset adapter to TDLS component
  205. *
  206. * Return: None
  207. */
  208. void hdd_notify_tdls_reset_adapter(struct wlan_objmgr_vdev *vdev);
  209. /**
  210. * hdd_notify_sta_connect() - notify sta connect to TDLS
  211. * @session_id: pointer to soc object
  212. * @tdls_chan_swit_prohibited: indicates channel switch capability
  213. * @tdls_prohibited: indicates tdls allowed or not
  214. * @vdev: vdev object manager
  215. *
  216. * Notify sta connect event to TDLS component
  217. *
  218. * Return: None
  219. */
  220. void
  221. hdd_notify_sta_connect(uint8_t session_id,
  222. bool tdls_chan_swit_prohibited,
  223. bool tdls_prohibited,
  224. struct wlan_objmgr_vdev *vdev);
  225. /**
  226. * hdd_notify_sta_disconnect() - notify sta disconnect to TDLS
  227. * @session_id: pointer to soc object
  228. * @lfr_roam: indicate, whether disconnect due to lfr roam
  229. * @bool user_disconnect: disconnect from user space
  230. * @vdev: vdev object manager
  231. *
  232. * Notify sta disconnect event to TDLS component
  233. *
  234. * Return: None
  235. */
  236. void hdd_notify_sta_disconnect(uint8_t session_id,
  237. bool lfr_roam,
  238. bool user_disconnect,
  239. struct wlan_objmgr_vdev *vdev);
  240. /**
  241. * hdd_notify_teardown_tdls_links() - notify TDLS to teardown links
  242. * @vdev: vdev object manager
  243. *
  244. * Notify tdls to teardown all the links, due to certain events
  245. * in the system
  246. *
  247. * Return: None
  248. */
  249. void hdd_notify_teardown_tdls_links(struct wlan_objmgr_vdev *vdev);
  250. #else /* FEATURE_WLAN_TDLS */
  251. static inline
  252. QDF_STATUS wlan_cfg80211_tdls_priv_init(struct vdev_osif_priv *osif_priv)
  253. {
  254. return QDF_STATUS_SUCCESS;
  255. }
  256. static inline
  257. void wlan_cfg80211_tdls_priv_deinit(struct vdev_osif_priv *osif_priv)
  258. {
  259. }
  260. static inline void
  261. hdd_notify_tdls_reset_adapter(struct wlan_objmgr_vdev *vdev)
  262. {
  263. }
  264. static inline void
  265. hdd_notify_sta_connect(uint8_t session_id,
  266. bool tdls_chan_swit_prohibited,
  267. bool tdls_prohibited,
  268. struct wlan_objmgr_vdev *vdev)
  269. {
  270. }
  271. static inline
  272. void hdd_notify_sta_disconnect(uint8_t session_id,
  273. bool lfr_roam,
  274. bool user_disconnect,
  275. struct wlan_objmgr_vdev *vdev)
  276. {
  277. }
  278. static inline
  279. int wlan_cfg80211_tdls_configure_mode(struct wlan_objmgr_vdev *vdev,
  280. uint32_t trigger_mode)
  281. {
  282. return 0;
  283. }
  284. static inline
  285. void hdd_notify_teardown_tdls_links(struct wlan_objmgr_vdev *vdev)
  286. {
  287. }
  288. #endif /* FEATURE_WLAN_TDLS */
  289. #endif /* _WLAN_CFG80211_TDLS_H_ */