1 /*- 2 * Copyright (c) 2020-2023 The FreeBSD Foundation 3 * Copyright (c) 2020-2021 Bjoern A. Zeeb 4 * 5 * This software was developed by Björn Zeeb under sponsorship from 6 * the FreeBSD Foundation. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 */ 29 30 /* 31 * Public functions are called linuxkpi_*(). 32 * Internal (static) functions are called lkpi_*(). 33 * 34 * The internal structures holding metadata over public structures are also 35 * called lkpi_xxx (usually with a member at the end called xxx). 36 * Note: we do not replicate the structure names but the general variable names 37 * for these (e.g., struct hw -> struct lkpi_hw, struct sta -> struct lkpi_sta). 38 * There are macros to access one from the other. 39 * We call the internal versions lxxx (e.g., hw -> lhw, sta -> lsta). 40 */ 41 42 #ifndef _LKPI_SRC_LINUX_80211_H 43 #define _LKPI_SRC_LINUX_80211_H 44 45 #include "opt_wlan.h" 46 47 #if defined(IEEE80211_DEBUG) && !defined(LINUXKPI_DEBUG_80211) 48 #define LINUXKPI_DEBUG_80211 49 #endif 50 51 /* #define LINUXKPI_DEBUG_80211 */ 52 53 #ifndef D80211_TODO 54 #define D80211_TODO 0x00000001 55 #endif 56 #ifndef D80211_IMPROVE 57 #define D80211_IMPROVE 0x00000002 58 #endif 59 #define D80211_IMPROVE_TXQ 0x00000004 60 #define D80211_TRACE 0x00000010 61 #define D80211_TRACEOK 0x00000020 62 #define D80211_TRACE_TX 0x00000100 63 #define D80211_TRACE_TX_DUMP 0x00000200 64 #define D80211_TRACE_RX 0x00001000 65 #define D80211_TRACE_RX_DUMP 0x00002000 66 #define D80211_TRACE_RX_BEACONS 0x00004000 67 #define D80211_TRACEX (D80211_TRACE_TX|D80211_TRACE_RX) 68 #define D80211_TRACEX_DUMP (D80211_TRACE_TX_DUMP|D80211_TRACE_RX_DUMP) 69 #define D80211_TRACE_STA 0x00010000 70 #define D80211_TRACE_MO 0x00100000 71 #define D80211_TRACE_MODE 0x0f000000 72 #define D80211_TRACE_MODE_HT 0x01000000 73 #define D80211_TRACE_MODE_VHT 0x02000000 74 #define D80211_TRACE_MODE_HE 0x04000000 75 #define D80211_TRACE_MODE_EHT 0x08000000 76 77 #define IMPROVE_TXQ(...) \ 78 if (linuxkpi_debug_80211 & D80211_IMPROVE_TXQ) \ 79 printf("%s:%d: XXX LKPI80211 IMPROVE_TXQ\n", __func__, __LINE__) 80 81 #define IMPROVE_HT(...) \ 82 if (linuxkpi_debug_80211 & D80211_TRACE_MODE_HT) \ 83 printf("%s:%d: XXX LKPI80211 IMPROVE_HT\n", __func__, __LINE__) 84 85 #define MTAG_ABI_LKPI80211 1707696513 /* LinuxKPI 802.11 KBI */ 86 87 /* 88 * Deferred RX path. 89 * We need to pass *ni along (and possibly more in the future so 90 * we use a struct right from the start. 91 */ 92 #define LKPI80211_TAG_RXNI 0 /* deferred RX path */ 93 struct lkpi_80211_tag_rxni { 94 struct ieee80211_node *ni; /* MUST hold a reference to it. */ 95 }; 96 97 struct lkpi_radiotap_tx_hdr { 98 struct ieee80211_radiotap_header wt_ihdr; 99 uint8_t wt_flags; 100 uint8_t wt_rate; 101 uint16_t wt_chan_freq; 102 uint16_t wt_chan_flags; 103 } __packed; 104 #define LKPI_RTAP_TX_FLAGS_PRESENT \ 105 ((1 << IEEE80211_RADIOTAP_FLAGS) | \ 106 (1 << IEEE80211_RADIOTAP_RATE) | \ 107 (1 << IEEE80211_RADIOTAP_CHANNEL)) 108 109 struct lkpi_radiotap_rx_hdr { 110 struct ieee80211_radiotap_header wr_ihdr; 111 uint64_t wr_tsft; 112 uint8_t wr_flags; 113 uint8_t wr_rate; 114 uint16_t wr_chan_freq; 115 uint16_t wr_chan_flags; 116 int8_t wr_dbm_antsignal; 117 int8_t wr_dbm_antnoise; 118 } __packed __aligned(8); 119 #define LKPI_RTAP_RX_FLAGS_PRESENT \ 120 ((1 << IEEE80211_RADIOTAP_TSFT) | \ 121 (1 << IEEE80211_RADIOTAP_FLAGS) | \ 122 (1 << IEEE80211_RADIOTAP_RATE) | \ 123 (1 << IEEE80211_RADIOTAP_CHANNEL) | \ 124 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) | \ 125 (1 << IEEE80211_RADIOTAP_DBM_ANTNOISE)) 126 127 struct lkpi_txq { 128 TAILQ_ENTRY(lkpi_txq) txq_entry; 129 130 struct mtx ltxq_mtx; 131 bool seen_dequeue; 132 bool stopped; 133 uint32_t txq_generation; 134 struct sk_buff_head skbq; 135 136 /* Must be last! */ 137 struct ieee80211_txq txq __aligned(CACHE_LINE_SIZE); 138 }; 139 #define TXQ_TO_LTXQ(_txq) container_of(_txq, struct lkpi_txq, txq) 140 141 142 struct lkpi_sta { 143 TAILQ_ENTRY(lkpi_sta) lsta_entry; 144 struct ieee80211_node *ni; 145 146 /* Deferred TX path. */ 147 /* Eventually we might want to migrate this into net80211 entirely. */ 148 /* XXX-BZ can we use sta->txq[] instead directly? */ 149 struct task txq_task; 150 struct mbufq txq; 151 struct mtx txq_mtx; 152 153 struct ieee80211_key_conf *kc; 154 enum ieee80211_sta_state state; 155 bool txq_ready; /* Can we run the taskq? */ 156 bool added_to_drv; /* Driver knows; i.e. we called ...(). */ 157 bool in_mgd; /* XXX-BZ should this be per-vif? */ 158 159 /* Must be last! */ 160 struct ieee80211_sta sta __aligned(CACHE_LINE_SIZE); 161 }; 162 #define STA_TO_LSTA(_sta) container_of(_sta, struct lkpi_sta, sta) 163 #define LSTA_TO_STA(_lsta) (&(_lsta)->sta) 164 165 struct lkpi_vif { 166 TAILQ_ENTRY(lkpi_vif) lvif_entry; 167 struct ieee80211vap iv_vap; 168 eventhandler_tag lvif_ifllevent; 169 170 struct mtx mtx; 171 struct wireless_dev wdev; 172 173 /* Other local stuff. */ 174 int (*iv_newstate)(struct ieee80211vap *, 175 enum ieee80211_state, int); 176 struct ieee80211_node * (*iv_update_bss)(struct ieee80211vap *, 177 struct ieee80211_node *); 178 TAILQ_HEAD(, lkpi_sta) lsta_head; 179 struct lkpi_sta *lvif_bss; 180 bool lvif_bss_synched; 181 bool added_to_drv; /* Driver knows; i.e. we called add_interface(). */ 182 183 bool hw_queue_stopped[IEEE80211_NUM_ACS]; 184 185 /* Must be last! */ 186 struct ieee80211_vif vif __aligned(CACHE_LINE_SIZE); 187 }; 188 #define VAP_TO_LVIF(_vap) container_of(_vap, struct lkpi_vif, iv_vap) 189 #define LVIF_TO_VAP(_lvif) (&(_lvif)->iv_vap) 190 #define VIF_TO_LVIF(_vif) container_of(_vif, struct lkpi_vif, vif) 191 #define LVIF_TO_VIF(_lvif) (&(_lvif)->vif) 192 193 194 struct lkpi_hw { /* name it mac80211_sc? */ 195 const struct ieee80211_ops *ops; 196 struct ieee80211_scan_request *hw_req; 197 struct workqueue_struct *workq; 198 199 /* FreeBSD specific compat. */ 200 /* Linux device is in hw.wiphy->dev after SET_IEEE80211_DEV(). */ 201 struct ieee80211com *ic; 202 struct lkpi_radiotap_tx_hdr rtap_tx; 203 struct lkpi_radiotap_rx_hdr rtap_rx; 204 205 TAILQ_HEAD(, lkpi_vif) lvif_head; 206 struct sx lvif_sx; 207 208 struct sx sx; /* XXX-BZ Can this be wiphy->mtx in the future? */ 209 210 struct mtx txq_mtx; 211 uint32_t txq_generation[IEEE80211_NUM_ACS]; 212 TAILQ_HEAD(, lkpi_txq) scheduled_txqs[IEEE80211_NUM_ACS]; 213 214 /* Deferred RX path. */ 215 struct task rxq_task; 216 struct mbufq rxq; 217 struct mtx rxq_mtx; 218 219 /* Scan functions we overload to handle depending on scan mode. */ 220 void (*ic_scan_curchan)(struct ieee80211_scan_state *, 221 unsigned long); 222 void (*ic_scan_mindwell)(struct ieee80211_scan_state *); 223 224 /* Node functions we overload to sync state. */ 225 struct ieee80211_node * (*ic_node_alloc)(struct ieee80211vap *, 226 const uint8_t [IEEE80211_ADDR_LEN]); 227 int (*ic_node_init)(struct ieee80211_node *); 228 void (*ic_node_cleanup)(struct ieee80211_node *); 229 void (*ic_node_free)(struct ieee80211_node *); 230 231 /* HT and later functions. */ 232 int (*ic_recv_action)(struct ieee80211_node *, 233 const struct ieee80211_frame *, 234 const uint8_t *, const uint8_t *); 235 int (*ic_send_action)(struct ieee80211_node *, 236 int, int, void *); 237 int (*ic_ampdu_enable)(struct ieee80211_node *, 238 struct ieee80211_tx_ampdu *); 239 int (*ic_addba_request)(struct ieee80211_node *, 240 struct ieee80211_tx_ampdu *, int, int, int); 241 int (*ic_addba_response)(struct ieee80211_node *, 242 struct ieee80211_tx_ampdu *, int, int, int); 243 void (*ic_addba_stop)(struct ieee80211_node *, 244 struct ieee80211_tx_ampdu *); 245 void (*ic_addba_response_timeout)(struct ieee80211_node *, 246 struct ieee80211_tx_ampdu *); 247 void (*ic_bar_response)(struct ieee80211_node *, 248 struct ieee80211_tx_ampdu *, int); 249 int (*ic_ampdu_rx_start)(struct ieee80211_node *, 250 struct ieee80211_rx_ampdu *, int, int, int); 251 void (*ic_ampdu_rx_stop)(struct ieee80211_node *, 252 struct ieee80211_rx_ampdu *); 253 254 #define LKPI_MAC80211_DRV_STARTED 0x00000001 255 uint32_t sc_flags; 256 #define LKPI_LHW_SCAN_RUNNING 0x00000001 257 #define LKPI_LHW_SCAN_HW 0x00000002 258 uint32_t scan_flags; 259 struct mtx scan_mtx; 260 261 int supbands; /* Number of supported bands. */ 262 int max_rates; /* Maximum number of bitrates supported in any channel. */ 263 int scan_ie_len; /* Length of common per-band scan IEs. */ 264 265 bool update_mc; 266 bool update_wme; 267 bool rxq_stopped; 268 269 /* Must be last! */ 270 struct ieee80211_hw hw __aligned(CACHE_LINE_SIZE); 271 }; 272 #define LHW_TO_HW(_lhw) (&(_lhw)->hw) 273 #define HW_TO_LHW(_hw) container_of(_hw, struct lkpi_hw, hw) 274 275 struct lkpi_chanctx { 276 bool added_to_drv; /* Managed by MO */ 277 struct ieee80211_chanctx_conf chanctx_conf __aligned(CACHE_LINE_SIZE); 278 }; 279 #define LCHANCTX_TO_CHANCTX_CONF(_lchanctx) \ 280 (&(_lchanctx)->chanctx_conf) 281 #define CHANCTX_CONF_TO_LCHANCTX(_conf) \ 282 container_of(_conf, struct lkpi_chanctx, chanctx_conf) 283 284 struct lkpi_wiphy { 285 const struct cfg80211_ops *ops; 286 287 struct work_struct wwk; 288 struct list_head wwk_list; 289 struct mtx wwk_mtx; 290 291 /* Must be last! */ 292 struct wiphy wiphy __aligned(CACHE_LINE_SIZE); 293 }; 294 #define WIPHY_TO_LWIPHY(_wiphy) container_of(_wiphy, struct lkpi_wiphy, wiphy) 295 #define LWIPHY_TO_WIPHY(_lwiphy) (&(_lwiphy)->wiphy) 296 297 #define LKPI_80211_LWIPHY_WORK_LOCK_INIT(_lwiphy) \ 298 mtx_init(&(_lwiphy)->wwk_mtx, "lwiphy-work", NULL, MTX_DEF); 299 #define LKPI_80211_LWIPHY_WORK_LOCK_DESTROY(_lwiphy) \ 300 mtx_destroy(&(_lwiphy)->wwk_mtx) 301 #define LKPI_80211_LWIPHY_WORK_LOCK(_lwiphy) \ 302 mtx_lock(&(_lwiphy)->wwk_mtx) 303 #define LKPI_80211_LWIPHY_WORK_UNLOCK(_lwiphy) \ 304 mtx_unlock(&(_lwiphy)->wwk_mtx) 305 #define LKPI_80211_LWIPHY_WORK_LOCK_ASSERT(_lwiphy) \ 306 mtx_assert(&(_lwiphy)->wwk_mtx, MA_OWNED) 307 #define LKPI_80211_LWIPHY_WORK_UNLOCK_ASSERT(_lwiphy) \ 308 mtx_assert(&(_lwiphy)->wwk_mtx, MA_NOTOWNED) 309 310 #define LKPI_80211_LHW_LOCK_INIT(_lhw) \ 311 sx_init_flags(&(_lhw)->sx, "lhw", SX_RECURSE); 312 #define LKPI_80211_LHW_LOCK_DESTROY(_lhw) \ 313 sx_destroy(&(_lhw)->sx); 314 #define LKPI_80211_LHW_LOCK(_lhw) \ 315 sx_xlock(&(_lhw)->sx) 316 #define LKPI_80211_LHW_UNLOCK(_lhw) \ 317 sx_xunlock(&(_lhw)->sx) 318 #define LKPI_80211_LHW_LOCK_ASSERT(_lhw) \ 319 sx_assert(&(_lhw)->sx, SA_LOCKED) 320 #define LKPI_80211_LHW_UNLOCK_ASSERT(_lhw) \ 321 sx_assert(&(_lhw)->sx, SA_UNLOCKED) 322 323 #define LKPI_80211_LHW_SCAN_LOCK_INIT(_lhw) \ 324 mtx_init(&(_lhw)->scan_mtx, "lhw-scan", NULL, MTX_DEF | MTX_RECURSE); 325 #define LKPI_80211_LHW_SCAN_LOCK_DESTROY(_lhw) \ 326 mtx_destroy(&(_lhw)->scan_mtx); 327 #define LKPI_80211_LHW_SCAN_LOCK(_lhw) \ 328 mtx_lock(&(_lhw)->scan_mtx) 329 #define LKPI_80211_LHW_SCAN_UNLOCK(_lhw) \ 330 mtx_unlock(&(_lhw)->scan_mtx) 331 #define LKPI_80211_LHW_SCAN_LOCK_ASSERT(_lhw) \ 332 mtx_assert(&(_lhw)->scan_mtx, MA_OWNED) 333 #define LKPI_80211_LHW_SCAN_UNLOCK_ASSERT(_lhw) \ 334 mtx_assert(&(_lhw)->scan_mtx, MA_NOTOWNED) 335 336 #define LKPI_80211_LHW_TXQ_LOCK_INIT(_lhw) \ 337 mtx_init(&(_lhw)->txq_mtx, "lhw-txq", NULL, MTX_DEF | MTX_RECURSE); 338 #define LKPI_80211_LHW_TXQ_LOCK_DESTROY(_lhw) \ 339 mtx_destroy(&(_lhw)->txq_mtx); 340 #define LKPI_80211_LHW_TXQ_LOCK(_lhw) \ 341 mtx_lock(&(_lhw)->txq_mtx) 342 #define LKPI_80211_LHW_TXQ_UNLOCK(_lhw) \ 343 mtx_unlock(&(_lhw)->txq_mtx) 344 #define LKPI_80211_LHW_TXQ_LOCK_ASSERT(_lhw) \ 345 mtx_assert(&(_lhw)->txq_mtx, MA_OWNED) 346 #define LKPI_80211_LHW_TXQ_UNLOCK_ASSERT(_lhw) \ 347 mtx_assert(&(_lhw)->txq_mtx, MA_NOTOWNED) 348 349 #define LKPI_80211_LHW_RXQ_LOCK_INIT(_lhw) \ 350 mtx_init(&(_lhw)->rxq_mtx, "lhw-rxq", NULL, MTX_DEF | MTX_RECURSE); 351 #define LKPI_80211_LHW_RXQ_LOCK_DESTROY(_lhw) \ 352 mtx_destroy(&(_lhw)->rxq_mtx); 353 #define LKPI_80211_LHW_RXQ_LOCK(_lhw) \ 354 mtx_lock(&(_lhw)->rxq_mtx) 355 #define LKPI_80211_LHW_RXQ_UNLOCK(_lhw) \ 356 mtx_unlock(&(_lhw)->rxq_mtx) 357 #define LKPI_80211_LHW_RXQ_LOCK_ASSERT(_lhw) \ 358 mtx_assert(&(_lhw)->rxq_mtx, MA_OWNED) 359 #define LKPI_80211_LHW_RXQ_UNLOCK_ASSERT(_lhw) \ 360 mtx_assert(&(_lhw)->rxq_mtx, MA_NOTOWNED) 361 362 #define LKPI_80211_LHW_LVIF_LOCK(_lhw) sx_xlock(&(_lhw)->lvif_sx) 363 #define LKPI_80211_LHW_LVIF_UNLOCK(_lhw) sx_xunlock(&(_lhw)->lvif_sx) 364 365 #define LKPI_80211_LVIF_LOCK(_lvif) mtx_lock(&(_lvif)->mtx) 366 #define LKPI_80211_LVIF_UNLOCK(_lvif) mtx_unlock(&(_lvif)->mtx) 367 368 #define LKPI_80211_LSTA_TXQ_LOCK_INIT(_lsta) \ 369 mtx_init(&(_lsta)->txq_mtx, "lsta-txq", NULL, MTX_DEF); 370 #define LKPI_80211_LSTA_TXQ_LOCK_DESTROY(_lsta) \ 371 mtx_destroy(&(_lsta)->txq_mtx); 372 #define LKPI_80211_LSTA_TXQ_LOCK(_lsta) \ 373 mtx_lock(&(_lsta)->txq_mtx) 374 #define LKPI_80211_LSTA_TXQ_UNLOCK(_lsta) \ 375 mtx_unlock(&(_lsta)->txq_mtx) 376 #define LKPI_80211_LSTA_TXQ_LOCK_ASSERT(_lsta) \ 377 mtx_assert(&(_lsta)->txq_mtx, MA_OWNED) 378 #define LKPI_80211_LSTA_TXQ_UNLOCK_ASSERT(_lsta) \ 379 mtx_assert(&(_lsta)->txq_mtx, MA_NOTOWNED) 380 381 #define LKPI_80211_LTXQ_LOCK_INIT(_ltxq) \ 382 mtx_init(&(_ltxq)->ltxq_mtx, "ltxq", NULL, MTX_DEF); 383 #define LKPI_80211_LTXQ_LOCK_DESTROY(_ltxq) \ 384 mtx_destroy(&(_ltxq)->ltxq_mtx); 385 #define LKPI_80211_LTXQ_LOCK(_ltxq) \ 386 mtx_lock(&(_ltxq)->ltxq_mtx) 387 #define LKPI_80211_LTXQ_UNLOCK(_ltxq) \ 388 mtx_unlock(&(_ltxq)->ltxq_mtx) 389 #define LKPI_80211_LTXQ_LOCK_ASSERT(_ltxq) \ 390 mtx_assert(&(_ltxq)->ltxq_mtx, MA_OWNED) 391 #define LKPI_80211_LTXQ_UNLOCK_ASSERT(_ltxq) \ 392 mtx_assert(&(_ltxq)->ltxq_mtx, MA_NOTOWNED) 393 394 int lkpi_80211_mo_start(struct ieee80211_hw *); 395 void lkpi_80211_mo_stop(struct ieee80211_hw *, bool); 396 int lkpi_80211_mo_get_antenna(struct ieee80211_hw *, u32 *, u32 *); 397 int lkpi_80211_mo_set_frag_threshold(struct ieee80211_hw *, uint32_t); 398 int lkpi_80211_mo_set_rts_threshold(struct ieee80211_hw *, uint32_t); 399 int lkpi_80211_mo_add_interface(struct ieee80211_hw *, struct ieee80211_vif *); 400 void lkpi_80211_mo_remove_interface(struct ieee80211_hw *, struct ieee80211_vif *); 401 int lkpi_80211_mo_hw_scan(struct ieee80211_hw *, struct ieee80211_vif *, 402 struct ieee80211_scan_request *); 403 void lkpi_80211_mo_cancel_hw_scan(struct ieee80211_hw *, struct ieee80211_vif *); 404 void lkpi_80211_mo_sw_scan_complete(struct ieee80211_hw *, struct ieee80211_vif *); 405 void lkpi_80211_mo_sw_scan_start(struct ieee80211_hw *, struct ieee80211_vif *, 406 const u8 *); 407 u64 lkpi_80211_mo_prepare_multicast(struct ieee80211_hw *, 408 struct netdev_hw_addr_list *); 409 void lkpi_80211_mo_configure_filter(struct ieee80211_hw *, unsigned int, 410 unsigned int *, u64); 411 int lkpi_80211_mo_sta_state(struct ieee80211_hw *, struct ieee80211_vif *, 412 struct lkpi_sta *, enum ieee80211_sta_state); 413 int lkpi_80211_mo_config(struct ieee80211_hw *, uint32_t); 414 int lkpi_80211_mo_assign_vif_chanctx(struct ieee80211_hw *, struct ieee80211_vif *, 415 struct ieee80211_bss_conf *, struct ieee80211_chanctx_conf *); 416 void lkpi_80211_mo_unassign_vif_chanctx(struct ieee80211_hw *, struct ieee80211_vif *, 417 struct ieee80211_bss_conf *, struct ieee80211_chanctx_conf **); 418 int lkpi_80211_mo_add_chanctx(struct ieee80211_hw *, struct ieee80211_chanctx_conf *); 419 void lkpi_80211_mo_change_chanctx(struct ieee80211_hw *, 420 struct ieee80211_chanctx_conf *, uint32_t); 421 void lkpi_80211_mo_remove_chanctx(struct ieee80211_hw *, 422 struct ieee80211_chanctx_conf *); 423 void lkpi_80211_mo_bss_info_changed(struct ieee80211_hw *, struct ieee80211_vif *, 424 struct ieee80211_bss_conf *, uint64_t); 425 int lkpi_80211_mo_conf_tx(struct ieee80211_hw *, struct ieee80211_vif *, 426 uint32_t, uint16_t, const struct ieee80211_tx_queue_params *); 427 void lkpi_80211_mo_flush(struct ieee80211_hw *, struct ieee80211_vif *, 428 uint32_t, bool); 429 void lkpi_80211_mo_mgd_prepare_tx(struct ieee80211_hw *, struct ieee80211_vif *, 430 struct ieee80211_prep_tx_info *); 431 void lkpi_80211_mo_mgd_complete_tx(struct ieee80211_hw *, struct ieee80211_vif *, 432 struct ieee80211_prep_tx_info *); 433 void lkpi_80211_mo_tx(struct ieee80211_hw *, struct ieee80211_tx_control *, 434 struct sk_buff *); 435 void lkpi_80211_mo_wake_tx_queue(struct ieee80211_hw *, struct ieee80211_txq *); 436 void lkpi_80211_mo_sync_rx_queues(struct ieee80211_hw *); 437 void lkpi_80211_mo_sta_pre_rcu_remove(struct ieee80211_hw *, 438 struct ieee80211_vif *, struct ieee80211_sta *); 439 int lkpi_80211_mo_set_key(struct ieee80211_hw *, enum set_key_cmd, 440 struct ieee80211_vif *, struct ieee80211_sta *, 441 struct ieee80211_key_conf *); 442 int lkpi_80211_mo_ampdu_action(struct ieee80211_hw *, struct ieee80211_vif *, 443 struct ieee80211_ampdu_params *); 444 445 446 #endif /* _LKPI_SRC_LINUX_80211_H */ 447