blob: 0e52556044d9c0621c4c15b44e3fc6a7c709f579 [file] [log] [blame]
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001/*
2 * This file is part of wl1271
3 *
4 * Copyright (C) 1998-2009 Texas Instruments. All rights reserved.
5 * Copyright (C) 2008-2009 Nokia Corporation
6 *
7 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21 * 02110-1301 USA
22 *
23 */
24
Luciano Coelho83885692012-05-10 12:13:42 +030025#ifndef __WLCORE_I_H__
26#define __WLCORE_I_H__
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030027
28#include <linux/mutex.h>
29#include <linux/completion.h>
30#include <linux/spinlock.h>
31#include <linux/list.h>
32#include <linux/bitops.h>
33#include <net/mac80211.h>
34
Shahar Levi00d20102010-11-08 11:20:10 +000035#include "conf.h"
36#include "ini.h"
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +030037
Shahar Levi5aa42342011-03-06 16:32:07 +020038/*
39 * wl127x and wl128x are using the same NVS file name. However, the
40 * ini parameters between them are different. The driver validates
41 * the correct NVS size in wl1271_boot_upload_nvs().
42 */
43#define WL12XX_NVS_NAME "ti-connectivity/wl1271-nvs.bin"
Juuso Oikarinen152ee6e2010-02-18 13:25:42 +020044
Juuso Oikarinen04e36fc2010-02-22 08:38:40 +020045#define WL1271_TX_SECURITY_LO16(s) ((u16)((s) & 0xffff))
46#define WL1271_TX_SECURITY_HI32(s) ((u32)(((s) >> 16) & 0xffffffff))
Oz Krakowskib992c682011-06-26 10:36:02 +030047#define WL1271_TX_SQN_POST_RECOVERY_PADDING 0xff
Eliad Peller30a00352014-07-11 03:01:27 +030048/* Use smaller padding for GEM, as some APs have issues when it's too big */
49#define WL1271_TX_SQN_POST_RECOVERY_PADDING_GEM 0x20
50
Juuso Oikarinen04e36fc2010-02-22 08:38:40 +020051
Juuso Oikarinen7a557242010-09-27 12:42:07 +020052#define WL1271_CIPHER_SUITE_GEM 0x00147201
53
Juuso Oikarinen259da432010-03-26 12:53:18 +020054#define WL1271_BUSY_WORD_CNT 1
Juuso Oikarinen545f1da2009-10-08 21:56:23 +030055#define WL1271_BUSY_WORD_LEN (WL1271_BUSY_WORD_CNT * sizeof(u32))
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030056
57#define WL1271_ELP_HW_STATE_ASLEEP 0
58#define WL1271_ELP_HW_STATE_IRQ 1
59
Juuso Oikarinend94cd292009-10-08 21:56:25 +030060#define WL1271_DEFAULT_BEACON_INT 100
61#define WL1271_DEFAULT_DTIM_PERIOD 1
62
Eliad Pellerc690ec82011-08-14 13:17:07 +030063#define WL12XX_MAX_ROLES 4
Eliad Peller7f0979882011-08-14 13:17:06 +030064#define WL12XX_INVALID_ROLE_ID 0xff
65#define WL12XX_INVALID_LINK_ID 0xff
Arik Nemtsove51ae9b2011-08-14 13:17:21 +030066
Eliad Pellerda08fdf2014-02-10 13:47:22 +020067/*
68 * max number of links allowed by all HWs.
69 * this is NOT the actual max links supported by the current hw.
70 */
Eliad Peller028e7242014-02-10 13:47:25 +020071#define WLCORE_MAX_LINKS 16
Eliad Pellerda08fdf2014-02-10 13:47:22 +020072
Arik Nemtsov091185d2012-07-03 09:11:03 +030073/* the driver supports the 2.4Ghz and 5Ghz bands */
74#define WLCORE_NUM_BANDS 2
75
Eliad Pellere5a359f2011-10-10 10:13:15 +020076#define WL12XX_MAX_RATE_POLICIES 16
Eliad Peller001e39a2012-08-16 13:52:47 +030077#define WLCORE_MAX_KLV_TEMPLATES 4
Eliad Pellere5a359f2011-10-10 10:13:15 +020078
Arik Nemtsove51ae9b2011-08-14 13:17:21 +030079/* Defined by FW as 0. Will not be freed or allocated. */
Eliad Pellerf4df1bd2011-08-14 13:17:15 +030080#define WL12XX_SYSTEM_HLID 0
Arik Nemtsove51ae9b2011-08-14 13:17:21 +030081
82/*
Arik Nemtsov9b17f1b2011-08-14 13:17:35 +030083 * When in AP-mode, we allow (at least) this number of packets
Arik Nemtsovb622d992011-02-23 00:22:31 +020084 * to be transmitted to FW for a STA in PS-mode. Only when packets are
85 * present in the FW buffers it will wake the sleeping STA. We want to put
86 * enough packets for the driver to transmit all of its buffered data before
Arik Nemtsov9b17f1b2011-08-14 13:17:35 +030087 * the STA goes to sleep again. But we don't want to take too much memory
Arik Nemtsovb622d992011-02-23 00:22:31 +020088 * as it might hurt the throughput of active STAs.
Arik Nemtsovb622d992011-02-23 00:22:31 +020089 */
Arik Nemtsov9b17f1b2011-08-14 13:17:35 +030090#define WL1271_PS_STA_MAX_PACKETS 2
Arik Nemtsovb622d992011-02-23 00:22:31 +020091
Arik Nemtsov98bdaab2010-10-16 18:08:58 +020092#define WL1271_AP_BSS_INDEX 0
Arik Nemtsov98bdaab2010-10-16 18:08:58 +020093#define WL1271_AP_DEF_BEACON_EXP 20
94
Ido Yariv4cc53382012-07-24 19:18:49 +030095enum wlcore_state {
96 WLCORE_STATE_OFF,
97 WLCORE_STATE_RESTARTING,
98 WLCORE_STATE_ON,
Eliad Peller3fcdab72012-02-06 12:47:54 +020099};
100
101enum wl12xx_fw_type {
102 WL12XX_FW_TYPE_NONE,
103 WL12XX_FW_TYPE_NORMAL,
Eliad Peller4549d092012-02-06 13:07:52 +0200104 WL12XX_FW_TYPE_MULTI,
Eliad Peller3fcdab72012-02-06 12:47:54 +0200105 WL12XX_FW_TYPE_PLT,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300106};
107
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300108struct wl1271;
109
Luciano Coelhoe7ddf542011-03-10 15:24:57 +0200110enum {
111 FW_VER_CHIP,
112 FW_VER_IF_TYPE,
113 FW_VER_MAJOR,
114 FW_VER_SUBTYPE,
115 FW_VER_MINOR,
Levi, Shahar4b7fac72011-01-23 07:27:22 +0100116
Luciano Coelhoe7ddf542011-03-10 15:24:57 +0200117 NUM_FW_VER
118};
119
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300120struct wl1271_chip {
121 u32 id;
Jiri Pirko81135542013-01-06 02:12:51 +0000122 char fw_ver_str[ETHTOOL_FWVERS_LEN];
Luciano Coelhoe7ddf542011-03-10 15:24:57 +0200123 unsigned int fw_ver[NUM_FW_VER];
Jiri Pirko81135542013-01-06 02:12:51 +0000124 char phy_fw_ver_str[ETHTOOL_FWVERS_LEN];
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300125};
126
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300127#define NUM_TX_QUEUES 4
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300128
Eliad Peller75fb4df2014-02-10 13:47:21 +0200129struct wl_fw_status {
130 u32 intr;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300131 u8 fw_rx_counter;
132 u8 drv_rx_counter;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300133 u8 tx_results_counter;
Eliad Peller75fb4df2014-02-10 13:47:21 +0200134 __le32 *rx_pkt_descs;
Arik Nemtsov0afd04e2012-05-10 12:13:54 +0300135
Eliad Peller75fb4df2014-02-10 13:47:21 +0200136 u32 fw_localtime;
Arik Nemtsovbeb6c882010-10-16 18:53:48 +0200137
138 /*
139 * A bitmap (where each bit represents a single HLID)
140 * to indicate if the station is in PS mode.
141 */
Eliad Peller75fb4df2014-02-10 13:47:21 +0200142 u32 link_ps_bitmap;
Arik Nemtsovbeb6c882010-10-16 18:53:48 +0200143
Eliad Peller4d56ad92011-08-14 13:17:05 +0300144 /*
145 * A bitmap (where each bit represents a single HLID) to indicate
146 * if the station is in Fast mode
147 */
Eliad Peller75fb4df2014-02-10 13:47:21 +0200148 u32 link_fast_bitmap;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300149
Eliad Peller4d56ad92011-08-14 13:17:05 +0300150 /* Cumulative counter of total released mem blocks since FW-reset */
Eliad Peller75fb4df2014-02-10 13:47:21 +0200151 u32 total_released_blks;
Eliad Pellerc8bde242011-02-02 09:59:35 +0200152
Eliad Peller4d56ad92011-08-14 13:17:05 +0300153 /* Size (in Memory Blocks) of TX pool */
Eliad Peller75fb4df2014-02-10 13:47:21 +0200154 u32 tx_total;
Eliad Peller4d56ad92011-08-14 13:17:05 +0300155
Eliad Peller75fb4df2014-02-10 13:47:21 +0200156 struct {
157 /*
158 * Cumulative counter of released packets per AC
159 * (length of the array is NUM_TX_QUEUES)
160 */
161 u8 *tx_released_pkts;
Eliad Peller4d56ad92011-08-14 13:17:05 +0300162
Eliad Peller75fb4df2014-02-10 13:47:21 +0200163 /*
164 * Cumulative counter of freed packets per HLID
Eliad Pellerda08fdf2014-02-10 13:47:22 +0200165 * (length of the array is wl->num_links)
Eliad Peller75fb4df2014-02-10 13:47:21 +0200166 */
167 u8 *tx_lnk_free_pkts;
168
169 /* Cumulative counter of released Voice memory blocks */
170 u8 tx_voice_released_blks;
171
172 /* Tx rate of the last transmitted packet */
173 u8 tx_last_rate;
174 } counters;
175
176 u32 log_start_addr;
Arik Nemtsov6bac40a2011-12-12 12:08:25 +0200177
178 /* Private status to be used by the lower drivers */
Eliad Peller75fb4df2014-02-10 13:47:21 +0200179 void *priv;
180};
Eliad Pellerc8bde242011-02-02 09:59:35 +0200181
Luciano Coelho4a31c112011-03-21 23:16:14 +0200182#define WL1271_MAX_CHANNELS 64
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300183struct wl1271_scan {
Juuso Oikarinen4fb26fa2010-05-24 11:18:20 +0300184 struct cfg80211_scan_request *req;
Luciano Coelho4a31c112011-03-21 23:16:14 +0200185 unsigned long scanned_ch[BITS_TO_LONGS(WL1271_MAX_CHANNELS)];
Juuso Oikarinen78abd322010-09-21 06:23:32 +0200186 bool failed;
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300187 u8 state;
Johannes Berg3b40c042011-07-13 10:39:16 +0200188 u8 ssid[IEEE80211_MAX_SSID_LEN+1];
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300189 size_t ssid_len;
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300190};
191
Teemu Paasikivi8197b712010-02-22 08:38:23 +0200192struct wl1271_if_operations {
Ido Yarivf1a26e62012-06-20 00:03:46 +0300193 int __must_check (*read)(struct device *child, int addr, void *buf,
194 size_t len, bool fixed);
195 int __must_check (*write)(struct device *child, int addr, void *buf,
196 size_t len, bool fixed);
Felipe Balbia390e852011-10-06 10:07:44 +0300197 void (*reset)(struct device *child);
198 void (*init)(struct device *child);
199 int (*power)(struct device *child, bool enable);
200 void (*set_block_size) (struct device *child, unsigned int blksz);
Teemu Paasikivi8197b712010-02-22 08:38:23 +0200201};
202
Luciano Coelhoafb43e62013-01-25 11:57:48 +0200203struct wlcore_platdev_data {
204 struct wl12xx_platform_data *pdata;
205 struct wl1271_if_operations *if_ops;
206};
207
Arik Nemtsov7f179b42010-10-16 21:39:06 +0200208#define MAX_NUM_KEYS 14
209#define MAX_KEY_SIZE 32
210
211struct wl1271_ap_key {
212 u8 id;
213 u8 key_type;
214 u8 key_size;
215 u8 key[MAX_KEY_SIZE];
216 u8 hlid;
217 u32 tx_seq_32;
218 u16 tx_seq_16;
219};
220
Eliad Peller72c2d9e2011-02-02 09:59:37 +0200221enum wl12xx_flags {
Eliad Peller72c2d9e2011-02-02 09:59:37 +0200222 WL1271_FLAG_GPIO_POWER,
223 WL1271_FLAG_TX_QUEUE_STOPPED,
Ido Yarivb07d4032011-03-01 15:14:43 +0200224 WL1271_FLAG_TX_PENDING,
Eliad Peller72c2d9e2011-02-02 09:59:37 +0200225 WL1271_FLAG_IN_ELP,
Eliad Pellera665d6e2011-04-03 02:01:59 +0300226 WL1271_FLAG_ELP_REQUESTED,
Eliad Peller72c2d9e2011-02-02 09:59:37 +0200227 WL1271_FLAG_IRQ_RUNNING,
Eliad Peller72c2d9e2011-02-02 09:59:37 +0200228 WL1271_FLAG_FW_TX_BUSY,
Ido Yariv990f5de2011-03-31 10:06:59 +0200229 WL1271_FLAG_DUMMY_PACKET_PENDING,
Eliad Pellerf44e5862011-05-13 11:57:11 +0300230 WL1271_FLAG_SUSPENDED,
231 WL1271_FLAG_PENDING_WORK,
Eliad Peller77ddaa12011-05-15 11:10:29 +0300232 WL1271_FLAG_SOFT_GEMINI,
Ido Yarivbaacb9ae2011-06-06 14:57:05 +0300233 WL1271_FLAG_RECOVERY_IN_PROGRESS,
Eliad Peller4549d092012-02-06 13:07:52 +0200234 WL1271_FLAG_VIF_CHANGE_IN_PROGRESS,
Eliad Pellere9ba7152012-03-04 10:55:54 +0200235 WL1271_FLAG_INTENDED_FW_RECOVERY,
Arik Nemtsov44555562012-07-03 09:00:18 +0300236 WL1271_FLAG_IO_FAILED,
Arik Nemtsov9be86cf2014-02-10 13:47:18 +0200237 WL1271_FLAG_REINIT_TX_WDOG,
Eliad Peller72c2d9e2011-02-02 09:59:37 +0200238};
239
Eliad Pellerba8447f2011-10-10 10:13:00 +0200240enum wl12xx_vif_flags {
Eliad Peller10c8cd02011-10-10 10:13:06 +0200241 WLVIF_FLAG_INITIALIZED,
Eliad Pellerba8447f2011-10-10 10:13:00 +0200242 WLVIF_FLAG_STA_ASSOCIATED,
Eliad Peller9fd6f212012-03-04 10:55:48 +0200243 WLVIF_FLAG_STA_AUTHORIZED,
Eliad Pellereee514e2011-10-10 10:13:01 +0200244 WLVIF_FLAG_IBSS_JOINED,
Eliad Peller53d40d02011-10-10 10:13:02 +0200245 WLVIF_FLAG_AP_STARTED,
Eyal Shapira5c0dc2f2012-02-02 19:06:45 +0200246 WLVIF_FLAG_IN_PS,
Eliad Peller8181aec2011-10-10 10:13:04 +0200247 WLVIF_FLAG_STA_STATE_SENT,
Eliad Peller0744bdb2011-10-10 10:13:05 +0200248 WLVIF_FLAG_RX_STREAMING_STARTED,
Eliad Peller836d6602011-10-10 10:13:07 +0200249 WLVIF_FLAG_PSPOLL_FAILURE,
Eliad Peller52630c52011-10-10 10:13:08 +0200250 WLVIF_FLAG_CS_PROGRESS,
Arik Nemtsov560f002412011-11-08 18:46:54 +0200251 WLVIF_FLAG_AP_PROBE_RESP_SET,
Eliad Pellera0c7b782011-12-18 20:25:41 +0200252 WLVIF_FLAG_IN_USE,
Arik Nemtsovb0ed8a42013-09-17 18:41:23 +0300253 WLVIF_FLAG_ACTIVE,
Eliad Pellerba8447f2011-10-10 10:13:00 +0200254};
255
Arik Nemtsov1e0708a2012-11-27 08:44:57 +0200256struct wl12xx_vif;
257
Arik Nemtsova8c0ddb2011-02-23 00:22:26 +0200258struct wl1271_link {
259 /* AP-mode - TX queue per AC in link */
260 struct sk_buff_head tx_queue[NUM_TX_QUEUES];
Arik Nemtsov09039f42011-02-23 00:22:30 +0200261
Arik Nemtsov9b17f1b2011-08-14 13:17:35 +0300262 /* accounting for allocated / freed packets in FW */
263 u8 allocated_pkts;
264 u8 prev_freed_pkts;
Arik Nemtsovb622d992011-02-23 00:22:31 +0200265
266 u8 addr[ETH_ALEN];
Arik Nemtsov0f9c8252011-08-17 10:45:49 +0300267
268 /* bitmap of TIDs where RX BA sessions are active for this link */
269 u8 ba_bitmap;
Arik Nemtsov1e0708a2012-11-27 08:44:57 +0200270
271 /* The wlvif this link belongs to. Might be null for global links */
272 struct wl12xx_vif *wlvif;
Arik Nemtsov93d5d102013-03-12 17:19:38 +0200273
274 /*
275 * total freed FW packets on the link - used for tracking the
276 * AES/TKIP PN across recoveries. Re-initialized each time
277 * from the wl1271_station structure.
278 */
279 u64 total_freed_pkts;
Arik Nemtsova8c0ddb2011-02-23 00:22:26 +0200280};
281
Eyal Shapirac21eebb2012-03-14 06:32:08 +0200282#define WL1271_MAX_RX_FILTERS 5
Eyal Shapiraa6eab0c2012-03-14 06:32:07 +0200283#define WL1271_RX_FILTER_MAX_FIELDS 8
Eyal Shapirab95d7ce2012-03-14 06:32:10 +0200284
285#define WL1271_RX_FILTER_ETH_HEADER_SIZE 14
286#define WL1271_RX_FILTER_MAX_FIELDS_SIZE 95
287#define RX_FILTER_FIELD_OVERHEAD \
288 (sizeof(struct wl12xx_rx_filter_field) - sizeof(u8 *))
289#define WL1271_RX_FILTER_MAX_PATTERN_SIZE \
290 (WL1271_RX_FILTER_MAX_FIELDS_SIZE - RX_FILTER_FIELD_OVERHEAD)
291
292#define WL1271_RX_FILTER_FLAG_MASK BIT(0)
293#define WL1271_RX_FILTER_FLAG_IP_HEADER 0
294#define WL1271_RX_FILTER_FLAG_ETHERNET_HEADER BIT(1)
295
Eyal Shapiraa6eab0c2012-03-14 06:32:07 +0200296enum rx_filter_action {
297 FILTER_DROP = 0,
298 FILTER_SIGNAL = 1,
299 FILTER_FW_HANDLE = 2
300};
301
Yair Shapira7019c802012-07-11 18:48:04 +0300302enum plt_mode {
303 PLT_OFF = 0,
304 PLT_ON = 1,
305 PLT_FEM_DETECT = 2,
Yair Shapiradd491ff2013-09-17 18:41:21 +0300306 PLT_CHIP_AWAKE = 3
Yair Shapira7019c802012-07-11 18:48:04 +0300307};
308
Eyal Shapiraa6eab0c2012-03-14 06:32:07 +0200309struct wl12xx_rx_filter_field {
310 __le16 offset;
311 u8 len;
312 u8 flags;
313 u8 *pattern;
314} __packed;
315
316struct wl12xx_rx_filter {
317 u8 action;
318 int num_fields;
319 struct wl12xx_rx_filter_field fields[WL1271_RX_FILTER_MAX_FIELDS];
320};
321
Arik Nemtsovf84f7d72010-10-16 20:21:23 +0200322struct wl1271_station {
323 u8 hlid;
Eliad Peller426001a2012-11-26 18:05:45 +0200324 bool in_connection;
Arik Nemtsov0e752df2013-03-12 17:19:44 +0200325
326 /*
327 * total freed FW packets on the link to the STA - used for tracking the
328 * AES/TKIP PN across recoveries. Re-initialized each time from the
329 * wl1271_station structure.
Eliad Peller50d26aa2014-07-11 03:01:26 +0300330 * Used in both AP and STA mode.
Arik Nemtsov0e752df2013-03-12 17:19:44 +0200331 */
332 u64 total_freed_pkts;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300333};
334
Eliad Peller87fbcb02011-10-05 11:55:41 +0200335struct wl12xx_vif {
Eliad Peller252efa42011-10-05 11:56:00 +0200336 struct wl1271 *wl;
Eliad Peller87627212011-10-10 10:12:54 +0200337 struct list_head list;
Eliad Pellerba8447f2011-10-10 10:13:00 +0200338 unsigned long flags;
Eliad Peller536129c2011-10-05 11:55:45 +0200339 u8 bss_type;
Eliad Pellerfb0e7072011-10-05 11:55:47 +0200340 u8 p2p; /* we are using p2p role */
Eliad Peller0603d892011-10-05 11:55:51 +0200341 u8 role_id;
Eliad Peller536129c2011-10-05 11:55:45 +0200342
Eliad Peller7edebf52011-10-05 11:55:52 +0200343 /* sta/ibss specific */
344 u8 dev_role_id;
Eliad Pellerafaf8bd2011-10-05 11:55:57 +0200345 u8 dev_hlid;
Eliad Peller7edebf52011-10-05 11:55:52 +0200346
Eliad Peller154da672011-10-05 11:55:53 +0200347 union {
348 struct {
349 u8 hlid;
Eliad Pellere5a359f2011-10-10 10:13:15 +0200350
351 u8 basic_rate_idx;
352 u8 ap_rate_idx;
353 u8 p2p_rate_idx;
Eliad Peller5ec8a442012-02-02 12:22:09 +0200354
Eliad Peller001e39a2012-08-16 13:52:47 +0300355 u8 klv_template_id;
356
Eliad Peller5ec8a442012-02-02 12:22:09 +0200357 bool qos;
Arik Nemtsov5f9b6772012-11-26 18:05:41 +0200358 /* channel type we started the STA role with */
359 enum nl80211_channel_type role_chan_type;
Eliad Peller154da672011-10-05 11:55:53 +0200360 } sta;
Eliad Pellera8ab39a2011-10-05 11:55:54 +0200361 struct {
362 u8 global_hlid;
363 u8 bcast_hlid;
Eliad Pellerc7ffb902011-10-05 11:56:05 +0200364
365 /* HLIDs bitmap of associated stations */
366 unsigned long sta_hlid_map[BITS_TO_LONGS(
Eliad Pellerda08fdf2014-02-10 13:47:22 +0200367 WLCORE_MAX_LINKS)];
Eliad Peller170d0e62011-10-05 11:56:06 +0200368
369 /* recoreded keys - set here before AP startup */
370 struct wl1271_ap_key *recorded_keys[MAX_NUM_KEYS];
Eliad Pellere5a359f2011-10-10 10:13:15 +0200371
372 u8 mgmt_rate_idx;
373 u8 bcast_rate_idx;
374 u8 ucast_rate_idx[CONF_TX_MAX_AC_COUNT];
Eliad Pellera8ab39a2011-10-05 11:55:54 +0200375 } ap;
Eliad Peller154da672011-10-05 11:55:53 +0200376 };
377
Eliad Peller4438aca2011-10-10 10:12:50 +0200378 /* the hlid of the last transmitted skb */
379 int last_tx_hlid;
380
Arik Nemtsov8591d422012-11-27 08:44:58 +0200381 /* counters of packets per AC, across all links in the vif */
382 int tx_queue_count[NUM_TX_QUEUES];
383
Eliad Pellerda08fdf2014-02-10 13:47:22 +0200384 unsigned long links_map[BITS_TO_LONGS(WLCORE_MAX_LINKS)];
Eliad Pellerc7ffb902011-10-05 11:56:05 +0200385
Eliad Peller1fe9f162011-10-05 11:55:48 +0200386 u8 ssid[IEEE80211_MAX_SSID_LEN + 1];
387 u8 ssid_len;
388
Eliad Peller1b92f152011-10-10 10:13:09 +0200389 /* The current band */
390 enum ieee80211_band band;
Eliad Peller61f845f2011-10-10 10:13:10 +0200391 int channel;
Arik Nemtsov83d08d32012-05-10 12:13:30 +0300392 enum nl80211_channel_type channel_type;
Eliad Peller1b92f152011-10-10 10:13:09 +0200393
Arik Nemtsov091185d2012-07-03 09:11:03 +0300394 u32 bitrate_masks[WLCORE_NUM_BANDS];
Eliad Peller87fbcb02011-10-05 11:55:41 +0200395 u32 basic_rate_set;
Eliad Peller30d0c8f2011-10-05 11:55:42 +0200396
397 /*
398 * currently configured rate set:
399 * bits 0-15 - 802.11abg rates
400 * bits 16-23 - 802.11n MCS index mask
401 * support only 1 stream, thus only 8 bits for the MCS rates (0-7).
402 */
Eliad Pellerd2d66c52011-10-05 11:55:43 +0200403 u32 basic_rate;
Eliad Peller30d0c8f2011-10-05 11:55:42 +0200404 u32 rate_set;
Eliad Pellerbddb29b2011-10-05 11:55:49 +0200405
406 /* probe-req template for the current AP */
407 struct sk_buff *probereq;
Eliad Peller6840e372011-10-05 11:55:50 +0200408
Eliad Peller6a899792011-10-05 11:55:58 +0200409 /* Beaconing interval (needed for ad-hoc) */
410 u32 beacon_int;
411
Eliad Pellerf75c753f2011-10-05 11:55:59 +0200412 /* Default key (for WEP) */
413 u32 default_key;
414
Eliad Peller6840e372011-10-05 11:55:50 +0200415 /* Our association ID */
416 u16 aid;
Eliad Peller98b8625302011-10-05 11:55:55 +0200417
Eliad Peller74ec8392011-10-05 11:56:02 +0200418 /* retry counter for PSM entries */
419 u8 psm_entry_retry;
Eliad Peller04324d92011-10-05 11:56:03 +0200420
Eliad Peller6bd65022011-10-10 10:13:11 +0200421 /* in dBm */
422 int power_level;
423
Eliad Peller04324d92011-10-05 11:56:03 +0200424 int rssi_thold;
425 int last_rssi_event;
Eliad Pellerd0802ab2011-10-05 11:56:04 +0200426
Eliad Peller5ec8a442012-02-02 12:22:09 +0200427 /* save the current encryption type for auto-arp config */
428 u8 encryption_type;
429 __be32 ip_addr;
430
Eliad Pellerd0802ab2011-10-05 11:56:04 +0200431 /* RX BA constraint value */
432 bool ba_support;
433 bool ba_allowed;
Eliad Peller48e93e42011-10-10 10:12:58 +0200434
Eliad Pellerd50529c2012-11-22 18:06:20 +0200435 bool wmm_enabled;
436
Eliad Peller9eb599e2011-10-10 10:12:59 +0200437 /* Rx Streaming */
438 struct work_struct rx_streaming_enable_work;
439 struct work_struct rx_streaming_disable_work;
440 struct timer_list rx_streaming_timer;
441
Eliad Pellerc50a2822012-11-22 18:06:19 +0200442 struct delayed_work channel_switch_work;
443 struct delayed_work connection_loss_work;
444
Eliad Peller426001a2012-11-26 18:05:45 +0200445 /* number of in connection stations */
446 int inconn_count;
447
Eliad Peller48e93e42011-10-10 10:12:58 +0200448 /*
Arik Nemtsov1c33db72012-11-30 00:48:03 +0200449 * This vif's queues are mapped to mac80211 HW queues as:
450 * VO - hw_queue_base
451 * VI - hw_queue_base + 1
452 * BE - hw_queue_base + 2
453 * BK - hw_queue_base + 3
454 */
455 int hw_queue_base;
456
Arik Nemtsov187e52c2013-09-17 18:41:20 +0300457 /* do we have a pending auth reply? (and ROC) */
458 bool ap_pending_auth_reply;
459
460 /* time when we sent the pending auth reply */
461 unsigned long pending_auth_reply_time;
462
463 /* work for canceling ROC after pending auth reply */
464 struct delayed_work pending_auth_complete_work;
465
Eliad Peller48e93e42011-10-10 10:12:58 +0200466 /*
Eliad Peller50d26aa2014-07-11 03:01:26 +0300467 * total freed FW packets on the link.
468 * For STA this holds the PN of the link to the AP.
469 * For AP this holds the PN of the broadcast link.
470 */
471 u64 total_freed_pkts;
472
473 /*
Eliad Peller48e93e42011-10-10 10:12:58 +0200474 * This struct must be last!
475 * data that has to be saved acrossed reconfigs (e.g. recovery)
476 * should be declared in this struct.
477 */
478 struct {
479 u8 persistent[0];
Eliad Peller48e93e42011-10-10 10:12:58 +0200480 };
Eliad Peller87fbcb02011-10-05 11:55:41 +0200481};
482
483static inline struct wl12xx_vif *wl12xx_vif_to_data(struct ieee80211_vif *vif)
484{
Arik Nemtsovf4d02002012-11-28 11:42:33 +0200485 WARN_ON(!vif);
Eliad Peller87fbcb02011-10-05 11:55:41 +0200486 return (struct wl12xx_vif *)vif->drv_priv;
487}
488
489static inline
490struct ieee80211_vif *wl12xx_wlvif_to_vif(struct wl12xx_vif *wlvif)
491{
492 return container_of((void *)wlvif, struct ieee80211_vif, drv_priv);
493}
494
Eliad Peller87627212011-10-10 10:12:54 +0200495#define wl12xx_for_each_wlvif(wl, wlvif) \
496 list_for_each_entry(wlvif, &wl->wlvif_list, list)
497
Eliad Pellere4120df2011-10-10 10:13:17 +0200498#define wl12xx_for_each_wlvif_continue(wl, wlvif) \
499 list_for_each_entry_continue(wlvif, &wl->wlvif_list, list)
500
Eliad Peller4b730b62011-10-10 10:12:57 +0200501#define wl12xx_for_each_wlvif_bss_type(wl, wlvif, _bss_type) \
502 wl12xx_for_each_wlvif(wl, wlvif) \
503 if (wlvif->bss_type == _bss_type)
504
505#define wl12xx_for_each_wlvif_sta(wl, wlvif) \
506 wl12xx_for_each_wlvif_bss_type(wl, wlvif, BSS_TYPE_STA_BSS)
507
508#define wl12xx_for_each_wlvif_ap(wl, wlvif) \
509 wl12xx_for_each_wlvif_bss_type(wl, wlvif, BSS_TYPE_AP_BSS)
510
Yair Shapira7019c802012-07-11 18:48:04 +0300511int wl1271_plt_start(struct wl1271 *wl, const enum plt_mode plt_mode);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300512int wl1271_plt_stop(struct wl1271 *wl);
Eliad Peller9eb599e2011-10-10 10:12:59 +0200513int wl1271_recalc_rx_streaming(struct wl1271 *wl, struct wl12xx_vif *wlvif);
Ido Yarivbaacb9ae2011-06-06 14:57:05 +0300514void wl12xx_queue_recovery_work(struct wl1271 *wl);
Ido Yariv95dac04f2011-06-06 14:57:06 +0300515size_t wl12xx_copy_fwlog(struct wl1271 *wl, u8 *memblock, size_t maxlen);
Eyal Shapiraa6eab0c2012-03-14 06:32:07 +0200516int wl1271_rx_filter_alloc_field(struct wl12xx_rx_filter *filter,
Johannes Berg922bd802014-05-19 17:59:50 +0200517 u16 offset, u8 flags,
518 const u8 *pattern, u8 len);
Eyal Shapiraa6eab0c2012-03-14 06:32:07 +0200519void wl1271_rx_filter_free(struct wl12xx_rx_filter *filter);
520struct wl12xx_rx_filter *wl1271_rx_filter_alloc(void);
521int wl1271_rx_filter_get_fields_size(struct wl12xx_rx_filter *filter);
522void wl1271_rx_filter_flatten_fields(struct wl12xx_rx_filter *filter,
523 u8 *buf);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300524
525#define JOIN_TIMEOUT 5000 /* 5000 milliseconds to join */
526
Eliad Peller98b8625302011-10-05 11:55:55 +0200527#define SESSION_COUNTER_MAX 6 /* maximum value for the session counter */
528#define SESSION_COUNTER_INVALID 7 /* used with dummy_packet */
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300529
530#define WL1271_DEFAULT_POWER_LEVEL 0
531
Ido Yariv787b2dc2011-06-24 13:03:36 +0300532#define WL1271_TX_QUEUE_LOW_WATERMARK 32
533#define WL1271_TX_QUEUE_HIGH_WATERMARK 256
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300534
Ido Yariva6208652011-03-01 15:14:41 +0200535#define WL1271_DEFERRED_QUEUE_LIMIT 64
536
Juuso Oikarinen01ac17e2009-12-11 15:41:02 +0200537/* WL1271 needs a 200ms sleep after power on, and a 20ms sleep before power
538 on in case is has been shut down shortly before */
Stefan Weile8a8b252011-01-02 15:12:42 +0100539#define WL1271_PRE_POWER_ON_SLEEP 20 /* in milliseconds */
540#define WL1271_POWER_ON_SLEEP 200 /* in milliseconds */
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300541
Shahar Levie8b03a22010-10-13 16:09:39 +0200542/* Macros to handle wl1271.sta_rate_set */
543#define HW_BG_RATES_MASK 0xffff
544#define HW_HT_RATES_OFFSET 16
Arik Nemtsovb3a47ee2012-05-10 12:13:33 +0300545#define HW_MIMO_RATES_OFFSET 24
Shahar Levie8b03a22010-10-13 16:09:39 +0200546
Luciano Coelho83885692012-05-10 12:13:42 +0300547#endif /* __WLCORE_I_H__ */