blob: 46c298e2e24022268e14154126bf0356312fb793 [file] [log] [blame]
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001/*
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"
Amitkumar Karward930fae2011-10-11 17:41:21 -070040#include "pcie.h"
Bing Zhao5e6e3a92011-03-21 18:00:50 -070041
42extern const char driver_version[];
Bing Zhao5e6e3a92011-03-21 18:00:50 -070043
44enum {
Amitkumar Karwar600f5d92011-04-13 17:27:06 -070045 MWIFIEX_ASYNC_CMD,
46 MWIFIEX_SYNC_CMD
Bing Zhao5e6e3a92011-03-21 18:00:50 -070047};
48
Bing Zhao67a50032011-07-13 18:38:34 -070049#define MWIFIEX_MAX_AP 64
50
Bing Zhao5e6e3a92011-03-21 18:00:50 -070051#define MWIFIEX_DEFAULT_WATCHDOG_TIMEOUT (5 * HZ)
52
53#define MWIFIEX_TIMER_10S 10000
54#define MWIFIEX_TIMER_1S 1000
55
Marc Yang62a5b7d2011-05-16 19:17:53 -070056#define MAX_TX_PENDING 100
57#define LOW_TX_PENDING 80
Bing Zhao5e6e3a92011-03-21 18:00:50 -070058
Bing Zhao5e6e3a92011-03-21 18:00:50 -070059#define MWIFIEX_UPLD_SIZE (2312)
60
61#define MAX_EVENT_SIZE 1024
62
63#define ARP_FILTER_MAX_BUF_SIZE 68
64
65#define MWIFIEX_KEY_BUFFER_SIZE 16
66#define MWIFIEX_DEFAULT_LISTEN_INTERVAL 10
67#define MWIFIEX_MAX_REGION_CODE 7
68
69#define DEFAULT_BCN_AVG_FACTOR 8
70#define DEFAULT_DATA_AVG_FACTOR 8
71
72#define FIRST_VALID_CHANNEL 0xff
73#define DEFAULT_AD_HOC_CHANNEL 6
74#define DEFAULT_AD_HOC_CHANNEL_A 36
75
76#define DEFAULT_BCN_MISS_TIMEOUT 5
77
78#define MAX_SCAN_BEACON_BUFFER 8000
79
80#define SCAN_BEACON_ENTRY_PAD 6
81
82#define MWIFIEX_PASSIVE_SCAN_CHAN_TIME 200
83#define MWIFIEX_ACTIVE_SCAN_CHAN_TIME 200
84#define MWIFIEX_SPECIFIC_SCAN_CHAN_TIME 110
85
86#define SCAN_RSSI(RSSI) (0x100 - ((u8)(RSSI)))
87
88#define MWIFIEX_MAX_TOTAL_SCAN_TIME (MWIFIEX_TIMER_10S - MWIFIEX_TIMER_1S)
89
90#define RSN_GTK_OUI_OFFSET 2
91
92#define MWIFIEX_OUI_NOT_PRESENT 0
93#define MWIFIEX_OUI_PRESENT 1
94
95#define IS_CARD_RX_RCVD(adapter) (adapter->cmd_resp_received || \
96 adapter->event_received || \
97 adapter->data_received)
98
99#define MWIFIEX_TYPE_CMD 1
100#define MWIFIEX_TYPE_DATA 0
101#define MWIFIEX_TYPE_EVENT 3
102
103#define DBG_CMD_NUM 5
104
105#define MAX_BITMAP_RATES_SIZE 10
106
107#define MAX_CHANNEL_BAND_BG 14
108
109#define MAX_FREQUENCY_BAND_BG 2484
110
Amitkumar Karward930fae2011-10-11 17:41:21 -0700111#define MWIFIEX_EVENT_HEADER_LEN 4
112
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700113struct mwifiex_dbg {
114 u32 num_cmd_host_to_card_failure;
115 u32 num_cmd_sleep_cfm_host_to_card_failure;
116 u32 num_tx_host_to_card_failure;
117 u32 num_event_deauth;
118 u32 num_event_disassoc;
119 u32 num_event_link_lost;
120 u32 num_cmd_deauth;
121 u32 num_cmd_assoc_success;
122 u32 num_cmd_assoc_failure;
123 u32 num_tx_timeout;
124 u32 num_cmd_timeout;
125 u16 timeout_cmd_id;
126 u16 timeout_cmd_act;
127 u16 last_cmd_id[DBG_CMD_NUM];
128 u16 last_cmd_act[DBG_CMD_NUM];
129 u16 last_cmd_index;
130 u16 last_cmd_resp_id[DBG_CMD_NUM];
131 u16 last_cmd_resp_index;
132 u16 last_event[DBG_CMD_NUM];
133 u16 last_event_index;
134};
135
136enum MWIFIEX_HARDWARE_STATUS {
137 MWIFIEX_HW_STATUS_READY,
138 MWIFIEX_HW_STATUS_INITIALIZING,
139 MWIFIEX_HW_STATUS_FW_READY,
140 MWIFIEX_HW_STATUS_INIT_DONE,
141 MWIFIEX_HW_STATUS_RESET,
142 MWIFIEX_HW_STATUS_CLOSING,
143 MWIFIEX_HW_STATUS_NOT_READY
144};
145
146enum MWIFIEX_802_11_POWER_MODE {
147 MWIFIEX_802_11_POWER_MODE_CAM,
148 MWIFIEX_802_11_POWER_MODE_PSP
149};
150
151struct mwifiex_tx_param {
152 u32 next_pkt_len;
153};
154
155enum MWIFIEX_PS_STATE {
156 PS_STATE_AWAKE,
157 PS_STATE_PRE_SLEEP,
158 PS_STATE_SLEEP_CFM,
159 PS_STATE_SLEEP
160};
161
Amitkumar Karward930fae2011-10-11 17:41:21 -0700162enum mwifiex_iface_type {
163 MWIFIEX_SDIO,
164 MWIFIEX_PCIE,
165};
166
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700167struct mwifiex_add_ba_param {
168 u32 tx_win_size;
169 u32 rx_win_size;
170 u32 timeout;
171};
172
173struct mwifiex_tx_aggr {
174 u8 ampdu_user;
175 u8 ampdu_ap;
176 u8 amsdu;
177};
178
179struct mwifiex_ra_list_tbl {
180 struct list_head list;
181 struct sk_buff_head skb_head;
182 u8 ra[ETH_ALEN];
183 u32 total_pkts_size;
184 u32 is_11n_enabled;
185};
186
187struct mwifiex_tid_tbl {
188 struct list_head ra_list;
189 /* spin lock for tid table */
190 spinlock_t tid_tbl_lock;
191 struct mwifiex_ra_list_tbl *ra_list_curr;
192};
193
194#define WMM_HIGHEST_PRIORITY 7
195#define HIGH_PRIO_TID 7
196#define LOW_PRIO_TID 0
Marc Yang17e8cec2011-05-16 19:17:52 -0700197#define NO_PKT_PRIO_TID (-1)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700198
199struct mwifiex_wmm_desc {
200 struct mwifiex_tid_tbl tid_tbl_ptr[MAX_NUM_TID];
201 u32 packets_out[MAX_NUM_TID];
202 /* spin lock to protect ra_list */
203 spinlock_t ra_list_spinlock;
Johannes Berg99fec5d2012-03-27 14:07:59 +0200204 struct mwifiex_wmm_ac_status ac_status[IEEE80211_NUM_ACS];
205 enum mwifiex_wmm_ac_e ac_down_graded_vals[IEEE80211_NUM_ACS];
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700206 u32 drv_pkt_delay_max;
Johannes Berg99fec5d2012-03-27 14:07:59 +0200207 u8 queue_priority[IEEE80211_NUM_ACS];
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700208 u32 user_pri_pkt_tx_ctrl[WMM_HIGHEST_PRIORITY + 1]; /* UP: 0 to 7 */
Marc Yangf6992542011-05-16 19:17:49 -0700209 /* Number of transmit packets queued */
210 atomic_t tx_pkts_queued;
Marc Yang49729ff2011-05-16 19:17:50 -0700211 /* Tracks highest priority with a packet queued */
212 atomic_t highest_queued_prio;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700213};
214
215struct mwifiex_802_11_security {
216 u8 wpa_enabled;
217 u8 wpa2_enabled;
218 u8 wapi_enabled;
219 u8 wapi_key_on;
Amitkumar Karwar5eb02e42012-02-24 21:36:04 -0800220 u8 wep_enabled;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700221 u32 authentication_mode;
Amitkumar Karwara0f6d6c2012-02-24 21:36:05 -0800222 u8 is_authtype_auto;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700223 u32 encryption_mode;
224};
225
226struct ieee_types_header {
227 u8 element_id;
228 u8 len;
229} __packed;
230
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700231#define MWIFIEX_SUPPORTED_RATES 14
232
233#define MWIFIEX_SUPPORTED_RATES_EXT 32
234
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700235struct ieee_types_vendor_specific {
236 struct ieee_types_vendor_header vend_hdr;
237 u8 data[IEEE_MAX_IE_SIZE - sizeof(struct ieee_types_vendor_header)];
238} __packed;
239
240struct ieee_types_generic {
241 struct ieee_types_header ieee_hdr;
242 u8 data[IEEE_MAX_IE_SIZE - sizeof(struct ieee_types_header)];
243} __packed;
244
245struct mwifiex_bssdescriptor {
246 u8 mac_address[ETH_ALEN];
Amitkumar Karwarb9be5f32012-02-27 22:04:14 -0800247 struct cfg80211_ssid ssid;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700248 u32 privacy;
249 s32 rssi;
250 u32 channel;
251 u32 freq;
252 u16 beacon_period;
253 u8 erp_flags;
254 u32 bss_mode;
255 u8 supported_rates[MWIFIEX_SUPPORTED_RATES];
256 u8 data_rates[MWIFIEX_SUPPORTED_RATES];
257 /* Network band.
258 * BAND_B(0x01): 'b' band
259 * BAND_G(0x02): 'g' band
260 * BAND_A(0X04): 'a' band
261 */
262 u16 bss_band;
Bing Zhao1a5b3062011-05-02 11:00:45 -0700263 u64 network_tsf;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700264 u8 time_stamp[8];
265 union ieee_types_phy_param_set phy_param_set;
266 union ieee_types_ss_param_set ss_param_set;
267 u16 cap_info_bitmap;
268 struct ieee_types_wmm_parameter wmm_ie;
269 u8 disable_11n;
270 struct ieee80211_ht_cap *bcn_ht_cap;
271 u16 ht_cap_offset;
Johannes Berg074d46d2012-03-15 19:45:16 +0100272 struct ieee80211_ht_operation *bcn_ht_oper;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700273 u16 ht_info_offset;
274 u8 *bcn_bss_co_2040;
275 u16 bss_co_2040_offset;
276 u8 *bcn_ext_cap;
277 u16 ext_cap_offset;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700278 struct ieee_types_vendor_specific *bcn_wpa_ie;
279 u16 wpa_offset;
280 struct ieee_types_generic *bcn_rsn_ie;
281 u16 rsn_offset;
282 struct ieee_types_generic *bcn_wapi_ie;
283 u16 wapi_offset;
284 u8 *beacon_buf;
285 u32 beacon_buf_size;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700286};
287
288struct mwifiex_current_bss_params {
289 struct mwifiex_bssdescriptor bss_descriptor;
290 u8 wmm_enabled;
291 u8 wmm_uapsd_enabled;
292 u8 band;
293 u32 num_of_rates;
294 u8 data_rates[MWIFIEX_SUPPORTED_RATES];
295};
296
297struct mwifiex_sleep_params {
298 u16 sp_error;
299 u16 sp_offset;
300 u16 sp_stable_time;
301 u8 sp_cal_control;
302 u8 sp_ext_sleep_clk;
303 u16 sp_reserved;
304};
305
306struct mwifiex_sleep_period {
307 u16 period;
308 u16 reserved;
309};
310
311struct mwifiex_wep_key {
312 u32 length;
313 u32 key_index;
314 u32 key_length;
315 u8 key_material[MWIFIEX_KEY_BUFFER_SIZE];
316};
317
318#define MAX_REGION_CHANNEL_NUM 2
319
320struct mwifiex_chan_freq_power {
321 u16 channel;
322 u32 freq;
323 u16 max_tx_power;
324 u8 unsupported;
325};
326
327enum state_11d_t {
328 DISABLE_11D = 0,
329 ENABLE_11D = 1,
330};
331
332#define MWIFIEX_MAX_TRIPLET_802_11D 83
333
334struct mwifiex_802_11d_domain_reg {
335 u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
336 u8 no_of_triplet;
337 struct ieee80211_country_ie_triplet
338 triplet[MWIFIEX_MAX_TRIPLET_802_11D];
339};
340
341struct mwifiex_vendor_spec_cfg_ie {
342 u16 mask;
343 u16 flag;
344 u8 ie[MWIFIEX_MAX_VSIE_LEN];
345};
346
347struct wps {
348 u8 session_enable;
349};
350
351struct mwifiex_adapter;
352struct mwifiex_private;
353
354struct mwifiex_private {
355 struct mwifiex_adapter *adapter;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700356 u8 bss_type;
357 u8 bss_role;
358 u8 bss_priority;
359 u8 bss_num;
360 u8 frame_type;
361 u8 curr_addr[ETH_ALEN];
362 u8 media_connected;
363 u32 num_tx_timeout;
364 struct net_device *netdev;
365 struct net_device_stats stats;
366 u16 curr_pkt_filter;
367 u32 bss_mode;
368 u32 pkt_tx_ctrl;
369 u16 tx_power_level;
370 u8 max_tx_power_level;
371 u8 min_tx_power_level;
372 u8 tx_rate;
373 u8 tx_htinfo;
374 u8 rxpd_htinfo;
375 u8 rxpd_rate;
376 u16 rate_bitmap;
377 u16 bitmap_rates[MAX_BITMAP_RATES_SIZE];
378 u32 data_rate;
379 u8 is_data_rate_auto;
380 u16 bcn_avg_factor;
381 u16 data_avg_factor;
382 s16 data_rssi_last;
383 s16 data_nf_last;
384 s16 data_rssi_avg;
385 s16 data_nf_avg;
386 s16 bcn_rssi_last;
387 s16 bcn_nf_last;
388 s16 bcn_rssi_avg;
389 s16 bcn_nf_avg;
390 struct mwifiex_bssdescriptor *attempted_bss_desc;
Amitkumar Karwarb9be5f32012-02-27 22:04:14 -0800391 struct cfg80211_ssid prev_ssid;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700392 u8 prev_bssid[ETH_ALEN];
393 struct mwifiex_current_bss_params curr_bss_params;
394 u16 beacon_period;
Amitkumar Karwarcaf60a62012-02-02 20:48:58 -0800395 u8 dtim_period;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700396 u16 listen_interval;
397 u16 atim_window;
398 u8 adhoc_channel;
399 u8 adhoc_is_link_sensed;
400 u8 adhoc_state;
401 struct mwifiex_802_11_security sec_info;
402 struct mwifiex_wep_key wep_key[NUM_WEP_KEYS];
403 u16 wep_key_curr_index;
404 u8 wpa_ie[256];
405 u8 wpa_ie_len;
406 u8 wpa_is_gtk_set;
407 struct host_cmd_ds_802_11_key_material aes_key;
408 u8 wapi_ie[256];
409 u8 wapi_ie_len;
Avinash Patil13d7ba72012-04-09 20:06:56 -0700410 u8 *wps_ie;
411 u8 wps_ie_len;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700412 u8 wmm_required;
413 u8 wmm_enabled;
414 u8 wmm_qosinfo;
415 struct mwifiex_wmm_desc wmm;
416 struct list_head tx_ba_stream_tbl_ptr;
417 /* spin lock for tx_ba_stream_tbl_ptr queue */
418 spinlock_t tx_ba_stream_tbl_lock;
419 struct mwifiex_tx_aggr aggr_prio_tbl[MAX_NUM_TID];
420 struct mwifiex_add_ba_param add_ba_param;
421 u16 rx_seq[MAX_NUM_TID];
422 struct list_head rx_reorder_tbl_ptr;
423 /* spin lock for rx_reorder_tbl_ptr queue */
424 spinlock_t rx_reorder_tbl_lock;
425 /* spin lock for Rx packets */
426 spinlock_t rx_pkt_lock;
427
428#define MWIFIEX_ASSOC_RSP_BUF_SIZE 500
429 u8 assoc_rsp_buf[MWIFIEX_ASSOC_RSP_BUF_SIZE];
430 u32 assoc_rsp_size;
431
432#define MWIFIEX_GENIE_BUF_SIZE 256
433 u8 gen_ie_buf[MWIFIEX_GENIE_BUF_SIZE];
434 u8 gen_ie_buf_len;
435
436 struct mwifiex_vendor_spec_cfg_ie vs_ie[MWIFIEX_MAX_VSIE_NUM];
437
438#define MWIFIEX_ASSOC_TLV_BUF_SIZE 256
439 u8 assoc_tlv_buf[MWIFIEX_ASSOC_TLV_BUF_SIZE];
440 u8 assoc_tlv_buf_len;
441
442 u8 *curr_bcn_buf;
443 u32 curr_bcn_size;
444 /* spin lock for beacon buffer */
445 spinlock_t curr_bcn_buf_lock;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700446 struct wireless_dev *wdev;
447 struct mwifiex_chan_freq_power cfp;
448 char version_str[128];
449#ifdef CONFIG_DEBUG_FS
450 struct dentry *dfs_dev_dir;
451#endif
452 u8 nick_name[16];
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700453 u16 current_key_index;
454 struct semaphore async_sem;
455 u8 scan_pending_on_block;
456 u8 report_scan_result;
457 struct cfg80211_scan_request *scan_request;
Amitkumar Karwar38c9d662011-12-13 20:43:17 -0800458 struct mwifiex_user_scan_cfg *user_scan_cfg;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700459 u8 cfg_bssid[6];
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700460 u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
461 struct wps wps;
462 u8 scan_block;
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700463 s32 cqm_rssi_thold;
464 u32 cqm_rssi_hyst;
465 u8 subsc_evt_rssi_state;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700466};
467
468enum mwifiex_ba_status {
Yogesh Ashok Powar3e822632012-03-12 19:35:08 -0700469 BA_SETUP_NONE = 0,
470 BA_SETUP_INPROGRESS,
471 BA_SETUP_COMPLETE
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700472};
473
474struct mwifiex_tx_ba_stream_tbl {
475 struct list_head list;
476 int tid;
477 u8 ra[ETH_ALEN];
478 enum mwifiex_ba_status ba_status;
479};
480
481struct mwifiex_rx_reorder_tbl;
482
483struct reorder_tmr_cnxt {
484 struct timer_list timer;
485 struct mwifiex_rx_reorder_tbl *ptr;
486 struct mwifiex_private *priv;
487};
488
489struct mwifiex_rx_reorder_tbl {
490 struct list_head list;
491 int tid;
492 u8 ta[ETH_ALEN];
493 int start_win;
494 int win_size;
495 void **rx_reorder_ptr;
496 struct reorder_tmr_cnxt timer_context;
497};
498
499struct mwifiex_bss_prio_node {
500 struct list_head list;
501 struct mwifiex_private *priv;
502};
503
504struct mwifiex_bss_prio_tbl {
505 struct list_head bss_prio_head;
506 /* spin lock for bss priority */
507 spinlock_t bss_prio_lock;
508 struct mwifiex_bss_prio_node *bss_prio_cur;
509};
510
511struct cmd_ctrl_node {
512 struct list_head list;
513 struct mwifiex_private *priv;
514 u32 cmd_oid;
515 u32 cmd_flag;
516 struct sk_buff *cmd_skb;
517 struct sk_buff *resp_skb;
518 void *data_buf;
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700519 u32 wait_q_enabled;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700520 struct sk_buff *skb;
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -0700521 u8 *condition;
522 u8 cmd_wait_q_woken;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700523};
524
525struct mwifiex_if_ops {
526 int (*init_if) (struct mwifiex_adapter *);
527 void (*cleanup_if) (struct mwifiex_adapter *);
Amitkumar Karward930fae2011-10-11 17:41:21 -0700528 int (*check_fw_status) (struct mwifiex_adapter *, u32);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700529 int (*prog_fw) (struct mwifiex_adapter *, struct mwifiex_fw_image *);
530 int (*register_dev) (struct mwifiex_adapter *);
531 void (*unregister_dev) (struct mwifiex_adapter *);
532 int (*enable_int) (struct mwifiex_adapter *);
533 int (*process_int_status) (struct mwifiex_adapter *);
Amitkumar Karward930fae2011-10-11 17:41:21 -0700534 int (*host_to_card) (struct mwifiex_adapter *, u8, struct sk_buff *,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700535 struct mwifiex_tx_param *);
536 int (*wakeup) (struct mwifiex_adapter *);
537 int (*wakeup_complete) (struct mwifiex_adapter *);
538
Amitkumar Karward930fae2011-10-11 17:41:21 -0700539 /* Interface specific functions */
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700540 void (*update_mp_end_port) (struct mwifiex_adapter *, u16);
541 void (*cleanup_mpa_buf) (struct mwifiex_adapter *);
Amitkumar Karward930fae2011-10-11 17:41:21 -0700542 int (*cmdrsp_complete) (struct mwifiex_adapter *, struct sk_buff *);
543 int (*event_complete) (struct mwifiex_adapter *, struct sk_buff *);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700544};
545
546struct mwifiex_adapter {
Amitkumar Karward930fae2011-10-11 17:41:21 -0700547 u8 iface_type;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700548 struct mwifiex_private *priv[MWIFIEX_MAX_BSS_NUM];
549 u8 priv_num;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700550 const struct firmware *firmware;
Amitkumar Karwar4a7f5db2011-05-23 18:00:17 -0700551 char fw_name[32];
Amitkumar Karward930fae2011-10-11 17:41:21 -0700552 int winner;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700553 struct device *dev;
554 bool surprise_removed;
555 u32 fw_release_number;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700556 u16 init_wait_q_woken;
557 wait_queue_head_t init_wait_q;
558 void *card;
559 struct mwifiex_if_ops if_ops;
560 atomic_t rx_pending;
561 atomic_t tx_pending;
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700562 atomic_t cmd_pending;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700563 struct workqueue_struct *workqueue;
564 struct work_struct main_work;
565 struct mwifiex_bss_prio_tbl bss_prio_tbl[MWIFIEX_MAX_BSS_NUM];
566 /* spin lock for init/shutdown */
567 spinlock_t mwifiex_lock;
568 /* spin lock for main process */
569 spinlock_t main_proc_lock;
570 u32 mwifiex_processing;
571 u16 max_tx_buf_size;
572 u16 tx_buf_size;
573 u16 curr_tx_buf_size;
574 u32 ioport;
575 enum MWIFIEX_HARDWARE_STATUS hw_status;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700576 u16 number_of_antenna;
577 u32 fw_cap_info;
578 /* spin lock for interrupt handling */
579 spinlock_t int_lock;
580 u8 int_status;
581 u32 event_cause;
582 struct sk_buff *event_skb;
583 u8 upld_buf[MWIFIEX_UPLD_SIZE];
584 u8 data_sent;
585 u8 cmd_sent;
586 u8 cmd_resp_received;
587 u8 event_received;
588 u8 data_received;
589 u16 seq_num;
590 struct cmd_ctrl_node *cmd_pool;
591 struct cmd_ctrl_node *curr_cmd;
592 /* spin lock for command */
593 spinlock_t mwifiex_cmd_lock;
594 u32 num_cmd_timeout;
595 u16 last_init_cmd;
596 struct timer_list cmd_timer;
597 struct list_head cmd_free_q;
598 /* spin lock for cmd_free_q */
599 spinlock_t cmd_free_q_lock;
600 struct list_head cmd_pending_q;
601 /* spin lock for cmd_pending_q */
602 spinlock_t cmd_pending_q_lock;
603 struct list_head scan_pending_q;
604 /* spin lock for scan_pending_q */
605 spinlock_t scan_pending_q_lock;
606 u32 scan_processing;
607 u16 region_code;
608 struct mwifiex_802_11d_domain_reg domain_reg;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700609 u16 scan_probes;
610 u32 scan_mode;
611 u16 specific_scan_time;
612 u16 active_scan_time;
613 u16 passive_scan_time;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700614 u8 fw_bands;
615 u8 adhoc_start_band;
616 u8 config_bands;
617 struct mwifiex_chan_scan_param_set *scan_channels;
618 u8 tx_lock_flag;
619 struct mwifiex_sleep_params sleep_params;
620 struct mwifiex_sleep_period sleep_period;
621 u16 ps_mode;
622 u32 ps_state;
623 u8 need_to_wakeup;
624 u16 multiple_dtim;
625 u16 local_listen_interval;
626 u16 null_pkt_interval;
627 struct sk_buff *sleep_cfm;
628 u16 bcn_miss_time_out;
629 u16 adhoc_awake_period;
630 u8 is_deep_sleep;
631 u8 delay_null_pkt;
632 u16 delay_to_ps;
633 u16 enhanced_ps_mode;
634 u8 pm_wakeup_card_req;
635 u16 gen_null_pkt;
636 u16 pps_uapsd_mode;
637 u32 pm_wakeup_fw_try;
638 u8 is_hs_configured;
639 struct mwifiex_hs_config_param hs_cfg;
640 u8 hs_activated;
641 u16 hs_activate_wait_q_woken;
642 wait_queue_head_t hs_activate_wait_q;
643 bool is_suspended;
644 u8 event_body[MAX_EVENT_SIZE];
645 u32 hw_dot_11n_dev_cap;
646 u8 hw_dev_mcs_support;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700647 u8 adhoc_11n_enabled;
Amitkumar Karwar21c3ba32011-12-20 23:47:21 -0800648 u8 sec_chan_offset;
Amitkumar Karwar3aebee02011-12-20 23:47:22 -0800649 enum nl80211_channel_type channel_type;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700650 struct mwifiex_dbg dbg;
651 u8 arp_filter[ARP_FILTER_MAX_BUF_SIZE];
652 u32 arp_filter_size;
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700653 u16 cmd_wait_q_required;
654 struct mwifiex_wait_queue cmd_wait_q;
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -0700655 u8 scan_wait_q_woken;
656 struct cmd_ctrl_node *cmd_queued;
Avinash Patilbbea3bc2011-12-08 20:41:05 -0800657 spinlock_t queue_lock; /* lock for tx queues */
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700658 struct completion fw_load;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700659};
660
661int mwifiex_init_lock_list(struct mwifiex_adapter *adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700662
Avinash Patilbbea3bc2011-12-08 20:41:05 -0800663void mwifiex_set_trans_start(struct net_device *dev);
664
665void mwifiex_stop_net_dev_queue(struct net_device *netdev,
666 struct mwifiex_adapter *adapter);
667
668void mwifiex_wake_up_net_dev_queue(struct net_device *netdev,
669 struct mwifiex_adapter *adapter);
670
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700671int mwifiex_init_fw(struct mwifiex_adapter *adapter);
672
673int mwifiex_init_fw_complete(struct mwifiex_adapter *adapter);
674
675int mwifiex_shutdown_drv(struct mwifiex_adapter *adapter);
676
677int mwifiex_shutdown_fw_complete(struct mwifiex_adapter *adapter);
678
679int mwifiex_dnld_fw(struct mwifiex_adapter *, struct mwifiex_fw_image *);
680
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700681int mwifiex_recv_packet(struct mwifiex_adapter *, struct sk_buff *skb);
682
683int mwifiex_process_event(struct mwifiex_adapter *adapter);
684
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -0700685int mwifiex_complete_cmd(struct mwifiex_adapter *adapter,
686 struct cmd_ctrl_node *cmd_node);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700687
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700688int mwifiex_send_cmd_async(struct mwifiex_private *priv, uint16_t cmd_no,
689 u16 cmd_action, u32 cmd_oid, void *data_buf);
690
691int mwifiex_send_cmd_sync(struct mwifiex_private *priv, uint16_t cmd_no,
692 u16 cmd_action, u32 cmd_oid, void *data_buf);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700693
694void mwifiex_cmd_timeout_func(unsigned long function_context);
695
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700696int mwifiex_get_debug_info(struct mwifiex_private *,
697 struct mwifiex_debug_info *);
698
699int mwifiex_alloc_cmd_buffer(struct mwifiex_adapter *adapter);
700int mwifiex_free_cmd_buffer(struct mwifiex_adapter *adapter);
701void mwifiex_cancel_all_pending_cmd(struct mwifiex_adapter *adapter);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700702void mwifiex_cancel_pending_ioctl(struct mwifiex_adapter *adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700703
704void mwifiex_insert_cmd_to_free_q(struct mwifiex_adapter *adapter,
705 struct cmd_ctrl_node *cmd_node);
706
707void mwifiex_insert_cmd_to_pending_q(struct mwifiex_adapter *adapter,
708 struct cmd_ctrl_node *cmd_node,
709 u32 addtail);
710
711int mwifiex_exec_next_cmd(struct mwifiex_adapter *adapter);
712int mwifiex_process_cmdresp(struct mwifiex_adapter *adapter);
713int mwifiex_handle_rx_packet(struct mwifiex_adapter *adapter,
714 struct sk_buff *skb);
715int mwifiex_process_tx(struct mwifiex_private *priv, struct sk_buff *skb,
716 struct mwifiex_tx_param *tx_param);
717int mwifiex_send_null_packet(struct mwifiex_private *priv, u8 flags);
718int mwifiex_write_data_complete(struct mwifiex_adapter *adapter,
719 struct sk_buff *skb, int status);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700720void mwifiex_clean_txrx(struct mwifiex_private *priv);
721u8 mwifiex_check_last_packet_indication(struct mwifiex_private *priv);
722void mwifiex_check_ps_cond(struct mwifiex_adapter *adapter);
723void mwifiex_process_sleep_confirm_resp(struct mwifiex_adapter *, u8 *,
724 u32);
725int mwifiex_cmd_enh_power_mode(struct mwifiex_private *priv,
726 struct host_cmd_ds_command *cmd,
727 u16 cmd_action, uint16_t ps_bitmap,
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700728 struct mwifiex_ds_auto_ds *auto_ds);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700729int mwifiex_ret_enh_power_mode(struct mwifiex_private *priv,
730 struct host_cmd_ds_command *resp,
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700731 struct mwifiex_ds_pm_cfg *pm_cfg);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700732void mwifiex_process_hs_config(struct mwifiex_adapter *adapter);
733void mwifiex_hs_activated_event(struct mwifiex_private *priv,
734 u8 activated);
735int mwifiex_ret_802_11_hs_cfg(struct mwifiex_private *priv,
736 struct host_cmd_ds_command *resp);
737int mwifiex_process_rx_packet(struct mwifiex_adapter *adapter,
738 struct sk_buff *skb);
739int mwifiex_sta_prepare_cmd(struct mwifiex_private *, uint16_t cmd_no,
740 u16 cmd_action, u32 cmd_oid,
741 void *data_buf, void *cmd_buf);
742int mwifiex_process_sta_cmdresp(struct mwifiex_private *, u16 cmdresp_no,
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700743 struct host_cmd_ds_command *resp);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700744int mwifiex_process_sta_rx_packet(struct mwifiex_adapter *,
745 struct sk_buff *skb);
746int mwifiex_process_sta_event(struct mwifiex_private *);
747void *mwifiex_process_sta_txpd(struct mwifiex_private *, struct sk_buff *skb);
748int mwifiex_sta_init_cmd(struct mwifiex_private *, u8 first_sta);
Amitkumar Karwar572e8f32011-04-13 17:27:08 -0700749int mwifiex_cmd_802_11_scan(struct host_cmd_ds_command *cmd,
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700750 struct mwifiex_scan_cmd_config *scan_cfg);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700751void mwifiex_queue_scan_cmd(struct mwifiex_private *priv,
752 struct cmd_ctrl_node *cmd_node);
753int mwifiex_ret_802_11_scan(struct mwifiex_private *priv,
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700754 struct host_cmd_ds_command *resp);
Amitkumar Karwarb9be5f32012-02-27 22:04:14 -0800755s32 mwifiex_ssid_cmp(struct cfg80211_ssid *ssid1, struct cfg80211_ssid *ssid2);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700756int mwifiex_associate(struct mwifiex_private *priv,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700757 struct mwifiex_bssdescriptor *bss_desc);
758int mwifiex_cmd_802_11_associate(struct mwifiex_private *priv,
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700759 struct host_cmd_ds_command *cmd,
760 struct mwifiex_bssdescriptor *bss_desc);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700761int mwifiex_ret_802_11_associate(struct mwifiex_private *priv,
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700762 struct host_cmd_ds_command *resp);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700763void mwifiex_reset_connect_state(struct mwifiex_private *priv);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700764u8 mwifiex_band_to_radio_type(u8 band);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700765int mwifiex_deauthenticate(struct mwifiex_private *priv, u8 *mac);
766int mwifiex_adhoc_start(struct mwifiex_private *priv,
Amitkumar Karwarb9be5f32012-02-27 22:04:14 -0800767 struct cfg80211_ssid *adhoc_ssid);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700768int mwifiex_adhoc_join(struct mwifiex_private *priv,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700769 struct mwifiex_bssdescriptor *bss_desc);
770int mwifiex_cmd_802_11_ad_hoc_start(struct mwifiex_private *priv,
771 struct host_cmd_ds_command *cmd,
Amitkumar Karwarb9be5f32012-02-27 22:04:14 -0800772 struct cfg80211_ssid *req_ssid);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700773int mwifiex_cmd_802_11_ad_hoc_join(struct mwifiex_private *priv,
774 struct host_cmd_ds_command *cmd,
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700775 struct mwifiex_bssdescriptor *bss_desc);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700776int mwifiex_ret_802_11_ad_hoc(struct mwifiex_private *priv,
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700777 struct host_cmd_ds_command *resp);
Amitkumar Karwar572e8f32011-04-13 17:27:08 -0700778int mwifiex_cmd_802_11_bg_scan_query(struct host_cmd_ds_command *cmd);
Yogesh Ashok Powar6685d102012-03-12 19:35:10 -0700779struct mwifiex_chan_freq_power *mwifiex_get_cfp(struct mwifiex_private *priv,
780 u8 band, u16 channel, u32 freq);
Bing Zhaoe3bea1c2011-11-16 20:40:35 -0800781u32 mwifiex_index_to_data_rate(struct mwifiex_private *priv, u8 index,
782 u8 ht_info);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700783u32 mwifiex_find_freq_from_band_chan(u8, u8);
784int mwifiex_cmd_append_vsie_tlv(struct mwifiex_private *priv, u16 vsie_mask,
785 u8 **buffer);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700786u32 mwifiex_get_active_data_rates(struct mwifiex_private *priv,
787 u8 *rates);
788u32 mwifiex_get_supported_rates(struct mwifiex_private *priv, u8 *rates);
Amitkumar Karwar572e8f32011-04-13 17:27:08 -0700789u8 mwifiex_data_rate_to_index(u32 rate);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700790u8 mwifiex_is_rate_auto(struct mwifiex_private *priv);
Amitkumar Karwar572e8f32011-04-13 17:27:08 -0700791int mwifiex_get_rate_index(u16 *rateBitmap, int size);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700792extern u16 region_code_index[MWIFIEX_MAX_REGION_CODE];
793void mwifiex_save_curr_bcn(struct mwifiex_private *priv);
794void mwifiex_free_curr_bcn(struct mwifiex_private *priv);
795int mwifiex_cmd_get_hw_spec(struct mwifiex_private *priv,
796 struct host_cmd_ds_command *cmd);
797int mwifiex_ret_get_hw_spec(struct mwifiex_private *priv,
798 struct host_cmd_ds_command *resp);
799int is_command_pending(struct mwifiex_adapter *adapter);
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700800void mwifiex_init_priv_params(struct mwifiex_private *priv,
801 struct net_device *dev);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700802
803/*
804 * This function checks if the queuing is RA based or not.
805 */
806static inline u8
807mwifiex_queuing_ra_based(struct mwifiex_private *priv)
808{
809 /*
810 * Currently we assume if we are in Infra, then DA=RA. This might not be
811 * true in the future
812 */
Bing Zhaoeecd8252011-03-28 17:55:41 -0700813 if ((priv->bss_mode == NL80211_IFTYPE_STATION) &&
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700814 (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA))
815 return false;
816
817 return true;
818}
819
820/*
821 * This function copies rates.
822 */
823static inline u32
824mwifiex_copy_rates(u8 *dest, u32 pos, u8 *src, int len)
825{
826 int i;
827
828 for (i = 0; i < len && src[i]; i++, pos++) {
829 if (pos >= MWIFIEX_SUPPORTED_RATES)
830 break;
831 dest[pos] = src[i];
832 }
833
834 return pos;
835}
836
837/*
838 * This function returns the correct private structure pointer based
839 * upon the BSS type and BSS number.
840 */
841static inline struct mwifiex_private *
842mwifiex_get_priv_by_id(struct mwifiex_adapter *adapter,
Amitkumar Karwar2be78592011-04-15 20:50:42 -0700843 u8 bss_num, u8 bss_type)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700844{
845 int i;
846
847 for (i = 0; i < adapter->priv_num; i++) {
848 if (adapter->priv[i]) {
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700849 if ((adapter->priv[i]->bss_num == bss_num) &&
850 (adapter->priv[i]->bss_type == bss_type))
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700851 break;
852 }
853 }
854 return ((i < adapter->priv_num) ? adapter->priv[i] : NULL);
855}
856
857/*
858 * This function returns the first available private structure pointer
859 * based upon the BSS role.
860 */
861static inline struct mwifiex_private *
862mwifiex_get_priv(struct mwifiex_adapter *adapter,
863 enum mwifiex_bss_role bss_role)
864{
865 int i;
866
867 for (i = 0; i < adapter->priv_num; i++) {
868 if (adapter->priv[i]) {
869 if (bss_role == MWIFIEX_BSS_ROLE_ANY ||
870 GET_BSS_ROLE(adapter->priv[i]) == bss_role)
871 break;
872 }
873 }
874
875 return ((i < adapter->priv_num) ? adapter->priv[i] : NULL);
876}
877
878/*
879 * This function returns the driver private structure of a network device.
880 */
881static inline struct mwifiex_private *
882mwifiex_netdev_get_priv(struct net_device *dev)
883{
884 return (struct mwifiex_private *) (*(unsigned long *) netdev_priv(dev));
885}
886
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700887int mwifiex_init_shutdown_fw(struct mwifiex_private *priv,
888 u32 func_init_shutdown);
Amitkumar Karward930fae2011-10-11 17:41:21 -0700889int mwifiex_add_card(void *, struct semaphore *, struct mwifiex_if_ops *, u8);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700890int mwifiex_remove_card(struct mwifiex_adapter *, struct semaphore *);
891
892void mwifiex_get_version(struct mwifiex_adapter *adapter, char *version,
893 int maxlen);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700894int mwifiex_request_set_multicast_list(struct mwifiex_private *priv,
895 struct mwifiex_multicast_list *mcast_list);
896int mwifiex_copy_mcast_addr(struct mwifiex_multicast_list *mlist,
897 struct net_device *dev);
898int mwifiex_wait_queue_complete(struct mwifiex_adapter *adapter);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700899int mwifiex_bss_start(struct mwifiex_private *priv, struct cfg80211_bss *bss,
Amitkumar Karwarb9be5f32012-02-27 22:04:14 -0800900 struct cfg80211_ssid *req_ssid);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700901int mwifiex_cancel_hs(struct mwifiex_private *priv, int cmd_type);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700902int mwifiex_enable_hs(struct mwifiex_adapter *adapter);
Amitkumar Karwara0490932011-07-13 20:51:59 -0700903int mwifiex_disable_auto_ds(struct mwifiex_private *priv);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700904int mwifiex_drv_get_data_rate(struct mwifiex_private *priv,
905 struct mwifiex_rate_cfg *rate);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700906int mwifiex_request_scan(struct mwifiex_private *priv,
Amitkumar Karwarb9be5f32012-02-27 22:04:14 -0800907 struct cfg80211_ssid *req_ssid);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700908int mwifiex_set_user_scan_ioctl(struct mwifiex_private *priv,
909 struct mwifiex_user_scan_cfg *scan_req);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700910int mwifiex_set_radio(struct mwifiex_private *priv, u8 option);
911
Dan Carpenter380aeef2012-03-01 10:22:30 +0300912int mwifiex_drv_change_adhoc_chan(struct mwifiex_private *priv, u16 channel);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700913
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700914int mwifiex_set_encode(struct mwifiex_private *priv, const u8 *key,
915 int key_len, u8 key_index, int disable);
916
917int mwifiex_set_gen_ie(struct mwifiex_private *priv, u8 *ie, int ie_len);
918
919int mwifiex_get_ver_ext(struct mwifiex_private *priv);
920
921int mwifiex_get_stats_info(struct mwifiex_private *priv,
922 struct mwifiex_ds_get_stats *log);
923
924int mwifiex_reg_write(struct mwifiex_private *priv, u32 reg_type,
925 u32 reg_offset, u32 reg_value);
926
927int mwifiex_reg_read(struct mwifiex_private *priv, u32 reg_type,
928 u32 reg_offset, u32 *value);
929
930int mwifiex_eeprom_read(struct mwifiex_private *priv, u16 offset, u16 bytes,
931 u8 *value);
932
933int mwifiex_set_11n_httx_cfg(struct mwifiex_private *priv, int data);
934
935int mwifiex_get_11n_httx_cfg(struct mwifiex_private *priv, int *data);
936
937int mwifiex_set_tx_rate_cfg(struct mwifiex_private *priv, int tx_rate_index);
938
939int mwifiex_get_tx_rate_cfg(struct mwifiex_private *priv, int *tx_rate_index);
940
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700941int mwifiex_drv_set_power(struct mwifiex_private *priv, u32 *ps_mode);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700942
943int mwifiex_drv_get_driver_version(struct mwifiex_adapter *adapter,
944 char *version, int max_len);
945
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700946int mwifiex_set_tx_power(struct mwifiex_private *priv,
947 struct mwifiex_power_cfg *power_cfg);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700948
949int mwifiex_main_process(struct mwifiex_adapter *);
950
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700951int mwifiex_bss_set_channel(struct mwifiex_private *,
952 struct mwifiex_chan_freq_power *cfp);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700953int mwifiex_get_bss_info(struct mwifiex_private *,
954 struct mwifiex_bss_info *);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700955int mwifiex_fill_new_bss_desc(struct mwifiex_private *priv,
956 u8 *bssid, s32 rssi, u8 *ie_buf,
957 size_t ie_len, u16 beacon_period,
Amitkumar Karwar5116f3c2011-09-21 21:43:23 -0700958 u16 cap_info_bitmap, u8 band,
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700959 struct mwifiex_bssdescriptor *bss_desc);
960int mwifiex_update_bss_desc_with_ie(struct mwifiex_adapter *adapter,
961 struct mwifiex_bssdescriptor *bss_entry,
962 u8 *ie_buf, u32 ie_len);
963int mwifiex_check_network_compatibility(struct mwifiex_private *priv,
964 struct mwifiex_bssdescriptor *bss_desc);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700965
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700966struct net_device *mwifiex_add_virtual_intf(struct wiphy *wiphy,
967 char *name, enum nl80211_iftype type,
968 u32 *flags, struct vif_params *params);
969int mwifiex_del_virtual_intf(struct wiphy *wiphy, struct net_device *dev);
970
Amitkumar Karwar9e04a7c2012-04-09 20:06:54 -0700971u8 *mwifiex_11d_code_2_region(u8 code);
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700972
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700973#ifdef CONFIG_DEBUG_FS
974void mwifiex_debugfs_init(void);
975void mwifiex_debugfs_remove(void);
976
977void mwifiex_dev_debugfs_init(struct mwifiex_private *priv);
978void mwifiex_dev_debugfs_remove(struct mwifiex_private *priv);
979#endif
980#endif /* !_MWIFIEX_MAIN_H_ */