blob: 9fab0df18c3cd032215483717ec6f152f6e8d613 [file] [log] [blame]
Ivo van Doorn95ea3622007-09-25 17:57:13 -07001/*
Ivo van Doorn811aa9c2008-02-03 15:42:53 +01002 Copyright (C) 2004 - 2008 rt2x00 SourceForge Project
Ivo van Doorn95ea3622007-09-25 17:57:13 -07003 <http://rt2x00.serialmonkey.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the
17 Free Software Foundation, Inc.,
18 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21/*
22 Module: rt2x00
23 Abstract: rt2x00 global information.
24 */
25
26#ifndef RT2X00_H
27#define RT2X00_H
28
29#include <linux/bitops.h>
Ivo van Doorn95ea3622007-09-25 17:57:13 -070030#include <linux/skbuff.h>
31#include <linux/workqueue.h>
32#include <linux/firmware.h>
Ivo van Doorna9450b72008-02-03 15:53:40 +010033#include <linux/leds.h>
Adam Baker3d823462007-10-27 13:43:29 +020034#include <linux/mutex.h>
Mattias Nissler61af43c2007-11-27 21:50:26 +010035#include <linux/etherdevice.h>
Ivo van Doorn95ea3622007-09-25 17:57:13 -070036
37#include <net/mac80211.h>
38
39#include "rt2x00debug.h"
Ivo van Doorna9450b72008-02-03 15:53:40 +010040#include "rt2x00leds.h"
Ivo van Doorn95ea3622007-09-25 17:57:13 -070041#include "rt2x00reg.h"
Ivo van Doorn181d6902008-02-05 16:42:23 -050042#include "rt2x00queue.h"
Ivo van Doorn95ea3622007-09-25 17:57:13 -070043
44/*
45 * Module information.
Ivo van Doorn95ea3622007-09-25 17:57:13 -070046 */
Ivo van Doorn81604652008-06-16 19:58:00 +020047#define DRV_VERSION "2.1.8"
Ivo van Doorn95ea3622007-09-25 17:57:13 -070048#define DRV_PROJECT "http://rt2x00.serialmonkey.com"
49
50/*
51 * Debug definitions.
52 * Debug output has to be enabled during compile time.
53 */
54#define DEBUG_PRINTK_MSG(__dev, __kernlvl, __lvl, __msg, __args...) \
55 printk(__kernlvl "%s -> %s: %s - " __msg, \
56 wiphy_name((__dev)->hw->wiphy), __FUNCTION__, __lvl, ##__args)
57
58#define DEBUG_PRINTK_PROBE(__kernlvl, __lvl, __msg, __args...) \
59 printk(__kernlvl "%s -> %s: %s - " __msg, \
Ivo van Doorn23601572007-11-27 21:47:34 +010060 KBUILD_MODNAME, __FUNCTION__, __lvl, ##__args)
Ivo van Doorn95ea3622007-09-25 17:57:13 -070061
62#ifdef CONFIG_RT2X00_DEBUG
63#define DEBUG_PRINTK(__dev, __kernlvl, __lvl, __msg, __args...) \
64 DEBUG_PRINTK_MSG(__dev, __kernlvl, __lvl, __msg, ##__args);
65#else
66#define DEBUG_PRINTK(__dev, __kernlvl, __lvl, __msg, __args...) \
67 do { } while (0)
68#endif /* CONFIG_RT2X00_DEBUG */
69
70/*
71 * Various debug levels.
72 * The debug levels PANIC and ERROR both indicate serious problems,
73 * for this reason they should never be ignored.
74 * The special ERROR_PROBE message is for messages that are generated
75 * when the rt2x00_dev is not yet initialized.
76 */
77#define PANIC(__dev, __msg, __args...) \
78 DEBUG_PRINTK_MSG(__dev, KERN_CRIT, "Panic", __msg, ##__args)
79#define ERROR(__dev, __msg, __args...) \
80 DEBUG_PRINTK_MSG(__dev, KERN_ERR, "Error", __msg, ##__args)
81#define ERROR_PROBE(__msg, __args...) \
82 DEBUG_PRINTK_PROBE(KERN_ERR, "Error", __msg, ##__args)
83#define WARNING(__dev, __msg, __args...) \
84 DEBUG_PRINTK(__dev, KERN_WARNING, "Warning", __msg, ##__args)
85#define NOTICE(__dev, __msg, __args...) \
86 DEBUG_PRINTK(__dev, KERN_NOTICE, "Notice", __msg, ##__args)
87#define INFO(__dev, __msg, __args...) \
88 DEBUG_PRINTK(__dev, KERN_INFO, "Info", __msg, ##__args)
89#define DEBUG(__dev, __msg, __args...) \
90 DEBUG_PRINTK(__dev, KERN_DEBUG, "Debug", __msg, ##__args)
91#define EEPROM(__dev, __msg, __args...) \
92 DEBUG_PRINTK(__dev, KERN_DEBUG, "EEPROM recovery", __msg, ##__args)
93
94/*
Ivo van Doorn95ea3622007-09-25 17:57:13 -070095 * Standard timing and size defines.
96 * These values should follow the ieee80211 specifications.
97 */
98#define ACK_SIZE 14
99#define IEEE80211_HEADER 24
100#define PLCP 48
101#define BEACON 100
102#define PREAMBLE 144
103#define SHORT_PREAMBLE 72
104#define SLOT_TIME 20
105#define SHORT_SLOT_TIME 9
106#define SIFS 10
107#define PIFS ( SIFS + SLOT_TIME )
108#define SHORT_PIFS ( SIFS + SHORT_SLOT_TIME )
109#define DIFS ( PIFS + SLOT_TIME )
110#define SHORT_DIFS ( SHORT_PIFS + SHORT_SLOT_TIME )
111#define EIFS ( SIFS + (8 * (IEEE80211_HEADER + ACK_SIZE)) )
112
113/*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700114 * Chipset identification
115 * The chipset on the device is composed of a RT and RF chip.
116 * The chipset combination is important for determining device capabilities.
117 */
118struct rt2x00_chip {
119 u16 rt;
120#define RT2460 0x0101
121#define RT2560 0x0201
122#define RT2570 0x1201
Ivo van Doorn12dadb92007-09-25 20:54:44 +0200123#define RT2561s 0x0301 /* Turbo */
124#define RT2561 0x0302
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700125#define RT2661 0x0401
126#define RT2571 0x1300
127
128 u16 rf;
129 u32 rev;
130};
131
132/*
133 * RF register values that belong to a particular channel.
134 */
135struct rf_channel {
136 int channel;
137 u32 rf1;
138 u32 rf2;
139 u32 rf3;
140 u32 rf4;
141};
142
143/*
Ivo van Doornaddc81bd2007-10-13 16:26:23 +0200144 * Antenna setup values.
145 */
146struct antenna_setup {
147 enum antenna rx;
148 enum antenna tx;
149};
150
151/*
Ivo van Doornebcf26d2007-10-13 16:26:12 +0200152 * Quality statistics about the currently active link.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700153 */
Ivo van Doornebcf26d2007-10-13 16:26:12 +0200154struct link_qual {
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700155 /*
156 * Statistics required for Link tuning.
157 * For the average RSSI value we use the "Walking average" approach.
158 * When adding RSSI to the average value the following calculation
159 * is needed:
160 *
161 * avg_rssi = ((avg_rssi * 7) + rssi) / 8;
162 *
163 * The advantage of this approach is that we only need 1 variable
164 * to store the average in (No need for a count and a total).
165 * But more importantly, normal average values will over time
166 * move less and less towards newly added values this results
167 * that with link tuning, the device can have a very good RSSI
168 * for a few minutes but when the device is moved away from the AP
169 * the average will not decrease fast enough to compensate.
170 * The walking average compensates this and will move towards
171 * the new values correctly allowing a effective link tuning.
172 */
173 int avg_rssi;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700174 int false_cca;
175
176 /*
177 * Statistics required for Signal quality calculation.
178 * For calculating the Signal quality we have to determine
179 * the total number of success and failed RX and TX frames.
180 * After that we also use the average RSSI value to help
181 * determining the signal quality.
182 * For the calculation we will use the following algorithm:
183 *
184 * rssi_percentage = (avg_rssi * 100) / rssi_offset
185 * rx_percentage = (rx_success * 100) / rx_total
186 * tx_percentage = (tx_success * 100) / tx_total
187 * avg_signal = ((WEIGHT_RSSI * avg_rssi) +
188 * (WEIGHT_TX * tx_percentage) +
189 * (WEIGHT_RX * rx_percentage)) / 100
190 *
191 * This value should then be checked to not be greated then 100.
192 */
193 int rx_percentage;
194 int rx_success;
195 int rx_failed;
196 int tx_percentage;
197 int tx_success;
198 int tx_failed;
199#define WEIGHT_RSSI 20
200#define WEIGHT_RX 40
201#define WEIGHT_TX 40
Ivo van Doornebcf26d2007-10-13 16:26:12 +0200202};
203
204/*
Ivo van Doorn69f81a22007-10-13 16:26:36 +0200205 * Antenna settings about the currently active link.
206 */
207struct link_ant {
208 /*
209 * Antenna flags
210 */
211 unsigned int flags;
212#define ANTENNA_RX_DIVERSITY 0x00000001
213#define ANTENNA_TX_DIVERSITY 0x00000002
214#define ANTENNA_MODE_SAMPLE 0x00000004
215
216 /*
217 * Currently active TX/RX antenna setup.
218 * When software diversity is used, this will indicate
219 * which antenna is actually used at this time.
220 */
221 struct antenna_setup active;
222
223 /*
224 * RSSI information for the different antenna's.
225 * These statistics are used to determine when
226 * to switch antenna when using software diversity.
227 *
228 * rssi[0] -> Antenna A RSSI
229 * rssi[1] -> Antenna B RSSI
230 */
231 int rssi_history[2];
232
233 /*
234 * Current RSSI average of the currently active antenna.
235 * Similar to the avg_rssi in the link_qual structure
236 * this value is updated by using the walking average.
237 */
238 int rssi_ant;
239};
240
241/*
Ivo van Doornebcf26d2007-10-13 16:26:12 +0200242 * To optimize the quality of the link we need to store
243 * the quality of received frames and periodically
244 * optimize the link.
245 */
246struct link {
247 /*
248 * Link tuner counter
249 * The number of times the link has been tuned
250 * since the radio has been switched on.
251 */
252 u32 count;
253
254 /*
255 * Quality measurement values.
256 */
257 struct link_qual qual;
258
259 /*
Ivo van Doorn69f81a22007-10-13 16:26:36 +0200260 * TX/RX antenna setup.
Ivo van Doornaddc81bd2007-10-13 16:26:23 +0200261 */
Ivo van Doorn69f81a22007-10-13 16:26:36 +0200262 struct link_ant ant;
Ivo van Doornaddc81bd2007-10-13 16:26:23 +0200263
264 /*
Ivo van Doornebcf26d2007-10-13 16:26:12 +0200265 * Active VGC level
266 */
267 int vgc_level;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700268
269 /*
270 * Work structure for scheduling periodic link tuning.
271 */
272 struct delayed_work work;
273};
274
275/*
Ivo van Doorn69f81a22007-10-13 16:26:36 +0200276 * Small helper macro to work with moving/walking averages.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700277 */
Ivo van Doorn69f81a22007-10-13 16:26:36 +0200278#define MOVING_AVERAGE(__avg, __val, __samples) \
279 ( (((__avg) * ((__samples) - 1)) + (__val)) / (__samples) )
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700280
281/*
Ivo van Doorn69f81a22007-10-13 16:26:36 +0200282 * When we lack RSSI information return something less then -80 to
283 * tell the driver to tune the device to maximum sensitivity.
284 */
285#define DEFAULT_RSSI ( -128 )
286
287/*
288 * Link quality access functions.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700289 */
290static inline int rt2x00_get_link_rssi(struct link *link)
291{
Ivo van Doornebcf26d2007-10-13 16:26:12 +0200292 if (link->qual.avg_rssi && link->qual.rx_success)
293 return link->qual.avg_rssi;
Ivo van Doorn69f81a22007-10-13 16:26:36 +0200294 return DEFAULT_RSSI;
295}
296
297static inline int rt2x00_get_link_ant_rssi(struct link *link)
298{
299 if (link->ant.rssi_ant && link->qual.rx_success)
300 return link->ant.rssi_ant;
301 return DEFAULT_RSSI;
302}
303
Ivo van Doornf06a0f42008-05-23 18:13:56 +0200304static inline void rt2x00_reset_link_ant_rssi(struct link *link)
305{
306 link->ant.rssi_ant = 0;
307}
308
Ivo van Doorn69f81a22007-10-13 16:26:36 +0200309static inline int rt2x00_get_link_ant_rssi_history(struct link *link,
310 enum antenna ant)
311{
312 if (link->ant.rssi_history[ant - ANTENNA_A])
313 return link->ant.rssi_history[ant - ANTENNA_A];
314 return DEFAULT_RSSI;
315}
316
317static inline int rt2x00_update_ant_rssi(struct link *link, int rssi)
318{
319 int old_rssi = link->ant.rssi_history[link->ant.active.rx - ANTENNA_A];
320 link->ant.rssi_history[link->ant.active.rx - ANTENNA_A] = rssi;
321 return old_rssi;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700322}
323
324/*
325 * Interface structure
Ivo van Doorn6bb40dd2008-02-03 15:49:59 +0100326 * Per interface configuration details, this structure
327 * is allocated as the private data for ieee80211_vif.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700328 */
Ivo van Doorn6bb40dd2008-02-03 15:49:59 +0100329struct rt2x00_intf {
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700330 /*
Ivo van Doorn6bb40dd2008-02-03 15:49:59 +0100331 * All fields within the rt2x00_intf structure
332 * must be protected with a spinlock.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700333 */
Ivo van Doorn6bb40dd2008-02-03 15:49:59 +0100334 spinlock_t lock;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700335
336 /*
Ivo van Doorn6bb40dd2008-02-03 15:49:59 +0100337 * BSS configuration. Copied from the structure
338 * passed to us through the bss_info_changed()
339 * callback funtion.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700340 */
Ivo van Doorn6bb40dd2008-02-03 15:49:59 +0100341 struct ieee80211_bss_conf conf;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700342
343 /*
344 * MAC of the device.
345 */
346 u8 mac[ETH_ALEN];
347
348 /*
349 * BBSID of the AP to associate with.
350 */
351 u8 bssid[ETH_ALEN];
Ivo van Doorn6bb40dd2008-02-03 15:49:59 +0100352
353 /*
354 * Entry in the beacon queue which belongs to
355 * this interface. Each interface has its own
356 * dedicated beacon entry.
357 */
358 struct queue_entry *beacon;
359
360 /*
361 * Actions that needed rescheduling.
362 */
363 unsigned int delayed_flags;
364#define DELAYED_UPDATE_BEACON 0x00000001
Ivo van Doorn72810372008-03-09 22:46:18 +0100365#define DELAYED_CONFIG_ERP 0x00000002
Ivo van Doorna2e1d522008-03-31 15:53:44 +0200366#define DELAYED_LED_ASSOC 0x00000004
Johannes Bergf591fa52008-07-10 11:21:26 +0200367
368 u16 seqno;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700369};
370
Ivo van Doorn6bb40dd2008-02-03 15:49:59 +0100371static inline struct rt2x00_intf* vif_to_intf(struct ieee80211_vif *vif)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700372{
Ivo van Doorn6bb40dd2008-02-03 15:49:59 +0100373 return (struct rt2x00_intf *)vif->drv_priv;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700374}
375
Ivo van Doorn31562e82008-02-17 17:35:05 +0100376/**
377 * struct hw_mode_spec: Hardware specifications structure
378 *
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700379 * Details about the supported modes, rates and channels
380 * of a particular chipset. This is used by rt2x00lib
381 * to build the ieee80211_hw_mode array for mac80211.
Ivo van Doorn31562e82008-02-17 17:35:05 +0100382 *
383 * @supported_bands: Bitmask contained the supported bands (2.4GHz, 5.2GHz).
384 * @supported_rates: Rate types which are supported (CCK, OFDM).
385 * @num_channels: Number of supported channels. This is used as array size
386 * for @tx_power_a, @tx_power_bg and @channels.
Ivo van Doorn9a46d442008-04-21 19:02:17 +0200387 * @channels: Device/chipset specific channel values (See &struct rf_channel).
Ivo van Doorn31562e82008-02-17 17:35:05 +0100388 * @tx_power_a: TX power values for all 5.2GHz channels (may be NULL).
389 * @tx_power_bg: TX power values for all 2.4GHz channels (may be NULL).
390 * @tx_power_default: Default TX power value to use when either
391 * @tx_power_a or @tx_power_bg is missing.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700392 */
393struct hw_mode_spec {
Ivo van Doorn31562e82008-02-17 17:35:05 +0100394 unsigned int supported_bands;
395#define SUPPORT_BAND_2GHZ 0x00000001
396#define SUPPORT_BAND_5GHZ 0x00000002
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700397
Ivo van Doorn31562e82008-02-17 17:35:05 +0100398 unsigned int supported_rates;
399#define SUPPORT_RATE_CCK 0x00000001
400#define SUPPORT_RATE_OFDM 0x00000002
401
402 unsigned int num_channels;
403 const struct rf_channel *channels;
404
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700405 const u8 *tx_power_a;
406 const u8 *tx_power_bg;
407 u8 tx_power_default;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700408};
409
410/*
Ivo van Doorn5c58ee52007-10-06 13:34:52 +0200411 * Configuration structure wrapper around the
412 * mac80211 configuration structure.
413 * When mac80211 configures the driver, rt2x00lib
414 * can precalculate values which are equal for all
415 * rt2x00 drivers. Those values can be stored in here.
416 */
417struct rt2x00lib_conf {
418 struct ieee80211_conf *conf;
419 struct rf_channel rf;
420
Ivo van Doornaddc81bd2007-10-13 16:26:23 +0200421 struct antenna_setup ant;
422
Ivo van Doornf5507ce2008-02-03 15:51:13 +0100423 enum ieee80211_band band;
Ivo van Doorn5c58ee52007-10-06 13:34:52 +0200424
Ivo van Doornaa776722008-03-09 22:48:08 +0100425 u32 basic_rates;
426 u32 slot_time;
Ivo van Doorn5c58ee52007-10-06 13:34:52 +0200427
428 short sifs;
429 short pifs;
430 short difs;
431 short eifs;
432};
433
434/*
Ivo van Doorn72810372008-03-09 22:46:18 +0100435 * Configuration structure for erp settings.
436 */
437struct rt2x00lib_erp {
438 int short_preamble;
Ivo van Doorne360c4c2008-07-09 15:12:06 +0200439 int cts_protection;
Ivo van Doorn72810372008-03-09 22:46:18 +0100440
441 int ack_timeout;
442 int ack_consume_time;
443};
444
445/*
Ivo van Doorn6bb40dd2008-02-03 15:49:59 +0100446 * Configuration structure wrapper around the
447 * rt2x00 interface configuration handler.
448 */
449struct rt2x00intf_conf {
450 /*
451 * Interface type
452 */
453 enum ieee80211_if_types type;
454
455 /*
456 * TSF sync value, this is dependant on the operation type.
457 */
458 enum tsf_sync sync;
459
460 /*
461 * The MAC and BSSID addressess are simple array of bytes,
462 * these arrays are little endian, so when sending the addressess
463 * to the drivers, copy the it into a endian-signed variable.
464 *
465 * Note that all devices (except rt2500usb) have 32 bits
466 * register word sizes. This means that whatever variable we
467 * pass _must_ be a multiple of 32 bits. Otherwise the device
468 * might not accept what we are sending to it.
469 * This will also make it easier for the driver to write
470 * the data to the device.
471 */
472 __le32 mac[2];
473 __le32 bssid[2];
474};
475
476/*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700477 * rt2x00lib callback functions.
478 */
479struct rt2x00lib_ops {
480 /*
481 * Interrupt handlers.
482 */
483 irq_handler_t irq_handler;
484
485 /*
486 * Device init handlers.
487 */
488 int (*probe_hw) (struct rt2x00_dev *rt2x00dev);
489 char *(*get_firmware_name) (struct rt2x00_dev *rt2x00dev);
Ivo van Doorna7f3a062008-03-09 22:44:54 +0100490 u16 (*get_firmware_crc) (void *data, const size_t len);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700491 int (*load_firmware) (struct rt2x00_dev *rt2x00dev, void *data,
492 const size_t len);
493
494 /*
495 * Device initialization/deinitialization handlers.
496 */
497 int (*initialize) (struct rt2x00_dev *rt2x00dev);
498 void (*uninitialize) (struct rt2x00_dev *rt2x00dev);
499
500 /*
Ivo van Doorn181d6902008-02-05 16:42:23 -0500501 * queue initialization handlers
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100502 */
503 void (*init_rxentry) (struct rt2x00_dev *rt2x00dev,
Ivo van Doorn181d6902008-02-05 16:42:23 -0500504 struct queue_entry *entry);
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100505 void (*init_txentry) (struct rt2x00_dev *rt2x00dev,
Ivo van Doorn181d6902008-02-05 16:42:23 -0500506 struct queue_entry *entry);
Ivo van Doorn837e7f22008-01-06 23:41:45 +0100507
508 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700509 * Radio control handlers.
510 */
511 int (*set_device_state) (struct rt2x00_dev *rt2x00dev,
512 enum dev_state state);
513 int (*rfkill_poll) (struct rt2x00_dev *rt2x00dev);
Ivo van Doornebcf26d2007-10-13 16:26:12 +0200514 void (*link_stats) (struct rt2x00_dev *rt2x00dev,
515 struct link_qual *qual);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700516 void (*reset_tuner) (struct rt2x00_dev *rt2x00dev);
517 void (*link_tuner) (struct rt2x00_dev *rt2x00dev);
518
519 /*
520 * TX control handlers
521 */
522 void (*write_tx_desc) (struct rt2x00_dev *rt2x00dev,
Ivo van Doorndd3193e2008-01-06 23:41:10 +0100523 struct sk_buff *skb,
Ivo van Doorn61486e02008-05-10 13:42:31 +0200524 struct txentry_desc *txdesc);
Ivo van Doorn6db37862008-06-06 22:50:28 +0200525 int (*write_tx_data) (struct queue_entry *entry);
Ivo van Doornbd88a782008-07-09 15:12:44 +0200526 void (*write_beacon) (struct queue_entry *entry);
Ivo van Doornb242e892007-11-15 23:41:31 +0100527 int (*get_tx_data_len) (struct rt2x00_dev *rt2x00dev,
Ivo van Doorndd9fa2d2007-10-06 14:15:46 +0200528 struct sk_buff *skb);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700529 void (*kick_tx_queue) (struct rt2x00_dev *rt2x00dev,
Ivo van Doorne58c6ac2008-04-21 19:00:47 +0200530 const enum data_queue_qid queue);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700531
532 /*
533 * RX control handlers
534 */
Ivo van Doorn181d6902008-02-05 16:42:23 -0500535 void (*fill_rxdone) (struct queue_entry *entry,
536 struct rxdone_entry_desc *rxdesc);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700537
538 /*
539 * Configuration handlers.
540 */
Ivo van Doorn3a643d22008-03-25 14:13:18 +0100541 void (*config_filter) (struct rt2x00_dev *rt2x00dev,
542 const unsigned int filter_flags);
Ivo van Doorn6bb40dd2008-02-03 15:49:59 +0100543 void (*config_intf) (struct rt2x00_dev *rt2x00dev,
544 struct rt2x00_intf *intf,
545 struct rt2x00intf_conf *conf,
546 const unsigned int flags);
547#define CONFIG_UPDATE_TYPE ( 1 << 1 )
548#define CONFIG_UPDATE_MAC ( 1 << 2 )
549#define CONFIG_UPDATE_BSSID ( 1 << 3 )
550
Ivo van Doorn3a643d22008-03-25 14:13:18 +0100551 void (*config_erp) (struct rt2x00_dev *rt2x00dev,
552 struct rt2x00lib_erp *erp);
Ivo van Doorn6bb40dd2008-02-03 15:49:59 +0100553 void (*config) (struct rt2x00_dev *rt2x00dev,
554 struct rt2x00lib_conf *libconf,
555 const unsigned int flags);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700556#define CONFIG_UPDATE_PHYMODE ( 1 << 1 )
557#define CONFIG_UPDATE_CHANNEL ( 1 << 2 )
558#define CONFIG_UPDATE_TXPOWER ( 1 << 3 )
559#define CONFIG_UPDATE_ANTENNA ( 1 << 4 )
560#define CONFIG_UPDATE_SLOT_TIME ( 1 << 5 )
561#define CONFIG_UPDATE_BEACON_INT ( 1 << 6 )
562#define CONFIG_UPDATE_ALL 0xffff
563};
564
565/*
566 * rt2x00 driver callback operation structure.
567 */
568struct rt2x00_ops {
569 const char *name;
Ivo van Doorn6bb40dd2008-02-03 15:49:59 +0100570 const unsigned int max_sta_intf;
571 const unsigned int max_ap_intf;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700572 const unsigned int eeprom_size;
573 const unsigned int rf_size;
Gertjan van Wingerde61448f82008-05-10 13:43:33 +0200574 const unsigned int tx_queues;
Ivo van Doorn181d6902008-02-05 16:42:23 -0500575 const struct data_queue_desc *rx;
576 const struct data_queue_desc *tx;
577 const struct data_queue_desc *bcn;
578 const struct data_queue_desc *atim;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700579 const struct rt2x00lib_ops *lib;
580 const struct ieee80211_ops *hw;
581#ifdef CONFIG_RT2X00_LIB_DEBUGFS
582 const struct rt2x00debug *debugfs;
583#endif /* CONFIG_RT2X00_LIB_DEBUGFS */
584};
585
586/*
Ivo van Doorn483272f2007-10-06 14:13:06 +0200587 * rt2x00 device flags
588 */
589enum rt2x00_flags {
590 /*
591 * Device state flags
592 */
593 DEVICE_PRESENT,
594 DEVICE_REGISTERED_HW,
595 DEVICE_INITIALIZED,
596 DEVICE_STARTED,
597 DEVICE_STARTED_SUSPEND,
598 DEVICE_ENABLED_RADIO,
Ivo van Doorn81873e92007-10-06 14:14:06 +0200599 DEVICE_DISABLED_RADIO_HW,
Ivo van Doorn483272f2007-10-06 14:13:06 +0200600
601 /*
602 * Driver features
603 */
604 DRIVER_REQUIRE_FIRMWARE,
Ivo van Doorn181d6902008-02-05 16:42:23 -0500605 DRIVER_REQUIRE_BEACON_GUARD,
606 DRIVER_REQUIRE_ATIM_QUEUE,
Ivo van Doorn3a643d22008-03-25 14:13:18 +0100607 DRIVER_REQUIRE_SCHEDULED,
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200608 DRIVER_REQUIRE_DMA,
Ivo van Doorn483272f2007-10-06 14:13:06 +0200609
610 /*
611 * Driver configuration
612 */
613 CONFIG_SUPPORT_HW_BUTTON,
614 CONFIG_FRAME_TYPE,
615 CONFIG_RF_SEQUENCE,
616 CONFIG_EXTERNAL_LNA_A,
617 CONFIG_EXTERNAL_LNA_BG,
618 CONFIG_DOUBLE_ANTENNA,
619 CONFIG_DISABLE_LINK_TUNING,
620};
621
622/*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700623 * rt2x00 device structure.
624 */
625struct rt2x00_dev {
626 /*
627 * Device structure.
628 * The structure stored in here depends on the
629 * system bus (PCI or USB).
630 * When accessing this variable, the rt2x00dev_{pci,usb}
631 * macro's should be used for correct typecasting.
632 */
Gertjan van Wingerde14a3bf82008-06-16 19:55:43 +0200633 struct device *dev;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700634
635 /*
636 * Callback functions.
637 */
638 const struct rt2x00_ops *ops;
639
640 /*
641 * IEEE80211 control structure.
642 */
643 struct ieee80211_hw *hw;
Johannes Berg8318d782008-01-24 19:38:38 +0100644 struct ieee80211_supported_band bands[IEEE80211_NUM_BANDS];
645 enum ieee80211_band curr_band;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700646
647 /*
648 * rfkill structure for RF state switching support.
649 * This will only be compiled in when required.
650 */
651#ifdef CONFIG_RT2X00_LIB_RFKILL
John W. Linville3480a582008-03-27 19:54:13 -0400652 unsigned long rfkill_state;
Ivo van Doorn1682fe62008-03-13 15:38:03 +0100653#define RFKILL_STATE_ALLOCATED 1
654#define RFKILL_STATE_REGISTERED 2
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700655 struct rfkill *rfkill;
Ivo van Doorn50db7872008-07-04 14:51:39 +0200656 struct delayed_work rfkill_work;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700657#endif /* CONFIG_RT2X00_LIB_RFKILL */
658
659 /*
660 * If enabled, the debugfs interface structures
661 * required for deregistration of debugfs.
662 */
663#ifdef CONFIG_RT2X00_LIB_DEBUGFS
Ivo van Doorn4d8dd662007-11-27 21:49:29 +0100664 struct rt2x00debug_intf *debugfs_intf;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700665#endif /* CONFIG_RT2X00_LIB_DEBUGFS */
666
667 /*
Ivo van Doorna9450b72008-02-03 15:53:40 +0100668 * LED structure for changing the LED status
669 * by mac8011 or the kernel.
670 */
671#ifdef CONFIG_RT2X00_LIB_LEDS
Ivo van Doorna9450b72008-02-03 15:53:40 +0100672 struct rt2x00_led led_radio;
673 struct rt2x00_led led_assoc;
674 struct rt2x00_led led_qual;
675 u16 led_mcu_reg;
676#endif /* CONFIG_RT2X00_LIB_LEDS */
677
678 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700679 * Device flags.
680 * In these flags the current status and some
681 * of the device capabilities are stored.
682 */
683 unsigned long flags;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700684
685 /*
686 * Chipset identification.
687 */
688 struct rt2x00_chip chip;
689
690 /*
691 * hw capability specifications.
692 */
693 struct hw_mode_spec spec;
694
695 /*
Ivo van Doornaddc81bd2007-10-13 16:26:23 +0200696 * This is the default TX/RX antenna setup as indicated
697 * by the device's EEPROM. When mac80211 sets its
698 * antenna value to 0 we should be using these values.
699 */
700 struct antenna_setup default_ant;
701
702 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700703 * Register pointers
Ivo van Doorn21795092008-02-10 22:49:13 +0100704 * csr.base: CSR base register address. (PCI)
705 * csr.cache: CSR cache for usb_control_msg. (USB)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700706 */
Ivo van Doorn21795092008-02-10 22:49:13 +0100707 union csr {
708 void __iomem *base;
709 void *cache;
710 } csr;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700711
712 /*
Adam Baker3d823462007-10-27 13:43:29 +0200713 * Mutex to protect register accesses on USB devices.
714 * There are 2 reasons this is needed, one is to ensure
715 * use of the csr_cache (for USB devices) by one thread
716 * isn't corrupted by another thread trying to access it.
717 * The other is that access to BBP and RF registers
718 * require multiple BUS transactions and if another thread
719 * attempted to access one of those registers at the same
720 * time one of the writes could silently fail.
721 */
722 struct mutex usb_cache_mutex;
723
724 /*
Ivo van Doorn3c4f2082008-01-06 23:40:49 +0100725 * Current packet filter configuration for the device.
726 * This contains all currently active FIF_* flags send
727 * to us by mac80211 during configure_filter().
728 */
729 unsigned int packet_filter;
730
731 /*
Ivo van Doorn6bb40dd2008-02-03 15:49:59 +0100732 * Interface details:
733 * - Open ap interface count.
734 * - Open sta interface count.
735 * - Association count.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700736 */
Ivo van Doorn6bb40dd2008-02-03 15:49:59 +0100737 unsigned int intf_ap_count;
738 unsigned int intf_sta_count;
739 unsigned int intf_associated;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700740
741 /*
742 * Link quality
743 */
744 struct link link;
745
746 /*
747 * EEPROM data.
748 */
749 __le16 *eeprom;
750
751 /*
752 * Active RF register values.
753 * These are stored here so we don't need
754 * to read the rf registers and can directly
755 * use this value instead.
756 * This field should be accessed by using
757 * rt2x00_rf_read() and rt2x00_rf_write().
758 */
759 u32 *rf;
760
761 /*
Ivo van Doornb242e892007-11-15 23:41:31 +0100762 * USB Max frame size (for rt2500usb & rt73usb).
763 */
764 u16 usb_maxpacket;
765
766 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700767 * Current TX power value.
768 */
769 u16 tx_power;
770
771 /*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700772 * Rssi <-> Dbm offset
773 */
774 u8 rssi_offset;
775
776 /*
777 * Frequency offset (for rt61pci & rt73usb).
778 */
779 u8 freq_offset;
780
781 /*
782 * Low level statistics which will have
783 * to be kept up to date while device is running.
784 */
785 struct ieee80211_low_level_stats low_level_stats;
786
787 /*
788 * RX configuration information.
789 */
790 struct ieee80211_rx_status rx_status;
791
792 /*
Johannes Berg4150c572007-09-17 01:29:23 -0400793 * Scheduled work.
Ivo van Doorn8e260c22008-07-04 13:41:31 +0200794 * NOTE: intf_work will use ieee80211_iterate_active_interfaces()
795 * which means it cannot be placed on the hw->workqueue
796 * due to RTNL locking requirements.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700797 */
Ivo van Doorn6bb40dd2008-02-03 15:49:59 +0100798 struct work_struct intf_work;
Johannes Berg4150c572007-09-17 01:29:23 -0400799 struct work_struct filter_work;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700800
801 /*
Ivo van Doorn181d6902008-02-05 16:42:23 -0500802 * Data queue arrays for RX, TX and Beacon.
803 * The Beacon array also contains the Atim queue
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700804 * if that is supported by the device.
805 */
Ivo van Doornb8697672008-06-06 22:53:14 +0200806 unsigned int data_queues;
Ivo van Doorn181d6902008-02-05 16:42:23 -0500807 struct data_queue *rx;
808 struct data_queue *tx;
809 struct data_queue *bcn;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700810
811 /*
812 * Firmware image.
813 */
814 const struct firmware *fw;
815};
816
817/*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700818 * Generic RF access.
819 * The RF is being accessed by word index.
820 */
Adam Baker0e14f6d2007-10-27 13:41:25 +0200821static inline void rt2x00_rf_read(struct rt2x00_dev *rt2x00dev,
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700822 const unsigned int word, u32 *data)
823{
824 *data = rt2x00dev->rf[word];
825}
826
Adam Baker0e14f6d2007-10-27 13:41:25 +0200827static inline void rt2x00_rf_write(struct rt2x00_dev *rt2x00dev,
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700828 const unsigned int word, u32 data)
829{
830 rt2x00dev->rf[word] = data;
831}
832
833/*
834 * Generic EEPROM access.
835 * The EEPROM is being accessed by word index.
836 */
Adam Baker0e14f6d2007-10-27 13:41:25 +0200837static inline void *rt2x00_eeprom_addr(struct rt2x00_dev *rt2x00dev,
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700838 const unsigned int word)
839{
840 return (void *)&rt2x00dev->eeprom[word];
841}
842
Adam Baker0e14f6d2007-10-27 13:41:25 +0200843static inline void rt2x00_eeprom_read(struct rt2x00_dev *rt2x00dev,
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700844 const unsigned int word, u16 *data)
845{
846 *data = le16_to_cpu(rt2x00dev->eeprom[word]);
847}
848
Adam Baker0e14f6d2007-10-27 13:41:25 +0200849static inline void rt2x00_eeprom_write(struct rt2x00_dev *rt2x00dev,
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700850 const unsigned int word, u16 data)
851{
852 rt2x00dev->eeprom[word] = cpu_to_le16(data);
853}
854
855/*
856 * Chipset handlers
857 */
858static inline void rt2x00_set_chip(struct rt2x00_dev *rt2x00dev,
859 const u16 rt, const u16 rf, const u32 rev)
860{
861 INFO(rt2x00dev,
862 "Chipset detected - rt: %04x, rf: %04x, rev: %08x.\n",
863 rt, rf, rev);
864
865 rt2x00dev->chip.rt = rt;
866 rt2x00dev->chip.rf = rf;
867 rt2x00dev->chip.rev = rev;
868}
869
870static inline char rt2x00_rt(const struct rt2x00_chip *chipset, const u16 chip)
871{
872 return (chipset->rt == chip);
873}
874
875static inline char rt2x00_rf(const struct rt2x00_chip *chipset, const u16 chip)
876{
877 return (chipset->rf == chip);
878}
879
Ivo van Doorn755a9572007-11-12 15:02:22 +0100880static inline u16 rt2x00_rev(const struct rt2x00_chip *chipset)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700881{
882 return chipset->rev;
883}
884
Ivo van Doorn755a9572007-11-12 15:02:22 +0100885static inline u16 rt2x00_check_rev(const struct rt2x00_chip *chipset,
886 const u32 rev)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700887{
Ivo van Doorn755a9572007-11-12 15:02:22 +0100888 return (((chipset->rev & 0xffff0) == rev) &&
889 !!(chipset->rev & 0x0000f));
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700890}
891
892/*
893 * Duration calculations
894 * The rate variable passed is: 100kbs.
895 * To convert from bytes to bits we multiply size with 8,
896 * then the size is multiplied with 10 to make the
897 * real rate -> rate argument correction.
898 */
899static inline u16 get_duration(const unsigned int size, const u8 rate)
900{
901 return ((size * 8 * 10) / rate);
902}
903
904static inline u16 get_duration_res(const unsigned int size, const u8 rate)
905{
906 return ((size * 8 * 10) % rate);
907}
908
Ivo van Doorn181d6902008-02-05 16:42:23 -0500909/**
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200910 * rt2x00queue_map_txskb - Map a skb into DMA for TX purposes.
911 * @rt2x00dev: Pointer to &struct rt2x00_dev.
912 * @skb: The skb to map.
Gertjan van Wingerde239c2492008-06-06 22:54:12 +0200913 */
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200914void rt2x00queue_map_txskb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb);
Gertjan van Wingerde239c2492008-06-06 22:54:12 +0200915
916/**
Ivo van Doorne58c6ac2008-04-21 19:00:47 +0200917 * rt2x00queue_get_queue - Convert queue index to queue pointer
Ivo van Doorn181d6902008-02-05 16:42:23 -0500918 * @rt2x00dev: Pointer to &struct rt2x00_dev.
Ivo van Doorne58c6ac2008-04-21 19:00:47 +0200919 * @queue: rt2x00 queue index (see &enum data_queue_qid).
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700920 */
Ivo van Doorn181d6902008-02-05 16:42:23 -0500921struct data_queue *rt2x00queue_get_queue(struct rt2x00_dev *rt2x00dev,
Ivo van Doorne58c6ac2008-04-21 19:00:47 +0200922 const enum data_queue_qid queue);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500923
924/**
925 * rt2x00queue_get_entry - Get queue entry where the given index points to.
Ivo van Doorn9a46d442008-04-21 19:02:17 +0200926 * @queue: Pointer to &struct data_queue from where we obtain the entry.
Ivo van Doorn181d6902008-02-05 16:42:23 -0500927 * @index: Index identifier for obtaining the correct index.
928 */
929struct queue_entry *rt2x00queue_get_entry(struct data_queue *queue,
930 enum queue_index index);
931
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700932/*
933 * Interrupt context handlers.
934 */
935void rt2x00lib_beacondone(struct rt2x00_dev *rt2x00dev);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500936void rt2x00lib_txdone(struct queue_entry *entry,
937 struct txdone_entry_desc *txdesc);
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200938void rt2x00lib_rxdone(struct rt2x00_dev *rt2x00dev,
939 struct queue_entry *entry);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700940
941/*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700942 * mac80211 handlers.
943 */
Johannes Berge039fa42008-05-15 12:55:29 +0200944int rt2x00mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700945int rt2x00mac_start(struct ieee80211_hw *hw);
946void rt2x00mac_stop(struct ieee80211_hw *hw);
947int rt2x00mac_add_interface(struct ieee80211_hw *hw,
948 struct ieee80211_if_init_conf *conf);
949void rt2x00mac_remove_interface(struct ieee80211_hw *hw,
950 struct ieee80211_if_init_conf *conf);
951int rt2x00mac_config(struct ieee80211_hw *hw, struct ieee80211_conf *conf);
Johannes Berg32bfd352007-12-19 01:31:26 +0100952int rt2x00mac_config_interface(struct ieee80211_hw *hw,
953 struct ieee80211_vif *vif,
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700954 struct ieee80211_if_conf *conf);
Ivo van Doorn3a643d22008-03-25 14:13:18 +0100955void rt2x00mac_configure_filter(struct ieee80211_hw *hw,
956 unsigned int changed_flags,
957 unsigned int *total_flags,
958 int mc_count, struct dev_addr_list *mc_list);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700959int rt2x00mac_get_stats(struct ieee80211_hw *hw,
960 struct ieee80211_low_level_stats *stats);
961int rt2x00mac_get_tx_stats(struct ieee80211_hw *hw,
962 struct ieee80211_tx_queue_stats *stats);
Johannes Berg471b3ef2007-12-28 14:32:58 +0100963void rt2x00mac_bss_info_changed(struct ieee80211_hw *hw,
964 struct ieee80211_vif *vif,
965 struct ieee80211_bss_conf *bss_conf,
966 u32 changes);
Johannes Berge100bb62008-04-30 18:51:21 +0200967int rt2x00mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700968 const struct ieee80211_tx_queue_params *params);
969
970/*
971 * Driver allocation handlers.
972 */
973int rt2x00lib_probe_dev(struct rt2x00_dev *rt2x00dev);
974void rt2x00lib_remove_dev(struct rt2x00_dev *rt2x00dev);
975#ifdef CONFIG_PM
976int rt2x00lib_suspend(struct rt2x00_dev *rt2x00dev, pm_message_t state);
977int rt2x00lib_resume(struct rt2x00_dev *rt2x00dev);
978#endif /* CONFIG_PM */
979
980#endif /* RT2X00_H */