]> Pileus Git - ~andy/linux/blob - drivers/net/wireless/mwifiex/main.h
{xfrm,pktgen} Fix compiling error when CONFIG_XFRM is not set
[~andy/linux] / drivers / net / wireless / mwifiex / main.h
1 /*
2  * Marvell Wireless LAN device driver: major data structures and prototypes
3  *
4  * Copyright (C) 2011, 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/firmware.h>
34 #include <linux/ctype.h>
35
36 #include "decl.h"
37 #include "ioctl.h"
38 #include "util.h"
39 #include "fw.h"
40 #include "pcie.h"
41
42 extern const char driver_version[];
43
44 enum {
45         MWIFIEX_ASYNC_CMD,
46         MWIFIEX_SYNC_CMD
47 };
48
49 #define MWIFIEX_MAX_AP                          64
50
51 #define MWIFIEX_DEFAULT_WATCHDOG_TIMEOUT        (5 * HZ)
52
53 #define MWIFIEX_TIMER_10S                       10000
54 #define MWIFIEX_TIMER_1S                        1000
55
56 #define MAX_TX_PENDING      100
57 #define LOW_TX_PENDING      80
58
59 #define MWIFIEX_UPLD_SIZE               (2312)
60
61 #define MAX_EVENT_SIZE                  1024
62
63 #define ARP_FILTER_MAX_BUF_SIZE         68
64
65 #define MWIFIEX_KEY_BUFFER_SIZE                 16
66 #define MWIFIEX_DEFAULT_LISTEN_INTERVAL 10
67 #define MWIFIEX_MAX_REGION_CODE         7
68
69 #define DEFAULT_BCN_AVG_FACTOR          8
70 #define DEFAULT_DATA_AVG_FACTOR         8
71
72 #define FIRST_VALID_CHANNEL                             0xff
73 #define DEFAULT_AD_HOC_CHANNEL                  6
74 #define DEFAULT_AD_HOC_CHANNEL_A                36
75
76 #define DEFAULT_BCN_MISS_TIMEOUT                5
77
78 #define MAX_SCAN_BEACON_BUFFER                  8000
79
80 #define SCAN_BEACON_ENTRY_PAD                   6
81
82 #define MWIFIEX_PASSIVE_SCAN_CHAN_TIME  110
83 #define MWIFIEX_ACTIVE_SCAN_CHAN_TIME   30
84 #define MWIFIEX_SPECIFIC_SCAN_CHAN_TIME 30
85
86 #define SCAN_RSSI(RSSI)                                 (0x100 - ((u8)(RSSI)))
87
88 #define MWIFIEX_MAX_TOTAL_SCAN_TIME     (MWIFIEX_TIMER_10S - MWIFIEX_TIMER_1S)
89
90 #define MWIFIEX_MAX_SCAN_DELAY_CNT                      50
91 #define MWIFIEX_MAX_EMPTY_TX_Q_CNT                      10
92 #define MWIFIEX_SCAN_DELAY_MSEC                         20
93
94 #define MWIFIEX_MIN_TX_PENDING_TO_CANCEL_SCAN           2
95
96 #define RSN_GTK_OUI_OFFSET                              2
97
98 #define MWIFIEX_OUI_NOT_PRESENT                 0
99 #define MWIFIEX_OUI_PRESENT                             1
100
101 #define PKT_TYPE_MGMT   0xE5
102
103 /*
104  * Do not check for data_received for USB, as data_received
105  * is handled in mwifiex_usb_recv for USB
106  */
107 #define IS_CARD_RX_RCVD(adapter) (adapter->cmd_resp_received || \
108                                 adapter->event_received || \
109                                 ((adapter->iface_type != MWIFIEX_USB) && \
110                                 adapter->data_received) || \
111                                 ((adapter->iface_type == MWIFIEX_USB) && \
112                                 !skb_queue_empty(&adapter->usb_rx_data_q)))
113
114 #define MWIFIEX_TYPE_CMD                                1
115 #define MWIFIEX_TYPE_DATA                               0
116 #define MWIFIEX_TYPE_EVENT                              3
117
118 #define MAX_BITMAP_RATES_SIZE                   10
119
120 #define MAX_CHANNEL_BAND_BG     14
121 #define MAX_CHANNEL_BAND_A      165
122
123 #define MAX_FREQUENCY_BAND_BG   2484
124
125 #define MWIFIEX_EVENT_HEADER_LEN           4
126 #define MWIFIEX_UAP_EVENT_EXTRA_HEADER     2
127
128 #define MWIFIEX_TYPE_LEN                        4
129 #define MWIFIEX_USB_TYPE_CMD                    0xF00DFACE
130 #define MWIFIEX_USB_TYPE_DATA                   0xBEADC0DE
131 #define MWIFIEX_USB_TYPE_EVENT                  0xBEEFFACE
132
133 /* Threshold for tx_timeout_cnt before we trigger a card reset */
134 #define TX_TIMEOUT_THRESHOLD    6
135
136 struct mwifiex_dbg {
137         u32 num_cmd_host_to_card_failure;
138         u32 num_cmd_sleep_cfm_host_to_card_failure;
139         u32 num_tx_host_to_card_failure;
140         u32 num_event_deauth;
141         u32 num_event_disassoc;
142         u32 num_event_link_lost;
143         u32 num_cmd_deauth;
144         u32 num_cmd_assoc_success;
145         u32 num_cmd_assoc_failure;
146         u32 num_tx_timeout;
147         u32 num_cmd_timeout;
148         u16 timeout_cmd_id;
149         u16 timeout_cmd_act;
150         u16 last_cmd_id[DBG_CMD_NUM];
151         u16 last_cmd_act[DBG_CMD_NUM];
152         u16 last_cmd_index;
153         u16 last_cmd_resp_id[DBG_CMD_NUM];
154         u16 last_cmd_resp_index;
155         u16 last_event[DBG_CMD_NUM];
156         u16 last_event_index;
157 };
158
159 enum MWIFIEX_HARDWARE_STATUS {
160         MWIFIEX_HW_STATUS_READY,
161         MWIFIEX_HW_STATUS_INITIALIZING,
162         MWIFIEX_HW_STATUS_FW_READY,
163         MWIFIEX_HW_STATUS_INIT_DONE,
164         MWIFIEX_HW_STATUS_RESET,
165         MWIFIEX_HW_STATUS_CLOSING,
166         MWIFIEX_HW_STATUS_NOT_READY
167 };
168
169 enum MWIFIEX_802_11_POWER_MODE {
170         MWIFIEX_802_11_POWER_MODE_CAM,
171         MWIFIEX_802_11_POWER_MODE_PSP
172 };
173
174 struct mwifiex_tx_param {
175         u32 next_pkt_len;
176 };
177
178 enum MWIFIEX_PS_STATE {
179         PS_STATE_AWAKE,
180         PS_STATE_PRE_SLEEP,
181         PS_STATE_SLEEP_CFM,
182         PS_STATE_SLEEP
183 };
184
185 enum mwifiex_iface_type {
186         MWIFIEX_SDIO,
187         MWIFIEX_PCIE,
188         MWIFIEX_USB
189 };
190
191 struct mwifiex_add_ba_param {
192         u32 tx_win_size;
193         u32 rx_win_size;
194         u32 timeout;
195 };
196
197 struct mwifiex_tx_aggr {
198         u8 ampdu_user;
199         u8 ampdu_ap;
200         u8 amsdu;
201 };
202
203 struct mwifiex_ra_list_tbl {
204         struct list_head list;
205         struct sk_buff_head skb_head;
206         u8 ra[ETH_ALEN];
207         u32 is_11n_enabled;
208         u16 max_amsdu;
209         u16 ba_pkt_count;
210         u8 ba_packet_thr;
211         u16 total_pkt_count;
212 };
213
214 struct mwifiex_tid_tbl {
215         struct list_head ra_list;
216 };
217
218 #define WMM_HIGHEST_PRIORITY            7
219 #define HIGH_PRIO_TID                           7
220 #define LOW_PRIO_TID                            0
221
222 struct mwifiex_wmm_desc {
223         struct mwifiex_tid_tbl tid_tbl_ptr[MAX_NUM_TID];
224         u32 packets_out[MAX_NUM_TID];
225         /* spin lock to protect ra_list */
226         spinlock_t ra_list_spinlock;
227         struct mwifiex_wmm_ac_status ac_status[IEEE80211_NUM_ACS];
228         enum mwifiex_wmm_ac_e ac_down_graded_vals[IEEE80211_NUM_ACS];
229         u32 drv_pkt_delay_max;
230         u8 queue_priority[IEEE80211_NUM_ACS];
231         u32 user_pri_pkt_tx_ctrl[WMM_HIGHEST_PRIORITY + 1];     /* UP: 0 to 7 */
232         /* Number of transmit packets queued */
233         atomic_t tx_pkts_queued;
234         /* Tracks highest priority with a packet queued */
235         atomic_t highest_queued_prio;
236 };
237
238 struct mwifiex_802_11_security {
239         u8 wpa_enabled;
240         u8 wpa2_enabled;
241         u8 wapi_enabled;
242         u8 wapi_key_on;
243         u8 wep_enabled;
244         u32 authentication_mode;
245         u8 is_authtype_auto;
246         u32 encryption_mode;
247 };
248
249 struct ieee_types_header {
250         u8 element_id;
251         u8 len;
252 } __packed;
253
254 struct ieee_types_vendor_specific {
255         struct ieee_types_vendor_header vend_hdr;
256         u8 data[IEEE_MAX_IE_SIZE - sizeof(struct ieee_types_vendor_header)];
257 } __packed;
258
259 struct ieee_types_generic {
260         struct ieee_types_header ieee_hdr;
261         u8 data[IEEE_MAX_IE_SIZE - sizeof(struct ieee_types_header)];
262 } __packed;
263
264 struct mwifiex_bssdescriptor {
265         u8 mac_address[ETH_ALEN];
266         struct cfg80211_ssid ssid;
267         u32 privacy;
268         s32 rssi;
269         u32 channel;
270         u32 freq;
271         u16 beacon_period;
272         u8 erp_flags;
273         u32 bss_mode;
274         u8 supported_rates[MWIFIEX_SUPPORTED_RATES];
275         u8 data_rates[MWIFIEX_SUPPORTED_RATES];
276         /* Network band.
277          * BAND_B(0x01): 'b' band
278          * BAND_G(0x02): 'g' band
279          * BAND_A(0X04): 'a' band
280          */
281         u16 bss_band;
282         u64 fw_tsf;
283         u64 timestamp;
284         union ieee_types_phy_param_set phy_param_set;
285         union ieee_types_ss_param_set ss_param_set;
286         u16 cap_info_bitmap;
287         struct ieee_types_wmm_parameter wmm_ie;
288         u8  disable_11n;
289         struct ieee80211_ht_cap *bcn_ht_cap;
290         u16 ht_cap_offset;
291         struct ieee80211_ht_operation *bcn_ht_oper;
292         u16 ht_info_offset;
293         u8 *bcn_bss_co_2040;
294         u16 bss_co_2040_offset;
295         u8 *bcn_ext_cap;
296         u16 ext_cap_offset;
297         struct ieee80211_vht_cap *bcn_vht_cap;
298         u16 vht_cap_offset;
299         struct ieee80211_vht_operation *bcn_vht_oper;
300         u16 vht_info_offset;
301         struct ieee_types_oper_mode_ntf *oper_mode;
302         u16 oper_mode_offset;
303         u8 disable_11ac;
304         struct ieee_types_vendor_specific *bcn_wpa_ie;
305         u16 wpa_offset;
306         struct ieee_types_generic *bcn_rsn_ie;
307         u16 rsn_offset;
308         struct ieee_types_generic *bcn_wapi_ie;
309         u16 wapi_offset;
310         u8 *beacon_buf;
311         u32 beacon_buf_size;
312         u8 sensed_11h;
313         u8 local_constraint;
314         u8 chan_sw_ie_present;
315 };
316
317 struct mwifiex_current_bss_params {
318         struct mwifiex_bssdescriptor bss_descriptor;
319         u8 wmm_enabled;
320         u8 wmm_uapsd_enabled;
321         u8 band;
322         u32 num_of_rates;
323         u8 data_rates[MWIFIEX_SUPPORTED_RATES];
324 };
325
326 struct mwifiex_sleep_params {
327         u16 sp_error;
328         u16 sp_offset;
329         u16 sp_stable_time;
330         u8 sp_cal_control;
331         u8 sp_ext_sleep_clk;
332         u16 sp_reserved;
333 };
334
335 struct mwifiex_sleep_period {
336         u16 period;
337         u16 reserved;
338 };
339
340 struct mwifiex_wep_key {
341         u32 length;
342         u32 key_index;
343         u32 key_length;
344         u8 key_material[MWIFIEX_KEY_BUFFER_SIZE];
345 };
346
347 #define MAX_REGION_CHANNEL_NUM  2
348
349 struct mwifiex_chan_freq_power {
350         u16 channel;
351         u32 freq;
352         u16 max_tx_power;
353         u8 unsupported;
354 };
355
356 enum state_11d_t {
357         DISABLE_11D = 0,
358         ENABLE_11D = 1,
359 };
360
361 #define MWIFIEX_MAX_TRIPLET_802_11D             83
362
363 struct mwifiex_802_11d_domain_reg {
364         u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
365         u8 no_of_triplet;
366         struct ieee80211_country_ie_triplet
367                 triplet[MWIFIEX_MAX_TRIPLET_802_11D];
368 };
369
370 struct mwifiex_vendor_spec_cfg_ie {
371         u16 mask;
372         u16 flag;
373         u8 ie[MWIFIEX_MAX_VSIE_LEN];
374 };
375
376 struct wps {
377         u8 session_enable;
378 };
379
380 struct mwifiex_roc_cfg {
381         u64 cookie;
382         struct ieee80211_channel chan;
383 };
384
385 struct mwifiex_adapter;
386 struct mwifiex_private;
387
388 struct mwifiex_private {
389         struct mwifiex_adapter *adapter;
390         u8 bss_type;
391         u8 bss_role;
392         u8 bss_priority;
393         u8 bss_num;
394         u8 bss_started;
395         u8 frame_type;
396         u8 curr_addr[ETH_ALEN];
397         u8 media_connected;
398         u32 num_tx_timeout;
399         /* track consecutive timeout */
400         u8 tx_timeout_cnt;
401         struct net_device *netdev;
402         struct net_device_stats stats;
403         u16 curr_pkt_filter;
404         u32 bss_mode;
405         u32 pkt_tx_ctrl;
406         u16 tx_power_level;
407         u8 max_tx_power_level;
408         u8 min_tx_power_level;
409         u8 tx_rate;
410         u8 tx_htinfo;
411         u8 rxpd_htinfo;
412         u8 rxpd_rate;
413         u16 rate_bitmap;
414         u16 bitmap_rates[MAX_BITMAP_RATES_SIZE];
415         u32 data_rate;
416         u8 is_data_rate_auto;
417         u16 bcn_avg_factor;
418         u16 data_avg_factor;
419         s16 data_rssi_last;
420         s16 data_nf_last;
421         s16 data_rssi_avg;
422         s16 data_nf_avg;
423         s16 bcn_rssi_last;
424         s16 bcn_nf_last;
425         s16 bcn_rssi_avg;
426         s16 bcn_nf_avg;
427         struct mwifiex_bssdescriptor *attempted_bss_desc;
428         struct cfg80211_ssid prev_ssid;
429         u8 prev_bssid[ETH_ALEN];
430         struct mwifiex_current_bss_params curr_bss_params;
431         u16 beacon_period;
432         u8 dtim_period;
433         u16 listen_interval;
434         u16 atim_window;
435         u8 adhoc_channel;
436         u8 adhoc_is_link_sensed;
437         u8 adhoc_state;
438         struct mwifiex_802_11_security sec_info;
439         struct mwifiex_wep_key wep_key[NUM_WEP_KEYS];
440         u16 wep_key_curr_index;
441         u8 wpa_ie[256];
442         u8 wpa_ie_len;
443         u8 wpa_is_gtk_set;
444         struct host_cmd_ds_802_11_key_material aes_key;
445         u8 wapi_ie[256];
446         u8 wapi_ie_len;
447         u8 *wps_ie;
448         u8 wps_ie_len;
449         u8 wmm_required;
450         u8 wmm_enabled;
451         u8 wmm_qosinfo;
452         struct mwifiex_wmm_desc wmm;
453         atomic_t wmm_tx_pending[IEEE80211_NUM_ACS];
454         struct list_head sta_list;
455         /* spin lock for associated station list */
456         spinlock_t sta_list_spinlock;
457         struct list_head tx_ba_stream_tbl_ptr;
458         /* spin lock for tx_ba_stream_tbl_ptr queue */
459         spinlock_t tx_ba_stream_tbl_lock;
460         struct mwifiex_tx_aggr aggr_prio_tbl[MAX_NUM_TID];
461         struct mwifiex_add_ba_param add_ba_param;
462         u16 rx_seq[MAX_NUM_TID];
463         struct list_head rx_reorder_tbl_ptr;
464         /* spin lock for rx_reorder_tbl_ptr queue */
465         spinlock_t rx_reorder_tbl_lock;
466         /* spin lock for Rx packets */
467         spinlock_t rx_pkt_lock;
468
469 #define MWIFIEX_ASSOC_RSP_BUF_SIZE  500
470         u8 assoc_rsp_buf[MWIFIEX_ASSOC_RSP_BUF_SIZE];
471         u32 assoc_rsp_size;
472
473 #define MWIFIEX_GENIE_BUF_SIZE      256
474         u8 gen_ie_buf[MWIFIEX_GENIE_BUF_SIZE];
475         u8 gen_ie_buf_len;
476
477         struct mwifiex_vendor_spec_cfg_ie vs_ie[MWIFIEX_MAX_VSIE_NUM];
478
479 #define MWIFIEX_ASSOC_TLV_BUF_SIZE  256
480         u8 assoc_tlv_buf[MWIFIEX_ASSOC_TLV_BUF_SIZE];
481         u8 assoc_tlv_buf_len;
482
483         u8 *curr_bcn_buf;
484         u32 curr_bcn_size;
485         /* spin lock for beacon buffer */
486         spinlock_t curr_bcn_buf_lock;
487         struct wireless_dev *wdev;
488         struct mwifiex_chan_freq_power cfp;
489         char version_str[128];
490 #ifdef CONFIG_DEBUG_FS
491         struct dentry *dfs_dev_dir;
492 #endif
493         u8 nick_name[16];
494         u16 current_key_index;
495         struct semaphore async_sem;
496         u8 report_scan_result;
497         struct cfg80211_scan_request *scan_request;
498         u8 cfg_bssid[6];
499         struct wps wps;
500         u8 scan_block;
501         s32 cqm_rssi_thold;
502         u32 cqm_rssi_hyst;
503         u8 subsc_evt_rssi_state;
504         struct mwifiex_ds_misc_subsc_evt async_subsc_evt_storage;
505         struct mwifiex_ie mgmt_ie[MAX_MGMT_IE_INDEX];
506         u16 beacon_idx;
507         u16 proberesp_idx;
508         u16 assocresp_idx;
509         u16 rsn_idx;
510         struct timer_list scan_delay_timer;
511         u8 ap_11n_enabled;
512         u8 ap_11ac_enabled;
513         u32 mgmt_frame_mask;
514         struct mwifiex_roc_cfg roc_cfg;
515         bool scan_aborting;
516         u8 csa_chan;
517         unsigned long csa_expire_time;
518         u8 del_list_idx;
519         bool hs2_enabled;
520 };
521
522 enum mwifiex_ba_status {
523         BA_SETUP_NONE = 0,
524         BA_SETUP_INPROGRESS,
525         BA_SETUP_COMPLETE
526 };
527
528 struct mwifiex_tx_ba_stream_tbl {
529         struct list_head list;
530         int tid;
531         u8 ra[ETH_ALEN];
532         enum mwifiex_ba_status ba_status;
533 };
534
535 struct mwifiex_rx_reorder_tbl;
536
537 struct reorder_tmr_cnxt {
538         struct timer_list timer;
539         struct mwifiex_rx_reorder_tbl *ptr;
540         struct mwifiex_private *priv;
541 };
542
543 struct mwifiex_rx_reorder_tbl {
544         struct list_head list;
545         int tid;
546         u8 ta[ETH_ALEN];
547         int start_win;
548         int win_size;
549         void **rx_reorder_ptr;
550         struct reorder_tmr_cnxt timer_context;
551         u8 flags;
552 };
553
554 struct mwifiex_bss_prio_node {
555         struct list_head list;
556         struct mwifiex_private *priv;
557 };
558
559 struct mwifiex_bss_prio_tbl {
560         struct list_head bss_prio_head;
561         /* spin lock for bss priority  */
562         spinlock_t bss_prio_lock;
563         struct mwifiex_bss_prio_node *bss_prio_cur;
564 };
565
566 struct cmd_ctrl_node {
567         struct list_head list;
568         struct mwifiex_private *priv;
569         u32 cmd_oid;
570         u32 cmd_flag;
571         struct sk_buff *cmd_skb;
572         struct sk_buff *resp_skb;
573         void *data_buf;
574         u32 wait_q_enabled;
575         struct sk_buff *skb;
576         u8 *condition;
577         u8 cmd_wait_q_woken;
578 };
579
580 struct mwifiex_bss_priv {
581         u8 band;
582         u64 fw_tsf;
583 };
584
585 /* This is AP specific structure which stores information
586  * about associated STA
587  */
588 struct mwifiex_sta_node {
589         struct list_head list;
590         u8 mac_addr[ETH_ALEN];
591         u8 is_wmm_enabled;
592         u8 is_11n_enabled;
593         u8 ampdu_sta[MAX_NUM_TID];
594         u16 rx_seq[MAX_NUM_TID];
595         u16 max_amsdu;
596 };
597
598 struct mwifiex_if_ops {
599         int (*init_if) (struct mwifiex_adapter *);
600         void (*cleanup_if) (struct mwifiex_adapter *);
601         int (*check_fw_status) (struct mwifiex_adapter *, u32);
602         int (*prog_fw) (struct mwifiex_adapter *, struct mwifiex_fw_image *);
603         int (*register_dev) (struct mwifiex_adapter *);
604         void (*unregister_dev) (struct mwifiex_adapter *);
605         int (*enable_int) (struct mwifiex_adapter *);
606         void (*disable_int) (struct mwifiex_adapter *);
607         int (*process_int_status) (struct mwifiex_adapter *);
608         int (*host_to_card) (struct mwifiex_adapter *, u8, struct sk_buff *,
609                              struct mwifiex_tx_param *);
610         int (*wakeup) (struct mwifiex_adapter *);
611         int (*wakeup_complete) (struct mwifiex_adapter *);
612
613         /* Interface specific functions */
614         void (*update_mp_end_port) (struct mwifiex_adapter *, u16);
615         void (*cleanup_mpa_buf) (struct mwifiex_adapter *);
616         int (*cmdrsp_complete) (struct mwifiex_adapter *, struct sk_buff *);
617         int (*event_complete) (struct mwifiex_adapter *, struct sk_buff *);
618         int (*data_complete) (struct mwifiex_adapter *);
619         int (*init_fw_port) (struct mwifiex_adapter *);
620         int (*dnld_fw) (struct mwifiex_adapter *, struct mwifiex_fw_image *);
621         void (*card_reset) (struct mwifiex_adapter *);
622         int (*clean_pcie_ring) (struct mwifiex_adapter *adapter);
623 };
624
625 struct mwifiex_adapter {
626         u8 iface_type;
627         struct mwifiex_private *priv[MWIFIEX_MAX_BSS_NUM];
628         u8 priv_num;
629         const struct firmware *firmware;
630         char fw_name[32];
631         int winner;
632         struct device *dev;
633         struct wiphy *wiphy;
634         bool surprise_removed;
635         u32 fw_release_number;
636         u16 init_wait_q_woken;
637         wait_queue_head_t init_wait_q;
638         void *card;
639         struct mwifiex_if_ops if_ops;
640         atomic_t rx_pending;
641         atomic_t tx_pending;
642         atomic_t cmd_pending;
643         struct workqueue_struct *workqueue;
644         struct work_struct main_work;
645         struct mwifiex_bss_prio_tbl bss_prio_tbl[MWIFIEX_MAX_BSS_NUM];
646         /* spin lock for init/shutdown */
647         spinlock_t mwifiex_lock;
648         /* spin lock for main process */
649         spinlock_t main_proc_lock;
650         u32 mwifiex_processing;
651         u16 tx_buf_size;
652         u16 curr_tx_buf_size;
653         u32 ioport;
654         enum MWIFIEX_HARDWARE_STATUS hw_status;
655         u16 number_of_antenna;
656         u32 fw_cap_info;
657         /* spin lock for interrupt handling */
658         spinlock_t int_lock;
659         u8 int_status;
660         u32 event_cause;
661         struct sk_buff *event_skb;
662         u8 upld_buf[MWIFIEX_UPLD_SIZE];
663         u8 data_sent;
664         u8 cmd_sent;
665         u8 cmd_resp_received;
666         u8 event_received;
667         u8 data_received;
668         u16 seq_num;
669         struct cmd_ctrl_node *cmd_pool;
670         struct cmd_ctrl_node *curr_cmd;
671         /* spin lock for command */
672         spinlock_t mwifiex_cmd_lock;
673         u32 num_cmd_timeout;
674         u16 last_init_cmd;
675         struct timer_list cmd_timer;
676         struct list_head cmd_free_q;
677         /* spin lock for cmd_free_q */
678         spinlock_t cmd_free_q_lock;
679         struct list_head cmd_pending_q;
680         /* spin lock for cmd_pending_q */
681         spinlock_t cmd_pending_q_lock;
682         struct list_head scan_pending_q;
683         /* spin lock for scan_pending_q */
684         spinlock_t scan_pending_q_lock;
685         struct sk_buff_head usb_rx_data_q;
686         u32 scan_processing;
687         u16 region_code;
688         struct mwifiex_802_11d_domain_reg domain_reg;
689         u16 scan_probes;
690         u32 scan_mode;
691         u16 specific_scan_time;
692         u16 active_scan_time;
693         u16 passive_scan_time;
694         u8 fw_bands;
695         u8 adhoc_start_band;
696         u8 config_bands;
697         struct mwifiex_chan_scan_param_set *scan_channels;
698         u8 tx_lock_flag;
699         struct mwifiex_sleep_params sleep_params;
700         struct mwifiex_sleep_period sleep_period;
701         u16 ps_mode;
702         u32 ps_state;
703         u8 need_to_wakeup;
704         u16 multiple_dtim;
705         u16 local_listen_interval;
706         u16 null_pkt_interval;
707         struct sk_buff *sleep_cfm;
708         u16 bcn_miss_time_out;
709         u16 adhoc_awake_period;
710         u8 is_deep_sleep;
711         u8 delay_null_pkt;
712         u16 delay_to_ps;
713         u16 enhanced_ps_mode;
714         u8 pm_wakeup_card_req;
715         u16 gen_null_pkt;
716         u16 pps_uapsd_mode;
717         u32 pm_wakeup_fw_try;
718         u8 is_hs_configured;
719         struct mwifiex_hs_config_param hs_cfg;
720         u8 hs_activated;
721         u16 hs_activate_wait_q_woken;
722         wait_queue_head_t hs_activate_wait_q;
723         bool is_suspended;
724         u8 event_body[MAX_EVENT_SIZE];
725         u32 hw_dot_11n_dev_cap;
726         u8 hw_dev_mcs_support;
727         u8 adhoc_11n_enabled;
728         u8 sec_chan_offset;
729         struct mwifiex_dbg dbg;
730         u8 arp_filter[ARP_FILTER_MAX_BUF_SIZE];
731         u32 arp_filter_size;
732         u16 cmd_wait_q_required;
733         struct mwifiex_wait_queue cmd_wait_q;
734         u8 scan_wait_q_woken;
735         spinlock_t queue_lock;          /* lock for tx queues */
736         struct completion fw_load;
737         u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
738         u16 max_mgmt_ie_index;
739         u8 scan_delay_cnt;
740         u8 empty_tx_q_cnt;
741         const struct firmware *cal_data;
742
743         /* 11AC */
744         u32 is_hw_11ac_capable;
745         u32 hw_dot_11ac_dev_cap;
746         u32 hw_dot_11ac_mcs_support;
747         u32 usr_dot_11ac_dev_cap_bg;
748         u32 usr_dot_11ac_dev_cap_a;
749         u32 usr_dot_11ac_mcs_support;
750
751         atomic_t is_tx_received;
752         atomic_t pending_bridged_pkts;
753         struct semaphore *card_sem;
754 };
755
756 int mwifiex_init_lock_list(struct mwifiex_adapter *adapter);
757
758 void mwifiex_set_trans_start(struct net_device *dev);
759
760 void mwifiex_stop_net_dev_queue(struct net_device *netdev,
761                 struct mwifiex_adapter *adapter);
762
763 void mwifiex_wake_up_net_dev_queue(struct net_device *netdev,
764                 struct mwifiex_adapter *adapter);
765
766 int mwifiex_init_priv(struct mwifiex_private *priv);
767 void mwifiex_free_priv(struct mwifiex_private *priv);
768
769 int mwifiex_init_fw(struct mwifiex_adapter *adapter);
770
771 int mwifiex_init_fw_complete(struct mwifiex_adapter *adapter);
772
773 int mwifiex_shutdown_drv(struct mwifiex_adapter *adapter);
774
775 int mwifiex_shutdown_fw_complete(struct mwifiex_adapter *adapter);
776
777 int mwifiex_dnld_fw(struct mwifiex_adapter *, struct mwifiex_fw_image *);
778
779 int mwifiex_recv_packet(struct mwifiex_private *priv, struct sk_buff *skb);
780
781 int mwifiex_process_mgmt_packet(struct mwifiex_private *priv,
782                                 struct sk_buff *skb);
783
784 int mwifiex_process_event(struct mwifiex_adapter *adapter);
785
786 int mwifiex_complete_cmd(struct mwifiex_adapter *adapter,
787                          struct cmd_ctrl_node *cmd_node);
788
789 int mwifiex_send_cmd_async(struct mwifiex_private *priv, uint16_t cmd_no,
790                            u16 cmd_action, u32 cmd_oid, void *data_buf);
791
792 int mwifiex_send_cmd_sync(struct mwifiex_private *priv, uint16_t cmd_no,
793                           u16 cmd_action, u32 cmd_oid, void *data_buf);
794
795 void mwifiex_cmd_timeout_func(unsigned long function_context);
796
797 int mwifiex_get_debug_info(struct mwifiex_private *,
798                            struct mwifiex_debug_info *);
799
800 int mwifiex_alloc_cmd_buffer(struct mwifiex_adapter *adapter);
801 int mwifiex_free_cmd_buffer(struct mwifiex_adapter *adapter);
802 void mwifiex_cancel_all_pending_cmd(struct mwifiex_adapter *adapter);
803 void mwifiex_cancel_pending_ioctl(struct mwifiex_adapter *adapter);
804
805 void mwifiex_insert_cmd_to_free_q(struct mwifiex_adapter *adapter,
806                                   struct cmd_ctrl_node *cmd_node);
807 void mwifiex_recycle_cmd_node(struct mwifiex_adapter *adapter,
808                               struct cmd_ctrl_node *cmd_node);
809
810 void mwifiex_insert_cmd_to_pending_q(struct mwifiex_adapter *adapter,
811                                      struct cmd_ctrl_node *cmd_node,
812                                      u32 addtail);
813
814 int mwifiex_exec_next_cmd(struct mwifiex_adapter *adapter);
815 int mwifiex_process_cmdresp(struct mwifiex_adapter *adapter);
816 int mwifiex_handle_rx_packet(struct mwifiex_adapter *adapter,
817                              struct sk_buff *skb);
818 int mwifiex_process_tx(struct mwifiex_private *priv, struct sk_buff *skb,
819                        struct mwifiex_tx_param *tx_param);
820 int mwifiex_send_null_packet(struct mwifiex_private *priv, u8 flags);
821 int mwifiex_write_data_complete(struct mwifiex_adapter *adapter,
822                                 struct sk_buff *skb, int aggr, int status);
823 void mwifiex_clean_txrx(struct mwifiex_private *priv);
824 u8 mwifiex_check_last_packet_indication(struct mwifiex_private *priv);
825 void mwifiex_check_ps_cond(struct mwifiex_adapter *adapter);
826 void mwifiex_process_sleep_confirm_resp(struct mwifiex_adapter *, u8 *,
827                                         u32);
828 int mwifiex_cmd_enh_power_mode(struct mwifiex_private *priv,
829                                struct host_cmd_ds_command *cmd,
830                                u16 cmd_action, uint16_t ps_bitmap,
831                                struct mwifiex_ds_auto_ds *auto_ds);
832 int mwifiex_ret_enh_power_mode(struct mwifiex_private *priv,
833                                struct host_cmd_ds_command *resp,
834                                struct mwifiex_ds_pm_cfg *pm_cfg);
835 void mwifiex_process_hs_config(struct mwifiex_adapter *adapter);
836 void mwifiex_hs_activated_event(struct mwifiex_private *priv,
837                                         u8 activated);
838 int mwifiex_ret_802_11_hs_cfg(struct mwifiex_private *priv,
839                               struct host_cmd_ds_command *resp);
840 int mwifiex_process_rx_packet(struct mwifiex_private *priv,
841                               struct sk_buff *skb);
842 int mwifiex_sta_prepare_cmd(struct mwifiex_private *, uint16_t cmd_no,
843                             u16 cmd_action, u32 cmd_oid,
844                             void *data_buf, void *cmd_buf);
845 int mwifiex_uap_prepare_cmd(struct mwifiex_private *priv, uint16_t cmd_no,
846                             u16 cmd_action, u32 cmd_oid,
847                             void *data_buf, void *cmd_buf);
848 int mwifiex_process_sta_cmdresp(struct mwifiex_private *, u16 cmdresp_no,
849                                 struct host_cmd_ds_command *resp);
850 int mwifiex_process_sta_rx_packet(struct mwifiex_private *,
851                                   struct sk_buff *skb);
852 int mwifiex_process_uap_rx_packet(struct mwifiex_private *priv,
853                                   struct sk_buff *skb);
854 int mwifiex_handle_uap_rx_forward(struct mwifiex_private *priv,
855                                   struct sk_buff *skb);
856 int mwifiex_process_sta_event(struct mwifiex_private *);
857 int mwifiex_process_uap_event(struct mwifiex_private *);
858 struct mwifiex_sta_node *
859 mwifiex_get_sta_entry(struct mwifiex_private *priv, u8 *mac);
860 void mwifiex_delete_all_station_list(struct mwifiex_private *priv);
861 void *mwifiex_process_sta_txpd(struct mwifiex_private *, struct sk_buff *skb);
862 void *mwifiex_process_uap_txpd(struct mwifiex_private *, struct sk_buff *skb);
863 int mwifiex_sta_init_cmd(struct mwifiex_private *, u8 first_sta);
864 int mwifiex_cmd_802_11_scan(struct host_cmd_ds_command *cmd,
865                             struct mwifiex_scan_cmd_config *scan_cfg);
866 void mwifiex_queue_scan_cmd(struct mwifiex_private *priv,
867                             struct cmd_ctrl_node *cmd_node);
868 int mwifiex_ret_802_11_scan(struct mwifiex_private *priv,
869                             struct host_cmd_ds_command *resp);
870 s32 mwifiex_ssid_cmp(struct cfg80211_ssid *ssid1, struct cfg80211_ssid *ssid2);
871 int mwifiex_associate(struct mwifiex_private *priv,
872                       struct mwifiex_bssdescriptor *bss_desc);
873 int mwifiex_cmd_802_11_associate(struct mwifiex_private *priv,
874                                  struct host_cmd_ds_command *cmd,
875                                  struct mwifiex_bssdescriptor *bss_desc);
876 int mwifiex_ret_802_11_associate(struct mwifiex_private *priv,
877                                  struct host_cmd_ds_command *resp);
878 void mwifiex_reset_connect_state(struct mwifiex_private *priv, u16 reason);
879 u8 mwifiex_band_to_radio_type(u8 band);
880 int mwifiex_deauthenticate(struct mwifiex_private *priv, u8 *mac);
881 int mwifiex_adhoc_start(struct mwifiex_private *priv,
882                         struct cfg80211_ssid *adhoc_ssid);
883 int mwifiex_adhoc_join(struct mwifiex_private *priv,
884                        struct mwifiex_bssdescriptor *bss_desc);
885 int mwifiex_cmd_802_11_ad_hoc_start(struct mwifiex_private *priv,
886                                     struct host_cmd_ds_command *cmd,
887                                     struct cfg80211_ssid *req_ssid);
888 int mwifiex_cmd_802_11_ad_hoc_join(struct mwifiex_private *priv,
889                                    struct host_cmd_ds_command *cmd,
890                                    struct mwifiex_bssdescriptor *bss_desc);
891 int mwifiex_ret_802_11_ad_hoc(struct mwifiex_private *priv,
892                               struct host_cmd_ds_command *resp);
893 int mwifiex_cmd_802_11_bg_scan_query(struct host_cmd_ds_command *cmd);
894 struct mwifiex_chan_freq_power *mwifiex_get_cfp(struct mwifiex_private *priv,
895                                                 u8 band, u16 channel, u32 freq);
896 u32 mwifiex_index_to_data_rate(struct mwifiex_private *priv,
897                                u8 index, u8 ht_info);
898 u32 mwifiex_index_to_acs_data_rate(struct mwifiex_private *priv,
899                                    u8 index, u8 ht_info);
900 u32 mwifiex_find_freq_from_band_chan(u8, u8);
901 int mwifiex_cmd_append_vsie_tlv(struct mwifiex_private *priv, u16 vsie_mask,
902                                 u8 **buffer);
903 u32 mwifiex_get_active_data_rates(struct mwifiex_private *priv,
904                                     u8 *rates);
905 u32 mwifiex_get_supported_rates(struct mwifiex_private *priv, u8 *rates);
906 u32 mwifiex_get_rates_from_cfg80211(struct mwifiex_private *priv,
907                                     u8 *rates, u8 radio_type);
908 u8 mwifiex_is_rate_auto(struct mwifiex_private *priv);
909 extern u16 region_code_index[MWIFIEX_MAX_REGION_CODE];
910 void mwifiex_save_curr_bcn(struct mwifiex_private *priv);
911 void mwifiex_free_curr_bcn(struct mwifiex_private *priv);
912 int mwifiex_cmd_get_hw_spec(struct mwifiex_private *priv,
913                             struct host_cmd_ds_command *cmd);
914 int mwifiex_ret_get_hw_spec(struct mwifiex_private *priv,
915                             struct host_cmd_ds_command *resp);
916 int is_command_pending(struct mwifiex_adapter *adapter);
917 void mwifiex_init_priv_params(struct mwifiex_private *priv,
918                                                 struct net_device *dev);
919 int mwifiex_set_secure_params(struct mwifiex_private *priv,
920                               struct mwifiex_uap_bss_param *bss_config,
921                               struct cfg80211_ap_settings *params);
922 void mwifiex_set_ht_params(struct mwifiex_private *priv,
923                            struct mwifiex_uap_bss_param *bss_cfg,
924                            struct cfg80211_ap_settings *params);
925 void mwifiex_set_vht_params(struct mwifiex_private *priv,
926                             struct mwifiex_uap_bss_param *bss_cfg,
927                             struct cfg80211_ap_settings *params);
928 void mwifiex_set_uap_rates(struct mwifiex_uap_bss_param *bss_cfg,
929                            struct cfg80211_ap_settings *params);
930 void mwifiex_set_vht_width(struct mwifiex_private *priv,
931                            enum nl80211_chan_width width,
932                            bool ap_11ac_disable);
933 void
934 mwifiex_set_wmm_params(struct mwifiex_private *priv,
935                        struct mwifiex_uap_bss_param *bss_cfg,
936                        struct cfg80211_ap_settings *params);
937 void mwifiex_set_ba_params(struct mwifiex_private *priv);
938 void mwifiex_set_11ac_ba_params(struct mwifiex_private *priv);
939
940 /*
941  * This function checks if the queuing is RA based or not.
942  */
943 static inline u8
944 mwifiex_queuing_ra_based(struct mwifiex_private *priv)
945 {
946         /*
947          * Currently we assume if we are in Infra, then DA=RA. This might not be
948          * true in the future
949          */
950         if ((priv->bss_mode == NL80211_IFTYPE_STATION) &&
951             (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA))
952                 return false;
953
954         return true;
955 }
956
957 /*
958  * This function copies rates.
959  */
960 static inline u32
961 mwifiex_copy_rates(u8 *dest, u32 pos, u8 *src, int len)
962 {
963         int i;
964
965         for (i = 0; i < len && src[i]; i++, pos++) {
966                 if (pos >= MWIFIEX_SUPPORTED_RATES)
967                         break;
968                 dest[pos] = src[i];
969         }
970
971         return pos;
972 }
973
974 /*
975  * This function returns the correct private structure pointer based
976  * upon the BSS type and BSS number.
977  */
978 static inline struct mwifiex_private *
979 mwifiex_get_priv_by_id(struct mwifiex_adapter *adapter,
980                        u8 bss_num, u8 bss_type)
981 {
982         int i;
983
984         for (i = 0; i < adapter->priv_num; i++) {
985                 if (adapter->priv[i]) {
986                         if ((adapter->priv[i]->bss_num == bss_num) &&
987                             (adapter->priv[i]->bss_type == bss_type))
988                                 break;
989                 }
990         }
991         return ((i < adapter->priv_num) ? adapter->priv[i] : NULL);
992 }
993
994 /*
995  * This function returns the first available private structure pointer
996  * based upon the BSS role.
997  */
998 static inline struct mwifiex_private *
999 mwifiex_get_priv(struct mwifiex_adapter *adapter,
1000                  enum mwifiex_bss_role bss_role)
1001 {
1002         int i;
1003
1004         for (i = 0; i < adapter->priv_num; i++) {
1005                 if (adapter->priv[i]) {
1006                         if (bss_role == MWIFIEX_BSS_ROLE_ANY ||
1007                             GET_BSS_ROLE(adapter->priv[i]) == bss_role)
1008                                 break;
1009                 }
1010         }
1011
1012         return ((i < adapter->priv_num) ? adapter->priv[i] : NULL);
1013 }
1014
1015 /*
1016  * This function returns the driver private structure of a network device.
1017  */
1018 static inline struct mwifiex_private *
1019 mwifiex_netdev_get_priv(struct net_device *dev)
1020 {
1021         return (struct mwifiex_private *) (*(unsigned long *) netdev_priv(dev));
1022 }
1023
1024 /*
1025  * This function checks if a skb holds a management frame.
1026  */
1027 static inline bool mwifiex_is_skb_mgmt_frame(struct sk_buff *skb)
1028 {
1029         return (le32_to_cpu(*(__le32 *)skb->data) == PKT_TYPE_MGMT);
1030 }
1031
1032 /* This function retrieves channel closed for operation by Channel
1033  * Switch Announcement.
1034  */
1035 static inline u8
1036 mwifiex_11h_get_csa_closed_channel(struct mwifiex_private *priv)
1037 {
1038         if (!priv->csa_chan)
1039                 return 0;
1040
1041         /* Clear csa channel, if DFS channel move time has passed */
1042         if (jiffies > priv->csa_expire_time) {
1043                 priv->csa_chan = 0;
1044                 priv->csa_expire_time = 0;
1045         }
1046
1047         return priv->csa_chan;
1048 }
1049
1050 int mwifiex_init_shutdown_fw(struct mwifiex_private *priv,
1051                              u32 func_init_shutdown);
1052 int mwifiex_add_card(void *, struct semaphore *, struct mwifiex_if_ops *, u8);
1053 int mwifiex_remove_card(struct mwifiex_adapter *, struct semaphore *);
1054
1055 void mwifiex_get_version(struct mwifiex_adapter *adapter, char *version,
1056                          int maxlen);
1057 int mwifiex_request_set_multicast_list(struct mwifiex_private *priv,
1058                         struct mwifiex_multicast_list *mcast_list);
1059 int mwifiex_copy_mcast_addr(struct mwifiex_multicast_list *mlist,
1060                             struct net_device *dev);
1061 int mwifiex_wait_queue_complete(struct mwifiex_adapter *adapter,
1062                                 struct cmd_ctrl_node *cmd_queued);
1063 int mwifiex_bss_start(struct mwifiex_private *priv, struct cfg80211_bss *bss,
1064                       struct cfg80211_ssid *req_ssid);
1065 int mwifiex_cancel_hs(struct mwifiex_private *priv, int cmd_type);
1066 int mwifiex_enable_hs(struct mwifiex_adapter *adapter);
1067 int mwifiex_disable_auto_ds(struct mwifiex_private *priv);
1068 int mwifiex_drv_get_data_rate(struct mwifiex_private *priv, u32 *rate);
1069 int mwifiex_request_scan(struct mwifiex_private *priv,
1070                          struct cfg80211_ssid *req_ssid);
1071 int mwifiex_scan_networks(struct mwifiex_private *priv,
1072                           const struct mwifiex_user_scan_cfg *user_scan_in);
1073 int mwifiex_set_radio(struct mwifiex_private *priv, u8 option);
1074
1075 int mwifiex_set_encode(struct mwifiex_private *priv, struct key_params *kp,
1076                        const u8 *key, int key_len, u8 key_index,
1077                        const u8 *mac_addr, int disable);
1078
1079 int mwifiex_set_gen_ie(struct mwifiex_private *priv, u8 *ie, int ie_len);
1080
1081 int mwifiex_get_ver_ext(struct mwifiex_private *priv);
1082
1083 int mwifiex_remain_on_chan_cfg(struct mwifiex_private *priv, u16 action,
1084                                struct ieee80211_channel *chan,
1085                                unsigned int duration);
1086
1087 int mwifiex_set_bss_role(struct mwifiex_private *priv, u8 bss_role);
1088
1089 int mwifiex_get_stats_info(struct mwifiex_private *priv,
1090                            struct mwifiex_ds_get_stats *log);
1091
1092 int mwifiex_reg_write(struct mwifiex_private *priv, u32 reg_type,
1093                       u32 reg_offset, u32 reg_value);
1094
1095 int mwifiex_reg_read(struct mwifiex_private *priv, u32 reg_type,
1096                      u32 reg_offset, u32 *value);
1097
1098 int mwifiex_eeprom_read(struct mwifiex_private *priv, u16 offset, u16 bytes,
1099                         u8 *value);
1100
1101 int mwifiex_set_11n_httx_cfg(struct mwifiex_private *priv, int data);
1102
1103 int mwifiex_get_11n_httx_cfg(struct mwifiex_private *priv, int *data);
1104
1105 int mwifiex_set_tx_rate_cfg(struct mwifiex_private *priv, int tx_rate_index);
1106
1107 int mwifiex_get_tx_rate_cfg(struct mwifiex_private *priv, int *tx_rate_index);
1108
1109 int mwifiex_drv_set_power(struct mwifiex_private *priv, u32 *ps_mode);
1110
1111 int mwifiex_drv_get_driver_version(struct mwifiex_adapter *adapter,
1112                                    char *version, int max_len);
1113
1114 int mwifiex_set_tx_power(struct mwifiex_private *priv,
1115                          struct mwifiex_power_cfg *power_cfg);
1116
1117 int mwifiex_main_process(struct mwifiex_adapter *);
1118
1119 int mwifiex_queue_tx_pkt(struct mwifiex_private *priv, struct sk_buff *skb);
1120
1121 int mwifiex_get_bss_info(struct mwifiex_private *,
1122                          struct mwifiex_bss_info *);
1123 int mwifiex_fill_new_bss_desc(struct mwifiex_private *priv,
1124                               struct cfg80211_bss *bss,
1125                               struct mwifiex_bssdescriptor *bss_desc);
1126 int mwifiex_update_bss_desc_with_ie(struct mwifiex_adapter *adapter,
1127                                     struct mwifiex_bssdescriptor *bss_entry);
1128 int mwifiex_check_network_compatibility(struct mwifiex_private *priv,
1129                                         struct mwifiex_bssdescriptor *bss_desc);
1130
1131 u8 mwifiex_chan_type_to_sec_chan_offset(enum nl80211_channel_type chan_type);
1132
1133 struct wireless_dev *mwifiex_add_virtual_intf(struct wiphy *wiphy,
1134                                               const char *name,
1135                                               enum nl80211_iftype type,
1136                                               u32 *flags,
1137                                               struct vif_params *params);
1138 int mwifiex_del_virtual_intf(struct wiphy *wiphy, struct wireless_dev *wdev);
1139
1140 void mwifiex_set_sys_config_invalid_data(struct mwifiex_uap_bss_param *config);
1141
1142 int mwifiex_add_wowlan_magic_pkt_filter(struct mwifiex_adapter *adapter);
1143
1144 int mwifiex_set_mgmt_ies(struct mwifiex_private *priv,
1145                          struct cfg80211_beacon_data *data);
1146 int mwifiex_del_mgmt_ies(struct mwifiex_private *priv);
1147 u8 *mwifiex_11d_code_2_region(u8 code);
1148 void mwifiex_uap_del_sta_data(struct mwifiex_private *priv,
1149                               struct mwifiex_sta_node *node);
1150
1151 void mwifiex_11h_process_join(struct mwifiex_private *priv, u8 **buffer,
1152                               struct mwifiex_bssdescriptor *bss_desc);
1153 int mwifiex_11h_handle_event_chanswann(struct mwifiex_private *priv);
1154
1155 extern const struct ethtool_ops mwifiex_ethtool_ops;
1156
1157 #ifdef CONFIG_DEBUG_FS
1158 void mwifiex_debugfs_init(void);
1159 void mwifiex_debugfs_remove(void);
1160
1161 void mwifiex_dev_debugfs_init(struct mwifiex_private *priv);
1162 void mwifiex_dev_debugfs_remove(struct mwifiex_private *priv);
1163 #endif
1164 #endif /* !_MWIFIEX_MAIN_H_ */