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 | * |
Xinming Hu | 65da33f | 2014-06-19 21:38:57 -0700 | [diff] [blame] | 4 | * Copyright (C) 2011-2014, Marvell International Ltd. |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 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> |
Amitkumar Karwar | 92c2538 | 2014-06-19 21:38:52 -0700 | [diff] [blame] | 33 | #include <linux/vmalloc.h> |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 34 | #include <linux/firmware.h> |
| 35 | #include <linux/ctype.h> |
Bing Zhao | 699b027 | 2013-12-13 18:33:01 -0800 | [diff] [blame] | 36 | #include <linux/of.h> |
Amitkumar Karwar | 808bbeb | 2014-11-25 06:43:05 -0800 | [diff] [blame] | 37 | #include <linux/idr.h> |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 38 | |
| 39 | #include "decl.h" |
| 40 | #include "ioctl.h" |
| 41 | #include "util.h" |
| 42 | #include "fw.h" |
Amitkumar Karwar | d930fae | 2011-10-11 17:41:21 -0700 | [diff] [blame] | 43 | #include "pcie.h" |
Xinming Hu | 11cd07a | 2014-12-23 19:14:10 +0530 | [diff] [blame] | 44 | #include "usb.h" |
| 45 | #include "sdio.h" |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 46 | |
| 47 | extern const char driver_version[]; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 48 | |
| 49 | enum { |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 50 | MWIFIEX_ASYNC_CMD, |
| 51 | MWIFIEX_SYNC_CMD |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 52 | }; |
| 53 | |
Avinash Patil | 0013c7c | 2014-11-05 19:38:11 +0530 | [diff] [blame] | 54 | #define MWIFIEX_DRIVER_MODE_STA BIT(0) |
| 55 | #define MWIFIEX_DRIVER_MODE_UAP BIT(1) |
| 56 | #define MWIFIEX_DRIVER_MODE_P2P BIT(2) |
| 57 | #define MWIFIEX_DRIVER_MODE_BITMASK (BIT(0) | BIT(1) | BIT(2)) |
| 58 | |
Bing Zhao | 67a5003 | 2011-07-13 18:38:34 -0700 | [diff] [blame] | 59 | #define MWIFIEX_MAX_AP 64 |
| 60 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 61 | #define MWIFIEX_DEFAULT_WATCHDOG_TIMEOUT (5 * HZ) |
| 62 | |
| 63 | #define MWIFIEX_TIMER_10S 10000 |
| 64 | #define MWIFIEX_TIMER_1S 1000 |
| 65 | |
Marc Yang | 62a5b7d | 2011-05-16 19:17:53 -0700 | [diff] [blame] | 66 | #define MAX_TX_PENDING 100 |
| 67 | #define LOW_TX_PENDING 80 |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 68 | |
Avinash Patil | 6e25117 | 2014-09-12 20:08:59 +0530 | [diff] [blame] | 69 | #define HIGH_RX_PENDING 50 |
| 70 | #define LOW_RX_PENDING 20 |
| 71 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 72 | #define MWIFIEX_UPLD_SIZE (2312) |
| 73 | |
Amitkumar Karwar | 21f58d20 | 2014-02-11 18:39:56 -0800 | [diff] [blame] | 74 | #define MAX_EVENT_SIZE 2048 |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 75 | |
| 76 | #define ARP_FILTER_MAX_BUF_SIZE 68 |
| 77 | |
| 78 | #define MWIFIEX_KEY_BUFFER_SIZE 16 |
| 79 | #define MWIFIEX_DEFAULT_LISTEN_INTERVAL 10 |
| 80 | #define MWIFIEX_MAX_REGION_CODE 7 |
| 81 | |
| 82 | #define DEFAULT_BCN_AVG_FACTOR 8 |
| 83 | #define DEFAULT_DATA_AVG_FACTOR 8 |
| 84 | |
| 85 | #define FIRST_VALID_CHANNEL 0xff |
| 86 | #define DEFAULT_AD_HOC_CHANNEL 6 |
| 87 | #define DEFAULT_AD_HOC_CHANNEL_A 36 |
| 88 | |
| 89 | #define DEFAULT_BCN_MISS_TIMEOUT 5 |
| 90 | |
| 91 | #define MAX_SCAN_BEACON_BUFFER 8000 |
| 92 | |
| 93 | #define SCAN_BEACON_ENTRY_PAD 6 |
| 94 | |
Bing Zhao | 38e8b7d9 | 2012-06-06 21:12:40 -0700 | [diff] [blame] | 95 | #define MWIFIEX_PASSIVE_SCAN_CHAN_TIME 110 |
| 96 | #define MWIFIEX_ACTIVE_SCAN_CHAN_TIME 30 |
| 97 | #define MWIFIEX_SPECIFIC_SCAN_CHAN_TIME 30 |
Avinash Patil | cb91be8 | 2014-09-12 20:08:54 +0530 | [diff] [blame] | 98 | #define MWIFIEX_DEF_SCAN_CHAN_GAP_TIME 50 |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 99 | |
| 100 | #define SCAN_RSSI(RSSI) (0x100 - ((u8)(RSSI))) |
| 101 | |
| 102 | #define MWIFIEX_MAX_TOTAL_SCAN_TIME (MWIFIEX_TIMER_10S - MWIFIEX_TIMER_1S) |
| 103 | |
| 104 | #define RSN_GTK_OUI_OFFSET 2 |
| 105 | |
| 106 | #define MWIFIEX_OUI_NOT_PRESENT 0 |
| 107 | #define MWIFIEX_OUI_PRESENT 1 |
| 108 | |
Stone Piao | e39faa7 | 2012-09-25 20:23:32 -0700 | [diff] [blame] | 109 | #define PKT_TYPE_MGMT 0xE5 |
| 110 | |
Amitkumar Karwar | 4daffe3 | 2012-04-18 20:08:28 -0700 | [diff] [blame] | 111 | /* |
| 112 | * Do not check for data_received for USB, as data_received |
| 113 | * is handled in mwifiex_usb_recv for USB |
| 114 | */ |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 115 | #define IS_CARD_RX_RCVD(adapter) (adapter->cmd_resp_received || \ |
Amitkumar Karwar | 4daffe3 | 2012-04-18 20:08:28 -0700 | [diff] [blame] | 116 | adapter->event_received || \ |
Avinash Patil | ec4a16b | 2014-11-05 17:04:27 +0530 | [diff] [blame] | 117 | adapter->data_received) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 118 | |
| 119 | #define MWIFIEX_TYPE_CMD 1 |
| 120 | #define MWIFIEX_TYPE_DATA 0 |
| 121 | #define MWIFIEX_TYPE_EVENT 3 |
| 122 | |
Amitkumar Karwar | a0b7315a | 2014-03-07 19:41:27 -0800 | [diff] [blame] | 123 | #define MAX_BITMAP_RATES_SIZE 18 |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 124 | |
| 125 | #define MAX_CHANNEL_BAND_BG 14 |
Avinash Patil | a3c2c4f | 2012-08-27 20:32:53 -0700 | [diff] [blame] | 126 | #define MAX_CHANNEL_BAND_A 165 |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 127 | |
| 128 | #define MAX_FREQUENCY_BAND_BG 2484 |
| 129 | |
Amitkumar Karwar | d930fae | 2011-10-11 17:41:21 -0700 | [diff] [blame] | 130 | #define MWIFIEX_EVENT_HEADER_LEN 4 |
Avinash Patil | e568634 | 2012-05-08 18:30:25 -0700 | [diff] [blame] | 131 | #define MWIFIEX_UAP_EVENT_EXTRA_HEADER 2 |
Amitkumar Karwar | d930fae | 2011-10-11 17:41:21 -0700 | [diff] [blame] | 132 | |
Amitkumar Karwar | 4daffe3 | 2012-04-18 20:08:28 -0700 | [diff] [blame] | 133 | #define MWIFIEX_TYPE_LEN 4 |
| 134 | #define MWIFIEX_USB_TYPE_CMD 0xF00DFACE |
| 135 | #define MWIFIEX_USB_TYPE_DATA 0xBEADC0DE |
| 136 | #define MWIFIEX_USB_TYPE_EVENT 0xBEEFFACE |
| 137 | |
Ashok Nagarajan | 8908c7d | 2013-03-08 10:58:45 -0800 | [diff] [blame] | 138 | /* Threshold for tx_timeout_cnt before we trigger a card reset */ |
| 139 | #define TX_TIMEOUT_THRESHOLD 6 |
| 140 | |
Xinming Hu | 11cd07a | 2014-12-23 19:14:10 +0530 | [diff] [blame] | 141 | #define MWIFIEX_DRV_INFO_SIZE_MAX 0x40000 |
| 142 | |
Avinash Patil | 31def91 | 2015-02-13 17:41:08 +0530 | [diff] [blame^] | 143 | /* Address alignment */ |
| 144 | #define MWIFIEX_ALIGN_ADDR(p, a) (((long)(p) + (a) - 1) & ~((a) - 1)) |
| 145 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 146 | struct mwifiex_dbg { |
| 147 | u32 num_cmd_host_to_card_failure; |
| 148 | u32 num_cmd_sleep_cfm_host_to_card_failure; |
| 149 | u32 num_tx_host_to_card_failure; |
| 150 | u32 num_event_deauth; |
| 151 | u32 num_event_disassoc; |
| 152 | u32 num_event_link_lost; |
| 153 | u32 num_cmd_deauth; |
| 154 | u32 num_cmd_assoc_success; |
| 155 | u32 num_cmd_assoc_failure; |
| 156 | u32 num_tx_timeout; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 157 | u16 timeout_cmd_id; |
| 158 | u16 timeout_cmd_act; |
| 159 | u16 last_cmd_id[DBG_CMD_NUM]; |
| 160 | u16 last_cmd_act[DBG_CMD_NUM]; |
| 161 | u16 last_cmd_index; |
| 162 | u16 last_cmd_resp_id[DBG_CMD_NUM]; |
| 163 | u16 last_cmd_resp_index; |
| 164 | u16 last_event[DBG_CMD_NUM]; |
| 165 | u16 last_event_index; |
| 166 | }; |
| 167 | |
| 168 | enum MWIFIEX_HARDWARE_STATUS { |
| 169 | MWIFIEX_HW_STATUS_READY, |
| 170 | MWIFIEX_HW_STATUS_INITIALIZING, |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 171 | MWIFIEX_HW_STATUS_INIT_DONE, |
| 172 | MWIFIEX_HW_STATUS_RESET, |
| 173 | MWIFIEX_HW_STATUS_CLOSING, |
| 174 | MWIFIEX_HW_STATUS_NOT_READY |
| 175 | }; |
| 176 | |
| 177 | enum MWIFIEX_802_11_POWER_MODE { |
| 178 | MWIFIEX_802_11_POWER_MODE_CAM, |
| 179 | MWIFIEX_802_11_POWER_MODE_PSP |
| 180 | }; |
| 181 | |
| 182 | struct mwifiex_tx_param { |
| 183 | u32 next_pkt_len; |
| 184 | }; |
| 185 | |
| 186 | enum MWIFIEX_PS_STATE { |
| 187 | PS_STATE_AWAKE, |
| 188 | PS_STATE_PRE_SLEEP, |
| 189 | PS_STATE_SLEEP_CFM, |
| 190 | PS_STATE_SLEEP |
| 191 | }; |
| 192 | |
Amitkumar Karwar | d930fae | 2011-10-11 17:41:21 -0700 | [diff] [blame] | 193 | enum mwifiex_iface_type { |
| 194 | MWIFIEX_SDIO, |
| 195 | MWIFIEX_PCIE, |
Amitkumar Karwar | 4daffe3 | 2012-04-18 20:08:28 -0700 | [diff] [blame] | 196 | MWIFIEX_USB |
Amitkumar Karwar | d930fae | 2011-10-11 17:41:21 -0700 | [diff] [blame] | 197 | }; |
| 198 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 199 | struct mwifiex_add_ba_param { |
| 200 | u32 tx_win_size; |
| 201 | u32 rx_win_size; |
| 202 | u32 timeout; |
Amitkumar Karwar | 4c9f9fb | 2014-03-07 19:41:31 -0800 | [diff] [blame] | 203 | u8 tx_amsdu; |
| 204 | u8 rx_amsdu; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 205 | }; |
| 206 | |
| 207 | struct mwifiex_tx_aggr { |
| 208 | u8 ampdu_user; |
| 209 | u8 ampdu_ap; |
| 210 | u8 amsdu; |
| 211 | }; |
| 212 | |
| 213 | struct mwifiex_ra_list_tbl { |
| 214 | struct list_head list; |
| 215 | struct sk_buff_head skb_head; |
| 216 | u8 ra[ETH_ALEN]; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 217 | u32 is_11n_enabled; |
Avinash Patil | 5a009ad | 2012-08-03 18:06:10 -0700 | [diff] [blame] | 218 | u16 max_amsdu; |
Avinash Patil | f0cb84f | 2013-07-22 19:17:39 -0700 | [diff] [blame] | 219 | u16 ba_pkt_count; |
Avinash Patil | 5a009ad | 2012-08-03 18:06:10 -0700 | [diff] [blame] | 220 | u8 ba_packet_thr; |
Avinash Patil | c7d9ed9 | 2013-07-22 19:17:40 -0700 | [diff] [blame] | 221 | u16 total_pkt_count; |
Avinash Patil | daeb5bb | 2014-02-07 16:30:37 -0800 | [diff] [blame] | 222 | bool tdls_link; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 223 | }; |
| 224 | |
| 225 | struct mwifiex_tid_tbl { |
| 226 | struct list_head ra_list; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 227 | }; |
| 228 | |
| 229 | #define WMM_HIGHEST_PRIORITY 7 |
| 230 | #define HIGH_PRIO_TID 7 |
| 231 | #define LOW_PRIO_TID 0 |
| 232 | |
| 233 | struct mwifiex_wmm_desc { |
| 234 | struct mwifiex_tid_tbl tid_tbl_ptr[MAX_NUM_TID]; |
| 235 | u32 packets_out[MAX_NUM_TID]; |
| 236 | /* spin lock to protect ra_list */ |
| 237 | spinlock_t ra_list_spinlock; |
Johannes Berg | 99fec5d | 2012-03-27 14:07:59 +0200 | [diff] [blame] | 238 | struct mwifiex_wmm_ac_status ac_status[IEEE80211_NUM_ACS]; |
| 239 | enum mwifiex_wmm_ac_e ac_down_graded_vals[IEEE80211_NUM_ACS]; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 240 | u32 drv_pkt_delay_max; |
Johannes Berg | 99fec5d | 2012-03-27 14:07:59 +0200 | [diff] [blame] | 241 | u8 queue_priority[IEEE80211_NUM_ACS]; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 242 | 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] | 243 | /* Number of transmit packets queued */ |
| 244 | atomic_t tx_pkts_queued; |
Marc Yang | 49729ff | 2011-05-16 19:17:50 -0700 | [diff] [blame] | 245 | /* Tracks highest priority with a packet queued */ |
| 246 | atomic_t highest_queued_prio; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 247 | }; |
| 248 | |
| 249 | struct mwifiex_802_11_security { |
| 250 | u8 wpa_enabled; |
| 251 | u8 wpa2_enabled; |
| 252 | u8 wapi_enabled; |
| 253 | u8 wapi_key_on; |
Amitkumar Karwar | 5eb02e4 | 2012-02-24 21:36:04 -0800 | [diff] [blame] | 254 | u8 wep_enabled; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 255 | u32 authentication_mode; |
Amitkumar Karwar | a0f6d6c | 2012-02-24 21:36:05 -0800 | [diff] [blame] | 256 | u8 is_authtype_auto; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 257 | u32 encryption_mode; |
| 258 | }; |
| 259 | |
| 260 | struct ieee_types_header { |
| 261 | u8 element_id; |
| 262 | u8 len; |
| 263 | } __packed; |
| 264 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 265 | struct ieee_types_vendor_specific { |
| 266 | struct ieee_types_vendor_header vend_hdr; |
| 267 | u8 data[IEEE_MAX_IE_SIZE - sizeof(struct ieee_types_vendor_header)]; |
| 268 | } __packed; |
| 269 | |
| 270 | struct ieee_types_generic { |
| 271 | struct ieee_types_header ieee_hdr; |
| 272 | u8 data[IEEE_MAX_IE_SIZE - sizeof(struct ieee_types_header)]; |
| 273 | } __packed; |
| 274 | |
Avinash Patil | b23bce2 | 2014-02-07 16:27:32 -0800 | [diff] [blame] | 275 | struct ieee_types_bss_co_2040 { |
| 276 | struct ieee_types_header ieee_hdr; |
| 277 | u8 bss_2040co; |
| 278 | } __packed; |
| 279 | |
| 280 | struct ieee_types_extcap { |
| 281 | struct ieee_types_header ieee_hdr; |
| 282 | u8 ext_capab[8]; |
| 283 | } __packed; |
| 284 | |
Avinash Patil | 5f6d598 | 2014-02-07 16:30:39 -0800 | [diff] [blame] | 285 | struct ieee_types_vht_cap { |
| 286 | struct ieee_types_header ieee_hdr; |
| 287 | struct ieee80211_vht_cap vhtcap; |
| 288 | } __packed; |
| 289 | |
| 290 | struct ieee_types_vht_oper { |
| 291 | struct ieee_types_header ieee_hdr; |
| 292 | struct ieee80211_vht_operation vhtoper; |
| 293 | } __packed; |
| 294 | |
| 295 | struct ieee_types_aid { |
| 296 | struct ieee_types_header ieee_hdr; |
| 297 | u16 aid; |
| 298 | } __packed; |
| 299 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 300 | struct mwifiex_bssdescriptor { |
| 301 | u8 mac_address[ETH_ALEN]; |
Amitkumar Karwar | b9be5f3 | 2012-02-27 22:04:14 -0800 | [diff] [blame] | 302 | struct cfg80211_ssid ssid; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 303 | u32 privacy; |
| 304 | s32 rssi; |
| 305 | u32 channel; |
| 306 | u32 freq; |
| 307 | u16 beacon_period; |
| 308 | u8 erp_flags; |
| 309 | u32 bss_mode; |
| 310 | u8 supported_rates[MWIFIEX_SUPPORTED_RATES]; |
| 311 | u8 data_rates[MWIFIEX_SUPPORTED_RATES]; |
| 312 | /* Network band. |
| 313 | * BAND_B(0x01): 'b' band |
| 314 | * BAND_G(0x02): 'g' band |
| 315 | * BAND_A(0X04): 'a' band |
| 316 | */ |
| 317 | u16 bss_band; |
Amitkumar Karwar | b5abcf0 | 2012-04-16 21:36:52 -0700 | [diff] [blame] | 318 | u64 fw_tsf; |
| 319 | u64 timestamp; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 320 | union ieee_types_phy_param_set phy_param_set; |
| 321 | union ieee_types_ss_param_set ss_param_set; |
| 322 | u16 cap_info_bitmap; |
| 323 | struct ieee_types_wmm_parameter wmm_ie; |
| 324 | u8 disable_11n; |
| 325 | struct ieee80211_ht_cap *bcn_ht_cap; |
| 326 | u16 ht_cap_offset; |
Johannes Berg | 074d46d | 2012-03-15 19:45:16 +0100 | [diff] [blame] | 327 | struct ieee80211_ht_operation *bcn_ht_oper; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 328 | u16 ht_info_offset; |
| 329 | u8 *bcn_bss_co_2040; |
| 330 | u16 bss_co_2040_offset; |
| 331 | u8 *bcn_ext_cap; |
| 332 | u16 ext_cap_offset; |
Yogesh Ashok Powar | a5f3905 | 2013-02-15 21:44:30 -0800 | [diff] [blame] | 333 | struct ieee80211_vht_cap *bcn_vht_cap; |
| 334 | u16 vht_cap_offset; |
| 335 | struct ieee80211_vht_operation *bcn_vht_oper; |
| 336 | u16 vht_info_offset; |
| 337 | struct ieee_types_oper_mode_ntf *oper_mode; |
| 338 | u16 oper_mode_offset; |
| 339 | u8 disable_11ac; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 340 | struct ieee_types_vendor_specific *bcn_wpa_ie; |
| 341 | u16 wpa_offset; |
| 342 | struct ieee_types_generic *bcn_rsn_ie; |
| 343 | u16 rsn_offset; |
| 344 | struct ieee_types_generic *bcn_wapi_ie; |
| 345 | u16 wapi_offset; |
| 346 | u8 *beacon_buf; |
| 347 | u32 beacon_buf_size; |
Amitkumar Karwar | 2a7305c | 2013-06-19 08:49:05 -0700 | [diff] [blame] | 348 | u8 sensed_11h; |
| 349 | u8 local_constraint; |
| 350 | u8 chan_sw_ie_present; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 351 | }; |
| 352 | |
| 353 | struct mwifiex_current_bss_params { |
| 354 | struct mwifiex_bssdescriptor bss_descriptor; |
| 355 | u8 wmm_enabled; |
| 356 | u8 wmm_uapsd_enabled; |
| 357 | u8 band; |
| 358 | u32 num_of_rates; |
| 359 | u8 data_rates[MWIFIEX_SUPPORTED_RATES]; |
| 360 | }; |
| 361 | |
| 362 | struct mwifiex_sleep_params { |
| 363 | u16 sp_error; |
| 364 | u16 sp_offset; |
| 365 | u16 sp_stable_time; |
| 366 | u8 sp_cal_control; |
| 367 | u8 sp_ext_sleep_clk; |
| 368 | u16 sp_reserved; |
| 369 | }; |
| 370 | |
| 371 | struct mwifiex_sleep_period { |
| 372 | u16 period; |
| 373 | u16 reserved; |
| 374 | }; |
| 375 | |
| 376 | struct mwifiex_wep_key { |
| 377 | u32 length; |
| 378 | u32 key_index; |
| 379 | u32 key_length; |
| 380 | u8 key_material[MWIFIEX_KEY_BUFFER_SIZE]; |
| 381 | }; |
| 382 | |
| 383 | #define MAX_REGION_CHANNEL_NUM 2 |
| 384 | |
| 385 | struct mwifiex_chan_freq_power { |
| 386 | u16 channel; |
| 387 | u32 freq; |
| 388 | u16 max_tx_power; |
| 389 | u8 unsupported; |
| 390 | }; |
| 391 | |
| 392 | enum state_11d_t { |
| 393 | DISABLE_11D = 0, |
| 394 | ENABLE_11D = 1, |
| 395 | }; |
| 396 | |
| 397 | #define MWIFIEX_MAX_TRIPLET_802_11D 83 |
| 398 | |
| 399 | struct mwifiex_802_11d_domain_reg { |
| 400 | u8 country_code[IEEE80211_COUNTRY_STRING_LEN]; |
| 401 | u8 no_of_triplet; |
| 402 | struct ieee80211_country_ie_triplet |
| 403 | triplet[MWIFIEX_MAX_TRIPLET_802_11D]; |
| 404 | }; |
| 405 | |
| 406 | struct mwifiex_vendor_spec_cfg_ie { |
| 407 | u16 mask; |
| 408 | u16 flag; |
| 409 | u8 ie[MWIFIEX_MAX_VSIE_LEN]; |
| 410 | }; |
| 411 | |
| 412 | struct wps { |
| 413 | u8 session_enable; |
| 414 | }; |
| 415 | |
Stone Piao | 7feb4c4 | 2012-09-25 20:23:36 -0700 | [diff] [blame] | 416 | struct mwifiex_roc_cfg { |
| 417 | u64 cookie; |
| 418 | struct ieee80211_channel chan; |
Stone Piao | 7feb4c4 | 2012-09-25 20:23:36 -0700 | [diff] [blame] | 419 | }; |
| 420 | |
Amitkumar Karwar | 92c2538 | 2014-06-19 21:38:52 -0700 | [diff] [blame] | 421 | #define MWIFIEX_FW_DUMP_IDX 0xff |
Xinming Hu | 11cd07a | 2014-12-23 19:14:10 +0530 | [diff] [blame] | 422 | #define MWIFIEX_DRV_INFO_IDX 20 |
Amitkumar Karwar | 92c2538 | 2014-06-19 21:38:52 -0700 | [diff] [blame] | 423 | #define FW_DUMP_MAX_NAME_LEN 8 |
| 424 | #define FW_DUMP_HOST_READY 0xEE |
| 425 | #define FW_DUMP_DONE 0xFF |
Amitkumar Karwar | 7e17483 | 2014-09-18 07:18:50 -0400 | [diff] [blame] | 426 | #define FW_DUMP_READ_DONE 0xFE |
Amitkumar Karwar | 92c2538 | 2014-06-19 21:38:52 -0700 | [diff] [blame] | 427 | |
| 428 | struct memory_type_mapping { |
| 429 | u8 mem_name[FW_DUMP_MAX_NAME_LEN]; |
| 430 | u8 *mem_ptr; |
| 431 | u32 mem_size; |
| 432 | u8 done_flag; |
| 433 | }; |
| 434 | |
| 435 | enum rdwr_status { |
| 436 | RDWR_STATUS_SUCCESS = 0, |
| 437 | RDWR_STATUS_FAILURE = 1, |
| 438 | RDWR_STATUS_DONE = 2 |
| 439 | }; |
| 440 | |
| 441 | enum mwifiex_iface_work_flags { |
| 442 | MWIFIEX_IFACE_WORK_FW_DUMP, |
Amitkumar Karwar | 8915d738 | 2014-06-19 21:38:53 -0700 | [diff] [blame] | 443 | MWIFIEX_IFACE_WORK_CARD_RESET, |
Amitkumar Karwar | 92c2538 | 2014-06-19 21:38:52 -0700 | [diff] [blame] | 444 | }; |
| 445 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 446 | struct mwifiex_adapter; |
| 447 | struct mwifiex_private; |
| 448 | |
| 449 | struct mwifiex_private { |
| 450 | struct mwifiex_adapter *adapter; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 451 | u8 bss_type; |
| 452 | u8 bss_role; |
| 453 | u8 bss_priority; |
| 454 | u8 bss_num; |
Avinash Patil | d6bffe8 | 2012-05-08 18:30:15 -0700 | [diff] [blame] | 455 | u8 bss_started; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 456 | u8 frame_type; |
| 457 | u8 curr_addr[ETH_ALEN]; |
| 458 | u8 media_connected; |
| 459 | u32 num_tx_timeout; |
Ashok Nagarajan | 8908c7d | 2013-03-08 10:58:45 -0800 | [diff] [blame] | 460 | /* track consecutive timeout */ |
| 461 | u8 tx_timeout_cnt; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 462 | struct net_device *netdev; |
| 463 | struct net_device_stats stats; |
| 464 | u16 curr_pkt_filter; |
| 465 | u32 bss_mode; |
| 466 | u32 pkt_tx_ctrl; |
| 467 | u16 tx_power_level; |
| 468 | u8 max_tx_power_level; |
| 469 | u8 min_tx_power_level; |
| 470 | u8 tx_rate; |
| 471 | u8 tx_htinfo; |
| 472 | u8 rxpd_htinfo; |
| 473 | u8 rxpd_rate; |
| 474 | u16 rate_bitmap; |
| 475 | u16 bitmap_rates[MAX_BITMAP_RATES_SIZE]; |
| 476 | u32 data_rate; |
| 477 | u8 is_data_rate_auto; |
| 478 | u16 bcn_avg_factor; |
| 479 | u16 data_avg_factor; |
| 480 | s16 data_rssi_last; |
| 481 | s16 data_nf_last; |
| 482 | s16 data_rssi_avg; |
| 483 | s16 data_nf_avg; |
| 484 | s16 bcn_rssi_last; |
| 485 | s16 bcn_nf_last; |
| 486 | s16 bcn_rssi_avg; |
| 487 | s16 bcn_nf_avg; |
| 488 | struct mwifiex_bssdescriptor *attempted_bss_desc; |
Amitkumar Karwar | b9be5f3 | 2012-02-27 22:04:14 -0800 | [diff] [blame] | 489 | struct cfg80211_ssid prev_ssid; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 490 | u8 prev_bssid[ETH_ALEN]; |
| 491 | struct mwifiex_current_bss_params curr_bss_params; |
| 492 | u16 beacon_period; |
Amitkumar Karwar | caf60a6 | 2012-02-02 20:48:58 -0800 | [diff] [blame] | 493 | u8 dtim_period; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 494 | u16 listen_interval; |
| 495 | u16 atim_window; |
| 496 | u8 adhoc_channel; |
| 497 | u8 adhoc_is_link_sensed; |
| 498 | u8 adhoc_state; |
| 499 | struct mwifiex_802_11_security sec_info; |
| 500 | struct mwifiex_wep_key wep_key[NUM_WEP_KEYS]; |
| 501 | u16 wep_key_curr_index; |
| 502 | u8 wpa_ie[256]; |
| 503 | u8 wpa_ie_len; |
| 504 | u8 wpa_is_gtk_set; |
| 505 | struct host_cmd_ds_802_11_key_material aes_key; |
Avinash Patil | e57f173 | 2014-02-07 16:32:35 -0800 | [diff] [blame] | 506 | struct host_cmd_ds_802_11_key_material_v2 aes_key_v2; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 507 | u8 wapi_ie[256]; |
| 508 | u8 wapi_ie_len; |
Avinash Patil | 13d7ba78 | 2012-04-09 20:06:56 -0700 | [diff] [blame] | 509 | u8 *wps_ie; |
| 510 | u8 wps_ie_len; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 511 | u8 wmm_required; |
| 512 | u8 wmm_enabled; |
| 513 | u8 wmm_qosinfo; |
| 514 | struct mwifiex_wmm_desc wmm; |
Avinash Patil | 47411a0 | 2012-11-01 18:44:16 -0700 | [diff] [blame] | 515 | atomic_t wmm_tx_pending[IEEE80211_NUM_ACS]; |
Avinash Patil | 017a92a | 2012-08-03 18:06:07 -0700 | [diff] [blame] | 516 | struct list_head sta_list; |
Avinash Patil | 9927baa | 2014-11-13 21:54:16 +0530 | [diff] [blame] | 517 | /* spin lock for associated station/TDLS peers list */ |
Avinash Patil | 017a92a | 2012-08-03 18:06:07 -0700 | [diff] [blame] | 518 | spinlock_t sta_list_spinlock; |
Avinash Patil | 9927baa | 2014-11-13 21:54:16 +0530 | [diff] [blame] | 519 | struct list_head auto_tdls_list; |
| 520 | /* spin lock for auto TDLS peer list */ |
| 521 | spinlock_t auto_tdls_lock; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 522 | struct list_head tx_ba_stream_tbl_ptr; |
| 523 | /* spin lock for tx_ba_stream_tbl_ptr queue */ |
| 524 | spinlock_t tx_ba_stream_tbl_lock; |
| 525 | struct mwifiex_tx_aggr aggr_prio_tbl[MAX_NUM_TID]; |
| 526 | struct mwifiex_add_ba_param add_ba_param; |
| 527 | u16 rx_seq[MAX_NUM_TID]; |
Avinash Patil | 41a24a2 | 2014-02-07 16:27:29 -0800 | [diff] [blame] | 528 | u8 tos_to_tid_inv[MAX_NUM_TID]; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 529 | struct list_head rx_reorder_tbl_ptr; |
| 530 | /* spin lock for rx_reorder_tbl_ptr queue */ |
| 531 | spinlock_t rx_reorder_tbl_lock; |
| 532 | /* spin lock for Rx packets */ |
| 533 | spinlock_t rx_pkt_lock; |
| 534 | |
| 535 | #define MWIFIEX_ASSOC_RSP_BUF_SIZE 500 |
| 536 | u8 assoc_rsp_buf[MWIFIEX_ASSOC_RSP_BUF_SIZE]; |
| 537 | u32 assoc_rsp_size; |
| 538 | |
| 539 | #define MWIFIEX_GENIE_BUF_SIZE 256 |
| 540 | u8 gen_ie_buf[MWIFIEX_GENIE_BUF_SIZE]; |
| 541 | u8 gen_ie_buf_len; |
| 542 | |
| 543 | struct mwifiex_vendor_spec_cfg_ie vs_ie[MWIFIEX_MAX_VSIE_NUM]; |
| 544 | |
| 545 | #define MWIFIEX_ASSOC_TLV_BUF_SIZE 256 |
| 546 | u8 assoc_tlv_buf[MWIFIEX_ASSOC_TLV_BUF_SIZE]; |
| 547 | u8 assoc_tlv_buf_len; |
| 548 | |
| 549 | u8 *curr_bcn_buf; |
| 550 | u32 curr_bcn_size; |
| 551 | /* spin lock for beacon buffer */ |
| 552 | spinlock_t curr_bcn_buf_lock; |
Avinash Patil | 4facc34 | 2015-01-28 15:42:00 +0530 | [diff] [blame] | 553 | struct wireless_dev wdev; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 554 | struct mwifiex_chan_freq_power cfp; |
| 555 | char version_str[128]; |
| 556 | #ifdef CONFIG_DEBUG_FS |
| 557 | struct dentry *dfs_dev_dir; |
| 558 | #endif |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 559 | u16 current_key_index; |
| 560 | struct semaphore async_sem; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 561 | struct cfg80211_scan_request *scan_request; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 562 | u8 cfg_bssid[6]; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 563 | struct wps wps; |
| 564 | u8 scan_block; |
Amitkumar Karwar | fa444bf | 2012-03-15 20:51:51 -0700 | [diff] [blame] | 565 | s32 cqm_rssi_thold; |
| 566 | u32 cqm_rssi_hyst; |
| 567 | u8 subsc_evt_rssi_state; |
Jeff Disher | 908fe11 | 2012-08-30 18:20:55 -0700 | [diff] [blame] | 568 | struct mwifiex_ds_misc_subsc_evt async_subsc_evt_storage; |
Avinash Patil | ede98bf | 2012-05-08 18:30:28 -0700 | [diff] [blame] | 569 | struct mwifiex_ie mgmt_ie[MAX_MGMT_IE_INDEX]; |
Avinash Patil | f31acab | 2012-05-08 18:30:29 -0700 | [diff] [blame] | 570 | u16 beacon_idx; |
| 571 | u16 proberesp_idx; |
| 572 | u16 assocresp_idx; |
Avinash Patil | 2ade566 | 2015-01-28 15:54:20 +0530 | [diff] [blame] | 573 | u16 gen_idx; |
Avinash Patil | c825891 | 2012-08-03 18:06:05 -0700 | [diff] [blame] | 574 | u8 ap_11n_enabled; |
Yogesh Ashok Powar | a5f3905 | 2013-02-15 21:44:30 -0800 | [diff] [blame] | 575 | u8 ap_11ac_enabled; |
Stone Piao | 3cec687 | 2012-09-25 20:23:34 -0700 | [diff] [blame] | 576 | u32 mgmt_frame_mask; |
Stone Piao | 7feb4c4 | 2012-09-25 20:23:36 -0700 | [diff] [blame] | 577 | struct mwifiex_roc_cfg roc_cfg; |
Amitkumar Karwar | 75ab753 | 2013-05-17 17:50:20 -0700 | [diff] [blame] | 578 | bool scan_aborting; |
Amitkumar Karwar | b887664 | 2013-06-18 16:36:58 -0700 | [diff] [blame] | 579 | u8 csa_chan; |
| 580 | unsigned long csa_expire_time; |
Avinash Patil | 61c87304 | 2013-07-22 19:17:41 -0700 | [diff] [blame] | 581 | u8 del_list_idx; |
Avinash Patil | 587b36d | 2013-08-23 16:48:23 -0700 | [diff] [blame] | 582 | bool hs2_enabled; |
Avinash Patil | 35c739b | 2015-01-28 15:54:17 +0530 | [diff] [blame] | 583 | struct mwifiex_uap_bss_param bss_cfg; |
Avinash Patil | 1f4dfd8 | 2014-02-07 16:30:34 -0800 | [diff] [blame] | 584 | struct station_parameters *sta_params; |
Avinash Patil | 56bd24a | 2014-02-07 16:30:35 -0800 | [diff] [blame] | 585 | struct sk_buff_head tdls_txq; |
Avinash Patil | 9927baa | 2014-11-13 21:54:16 +0530 | [diff] [blame] | 586 | u8 check_tdls_tx; |
| 587 | struct timer_list auto_tdls_timer; |
| 588 | bool auto_tdls_timer_active; |
Amitkumar Karwar | 808bbeb | 2014-11-25 06:43:05 -0800 | [diff] [blame] | 589 | struct idr ack_status_frames; |
| 590 | /* spin lock for ack status */ |
| 591 | spinlock_t ack_status_lock; |
Xinming Hu | cbf6e05 | 2014-12-23 19:14:07 +0530 | [diff] [blame] | 592 | /** rx histogram data */ |
| 593 | struct mwifiex_histogram_data *hist_data; |
Avinash Patil | 85afb18 | 2015-01-28 15:54:21 +0530 | [diff] [blame] | 594 | struct cfg80211_chan_def dfs_chandef; |
| 595 | struct workqueue_struct *dfs_cac_workqueue; |
| 596 | struct delayed_work dfs_cac_work; |
Avinash Patil | 7d65203 | 2015-01-28 15:54:24 +0530 | [diff] [blame] | 597 | struct timer_list dfs_chan_switch_timer; |
| 598 | struct workqueue_struct *dfs_chan_sw_workqueue; |
| 599 | struct delayed_work dfs_chan_sw_work; |
| 600 | struct cfg80211_beacon_data beacon_after; |
Avinash Patil | cf075ea | 2015-01-28 15:54:25 +0530 | [diff] [blame] | 601 | struct mwifiex_11h_intf_state state_11h; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 602 | }; |
| 603 | |
| 604 | enum mwifiex_ba_status { |
Yogesh Ashok Powar | 3e82263 | 2012-03-12 19:35:08 -0700 | [diff] [blame] | 605 | BA_SETUP_NONE = 0, |
| 606 | BA_SETUP_INPROGRESS, |
| 607 | BA_SETUP_COMPLETE |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 608 | }; |
| 609 | |
| 610 | struct mwifiex_tx_ba_stream_tbl { |
| 611 | struct list_head list; |
| 612 | int tid; |
| 613 | u8 ra[ETH_ALEN]; |
| 614 | enum mwifiex_ba_status ba_status; |
Amitkumar Karwar | 4c9f9fb | 2014-03-07 19:41:31 -0800 | [diff] [blame] | 615 | u8 amsdu; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 616 | }; |
| 617 | |
| 618 | struct mwifiex_rx_reorder_tbl; |
| 619 | |
| 620 | struct reorder_tmr_cnxt { |
| 621 | struct timer_list timer; |
| 622 | struct mwifiex_rx_reorder_tbl *ptr; |
| 623 | struct mwifiex_private *priv; |
Marc Yang | 3a8fede1 | 2014-10-29 22:44:34 +0530 | [diff] [blame] | 624 | u8 timer_is_set; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 625 | }; |
| 626 | |
| 627 | struct mwifiex_rx_reorder_tbl { |
| 628 | struct list_head list; |
| 629 | int tid; |
| 630 | u8 ta[ETH_ALEN]; |
Paul Stewart | 8acbea6 | 2014-02-25 16:31:37 -0800 | [diff] [blame] | 631 | int init_win; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 632 | int start_win; |
| 633 | int win_size; |
| 634 | void **rx_reorder_ptr; |
| 635 | struct reorder_tmr_cnxt timer_context; |
Amitkumar Karwar | 4c9f9fb | 2014-03-07 19:41:31 -0800 | [diff] [blame] | 636 | u8 amsdu; |
Avinash Patil | 2db96c3 | 2012-09-27 19:00:10 -0700 | [diff] [blame] | 637 | u8 flags; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 638 | }; |
| 639 | |
| 640 | struct mwifiex_bss_prio_node { |
| 641 | struct list_head list; |
| 642 | struct mwifiex_private *priv; |
| 643 | }; |
| 644 | |
| 645 | struct mwifiex_bss_prio_tbl { |
| 646 | struct list_head bss_prio_head; |
| 647 | /* spin lock for bss priority */ |
| 648 | spinlock_t bss_prio_lock; |
| 649 | struct mwifiex_bss_prio_node *bss_prio_cur; |
| 650 | }; |
| 651 | |
| 652 | struct cmd_ctrl_node { |
| 653 | struct list_head list; |
| 654 | struct mwifiex_private *priv; |
| 655 | u32 cmd_oid; |
| 656 | u32 cmd_flag; |
| 657 | struct sk_buff *cmd_skb; |
| 658 | struct sk_buff *resp_skb; |
| 659 | void *data_buf; |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 660 | u32 wait_q_enabled; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 661 | struct sk_buff *skb; |
Amitkumar Karwar | efaaa8b | 2011-10-12 20:28:06 -0700 | [diff] [blame] | 662 | u8 *condition; |
| 663 | u8 cmd_wait_q_woken; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 664 | }; |
| 665 | |
Amitkumar Karwar | b5abcf0 | 2012-04-16 21:36:52 -0700 | [diff] [blame] | 666 | struct mwifiex_bss_priv { |
| 667 | u8 band; |
| 668 | u64 fw_tsf; |
| 669 | }; |
| 670 | |
Avinash Patil | 5f2caaf | 2014-02-07 16:27:33 -0800 | [diff] [blame] | 671 | struct mwifiex_tdls_capab { |
| 672 | __le16 capab; |
| 673 | u8 rates[32]; |
| 674 | u8 rates_len; |
| 675 | u8 qos_info; |
| 676 | u8 coex_2040; |
Avinash Patil | 5f6d598 | 2014-02-07 16:30:39 -0800 | [diff] [blame] | 677 | u16 aid; |
Avinash Patil | 5f2caaf | 2014-02-07 16:27:33 -0800 | [diff] [blame] | 678 | struct ieee80211_ht_cap ht_capb; |
| 679 | struct ieee80211_ht_operation ht_oper; |
| 680 | struct ieee_types_extcap extcap; |
| 681 | struct ieee_types_generic rsn_ie; |
Avinash Patil | 5f6d598 | 2014-02-07 16:30:39 -0800 | [diff] [blame] | 682 | struct ieee80211_vht_cap vhtcap; |
| 683 | struct ieee80211_vht_operation vhtoper; |
Avinash Patil | 5f2caaf | 2014-02-07 16:27:33 -0800 | [diff] [blame] | 684 | }; |
| 685 | |
| 686 | /* This is AP/TDLS specific structure which stores information |
| 687 | * about associated/peer STA |
Avinash Patil | 017a92a | 2012-08-03 18:06:07 -0700 | [diff] [blame] | 688 | */ |
| 689 | struct mwifiex_sta_node { |
| 690 | struct list_head list; |
| 691 | u8 mac_addr[ETH_ALEN]; |
| 692 | u8 is_wmm_enabled; |
| 693 | u8 is_11n_enabled; |
Avinash Patil | 5f6d598 | 2014-02-07 16:30:39 -0800 | [diff] [blame] | 694 | u8 is_11ac_enabled; |
Avinash Patil | 017a92a | 2012-08-03 18:06:07 -0700 | [diff] [blame] | 695 | u8 ampdu_sta[MAX_NUM_TID]; |
| 696 | u16 rx_seq[MAX_NUM_TID]; |
| 697 | u16 max_amsdu; |
Avinash Patil | 429d90d | 2014-02-07 16:27:34 -0800 | [diff] [blame] | 698 | u8 tdls_status; |
Avinash Patil | 5f2caaf | 2014-02-07 16:27:33 -0800 | [diff] [blame] | 699 | struct mwifiex_tdls_capab tdls_cap; |
Avinash Patil | 017a92a | 2012-08-03 18:06:07 -0700 | [diff] [blame] | 700 | }; |
| 701 | |
Avinash Patil | 9927baa | 2014-11-13 21:54:16 +0530 | [diff] [blame] | 702 | struct mwifiex_auto_tdls_peer { |
| 703 | struct list_head list; |
| 704 | u8 mac_addr[ETH_ALEN]; |
| 705 | u8 tdls_status; |
| 706 | int rssi; |
| 707 | long rssi_jiffies; |
| 708 | u8 failure_count; |
| 709 | u8 do_discover; |
| 710 | u8 do_setup; |
| 711 | }; |
| 712 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 713 | struct mwifiex_if_ops { |
| 714 | int (*init_if) (struct mwifiex_adapter *); |
| 715 | void (*cleanup_if) (struct mwifiex_adapter *); |
Amitkumar Karwar | d930fae | 2011-10-11 17:41:21 -0700 | [diff] [blame] | 716 | int (*check_fw_status) (struct mwifiex_adapter *, u32); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 717 | int (*prog_fw) (struct mwifiex_adapter *, struct mwifiex_fw_image *); |
| 718 | int (*register_dev) (struct mwifiex_adapter *); |
| 719 | void (*unregister_dev) (struct mwifiex_adapter *); |
| 720 | int (*enable_int) (struct mwifiex_adapter *); |
Daniel Drake | 232fde0 | 2013-07-13 10:57:10 -0400 | [diff] [blame] | 721 | void (*disable_int) (struct mwifiex_adapter *); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 722 | int (*process_int_status) (struct mwifiex_adapter *); |
Amitkumar Karwar | d930fae | 2011-10-11 17:41:21 -0700 | [diff] [blame] | 723 | int (*host_to_card) (struct mwifiex_adapter *, u8, struct sk_buff *, |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 724 | struct mwifiex_tx_param *); |
| 725 | int (*wakeup) (struct mwifiex_adapter *); |
| 726 | int (*wakeup_complete) (struct mwifiex_adapter *); |
| 727 | |
Amitkumar Karwar | d930fae | 2011-10-11 17:41:21 -0700 | [diff] [blame] | 728 | /* Interface specific functions */ |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 729 | void (*update_mp_end_port) (struct mwifiex_adapter *, u16); |
| 730 | void (*cleanup_mpa_buf) (struct mwifiex_adapter *); |
Amitkumar Karwar | d930fae | 2011-10-11 17:41:21 -0700 | [diff] [blame] | 731 | int (*cmdrsp_complete) (struct mwifiex_adapter *, struct sk_buff *); |
| 732 | int (*event_complete) (struct mwifiex_adapter *, struct sk_buff *); |
Avinash Patil | c6d1d87 | 2013-01-03 21:21:29 -0800 | [diff] [blame] | 733 | int (*init_fw_port) (struct mwifiex_adapter *); |
Amitkumar Karwar | 4daffe3 | 2012-04-18 20:08:28 -0700 | [diff] [blame] | 734 | int (*dnld_fw) (struct mwifiex_adapter *, struct mwifiex_fw_image *); |
Amitkumar Karwar | d31ab35 | 2012-11-01 18:44:14 -0700 | [diff] [blame] | 735 | void (*card_reset) (struct mwifiex_adapter *); |
Amitkumar Karwar | 1c09bf6 | 2014-04-17 11:46:59 -0700 | [diff] [blame] | 736 | void (*fw_dump)(struct mwifiex_adapter *); |
Xinming Hu | 809c6ea | 2014-12-23 19:14:11 +0530 | [diff] [blame] | 737 | int (*reg_dump)(struct mwifiex_adapter *, char *); |
Avinash Patil | fbd7e7a | 2013-01-03 21:21:31 -0800 | [diff] [blame] | 738 | int (*clean_pcie_ring) (struct mwifiex_adapter *adapter); |
Amitkumar Karwar | 92c2538 | 2014-06-19 21:38:52 -0700 | [diff] [blame] | 739 | void (*iface_work)(struct work_struct *work); |
Amitkumar Karwar | cf6a64f | 2014-11-05 17:04:29 +0530 | [diff] [blame] | 740 | void (*submit_rem_rx_urbs)(struct mwifiex_adapter *adapter); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 741 | }; |
| 742 | |
| 743 | struct mwifiex_adapter { |
Amitkumar Karwar | d930fae | 2011-10-11 17:41:21 -0700 | [diff] [blame] | 744 | u8 iface_type; |
Avinash Patil | cf05233 | 2015-01-28 15:42:03 +0530 | [diff] [blame] | 745 | struct mwifiex_iface_comb iface_limit; |
| 746 | struct mwifiex_iface_comb curr_iface_comb; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 747 | struct mwifiex_private *priv[MWIFIEX_MAX_BSS_NUM]; |
| 748 | u8 priv_num; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 749 | const struct firmware *firmware; |
Amitkumar Karwar | 4a7f5db | 2011-05-23 18:00:17 -0700 | [diff] [blame] | 750 | char fw_name[32]; |
Amitkumar Karwar | d930fae | 2011-10-11 17:41:21 -0700 | [diff] [blame] | 751 | int winner; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 752 | struct device *dev; |
Avinash Patil | d6bffe8 | 2012-05-08 18:30:15 -0700 | [diff] [blame] | 753 | struct wiphy *wiphy; |
Avinash Patil | 8d05eb2 | 2015-01-28 15:42:01 +0530 | [diff] [blame] | 754 | u8 perm_addr[ETH_ALEN]; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 755 | bool surprise_removed; |
| 756 | u32 fw_release_number; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 757 | u16 init_wait_q_woken; |
| 758 | wait_queue_head_t init_wait_q; |
| 759 | void *card; |
| 760 | struct mwifiex_if_ops if_ops; |
| 761 | atomic_t rx_pending; |
| 762 | atomic_t tx_pending; |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 763 | atomic_t cmd_pending; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 764 | struct workqueue_struct *workqueue; |
| 765 | struct work_struct main_work; |
Avinash Patil | 6e25117 | 2014-09-12 20:08:59 +0530 | [diff] [blame] | 766 | struct workqueue_struct *rx_workqueue; |
| 767 | struct work_struct rx_work; |
Avinash Patil | 85afb18 | 2015-01-28 15:54:21 +0530 | [diff] [blame] | 768 | struct workqueue_struct *dfs_workqueue; |
| 769 | struct work_struct dfs_work; |
Avinash Patil | 6e25117 | 2014-09-12 20:08:59 +0530 | [diff] [blame] | 770 | bool rx_work_enabled; |
| 771 | bool rx_processing; |
| 772 | bool delay_main_work; |
| 773 | bool rx_locked; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 774 | struct mwifiex_bss_prio_tbl bss_prio_tbl[MWIFIEX_MAX_BSS_NUM]; |
| 775 | /* spin lock for init/shutdown */ |
| 776 | spinlock_t mwifiex_lock; |
| 777 | /* spin lock for main process */ |
| 778 | spinlock_t main_proc_lock; |
| 779 | u32 mwifiex_processing; |
Shengzhen Li | 04c7b36 | 2015-02-11 23:12:24 +0530 | [diff] [blame] | 780 | u8 more_task_flag; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 781 | u16 tx_buf_size; |
| 782 | u16 curr_tx_buf_size; |
| 783 | u32 ioport; |
| 784 | enum MWIFIEX_HARDWARE_STATUS hw_status; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 785 | u16 number_of_antenna; |
| 786 | u32 fw_cap_info; |
| 787 | /* spin lock for interrupt handling */ |
| 788 | spinlock_t int_lock; |
| 789 | u8 int_status; |
| 790 | u32 event_cause; |
| 791 | struct sk_buff *event_skb; |
| 792 | u8 upld_buf[MWIFIEX_UPLD_SIZE]; |
| 793 | u8 data_sent; |
| 794 | u8 cmd_sent; |
| 795 | u8 cmd_resp_received; |
| 796 | u8 event_received; |
| 797 | u8 data_received; |
| 798 | u16 seq_num; |
| 799 | struct cmd_ctrl_node *cmd_pool; |
| 800 | struct cmd_ctrl_node *curr_cmd; |
| 801 | /* spin lock for command */ |
| 802 | spinlock_t mwifiex_cmd_lock; |
Amitkumar Karwar | 0c9c4a0 | 2014-02-27 19:35:17 -0800 | [diff] [blame] | 803 | u8 is_cmd_timedout; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 804 | u16 last_init_cmd; |
| 805 | struct timer_list cmd_timer; |
| 806 | struct list_head cmd_free_q; |
| 807 | /* spin lock for cmd_free_q */ |
| 808 | spinlock_t cmd_free_q_lock; |
| 809 | struct list_head cmd_pending_q; |
| 810 | /* spin lock for cmd_pending_q */ |
| 811 | spinlock_t cmd_pending_q_lock; |
| 812 | struct list_head scan_pending_q; |
| 813 | /* spin lock for scan_pending_q */ |
| 814 | spinlock_t scan_pending_q_lock; |
Avinash Patil | 6e25117 | 2014-09-12 20:08:59 +0530 | [diff] [blame] | 815 | /* spin lock for RX processing routine */ |
| 816 | spinlock_t rx_proc_lock; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 817 | u32 scan_processing; |
| 818 | u16 region_code; |
| 819 | struct mwifiex_802_11d_domain_reg domain_reg; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 820 | u16 scan_probes; |
| 821 | u32 scan_mode; |
| 822 | u16 specific_scan_time; |
| 823 | u16 active_scan_time; |
| 824 | u16 passive_scan_time; |
Avinash Patil | cb91be8 | 2014-09-12 20:08:54 +0530 | [diff] [blame] | 825 | u16 scan_chan_gap_time; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 826 | u8 fw_bands; |
| 827 | u8 adhoc_start_band; |
| 828 | u8 config_bands; |
| 829 | struct mwifiex_chan_scan_param_set *scan_channels; |
| 830 | u8 tx_lock_flag; |
| 831 | struct mwifiex_sleep_params sleep_params; |
| 832 | struct mwifiex_sleep_period sleep_period; |
| 833 | u16 ps_mode; |
| 834 | u32 ps_state; |
| 835 | u8 need_to_wakeup; |
| 836 | u16 multiple_dtim; |
| 837 | u16 local_listen_interval; |
| 838 | u16 null_pkt_interval; |
| 839 | struct sk_buff *sleep_cfm; |
| 840 | u16 bcn_miss_time_out; |
| 841 | u16 adhoc_awake_period; |
| 842 | u8 is_deep_sleep; |
| 843 | u8 delay_null_pkt; |
| 844 | u16 delay_to_ps; |
| 845 | u16 enhanced_ps_mode; |
| 846 | u8 pm_wakeup_card_req; |
| 847 | u16 gen_null_pkt; |
| 848 | u16 pps_uapsd_mode; |
| 849 | u32 pm_wakeup_fw_try; |
Amitkumar Karwar | 4636187 | 2014-12-31 02:36:41 -0800 | [diff] [blame] | 850 | struct timer_list wakeup_timer; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 851 | u8 is_hs_configured; |
| 852 | struct mwifiex_hs_config_param hs_cfg; |
| 853 | u8 hs_activated; |
| 854 | u16 hs_activate_wait_q_woken; |
| 855 | wait_queue_head_t hs_activate_wait_q; |
| 856 | bool is_suspended; |
Amitkumar Karwar | c0dbba6 | 2014-03-25 19:01:20 -0700 | [diff] [blame] | 857 | bool hs_enabling; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 858 | u8 event_body[MAX_EVENT_SIZE]; |
| 859 | u32 hw_dot_11n_dev_cap; |
| 860 | u8 hw_dev_mcs_support; |
Amitkumar Karwar | a533391 | 2014-02-27 19:35:18 -0800 | [diff] [blame] | 861 | u8 user_dev_mcs_support; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 862 | u8 adhoc_11n_enabled; |
Amitkumar Karwar | 21c3ba3 | 2011-12-20 23:47:21 -0800 | [diff] [blame] | 863 | u8 sec_chan_offset; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 864 | struct mwifiex_dbg dbg; |
| 865 | u8 arp_filter[ARP_FILTER_MAX_BUF_SIZE]; |
| 866 | u32 arp_filter_size; |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 867 | struct mwifiex_wait_queue cmd_wait_q; |
Amitkumar Karwar | efaaa8b | 2011-10-12 20:28:06 -0700 | [diff] [blame] | 868 | u8 scan_wait_q_woken; |
Avinash Patil | bbea3bc | 2011-12-08 20:41:05 -0800 | [diff] [blame] | 869 | spinlock_t queue_lock; /* lock for tx queues */ |
Avinash Patil | 67fdf39 | 2012-05-08 18:30:17 -0700 | [diff] [blame] | 870 | u8 country_code[IEEE80211_COUNTRY_STRING_LEN]; |
Avinash Patil | ede98bf | 2012-05-08 18:30:28 -0700 | [diff] [blame] | 871 | u16 max_mgmt_ie_index; |
Amitkumar Karwar | 388ec38 | 2013-05-17 17:50:25 -0700 | [diff] [blame] | 872 | const struct firmware *cal_data; |
Bing Zhao | 699b027 | 2013-12-13 18:33:01 -0800 | [diff] [blame] | 873 | struct device_node *dt_node; |
Yogesh Ashok Powar | a5f3905 | 2013-02-15 21:44:30 -0800 | [diff] [blame] | 874 | |
| 875 | /* 11AC */ |
| 876 | u32 is_hw_11ac_capable; |
| 877 | u32 hw_dot_11ac_dev_cap; |
| 878 | u32 hw_dot_11ac_mcs_support; |
| 879 | u32 usr_dot_11ac_dev_cap_bg; |
| 880 | u32 usr_dot_11ac_dev_cap_a; |
| 881 | u32 usr_dot_11ac_mcs_support; |
| 882 | |
Avinash Patil | 838e4f4 | 2012-08-03 18:06:08 -0700 | [diff] [blame] | 883 | atomic_t pending_bridged_pkts; |
Amitkumar Karwar | 6b41f94 | 2013-07-22 19:17:55 -0700 | [diff] [blame] | 884 | struct semaphore *card_sem; |
Amitkumar Karwar | 21f58d20 | 2014-02-11 18:39:56 -0800 | [diff] [blame] | 885 | bool ext_scan; |
Amitkumar Karwar | 8e17ea2 | 2014-03-07 19:41:26 -0800 | [diff] [blame] | 886 | u8 fw_api_ver; |
Amitkumar Karwar | 4b9fede | 2014-08-19 08:24:25 -0400 | [diff] [blame] | 887 | u8 key_api_major_ver, key_api_minor_ver; |
Amitkumar Karwar | 92c2538 | 2014-06-19 21:38:52 -0700 | [diff] [blame] | 888 | struct work_struct iface_work; |
| 889 | unsigned long iface_work_flags; |
| 890 | struct memory_type_mapping *mem_type_mapping_tbl; |
| 891 | u8 num_mem_types; |
| 892 | u8 curr_mem_idx; |
Xinming Hu | 11cd07a | 2014-12-23 19:14:10 +0530 | [diff] [blame] | 893 | void *drv_info_dump; |
| 894 | u32 drv_info_size; |
Avinash Patil | cb91be8 | 2014-09-12 20:08:54 +0530 | [diff] [blame] | 895 | bool scan_chan_gap_enabled; |
Avinash Patil | 6e25117 | 2014-09-12 20:08:59 +0530 | [diff] [blame] | 896 | struct sk_buff_head rx_data_q; |
Avinash Patil | bf35443 | 2014-10-31 16:08:26 +0530 | [diff] [blame] | 897 | struct mwifiex_chan_stats *chan_stats; |
| 898 | u32 num_in_chan_stats; |
| 899 | int survey_idx; |
Avinash Patil | 9927baa | 2014-11-13 21:54:16 +0530 | [diff] [blame] | 900 | bool auto_tdls; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 901 | }; |
| 902 | |
| 903 | int mwifiex_init_lock_list(struct mwifiex_adapter *adapter); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 904 | |
Avinash Patil | bbea3bc | 2011-12-08 20:41:05 -0800 | [diff] [blame] | 905 | void mwifiex_set_trans_start(struct net_device *dev); |
| 906 | |
| 907 | void mwifiex_stop_net_dev_queue(struct net_device *netdev, |
| 908 | struct mwifiex_adapter *adapter); |
| 909 | |
| 910 | void mwifiex_wake_up_net_dev_queue(struct net_device *netdev, |
| 911 | struct mwifiex_adapter *adapter); |
| 912 | |
Stone Piao | 9197ab9 | 2012-09-25 20:23:42 -0700 | [diff] [blame] | 913 | int mwifiex_init_priv(struct mwifiex_private *priv); |
| 914 | void mwifiex_free_priv(struct mwifiex_private *priv); |
| 915 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 916 | int mwifiex_init_fw(struct mwifiex_adapter *adapter); |
| 917 | |
| 918 | int mwifiex_init_fw_complete(struct mwifiex_adapter *adapter); |
| 919 | |
| 920 | int mwifiex_shutdown_drv(struct mwifiex_adapter *adapter); |
| 921 | |
| 922 | int mwifiex_shutdown_fw_complete(struct mwifiex_adapter *adapter); |
| 923 | |
| 924 | int mwifiex_dnld_fw(struct mwifiex_adapter *, struct mwifiex_fw_image *); |
| 925 | |
Avinash Patil | f3b369e | 2012-10-19 19:19:21 -0700 | [diff] [blame] | 926 | int mwifiex_recv_packet(struct mwifiex_private *priv, struct sk_buff *skb); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 927 | |
Avinash Patil | f3b369e | 2012-10-19 19:19:21 -0700 | [diff] [blame] | 928 | int mwifiex_process_mgmt_packet(struct mwifiex_private *priv, |
Stone Piao | 2dbaf75 | 2012-09-25 20:23:35 -0700 | [diff] [blame] | 929 | struct sk_buff *skb); |
| 930 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 931 | int mwifiex_process_event(struct mwifiex_adapter *adapter); |
| 932 | |
Amitkumar Karwar | efaaa8b | 2011-10-12 20:28:06 -0700 | [diff] [blame] | 933 | int mwifiex_complete_cmd(struct mwifiex_adapter *adapter, |
| 934 | struct cmd_ctrl_node *cmd_node); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 935 | |
Bing Zhao | fa0ecbb | 2014-02-27 19:35:12 -0800 | [diff] [blame] | 936 | int mwifiex_send_cmd(struct mwifiex_private *priv, u16 cmd_no, |
| 937 | u16 cmd_action, u32 cmd_oid, void *data_buf, bool sync); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 938 | |
| 939 | void mwifiex_cmd_timeout_func(unsigned long function_context); |
| 940 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 941 | int mwifiex_get_debug_info(struct mwifiex_private *, |
| 942 | struct mwifiex_debug_info *); |
| 943 | |
| 944 | int mwifiex_alloc_cmd_buffer(struct mwifiex_adapter *adapter); |
| 945 | int mwifiex_free_cmd_buffer(struct mwifiex_adapter *adapter); |
| 946 | void mwifiex_cancel_all_pending_cmd(struct mwifiex_adapter *adapter); |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 947 | void mwifiex_cancel_pending_ioctl(struct mwifiex_adapter *adapter); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 948 | |
| 949 | void mwifiex_insert_cmd_to_free_q(struct mwifiex_adapter *adapter, |
| 950 | struct cmd_ctrl_node *cmd_node); |
Bing Zhao | 9908b07 | 2013-04-01 12:44:46 -0700 | [diff] [blame] | 951 | void mwifiex_recycle_cmd_node(struct mwifiex_adapter *adapter, |
| 952 | struct cmd_ctrl_node *cmd_node); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 953 | |
| 954 | void mwifiex_insert_cmd_to_pending_q(struct mwifiex_adapter *adapter, |
| 955 | struct cmd_ctrl_node *cmd_node, |
| 956 | u32 addtail); |
| 957 | |
| 958 | int mwifiex_exec_next_cmd(struct mwifiex_adapter *adapter); |
| 959 | int mwifiex_process_cmdresp(struct mwifiex_adapter *adapter); |
| 960 | int mwifiex_handle_rx_packet(struct mwifiex_adapter *adapter, |
| 961 | struct sk_buff *skb); |
| 962 | int mwifiex_process_tx(struct mwifiex_private *priv, struct sk_buff *skb, |
| 963 | struct mwifiex_tx_param *tx_param); |
| 964 | int mwifiex_send_null_packet(struct mwifiex_private *priv, u8 flags); |
| 965 | int mwifiex_write_data_complete(struct mwifiex_adapter *adapter, |
Avinash Patil | 47411a0 | 2012-11-01 18:44:16 -0700 | [diff] [blame] | 966 | struct sk_buff *skb, int aggr, int status); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 967 | void mwifiex_clean_txrx(struct mwifiex_private *priv); |
| 968 | u8 mwifiex_check_last_packet_indication(struct mwifiex_private *priv); |
| 969 | void mwifiex_check_ps_cond(struct mwifiex_adapter *adapter); |
| 970 | void mwifiex_process_sleep_confirm_resp(struct mwifiex_adapter *, u8 *, |
| 971 | u32); |
| 972 | int mwifiex_cmd_enh_power_mode(struct mwifiex_private *priv, |
| 973 | struct host_cmd_ds_command *cmd, |
| 974 | u16 cmd_action, uint16_t ps_bitmap, |
Amitkumar Karwar | a5ffddb | 2011-06-20 15:21:48 -0700 | [diff] [blame] | 975 | struct mwifiex_ds_auto_ds *auto_ds); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 976 | int mwifiex_ret_enh_power_mode(struct mwifiex_private *priv, |
| 977 | struct host_cmd_ds_command *resp, |
Amitkumar Karwar | a5ffddb | 2011-06-20 15:21:48 -0700 | [diff] [blame] | 978 | struct mwifiex_ds_pm_cfg *pm_cfg); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 979 | void mwifiex_process_hs_config(struct mwifiex_adapter *adapter); |
| 980 | void mwifiex_hs_activated_event(struct mwifiex_private *priv, |
| 981 | u8 activated); |
Xinming Hu | 937a504 | 2014-06-19 21:38:56 -0700 | [diff] [blame] | 982 | int mwifiex_set_hs_params(struct mwifiex_private *priv, u16 action, |
| 983 | int cmd_type, struct mwifiex_ds_hs_cfg *hs_cfg); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 984 | int mwifiex_ret_802_11_hs_cfg(struct mwifiex_private *priv, |
| 985 | struct host_cmd_ds_command *resp); |
Avinash Patil | f3b369e | 2012-10-19 19:19:21 -0700 | [diff] [blame] | 986 | int mwifiex_process_rx_packet(struct mwifiex_private *priv, |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 987 | struct sk_buff *skb); |
| 988 | int mwifiex_sta_prepare_cmd(struct mwifiex_private *, uint16_t cmd_no, |
| 989 | u16 cmd_action, u32 cmd_oid, |
| 990 | void *data_buf, void *cmd_buf); |
Avinash Patil | 40d0703 | 2012-05-08 18:30:19 -0700 | [diff] [blame] | 991 | int mwifiex_uap_prepare_cmd(struct mwifiex_private *priv, uint16_t cmd_no, |
| 992 | u16 cmd_action, u32 cmd_oid, |
| 993 | void *data_buf, void *cmd_buf); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 994 | int mwifiex_process_sta_cmdresp(struct mwifiex_private *, u16 cmdresp_no, |
Amitkumar Karwar | a5ffddb | 2011-06-20 15:21:48 -0700 | [diff] [blame] | 995 | struct host_cmd_ds_command *resp); |
Avinash Patil | f3b369e | 2012-10-19 19:19:21 -0700 | [diff] [blame] | 996 | int mwifiex_process_sta_rx_packet(struct mwifiex_private *, |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 997 | struct sk_buff *skb); |
Avinash Patil | f3b369e | 2012-10-19 19:19:21 -0700 | [diff] [blame] | 998 | int mwifiex_process_uap_rx_packet(struct mwifiex_private *priv, |
Avinash Patil | 838e4f4 | 2012-08-03 18:06:08 -0700 | [diff] [blame] | 999 | struct sk_buff *skb); |
| 1000 | int mwifiex_handle_uap_rx_forward(struct mwifiex_private *priv, |
| 1001 | struct sk_buff *skb); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1002 | int mwifiex_process_sta_event(struct mwifiex_private *); |
Avinash Patil | 3d99d98 | 2012-08-03 18:06:06 -0700 | [diff] [blame] | 1003 | int mwifiex_process_uap_event(struct mwifiex_private *); |
Avinash Patil | 017a92a | 2012-08-03 18:06:07 -0700 | [diff] [blame] | 1004 | void mwifiex_delete_all_station_list(struct mwifiex_private *priv); |
Avinash Patil | 9817fff | 2014-12-05 23:23:40 +0530 | [diff] [blame] | 1005 | void mwifiex_wmm_del_peer_ra_list(struct mwifiex_private *priv, |
| 1006 | const u8 *ra_addr); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1007 | void *mwifiex_process_sta_txpd(struct mwifiex_private *, struct sk_buff *skb); |
Avinash Patil | 4ac8764 | 2012-09-10 18:30:49 -0700 | [diff] [blame] | 1008 | void *mwifiex_process_uap_txpd(struct mwifiex_private *, struct sk_buff *skb); |
Avinash Patil | 1247cc1 | 2015-01-28 15:42:02 +0530 | [diff] [blame] | 1009 | int mwifiex_sta_init_cmd(struct mwifiex_private *, u8 first_sta, bool init); |
Amitkumar Karwar | 572e8f3 | 2011-04-13 17:27:08 -0700 | [diff] [blame] | 1010 | int mwifiex_cmd_802_11_scan(struct host_cmd_ds_command *cmd, |
Amitkumar Karwar | a5ffddb | 2011-06-20 15:21:48 -0700 | [diff] [blame] | 1011 | struct mwifiex_scan_cmd_config *scan_cfg); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1012 | void mwifiex_queue_scan_cmd(struct mwifiex_private *priv, |
| 1013 | struct cmd_ctrl_node *cmd_node); |
| 1014 | int mwifiex_ret_802_11_scan(struct mwifiex_private *priv, |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 1015 | struct host_cmd_ds_command *resp); |
Amitkumar Karwar | b9be5f3 | 2012-02-27 22:04:14 -0800 | [diff] [blame] | 1016 | s32 mwifiex_ssid_cmp(struct cfg80211_ssid *ssid1, struct cfg80211_ssid *ssid2); |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 1017 | int mwifiex_associate(struct mwifiex_private *priv, |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1018 | struct mwifiex_bssdescriptor *bss_desc); |
| 1019 | int mwifiex_cmd_802_11_associate(struct mwifiex_private *priv, |
Amitkumar Karwar | a5ffddb | 2011-06-20 15:21:48 -0700 | [diff] [blame] | 1020 | struct host_cmd_ds_command *cmd, |
| 1021 | struct mwifiex_bssdescriptor *bss_desc); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1022 | int mwifiex_ret_802_11_associate(struct mwifiex_private *priv, |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 1023 | struct host_cmd_ds_command *resp); |
Amitkumar Karwar | 8cc1d52 | 2012-10-05 20:21:43 -0700 | [diff] [blame] | 1024 | void mwifiex_reset_connect_state(struct mwifiex_private *priv, u16 reason); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1025 | u8 mwifiex_band_to_radio_type(u8 band); |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 1026 | int mwifiex_deauthenticate(struct mwifiex_private *priv, u8 *mac); |
Amitkumar Karwar | 848819f | 2014-02-27 19:35:17 -0800 | [diff] [blame] | 1027 | void mwifiex_deauthenticate_all(struct mwifiex_adapter *adapter); |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 1028 | int mwifiex_adhoc_start(struct mwifiex_private *priv, |
Amitkumar Karwar | b9be5f3 | 2012-02-27 22:04:14 -0800 | [diff] [blame] | 1029 | struct cfg80211_ssid *adhoc_ssid); |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 1030 | int mwifiex_adhoc_join(struct mwifiex_private *priv, |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1031 | struct mwifiex_bssdescriptor *bss_desc); |
| 1032 | int mwifiex_cmd_802_11_ad_hoc_start(struct mwifiex_private *priv, |
| 1033 | struct host_cmd_ds_command *cmd, |
Amitkumar Karwar | b9be5f3 | 2012-02-27 22:04:14 -0800 | [diff] [blame] | 1034 | struct cfg80211_ssid *req_ssid); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1035 | int mwifiex_cmd_802_11_ad_hoc_join(struct mwifiex_private *priv, |
| 1036 | struct host_cmd_ds_command *cmd, |
Amitkumar Karwar | a5ffddb | 2011-06-20 15:21:48 -0700 | [diff] [blame] | 1037 | struct mwifiex_bssdescriptor *bss_desc); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1038 | int mwifiex_ret_802_11_ad_hoc(struct mwifiex_private *priv, |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 1039 | struct host_cmd_ds_command *resp); |
Amitkumar Karwar | 572e8f3 | 2011-04-13 17:27:08 -0700 | [diff] [blame] | 1040 | 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] | 1041 | struct mwifiex_chan_freq_power *mwifiex_get_cfp(struct mwifiex_private *priv, |
| 1042 | u8 band, u16 channel, u32 freq); |
Yogesh Ashok Powar | a5f3905 | 2013-02-15 21:44:30 -0800 | [diff] [blame] | 1043 | u32 mwifiex_index_to_data_rate(struct mwifiex_private *priv, |
| 1044 | u8 index, u8 ht_info); |
| 1045 | u32 mwifiex_index_to_acs_data_rate(struct mwifiex_private *priv, |
| 1046 | u8 index, u8 ht_info); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1047 | u32 mwifiex_find_freq_from_band_chan(u8, u8); |
| 1048 | int mwifiex_cmd_append_vsie_tlv(struct mwifiex_private *priv, u16 vsie_mask, |
| 1049 | u8 **buffer); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1050 | u32 mwifiex_get_active_data_rates(struct mwifiex_private *priv, |
| 1051 | u8 *rates); |
| 1052 | u32 mwifiex_get_supported_rates(struct mwifiex_private *priv, u8 *rates); |
Avinash Patil | 78dfca6 | 2013-07-30 17:18:56 -0700 | [diff] [blame] | 1053 | u32 mwifiex_get_rates_from_cfg80211(struct mwifiex_private *priv, |
| 1054 | u8 *rates, u8 radio_type); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1055 | u8 mwifiex_is_rate_auto(struct mwifiex_private *priv); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1056 | extern u16 region_code_index[MWIFIEX_MAX_REGION_CODE]; |
| 1057 | void mwifiex_save_curr_bcn(struct mwifiex_private *priv); |
| 1058 | void mwifiex_free_curr_bcn(struct mwifiex_private *priv); |
| 1059 | int mwifiex_cmd_get_hw_spec(struct mwifiex_private *priv, |
| 1060 | struct host_cmd_ds_command *cmd); |
| 1061 | int mwifiex_ret_get_hw_spec(struct mwifiex_private *priv, |
| 1062 | struct host_cmd_ds_command *resp); |
| 1063 | int is_command_pending(struct mwifiex_adapter *adapter); |
Yogesh Ashok Powar | 93a1df4 | 2011-09-26 20:37:26 -0700 | [diff] [blame] | 1064 | void mwifiex_init_priv_params(struct mwifiex_private *priv, |
| 1065 | struct net_device *dev); |
Avinash Patil | f752dcd | 2012-05-08 18:30:26 -0700 | [diff] [blame] | 1066 | int mwifiex_set_secure_params(struct mwifiex_private *priv, |
| 1067 | struct mwifiex_uap_bss_param *bss_config, |
| 1068 | struct cfg80211_ap_settings *params); |
Avinash Patil | 2228125 | 2012-06-15 12:21:53 -0700 | [diff] [blame] | 1069 | void mwifiex_set_ht_params(struct mwifiex_private *priv, |
| 1070 | struct mwifiex_uap_bss_param *bss_cfg, |
| 1071 | struct cfg80211_ap_settings *params); |
Yogesh Ashok Powar | 83c78da | 2013-03-18 20:06:03 -0700 | [diff] [blame] | 1072 | void mwifiex_set_vht_params(struct mwifiex_private *priv, |
| 1073 | struct mwifiex_uap_bss_param *bss_cfg, |
| 1074 | struct cfg80211_ap_settings *params); |
Avinash Patil | a3c2c4f | 2012-08-27 20:32:53 -0700 | [diff] [blame] | 1075 | void mwifiex_set_uap_rates(struct mwifiex_uap_bss_param *bss_cfg, |
| 1076 | struct cfg80211_ap_settings *params); |
Yogesh Ashok Powar | 83c78da | 2013-03-18 20:06:03 -0700 | [diff] [blame] | 1077 | void mwifiex_set_vht_width(struct mwifiex_private *priv, |
| 1078 | enum nl80211_chan_width width, |
| 1079 | bool ap_11ac_disable); |
Avinash Patil | 54428c5 | 2013-01-02 16:56:01 -0800 | [diff] [blame] | 1080 | void |
| 1081 | mwifiex_set_wmm_params(struct mwifiex_private *priv, |
| 1082 | struct mwifiex_uap_bss_param *bss_cfg, |
| 1083 | struct cfg80211_ap_settings *params); |
Avinash Patil | 04abc0a | 2013-03-27 19:10:31 -0700 | [diff] [blame] | 1084 | void mwifiex_set_ba_params(struct mwifiex_private *priv); |
Avinash Patil | 2b6254d | 2013-03-27 19:10:32 -0700 | [diff] [blame] | 1085 | void mwifiex_set_11ac_ba_params(struct mwifiex_private *priv); |
Amitkumar Karwar | 21f58d20 | 2014-02-11 18:39:56 -0800 | [diff] [blame] | 1086 | int mwifiex_cmd_802_11_scan_ext(struct mwifiex_private *priv, |
| 1087 | struct host_cmd_ds_command *cmd, |
| 1088 | void *data_buf); |
Avinash Patil | bf35443 | 2014-10-31 16:08:26 +0530 | [diff] [blame] | 1089 | int mwifiex_ret_802_11_scan_ext(struct mwifiex_private *priv, |
| 1090 | struct host_cmd_ds_command *resp); |
Amitkumar Karwar | 21f58d20 | 2014-02-11 18:39:56 -0800 | [diff] [blame] | 1091 | int mwifiex_handle_event_ext_scan_report(struct mwifiex_private *priv, |
| 1092 | void *buf); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1093 | |
| 1094 | /* |
| 1095 | * This function checks if the queuing is RA based or not. |
| 1096 | */ |
| 1097 | static inline u8 |
| 1098 | mwifiex_queuing_ra_based(struct mwifiex_private *priv) |
| 1099 | { |
| 1100 | /* |
| 1101 | * Currently we assume if we are in Infra, then DA=RA. This might not be |
| 1102 | * true in the future |
| 1103 | */ |
Bing Zhao | eecd825 | 2011-03-28 17:55:41 -0700 | [diff] [blame] | 1104 | if ((priv->bss_mode == NL80211_IFTYPE_STATION) && |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1105 | (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA)) |
| 1106 | return false; |
| 1107 | |
| 1108 | return true; |
| 1109 | } |
| 1110 | |
| 1111 | /* |
| 1112 | * This function copies rates. |
| 1113 | */ |
| 1114 | static inline u32 |
| 1115 | mwifiex_copy_rates(u8 *dest, u32 pos, u8 *src, int len) |
| 1116 | { |
| 1117 | int i; |
| 1118 | |
| 1119 | for (i = 0; i < len && src[i]; i++, pos++) { |
| 1120 | if (pos >= MWIFIEX_SUPPORTED_RATES) |
| 1121 | break; |
| 1122 | dest[pos] = src[i]; |
| 1123 | } |
| 1124 | |
| 1125 | return pos; |
| 1126 | } |
| 1127 | |
| 1128 | /* |
| 1129 | * This function returns the correct private structure pointer based |
| 1130 | * upon the BSS type and BSS number. |
| 1131 | */ |
| 1132 | static inline struct mwifiex_private * |
| 1133 | mwifiex_get_priv_by_id(struct mwifiex_adapter *adapter, |
Amitkumar Karwar | 2be7859 | 2011-04-15 20:50:42 -0700 | [diff] [blame] | 1134 | u8 bss_num, u8 bss_type) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1135 | { |
| 1136 | int i; |
| 1137 | |
| 1138 | for (i = 0; i < adapter->priv_num; i++) { |
| 1139 | if (adapter->priv[i]) { |
Yogesh Ashok Powar | f57c1ed | 2012-03-13 19:22:37 -0700 | [diff] [blame] | 1140 | if ((adapter->priv[i]->bss_num == bss_num) && |
| 1141 | (adapter->priv[i]->bss_type == bss_type)) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1142 | break; |
| 1143 | } |
| 1144 | } |
| 1145 | return ((i < adapter->priv_num) ? adapter->priv[i] : NULL); |
| 1146 | } |
| 1147 | |
| 1148 | /* |
| 1149 | * This function returns the first available private structure pointer |
| 1150 | * based upon the BSS role. |
| 1151 | */ |
| 1152 | static inline struct mwifiex_private * |
| 1153 | mwifiex_get_priv(struct mwifiex_adapter *adapter, |
| 1154 | enum mwifiex_bss_role bss_role) |
| 1155 | { |
| 1156 | int i; |
| 1157 | |
| 1158 | for (i = 0; i < adapter->priv_num; i++) { |
| 1159 | if (adapter->priv[i]) { |
| 1160 | if (bss_role == MWIFIEX_BSS_ROLE_ANY || |
| 1161 | GET_BSS_ROLE(adapter->priv[i]) == bss_role) |
| 1162 | break; |
| 1163 | } |
| 1164 | } |
| 1165 | |
| 1166 | return ((i < adapter->priv_num) ? adapter->priv[i] : NULL); |
| 1167 | } |
| 1168 | |
| 1169 | /* |
Avinash Patil | cf05233 | 2015-01-28 15:42:03 +0530 | [diff] [blame] | 1170 | * This function returns the first available unused private structure pointer. |
| 1171 | */ |
| 1172 | static inline struct mwifiex_private * |
| 1173 | mwifiex_get_unused_priv(struct mwifiex_adapter *adapter) |
| 1174 | { |
| 1175 | int i; |
| 1176 | |
| 1177 | for (i = 0; i < adapter->priv_num; i++) { |
| 1178 | if (adapter->priv[i]) { |
| 1179 | if (adapter->priv[i]->bss_mode == |
| 1180 | NL80211_IFTYPE_UNSPECIFIED) |
| 1181 | break; |
| 1182 | } |
| 1183 | } |
| 1184 | |
| 1185 | return ((i < adapter->priv_num) ? adapter->priv[i] : NULL); |
| 1186 | } |
| 1187 | |
| 1188 | /* |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1189 | * This function returns the driver private structure of a network device. |
| 1190 | */ |
| 1191 | static inline struct mwifiex_private * |
| 1192 | mwifiex_netdev_get_priv(struct net_device *dev) |
| 1193 | { |
| 1194 | return (struct mwifiex_private *) (*(unsigned long *) netdev_priv(dev)); |
| 1195 | } |
| 1196 | |
Stone Piao | e39faa7 | 2012-09-25 20:23:32 -0700 | [diff] [blame] | 1197 | /* |
| 1198 | * This function checks if a skb holds a management frame. |
| 1199 | */ |
| 1200 | static inline bool mwifiex_is_skb_mgmt_frame(struct sk_buff *skb) |
| 1201 | { |
Tobias Waldekranz | cfcd926 | 2013-08-26 09:18:06 +0200 | [diff] [blame] | 1202 | return (le32_to_cpu(*(__le32 *)skb->data) == PKT_TYPE_MGMT); |
Stone Piao | e39faa7 | 2012-09-25 20:23:32 -0700 | [diff] [blame] | 1203 | } |
| 1204 | |
Amitkumar Karwar | b887664 | 2013-06-18 16:36:58 -0700 | [diff] [blame] | 1205 | /* This function retrieves channel closed for operation by Channel |
| 1206 | * Switch Announcement. |
| 1207 | */ |
| 1208 | static inline u8 |
| 1209 | mwifiex_11h_get_csa_closed_channel(struct mwifiex_private *priv) |
| 1210 | { |
| 1211 | if (!priv->csa_chan) |
| 1212 | return 0; |
| 1213 | |
| 1214 | /* Clear csa channel, if DFS channel move time has passed */ |
Manuel Schölling | 55fdb85 | 2014-05-25 19:59:36 +0200 | [diff] [blame] | 1215 | if (time_after(jiffies, priv->csa_expire_time)) { |
Amitkumar Karwar | b887664 | 2013-06-18 16:36:58 -0700 | [diff] [blame] | 1216 | priv->csa_chan = 0; |
| 1217 | priv->csa_expire_time = 0; |
| 1218 | } |
| 1219 | |
| 1220 | return priv->csa_chan; |
| 1221 | } |
| 1222 | |
Avinash Patil | cb91be8 | 2014-09-12 20:08:54 +0530 | [diff] [blame] | 1223 | static inline u8 mwifiex_is_any_intf_active(struct mwifiex_private *priv) |
| 1224 | { |
| 1225 | struct mwifiex_private *priv_num; |
| 1226 | int i; |
| 1227 | |
| 1228 | for (i = 0; i < priv->adapter->priv_num; i++) { |
| 1229 | priv_num = priv->adapter->priv[i]; |
| 1230 | if (priv_num) { |
| 1231 | if ((GET_BSS_ROLE(priv_num) == MWIFIEX_BSS_ROLE_UAP && |
| 1232 | priv_num->bss_started) || |
| 1233 | (GET_BSS_ROLE(priv_num) == MWIFIEX_BSS_ROLE_STA && |
| 1234 | priv_num->media_connected)) |
| 1235 | return 1; |
| 1236 | } |
| 1237 | } |
| 1238 | |
| 1239 | return 0; |
| 1240 | } |
| 1241 | |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 1242 | int mwifiex_init_shutdown_fw(struct mwifiex_private *priv, |
| 1243 | u32 func_init_shutdown); |
Amitkumar Karwar | d930fae | 2011-10-11 17:41:21 -0700 | [diff] [blame] | 1244 | int mwifiex_add_card(void *, struct semaphore *, struct mwifiex_if_ops *, u8); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1245 | int mwifiex_remove_card(struct mwifiex_adapter *, struct semaphore *); |
| 1246 | |
| 1247 | void mwifiex_get_version(struct mwifiex_adapter *adapter, char *version, |
| 1248 | int maxlen); |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 1249 | int mwifiex_request_set_multicast_list(struct mwifiex_private *priv, |
| 1250 | struct mwifiex_multicast_list *mcast_list); |
| 1251 | int mwifiex_copy_mcast_addr(struct mwifiex_multicast_list *mlist, |
| 1252 | struct net_device *dev); |
Amitkumar Karwar | 00d7ea1 | 2013-03-15 18:47:05 -0700 | [diff] [blame] | 1253 | int mwifiex_wait_queue_complete(struct mwifiex_adapter *adapter, |
| 1254 | struct cmd_ctrl_node *cmd_queued); |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1255 | int mwifiex_bss_start(struct mwifiex_private *priv, struct cfg80211_bss *bss, |
Amitkumar Karwar | b9be5f3 | 2012-02-27 22:04:14 -0800 | [diff] [blame] | 1256 | struct cfg80211_ssid *req_ssid); |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 1257 | int mwifiex_cancel_hs(struct mwifiex_private *priv, int cmd_type); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1258 | int mwifiex_enable_hs(struct mwifiex_adapter *adapter); |
Amitkumar Karwar | a049093 | 2011-07-13 20:51:59 -0700 | [diff] [blame] | 1259 | int mwifiex_disable_auto_ds(struct mwifiex_private *priv); |
Amitkumar Karwar | 006606c | 2012-07-13 20:09:31 -0700 | [diff] [blame] | 1260 | int mwifiex_drv_get_data_rate(struct mwifiex_private *priv, u32 *rate); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1261 | int mwifiex_request_scan(struct mwifiex_private *priv, |
Amitkumar Karwar | b9be5f3 | 2012-02-27 22:04:14 -0800 | [diff] [blame] | 1262 | struct cfg80211_ssid *req_ssid); |
Amitkumar Karwar | 1a1fb97 | 2012-06-27 19:57:56 -0700 | [diff] [blame] | 1263 | int mwifiex_scan_networks(struct mwifiex_private *priv, |
| 1264 | const struct mwifiex_user_scan_cfg *user_scan_in); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1265 | int mwifiex_set_radio(struct mwifiex_private *priv, u8 option); |
| 1266 | |
Ying Luo | 53b1123 | 2012-08-03 18:06:13 -0700 | [diff] [blame] | 1267 | int mwifiex_set_encode(struct mwifiex_private *priv, struct key_params *kp, |
| 1268 | const u8 *key, int key_len, u8 key_index, |
| 1269 | const u8 *mac_addr, int disable); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1270 | |
Johannes Berg | 4b5800f | 2014-01-15 14:55:59 +0100 | [diff] [blame] | 1271 | int mwifiex_set_gen_ie(struct mwifiex_private *priv, const u8 *ie, int ie_len); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1272 | |
| 1273 | int mwifiex_get_ver_ext(struct mwifiex_private *priv); |
| 1274 | |
Stone Piao | 7feb4c4 | 2012-09-25 20:23:36 -0700 | [diff] [blame] | 1275 | int mwifiex_remain_on_chan_cfg(struct mwifiex_private *priv, u16 action, |
| 1276 | struct ieee80211_channel *chan, |
Stone Piao | 7feb4c4 | 2012-09-25 20:23:36 -0700 | [diff] [blame] | 1277 | unsigned int duration); |
| 1278 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1279 | int mwifiex_get_stats_info(struct mwifiex_private *priv, |
| 1280 | struct mwifiex_ds_get_stats *log); |
| 1281 | |
| 1282 | int mwifiex_reg_write(struct mwifiex_private *priv, u32 reg_type, |
| 1283 | u32 reg_offset, u32 reg_value); |
| 1284 | |
| 1285 | int mwifiex_reg_read(struct mwifiex_private *priv, u32 reg_type, |
| 1286 | u32 reg_offset, u32 *value); |
| 1287 | |
| 1288 | int mwifiex_eeprom_read(struct mwifiex_private *priv, u16 offset, u16 bytes, |
| 1289 | u8 *value); |
| 1290 | |
| 1291 | int mwifiex_set_11n_httx_cfg(struct mwifiex_private *priv, int data); |
| 1292 | |
| 1293 | int mwifiex_get_11n_httx_cfg(struct mwifiex_private *priv, int *data); |
| 1294 | |
| 1295 | int mwifiex_set_tx_rate_cfg(struct mwifiex_private *priv, int tx_rate_index); |
| 1296 | |
| 1297 | int mwifiex_get_tx_rate_cfg(struct mwifiex_private *priv, int *tx_rate_index); |
| 1298 | |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 1299 | int mwifiex_drv_set_power(struct mwifiex_private *priv, u32 *ps_mode); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1300 | |
| 1301 | int mwifiex_drv_get_driver_version(struct mwifiex_adapter *adapter, |
| 1302 | char *version, int max_len); |
| 1303 | |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 1304 | int mwifiex_set_tx_power(struct mwifiex_private *priv, |
| 1305 | struct mwifiex_power_cfg *power_cfg); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1306 | |
| 1307 | int mwifiex_main_process(struct mwifiex_adapter *); |
| 1308 | |
Stone Piao | e39faa7 | 2012-09-25 20:23:32 -0700 | [diff] [blame] | 1309 | int mwifiex_queue_tx_pkt(struct mwifiex_private *priv, struct sk_buff *skb); |
| 1310 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1311 | int mwifiex_get_bss_info(struct mwifiex_private *, |
| 1312 | struct mwifiex_bss_info *); |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1313 | int mwifiex_fill_new_bss_desc(struct mwifiex_private *priv, |
Amitkumar Karwar | 9558a40 | 2012-04-16 21:36:51 -0700 | [diff] [blame] | 1314 | struct cfg80211_bss *bss, |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1315 | struct mwifiex_bssdescriptor *bss_desc); |
| 1316 | int mwifiex_update_bss_desc_with_ie(struct mwifiex_adapter *adapter, |
Amitkumar Karwar | 9558a40 | 2012-04-16 21:36:51 -0700 | [diff] [blame] | 1317 | struct mwifiex_bssdescriptor *bss_entry); |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1318 | int mwifiex_check_network_compatibility(struct mwifiex_private *priv, |
| 1319 | struct mwifiex_bssdescriptor *bss_desc); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1320 | |
Stone Piao | 7feb4c4 | 2012-09-25 20:23:36 -0700 | [diff] [blame] | 1321 | u8 mwifiex_chan_type_to_sec_chan_offset(enum nl80211_channel_type chan_type); |
| 1322 | |
Johannes Berg | 84efbb8 | 2012-06-16 00:00:26 +0200 | [diff] [blame] | 1323 | struct wireless_dev *mwifiex_add_virtual_intf(struct wiphy *wiphy, |
Johannes Berg | 552bff0 | 2012-09-19 09:26:06 +0200 | [diff] [blame] | 1324 | const char *name, |
Johannes Berg | 84efbb8 | 2012-06-16 00:00:26 +0200 | [diff] [blame] | 1325 | enum nl80211_iftype type, |
| 1326 | u32 *flags, |
| 1327 | struct vif_params *params); |
| 1328 | 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] | 1329 | |
Avinash Patil | 9b930ea | 2012-05-08 18:30:23 -0700 | [diff] [blame] | 1330 | void mwifiex_set_sys_config_invalid_data(struct mwifiex_uap_bss_param *config); |
| 1331 | |
Amitkumar Karwar | 7da060c | 2013-03-04 16:27:59 -0800 | [diff] [blame] | 1332 | int mwifiex_add_wowlan_magic_pkt_filter(struct mwifiex_adapter *adapter); |
| 1333 | |
Avinash Patil | f31acab | 2012-05-08 18:30:29 -0700 | [diff] [blame] | 1334 | int mwifiex_set_mgmt_ies(struct mwifiex_private *priv, |
Avinash Patil | adb6ed0 | 2012-06-28 20:30:25 -0700 | [diff] [blame] | 1335 | struct cfg80211_beacon_data *data); |
Avinash Patil | 40bbc21 | 2012-05-08 18:30:30 -0700 | [diff] [blame] | 1336 | int mwifiex_del_mgmt_ies(struct mwifiex_private *priv); |
Amitkumar Karwar | 9e04a7c | 2012-04-09 20:06:54 -0700 | [diff] [blame] | 1337 | u8 *mwifiex_11d_code_2_region(u8 code); |
Avinash Patil | b654ca1 | 2015-01-28 15:54:19 +0530 | [diff] [blame] | 1338 | void mwifiex_uap_set_channel(struct mwifiex_uap_bss_param *bss_cfg, |
| 1339 | struct cfg80211_chan_def chandef); |
| 1340 | int mwifiex_config_start_uap(struct mwifiex_private *priv, |
| 1341 | struct mwifiex_uap_bss_param *bss_cfg); |
Avinash Patil | 0f9e9b8 | 2013-05-17 17:50:23 -0700 | [diff] [blame] | 1342 | void mwifiex_uap_del_sta_data(struct mwifiex_private *priv, |
| 1343 | struct mwifiex_sta_node *node); |
Yogesh Ashok Powar | 93a1df4 | 2011-09-26 20:37:26 -0700 | [diff] [blame] | 1344 | |
Avinash Patil | cf075ea | 2015-01-28 15:54:25 +0530 | [diff] [blame] | 1345 | void mwifiex_init_11h_params(struct mwifiex_private *priv); |
| 1346 | int mwifiex_is_11h_active(struct mwifiex_private *priv); |
| 1347 | int mwifiex_11h_activate(struct mwifiex_private *priv, bool flag); |
| 1348 | |
Amitkumar Karwar | 2a7305c | 2013-06-19 08:49:05 -0700 | [diff] [blame] | 1349 | void mwifiex_11h_process_join(struct mwifiex_private *priv, u8 **buffer, |
| 1350 | struct mwifiex_bssdescriptor *bss_desc); |
| 1351 | int mwifiex_11h_handle_event_chanswann(struct mwifiex_private *priv); |
Bing Zhao | 82efa16 | 2013-12-13 18:33:02 -0800 | [diff] [blame] | 1352 | int mwifiex_dnld_dt_cfgdata(struct mwifiex_private *priv, |
| 1353 | struct device_node *node, const char *prefix); |
Bing Zhao | b58df44 | 2014-01-08 15:45:57 -0800 | [diff] [blame] | 1354 | void mwifiex_dnld_txpwr_table(struct mwifiex_private *priv); |
Amitkumar Karwar | 2a7305c | 2013-06-19 08:49:05 -0700 | [diff] [blame] | 1355 | |
Amitkumar Karwar | 0d7f53e | 2013-03-04 16:27:58 -0800 | [diff] [blame] | 1356 | extern const struct ethtool_ops mwifiex_ethtool_ops; |
| 1357 | |
Avinash Patil | 4bcf93d | 2014-02-07 16:27:30 -0800 | [diff] [blame] | 1358 | void mwifiex_del_all_sta_list(struct mwifiex_private *priv); |
Johannes Berg | 3b3a016 | 2014-05-19 17:19:31 +0200 | [diff] [blame] | 1359 | void mwifiex_del_sta_entry(struct mwifiex_private *priv, const u8 *mac); |
Avinash Patil | 4bcf93d | 2014-02-07 16:27:30 -0800 | [diff] [blame] | 1360 | void |
| 1361 | mwifiex_set_sta_ht_cap(struct mwifiex_private *priv, const u8 *ies, |
| 1362 | int ies_len, struct mwifiex_sta_node *node); |
| 1363 | struct mwifiex_sta_node * |
Johannes Berg | 3b3a016 | 2014-05-19 17:19:31 +0200 | [diff] [blame] | 1364 | mwifiex_add_sta_entry(struct mwifiex_private *priv, const u8 *mac); |
Avinash Patil | 4bcf93d | 2014-02-07 16:27:30 -0800 | [diff] [blame] | 1365 | struct mwifiex_sta_node * |
Johannes Berg | 3b3a016 | 2014-05-19 17:19:31 +0200 | [diff] [blame] | 1366 | mwifiex_get_sta_entry(struct mwifiex_private *priv, const u8 *mac); |
| 1367 | int mwifiex_send_tdls_data_frame(struct mwifiex_private *priv, const u8 *peer, |
Avinash Patil | b23bce2 | 2014-02-07 16:27:32 -0800 | [diff] [blame] | 1368 | u8 action_code, u8 dialog_token, |
| 1369 | u16 status_code, const u8 *extra_ies, |
| 1370 | size_t extra_ies_len); |
Johannes Berg | 3b3a016 | 2014-05-19 17:19:31 +0200 | [diff] [blame] | 1371 | int mwifiex_send_tdls_action_frame(struct mwifiex_private *priv, const u8 *peer, |
| 1372 | u8 action_code, u8 dialog_token, |
| 1373 | u16 status_code, const u8 *extra_ies, |
| 1374 | size_t extra_ies_len); |
Avinash Patil | 5f2caaf | 2014-02-07 16:27:33 -0800 | [diff] [blame] | 1375 | void mwifiex_process_tdls_action_frame(struct mwifiex_private *priv, |
| 1376 | u8 *buf, int len); |
Johannes Berg | 3b3a016 | 2014-05-19 17:19:31 +0200 | [diff] [blame] | 1377 | int mwifiex_tdls_oper(struct mwifiex_private *priv, const u8 *peer, u8 action); |
| 1378 | int mwifiex_get_tdls_link_status(struct mwifiex_private *priv, const u8 *mac); |
Xinming Hu | 72df631 | 2014-12-23 19:14:05 +0530 | [diff] [blame] | 1379 | int mwifiex_get_tdls_list(struct mwifiex_private *priv, |
| 1380 | struct tdls_peer_info *buf); |
Avinash Patil | be104b9 | 2014-02-07 16:30:41 -0800 | [diff] [blame] | 1381 | void mwifiex_disable_all_tdls_links(struct mwifiex_private *priv); |
Avinash Patil | 5f6d598 | 2014-02-07 16:30:39 -0800 | [diff] [blame] | 1382 | bool mwifiex_is_bss_in_11ac_mode(struct mwifiex_private *priv); |
| 1383 | u8 mwifiex_get_center_freq_index(struct mwifiex_private *priv, u8 band, |
| 1384 | u32 pri_chan, u8 chan_bw); |
Avinash Patil | cb91be8 | 2014-09-12 20:08:54 +0530 | [diff] [blame] | 1385 | int mwifiex_init_channel_scan_gap(struct mwifiex_adapter *adapter); |
Avinash Patil | 4bcf93d | 2014-02-07 16:27:30 -0800 | [diff] [blame] | 1386 | |
Avinash Patil | 9927baa | 2014-11-13 21:54:16 +0530 | [diff] [blame] | 1387 | int mwifiex_tdls_check_tx(struct mwifiex_private *priv, struct sk_buff *skb); |
| 1388 | void mwifiex_flush_auto_tdls_list(struct mwifiex_private *priv); |
| 1389 | void mwifiex_auto_tdls_update_peer_status(struct mwifiex_private *priv, |
| 1390 | const u8 *mac, u8 link_status); |
| 1391 | void mwifiex_auto_tdls_update_peer_signal(struct mwifiex_private *priv, |
| 1392 | u8 *mac, s8 snr, s8 nflr); |
| 1393 | void mwifiex_check_auto_tdls(unsigned long context); |
| 1394 | void mwifiex_add_auto_tdls_peer(struct mwifiex_private *priv, const u8 *mac); |
| 1395 | void mwifiex_setup_auto_tdls_timer(struct mwifiex_private *priv); |
| 1396 | void mwifiex_clean_auto_tdls(struct mwifiex_private *priv); |
Avinash Patil | 85afb18 | 2015-01-28 15:54:21 +0530 | [diff] [blame] | 1397 | int mwifiex_cmd_issue_chan_report_request(struct mwifiex_private *priv, |
| 1398 | struct host_cmd_ds_command *cmd, |
| 1399 | void *data_buf); |
Avinash Patil | 0a694d6 | 2015-01-28 15:54:22 +0530 | [diff] [blame] | 1400 | int mwifiex_11h_handle_chanrpt_ready(struct mwifiex_private *priv, |
| 1401 | struct sk_buff *skb); |
Avinash Patil | 9927baa | 2014-11-13 21:54:16 +0530 | [diff] [blame] | 1402 | |
Amitkumar Karwar | 808bbeb | 2014-11-25 06:43:05 -0800 | [diff] [blame] | 1403 | void mwifiex_parse_tx_status_event(struct mwifiex_private *priv, |
| 1404 | void *event_body); |
| 1405 | |
Amitkumar Karwar | 18ca438 | 2014-11-25 06:43:06 -0800 | [diff] [blame] | 1406 | struct sk_buff * |
| 1407 | mwifiex_clone_skb_for_tx_status(struct mwifiex_private *priv, |
| 1408 | struct sk_buff *skb, u8 flag, u64 *cookie); |
Avinash Patil | 85afb18 | 2015-01-28 15:54:21 +0530 | [diff] [blame] | 1409 | void mwifiex_dfs_cac_work_queue(struct work_struct *work); |
Avinash Patil | 7d65203 | 2015-01-28 15:54:24 +0530 | [diff] [blame] | 1410 | void mwifiex_dfs_chan_sw_work_queue(struct work_struct *work); |
Avinash Patil | 85afb18 | 2015-01-28 15:54:21 +0530 | [diff] [blame] | 1411 | void mwifiex_abort_cac(struct mwifiex_private *priv); |
Avinash Patil | 3b57c1a | 2015-01-28 15:54:23 +0530 | [diff] [blame] | 1412 | int mwifiex_11h_handle_radar_detected(struct mwifiex_private *priv, |
| 1413 | struct sk_buff *skb); |
Amitkumar Karwar | 18ca438 | 2014-11-25 06:43:06 -0800 | [diff] [blame] | 1414 | |
Xinming Hu | cbf6e05 | 2014-12-23 19:14:07 +0530 | [diff] [blame] | 1415 | void mwifiex_hist_data_set(struct mwifiex_private *priv, u8 rx_rate, s8 snr, |
| 1416 | s8 nflr); |
| 1417 | void mwifiex_hist_data_reset(struct mwifiex_private *priv); |
| 1418 | void mwifiex_hist_data_add(struct mwifiex_private *priv, |
| 1419 | u8 rx_rate, s8 snr, s8 nflr); |
| 1420 | u8 mwifiex_adjust_data_rate(struct mwifiex_private *priv, |
| 1421 | u8 rx_rate, u8 ht_info); |
| 1422 | |
Xinming Hu | 11cd07a | 2014-12-23 19:14:10 +0530 | [diff] [blame] | 1423 | void mwifiex_dump_drv_info(struct mwifiex_adapter *adapter); |
Avinash Patil | 31def91 | 2015-02-13 17:41:08 +0530 | [diff] [blame^] | 1424 | void *mwifiex_alloc_rx_buf(int rx_len, gfp_t flags); |
Xinming Hu | 11cd07a | 2014-12-23 19:14:10 +0530 | [diff] [blame] | 1425 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1426 | #ifdef CONFIG_DEBUG_FS |
| 1427 | void mwifiex_debugfs_init(void); |
| 1428 | void mwifiex_debugfs_remove(void); |
| 1429 | |
| 1430 | void mwifiex_dev_debugfs_init(struct mwifiex_private *priv); |
| 1431 | void mwifiex_dev_debugfs_remove(struct mwifiex_private *priv); |
| 1432 | #endif |
| 1433 | #endif /* !_MWIFIEX_MAIN_H_ */ |