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