]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/net/wireless/marvell/mwifiex/main.h
Merge branches 'uaccess.alpha', 'uaccess.arc', 'uaccess.arm', 'uaccess.arm64', 'uacce...
[mirror_ubuntu-artful-kernel.git] / drivers / net / wireless / marvell / mwifiex / main.h
CommitLineData
5e6e3a92
BZ
1/*
2 * Marvell Wireless LAN device driver: major data structures and prototypes
3 *
65da33f5 4 * Copyright (C) 2011-2014, Marvell International Ltd.
5e6e3a92
BZ
5 *
6 * This software file (the "File") is distributed by Marvell International
7 * Ltd. under the terms of the GNU General Public License Version 2, June 1991
8 * (the "License"). You may use, redistribute and/or modify this File in
9 * accordance with the terms and conditions of the License, a copy of which
10 * is available by writing to the Free Software Foundation, Inc.,
11 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
12 * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
13 *
14 * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
16 * ARE EXPRESSLY DISCLAIMED. The License provides additional details about
17 * this warranty disclaimer.
18 */
19
20#ifndef _MWIFIEX_MAIN_H_
21#define _MWIFIEX_MAIN_H_
22
4a79aa17 23#include <linux/completion.h>
5e6e3a92
BZ
24#include <linux/kernel.h>
25#include <linux/module.h>
26#include <linux/sched.h>
27#include <linux/semaphore.h>
28#include <linux/ip.h>
29#include <linux/skbuff.h>
30#include <linux/if_arp.h>
31#include <linux/etherdevice.h>
32#include <net/sock.h>
33#include <net/lib80211.h>
92c2538f 34#include <linux/vmalloc.h>
5e6e3a92
BZ
35#include <linux/firmware.h>
36#include <linux/ctype.h>
699b027b 37#include <linux/of.h>
808bbebc 38#include <linux/idr.h>
b533be18 39#include <linux/inetdevice.h>
57670ee8 40#include <linux/devcoredump.h>
ce4f6f0c
XH
41#include <linux/err.h>
42#include <linux/gpio.h>
43#include <linux/gfp.h>
44#include <linux/interrupt.h>
45#include <linux/io.h>
46#include <linux/of_gpio.h>
47#include <linux/of_platform.h>
48#include <linux/platform_device.h>
49#include <linux/pm_runtime.h>
50#include <linux/slab.h>
51#include <linux/of_irq.h>
5e6e3a92
BZ
52
53#include "decl.h"
54#include "ioctl.h"
55#include "util.h"
56#include "fw.h"
d930faee 57#include "pcie.h"
11cd07a9
XH
58#include "usb.h"
59#include "sdio.h"
5e6e3a92
BZ
60
61extern const char driver_version[];
cf5383b0 62extern bool mfg_mode;
5e6e3a92 63
36925e52
JP
64struct mwifiex_adapter;
65struct mwifiex_private;
66
5e6e3a92 67enum {
600f5d90
AK
68 MWIFIEX_ASYNC_CMD,
69 MWIFIEX_SYNC_CMD
5e6e3a92
BZ
70};
71
0013c7ce
AP
72#define MWIFIEX_DRIVER_MODE_STA BIT(0)
73#define MWIFIEX_DRIVER_MODE_UAP BIT(1)
74#define MWIFIEX_DRIVER_MODE_P2P BIT(2)
75#define MWIFIEX_DRIVER_MODE_BITMASK (BIT(0) | BIT(1) | BIT(2))
76
67a50035
BZ
77#define MWIFIEX_MAX_AP 64
78
e35000ea
ZL
79#define MWIFIEX_MAX_PKTS_TXQ 16
80
5e6e3a92
BZ
81#define MWIFIEX_DEFAULT_WATCHDOG_TIMEOUT (5 * HZ)
82
83#define MWIFIEX_TIMER_10S 10000
84#define MWIFIEX_TIMER_1S 1000
85
62a5b7dc
MY
86#define MAX_TX_PENDING 100
87#define LOW_TX_PENDING 80
5e6e3a92 88
6e251174
AP
89#define HIGH_RX_PENDING 50
90#define LOW_RX_PENDING 20
91
5e6e3a92
BZ
92#define MWIFIEX_UPLD_SIZE (2312)
93
21f58d20 94#define MAX_EVENT_SIZE 2048
5e6e3a92
BZ
95
96#define ARP_FILTER_MAX_BUF_SIZE 68
97
98#define MWIFIEX_KEY_BUFFER_SIZE 16
99#define MWIFIEX_DEFAULT_LISTEN_INTERVAL 10
610d0af8 100#define MWIFIEX_MAX_REGION_CODE 9
5e6e3a92
BZ
101
102#define DEFAULT_BCN_AVG_FACTOR 8
103#define DEFAULT_DATA_AVG_FACTOR 8
104
105#define FIRST_VALID_CHANNEL 0xff
106#define DEFAULT_AD_HOC_CHANNEL 6
107#define DEFAULT_AD_HOC_CHANNEL_A 36
108
109#define DEFAULT_BCN_MISS_TIMEOUT 5
110
111#define MAX_SCAN_BEACON_BUFFER 8000
112
113#define SCAN_BEACON_ENTRY_PAD 6
114
38e8b7d9 115#define MWIFIEX_PASSIVE_SCAN_CHAN_TIME 110
9d3f65b0
AK
116#define MWIFIEX_ACTIVE_SCAN_CHAN_TIME 40
117#define MWIFIEX_SPECIFIC_SCAN_CHAN_TIME 40
cb91be87 118#define MWIFIEX_DEF_SCAN_CHAN_GAP_TIME 50
5e6e3a92
BZ
119
120#define SCAN_RSSI(RSSI) (0x100 - ((u8)(RSSI)))
121
122#define MWIFIEX_MAX_TOTAL_SCAN_TIME (MWIFIEX_TIMER_10S - MWIFIEX_TIMER_1S)
123
124#define RSN_GTK_OUI_OFFSET 2
125
126#define MWIFIEX_OUI_NOT_PRESENT 0
127#define MWIFIEX_OUI_PRESENT 1
128
e39faa73
SP
129#define PKT_TYPE_MGMT 0xE5
130
4daffe35
AK
131/*
132 * Do not check for data_received for USB, as data_received
133 * is handled in mwifiex_usb_recv for USB
134 */
5e6e3a92 135#define IS_CARD_RX_RCVD(adapter) (adapter->cmd_resp_received || \
4daffe35 136 adapter->event_received || \
ec4a16b4 137 adapter->data_received)
5e6e3a92
BZ
138
139#define MWIFIEX_TYPE_CMD 1
140#define MWIFIEX_TYPE_DATA 0
92263a84 141#define MWIFIEX_TYPE_AGGR_DATA 10
5e6e3a92
BZ
142#define MWIFIEX_TYPE_EVENT 3
143
a0b7315a 144#define MAX_BITMAP_RATES_SIZE 18
5e6e3a92
BZ
145
146#define MAX_CHANNEL_BAND_BG 14
a3c2c4f6 147#define MAX_CHANNEL_BAND_A 165
5e6e3a92
BZ
148
149#define MAX_FREQUENCY_BAND_BG 2484
150
d930faee 151#define MWIFIEX_EVENT_HEADER_LEN 4
e568634a 152#define MWIFIEX_UAP_EVENT_EXTRA_HEADER 2
d930faee 153
4daffe35
AK
154#define MWIFIEX_TYPE_LEN 4
155#define MWIFIEX_USB_TYPE_CMD 0xF00DFACE
156#define MWIFIEX_USB_TYPE_DATA 0xBEADC0DE
157#define MWIFIEX_USB_TYPE_EVENT 0xBEEFFACE
158
8908c7d5
AN
159/* Threshold for tx_timeout_cnt before we trigger a card reset */
160#define TX_TIMEOUT_THRESHOLD 6
161
11cd07a9
XH
162#define MWIFIEX_DRV_INFO_SIZE_MAX 0x40000
163
31def91b
AP
164/* Address alignment */
165#define MWIFIEX_ALIGN_ADDR(p, a) (((long)(p) + (a) - 1) & ~((a) - 1))
166
c687a007
ZL
167/**
168 *enum mwifiex_debug_level - marvell wifi debug level
169 */
170enum MWIFIEX_DEBUG_LEVEL {
171 MWIFIEX_DBG_MSG = 0x00000001,
172 MWIFIEX_DBG_FATAL = 0x00000002,
173 MWIFIEX_DBG_ERROR = 0x00000004,
174 MWIFIEX_DBG_DATA = 0x00000008,
175 MWIFIEX_DBG_CMD = 0x00000010,
176 MWIFIEX_DBG_EVENT = 0x00000020,
177 MWIFIEX_DBG_INTR = 0x00000040,
178 MWIFIEX_DBG_IOCTL = 0x00000080,
179
180 MWIFIEX_DBG_MPA_D = 0x00008000,
181 MWIFIEX_DBG_DAT_D = 0x00010000,
182 MWIFIEX_DBG_CMD_D = 0x00020000,
183 MWIFIEX_DBG_EVT_D = 0x00040000,
184 MWIFIEX_DBG_FW_D = 0x00080000,
185 MWIFIEX_DBG_IF_D = 0x00100000,
186
187 MWIFIEX_DBG_ENTRY = 0x10000000,
188 MWIFIEX_DBG_WARN = 0x20000000,
189 MWIFIEX_DBG_INFO = 0x40000000,
190 MWIFIEX_DBG_DUMP = 0x80000000,
191
192 MWIFIEX_DBG_ANY = 0xffffffff
193};
194
195#define MWIFIEX_DEFAULT_DEBUG_MASK (MWIFIEX_DBG_MSG | \
196 MWIFIEX_DBG_FATAL | \
197 MWIFIEX_DBG_ERROR)
198
36925e52
JP
199__printf(3, 4)
200void _mwifiex_dbg(const struct mwifiex_adapter *adapter, int mask,
201 const char *fmt, ...);
202#define mwifiex_dbg(adapter, mask, fmt, ...) \
203 _mwifiex_dbg(adapter, MWIFIEX_DBG_##mask, fmt, ##__VA_ARGS__)
c687a007 204
868093a9
ZL
205#define DEBUG_DUMP_DATA_MAX_LEN 128
206#define mwifiex_dbg_dump(adapter, dbg_mask, str, buf, len) \
207do { \
208 if ((adapter)->debug_mask & MWIFIEX_DBG_##dbg_mask) \
209 print_hex_dump(KERN_DEBUG, str, \
210 DUMP_PREFIX_OFFSET, 16, 1, \
211 buf, len, false); \
212} while (0)
213
0c9b7f22
XH
214/** Min BGSCAN interval 15 second */
215#define MWIFIEX_BGSCAN_INTERVAL 15000
216/** default repeat count */
217#define MWIFIEX_BGSCAN_REPEAT_COUNT 6
218
5e6e3a92
BZ
219struct mwifiex_dbg {
220 u32 num_cmd_host_to_card_failure;
221 u32 num_cmd_sleep_cfm_host_to_card_failure;
222 u32 num_tx_host_to_card_failure;
223 u32 num_event_deauth;
224 u32 num_event_disassoc;
225 u32 num_event_link_lost;
226 u32 num_cmd_deauth;
227 u32 num_cmd_assoc_success;
228 u32 num_cmd_assoc_failure;
229 u32 num_tx_timeout;
5e6e3a92
BZ
230 u16 timeout_cmd_id;
231 u16 timeout_cmd_act;
232 u16 last_cmd_id[DBG_CMD_NUM];
233 u16 last_cmd_act[DBG_CMD_NUM];
234 u16 last_cmd_index;
235 u16 last_cmd_resp_id[DBG_CMD_NUM];
236 u16 last_cmd_resp_index;
237 u16 last_event[DBG_CMD_NUM];
238 u16 last_event_index;
8b7ef8b6
XH
239 u32 last_mp_wr_bitmap[MWIFIEX_DBG_SDIO_MP_NUM];
240 u32 last_mp_wr_ports[MWIFIEX_DBG_SDIO_MP_NUM];
241 u32 last_mp_wr_len[MWIFIEX_DBG_SDIO_MP_NUM];
242 u32 last_mp_curr_wr_port[MWIFIEX_DBG_SDIO_MP_NUM];
243 u8 last_sdio_mp_index;
5e6e3a92
BZ
244};
245
246enum MWIFIEX_HARDWARE_STATUS {
247 MWIFIEX_HW_STATUS_READY,
248 MWIFIEX_HW_STATUS_INITIALIZING,
5e6e3a92
BZ
249 MWIFIEX_HW_STATUS_INIT_DONE,
250 MWIFIEX_HW_STATUS_RESET,
5e6e3a92
BZ
251 MWIFIEX_HW_STATUS_NOT_READY
252};
253
254enum MWIFIEX_802_11_POWER_MODE {
255 MWIFIEX_802_11_POWER_MODE_CAM,
256 MWIFIEX_802_11_POWER_MODE_PSP
257};
258
259struct mwifiex_tx_param {
260 u32 next_pkt_len;
261};
262
263enum MWIFIEX_PS_STATE {
264 PS_STATE_AWAKE,
265 PS_STATE_PRE_SLEEP,
266 PS_STATE_SLEEP_CFM,
267 PS_STATE_SLEEP
268};
269
d930faee
AK
270enum mwifiex_iface_type {
271 MWIFIEX_SDIO,
272 MWIFIEX_PCIE,
4daffe35 273 MWIFIEX_USB
d930faee
AK
274};
275
5e6e3a92
BZ
276struct mwifiex_add_ba_param {
277 u32 tx_win_size;
278 u32 rx_win_size;
279 u32 timeout;
4c9f9fb2
AK
280 u8 tx_amsdu;
281 u8 rx_amsdu;
5e6e3a92
BZ
282};
283
284struct mwifiex_tx_aggr {
285 u8 ampdu_user;
286 u8 ampdu_ap;
287 u8 amsdu;
288};
289
39df5e82
ZL
290enum mwifiex_ba_status {
291 BA_SETUP_NONE = 0,
292 BA_SETUP_INPROGRESS,
293 BA_SETUP_COMPLETE
294};
295
5e6e3a92
BZ
296struct mwifiex_ra_list_tbl {
297 struct list_head list;
298 struct sk_buff_head skb_head;
299 u8 ra[ETH_ALEN];
5e6e3a92 300 u32 is_11n_enabled;
5a009adf 301 u16 max_amsdu;
f0cb84f8 302 u16 ba_pkt_count;
5a009adf 303 u8 ba_packet_thr;
39df5e82
ZL
304 enum mwifiex_ba_status ba_status;
305 u8 amsdu_in_ampdu;
c7d9ed9e 306 u16 total_pkt_count;
daeb5bb4 307 bool tdls_link;
4e6ee91b 308 bool tx_paused;
5e6e3a92
BZ
309};
310
311struct mwifiex_tid_tbl {
312 struct list_head ra_list;
5e6e3a92
BZ
313};
314
315#define WMM_HIGHEST_PRIORITY 7
316#define HIGH_PRIO_TID 7
317#define LOW_PRIO_TID 0
49abe5c8 318#define NO_PKT_PRIO_TID -1
6970cd44 319#define MWIFIEX_WMM_DRV_DELAY_MAX 510
5e6e3a92
BZ
320
321struct mwifiex_wmm_desc {
322 struct mwifiex_tid_tbl tid_tbl_ptr[MAX_NUM_TID];
323 u32 packets_out[MAX_NUM_TID];
4e6ee91b 324 u32 pkts_paused[MAX_NUM_TID];
5e6e3a92
BZ
325 /* spin lock to protect ra_list */
326 spinlock_t ra_list_spinlock;
99fec5de
JB
327 struct mwifiex_wmm_ac_status ac_status[IEEE80211_NUM_ACS];
328 enum mwifiex_wmm_ac_e ac_down_graded_vals[IEEE80211_NUM_ACS];
5e6e3a92 329 u32 drv_pkt_delay_max;
99fec5de 330 u8 queue_priority[IEEE80211_NUM_ACS];
5e6e3a92 331 u32 user_pri_pkt_tx_ctrl[WMM_HIGHEST_PRIORITY + 1]; /* UP: 0 to 7 */
f699254c
MY
332 /* Number of transmit packets queued */
333 atomic_t tx_pkts_queued;
49729ff6
MY
334 /* Tracks highest priority with a packet queued */
335 atomic_t highest_queued_prio;
5e6e3a92
BZ
336};
337
338struct mwifiex_802_11_security {
339 u8 wpa_enabled;
340 u8 wpa2_enabled;
341 u8 wapi_enabled;
342 u8 wapi_key_on;
5eb02e44 343 u8 wep_enabled;
5e6e3a92 344 u32 authentication_mode;
a0f6d6ca 345 u8 is_authtype_auto;
5e6e3a92
BZ
346 u32 encryption_mode;
347};
348
349struct ieee_types_header {
350 u8 element_id;
351 u8 len;
352} __packed;
353
5e6e3a92
BZ
354struct ieee_types_vendor_specific {
355 struct ieee_types_vendor_header vend_hdr;
356 u8 data[IEEE_MAX_IE_SIZE - sizeof(struct ieee_types_vendor_header)];
357} __packed;
358
359struct ieee_types_generic {
360 struct ieee_types_header ieee_hdr;
361 u8 data[IEEE_MAX_IE_SIZE - sizeof(struct ieee_types_header)];
362} __packed;
363
b23bce29
AP
364struct ieee_types_bss_co_2040 {
365 struct ieee_types_header ieee_hdr;
366 u8 bss_2040co;
367} __packed;
368
369struct ieee_types_extcap {
370 struct ieee_types_header ieee_hdr;
371 u8 ext_capab[8];
372} __packed;
373
5f6d5983
AP
374struct ieee_types_vht_cap {
375 struct ieee_types_header ieee_hdr;
376 struct ieee80211_vht_cap vhtcap;
377} __packed;
378
379struct ieee_types_vht_oper {
380 struct ieee_types_header ieee_hdr;
381 struct ieee80211_vht_operation vhtoper;
382} __packed;
383
384struct ieee_types_aid {
385 struct ieee_types_header ieee_hdr;
386 u16 aid;
387} __packed;
388
5e6e3a92
BZ
389struct mwifiex_bssdescriptor {
390 u8 mac_address[ETH_ALEN];
b9be5f39 391 struct cfg80211_ssid ssid;
5e6e3a92
BZ
392 u32 privacy;
393 s32 rssi;
394 u32 channel;
395 u32 freq;
396 u16 beacon_period;
397 u8 erp_flags;
398 u32 bss_mode;
399 u8 supported_rates[MWIFIEX_SUPPORTED_RATES];
400 u8 data_rates[MWIFIEX_SUPPORTED_RATES];
401 /* Network band.
402 * BAND_B(0x01): 'b' band
403 * BAND_G(0x02): 'g' band
404 * BAND_A(0X04): 'a' band
405 */
406 u16 bss_band;
b5abcf02
AK
407 u64 fw_tsf;
408 u64 timestamp;
5e6e3a92
BZ
409 union ieee_types_phy_param_set phy_param_set;
410 union ieee_types_ss_param_set ss_param_set;
411 u16 cap_info_bitmap;
412 struct ieee_types_wmm_parameter wmm_ie;
413 u8 disable_11n;
414 struct ieee80211_ht_cap *bcn_ht_cap;
415 u16 ht_cap_offset;
074d46d1 416 struct ieee80211_ht_operation *bcn_ht_oper;
5e6e3a92
BZ
417 u16 ht_info_offset;
418 u8 *bcn_bss_co_2040;
419 u16 bss_co_2040_offset;
420 u8 *bcn_ext_cap;
421 u16 ext_cap_offset;
a5f39056
YAP
422 struct ieee80211_vht_cap *bcn_vht_cap;
423 u16 vht_cap_offset;
424 struct ieee80211_vht_operation *bcn_vht_oper;
425 u16 vht_info_offset;
426 struct ieee_types_oper_mode_ntf *oper_mode;
427 u16 oper_mode_offset;
428 u8 disable_11ac;
5e6e3a92
BZ
429 struct ieee_types_vendor_specific *bcn_wpa_ie;
430 u16 wpa_offset;
431 struct ieee_types_generic *bcn_rsn_ie;
432 u16 rsn_offset;
433 struct ieee_types_generic *bcn_wapi_ie;
434 u16 wapi_offset;
435 u8 *beacon_buf;
436 u32 beacon_buf_size;
2a7305c8
AK
437 u8 sensed_11h;
438 u8 local_constraint;
439 u8 chan_sw_ie_present;
5e6e3a92
BZ
440};
441
442struct mwifiex_current_bss_params {
443 struct mwifiex_bssdescriptor bss_descriptor;
444 u8 wmm_enabled;
445 u8 wmm_uapsd_enabled;
446 u8 band;
447 u32 num_of_rates;
448 u8 data_rates[MWIFIEX_SUPPORTED_RATES];
449};
450
451struct mwifiex_sleep_params {
452 u16 sp_error;
453 u16 sp_offset;
454 u16 sp_stable_time;
455 u8 sp_cal_control;
456 u8 sp_ext_sleep_clk;
457 u16 sp_reserved;
458};
459
460struct mwifiex_sleep_period {
461 u16 period;
462 u16 reserved;
463};
464
465struct mwifiex_wep_key {
466 u32 length;
467 u32 key_index;
468 u32 key_length;
469 u8 key_material[MWIFIEX_KEY_BUFFER_SIZE];
470};
471
472#define MAX_REGION_CHANNEL_NUM 2
473
474struct mwifiex_chan_freq_power {
475 u16 channel;
476 u32 freq;
477 u16 max_tx_power;
478 u8 unsupported;
479};
480
481enum state_11d_t {
482 DISABLE_11D = 0,
483 ENABLE_11D = 1,
484};
485
486#define MWIFIEX_MAX_TRIPLET_802_11D 83
487
488struct mwifiex_802_11d_domain_reg {
489 u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
490 u8 no_of_triplet;
491 struct ieee80211_country_ie_triplet
492 triplet[MWIFIEX_MAX_TRIPLET_802_11D];
493};
494
495struct mwifiex_vendor_spec_cfg_ie {
496 u16 mask;
497 u16 flag;
498 u8 ie[MWIFIEX_MAX_VSIE_LEN];
499};
500
501struct wps {
502 u8 session_enable;
503};
504
7feb4c48
SP
505struct mwifiex_roc_cfg {
506 u64 cookie;
507 struct ieee80211_channel chan;
7feb4c48
SP
508};
509
92c2538f 510enum mwifiex_iface_work_flags {
fc697159 511 MWIFIEX_IFACE_WORK_DEVICE_DUMP,
8915d738 512 MWIFIEX_IFACE_WORK_CARD_RESET,
92c2538f
AK
513};
514
5e6e3a92
BZ
515struct mwifiex_private {
516 struct mwifiex_adapter *adapter;
5e6e3a92
BZ
517 u8 bss_type;
518 u8 bss_role;
519 u8 bss_priority;
520 u8 bss_num;
d6bffe8b 521 u8 bss_started;
5e6e3a92
BZ
522 u8 frame_type;
523 u8 curr_addr[ETH_ALEN];
524 u8 media_connected;
5c894633 525 u8 port_open;
2b0f997d 526 u8 usb_port;
5e6e3a92 527 u32 num_tx_timeout;
8908c7d5
AN
528 /* track consecutive timeout */
529 u8 tx_timeout_cnt;
5e6e3a92
BZ
530 struct net_device *netdev;
531 struct net_device_stats stats;
b82dd3bd 532 u32 curr_pkt_filter;
5e6e3a92
BZ
533 u32 bss_mode;
534 u32 pkt_tx_ctrl;
535 u16 tx_power_level;
536 u8 max_tx_power_level;
537 u8 min_tx_power_level;
3ee71285
SL
538 u32 tx_ant;
539 u32 rx_ant;
5e6e3a92
BZ
540 u8 tx_rate;
541 u8 tx_htinfo;
542 u8 rxpd_htinfo;
543 u8 rxpd_rate;
544 u16 rate_bitmap;
545 u16 bitmap_rates[MAX_BITMAP_RATES_SIZE];
546 u32 data_rate;
547 u8 is_data_rate_auto;
548 u16 bcn_avg_factor;
549 u16 data_avg_factor;
550 s16 data_rssi_last;
551 s16 data_nf_last;
552 s16 data_rssi_avg;
553 s16 data_nf_avg;
554 s16 bcn_rssi_last;
555 s16 bcn_nf_last;
556 s16 bcn_rssi_avg;
557 s16 bcn_nf_avg;
558 struct mwifiex_bssdescriptor *attempted_bss_desc;
b9be5f39 559 struct cfg80211_ssid prev_ssid;
5e6e3a92
BZ
560 u8 prev_bssid[ETH_ALEN];
561 struct mwifiex_current_bss_params curr_bss_params;
562 u16 beacon_period;
caf60a6c 563 u8 dtim_period;
5e6e3a92
BZ
564 u16 listen_interval;
565 u16 atim_window;
566 u8 adhoc_channel;
567 u8 adhoc_is_link_sensed;
568 u8 adhoc_state;
569 struct mwifiex_802_11_security sec_info;
570 struct mwifiex_wep_key wep_key[NUM_WEP_KEYS];
571 u16 wep_key_curr_index;
572 u8 wpa_ie[256];
1d8f5c13 573 u16 wpa_ie_len;
5e6e3a92
BZ
574 u8 wpa_is_gtk_set;
575 struct host_cmd_ds_802_11_key_material aes_key;
e57f1734 576 struct host_cmd_ds_802_11_key_material_v2 aes_key_v2;
5e6e3a92 577 u8 wapi_ie[256];
1d8f5c13 578 u16 wapi_ie_len;
13d7ba78 579 u8 *wps_ie;
1d8f5c13 580 u16 wps_ie_len;
5e6e3a92
BZ
581 u8 wmm_required;
582 u8 wmm_enabled;
583 u8 wmm_qosinfo;
584 struct mwifiex_wmm_desc wmm;
47411a06 585 atomic_t wmm_tx_pending[IEEE80211_NUM_ACS];
017a92a1 586 struct list_head sta_list;
9927baa3 587 /* spin lock for associated station/TDLS peers list */
017a92a1 588 spinlock_t sta_list_spinlock;
9927baa3
AP
589 struct list_head auto_tdls_list;
590 /* spin lock for auto TDLS peer list */
591 spinlock_t auto_tdls_lock;
5e6e3a92
BZ
592 struct list_head tx_ba_stream_tbl_ptr;
593 /* spin lock for tx_ba_stream_tbl_ptr queue */
594 spinlock_t tx_ba_stream_tbl_lock;
595 struct mwifiex_tx_aggr aggr_prio_tbl[MAX_NUM_TID];
596 struct mwifiex_add_ba_param add_ba_param;
597 u16 rx_seq[MAX_NUM_TID];
41a24a29 598 u8 tos_to_tid_inv[MAX_NUM_TID];
5e6e3a92
BZ
599 struct list_head rx_reorder_tbl_ptr;
600 /* spin lock for rx_reorder_tbl_ptr queue */
601 spinlock_t rx_reorder_tbl_lock;
602 /* spin lock for Rx packets */
603 spinlock_t rx_pkt_lock;
604
605#define MWIFIEX_ASSOC_RSP_BUF_SIZE 500
606 u8 assoc_rsp_buf[MWIFIEX_ASSOC_RSP_BUF_SIZE];
607 u32 assoc_rsp_size;
608
609#define MWIFIEX_GENIE_BUF_SIZE 256
610 u8 gen_ie_buf[MWIFIEX_GENIE_BUF_SIZE];
611 u8 gen_ie_buf_len;
612
613 struct mwifiex_vendor_spec_cfg_ie vs_ie[MWIFIEX_MAX_VSIE_NUM];
614
615#define MWIFIEX_ASSOC_TLV_BUF_SIZE 256
616 u8 assoc_tlv_buf[MWIFIEX_ASSOC_TLV_BUF_SIZE];
617 u8 assoc_tlv_buf_len;
618
619 u8 *curr_bcn_buf;
620 u32 curr_bcn_size;
621 /* spin lock for beacon buffer */
622 spinlock_t curr_bcn_buf_lock;
4facc34a 623 struct wireless_dev wdev;
5e6e3a92 624 struct mwifiex_chan_freq_power cfp;
17934b6a 625 u32 versionstrsel;
5e6e3a92
BZ
626 char version_str[128];
627#ifdef CONFIG_DEBUG_FS
628 struct dentry *dfs_dev_dir;
629#endif
5e6e3a92
BZ
630 u16 current_key_index;
631 struct semaphore async_sem;
5e6e3a92 632 struct cfg80211_scan_request *scan_request;
5e6e3a92 633 u8 cfg_bssid[6];
5e6e3a92
BZ
634 struct wps wps;
635 u8 scan_block;
fa444bf8
AK
636 s32 cqm_rssi_thold;
637 u32 cqm_rssi_hyst;
638 u8 subsc_evt_rssi_state;
908fe113 639 struct mwifiex_ds_misc_subsc_evt async_subsc_evt_storage;
ede98bfa 640 struct mwifiex_ie mgmt_ie[MAX_MGMT_IE_INDEX];
f31acabe
AP
641 u16 beacon_idx;
642 u16 proberesp_idx;
643 u16 assocresp_idx;
2ade5667 644 u16 gen_idx;
c8258913 645 u8 ap_11n_enabled;
a5f39056 646 u8 ap_11ac_enabled;
3cec6870 647 u32 mgmt_frame_mask;
7feb4c48 648 struct mwifiex_roc_cfg roc_cfg;
75ab753d 649 bool scan_aborting;
0c9b7f22 650 u8 sched_scanning;
b887664d
AK
651 u8 csa_chan;
652 unsigned long csa_expire_time;
61c87304 653 u8 del_list_idx;
587b36d3 654 bool hs2_enabled;
35c739b5 655 struct mwifiex_uap_bss_param bss_cfg;
7ee38bf4 656 struct cfg80211_chan_def bss_chandef;
1f4dfd8a 657 struct station_parameters *sta_params;
56bd24a1 658 struct sk_buff_head tdls_txq;
9927baa3
AP
659 u8 check_tdls_tx;
660 struct timer_list auto_tdls_timer;
661 bool auto_tdls_timer_active;
808bbebc
AK
662 struct idr ack_status_frames;
663 /* spin lock for ack status */
664 spinlock_t ack_status_lock;
cbf6e055
XH
665 /** rx histogram data */
666 struct mwifiex_histogram_data *hist_data;
85afb186
AP
667 struct cfg80211_chan_def dfs_chandef;
668 struct workqueue_struct *dfs_cac_workqueue;
669 struct delayed_work dfs_cac_work;
7d652034
AP
670 struct timer_list dfs_chan_switch_timer;
671 struct workqueue_struct *dfs_chan_sw_workqueue;
672 struct delayed_work dfs_chan_sw_work;
673 struct cfg80211_beacon_data beacon_after;
cf075eac 674 struct mwifiex_11h_intf_state state_11h;
c2c6c85f 675 struct mwifiex_ds_mem_rw mem_rw;
a1777327 676 struct sk_buff_head bypass_txq;
2375fa2b 677 struct mwifiex_user_scan_chan hidden_chan[MWIFIEX_USER_SCAN_CHAN_MAX];
44ca509c
NK
678 u8 assoc_resp_ht_param;
679 bool ht_param_present;
c2a8f0ff 680 u8 random_mac[ETH_ALEN];
5e6e3a92
BZ
681};
682
5e6e3a92
BZ
683
684struct mwifiex_tx_ba_stream_tbl {
685 struct list_head list;
686 int tid;
687 u8 ra[ETH_ALEN];
688 enum mwifiex_ba_status ba_status;
4c9f9fb2 689 u8 amsdu;
5e6e3a92
BZ
690};
691
692struct mwifiex_rx_reorder_tbl;
693
694struct reorder_tmr_cnxt {
695 struct timer_list timer;
696 struct mwifiex_rx_reorder_tbl *ptr;
697 struct mwifiex_private *priv;
3a8fede1 698 u8 timer_is_set;
5e6e3a92
BZ
699};
700
701struct mwifiex_rx_reorder_tbl {
702 struct list_head list;
703 int tid;
704 u8 ta[ETH_ALEN];
8acbea61 705 int init_win;
5e6e3a92
BZ
706 int start_win;
707 int win_size;
708 void **rx_reorder_ptr;
709 struct reorder_tmr_cnxt timer_context;
4c9f9fb2 710 u8 amsdu;
2db96c3d 711 u8 flags;
5e6e3a92
BZ
712};
713
714struct mwifiex_bss_prio_node {
715 struct list_head list;
716 struct mwifiex_private *priv;
717};
718
719struct mwifiex_bss_prio_tbl {
720 struct list_head bss_prio_head;
721 /* spin lock for bss priority */
722 spinlock_t bss_prio_lock;
723 struct mwifiex_bss_prio_node *bss_prio_cur;
724};
725
726struct cmd_ctrl_node {
727 struct list_head list;
728 struct mwifiex_private *priv;
729 u32 cmd_oid;
730 u32 cmd_flag;
731 struct sk_buff *cmd_skb;
732 struct sk_buff *resp_skb;
733 void *data_buf;
600f5d90 734 u32 wait_q_enabled;
5e6e3a92 735 struct sk_buff *skb;
efaaa8b8
AK
736 u8 *condition;
737 u8 cmd_wait_q_woken;
5e6e3a92
BZ
738};
739
b5abcf02
AK
740struct mwifiex_bss_priv {
741 u8 band;
742 u64 fw_tsf;
743};
744
5f2caaf3
AP
745struct mwifiex_tdls_capab {
746 __le16 capab;
747 u8 rates[32];
748 u8 rates_len;
749 u8 qos_info;
750 u8 coex_2040;
5f6d5983 751 u16 aid;
5f2caaf3
AP
752 struct ieee80211_ht_cap ht_capb;
753 struct ieee80211_ht_operation ht_oper;
754 struct ieee_types_extcap extcap;
755 struct ieee_types_generic rsn_ie;
5f6d5983
AP
756 struct ieee80211_vht_cap vhtcap;
757 struct ieee80211_vht_operation vhtoper;
5f2caaf3
AP
758};
759
442f6f9b
XH
760struct mwifiex_station_stats {
761 u64 last_rx;
762 s8 rssi;
763 u64 rx_bytes;
764 u64 tx_bytes;
765 u32 rx_packets;
766 u32 tx_packets;
767 u32 tx_failed;
768 u8 last_tx_rate;
769 u8 last_tx_htinfo;
770};
771
5f2caaf3
AP
772/* This is AP/TDLS specific structure which stores information
773 * about associated/peer STA
017a92a1
AP
774 */
775struct mwifiex_sta_node {
776 struct list_head list;
777 u8 mac_addr[ETH_ALEN];
778 u8 is_wmm_enabled;
779 u8 is_11n_enabled;
5f6d5983 780 u8 is_11ac_enabled;
017a92a1
AP
781 u8 ampdu_sta[MAX_NUM_TID];
782 u16 rx_seq[MAX_NUM_TID];
783 u16 max_amsdu;
429d90d2 784 u8 tdls_status;
5f2caaf3 785 struct mwifiex_tdls_capab tdls_cap;
442f6f9b 786 struct mwifiex_station_stats stats;
4e6ee91b 787 u8 tx_pause;
017a92a1
AP
788};
789
9927baa3
AP
790struct mwifiex_auto_tdls_peer {
791 struct list_head list;
792 u8 mac_addr[ETH_ALEN];
793 u8 tdls_status;
794 int rssi;
795 long rssi_jiffies;
796 u8 failure_count;
797 u8 do_discover;
798 u8 do_setup;
799};
800
5e6e3a92
BZ
801struct mwifiex_if_ops {
802 int (*init_if) (struct mwifiex_adapter *);
803 void (*cleanup_if) (struct mwifiex_adapter *);
d930faee 804 int (*check_fw_status) (struct mwifiex_adapter *, u32);
2fd5c6ed 805 int (*check_winner_status)(struct mwifiex_adapter *);
5e6e3a92
BZ
806 int (*prog_fw) (struct mwifiex_adapter *, struct mwifiex_fw_image *);
807 int (*register_dev) (struct mwifiex_adapter *);
808 void (*unregister_dev) (struct mwifiex_adapter *);
809 int (*enable_int) (struct mwifiex_adapter *);
232fde06 810 void (*disable_int) (struct mwifiex_adapter *);
5e6e3a92 811 int (*process_int_status) (struct mwifiex_adapter *);
d930faee 812 int (*host_to_card) (struct mwifiex_adapter *, u8, struct sk_buff *,
5e6e3a92
BZ
813 struct mwifiex_tx_param *);
814 int (*wakeup) (struct mwifiex_adapter *);
815 int (*wakeup_complete) (struct mwifiex_adapter *);
816
d930faee 817 /* Interface specific functions */
5e6e3a92
BZ
818 void (*update_mp_end_port) (struct mwifiex_adapter *, u16);
819 void (*cleanup_mpa_buf) (struct mwifiex_adapter *);
d930faee
AK
820 int (*cmdrsp_complete) (struct mwifiex_adapter *, struct sk_buff *);
821 int (*event_complete) (struct mwifiex_adapter *, struct sk_buff *);
c6d1d87a 822 int (*init_fw_port) (struct mwifiex_adapter *);
4daffe35 823 int (*dnld_fw) (struct mwifiex_adapter *, struct mwifiex_fw_image *);
d31ab357 824 void (*card_reset) (struct mwifiex_adapter *);
809c6ea8 825 int (*reg_dump)(struct mwifiex_adapter *, char *);
fc697159 826 void (*device_dump)(struct mwifiex_adapter *);
fbd7e7ac 827 int (*clean_pcie_ring) (struct mwifiex_adapter *adapter);
92c2538f 828 void (*iface_work)(struct work_struct *work);
cf6a64fd 829 void (*submit_rem_rx_urbs)(struct mwifiex_adapter *adapter);
92263a84 830 void (*deaggr_pkt)(struct mwifiex_adapter *, struct sk_buff *);
7e4e5d2c 831 void (*multi_port_resync)(struct mwifiex_adapter *);
735ab6bf 832 bool (*is_port_ready)(struct mwifiex_private *);
4c5dae59
AK
833 void (*down_dev)(struct mwifiex_adapter *);
834 void (*up_dev)(struct mwifiex_adapter *);
5e6e3a92
BZ
835};
836
837struct mwifiex_adapter {
d930faee 838 u8 iface_type;
c687a007 839 unsigned int debug_mask;
cf052335
AP
840 struct mwifiex_iface_comb iface_limit;
841 struct mwifiex_iface_comb curr_iface_comb;
5e6e3a92
BZ
842 struct mwifiex_private *priv[MWIFIEX_MAX_BSS_NUM];
843 u8 priv_num;
5e6e3a92 844 const struct firmware *firmware;
4a7f5db1 845 char fw_name[32];
d930faee 846 int winner;
5e6e3a92 847 struct device *dev;
d6bffe8b 848 struct wiphy *wiphy;
8d05eb22 849 u8 perm_addr[ETH_ALEN];
5e6e3a92
BZ
850 bool surprise_removed;
851 u32 fw_release_number;
5e6e3a92
BZ
852 u16 init_wait_q_woken;
853 wait_queue_head_t init_wait_q;
854 void *card;
855 struct mwifiex_if_ops if_ops;
a1777327 856 atomic_t bypass_tx_pending;
5e6e3a92
BZ
857 atomic_t rx_pending;
858 atomic_t tx_pending;
600f5d90 859 atomic_t cmd_pending;
eb2428fb 860 atomic_t tx_hw_pending;
5e6e3a92
BZ
861 struct workqueue_struct *workqueue;
862 struct work_struct main_work;
6e251174
AP
863 struct workqueue_struct *rx_workqueue;
864 struct work_struct rx_work;
85afb186
AP
865 struct workqueue_struct *dfs_workqueue;
866 struct work_struct dfs_work;
6e251174
AP
867 bool rx_work_enabled;
868 bool rx_processing;
869 bool delay_main_work;
870 bool rx_locked;
a9adbcb3 871 bool main_locked;
5e6e3a92
BZ
872 struct mwifiex_bss_prio_tbl bss_prio_tbl[MWIFIEX_MAX_BSS_NUM];
873 /* spin lock for init/shutdown */
874 spinlock_t mwifiex_lock;
875 /* spin lock for main process */
876 spinlock_t main_proc_lock;
877 u32 mwifiex_processing;
04c7b363 878 u8 more_task_flag;
5e6e3a92
BZ
879 u16 tx_buf_size;
880 u16 curr_tx_buf_size;
9a9053c3
XH
881 /* sdio single port rx aggregation capability */
882 bool host_disable_sdio_rx_aggr;
92263a84
ZL
883 bool sdio_rx_aggr_enable;
884 u16 sdio_rx_block_size;
5e6e3a92
BZ
885 u32 ioport;
886 enum MWIFIEX_HARDWARE_STATUS hw_status;
5e6e3a92
BZ
887 u16 number_of_antenna;
888 u32 fw_cap_info;
889 /* spin lock for interrupt handling */
890 spinlock_t int_lock;
891 u8 int_status;
892 u32 event_cause;
893 struct sk_buff *event_skb;
894 u8 upld_buf[MWIFIEX_UPLD_SIZE];
895 u8 data_sent;
896 u8 cmd_sent;
897 u8 cmd_resp_received;
898 u8 event_received;
899 u8 data_received;
900 u16 seq_num;
901 struct cmd_ctrl_node *cmd_pool;
902 struct cmd_ctrl_node *curr_cmd;
903 /* spin lock for command */
904 spinlock_t mwifiex_cmd_lock;
0c9c4a09 905 u8 is_cmd_timedout;
5e6e3a92
BZ
906 u16 last_init_cmd;
907 struct timer_list cmd_timer;
908 struct list_head cmd_free_q;
909 /* spin lock for cmd_free_q */
910 spinlock_t cmd_free_q_lock;
911 struct list_head cmd_pending_q;
912 /* spin lock for cmd_pending_q */
913 spinlock_t cmd_pending_q_lock;
914 struct list_head scan_pending_q;
915 /* spin lock for scan_pending_q */
916 spinlock_t scan_pending_q_lock;
6e251174
AP
917 /* spin lock for RX processing routine */
918 spinlock_t rx_proc_lock;
e35000ea
ZL
919 struct sk_buff_head tx_data_q;
920 atomic_t tx_queued;
5e6e3a92
BZ
921 u32 scan_processing;
922 u16 region_code;
923 struct mwifiex_802_11d_domain_reg domain_reg;
5e6e3a92
BZ
924 u16 scan_probes;
925 u32 scan_mode;
926 u16 specific_scan_time;
927 u16 active_scan_time;
928 u16 passive_scan_time;
cb91be87 929 u16 scan_chan_gap_time;
5e6e3a92
BZ
930 u8 fw_bands;
931 u8 adhoc_start_band;
932 u8 config_bands;
933 struct mwifiex_chan_scan_param_set *scan_channels;
934 u8 tx_lock_flag;
935 struct mwifiex_sleep_params sleep_params;
936 struct mwifiex_sleep_period sleep_period;
937 u16 ps_mode;
938 u32 ps_state;
939 u8 need_to_wakeup;
940 u16 multiple_dtim;
941 u16 local_listen_interval;
942 u16 null_pkt_interval;
943 struct sk_buff *sleep_cfm;
944 u16 bcn_miss_time_out;
945 u16 adhoc_awake_period;
946 u8 is_deep_sleep;
947 u8 delay_null_pkt;
948 u16 delay_to_ps;
949 u16 enhanced_ps_mode;
950 u8 pm_wakeup_card_req;
951 u16 gen_null_pkt;
952 u16 pps_uapsd_mode;
953 u32 pm_wakeup_fw_try;
4636187d 954 struct timer_list wakeup_timer;
5e6e3a92
BZ
955 u8 is_hs_configured;
956 struct mwifiex_hs_config_param hs_cfg;
957 u8 hs_activated;
958 u16 hs_activate_wait_q_woken;
959 wait_queue_head_t hs_activate_wait_q;
960 bool is_suspended;
c0dbba66 961 bool hs_enabling;
5e6e3a92
BZ
962 u8 event_body[MAX_EVENT_SIZE];
963 u32 hw_dot_11n_dev_cap;
964 u8 hw_dev_mcs_support;
a5333914 965 u8 user_dev_mcs_support;
5e6e3a92 966 u8 adhoc_11n_enabled;
21c3ba34 967 u8 sec_chan_offset;
5e6e3a92
BZ
968 struct mwifiex_dbg dbg;
969 u8 arp_filter[ARP_FILTER_MAX_BUF_SIZE];
970 u32 arp_filter_size;
600f5d90 971 struct mwifiex_wait_queue cmd_wait_q;
efaaa8b8 972 u8 scan_wait_q_woken;
bbea3bc4 973 spinlock_t queue_lock; /* lock for tx queues */
67fdf39e 974 u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
ede98bfa 975 u16 max_mgmt_ie_index;
388ec385 976 const struct firmware *cal_data;
699b027b 977 struct device_node *dt_node;
a5f39056
YAP
978
979 /* 11AC */
980 u32 is_hw_11ac_capable;
981 u32 hw_dot_11ac_dev_cap;
982 u32 hw_dot_11ac_mcs_support;
983 u32 usr_dot_11ac_dev_cap_bg;
984 u32 usr_dot_11ac_dev_cap_a;
985 u32 usr_dot_11ac_mcs_support;
986
838e4f44 987 atomic_t pending_bridged_pkts;
4a79aa17
BN
988
989 /* For synchronizing FW initialization with device lifecycle. */
990 struct completion *fw_done;
991
21f58d20 992 bool ext_scan;
8e17ea25 993 u8 fw_api_ver;
4b9fede5 994 u8 key_api_major_ver, key_api_minor_ver;
92c2538f
AK
995 struct memory_type_mapping *mem_type_mapping_tbl;
996 u8 num_mem_types;
cb91be87 997 bool scan_chan_gap_enabled;
6e251174 998 struct sk_buff_head rx_data_q;
cf5383b0 999 bool mfg_mode;
bf354433
AP
1000 struct mwifiex_chan_stats *chan_stats;
1001 u32 num_in_chan_stats;
1002 int survey_idx;
9927baa3 1003 bool auto_tdls;
d219b7eb
CC
1004 u8 coex_scan;
1005 u8 coex_min_scan_time;
1006 u8 coex_max_scan_time;
1007 u8 coex_win_size;
1008 u8 coex_tx_win_size;
1009 u8 coex_rx_win_size;
de9e9932 1010 bool drcs_enabled;
2375fa2b 1011 u8 active_scan_triggered;
2b0f997d 1012 bool usb_mc_status;
7e4e5d2c 1013 bool usb_mc_setup;
7d7f07d8 1014 struct cfg80211_wowlan_nd_info *nd_info;
72539799 1015 struct ieee80211_regdomain *regd;
853402a0
RJ
1016
1017 /* Wake-on-WLAN (WoWLAN) */
1018 int irq_wakeup;
1019 bool wake_by_wifi;
5e6e3a92
BZ
1020};
1021
e35000ea
ZL
1022void mwifiex_process_tx_queue(struct mwifiex_adapter *adapter);
1023
5e6e3a92 1024int mwifiex_init_lock_list(struct mwifiex_adapter *adapter);
5e6e3a92 1025
bbea3bc4
AP
1026void mwifiex_set_trans_start(struct net_device *dev);
1027
1028void mwifiex_stop_net_dev_queue(struct net_device *netdev,
1029 struct mwifiex_adapter *adapter);
1030
1031void mwifiex_wake_up_net_dev_queue(struct net_device *netdev,
1032 struct mwifiex_adapter *adapter);
1033
9197ab9e
SP
1034int mwifiex_init_priv(struct mwifiex_private *priv);
1035void mwifiex_free_priv(struct mwifiex_private *priv);
1036
5e6e3a92
BZ
1037int mwifiex_init_fw(struct mwifiex_adapter *adapter);
1038
1039int mwifiex_init_fw_complete(struct mwifiex_adapter *adapter);
1040
5bf15e3f 1041void mwifiex_shutdown_drv(struct mwifiex_adapter *adapter);
5e6e3a92
BZ
1042
1043int mwifiex_dnld_fw(struct mwifiex_adapter *, struct mwifiex_fw_image *);
1044
f3b369e4 1045int mwifiex_recv_packet(struct mwifiex_private *priv, struct sk_buff *skb);
bf00dc22
XH
1046int mwifiex_uap_recv_packet(struct mwifiex_private *priv,
1047 struct sk_buff *skb);
5e6e3a92 1048
f3b369e4 1049int mwifiex_process_mgmt_packet(struct mwifiex_private *priv,
2dbaf751
SP
1050 struct sk_buff *skb);
1051
5e6e3a92
BZ
1052int mwifiex_process_event(struct mwifiex_adapter *adapter);
1053
efaaa8b8
AK
1054int mwifiex_complete_cmd(struct mwifiex_adapter *adapter,
1055 struct cmd_ctrl_node *cmd_node);
5e6e3a92 1056
fa0ecbb9
BZ
1057int mwifiex_send_cmd(struct mwifiex_private *priv, u16 cmd_no,
1058 u16 cmd_action, u32 cmd_oid, void *data_buf, bool sync);
5e6e3a92
BZ
1059
1060void mwifiex_cmd_timeout_func(unsigned long function_context);
1061
5e6e3a92
BZ
1062int mwifiex_get_debug_info(struct mwifiex_private *,
1063 struct mwifiex_debug_info *);
1064
1065int mwifiex_alloc_cmd_buffer(struct mwifiex_adapter *adapter);
1066int mwifiex_free_cmd_buffer(struct mwifiex_adapter *adapter);
1067void mwifiex_cancel_all_pending_cmd(struct mwifiex_adapter *adapter);
600f5d90 1068void mwifiex_cancel_pending_ioctl(struct mwifiex_adapter *adapter);
c70ca8cb 1069void mwifiex_cancel_pending_scan_cmd(struct mwifiex_adapter *adapter);
a9c790ba 1070void mwifiex_cancel_scan(struct mwifiex_adapter *adapter);
5e6e3a92 1071
9908b074
BZ
1072void mwifiex_recycle_cmd_node(struct mwifiex_adapter *adapter,
1073 struct cmd_ctrl_node *cmd_node);
5e6e3a92
BZ
1074
1075void mwifiex_insert_cmd_to_pending_q(struct mwifiex_adapter *adapter,
1076 struct cmd_ctrl_node *cmd_node,
1077 u32 addtail);
1078
1079int mwifiex_exec_next_cmd(struct mwifiex_adapter *adapter);
1080int mwifiex_process_cmdresp(struct mwifiex_adapter *adapter);
1081int mwifiex_handle_rx_packet(struct mwifiex_adapter *adapter,
1082 struct sk_buff *skb);
1083int mwifiex_process_tx(struct mwifiex_private *priv, struct sk_buff *skb,
1084 struct mwifiex_tx_param *tx_param);
1085int mwifiex_send_null_packet(struct mwifiex_private *priv, u8 flags);
1086int mwifiex_write_data_complete(struct mwifiex_adapter *adapter,
47411a06 1087 struct sk_buff *skb, int aggr, int status);
5e6e3a92
BZ
1088void mwifiex_clean_txrx(struct mwifiex_private *priv);
1089u8 mwifiex_check_last_packet_indication(struct mwifiex_private *priv);
1090void mwifiex_check_ps_cond(struct mwifiex_adapter *adapter);
1091void mwifiex_process_sleep_confirm_resp(struct mwifiex_adapter *, u8 *,
1092 u32);
1093int mwifiex_cmd_enh_power_mode(struct mwifiex_private *priv,
1094 struct host_cmd_ds_command *cmd,
1095 u16 cmd_action, uint16_t ps_bitmap,
a5ffddb7 1096 struct mwifiex_ds_auto_ds *auto_ds);
5e6e3a92
BZ
1097int mwifiex_ret_enh_power_mode(struct mwifiex_private *priv,
1098 struct host_cmd_ds_command *resp,
a5ffddb7 1099 struct mwifiex_ds_pm_cfg *pm_cfg);
5e6e3a92
BZ
1100void mwifiex_process_hs_config(struct mwifiex_adapter *adapter);
1101void mwifiex_hs_activated_event(struct mwifiex_private *priv,
1102 u8 activated);
937a5045
XH
1103int mwifiex_set_hs_params(struct mwifiex_private *priv, u16 action,
1104 int cmd_type, struct mwifiex_ds_hs_cfg *hs_cfg);
5e6e3a92
BZ
1105int mwifiex_ret_802_11_hs_cfg(struct mwifiex_private *priv,
1106 struct host_cmd_ds_command *resp);
f3b369e4 1107int mwifiex_process_rx_packet(struct mwifiex_private *priv,
5e6e3a92
BZ
1108 struct sk_buff *skb);
1109int mwifiex_sta_prepare_cmd(struct mwifiex_private *, uint16_t cmd_no,
1110 u16 cmd_action, u32 cmd_oid,
1111 void *data_buf, void *cmd_buf);
40d07030
AP
1112int mwifiex_uap_prepare_cmd(struct mwifiex_private *priv, uint16_t cmd_no,
1113 u16 cmd_action, u32 cmd_oid,
1114 void *data_buf, void *cmd_buf);
5e6e3a92 1115int mwifiex_process_sta_cmdresp(struct mwifiex_private *, u16 cmdresp_no,
a5ffddb7 1116 struct host_cmd_ds_command *resp);
f3b369e4 1117int mwifiex_process_sta_rx_packet(struct mwifiex_private *,
5e6e3a92 1118 struct sk_buff *skb);
f3b369e4 1119int mwifiex_process_uap_rx_packet(struct mwifiex_private *priv,
838e4f44
AP
1120 struct sk_buff *skb);
1121int mwifiex_handle_uap_rx_forward(struct mwifiex_private *priv,
1122 struct sk_buff *skb);
5e6e3a92 1123int mwifiex_process_sta_event(struct mwifiex_private *);
3d99d987 1124int mwifiex_process_uap_event(struct mwifiex_private *);
017a92a1 1125void mwifiex_delete_all_station_list(struct mwifiex_private *priv);
9817fffb
AP
1126void mwifiex_wmm_del_peer_ra_list(struct mwifiex_private *priv,
1127 const u8 *ra_addr);
5e6e3a92 1128void *mwifiex_process_sta_txpd(struct mwifiex_private *, struct sk_buff *skb);
4ac8764a 1129void *mwifiex_process_uap_txpd(struct mwifiex_private *, struct sk_buff *skb);
1247cc1f 1130int mwifiex_sta_init_cmd(struct mwifiex_private *, u8 first_sta, bool init);
572e8f3e 1131int mwifiex_cmd_802_11_scan(struct host_cmd_ds_command *cmd,
a5ffddb7 1132 struct mwifiex_scan_cmd_config *scan_cfg);
5e6e3a92
BZ
1133void mwifiex_queue_scan_cmd(struct mwifiex_private *priv,
1134 struct cmd_ctrl_node *cmd_node);
1135int mwifiex_ret_802_11_scan(struct mwifiex_private *priv,
600f5d90 1136 struct host_cmd_ds_command *resp);
b9be5f39 1137s32 mwifiex_ssid_cmp(struct cfg80211_ssid *ssid1, struct cfg80211_ssid *ssid2);
600f5d90 1138int mwifiex_associate(struct mwifiex_private *priv,
5e6e3a92
BZ
1139 struct mwifiex_bssdescriptor *bss_desc);
1140int mwifiex_cmd_802_11_associate(struct mwifiex_private *priv,
a5ffddb7
AK
1141 struct host_cmd_ds_command *cmd,
1142 struct mwifiex_bssdescriptor *bss_desc);
5e6e3a92 1143int mwifiex_ret_802_11_associate(struct mwifiex_private *priv,
600f5d90 1144 struct host_cmd_ds_command *resp);
c62d50a4
AK
1145void mwifiex_reset_connect_state(struct mwifiex_private *priv, u16 reason,
1146 bool from_ap);
5e6e3a92 1147u8 mwifiex_band_to_radio_type(u8 band);
600f5d90 1148int mwifiex_deauthenticate(struct mwifiex_private *priv, u8 *mac);
848819f4 1149void mwifiex_deauthenticate_all(struct mwifiex_adapter *adapter);
600f5d90 1150int mwifiex_adhoc_start(struct mwifiex_private *priv,
b9be5f39 1151 struct cfg80211_ssid *adhoc_ssid);
600f5d90 1152int mwifiex_adhoc_join(struct mwifiex_private *priv,
5e6e3a92
BZ
1153 struct mwifiex_bssdescriptor *bss_desc);
1154int mwifiex_cmd_802_11_ad_hoc_start(struct mwifiex_private *priv,
1155 struct host_cmd_ds_command *cmd,
b9be5f39 1156 struct cfg80211_ssid *req_ssid);
5e6e3a92
BZ
1157int mwifiex_cmd_802_11_ad_hoc_join(struct mwifiex_private *priv,
1158 struct host_cmd_ds_command *cmd,
a5ffddb7 1159 struct mwifiex_bssdescriptor *bss_desc);
5e6e3a92 1160int mwifiex_ret_802_11_ad_hoc(struct mwifiex_private *priv,
600f5d90 1161 struct host_cmd_ds_command *resp);
572e8f3e 1162int mwifiex_cmd_802_11_bg_scan_query(struct host_cmd_ds_command *cmd);
6685d109
YAP
1163struct mwifiex_chan_freq_power *mwifiex_get_cfp(struct mwifiex_private *priv,
1164 u8 band, u16 channel, u32 freq);
a5f39056
YAP
1165u32 mwifiex_index_to_data_rate(struct mwifiex_private *priv,
1166 u8 index, u8 ht_info);
1167u32 mwifiex_index_to_acs_data_rate(struct mwifiex_private *priv,
1168 u8 index, u8 ht_info);
5e6e3a92
BZ
1169u32 mwifiex_find_freq_from_band_chan(u8, u8);
1170int mwifiex_cmd_append_vsie_tlv(struct mwifiex_private *priv, u16 vsie_mask,
1171 u8 **buffer);
5e6e3a92
BZ
1172u32 mwifiex_get_active_data_rates(struct mwifiex_private *priv,
1173 u8 *rates);
1174u32 mwifiex_get_supported_rates(struct mwifiex_private *priv, u8 *rates);
78dfca62
AP
1175u32 mwifiex_get_rates_from_cfg80211(struct mwifiex_private *priv,
1176 u8 *rates, u8 radio_type);
5e6e3a92 1177u8 mwifiex_is_rate_auto(struct mwifiex_private *priv);
5e6e3a92
BZ
1178extern u16 region_code_index[MWIFIEX_MAX_REGION_CODE];
1179void mwifiex_save_curr_bcn(struct mwifiex_private *priv);
1180void mwifiex_free_curr_bcn(struct mwifiex_private *priv);
1181int mwifiex_cmd_get_hw_spec(struct mwifiex_private *priv,
1182 struct host_cmd_ds_command *cmd);
1183int mwifiex_ret_get_hw_spec(struct mwifiex_private *priv,
1184 struct host_cmd_ds_command *resp);
1185int is_command_pending(struct mwifiex_adapter *adapter);
93a1df48
YAP
1186void mwifiex_init_priv_params(struct mwifiex_private *priv,
1187 struct net_device *dev);
f752dcd5
AP
1188int mwifiex_set_secure_params(struct mwifiex_private *priv,
1189 struct mwifiex_uap_bss_param *bss_config,
1190 struct cfg80211_ap_settings *params);
22281256
AP
1191void mwifiex_set_ht_params(struct mwifiex_private *priv,
1192 struct mwifiex_uap_bss_param *bss_cfg,
1193 struct cfg80211_ap_settings *params);
83c78da9
YAP
1194void mwifiex_set_vht_params(struct mwifiex_private *priv,
1195 struct mwifiex_uap_bss_param *bss_cfg,
1196 struct cfg80211_ap_settings *params);
8a73dd63
AP
1197void mwifiex_set_tpc_params(struct mwifiex_private *priv,
1198 struct mwifiex_uap_bss_param *bss_cfg,
1199 struct cfg80211_ap_settings *params);
a3c2c4f6
AP
1200void mwifiex_set_uap_rates(struct mwifiex_uap_bss_param *bss_cfg,
1201 struct cfg80211_ap_settings *params);
83c78da9
YAP
1202void mwifiex_set_vht_width(struct mwifiex_private *priv,
1203 enum nl80211_chan_width width,
1204 bool ap_11ac_disable);
54428c57
AP
1205void
1206mwifiex_set_wmm_params(struct mwifiex_private *priv,
1207 struct mwifiex_uap_bss_param *bss_cfg,
1208 struct cfg80211_ap_settings *params);
04abc0a3 1209void mwifiex_set_ba_params(struct mwifiex_private *priv);
d219b7eb
CC
1210
1211void mwifiex_update_ampdu_txwinsize(struct mwifiex_adapter *pmadapter);
1212void mwifiex_bt_coex_wlan_param_update_event(struct mwifiex_private *priv,
1213 struct sk_buff *event_skb);
1214
2b6254da 1215void mwifiex_set_11ac_ba_params(struct mwifiex_private *priv);
21f58d20
AK
1216int mwifiex_cmd_802_11_scan_ext(struct mwifiex_private *priv,
1217 struct host_cmd_ds_command *cmd,
1218 void *data_buf);
bf354433
AP
1219int mwifiex_ret_802_11_scan_ext(struct mwifiex_private *priv,
1220 struct host_cmd_ds_command *resp);
21f58d20
AK
1221int mwifiex_handle_event_ext_scan_report(struct mwifiex_private *priv,
1222 void *buf);
0c9b7f22
XH
1223int mwifiex_cmd_802_11_bg_scan_config(struct mwifiex_private *priv,
1224 struct host_cmd_ds_command *cmd,
1225 void *data_buf);
1226int mwifiex_stop_bg_scan(struct mwifiex_private *priv);
5e6e3a92
BZ
1227
1228/*
1229 * This function checks if the queuing is RA based or not.
1230 */
1231static inline u8
1232mwifiex_queuing_ra_based(struct mwifiex_private *priv)
1233{
1234 /*
1235 * Currently we assume if we are in Infra, then DA=RA. This might not be
1236 * true in the future
1237 */
eecd8250 1238 if ((priv->bss_mode == NL80211_IFTYPE_STATION) &&
5e6e3a92
BZ
1239 (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA))
1240 return false;
1241
1242 return true;
1243}
1244
1245/*
1246 * This function copies rates.
1247 */
1248static inline u32
1249mwifiex_copy_rates(u8 *dest, u32 pos, u8 *src, int len)
1250{
1251 int i;
1252
1253 for (i = 0; i < len && src[i]; i++, pos++) {
1254 if (pos >= MWIFIEX_SUPPORTED_RATES)
1255 break;
1256 dest[pos] = src[i];
1257 }
1258
1259 return pos;
1260}
1261
1262/*
1263 * This function returns the correct private structure pointer based
1264 * upon the BSS type and BSS number.
1265 */
1266static inline struct mwifiex_private *
1267mwifiex_get_priv_by_id(struct mwifiex_adapter *adapter,
2be7859f 1268 u8 bss_num, u8 bss_type)
5e6e3a92
BZ
1269{
1270 int i;
1271
1272 for (i = 0; i < adapter->priv_num; i++) {
1273 if (adapter->priv[i]) {
f57c1edc
YAP
1274 if ((adapter->priv[i]->bss_num == bss_num) &&
1275 (adapter->priv[i]->bss_type == bss_type))
5e6e3a92
BZ
1276 break;
1277 }
1278 }
1279 return ((i < adapter->priv_num) ? adapter->priv[i] : NULL);
1280}
1281
1282/*
1283 * This function returns the first available private structure pointer
1284 * based upon the BSS role.
1285 */
1286static inline struct mwifiex_private *
1287mwifiex_get_priv(struct mwifiex_adapter *adapter,
1288 enum mwifiex_bss_role bss_role)
1289{
1290 int i;
1291
1292 for (i = 0; i < adapter->priv_num; i++) {
1293 if (adapter->priv[i]) {
1294 if (bss_role == MWIFIEX_BSS_ROLE_ANY ||
1295 GET_BSS_ROLE(adapter->priv[i]) == bss_role)
1296 break;
1297 }
1298 }
1299
1300 return ((i < adapter->priv_num) ? adapter->priv[i] : NULL);
1301}
1302
5b13d3e1
SL
1303/*
1304 * This function checks available bss_num when adding new interface or
1305 * changing interface type.
1306 */
1307static inline u8
1308mwifiex_get_unused_bss_num(struct mwifiex_adapter *adapter, u8 bss_type)
1309{
1310 u8 i, j;
1311 int index[MWIFIEX_MAX_BSS_NUM];
1312
1313 memset(index, 0, sizeof(index));
1314 for (i = 0; i < adapter->priv_num; i++)
1315 if (adapter->priv[i]) {
1316 if (adapter->priv[i]->bss_type == bss_type &&
1317 !(adapter->priv[i]->bss_mode ==
1318 NL80211_IFTYPE_UNSPECIFIED)) {
1319 index[adapter->priv[i]->bss_num] = 1;
1320 }
1321 }
1322 for (j = 0; j < MWIFIEX_MAX_BSS_NUM; j++)
1323 if (!index[j])
1324 return j;
1325 return -1;
1326}
1327
cf052335
AP
1328/*
1329 * This function returns the first available unused private structure pointer.
1330 */
1331static inline struct mwifiex_private *
5b13d3e1
SL
1332mwifiex_get_unused_priv_by_bss_type(struct mwifiex_adapter *adapter,
1333 u8 bss_type)
cf052335 1334{
5b13d3e1 1335 u8 i;
cf052335 1336
5b13d3e1
SL
1337 for (i = 0; i < adapter->priv_num; i++)
1338 if (adapter->priv[i]->bss_mode ==
1339 NL80211_IFTYPE_UNSPECIFIED) {
1340 adapter->priv[i]->bss_num =
1341 mwifiex_get_unused_bss_num(adapter, bss_type);
1342 break;
cf052335 1343 }
cf052335
AP
1344
1345 return ((i < adapter->priv_num) ? adapter->priv[i] : NULL);
1346}
1347
5e6e3a92
BZ
1348/*
1349 * This function returns the driver private structure of a network device.
1350 */
1351static inline struct mwifiex_private *
1352mwifiex_netdev_get_priv(struct net_device *dev)
1353{
1354 return (struct mwifiex_private *) (*(unsigned long *) netdev_priv(dev));
1355}
1356
e39faa73
SP
1357/*
1358 * This function checks if a skb holds a management frame.
1359 */
1360static inline bool mwifiex_is_skb_mgmt_frame(struct sk_buff *skb)
1361{
cfcd926e 1362 return (le32_to_cpu(*(__le32 *)skb->data) == PKT_TYPE_MGMT);
e39faa73
SP
1363}
1364
b887664d
AK
1365/* This function retrieves channel closed for operation by Channel
1366 * Switch Announcement.
1367 */
1368static inline u8
1369mwifiex_11h_get_csa_closed_channel(struct mwifiex_private *priv)
1370{
1371 if (!priv->csa_chan)
1372 return 0;
1373
1374 /* Clear csa channel, if DFS channel move time has passed */
55fdb858 1375 if (time_after(jiffies, priv->csa_expire_time)) {
b887664d
AK
1376 priv->csa_chan = 0;
1377 priv->csa_expire_time = 0;
1378 }
1379
1380 return priv->csa_chan;
1381}
1382
cb91be87
AP
1383static inline u8 mwifiex_is_any_intf_active(struct mwifiex_private *priv)
1384{
1385 struct mwifiex_private *priv_num;
1386 int i;
1387
1388 for (i = 0; i < priv->adapter->priv_num; i++) {
1389 priv_num = priv->adapter->priv[i];
1390 if (priv_num) {
1391 if ((GET_BSS_ROLE(priv_num) == MWIFIEX_BSS_ROLE_UAP &&
1392 priv_num->bss_started) ||
1393 (GET_BSS_ROLE(priv_num) == MWIFIEX_BSS_ROLE_STA &&
1394 priv_num->media_connected))
1395 return 1;
1396 }
1397 }
1398
1399 return 0;
1400}
1401
55a2c077
XH
1402static inline u8 mwifiex_is_tdls_link_setup(u8 status)
1403{
1404 switch (status) {
1405 case TDLS_SETUP_COMPLETE:
1406 case TDLS_CHAN_SWITCHING:
1407 case TDLS_IN_BASE_CHAN:
1408 case TDLS_IN_OFF_CHAN:
1409 return true;
1410 default:
1411 break;
1412 }
1413
1414 return false;
1415}
1416
853402a0
RJ
1417/* Disable platform specific wakeup interrupt */
1418static inline void mwifiex_disable_wake(struct mwifiex_adapter *adapter)
1419{
1420 if (adapter->irq_wakeup >= 0) {
1421 disable_irq_wake(adapter->irq_wakeup);
b9da4d22
BN
1422 disable_irq(adapter->irq_wakeup);
1423 if (adapter->wake_by_wifi)
1424 /* Undo our disable, since interrupt handler already
1425 * did this.
1426 */
1427 enable_irq(adapter->irq_wakeup);
1428
853402a0
RJ
1429 }
1430}
1431
1432/* Enable platform specific wakeup interrupt */
1433static inline void mwifiex_enable_wake(struct mwifiex_adapter *adapter)
1434{
1435 /* Enable platform specific wakeup interrupt */
1436 if (adapter->irq_wakeup >= 0) {
1437 adapter->wake_by_wifi = false;
1438 enable_irq(adapter->irq_wakeup);
1439 enable_irq_wake(adapter->irq_wakeup);
1440 }
1441}
1442
600f5d90
AK
1443int mwifiex_init_shutdown_fw(struct mwifiex_private *priv,
1444 u32 func_init_shutdown);
4a79aa17
BN
1445
1446int mwifiex_add_card(void *card, struct completion *fw_done,
2e02b581
RJ
1447 struct mwifiex_if_ops *if_ops, u8 iface_type,
1448 struct device *dev);
4a79aa17 1449int mwifiex_remove_card(struct mwifiex_adapter *adapter);
5e6e3a92
BZ
1450
1451void mwifiex_get_version(struct mwifiex_adapter *adapter, char *version,
1452 int maxlen);
600f5d90
AK
1453int mwifiex_request_set_multicast_list(struct mwifiex_private *priv,
1454 struct mwifiex_multicast_list *mcast_list);
1455int mwifiex_copy_mcast_addr(struct mwifiex_multicast_list *mlist,
1456 struct net_device *dev);
00d7ea11
AK
1457int mwifiex_wait_queue_complete(struct mwifiex_adapter *adapter,
1458 struct cmd_ctrl_node *cmd_queued);
7c6fa2a8 1459int mwifiex_bss_start(struct mwifiex_private *priv, struct cfg80211_bss *bss,
b9be5f39 1460 struct cfg80211_ssid *req_ssid);
600f5d90 1461int mwifiex_cancel_hs(struct mwifiex_private *priv, int cmd_type);
5e6e3a92 1462int mwifiex_enable_hs(struct mwifiex_adapter *adapter);
a0490936 1463int mwifiex_disable_auto_ds(struct mwifiex_private *priv);
006606c0 1464int mwifiex_drv_get_data_rate(struct mwifiex_private *priv, u32 *rate);
5e6e3a92 1465int mwifiex_request_scan(struct mwifiex_private *priv,
b9be5f39 1466 struct cfg80211_ssid *req_ssid);
1a1fb970
AK
1467int mwifiex_scan_networks(struct mwifiex_private *priv,
1468 const struct mwifiex_user_scan_cfg *user_scan_in);
5e6e3a92
BZ
1469int mwifiex_set_radio(struct mwifiex_private *priv, u8 option);
1470
53b11231
YL
1471int mwifiex_set_encode(struct mwifiex_private *priv, struct key_params *kp,
1472 const u8 *key, int key_len, u8 key_index,
1473 const u8 *mac_addr, int disable);
5e6e3a92 1474
4b5800fe 1475int mwifiex_set_gen_ie(struct mwifiex_private *priv, const u8 *ie, int ie_len);
5e6e3a92 1476
17934b6a 1477int mwifiex_get_ver_ext(struct mwifiex_private *priv, u32 version_str_sel);
5e6e3a92 1478
7feb4c48
SP
1479int mwifiex_remain_on_chan_cfg(struct mwifiex_private *priv, u16 action,
1480 struct ieee80211_channel *chan,
7feb4c48
SP
1481 unsigned int duration);
1482
5e6e3a92
BZ
1483int mwifiex_get_stats_info(struct mwifiex_private *priv,
1484 struct mwifiex_ds_get_stats *log);
1485
1486int mwifiex_reg_write(struct mwifiex_private *priv, u32 reg_type,
1487 u32 reg_offset, u32 reg_value);
1488
1489int mwifiex_reg_read(struct mwifiex_private *priv, u32 reg_type,
1490 u32 reg_offset, u32 *value);
1491
1492int mwifiex_eeprom_read(struct mwifiex_private *priv, u16 offset, u16 bytes,
1493 u8 *value);
1494
1495int mwifiex_set_11n_httx_cfg(struct mwifiex_private *priv, int data);
1496
1497int mwifiex_get_11n_httx_cfg(struct mwifiex_private *priv, int *data);
1498
1499int mwifiex_set_tx_rate_cfg(struct mwifiex_private *priv, int tx_rate_index);
1500
1501int mwifiex_get_tx_rate_cfg(struct mwifiex_private *priv, int *tx_rate_index);
1502
600f5d90 1503int mwifiex_drv_set_power(struct mwifiex_private *priv, u32 *ps_mode);
5e6e3a92
BZ
1504
1505int mwifiex_drv_get_driver_version(struct mwifiex_adapter *adapter,
1506 char *version, int max_len);
1507
600f5d90
AK
1508int mwifiex_set_tx_power(struct mwifiex_private *priv,
1509 struct mwifiex_power_cfg *power_cfg);
5e6e3a92
BZ
1510
1511int mwifiex_main_process(struct mwifiex_adapter *);
1512
e39faa73
SP
1513int mwifiex_queue_tx_pkt(struct mwifiex_private *priv, struct sk_buff *skb);
1514
5e6e3a92
BZ
1515int mwifiex_get_bss_info(struct mwifiex_private *,
1516 struct mwifiex_bss_info *);
7c6fa2a8 1517int mwifiex_fill_new_bss_desc(struct mwifiex_private *priv,
9558a407 1518 struct cfg80211_bss *bss,
7c6fa2a8
AK
1519 struct mwifiex_bssdescriptor *bss_desc);
1520int mwifiex_update_bss_desc_with_ie(struct mwifiex_adapter *adapter,
9558a407 1521 struct mwifiex_bssdescriptor *bss_entry);
7c6fa2a8
AK
1522int mwifiex_check_network_compatibility(struct mwifiex_private *priv,
1523 struct mwifiex_bssdescriptor *bss_desc);
5e6e3a92 1524
7feb4c48 1525u8 mwifiex_chan_type_to_sec_chan_offset(enum nl80211_channel_type chan_type);
7ee38bf4 1526u8 mwifiex_sec_chan_offset_to_chan_type(u8 second_chan_offset);
7feb4c48 1527
84efbb84 1528struct wireless_dev *mwifiex_add_virtual_intf(struct wiphy *wiphy,
552bff0c 1529 const char *name,
6bab2e19 1530 unsigned char name_assign_type,
84efbb84
JB
1531 enum nl80211_iftype type,
1532 u32 *flags,
1533 struct vif_params *params);
1534int mwifiex_del_virtual_intf(struct wiphy *wiphy, struct wireless_dev *wdev);
93a1df48 1535
9b930eae
AP
1536void mwifiex_set_sys_config_invalid_data(struct mwifiex_uap_bss_param *config);
1537
7da060c1
AK
1538int mwifiex_add_wowlan_magic_pkt_filter(struct mwifiex_adapter *adapter);
1539
f31acabe 1540int mwifiex_set_mgmt_ies(struct mwifiex_private *priv,
adb6ed0c 1541 struct cfg80211_beacon_data *data);
40bbc21a 1542int mwifiex_del_mgmt_ies(struct mwifiex_private *priv);
9e04a7c6 1543u8 *mwifiex_11d_code_2_region(u8 code);
7ee38bf4
XH
1544void mwifiex_uap_set_channel(struct mwifiex_private *priv,
1545 struct mwifiex_uap_bss_param *bss_cfg,
b654ca18
AP
1546 struct cfg80211_chan_def chandef);
1547int mwifiex_config_start_uap(struct mwifiex_private *priv,
1548 struct mwifiex_uap_bss_param *bss_cfg);
0f9e9b8b
AP
1549void mwifiex_uap_del_sta_data(struct mwifiex_private *priv,
1550 struct mwifiex_sta_node *node);
93a1df48 1551
cf075eac
AP
1552void mwifiex_init_11h_params(struct mwifiex_private *priv);
1553int mwifiex_is_11h_active(struct mwifiex_private *priv);
1554int mwifiex_11h_activate(struct mwifiex_private *priv, bool flag);
1555
2a7305c8
AK
1556void mwifiex_11h_process_join(struct mwifiex_private *priv, u8 **buffer,
1557 struct mwifiex_bssdescriptor *bss_desc);
1558int mwifiex_11h_handle_event_chanswann(struct mwifiex_private *priv);
82efa16a
BZ
1559int mwifiex_dnld_dt_cfgdata(struct mwifiex_private *priv,
1560 struct device_node *node, const char *prefix);
b58df446 1561void mwifiex_dnld_txpwr_table(struct mwifiex_private *priv);
2a7305c8 1562
0d7f53e3
AK
1563extern const struct ethtool_ops mwifiex_ethtool_ops;
1564
4bcf93d3 1565void mwifiex_del_all_sta_list(struct mwifiex_private *priv);
3b3a0162 1566void mwifiex_del_sta_entry(struct mwifiex_private *priv, const u8 *mac);
4bcf93d3
AP
1567void
1568mwifiex_set_sta_ht_cap(struct mwifiex_private *priv, const u8 *ies,
1569 int ies_len, struct mwifiex_sta_node *node);
1570struct mwifiex_sta_node *
3b3a0162 1571mwifiex_add_sta_entry(struct mwifiex_private *priv, const u8 *mac);
4bcf93d3 1572struct mwifiex_sta_node *
3b3a0162 1573mwifiex_get_sta_entry(struct mwifiex_private *priv, const u8 *mac);
ba101ad5
XH
1574u8 mwifiex_is_tdls_chan_switching(struct mwifiex_private *priv);
1575u8 mwifiex_is_tdls_off_chan(struct mwifiex_private *priv);
1576u8 mwifiex_is_send_cmd_allowed(struct mwifiex_private *priv);
3b3a0162 1577int mwifiex_send_tdls_data_frame(struct mwifiex_private *priv, const u8 *peer,
b23bce29
AP
1578 u8 action_code, u8 dialog_token,
1579 u16 status_code, const u8 *extra_ies,
1580 size_t extra_ies_len);
3b3a0162
JB
1581int mwifiex_send_tdls_action_frame(struct mwifiex_private *priv, const u8 *peer,
1582 u8 action_code, u8 dialog_token,
1583 u16 status_code, const u8 *extra_ies,
1584 size_t extra_ies_len);
5f2caaf3
AP
1585void mwifiex_process_tdls_action_frame(struct mwifiex_private *priv,
1586 u8 *buf, int len);
3b3a0162
JB
1587int mwifiex_tdls_oper(struct mwifiex_private *priv, const u8 *peer, u8 action);
1588int mwifiex_get_tdls_link_status(struct mwifiex_private *priv, const u8 *mac);
72df6310
XH
1589int mwifiex_get_tdls_list(struct mwifiex_private *priv,
1590 struct tdls_peer_info *buf);
be104b91 1591void mwifiex_disable_all_tdls_links(struct mwifiex_private *priv);
5f6d5983
AP
1592bool mwifiex_is_bss_in_11ac_mode(struct mwifiex_private *priv);
1593u8 mwifiex_get_center_freq_index(struct mwifiex_private *priv, u8 band,
1594 u32 pri_chan, u8 chan_bw);
cb91be87 1595int mwifiex_init_channel_scan_gap(struct mwifiex_adapter *adapter);
4bcf93d3 1596
9927baa3
AP
1597int mwifiex_tdls_check_tx(struct mwifiex_private *priv, struct sk_buff *skb);
1598void mwifiex_flush_auto_tdls_list(struct mwifiex_private *priv);
1599void mwifiex_auto_tdls_update_peer_status(struct mwifiex_private *priv,
1600 const u8 *mac, u8 link_status);
1601void mwifiex_auto_tdls_update_peer_signal(struct mwifiex_private *priv,
1602 u8 *mac, s8 snr, s8 nflr);
1603void mwifiex_check_auto_tdls(unsigned long context);
1604void mwifiex_add_auto_tdls_peer(struct mwifiex_private *priv, const u8 *mac);
1605void mwifiex_setup_auto_tdls_timer(struct mwifiex_private *priv);
1606void mwifiex_clean_auto_tdls(struct mwifiex_private *priv);
449b8bbf
XH
1607int mwifiex_config_tdls_enable(struct mwifiex_private *priv);
1608int mwifiex_config_tdls_disable(struct mwifiex_private *priv);
1609int mwifiex_config_tdls_cs_params(struct mwifiex_private *priv);
1610int mwifiex_stop_tdls_cs(struct mwifiex_private *priv, const u8 *peer_mac);
1611int mwifiex_start_tdls_cs(struct mwifiex_private *priv, const u8 *peer_mac,
1612 u8 primary_chan, u8 second_chan_offset, u8 band);
1613
85afb186
AP
1614int mwifiex_cmd_issue_chan_report_request(struct mwifiex_private *priv,
1615 struct host_cmd_ds_command *cmd,
1616 void *data_buf);
0a694d68
AP
1617int mwifiex_11h_handle_chanrpt_ready(struct mwifiex_private *priv,
1618 struct sk_buff *skb);
9927baa3 1619
808bbebc
AK
1620void mwifiex_parse_tx_status_event(struct mwifiex_private *priv,
1621 void *event_body);
1622
18ca4382
AK
1623struct sk_buff *
1624mwifiex_clone_skb_for_tx_status(struct mwifiex_private *priv,
1625 struct sk_buff *skb, u8 flag, u64 *cookie);
85afb186 1626void mwifiex_dfs_cac_work_queue(struct work_struct *work);
7d652034 1627void mwifiex_dfs_chan_sw_work_queue(struct work_struct *work);
85afb186 1628void mwifiex_abort_cac(struct mwifiex_private *priv);
511c8989
AP
1629int mwifiex_stop_radar_detection(struct mwifiex_private *priv,
1630 struct cfg80211_chan_def *chandef);
3b57c1a7
AP
1631int mwifiex_11h_handle_radar_detected(struct mwifiex_private *priv,
1632 struct sk_buff *skb);
18ca4382 1633
cbf6e055
XH
1634void mwifiex_hist_data_set(struct mwifiex_private *priv, u8 rx_rate, s8 snr,
1635 s8 nflr);
1636void mwifiex_hist_data_reset(struct mwifiex_private *priv);
1637void mwifiex_hist_data_add(struct mwifiex_private *priv,
1638 u8 rx_rate, s8 snr, s8 nflr);
1639u8 mwifiex_adjust_data_rate(struct mwifiex_private *priv,
1640 u8 rx_rate, u8 ht_info);
1641
d27121fc
XH
1642int mwifiex_drv_info_dump(struct mwifiex_adapter *adapter, void **drv_info);
1643void mwifiex_upload_device_dump(struct mwifiex_adapter *adapter, void *drv_info,
1644 int drv_info_size);
62159944 1645void *mwifiex_alloc_dma_align_buf(int rx_len, gfp_t flags);
b2713f67 1646void mwifiex_queue_main_work(struct mwifiex_adapter *adapter);
8de00f1b 1647int mwifiex_get_wakeup_reason(struct mwifiex_private *priv, u16 action,
1648 int cmd_type,
1649 struct mwifiex_ds_wakeup_reason *wakeup_reason);
1650int mwifiex_ret_wakeup_reason(struct mwifiex_private *priv,
1651 struct host_cmd_ds_command *resp,
1652 struct host_cmd_ds_wakeup_reason *wakeup_reason);
d219b7eb
CC
1653void mwifiex_coex_ampdu_rxwinsize(struct mwifiex_adapter *adapter);
1654void mwifiex_11n_delba(struct mwifiex_private *priv, int tid);
65d48e59 1655int mwifiex_send_domain_info_cmd_fw(struct wiphy *wiphy);
ddd7ceb3
AP
1656void mwifiex_process_tx_pause_event(struct mwifiex_private *priv,
1657 struct sk_buff *event);
8d6b538a
AP
1658void mwifiex_process_multi_chan_event(struct mwifiex_private *priv,
1659 struct sk_buff *event_skb);
7e4e5d2c 1660void mwifiex_multi_chan_resync(struct mwifiex_adapter *adapter);
65d48e59 1661
5e6e3a92
BZ
1662#ifdef CONFIG_DEBUG_FS
1663void mwifiex_debugfs_init(void);
1664void mwifiex_debugfs_remove(void);
1665
1666void mwifiex_dev_debugfs_init(struct mwifiex_private *priv);
1667void mwifiex_dev_debugfs_remove(struct mwifiex_private *priv);
1668#endif
8750ab62
XH
1669int mwifiex_reinit_sw(struct mwifiex_adapter *adapter);
1670int mwifiex_shutdown_sw(struct mwifiex_adapter *adapter);
5e6e3a92 1671#endif /* !_MWIFIEX_MAIN_H_ */