blob: 58fbdcac6452d019d5491ba2d7ba76d1bc86b1a3 [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
Juuso Oikarinen04e36fc2010-02-22 08:38:40 +020048
Juuso Oikarinen7a557242010-09-27 12:42:07 +020049#define WL1271_CIPHER_SUITE_GEM 0x00147201
50
Juuso Oikarinen259da432010-03-26 12:53:18 +020051#define WL1271_BUSY_WORD_CNT 1
Juuso Oikarinen545f1da2009-10-08 21:56:23 +030052#define WL1271_BUSY_WORD_LEN (WL1271_BUSY_WORD_CNT * sizeof(u32))
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030053
54#define WL1271_ELP_HW_STATE_ASLEEP 0
55#define WL1271_ELP_HW_STATE_IRQ 1
56
Juuso Oikarinend94cd292009-10-08 21:56:25 +030057#define WL1271_DEFAULT_BEACON_INT 100
58#define WL1271_DEFAULT_DTIM_PERIOD 1
59
Eliad Pellerc690ec82011-08-14 13:17:07 +030060#define WL12XX_MAX_ROLES 4
Arik Nemtsovf80c2d12011-09-22 09:52:05 +030061#define WL12XX_MAX_LINKS 12
Eliad Peller7f0979882011-08-14 13:17:06 +030062#define WL12XX_INVALID_ROLE_ID 0xff
63#define WL12XX_INVALID_LINK_ID 0xff
Arik Nemtsove51ae9b2011-08-14 13:17:21 +030064
Arik Nemtsov091185d2012-07-03 09:11:03 +030065/* the driver supports the 2.4Ghz and 5Ghz bands */
66#define WLCORE_NUM_BANDS 2
67
Eliad Pellere5a359f2011-10-10 10:13:15 +020068#define WL12XX_MAX_RATE_POLICIES 16
69
Arik Nemtsove51ae9b2011-08-14 13:17:21 +030070/* Defined by FW as 0. Will not be freed or allocated. */
Eliad Pellerf4df1bd2011-08-14 13:17:15 +030071#define WL12XX_SYSTEM_HLID 0
Arik Nemtsove51ae9b2011-08-14 13:17:21 +030072
73/*
Arik Nemtsov9b17f1b2011-08-14 13:17:35 +030074 * When in AP-mode, we allow (at least) this number of packets
Arik Nemtsovb622d992011-02-23 00:22:31 +020075 * to be transmitted to FW for a STA in PS-mode. Only when packets are
76 * present in the FW buffers it will wake the sleeping STA. We want to put
77 * enough packets for the driver to transmit all of its buffered data before
Arik Nemtsov9b17f1b2011-08-14 13:17:35 +030078 * the STA goes to sleep again. But we don't want to take too much memory
Arik Nemtsovb622d992011-02-23 00:22:31 +020079 * as it might hurt the throughput of active STAs.
Arik Nemtsovb622d992011-02-23 00:22:31 +020080 */
Arik Nemtsov9b17f1b2011-08-14 13:17:35 +030081#define WL1271_PS_STA_MAX_PACKETS 2
Arik Nemtsovb622d992011-02-23 00:22:31 +020082
Arik Nemtsov98bdaab2010-10-16 18:08:58 +020083#define WL1271_AP_BSS_INDEX 0
Arik Nemtsov98bdaab2010-10-16 18:08:58 +020084#define WL1271_AP_DEF_BEACON_EXP 20
85
Luciano Coelho5a7589b2012-05-10 12:14:20 +030086#define WL1271_AGGR_BUFFER_SIZE (5 * PAGE_SIZE)
Ido Yariv1f37cbc2010-09-30 13:28:27 +020087
Ido Yariv4cc53382012-07-24 19:18:49 +030088enum wlcore_state {
89 WLCORE_STATE_OFF,
90 WLCORE_STATE_RESTARTING,
91 WLCORE_STATE_ON,
Eliad Peller3fcdab72012-02-06 12:47:54 +020092};
93
94enum wl12xx_fw_type {
95 WL12XX_FW_TYPE_NONE,
96 WL12XX_FW_TYPE_NORMAL,
Eliad Peller4549d092012-02-06 13:07:52 +020097 WL12XX_FW_TYPE_MULTI,
Eliad Peller3fcdab72012-02-06 12:47:54 +020098 WL12XX_FW_TYPE_PLT,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030099};
100
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300101struct wl1271;
102
Luciano Coelhoe7ddf542011-03-10 15:24:57 +0200103enum {
104 FW_VER_CHIP,
105 FW_VER_IF_TYPE,
106 FW_VER_MAJOR,
107 FW_VER_SUBTYPE,
108 FW_VER_MINOR,
Levi, Shahar4b7fac72011-01-23 07:27:22 +0100109
Luciano Coelhoe7ddf542011-03-10 15:24:57 +0200110 NUM_FW_VER
111};
112
113#define FW_VER_CHIP_WL127X 6
114#define FW_VER_CHIP_WL128X 7
115
116#define FW_VER_IF_TYPE_STA 1
117#define FW_VER_IF_TYPE_AP 2
118
119#define FW_VER_MINOR_1_SPARE_STA_MIN 58
120#define FW_VER_MINOR_1_SPARE_AP_MIN 47
121
Ido Yariv95dac04f2011-06-06 14:57:06 +0300122#define FW_VER_MINOR_FWLOG_STA_MIN 70
123
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300124struct wl1271_chip {
125 u32 id;
Levi, Shahar4b7fac72011-01-23 07:27:22 +0100126 char fw_ver_str[ETHTOOL_BUSINFO_LEN];
Luciano Coelhoe7ddf542011-03-10 15:24:57 +0200127 unsigned int fw_ver[NUM_FW_VER];
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300128};
129
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300130#define NUM_TX_QUEUES 4
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300131
Arik Nemtsovc47e8222011-08-25 12:43:14 +0300132#define AP_MAX_STATIONS 8
Arik Nemtsovbeb6c882010-10-16 18:53:48 +0200133
Arik Nemtsov6bac40a2011-12-12 12:08:25 +0200134struct wl_fw_packet_counters {
135 /* Cumulative counter of released packets per AC */
136 u8 tx_released_pkts[NUM_TX_QUEUES];
137
138 /* Cumulative counter of freed packets per HLID */
139 u8 tx_lnk_free_pkts[WL12XX_MAX_LINKS];
140
141 /* Cumulative counter of released Voice memory blocks */
142 u8 tx_voice_released_blks;
143
144 u8 padding[3];
145} __packed;
146
Eliad Peller4d56ad92011-08-14 13:17:05 +0300147/* FW status registers */
Arik Nemtsov0afd04e2012-05-10 12:13:54 +0300148struct wl_fw_status_1 {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300149 __le32 intr;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300150 u8 fw_rx_counter;
151 u8 drv_rx_counter;
152 u8 reserved;
153 u8 tx_results_counter;
Arik Nemtsov0afd04e2012-05-10 12:13:54 +0300154 __le32 rx_pkt_descs[0];
155} __packed;
156
157/*
158 * Each HW arch has a different number of Rx descriptors.
159 * The length of the status depends on it, since it holds an array
160 * of descriptors.
161 */
162#define WLCORE_FW_STATUS_1_LEN(num_rx_desc) \
163 (sizeof(struct wl_fw_status_1) + \
164 (sizeof(((struct wl_fw_status_1 *)0)->rx_pkt_descs[0])) * \
165 num_rx_desc)
166
167struct wl_fw_status_2 {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300168 __le32 fw_localtime;
Arik Nemtsovbeb6c882010-10-16 18:53:48 +0200169
170 /*
171 * A bitmap (where each bit represents a single HLID)
172 * to indicate if the station is in PS mode.
173 */
174 __le32 link_ps_bitmap;
175
Eliad Peller4d56ad92011-08-14 13:17:05 +0300176 /*
177 * A bitmap (where each bit represents a single HLID) to indicate
178 * if the station is in Fast mode
179 */
180 __le32 link_fast_bitmap;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300181
Eliad Peller4d56ad92011-08-14 13:17:05 +0300182 /* Cumulative counter of total released mem blocks since FW-reset */
183 __le32 total_released_blks;
Eliad Pellerc8bde242011-02-02 09:59:35 +0200184
Eliad Peller4d56ad92011-08-14 13:17:05 +0300185 /* Size (in Memory Blocks) of TX pool */
186 __le32 tx_total;
187
Arik Nemtsov6bac40a2011-12-12 12:08:25 +0200188 struct wl_fw_packet_counters counters;
Eliad Peller4d56ad92011-08-14 13:17:05 +0300189
Ido Yariv95dac04f2011-06-06 14:57:06 +0300190 __le32 log_start_addr;
Arik Nemtsov6bac40a2011-12-12 12:08:25 +0200191
192 /* Private status to be used by the lower drivers */
193 u8 priv[0];
Eliad Pellerc8bde242011-02-02 09:59:35 +0200194} __packed;
195
Luciano Coelho4a31c112011-03-21 23:16:14 +0200196#define WL1271_MAX_CHANNELS 64
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300197struct wl1271_scan {
Juuso Oikarinen4fb26fa2010-05-24 11:18:20 +0300198 struct cfg80211_scan_request *req;
Luciano Coelho4a31c112011-03-21 23:16:14 +0200199 unsigned long scanned_ch[BITS_TO_LONGS(WL1271_MAX_CHANNELS)];
Juuso Oikarinen78abd322010-09-21 06:23:32 +0200200 bool failed;
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300201 u8 state;
Johannes Berg3b40c042011-07-13 10:39:16 +0200202 u8 ssid[IEEE80211_MAX_SSID_LEN+1];
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300203 size_t ssid_len;
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300204};
205
Teemu Paasikivi8197b712010-02-22 08:38:23 +0200206struct wl1271_if_operations {
Ido Yarivf1a26e62012-06-20 00:03:46 +0300207 int __must_check (*read)(struct device *child, int addr, void *buf,
208 size_t len, bool fixed);
209 int __must_check (*write)(struct device *child, int addr, void *buf,
210 size_t len, bool fixed);
Felipe Balbia390e852011-10-06 10:07:44 +0300211 void (*reset)(struct device *child);
212 void (*init)(struct device *child);
213 int (*power)(struct device *child, bool enable);
214 void (*set_block_size) (struct device *child, unsigned int blksz);
Teemu Paasikivi8197b712010-02-22 08:38:23 +0200215};
216
Arik Nemtsov7f179b42010-10-16 21:39:06 +0200217#define MAX_NUM_KEYS 14
218#define MAX_KEY_SIZE 32
219
220struct wl1271_ap_key {
221 u8 id;
222 u8 key_type;
223 u8 key_size;
224 u8 key[MAX_KEY_SIZE];
225 u8 hlid;
226 u32 tx_seq_32;
227 u16 tx_seq_16;
228};
229
Eliad Peller72c2d9e2011-02-02 09:59:37 +0200230enum wl12xx_flags {
Eliad Peller72c2d9e2011-02-02 09:59:37 +0200231 WL1271_FLAG_GPIO_POWER,
232 WL1271_FLAG_TX_QUEUE_STOPPED,
Ido Yarivb07d4032011-03-01 15:14:43 +0200233 WL1271_FLAG_TX_PENDING,
Eliad Peller72c2d9e2011-02-02 09:59:37 +0200234 WL1271_FLAG_IN_ELP,
Eliad Pellera665d6e2011-04-03 02:01:59 +0300235 WL1271_FLAG_ELP_REQUESTED,
Eliad Peller72c2d9e2011-02-02 09:59:37 +0200236 WL1271_FLAG_IRQ_RUNNING,
Eliad Peller72c2d9e2011-02-02 09:59:37 +0200237 WL1271_FLAG_FW_TX_BUSY,
Ido Yariv990f5de2011-03-31 10:06:59 +0200238 WL1271_FLAG_DUMMY_PACKET_PENDING,
Eliad Pellerf44e5862011-05-13 11:57:11 +0300239 WL1271_FLAG_SUSPENDED,
240 WL1271_FLAG_PENDING_WORK,
Eliad Peller77ddaa12011-05-15 11:10:29 +0300241 WL1271_FLAG_SOFT_GEMINI,
Ido Yarivbaacb9ae2011-06-06 14:57:05 +0300242 WL1271_FLAG_RECOVERY_IN_PROGRESS,
Eliad Peller4549d092012-02-06 13:07:52 +0200243 WL1271_FLAG_VIF_CHANGE_IN_PROGRESS,
Eliad Pellere9ba7152012-03-04 10:55:54 +0200244 WL1271_FLAG_INTENDED_FW_RECOVERY,
Arik Nemtsov44555562012-07-03 09:00:18 +0300245 WL1271_FLAG_IO_FAILED,
Eliad Peller72c2d9e2011-02-02 09:59:37 +0200246};
247
Eliad Pellerba8447f2011-10-10 10:13:00 +0200248enum wl12xx_vif_flags {
Eliad Peller10c8cd02011-10-10 10:13:06 +0200249 WLVIF_FLAG_INITIALIZED,
Eliad Pellerba8447f2011-10-10 10:13:00 +0200250 WLVIF_FLAG_STA_ASSOCIATED,
Eliad Peller9fd6f212012-03-04 10:55:48 +0200251 WLVIF_FLAG_STA_AUTHORIZED,
Eliad Pellereee514e2011-10-10 10:13:01 +0200252 WLVIF_FLAG_IBSS_JOINED,
Eliad Peller53d40d02011-10-10 10:13:02 +0200253 WLVIF_FLAG_AP_STARTED,
Eyal Shapira5c0dc2f2012-02-02 19:06:45 +0200254 WLVIF_FLAG_IN_PS,
Eliad Peller8181aec2011-10-10 10:13:04 +0200255 WLVIF_FLAG_STA_STATE_SENT,
Eliad Peller0744bdb2011-10-10 10:13:05 +0200256 WLVIF_FLAG_RX_STREAMING_STARTED,
Eliad Peller836d6602011-10-10 10:13:07 +0200257 WLVIF_FLAG_PSPOLL_FAILURE,
Eliad Peller52630c52011-10-10 10:13:08 +0200258 WLVIF_FLAG_CS_PROGRESS,
Arik Nemtsov560f002412011-11-08 18:46:54 +0200259 WLVIF_FLAG_AP_PROBE_RESP_SET,
Eliad Pellera0c7b782011-12-18 20:25:41 +0200260 WLVIF_FLAG_IN_USE,
Eliad Pellerba8447f2011-10-10 10:13:00 +0200261};
262
Arik Nemtsova8c0ddb2011-02-23 00:22:26 +0200263struct wl1271_link {
264 /* AP-mode - TX queue per AC in link */
265 struct sk_buff_head tx_queue[NUM_TX_QUEUES];
Arik Nemtsov09039f42011-02-23 00:22:30 +0200266
Arik Nemtsov9b17f1b2011-08-14 13:17:35 +0300267 /* accounting for allocated / freed packets in FW */
268 u8 allocated_pkts;
269 u8 prev_freed_pkts;
Arik Nemtsovb622d992011-02-23 00:22:31 +0200270
271 u8 addr[ETH_ALEN];
Arik Nemtsov0f9c8252011-08-17 10:45:49 +0300272
273 /* bitmap of TIDs where RX BA sessions are active for this link */
274 u8 ba_bitmap;
Arik Nemtsova8c0ddb2011-02-23 00:22:26 +0200275};
276
Eyal Shapirac21eebb2012-03-14 06:32:08 +0200277#define WL1271_MAX_RX_FILTERS 5
Eyal Shapiraa6eab0c2012-03-14 06:32:07 +0200278#define WL1271_RX_FILTER_MAX_FIELDS 8
Eyal Shapirab95d7ce2012-03-14 06:32:10 +0200279
280#define WL1271_RX_FILTER_ETH_HEADER_SIZE 14
281#define WL1271_RX_FILTER_MAX_FIELDS_SIZE 95
282#define RX_FILTER_FIELD_OVERHEAD \
283 (sizeof(struct wl12xx_rx_filter_field) - sizeof(u8 *))
284#define WL1271_RX_FILTER_MAX_PATTERN_SIZE \
285 (WL1271_RX_FILTER_MAX_FIELDS_SIZE - RX_FILTER_FIELD_OVERHEAD)
286
287#define WL1271_RX_FILTER_FLAG_MASK BIT(0)
288#define WL1271_RX_FILTER_FLAG_IP_HEADER 0
289#define WL1271_RX_FILTER_FLAG_ETHERNET_HEADER BIT(1)
290
Eyal Shapiraa6eab0c2012-03-14 06:32:07 +0200291enum rx_filter_action {
292 FILTER_DROP = 0,
293 FILTER_SIGNAL = 1,
294 FILTER_FW_HANDLE = 2
295};
296
Yair Shapira7019c802012-07-11 18:48:04 +0300297enum plt_mode {
298 PLT_OFF = 0,
299 PLT_ON = 1,
300 PLT_FEM_DETECT = 2,
301};
302
Eyal Shapiraa6eab0c2012-03-14 06:32:07 +0200303struct wl12xx_rx_filter_field {
304 __le16 offset;
305 u8 len;
306 u8 flags;
307 u8 *pattern;
308} __packed;
309
310struct wl12xx_rx_filter {
311 u8 action;
312 int num_fields;
313 struct wl12xx_rx_filter_field fields[WL1271_RX_FILTER_MAX_FIELDS];
314};
315
Arik Nemtsovf84f7d72010-10-16 20:21:23 +0200316struct wl1271_station {
317 u8 hlid;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300318};
319
Eliad Peller87fbcb02011-10-05 11:55:41 +0200320struct wl12xx_vif {
Eliad Peller252efa42011-10-05 11:56:00 +0200321 struct wl1271 *wl;
Eliad Peller87627212011-10-10 10:12:54 +0200322 struct list_head list;
Eliad Pellerba8447f2011-10-10 10:13:00 +0200323 unsigned long flags;
Eliad Peller536129c2011-10-05 11:55:45 +0200324 u8 bss_type;
Eliad Pellerfb0e7072011-10-05 11:55:47 +0200325 u8 p2p; /* we are using p2p role */
Eliad Peller0603d892011-10-05 11:55:51 +0200326 u8 role_id;
Eliad Peller536129c2011-10-05 11:55:45 +0200327
Eliad Peller7edebf52011-10-05 11:55:52 +0200328 /* sta/ibss specific */
329 u8 dev_role_id;
Eliad Pellerafaf8bd2011-10-05 11:55:57 +0200330 u8 dev_hlid;
Eliad Peller7edebf52011-10-05 11:55:52 +0200331
Eliad Peller154da672011-10-05 11:55:53 +0200332 union {
333 struct {
334 u8 hlid;
Eliad Pellerd0802ab2011-10-05 11:56:04 +0200335 u8 ba_rx_bitmap;
Eliad Pellere5a359f2011-10-10 10:13:15 +0200336
337 u8 basic_rate_idx;
338 u8 ap_rate_idx;
339 u8 p2p_rate_idx;
Eliad Peller5ec8a442012-02-02 12:22:09 +0200340
341 bool qos;
Eliad Peller154da672011-10-05 11:55:53 +0200342 } sta;
Eliad Pellera8ab39a2011-10-05 11:55:54 +0200343 struct {
344 u8 global_hlid;
345 u8 bcast_hlid;
Eliad Pellerc7ffb902011-10-05 11:56:05 +0200346
347 /* HLIDs bitmap of associated stations */
348 unsigned long sta_hlid_map[BITS_TO_LONGS(
349 WL12XX_MAX_LINKS)];
Eliad Peller170d0e62011-10-05 11:56:06 +0200350
351 /* recoreded keys - set here before AP startup */
352 struct wl1271_ap_key *recorded_keys[MAX_NUM_KEYS];
Eliad Pellere5a359f2011-10-10 10:13:15 +0200353
354 u8 mgmt_rate_idx;
355 u8 bcast_rate_idx;
356 u8 ucast_rate_idx[CONF_TX_MAX_AC_COUNT];
Eliad Pellera8ab39a2011-10-05 11:55:54 +0200357 } ap;
Eliad Peller154da672011-10-05 11:55:53 +0200358 };
359
Eliad Peller4438aca2011-10-10 10:12:50 +0200360 /* the hlid of the last transmitted skb */
361 int last_tx_hlid;
362
Eliad Pellerc7ffb902011-10-05 11:56:05 +0200363 unsigned long links_map[BITS_TO_LONGS(WL12XX_MAX_LINKS)];
364
Eliad Peller1fe9f162011-10-05 11:55:48 +0200365 u8 ssid[IEEE80211_MAX_SSID_LEN + 1];
366 u8 ssid_len;
367
Eliad Peller1b92f152011-10-10 10:13:09 +0200368 /* The current band */
369 enum ieee80211_band band;
Eliad Peller61f845f2011-10-10 10:13:10 +0200370 int channel;
Arik Nemtsov83d08d32012-05-10 12:13:30 +0300371 enum nl80211_channel_type channel_type;
Eliad Peller1b92f152011-10-10 10:13:09 +0200372
Arik Nemtsov091185d2012-07-03 09:11:03 +0300373 u32 bitrate_masks[WLCORE_NUM_BANDS];
Eliad Peller87fbcb02011-10-05 11:55:41 +0200374 u32 basic_rate_set;
Eliad Peller30d0c8f2011-10-05 11:55:42 +0200375
376 /*
377 * currently configured rate set:
378 * bits 0-15 - 802.11abg rates
379 * bits 16-23 - 802.11n MCS index mask
380 * support only 1 stream, thus only 8 bits for the MCS rates (0-7).
381 */
Eliad Pellerd2d66c52011-10-05 11:55:43 +0200382 u32 basic_rate;
Eliad Peller30d0c8f2011-10-05 11:55:42 +0200383 u32 rate_set;
Eliad Pellerbddb29b2011-10-05 11:55:49 +0200384
385 /* probe-req template for the current AP */
386 struct sk_buff *probereq;
Eliad Peller6840e372011-10-05 11:55:50 +0200387
Eliad Peller6a899792011-10-05 11:55:58 +0200388 /* Beaconing interval (needed for ad-hoc) */
389 u32 beacon_int;
390
Eliad Pellerf75c753f2011-10-05 11:55:59 +0200391 /* Default key (for WEP) */
392 u32 default_key;
393
Eliad Peller6840e372011-10-05 11:55:50 +0200394 /* Our association ID */
395 u16 aid;
Eliad Peller98b8625302011-10-05 11:55:55 +0200396
397 /* Session counter for the chipset */
398 int session_counter;
Eliad Peller252efa42011-10-05 11:56:00 +0200399
Eliad Peller74ec8392011-10-05 11:56:02 +0200400 /* retry counter for PSM entries */
401 u8 psm_entry_retry;
Eliad Peller04324d92011-10-05 11:56:03 +0200402
Eliad Peller6bd65022011-10-10 10:13:11 +0200403 /* in dBm */
404 int power_level;
405
Eliad Peller04324d92011-10-05 11:56:03 +0200406 int rssi_thold;
407 int last_rssi_event;
Eliad Pellerd0802ab2011-10-05 11:56:04 +0200408
Eliad Peller5ec8a442012-02-02 12:22:09 +0200409 /* save the current encryption type for auto-arp config */
410 u8 encryption_type;
411 __be32 ip_addr;
412
Eliad Pellerd0802ab2011-10-05 11:56:04 +0200413 /* RX BA constraint value */
414 bool ba_support;
415 bool ba_allowed;
Eliad Peller48e93e42011-10-10 10:12:58 +0200416
Eliad Peller9eb599e2011-10-10 10:12:59 +0200417 /* Rx Streaming */
418 struct work_struct rx_streaming_enable_work;
419 struct work_struct rx_streaming_disable_work;
420 struct timer_list rx_streaming_timer;
421
Eliad Peller48e93e42011-10-10 10:12:58 +0200422 /*
423 * This struct must be last!
424 * data that has to be saved acrossed reconfigs (e.g. recovery)
425 * should be declared in this struct.
426 */
427 struct {
428 u8 persistent[0];
429 /*
430 * Security sequence number
431 * bits 0-15: lower 16 bits part of sequence number
432 * bits 16-47: higher 32 bits part of sequence number
433 * bits 48-63: not in use
434 */
435 u64 tx_security_seq;
436
437 /* 8 bits of the last sequence number in use */
438 u8 tx_security_last_seq_lsb;
439 };
Eliad Peller87fbcb02011-10-05 11:55:41 +0200440};
441
442static inline struct wl12xx_vif *wl12xx_vif_to_data(struct ieee80211_vif *vif)
443{
444 return (struct wl12xx_vif *)vif->drv_priv;
445}
446
447static inline
448struct ieee80211_vif *wl12xx_wlvif_to_vif(struct wl12xx_vif *wlvif)
449{
450 return container_of((void *)wlvif, struct ieee80211_vif, drv_priv);
451}
452
Eliad Peller87627212011-10-10 10:12:54 +0200453#define wl12xx_for_each_wlvif(wl, wlvif) \
454 list_for_each_entry(wlvif, &wl->wlvif_list, list)
455
Eliad Pellere4120df2011-10-10 10:13:17 +0200456#define wl12xx_for_each_wlvif_continue(wl, wlvif) \
457 list_for_each_entry_continue(wlvif, &wl->wlvif_list, list)
458
Eliad Peller4b730b62011-10-10 10:12:57 +0200459#define wl12xx_for_each_wlvif_bss_type(wl, wlvif, _bss_type) \
460 wl12xx_for_each_wlvif(wl, wlvif) \
461 if (wlvif->bss_type == _bss_type)
462
463#define wl12xx_for_each_wlvif_sta(wl, wlvif) \
464 wl12xx_for_each_wlvif_bss_type(wl, wlvif, BSS_TYPE_STA_BSS)
465
466#define wl12xx_for_each_wlvif_ap(wl, wlvif) \
467 wl12xx_for_each_wlvif_bss_type(wl, wlvif, BSS_TYPE_AP_BSS)
468
Yair Shapira7019c802012-07-11 18:48:04 +0300469int wl1271_plt_start(struct wl1271 *wl, const enum plt_mode plt_mode);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300470int wl1271_plt_stop(struct wl1271 *wl);
Eliad Peller9eb599e2011-10-10 10:12:59 +0200471int wl1271_recalc_rx_streaming(struct wl1271 *wl, struct wl12xx_vif *wlvif);
Ido Yarivbaacb9ae2011-06-06 14:57:05 +0300472void wl12xx_queue_recovery_work(struct wl1271 *wl);
Ido Yariv95dac04f2011-06-06 14:57:06 +0300473size_t wl12xx_copy_fwlog(struct wl1271 *wl, u8 *memblock, size_t maxlen);
Eyal Shapiraa6eab0c2012-03-14 06:32:07 +0200474int wl1271_rx_filter_alloc_field(struct wl12xx_rx_filter *filter,
475 u16 offset, u8 flags,
476 u8 *pattern, u8 len);
477void wl1271_rx_filter_free(struct wl12xx_rx_filter *filter);
478struct wl12xx_rx_filter *wl1271_rx_filter_alloc(void);
479int wl1271_rx_filter_get_fields_size(struct wl12xx_rx_filter *filter);
480void wl1271_rx_filter_flatten_fields(struct wl12xx_rx_filter *filter,
481 u8 *buf);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300482
483#define JOIN_TIMEOUT 5000 /* 5000 milliseconds to join */
484
Eliad Peller98b8625302011-10-05 11:55:55 +0200485#define SESSION_COUNTER_MAX 6 /* maximum value for the session counter */
486#define SESSION_COUNTER_INVALID 7 /* used with dummy_packet */
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300487
488#define WL1271_DEFAULT_POWER_LEVEL 0
489
Ido Yariv787b2dc2011-06-24 13:03:36 +0300490#define WL1271_TX_QUEUE_LOW_WATERMARK 32
491#define WL1271_TX_QUEUE_HIGH_WATERMARK 256
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300492
Ido Yariva6208652011-03-01 15:14:41 +0200493#define WL1271_DEFERRED_QUEUE_LIMIT 64
494
Juuso Oikarinen01ac17e2009-12-11 15:41:02 +0200495/* WL1271 needs a 200ms sleep after power on, and a 20ms sleep before power
496 on in case is has been shut down shortly before */
Stefan Weile8a8b252011-01-02 15:12:42 +0100497#define WL1271_PRE_POWER_ON_SLEEP 20 /* in milliseconds */
498#define WL1271_POWER_ON_SLEEP 200 /* in milliseconds */
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300499
Shahar Levie8b03a22010-10-13 16:09:39 +0200500/* Macros to handle wl1271.sta_rate_set */
501#define HW_BG_RATES_MASK 0xffff
502#define HW_HT_RATES_OFFSET 16
Arik Nemtsovb3a47ee2012-05-10 12:13:33 +0300503#define HW_MIMO_RATES_OFFSET 24
Shahar Levie8b03a22010-10-13 16:09:39 +0200504
Ido Yariv95dac04f2011-06-06 14:57:06 +0300505#define WL12XX_HW_BLOCK_SIZE 256
506
Luciano Coelho83885692012-05-10 12:13:42 +0300507#endif /* __WLCORE_I_H__ */