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