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