blob: e8b9020f9bd69676654177a54944cbd4e1fb5751 [file] [log] [blame]
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001/**
2 * This file contains definitions and data structures specific
3 * to Marvell 802.11 NIC. It contains the Device Information
4 * structure wlan_adapter.
5 */
6#ifndef _WLAN_DEV_H_
7#define _WLAN_DEV_H_
8
9#include <linux/netdevice.h>
10#include <linux/wireless.h>
11#include <linux/ethtool.h>
12#include <linux/debugfs.h>
Dan Williams4684c232007-05-10 22:52:04 -040013#include <net/ieee80211.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020014
15#include "defs.h"
16#include "scan.h"
17#include "thread.h"
18
19extern struct ethtool_ops libertas_ethtool_ops;
20
21#define MAX_BSSID_PER_CHANNEL 16
22
23#define NR_TX_QUEUE 3
24
25/* For the extended Scan */
26#define MAX_EXTENDED_SCAN_BSSID_LIST MAX_BSSID_PER_CHANNEL * \
27 MRVDRV_MAX_CHANNEL_SIZE + 1
28
29#define MAX_REGION_CHANNEL_NUM 2
30
31/** Chan-freq-TxPower mapping table*/
32struct chan_freq_power {
33 /** channel Number */
34 u16 channel;
35 /** frequency of this channel */
36 u32 freq;
37 /** Max allowed Tx power level */
38 u16 maxtxpower;
39 /** TRUE:channel unsupported; FLASE:supported*/
40 u8 unsupported;
41};
42
43/** region-band mapping table*/
44struct region_channel {
45 /** TRUE if this entry is valid */
46 u8 valid;
47 /** region code for US, Japan ... */
48 u8 region;
49 /** band B/G/A, used for BAND_CONFIG cmd */
50 u8 band;
51 /** Actual No. of elements in the array below */
52 u8 nrcfp;
53 /** chan-freq-txpower mapping table*/
54 struct chan_freq_power *CFP;
55};
56
57struct wlan_802_11_security {
58 u8 WPAenabled;
59 u8 WPA2enabled;
Dan Williams889c05b2007-05-10 22:57:23 -040060 u8 wep_enabled;
Dan Williams6affe782007-05-10 22:56:42 -040061 u8 auth_mode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020062};
63
64/** Current Basic Service Set State Structure */
65struct current_bss_params {
66 struct bss_descriptor bssdescriptor;
67 /** bssid */
68 u8 bssid[ETH_ALEN];
69 /** ssid */
70 struct WLAN_802_11_SSID ssid;
71
72 /** band */
73 u8 band;
74 /** channel */
75 u8 channel;
76 /** number of rates supported */
77 int numofrates;
78 /** supported rates*/
79 u8 datarates[WLAN_SUPPORTED_RATES];
80};
81
82/** sleep_params */
83struct sleep_params {
84 u16 sp_error;
85 u16 sp_offset;
86 u16 sp_stabletime;
87 u8 sp_calcontrol;
88 u8 sp_extsleepclk;
89 u16 sp_reserved;
90};
91
92/** Data structure for the Marvell WLAN device */
93typedef struct _wlan_dev {
94 /** device name */
95 char name[DEV_NAME_LEN];
96 /** card pointer */
97 void *card;
98 /** IO port */
99 u32 ioport;
100 /** Upload received */
101 u32 upld_rcv;
102 /** Upload type */
103 u32 upld_typ;
104 /** Upload length */
105 u32 upld_len;
106 /** netdev pointer */
107 struct net_device *netdev;
108 /* Upload buffer */
109 u8 upld_buf[WLAN_UPLD_SIZE];
110 /* Download sent:
111 bit0 1/0=data_sent/data_tx_done,
112 bit1 1/0=cmd_sent/cmd_tx_done,
113 all other bits reserved 0 */
114 u8 dnld_sent;
115} wlan_dev_t, *pwlan_dev_t;
116
117/* Mesh statistics */
118struct wlan_mesh_stats {
119 u32 fwd_bcast_cnt; /* Fwd: Broadcast counter */
120 u32 fwd_unicast_cnt; /* Fwd: Unicast counter */
121 u32 fwd_drop_ttl; /* Fwd: TTL zero */
122 u32 fwd_drop_rbt; /* Fwd: Recently Broadcasted */
123 u32 fwd_drop_noroute; /* Fwd: No route to Destination */
124 u32 fwd_drop_nobuf; /* Fwd: Run out of internal buffers */
125 u32 drop_blind; /* Rx: Dropped by blinding table */
126};
127
128/** Private structure for the MV device */
129struct _wlan_private {
130 int open;
131 int mesh_open;
132 int infra_open;
133
134 wlan_adapter *adapter;
135 wlan_dev_t wlan_dev;
136
137 struct net_device_stats stats;
138 struct net_device *mesh_dev ; /* Virtual device */
139
140 struct iw_statistics wstats;
141 struct wlan_mesh_stats mstats;
142 struct dentry *debugfs_dir;
143 struct dentry *debugfs_debug;
144 struct dentry *debugfs_files[6];
145
146 struct dentry *events_dir;
147 struct dentry *debugfs_events_files[6];
148
149 struct dentry *regs_dir;
150 struct dentry *debugfs_regs_files[6];
151
152 u32 mac_offset;
153 u32 bbp_offset;
154 u32 rf_offset;
155
156 const struct firmware *firmware;
157 struct device *hotplug_device;
158
159 /** thread to service interrupts */
160 struct wlan_thread mainthread;
161
162 struct delayed_work assoc_work;
163 struct workqueue_struct *assoc_thread;
164};
165
166/** Association request
167 *
168 * Encapsulates all the options that describe a specific assocation request
169 * or configuration of the wireless card's radio, mode, and security settings.
170 */
171struct assoc_request {
172#define ASSOC_FLAG_SSID 1
173#define ASSOC_FLAG_CHANNEL 2
174#define ASSOC_FLAG_MODE 3
175#define ASSOC_FLAG_BSSID 4
176#define ASSOC_FLAG_WEP_KEYS 5
177#define ASSOC_FLAG_WEP_TX_KEYIDX 6
178#define ASSOC_FLAG_WPA_MCAST_KEY 7
179#define ASSOC_FLAG_WPA_UCAST_KEY 8
180#define ASSOC_FLAG_SECINFO 9
181#define ASSOC_FLAG_WPA_IE 10
182 unsigned long flags;
183
184 struct WLAN_802_11_SSID ssid;
185 u8 channel;
Dan Williams0dc5a292007-05-10 22:58:02 -0400186 u8 mode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200187 u8 bssid[ETH_ALEN];
188
189 /** WEP keys */
190 struct WLAN_802_11_KEY wep_keys[4];
191 u16 wep_tx_keyidx;
192
193 /** WPA keys */
194 struct WLAN_802_11_KEY wpa_mcast_key;
195 struct WLAN_802_11_KEY wpa_unicast_key;
196
197 struct wlan_802_11_security secinfo;
198
199 /** WPA Information Elements*/
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200200 u8 wpa_ie[MAX_WPA_IE_LEN];
201 u8 wpa_ie_len;
202};
203
204/** Wlan adapter data structure*/
205struct _wlan_adapter {
206 /** STATUS variables */
207 u32 fwreleasenumber;
208 u32 fwcapinfo;
209 /* protected with big lock */
210
211 struct mutex lock;
212
213 u8 tmptxbuf[WLAN_UPLD_SIZE];
214 /* protected by hard_start_xmit serialization */
215
216 /** command-related variables */
217 u16 seqnum;
218 /* protected by big lock */
219
220 struct cmd_ctrl_node *cmd_array;
221 /** Current command */
222 struct cmd_ctrl_node *cur_cmd;
223 int cur_cmd_retcode;
224 /** command Queues */
225 /** Free command buffers */
226 struct list_head cmdfreeq;
227 /** Pending command buffers */
228 struct list_head cmdpendingq;
229
230 wait_queue_head_t cmd_pending;
231 u8 nr_cmd_pending;
232 /* command related variables protected by adapter->driver_lock */
233
234 /** Async and Sync Event variables */
235 u32 intcounter;
236 u32 eventcause;
237 u8 nodename[16]; /* nickname */
238
239 /** spin locks */
240 spinlock_t driver_lock;
241
242 /** Timers */
243 struct timer_list command_timer;
244
245 /* TX queue used in PS mode */
246 spinlock_t txqueue_lock;
247 struct sk_buff *tx_queue_ps[NR_TX_QUEUE];
248 unsigned int tx_queue_idx;
249
250 u8 hisregcpy;
251
252 /** current ssid/bssid related parameters*/
253 struct current_bss_params curbssparams;
254
Dan Williams0dc5a292007-05-10 22:58:02 -0400255 /* IW_MODE_* */
256 u8 mode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200257
258 struct bss_descriptor *pattemptedbssdesc;
259
260 struct WLAN_802_11_SSID previousssid;
261 u8 previousbssid[ETH_ALEN];
262
263 struct bss_descriptor *scantable;
264 u32 numinscantable;
265
266 u8 scantype;
267 u32 scanmode;
268
269 u16 beaconperiod;
270 u8 adhoccreate;
271
272 /** capability Info used in Association, start, join */
273 struct ieeetypes_capinfo capinfo;
274
275 /** MAC address information */
276 u8 current_addr[ETH_ALEN];
277 u8 multicastlist[MRVDRV_MAX_MULTICAST_LIST_SIZE][ETH_ALEN];
278 u32 nr_of_multicastmacaddr;
279
280 /** 802.11 statistics */
281// struct cmd_DS_802_11_GET_STAT wlan802_11Stat;
282
283 u16 enablehwauto;
284 u16 ratebitmap;
285 /** control G rates */
286 u8 adhoc_grate_enabled;
287
288 u32 txantenna;
289 u32 rxantenna;
290
291 u8 adhocchannel;
292 u32 fragthsd;
293 u32 rtsthsd;
294
295 u32 datarate;
296 u8 is_datarate_auto;
297
298 u16 listeninterval;
299 u16 prescan;
300 u8 txretrycount;
301
302 /** Tx-related variables (for single packet tx) */
303 struct sk_buff *currenttxskb;
304 u16 TxLockFlag;
305
306 /** NIC Operation characteristics */
307 u16 currentpacketfilter;
308 u32 connect_status;
309 u16 regioncode;
310 u16 regiontableindex;
311 u16 txpowerlevel;
312
313 /** POWER MANAGEMENT AND PnP SUPPORT */
314 u8 surpriseremoved;
315 u16 atimwindow;
316
317 u16 psmode; /* Wlan802_11PowermodeCAM=disable
318 Wlan802_11PowermodeMAX_PSP=enable */
319 u16 multipledtim;
320 u32 psstate;
321 u8 needtowakeup;
322
323 struct PS_CMD_ConfirmSleep libertas_ps_confirm_sleep;
324 u16 locallisteninterval;
325 u16 nullpktinterval;
326
327 struct assoc_request * assoc_req;
328
329 /** Encryption parameter */
330 struct wlan_802_11_security secinfo;
331
332 /** WEP keys */
333 struct WLAN_802_11_KEY wep_keys[4];
334 u16 wep_tx_keyidx;
335
336 /** WPA keys */
337 struct WLAN_802_11_KEY wpa_mcast_key;
338 struct WLAN_802_11_KEY wpa_unicast_key;
339
340 /** WPA Information Elements*/
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200341 u8 wpa_ie[MAX_WPA_IE_LEN];
342 u8 wpa_ie_len;
343
344 u16 rxantennamode;
345 u16 txantennamode;
346
347 /** Requested Signal Strength*/
348 u16 bcn_avg_factor;
349 u16 data_avg_factor;
350 u16 SNR[MAX_TYPE_B][MAX_TYPE_AVG];
351 u16 NF[MAX_TYPE_B][MAX_TYPE_AVG];
352 u8 RSSI[MAX_TYPE_B][MAX_TYPE_AVG];
353 u8 rawSNR[DEFAULT_DATA_AVG_FACTOR];
354 u8 rawNF[DEFAULT_DATA_AVG_FACTOR];
355 u16 nextSNRNF;
356 u16 numSNRNF;
357 u16 rxpd_rate;
358
359 u8 radioon;
360 u32 preamble;
361
362 /** Multi bands Parameter*/
363 u8 libertas_supported_rates[G_SUPPORTED_RATES];
364
365 /** Blue Tooth Co-existence Arbitration */
366
367 /** sleep_params */
368 struct sleep_params sp;
369
370 /** RF calibration data */
371
372#define MAX_REGION_CHANNEL_NUM 2
373 /** region channel data */
374 struct region_channel region_channel[MAX_REGION_CHANNEL_NUM];
375
376 struct region_channel universal_channel[MAX_REGION_CHANNEL_NUM];
377
378 /** 11D and Domain Regulatory Data */
379 struct wlan_802_11d_domain_reg domainreg;
380 struct parsed_region_chan_11d parsed_region_chan;
381
382 /** FSM variable for 11d support */
383 u32 enable11d;
384
385 /** MISCELLANEOUS */
386 u8 *prdeeprom;
387 struct wlan_offset_value offsetvalue;
388
389 struct cmd_ds_802_11_get_log logmsg;
390 u16 scanprobes;
391
392 u32 pkttxctrl;
393
394 u16 txrate;
395 u32 linkmode;
396 u32 radiomode;
397 u32 debugmode;
398 u8 fw_ready;
399};
400
401#endif /* _WLAN_DEV_H_ */