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