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