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