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