]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/net/wireless/wl12xx/wl12xx.h
wl12xx: allocate buffer the spi busy word from struct wl12xx
[karo-tx-linux.git] / drivers / net / wireless / wl12xx / wl12xx.h
1 /*
2  * This file is part of wl12xx
3  *
4  * Copyright (c) 1998-2007 Texas Instruments Incorporated
5  * Copyright (C) 2008-2009 Nokia Corporation
6  *
7  * Contact: Kalle Valo <kalle.valo@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/list.h>
30 #include <linux/bitops.h>
31 #include <net/mac80211.h>
32
33 #define DRIVER_NAME "wl12xx"
34 #define DRIVER_PREFIX DRIVER_NAME ": "
35
36 enum {
37         DEBUG_NONE      = 0,
38         DEBUG_IRQ       = BIT(0),
39         DEBUG_SPI       = BIT(1),
40         DEBUG_BOOT      = BIT(2),
41         DEBUG_MAILBOX   = BIT(3),
42         DEBUG_NETLINK   = BIT(4),
43         DEBUG_EVENT     = BIT(5),
44         DEBUG_TX        = BIT(6),
45         DEBUG_RX        = BIT(7),
46         DEBUG_SCAN      = BIT(8),
47         DEBUG_CRYPT     = BIT(9),
48         DEBUG_PSM       = BIT(10),
49         DEBUG_MAC80211  = BIT(11),
50         DEBUG_CMD       = BIT(12),
51         DEBUG_ACX       = BIT(13),
52         DEBUG_ALL       = ~0,
53 };
54
55 #define DEBUG_LEVEL (DEBUG_NONE)
56
57 #define DEBUG_DUMP_LIMIT 1024
58
59 #define wl12xx_error(fmt, arg...) \
60         printk(KERN_ERR DRIVER_PREFIX "ERROR " fmt "\n", ##arg)
61
62 #define wl12xx_warning(fmt, arg...) \
63         printk(KERN_WARNING DRIVER_PREFIX "WARNING " fmt "\n", ##arg)
64
65 #define wl12xx_notice(fmt, arg...) \
66         printk(KERN_INFO DRIVER_PREFIX fmt "\n", ##arg)
67
68 #define wl12xx_info(fmt, arg...) \
69         printk(KERN_DEBUG DRIVER_PREFIX fmt "\n", ##arg)
70
71 #define wl12xx_debug(level, fmt, arg...) \
72         do { \
73                 if (level & DEBUG_LEVEL) \
74                         printk(KERN_DEBUG DRIVER_PREFIX fmt "\n", ##arg); \
75         } while (0)
76
77 #define wl12xx_dump(level, prefix, buf, len)    \
78         do { \
79                 if (level & DEBUG_LEVEL) \
80                         print_hex_dump(KERN_DEBUG, DRIVER_PREFIX prefix, \
81                                        DUMP_PREFIX_OFFSET, 16, 1,       \
82                                        buf,                             \
83                                        min_t(size_t, len, DEBUG_DUMP_LIMIT), \
84                                        0);                              \
85         } while (0)
86
87 #define wl12xx_dump_ascii(level, prefix, buf, len)      \
88         do { \
89                 if (level & DEBUG_LEVEL) \
90                         print_hex_dump(KERN_DEBUG, DRIVER_PREFIX prefix, \
91                                        DUMP_PREFIX_OFFSET, 16, 1,       \
92                                        buf,                             \
93                                        min_t(size_t, len, DEBUG_DUMP_LIMIT), \
94                                        true);                           \
95         } while (0)
96
97 #define WL12XX_DEFAULT_RX_CONFIG (CFG_UNI_FILTER_EN |   \
98                                   CFG_BSSID_FILTER_EN)
99
100 #define WL12XX_DEFAULT_RX_FILTER (CFG_RX_PRSP_EN |  \
101                                   CFG_RX_MGMT_EN |  \
102                                   CFG_RX_DATA_EN |  \
103                                   CFG_RX_CTL_EN |   \
104                                   CFG_RX_BCN_EN |   \
105                                   CFG_RX_AUTH_EN |  \
106                                   CFG_RX_ASSOC_EN)
107
108 #define WL12XX_BUSY_WORD_LEN 8
109
110 struct boot_attr {
111         u32 radio_type;
112         u8 mac_clock;
113         u8 arm_clock;
114         int firmware_debug;
115         u32 minor;
116         u32 major;
117         u32 bugfix;
118 };
119
120 enum wl12xx_state {
121         WL12XX_STATE_OFF,
122         WL12XX_STATE_ON,
123         WL12XX_STATE_PLT,
124 };
125
126 enum wl12xx_partition_type {
127         PART_DOWN,
128         PART_WORK,
129         PART_DRPW,
130
131         PART_TABLE_LEN
132 };
133
134 struct wl12xx_partition {
135         u32 size;
136         u32 start;
137 };
138
139 struct wl12xx_partition_set {
140         struct wl12xx_partition mem;
141         struct wl12xx_partition reg;
142 };
143
144 struct wl12xx;
145
146 /* FIXME: I'm not sure about this structure name */
147 struct wl12xx_chip {
148         u32 id;
149
150         const char *fw_filename;
151         const char *nvs_filename;
152
153         char fw_ver[21];
154
155         unsigned int power_on_sleep;
156         int intr_cmd_complete;
157         int intr_init_complete;
158
159         int (*op_upload_fw)(struct wl12xx *wl);
160         int (*op_upload_nvs)(struct wl12xx *wl);
161         int (*op_boot)(struct wl12xx *wl);
162         void (*op_set_ecpu_ctrl)(struct wl12xx *wl, u32 flag);
163         void (*op_target_enable_interrupts)(struct wl12xx *wl);
164         int (*op_hw_init)(struct wl12xx *wl);
165         int (*op_plt_init)(struct wl12xx *wl);
166
167         struct wl12xx_partition_set *p_table;
168         enum wl12xx_acx_int_reg *acx_reg_table;
169 };
170
171 struct wl12xx_stats {
172         struct acx_statistics *fw_stats;
173         unsigned long fw_stats_update;
174
175         unsigned int retry_count;
176         unsigned int excessive_retries;
177 };
178
179 struct wl12xx_debugfs {
180         struct dentry *rootdir;
181         struct dentry *fw_statistics;
182
183         struct dentry *tx_internal_desc_overflow;
184
185         struct dentry *rx_out_of_mem;
186         struct dentry *rx_hdr_overflow;
187         struct dentry *rx_hw_stuck;
188         struct dentry *rx_dropped;
189         struct dentry *rx_fcs_err;
190         struct dentry *rx_xfr_hint_trig;
191         struct dentry *rx_path_reset;
192         struct dentry *rx_reset_counter;
193
194         struct dentry *dma_rx_requested;
195         struct dentry *dma_rx_errors;
196         struct dentry *dma_tx_requested;
197         struct dentry *dma_tx_errors;
198
199         struct dentry *isr_cmd_cmplt;
200         struct dentry *isr_fiqs;
201         struct dentry *isr_rx_headers;
202         struct dentry *isr_rx_mem_overflow;
203         struct dentry *isr_rx_rdys;
204         struct dentry *isr_irqs;
205         struct dentry *isr_tx_procs;
206         struct dentry *isr_decrypt_done;
207         struct dentry *isr_dma0_done;
208         struct dentry *isr_dma1_done;
209         struct dentry *isr_tx_exch_complete;
210         struct dentry *isr_commands;
211         struct dentry *isr_rx_procs;
212         struct dentry *isr_hw_pm_mode_changes;
213         struct dentry *isr_host_acknowledges;
214         struct dentry *isr_pci_pm;
215         struct dentry *isr_wakeups;
216         struct dentry *isr_low_rssi;
217
218         struct dentry *wep_addr_key_count;
219         struct dentry *wep_default_key_count;
220         /* skipping wep.reserved */
221         struct dentry *wep_key_not_found;
222         struct dentry *wep_decrypt_fail;
223         struct dentry *wep_packets;
224         struct dentry *wep_interrupt;
225
226         struct dentry *pwr_ps_enter;
227         struct dentry *pwr_elp_enter;
228         struct dentry *pwr_missing_bcns;
229         struct dentry *pwr_wake_on_host;
230         struct dentry *pwr_wake_on_timer_exp;
231         struct dentry *pwr_tx_with_ps;
232         struct dentry *pwr_tx_without_ps;
233         struct dentry *pwr_rcvd_beacons;
234         struct dentry *pwr_power_save_off;
235         struct dentry *pwr_enable_ps;
236         struct dentry *pwr_disable_ps;
237         struct dentry *pwr_fix_tsf_ps;
238         /* skipping cont_miss_bcns_spread for now */
239         struct dentry *pwr_rcvd_awake_beacons;
240
241         struct dentry *mic_rx_pkts;
242         struct dentry *mic_calc_failure;
243
244         struct dentry *aes_encrypt_fail;
245         struct dentry *aes_decrypt_fail;
246         struct dentry *aes_encrypt_packets;
247         struct dentry *aes_decrypt_packets;
248         struct dentry *aes_encrypt_interrupt;
249         struct dentry *aes_decrypt_interrupt;
250
251         struct dentry *event_heart_beat;
252         struct dentry *event_calibration;
253         struct dentry *event_rx_mismatch;
254         struct dentry *event_rx_mem_empty;
255         struct dentry *event_rx_pool;
256         struct dentry *event_oom_late;
257         struct dentry *event_phy_transmit_error;
258         struct dentry *event_tx_stuck;
259
260         struct dentry *ps_pspoll_timeouts;
261         struct dentry *ps_upsd_timeouts;
262         struct dentry *ps_upsd_max_sptime;
263         struct dentry *ps_upsd_max_apturn;
264         struct dentry *ps_pspoll_max_apturn;
265         struct dentry *ps_pspoll_utilization;
266         struct dentry *ps_upsd_utilization;
267
268         struct dentry *rxpipe_rx_prep_beacon_drop;
269         struct dentry *rxpipe_descr_host_int_trig_rx_data;
270         struct dentry *rxpipe_beacon_buffer_thres_host_int_trig_rx_data;
271         struct dentry *rxpipe_missed_beacon_host_int_trig_rx_data;
272         struct dentry *rxpipe_tx_xfr_host_int_trig_rx_data;
273
274         struct dentry *tx_queue_len;
275
276         struct dentry *retry_count;
277         struct dentry *excessive_retries;
278 };
279
280 struct wl12xx {
281         struct ieee80211_hw *hw;
282         bool mac80211_registered;
283
284         struct spi_device *spi;
285
286         void (*set_power)(bool enable);
287         int irq;
288
289         enum wl12xx_state state;
290         struct mutex mutex;
291
292         int physical_mem_addr;
293         int physical_reg_addr;
294         int virtual_mem_addr;
295         int virtual_reg_addr;
296
297         struct wl12xx_chip chip;
298
299         int cmd_box_addr;
300         int event_box_addr;
301         struct boot_attr boot_attr;
302
303         u8 *fw;
304         size_t fw_len;
305         u8 *nvs;
306         size_t nvs_len;
307
308         u8 bssid[ETH_ALEN];
309         u8 mac_addr[ETH_ALEN];
310         u8 bss_type;
311         u8 listen_int;
312         int channel;
313
314         void *target_mem_map;
315         struct acx_data_path_params_resp *data_path;
316
317         /* Number of TX packets transferred to the FW, modulo 16 */
318         u32 data_in_count;
319
320         /* Frames scheduled for transmission, not handled yet */
321         struct sk_buff_head tx_queue;
322         bool tx_queue_stopped;
323
324         struct work_struct tx_work;
325         struct work_struct filter_work;
326
327         /* Pending TX frames */
328         struct sk_buff *tx_frames[16];
329
330         /*
331          * Index pointing to the next TX complete entry
332          * in the cyclic XT complete array we get from
333          * the FW.
334          */
335         u32 next_tx_complete;
336
337         /* FW Rx counter */
338         u32 rx_counter;
339
340         /* Rx frames handled */
341         u32 rx_handled;
342
343         /* Current double buffer */
344         u32 rx_current_buffer;
345         u32 rx_last_id;
346
347         /* The target interrupt mask */
348         u32 intr_mask;
349         struct work_struct irq_work;
350
351         /* The mbox event mask */
352         u32 event_mask;
353
354         /* Mailbox pointers */
355         u32 mbox_ptr[2];
356
357         /* Are we currently scanning */
358         bool scanning;
359
360         /* Our association ID */
361         u16 aid;
362
363         /* Default key (for WEP) */
364         u32 default_key;
365
366         unsigned int tx_mgmt_frm_rate;
367         unsigned int tx_mgmt_frm_mod;
368
369         unsigned int rx_config;
370         unsigned int rx_filter;
371
372         /* is firmware in elp mode */
373         bool elp;
374
375         /* we can be in psm, but not in elp, we have to differentiate */
376         bool psm;
377
378         /* PSM mode requested */
379         bool psm_requested;
380
381         /* in dBm */
382         int power_level;
383
384         struct wl12xx_stats stats;
385         struct wl12xx_debugfs debugfs;
386
387         u32 buffer_32;
388         u32 buffer_cmd;
389         u8 buffer_busyword[WL12XX_BUSY_WORD_LEN];
390 };
391
392 int wl12xx_plt_start(struct wl12xx *wl);
393 int wl12xx_plt_stop(struct wl12xx *wl);
394
395 #define DEFAULT_HW_GEN_MODULATION_TYPE    CCK_LONG /* Long Preamble */
396 #define DEFAULT_HW_GEN_TX_RATE          RATE_2MBPS
397 #define JOIN_TIMEOUT 5000 /* 5000 milliseconds to join */
398
399 #define WL12XX_DEFAULT_POWER_LEVEL 20
400
401 #define WL12XX_TX_QUEUE_MAX_LENGTH 20
402
403 /* Different chips need different sleep times after power on.  WL1271 needs
404  * 200ms, WL1251 needs only 10ms.  By default we use 200ms, but as soon as we
405  * know the chip ID, we change the sleep value in the wl12xx chip structure,
406  * so in subsequent power ons, we don't waste more time then needed.  */
407 #define WL12XX_DEFAULT_POWER_ON_SLEEP 200
408
409 #define CHIP_ID_1251_PG10                  (0x7010101)
410 #define CHIP_ID_1251_PG11                  (0x7020101)
411 #define CHIP_ID_1251_PG12                  (0x7030101)
412 #define CHIP_ID_1271_PG10                  (0x4030101)
413
414 #endif