blob: a2e899d4e1aa48dd1c068f182da672e05b4fe09f [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
Shahar Levi00d20102010-11-08 11:20:10 +000025#ifndef __WL12XX_H__
26#define __WL12XX_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
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030038#define DRIVER_NAME "wl1271"
39#define DRIVER_PREFIX DRIVER_NAME ": "
40
Levi, Shahar4b7fac72011-01-23 07:27:22 +010041/*
42 * FW versions support BA 11n
43 * versions marks x.x.x.50-60.x
44 */
45#define WL12XX_BA_SUPPORT_FW_COST_VER2_START 50
46#define WL12XX_BA_SUPPORT_FW_COST_VER2_END 60
47
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030048enum {
49 DEBUG_NONE = 0,
50 DEBUG_IRQ = BIT(0),
51 DEBUG_SPI = BIT(1),
52 DEBUG_BOOT = BIT(2),
53 DEBUG_MAILBOX = BIT(3),
Kalle Valoc8c90872010-02-18 13:25:53 +020054 DEBUG_TESTMODE = BIT(4),
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030055 DEBUG_EVENT = BIT(5),
56 DEBUG_TX = BIT(6),
57 DEBUG_RX = BIT(7),
58 DEBUG_SCAN = BIT(8),
59 DEBUG_CRYPT = BIT(9),
60 DEBUG_PSM = BIT(10),
61 DEBUG_MAC80211 = BIT(11),
62 DEBUG_CMD = BIT(12),
63 DEBUG_ACX = BIT(13),
Teemu Paasikivia3b8ea72010-03-18 12:26:41 +020064 DEBUG_SDIO = BIT(14),
Juuso Oikarinen14b228a2010-03-18 12:26:43 +020065 DEBUG_FILTERS = BIT(15),
Juuso Oikarinen5da11dc2010-03-26 12:53:24 +020066 DEBUG_ADHOC = BIT(16),
Arik Nemtsove78a2872010-10-16 19:07:21 +020067 DEBUG_AP = BIT(17),
68 DEBUG_MASTER = (DEBUG_ADHOC | DEBUG_AP),
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030069 DEBUG_ALL = ~0,
70};
71
Eliad Peller17c17552010-12-12 12:15:35 +020072extern u32 wl12xx_debug_level;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030073
74#define DEBUG_DUMP_LIMIT 1024
75
76#define wl1271_error(fmt, arg...) \
Eliad Peller17c17552010-12-12 12:15:35 +020077 pr_err(DRIVER_PREFIX "ERROR " fmt "\n", ##arg)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030078
79#define wl1271_warning(fmt, arg...) \
Eliad Peller17c17552010-12-12 12:15:35 +020080 pr_warning(DRIVER_PREFIX "WARNING " fmt "\n", ##arg)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030081
82#define wl1271_notice(fmt, arg...) \
Eliad Peller17c17552010-12-12 12:15:35 +020083 pr_info(DRIVER_PREFIX fmt "\n", ##arg)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030084
85#define wl1271_info(fmt, arg...) \
Eliad Peller17c17552010-12-12 12:15:35 +020086 pr_info(DRIVER_PREFIX fmt "\n", ##arg)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030087
88#define wl1271_debug(level, fmt, arg...) \
89 do { \
Eliad Peller17c17552010-12-12 12:15:35 +020090 if (level & wl12xx_debug_level) \
91 pr_debug(DRIVER_PREFIX fmt "\n", ##arg); \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030092 } while (0)
93
Eliad Peller17c17552010-12-12 12:15:35 +020094/* TODO: use pr_debug_hex_dump when it will be available */
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030095#define wl1271_dump(level, prefix, buf, len) \
96 do { \
Eliad Peller17c17552010-12-12 12:15:35 +020097 if (level & wl12xx_debug_level) \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030098 print_hex_dump(KERN_DEBUG, DRIVER_PREFIX prefix, \
99 DUMP_PREFIX_OFFSET, 16, 1, \
100 buf, \
101 min_t(size_t, len, DEBUG_DUMP_LIMIT), \
102 0); \
103 } while (0)
104
105#define wl1271_dump_ascii(level, prefix, buf, len) \
106 do { \
Eliad Peller17c17552010-12-12 12:15:35 +0200107 if (level & wl12xx_debug_level) \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300108 print_hex_dump(KERN_DEBUG, DRIVER_PREFIX prefix, \
109 DUMP_PREFIX_OFFSET, 16, 1, \
110 buf, \
111 min_t(size_t, len, DEBUG_DUMP_LIMIT), \
112 true); \
113 } while (0)
114
Arik Nemtsovae113b52010-10-16 18:45:07 +0200115#define WL1271_DEFAULT_STA_RX_CONFIG (CFG_UNI_FILTER_EN | \
Juuso Oikarinenc87dec92009-10-08 21:56:31 +0300116 CFG_BSSID_FILTER_EN | \
117 CFG_MC_FILTER_EN)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300118
Arik Nemtsovae113b52010-10-16 18:45:07 +0200119#define WL1271_DEFAULT_STA_RX_FILTER (CFG_RX_RCTS_ACK | CFG_RX_PRSP_EN | \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300120 CFG_RX_MGMT_EN | CFG_RX_DATA_EN | \
121 CFG_RX_CTL_EN | CFG_RX_BCN_EN | \
122 CFG_RX_AUTH_EN | CFG_RX_ASSOC_EN)
123
Arik Nemtsovae113b52010-10-16 18:45:07 +0200124#define WL1271_DEFAULT_AP_RX_CONFIG 0
125
126#define WL1271_DEFAULT_AP_RX_FILTER (CFG_RX_RCTS_ACK | CFG_RX_PREQ_EN | \
127 CFG_RX_MGMT_EN | CFG_RX_DATA_EN | \
128 CFG_RX_CTL_EN | CFG_RX_AUTH_EN | \
129 CFG_RX_ASSOC_EN)
130
131
132
Sebastien Janf62c3172011-02-23 14:25:16 +0100133#define WL1271_FW_NAME "ti-connectivity/wl1271-fw-2.bin"
Shahar Levi5aa42342011-03-06 16:32:07 +0200134#define WL128X_FW_NAME "ti-connectivity/wl128x-fw.bin"
Sebastien Janf62c3172011-02-23 14:25:16 +0100135#define WL1271_AP_FW_NAME "ti-connectivity/wl1271-fw-ap.bin"
Arik Nemtsov166d5042010-10-16 21:44:57 +0200136
Shahar Levi5aa42342011-03-06 16:32:07 +0200137/*
138 * wl127x and wl128x are using the same NVS file name. However, the
139 * ini parameters between them are different. The driver validates
140 * the correct NVS size in wl1271_boot_upload_nvs().
141 */
142#define WL12XX_NVS_NAME "ti-connectivity/wl1271-nvs.bin"
Juuso Oikarinen152ee6e2010-02-18 13:25:42 +0200143
Juuso Oikarinen04e36fc2010-02-22 08:38:40 +0200144#define WL1271_TX_SECURITY_LO16(s) ((u16)((s) & 0xffff))
145#define WL1271_TX_SECURITY_HI32(s) ((u32)(((s) >> 16) & 0xffffffff))
146
Juuso Oikarinen7a557242010-09-27 12:42:07 +0200147#define WL1271_CIPHER_SUITE_GEM 0x00147201
148
Juuso Oikarinen259da432010-03-26 12:53:18 +0200149#define WL1271_BUSY_WORD_CNT 1
Juuso Oikarinen545f1da2009-10-08 21:56:23 +0300150#define WL1271_BUSY_WORD_LEN (WL1271_BUSY_WORD_CNT * sizeof(u32))
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300151
152#define WL1271_ELP_HW_STATE_ASLEEP 0
153#define WL1271_ELP_HW_STATE_IRQ 1
154
Juuso Oikarinend94cd292009-10-08 21:56:25 +0300155#define WL1271_DEFAULT_BEACON_INT 100
156#define WL1271_DEFAULT_DTIM_PERIOD 1
157
Arik Nemtsov98bdaab2010-10-16 18:08:58 +0200158#define WL1271_AP_GLOBAL_HLID 0
159#define WL1271_AP_BROADCAST_HLID 1
160#define WL1271_AP_STA_HLID_START 2
161
Arik Nemtsovb622d992011-02-23 00:22:31 +0200162/*
163 * When in AP-mode, we allow (at least) this number of mem-blocks
164 * to be transmitted to FW for a STA in PS-mode. Only when packets are
165 * present in the FW buffers it will wake the sleeping STA. We want to put
166 * enough packets for the driver to transmit all of its buffered data before
167 * the STA goes to sleep again. But we don't want to take too much mem-blocks
168 * as it might hurt the throughput of active STAs.
169 * The number of blocks (18) is enough for 2 large packets.
170 */
171#define WL1271_PS_STA_MAX_BLOCKS (2 * 9)
172
Arik Nemtsov98bdaab2010-10-16 18:08:58 +0200173#define WL1271_AP_BSS_INDEX 0
174#define WL1271_AP_DEF_INACTIV_SEC 300
175#define WL1271_AP_DEF_BEACON_EXP 20
176
Juuso Oikarinenc87dec92009-10-08 21:56:31 +0300177#define ACX_TX_DESCRIPTORS 32
Juuso Oikarinenbe7078c2009-10-08 21:56:26 +0300178
Ido Yariv1f37cbc2010-09-30 13:28:27 +0200179#define WL1271_AGGR_BUFFER_SIZE (4 * PAGE_SIZE)
180
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300181enum wl1271_state {
182 WL1271_STATE_OFF,
183 WL1271_STATE_ON,
184 WL1271_STATE_PLT,
185};
186
187enum wl1271_partition_type {
188 PART_DOWN,
189 PART_WORK,
190 PART_DRPW,
191
192 PART_TABLE_LEN
193};
194
195struct wl1271_partition {
196 u32 size;
197 u32 start;
198};
199
200struct wl1271_partition_set {
201 struct wl1271_partition mem;
202 struct wl1271_partition reg;
Juuso Oikarinen451de972009-10-12 15:08:46 +0300203 struct wl1271_partition mem2;
204 struct wl1271_partition mem3;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300205};
206
207struct wl1271;
208
Levi, Shahar4b7fac72011-01-23 07:27:22 +0100209#define WL12XX_NUM_FW_VER 5
210
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300211/* FIXME: I'm not sure about this structure name */
212struct wl1271_chip {
213 u32 id;
Levi, Shahar4b7fac72011-01-23 07:27:22 +0100214 char fw_ver_str[ETHTOOL_BUSINFO_LEN];
215 unsigned int fw_ver[WL12XX_NUM_FW_VER];
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300216};
217
218struct wl1271_stats {
219 struct acx_statistics *fw_stats;
220 unsigned long fw_stats_update;
221
222 unsigned int retry_count;
223 unsigned int excessive_retries;
224};
225
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300226#define NUM_TX_QUEUES 4
227#define NUM_RX_PKT_DESC 8
228
Arik Nemtsovbeb6c882010-10-16 18:53:48 +0200229#define AP_MAX_STATIONS 5
230
231/* Broadcast and Global links + links to stations */
232#define AP_MAX_LINKS (AP_MAX_STATIONS + 2)
233
Eliad Pellerc8bde242011-02-02 09:59:35 +0200234/* FW status registers common for AP/STA */
235struct wl1271_fw_common_status {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300236 __le32 intr;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300237 u8 fw_rx_counter;
238 u8 drv_rx_counter;
239 u8 reserved;
240 u8 tx_results_counter;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300241 __le32 rx_pkt_descs[NUM_RX_PKT_DESC];
242 __le32 tx_released_blks[NUM_TX_QUEUES];
243 __le32 fw_localtime;
Eliad Pellerc8bde242011-02-02 09:59:35 +0200244} __packed;
245
246/* FW status registers for AP */
247struct wl1271_fw_ap_status {
248 struct wl1271_fw_common_status common;
Arik Nemtsovbeb6c882010-10-16 18:53:48 +0200249
250 /* Next fields valid only in AP FW */
251
252 /*
253 * A bitmap (where each bit represents a single HLID)
254 * to indicate if the station is in PS mode.
255 */
256 __le32 link_ps_bitmap;
257
258 /* Number of freed MBs per HLID */
259 u8 tx_lnk_free_blks[AP_MAX_LINKS];
260 u8 padding_1[1];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000261} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300262
Eliad Pellerc8bde242011-02-02 09:59:35 +0200263/* FW status registers for STA */
264struct wl1271_fw_sta_status {
265 struct wl1271_fw_common_status common;
266
267 u8 tx_total;
268 u8 reserved1;
269 __le16 reserved2;
270} __packed;
271
272struct wl1271_fw_full_status {
273 union {
274 struct wl1271_fw_common_status common;
275 struct wl1271_fw_sta_status sta;
276 struct wl1271_fw_ap_status ap;
277 };
278} __packed;
279
280
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300281struct wl1271_rx_mem_pool_addr {
282 u32 addr;
283 u32 addr_extra;
284};
285
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300286struct wl1271_scan {
Juuso Oikarinen4fb26fa2010-05-24 11:18:20 +0300287 struct cfg80211_scan_request *req;
Luciano Coelho08688d62010-07-08 17:50:07 +0300288 bool *scanned_ch;
Juuso Oikarinen78abd322010-09-21 06:23:32 +0200289 bool failed;
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300290 u8 state;
291 u8 ssid[IW_ESSID_MAX_SIZE+1];
292 size_t ssid_len;
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300293};
294
Teemu Paasikivi8197b712010-02-22 08:38:23 +0200295struct wl1271_if_operations {
296 void (*read)(struct wl1271 *wl, int addr, void *buf, size_t len,
297 bool fixed);
298 void (*write)(struct wl1271 *wl, int addr, void *buf, size_t len,
299 bool fixed);
300 void (*reset)(struct wl1271 *wl);
301 void (*init)(struct wl1271 *wl);
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +0200302 int (*power)(struct wl1271 *wl, bool enable);
Teemu Paasikivi8197b712010-02-22 08:38:23 +0200303 struct device* (*dev)(struct wl1271 *wl);
304 void (*enable_irq)(struct wl1271 *wl);
305 void (*disable_irq)(struct wl1271 *wl);
306};
307
Arik Nemtsov7f179b42010-10-16 21:39:06 +0200308#define MAX_NUM_KEYS 14
309#define MAX_KEY_SIZE 32
310
311struct wl1271_ap_key {
312 u8 id;
313 u8 key_type;
314 u8 key_size;
315 u8 key[MAX_KEY_SIZE];
316 u8 hlid;
317 u32 tx_seq_32;
318 u16 tx_seq_16;
319};
320
Eliad Peller72c2d9e2011-02-02 09:59:37 +0200321enum wl12xx_flags {
322 WL1271_FLAG_STA_ASSOCIATED,
323 WL1271_FLAG_JOINED,
324 WL1271_FLAG_GPIO_POWER,
325 WL1271_FLAG_TX_QUEUE_STOPPED,
Ido Yarivb07d4032011-03-01 15:14:43 +0200326 WL1271_FLAG_TX_PENDING,
Eliad Peller72c2d9e2011-02-02 09:59:37 +0200327 WL1271_FLAG_IN_ELP,
328 WL1271_FLAG_PSM,
329 WL1271_FLAG_PSM_REQUESTED,
Eliad Peller72c2d9e2011-02-02 09:59:37 +0200330 WL1271_FLAG_IRQ_RUNNING,
331 WL1271_FLAG_IDLE,
332 WL1271_FLAG_IDLE_REQUESTED,
333 WL1271_FLAG_PSPOLL_FAILURE,
334 WL1271_FLAG_STA_STATE_SENT,
335 WL1271_FLAG_FW_TX_BUSY,
336 WL1271_FLAG_AP_STARTED
337};
338
Arik Nemtsova8c0ddb2011-02-23 00:22:26 +0200339struct wl1271_link {
340 /* AP-mode - TX queue per AC in link */
341 struct sk_buff_head tx_queue[NUM_TX_QUEUES];
Arik Nemtsov09039f42011-02-23 00:22:30 +0200342
343 /* accounting for allocated / available TX blocks in FW */
344 u8 allocated_blks;
345 u8 prev_freed_blks;
Arik Nemtsovb622d992011-02-23 00:22:31 +0200346
347 u8 addr[ETH_ALEN];
Arik Nemtsova8c0ddb2011-02-23 00:22:26 +0200348};
349
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300350struct wl1271 {
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +0200351 struct platform_device *plat_dev;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300352 struct ieee80211_hw *hw;
353 bool mac80211_registered;
354
Teemu Paasikivi8197b712010-02-22 08:38:23 +0200355 void *if_priv;
356
357 struct wl1271_if_operations *if_ops;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300358
359 void (*set_power)(bool enable);
360 int irq;
Ohad Ben-Cohen15cea992010-09-16 01:31:51 +0200361 int ref_clock;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300362
363 spinlock_t wl_lock;
364
365 enum wl1271_state state;
366 struct mutex mutex;
367
Juuso Oikarinen830fb672009-12-11 15:41:06 +0200368 unsigned long flags;
369
Juuso Oikarinen451de972009-10-12 15:08:46 +0300370 struct wl1271_partition_set part;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300371
372 struct wl1271_chip chip;
373
374 int cmd_box_addr;
375 int event_box_addr;
376
377 u8 *fw;
378 size_t fw_len;
Arik Nemtsov166d5042010-10-16 21:44:57 +0200379 u8 fw_bss_type;
Juuso Oikarinen152ee6e2010-02-18 13:25:42 +0200380 struct wl1271_nvs_file *nvs;
Juuso Oikarinen02fabb02010-08-19 04:41:15 +0200381 size_t nvs_len;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300382
Juuso Oikarinend717fd62010-05-07 11:38:58 +0300383 s8 hw_pg_ver;
384
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300385 u8 bssid[ETH_ALEN];
386 u8 mac_addr[ETH_ALEN];
387 u8 bss_type;
Juuso Oikarinen5da11dc2010-03-26 12:53:24 +0200388 u8 set_bss_type;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300389 u8 ssid[IW_ESSID_MAX_SIZE + 1];
390 u8 ssid_len;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300391 int channel;
392
393 struct wl1271_acx_mem_map *target_mem_map;
394
395 /* Accounting for allocated / available TX blocks on HW */
396 u32 tx_blocks_freed[NUM_TX_QUEUES];
397 u32 tx_blocks_available;
Juuso Oikarinenffb591c2010-02-22 08:38:31 +0200398 u32 tx_results_count;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300399
400 /* Transmitted TX packets counter for chipset interface */
Juuso Oikarinenffb591c2010-02-22 08:38:31 +0200401 u32 tx_packets_count;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300402
403 /* Time-offset between host and chipset clocks */
Juuso Oikarinenac5e1e32010-02-22 08:38:38 +0200404 s64 time_offset;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300405
406 /* Session counter for the chipset */
407 int session_counter;
408
409 /* Frames scheduled for transmission, not handled yet */
Juuso Oikarinen6742f552010-12-13 09:52:37 +0200410 struct sk_buff_head tx_queue[NUM_TX_QUEUES];
411 int tx_queue_count;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300412
Ido Yariva6208652011-03-01 15:14:41 +0200413 /* Frames received, not handled yet by mac80211 */
414 struct sk_buff_head deferred_rx_queue;
415
416 /* Frames sent, not returned yet to mac80211 */
417 struct sk_buff_head deferred_tx_queue;
418
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300419 struct work_struct tx_work;
Juuso Oikarinenc87dec92009-10-08 21:56:31 +0300420
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300421 /* Pending TX frames */
Ido Yariv25eeb9e2010-10-12 16:20:06 +0200422 unsigned long tx_frames_map[BITS_TO_LONGS(ACX_TX_DESCRIPTORS)];
Juuso Oikarinenbe7078c2009-10-08 21:56:26 +0300423 struct sk_buff *tx_frames[ACX_TX_DESCRIPTORS];
Juuso Oikarinen781608c2010-05-24 11:18:17 +0300424 int tx_frames_cnt;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300425
Juuso Oikarinenac4e4ce2009-10-08 21:56:19 +0300426 /* Security sequence number counters */
427 u8 tx_security_last_seq;
Juuso Oikarinen04e36fc2010-02-22 08:38:40 +0200428 s64 tx_security_seq;
Juuso Oikarinenac4e4ce2009-10-08 21:56:19 +0300429
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300430 /* FW Rx counter */
431 u32 rx_counter;
432
433 /* Rx memory pool address */
434 struct wl1271_rx_mem_pool_addr rx_mem_pool_addr;
435
Ido Yariv1f37cbc2010-09-30 13:28:27 +0200436 /* Intermediate buffer, used for packet aggregation */
437 u8 *aggr_buf;
438
Ido Yariva6208652011-03-01 15:14:41 +0200439 /* Network stack work */
440 struct work_struct netstack_work;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300441
Juuso Oikarinen52b0e7a2010-09-21 06:23:31 +0200442 /* Hardware recovery work */
443 struct work_struct recovery_work;
444
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300445 /* The mbox event mask */
446 u32 event_mask;
447
448 /* Mailbox pointers */
449 u32 mbox_ptr[2];
450
451 /* Are we currently scanning */
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300452 struct wl1271_scan scan;
Juuso Oikarinen78abd322010-09-21 06:23:32 +0200453 struct delayed_work scan_complete_work;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300454
Juuso Oikarinen2f6724b2010-11-24 08:16:57 +0200455 /* probe-req template for the current AP */
456 struct sk_buff *probereq;
457
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300458 /* Our association ID */
459 u16 aid;
460
Shahar Levie8b03a22010-10-13 16:09:39 +0200461 /*
462 * currently configured rate set:
463 * bits 0-15 - 802.11abg rates
464 * bits 16-23 - 802.11n MCS index mask
465 * support only 1 stream, thus only 8 bits for the MCS rates (0-7).
466 */
Juuso Oikarinend94cd292009-10-08 21:56:25 +0300467 u32 basic_rate_set;
Juuso Oikarinenebba60c2010-04-01 11:38:20 +0300468 u32 basic_rate;
Juuso Oikarinen830fb672009-12-11 15:41:06 +0200469 u32 rate_set;
Juuso Oikarinend94cd292009-10-08 21:56:25 +0300470
Juuso Oikarinen8a5a37a2009-10-08 21:56:24 +0300471 /* The current band */
472 enum ieee80211_band band;
473
Juuso Oikarinen60e84c22010-03-26 12:53:25 +0200474 /* Beaconing interval (needed for ad-hoc) */
475 u32 beacon_int;
476
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300477 /* Default key (for WEP) */
478 u32 default_key;
479
Juuso Oikarinen14b228a2010-03-18 12:26:43 +0200480 unsigned int filters;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300481 unsigned int rx_config;
482 unsigned int rx_filter;
483
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300484 struct completion *elp_compl;
Juuso Oikarinen37b70a82009-10-08 21:56:21 +0300485 struct delayed_work elp_work;
Juuso Oikarinen90494a92010-07-08 17:50:00 +0300486 struct delayed_work pspoll_work;
487
488 /* counter for ps-poll delivery failures */
489 int ps_poll_failures;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300490
Juuso Oikarinen19ad0712009-11-02 20:22:11 +0200491 /* retry counter for PSM entries */
492 u8 psm_entry_retry;
493
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300494 /* in dBm */
495 int power_level;
496
Juuso Oikarinen00236aed2010-04-09 11:07:30 +0300497 int rssi_thold;
498 int last_rssi_event;
499
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300500 struct wl1271_stats stats;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300501
Juuso Oikarinen554d7202010-05-07 11:38:59 +0300502 __le32 buffer_32;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300503 u32 buffer_cmd;
Juuso Oikarinen545f1da2009-10-08 21:56:23 +0300504 u32 buffer_busyword[WL1271_BUSY_WORD_CNT];
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300505
Eliad Pellerc8bde242011-02-02 09:59:35 +0200506 struct wl1271_fw_full_status *fw_status;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300507 struct wl1271_tx_hw_res_if *tx_res_if;
Juuso Oikarinenb771eee2009-10-08 21:56:34 +0300508
509 struct ieee80211_vif *vif;
Luciano Coelhod6e19d132009-10-12 15:08:43 +0300510
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +0300511 /* Current chipset configuration */
512 struct conf_drv_settings conf;
Juuso Oikarinen01c09162009-10-13 12:47:55 +0300513
Juuso Oikarinen7fc3a862010-03-18 12:26:32 +0200514 bool sg_enabled;
515
Juuso Oikarinen02fabb02010-08-19 04:41:15 +0200516 bool enable_11a;
517
Juuso Oikarinen01c09162009-10-13 12:47:55 +0300518 struct list_head list;
John W. Linvilleece550d2010-07-28 16:41:06 -0400519
520 /* Most recently reported noise in dBm */
521 s8 noise;
Arik Nemtsovf84f7d72010-10-16 20:21:23 +0200522
523 /* map for HLIDs of associated stations - when operating in AP mode */
524 unsigned long ap_hlid_map[BITS_TO_LONGS(AP_MAX_STATIONS)];
Arik Nemtsov7f179b42010-10-16 21:39:06 +0200525
526 /* recoreded keys for AP-mode - set here before AP startup */
527 struct wl1271_ap_key *recorded_ap_keys[MAX_NUM_KEYS];
Luciano Coelhoa8aaaf52011-01-11 18:25:18 +0100528
529 /* bands supported by this instance of wl12xx */
530 struct ieee80211_supported_band bands[IEEE80211_NUM_BANDS];
Levi, Shahar4b7fac72011-01-23 07:27:22 +0100531
532 /* RX BA constraint value */
533 bool ba_support;
Levi, Shahar4b7fac72011-01-23 07:27:22 +0100534 u8 ba_rx_bitmap;
Arik Nemtsova8c0ddb2011-02-23 00:22:26 +0200535
536 /*
537 * AP-mode - links indexed by HLID. The global and broadcast links
538 * are always active.
539 */
540 struct wl1271_link links[AP_MAX_LINKS];
541
542 /* the hlid of the link where the last transmitted skb came from */
543 int last_tx_hlid;
Arik Nemtsovb622d992011-02-23 00:22:31 +0200544
545 /* AP-mode - a bitmap of links currently in PS mode according to FW */
546 u32 ap_fw_ps_map;
547
548 /* AP-mode - a bitmap of links currently in PS mode in mac80211 */
549 unsigned long ap_ps_map;
Ido Yariv606ea9f2011-03-01 15:14:39 +0200550
551 /* Quirks of specific hardware revisions */
552 unsigned int quirks;
Arik Nemtsovf84f7d72010-10-16 20:21:23 +0200553};
554
555struct wl1271_station {
556 u8 hlid;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300557};
558
559int wl1271_plt_start(struct wl1271 *wl);
560int wl1271_plt_stop(struct wl1271 *wl);
561
562#define JOIN_TIMEOUT 5000 /* 5000 milliseconds to join */
563
564#define SESSION_COUNTER_MAX 7 /* maximum value for the session counter */
565
566#define WL1271_DEFAULT_POWER_LEVEL 0
567
Juuso Oikarinen06f7bc72010-02-22 08:38:33 +0200568#define WL1271_TX_QUEUE_LOW_WATERMARK 10
569#define WL1271_TX_QUEUE_HIGH_WATERMARK 25
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300570
Ido Yariva6208652011-03-01 15:14:41 +0200571#define WL1271_DEFERRED_QUEUE_LIMIT 64
572
Juuso Oikarinen01ac17e2009-12-11 15:41:02 +0200573/* WL1271 needs a 200ms sleep after power on, and a 20ms sleep before power
574 on in case is has been shut down shortly before */
Stefan Weile8a8b252011-01-02 15:12:42 +0100575#define WL1271_PRE_POWER_ON_SLEEP 20 /* in milliseconds */
576#define WL1271_POWER_ON_SLEEP 200 /* in milliseconds */
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300577
Shahar Levie8b03a22010-10-13 16:09:39 +0200578/* Macros to handle wl1271.sta_rate_set */
579#define HW_BG_RATES_MASK 0xffff
580#define HW_HT_RATES_OFFSET 16
581
Ido Yariv606ea9f2011-03-01 15:14:39 +0200582/* Quirks */
583
584/* Each RX/TX transaction requires an end-of-transaction transfer */
585#define WL12XX_QUIRK_END_OF_TRANSACTION BIT(0)
586
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300587#endif