txrx.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. /*
  2. * Copyright (c) 2013-2014 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. #ifndef TXRX_H
  27. #define TXRX_H
  28. #include "cds_api.h"
  29. #include "cdf_nbuf.h"
  30. #include "csr_api.h"
  31. #include "sap_api.h"
  32. #include "cdf_nbuf.h"
  33. #include "ol_txrx_osif_api.h"
  34. /* wait on peer deletion timeout value in milliseconds */
  35. #define PEER_DELETION_TIMEOUT 500
  36. enum txrx_wmm_ac {
  37. TXRX_WMM_AC_VO,
  38. TXRX_WMM_AC_VI,
  39. TXRX_WMM_AC_BK,
  40. TXRX_WMM_AC_BE,
  41. TXRX_NUM_WMM_AC
  42. };
  43. struct txrx_rx_metainfo {
  44. u8 up;
  45. u16 dest_staid;
  46. };
  47. enum bt_frame_type {
  48. /* BT-AMP packet of type data */
  49. TXRX_BT_AMP_TYPE_DATA = 0x0001,
  50. /* BT-AMP packet of type activity report */
  51. TXRX_BT_AMP_TYPE_AR = 0x0002,
  52. /* BT-AMP packet of type security frame */
  53. TXRX_BT_AMP_TYPE_SEC = 0x0003,
  54. /* BT-AMP packet of type Link Supervision request frame */
  55. TXRX_BT_AMP_TYPE_LS_REQ = 0x0004,
  56. /* BT-AMP packet of type Link Supervision reply frame */
  57. TXRX_BT_AMP_TYPE_LS_REP = 0x0005,
  58. /* Invalid Frame */
  59. TXRX_BAP_INVALID_FRAME
  60. };
  61. enum wlan_ts_direction {
  62. /* uplink */
  63. WLAN_TX_DIR = 0,
  64. /* downlink */
  65. WLAN_RX_DIR = 1,
  66. /*bidirectional */
  67. WLAN_BI_DIR = 2,
  68. };
  69. enum wlan_sta_state {
  70. /* Transition in this state made upon creation */
  71. WLAN_STA_INIT = 0,
  72. /* Transition happens after Assoc success if second level authentication
  73. is needed */
  74. WLAN_STA_CONNECTED,
  75. /* Transition happens when second level auth is successful and keys are
  76. properly installed */
  77. WLAN_STA_AUTHENTICATED,
  78. /* Transition happens when connectivity is lost */
  79. WLAN_STA_DISCONNECTED,
  80. WLAN_STA_MAX_STATE
  81. };
  82. struct wlan_txrx_stats {
  83. /* Define various txrx stats here */
  84. };
  85. struct ol_txrx_vdev_t;
  86. CDF_STATUS wlan_register_mgmt_client(void *pdev_txrx,
  87. CDF_STATUS (*rx_mgmt)(void *g_cdsctx,
  88. void *buf));
  89. typedef void (*ol_txrx_vdev_delete_cb)(void *context);
  90. /**
  91. * @typedef ol_txrx_tx_fp
  92. * @brief top-level transmit function
  93. */
  94. typedef cdf_nbuf_t
  95. (*ol_txrx_tx_fp)(struct ol_txrx_vdev_t *vdev, cdf_nbuf_t msdu_list);
  96. typedef void
  97. (*ol_txrx_mgmt_tx_cb)(void *ctxt, cdf_nbuf_t tx_mgmt_frm, int had_error);
  98. /* If RSSI realm is changed, send notification to Clients, SME, HDD */
  99. typedef CDF_STATUS (*wlan_txrx_rssi_cross_thresh)(void *adapter, u8 rssi,
  100. void *usr_ctx,
  101. int8_t avg_rssi);
  102. struct wlan_txrx_ind_req {
  103. u16 msgType; /* message type is same as the request type */
  104. u16 msgLen; /* length of the entire request */
  105. u8 sessionId; /* sme Session Id */
  106. u8 rssiNotification;
  107. u8 avgRssi;
  108. void *tlCallback;
  109. void *pAdapter;
  110. void *pUserCtxt;
  111. };
  112. /* Rx callback registered with txrx */
  113. typedef int (*wlan_txrx_cb_type)(void *g_cdsctx, cdf_nbuf_t buf, u8 sta_id,
  114. struct txrx_rx_metainfo *rx_meta_info);
  115. static inline int wlan_txrx_get_rssi(void *g_cdsctx, u8 sta_id, int8_t *rssi)
  116. {
  117. return 0;
  118. }
  119. static inline int wlan_txrx_enable_uapsd_ac(void *g_cdsctx, u8 sta_id,
  120. enum txrx_wmm_ac ac, u8 tid, u8 up,
  121. u32 srv_int, u32 suspend_int,
  122. enum wlan_ts_direction ts_dir)
  123. {
  124. return 0;
  125. }
  126. static inline int wlan_txrx_disable_uapsd_ac(void *g_cdsctx, u8 sta_id,
  127. enum txrx_wmm_ac ac)
  128. {
  129. return 0;
  130. }
  131. static inline int wlan_change_sta_state(void *g_cdsctx, u8 sta_id,
  132. enum wlan_sta_state state)
  133. {
  134. return 0;
  135. }
  136. static inline int wlan_deregister_mgmt_client(void *g_cdsctx)
  137. {
  138. return 0;
  139. }
  140. static inline void wlan_assoc_failed(u8 staid)
  141. {
  142. }
  143. static inline int wlan_get_ap_stats(void *g_cdsctx, tSap_SoftapStats *buf,
  144. bool reset)
  145. {
  146. return 0;
  147. }
  148. static inline int wlan_get_txrx_stats(void *g_cdsctx,
  149. struct wlan_txrx_stats *stats, u8 sta_id)
  150. {
  151. return 0;
  152. }
  153. static inline int wlan_txrx_update_rssi_bmps(void *g_cdsctx, u8 sta_id,
  154. int8_t rssi)
  155. {
  156. return 0;
  157. }
  158. static inline int wlan_txrx_deregister_rssi_indcb(void *g_cdsctx,
  159. int8_t rssi_val,
  160. u8 trigger_event,
  161. wlan_txrx_rssi_cross_thresh
  162. cb, int mod_id)
  163. {
  164. return 0;
  165. }
  166. static inline int wlan_txrx_register_rssi_indcb(void *g_cdsctx,
  167. int8_t rssi_val,
  168. u8 trigger_event,
  169. wlan_txrx_rssi_cross_thresh cb,
  170. int mod_id, void *usr_ctx)
  171. {
  172. return 0;
  173. }
  174. /* FIXME: The following stubs will be removed eventually */
  175. static inline int wlan_txrx_mc_process_msg(void *g_cdsctx, cds_msg_t *msg)
  176. {
  177. return 0;
  178. }
  179. static inline int wlan_txrx_tx_process_msg(void *g_cdsctx, cds_msg_t *msg)
  180. {
  181. return 0;
  182. }
  183. static inline void wlan_txrx_mc_free_msg(void *g_cdsctx, cds_msg_t *msg)
  184. {
  185. }
  186. static inline void wlan_txrx_tx_free_msg(void *g_cdsctx, cds_msg_t *msg)
  187. {
  188. }
  189. #endif