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