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