e904c72e8c8f6f3a00966136861bb824187f2fcb
[cascardo/linux.git] / drivers / net / wireless / wl12xx / wl12xx.h
1 /*
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
25 #ifndef __WL12XX_H__
26 #define __WL12XX_H__
27
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
35 #include "conf.h"
36 #include "ini.h"
37
38 #define DRIVER_NAME "wl1271"
39 #define DRIVER_PREFIX DRIVER_NAME ": "
40
41 enum {
42         DEBUG_NONE      = 0,
43         DEBUG_IRQ       = BIT(0),
44         DEBUG_SPI       = BIT(1),
45         DEBUG_BOOT      = BIT(2),
46         DEBUG_MAILBOX   = BIT(3),
47         DEBUG_TESTMODE  = BIT(4),
48         DEBUG_EVENT     = BIT(5),
49         DEBUG_TX        = BIT(6),
50         DEBUG_RX        = BIT(7),
51         DEBUG_SCAN      = BIT(8),
52         DEBUG_CRYPT     = BIT(9),
53         DEBUG_PSM       = BIT(10),
54         DEBUG_MAC80211  = BIT(11),
55         DEBUG_CMD       = BIT(12),
56         DEBUG_ACX       = BIT(13),
57         DEBUG_SDIO      = BIT(14),
58         DEBUG_FILTERS   = BIT(15),
59         DEBUG_ADHOC     = BIT(16),
60         DEBUG_ALL       = ~0,
61 };
62
63 #define DEBUG_LEVEL (DEBUG_NONE)
64
65 #define DEBUG_DUMP_LIMIT 1024
66
67 #define wl1271_error(fmt, arg...) \
68         printk(KERN_ERR DRIVER_PREFIX "ERROR " fmt "\n", ##arg)
69
70 #define wl1271_warning(fmt, arg...) \
71         printk(KERN_WARNING DRIVER_PREFIX "WARNING " fmt "\n", ##arg)
72
73 #define wl1271_notice(fmt, arg...) \
74         printk(KERN_INFO DRIVER_PREFIX fmt "\n", ##arg)
75
76 #define wl1271_info(fmt, arg...) \
77         printk(KERN_DEBUG DRIVER_PREFIX fmt "\n", ##arg)
78
79 #define wl1271_debug(level, fmt, arg...) \
80         do { \
81                 if (level & DEBUG_LEVEL) \
82                         printk(KERN_DEBUG DRIVER_PREFIX fmt "\n", ##arg); \
83         } while (0)
84
85 #define wl1271_dump(level, prefix, buf, len)    \
86         do { \
87                 if (level & DEBUG_LEVEL) \
88                         print_hex_dump(KERN_DEBUG, DRIVER_PREFIX prefix, \
89                                        DUMP_PREFIX_OFFSET, 16, 1,       \
90                                        buf,                             \
91                                        min_t(size_t, len, DEBUG_DUMP_LIMIT), \
92                                        0);                              \
93         } while (0)
94
95 #define wl1271_dump_ascii(level, prefix, buf, len)      \
96         do { \
97                 if (level & DEBUG_LEVEL) \
98                         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                                        true);                           \
103         } while (0)
104
105 #define WL1271_DEFAULT_RX_CONFIG (CFG_UNI_FILTER_EN |   \
106                                   CFG_BSSID_FILTER_EN | \
107                                   CFG_MC_FILTER_EN)
108
109 #define WL1271_DEFAULT_RX_FILTER (CFG_RX_RCTS_ACK | CFG_RX_PRSP_EN |  \
110                                   CFG_RX_MGMT_EN | CFG_RX_DATA_EN |   \
111                                   CFG_RX_CTL_EN | CFG_RX_BCN_EN |     \
112                                   CFG_RX_AUTH_EN | CFG_RX_ASSOC_EN)
113
114 #define WL1271_FW_NAME "wl1271-fw.bin"
115 #define WL1271_NVS_NAME "wl1271-nvs.bin"
116
117 #define WL1271_TX_SECURITY_LO16(s) ((u16)((s) & 0xffff))
118 #define WL1271_TX_SECURITY_HI32(s) ((u32)(((s) >> 16) & 0xffffffff))
119
120 #define WL1271_CIPHER_SUITE_GEM 0x00147201
121
122 #define WL1271_BUSY_WORD_CNT 1
123 #define WL1271_BUSY_WORD_LEN (WL1271_BUSY_WORD_CNT * sizeof(u32))
124
125 #define WL1271_ELP_HW_STATE_ASLEEP 0
126 #define WL1271_ELP_HW_STATE_IRQ    1
127
128 #define WL1271_DEFAULT_BEACON_INT  100
129 #define WL1271_DEFAULT_DTIM_PERIOD 1
130
131 #define ACX_TX_DESCRIPTORS         32
132
133 #define WL1271_AGGR_BUFFER_SIZE (4 * PAGE_SIZE)
134
135 enum wl1271_state {
136         WL1271_STATE_OFF,
137         WL1271_STATE_ON,
138         WL1271_STATE_PLT,
139 };
140
141 enum wl1271_partition_type {
142         PART_DOWN,
143         PART_WORK,
144         PART_DRPW,
145
146         PART_TABLE_LEN
147 };
148
149 struct wl1271_partition {
150         u32 size;
151         u32 start;
152 };
153
154 struct wl1271_partition_set {
155         struct wl1271_partition mem;
156         struct wl1271_partition reg;
157         struct wl1271_partition mem2;
158         struct wl1271_partition mem3;
159 };
160
161 struct wl1271;
162
163 /* FIXME: I'm not sure about this structure name */
164 struct wl1271_chip {
165         u32 id;
166         char fw_ver[21];
167 };
168
169 struct wl1271_stats {
170         struct acx_statistics *fw_stats;
171         unsigned long fw_stats_update;
172
173         unsigned int retry_count;
174         unsigned int excessive_retries;
175 };
176
177 #define NUM_TX_QUEUES              4
178 #define NUM_RX_PKT_DESC            8
179
180 /* FW status registers */
181 struct wl1271_fw_status {
182         __le32 intr;
183         u8  fw_rx_counter;
184         u8  drv_rx_counter;
185         u8  reserved;
186         u8  tx_results_counter;
187         __le32 rx_pkt_descs[NUM_RX_PKT_DESC];
188         __le32 tx_released_blks[NUM_TX_QUEUES];
189         __le32 fw_localtime;
190         __le32 padding[2];
191 } __packed;
192
193 struct wl1271_rx_mem_pool_addr {
194         u32 addr;
195         u32 addr_extra;
196 };
197
198 struct wl1271_scan {
199         struct cfg80211_scan_request *req;
200         bool *scanned_ch;
201         bool failed;
202         u8 state;
203         u8 ssid[IW_ESSID_MAX_SIZE+1];
204         size_t ssid_len;
205 };
206
207 struct wl1271_if_operations {
208         void (*read)(struct wl1271 *wl, int addr, void *buf, size_t len,
209                      bool fixed);
210         void (*write)(struct wl1271 *wl, int addr, void *buf, size_t len,
211                      bool fixed);
212         void (*reset)(struct wl1271 *wl);
213         void (*init)(struct wl1271 *wl);
214         int (*power)(struct wl1271 *wl, bool enable);
215         struct device* (*dev)(struct wl1271 *wl);
216         void (*enable_irq)(struct wl1271 *wl);
217         void (*disable_irq)(struct wl1271 *wl);
218 };
219
220 struct wl1271 {
221         struct platform_device *plat_dev;
222         struct ieee80211_hw *hw;
223         bool mac80211_registered;
224
225         void *if_priv;
226
227         struct wl1271_if_operations *if_ops;
228
229         void (*set_power)(bool enable);
230         int irq;
231         int ref_clock;
232
233         spinlock_t wl_lock;
234
235         enum wl1271_state state;
236         struct mutex mutex;
237
238 #define WL1271_FLAG_STA_RATES_CHANGED  (0)
239 #define WL1271_FLAG_STA_ASSOCIATED     (1)
240 #define WL1271_FLAG_JOINED             (2)
241 #define WL1271_FLAG_GPIO_POWER         (3)
242 #define WL1271_FLAG_TX_QUEUE_STOPPED   (4)
243 #define WL1271_FLAG_IN_ELP             (5)
244 #define WL1271_FLAG_PSM                (6)
245 #define WL1271_FLAG_PSM_REQUESTED      (7)
246 #define WL1271_FLAG_IRQ_PENDING        (8)
247 #define WL1271_FLAG_IRQ_RUNNING        (9)
248 #define WL1271_FLAG_IDLE              (10)
249 #define WL1271_FLAG_IDLE_REQUESTED    (11)
250 #define WL1271_FLAG_PSPOLL_FAILURE    (12)
251 #define WL1271_FLAG_STA_STATE_SENT    (13)
252 #define WL1271_FLAG_FW_TX_BUSY        (14)
253         unsigned long flags;
254
255         struct wl1271_partition_set part;
256
257         struct wl1271_chip chip;
258
259         int cmd_box_addr;
260         int event_box_addr;
261
262         u8 *fw;
263         size_t fw_len;
264         struct wl1271_nvs_file *nvs;
265         size_t nvs_len;
266
267         s8 hw_pg_ver;
268
269         u8 bssid[ETH_ALEN];
270         u8 mac_addr[ETH_ALEN];
271         u8 bss_type;
272         u8 set_bss_type;
273         u8 ssid[IW_ESSID_MAX_SIZE + 1];
274         u8 ssid_len;
275         int channel;
276
277         struct wl1271_acx_mem_map *target_mem_map;
278
279         /* Accounting for allocated / available TX blocks on HW */
280         u32 tx_blocks_freed[NUM_TX_QUEUES];
281         u32 tx_blocks_available;
282         u32 tx_results_count;
283
284         /* Transmitted TX packets counter for chipset interface */
285         u32 tx_packets_count;
286
287         /* Time-offset between host and chipset clocks */
288         s64 time_offset;
289
290         /* Session counter for the chipset */
291         int session_counter;
292
293         /* Frames scheduled for transmission, not handled yet */
294         struct sk_buff_head tx_queue;
295
296         struct work_struct tx_work;
297
298         /* Pending TX frames */
299         unsigned long tx_frames_map[BITS_TO_LONGS(ACX_TX_DESCRIPTORS)];
300         struct sk_buff *tx_frames[ACX_TX_DESCRIPTORS];
301         int tx_frames_cnt;
302
303         /* Security sequence number counters */
304         u8 tx_security_last_seq;
305         s64 tx_security_seq;
306
307         /* FW Rx counter */
308         u32 rx_counter;
309
310         /* Rx memory pool address */
311         struct wl1271_rx_mem_pool_addr rx_mem_pool_addr;
312
313         /* Intermediate buffer, used for packet aggregation */
314         u8 *aggr_buf;
315
316         /* The target interrupt mask */
317         struct work_struct irq_work;
318
319         /* Hardware recovery work */
320         struct work_struct recovery_work;
321
322         /* The mbox event mask */
323         u32 event_mask;
324
325         /* Mailbox pointers */
326         u32 mbox_ptr[2];
327
328         /* Are we currently scanning */
329         struct wl1271_scan scan;
330         struct delayed_work scan_complete_work;
331
332         /* probe-req template for the current AP */
333         struct sk_buff *probereq;
334
335         /* Our association ID */
336         u16 aid;
337
338         /*
339          * currently configured rate set:
340          *      bits  0-15 - 802.11abg rates
341          *      bits 16-23 - 802.11n   MCS index mask
342          * support only 1 stream, thus only 8 bits for the MCS rates (0-7).
343          */
344         u32 sta_rate_set;
345         u32 basic_rate_set;
346         u32 basic_rate;
347         u32 rate_set;
348
349         /* The current band */
350         enum ieee80211_band band;
351
352         /* Beaconing interval (needed for ad-hoc) */
353         u32 beacon_int;
354
355         /* Default key (for WEP) */
356         u32 default_key;
357
358         unsigned int filters;
359         unsigned int rx_config;
360         unsigned int rx_filter;
361
362         struct completion *elp_compl;
363         struct delayed_work elp_work;
364         struct delayed_work pspoll_work;
365
366         /* counter for ps-poll delivery failures */
367         int ps_poll_failures;
368
369         /* retry counter for PSM entries */
370         u8 psm_entry_retry;
371
372         /* in dBm */
373         int power_level;
374
375         int rssi_thold;
376         int last_rssi_event;
377
378         struct wl1271_stats stats;
379         struct dentry *rootdir;
380
381         __le32 buffer_32;
382         u32 buffer_cmd;
383         u32 buffer_busyword[WL1271_BUSY_WORD_CNT];
384
385         struct wl1271_fw_status *fw_status;
386         struct wl1271_tx_hw_res_if *tx_res_if;
387
388         struct ieee80211_vif *vif;
389
390         /* Current chipset configuration */
391         struct conf_drv_settings conf;
392
393         bool sg_enabled;
394
395         bool enable_11a;
396
397         struct list_head list;
398
399         /* Most recently reported noise in dBm */
400         s8 noise;
401 };
402
403 int wl1271_plt_start(struct wl1271 *wl);
404 int wl1271_plt_stop(struct wl1271 *wl);
405
406 #define JOIN_TIMEOUT 5000 /* 5000 milliseconds to join */
407
408 #define SESSION_COUNTER_MAX 7 /* maximum value for the session counter */
409
410 #define WL1271_DEFAULT_POWER_LEVEL 0
411
412 #define WL1271_TX_QUEUE_LOW_WATERMARK  10
413 #define WL1271_TX_QUEUE_HIGH_WATERMARK 25
414
415 /* WL1271 needs a 200ms sleep after power on, and a 20ms sleep before power
416    on in case is has been shut down shortly before */
417 #define WL1271_PRE_POWER_ON_SLEEP 20 /* in miliseconds */
418 #define WL1271_POWER_ON_SLEEP 200 /* in miliseconds */
419
420 /* Macros to handle wl1271.sta_rate_set */
421 #define HW_BG_RATES_MASK        0xffff
422 #define HW_HT_RATES_OFFSET      16
423
424 #endif