blob: d6c340aef681f5e93700af8f2858245d182c2d25 [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 {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020066 /** bssid */
67 u8 bssid[ETH_ALEN];
68 /** ssid */
Dan Williamsd8efea22007-05-28 23:54:55 -040069 u8 ssid[IW_ESSID_MAX_SIZE + 1];
70 u8 ssid_len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020071
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
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020092/* Mesh statistics */
93struct wlan_mesh_stats {
94 u32 fwd_bcast_cnt; /* Fwd: Broadcast counter */
95 u32 fwd_unicast_cnt; /* Fwd: Unicast counter */
96 u32 fwd_drop_ttl; /* Fwd: TTL zero */
97 u32 fwd_drop_rbt; /* Fwd: Recently Broadcasted */
98 u32 fwd_drop_noroute; /* Fwd: No route to Destination */
99 u32 fwd_drop_nobuf; /* Fwd: Run out of internal buffers */
100 u32 drop_blind; /* Rx: Dropped by blinding table */
Javier Cardona0601e7e2007-05-25 12:12:06 -0400101 u32 tx_failed_cnt; /* Tx: Failed transmissions */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200102};
103
104/** Private structure for the MV device */
105struct _wlan_private {
106 int open;
107 int mesh_open;
108 int infra_open;
109
Holger Schurig634b8f42007-05-25 13:05:16 -0400110 char name[DEV_NAME_LEN];
111
112 void *card;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200113 wlan_adapter *adapter;
Holger Schurig634b8f42007-05-25 13:05:16 -0400114 struct net_device *dev;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200115
116 struct net_device_stats stats;
117 struct net_device *mesh_dev ; /* Virtual device */
118
119 struct iw_statistics wstats;
120 struct wlan_mesh_stats mstats;
121 struct dentry *debugfs_dir;
122 struct dentry *debugfs_debug;
123 struct dentry *debugfs_files[6];
124
125 struct dentry *events_dir;
126 struct dentry *debugfs_events_files[6];
127
128 struct dentry *regs_dir;
129 struct dentry *debugfs_regs_files[6];
130
131 u32 mac_offset;
132 u32 bbp_offset;
133 u32 rf_offset;
134
Holger Schurig634b8f42007-05-25 13:05:16 -0400135 /** Upload length */
136 u32 upld_len;
137 /* Upload buffer */
138 u8 upld_buf[WLAN_UPLD_SIZE];
139 /* Download sent:
140 bit0 1/0=data_sent/data_tx_done,
141 bit1 1/0=cmd_sent/cmd_tx_done,
142 all other bits reserved 0 */
143 u8 dnld_sent;
144
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200145 const struct firmware *firmware;
146 struct device *hotplug_device;
147
148 /** thread to service interrupts */
149 struct wlan_thread mainthread;
150
151 struct delayed_work assoc_work;
152 struct workqueue_struct *assoc_thread;
Holger Schurig208fdd22007-05-25 12:17:06 -0400153
154 /** Hardware access */
155 int (*hw_register_dev) (wlan_private * priv);
156 int (*hw_unregister_dev) (wlan_private *);
157 int (*hw_prog_firmware) (wlan_private *);
158 int (*hw_host_to_card) (wlan_private * priv, u8 type, u8 * payload, u16 nb);
159 int (*hw_get_int_status) (wlan_private * priv, u8 *);
160 int (*hw_read_event_cause) (wlan_private *);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200161};
162
163/** Association request
164 *
165 * Encapsulates all the options that describe a specific assocation request
166 * or configuration of the wireless card's radio, mode, and security settings.
167 */
168struct assoc_request {
169#define ASSOC_FLAG_SSID 1
170#define ASSOC_FLAG_CHANNEL 2
Dan Williamse76850d2007-05-25 17:09:41 -0400171#define ASSOC_FLAG_BAND 3
172#define ASSOC_FLAG_MODE 4
173#define ASSOC_FLAG_BSSID 5
174#define ASSOC_FLAG_WEP_KEYS 6
175#define ASSOC_FLAG_WEP_TX_KEYIDX 7
176#define ASSOC_FLAG_WPA_MCAST_KEY 8
177#define ASSOC_FLAG_WPA_UCAST_KEY 9
178#define ASSOC_FLAG_SECINFO 10
179#define ASSOC_FLAG_WPA_IE 11
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200180 unsigned long flags;
181
Dan Williamsd8efea22007-05-28 23:54:55 -0400182 u8 ssid[IW_ESSID_MAX_SIZE + 1];
183 u8 ssid_len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200184 u8 channel;
Dan Williamse76850d2007-05-25 17:09:41 -0400185 u8 band;
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;
Dan Williamse76850d2007-05-25 17:09:41 -0400202
203 /* BSS to associate with for infrastructure of Ad-Hoc join */
204 struct bss_descriptor bss;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200205};
206
207/** Wlan adapter data structure*/
208struct _wlan_adapter {
209 /** STATUS variables */
David Woodhousee5b3d472007-05-25 23:40:21 -0400210 u8 fwreleasenumber[4];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200211 u32 fwcapinfo;
212 /* protected with big lock */
213
214 struct mutex lock;
215
216 u8 tmptxbuf[WLAN_UPLD_SIZE];
217 /* protected by hard_start_xmit serialization */
218
219 /** command-related variables */
220 u16 seqnum;
221 /* protected by big lock */
222
223 struct cmd_ctrl_node *cmd_array;
224 /** Current command */
225 struct cmd_ctrl_node *cur_cmd;
226 int cur_cmd_retcode;
227 /** command Queues */
228 /** Free command buffers */
229 struct list_head cmdfreeq;
230 /** Pending command buffers */
231 struct list_head cmdpendingq;
232
233 wait_queue_head_t cmd_pending;
234 u8 nr_cmd_pending;
235 /* command related variables protected by adapter->driver_lock */
236
237 /** Async and Sync Event variables */
238 u32 intcounter;
239 u32 eventcause;
240 u8 nodename[16]; /* nickname */
241
242 /** spin locks */
243 spinlock_t driver_lock;
244
245 /** Timers */
246 struct timer_list command_timer;
247
248 /* TX queue used in PS mode */
249 spinlock_t txqueue_lock;
250 struct sk_buff *tx_queue_ps[NR_TX_QUEUE];
251 unsigned int tx_queue_idx;
252
253 u8 hisregcpy;
254
255 /** current ssid/bssid related parameters*/
256 struct current_bss_params curbssparams;
257
Dan Williams0dc5a292007-05-10 22:58:02 -0400258 /* IW_MODE_* */
259 u8 mode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200260
Dan Williamsd8efea22007-05-28 23:54:55 -0400261 u8 prev_ssid[IW_ESSID_MAX_SIZE + 1];
262 u8 prev_ssid_len;
263 u8 prev_bssid[ETH_ALEN];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200264
Dan Williamsfcdb53d2007-05-25 16:15:56 -0400265 /* Scan results list */
266 struct list_head network_list;
267 struct list_head network_free_list;
268 struct bss_descriptor *networks;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200269
270 u8 scantype;
271 u32 scanmode;
272
273 u16 beaconperiod;
274 u8 adhoccreate;
275
276 /** capability Info used in Association, start, join */
277 struct ieeetypes_capinfo capinfo;
278
279 /** MAC address information */
280 u8 current_addr[ETH_ALEN];
281 u8 multicastlist[MRVDRV_MAX_MULTICAST_LIST_SIZE][ETH_ALEN];
282 u32 nr_of_multicastmacaddr;
283
284 /** 802.11 statistics */
285// struct cmd_DS_802_11_GET_STAT wlan802_11Stat;
286
287 u16 enablehwauto;
288 u16 ratebitmap;
289 /** control G rates */
290 u8 adhoc_grate_enabled;
291
292 u32 txantenna;
293 u32 rxantenna;
294
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200295 u32 fragthsd;
296 u32 rtsthsd;
297
298 u32 datarate;
299 u8 is_datarate_auto;
300
301 u16 listeninterval;
302 u16 prescan;
303 u8 txretrycount;
304
305 /** Tx-related variables (for single packet tx) */
306 struct sk_buff *currenttxskb;
307 u16 TxLockFlag;
308
309 /** NIC Operation characteristics */
310 u16 currentpacketfilter;
311 u32 connect_status;
312 u16 regioncode;
313 u16 regiontableindex;
314 u16 txpowerlevel;
315
316 /** POWER MANAGEMENT AND PnP SUPPORT */
317 u8 surpriseremoved;
318 u16 atimwindow;
319
320 u16 psmode; /* Wlan802_11PowermodeCAM=disable
321 Wlan802_11PowermodeMAX_PSP=enable */
322 u16 multipledtim;
323 u32 psstate;
324 u8 needtowakeup;
325
326 struct PS_CMD_ConfirmSleep libertas_ps_confirm_sleep;
327 u16 locallisteninterval;
328 u16 nullpktinterval;
329
Dan Williamse76850d2007-05-25 17:09:41 -0400330 struct assoc_request * pending_assoc_req;
331 struct assoc_request * in_progress_assoc_req;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200332
333 /** Encryption parameter */
334 struct wlan_802_11_security secinfo;
335
336 /** WEP keys */
337 struct WLAN_802_11_KEY wep_keys[4];
338 u16 wep_tx_keyidx;
339
340 /** WPA keys */
341 struct WLAN_802_11_KEY wpa_mcast_key;
342 struct WLAN_802_11_KEY wpa_unicast_key;
343
344 /** WPA Information Elements*/
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200345 u8 wpa_ie[MAX_WPA_IE_LEN];
346 u8 wpa_ie_len;
347
348 u16 rxantennamode;
349 u16 txantennamode;
350
351 /** Requested Signal Strength*/
352 u16 bcn_avg_factor;
353 u16 data_avg_factor;
354 u16 SNR[MAX_TYPE_B][MAX_TYPE_AVG];
355 u16 NF[MAX_TYPE_B][MAX_TYPE_AVG];
356 u8 RSSI[MAX_TYPE_B][MAX_TYPE_AVG];
357 u8 rawSNR[DEFAULT_DATA_AVG_FACTOR];
358 u8 rawNF[DEFAULT_DATA_AVG_FACTOR];
359 u16 nextSNRNF;
360 u16 numSNRNF;
361 u16 rxpd_rate;
362
363 u8 radioon;
364 u32 preamble;
365
366 /** Multi bands Parameter*/
367 u8 libertas_supported_rates[G_SUPPORTED_RATES];
368
369 /** Blue Tooth Co-existence Arbitration */
370
371 /** sleep_params */
372 struct sleep_params sp;
373
374 /** RF calibration data */
375
376#define MAX_REGION_CHANNEL_NUM 2
377 /** region channel data */
378 struct region_channel region_channel[MAX_REGION_CHANNEL_NUM];
379
380 struct region_channel universal_channel[MAX_REGION_CHANNEL_NUM];
381
382 /** 11D and Domain Regulatory Data */
383 struct wlan_802_11d_domain_reg domainreg;
384 struct parsed_region_chan_11d parsed_region_chan;
385
386 /** FSM variable for 11d support */
387 u32 enable11d;
388
389 /** MISCELLANEOUS */
390 u8 *prdeeprom;
391 struct wlan_offset_value offsetvalue;
392
393 struct cmd_ds_802_11_get_log logmsg;
394 u16 scanprobes;
395
396 u32 pkttxctrl;
397
398 u16 txrate;
399 u32 linkmode;
400 u32 radiomode;
401 u32 debugmode;
402 u8 fw_ready;
Marcelo Tosatti064827e2007-05-24 23:37:28 -0400403
404 u8 last_scanned_channel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200405};
406
407#endif /* _WLAN_DEV_H_ */