]> nv-tegra.nvidia Code Review - linux-3.10.git/blob - drivers/net/wireless/airo.c
[PATCH] kthread: airo.c
[linux-3.10.git] / drivers / net / wireless / airo.c
1 /*======================================================================
2
3     Aironet driver for 4500 and 4800 series cards
4
5     This code is released under both the GPL version 2 and BSD licenses.
6     Either license may be used.  The respective licenses are found at
7     the end of this file.
8
9     This code was developed by Benjamin Reed <breed@users.sourceforge.net>
10     including portions of which come from the Aironet PC4500
11     Developer's Reference Manual and used with permission.  Copyright
12     (C) 1999 Benjamin Reed.  All Rights Reserved.  Permission to use
13     code in the Developer's manual was granted for this driver by
14     Aironet.  Major code contributions were received from Javier Achirica
15     <achirica@users.sourceforge.net> and Jean Tourrilhes <jt@hpl.hp.com>.
16     Code was also integrated from the Cisco Aironet driver for Linux.
17     Support for MPI350 cards was added by Fabrice Bellet
18     <fabrice@bellet.info>.
19
20 ======================================================================*/
21
22 #include <linux/init.h>
23
24 #include <linux/kernel.h>
25 #include <linux/module.h>
26 #include <linux/proc_fs.h>
27 #include <linux/smp_lock.h>
28
29 #include <linux/sched.h>
30 #include <linux/ptrace.h>
31 #include <linux/slab.h>
32 #include <linux/string.h>
33 #include <linux/timer.h>
34 #include <linux/interrupt.h>
35 #include <linux/in.h>
36 #include <linux/bitops.h>
37 #include <linux/scatterlist.h>
38 #include <linux/crypto.h>
39 #include <asm/io.h>
40 #include <asm/system.h>
41
42 #include <linux/netdevice.h>
43 #include <linux/etherdevice.h>
44 #include <linux/skbuff.h>
45 #include <linux/if_arp.h>
46 #include <linux/ioport.h>
47 #include <linux/pci.h>
48 #include <asm/uaccess.h>
49 #include <net/ieee80211.h>
50 #include <linux/kthread.h>
51
52 #include "airo.h"
53
54 #ifdef CONFIG_PCI
55 static struct pci_device_id card_ids[] = {
56         { 0x14b9, 1, PCI_ANY_ID, PCI_ANY_ID, },
57         { 0x14b9, 0x4500, PCI_ANY_ID, PCI_ANY_ID },
58         { 0x14b9, 0x4800, PCI_ANY_ID, PCI_ANY_ID, },
59         { 0x14b9, 0x0340, PCI_ANY_ID, PCI_ANY_ID, },
60         { 0x14b9, 0x0350, PCI_ANY_ID, PCI_ANY_ID, },
61         { 0x14b9, 0x5000, PCI_ANY_ID, PCI_ANY_ID, },
62         { 0x14b9, 0xa504, PCI_ANY_ID, PCI_ANY_ID, },
63         { 0, }
64 };
65 MODULE_DEVICE_TABLE(pci, card_ids);
66
67 static int airo_pci_probe(struct pci_dev *, const struct pci_device_id *);
68 static void airo_pci_remove(struct pci_dev *);
69 static int airo_pci_suspend(struct pci_dev *pdev, pm_message_t state);
70 static int airo_pci_resume(struct pci_dev *pdev);
71
72 static struct pci_driver airo_driver = {
73         .name     = "airo",
74         .id_table = card_ids,
75         .probe    = airo_pci_probe,
76         .remove   = __devexit_p(airo_pci_remove),
77         .suspend  = airo_pci_suspend,
78         .resume   = airo_pci_resume,
79 };
80 #endif /* CONFIG_PCI */
81
82 /* Include Wireless Extension definition and check version - Jean II */
83 #include <linux/wireless.h>
84 #define WIRELESS_SPY            // enable iwspy support
85 #include <net/iw_handler.h>     // New driver API
86
87 #define CISCO_EXT               // enable Cisco extensions
88 #ifdef CISCO_EXT
89 #include <linux/delay.h>
90 #endif
91
92 /* Hack to do some power saving */
93 #define POWER_ON_DOWN
94
95 /* As you can see this list is HUGH!
96    I really don't know what a lot of these counts are about, but they
97    are all here for completeness.  If the IGNLABEL macro is put in
98    infront of the label, that statistic will not be included in the list
99    of statistics in the /proc filesystem */
100
101 #define IGNLABEL(comment) NULL
102 static char *statsLabels[] = {
103         "RxOverrun",
104         IGNLABEL("RxPlcpCrcErr"),
105         IGNLABEL("RxPlcpFormatErr"),
106         IGNLABEL("RxPlcpLengthErr"),
107         "RxMacCrcErr",
108         "RxMacCrcOk",
109         "RxWepErr",
110         "RxWepOk",
111         "RetryLong",
112         "RetryShort",
113         "MaxRetries",
114         "NoAck",
115         "NoCts",
116         "RxAck",
117         "RxCts",
118         "TxAck",
119         "TxRts",
120         "TxCts",
121         "TxMc",
122         "TxBc",
123         "TxUcFrags",
124         "TxUcPackets",
125         "TxBeacon",
126         "RxBeacon",
127         "TxSinColl",
128         "TxMulColl",
129         "DefersNo",
130         "DefersProt",
131         "DefersEngy",
132         "DupFram",
133         "RxFragDisc",
134         "TxAged",
135         "RxAged",
136         "LostSync-MaxRetry",
137         "LostSync-MissedBeacons",
138         "LostSync-ArlExceeded",
139         "LostSync-Deauth",
140         "LostSync-Disassoced",
141         "LostSync-TsfTiming",
142         "HostTxMc",
143         "HostTxBc",
144         "HostTxUc",
145         "HostTxFail",
146         "HostRxMc",
147         "HostRxBc",
148         "HostRxUc",
149         "HostRxDiscard",
150         IGNLABEL("HmacTxMc"),
151         IGNLABEL("HmacTxBc"),
152         IGNLABEL("HmacTxUc"),
153         IGNLABEL("HmacTxFail"),
154         IGNLABEL("HmacRxMc"),
155         IGNLABEL("HmacRxBc"),
156         IGNLABEL("HmacRxUc"),
157         IGNLABEL("HmacRxDiscard"),
158         IGNLABEL("HmacRxAccepted"),
159         "SsidMismatch",
160         "ApMismatch",
161         "RatesMismatch",
162         "AuthReject",
163         "AuthTimeout",
164         "AssocReject",
165         "AssocTimeout",
166         IGNLABEL("ReasonOutsideTable"),
167         IGNLABEL("ReasonStatus1"),
168         IGNLABEL("ReasonStatus2"),
169         IGNLABEL("ReasonStatus3"),
170         IGNLABEL("ReasonStatus4"),
171         IGNLABEL("ReasonStatus5"),
172         IGNLABEL("ReasonStatus6"),
173         IGNLABEL("ReasonStatus7"),
174         IGNLABEL("ReasonStatus8"),
175         IGNLABEL("ReasonStatus9"),
176         IGNLABEL("ReasonStatus10"),
177         IGNLABEL("ReasonStatus11"),
178         IGNLABEL("ReasonStatus12"),
179         IGNLABEL("ReasonStatus13"),
180         IGNLABEL("ReasonStatus14"),
181         IGNLABEL("ReasonStatus15"),
182         IGNLABEL("ReasonStatus16"),
183         IGNLABEL("ReasonStatus17"),
184         IGNLABEL("ReasonStatus18"),
185         IGNLABEL("ReasonStatus19"),
186         "RxMan",
187         "TxMan",
188         "RxRefresh",
189         "TxRefresh",
190         "RxPoll",
191         "TxPoll",
192         "HostRetries",
193         "LostSync-HostReq",
194         "HostTxBytes",
195         "HostRxBytes",
196         "ElapsedUsec",
197         "ElapsedSec",
198         "LostSyncBetterAP",
199         "PrivacyMismatch",
200         "Jammed",
201         "DiscRxNotWepped",
202         "PhyEleMismatch",
203         (char*)-1 };
204 #ifndef RUN_AT
205 #define RUN_AT(x) (jiffies+(x))
206 #endif
207
208
209 /* These variables are for insmod, since it seems that the rates
210    can only be set in setup_card.  Rates should be a comma separated
211    (no spaces) list of rates (up to 8). */
212
213 static int rates[8];
214 static int basic_rate;
215 static char *ssids[3];
216
217 static int io[4];
218 static int irq[4];
219
220 static
221 int maxencrypt /* = 0 */; /* The highest rate that the card can encrypt at.
222                        0 means no limit.  For old cards this was 4 */
223
224 static int auto_wep /* = 0 */; /* If set, it tries to figure out the wep mode */
225 static int aux_bap /* = 0 */; /* Checks to see if the aux ports are needed to read
226                     the bap, needed on some older cards and buses. */
227 static int adhoc;
228
229 static int probe = 1;
230
231 static int proc_uid /* = 0 */;
232
233 static int proc_gid /* = 0 */;
234
235 static int airo_perm = 0555;
236
237 static int proc_perm = 0644;
238
239 MODULE_AUTHOR("Benjamin Reed");
240 MODULE_DESCRIPTION("Support for Cisco/Aironet 802.11 wireless ethernet \
241                    cards.  Direct support for ISA/PCI/MPI cards and support \
242                    for PCMCIA when used with airo_cs.");
243 MODULE_LICENSE("Dual BSD/GPL");
244 MODULE_SUPPORTED_DEVICE("Aironet 4500, 4800 and Cisco 340/350");
245 module_param_array(io, int, NULL, 0);
246 module_param_array(irq, int, NULL, 0);
247 module_param(basic_rate, int, 0);
248 module_param_array(rates, int, NULL, 0);
249 module_param_array(ssids, charp, NULL, 0);
250 module_param(auto_wep, int, 0);
251 MODULE_PARM_DESC(auto_wep, "If non-zero, the driver will keep looping through \
252 the authentication options until an association is made.  The value of \
253 auto_wep is number of the wep keys to check.  A value of 2 will try using \
254 the key at index 0 and index 1.");
255 module_param(aux_bap, int, 0);
256 MODULE_PARM_DESC(aux_bap, "If non-zero, the driver will switch into a mode \
257 than seems to work better for older cards with some older buses.  Before \
258 switching it checks that the switch is needed.");
259 module_param(maxencrypt, int, 0);
260 MODULE_PARM_DESC(maxencrypt, "The maximum speed that the card can do \
261 encryption.  Units are in 512kbs.  Zero (default) means there is no limit. \
262 Older cards used to be limited to 2mbs (4).");
263 module_param(adhoc, int, 0);
264 MODULE_PARM_DESC(adhoc, "If non-zero, the card will start in adhoc mode.");
265 module_param(probe, int, 0);
266 MODULE_PARM_DESC(probe, "If zero, the driver won't start the card.");
267
268 module_param(proc_uid, int, 0);
269 MODULE_PARM_DESC(proc_uid, "The uid that the /proc files will belong to.");
270 module_param(proc_gid, int, 0);
271 MODULE_PARM_DESC(proc_gid, "The gid that the /proc files will belong to.");
272 module_param(airo_perm, int, 0);
273 MODULE_PARM_DESC(airo_perm, "The permission bits of /proc/[driver/]aironet.");
274 module_param(proc_perm, int, 0);
275 MODULE_PARM_DESC(proc_perm, "The permission bits of the files in /proc");
276
277 /* This is a kind of sloppy hack to get this information to OUT4500 and
278    IN4500.  I would be extremely interested in the situation where this
279    doesn't work though!!! */
280 static int do8bitIO = 0;
281
282 /* Return codes */
283 #define SUCCESS 0
284 #define ERROR -1
285 #define NO_PACKET -2
286
287 /* Commands */
288 #define NOP2            0x0000
289 #define MAC_ENABLE      0x0001
290 #define MAC_DISABLE     0x0002
291 #define CMD_LOSE_SYNC   0x0003 /* Not sure what this does... */
292 #define CMD_SOFTRESET   0x0004
293 #define HOSTSLEEP       0x0005
294 #define CMD_MAGIC_PKT   0x0006
295 #define CMD_SETWAKEMASK 0x0007
296 #define CMD_READCFG     0x0008
297 #define CMD_SETMODE     0x0009
298 #define CMD_ALLOCATETX  0x000a
299 #define CMD_TRANSMIT    0x000b
300 #define CMD_DEALLOCATETX 0x000c
301 #define NOP             0x0010
302 #define CMD_WORKAROUND  0x0011
303 #define CMD_ALLOCATEAUX 0x0020
304 #define CMD_ACCESS      0x0021
305 #define CMD_PCIBAP      0x0022
306 #define CMD_PCIAUX      0x0023
307 #define CMD_ALLOCBUF    0x0028
308 #define CMD_GETTLV      0x0029
309 #define CMD_PUTTLV      0x002a
310 #define CMD_DELTLV      0x002b
311 #define CMD_FINDNEXTTLV 0x002c
312 #define CMD_PSPNODES    0x0030
313 #define CMD_SETCW       0x0031    
314 #define CMD_SETPCF      0x0032    
315 #define CMD_SETPHYREG   0x003e
316 #define CMD_TXTEST      0x003f
317 #define MAC_ENABLETX    0x0101
318 #define CMD_LISTBSS     0x0103
319 #define CMD_SAVECFG     0x0108
320 #define CMD_ENABLEAUX   0x0111
321 #define CMD_WRITERID    0x0121
322 #define CMD_USEPSPNODES 0x0130
323 #define MAC_ENABLERX    0x0201
324
325 /* Command errors */
326 #define ERROR_QUALIF 0x00
327 #define ERROR_ILLCMD 0x01
328 #define ERROR_ILLFMT 0x02
329 #define ERROR_INVFID 0x03
330 #define ERROR_INVRID 0x04
331 #define ERROR_LARGE 0x05
332 #define ERROR_NDISABL 0x06
333 #define ERROR_ALLOCBSY 0x07
334 #define ERROR_NORD 0x0B
335 #define ERROR_NOWR 0x0C
336 #define ERROR_INVFIDTX 0x0D
337 #define ERROR_TESTACT 0x0E
338 #define ERROR_TAGNFND 0x12
339 #define ERROR_DECODE 0x20
340 #define ERROR_DESCUNAV 0x21
341 #define ERROR_BADLEN 0x22
342 #define ERROR_MODE 0x80
343 #define ERROR_HOP 0x81
344 #define ERROR_BINTER 0x82
345 #define ERROR_RXMODE 0x83
346 #define ERROR_MACADDR 0x84
347 #define ERROR_RATES 0x85
348 #define ERROR_ORDER 0x86
349 #define ERROR_SCAN 0x87
350 #define ERROR_AUTH 0x88
351 #define ERROR_PSMODE 0x89
352 #define ERROR_RTYPE 0x8A
353 #define ERROR_DIVER 0x8B
354 #define ERROR_SSID 0x8C
355 #define ERROR_APLIST 0x8D
356 #define ERROR_AUTOWAKE 0x8E
357 #define ERROR_LEAP 0x8F
358
359 /* Registers */
360 #define COMMAND 0x00
361 #define PARAM0 0x02
362 #define PARAM1 0x04
363 #define PARAM2 0x06
364 #define STATUS 0x08
365 #define RESP0 0x0a
366 #define RESP1 0x0c
367 #define RESP2 0x0e
368 #define LINKSTAT 0x10
369 #define SELECT0 0x18
370 #define OFFSET0 0x1c
371 #define RXFID 0x20
372 #define TXALLOCFID 0x22
373 #define TXCOMPLFID 0x24
374 #define DATA0 0x36
375 #define EVSTAT 0x30
376 #define EVINTEN 0x32
377 #define EVACK 0x34
378 #define SWS0 0x28
379 #define SWS1 0x2a
380 #define SWS2 0x2c
381 #define SWS3 0x2e
382 #define AUXPAGE 0x3A
383 #define AUXOFF 0x3C
384 #define AUXDATA 0x3E
385
386 #define FID_TX 1
387 #define FID_RX 2
388 /* Offset into aux memory for descriptors */
389 #define AUX_OFFSET 0x800
390 /* Size of allocated packets */
391 #define PKTSIZE 1840
392 #define RIDSIZE 2048
393 /* Size of the transmit queue */
394 #define MAXTXQ 64
395
396 /* BAP selectors */
397 #define BAP0 0 // Used for receiving packets
398 #define BAP1 2 // Used for xmiting packets and working with RIDS
399
400 /* Flags */
401 #define COMMAND_BUSY 0x8000
402
403 #define BAP_BUSY 0x8000
404 #define BAP_ERR 0x4000
405 #define BAP_DONE 0x2000
406
407 #define PROMISC 0xffff
408 #define NOPROMISC 0x0000
409
410 #define EV_CMD 0x10
411 #define EV_CLEARCOMMANDBUSY 0x4000
412 #define EV_RX 0x01
413 #define EV_TX 0x02
414 #define EV_TXEXC 0x04
415 #define EV_ALLOC 0x08
416 #define EV_LINK 0x80
417 #define EV_AWAKE 0x100
418 #define EV_TXCPY 0x400
419 #define EV_UNKNOWN 0x800
420 #define EV_MIC 0x1000 /* Message Integrity Check Interrupt */
421 #define EV_AWAKEN 0x2000
422 #define STATUS_INTS (EV_AWAKE|EV_LINK|EV_TXEXC|EV_TX|EV_TXCPY|EV_RX|EV_MIC)
423
424 #ifdef CHECK_UNKNOWN_INTS
425 #define IGNORE_INTS ( EV_CMD | EV_UNKNOWN)
426 #else
427 #define IGNORE_INTS (~STATUS_INTS)
428 #endif
429
430 /* RID TYPES */
431 #define RID_RW 0x20
432
433 /* The RIDs */
434 #define RID_CAPABILITIES 0xFF00
435 #define RID_APINFO     0xFF01
436 #define RID_RADIOINFO  0xFF02
437 #define RID_UNKNOWN3   0xFF03
438 #define RID_RSSI       0xFF04
439 #define RID_CONFIG     0xFF10
440 #define RID_SSID       0xFF11
441 #define RID_APLIST     0xFF12
442 #define RID_DRVNAME    0xFF13
443 #define RID_ETHERENCAP 0xFF14
444 #define RID_WEP_TEMP   0xFF15
445 #define RID_WEP_PERM   0xFF16
446 #define RID_MODULATION 0xFF17
447 #define RID_OPTIONS    0xFF18
448 #define RID_ACTUALCONFIG 0xFF20 /*readonly*/
449 #define RID_FACTORYCONFIG 0xFF21
450 #define RID_UNKNOWN22  0xFF22
451 #define RID_LEAPUSERNAME 0xFF23
452 #define RID_LEAPPASSWORD 0xFF24
453 #define RID_STATUS     0xFF50
454 #define RID_BEACON_HST 0xFF51
455 #define RID_BUSY_HST   0xFF52
456 #define RID_RETRIES_HST 0xFF53
457 #define RID_UNKNOWN54  0xFF54
458 #define RID_UNKNOWN55  0xFF55
459 #define RID_UNKNOWN56  0xFF56
460 #define RID_MIC        0xFF57
461 #define RID_STATS16    0xFF60
462 #define RID_STATS16DELTA 0xFF61
463 #define RID_STATS16DELTACLEAR 0xFF62
464 #define RID_STATS      0xFF68
465 #define RID_STATSDELTA 0xFF69
466 #define RID_STATSDELTACLEAR 0xFF6A
467 #define RID_ECHOTEST_RID 0xFF70
468 #define RID_ECHOTEST_RESULTS 0xFF71
469 #define RID_BSSLISTFIRST 0xFF72
470 #define RID_BSSLISTNEXT  0xFF73
471 #define RID_WPA_BSSLISTFIRST 0xFF74
472 #define RID_WPA_BSSLISTNEXT  0xFF75
473
474 typedef struct {
475         u16 cmd;
476         u16 parm0;
477         u16 parm1;
478         u16 parm2;
479 } Cmd;
480
481 typedef struct {
482         u16 status;
483         u16 rsp0;
484         u16 rsp1;
485         u16 rsp2;
486 } Resp;
487
488 /*
489  * Rids and endian-ness:  The Rids will always be in cpu endian, since
490  * this all the patches from the big-endian guys end up doing that.
491  * so all rid access should use the read/writeXXXRid routines.
492  */
493
494 /* This is redundant for x86 archs, but it seems necessary for ARM */
495 #pragma pack(1)
496
497 /* This structure came from an email sent to me from an engineer at
498    aironet for inclusion into this driver */
499 typedef struct {
500         u16 len;
501         u16 kindex;
502         u8 mac[ETH_ALEN];
503         u16 klen;
504         u8 key[16];
505 } WepKeyRid;
506
507 /* These structures are from the Aironet's PC4500 Developers Manual */
508 typedef struct {
509         u16 len;
510         u8 ssid[32];
511 } Ssid;
512
513 typedef struct {
514         u16 len;
515         Ssid ssids[3];
516 } SsidRid;
517
518 typedef struct {
519         u16 len;
520         u16 modulation;
521 #define MOD_DEFAULT 0
522 #define MOD_CCK 1
523 #define MOD_MOK 2
524 } ModulationRid;
525
526 typedef struct {
527         u16 len; /* sizeof(ConfigRid) */
528         u16 opmode; /* operating mode */
529 #define MODE_STA_IBSS 0
530 #define MODE_STA_ESS 1
531 #define MODE_AP 2
532 #define MODE_AP_RPTR 3
533 #define MODE_ETHERNET_HOST (0<<8) /* rx payloads converted */
534 #define MODE_LLC_HOST (1<<8) /* rx payloads left as is */
535 #define MODE_AIRONET_EXTEND (1<<9) /* enable Aironet extenstions */
536 #define MODE_AP_INTERFACE (1<<10) /* enable ap interface extensions */
537 #define MODE_ANTENNA_ALIGN (1<<11) /* enable antenna alignment */
538 #define MODE_ETHER_LLC (1<<12) /* enable ethernet LLC */
539 #define MODE_LEAF_NODE (1<<13) /* enable leaf node bridge */
540 #define MODE_CF_POLLABLE (1<<14) /* enable CF pollable */
541 #define MODE_MIC (1<<15) /* enable MIC */
542         u16 rmode; /* receive mode */
543 #define RXMODE_BC_MC_ADDR 0
544 #define RXMODE_BC_ADDR 1 /* ignore multicasts */
545 #define RXMODE_ADDR 2 /* ignore multicast and broadcast */
546 #define RXMODE_RFMON 3 /* wireless monitor mode */
547 #define RXMODE_RFMON_ANYBSS 4
548 #define RXMODE_LANMON 5 /* lan style monitor -- data packets only */
549 #define RXMODE_DISABLE_802_3_HEADER (1<<8) /* disables 802.3 header on rx */
550 #define RXMODE_NORMALIZED_RSSI (1<<9) /* return normalized RSSI */
551         u16 fragThresh;
552         u16 rtsThres;
553         u8 macAddr[ETH_ALEN];
554         u8 rates[8];
555         u16 shortRetryLimit;
556         u16 longRetryLimit;
557         u16 txLifetime; /* in kusec */
558         u16 rxLifetime; /* in kusec */
559         u16 stationary;
560         u16 ordering;
561         u16 u16deviceType; /* for overriding device type */
562         u16 cfpRate;
563         u16 cfpDuration;
564         u16 _reserved1[3];
565         /*---------- Scanning/Associating ----------*/
566         u16 scanMode;
567 #define SCANMODE_ACTIVE 0
568 #define SCANMODE_PASSIVE 1
569 #define SCANMODE_AIROSCAN 2
570         u16 probeDelay; /* in kusec */
571         u16 probeEnergyTimeout; /* in kusec */
572         u16 probeResponseTimeout;
573         u16 beaconListenTimeout;
574         u16 joinNetTimeout;
575         u16 authTimeout;
576         u16 authType;
577 #define AUTH_OPEN 0x1
578 #define AUTH_ENCRYPT 0x101
579 #define AUTH_SHAREDKEY 0x102
580 #define AUTH_ALLOW_UNENCRYPTED 0x200
581         u16 associationTimeout;
582         u16 specifiedApTimeout;
583         u16 offlineScanInterval;
584         u16 offlineScanDuration;
585         u16 linkLossDelay;
586         u16 maxBeaconLostTime;
587         u16 refreshInterval;
588 #define DISABLE_REFRESH 0xFFFF
589         u16 _reserved1a[1];
590         /*---------- Power save operation ----------*/
591         u16 powerSaveMode;
592 #define POWERSAVE_CAM 0
593 #define POWERSAVE_PSP 1
594 #define POWERSAVE_PSPCAM 2
595         u16 sleepForDtims;
596         u16 listenInterval;
597         u16 fastListenInterval;
598         u16 listenDecay;
599         u16 fastListenDelay;
600         u16 _reserved2[2];
601         /*---------- Ap/Ibss config items ----------*/
602         u16 beaconPeriod;
603         u16 atimDuration;
604         u16 hopPeriod;
605         u16 channelSet;
606         u16 channel;
607         u16 dtimPeriod;
608         u16 bridgeDistance;
609         u16 radioID;
610         /*---------- Radio configuration ----------*/
611         u16 radioType;
612 #define RADIOTYPE_DEFAULT 0
613 #define RADIOTYPE_802_11 1
614 #define RADIOTYPE_LEGACY 2
615         u8 rxDiversity;
616         u8 txDiversity;
617         u16 txPower;
618 #define TXPOWER_DEFAULT 0
619         u16 rssiThreshold;
620 #define RSSI_DEFAULT 0
621         u16 modulation;
622 #define PREAMBLE_AUTO 0
623 #define PREAMBLE_LONG 1
624 #define PREAMBLE_SHORT 2
625         u16 preamble;
626         u16 homeProduct;
627         u16 radioSpecific;
628         /*---------- Aironet Extensions ----------*/
629         u8 nodeName[16];
630         u16 arlThreshold;
631         u16 arlDecay;
632         u16 arlDelay;
633         u16 _reserved4[1];
634         /*---------- Aironet Extensions ----------*/
635         u8 magicAction;
636 #define MAGIC_ACTION_STSCHG 1
637 #define MAGIC_ACTION_RESUME 2
638 #define MAGIC_IGNORE_MCAST (1<<8)
639 #define MAGIC_IGNORE_BCAST (1<<9)
640 #define MAGIC_SWITCH_TO_PSP (0<<10)
641 #define MAGIC_STAY_IN_CAM (1<<10)
642         u8 magicControl;
643         u16 autoWake;
644 } ConfigRid;
645
646 typedef struct {
647         u16 len;
648         u8 mac[ETH_ALEN];
649         u16 mode;
650         u16 errorCode;
651         u16 sigQuality;
652         u16 SSIDlen;
653         char SSID[32];
654         char apName[16];
655         u8 bssid[4][ETH_ALEN];
656         u16 beaconPeriod;
657         u16 dimPeriod;
658         u16 atimDuration;
659         u16 hopPeriod;
660         u16 channelSet;
661         u16 channel;
662         u16 hopsToBackbone;
663         u16 apTotalLoad;
664         u16 generatedLoad;
665         u16 accumulatedArl;
666         u16 signalQuality;
667         u16 currentXmitRate;
668         u16 apDevExtensions;
669         u16 normalizedSignalStrength;
670         u16 shortPreamble;
671         u8 apIP[4];
672         u8 noisePercent; /* Noise percent in last second */
673         u8 noisedBm; /* Noise dBm in last second */
674         u8 noiseAvePercent; /* Noise percent in last minute */
675         u8 noiseAvedBm; /* Noise dBm in last minute */
676         u8 noiseMaxPercent; /* Highest noise percent in last minute */
677         u8 noiseMaxdBm; /* Highest noise dbm in last minute */
678         u16 load;
679         u8 carrier[4];
680         u16 assocStatus;
681 #define STAT_NOPACKETS 0
682 #define STAT_NOCARRIERSET 10
683 #define STAT_GOTCARRIERSET 11
684 #define STAT_WRONGSSID 20
685 #define STAT_BADCHANNEL 25
686 #define STAT_BADBITRATES 30
687 #define STAT_BADPRIVACY 35
688 #define STAT_APFOUND 40
689 #define STAT_APREJECTED 50
690 #define STAT_AUTHENTICATING 60
691 #define STAT_DEAUTHENTICATED 61
692 #define STAT_AUTHTIMEOUT 62
693 #define STAT_ASSOCIATING 70
694 #define STAT_DEASSOCIATED 71
695 #define STAT_ASSOCTIMEOUT 72
696 #define STAT_NOTAIROAP 73
697 #define STAT_ASSOCIATED 80
698 #define STAT_LEAPING 90
699 #define STAT_LEAPFAILED 91
700 #define STAT_LEAPTIMEDOUT 92
701 #define STAT_LEAPCOMPLETE 93
702 } StatusRid;
703
704 typedef struct {
705         u16 len;
706         u16 spacer;
707         u32 vals[100];
708 } StatsRid;
709
710
711 typedef struct {
712         u16 len;
713         u8 ap[4][ETH_ALEN];
714 } APListRid;
715
716 typedef struct {
717         u16 len;
718         char oui[3];
719         char zero;
720         u16 prodNum;
721         char manName[32];
722         char prodName[16];
723         char prodVer[8];
724         char factoryAddr[ETH_ALEN];
725         char aironetAddr[ETH_ALEN];
726         u16 radioType;
727         u16 country;
728         char callid[ETH_ALEN];
729         char supportedRates[8];
730         char rxDiversity;
731         char txDiversity;
732         u16 txPowerLevels[8];
733         u16 hardVer;
734         u16 hardCap;
735         u16 tempRange;
736         u16 softVer;
737         u16 softSubVer;
738         u16 interfaceVer;
739         u16 softCap;
740         u16 bootBlockVer;
741         u16 requiredHard;
742         u16 extSoftCap;
743 } CapabilityRid;
744
745
746 /* Only present on firmware >= 5.30.17 */
747 typedef struct {
748   u16 unknown[4];
749   u8 fixed[12]; /* WLAN management frame */
750   u8 iep[624];
751 } BSSListRidExtra;
752
753 typedef struct {
754   u16 len;
755   u16 index; /* First is 0 and 0xffff means end of list */
756 #define RADIO_FH 1 /* Frequency hopping radio type */
757 #define RADIO_DS 2 /* Direct sequence radio type */
758 #define RADIO_TMA 4 /* Proprietary radio used in old cards (2500) */
759   u16 radioType;
760   u8 bssid[ETH_ALEN]; /* Mac address of the BSS */
761   u8 zero;
762   u8 ssidLen;
763   u8 ssid[32];
764   u16 dBm;
765 #define CAP_ESS (1<<0)
766 #define CAP_IBSS (1<<1)
767 #define CAP_PRIVACY (1<<4)
768 #define CAP_SHORTHDR (1<<5)
769   u16 cap;
770   u16 beaconInterval;
771   u8 rates[8]; /* Same as rates for config rid */
772   struct { /* For frequency hopping only */
773     u16 dwell;
774     u8 hopSet;
775     u8 hopPattern;
776     u8 hopIndex;
777     u8 fill;
778   } fh;
779   u16 dsChannel;
780   u16 atimWindow;
781
782   /* Only present on firmware >= 5.30.17 */
783   BSSListRidExtra extra;
784 } BSSListRid;
785
786 typedef struct {
787   BSSListRid bss;
788   struct list_head list;
789 } BSSListElement;
790
791 typedef struct {
792   u8 rssipct;
793   u8 rssidBm;
794 } tdsRssiEntry;
795
796 typedef struct {
797   u16 len;
798   tdsRssiEntry x[256];
799 } tdsRssiRid;
800
801 typedef struct {
802         u16 len;
803         u16 state;
804         u16 multicastValid;
805         u8  multicast[16];
806         u16 unicastValid;
807         u8  unicast[16];
808 } MICRid;
809
810 typedef struct {
811         u16 typelen;
812
813         union {
814             u8 snap[8];
815             struct {
816                 u8 dsap;
817                 u8 ssap;
818                 u8 control;
819                 u8 orgcode[3];
820                 u8 fieldtype[2];
821             } llc;
822         } u;
823         u32 mic;
824         u32 seq;
825 } MICBuffer;
826
827 typedef struct {
828         u8 da[ETH_ALEN];
829         u8 sa[ETH_ALEN];
830 } etherHead;
831
832 #pragma pack()
833
834 #define TXCTL_TXOK (1<<1) /* report if tx is ok */
835 #define TXCTL_TXEX (1<<2) /* report if tx fails */
836 #define TXCTL_802_3 (0<<3) /* 802.3 packet */
837 #define TXCTL_802_11 (1<<3) /* 802.11 mac packet */
838 #define TXCTL_ETHERNET (0<<4) /* payload has ethertype */
839 #define TXCTL_LLC (1<<4) /* payload is llc */
840 #define TXCTL_RELEASE (0<<5) /* release after completion */
841 #define TXCTL_NORELEASE (1<<5) /* on completion returns to host */
842
843 #define BUSY_FID 0x10000
844
845 #ifdef CISCO_EXT
846 #define AIROMAGIC       0xa55a
847 /* Warning : SIOCDEVPRIVATE may disapear during 2.5.X - Jean II */
848 #ifdef SIOCIWFIRSTPRIV
849 #ifdef SIOCDEVPRIVATE
850 #define AIROOLDIOCTL    SIOCDEVPRIVATE
851 #define AIROOLDIDIFC    AIROOLDIOCTL + 1
852 #endif /* SIOCDEVPRIVATE */
853 #else /* SIOCIWFIRSTPRIV */
854 #define SIOCIWFIRSTPRIV SIOCDEVPRIVATE
855 #endif /* SIOCIWFIRSTPRIV */
856 /* This may be wrong. When using the new SIOCIWFIRSTPRIV range, we probably
857  * should use only "GET" ioctls (last bit set to 1). "SET" ioctls are root
858  * only and don't return the modified struct ifreq to the application which
859  * is usually a problem. - Jean II */
860 #define AIROIOCTL       SIOCIWFIRSTPRIV
861 #define AIROIDIFC       AIROIOCTL + 1
862
863 /* Ioctl constants to be used in airo_ioctl.command */
864
865 #define AIROGCAP                0       // Capability rid
866 #define AIROGCFG                1       // USED A LOT
867 #define AIROGSLIST              2       // System ID list
868 #define AIROGVLIST              3       // List of specified AP's
869 #define AIROGDRVNAM             4       //  NOTUSED
870 #define AIROGEHTENC             5       // NOTUSED
871 #define AIROGWEPKTMP            6
872 #define AIROGWEPKNV             7
873 #define AIROGSTAT               8
874 #define AIROGSTATSC32           9
875 #define AIROGSTATSD32           10
876 #define AIROGMICRID             11
877 #define AIROGMICSTATS           12
878 #define AIROGFLAGS              13
879 #define AIROGID                 14
880 #define AIRORRID                15
881 #define AIRORSWVERSION          17
882
883 /* Leave gap of 40 commands after AIROGSTATSD32 for future */
884
885 #define AIROPCAP                AIROGSTATSD32 + 40
886 #define AIROPVLIST              AIROPCAP      + 1
887 #define AIROPSLIST              AIROPVLIST    + 1
888 #define AIROPCFG                AIROPSLIST    + 1
889 #define AIROPSIDS               AIROPCFG      + 1
890 #define AIROPAPLIST             AIROPSIDS     + 1
891 #define AIROPMACON              AIROPAPLIST   + 1       /* Enable mac  */
892 #define AIROPMACOFF             AIROPMACON    + 1       /* Disable mac */
893 #define AIROPSTCLR              AIROPMACOFF   + 1
894 #define AIROPWEPKEY             AIROPSTCLR    + 1
895 #define AIROPWEPKEYNV           AIROPWEPKEY   + 1
896 #define AIROPLEAPPWD            AIROPWEPKEYNV + 1
897 #define AIROPLEAPUSR            AIROPLEAPPWD  + 1
898
899 /* Flash codes */
900
901 #define AIROFLSHRST            AIROPWEPKEYNV  + 40
902 #define AIROFLSHGCHR           AIROFLSHRST    + 1
903 #define AIROFLSHSTFL           AIROFLSHGCHR   + 1
904 #define AIROFLSHPCHR           AIROFLSHSTFL   + 1
905 #define AIROFLPUTBUF           AIROFLSHPCHR   + 1
906 #define AIRORESTART            AIROFLPUTBUF   + 1
907
908 #define FLASHSIZE       32768
909 #define AUXMEMSIZE      (256 * 1024)
910
911 typedef struct aironet_ioctl {
912         unsigned short command;         // What to do
913         unsigned short len;             // Len of data
914         unsigned short ridnum;          // rid number
915         unsigned char __user *data;     // d-data
916 } aironet_ioctl;
917
918 static char swversion[] = "2.1";
919 #endif /* CISCO_EXT */
920
921 #define NUM_MODULES       2
922 #define MIC_MSGLEN_MAX    2400
923 #define EMMH32_MSGLEN_MAX MIC_MSGLEN_MAX
924 #define AIRO_DEF_MTU      2312
925
926 typedef struct {
927         u32   size;            // size
928         u8    enabled;         // MIC enabled or not
929         u32   rxSuccess;       // successful packets received
930         u32   rxIncorrectMIC;  // pkts dropped due to incorrect MIC comparison
931         u32   rxNotMICed;      // pkts dropped due to not being MIC'd
932         u32   rxMICPlummed;    // pkts dropped due to not having a MIC plummed
933         u32   rxWrongSequence; // pkts dropped due to sequence number violation
934         u32   reserve[32];
935 } mic_statistics;
936
937 typedef struct {
938         u32 coeff[((EMMH32_MSGLEN_MAX)+3)>>2];
939         u64 accum;      // accumulated mic, reduced to u32 in final()
940         int position;   // current position (byte offset) in message
941         union {
942                 u8  d8[4];
943                 u32 d32;
944         } part; // saves partial message word across update() calls
945 } emmh32_context;
946
947 typedef struct {
948         emmh32_context seed;        // Context - the seed
949         u32              rx;        // Received sequence number
950         u32              tx;        // Tx sequence number
951         u32              window;    // Start of window
952         u8               valid;     // Flag to say if context is valid or not
953         u8               key[16];
954 } miccntx;
955
956 typedef struct {
957         miccntx mCtx;           // Multicast context
958         miccntx uCtx;           // Unicast context
959 } mic_module;
960
961 typedef struct {
962         unsigned int  rid: 16;
963         unsigned int  len: 15;
964         unsigned int  valid: 1;
965         dma_addr_t host_addr;
966 } Rid;
967
968 typedef struct {
969         unsigned int  offset: 15;
970         unsigned int  eoc: 1;
971         unsigned int  len: 15;
972         unsigned int  valid: 1;
973         dma_addr_t host_addr;
974 } TxFid;
975
976 typedef struct {
977         unsigned int  ctl: 15;
978         unsigned int  rdy: 1;
979         unsigned int  len: 15;
980         unsigned int  valid: 1;
981         dma_addr_t host_addr;
982 } RxFid;
983
984 /*
985  * Host receive descriptor
986  */
987 typedef struct {
988         unsigned char __iomem *card_ram_off; /* offset into card memory of the
989                                                 desc */
990         RxFid         rx_desc;               /* card receive descriptor */
991         char          *virtual_host_addr;    /* virtual address of host receive
992                                                 buffer */
993         int           pending;
994 } HostRxDesc;
995
996 /*
997  * Host transmit descriptor
998  */
999 typedef struct {
1000         unsigned char __iomem *card_ram_off;         /* offset into card memory of the
1001                                                 desc */
1002         TxFid         tx_desc;               /* card transmit descriptor */
1003         char          *virtual_host_addr;    /* virtual address of host receive
1004                                                 buffer */
1005         int           pending;
1006 } HostTxDesc;
1007
1008 /*
1009  * Host RID descriptor
1010  */
1011 typedef struct {
1012         unsigned char __iomem *card_ram_off;      /* offset into card memory of the
1013                                              descriptor */
1014         Rid           rid_desc;           /* card RID descriptor */
1015         char          *virtual_host_addr; /* virtual address of host receive
1016                                              buffer */
1017 } HostRidDesc;
1018
1019 typedef struct {
1020         u16 sw0;
1021         u16 sw1;
1022         u16 status;
1023         u16 len;
1024 #define HOST_SET (1 << 0)
1025 #define HOST_INT_TX (1 << 1) /* Interrupt on successful TX */
1026 #define HOST_INT_TXERR (1 << 2) /* Interrupt on unseccessful TX */
1027 #define HOST_LCC_PAYLOAD (1 << 4) /* LLC payload, 0 = Ethertype */
1028 #define HOST_DONT_RLSE (1 << 5) /* Don't release buffer when done */
1029 #define HOST_DONT_RETRY (1 << 6) /* Don't retry trasmit */
1030 #define HOST_CLR_AID (1 << 7) /* clear AID failure */
1031 #define HOST_RTS (1 << 9) /* Force RTS use */
1032 #define HOST_SHORT (1 << 10) /* Do short preamble */
1033         u16 ctl;
1034         u16 aid;
1035         u16 retries;
1036         u16 fill;
1037 } TxCtlHdr;
1038
1039 typedef struct {
1040         u16 ctl;
1041         u16 duration;
1042         char addr1[6];
1043         char addr2[6];
1044         char addr3[6];
1045         u16 seq;
1046         char addr4[6];
1047 } WifiHdr;
1048
1049
1050 typedef struct {
1051         TxCtlHdr ctlhdr;
1052         u16 fill1;
1053         u16 fill2;
1054         WifiHdr wifihdr;
1055         u16 gaplen;
1056         u16 status;
1057 } WifiCtlHdr;
1058
1059 static WifiCtlHdr wifictlhdr8023 = {
1060         .ctlhdr = {
1061                 .ctl    = HOST_DONT_RLSE,
1062         }
1063 };
1064
1065 // Frequency list (map channels to frequencies)
1066 static const long frequency_list[] = { 2412, 2417, 2422, 2427, 2432, 2437, 2442,
1067                                 2447, 2452, 2457, 2462, 2467, 2472, 2484 };
1068
1069 // A few details needed for WEP (Wireless Equivalent Privacy)
1070 #define MAX_KEY_SIZE 13                 // 128 (?) bits
1071 #define MIN_KEY_SIZE  5                 // 40 bits RC4 - WEP
1072 typedef struct wep_key_t {
1073         u16     len;
1074         u8      key[16];        /* 40-bit and 104-bit keys */
1075 } wep_key_t;
1076
1077 /* Backward compatibility */
1078 #ifndef IW_ENCODE_NOKEY
1079 #define IW_ENCODE_NOKEY         0x0800  /* Key is write only, so not present */
1080 #define IW_ENCODE_MODE  (IW_ENCODE_DISABLED | IW_ENCODE_RESTRICTED | IW_ENCODE_OPEN)
1081 #endif /* IW_ENCODE_NOKEY */
1082
1083 /* List of Wireless Handlers (new API) */
1084 static const struct iw_handler_def      airo_handler_def;
1085
1086 static const char version[] = "airo.c 0.6 (Ben Reed & Javier Achirica)";
1087
1088 struct airo_info;
1089
1090 static int get_dec_u16( char *buffer, int *start, int limit );
1091 static void OUT4500( struct airo_info *, u16 register, u16 value );
1092 static unsigned short IN4500( struct airo_info *, u16 register );
1093 static u16 setup_card(struct airo_info*, u8 *mac, int lock);
1094 static int enable_MAC( struct airo_info *ai, Resp *rsp, int lock );
1095 static void disable_MAC(struct airo_info *ai, int lock);
1096 static void enable_interrupts(struct airo_info*);
1097 static void disable_interrupts(struct airo_info*);
1098 static u16 issuecommand(struct airo_info*, Cmd *pCmd, Resp *pRsp);
1099 static int bap_setup(struct airo_info*, u16 rid, u16 offset, int whichbap);
1100 static int aux_bap_read(struct airo_info*, u16 *pu16Dst, int bytelen,
1101                         int whichbap);
1102 static int fast_bap_read(struct airo_info*, u16 *pu16Dst, int bytelen,
1103                          int whichbap);
1104 static int bap_write(struct airo_info*, const u16 *pu16Src, int bytelen,
1105                      int whichbap);
1106 static int PC4500_accessrid(struct airo_info*, u16 rid, u16 accmd);
1107 static int PC4500_readrid(struct airo_info*, u16 rid, void *pBuf, int len, int lock);
1108 static int PC4500_writerid(struct airo_info*, u16 rid, const void
1109                            *pBuf, int len, int lock);
1110 static int do_writerid( struct airo_info*, u16 rid, const void *rid_data,
1111                         int len, int dummy );
1112 static u16 transmit_allocate(struct airo_info*, int lenPayload, int raw);
1113 static int transmit_802_3_packet(struct airo_info*, int len, char *pPacket);
1114 static int transmit_802_11_packet(struct airo_info*, int len, char *pPacket);
1115
1116 static int mpi_send_packet (struct net_device *dev);
1117 static void mpi_unmap_card(struct pci_dev *pci);
1118 static void mpi_receive_802_3(struct airo_info *ai);
1119 static void mpi_receive_802_11(struct airo_info *ai);
1120 static int waitbusy (struct airo_info *ai);
1121
1122 static irqreturn_t airo_interrupt( int irq, void* dev_id, struct pt_regs
1123                             *regs);
1124 static int airo_thread(void *data);
1125 static void timer_func( struct net_device *dev );
1126 static int airo_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
1127 static struct iw_statistics *airo_get_wireless_stats (struct net_device *dev);
1128 static void airo_read_wireless_stats (struct airo_info *local);
1129 #ifdef CISCO_EXT
1130 static int readrids(struct net_device *dev, aironet_ioctl *comp);
1131 static int writerids(struct net_device *dev, aironet_ioctl *comp);
1132 static int flashcard(struct net_device *dev, aironet_ioctl *comp);
1133 #endif /* CISCO_EXT */
1134 static void micinit(struct airo_info *ai);
1135 static int micsetup(struct airo_info *ai);
1136 static int encapsulate(struct airo_info *ai, etherHead *pPacket, MICBuffer *buffer, int len);
1137 static int decapsulate(struct airo_info *ai, MICBuffer *mic, etherHead *pPacket, u16 payLen);
1138
1139 static u8 airo_rssi_to_dbm (tdsRssiEntry *rssi_rid, u8 rssi);
1140 static u8 airo_dbm_to_pct (tdsRssiEntry *rssi_rid, u8 dbm);
1141
1142 static void airo_networks_free(struct airo_info *ai);
1143
1144 struct airo_info {
1145         struct net_device_stats stats;
1146         struct net_device             *dev;
1147         /* Note, we can have MAX_FIDS outstanding.  FIDs are 16-bits, so we
1148            use the high bit to mark whether it is in use. */
1149 #define MAX_FIDS 6
1150 #define MPI_MAX_FIDS 1
1151         int                           fids[MAX_FIDS];
1152         ConfigRid config;
1153         char keyindex; // Used with auto wep
1154         char defindex; // Used with auto wep
1155         struct proc_dir_entry *proc_entry;
1156         spinlock_t aux_lock;
1157 #define FLAG_RADIO_OFF  0       /* User disabling of MAC */
1158 #define FLAG_RADIO_DOWN 1       /* ifup/ifdown disabling of MAC */
1159 #define FLAG_RADIO_MASK 0x03
1160 #define FLAG_ENABLED    2
1161 #define FLAG_ADHOC      3       /* Needed by MIC */
1162 #define FLAG_MIC_CAPABLE 4
1163 #define FLAG_UPDATE_MULTI 5
1164 #define FLAG_UPDATE_UNI 6
1165 #define FLAG_802_11     7
1166 #define FLAG_PROMISC    8       /* IFF_PROMISC 0x100 - include/linux/if.h */
1167 #define FLAG_PENDING_XMIT 9
1168 #define FLAG_PENDING_XMIT11 10
1169 #define FLAG_MPI        11
1170 #define FLAG_REGISTERED 12
1171 #define FLAG_COMMIT     13
1172 #define FLAG_RESET      14
1173 #define FLAG_FLASHING   15
1174 #define FLAG_WPA_CAPABLE        16
1175         unsigned long flags;
1176 #define JOB_DIE 0
1177 #define JOB_XMIT        1
1178 #define JOB_XMIT11      2
1179 #define JOB_STATS       3
1180 #define JOB_PROMISC     4
1181 #define JOB_MIC 5
1182 #define JOB_EVENT       6
1183 #define JOB_AUTOWEP     7
1184 #define JOB_WSTATS      8
1185 #define JOB_SCAN_RESULTS  9
1186         unsigned long jobs;
1187         int (*bap_read)(struct airo_info*, u16 *pu16Dst, int bytelen,
1188                         int whichbap);
1189         unsigned short *flash;
1190         tdsRssiEntry *rssi;
1191         struct task_struct *list_bss_task;
1192         struct task_struct *airo_thread_task;
1193         struct semaphore sem;
1194         wait_queue_head_t thr_wait;
1195         unsigned long expires;
1196         struct {
1197                 struct sk_buff *skb;
1198                 int fid;
1199         } xmit, xmit11;
1200         struct net_device *wifidev;
1201         struct iw_statistics    wstats;         // wireless stats
1202         unsigned long           scan_timeout;   /* Time scan should be read */
1203         struct iw_spy_data      spy_data;
1204         struct iw_public_data   wireless_data;
1205         /* MIC stuff */
1206         struct crypto_tfm       *tfm;
1207         mic_module              mod[2];
1208         mic_statistics          micstats;
1209         HostRxDesc rxfids[MPI_MAX_FIDS]; // rx/tx/config MPI350 descriptors
1210         HostTxDesc txfids[MPI_MAX_FIDS];
1211         HostRidDesc config_desc;
1212         unsigned long ridbus; // phys addr of config_desc
1213         struct sk_buff_head txq;// tx queue used by mpi350 code
1214         struct pci_dev          *pci;
1215         unsigned char           __iomem *pcimem;
1216         unsigned char           __iomem *pciaux;
1217         unsigned char           *shared;
1218         dma_addr_t              shared_dma;
1219         pm_message_t            power;
1220         SsidRid                 *SSID;
1221         APListRid               *APList;
1222 #define PCI_SHARED_LEN          2*MPI_MAX_FIDS*PKTSIZE+RIDSIZE
1223         char                    proc_name[IFNAMSIZ];
1224
1225         /* WPA-related stuff */
1226         unsigned int bssListFirst;
1227         unsigned int bssListNext;
1228         unsigned int bssListRidLen;
1229
1230         struct list_head network_list;
1231         struct list_head network_free_list;
1232         BSSListElement *networks;
1233 };
1234
1235 static inline int bap_read(struct airo_info *ai, u16 *pu16Dst, int bytelen,
1236                            int whichbap) {
1237         return ai->bap_read(ai, pu16Dst, bytelen, whichbap);
1238 }
1239
1240 static int setup_proc_entry( struct net_device *dev,
1241                              struct airo_info *apriv );
1242 static int takedown_proc_entry( struct net_device *dev,
1243                                 struct airo_info *apriv );
1244
1245 static int cmdreset(struct airo_info *ai);
1246 static int setflashmode (struct airo_info *ai);
1247 static int flashgchar(struct airo_info *ai,int matchbyte,int dwelltime);
1248 static int flashputbuf(struct airo_info *ai);
1249 static int flashrestart(struct airo_info *ai,struct net_device *dev);
1250
1251 #define airo_print(type, name, fmt, args...) \
1252         { printk(type "airo(%s): " fmt "\n", name, ##args); }
1253
1254 #define airo_print_info(name, fmt, args...) \
1255         airo_print(KERN_INFO, name, fmt, ##args)
1256
1257 #define airo_print_dbg(name, fmt, args...) \
1258         airo_print(KERN_DEBUG, name, fmt, ##args)
1259
1260 #define airo_print_warn(name, fmt, args...) \
1261         airo_print(KERN_WARNING, name, fmt, ##args)
1262
1263 #define airo_print_err(name, fmt, args...) \
1264         airo_print(KERN_ERR, name, fmt, ##args)
1265
1266
1267 /***********************************************************************
1268  *                              MIC ROUTINES                           *
1269  ***********************************************************************
1270  */
1271
1272 static int RxSeqValid (struct airo_info *ai,miccntx *context,int mcast,u32 micSeq);
1273 static void MoveWindow(miccntx *context, u32 micSeq);
1274 static void emmh32_setseed(emmh32_context *context, u8 *pkey, int keylen, struct crypto_tfm *);
1275 static void emmh32_init(emmh32_context *context);
1276 static void emmh32_update(emmh32_context *context, u8 *pOctets, int len);
1277 static void emmh32_final(emmh32_context *context, u8 digest[4]);
1278 static int flashpchar(struct airo_info *ai,int byte,int dwelltime);
1279
1280 /* micinit - Initialize mic seed */
1281
1282 static void micinit(struct airo_info *ai)
1283 {
1284         MICRid mic_rid;
1285
1286         clear_bit(JOB_MIC, &ai->jobs);
1287         PC4500_readrid(ai, RID_MIC, &mic_rid, sizeof(mic_rid), 0);
1288         up(&ai->sem);
1289
1290         ai->micstats.enabled = (mic_rid.state & 0x00FF) ? 1 : 0;
1291
1292         if (ai->micstats.enabled) {
1293                 /* Key must be valid and different */
1294                 if (mic_rid.multicastValid && (!ai->mod[0].mCtx.valid ||
1295                     (memcmp (ai->mod[0].mCtx.key, mic_rid.multicast,
1296                              sizeof(ai->mod[0].mCtx.key)) != 0))) {
1297                         /* Age current mic Context */
1298                         memcpy(&ai->mod[1].mCtx,&ai->mod[0].mCtx,sizeof(miccntx));
1299                         /* Initialize new context */
1300                         memcpy(&ai->mod[0].mCtx.key,mic_rid.multicast,sizeof(mic_rid.multicast));
1301                         ai->mod[0].mCtx.window  = 33; //Window always points to the middle
1302                         ai->mod[0].mCtx.rx      = 0;  //Rx Sequence numbers
1303                         ai->mod[0].mCtx.tx      = 0;  //Tx sequence numbers
1304                         ai->mod[0].mCtx.valid   = 1;  //Key is now valid
1305   
1306                         /* Give key to mic seed */
1307                         emmh32_setseed(&ai->mod[0].mCtx.seed,mic_rid.multicast,sizeof(mic_rid.multicast), ai->tfm);
1308                 }
1309
1310                 /* Key must be valid and different */
1311                 if (mic_rid.unicastValid && (!ai->mod[0].uCtx.valid || 
1312                     (memcmp(ai->mod[0].uCtx.key, mic_rid.unicast,
1313                             sizeof(ai->mod[0].uCtx.key)) != 0))) {
1314                         /* Age current mic Context */
1315                         memcpy(&ai->mod[1].uCtx,&ai->mod[0].uCtx,sizeof(miccntx));
1316                         /* Initialize new context */
1317                         memcpy(&ai->mod[0].uCtx.key,mic_rid.unicast,sizeof(mic_rid.unicast));
1318         
1319                         ai->mod[0].uCtx.window  = 33; //Window always points to the middle
1320                         ai->mod[0].uCtx.rx      = 0;  //Rx Sequence numbers
1321                         ai->mod[0].uCtx.tx      = 0;  //Tx sequence numbers
1322                         ai->mod[0].uCtx.valid   = 1;  //Key is now valid
1323         
1324                         //Give key to mic seed
1325                         emmh32_setseed(&ai->mod[0].uCtx.seed, mic_rid.unicast, sizeof(mic_rid.unicast), ai->tfm);
1326                 }
1327         } else {
1328       /* So next time we have a valid key and mic is enabled, we will update
1329        * the sequence number if the key is the same as before.
1330        */
1331                 ai->mod[0].uCtx.valid = 0;
1332                 ai->mod[0].mCtx.valid = 0;
1333         }
1334 }
1335
1336 /* micsetup - Get ready for business */
1337
1338 static int micsetup(struct airo_info *ai) {
1339         int i;
1340
1341         if (ai->tfm == NULL)
1342                 ai->tfm = crypto_alloc_tfm("aes", CRYPTO_TFM_REQ_MAY_SLEEP);
1343
1344         if (ai->tfm == NULL) {
1345                 airo_print_err(ai->dev->name, "failed to load transform for AES");
1346                 return ERROR;
1347         }
1348
1349         for (i=0; i < NUM_MODULES; i++) {
1350                 memset(&ai->mod[i].mCtx,0,sizeof(miccntx));
1351                 memset(&ai->mod[i].uCtx,0,sizeof(miccntx));
1352         }
1353         return SUCCESS;
1354 }
1355
1356 static char micsnap[] = {0xAA,0xAA,0x03,0x00,0x40,0x96,0x00,0x02};
1357
1358 /*===========================================================================
1359  * Description: Mic a packet
1360  *    
1361  *      Inputs: etherHead * pointer to an 802.3 frame
1362  *    
1363  *     Returns: BOOLEAN if successful, otherwise false.
1364  *             PacketTxLen will be updated with the mic'd packets size.
1365  *
1366  *    Caveats: It is assumed that the frame buffer will already
1367  *             be big enough to hold the largets mic message possible.
1368  *            (No memory allocation is done here).
1369  *  
1370  *    Author: sbraneky (10/15/01)
1371  *    Merciless hacks by rwilcher (1/14/02)
1372  */
1373
1374 static int encapsulate(struct airo_info *ai ,etherHead *frame, MICBuffer *mic, int payLen)
1375 {
1376         miccntx   *context;
1377
1378         // Determine correct context
1379         // If not adhoc, always use unicast key
1380
1381         if (test_bit(FLAG_ADHOC, &ai->flags) && (frame->da[0] & 0x1))
1382                 context = &ai->mod[0].mCtx;
1383         else
1384                 context = &ai->mod[0].uCtx;
1385   
1386         if (!context->valid)
1387                 return ERROR;
1388
1389         mic->typelen = htons(payLen + 16); //Length of Mic'd packet
1390
1391         memcpy(&mic->u.snap, micsnap, sizeof(micsnap)); // Add Snap
1392
1393         // Add Tx sequence
1394         mic->seq = htonl(context->tx);
1395         context->tx += 2;
1396
1397         emmh32_init(&context->seed); // Mic the packet
1398         emmh32_update(&context->seed,frame->da,ETH_ALEN * 2); // DA,SA
1399         emmh32_update(&context->seed,(u8*)&mic->typelen,10); // Type/Length and Snap
1400         emmh32_update(&context->seed,(u8*)&mic->seq,sizeof(mic->seq)); //SEQ
1401         emmh32_update(&context->seed,frame->da + ETH_ALEN * 2,payLen); //payload
1402         emmh32_final(&context->seed, (u8*)&mic->mic);
1403
1404         /*    New Type/length ?????????? */
1405         mic->typelen = 0; //Let NIC know it could be an oversized packet
1406         return SUCCESS;
1407 }
1408
1409 typedef enum {
1410     NONE,
1411     NOMIC,
1412     NOMICPLUMMED,
1413     SEQUENCE,
1414     INCORRECTMIC,
1415 } mic_error;
1416
1417 /*===========================================================================
1418  *  Description: Decapsulates a MIC'd packet and returns the 802.3 packet
1419  *               (removes the MIC stuff) if packet is a valid packet.
1420  *      
1421  *       Inputs: etherHead  pointer to the 802.3 packet             
1422  *     
1423  *      Returns: BOOLEAN - TRUE if packet should be dropped otherwise FALSE
1424  *     
1425  *      Author: sbraneky (10/15/01)
1426  *    Merciless hacks by rwilcher (1/14/02)
1427  *---------------------------------------------------------------------------
1428  */
1429
1430 static int decapsulate(struct airo_info *ai, MICBuffer *mic, etherHead *eth, u16 payLen)
1431 {
1432         int      i;
1433         u32      micSEQ;
1434         miccntx  *context;
1435         u8       digest[4];
1436         mic_error micError = NONE;
1437
1438         // Check if the packet is a Mic'd packet
1439
1440         if (!ai->micstats.enabled) {
1441                 //No Mic set or Mic OFF but we received a MIC'd packet.
1442                 if (memcmp ((u8*)eth + 14, micsnap, sizeof(micsnap)) == 0) {
1443                         ai->micstats.rxMICPlummed++;
1444                         return ERROR;
1445                 }
1446                 return SUCCESS;
1447         }
1448
1449         if (ntohs(mic->typelen) == 0x888E)
1450                 return SUCCESS;
1451
1452         if (memcmp (mic->u.snap, micsnap, sizeof(micsnap)) != 0) {
1453             // Mic enabled but packet isn't Mic'd
1454                 ai->micstats.rxMICPlummed++;
1455                 return ERROR;
1456         }
1457
1458         micSEQ = ntohl(mic->seq);            //store SEQ as CPU order
1459
1460         //At this point we a have a mic'd packet and mic is enabled
1461         //Now do the mic error checking.
1462
1463         //Receive seq must be odd
1464         if ( (micSEQ & 1) == 0 ) {
1465                 ai->micstats.rxWrongSequence++;
1466                 return ERROR;
1467         }
1468
1469         for (i = 0; i < NUM_MODULES; i++) {
1470                 int mcast = eth->da[0] & 1;
1471                 //Determine proper context 
1472                 context = mcast ? &ai->mod[i].mCtx : &ai->mod[i].uCtx;
1473         
1474                 //Make sure context is valid
1475                 if (!context->valid) {
1476                         if (i == 0)
1477                                 micError = NOMICPLUMMED;
1478                         continue;                
1479                 }
1480                 //DeMic it 
1481
1482                 if (!mic->typelen)
1483                         mic->typelen = htons(payLen + sizeof(MICBuffer) - 2);
1484         
1485                 emmh32_init(&context->seed);
1486                 emmh32_update(&context->seed, eth->da, ETH_ALEN*2); 
1487                 emmh32_update(&context->seed, (u8 *)&mic->typelen, sizeof(mic->typelen)+sizeof(mic->u.snap)); 
1488                 emmh32_update(&context->seed, (u8 *)&mic->seq,sizeof(mic->seq));        
1489                 emmh32_update(&context->seed, eth->da + ETH_ALEN*2,payLen);     
1490                 //Calculate MIC
1491                 emmh32_final(&context->seed, digest);
1492         
1493                 if (memcmp(digest, &mic->mic, 4)) { //Make sure the mics match
1494                   //Invalid Mic
1495                         if (i == 0)
1496                                 micError = INCORRECTMIC;
1497                         continue;
1498                 }
1499
1500                 //Check Sequence number if mics pass
1501                 if (RxSeqValid(ai, context, mcast, micSEQ) == SUCCESS) {
1502                         ai->micstats.rxSuccess++;
1503                         return SUCCESS;
1504                 }
1505                 if (i == 0)
1506                         micError = SEQUENCE;
1507         }
1508
1509         // Update statistics
1510         switch (micError) {
1511                 case NOMICPLUMMED: ai->micstats.rxMICPlummed++;   break;
1512                 case SEQUENCE:    ai->micstats.rxWrongSequence++; break;
1513                 case INCORRECTMIC: ai->micstats.rxIncorrectMIC++; break;
1514                 case NONE:  break;
1515                 case NOMIC: break;
1516         }
1517         return ERROR;
1518 }
1519
1520 /*===========================================================================
1521  * Description:  Checks the Rx Seq number to make sure it is valid
1522  *               and hasn't already been received
1523  *   
1524  *     Inputs: miccntx - mic context to check seq against
1525  *             micSeq  - the Mic seq number
1526  *   
1527  *    Returns: TRUE if valid otherwise FALSE. 
1528  *
1529  *    Author: sbraneky (10/15/01)
1530  *    Merciless hacks by rwilcher (1/14/02)
1531  *---------------------------------------------------------------------------
1532  */
1533
1534 static int RxSeqValid (struct airo_info *ai,miccntx *context,int mcast,u32 micSeq)
1535 {
1536         u32 seq,index;
1537
1538         //Allow for the ap being rebooted - if it is then use the next 
1539         //sequence number of the current sequence number - might go backwards
1540
1541         if (mcast) {
1542                 if (test_bit(FLAG_UPDATE_MULTI, &ai->flags)) {
1543                         clear_bit (FLAG_UPDATE_MULTI, &ai->flags);
1544                         context->window = (micSeq > 33) ? micSeq : 33;
1545                         context->rx     = 0;        // Reset rx
1546                 }
1547         } else if (test_bit(FLAG_UPDATE_UNI, &ai->flags)) {
1548                 clear_bit (FLAG_UPDATE_UNI, &ai->flags);
1549                 context->window = (micSeq > 33) ? micSeq : 33; // Move window
1550                 context->rx     = 0;        // Reset rx
1551         }
1552
1553         //Make sequence number relative to START of window
1554         seq = micSeq - (context->window - 33);
1555
1556         //Too old of a SEQ number to check.
1557         if ((s32)seq < 0)
1558                 return ERROR;
1559     
1560         if ( seq > 64 ) {
1561                 //Window is infinite forward
1562                 MoveWindow(context,micSeq);
1563                 return SUCCESS;
1564         }
1565
1566         // We are in the window. Now check the context rx bit to see if it was already sent
1567         seq >>= 1;         //divide by 2 because we only have odd numbers
1568         index = 1 << seq;  //Get an index number
1569
1570         if (!(context->rx & index)) {
1571                 //micSEQ falls inside the window.
1572                 //Add seqence number to the list of received numbers.
1573                 context->rx |= index;
1574
1575                 MoveWindow(context,micSeq);
1576
1577                 return SUCCESS;
1578         }
1579         return ERROR;
1580 }
1581
1582 static void MoveWindow(miccntx *context, u32 micSeq)
1583 {
1584         u32 shift;
1585
1586         //Move window if seq greater than the middle of the window
1587         if (micSeq > context->window) {
1588                 shift = (micSeq - context->window) >> 1;
1589     
1590                     //Shift out old
1591                 if (shift < 32)
1592                         context->rx >>= shift;
1593                 else
1594                         context->rx = 0;
1595
1596                 context->window = micSeq;      //Move window
1597         }
1598 }
1599
1600 /*==============================================*/
1601 /*========== EMMH ROUTINES  ====================*/
1602 /*==============================================*/
1603
1604 /* mic accumulate */
1605 #define MIC_ACCUM(val)  \
1606         context->accum += (u64)(val) * context->coeff[coeff_position++];
1607
1608 static unsigned char aes_counter[16];
1609
1610 /* expand the key to fill the MMH coefficient array */
1611 static void emmh32_setseed(emmh32_context *context, u8 *pkey, int keylen, struct crypto_tfm *tfm)
1612 {
1613   /* take the keying material, expand if necessary, truncate at 16-bytes */
1614   /* run through AES counter mode to generate context->coeff[] */
1615   
1616         int i,j;
1617         u32 counter;
1618         u8 *cipher, plain[16];
1619         struct scatterlist sg[1];
1620
1621         crypto_cipher_setkey(tfm, pkey, 16);
1622         counter = 0;
1623         for (i = 0; i < (sizeof(context->coeff)/sizeof(context->coeff[0])); ) {
1624                 aes_counter[15] = (u8)(counter >> 0);
1625                 aes_counter[14] = (u8)(counter >> 8);
1626                 aes_counter[13] = (u8)(counter >> 16);
1627                 aes_counter[12] = (u8)(counter >> 24);
1628                 counter++;
1629                 memcpy (plain, aes_counter, 16);
1630                 sg_set_buf(sg, plain, 16);
1631                 crypto_cipher_encrypt(tfm, sg, sg, 16);
1632                 cipher = kmap(sg->page) + sg->offset;
1633                 for (j=0; (j<16) && (i< (sizeof(context->coeff)/sizeof(context->coeff[0]))); ) {
1634                         context->coeff[i++] = ntohl(*(u32 *)&cipher[j]);
1635                         j += 4;
1636                 }
1637         }
1638 }
1639
1640 /* prepare for calculation of a new mic */
1641 static void emmh32_init(emmh32_context *context)
1642 {
1643         /* prepare for new mic calculation */
1644         context->accum = 0;
1645         context->position = 0;
1646 }
1647
1648 /* add some bytes to the mic calculation */
1649 static void emmh32_update(emmh32_context *context, u8 *pOctets, int len)
1650 {
1651         int     coeff_position, byte_position;
1652   
1653         if (len == 0) return;
1654   
1655         coeff_position = context->position >> 2;
1656   
1657         /* deal with partial 32-bit word left over from last update */
1658         byte_position = context->position & 3;
1659         if (byte_position) {
1660                 /* have a partial word in part to deal with */
1661                 do {
1662                         if (len == 0) return;
1663                         context->part.d8[byte_position++] = *pOctets++;
1664                         context->position++;
1665                         len--;
1666                 } while (byte_position < 4);
1667                 MIC_ACCUM(htonl(context->part.d32));
1668         }
1669
1670         /* deal with full 32-bit words */
1671         while (len >= 4) {
1672                 MIC_ACCUM(htonl(*(u32 *)pOctets));
1673                 context->position += 4;
1674                 pOctets += 4;
1675                 len -= 4;
1676         }
1677
1678         /* deal with partial 32-bit word that will be left over from this update */
1679         byte_position = 0;
1680         while (len > 0) {
1681                 context->part.d8[byte_position++] = *pOctets++;
1682                 context->position++;
1683                 len--;
1684         }
1685 }
1686
1687 /* mask used to zero empty bytes for final partial word */
1688 static u32 mask32[4] = { 0x00000000L, 0xFF000000L, 0xFFFF0000L, 0xFFFFFF00L };
1689
1690 /* calculate the mic */
1691 static void emmh32_final(emmh32_context *context, u8 digest[4])
1692 {
1693         int     coeff_position, byte_position;
1694         u32     val;
1695   
1696         u64 sum, utmp;
1697         s64 stmp;
1698
1699         coeff_position = context->position >> 2;
1700   
1701         /* deal with partial 32-bit word left over from last update */
1702         byte_position = context->position & 3;
1703         if (byte_position) {
1704                 /* have a partial word in part to deal with */
1705                 val = htonl(context->part.d32);
1706                 MIC_ACCUM(val & mask32[byte_position]); /* zero empty bytes */
1707         }
1708
1709         /* reduce the accumulated u64 to a 32-bit MIC */
1710         sum = context->accum;
1711         stmp = (sum  & 0xffffffffLL) - ((sum >> 32)  * 15);
1712         utmp = (stmp & 0xffffffffLL) - ((stmp >> 32) * 15);
1713         sum = utmp & 0xffffffffLL;
1714         if (utmp > 0x10000000fLL)
1715                 sum -= 15;
1716
1717         val = (u32)sum;
1718         digest[0] = (val>>24) & 0xFF;
1719         digest[1] = (val>>16) & 0xFF;
1720         digest[2] = (val>>8) & 0xFF;
1721         digest[3] = val & 0xFF;
1722 }
1723
1724 static int readBSSListRid(struct airo_info *ai, int first,
1725                       BSSListRid *list) {
1726         int rc;
1727         Cmd cmd;
1728         Resp rsp;
1729
1730         if (first == 1) {
1731                 if (ai->flags & FLAG_RADIO_MASK) return -ENETDOWN;
1732                 memset(&cmd, 0, sizeof(cmd));
1733                 cmd.cmd=CMD_LISTBSS;
1734                 if (down_interruptible(&ai->sem))
1735                         return -ERESTARTSYS;
1736                 ai->list_bss_task = current;
1737                 issuecommand(ai, &cmd, &rsp);
1738                 up(&ai->sem);
1739                 /* Let the command take effect */
1740                 schedule_timeout_uninterruptible(3 * HZ);
1741                 ai->list_bss_task = NULL;
1742         }
1743         rc = PC4500_readrid(ai, first ? ai->bssListFirst : ai->bssListNext,
1744                             list, ai->bssListRidLen, 1);
1745
1746         list->len = le16_to_cpu(list->len);
1747         list->index = le16_to_cpu(list->index);
1748         list->radioType = le16_to_cpu(list->radioType);
1749         list->cap = le16_to_cpu(list->cap);
1750         list->beaconInterval = le16_to_cpu(list->beaconInterval);
1751         list->fh.dwell = le16_to_cpu(list->fh.dwell);
1752         list->dsChannel = le16_to_cpu(list->dsChannel);
1753         list->atimWindow = le16_to_cpu(list->atimWindow);
1754         list->dBm = le16_to_cpu(list->dBm);
1755         return rc;
1756 }
1757
1758 static int readWepKeyRid(struct airo_info*ai, WepKeyRid *wkr, int temp, int lock) {
1759         int rc = PC4500_readrid(ai, temp ? RID_WEP_TEMP : RID_WEP_PERM,
1760                                 wkr, sizeof(*wkr), lock);
1761
1762         wkr->len = le16_to_cpu(wkr->len);
1763         wkr->kindex = le16_to_cpu(wkr->kindex);
1764         wkr->klen = le16_to_cpu(wkr->klen);
1765         return rc;
1766 }
1767 /* In the writeXXXRid routines we copy the rids so that we don't screwup
1768  * the originals when we endian them... */
1769 static int writeWepKeyRid(struct airo_info*ai, WepKeyRid *pwkr, int perm, int lock) {
1770         int rc;
1771         WepKeyRid wkr = *pwkr;
1772
1773         wkr.len = cpu_to_le16(wkr.len);
1774         wkr.kindex = cpu_to_le16(wkr.kindex);
1775         wkr.klen = cpu_to_le16(wkr.klen);
1776         rc = PC4500_writerid(ai, RID_WEP_TEMP, &wkr, sizeof(wkr), lock);
1777         if (rc!=SUCCESS) airo_print_err(ai->dev->name, "WEP_TEMP set %x", rc);
1778         if (perm) {
1779                 rc = PC4500_writerid(ai, RID_WEP_PERM, &wkr, sizeof(wkr), lock);
1780                 if (rc!=SUCCESS) {
1781                         airo_print_err(ai->dev->name, "WEP_PERM set %x", rc);
1782                 }
1783         }
1784         return rc;
1785 }
1786
1787 static int readSsidRid(struct airo_info*ai, SsidRid *ssidr) {
1788         int i;
1789         int rc = PC4500_readrid(ai, RID_SSID, ssidr, sizeof(*ssidr), 1);
1790
1791         ssidr->len = le16_to_cpu(ssidr->len);
1792         for(i = 0; i < 3; i++) {
1793                 ssidr->ssids[i].len = le16_to_cpu(ssidr->ssids[i].len);
1794         }
1795         return rc;
1796 }
1797 static int writeSsidRid(struct airo_info*ai, SsidRid *pssidr, int lock) {
1798         int rc;
1799         int i;
1800         SsidRid ssidr = *pssidr;
1801
1802         ssidr.len = cpu_to_le16(ssidr.len);
1803         for(i = 0; i < 3; i++) {
1804                 ssidr.ssids[i].len = cpu_to_le16(ssidr.ssids[i].len);
1805         }
1806         rc = PC4500_writerid(ai, RID_SSID, &ssidr, sizeof(ssidr), lock);
1807         return rc;
1808 }
1809 static int readConfigRid(struct airo_info*ai, int lock) {
1810         int rc;
1811         u16 *s;
1812         ConfigRid cfg;
1813
1814         if (ai->config.len)
1815                 return SUCCESS;
1816
1817         rc = PC4500_readrid(ai, RID_ACTUALCONFIG, &cfg, sizeof(cfg), lock);
1818         if (rc != SUCCESS)
1819                 return rc;
1820
1821         for(s = &cfg.len; s <= &cfg.rtsThres; s++) *s = le16_to_cpu(*s);
1822
1823         for(s = &cfg.shortRetryLimit; s <= &cfg.radioType; s++)
1824                 *s = le16_to_cpu(*s);
1825
1826         for(s = &cfg.txPower; s <= &cfg.radioSpecific; s++)
1827                 *s = le16_to_cpu(*s);
1828
1829         for(s = &cfg.arlThreshold; s <= &cfg._reserved4[0]; s++)
1830                 *s = cpu_to_le16(*s);
1831
1832         for(s = &cfg.autoWake; s <= &cfg.autoWake; s++)
1833                 *s = cpu_to_le16(*s);
1834
1835         ai->config = cfg;
1836         return SUCCESS;
1837 }
1838 static inline void checkThrottle(struct airo_info *ai) {
1839         int i;
1840 /* Old hardware had a limit on encryption speed */
1841         if (ai->config.authType != AUTH_OPEN && maxencrypt) {
1842                 for(i=0; i<8; i++) {
1843                         if (ai->config.rates[i] > maxencrypt) {
1844                                 ai->config.rates[i] = 0;
1845                         }
1846                 }
1847         }
1848 }
1849 static int writeConfigRid(struct airo_info*ai, int lock) {
1850         u16 *s;
1851         ConfigRid cfgr;
1852
1853         if (!test_bit (FLAG_COMMIT, &ai->flags))
1854                 return SUCCESS;
1855
1856         clear_bit (FLAG_COMMIT, &ai->flags);
1857         clear_bit (FLAG_RESET, &ai->flags);
1858         checkThrottle(ai);
1859         cfgr = ai->config;
1860
1861         if ((cfgr.opmode & 0xFF) == MODE_STA_IBSS)
1862                 set_bit(FLAG_ADHOC, &ai->flags);
1863         else
1864                 clear_bit(FLAG_ADHOC, &ai->flags);
1865
1866         for(s = &cfgr.len; s <= &cfgr.rtsThres; s++) *s = cpu_to_le16(*s);
1867
1868         for(s = &cfgr.shortRetryLimit; s <= &cfgr.radioType; s++)
1869                 *s = cpu_to_le16(*s);
1870
1871         for(s = &cfgr.txPower; s <= &cfgr.radioSpecific; s++)
1872                 *s = cpu_to_le16(*s);
1873
1874         for(s = &cfgr.arlThreshold; s <= &cfgr._reserved4[0]; s++)
1875                 *s = cpu_to_le16(*s);
1876
1877         for(s = &cfgr.autoWake; s <= &cfgr.autoWake; s++)
1878                 *s = cpu_to_le16(*s);
1879
1880         return PC4500_writerid( ai, RID_CONFIG, &cfgr, sizeof(cfgr), lock);
1881 }
1882 static int readStatusRid(struct airo_info*ai, StatusRid *statr, int lock) {
1883         int rc = PC4500_readrid(ai, RID_STATUS, statr, sizeof(*statr), lock);
1884         u16 *s;
1885
1886         statr->len = le16_to_cpu(statr->len);
1887         for(s = &statr->mode; s <= &statr->SSIDlen; s++) *s = le16_to_cpu(*s);
1888
1889         for(s = &statr->beaconPeriod; s <= &statr->shortPreamble; s++)
1890                 *s = le16_to_cpu(*s);
1891         statr->load = le16_to_cpu(statr->load);
1892         statr->assocStatus = le16_to_cpu(statr->assocStatus);
1893         return rc;
1894 }
1895 static int readAPListRid(struct airo_info*ai, APListRid *aplr) {
1896         int rc =  PC4500_readrid(ai, RID_APLIST, aplr, sizeof(*aplr), 1);
1897         aplr->len = le16_to_cpu(aplr->len);
1898         return rc;
1899 }
1900 static int writeAPListRid(struct airo_info*ai, APListRid *aplr, int lock) {
1901         int rc;
1902         aplr->len = cpu_to_le16(aplr->len);
1903         rc = PC4500_writerid(ai, RID_APLIST, aplr, sizeof(*aplr), lock);
1904         return rc;
1905 }
1906 static int readCapabilityRid(struct airo_info*ai, CapabilityRid *capr, int lock) {
1907         int rc = PC4500_readrid(ai, RID_CAPABILITIES, capr, sizeof(*capr), lock);
1908         u16 *s;
1909
1910         capr->len = le16_to_cpu(capr->len);
1911         capr->prodNum = le16_to_cpu(capr->prodNum);
1912         capr->radioType = le16_to_cpu(capr->radioType);
1913         capr->country = le16_to_cpu(capr->country);
1914         for(s = &capr->txPowerLevels[0]; s <= &capr->requiredHard; s++)
1915                 *s = le16_to_cpu(*s);
1916         return rc;
1917 }
1918 static int readStatsRid(struct airo_info*ai, StatsRid *sr, int rid, int lock) {
1919         int rc = PC4500_readrid(ai, rid, sr, sizeof(*sr), lock);
1920         u32 *i;
1921
1922         sr->len = le16_to_cpu(sr->len);
1923         for(i = &sr->vals[0]; i <= &sr->vals[99]; i++) *i = le32_to_cpu(*i);
1924         return rc;
1925 }
1926
1927 static int airo_open(struct net_device *dev) {
1928         struct airo_info *info = dev->priv;
1929         Resp rsp;
1930
1931         if (test_bit(FLAG_FLASHING, &info->flags))
1932                 return -EIO;
1933
1934         /* Make sure the card is configured.
1935          * Wireless Extensions may postpone config changes until the card
1936          * is open (to pipeline changes and speed-up card setup). If
1937          * those changes are not yet commited, do it now - Jean II */
1938         if (test_bit (FLAG_COMMIT, &info->flags)) {
1939                 disable_MAC(info, 1);
1940                 writeConfigRid(info, 1);
1941         }
1942
1943         if (info->wifidev != dev) {
1944                 /* Power on the MAC controller (which may have been disabled) */
1945                 clear_bit(FLAG_RADIO_DOWN, &info->flags);
1946                 enable_interrupts(info);
1947         }
1948         enable_MAC(info, &rsp, 1);
1949
1950         netif_start_queue(dev);
1951         return 0;
1952 }
1953
1954 static int mpi_start_xmit(struct sk_buff *skb, struct net_device *dev) {
1955         int npacks, pending;
1956         unsigned long flags;
1957         struct airo_info *ai = dev->priv;
1958
1959         if (!skb) {
1960                 airo_print_err(dev->name, "%s: skb == NULL!",__FUNCTION__);
1961                 return 0;
1962         }
1963         npacks = skb_queue_len (&ai->txq);
1964
1965         if (npacks >= MAXTXQ - 1) {
1966                 netif_stop_queue (dev);
1967                 if (npacks > MAXTXQ) {
1968                         ai->stats.tx_fifo_errors++;
1969                         return 1;
1970                 }
1971                 skb_queue_tail (&ai->txq, skb);
1972                 return 0;
1973         }
1974
1975         spin_lock_irqsave(&ai->aux_lock, flags);
1976         skb_queue_tail (&ai->txq, skb);
1977         pending = test_bit(FLAG_PENDING_XMIT, &ai->flags);
1978         spin_unlock_irqrestore(&ai->aux_lock,flags);
1979         netif_wake_queue (dev);
1980
1981         if (pending == 0) {
1982                 set_bit(FLAG_PENDING_XMIT, &ai->flags);
1983                 mpi_send_packet (dev);
1984         }
1985         return 0;
1986 }
1987
1988 /*
1989  * @mpi_send_packet
1990  *
1991  * Attempt to transmit a packet. Can be called from interrupt
1992  * or transmit . return number of packets we tried to send
1993  */
1994
1995 static int mpi_send_packet (struct net_device *dev)
1996 {
1997         struct sk_buff *skb;
1998         unsigned char *buffer;
1999         s16 len, *payloadLen;
2000         struct airo_info *ai = dev->priv;
2001         u8 *sendbuf;
2002
2003         /* get a packet to send */
2004
2005         if ((skb = skb_dequeue(&ai->txq)) == 0) {
2006                 airo_print_err(dev->name,
2007                         "%s: Dequeue'd zero in send_packet()",
2008                         __FUNCTION__);
2009                 return 0;
2010         }
2011
2012         /* check min length*/
2013         len = ETH_ZLEN < skb->len ? skb->len : ETH_ZLEN;
2014         buffer = skb->data;
2015
2016         ai->txfids[0].tx_desc.offset = 0;
2017         ai->txfids[0].tx_desc.valid = 1;
2018         ai->txfids[0].tx_desc.eoc = 1;
2019         ai->txfids[0].tx_desc.len =len+sizeof(WifiHdr);
2020
2021 /*
2022  * Magic, the cards firmware needs a length count (2 bytes) in the host buffer
2023  * right after  TXFID_HDR.The TXFID_HDR contains the status short so payloadlen
2024  * is immediatly after it. ------------------------------------------------
2025  *                         |TXFIDHDR+STATUS|PAYLOADLEN|802.3HDR|PACKETDATA|
2026  *                         ------------------------------------------------
2027  */
2028
2029         memcpy((char *)ai->txfids[0].virtual_host_addr,
2030                 (char *)&wifictlhdr8023, sizeof(wifictlhdr8023));
2031
2032         payloadLen = (s16 *)(ai->txfids[0].virtual_host_addr +
2033                 sizeof(wifictlhdr8023));
2034         sendbuf = ai->txfids[0].virtual_host_addr +
2035                 sizeof(wifictlhdr8023) + 2 ;
2036
2037         /*
2038          * Firmware automaticly puts 802 header on so
2039          * we don't need to account for it in the length
2040          */
2041         if (test_bit(FLAG_MIC_CAPABLE, &ai->flags) && ai->micstats.enabled &&
2042                 (ntohs(((u16 *)buffer)[6]) != 0x888E)) {
2043                 MICBuffer pMic;
2044
2045                 if (encapsulate(ai, (etherHead *)buffer, &pMic, len - sizeof(etherHead)) != SUCCESS)
2046                         return ERROR;
2047
2048                 *payloadLen = cpu_to_le16(len-sizeof(etherHead)+sizeof(pMic));
2049                 ai->txfids[0].tx_desc.len += sizeof(pMic);
2050                 /* copy data into airo dma buffer */
2051                 memcpy (sendbuf, buffer, sizeof(etherHead));
2052                 buffer += sizeof(etherHead);
2053                 sendbuf += sizeof(etherHead);
2054                 memcpy (sendbuf, &pMic, sizeof(pMic));
2055                 sendbuf += sizeof(pMic);
2056                 memcpy (sendbuf, buffer, len - sizeof(etherHead));
2057         } else {
2058                 *payloadLen = cpu_to_le16(len - sizeof(etherHead));
2059
2060                 dev->trans_start = jiffies;
2061
2062                 /* copy data into airo dma buffer */
2063                 memcpy(sendbuf, buffer, len);
2064         }
2065
2066         memcpy_toio(ai->txfids[0].card_ram_off,
2067                 &ai->txfids[0].tx_desc, sizeof(TxFid));
2068
2069         OUT4500(ai, EVACK, 8);
2070
2071         dev_kfree_skb_any(skb);
2072         return 1;
2073 }
2074
2075 static void get_tx_error(struct airo_info *ai, s32 fid)
2076 {
2077         u16 status;
2078
2079         if (fid < 0)
2080                 status = ((WifiCtlHdr *)ai->txfids[0].virtual_host_addr)->ctlhdr.status;
2081         else {
2082                 if (bap_setup(ai, ai->fids[fid] & 0xffff, 4, BAP0) != SUCCESS)
2083                         return;
2084                 bap_read(ai, &status, 2, BAP0);
2085         }
2086         if (le16_to_cpu(status) & 2) /* Too many retries */
2087                 ai->stats.tx_aborted_errors++;
2088         if (le16_to_cpu(status) & 4) /* Transmit lifetime exceeded */
2089                 ai->stats.tx_heartbeat_errors++;
2090         if (le16_to_cpu(status) & 8) /* Aid fail */
2091                 { }
2092         if (le16_to_cpu(status) & 0x10) /* MAC disabled */
2093                 ai->stats.tx_carrier_errors++;
2094         if (le16_to_cpu(status) & 0x20) /* Association lost */
2095                 { }
2096         /* We produce a TXDROP event only for retry or lifetime
2097          * exceeded, because that's the only status that really mean
2098          * that this particular node went away.
2099          * Other errors means that *we* screwed up. - Jean II */
2100         if ((le16_to_cpu(status) & 2) ||
2101              (le16_to_cpu(status) & 4)) {
2102                 union iwreq_data        wrqu;
2103                 char junk[0x18];
2104
2105                 /* Faster to skip over useless data than to do
2106                  * another bap_setup(). We are at offset 0x6 and
2107                  * need to go to 0x18 and read 6 bytes - Jean II */
2108                 bap_read(ai, (u16 *) junk, 0x18, BAP0);
2109
2110                 /* Copy 802.11 dest address.
2111                  * We use the 802.11 header because the frame may
2112                  * not be 802.3 or may be mangled...
2113                  * In Ad-Hoc mode, it will be the node address.
2114                  * In managed mode, it will be most likely the AP addr
2115                  * User space will figure out how to convert it to
2116                  * whatever it needs (IP address or else).
2117                  * - Jean II */
2118                 memcpy(wrqu.addr.sa_data, junk + 0x12, ETH_ALEN);
2119                 wrqu.addr.sa_family = ARPHRD_ETHER;
2120
2121                 /* Send event to user space */
2122                 wireless_send_event(ai->dev, IWEVTXDROP, &wrqu, NULL);
2123         }
2124 }
2125
2126 static void airo_end_xmit(struct net_device *dev) {
2127         u16 status;
2128         int i;
2129         struct airo_info *priv = dev->priv;
2130         struct sk_buff *skb = priv->xmit.skb;
2131         int fid = priv->xmit.fid;
2132         u32 *fids = priv->fids;
2133
2134         clear_bit(JOB_XMIT, &priv->jobs);
2135         clear_bit(FLAG_PENDING_XMIT, &priv->flags);
2136         status = transmit_802_3_packet (priv, fids[fid], skb->data);
2137         up(&priv->sem);
2138
2139         i = 0;
2140         if ( status == SUCCESS ) {
2141                 dev->trans_start = jiffies;
2142                 for (; i < MAX_FIDS / 2 && (priv->fids[i] & 0xffff0000); i++);
2143         } else {
2144                 priv->fids[fid] &= 0xffff;
2145                 priv->stats.tx_window_errors++;
2146         }
2147         if (i < MAX_FIDS / 2)
2148                 netif_wake_queue(dev);
2149         dev_kfree_skb(skb);
2150 }
2151
2152 static int airo_start_xmit(struct sk_buff *skb, struct net_device *dev) {
2153         s16 len;
2154         int i, j;
2155         struct airo_info *priv = dev->priv;
2156         u32 *fids = priv->fids;
2157
2158         if ( skb == NULL ) {
2159                 airo_print_err(dev->name, "%s: skb == NULL!", __FUNCTION__);
2160                 return 0;
2161         }
2162
2163         /* Find a vacant FID */
2164         for( i = 0; i < MAX_FIDS / 2 && (fids[i] & 0xffff0000); i++ );
2165         for( j = i + 1; j < MAX_FIDS / 2 && (fids[j] & 0xffff0000); j++ );
2166
2167         if ( j >= MAX_FIDS / 2 ) {
2168                 netif_stop_queue(dev);
2169
2170                 if (i == MAX_FIDS / 2) {
2171                         priv->stats.tx_fifo_errors++;
2172                         return 1;
2173                 }
2174         }
2175         /* check min length*/
2176         len = ETH_ZLEN < skb->len ? skb->len : ETH_ZLEN;
2177         /* Mark fid as used & save length for later */
2178         fids[i] |= (len << 16);
2179         priv->xmit.skb = skb;
2180         priv->xmit.fid = i;
2181         if (down_trylock(&priv->sem) != 0) {
2182                 set_bit(FLAG_PENDING_XMIT, &priv->flags);
2183                 netif_stop_queue(dev);
2184                 set_bit(JOB_XMIT, &priv->jobs);
2185                 wake_up_interruptible(&priv->thr_wait);
2186         } else
2187                 airo_end_xmit(dev);
2188         return 0;
2189 }
2190
2191 static void airo_end_xmit11(struct net_device *dev) {
2192         u16 status;
2193         int i;
2194         struct airo_info *priv = dev->priv;
2195         struct sk_buff *skb = priv->xmit11.skb;
2196         int fid = priv->xmit11.fid;
2197         u32 *fids = priv->fids;
2198
2199         clear_bit(JOB_XMIT11, &priv->jobs);
2200         clear_bit(FLAG_PENDING_XMIT11, &priv->flags);
2201         status = transmit_802_11_packet (priv, fids[fid], skb->data);
2202         up(&priv->sem);
2203
2204         i = MAX_FIDS / 2;
2205         if ( status == SUCCESS ) {
2206                 dev->trans_start = jiffies;
2207                 for (; i < MAX_FIDS && (priv->fids[i] & 0xffff0000); i++);
2208         } else {
2209                 priv->fids[fid] &= 0xffff;
2210                 priv->stats.tx_window_errors++;
2211         }
2212         if (i < MAX_FIDS)
2213                 netif_wake_queue(dev);
2214         dev_kfree_skb(skb);
2215 }
2216
2217 static int airo_start_xmit11(struct sk_buff *skb, struct net_device *dev) {
2218         s16 len;
2219         int i, j;
2220         struct airo_info *priv = dev->priv;
2221         u32 *fids = priv->fids;
2222
2223         if (test_bit(FLAG_MPI, &priv->flags)) {
2224                 /* Not implemented yet for MPI350 */
2225                 netif_stop_queue(dev);
2226                 return -ENETDOWN;
2227         }
2228
2229         if ( skb == NULL ) {
2230                 airo_print_err(dev->name, "%s: skb == NULL!", __FUNCTION__);
2231                 return 0;
2232         }
2233
2234         /* Find a vacant FID */
2235         for( i = MAX_FIDS / 2; i < MAX_FIDS && (fids[i] & 0xffff0000); i++ );
2236         for( j = i + 1; j < MAX_FIDS && (fids[j] & 0xffff0000); j++ );
2237
2238         if ( j >= MAX_FIDS ) {
2239                 netif_stop_queue(dev);
2240
2241                 if (i == MAX_FIDS) {
2242                         priv->stats.tx_fifo_errors++;
2243                         return 1;
2244                 }
2245         }
2246         /* check min length*/
2247         len = ETH_ZLEN < skb->len ? skb->len : ETH_ZLEN;
2248         /* Mark fid as used & save length for later */
2249         fids[i] |= (len << 16);
2250         priv->xmit11.skb = skb;
2251         priv->xmit11.fid = i;
2252         if (down_trylock(&priv->sem) != 0) {
2253                 set_bit(FLAG_PENDING_XMIT11, &priv->flags);
2254                 netif_stop_queue(dev);
2255                 set_bit(JOB_XMIT11, &priv->jobs);
2256                 wake_up_interruptible(&priv->thr_wait);
2257         } else
2258                 airo_end_xmit11(dev);
2259         return 0;
2260 }
2261
2262 static void airo_read_stats(struct airo_info *ai) {
2263         StatsRid stats_rid;
2264         u32 *vals = stats_rid.vals;
2265
2266         clear_bit(JOB_STATS, &ai->jobs);
2267         if (ai->power.event) {
2268                 up(&ai->sem);
2269                 return;
2270         }
2271         readStatsRid(ai, &stats_rid, RID_STATS, 0);
2272         up(&ai->sem);
2273
2274         ai->stats.rx_packets = vals[43] + vals[44] + vals[45];
2275         ai->stats.tx_packets = vals[39] + vals[40] + vals[41];
2276         ai->stats.rx_bytes = vals[92];
2277         ai->stats.tx_bytes = vals[91];
2278         ai->stats.rx_errors = vals[0] + vals[2] + vals[3] + vals[4];
2279         ai->stats.tx_errors = vals[42] + ai->stats.tx_fifo_errors;
2280         ai->stats.multicast = vals[43];
2281         ai->stats.collisions = vals[89];
2282
2283         /* detailed rx_errors: */
2284         ai->stats.rx_length_errors = vals[3];
2285         ai->stats.rx_crc_errors = vals[4];
2286         ai->stats.rx_frame_errors = vals[2];
2287         ai->stats.rx_fifo_errors = vals[0];
2288 }
2289
2290 static struct net_device_stats *airo_get_stats(struct net_device *dev)
2291 {
2292         struct airo_info *local =  dev->priv;
2293
2294         if (!test_bit(JOB_STATS, &local->jobs)) {
2295                 /* Get stats out of the card if available */
2296                 if (down_trylock(&local->sem) != 0) {
2297                         set_bit(JOB_STATS, &local->jobs);
2298                         wake_up_interruptible(&local->thr_wait);
2299                 } else
2300                         airo_read_stats(local);
2301         }
2302
2303         return &local->stats;
2304 }
2305
2306 static void airo_set_promisc(struct airo_info *ai) {
2307         Cmd cmd;
2308         Resp rsp;
2309
2310         memset(&cmd, 0, sizeof(cmd));
2311         cmd.cmd=CMD_SETMODE;
2312         clear_bit(JOB_PROMISC, &ai->jobs);
2313         cmd.parm0=(ai->flags&IFF_PROMISC) ? PROMISC : NOPROMISC;
2314         issuecommand(ai, &cmd, &rsp);
2315         up(&ai->sem);
2316 }
2317
2318 static void airo_set_multicast_list(struct net_device *dev) {
2319         struct airo_info *ai = dev->priv;
2320
2321         if ((dev->flags ^ ai->flags) & IFF_PROMISC) {
2322                 change_bit(FLAG_PROMISC, &ai->flags);
2323                 if (down_trylock(&ai->sem) != 0) {
2324                         set_bit(JOB_PROMISC, &ai->jobs);
2325                         wake_up_interruptible(&ai->thr_wait);
2326                 } else
2327                         airo_set_promisc(ai);
2328         }
2329
2330         if ((dev->flags&IFF_ALLMULTI)||dev->mc_count>0) {
2331                 /* Turn on multicast.  (Should be already setup...) */
2332         }
2333 }
2334
2335 static int airo_set_mac_address(struct net_device *dev, void *p)
2336 {
2337         struct airo_info *ai = dev->priv;
2338         struct sockaddr *addr = p;
2339         Resp rsp;
2340
2341         readConfigRid(ai, 1);
2342         memcpy (ai->config.macAddr, addr->sa_data, dev->addr_len);
2343         set_bit (FLAG_COMMIT, &ai->flags);
2344         disable_MAC(ai, 1);
2345         writeConfigRid (ai, 1);
2346         enable_MAC(ai, &rsp, 1);
2347         memcpy (ai->dev->dev_addr, addr->sa_data, dev->addr_len);
2348         if (ai->wifidev)
2349                 memcpy (ai->wifidev->dev_addr, addr->sa_data, dev->addr_len);
2350         return 0;
2351 }
2352
2353 static int airo_change_mtu(struct net_device *dev, int new_mtu)
2354 {
2355         if ((new_mtu < 68) || (new_mtu > 2400))
2356                 return -EINVAL;
2357         dev->mtu = new_mtu;
2358         return 0;
2359 }
2360
2361
2362 static int airo_close(struct net_device *dev) {
2363         struct airo_info *ai = dev->priv;
2364
2365         netif_stop_queue(dev);
2366
2367         if (ai->wifidev != dev) {
2368 #ifdef POWER_ON_DOWN
2369                 /* Shut power to the card. The idea is that the user can save
2370                  * power when he doesn't need the card with "ifconfig down".
2371                  * That's the method that is most friendly towards the network
2372                  * stack (i.e. the network stack won't try to broadcast
2373                  * anything on the interface and routes are gone. Jean II */
2374                 set_bit(FLAG_RADIO_DOWN, &ai->flags);
2375                 disable_MAC(ai, 1);
2376 #endif
2377                 disable_interrupts( ai );
2378         }
2379         return 0;
2380 }
2381
2382 static void del_airo_dev( struct net_device *dev );
2383
2384 void stop_airo_card( struct net_device *dev, int freeres )
2385 {
2386         struct airo_info *ai = dev->priv;
2387
2388         set_bit(FLAG_RADIO_DOWN, &ai->flags);
2389         disable_MAC(ai, 1);
2390         disable_interrupts(ai);
2391         free_irq( dev->irq, dev );
2392         takedown_proc_entry( dev, ai );
2393         if (test_bit(FLAG_REGISTERED, &ai->flags)) {
2394                 unregister_netdev( dev );
2395                 if (ai->wifidev) {
2396                         unregister_netdev(ai->wifidev);
2397                         free_netdev(ai->wifidev);
2398                         ai->wifidev = NULL;
2399                 }
2400                 clear_bit(FLAG_REGISTERED, &ai->flags);
2401         }
2402         set_bit(JOB_DIE, &ai->jobs);
2403         kthread_stop(ai->airo_thread_task);
2404
2405         /*
2406          * Clean out tx queue
2407          */
2408         if (test_bit(FLAG_MPI, &ai->flags) && !skb_queue_empty(&ai->txq)) {
2409                 struct sk_buff *skb = NULL;
2410                 for (;(skb = skb_dequeue(&ai->txq));)
2411                         dev_kfree_skb(skb);
2412         }
2413
2414         airo_networks_free (ai);
2415
2416         kfree(ai->flash);
2417         kfree(ai->rssi);
2418         kfree(ai->APList);
2419         kfree(ai->SSID);
2420         if (freeres) {
2421                 /* PCMCIA frees this stuff, so only for PCI and ISA */
2422                 release_region( dev->base_addr, 64 );
2423                 if (test_bit(FLAG_MPI, &ai->flags)) {
2424                         if (ai->pci)
2425                                 mpi_unmap_card(ai->pci);
2426                         if (ai->pcimem)
2427                                 iounmap(ai->pcimem);
2428                         if (ai->pciaux)
2429                                 iounmap(ai->pciaux);
2430                         pci_free_consistent(ai->pci, PCI_SHARED_LEN,
2431                                 ai->shared, ai->shared_dma);
2432                 }
2433         }
2434         crypto_free_tfm(ai->tfm);
2435         del_airo_dev( dev );
2436         free_netdev( dev );
2437 }
2438
2439 EXPORT_SYMBOL(stop_airo_card);
2440
2441 static int add_airo_dev( struct net_device *dev );
2442
2443 static int wll_header_parse(struct sk_buff *skb, unsigned char *haddr)
2444 {
2445         memcpy(haddr, skb->mac.raw + 10, ETH_ALEN);
2446         return ETH_ALEN;
2447 }
2448
2449 static void mpi_unmap_card(struct pci_dev *pci)
2450 {
2451         unsigned long mem_start = pci_resource_start(pci, 1);
2452         unsigned long mem_len = pci_resource_len(pci, 1);
2453         unsigned long aux_start = pci_resource_start(pci, 2);
2454         unsigned long aux_len = AUXMEMSIZE;
2455
2456         release_mem_region(aux_start, aux_len);
2457         release_mem_region(mem_start, mem_len);
2458 }
2459
2460 /*************************************************************
2461  *  This routine assumes that descriptors have been setup .
2462  *  Run at insmod time or after reset  when the decriptors
2463  *  have been initialized . Returns 0 if all is well nz
2464  *  otherwise . Does not allocate memory but sets up card
2465  *  using previously allocated descriptors.
2466  */
2467 static int mpi_init_descriptors (struct airo_info *ai)
2468 {
2469         Cmd cmd;
2470         Resp rsp;
2471         int i;
2472         int rc = SUCCESS;
2473
2474         /* Alloc  card RX descriptors */
2475         netif_stop_queue(ai->dev);
2476
2477         memset(&rsp,0,sizeof(rsp));
2478         memset(&cmd,0,sizeof(cmd));
2479
2480         cmd.cmd = CMD_ALLOCATEAUX;
2481         cmd.parm0 = FID_RX;
2482         cmd.parm1 = (ai->rxfids[0].card_ram_off - ai->pciaux);
2483         cmd.parm2 = MPI_MAX_FIDS;
2484         rc=issuecommand(ai, &cmd, &rsp);
2485         if (rc != SUCCESS) {
2486                 airo_print_err(ai->dev->name, "Couldn't allocate RX FID");
2487                 return rc;
2488         }
2489
2490         for (i=0; i<MPI_MAX_FIDS; i++) {
2491                 memcpy_toio(ai->rxfids[i].card_ram_off,
2492                         &ai->rxfids[i].rx_desc, sizeof(RxFid));
2493         }
2494
2495         /* Alloc card TX descriptors */
2496
2497         memset(&rsp,0,sizeof(rsp));
2498         memset(&cmd,0,sizeof(cmd));
2499
2500         cmd.cmd = CMD_ALLOCATEAUX;
2501         cmd.parm0 = FID_TX;
2502         cmd.parm1 = (ai->txfids[0].card_ram_off - ai->pciaux);
2503         cmd.parm2 = MPI_MAX_FIDS;
2504
2505         for (i=0; i<MPI_MAX_FIDS; i++) {
2506                 ai->txfids[i].tx_desc.valid = 1;
2507                 memcpy_toio(ai->txfids[i].card_ram_off,
2508                         &ai->txfids[i].tx_desc, sizeof(TxFid));
2509         }
2510         ai->txfids[i-1].tx_desc.eoc = 1; /* Last descriptor has EOC set */
2511
2512         rc=issuecommand(ai, &cmd, &rsp);
2513         if (rc != SUCCESS) {
2514                 airo_print_err(ai->dev->name, "Couldn't allocate TX FID");
2515                 return rc;
2516         }
2517
2518         /* Alloc card Rid descriptor */
2519         memset(&rsp,0,sizeof(rsp));
2520         memset(&cmd,0,sizeof(cmd));
2521
2522         cmd.cmd = CMD_ALLOCATEAUX;
2523         cmd.parm0 = RID_RW;
2524         cmd.parm1 = (ai->config_desc.card_ram_off - ai->pciaux);
2525         cmd.parm2 = 1; /* Magic number... */
2526         rc=issuecommand(ai, &cmd, &rsp);
2527         if (rc != SUCCESS) {
2528                 airo_print_err(ai->dev->name, "Couldn't allocate RID");
2529                 return rc;
2530         }
2531
2532         memcpy_toio(ai->config_desc.card_ram_off,
2533                 &ai->config_desc.rid_desc, sizeof(Rid));
2534
2535         return rc;
2536 }
2537
2538 /*
2539  * We are setting up three things here:
2540  * 1) Map AUX memory for descriptors: Rid, TxFid, or RxFid.
2541  * 2) Map PCI memory for issueing commands.
2542  * 3) Allocate memory (shared) to send and receive ethernet frames.
2543  */
2544 static int mpi_map_card(struct airo_info *ai, struct pci_dev *pci,
2545                     const char *name)
2546 {
2547         unsigned long mem_start, mem_len, aux_start, aux_len;
2548         int rc = -1;
2549         int i;
2550         dma_addr_t busaddroff;
2551         unsigned char *vpackoff;
2552         unsigned char __iomem *pciaddroff;
2553
2554         mem_start = pci_resource_start(pci, 1);
2555         mem_len = pci_resource_len(pci, 1);
2556         aux_start = pci_resource_start(pci, 2);
2557         aux_len = AUXMEMSIZE;
2558
2559         if (!request_mem_region(mem_start, mem_len, name)) {
2560                 airo_print_err(ai->dev->name, "Couldn't get region %x[%x] for %s",
2561                        (int)mem_start, (int)mem_len, name);
2562                 goto out;
2563         }
2564         if (!request_mem_region(aux_start, aux_len, name)) {
2565                 airo_print_err(ai->dev->name, "Couldn't get region %x[%x] for %s",
2566                        (int)aux_start, (int)aux_len, name);
2567                 goto free_region1;
2568         }
2569
2570         ai->pcimem = ioremap(mem_start, mem_len);
2571         if (!ai->pcimem) {
2572                 airo_print_err(ai->dev->name, "Couldn't map region %x[%x] for %s",
2573                        (int)mem_start, (int)mem_len, name);
2574                 goto free_region2;
2575         }
2576         ai->pciaux = ioremap(aux_start, aux_len);
2577         if (!ai->pciaux) {
2578                 airo_print_err(ai->dev->name, "Couldn't map region %x[%x] for %s",
2579                        (int)aux_start, (int)aux_len, name);
2580                 goto free_memmap;
2581         }
2582
2583         /* Reserve PKTSIZE for each fid and 2K for the Rids */
2584         ai->shared = pci_alloc_consistent(pci, PCI_SHARED_LEN, &ai->shared_dma);
2585         if (!ai->shared) {
2586                 airo_print_err(ai->dev->name, "Couldn't alloc_consistent %d",
2587                        PCI_SHARED_LEN);
2588                 goto free_auxmap;
2589         }
2590
2591         /*
2592          * Setup descriptor RX, TX, CONFIG
2593          */
2594         busaddroff = ai->shared_dma;
2595         pciaddroff = ai->pciaux + AUX_OFFSET;
2596         vpackoff   = ai->shared;
2597
2598         /* RX descriptor setup */
2599         for(i = 0; i < MPI_MAX_FIDS; i++) {
2600                 ai->rxfids[i].pending = 0;
2601                 ai->rxfids[i].card_ram_off = pciaddroff;
2602                 ai->rxfids[i].virtual_host_addr = vpackoff;
2603                 ai->rxfids[i].rx_desc.host_addr = busaddroff;
2604                 ai->rxfids[i].rx_desc.valid = 1;
2605                 ai->rxfids[i].rx_desc.len = PKTSIZE;
2606                 ai->rxfids[i].rx_desc.rdy = 0;
2607
2608                 pciaddroff += sizeof(RxFid);
2609                 busaddroff += PKTSIZE;
2610                 vpackoff   += PKTSIZE;
2611         }
2612
2613         /* TX descriptor setup */
2614         for(i = 0; i < MPI_MAX_FIDS; i++) {
2615                 ai->txfids[i].card_ram_off = pciaddroff;
2616                 ai->txfids[i].virtual_host_addr = vpackoff;
2617                 ai->txfids[i].tx_desc.valid = 1;
2618                 ai->txfids[i].tx_desc.host_addr = busaddroff;
2619                 memcpy(ai->txfids[i].virtual_host_addr,
2620                         &wifictlhdr8023, sizeof(wifictlhdr8023));
2621
2622                 pciaddroff += sizeof(TxFid);
2623                 busaddroff += PKTSIZE;
2624                 vpackoff   += PKTSIZE;
2625         }
2626         ai->txfids[i-1].tx_desc.eoc = 1; /* Last descriptor has EOC set */
2627
2628         /* Rid descriptor setup */
2629         ai->config_desc.card_ram_off = pciaddroff;
2630         ai->config_desc.virtual_host_addr = vpackoff;
2631         ai->config_desc.rid_desc.host_addr = busaddroff;
2632         ai->ridbus = busaddroff;
2633         ai->config_desc.rid_desc.rid = 0;
2634         ai->config_desc.rid_desc.len = RIDSIZE;
2635         ai->config_desc.rid_desc.valid = 1;
2636         pciaddroff += sizeof(Rid);
2637         busaddroff += RIDSIZE;
2638         vpackoff   += RIDSIZE;
2639
2640         /* Tell card about descriptors */
2641         if (mpi_init_descriptors (ai) != SUCCESS)
2642                 goto free_shared;
2643
2644         return 0;
2645  free_shared:
2646         pci_free_consistent(pci, PCI_SHARED_LEN, ai->shared, ai->shared_dma);
2647  free_auxmap:
2648         iounmap(ai->pciaux);
2649  free_memmap:
2650         iounmap(ai->pcimem);
2651  free_region2:
2652         release_mem_region(aux_start, aux_len);
2653  free_region1:
2654         release_mem_region(mem_start, mem_len);
2655  out:
2656         return rc;
2657 }
2658
2659 static void wifi_setup(struct net_device *dev)
2660 {
2661         dev->hard_header        = NULL;
2662         dev->rebuild_header     = NULL;
2663         dev->hard_header_cache  = NULL;
2664         dev->header_cache_update= NULL;
2665
2666         dev->hard_header_parse  = wll_header_parse;
2667         dev->hard_start_xmit = &airo_start_xmit11;
2668         dev->get_stats = &airo_get_stats;
2669         dev->set_mac_address = &airo_set_mac_address;
2670         dev->do_ioctl = &airo_ioctl;
2671         dev->wireless_handlers = &airo_handler_def;
2672         dev->change_mtu = &airo_change_mtu;
2673         dev->open = &airo_open;
2674         dev->stop = &airo_close;
2675
2676         dev->type               = ARPHRD_IEEE80211;
2677         dev->hard_header_len    = ETH_HLEN;
2678         dev->mtu                = AIRO_DEF_MTU;
2679         dev->addr_len           = ETH_ALEN;
2680         dev->tx_queue_len       = 100; 
2681
2682         memset(dev->broadcast,0xFF, ETH_ALEN);
2683
2684         dev->flags              = IFF_BROADCAST|IFF_MULTICAST;
2685 }
2686
2687 static struct net_device *init_wifidev(struct airo_info *ai,
2688                                         struct net_device *ethdev)
2689 {
2690         int err;
2691         struct net_device *dev = alloc_netdev(0, "wifi%d", wifi_setup);
2692         if (!dev)
2693                 return NULL;
2694         dev->priv = ethdev->priv;
2695         dev->irq = ethdev->irq;
2696         dev->base_addr = ethdev->base_addr;
2697         dev->wireless_data = ethdev->wireless_data;
2698         memcpy(dev->dev_addr, ethdev->dev_addr, dev->addr_len);
2699         err = register_netdev(dev);
2700         if (err<0) {
2701                 free_netdev(dev);
2702                 return NULL;
2703         }
2704         return dev;
2705 }
2706
2707 static int reset_card( struct net_device *dev , int lock) {
2708         struct airo_info *ai = dev->priv;
2709
2710         if (lock && down_interruptible(&ai->sem))
2711                 return -1;
2712         waitbusy (ai);
2713         OUT4500(ai,COMMAND,CMD_SOFTRESET);
2714         msleep(200);
2715         waitbusy (ai);
2716         msleep(200);
2717         if (lock)
2718                 up(&ai->sem);
2719         return 0;
2720 }
2721
2722 #define AIRO_MAX_NETWORK_COUNT  64
2723 static int airo_networks_allocate(struct airo_info *ai)
2724 {
2725         if (ai->networks)
2726                 return 0;
2727
2728         ai->networks =
2729             kzalloc(AIRO_MAX_NETWORK_COUNT * sizeof(BSSListElement),
2730                     GFP_KERNEL);
2731         if (!ai->networks) {
2732                 airo_print_warn(ai->dev->name, "Out of memory allocating beacons");
2733                 return -ENOMEM;
2734         }
2735
2736         return 0;
2737 }
2738
2739 static void airo_networks_free(struct airo_info *ai)
2740 {
2741         if (!ai->networks)
2742                 return;
2743         kfree(ai->networks);
2744         ai->networks = NULL;
2745 }
2746
2747 static void airo_networks_initialize(struct airo_info *ai)
2748 {
2749         int i;
2750
2751         INIT_LIST_HEAD(&ai->network_free_list);
2752         INIT_LIST_HEAD(&ai->network_list);
2753         for (i = 0; i < AIRO_MAX_NETWORK_COUNT; i++)
2754                 list_add_tail(&ai->networks[i].list,
2755                               &ai->network_free_list);
2756 }
2757
2758 static int airo_test_wpa_capable(struct airo_info *ai)
2759 {
2760         int status;
2761         CapabilityRid cap_rid;
2762         const char *name = ai->dev->name;
2763
2764         status = readCapabilityRid(ai, &cap_rid, 1);
2765         if (status != SUCCESS) return 0;
2766
2767         /* Only firmware versions 5.30.17 or better can do WPA */
2768         if ((cap_rid.softVer > 0x530)
2769           || ((cap_rid.softVer == 0x530) && (cap_rid.softSubVer >= 17))) {
2770                 airo_print_info(name, "WPA is supported.");
2771                 return 1;
2772         }
2773
2774         /* No WPA support */
2775         airo_print_info(name, "WPA unsupported (only firmware versions 5.30.17"
2776                 " and greater support WPA.  Detected %s)", cap_rid.prodVer);
2777         return 0;
2778 }
2779
2780 static struct net_device *_init_airo_card( unsigned short irq, int port,
2781                                            int is_pcmcia, struct pci_dev *pci,
2782                                            struct device *dmdev )
2783 {
2784         struct net_device *dev;
2785         struct airo_info *ai;
2786         int i, rc;
2787
2788         /* Create the network device object. */
2789         dev = alloc_etherdev(sizeof(*ai));
2790         if (!dev) {
2791                 airo_print_err("", "Couldn't alloc_etherdev");
2792                 return NULL;
2793         }
2794         if (dev_alloc_name(dev, dev->name) < 0) {
2795                 airo_print_err("", "Couldn't get name!");
2796                 goto err_out_free;
2797         }
2798
2799         ai = dev->priv;
2800         ai->wifidev = NULL;
2801         ai->flags = 0;
2802         ai->jobs = 0;
2803         ai->dev = dev;
2804         if (pci && (pci->device == 0x5000 || pci->device == 0xa504)) {
2805                 airo_print_dbg(dev->name, "Found an MPI350 card");
2806                 set_bit(FLAG_MPI, &ai->flags);
2807         }
2808         spin_lock_init(&ai->aux_lock);
2809         sema_init(&ai->sem, 1);
2810         ai->config.len = 0;
2811         ai->pci = pci;
2812         init_waitqueue_head (&ai->thr_wait);
2813         ai->airo_thread_task = kthread_run(airo_thread, dev, dev->name);
2814         if (IS_ERR(ai->airo_thread_task))
2815                 goto err_out_free;
2816         ai->tfm = NULL;
2817         rc = add_airo_dev( dev );
2818         if (rc)
2819                 goto err_out_thr;
2820
2821         if (airo_networks_allocate (ai))
2822                 goto err_out_unlink;
2823         airo_networks_initialize (ai);
2824
2825         /* The Airo-specific entries in the device structure. */
2826         if (test_bit(FLAG_MPI,&ai->flags)) {
2827                 skb_queue_head_init (&ai->txq);
2828                 dev->hard_start_xmit = &mpi_start_xmit;
2829         } else
2830                 dev->hard_start_xmit = &airo_start_xmit;
2831         dev->get_stats = &airo_get_stats;
2832         dev->set_multicast_list = &airo_set_multicast_list;
2833         dev->set_mac_address = &airo_set_mac_address;
2834         dev->do_ioctl = &airo_ioctl;
2835         dev->wireless_handlers = &airo_handler_def;
2836         ai->wireless_data.spy_data = &ai->spy_data;
2837         dev->wireless_data = &ai->wireless_data;
2838         dev->change_mtu = &airo_change_mtu;
2839         dev->open = &airo_open;
2840         dev->stop = &airo_close;
2841         dev->irq = irq;
2842         dev->base_addr = port;
2843
2844         SET_NETDEV_DEV(dev, dmdev);
2845
2846         reset_card (dev, 1);
2847         msleep(400);
2848
2849         rc = request_irq( dev->irq, airo_interrupt, IRQF_SHARED, dev->name, dev );
2850         if (rc) {
2851                 airo_print_err(dev->name, "register interrupt %d failed, rc %d",
2852                                 irq, rc);
2853                 goto err_out_unlink;
2854         }
2855         if (!is_pcmcia) {
2856                 if (!request_region( dev->base_addr, 64, dev->name )) {
2857                         rc = -EBUSY;
2858                         airo_print_err(dev->name, "Couldn't request region");
2859                         goto err_out_irq;
2860                 }
2861         }
2862
2863         if (test_bit(FLAG_MPI,&ai->flags)) {
2864                 if (mpi_map_card(ai, pci, dev->name)) {
2865                         airo_print_err(dev->name, "Could not map memory");
2866                         goto err_out_res;
2867                 }
2868         }
2869
2870         if (probe) {
2871                 if ( setup_card( ai, dev->dev_addr, 1 ) != SUCCESS ) {
2872                         airo_print_err(dev->name, "MAC could not be enabled" );
2873                         rc = -EIO;
2874                         goto err_out_map;
2875                 }
2876         } else if (!test_bit(FLAG_MPI,&ai->flags)) {
2877                 ai->bap_read = fast_bap_read;
2878                 set_bit(FLAG_FLASHING, &ai->flags);
2879         }
2880
2881         /* Test for WPA support */
2882         if (airo_test_wpa_capable(ai)) {
2883                 set_bit(FLAG_WPA_CAPABLE, &ai->flags);
2884                 ai->bssListFirst = RID_WPA_BSSLISTFIRST;
2885                 ai->bssListNext = RID_WPA_BSSLISTNEXT;
2886                 ai->bssListRidLen = sizeof(BSSListRid);
2887         } else {
2888                 ai->bssListFirst = RID_BSSLISTFIRST;
2889                 ai->bssListNext = RID_BSSLISTNEXT;
2890                 ai->bssListRidLen = sizeof(BSSListRid) - sizeof(BSSListRidExtra);
2891         }
2892
2893         rc = register_netdev(dev);
2894         if (rc) {
2895                 airo_print_err(dev->name, "Couldn't register_netdev");
2896                 goto err_out_map;
2897         }
2898         ai->wifidev = init_wifidev(ai, dev);
2899
2900         set_bit(FLAG_REGISTERED,&ai->flags);
2901         airo_print_info(dev->name, "MAC enabled %x:%x:%x:%x:%x:%x",
2902                 dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2],
2903                 dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5] );
2904
2905         /* Allocate the transmit buffers */
2906         if (probe && !test_bit(FLAG_MPI,&ai->flags))
2907                 for( i = 0; i < MAX_FIDS; i++ )
2908                         ai->fids[i] = transmit_allocate(ai,AIRO_DEF_MTU,i>=MAX_FIDS/2);
2909
2910         setup_proc_entry( dev, dev->priv ); /* XXX check for failure */
2911         netif_start_queue(dev);
2912         SET_MODULE_OWNER(dev);
2913         return dev;
2914
2915 err_out_map:
2916         if (test_bit(FLAG_MPI,&ai->flags) && pci) {
2917                 pci_free_consistent(pci, PCI_SHARED_LEN, ai->shared, ai->shared_dma);
2918                 iounmap(ai->pciaux);
2919                 iounmap(ai->pcimem);
2920                 mpi_unmap_card(ai->pci);
2921         }
2922 err_out_res:
2923         if (!is_pcmcia)
2924                 release_region( dev->base_addr, 64 );
2925 err_out_irq:
2926         free_irq(dev->irq, dev);
2927 err_out_unlink:
2928         del_airo_dev(dev);
2929 err_out_thr:
2930         set_bit(JOB_DIE, &ai->jobs);
2931         kthread_stop(ai->airo_thread_task);
2932 err_out_free:
2933         free_netdev(dev);
2934         return NULL;
2935 }
2936
2937 struct net_device *init_airo_card( unsigned short irq, int port, int is_pcmcia,
2938                                   struct device *dmdev)
2939 {
2940         return _init_airo_card ( irq, port, is_pcmcia, NULL, dmdev);
2941 }
2942
2943 EXPORT_SYMBOL(init_airo_card);
2944
2945 static int waitbusy (struct airo_info *ai) {
2946         int delay = 0;
2947         while ((IN4500 (ai, COMMAND) & COMMAND_BUSY) & (delay < 10000)) {
2948                 udelay (10);
2949                 if ((++delay % 20) == 0)
2950                         OUT4500(ai, EVACK, EV_CLEARCOMMANDBUSY);
2951         }
2952         return delay < 10000;
2953 }
2954
2955 int reset_airo_card( struct net_device *dev )
2956 {
2957         int i;
2958         struct airo_info *ai = dev->priv;
2959
2960         if (reset_card (dev, 1))
2961                 return -1;
2962
2963         if ( setup_card(ai, dev->dev_addr, 1 ) != SUCCESS ) {
2964                 airo_print_err(dev->name, "MAC could not be enabled");
2965                 return -1;
2966         }
2967         airo_print_info(dev->name, "MAC enabled %x:%x:%x:%x:%x:%x",
2968                         dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2],
2969                         dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5]);
2970         /* Allocate the transmit buffers if needed */
2971         if (!test_bit(FLAG_MPI,&ai->flags))
2972                 for( i = 0; i < MAX_FIDS; i++ )
2973                         ai->fids[i] = transmit_allocate (ai,AIRO_DEF_MTU,i>=MAX_FIDS/2);
2974
2975         enable_interrupts( ai );
2976         netif_wake_queue(dev);
2977         return 0;
2978 }
2979
2980 EXPORT_SYMBOL(reset_airo_card);
2981
2982 static void airo_send_event(struct net_device *dev) {
2983         struct airo_info *ai = dev->priv;
2984         union iwreq_data wrqu;
2985         StatusRid status_rid;
2986
2987         clear_bit(JOB_EVENT, &ai->jobs);
2988         PC4500_readrid(ai, RID_STATUS, &status_rid, sizeof(status_rid), 0);
2989         up(&ai->sem);
2990         wrqu.data.length = 0;
2991         wrqu.data.flags = 0;
2992         memcpy(wrqu.ap_addr.sa_data, status_rid.bssid[0], ETH_ALEN);
2993         wrqu.ap_addr.sa_family = ARPHRD_ETHER;
2994
2995         /* Send event to user space */
2996         wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL);
2997 }
2998
2999 static void airo_process_scan_results (struct airo_info *ai) {
3000         union iwreq_data        wrqu;
3001         BSSListRid bss;
3002         int rc;
3003         BSSListElement * loop_net;
3004         BSSListElement * tmp_net;
3005
3006         /* Blow away current list of scan results */
3007         list_for_each_entry_safe (loop_net, tmp_net, &ai->network_list, list) {
3008                 list_move_tail (&loop_net->list, &ai->network_free_list);
3009                 /* Don't blow away ->list, just BSS data */
3010                 memset (loop_net, 0, sizeof (loop_net->bss));
3011         }
3012
3013         /* Try to read the first entry of the scan result */
3014         rc = PC4500_readrid(ai, ai->bssListFirst, &bss, ai->bssListRidLen, 0);
3015         if((rc) || (bss.index == 0xffff)) {
3016                 /* No scan results */
3017                 goto out;
3018         }
3019
3020         /* Read and parse all entries */
3021         tmp_net = NULL;
3022         while((!rc) && (bss.index != 0xffff)) {
3023                 /* Grab a network off the free list */
3024                 if (!list_empty(&ai->network_free_list)) {
3025                         tmp_net = list_entry(ai->network_free_list.next,
3026                                             BSSListElement, list);
3027                         list_del(ai->network_free_list.next);
3028                 }
3029
3030                 if (tmp_net != NULL) {
3031                         memcpy(tmp_net, &bss, sizeof(tmp_net->bss));
3032                         list_add_tail(&tmp_net->list, &ai->network_list);
3033                         tmp_net = NULL;
3034                 }
3035
3036                 /* Read next entry */
3037                 rc = PC4500_readrid(ai, ai->bssListNext,
3038                                     &bss, ai->bssListRidLen, 0);
3039         }
3040
3041 out:
3042         ai->scan_timeout = 0;
3043         clear_bit(JOB_SCAN_RESULTS, &ai->jobs);
3044         up(&ai->sem);
3045
3046         /* Send an empty event to user space.
3047          * We don't send the received data on
3048          * the event because it would require
3049          * us to do complex transcoding, and
3050          * we want to minimise the work done in
3051          * the irq handler. Use a request to
3052          * extract the data - Jean II */
3053         wrqu.data.length = 0;
3054         wrqu.data.flags = 0;
3055         wireless_send_event(ai->dev, SIOCGIWSCAN, &wrqu, NULL);
3056 }
3057
3058 static int airo_thread(void *data) {
3059         struct net_device *dev = data;
3060         struct airo_info *ai = dev->priv;
3061         int locked;
3062         
3063         while(1) {
3064                 /* make swsusp happy with our thread */
3065                 try_to_freeze();
3066
3067                 if (test_bit(JOB_DIE, &ai->jobs))
3068                         break;
3069
3070                 if (ai->jobs) {
3071                         locked = down_interruptible(&ai->sem);
3072                 } else {
3073                         wait_queue_t wait;
3074
3075                         init_waitqueue_entry(&wait, current);
3076                         add_wait_queue(&ai->thr_wait, &wait);
3077                         for (;;) {
3078                                 set_current_state(TASK_INTERRUPTIBLE);
3079                                 if (ai->jobs)
3080                                         break;
3081                                 if (ai->expires || ai->scan_timeout) {
3082                                         if (ai->scan_timeout &&
3083                                                         time_after_eq(jiffies,ai->scan_timeout)){
3084                                                 set_bit(JOB_SCAN_RESULTS, &ai->jobs);
3085                                                 break;
3086                                         } else if (ai->expires &&
3087                                                         time_after_eq(jiffies,ai->expires)){
3088                                                 set_bit(JOB_AUTOWEP, &ai->jobs);
3089                                                 break;
3090                                         }
3091                                         if (!kthread_should_stop()) {
3092                                                 unsigned long wake_at;
3093                                                 if (!ai->expires || !ai->scan_timeout) {
3094                                                         wake_at = max(ai->expires,
3095                                                                 ai->scan_timeout);
3096                                                 } else {
3097                                                         wake_at = min(ai->expires,
3098                                                                 ai->scan_timeout);
3099                                                 }
3100                                                 schedule_timeout(wake_at - jiffies);
3101                                                 continue;
3102                                         }
3103                                 } else if (!kthread_should_stop()) {
3104                                         schedule();
3105                                         continue;
3106                                 }
3107                                 break;
3108                         }
3109                         current->state = TASK_RUNNING;
3110                         remove_wait_queue(&ai->thr_wait, &wait);
3111                         locked = 1;
3112                 }
3113
3114                 if (locked)
3115                         continue;
3116
3117                 if (test_bit(JOB_DIE, &ai->jobs)) {
3118                         up(&ai->sem);
3119                         break;
3120                 }
3121
3122                 if (ai->power.event || test_bit(FLAG_FLASHING, &ai->flags)) {
3123                         up(&ai->sem);
3124                         continue;
3125                 }
3126
3127                 if (test_bit(JOB_XMIT, &ai->jobs))
3128                         airo_end_xmit(dev);
3129                 else if (test_bit(JOB_XMIT11, &ai->jobs))
3130                         airo_end_xmit11(dev);
3131                 else if (test_bit(JOB_STATS, &ai->jobs))
3132                         airo_read_stats(ai);
3133                 else if (test_bit(JOB_WSTATS, &ai->jobs))
3134                         airo_read_wireless_stats(ai);
3135                 else if (test_bit(JOB_PROMISC, &ai->jobs))
3136                         airo_set_promisc(ai);
3137                 else if (test_bit(JOB_MIC, &ai->jobs))
3138                         micinit(ai);
3139                 else if (test_bit(JOB_EVENT, &ai->jobs))
3140                         airo_send_event(dev);
3141                 else if (test_bit(JOB_AUTOWEP, &ai->jobs))
3142                         timer_func(dev);
3143                 else if (test_bit(JOB_SCAN_RESULTS, &ai->jobs))
3144                         airo_process_scan_results(ai);
3145                 else  /* Shouldn't get here, but we make sure to unlock */
3146                         up(&ai->sem);
3147         }
3148
3149         return 0;
3150 }
3151
3152 static irqreturn_t airo_interrupt ( int irq, void* dev_id, struct pt_regs *regs) {
3153         struct net_device *dev = (struct net_device *)dev_id;
3154         u16 status;
3155         u16 fid;
3156         struct airo_info *apriv = dev->priv;
3157         u16 savedInterrupts = 0;
3158         int handled = 0;
3159
3160         if (!netif_device_present(dev))
3161                 return IRQ_NONE;
3162
3163         for (;;) {
3164                 status = IN4500( apriv, EVSTAT );
3165                 if ( !(status & STATUS_INTS) || status == 0xffff ) break;
3166
3167                 handled = 1;
3168
3169                 if ( status & EV_AWAKE ) {
3170                         OUT4500( apriv, EVACK, EV_AWAKE );
3171                         OUT4500( apriv, EVACK, EV_AWAKE );
3172                 }
3173
3174                 if (!savedInterrupts) {
3175                         savedInterrupts = IN4500( apriv, EVINTEN );
3176                         OUT4500( apriv, EVINTEN, 0 );
3177                 }
3178
3179                 if ( status & EV_MIC ) {
3180                         OUT4500( apriv, EVACK, EV_MIC );
3181                         if (test_bit(FLAG_MIC_CAPABLE, &apriv->flags)) {
3182                                 set_bit(JOB_MIC, &apriv->jobs);
3183                                 wake_up_interruptible(&apriv->thr_wait);
3184                         }
3185                 }
3186                 if ( status & EV_LINK ) {
3187                         union iwreq_data        wrqu;
3188                         int scan_forceloss = 0;
3189                         /* The link status has changed, if you want to put a
3190                            monitor hook in, do it here.  (Remember that
3191                            interrupts are still disabled!)
3192                         */
3193                         u16 newStatus = IN4500(apriv, LINKSTAT);
3194                         OUT4500( apriv, EVACK, EV_LINK);
3195                         /* Here is what newStatus means: */
3196 #define NOBEACON 0x8000 /* Loss of sync - missed beacons */
3197 #define MAXRETRIES 0x8001 /* Loss of sync - max retries */
3198 #define MAXARL 0x8002 /* Loss of sync - average retry level exceeded*/
3199 #define FORCELOSS 0x8003 /* Loss of sync - host request */
3200 #define TSFSYNC 0x8004 /* Loss of sync - TSF synchronization */
3201 #define DEAUTH 0x8100 /* Deauthentication (low byte is reason code) */
3202 #define DISASS 0x8200 /* Disassociation (low byte is reason code) */
3203 #define ASSFAIL 0x8400 /* Association failure (low byte is reason
3204                           code) */
3205 #define AUTHFAIL 0x0300 /* Authentication failure (low byte is reason
3206                            code) */
3207 #define ASSOCIATED 0x0400 /* Associated */
3208 #define REASSOCIATED 0x0600 /* Reassociated?  Only on firmware >= 5.30.17 */
3209 #define RC_RESERVED 0 /* Reserved return code */
3210 #define RC_NOREASON 1 /* Unspecified reason */
3211 #define RC_AUTHINV 2 /* Previous authentication invalid */
3212 #define RC_DEAUTH 3 /* Deauthenticated because sending station is
3213                        leaving */
3214 #define RC_NOACT 4 /* Disassociated due to inactivity */
3215 #define RC_MAXLOAD 5 /* Disassociated because AP is unable to handle
3216                         all currently associated stations */
3217 #define RC_BADCLASS2 6 /* Class 2 frame received from
3218                           non-Authenticated station */
3219 #define RC_BADCLASS3 7 /* Class 3 frame received from
3220                           non-Associated station */
3221 #define RC_STATLEAVE 8 /* Disassociated because sending station is
3222                           leaving BSS */
3223 #define RC_NOAUTH 9 /* Station requesting (Re)Association is not
3224                        Authenticated with the responding station */
3225                         if (newStatus == FORCELOSS && apriv->scan_timeout > 0)
3226                                 scan_forceloss = 1;
3227                         if(newStatus == ASSOCIATED || newStatus == REASSOCIATED) {
3228                                 if (auto_wep)
3229                                         apriv->expires = 0;
3230                                 if (apriv->list_bss_task)
3231                                         wake_up_process(apriv->list_bss_task);
3232                                 set_bit(FLAG_UPDATE_UNI, &apriv->flags);
3233                                 set_bit(FLAG_UPDATE_MULTI, &apriv->flags);
3234
3235                                 if (down_trylock(&apriv->sem) != 0) {
3236                                         set_bit(JOB_EVENT, &apriv->jobs);
3237                                         wake_up_interruptible(&apriv->thr_wait);
3238                                 } else
3239                                         airo_send_event(dev);
3240                         } else if (!scan_forceloss) {
3241                                 if (auto_wep && !apriv->expires) {
3242                                         apriv->expires = RUN_AT(3*HZ);
3243                                         wake_up_interruptible(&apriv->thr_wait);
3244                                 }
3245
3246                                 /* Send event to user space */
3247                                 memset(wrqu.ap_addr.sa_data, '\0', ETH_ALEN);
3248                                 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
3249                                 wireless_send_event(dev, SIOCGIWAP, &wrqu,NULL);
3250                         }
3251                 }
3252
3253                 /* Check to see if there is something to receive */
3254                 if ( status & EV_RX  ) {
3255                         struct sk_buff *skb = NULL;
3256                         u16 fc, len, hdrlen = 0;
3257 #pragma pack(1)
3258                         struct {
3259                                 u16 status, len;
3260                                 u8 rssi[2];
3261                                 u8 rate;
3262                                 u8 freq;
3263                                 u16 tmp[4];
3264                         } hdr;
3265 #pragma pack()
3266                         u16 gap;
3267                         u16 tmpbuf[4];
3268                         u16 *buffer;
3269
3270                         if (test_bit(FLAG_MPI,&apriv->flags)) {
3271                                 if (test_bit(FLAG_802_11, &apriv->flags))
3272                                         mpi_receive_802_11(apriv);
3273                                 else
3274                                         mpi_receive_802_3(apriv);
3275                                 OUT4500(apriv, EVACK, EV_RX);
3276                                 goto exitrx;
3277                         }
3278
3279                         fid = IN4500( apriv, RXFID );
3280
3281                         /* Get the packet length */
3282                         if (test_bit(FLAG_802_11, &apriv->flags)) {
3283                                 bap_setup (apriv, fid, 4, BAP0);
3284                                 bap_read (apriv, (u16*)&hdr, sizeof(hdr), BAP0);
3285                                 /* Bad CRC. Ignore packet */
3286                                 if (le16_to_cpu(hdr.status) & 2)
3287                                         hdr.len = 0;
3288                                 if (apriv->wifidev == NULL)
3289                                         hdr.len = 0;
3290                         } else {
3291                                 bap_setup (apriv, fid, 0x36, BAP0);
3292                                 bap_read (apriv, (u16*)&hdr.len, 2, BAP0);
3293                         }
3294                         len = le16_to_cpu(hdr.len);
3295
3296                         if (len > AIRO_DEF_MTU) {
3297                                 airo_print_err(apriv->dev->name, "Bad size %d", len);
3298                                 goto badrx;
3299                         }
3300                         if (len == 0)
3301                                 goto badrx;
3302
3303                         if (test_bit(FLAG_802_11, &apriv->flags)) {
3304                                 bap_read (apriv, (u16*)&fc, sizeof(fc), BAP0);
3305                                 fc = le16_to_cpu(fc);
3306                                 switch (fc & 0xc) {
3307                                         case 4:
3308                                                 if ((fc & 0xe0) == 0xc0)
3309                                                         hdrlen = 10;
3310                                                 else
3311                                                         hdrlen = 16;
3312                                                 break;
3313                                         case 8:
3314                                                 if ((fc&0x300)==0x300){
3315                                                         hdrlen = 30;
3316                                                         break;
3317                                                 }
3318                                         default:
3319                                                 hdrlen = 24;
3320                                 }
3321                         } else
3322                                 hdrlen = ETH_ALEN * 2;
3323
3324                         skb = dev_alloc_skb( len + hdrlen + 2 + 2 );
3325                         if ( !skb ) {
3326                                 apriv->stats.rx_dropped++;
3327                                 goto badrx;
3328                         }
3329                         skb_reserve(skb, 2); /* This way the IP header is aligned */
3330                         buffer = (u16*)skb_put (skb, len + hdrlen);
3331                         if (test_bit(FLAG_802_11, &apriv->flags)) {
3332                                 buffer[0] = fc;
3333                                 bap_read (apriv, buffer + 1, hdrlen - 2, BAP0);
3334                                 if (hdrlen == 24)
3335                                         bap_read (apriv, tmpbuf, 6, BAP0);
3336
3337                                 bap_read (apriv, &gap, sizeof(gap), BAP0);
3338                                 gap = le16_to_cpu(gap);
3339                                 if (gap) {
3340                                         if (gap <= 8) {
3341                                                 bap_read (apriv, tmpbuf, gap, BAP0);
3342                                         } else {
3343                                                 airo_print_err(apriv->dev->name, "gaplen too "
3344                                                         "big. Problems will follow...");
3345                                         }
3346                                 }
3347                                 bap_read (apriv, buffer + hdrlen/2, len, BAP0);
3348                         } else {
3349                                 MICBuffer micbuf;
3350                                 bap_read (apriv, buffer, ETH_ALEN*2, BAP0);
3351                                 if (apriv->micstats.enabled) {
3352                                         bap_read (apriv,(u16*)&micbuf,sizeof(micbuf),BAP0);
3353                                         if (ntohs(micbuf.typelen) > 0x05DC)
3354                                                 bap_setup (apriv, fid, 0x44, BAP0);
3355                                         else {
3356                                                 if (len <= sizeof(micbuf))
3357                                                         goto badmic;
3358
3359                                                 len -= sizeof(micbuf);
3360                                                 skb_trim (skb, len + hdrlen);
3361                                         }
3362                                 }
3363                                 bap_read(apriv,buffer+ETH_ALEN,len,BAP0);
3364                                 if (decapsulate(apriv,&micbuf,(etherHead*)buffer,len)) {
3365 badmic:
3366                                         dev_kfree_skb_irq (skb);
3367 badrx:
3368                                         OUT4500( apriv, EVACK, EV_RX);
3369                                         goto exitrx;
3370                                 }
3371                         }
3372 #ifdef WIRELESS_SPY
3373                         if (apriv->spy_data.spy_number > 0) {
3374                                 char *sa;
3375                                 struct iw_quality wstats;
3376                                 /* Prepare spy data : addr + qual */
3377                                 if (!test_bit(FLAG_802_11, &apriv->flags)) {
3378                                         sa = (char*)buffer + 6;
3379                                         bap_setup (apriv, fid, 8, BAP0);
3380                                         bap_read (apriv, (u16*)hdr.rssi, 2, BAP0);
3381                                 } else
3382                                         sa = (char*)buffer + 10;
3383                                 wstats.qual = hdr.rssi[0];
3384                                 if (apriv->rssi)
3385                                         wstats.level = 0x100 - apriv->rssi[hdr.rssi[1]].rssidBm;
3386                                 else
3387                                         wstats.level = (hdr.rssi[1] + 321) / 2;
3388                                 wstats.noise = apriv->wstats.qual.noise;
3389                                 wstats.updated = IW_QUAL_LEVEL_UPDATED
3390                                         | IW_QUAL_QUAL_UPDATED
3391                                         | IW_QUAL_DBM;
3392                                 /* Update spy records */
3393                                 wireless_spy_update(dev, sa, &wstats);
3394                         }
3395 #endif /* WIRELESS_SPY */
3396                         OUT4500( apriv, EVACK, EV_RX);
3397
3398                         if (test_bit(FLAG_802_11, &apriv->flags)) {
3399                                 skb->mac.raw = skb->data;
3400                                 skb->pkt_type = PACKET_OTHERHOST;
3401                                 skb->dev = apriv->wifidev;
3402                                 skb->protocol = htons(ETH_P_802_2);
3403                         } else {
3404                                 skb->dev = dev;
3405                                 skb->protocol = eth_type_trans(skb,dev);
3406                         }
3407                         skb->dev->last_rx = jiffies;
3408                         skb->ip_summed = CHECKSUM_NONE;
3409
3410                         netif_rx( skb );
3411                 }
3412 exitrx:
3413
3414                 /* Check to see if a packet has been transmitted */
3415                 if (  status & ( EV_TX|EV_TXCPY|EV_TXEXC ) ) {
3416                         int i;
3417                         int len = 0;
3418                         int index = -1;
3419
3420                         if (test_bit(FLAG_MPI,&apriv->flags)) {
3421                                 unsigned long flags;
3422
3423                                 if (status & EV_TXEXC)
3424                                         get_tx_error(apriv, -1);
3425                                 spin_lock_irqsave(&apriv->aux_lock, flags);
3426                                 if (!skb_queue_empty(&apriv->txq)) {
3427                                         spin_unlock_irqrestore(&apriv->aux_lock,flags);
3428                                         mpi_send_packet (dev);
3429                                 } else {
3430                                         clear_bit(FLAG_PENDING_XMIT, &apriv->flags);
3431                                         spin_unlock_irqrestore(&apriv->aux_lock,flags);
3432                                         netif_wake_queue (dev);
3433                                 }
3434                                 OUT4500( apriv, EVACK,
3435                                         status & (EV_TX|EV_TXCPY|EV_TXEXC));
3436                                 goto exittx;
3437                         }
3438
3439                         fid = IN4500(apriv, TXCOMPLFID);
3440
3441                         for( i = 0; i < MAX_FIDS; i++ ) {
3442                                 if ( ( apriv->fids[i] & 0xffff ) == fid ) {
3443                                         len = apriv->fids[i] >> 16;
3444                                         index = i;
3445                                 }
3446                         }
3447                         if (index != -1) {
3448                                 if (status & EV_TXEXC)
3449                                         get_tx_error(apriv, index);
3450                                 OUT4500( apriv, EVACK, status & (EV_TX | EV_TXEXC));
3451                                 /* Set up to be used again */
3452                                 apriv->fids[index] &= 0xffff;
3453                                 if (index < MAX_FIDS / 2) {
3454                                         if (!test_bit(FLAG_PENDING_XMIT, &apriv->flags))
3455                                                 netif_wake_queue(dev);
3456                                 } else {
3457                                         if (!test_bit(FLAG_PENDING_XMIT11, &apriv->flags))
3458                                                 netif_wake_queue(apriv->wifidev);
3459                                 }
3460                         } else {
3461                                 OUT4500( apriv, EVACK, status & (EV_TX | EV_TXCPY | EV_TXEXC));
3462                                 airo_print_err(apriv->dev->name, "Unallocated FID was "
3463                                         "used to xmit" );
3464                         }
3465                 }
3466 exittx:
3467                 if ( status & ~STATUS_INTS & ~IGNORE_INTS )
3468                         airo_print_warn(apriv->dev->name, "Got weird status %x",
3469                                 status & ~STATUS_INTS & ~IGNORE_INTS );
3470         }
3471
3472         if (savedInterrupts)
3473                 OUT4500( apriv, EVINTEN, savedInterrupts );
3474
3475         /* done.. */
3476         return IRQ_RETVAL(handled);
3477 }
3478
3479 /*
3480  *  Routines to talk to the card
3481  */
3482
3483 /*
3484  *  This was originally written for the 4500, hence the name
3485  *  NOTE:  If use with 8bit mode and SMP bad things will happen!
3486  *         Why would some one do 8 bit IO in an SMP machine?!?
3487  */
3488 static void OUT4500( struct airo_info *ai, u16 reg, u16 val ) {
3489         if (test_bit(FLAG_MPI,&ai->flags))
3490                 reg <<= 1;
3491         if ( !do8bitIO )
3492                 outw( val, ai->dev->base_addr + reg );
3493         else {
3494                 outb( val & 0xff, ai->dev->base_addr + reg );
3495                 outb( val >> 8, ai->dev->base_addr + reg + 1 );
3496         }
3497 }
3498
3499 static u16 IN4500( struct airo_info *ai, u16 reg ) {
3500         unsigned short rc;
3501
3502         if (test_bit(FLAG_MPI,&ai->flags))
3503                 reg <<= 1;
3504         if ( !do8bitIO )
3505                 rc = inw( ai->dev->base_addr + reg );
3506         else {
3507                 rc = inb( ai->dev->base_addr + reg );
3508                 rc += ((int)inb( ai->dev->base_addr + reg + 1 )) << 8;
3509         }
3510         return rc;
3511 }
3512
3513 static int enable_MAC( struct airo_info *ai, Resp *rsp, int lock ) {
3514         int rc;
3515         Cmd cmd;
3516
3517         /* FLAG_RADIO_OFF : Radio disabled via /proc or Wireless Extensions
3518          * FLAG_RADIO_DOWN : Radio disabled via "ifconfig ethX down"
3519          * Note : we could try to use !netif_running(dev) in enable_MAC()
3520          * instead of this flag, but I don't trust it *within* the
3521          * open/close functions, and testing both flags together is
3522          * "cheaper" - Jean II */
3523         if (ai->flags & FLAG_RADIO_MASK) return SUCCESS;
3524
3525         if (lock && down_interruptible(&ai->sem))
3526                 return -ERESTARTSYS;
3527
3528         if (!test_bit(FLAG_ENABLED, &ai->flags)) {
3529                 memset(&cmd, 0, sizeof(cmd));
3530                 cmd.cmd = MAC_ENABLE;
3531                 rc = issuecommand(ai, &cmd, rsp);
3532                 if (rc == SUCCESS)
3533                         set_bit(FLAG_ENABLED, &ai->flags);
3534         } else
3535                 rc = SUCCESS;
3536
3537         if (lock)
3538             up(&ai->sem);
3539
3540         if (rc)
3541                 airo_print_err(ai->dev->name, "%s: Cannot enable MAC, err=%d",
3542                         __FUNCTION__, rc);
3543         return rc;
3544 }
3545
3546 static void disable_MAC( struct airo_info *ai, int lock ) {
3547         Cmd cmd;
3548         Resp rsp;
3549
3550         if (lock && down_interruptible(&ai->sem))
3551                 return;
3552
3553         if (test_bit(FLAG_ENABLED, &ai->flags)) {
3554                 memset(&cmd, 0, sizeof(cmd));
3555                 cmd.cmd = MAC_DISABLE; // disable in case already enabled
3556                 issuecommand(ai, &cmd, &rsp);
3557                 clear_bit(FLAG_ENABLED, &ai->flags);
3558         }
3559         if (lock)
3560                 up(&ai->sem);
3561 }
3562
3563 static void enable_interrupts( struct airo_info *ai ) {
3564         /* Enable the interrupts */
3565         OUT4500( ai, EVINTEN, STATUS_INTS );
3566 }
3567
3568 static void disable_interrupts( struct airo_info *ai ) {
3569         OUT4500( ai, EVINTEN, 0 );
3570 }
3571
3572 static void mpi_receive_802_3(struct airo_info *ai)
3573 {
3574         RxFid rxd;
3575         int len = 0;
3576         struct sk_buff *skb;
3577         char *buffer;
3578         int off = 0;
3579         MICBuffer micbuf;
3580
3581         memcpy_fromio(&rxd, ai->rxfids[0].card_ram_off, sizeof(rxd));
3582         /* Make sure we got something */
3583         if (rxd.rdy && rxd.valid == 0) {
3584                 len = rxd.len + 12;
3585                 if (len < 12 || len > 2048)
3586                         goto badrx;
3587
3588                 skb = dev_alloc_skb(len);
3589                 if (!skb) {
3590                         ai->stats.rx_dropped++;
3591                         goto badrx;
3592                 }
3593                 buffer = skb_put(skb,len);
3594                 memcpy(buffer, ai->rxfids[0].virtual_host_addr, ETH_ALEN * 2);
3595                 if (ai->micstats.enabled) {
3596                         memcpy(&micbuf,
3597                                 ai->rxfids[0].virtual_host_addr + ETH_ALEN * 2,
3598                                 sizeof(micbuf));
3599                         if (ntohs(micbuf.typelen) <= 0x05DC) {
3600                                 if (len <= sizeof(micbuf) + ETH_ALEN * 2)
3601                                         goto badmic;
3602
3603                                 off = sizeof(micbuf);
3604                                 skb_trim (skb, len - off);
3605                         }
3606                 }
3607                 memcpy(buffer + ETH_ALEN * 2,
3608                         ai->rxfids[0].virtual_host_addr + ETH_ALEN * 2 + off,
3609                         len - ETH_ALEN * 2 - off);
3610                 if (decapsulate (ai, &micbuf, (etherHead*)buffer, len - off - ETH_ALEN * 2)) {
3611 badmic:
3612                         dev_kfree_skb_irq (skb);
3613                         goto badrx;
3614                 }
3615 #ifdef WIRELESS_SPY
3616                 if (ai->spy_data.spy_number > 0) {
3617                         char *sa;
3618                         struct iw_quality wstats;
3619                         /* Prepare spy data : addr + qual */
3620                         sa = buffer + ETH_ALEN;
3621                         wstats.qual = 0; /* XXX Where do I get that info from ??? */
3622                         wstats.level = 0;
3623                         wstats.updated = 0;
3624                         /* Update spy records */
3625                         wireless_spy_update(ai->dev, sa, &wstats);
3626                 }
3627 #endif /* WIRELESS_SPY */
3628
3629                 skb->dev = ai->dev;
3630                 skb->ip_summed = CHECKSUM_NONE;
3631                 skb->protocol = eth_type_trans(skb, ai->dev);
3632                 skb->dev->last_rx = jiffies;
3633                 netif_rx(skb);
3634         }
3635 badrx:
3636         if (rxd.valid == 0) {
3637                 rxd.valid = 1;
3638                 rxd.rdy = 0;
3639                 rxd.len = PKTSIZE;
3640                 memcpy_toio(ai->rxfids[0].card_ram_off, &rxd, sizeof(rxd));
3641         }
3642 }
3643
3644 void mpi_receive_802_11 (struct airo_info *ai)
3645 {
3646         RxFid rxd;
3647         struct sk_buff *skb = NULL;
3648         u16 fc, len, hdrlen = 0;
3649 #pragma pack(1)
3650         struct {
3651                 u16 status, len;
3652                 u8 rssi[2];
3653                 u8 rate;
3654                 u8 freq;
3655                 u16 tmp[4];
3656         } hdr;
3657 #pragma pack()
3658         u16 gap;
3659         u16 *buffer;
3660         char *ptr = ai->rxfids[0].virtual_host_addr+4;
3661
3662         memcpy_fromio(&rxd, ai->rxfids[0].card_ram_off, sizeof(rxd));
3663         memcpy ((char *)&hdr, ptr, sizeof(hdr));
3664         ptr += sizeof(hdr);
3665         /* Bad CRC. Ignore packet */
3666         if (le16_to_cpu(hdr.status) & 2)
3667                 hdr.len = 0;
3668         if (ai->wifidev == NULL)
3669                 hdr.len = 0;
3670         len = le16_to_cpu(hdr.len);
3671         if (len > AIRO_DEF_MTU) {
3672                 airo_print_err(ai->dev->name, "Bad size %d", len);
3673                 goto badrx;
3674         }
3675         if (len == 0)
3676                 goto badrx;
3677
3678         memcpy ((char *)&fc, ptr, sizeof(fc));
3679         fc = le16_to_cpu(fc);
3680         switch (fc & 0xc) {
3681                 case 4:
3682                         if ((fc & 0xe0) == 0xc0)
3683                                 hdrlen = 10;
3684                         else
3685                                 hdrlen = 16;
3686                         break;
3687                 case 8:
3688                         if ((fc&0x300)==0x300){
3689                                 hdrlen = 30;
3690                                 break;
3691                         }
3692                 default:
3693                         hdrlen = 24;
3694         }
3695
3696         skb = dev_alloc_skb( len + hdrlen + 2 );
3697         if ( !skb ) {
3698                 ai->stats.rx_dropped++;
3699                 goto badrx;
3700         }
3701         buffer = (u16*)skb_put (skb, len + hdrlen);
3702         memcpy ((char *)buffer, ptr, hdrlen);
3703         ptr += hdrlen;
3704         if (hdrlen == 24)
3705                 ptr += 6;
3706         memcpy ((char *)&gap, ptr, sizeof(gap));
3707         ptr += sizeof(gap);
3708         gap = le16_to_cpu(gap);
3709         if (gap) {
3710                 if (gap <= 8)
3711                         ptr += gap;
3712                 else
3713                         airo_print_err(ai->dev->name,
3714                             "gaplen too big. Problems will follow...");
3715         }
3716         memcpy ((char *)buffer + hdrlen, ptr, len);
3717         ptr += len;
3718 #ifdef IW_WIRELESS_SPY    /* defined in iw_handler.h */
3719         if (ai->spy_data.spy_number > 0) {
3720                 char *sa;
3721                 struct iw_quality wstats;
3722                 /* Prepare spy data : addr + qual */
3723                 sa = (char*)buffer + 10;
3724                 wstats.qual = hdr.rssi[0];
3725                 if (ai->rssi)
3726                         wstats.level = 0x100 - ai->rssi[hdr.rssi[1]].rssidBm;
3727                 else
3728                         wstats.level = (hdr.rssi[1] + 321) / 2;
3729                 wstats.noise = ai->wstats.qual.noise;
3730                 wstats.updated = IW_QUAL_QUAL_UPDATED
3731                         | IW_QUAL_LEVEL_UPDATED
3732                         | IW_QUAL_DBM;
3733                 /* Update spy records */
3734                 wireless_spy_update(ai->dev, sa, &wstats);
3735         }
3736 #endif /* IW_WIRELESS_SPY */
3737         skb->mac.raw = skb->data;
3738         skb->pkt_type = PACKET_OTHERHOST;
3739         skb->dev = ai->wifidev;
3740         skb->protocol = htons(ETH_P_802_2);
3741         skb->dev->last_rx = jiffies;
3742         skb->ip_summed = CHECKSUM_NONE;
3743         netif_rx( skb );
3744 badrx:
3745         if (rxd.valid == 0) {
3746                 rxd.valid = 1;
3747                 rxd.rdy = 0;
3748                 rxd.len = PKTSIZE;
3749                 memcpy_toio(ai->rxfids[0].card_ram_off, &rxd, sizeof(rxd));
3750         }
3751 }
3752
3753 static u16 setup_card(struct airo_info *ai, u8 *mac, int lock)
3754 {
3755         Cmd cmd;
3756         Resp rsp;
3757         int status;
3758         int i;
3759         SsidRid mySsid;
3760         u16 lastindex;
3761         WepKeyRid wkr;
3762         int rc;
3763
3764         memset( &mySsid, 0, sizeof( mySsid ) );
3765         kfree (ai->flash);
3766         ai->flash = NULL;
3767
3768         /* The NOP is the first step in getting the card going */
3769         cmd.cmd = NOP;
3770         cmd.parm0 = cmd.parm1 = cmd.parm2 = 0;
3771         if (lock && down_interruptible(&ai->sem))
3772                 return ERROR;
3773         if ( issuecommand( ai, &cmd, &rsp ) != SUCCESS ) {
3774                 if (lock)
3775                         up(&ai->sem);
3776                 return ERROR;
3777         }
3778         disable_MAC( ai, 0);
3779
3780         // Let's figure out if we need to use the AUX port
3781         if (!test_bit(FLAG_MPI,&ai->flags)) {
3782                 cmd.cmd = CMD_ENABLEAUX;
3783                 if (issuecommand(ai, &cmd, &rsp) != SUCCESS) {
3784                         if (lock)
3785                                 up(&ai->sem);
3786                         airo_print_err(ai->dev->name, "Error checking for AUX port");
3787                         return ERROR;
3788                 }
3789                 if (!aux_bap || rsp.status & 0xff00) {
3790                         ai->bap_read = fast_bap_read;
3791                         airo_print_dbg(ai->dev->name, "Doing fast bap_reads");
3792                 } else {
3793                         ai->bap_read = aux_bap_read;
3794                         airo_print_dbg(ai->dev->name, "Doing AUX bap_reads");
3795                 }
3796         }
3797         if (lock)
3798                 up(&ai->sem);
3799         if (ai->config.len == 0) {
3800                 tdsRssiRid rssi_rid;
3801                 CapabilityRid cap_rid;
3802
3803                 kfree(ai->APList);
3804                 ai->APList = NULL;
3805                 kfree(ai->SSID);
3806                 ai->SSID = NULL;
3807                 // general configuration (read/modify/write)
3808                 status = readConfigRid(ai, lock);
3809                 if ( status != SUCCESS ) return ERROR;
3810
3811                 status = readCapabilityRid(ai, &cap_rid, lock);
3812                 if ( status != SUCCESS ) return ERROR;
3813
3814                 status = PC4500_readrid(ai,RID_RSSI,&rssi_rid,sizeof(rssi_rid),lock);
3815                 if ( status == SUCCESS ) {
3816                         if (ai->rssi || (ai->rssi = kmalloc(512, GFP_KERNEL)) != NULL)
3817                                 memcpy(ai->rssi, (u8*)&rssi_rid + 2, 512); /* Skip RID length member */
3818                 }
3819                 else {
3820                         kfree(ai->rssi);
3821                         ai->rssi = NULL;
3822                         if (cap_rid.softCap & 8)
3823                                 ai->config.rmode |= RXMODE_NORMALIZED_RSSI;
3824                         else
3825                                 airo_print_warn(ai->dev->name, "unknown received signal "
3826                                                 "level scale");
3827                 }
3828                 ai->config.opmode = adhoc ? MODE_STA_IBSS : MODE_STA_ESS;
3829                 ai->config.authType = AUTH_OPEN;
3830                 ai->config.modulation = MOD_CCK;
3831
3832                 if ((cap_rid.len>=sizeof(cap_rid)) && (cap_rid.extSoftCap&1) &&
3833                     (micsetup(ai) == SUCCESS)) {
3834                         ai->config.opmode |= MODE_MIC;
3835                         set_bit(FLAG_MIC_CAPABLE, &ai->flags);
3836                 }
3837
3838                 /* Save off the MAC */
3839                 for( i = 0; i < ETH_ALEN; i++ ) {
3840                         mac[i] = ai->config.macAddr[i];
3841                 }
3842
3843                 /* Check to see if there are any insmod configured
3844                    rates to add */
3845                 if ( rates[0] ) {
3846                         int i = 0;
3847                         memset(ai->config.rates,0,sizeof(ai->config.rates));
3848                         for( i = 0; i < 8 && rates[i]; i++ ) {
3849                                 ai->config.rates[i] = rates[i];
3850                         }
3851                 }
3852                 if ( basic_rate > 0 ) {
3853                         int i;
3854                         for( i = 0; i < 8; i++ ) {
3855                                 if ( ai->config.rates[i] == basic_rate ||
3856                                      !ai->config.rates ) {
3857                                         ai->config.rates[i] = basic_rate | 0x80;
3858                                         break;
3859                                 }
3860                         }
3861                 }
3862                 set_bit (FLAG_COMMIT, &ai->flags);
3863         }
3864
3865         /* Setup the SSIDs if present */
3866         if ( ssids[0] ) {
3867                 int i;
3868                 for( i = 0; i < 3 && ssids[i]; i++ ) {
3869                         mySsid.ssids[i].len = strlen(ssids[i]);
3870                         if ( mySsid.ssids[i].len > 32 )
3871                                 mySsid.ssids[i].len = 32;
3872                         memcpy(mySsid.ssids[i].ssid, ssids[i],
3873                                mySsid.ssids[i].len);
3874                 }
3875                 mySsid.len = sizeof(mySsid);
3876         }
3877
3878         status = writeConfigRid(ai, lock);
3879         if ( status != SUCCESS ) return ERROR;
3880
3881         /* Set up the SSID list */
3882         if ( ssids[0] ) {
3883                 status = writeSsidRid(ai, &mySsid, lock);
3884                 if ( status != SUCCESS ) return ERROR;
3885         }
3886
3887         status = enable_MAC(ai, &rsp, lock);
3888         if ( status != SUCCESS || (rsp.status & 0xFF00) != 0) {
3889                 airo_print_err(ai->dev->name, "Bad MAC enable reason = %x, rid = %x,"
3890                         " offset = %d", rsp.rsp0, rsp.rsp1, rsp.rsp2 );
3891                 return ERROR;
3892         }
3893
3894         /* Grab the initial wep key, we gotta save it for auto_wep */
3895         rc = readWepKeyRid(ai, &wkr, 1, lock);
3896         if (rc == SUCCESS) do {
3897                 lastindex = wkr.kindex;
3898                 if (wkr.kindex == 0xffff) {
3899                         ai->defindex = wkr.mac[0];
3900                 }
3901                 rc = readWepKeyRid(ai, &wkr, 0, lock);
3902         } while(lastindex != wkr.kindex);
3903
3904         if (auto_wep) {
3905                 ai->expires = RUN_AT(3*HZ);
3906                 wake_up_interruptible(&ai->thr_wait);
3907         }
3908
3909         return SUCCESS;
3910 }
3911
3912 static u16 issuecommand(struct airo_info *ai, Cmd *pCmd, Resp *pRsp) {
3913         // Im really paranoid about letting it run forever!
3914         int max_tries = 600000;
3915
3916         if (IN4500(ai, EVSTAT) & EV_CMD)
3917                 OUT4500(ai, EVACK, EV_CMD);
3918
3919         OUT4500(ai, PARAM0, pCmd->parm0);
3920         OUT4500(ai, PARAM1, pCmd->parm1);
3921         OUT4500(ai, PARAM2, pCmd->parm2);
3922         OUT4500(ai, COMMAND, pCmd->cmd);
3923
3924         while (max_tries-- && (IN4500(ai, EVSTAT) & EV_CMD) == 0) {
3925                 if ((IN4500(ai, COMMAND)) == pCmd->cmd)
3926                         // PC4500 didn't notice command, try again
3927                         OUT4500(ai, COMMAND, pCmd->cmd);
3928                 if (!in_atomic() && (max_tries & 255) == 0)
3929                         schedule();
3930         }
3931
3932         if ( max_tries == -1 ) {
3933                 airo_print_err(ai->dev->name,
3934                         "Max tries exceeded when issueing command");
3935                 if (IN4500(ai, COMMAND) & COMMAND_BUSY)
3936                         OUT4500(ai, EVACK, EV_CLEARCOMMANDBUSY);
3937                 return ERROR;
3938         }
3939
3940         // command completed
3941         pRsp->status = IN4500(ai, STATUS);
3942         pRsp->rsp0 = IN4500(ai, RESP0);
3943         pRsp->rsp1 = IN4500(ai, RESP1);
3944         pRsp->rsp2 = IN4500(ai, RESP2);
3945         if ((pRsp->status & 0xff00)!=0 && pCmd->cmd != CMD_SOFTRESET)
3946                 airo_print_err(ai->dev->name,
3947                         "cmd:%x status:%x rsp0:%x rsp1:%x rsp2:%x",
3948                         pCmd->cmd, pRsp->status, pRsp->rsp0, pRsp->rsp1,
3949                         pRsp->rsp2);
3950
3951         // clear stuck command busy if necessary
3952         if (IN4500(ai, COMMAND) & COMMAND_BUSY) {
3953                 OUT4500(ai, EVACK, EV_CLEARCOMMANDBUSY);
3954         }
3955         // acknowledge processing the status/response
3956         OUT4500(ai, EVACK, EV_CMD);
3957
3958         return SUCCESS;
3959 }
3960
3961 /* Sets up the bap to start exchange data.  whichbap should
3962  * be one of the BAP0 or BAP1 defines.  Locks should be held before
3963  * calling! */
3964 static int bap_setup(struct airo_info *ai, u16 rid, u16 offset, int whichbap )
3965 {
3966         int timeout = 50;
3967         int max_tries = 3;
3968
3969         OUT4500(ai, SELECT0+whichbap, rid);
3970         OUT4500(ai, OFFSET0+whichbap, offset);
3971         while (1) {
3972                 int status = IN4500(ai, OFFSET0+whichbap);
3973                 if (status & BAP_BUSY) {
3974                         /* This isn't really a timeout, but its kinda
3975                            close */
3976                         if (timeout--) {
3977                                 continue;
3978                         }
3979                 } else if ( status & BAP_ERR ) {
3980                         /* invalid rid or offset */
3981                         airo_print_err(ai->dev->name, "BAP error %x %d",
3982                                 status, whichbap );
3983                         return ERROR;
3984                 } else if (status & BAP_DONE) { // success
3985                         return SUCCESS;
3986                 }
3987                 if ( !(max_tries--) ) {
3988                         airo_print_err(ai->dev->name,
3989                                 "airo: BAP setup error too many retries\n");
3990                         return ERROR;
3991                 }
3992                 // -- PC4500 missed it, try again
3993                 OUT4500(ai, SELECT0+whichbap, rid);
3994                 OUT4500(ai, OFFSET0+whichbap, offset);
3995                 timeout = 50;
3996         }
3997 }
3998
3999 /* should only be called by aux_bap_read.  This aux function and the
4000    following use concepts not documented in the developers guide.  I
4001    got them from a patch given to my by Aironet */
4002 static u16 aux_setup(struct airo_info *ai, u16 page,
4003                      u16 offset, u16 *len)
4004 {
4005         u16 next;
4006
4007         OUT4500(ai, AUXPAGE, page);
4008         OUT4500(ai, AUXOFF, 0);
4009         next = IN4500(ai, AUXDATA);
4010         *len = IN4500(ai, AUXDATA)&0xff;
4011         if (offset != 4) OUT4500(ai, AUXOFF, offset);
4012         return next;
4013 }
4014
4015 /* requires call to bap_setup() first */
4016 static int aux_bap_read(struct airo_info *ai, u16 *pu16Dst,
4017                         int bytelen, int whichbap)
4018 {
4019         u16 len;
4020         u16 page;
4021         u16 offset;
4022         u16 next;
4023         int words;
4024         int i;
4025         unsigned long flags;
4026
4027         spin_lock_irqsave(&ai->aux_lock, flags);
4028         page = IN4500(ai, SWS0+whichbap);
4029         offset = IN4500(ai, SWS2+whichbap);
4030         next = aux_setup(ai, page, offset, &len);
4031         words = (bytelen+1)>>1;
4032
4033         for (i=0; i<words;) {
4034                 int count;
4035                 count = (len>>1) < (words-i) ? (len>>1) : (words-i);
4036                 if ( !do8bitIO )
4037                         insw( ai->dev->base_addr+DATA0+whichbap,
4038                               pu16Dst+i,count );
4039                 else
4040                         insb( ai->dev->base_addr+DATA0+whichbap,
4041                               pu16Dst+i, count << 1 );
4042                 i += count;
4043                 if (i<words) {
4044                         next = aux_setup(ai, next, 4, &len);
4045                 }
4046         }
4047         spin_unlock_irqrestore(&ai->aux_lock, flags);
4048         return SUCCESS;
4049 }
4050
4051
4052 /* requires call to bap_setup() first */
4053 static int fast_bap_read(struct airo_info *ai, u16 *pu16Dst,
4054                          int bytelen, int whichbap)
4055 {
4056         bytelen = (bytelen + 1) & (~1); // round up to even value
4057         if ( !do8bitIO )
4058                 insw( ai->dev->base_addr+DATA0+whichbap, pu16Dst, bytelen>>1 );
4059         else
4060                 insb( ai->dev->base_addr+DATA0+whichbap, pu16Dst, bytelen );
4061         return SUCCESS;
4062 }
4063
4064 /* requires call to bap_setup() first */
4065 static int bap_write(struct airo_info *ai, const u16 *pu16Src,
4066                      int bytelen, int whichbap)
4067 {
4068         bytelen = (bytelen + 1) & (~1); // round up to even value
4069         if ( !do8bitIO )
4070                 outsw( ai->dev->base_addr+DATA0+whichbap,
4071                        pu16Src, bytelen>>1 );
4072         else
4073                 outsb( ai->dev->base_addr+DATA0+whichbap, pu16Src, bytelen );
4074         return SUCCESS;
4075 }
4076
4077 static int PC4500_accessrid(struct airo_info *ai, u16 rid, u16 accmd)
4078 {
4079         Cmd cmd; /* for issuing commands */
4080         Resp rsp; /* response from commands */
4081         u16 status;
4082
4083         memset(&cmd, 0, sizeof(cmd));
4084         cmd.cmd = accmd;
4085         cmd.parm0 = rid;
4086         status = issuecommand(ai, &cmd, &rsp);
4087         if (status != 0) return status;
4088         if ( (rsp.status & 0x7F00) != 0) {
4089                 return (accmd << 8) + (rsp.rsp0 & 0xFF);
4090         }
4091         return 0;
4092 }
4093
4094 /*  Note, that we are using BAP1 which is also used by transmit, so
4095  *  we must get a lock. */
4096 static int PC4500_readrid(struct airo_info *ai, u16 rid, void *pBuf, int len, int lock)
4097 {
4098         u16 status;
4099         int rc = SUCCESS;
4100
4101         if (lock) {
4102                 if (down_interruptible(&ai->sem))
4103                         return ERROR;
4104         }
4105         if (test_bit(FLAG_MPI,&ai->flags)) {
4106                 Cmd cmd;
4107                 Resp rsp;
4108
4109                 memset(&cmd, 0, sizeof(cmd));
4110                 memset(&rsp, 0, sizeof(rsp));
4111                 ai->config_desc.rid_desc.valid = 1;
4112                 ai->config_desc.rid_desc.len = RIDSIZE;
4113                 ai->config_desc.rid_desc.rid = 0;
4114                 ai->config_desc.rid_desc.host_addr = ai->ridbus;
4115
4116                 cmd.cmd = CMD_ACCESS;
4117                 cmd.parm0 = rid;
4118
4119                 memcpy_toio(ai->config_desc.card_ram_off,
4120                         &ai->config_desc.rid_desc, sizeof(Rid));
4121
4122                 rc = issuecommand(ai, &cmd, &rsp);
4123
4124                 if (rsp.status & 0x7f00)
4125                         rc = rsp.rsp0;
4126                 if (!rc)
4127                         memcpy(pBuf, ai->config_desc.virtual_host_addr, len);
4128                 goto done;
4129         } else {
4130                 if ((status = PC4500_accessrid(ai, rid, CMD_ACCESS))!=SUCCESS) {
4131                         rc = status;
4132                         goto done;
4133                 }
4134                 if (bap_setup(ai, rid, 0, BAP1) != SUCCESS) {
4135                         rc = ERROR;
4136                         goto done;
4137                 }
4138                 // read the rid length field
4139                 bap_read(ai, pBuf, 2, BAP1);
4140                 // length for remaining part of rid
4141                 len = min(len, (int)le16_to_cpu(*(u16*)pBuf)) - 2;
4142
4143                 if ( len <= 2 ) {
4144                         airo_print_err(ai->dev->name,
4145                                 "Rid %x has a length of %d which is too short",
4146                                 (int)rid, (int)len );
4147                         rc = ERROR;
4148                         goto done;
4149                 }
4150                 // read remainder of the rid
4151                 rc = bap_read(ai, ((u16*)pBuf)+1, len, BAP1);
4152         }
4153 done:
4154         if (lock)
4155                 up(&ai->sem);
4156         return rc;
4157 }
4158
4159 /*  Note, that we are using BAP1 which is also used by transmit, so
4160  *  make sure this isnt called when a transmit is happening */
4161 static int PC4500_writerid(struct airo_info *ai, u16 rid,
4162                            const void *pBuf, int len, int lock)
4163 {
4164         u16 status;
4165         int rc = SUCCESS;
4166
4167         *(u16*)pBuf = cpu_to_le16((u16)len);
4168
4169         if (lock) {
4170                 if (down_interruptible(&ai->sem))
4171                         return ERROR;
4172         }
4173         if (test_bit(FLAG_MPI,&ai->flags)) {
4174                 Cmd cmd;
4175                 Resp rsp;
4176
4177                 if (test_bit(FLAG_ENABLED, &ai->flags) && (RID_WEP_TEMP != rid))
4178                         airo_print_err(ai->dev->name,
4179                                 "%s: MAC should be disabled (rid=%04x)",
4180                                 __FUNCTION__, rid);
4181                 memset(&cmd, 0, sizeof(cmd));
4182                 memset(&rsp, 0, sizeof(rsp));
4183
4184                 ai->config_desc.rid_desc.valid = 1;
4185                 ai->config_desc.rid_desc.len = *((u16 *)pBuf);
4186                 ai->config_desc.rid_desc.rid = 0;
4187
4188                 cmd.cmd = CMD_WRITERID;
4189                 cmd.parm0 = rid;
4190
4191                 memcpy_toio(ai->config_desc.card_ram_off,
4192                         &ai->config_desc.rid_desc, sizeof(Rid));
4193
4194                 if (len < 4 || len > 2047) {
4195                         airo_print_err(ai->dev->name, "%s: len=%d", __FUNCTION__, len);
4196                         rc = -1;
4197                 } else {
4198                         memcpy((char *)ai->config_desc.virtual_host_addr,
4199                                 pBuf, len);
4200
4201                         rc = issuecommand(ai, &cmd, &rsp);
4202                         if ((rc & 0xff00) != 0) {
4203                                 airo_print_err(ai->dev->name, "%s: Write rid Error %d",
4204                                                 __FUNCTION__, rc);
4205                                 airo_print_err(ai->dev->name, "%s: Cmd=%04x",
4206                                                 __FUNCTION__, cmd.cmd);
4207                         }
4208
4209                         if ((rsp.status & 0x7f00))
4210                                 rc = rsp.rsp0;
4211                 }
4212         } else {
4213                 // --- first access so that we can write the rid data
4214                 if ( (status = PC4500_accessrid(ai, rid, CMD_ACCESS)) != 0) {
4215                         rc = status;
4216                         goto done;
4217                 }
4218                 // --- now write the rid data
4219                 if (bap_setup(ai, rid, 0, BAP1) != SUCCESS) {
4220                         rc = ERROR;
4221                         goto done;
4222                 }
4223                 bap_write(ai, pBuf, len, BAP1);
4224                 // ---now commit the rid data
4225                 rc = PC4500_accessrid(ai, rid, 0x100|CMD_ACCESS);
4226         }
4227 done:
4228         if (lock)
4229                 up(&ai->sem);
4230         return rc;
4231 }
4232
4233 /* Allocates a FID to be used for transmitting packets.  We only use
4234    one for now. */
4235 static u16 transmit_allocate(struct airo_info *ai, int lenPayload, int raw)
4236 {
4237         unsigned int loop = 3000;
4238         Cmd cmd;
4239         Resp rsp;
4240         u16 txFid;
4241         u16 txControl;
4242
4243         cmd.cmd = CMD_ALLOCATETX;
4244         cmd.parm0 = lenPayload;
4245         if (down_interruptible(&ai->sem))
4246                 return ERROR;
4247         if (issuecommand(ai, &cmd, &rsp) != SUCCESS) {
4248                 txFid = ERROR;
4249                 goto done;
4250         }
4251         if ( (rsp.status & 0xFF00) != 0) {
4252                 txFid = ERROR;
4253                 goto done;
4254         }
4255         /* wait for the allocate event/indication
4256          * It makes me kind of nervous that this can just sit here and spin,
4257          * but in practice it only loops like four times. */
4258         while (((IN4500(ai, EVSTAT) & EV_ALLOC) == 0) && --loop);
4259         if (!loop) {
4260                 txFid = ERROR;
4261                 goto done;
4262         }
4263
4264         // get the allocated fid and acknowledge
4265         txFid = IN4500(ai, TXALLOCFID);
4266         OUT4500(ai, EVACK, EV_ALLOC);
4267
4268         /*  The CARD is pretty cool since it converts the ethernet packet
4269          *  into 802.11.  Also note that we don't release the FID since we
4270          *  will be using the same one over and over again. */
4271         /*  We only have to setup the control once since we are not
4272          *  releasing the fid. */
4273         if (raw)
4274                 txControl = cpu_to_le16(TXCTL_TXOK | TXCTL_TXEX | TXCTL_802_11
4275                         | TXCTL_ETHERNET | TXCTL_NORELEASE);
4276         else
4277                 txControl = cpu_to_le16(TXCTL_TXOK | TXCTL_TXEX | TXCTL_802_3
4278                         | TXCTL_ETHERNET | TXCTL_NORELEASE);
4279         if (bap_setup(ai, txFid, 0x0008, BAP1) != SUCCESS)
4280                 txFid = ERROR;
4281         else
4282                 bap_write(ai, &txControl, sizeof(txControl), BAP1);
4283
4284 done:
4285         up(&ai->sem);
4286
4287         return txFid;
4288 }
4289
4290 /* In general BAP1 is dedicated to transmiting packets.  However,
4291    since we need a BAP when accessing RIDs, we also use BAP1 for that.
4292    Make sure the BAP1 spinlock is held when this is called. */
4293 static int transmit_802_3_packet(struct airo_info *ai, int len, char *pPacket)
4294 {
4295         u16 payloadLen;
4296         Cmd cmd;
4297         Resp rsp;
4298         int miclen = 0;
4299         u16 txFid = len;
4300         MICBuffer pMic;
4301
4302         len >>= 16;
4303
4304         if (len <= ETH_ALEN * 2) {
4305                 airo_print_warn(ai->dev->name, "Short packet %d", len);
4306                 return ERROR;
4307         }
4308         len -= ETH_ALEN * 2;
4309
4310         if (test_bit(FLAG_MIC_CAPABLE, &ai->flags) && ai->micstats.enabled && 
4311             (ntohs(((u16 *)pPacket)[6]) != 0x888E)) {
4312                 if (encapsulate(ai,(etherHead *)pPacket,&pMic,len) != SUCCESS)
4313                         return ERROR;
4314                 miclen = sizeof(pMic);
4315         }
4316         // packet is destination[6], source[6], payload[len-12]
4317         // write the payload length and dst/src/payload
4318         if (bap_setup(ai, txFid, 0x0036, BAP1) != SUCCESS) return ERROR;
4319         /* The hardware addresses aren't counted as part of the payload, so
4320          * we have to subtract the 12 bytes for the addresses off */
4321         payloadLen = cpu_to_le16(len + miclen);
4322         bap_write(ai, &payloadLen, sizeof(payloadLen),BAP1);
4323         bap_write(ai, (const u16*)pPacket, sizeof(etherHead), BAP1);
4324         if (miclen)
4325                 bap_write(ai, (const u16*)&pMic, miclen, BAP1);
4326         bap_write(ai, (const u16*)(pPacket + sizeof(etherHead)), len, BAP1);
4327         // issue the transmit command
4328         memset( &cmd, 0, sizeof( cmd ) );
4329         cmd.cmd = CMD_TRANSMIT;
4330         cmd.parm0 = txFid;
4331         if (issuecommand(ai, &cmd, &rsp) != SUCCESS) return ERROR;
4332         if ( (rsp.status & 0xFF00) != 0) return ERROR;
4333         return SUCCESS;
4334 }
4335
4336 static int transmit_802_11_packet(struct airo_info *ai, int len, char *pPacket)
4337 {
4338         u16 fc, payloadLen;
4339         Cmd cmd;
4340         Resp rsp;
4341         int hdrlen;
4342         struct {
4343                 u8 addr4[ETH_ALEN];
4344                 u16 gaplen;
4345                 u8 gap[6];
4346         } gap;
4347         u16 txFid = len;
4348         len >>= 16;
4349         gap.gaplen = 6;
4350
4351         fc = le16_to_cpu(*(const u16*)pPacket);
4352         switch (fc & 0xc) {
4353                 case 4:
4354                         if ((fc & 0xe0) == 0xc0)
4355                                 hdrlen = 10;
4356                         else
4357                                 hdrlen = 16;
4358                         break;
4359                 case 8:
4360                         if ((fc&0x300)==0x300){
4361                                 hdrlen = 30;
4362                                 break;
4363                         }
4364                 default:
4365                         hdrlen = 24;
4366         }
4367
4368         if (len < hdrlen) {
4369                 airo_print_warn(ai->dev->name, "Short packet %d", len);
4370                 return ERROR;
4371         }
4372
4373         /* packet is 802.11 header +  payload
4374          * write the payload length and dst/src/payload */
4375         if (bap_setup(ai, txFid, 6, BAP1) != SUCCESS) return ERROR;
4376         /* The 802.11 header aren't counted as part of the payload, so
4377          * we have to subtract the header bytes off */
4378         payloadLen = cpu_to_le16(len-hdrlen);
4379         bap_write(ai, &payloadLen, sizeof(payloadLen),BAP1);
4380         if (bap_setup(ai, txFid, 0x0014, BAP1) != SUCCESS) return ERROR;
4381         bap_write(ai, (const u16*)pPacket, hdrlen, BAP1);
4382         bap_write(ai, hdrlen == 30 ?
4383                 (const u16*)&gap.gaplen : (const u16*)&gap, 38 - hdrlen, BAP1);
4384
4385         bap_write(ai, (const u16*)(pPacket + hdrlen), len - hdrlen, BAP1);
4386         // issue the transmit command
4387         memset( &cmd, 0, sizeof( cmd ) );
4388         cmd.cmd = CMD_TRANSMIT;
4389         cmd.parm0 = txFid;
4390         if (issuecommand(ai, &cmd, &rsp) != SUCCESS) return ERROR;
4391         if ( (rsp.status & 0xFF00) != 0) return ERROR;
4392         return SUCCESS;
4393 }
4394
4395 /*
4396  *  This is the proc_fs routines.  It is a bit messier than I would
4397  *  like!  Feel free to clean it up!
4398  */
4399
4400 static ssize_t proc_read( struct file *file,
4401                           char __user *buffer,
4402                           size_t len,
4403                           loff_t *offset);
4404
4405 static ssize_t proc_write( struct file *file,
4406                            const char __user *buffer,
4407                            size_t len,
4408                            loff_t *offset );
4409 static int proc_close( struct inode *inode, struct file *file );
4410
4411 static int proc_stats_open( struct inode *inode, struct file *file );
4412 static int proc_statsdelta_open( struct inode *inode, struct file *file );
4413 static int proc_status_open( struct inode *inode, struct file *file );
4414 static int proc_SSID_open( struct inode *inode, struct file *file );
4415 static int proc_APList_open( struct inode *inode, struct file *file );
4416 static int proc_BSSList_open( struct inode *inode, struct file *file );
4417 static int proc_config_open( struct inode *inode, struct file *file );
4418 static int proc_wepkey_open( struct inode *inode, struct file *file );
4419
4420 static struct file_operations proc_statsdelta_ops = {
4421         .read           = proc_read,
4422         .open           = proc_statsdelta_open,
4423         .release        = proc_close
4424 };
4425
4426 static struct file_operations proc_stats_ops = {
4427         .read           = proc_read,
4428         .open           = proc_stats_open,
4429         .release        = proc_close
4430 };
4431
4432 static struct file_operations proc_status_ops = {
4433         .read           = proc_read,
4434         .open           = proc_status_open,
4435         .release        = proc_close
4436 };
4437
4438 static struct file_operations proc_SSID_ops = {
4439         .read           = proc_read,
4440         .write          = proc_write,
4441         .open           = proc_SSID_open,
4442         .release        = proc_close
4443 };
4444
4445 static struct file_operations proc_BSSList_ops = {
4446         .read           = proc_read,
4447         .write          = proc_write,
4448         .open           = proc_BSSList_open,
4449         .release        = proc_close
4450 };
4451
4452 static struct file_operations proc_APList_ops = {
4453         .read           = proc_read,
4454         .write          = proc_write,
4455         .open           = proc_APList_open,
4456         .release        = proc_close
4457 };
4458
4459 static struct file_operations proc_config_ops = {
4460         .read           = proc_read,
4461         .write          = proc_write,
4462         .open           = proc_config_open,
4463         .release        = proc_close
4464 };
4465
4466 static struct file_operations proc_wepkey_ops = {
4467         .read           = proc_read,
4468         .write          = proc_write,
4469         .open           = proc_wepkey_open,
4470         .release        = proc_close
4471 };
4472
4473 static struct proc_dir_entry *airo_entry;
4474
4475 struct proc_data {
4476         int release_buffer;
4477         int readlen;
4478         char *rbuffer;
4479         int writelen;
4480         int maxwritelen;
4481         char *wbuffer;
4482         void (*on_close) (struct inode *, struct file *);
4483 };
4484
4485 #ifndef SETPROC_OPS
4486 #define SETPROC_OPS(entry, ops) (entry)->proc_fops = &(ops)
4487 #endif
4488
4489 static int setup_proc_entry( struct net_device *dev,
4490                              struct airo_info *apriv ) {
4491         struct proc_dir_entry *entry;
4492         /* First setup the device directory */
4493         strcpy(apriv->proc_name,dev->name);
4494         apriv->proc_entry = create_proc_entry(apriv->proc_name,
4495                                               S_IFDIR|airo_perm,
4496                                               airo_entry);
4497         apriv->proc_entry->uid = proc_uid;
4498         apriv->proc_entry->gid = proc_gid;
4499         apriv->proc_entry->owner = THIS_MODULE;
4500
4501         /* Setup the StatsDelta */
4502         entry = create_proc_entry("StatsDelta",
4503                                   S_IFREG | (S_IRUGO&proc_perm),
4504                                   apriv->proc_entry);
4505         entry->uid = proc_uid;
4506         entry->gid = proc_gid;
4507         entry->data = dev;
4508         entry->owner = THIS_MODULE;
4509         SETPROC_OPS(entry, proc_statsdelta_ops);
4510
4511         /* Setup the Stats */
4512         entry = create_proc_entry("Stats",
4513                                   S_IFREG | (S_IRUGO&proc_perm),
4514                                   apriv->proc_entry);
4515         entry->uid = proc_uid;
4516         entry->gid = proc_gid;
4517         entry->data = dev;
4518         entry->owner = THIS_MODULE;
4519         SETPROC_OPS(entry, proc_stats_ops);
4520
4521         /* Setup the Status */
4522         entry = create_proc_entry("Status",
4523                                   S_IFREG | (S_IRUGO&proc_perm),
4524                                   apriv->proc_entry);
4525         entry->uid = proc_uid;
4526         entry->gid = proc_gid;
4527         entry->data = dev;
4528         entry->owner = THIS_MODULE;
4529         SETPROC_OPS(entry, proc_status_ops);
4530
4531         /* Setup the Config */
4532         entry = create_proc_entry("Config",
4533                                   S_IFREG | proc_perm,
4534                                   apriv->proc_entry);
4535         entry->uid = proc_uid;
4536         entry->gid = proc_gid;
4537         entry->data = dev;
4538         entry->owner = THIS_MODULE;
4539         SETPROC_OPS(entry, proc_config_ops);
4540
4541         /* Setup the SSID */
4542         entry = create_proc_entry("SSID",
4543                                   S_IFREG | proc_perm,
4544                                   apriv->proc_entry);
4545         entry->uid = proc_uid;
4546         entry->gid = proc_gid;
4547         entry->data = dev;
4548         entry->owner = THIS_MODULE;
4549         SETPROC_OPS(entry, proc_SSID_ops);
4550
4551         /* Setup the APList */
4552         entry = create_proc_entry("APList",
4553                                   S_IFREG | proc_perm,
4554                                   apriv->proc_entry);
4555         entry->uid = proc_uid;
4556         entry->gid = proc_gid;
4557         entry->data = dev;
4558         entry->owner = THIS_MODULE;
4559         SETPROC_OPS(entry, proc_APList_ops);
4560
4561         /* Setup the BSSList */
4562         entry = create_proc_entry("BSSList",
4563                                   S_IFREG | proc_perm,
4564                                   apriv->proc_entry);
4565         entry->uid = proc_uid;
4566         entry->gid = proc_gid;
4567         entry->data = dev;
4568         entry->owner = THIS_MODULE;
4569         SETPROC_OPS(entry, proc_BSSList_ops);
4570
4571         /* Setup the WepKey */
4572         entry = create_proc_entry("WepKey",
4573                                   S_IFREG | proc_perm,
4574                                   apriv->proc_entry);
4575         entry->uid = proc_uid;
4576         entry->gid = proc_gid;
4577         entry->data = dev;
4578         entry->owner = THIS_MODULE;
4579         SETPROC_OPS(entry, proc_wepkey_ops);
4580
4581         return 0;
4582 }
4583
4584 static int takedown_proc_entry( struct net_device *dev,
4585                                 struct airo_info *apriv ) {
4586         if ( !apriv->proc_entry->namelen ) return 0;
4587         remove_proc_entry("Stats",apriv->proc_entry);
4588         remove_proc_entry("StatsDelta",apriv->proc_entry);
4589         remove_proc_entry("Status",apriv->proc_entry);
4590         remove_proc_entry("Config",apriv->proc_entry);
4591         remove_proc_entry("SSID",apriv->proc_entry);
4592         remove_proc_entry("APList",apriv->proc_entry);
4593         remove_proc_entry("BSSList",apriv->proc_entry);
4594         remove_proc_entry("WepKey",apriv->proc_entry);
4595         remove_proc_entry(apriv->proc_name,airo_entry);
4596         return 0;
4597 }
4598
4599 /*
4600  *  What we want from the proc_fs is to be able to efficiently read
4601  *  and write the configuration.  To do this, we want to read the
4602  *  configuration when the file is opened and write it when the file is
4603  *  closed.  So basically we allocate a read buffer at open and fill it
4604  *  with data, and allocate a write buffer and read it at close.
4605  */
4606
4607 /*
4608  *  The read routine is generic, it relies on the preallocated rbuffer
4609  *  to supply the data.
4610  */
4611 static ssize_t proc_read( struct file *file,
4612                           char __user *buffer,
4613                           size_t len,
4614                           loff_t *offset )
4615 {
4616         loff_t pos = *offset;
4617         struct proc_data *priv = (struct proc_data*)file->private_data;
4618
4619         if (!priv->rbuffer)
4620                 return -EINVAL;
4621
4622         if (pos < 0)
4623                 return -EINVAL;
4624         if (pos >= priv->readlen)
4625                 return 0;
4626         if (len > priv->readlen - pos)
4627                 len = priv->readlen - pos;
4628         if (copy_to_user(buffer, priv->rbuffer + pos, len))
4629                 return -EFAULT;
4630         *offset = pos + len;
4631         return len;
4632 }
4633
4634 /*
4635  *  The write routine is generic, it fills in a preallocated rbuffer
4636  *  to supply the data.
4637  */
4638 static ssize_t proc_write( struct file *file,
4639                            const char __user *buffer,
4640                            size_t len,
4641                            loff_t *offset )
4642 {
4643         loff_t pos = *offset;
4644         struct proc_data *priv = (struct proc_data*)file->private_data;
4645
4646         if (!priv->wbuffer)
4647                 return -EINVAL;
4648
4649         if (pos < 0)
4650                 return -EINVAL;
4651         if (pos >= priv->maxwritelen)
4652                 return 0;
4653         if (len > priv->maxwritelen - pos)
4654                 len = priv->maxwritelen - pos;
4655         if (copy_from_user(priv->wbuffer + pos, buffer, len))
4656                 return -EFAULT;
4657         if ( pos + len > priv->writelen )
4658                 priv->writelen = len + file->f_pos;
4659         *offset = pos + len;
4660         return len;
4661 }
4662
4663 static int proc_status_open( struct inode *inode, struct file *file ) {
4664         struct proc_data *data;
4665         struct proc_dir_entry *dp = PDE(inode);
4666         struct net_device *dev = dp->data;
4667         struct airo_info *apriv = dev->priv;
4668         CapabilityRid cap_rid;
4669         StatusRid status_rid;
4670         int i;
4671
4672         if ((file->private_data = kzalloc(sizeof(struct proc_data ), GFP_KERNEL)) == NULL)
4673                 return -ENOMEM;
4674         data = (struct proc_data *)file->private_data;
4675         if ((data->rbuffer = kmalloc( 2048, GFP_KERNEL )) == NULL) {
4676                 kfree (file->private_data);
4677                 return -ENOMEM;
4678         }
4679
4680         readStatusRid(apriv, &status_rid, 1);
4681         readCapabilityRid(apriv, &cap_rid, 1);
4682
4683         i = sprintf(data->rbuffer, "Status: %s%s%s%s%s%s%s%s%s\n",
4684                     status_rid.mode & 1 ? "CFG ": "",
4685                     status_rid.mode & 2 ? "ACT ": "",
4686                     status_rid.mode & 0x10 ? "SYN ": "",
4687                     status_rid.mode & 0x20 ? "LNK ": "",
4688                     status_rid.mode & 0x40 ? "LEAP ": "",
4689                     status_rid.mode & 0x80 ? "PRIV ": "",
4690                     status_rid.mode & 0x100 ? "KEY ": "",
4691                     status_rid.mode & 0x200 ? "WEP ": "",
4692                     status_rid.mode & 0x8000 ? "ERR ": "");
4693         sprintf( data->rbuffer+i, "Mode: %x\n"
4694                  "Signal Strength: %d\n"
4695                  "Signal Quality: %d\n"
4696                  "SSID: %-.*s\n"
4697                  "AP: %-.16s\n"
4698                  "Freq: %d\n"
4699                  "BitRate: %dmbs\n"
4700                  "Driver Version: %s\n"
4701                  "Device: %s\nManufacturer: %s\nFirmware Version: %s\n"
4702                  "Radio type: %x\nCountry: %x\nHardware Version: %x\n"
4703                  "Software Version: %x\nSoftware Subversion: %x\n"
4704                  "Boot block version: %x\n",
4705                  (int)status_rid.mode,
4706                  (int)status_rid.normalizedSignalStrength,
4707                  (int)status_rid.signalQuality,
4708                  (int)status_rid.SSIDlen,
4709                  status_rid.SSID,
4710                  status_rid.apName,
4711                  (int)status_rid.channel,
4712                  (int)status_rid.currentXmitRate/2,
4713                  version,
4714                  cap_rid.prodName,
4715                  cap_rid.manName,
4716                  cap_rid.prodVer,
4717                  cap_rid.radioType,
4718                  cap_rid.country,
4719                  cap_rid.hardVer,
4720                  (int)cap_rid.softVer,
4721                  (int)cap_rid.softSubVer,
4722                  (int)cap_rid.bootBlockVer );
4723         data->readlen = strlen( data->rbuffer );
4724         return 0;
4725 }
4726
4727 static int proc_stats_rid_open(struct inode*, struct file*, u16);
4728 static int proc_statsdelta_open( struct inode *inode,
4729                                  struct file *file ) {
4730         if (file->f_mode&FMODE_WRITE) {
4731                 return proc_stats_rid_open(inode, file, RID_STATSDELTACLEAR);
4732         }
4733         return proc_stats_rid_open(inode, file, RID_STATSDELTA);
4734 }
4735
4736 static int proc_stats_open( struct inode *inode, struct file *file ) {
4737         return proc_stats_rid_open(inode, file, RID_STATS);
4738 }
4739
4740 static int proc_stats_rid_open( struct inode *inode,
4741                                 struct file *file,
4742                                 u16 rid ) {
4743         struct proc_data *data;
4744         struct proc_dir_entry *dp = PDE(inode);
4745         struct net_device *dev = dp->data;
4746         struct airo_info *apriv = dev->priv;
4747         StatsRid stats;
4748         int i, j;
4749         u32 *vals = stats.vals;
4750
4751         if ((file->private_data = kzalloc(sizeof(struct proc_data ), GFP_KERNEL)) == NULL)
4752                 return -ENOMEM;
4753         data = (struct proc_data *)file->private_data;
4754         if ((data->rbuffer = kmalloc( 4096, GFP_KERNEL )) == NULL) {
4755                 kfree (file->private_data);
4756                 return -ENOMEM;
4757         }
4758
4759         readStatsRid(apriv, &stats, rid, 1);
4760
4761         j = 0;
4762         for(i=0; statsLabels[i]!=(char *)-1 &&
4763                     i*4<stats.len; i++){
4764                 if (!statsLabels[i]) continue;
4765                 if (j+strlen(statsLabels[i])+16>4096) {
4766                         airo_print_warn(apriv->dev->name,
4767                                "Potentially disasterous buffer overflow averted!");
4768                         break;
4769                 }
4770                 j+=sprintf(data->rbuffer+j, "%s: %u\n", statsLabels[i], vals[i]);
4771         }
4772         if (i*4>=stats.len){
4773                 airo_print_warn(apriv->dev->name, "Got a short rid");
4774         }
4775         data->readlen = j;
4776         return 0;
4777 }
4778
4779 static int get_dec_u16( char *buffer, int *start, int limit ) {
4780         u16 value;
4781         int valid = 0;
4782         for( value = 0; buffer[*start] >= '0' &&
4783                      buffer[*start] <= '9' &&
4784                      *start < limit; (*start)++ ) {
4785                 valid = 1;
4786                 value *= 10;
4787                 value += buffer[*start] - '0';
4788         }
4789         if ( !valid ) return -1;
4790         return value;
4791 }
4792
4793 static int airo_config_commit(struct net_device *dev,
4794                               struct iw_request_info *info, void *zwrq,
4795                               char *extra);
4796
4797 static void proc_config_on_close( struct inode *inode, struct file *file ) {
4798         struct proc_data *data = file->private_data;
4799         struct proc_dir_entry *dp = PDE(inode);
4800         struct net_device *dev = dp->data;
4801         struct airo_info *ai = dev->priv;
4802         char *line;
4803
4804         if ( !data->writelen ) return;
4805
4806         readConfigRid(ai, 1);
4807         set_bit (FLAG_COMMIT, &ai->flags);
4808
4809         line = data->wbuffer;
4810         while( line[0] ) {
4811 /*** Mode processing */
4812                 if ( !strncmp( line, "Mode: ", 6 ) ) {
4813                         line += 6;
4814                         if ((ai->config.rmode & 0xff) >= RXMODE_RFMON)
4815                                         set_bit (FLAG_RESET, &ai->flags);
4816                         ai->config.rmode &= 0xfe00;
4817                         clear_bit (FLAG_802_11, &ai->flags);
4818                         ai->config.opmode &= 0xFF00;
4819                         ai->config.scanMode = SCANMODE_ACTIVE;
4820                         if ( line[0] == 'a' ) {
4821                                 ai->config.opmode |= 0;
4822                         } else {
4823                                 ai->config.opmode |= 1;
4824                                 if ( line[0] == 'r' ) {
4825                                         ai->config.rmode |= RXMODE_RFMON | RXMODE_DISABLE_802_3_HEADER;
4826                                         ai->config.scanMode = SCANMODE_PASSIVE;
4827                                         set_bit (FLAG_802_11, &ai->flags);
4828                                 } else if ( line[0] == 'y' ) {
4829                                         ai->config.rmode |= RXMODE_RFMON_ANYBSS | RXMODE_DISABLE_802_3_HEADER;
4830                                         ai->config.scanMode = SCANMODE_PASSIVE;
4831                                         set_bit (FLAG_802_11, &ai->flags);
4832                                 } else if ( line[0] == 'l' )
4833                                         ai->config.rmode |= RXMODE_LANMON;
4834                         }
4835                         set_bit (FLAG_COMMIT, &ai->flags);
4836                 }
4837
4838 /*** Radio status */
4839                 else if (!strncmp(line,"Radio: ", 7)) {
4840                         line += 7;
4841                         if (!strncmp(line,"off",3)) {
4842                                 set_bit (FLAG_RADIO_OFF, &ai->flags);
4843                         } else {
4844                                 clear_bit (FLAG_RADIO_OFF, &ai->flags);
4845                         }
4846                 }
4847 /*** NodeName processing */
4848                 else if ( !strncmp( line, "NodeName: ", 10 ) ) {
4849                         int j;
4850
4851                         line += 10;
4852                         memset( ai->config.nodeName, 0, 16 );
4853 /* Do the name, assume a space between the mode and node name */
4854                         for( j = 0; j < 16 && line[j] != '\n'; j++ ) {
4855                                 ai->config.nodeName[j] = line[j];
4856                         }
4857                         set_bit (FLAG_COMMIT, &ai->flags);
4858                 }
4859
4860 /*** PowerMode processing */
4861                 else if ( !strncmp( line, "PowerMode: ", 11 ) ) {
4862                         line += 11;
4863                         if ( !strncmp( line, "PSPCAM", 6 ) ) {
4864                                 ai->config.powerSaveMode = POWERSAVE_PSPCAM;
4865                                 set_bit (FLAG_COMMIT, &ai->flags);
4866                         } else if ( !strncmp( line, "PSP", 3 ) ) {
4867                                 ai->config.powerSaveMode = POWERSAVE_PSP;
4868                                 set_bit (FLAG_COMMIT, &ai->flags);
4869                         } else {
4870                                 ai->config.powerSaveMode = POWERSAVE_CAM;
4871                                 set_bit (FLAG_COMMIT, &ai->flags);
4872                         }
4873                 } else if ( !strncmp( line, "DataRates: ", 11 ) ) {
4874                         int v, i = 0, k = 0; /* i is index into line,
4875                                                 k is index to rates */
4876
4877                         line += 11;
4878                         while((v = get_dec_u16(line, &i, 3))!=-1) {
4879                                 ai->config.rates[k++] = (u8)v;
4880                                 line += i + 1;
4881                                 i = 0;
4882                         }
4883                         set_bit (FLAG_COMMIT, &ai->flags);
4884                 } else if ( !strncmp( line, "Channel: ", 9 ) ) {
4885                         int v, i = 0;
4886                         line += 9;
4887                         v = get_dec_u16(line, &i, i+3);
4888                         if ( v != -1 ) {
4889                                 ai->config.channelSet = (u16)v;
4890                                 set_bit (FLAG_COMMIT, &ai->flags);
4891                         }
4892                 } else if ( !strncmp( line, "XmitPower: ", 11 ) ) {
4893                         int v, i = 0;
4894                         line += 11;
4895                         v = get_dec_u16(line, &i, i+3);
4896                         if ( v != -1 ) {
4897                                 ai->config.txPower = (u16)v;
4898                                 set_bit (FLAG_COMMIT, &ai->flags);
4899                         }
4900                 } else if ( !strncmp( line, "WEP: ", 5 ) ) {
4901                         line += 5;
4902                         switch( line[0] ) {
4903                         case 's':
4904                                 ai->config.authType = (u16)AUTH_SHAREDKEY;
4905                                 break;
4906                         case 'e':
4907                                 ai->config.authType = (u16)AUTH_ENCRYPT;
4908                                 break;
4909                         default:
4910                                 ai->config.authType = (u16)AUTH_OPEN;
4911                                 break;
4912                         }
4913                         set_bit (FLAG_COMMIT, &ai->flags);
4914                 } else if ( !strncmp( line, "LongRetryLimit: ", 16 ) ) {
4915                         int v, i = 0;
4916
4917                         line += 16;
4918                         v = get_dec_u16(line, &i, 3);
4919                         v = (v<0) ? 0 : ((v>255) ? 255 : v);
4920                         ai->config.longRetryLimit = (u16)v;
4921                         set_bit (FLAG_COMMIT, &ai->flags);
4922                 } else if ( !strncmp( line, "ShortRetryLimit: ", 17 ) ) {
4923                         int v, i = 0;
4924
4925                         line += 17;
4926                         v = get_dec_u16(line, &i, 3);
4927                         v = (v<0) ? 0 : ((v>255) ? 255 : v);
4928                         ai->config.shortRetryLimit = (u16)v;
4929                         set_bit (FLAG_COMMIT, &ai->flags);
4930                 } else if ( !strncmp( line, "RTSThreshold: ", 14 ) ) {
4931                         int v, i = 0;
4932
4933                         line += 14;
4934                         v = get_dec_u16(line, &i, 4);
4935                         v = (v<0) ? 0 : ((v>AIRO_DEF_MTU) ? AIRO_DEF_MTU : v);
4936                         ai->config.rtsThres = (u16)v;
4937                         set_bit (FLAG_COMMIT, &ai->flags);
4938                 } else if ( !strncmp( line, "TXMSDULifetime: ", 16 ) ) {
4939                         int v, i = 0;
4940
4941                         line += 16;
4942                         v = get_dec_u16(line, &i, 5);
4943                         v = (v<0) ? 0 : v;
4944                         ai->config.txLifetime = (u16)v;
4945                         set_bit (FLAG_COMMIT, &ai->flags);
4946                 } else if ( !strncmp( line, "RXMSDULifetime: ", 16 ) ) {
4947                         int v, i = 0;
4948
4949                         line += 16;
4950                         v = get_dec_u16(line, &i, 5);
4951                         v = (v<0) ? 0 : v;
4952                         ai->config.rxLifetime = (u16)v;
4953                         set_bit (FLAG_COMMIT, &ai->flags);
4954                 } else if ( !strncmp( line, "TXDiversity: ", 13 ) ) {
4955                         ai->config.txDiversity =
4956                                 (line[13]=='l') ? 1 :
4957                                 ((line[13]=='r')? 2: 3);
4958                         set_bit (FLAG_COMMIT, &ai->flags);
4959                 } else if ( !strncmp( line, "RXDiversity: ", 13 ) ) {
4960                         ai->config.rxDiversity =
4961                                 (line[13]=='l') ? 1 :
4962                                 ((line[13]=='r')? 2: 3);
4963                         set_bit (FLAG_COMMIT, &ai->flags);
4964                 } else if ( !strncmp( line, "FragThreshold: ", 15 ) ) {
4965                         int v, i = 0;
4966
4967                         line += 15;
4968                         v = get_dec_u16(line, &i, 4);
4969                         v = (v<256) ? 256 : ((v>AIRO_DEF_MTU) ? AIRO_DEF_MTU : v);
4970                         v = v & 0xfffe; /* Make sure its even */
4971                         ai->config.fragThresh = (u16)v;
4972                         set_bit (FLAG_COMMIT, &ai->flags);
4973                 } else if (!strncmp(line, "Modulation: ", 12)) {
4974                         line += 12;
4975                         switch(*line) {
4976                         case 'd':  ai->config.modulation=MOD_DEFAULT; set_bit(FLAG_COMMIT, &ai->flags); break;
4977                         case 'c':  ai->config.modulation=MOD_CCK; set_bit(FLAG_COMMIT, &ai->flags); break;
4978                         case 'm':  ai->config.modulation=MOD_MOK; set_bit(FLAG_COMMIT, &ai->flags); break;
4979                         default: airo_print_warn(ai->dev->name, "Unknown modulation");
4980                         }
4981                 } else if (!strncmp(line, "Preamble: ", 10)) {
4982                         line += 10;
4983                         switch(*line) {
4984                         case 'a': ai->config.preamble=PREAMBLE_AUTO; set_bit(FLAG_COMMIT, &ai->flags); break;
4985                         case 'l': ai->config.preamble=PREAMBLE_LONG; set_bit(FLAG_COMMIT, &ai->flags); break;
4986                         case 's': ai->config.preamble=PREAMBLE_SHORT; set_bit(FLAG_COMMIT, &ai->flags); break;
4987                         default: airo_print_warn(ai->dev->name, "Unknown preamble");
4988                         }
4989                 } else {
4990                         airo_print_warn(ai->dev->name, "Couldn't figure out %s", line);
4991                 }
4992                 while( line[0] && line[0] != '\n' ) line++;
4993                 if ( line[0] ) line++;
4994         }
4995         airo_config_commit(dev, NULL, NULL, NULL);
4996 }
4997
4998 static char *get_rmode(u16 mode) {
4999         switch(mode&0xff) {
5000         case RXMODE_RFMON:  return "rfmon";
5001         case RXMODE_RFMON_ANYBSS:  return "yna (any) bss rfmon";
5002         case RXMODE_LANMON:  return "lanmon";
5003         }
5004         return "ESS";
5005 }
5006
5007 static int proc_config_open( struct inode *inode, struct file *file ) {
5008         struct proc_data *data;
5009         struct proc_dir_entry *dp = PDE(inode);
5010         struct net_device *dev = dp->data;
5011         struct airo_info *ai = dev->priv;
5012         int i;
5013
5014         if ((file->private_data = kzalloc(sizeof(struct proc_data ), GFP_KERNEL)) == NULL)
5015                 return -ENOMEM;
5016         data = (struct proc_data *)file->private_data;
5017         if ((data->rbuffer = kmalloc( 2048, GFP_KERNEL )) == NULL) {
5018                 kfree (file->private_data);
5019                 return -ENOMEM;
5020         }
5021         if ((data->wbuffer = kzalloc( 2048, GFP_KERNEL )) == NULL) {
5022                 kfree (data->rbuffer);
5023                 kfree (file->private_data);
5024                 return -ENOMEM;
5025         }
5026         data->maxwritelen = 2048;
5027         data->on_close = proc_config_on_close;
5028
5029         readConfigRid(ai, 1);
5030
5031         i = sprintf( data->rbuffer,
5032                      "Mode: %s\n"
5033                      "Radio: %s\n"
5034                      "NodeName: %-16s\n"
5035                      "PowerMode: %s\n"
5036                      "DataRates: %d %d %d %d %d %d %d %d\n"
5037                      "Channel: %d\n"
5038                      "XmitPower: %d\n",
5039                      (ai->config.opmode & 0xFF) == 0 ? "adhoc" :
5040                      (ai->config.opmode & 0xFF) == 1 ? get_rmode(ai->config.rmode):
5041                      (ai->config.opmode & 0xFF) == 2 ? "AP" :
5042                      (ai->config.opmode & 0xFF) == 3 ? "AP RPTR" : "Error",
5043                      test_bit(FLAG_RADIO_OFF, &ai->flags) ? "off" : "on",
5044                      ai->config.nodeName,
5045                      ai->config.powerSaveMode == 0 ? "CAM" :
5046                      ai->config.powerSaveMode == 1 ? "PSP" :
5047                      ai->config.powerSaveMode == 2 ? "PSPCAM" : "Error",
5048                      (int)ai->config.rates[0],
5049                      (int)ai->config.rates[1],
5050                      (int)ai->config.rates[2],
5051                      (int)ai->config.rates[3],
5052                      (int)ai->config.rates[4],
5053                      (int)ai->config.rates[5],
5054                      (int)ai->config.rates[6],
5055                      (int)ai->config.rates[7],
5056                      (int)ai->config.channelSet,
5057                      (int)ai->config.txPower
5058                 );
5059         sprintf( data->rbuffer + i,
5060                  "LongRetryLimit: %d\n"
5061                  "ShortRetryLimit: %d\n"
5062                  "RTSThreshold: %d\n"
5063                  "TXMSDULifetime: %d\n"
5064                  "RXMSDULifetime: %d\n"
5065                  "TXDiversity: %s\n"
5066                  "RXDiversity: %s\n"
5067                  "FragThreshold: %d\n"
5068                  "WEP: %s\n"
5069                  "Modulation: %s\n"
5070                  "Preamble: %s\n",
5071                  (int)ai->config.longRetryLimit,
5072                  (int)ai->config.shortRetryLimit,
5073                  (int)ai->config.rtsThres,
5074                  (int)ai->config.txLifetime,
5075                  (int)ai->config.rxLifetime,
5076                  ai->config.txDiversity == 1 ? "left" :
5077                  ai->config.txDiversity == 2 ? "right" : "both",
5078                  ai->config.rxDiversity == 1 ? "left" :
5079                  ai->config.rxDiversity == 2 ? "right" : "both",
5080                  (int)ai->config.fragThresh,
5081                  ai->config.authType == AUTH_ENCRYPT ? "encrypt" :
5082                  ai->config.authType == AUTH_SHAREDKEY ? "shared" : "open",
5083                  ai->config.modulation == 0 ? "default" :
5084                  ai->config.modulation == MOD_CCK ? "cck" :
5085                  ai->config.modulation == MOD_MOK ? "mok" : "error",
5086                  ai->config.preamble == PREAMBLE_AUTO ? "auto" :
5087                  ai->config.preamble == PREAMBLE_LONG ? "long" :
5088                  ai->config.preamble == PREAMBLE_SHORT ? "short" : "error"
5089                 );
5090         data->readlen = strlen( data->rbuffer );
5091         return 0;
5092 }
5093
5094 static void proc_SSID_on_close( struct inode *inode, struct file *file ) {
5095         struct proc_data *data = (struct proc_data *)file->private_data;
5096         struct proc_dir_entry *dp = PDE(inode);
5097         struct net_device *dev = dp->data;
5098         struct airo_info *ai = dev->priv;
5099         SsidRid SSID_rid;
5100         Resp rsp;
5101         int i;
5102         int offset = 0;
5103
5104         if ( !data->writelen ) return;
5105
5106         memset( &SSID_rid, 0, sizeof( SSID_rid ) );
5107
5108         for( i = 0; i < 3; i++ ) {
5109                 int j;
5110                 for( j = 0; j+offset < data->writelen && j < 32 &&
5111                              data->wbuffer[offset+j] != '\n'; j++ ) {
5112                         SSID_rid.ssids[i].ssid[j] = data->wbuffer[offset+j];
5113                 }
5114                 if ( j == 0 ) break;
5115                 SSID_rid.ssids[i].len = j;
5116                 offset += j;
5117                 while( data->wbuffer[offset] != '\n' &&
5118                        offset < data->writelen ) offset++;
5119                 offset++;
5120         }
5121         if (i)
5122                 SSID_rid.len = sizeof(SSID_rid);
5123         disable_MAC(ai, 1);
5124         writeSsidRid(ai, &SSID_rid, 1);
5125         enable_MAC(ai, &rsp, 1);
5126 }
5127
5128 static inline u8 hexVal(char c) {
5129         if (c>='0' && c<='9') return c -= '0';
5130         if (c>='a' && c<='f') return c -= 'a'-10;
5131         if (c>='A' && c<='F') return c -= 'A'-10;
5132         return 0;
5133 }
5134
5135 static void proc_APList_on_close( struct inode *inode, struct file *file ) {
5136         struct proc_data *data = (struct proc_data *)file->private_data;
5137         struct proc_dir_entry *dp = PDE(inode);
5138         struct net_device *dev = dp->data;
5139         struct airo_info *ai = dev->priv;
5140         APListRid APList_rid;
5141         Resp rsp;
5142         int i;
5143
5144         if ( !data->writelen ) return;
5145
5146         memset( &APList_rid, 0, sizeof(APList_rid) );
5147         APList_rid.len = sizeof(APList_rid);
5148
5149         for( i = 0; i < 4 && data->writelen >= (i+1)*6*3; i++ ) {
5150                 int j;
5151                 for( j = 0; j < 6*3 && data->wbuffer[j+i*6*3]; j++ ) {
5152                         switch(j%3) {
5153                         case 0:
5154                                 APList_rid.ap[i][j/3]=
5155                                         hexVal(data->wbuffer[j+i*6*3])<<4;
5156                                 break;
5157                         case 1:
5158                                 APList_rid.ap[i][j/3]|=
5159                                         hexVal(data->wbuffer[j+i*6*3]);
5160                                 break;
5161                         }
5162                 }
5163         }
5164         disable_MAC(ai, 1);
5165         writeAPListRid(ai, &APList_rid, 1);
5166         enable_MAC(ai, &rsp, 1);
5167 }
5168
5169 /* This function wraps PC4500_writerid with a MAC disable */
5170 static int do_writerid( struct airo_info *ai, u16 rid, const void *rid_data,
5171                         int len, int dummy ) {
5172         int rc;
5173         Resp rsp;
5174
5175         disable_MAC(ai, 1);
5176         rc = PC4500_writerid(ai, rid, rid_data, len, 1);
5177         enable_MAC(ai, &rsp, 1);
5178         return rc;
5179 }
5180
5181 /* Returns the length of the key at the index.  If index == 0xffff
5182  * the index of the transmit key is returned.  If the key doesn't exist,
5183  * -1 will be returned.
5184  */
5185 static int get_wep_key(struct airo_info *ai, u16 index) {
5186         WepKeyRid wkr;
5187         int rc;
5188         u16 lastindex;
5189
5190         rc = readWepKeyRid(ai, &wkr, 1, 1);
5191         if (rc == SUCCESS) do {
5192                 lastindex = wkr.kindex;
5193                 if (wkr.kindex == index) {
5194                         if (index == 0xffff) {
5195                                 return wkr.mac[0];
5196                         }
5197                         return wkr.klen;
5198                 }
5199                 readWepKeyRid(ai, &wkr, 0, 1);
5200         } while(lastindex != wkr.kindex);
5201         return -1;
5202 }
5203
5204 static int set_wep_key(struct airo_info *ai, u16 index,
5205                        const char *key, u16 keylen, int perm, int lock ) {
5206         static const unsigned char macaddr[ETH_ALEN] = { 0x01, 0, 0, 0, 0, 0 };
5207         WepKeyRid wkr;
5208         Resp rsp;
5209
5210         memset(&wkr, 0, sizeof(wkr));
5211         if (keylen == 0) {
5212 // We are selecting which key to use
5213                 wkr.len = sizeof(wkr);
5214                 wkr.kindex = 0xffff;
5215                 wkr.mac[0] = (char)index;
5216                 if (perm) ai->defindex = (char)index;
5217         } else {
5218 // We are actually setting the key
5219                 wkr.len = sizeof(wkr);
5220                 wkr.kindex = index;
5221                 wkr.klen = keylen;
5222                 memcpy( wkr.key, key, keylen );
5223                 memcpy( wkr.mac, macaddr, ETH_ALEN );
5224         }
5225
5226         if (perm) disable_MAC(ai, lock);
5227         writeWepKeyRid(ai, &wkr, perm, lock);
5228         if (perm) enable_MAC(ai, &rsp, lock);
5229         return 0;
5230 }
5231
5232 static void proc_wepkey_on_close( struct inode *inode, struct file *file ) {
5233         struct proc_data *data;
5234         struct proc_dir_entry *dp = PDE(inode);
5235         struct net_device *dev = dp->data;
5236         struct airo_info *ai = dev->priv;
5237         int i;
5238         char key[16];
5239         u16 index = 0;
5240         int j = 0;
5241
5242         memset(key, 0, sizeof(key));
5243
5244         data = (struct proc_data *)file->private_data;
5245         if ( !data->writelen ) return;
5246
5247         if (data->wbuffer[0] >= '0' && data->wbuffer[0] <= '3' &&
5248             (data->wbuffer[1] == ' ' || data->wbuffer[1] == '\n')) {
5249                 index = data->wbuffer[0] - '0';
5250                 if (data->wbuffer[1] == '\n') {
5251                         set_wep_key(ai, index, NULL, 0, 1, 1);
5252                         return;
5253                 }
5254                 j = 2;
5255         } else {
5256                 airo_print_err(ai->dev->name, "WepKey passed invalid key index");
5257                 return;
5258         }
5259
5260         for( i = 0; i < 16*3 && data->wbuffer[i+j]; i++ ) {
5261                 switch(i%3) {
5262                 case 0:
5263                         key[i/3] = hexVal(data->wbuffer[i+j])<<4;
5264                         break;
5265                 case 1:
5266                         key[i/3] |= hexVal(data->wbuffer[i+j]);
5267                         break;
5268                 }
5269         }
5270         set_wep_key(ai, index, key, i/3, 1, 1);
5271 }
5272
5273 static int proc_wepkey_open( struct inode *inode, struct file *file ) {
5274         struct proc_data *data;
5275         struct proc_dir_entry *dp = PDE(inode);
5276         struct net_device *dev = dp->data;
5277         struct airo_info *ai = dev->priv;
5278         char *ptr;
5279         WepKeyRid wkr;
5280         u16 lastindex;
5281         int j=0;
5282         int rc;
5283
5284         if ((file->private_data = kzalloc(sizeof(struct proc_data ), GFP_KERNEL)) == NULL)
5285                 return -ENOMEM;
5286         memset(&wkr, 0, sizeof(wkr));
5287         data = (struct proc_data *)file->private_data;
5288         if ((data->rbuffer = kzalloc( 180, GFP_KERNEL )) == NULL) {
5289                 kfree (file->private_data);
5290                 return -ENOMEM;
5291         }
5292         data->writelen = 0;
5293         data->maxwritelen = 80;
5294         if ((data->wbuffer = kzalloc( 80, GFP_KERNEL )) == NULL) {
5295                 kfree (data->rbuffer);
5296                 kfree (file->private_data);
5297                 return -ENOMEM;
5298         }
5299         data->on_close = proc_wepkey_on_close;
5300
5301         ptr = data->rbuffer;
5302         strcpy(ptr, "No wep keys\n");
5303         rc = readWepKeyRid(ai, &wkr, 1, 1);
5304         if (rc == SUCCESS) do {
5305                 lastindex = wkr.kindex;
5306                 if (wkr.kindex == 0xffff) {
5307                         j += sprintf(ptr+j, "Tx key = %d\n",
5308                                      (int)wkr.mac[0]);
5309                 } else {
5310                         j += sprintf(ptr+j, "Key %d set with length = %d\n",
5311                                      (int)wkr.kindex, (int)wkr.klen);
5312                 }
5313                 readWepKeyRid(ai, &wkr, 0, 1);
5314         } while((lastindex != wkr.kindex) && (j < 180-30));
5315
5316         data->readlen = strlen( data->rbuffer );
5317         return 0;
5318 }
5319
5320 static int proc_SSID_open( struct inode *inode, struct file *file ) {
5321         struct proc_data *data;
5322         struct proc_dir_entry *dp = PDE(inode);
5323         struct net_device *dev = dp->data;
5324         struct airo_info *ai = dev->priv;
5325         int i;
5326         char *ptr;
5327         SsidRid SSID_rid;
5328
5329         if ((file->private_data = kzalloc(sizeof(struct proc_data ), GFP_KERNEL)) == NULL)
5330                 return -ENOMEM;
5331         data = (struct proc_data *)file->private_data;
5332         if ((data->rbuffer = kmalloc( 104, GFP_KERNEL )) == NULL) {
5333                 kfree (file->private_data);
5334                 return -ENOMEM;
5335         }
5336         data->writelen = 0;
5337         data->maxwritelen = 33*3;
5338         if ((data->wbuffer = kzalloc( 33*3, GFP_KERNEL )) == NULL) {
5339                 kfree (data->rbuffer);
5340                 kfree (file->private_data);
5341                 return -ENOMEM;
5342         }
5343         data->on_close = proc_SSID_on_close;
5344
5345         readSsidRid(ai, &SSID_rid);
5346         ptr = data->rbuffer;
5347         for( i = 0; i < 3; i++ ) {
5348                 int j;
5349                 if ( !SSID_rid.ssids[i].len ) break;
5350                 for( j = 0; j < 32 &&
5351                              j < SSID_rid.ssids[i].len &&
5352                              SSID_rid.ssids[i].ssid[j]; j++ ) {
5353                         *ptr++ = SSID_rid.ssids[i].ssid[j];
5354                 }
5355                 *ptr++ = '\n';
5356         }
5357         *ptr = '\0';
5358         data->readlen = strlen( data->rbuffer );
5359         return 0;
5360 }
5361
5362 static int proc_APList_open( struct inode *inode, struct file *file ) {
5363         struct proc_data *data;
5364         struct proc_dir_entry *dp = PDE(inode);
5365         struct net_device *dev = dp->data;
5366         struct airo_info *ai = dev->priv;
5367         int i;
5368         char *ptr;
5369         APListRid APList_rid;
5370
5371         if ((file->private_data = kzalloc(sizeof(struct proc_data ), GFP_KERNEL)) == NULL)
5372                 return -ENOMEM;
5373         data = (struct proc_data *)file->private_data;
5374         if ((data->rbuffer = kmalloc( 104, GFP_KERNEL )) == NULL) {
5375                 kfree (file->private_data);
5376                 return -ENOMEM;
5377         }
5378         data->writelen = 0;
5379         data->maxwritelen = 4*6*3;
5380         if ((data->wbuffer = kzalloc( data->maxwritelen, GFP_KERNEL )) == NULL) {
5381                 kfree (data->rbuffer);
5382                 kfree (file->private_data);
5383                 return -ENOMEM;
5384         }
5385         data->on_close = proc_APList_on_close;
5386
5387         readAPListRid(ai, &APList_rid);
5388         ptr = data->rbuffer;
5389         for( i = 0; i < 4; i++ ) {
5390 // We end when we find a zero MAC
5391                 if ( !*(int*)APList_rid.ap[i] &&
5392                      !*(int*)&APList_rid.ap[i][2]) break;
5393                 ptr += sprintf(ptr, "%02x:%02x:%02x:%02x:%02x:%02x\n",
5394                                (int)APList_rid.ap[i][0],
5395                                (int)APList_rid.ap[i][1],
5396                                (int)APList_rid.ap[i][2],
5397                                (int)APList_rid.ap[i][3],
5398                                (int)APList_rid.ap[i][4],
5399                                (int)APList_rid.ap[i][5]);
5400         }
5401         if (i==0) ptr += sprintf(ptr, "Not using specific APs\n");
5402
5403         *ptr = '\0';
5404         data->readlen = strlen( data->rbuffer );
5405         return 0;
5406 }
5407
5408 static int proc_BSSList_open( struct inode *inode, struct file *file ) {
5409         struct proc_data *data;
5410         struct proc_dir_entry *dp = PDE(inode);
5411         struct net_device *dev = dp->data;
5412         struct airo_info *ai = dev->priv;
5413         char *ptr;
5414         BSSListRid BSSList_rid;
5415         int rc;
5416         /* If doLoseSync is not 1, we won't do a Lose Sync */
5417         int doLoseSync = -1;
5418
5419         if ((file->private_data = kzalloc(sizeof(struct proc_data ), GFP_KERNEL)) == NULL)
5420                 return -ENOMEM;
5421         data = (struct proc_data *)file->private_data;
5422         if ((data->rbuffer = kmalloc( 1024, GFP_KERNEL )) == NULL) {
5423                 kfree (file->private_data);
5424                 return -ENOMEM;
5425         }
5426         data->writelen = 0;
5427         data->maxwritelen = 0;
5428         data->wbuffer = NULL;
5429         data->on_close = NULL;
5430
5431         if (file->f_mode & FMODE_WRITE) {
5432                 if (!(file->f_mode & FMODE_READ)) {
5433                         Cmd cmd;
5434                         Resp rsp;
5435
5436                         if (ai->flags & FLAG_RADIO_MASK) return -ENETDOWN;
5437                         memset(&cmd, 0, sizeof(cmd));
5438                         cmd.cmd=CMD_LISTBSS;
5439                         if (down_interruptible(&ai->sem))
5440                                 return -ERESTARTSYS;
5441                         issuecommand(ai, &cmd, &rsp);
5442                         up(&ai->sem);
5443                         data->readlen = 0;
5444                         return 0;
5445                 }
5446                 doLoseSync = 1;
5447         }
5448         ptr = data->rbuffer;
5449         /* There is a race condition here if there are concurrent opens.
5450            Since it is a rare condition, we'll just live with it, otherwise
5451            we have to add a spin lock... */
5452         rc = readBSSListRid(ai, doLoseSync, &BSSList_rid);
5453         while(rc == 0 && BSSList_rid.index != 0xffff) {
5454                 ptr += sprintf(ptr, "%02x:%02x:%02x:%02x:%02x:%02x %*s rssi = %d",
5455                                 (int)BSSList_rid.bssid[0],
5456                                 (int)BSSList_rid.bssid[1],
5457                                 (int)BSSList_rid.bssid[2],
5458                                 (int)BSSList_rid.bssid[3],
5459                                 (int)BSSList_rid.bssid[4],
5460                                 (int)BSSList_rid.bssid[5],
5461                                 (int)BSSList_rid.ssidLen,
5462                                 BSSList_rid.ssid,
5463                                 (int)BSSList_rid.dBm);
5464                 ptr += sprintf(ptr, " channel = %d %s %s %s %s\n",
5465                                 (int)BSSList_rid.dsChannel,
5466                                 BSSList_rid.cap & CAP_ESS ? "ESS" : "",
5467                                 BSSList_rid.cap & CAP_IBSS ? "adhoc" : "",
5468                                 BSSList_rid.cap & CAP_PRIVACY ? "wep" : "",
5469                                 BSSList_rid.cap & CAP_SHORTHDR ? "shorthdr" : "");
5470                 rc = readBSSListRid(ai, 0, &BSSList_rid);
5471         }
5472         *ptr = '\0';
5473         data->readlen = strlen( data->rbuffer );
5474         return 0;
5475 }
5476
5477 static int proc_close( struct inode *inode, struct file *file )
5478 {
5479         struct proc_data *data = file->private_data;
5480
5481         if (data->on_close != NULL)
5482                 data->on_close(inode, file);
5483         kfree(data->rbuffer);
5484         kfree(data->wbuffer);
5485         kfree(data);
5486         return 0;
5487 }
5488
5489 static struct net_device_list {
5490         struct net_device *dev;
5491         struct net_device_list *next;
5492 } *airo_devices;
5493
5494 /* Since the card doesn't automatically switch to the right WEP mode,
5495    we will make it do it.  If the card isn't associated, every secs we
5496    will switch WEP modes to see if that will help.  If the card is
5497    associated we will check every minute to see if anything has
5498    changed. */
5499 static void timer_func( struct net_device *dev ) {
5500         struct airo_info *apriv = dev->priv;
5501         Resp rsp;
5502
5503 /* We don't have a link so try changing the authtype */
5504         readConfigRid(apriv, 0);
5505         disable_MAC(apriv, 0);
5506         switch(apriv->config.authType) {
5507                 case AUTH_ENCRYPT:
5508 /* So drop to OPEN */
5509                         apriv->config.authType = AUTH_OPEN;
5510                         break;
5511                 case AUTH_SHAREDKEY:
5512                         if (apriv->keyindex < auto_wep) {
5513                                 set_wep_key(apriv, apriv->keyindex, NULL, 0, 0, 0);
5514                                 apriv->config.authType = AUTH_SHAREDKEY;
5515                                 apriv->keyindex++;
5516                         } else {
5517                                 /* Drop to ENCRYPT */
5518                                 apriv->keyindex = 0;
5519                                 set_wep_key(apriv, apriv->defindex, NULL, 0, 0, 0);
5520                                 apriv->config.authType = AUTH_ENCRYPT;
5521                         }
5522                         break;
5523                 default:  /* We'll escalate to SHAREDKEY */
5524                         apriv->config.authType = AUTH_SHAREDKEY;
5525         }
5526         set_bit (FLAG_COMMIT, &apriv->flags);
5527         writeConfigRid(apriv, 0);
5528         enable_MAC(apriv, &rsp, 0);
5529         up(&apriv->sem);
5530
5531 /* Schedule check to see if the change worked */
5532         clear_bit(JOB_AUTOWEP, &apriv->jobs);
5533         apriv->expires = RUN_AT(HZ*3);
5534 }
5535
5536 static int add_airo_dev( struct net_device *dev ) {
5537         struct net_device_list *node = kmalloc( sizeof( *node ), GFP_KERNEL );
5538         if ( !node )
5539                 return -ENOMEM;
5540
5541         node->dev = dev;
5542         node->next = airo_devices;
5543         airo_devices = node;
5544
5545         return 0;
5546 }
5547
5548 static void del_airo_dev( struct net_device *dev ) {
5549         struct net_device_list **p = &airo_devices;
5550         while( *p && ( (*p)->dev != dev ) )
5551                 p = &(*p)->next;
5552         if ( *p && (*p)->dev == dev )
5553                 *p = (*p)->next;
5554 }
5555
5556 #ifdef CONFIG_PCI
5557 static int __devinit airo_pci_probe(struct pci_dev *pdev,
5558                                     const struct pci_device_id *pent)
5559 {
5560         struct net_device *dev;
5561
5562         if (pci_enable_device(pdev))
5563                 return -ENODEV;
5564         pci_set_master(pdev);
5565
5566         if (pdev->device == 0x5000 || pdev->device == 0xa504)
5567                         dev = _init_airo_card(pdev->irq, pdev->resource[0].start, 0, pdev, &pdev->dev);
5568         else
5569                         dev = _init_airo_card(pdev->irq, pdev->resource[2].start, 0, pdev, &pdev->dev);
5570         if (!dev)
5571                 return -ENODEV;
5572
5573         pci_set_drvdata(pdev, dev);
5574         return 0;
5575 }
5576
5577 static void __devexit airo_pci_remove(struct pci_dev *pdev)
5578 {
5579 }
5580
5581 static int airo_pci_suspend(struct pci_dev *pdev, pm_message_t state)
5582 {
5583         struct net_device *dev = pci_get_drvdata(pdev);
5584         struct airo_info *ai = dev->priv;
5585         Cmd cmd;
5586         Resp rsp;
5587
5588         if ((ai->APList == NULL) &&
5589                 (ai->APList = kmalloc(sizeof(APListRid), GFP_KERNEL)) == NULL)
5590                 return -ENOMEM;
5591         if ((ai->SSID == NULL) &&
5592                 (ai->SSID = kmalloc(sizeof(SsidRid), GFP_KERNEL)) == NULL)
5593                 return -ENOMEM;
5594         readAPListRid(ai, ai->APList);
5595         readSsidRid(ai, ai->SSID);
5596         memset(&cmd, 0, sizeof(cmd));
5597         /* the lock will be released at the end of the resume callback */
5598         if (down_interruptible(&ai->sem))
5599                 return -EAGAIN;
5600         disable_MAC(ai, 0);
5601         netif_device_detach(dev);
5602         ai->power = state;
5603         cmd.cmd=HOSTSLEEP;
5604         issuecommand(ai, &cmd, &rsp);
5605
5606         pci_enable_wake(pdev, pci_choose_state(pdev, state), 1);
5607         pci_save_state(pdev);
5608         return pci_set_power_state(pdev, pci_choose_state(pdev, state));
5609 }
5610
5611 static int airo_pci_resume(struct pci_dev *pdev)
5612 {
5613         struct net_device *dev = pci_get_drvdata(pdev);
5614         struct airo_info *ai = dev->priv;
5615         Resp rsp;
5616         pci_power_t prev_state = pdev->current_state;
5617
5618         pci_set_power_state(pdev, PCI_D0);
5619         pci_restore_state(pdev);
5620         pci_enable_wake(pdev, PCI_D0, 0);
5621
5622         if (prev_state != PCI_D1) {
5623                 reset_card(dev, 0);
5624                 mpi_init_descriptors(ai);
5625                 setup_card(ai, dev->dev_addr, 0);
5626                 clear_bit(FLAG_RADIO_OFF, &ai->flags);
5627                 clear_bit(FLAG_PENDING_XMIT, &ai->flags);
5628         } else {
5629                 OUT4500(ai, EVACK, EV_AWAKEN);
5630                 OUT4500(ai, EVACK, EV_AWAKEN);
5631                 msleep(100);
5632         }
5633
5634         set_bit (FLAG_COMMIT, &ai->flags);
5635         disable_MAC(ai, 0);
5636         msleep(200);
5637         if (ai->SSID) {
5638                 writeSsidRid(ai, ai->SSID, 0);
5639                 kfree(ai->SSID);
5640                 ai->SSID = NULL;
5641         }
5642         if (ai->APList) {
5643                 writeAPListRid(ai, ai->APList, 0);
5644                 kfree(ai->APList);
5645                 ai->APList = NULL;
5646         }
5647         writeConfigRid(ai, 0);
5648         enable_MAC(ai, &rsp, 0);
5649         ai->power = PMSG_ON;
5650         netif_device_attach(dev);
5651         netif_wake_queue(dev);
5652         enable_interrupts(ai);
5653         up(&ai->sem);
5654         return 0;
5655 }
5656 #endif
5657
5658 static int __init airo_init_module( void )
5659 {
5660         int i, have_isa_dev = 0;
5661
5662         airo_entry = create_proc_entry("aironet",
5663                                        S_IFDIR | airo_perm,
5664                                        proc_root_driver);
5665         airo_entry->uid = proc_uid;
5666         airo_entry->gid = proc_gid;
5667
5668         for( i = 0; i < 4 && io[i] && irq[i]; i++ ) {
5669                 airo_print_info("", "Trying to configure ISA adapter at irq=%d "
5670                         "io=0x%x", irq[i], io[i] );
5671                 if (init_airo_card( irq[i], io[i], 0, NULL ))
5672                         have_isa_dev = 1;
5673         }
5674
5675 #ifdef CONFIG_PCI
5676         airo_print_info("", "Probing for PCI adapters");
5677         pci_register_driver(&airo_driver);
5678         airo_print_info("", "Finished probing for PCI adapters");
5679 #endif
5680
5681         /* Always exit with success, as we are a library module
5682          * as well as a driver module
5683          */
5684         return 0;
5685 }
5686
5687 static void __exit airo_cleanup_module( void )
5688 {
5689         while( airo_devices ) {
5690                 airo_print_info(airo_devices->dev->name, "Unregistering...\n");
5691                 stop_airo_card( airo_devices->dev, 1 );
5692         }
5693 #ifdef CONFIG_PCI
5694         pci_unregister_driver(&airo_driver);
5695 #endif
5696         remove_proc_entry("aironet", proc_root_driver);
5697 }
5698
5699 /*
5700  * Initial Wireless Extension code for Aironet driver by :
5701  *      Jean Tourrilhes <jt@hpl.hp.com> - HPL - 17 November 00
5702  * Conversion to new driver API by :
5703  *      Jean Tourrilhes <jt@hpl.hp.com> - HPL - 26 March 02
5704  * Javier also did a good amount of work here, adding some new extensions
5705  * and fixing my code. Let's just say that without him this code just
5706  * would not work at all... - Jean II
5707  */
5708
5709 static u8 airo_rssi_to_dbm (tdsRssiEntry *rssi_rid, u8 rssi)
5710 {
5711         if( !rssi_rid )
5712                 return 0;
5713
5714         return (0x100 - rssi_rid[rssi].rssidBm);
5715 }
5716
5717 static u8 airo_dbm_to_pct (tdsRssiEntry *rssi_rid, u8 dbm)
5718 {
5719         int i;
5720
5721         if( !rssi_rid )
5722                 return 0;
5723
5724         for( i = 0; i < 256; i++ )
5725                 if (rssi_rid[i].rssidBm == dbm)
5726                         return rssi_rid[i].rssipct;
5727
5728         return 0;
5729 }
5730
5731
5732 static int airo_get_quality (StatusRid *status_rid, CapabilityRid *cap_rid)
5733 {
5734         int quality = 0;
5735
5736         if ((status_rid->mode & 0x3f) == 0x3f && (cap_rid->hardCap & 8)) {
5737                 if (memcmp(cap_rid->prodName, "350", 3))
5738                         if (status_rid->signalQuality > 0x20)
5739                                 quality = 0;
5740                         else
5741                                 quality = 0x20 - status_rid->signalQuality;
5742                 else
5743                         if (status_rid->signalQuality > 0xb0)
5744                                 quality = 0;
5745                         else if (status_rid->signalQuality < 0x10)
5746                                 quality = 0xa0;
5747                         else
5748                                 quality = 0xb0 - status_rid->signalQuality;
5749         }
5750         return quality;
5751 }
5752
5753 #define airo_get_max_quality(cap_rid) (memcmp((cap_rid)->prodName, "350", 3) ? 0x20 : 0xa0)
5754 #define airo_get_avg_quality(cap_rid) (memcmp((cap_rid)->prodName, "350", 3) ? 0x10 : 0x50);
5755
5756 /*------------------------------------------------------------------*/
5757 /*
5758  * Wireless Handler : get protocol name
5759  */
5760 static int airo_get_name(struct net_device *dev,
5761                          struct iw_request_info *info,
5762                          char *cwrq,
5763                          char *extra)
5764 {
5765         strcpy(cwrq, "IEEE 802.11-DS");
5766         return 0;
5767 }
5768
5769 /*------------------------------------------------------------------*/
5770 /*
5771  * Wireless Handler : set frequency
5772  */
5773 static int airo_set_freq(struct net_device *dev,
5774                          struct iw_request_info *info,
5775                          struct iw_freq *fwrq,
5776                          char *extra)
5777 {
5778         struct airo_info *local = dev->priv;
5779         int rc = -EINPROGRESS;          /* Call commit handler */
5780
5781         /* If setting by frequency, convert to a channel */
5782         if((fwrq->e == 1) &&
5783            (fwrq->m >= (int) 2.412e8) &&
5784            (fwrq->m <= (int) 2.487e8)) {
5785                 int f = fwrq->m / 100000;
5786                 int c = 0;
5787                 while((c < 14) && (f != frequency_list[c]))
5788                         c++;
5789                 /* Hack to fall through... */
5790                 fwrq->e = 0;
5791                 fwrq->m = c + 1;
5792         }
5793         /* Setting by channel number */
5794         if((fwrq->m > 1000) || (fwrq->e > 0))
5795                 rc = -EOPNOTSUPP;
5796         else {
5797                 int channel = fwrq->m;
5798                 /* We should do a better check than that,
5799                  * based on the card capability !!! */
5800                 if((channel < 1) || (channel > 14)) {
5801                         airo_print_dbg(dev->name, "New channel value of %d is invalid!",
5802                                 fwrq->m);
5803                         rc = -EINVAL;
5804                 } else {
5805                         readConfigRid(local, 1);
5806                         /* Yes ! We can set it !!! */
5807                         local->config.channelSet = (u16) channel;
5808                         set_bit (FLAG_COMMIT, &local->flags);
5809                 }
5810         }
5811         return rc;
5812 }
5813
5814 /*------------------------------------------------------------------*/
5815 /*
5816  * Wireless Handler : get frequency
5817  */
5818 static int airo_get_freq(struct net_device *dev,
5819                          struct iw_request_info *info,
5820                          struct iw_freq *fwrq,
5821                          char *extra)
5822 {
5823         struct airo_info *local = dev->priv;
5824         StatusRid status_rid;           /* Card status info */
5825         int ch;
5826
5827         readConfigRid(local, 1);
5828         if ((local->config.opmode & 0xFF) == MODE_STA_ESS)
5829                 status_rid.channel = local->config.channelSet;
5830         else
5831                 readStatusRid(local, &status_rid, 1);
5832
5833         ch = (int)status_rid.channel;
5834         if((ch > 0) && (ch < 15)) {
5835                 fwrq->m = frequency_list[ch - 1] * 100000;
5836                 fwrq->e = 1;
5837         } else {
5838                 fwrq->m = ch;
5839                 fwrq->e = 0;
5840         }
5841
5842         return 0;
5843 }
5844
5845 /*------------------------------------------------------------------*/
5846 /*
5847  * Wireless Handler : set ESSID
5848  */
5849 static int airo_set_essid(struct net_device *dev,
5850                           struct iw_request_info *info,
5851                           struct iw_point *dwrq,
5852                           char *extra)
5853 {
5854         struct airo_info *local = dev->priv;
5855         Resp rsp;
5856         SsidRid SSID_rid;               /* SSIDs */
5857
5858         /* Reload the list of current SSID */
5859         readSsidRid(local, &SSID_rid);
5860
5861         /* Check if we asked for `any' */
5862         if(dwrq->flags == 0) {
5863                 /* Just send an empty SSID list */
5864                 memset(&SSID_rid, 0, sizeof(SSID_rid));
5865         } else {
5866                 int     index = (dwrq->flags & IW_ENCODE_INDEX) - 1;
5867
5868                 /* Check the size of the string */
5869                 if(dwrq->length > IW_ESSID_MAX_SIZE+1) {
5870                         return -E2BIG ;
5871                 }
5872                 /* Check if index is valid */
5873                 if((index < 0) || (index >= 4)) {
5874                         return -EINVAL;
5875                 }
5876
5877                 /* Set the SSID */
5878                 memset(SSID_rid.ssids[index].ssid, 0,
5879                        sizeof(SSID_rid.ssids[index].ssid));
5880                 memcpy(SSID_rid.ssids[index].ssid, extra, dwrq->length);
5881                 SSID_rid.ssids[index].len = dwrq->length - 1;
5882         }
5883         SSID_rid.len = sizeof(SSID_rid);
5884         /* Write it to the card */
5885         disable_MAC(local, 1);
5886         writeSsidRid(local, &SSID_rid, 1);
5887         enable_MAC(local, &rsp, 1);
5888
5889         return 0;
5890 }
5891
5892 /*------------------------------------------------------------------*/
5893 /*
5894  * Wireless Handler : get ESSID
5895  */
5896 static int airo_get_essid(struct net_device *dev,
5897                           struct iw_request_info *info,
5898                           struct iw_point *dwrq,
5899                           char *extra)
5900 {
5901         struct airo_info *local = dev->priv;
5902         StatusRid status_rid;           /* Card status info */
5903
5904         readStatusRid(local, &status_rid, 1);
5905
5906         /* Note : if dwrq->flags != 0, we should
5907          * get the relevant SSID from the SSID list... */
5908
5909         /* Get the current SSID */
5910         memcpy(extra, status_rid.SSID, status_rid.SSIDlen);
5911         extra[status_rid.SSIDlen] = '\0';
5912         /* If none, we may want to get the one that was set */
5913
5914         /* Push it out ! */
5915         dwrq->length = status_rid.SSIDlen;
5916         dwrq->flags = 1; /* active */
5917
5918         return 0;
5919 }
5920
5921 /*------------------------------------------------------------------*/
5922 /*
5923  * Wireless Handler : set AP address
5924  */
5925 static int airo_set_wap(struct net_device *dev,
5926                         struct iw_request_info *info,
5927                         struct sockaddr *awrq,
5928                         char *extra)
5929 {
5930         struct airo_info *local = dev->priv;
5931         Cmd cmd;
5932         Resp rsp;
5933         APListRid APList_rid;
5934         static const u8 any[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
5935         static const u8 off[ETH_ALEN] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
5936
5937         if (awrq->sa_family != ARPHRD_ETHER)
5938                 return -EINVAL;
5939         else if (!memcmp(any, awrq->sa_data, ETH_ALEN) ||
5940                  !memcmp(off, awrq->sa_data, ETH_ALEN)) {
5941                 memset(&cmd, 0, sizeof(cmd));
5942                 cmd.cmd=CMD_LOSE_SYNC;
5943                 if (down_interruptible(&local->sem))
5944                         return -ERESTARTSYS;
5945                 issuecommand(local, &cmd, &rsp);
5946                 up(&local->sem);
5947         } else {
5948                 memset(&APList_rid, 0, sizeof(APList_rid));
5949                 APList_rid.len = sizeof(APList_rid);
5950                 memcpy(APList_rid.ap[0], awrq->sa_data, ETH_ALEN);
5951                 disable_MAC(local, 1);
5952                 writeAPListRid(local, &APList_rid, 1);
5953                 enable_MAC(local, &rsp, 1);
5954         }
5955         return 0;
5956 }
5957
5958 /*------------------------------------------------------------------*/
5959 /*
5960  * Wireless Handler : get AP address
5961  */
5962 static int airo_get_wap(struct net_device *dev,
5963                         struct iw_request_info *info,
5964                         struct sockaddr *awrq,
5965                         char *extra)
5966 {
5967         struct airo_info *local = dev->priv;
5968         StatusRid status_rid;           /* Card status info */
5969
5970         readStatusRid(local, &status_rid, 1);
5971
5972         /* Tentative. This seems to work, wow, I'm lucky !!! */
5973         memcpy(awrq->sa_data, status_rid.bssid[0], ETH_ALEN);
5974         awrq->sa_family = ARPHRD_ETHER;
5975
5976         return 0;
5977 }
5978
5979 /*------------------------------------------------------------------*/
5980 /*
5981  * Wireless Handler : set Nickname
5982  */
5983 static int airo_set_nick(struct net_device *dev,
5984                          struct iw_request_info *info,
5985                          struct iw_point *dwrq,
5986                          char *extra)
5987 {
5988         struct airo_info *local = dev->priv;
5989
5990         /* Check the size of the string */
5991         if(dwrq->length > 16 + 1) {
5992                 return -E2BIG;
5993         }
5994         readConfigRid(local, 1);
5995         memset(local->config.nodeName, 0, sizeof(local->config.nodeName));
5996         memcpy(local->config.nodeName, extra, dwrq->length);
5997         set_bit (FLAG_COMMIT, &local->flags);
5998
5999         return -EINPROGRESS;            /* Call commit handler */
6000 }
6001
6002 /*------------------------------------------------------------------*/
6003 /*
6004  * Wireless Handler : get Nickname
6005  */
6006 static int airo_get_nick(struct net_device *dev,
6007                          struct iw_request_info *info,
6008                          struct iw_point *dwrq,
6009                          char *extra)
6010 {
6011         struct airo_info *local = dev->priv;
6012
6013         readConfigRid(local, 1);
6014         strncpy(extra, local->config.nodeName, 16);
6015         extra[16] = '\0';
6016         dwrq->length = strlen(extra) + 1;
6017
6018         return 0;
6019 }
6020
6021 /*------------------------------------------------------------------*/
6022 /*
6023  * Wireless Handler : set Bit-Rate
6024  */
6025 static int airo_set_rate(struct net_device *dev,
6026                          struct iw_request_info *info,
6027                          struct iw_param *vwrq,
6028                          char *extra)
6029 {
6030         struct airo_info *local = dev->priv;
6031         CapabilityRid cap_rid;          /* Card capability info */
6032         u8      brate = 0;
6033         int     i;
6034
6035         /* First : get a valid bit rate value */
6036         readCapabilityRid(local, &cap_rid, 1);
6037
6038         /* Which type of value ? */
6039         if((vwrq->value < 8) && (vwrq->value >= 0)) {
6040                 /* Setting by rate index */
6041                 /* Find value in the magic rate table */
6042                 brate = cap_rid.supportedRates[vwrq->value];
6043         } else {
6044                 /* Setting by frequency value */
6045                 u8      normvalue = (u8) (vwrq->value/500000);
6046
6047                 /* Check if rate is valid */
6048                 for(i = 0 ; i < 8 ; i++) {
6049                         if(normvalue == cap_rid.supportedRates[i]) {
6050                                 brate = normvalue;
6051                                 break;
6052                         }
6053                 }
6054         }
6055         /* -1 designed the max rate (mostly auto mode) */
6056         if(vwrq->value == -1) {
6057                 /* Get the highest available rate */
6058                 for(i = 0 ; i < 8 ; i++) {
6059                         if(cap_rid.supportedRates[i] == 0)
6060                                 break;
6061                 }
6062                 if(i != 0)
6063                         brate = cap_rid.supportedRates[i - 1];
6064         }
6065         /* Check that it is valid */
6066         if(brate == 0) {
6067                 return -EINVAL;
6068         }
6069
6070         readConfigRid(local, 1);
6071         /* Now, check if we want a fixed or auto value */
6072         if(vwrq->fixed == 0) {
6073                 /* Fill all the rates up to this max rate */
6074                 memset(local->config.rates, 0, 8);
6075                 for(i = 0 ; i < 8 ; i++) {
6076                         local->config.rates[i] = cap_rid.supportedRates[i];
6077                         if(local->config.rates[i] == brate)
6078                                 break;
6079                 }
6080         } else {
6081                 /* Fixed mode */
6082                 /* One rate, fixed */
6083                 memset(local->config.rates, 0, 8);
6084                 local->config.rates[0] = brate;
6085         }
6086         set_bit (FLAG_COMMIT, &local->flags);
6087
6088         return -EINPROGRESS;            /* Call commit handler */
6089 }
6090
6091 /*------------------------------------------------------------------*/
6092 /*
6093  * Wireless Handler : get Bit-Rate
6094  */
6095 static int airo_get_rate(struct net_device *dev,
6096                          struct iw_request_info *info,
6097                          struct iw_param *vwrq,
6098                          char *extra)
6099 {
6100         struct airo_info *local = dev->priv;
6101         StatusRid status_rid;           /* Card status info */
6102
6103         readStatusRid(local, &status_rid, 1);
6104
6105         vwrq->value = status_rid.currentXmitRate * 500000;
6106         /* If more than one rate, set auto */
6107         readConfigRid(local, 1);
6108         vwrq->fixed = (local->config.rates[1] == 0);
6109
6110         return 0;
6111 }
6112
6113 /*------------------------------------------------------------------*/
6114 /*
6115  * Wireless Handler : set RTS threshold
6116  */
6117 static int airo_set_rts(struct net_device *dev,
6118                         struct iw_request_info *info,
6119                         struct iw_param *vwrq,
6120                         char *extra)
6121 {
6122         struct airo_info *local = dev->priv;
6123         int rthr = vwrq->value;
6124
6125         if(vwrq->disabled)
6126                 rthr = AIRO_DEF_MTU;
6127         if((rthr < 0) || (rthr > AIRO_DEF_MTU)) {
6128                 return -EINVAL;
6129         }
6130         readConfigRid(local, 1);
6131         local->config.rtsThres = rthr;
6132         set_bit (FLAG_COMMIT, &local->flags);
6133
6134         return -EINPROGRESS;            /* Call commit handler */
6135 }
6136
6137 /*------------------------------------------------------------------*/
6138 /*
6139  * Wireless Handler : get RTS threshold
6140  */
6141 static int airo_get_rts(struct net_device *dev,
6142                         struct iw_request_info *info,
6143                         struct iw_param *vwrq,
6144                         char *extra)
6145 {
6146         struct airo_info *local = dev->priv;
6147
6148         readConfigRid(local, 1);
6149         vwrq->value = local->config.rtsThres;
6150         vwrq->disabled = (vwrq->value >= AIRO_DEF_MTU);
6151         vwrq->fixed = 1;
6152
6153         return 0;
6154 }
6155
6156 /*------------------------------------------------------------------*/
6157 /*
6158  * Wireless Handler : set Fragmentation threshold
6159  */
6160 static int airo_set_frag(struct net_device *dev,
6161                          struct iw_request_info *info,
6162                          struct iw_param *vwrq,
6163                          char *extra)
6164 {
6165         struct airo_info *local = dev->priv;
6166         int fthr = vwrq->value;
6167
6168         if(vwrq->disabled)
6169                 fthr = AIRO_DEF_MTU;
6170         if((fthr < 256) || (fthr > AIRO_DEF_MTU)) {
6171                 return -EINVAL;
6172         }
6173         fthr &= ~0x1;   /* Get an even value - is it really needed ??? */
6174         readConfigRid(local, 1);
6175         local->config.fragThresh = (u16)fthr;
6176         set_bit (FLAG_COMMIT, &local->flags);
6177
6178         return -EINPROGRESS;            /* Call commit handler */
6179 }
6180
6181 /*------------------------------------------------------------------*/
6182 /*
6183  * Wireless Handler : get Fragmentation threshold
6184  */
6185 static int airo_get_frag(struct net_device *dev,
6186                          struct iw_request_info *info,
6187                          struct iw_param *vwrq,
6188                          char *extra)
6189 {
6190         struct airo_info *local = dev->priv;
6191
6192         readConfigRid(local, 1);
6193         vwrq->value = local->config.fragThresh;
6194         vwrq->disabled = (vwrq->value >= AIRO_DEF_MTU);
6195         vwrq->fixed = 1;
6196
6197         return 0;
6198 }
6199
6200 /*------------------------------------------------------------------*/
6201 /*
6202  * Wireless Handler : set Mode of Operation
6203  */
6204 static int airo_set_mode(struct net_device *dev,
6205                          struct iw_request_info *info,
6206                          __u32 *uwrq,
6207                          char *extra)
6208 {
6209         struct airo_info *local = dev->priv;
6210         int reset = 0;
6211
6212         readConfigRid(local, 1);
6213         if ((local->config.rmode & 0xff) >= RXMODE_RFMON)
6214                 reset = 1;
6215
6216         switch(*uwrq) {
6217                 case IW_MODE_ADHOC:
6218                         local->config.opmode &= 0xFF00;
6219                         local->config.opmode |= MODE_STA_IBSS;
6220                         local->config.rmode &= 0xfe00;
6221                         local->config.scanMode = SCANMODE_ACTIVE;
6222                         clear_bit (FLAG_802_11, &local->flags);
6223                         break;
6224                 case IW_MODE_INFRA:
6225                         local->config.opmode &= 0xFF00;
6226                         local->config.opmode |= MODE_STA_ESS;
6227                         local->config.rmode &= 0xfe00;
6228                         local->config.scanMode = SCANMODE_ACTIVE;
6229                         clear_bit (FLAG_802_11, &local->flags);
6230                         break;
6231                 case IW_MODE_MASTER:
6232                         local->config.opmode &= 0xFF00;
6233                         local->config.opmode |= MODE_AP;
6234                         local->config.rmode &= 0xfe00;
6235                         local->config.scanMode = SCANMODE_ACTIVE;
6236                         clear_bit (FLAG_802_11, &local->flags);
6237                         break;
6238                 case IW_MODE_REPEAT:
6239                         local->config.opmode &= 0xFF00;
6240                         local->config.opmode |= MODE_AP_RPTR;
6241                         local->config.rmode &= 0xfe00;
6242                         local->config.scanMode = SCANMODE_ACTIVE;
6243                         clear_bit (FLAG_802_11, &local->flags);
6244                         break;
6245                 case IW_MODE_MONITOR:
6246                         local->config.opmode &= 0xFF00;
6247                         local->config.opmode |= MODE_STA_ESS;
6248                         local->config.rmode &= 0xfe00;
6249                         local->config.rmode |= RXMODE_RFMON | RXMODE_DISABLE_802_3_HEADER;
6250                         local->config.scanMode = SCANMODE_PASSIVE;
6251                         set_bit (FLAG_802_11, &local->flags);
6252                         break;
6253                 default:
6254                         return -EINVAL;
6255         }
6256         if (reset)
6257                 set_bit (FLAG_RESET, &local->flags);
6258         set_bit (FLAG_COMMIT, &local->flags);
6259
6260         return -EINPROGRESS;            /* Call commit handler */
6261 }
6262
6263 /*------------------------------------------------------------------*/
6264 /*
6265  * Wireless Handler : get Mode of Operation
6266  */
6267 static int airo_get_mode(struct net_device *dev,
6268                          struct iw_request_info *info,
6269                          __u32 *uwrq,
6270                          char *extra)
6271 {
6272         struct airo_info *local = dev->priv;
6273
6274         readConfigRid(local, 1);
6275         /* If not managed, assume it's ad-hoc */
6276         switch (local->config.opmode & 0xFF) {
6277                 case MODE_STA_ESS:
6278                         *uwrq = IW_MODE_INFRA;
6279                         break;
6280                 case MODE_AP:
6281                         *uwrq = IW_MODE_MASTER;
6282                         break;
6283                 case MODE_AP_RPTR:
6284                         *uwrq = IW_MODE_REPEAT;
6285                         break;
6286                 default:
6287                         *uwrq = IW_MODE_ADHOC;
6288         }
6289
6290         return 0;
6291 }
6292
6293 /*------------------------------------------------------------------*/
6294 /*
6295  * Wireless Handler : set Encryption Key
6296  */
6297 static int airo_set_encode(struct net_device *dev,
6298                            struct iw_request_info *info,
6299                            struct iw_point *dwrq,
6300                            char *extra)
6301 {
6302         struct airo_info *local = dev->priv;
6303         CapabilityRid cap_rid;          /* Card capability info */
6304         int perm = ( dwrq->flags & IW_ENCODE_TEMP ? 0 : 1 );
6305         u16 currentAuthType = local->config.authType;
6306
6307         /* Is WEP supported ? */
6308         readCapabilityRid(local, &cap_rid, 1);
6309         /* Older firmware doesn't support this...
6310         if(!(cap_rid.softCap & 2)) {
6311                 return -EOPNOTSUPP;
6312         } */
6313         readConfigRid(local, 1);
6314
6315         /* Basic checking: do we have a key to set ?
6316          * Note : with the new API, it's impossible to get a NULL pointer.
6317          * Therefore, we need to check a key size == 0 instead.
6318          * New version of iwconfig properly set the IW_ENCODE_NOKEY flag
6319          * when no key is present (only change flags), but older versions
6320          * don't do it. - Jean II */
6321         if (dwrq->length > 0) {
6322                 wep_key_t key;
6323                 int index = (dwrq->flags & IW_ENCODE_INDEX) - 1;
6324                 int current_index = get_wep_key(local, 0xffff);
6325                 /* Check the size of the key */
6326                 if (dwrq->length > MAX_KEY_SIZE) {
6327                         return -EINVAL;
6328                 }
6329                 /* Check the index (none -> use current) */
6330                 if ((index < 0) || (index >= ((cap_rid.softCap & 0x80) ? 4:1)))
6331                         index = current_index;
6332                 /* Set the length */
6333                 if (dwrq->length > MIN_KEY_SIZE)
6334                         key.len = MAX_KEY_SIZE;
6335                 else
6336                         if (dwrq->length > 0)
6337                                 key.len = MIN_KEY_SIZE;
6338                         else
6339                                 /* Disable the key */
6340                                 key.len = 0;
6341                 /* Check if the key is not marked as invalid */
6342                 if(!(dwrq->flags & IW_ENCODE_NOKEY)) {
6343                         /* Cleanup */
6344                         memset(key.key, 0, MAX_KEY_SIZE);
6345                         /* Copy the key in the driver */
6346                         memcpy(key.key, extra, dwrq->length);
6347                         /* Send the key to the card */
6348                         set_wep_key(local, index, key.key, key.len, perm, 1);
6349                 }
6350                 /* WE specify that if a valid key is set, encryption
6351                  * should be enabled (user may turn it off later)
6352                  * This is also how "iwconfig ethX key on" works */
6353                 if((index == current_index) && (key.len > 0) &&
6354                    (local->config.authType == AUTH_OPEN)) {
6355                         local->config.authType = AUTH_ENCRYPT;
6356                 }
6357         } else {
6358                 /* Do we want to just set the transmit key index ? */
6359                 int index = (dwrq->flags & IW_ENCODE_INDEX) - 1;
6360                 if ((index >= 0) && (index < ((cap_rid.softCap & 0x80)?4:1))) {
6361                         set_wep_key(local, index, NULL, 0, perm, 1);
6362                 } else
6363                         /* Don't complain if only change the mode */
6364                         if(!dwrq->flags & IW_ENCODE_MODE) {
6365                                 return -EINVAL;
6366                         }
6367         }
6368         /* Read the flags */
6369         if(dwrq->flags & IW_ENCODE_DISABLED)
6370                 local->config.authType = AUTH_OPEN;     // disable encryption
6371         if(dwrq->flags & IW_ENCODE_RESTRICTED)
6372                 local->config.authType = AUTH_SHAREDKEY;        // Only Both
6373         if(dwrq->flags & IW_ENCODE_OPEN)
6374                 local->config.authType = AUTH_ENCRYPT;  // Only Wep
6375         /* Commit the changes to flags if needed */
6376         if (local->config.authType != currentAuthType)
6377                 set_bit (FLAG_COMMIT, &local->flags);
6378         return -EINPROGRESS;            /* Call commit handler */
6379 }
6380
6381 /*------------------------------------------------------------------*/
6382 /*
6383  * Wireless Handler : get Encryption Key
6384  */
6385 static int airo_get_encode(struct net_device *dev,
6386                            struct iw_request_info *info,
6387                            struct iw_point *dwrq,
6388                            char *extra)
6389 {
6390         struct airo_info *local = dev->priv;
6391         int index = (dwrq->flags & IW_ENCODE_INDEX) - 1;
6392         CapabilityRid cap_rid;          /* Card capability info */
6393
6394         /* Is it supported ? */
6395         readCapabilityRid(local, &cap_rid, 1);
6396         if(!(cap_rid.softCap & 2)) {
6397                 return -EOPNOTSUPP;
6398         }
6399         readConfigRid(local, 1);
6400         /* Check encryption mode */
6401         switch(local->config.authType)  {
6402                 case AUTH_ENCRYPT:
6403                         dwrq->flags = IW_ENCODE_OPEN;
6404                         break;
6405                 case AUTH_SHAREDKEY:
6406                         dwrq->flags = IW_ENCODE_RESTRICTED;
6407                         break;
6408                 default:
6409                 case AUTH_OPEN:
6410                         dwrq->flags = IW_ENCODE_DISABLED;
6411                         break;
6412         }
6413         /* We can't return the key, so set the proper flag and return zero */
6414         dwrq->flags |= IW_ENCODE_NOKEY;
6415         memset(extra, 0, 16);
6416
6417         /* Which key do we want ? -1 -> tx index */
6418         if ((index < 0) || (index >= ((cap_rid.softCap & 0x80) ? 4 : 1)))
6419                 index = get_wep_key(local, 0xffff);
6420         dwrq->flags |= index + 1;
6421         /* Copy the key to the user buffer */
6422         dwrq->length = get_wep_key(local, index);
6423         if (dwrq->length > 16) {
6424                 dwrq->length=0;
6425         }
6426         return 0;
6427 }
6428
6429 /*------------------------------------------------------------------*/
6430 /*
6431  * Wireless Handler : set extended Encryption parameters
6432  */
6433 static int airo_set_encodeext(struct net_device *dev,
6434                            struct iw_request_info *info,
6435                             union iwreq_data *wrqu,
6436                             char *extra)
6437 {
6438         struct airo_info *local = dev->priv;
6439         struct iw_point *encoding = &wrqu->encoding;
6440         struct iw_encode_ext *ext = (struct iw_encode_ext *)extra;
6441         CapabilityRid cap_rid;          /* Card capability info */
6442         int perm = ( encoding->flags & IW_ENCODE_TEMP ? 0 : 1 );
6443         u16 currentAuthType = local->config.authType;
6444         int idx, key_len, alg = ext->alg, set_key = 1;
6445         wep_key_t key;
6446
6447         /* Is WEP supported ? */
6448         readCapabilityRid(local, &cap_rid, 1);
6449         /* Older firmware doesn't support this...
6450         if(!(cap_rid.softCap & 2)) {
6451                 return -EOPNOTSUPP;
6452         } */
6453         readConfigRid(local, 1);
6454
6455         /* Determine and validate the key index */
6456         idx = encoding->flags & IW_ENCODE_INDEX;
6457         if (idx) {
6458                 if (idx < 1 || idx > ((cap_rid.softCap & 0x80) ? 4:1))
6459                         return -EINVAL;
6460                 idx--;
6461         } else
6462                 idx = get_wep_key(local, 0xffff);
6463
6464         if (encoding->flags & IW_ENCODE_DISABLED)
6465                 alg = IW_ENCODE_ALG_NONE;
6466
6467         if (ext->ext_flags & IW_ENCODE_EXT_SET_TX_KEY) {
6468                 /* Only set transmit key index here, actual
6469                  * key is set below if needed.
6470                  */
6471                 set_wep_key(local, idx, NULL, 0, perm, 1);
6472                 set_key = ext->key_len > 0 ? 1 : 0;
6473         }
6474
6475         if (set_key) {
6476                 /* Set the requested key first */
6477                 memset(key.key, 0, MAX_KEY_SIZE);
6478                 switch (alg) {
6479                 case IW_ENCODE_ALG_NONE:
6480                         key.len = 0;
6481                         break;
6482                 case IW_ENCODE_ALG_WEP:
6483                         if (ext->key_len > MIN_KEY_SIZE) {
6484                                 key.len = MAX_KEY_SIZE;
6485                         } else if (ext->key_len > 0) {
6486                                 key.len = MIN_KEY_SIZE;
6487                         } else {
6488                                 return -EINVAL;
6489                         }
6490                         key_len = min (ext->key_len, key.len);
6491                         memcpy(key.key, ext->key, key_len);
6492                         break;
6493                 default:
6494                         return -EINVAL;
6495                 }
6496                 /* Send the key to the card */
6497                 set_wep_key(local, idx, key.key, key.len, perm, 1);
6498         }
6499
6500         /* Read the flags */
6501         if(encoding->flags & IW_ENCODE_DISABLED)
6502                 local->config.authType = AUTH_OPEN;     // disable encryption
6503         if(encoding->flags & IW_ENCODE_RESTRICTED)
6504                 local->config.authType = AUTH_SHAREDKEY;        // Only Both
6505         if(encoding->flags & IW_ENCODE_OPEN)
6506                 local->config.authType = AUTH_ENCRYPT;  // Only Wep
6507         /* Commit the changes to flags if needed */
6508         if (local->config.authType != currentAuthType)
6509                 set_bit (FLAG_COMMIT, &local->flags);
6510
6511         return -EINPROGRESS;
6512 }
6513
6514
6515 /*------------------------------------------------------------------*/
6516 /*
6517  * Wireless Handler : get extended Encryption parameters
6518  */
6519 static int airo_get_encodeext(struct net_device *dev,
6520                             struct iw_request_info *info,
6521                             union iwreq_data *wrqu,
6522                             char *extra)
6523 {
6524         struct airo_info *local = dev->priv;
6525         struct iw_point *encoding = &wrqu->encoding;
6526         struct iw_encode_ext *ext = (struct iw_encode_ext *)extra;
6527         CapabilityRid cap_rid;          /* Card capability info */
6528         int idx, max_key_len;
6529
6530         /* Is it supported ? */
6531         readCapabilityRid(local, &cap_rid, 1);
6532         if(!(cap_rid.softCap & 2)) {
6533                 return -EOPNOTSUPP;
6534         }
6535         readConfigRid(local, 1);
6536
6537         max_key_len = encoding->length - sizeof(*ext);
6538         if (max_key_len < 0)
6539                 return -EINVAL;
6540
6541         idx = encoding->flags & IW_ENCODE_INDEX;
6542         if (idx) {
6543                 if (idx < 1 || idx > ((cap_rid.softCap & 0x80) ? 4:1))
6544                         return -EINVAL;
6545                 idx--;
6546         } else
6547                 idx = get_wep_key(local, 0xffff);
6548
6549         encoding->flags = idx + 1;
6550         memset(ext, 0, sizeof(*ext));
6551
6552         /* Check encryption mode */
6553         switch(local->config.authType) {
6554                 case AUTH_ENCRYPT:
6555                         encoding->flags = IW_ENCODE_ALG_WEP | IW_ENCODE_ENABLED;
6556                         break;
6557                 case AUTH_SHAREDKEY:
6558                         encoding->flags = IW_ENCODE_ALG_WEP | IW_ENCODE_ENABLED;
6559                         break;
6560                 default:
6561                 case AUTH_OPEN:
6562                         encoding->flags = IW_ENCODE_ALG_NONE | IW_ENCODE_DISABLED;
6563                         break;
6564         }
6565         /* We can't return the key, so set the proper flag and return zero */
6566         encoding->flags |= IW_ENCODE_NOKEY;
6567         memset(extra, 0, 16);
6568         
6569         /* Copy the key to the user buffer */
6570         ext->key_len = get_wep_key(local, idx);
6571         if (ext->key_len > 16) {
6572                 ext->key_len=0;
6573         }
6574
6575         return 0;
6576 }
6577
6578
6579 /*------------------------------------------------------------------*/
6580 /*
6581  * Wireless Handler : set extended authentication parameters
6582  */
6583 static int airo_set_auth(struct net_device *dev,
6584                                struct iw_request_info *info,
6585                                union iwreq_data *wrqu, char *extra)
6586 {
6587         struct airo_info *local = dev->priv;
6588         struct iw_param *param = &wrqu->param;
6589         u16 currentAuthType = local->config.authType;
6590
6591         switch (param->flags & IW_AUTH_INDEX) {
6592         case IW_AUTH_WPA_VERSION:
6593         case IW_AUTH_CIPHER_PAIRWISE:
6594         case IW_AUTH_CIPHER_GROUP:
6595         case IW_AUTH_KEY_MGMT:
6596         case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6597         case IW_AUTH_PRIVACY_INVOKED:
6598                 /*
6599                  * airo does not use these parameters
6600                  */
6601                 break;
6602
6603         case IW_AUTH_DROP_UNENCRYPTED:
6604                 if (param->value) {
6605                         /* Only change auth type if unencrypted */
6606                         if (currentAuthType == AUTH_OPEN)
6607                                 local->config.authType = AUTH_ENCRYPT;
6608                 } else {
6609                         local->config.authType = AUTH_OPEN;
6610                 }
6611
6612                 /* Commit the changes to flags if needed */
6613                 if (local->config.authType != currentAuthType)
6614                         set_bit (FLAG_COMMIT, &local->flags);
6615                 break;
6616
6617         case IW_AUTH_80211_AUTH_ALG: {
6618                         /* FIXME: What about AUTH_OPEN?  This API seems to
6619                          * disallow setting our auth to AUTH_OPEN.
6620                          */
6621                         if (param->value & IW_AUTH_ALG_SHARED_KEY) {
6622                                 local->config.authType = AUTH_SHAREDKEY;
6623                         } else if (param->value & IW_AUTH_ALG_OPEN_SYSTEM) {
6624                                 local->config.authType = AUTH_ENCRYPT;
6625                         } else
6626                                 return -EINVAL;
6627                         break;
6628
6629                         /* Commit the changes to flags if needed */
6630                         if (local->config.authType != currentAuthType)
6631                                 set_bit (FLAG_COMMIT, &local->flags);
6632                 }
6633
6634         case IW_AUTH_WPA_ENABLED:
6635                 /* Silently accept disable of WPA */
6636                 if (param->value > 0)
6637                         return -EOPNOTSUPP;
6638                 break;
6639
6640         default:
6641                 return -EOPNOTSUPP;
6642         }
6643         return -EINPROGRESS;
6644 }
6645
6646
6647 /*------------------------------------------------------------------*/
6648 /*
6649  * Wireless Handler : get extended authentication parameters
6650  */
6651 static int airo_get_auth(struct net_device *dev,
6652                                struct iw_request_info *info,
6653                                union iwreq_data *wrqu, char *extra)
6654 {
6655         struct airo_info *local = dev->priv;
6656         struct iw_param *param = &wrqu->param;
6657         u16 currentAuthType = local->config.authType;
6658
6659         switch (param->flags & IW_AUTH_INDEX) {
6660         case IW_AUTH_DROP_UNENCRYPTED:
6661                 switch (currentAuthType) {
6662                 case AUTH_SHAREDKEY:
6663                 case AUTH_ENCRYPT:
6664                         param->value = 1;
6665                         break;
6666                 default:
6667                         param->value = 0;
6668                         break;
6669                 }
6670                 break;
6671
6672         case IW_AUTH_80211_AUTH_ALG:
6673                 switch (currentAuthType) {
6674                 case AUTH_SHAREDKEY:
6675                         param->value = IW_AUTH_ALG_SHARED_KEY;
6676                         break;
6677                 case AUTH_ENCRYPT:
6678                 default:
6679                         param->value = IW_AUTH_ALG_OPEN_SYSTEM;
6680                         break;
6681                 }
6682                 break;
6683
6684         case IW_AUTH_WPA_ENABLED:
6685                 param->value = 0;
6686                 break;
6687
6688         default:
6689                 return -EOPNOTSUPP;
6690         }
6691         return 0;
6692 }
6693
6694
6695 /*------------------------------------------------------------------*/
6696 /*
6697  * Wireless Handler : set Tx-Power
6698  */
6699 static int airo_set_txpow(struct net_device *dev,
6700                           struct iw_request_info *info,
6701                           struct iw_param *vwrq,
6702                           char *extra)
6703 {
6704         struct airo_info *local = dev->priv;
6705         CapabilityRid cap_rid;          /* Card capability info */
6706         int i;
6707         int rc = -EINVAL;
6708
6709         readCapabilityRid(local, &cap_rid, 1);
6710
6711         if (vwrq->disabled) {
6712                 set_bit (FLAG_RADIO_OFF, &local->flags);
6713                 set_bit (FLAG_COMMIT, &local->flags);
6714                 return -EINPROGRESS;            /* Call commit handler */
6715         }
6716         if (vwrq->flags != IW_TXPOW_MWATT) {
6717                 return -EINVAL;
6718         }
6719         clear_bit (FLAG_RADIO_OFF, &local->flags);
6720         for (i = 0; cap_rid.txPowerLevels[i] && (i < 8); i++)
6721                 if ((vwrq->value==cap_rid.txPowerLevels[i])) {
6722                         readConfigRid(local, 1);
6723                         local->config.txPower = vwrq->value;
6724                         set_bit (FLAG_COMMIT, &local->flags);
6725                         rc = -EINPROGRESS;      /* Call commit handler */
6726                         break;
6727                 }
6728         return rc;
6729 }
6730
6731 /*------------------------------------------------------------------*/
6732 /*
6733  * Wireless Handler : get Tx-Power
6734  */
6735 static int airo_get_txpow(struct net_device *dev,
6736                           struct iw_request_info *info,
6737                           struct iw_param *vwrq,
6738                           char *extra)
6739 {
6740         struct airo_info *local = dev->priv;
6741
6742         readConfigRid(local, 1);
6743         vwrq->value = local->config.txPower;
6744         vwrq->fixed = 1;        /* No power control */
6745         vwrq->disabled = test_bit(FLAG_RADIO_OFF, &local->flags);
6746         vwrq->flags = IW_TXPOW_MWATT;
6747
6748         return 0;
6749 }
6750
6751 /*------------------------------------------------------------------*/
6752 /*
6753  * Wireless Handler : set Retry limits
6754  */
6755 static int airo_set_retry(struct net_device *dev,
6756                           struct iw_request_info *info,
6757                           struct iw_param *vwrq,
6758                           char *extra)
6759 {
6760         struct airo_info *local = dev->priv;
6761         int rc = -EINVAL;
6762
6763         if(vwrq->disabled) {
6764                 return -EINVAL;
6765         }
6766         readConfigRid(local, 1);
6767         if(vwrq->flags & IW_RETRY_LIMIT) {
6768                 if(vwrq->flags & IW_RETRY_MAX)
6769                         local->config.longRetryLimit = vwrq->value;
6770                 else if (vwrq->flags & IW_RETRY_MIN)
6771                         local->config.shortRetryLimit = vwrq->value;
6772                 else {
6773                         /* No modifier : set both */
6774                         local->config.longRetryLimit = vwrq->value;
6775                         local->config.shortRetryLimit = vwrq->value;
6776                 }
6777                 set_bit (FLAG_COMMIT, &local->flags);
6778                 rc = -EINPROGRESS;              /* Call commit handler */
6779         }
6780         if(vwrq->flags & IW_RETRY_LIFETIME) {
6781                 local->config.txLifetime = vwrq->value / 1024;
6782                 set_bit (FLAG_COMMIT, &local->flags);
6783                 rc = -EINPROGRESS;              /* Call commit handler */
6784         }
6785         return rc;
6786 }
6787
6788 /*------------------------------------------------------------------*/
6789 /*
6790  * Wireless Handler : get Retry limits
6791  */
6792 static int airo_get_retry(struct net_device *dev,
6793                           struct iw_request_info *info,
6794                           struct iw_param *vwrq,
6795                           char *extra)
6796 {
6797         struct airo_info *local = dev->priv;
6798
6799         vwrq->disabled = 0;      /* Can't be disabled */
6800
6801         readConfigRid(local, 1);
6802         /* Note : by default, display the min retry number */
6803         if((vwrq->flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME) {
6804                 vwrq->flags = IW_RETRY_LIFETIME;
6805                 vwrq->value = (int)local->config.txLifetime * 1024;
6806         } else if((vwrq->flags & IW_RETRY_MAX)) {
6807                 vwrq->flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
6808                 vwrq->value = (int)local->config.longRetryLimit;
6809         } else {
6810                 vwrq->flags = IW_RETRY_LIMIT;
6811                 vwrq->value = (int)local->config.shortRetryLimit;
6812                 if((int)local->config.shortRetryLimit != (int)local->config.longRetryLimit)
6813                         vwrq->flags |= IW_RETRY_MIN;
6814         }
6815
6816         return 0;
6817 }
6818
6819 /*------------------------------------------------------------------*/
6820 /*
6821  * Wireless Handler : get range info
6822  */
6823 static int airo_get_range(struct net_device *dev,
6824                           struct iw_request_info *info,
6825                           struct iw_point *dwrq,
6826                           char *extra)
6827 {
6828         struct airo_info *local = dev->priv;
6829         struct iw_range *range = (struct iw_range *) extra;
6830         CapabilityRid cap_rid;          /* Card capability info */
6831         int             i;
6832         int             k;
6833
6834         readCapabilityRid(local, &cap_rid, 1);
6835
6836         dwrq->length = sizeof(struct iw_range);
6837         memset(range, 0, sizeof(*range));
6838         range->min_nwid = 0x0000;
6839         range->max_nwid = 0x0000;
6840         range->num_channels = 14;
6841         /* Should be based on cap_rid.country to give only
6842          * what the current card support */
6843         k = 0;
6844         for(i = 0; i < 14; i++) {
6845                 range->freq[k].i = i + 1; /* List index */
6846                 range->freq[k].m = frequency_list[i] * 100000;
6847                 range->freq[k++].e = 1; /* Values in table in MHz -> * 10^5 * 10 */
6848         }
6849         range->num_frequency = k;
6850
6851         range->sensitivity = 65535;
6852
6853         /* Hum... Should put the right values there */
6854         if (local->rssi)
6855                 range->max_qual.qual = 100;     /* % */
6856         else
6857                 range->max_qual.qual = airo_get_max_quality(&cap_rid);
6858         range->max_qual.level = 0x100 - 120;    /* -120 dBm */
6859         range->max_qual.noise = 0x100 - 120;    /* -120 dBm */
6860
6861         /* Experimental measurements - boundary 11/5.5 Mb/s */
6862         /* Note : with or without the (local->rssi), results
6863          * are somewhat different. - Jean II */
6864         if (local->rssi) {
6865                 range->avg_qual.qual = 50;              /* % */
6866                 range->avg_qual.level = 0x100 - 70;     /* -70 dBm */
6867         } else {
6868                 range->avg_qual.qual = airo_get_avg_quality(&cap_rid);
6869                 range->avg_qual.level = 0x100 - 80;     /* -80 dBm */
6870         }
6871         range->avg_qual.noise = 0x100 - 85;             /* -85 dBm */
6872
6873         for(i = 0 ; i < 8 ; i++) {
6874                 range->bitrate[i] = cap_rid.supportedRates[i] * 500000;
6875                 if(range->bitrate[i] == 0)
6876                         break;
6877         }
6878         range->num_bitrates = i;
6879
6880         /* Set an indication of the max TCP throughput
6881          * in bit/s that we can expect using this interface.
6882          * May be use for QoS stuff... Jean II */
6883         if(i > 2)
6884                 range->throughput = 5000 * 1000;
6885         else
6886                 range->throughput = 1500 * 1000;
6887
6888         range->min_rts = 0;
6889         range->max_rts = AIRO_DEF_MTU;
6890         range->min_frag = 256;
6891         range->max_frag = AIRO_DEF_MTU;
6892
6893         if(cap_rid.softCap & 2) {
6894                 // WEP: RC4 40 bits
6895                 range->encoding_size[0] = 5;
6896                 // RC4 ~128 bits
6897                 if (cap_rid.softCap & 0x100) {
6898                         range->encoding_size[1] = 13;
6899                         range->num_encoding_sizes = 2;
6900                 } else
6901                         range->num_encoding_sizes = 1;
6902                 range->max_encoding_tokens = (cap_rid.softCap & 0x80) ? 4 : 1;
6903         } else {
6904                 range->num_encoding_sizes = 0;
6905                 range->max_encoding_tokens = 0;
6906         }
6907         range->min_pmp = 0;
6908         range->max_pmp = 5000000;       /* 5 secs */
6909         range->min_pmt = 0;
6910         range->max_pmt = 65535 * 1024;  /* ??? */
6911         range->pmp_flags = IW_POWER_PERIOD;
6912         range->pmt_flags = IW_POWER_TIMEOUT;
6913         range->pm_capa = IW_POWER_PERIOD | IW_POWER_TIMEOUT | IW_POWER_ALL_R;
6914
6915         /* Transmit Power - values are in mW */
6916         for(i = 0 ; i < 8 ; i++) {
6917                 range->txpower[i] = cap_rid.txPowerLevels[i];
6918                 if(range->txpower[i] == 0)
6919                         break;
6920         }
6921         range->num_txpower = i;
6922         range->txpower_capa = IW_TXPOW_MWATT;
6923         range->we_version_source = 19;
6924         range->we_version_compiled = WIRELESS_EXT;
6925         range->retry_capa = IW_RETRY_LIMIT | IW_RETRY_LIFETIME;
6926         range->retry_flags = IW_RETRY_LIMIT;
6927         range->r_time_flags = IW_RETRY_LIFETIME;
6928         range->min_retry = 1;
6929         range->max_retry = 65535;
6930         range->min_r_time = 1024;
6931         range->max_r_time = 65535 * 1024;
6932
6933         /* Event capability (kernel + driver) */
6934         range->event_capa[0] = (IW_EVENT_CAPA_K_0 |
6935                                 IW_EVENT_CAPA_MASK(SIOCGIWTHRSPY) |
6936                                 IW_EVENT_CAPA_MASK(SIOCGIWAP) |
6937                                 IW_EVENT_CAPA_MASK(SIOCGIWSCAN));
6938         range->event_capa[1] = IW_EVENT_CAPA_K_1;
6939         range->event_capa[4] = IW_EVENT_CAPA_MASK(IWEVTXDROP);
6940         return 0;
6941 }
6942
6943 /*------------------------------------------------------------------*/
6944 /*
6945  * Wireless Handler : set Power Management
6946  */
6947 static int airo_set_power(struct net_device *dev,
6948                           struct iw_request_info *info,
6949                           struct iw_param *vwrq,
6950                           char *extra)
6951 {
6952         struct airo_info *local = dev->priv;
6953
6954         readConfigRid(local, 1);
6955         if (vwrq->disabled) {
6956                 if ((local->config.rmode & 0xFF) >= RXMODE_RFMON) {
6957                         return -EINVAL;
6958                 }
6959                 local->config.powerSaveMode = POWERSAVE_CAM;
6960                 local->config.rmode &= 0xFF00;
6961                 local->config.rmode |= RXMODE_BC_MC_ADDR;
6962                 set_bit (FLAG_COMMIT, &local->flags);
6963                 return -EINPROGRESS;            /* Call commit handler */
6964         }
6965         if ((vwrq->flags & IW_POWER_TYPE) == IW_POWER_TIMEOUT) {
6966                 local->config.fastListenDelay = (vwrq->value + 500) / 1024;
6967                 local->config.powerSaveMode = POWERSAVE_PSPCAM;
6968                 set_bit (FLAG_COMMIT, &local->flags);
6969         } else if ((vwrq->flags & IW_POWER_TYPE) == IW_POWER_PERIOD) {
6970                 local->config.fastListenInterval = local->config.listenInterval = (vwrq->value + 500) / 1024;
6971                 local->config.powerSaveMode = POWERSAVE_PSPCAM;
6972                 set_bit (FLAG_COMMIT, &local->flags);
6973         }
6974         switch (vwrq->flags & IW_POWER_MODE) {
6975                 case IW_POWER_UNICAST_R:
6976                         if ((local->config.rmode & 0xFF) >= RXMODE_RFMON) {
6977                                 return -EINVAL;
6978                         }
6979                         local->config.rmode &= 0xFF00;
6980                         local->config.rmode |= RXMODE_ADDR;
6981                         set_bit (FLAG_COMMIT, &local->flags);
6982                         break;
6983                 case IW_POWER_ALL_R:
6984                         if ((local->config.rmode & 0xFF) >= RXMODE_RFMON) {
6985                                 return -EINVAL;
6986                         }
6987                         local->config.rmode &= 0xFF00;
6988                         local->config.rmode |= RXMODE_BC_MC_ADDR;
6989                         set_bit (FLAG_COMMIT, &local->flags);
6990                 case IW_POWER_ON:
6991                         break;
6992                 default:
6993                         return -EINVAL;
6994         }
6995         // Note : we may want to factor local->need_commit here
6996         // Note2 : may also want to factor RXMODE_RFMON test
6997         return -EINPROGRESS;            /* Call commit handler */
6998 }
6999
7000 /*------------------------------------------------------------------*/
7001 /*
7002  * Wireless Handler : get Power Management
7003  */
7004 static int airo_get_power(struct net_device *dev,
7005                           struct iw_request_info *info,
7006                           struct iw_param *vwrq,
7007                           char *extra)
7008 {
7009         struct airo_info *local = dev->priv;
7010         int mode;
7011
7012         readConfigRid(local, 1);
7013         mode = local->config.powerSaveMode;
7014         if ((vwrq->disabled = (mode == POWERSAVE_CAM)))
7015                 return 0;
7016         if ((vwrq->flags & IW_POWER_TYPE) == IW_POWER_TIMEOUT) {
7017                 vwrq->value = (int)local->config.fastListenDelay * 1024;
7018                 vwrq->flags = IW_POWER_TIMEOUT;
7019         } else {
7020                 vwrq->value = (int)local->config.fastListenInterval * 1024;
7021                 vwrq->flags = IW_POWER_PERIOD;
7022         }
7023         if ((local->config.rmode & 0xFF) == RXMODE_ADDR)
7024                 vwrq->flags |= IW_POWER_UNICAST_R;
7025         else
7026                 vwrq->flags |= IW_POWER_ALL_R;
7027
7028         return 0;
7029 }
7030
7031 /*------------------------------------------------------------------*/
7032 /*
7033  * Wireless Handler : set Sensitivity
7034  */
7035 static int airo_set_sens(struct net_device *dev,
7036                          struct iw_request_info *info,
7037                          struct iw_param *vwrq,
7038                          char *extra)
7039 {
7040         struct airo_info *local = dev->priv;
7041
7042         readConfigRid(local, 1);
7043         local->config.rssiThreshold = vwrq->disabled ? RSSI_DEFAULT : vwrq->value;
7044         set_bit (FLAG_COMMIT, &local->flags);
7045
7046         return -EINPROGRESS;            /* Call commit handler */
7047 }
7048
7049 /*------------------------------------------------------------------*/
7050 /*
7051  * Wireless Handler : get Sensitivity
7052  */
7053 static int airo_get_sens(struct net_device *dev,
7054                          struct iw_request_info *info,
7055                          struct iw_param *vwrq,
7056                          char *extra)
7057 {
7058         struct airo_info *local = dev->priv;
7059
7060         readConfigRid(local, 1);
7061         vwrq->value = local->config.rssiThreshold;
7062         vwrq->disabled = (vwrq->value == 0);
7063         vwrq->fixed = 1;
7064
7065         return 0;
7066 }
7067
7068 /*------------------------------------------------------------------*/
7069 /*
7070  * Wireless Handler : get AP List
7071  * Note : this is deprecated in favor of IWSCAN
7072  */
7073 static int airo_get_aplist(struct net_device *dev,
7074                            struct iw_request_info *info,
7075                            struct iw_point *dwrq,
7076                            char *extra)
7077 {
7078         struct airo_info *local = dev->priv;
7079         struct sockaddr *address = (struct sockaddr *) extra;
7080         struct iw_quality qual[IW_MAX_AP];
7081         BSSListRid BSSList;
7082         int i;
7083         int loseSync = capable(CAP_NET_ADMIN) ? 1: -1;
7084
7085         for (i = 0; i < IW_MAX_AP; i++) {
7086                 if (readBSSListRid(local, loseSync, &BSSList))
7087                         break;
7088                 loseSync = 0;
7089                 memcpy(address[i].sa_data, BSSList.bssid, ETH_ALEN);
7090                 address[i].sa_family = ARPHRD_ETHER;
7091                 if (local->rssi) {
7092                         qual[i].level = 0x100 - BSSList.dBm;
7093                         qual[i].qual = airo_dbm_to_pct( local->rssi, BSSList.dBm );
7094                         qual[i].updated = IW_QUAL_QUAL_UPDATED
7095                                         | IW_QUAL_LEVEL_UPDATED
7096                                         | IW_QUAL_DBM;
7097                 } else {
7098                         qual[i].level = (BSSList.dBm + 321) / 2;
7099                         qual[i].qual = 0;
7100                         qual[i].updated = IW_QUAL_QUAL_INVALID
7101                                         | IW_QUAL_LEVEL_UPDATED
7102                                         | IW_QUAL_DBM;
7103                 }
7104                 qual[i].noise = local->wstats.qual.noise;
7105                 if (BSSList.index == 0xffff)
7106                         break;
7107         }
7108         if (!i) {
7109                 StatusRid status_rid;           /* Card status info */
7110                 readStatusRid(local, &status_rid, 1);
7111                 for (i = 0;
7112                      i < min(IW_MAX_AP, 4) &&
7113                              (status_rid.bssid[i][0]
7114                               & status_rid.bssid[i][1]
7115                               & status_rid.bssid[i][2]
7116                               & status_rid.bssid[i][3]
7117                               & status_rid.bssid[i][4]
7118                               & status_rid.bssid[i][5])!=0xff &&
7119                              (status_rid.bssid[i][0]
7120                               | status_rid.bssid[i][1]
7121                               | status_rid.bssid[i][2]
7122                               | status_rid.bssid[i][3]
7123                               | status_rid.bssid[i][4]
7124                               | status_rid.bssid[i][5]);
7125                      i++) {
7126                         memcpy(address[i].sa_data,
7127                                status_rid.bssid[i], ETH_ALEN);
7128                         address[i].sa_family = ARPHRD_ETHER;
7129                 }
7130         } else {
7131                 dwrq->flags = 1; /* Should be define'd */
7132                 memcpy(extra + sizeof(struct sockaddr)*i,
7133                        &qual,  sizeof(struct iw_quality)*i);
7134         }
7135         dwrq->length = i;
7136
7137         return 0;
7138 }
7139
7140 /*------------------------------------------------------------------*/
7141 /*
7142  * Wireless Handler : Initiate Scan
7143  */
7144 static int airo_set_scan(struct net_device *dev,
7145                          struct iw_request_info *info,
7146                          struct iw_param *vwrq,
7147                          char *extra)
7148 {
7149         struct airo_info *ai = dev->priv;
7150         Cmd cmd;
7151         Resp rsp;
7152         int wake = 0;
7153
7154         /* Note : you may have realised that, as this is a SET operation,
7155          * this is privileged and therefore a normal user can't
7156          * perform scanning.
7157          * This is not an error, while the device perform scanning,
7158          * traffic doesn't flow, so it's a perfect DoS...
7159          * Jean II */
7160         if (ai->flags & FLAG_RADIO_MASK) return -ENETDOWN;
7161
7162         if (down_interruptible(&ai->sem))
7163                 return -ERESTARTSYS;
7164
7165         /* If there's already a scan in progress, don't
7166          * trigger another one. */
7167         if (ai->scan_timeout > 0)
7168                 goto out;
7169
7170         /* Initiate a scan command */
7171         ai->scan_timeout = RUN_AT(3*HZ);
7172         memset(&cmd, 0, sizeof(cmd));
7173         cmd.cmd=CMD_LISTBSS;
7174         issuecommand(ai, &cmd, &rsp);
7175         wake = 1;
7176
7177 out:
7178         up(&ai->sem);
7179         if (wake)
7180                 wake_up_interruptible(&ai->thr_wait);
7181         return 0;
7182 }
7183
7184 /*------------------------------------------------------------------*/
7185 /*
7186  * Translate scan data returned from the card to a card independent
7187  * format that the Wireless Tools will understand - Jean II
7188  */
7189 static inline char *airo_translate_scan(struct net_device *dev,
7190                                         char *current_ev,
7191                                         char *end_buf,
7192                                         BSSListRid *bss)
7193 {
7194         struct airo_info *ai = dev->priv;
7195         struct iw_event         iwe;            /* Temporary buffer */
7196         u16                     capabilities;
7197         char *                  current_val;    /* For rates */
7198         int                     i;
7199         char *          buf;
7200
7201         /* First entry *MUST* be the AP MAC address */
7202         iwe.cmd = SIOCGIWAP;
7203         iwe.u.ap_addr.sa_family = ARPHRD_ETHER;
7204         memcpy(iwe.u.ap_addr.sa_data, bss->bssid, ETH_ALEN);
7205         current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe, IW_EV_ADDR_LEN);
7206
7207         /* Other entries will be displayed in the order we give them */
7208
7209         /* Add the ESSID */
7210         iwe.u.data.length = bss->ssidLen;
7211         if(iwe.u.data.length > 32)
7212                 iwe.u.data.length = 32;
7213         iwe.cmd = SIOCGIWESSID;
7214         iwe.u.data.flags = 1;
7215         current_ev = iwe_stream_add_point(current_ev, end_buf, &iwe, bss->ssid);
7216
7217         /* Add mode */
7218         iwe.cmd = SIOCGIWMODE;
7219         capabilities = le16_to_cpu(bss->cap);
7220         if(capabilities & (CAP_ESS | CAP_IBSS)) {
7221                 if(capabilities & CAP_ESS)
7222                         iwe.u.mode = IW_MODE_MASTER;
7223                 else
7224                         iwe.u.mode = IW_MODE_ADHOC;
7225                 current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe, IW_EV_UINT_LEN);
7226         }
7227
7228         /* Add frequency */
7229         iwe.cmd = SIOCGIWFREQ;
7230         iwe.u.freq.m = le16_to_cpu(bss->dsChannel);
7231         /* iwe.u.freq.m containt the channel (starting 1), our 
7232          * frequency_list array start at index 0...
7233          */
7234         iwe.u.freq.m = frequency_list[iwe.u.freq.m - 1] * 100000;
7235         iwe.u.freq.e = 1;
7236         current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe, IW_EV_FREQ_LEN);
7237
7238         /* Add quality statistics */
7239         iwe.cmd = IWEVQUAL;
7240         if (ai->rssi) {
7241                 iwe.u.qual.level = 0x100 - bss->dBm;
7242                 iwe.u.qual.qual = airo_dbm_to_pct( ai->rssi, bss->dBm );
7243                 iwe.u.qual.updated = IW_QUAL_QUAL_UPDATED
7244                                 | IW_QUAL_LEVEL_UPDATED
7245                                 | IW_QUAL_DBM;
7246         } else {
7247                 iwe.u.qual.level = (bss->dBm + 321) / 2;
7248                 iwe.u.qual.qual = 0;
7249                 iwe.u.qual.updated = IW_QUAL_QUAL_INVALID
7250                                 | IW_QUAL_LEVEL_UPDATED
7251                                 | IW_QUAL_DBM;
7252         }
7253         iwe.u.qual.noise = ai->wstats.qual.noise;
7254         current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe, IW_EV_QUAL_LEN);
7255
7256         /* Add encryption capability */
7257         iwe.cmd = SIOCGIWENCODE;
7258         if(capabilities & CAP_PRIVACY)
7259                 iwe.u.data.flags = IW_ENCODE_ENABLED | IW_ENCODE_NOKEY;
7260         else
7261                 iwe.u.data.flags = IW_ENCODE_DISABLED;
7262         iwe.u.data.length = 0;
7263         current_ev = iwe_stream_add_point(current_ev, end_buf, &iwe, bss->ssid);
7264
7265         /* Rate : stuffing multiple values in a single event require a bit
7266          * more of magic - Jean II */
7267         current_val = current_ev + IW_EV_LCP_LEN;
7268
7269         iwe.cmd = SIOCGIWRATE;
7270         /* Those two flags are ignored... */
7271         iwe.u.bitrate.fixed = iwe.u.bitrate.disabled = 0;
7272         /* Max 8 values */
7273         for(i = 0 ; i < 8 ; i++) {
7274                 /* NULL terminated */
7275                 if(bss->rates[i] == 0)
7276                         break;
7277                 /* Bit rate given in 500 kb/s units (+ 0x80) */
7278                 iwe.u.bitrate.value = ((bss->rates[i] & 0x7f) * 500000);
7279                 /* Add new value to event */
7280                 current_val = iwe_stream_add_value(current_ev, current_val, end_buf, &iwe, IW_EV_PARAM_LEN);
7281         }
7282         /* Check if we added any event */
7283         if((current_val - current_ev) > IW_EV_LCP_LEN)
7284                 current_ev = current_val;
7285
7286         /* Beacon interval */
7287         buf = kmalloc(30, GFP_KERNEL);
7288         if (buf) {
7289                 iwe.cmd = IWEVCUSTOM;
7290                 sprintf(buf, "bcn_int=%d", bss->beaconInterval);
7291                 iwe.u.data.length = strlen(buf);
7292                 current_ev = iwe_stream_add_point(current_ev, end_buf, &iwe, buf);
7293                 kfree(buf);
7294         }
7295
7296         /* Put WPA/RSN Information Elements into the event stream */
7297         if (test_bit(FLAG_WPA_CAPABLE, &ai->flags)) {
7298                 unsigned int num_null_ies = 0;
7299                 u16 length = sizeof (bss->extra.iep);
7300                 struct ieee80211_info_element *info_element =
7301                         (struct ieee80211_info_element *) &bss->extra.iep;
7302
7303                 while ((length >= sizeof(*info_element)) && (num_null_ies < 2)) {
7304                         if (sizeof(*info_element) + info_element->len > length) {
7305                                 /* Invalid element, don't continue parsing IE */
7306                                 break;
7307                         }
7308
7309                         switch (info_element->id) {
7310                         case MFIE_TYPE_SSID:
7311                                 /* Two zero-length SSID elements
7312                                  * mean we're done parsing elements */
7313                                 if (!info_element->len)
7314                                         num_null_ies++;
7315                                 break;
7316
7317                         case MFIE_TYPE_GENERIC:
7318                                 if (info_element->len >= 4 &&
7319                                     info_element->data[0] == 0x00 &&
7320                                     info_element->data[1] == 0x50 &&
7321                                     info_element->data[2] == 0xf2 &&
7322                                     info_element->data[3] == 0x01) {
7323                                         iwe.cmd = IWEVGENIE;
7324                                         iwe.u.data.length = min(info_element->len + 2,
7325                                                                   MAX_WPA_IE_LEN);
7326                                         current_ev = iwe_stream_add_point(current_ev, end_buf,
7327                                                         &iwe, (char *) info_element);
7328                                 }
7329                                 break;
7330
7331                         case MFIE_TYPE_RSN:
7332                                 iwe.cmd = IWEVGENIE;
7333                                 iwe.u.data.length = min(info_element->len + 2,
7334                                                           MAX_WPA_IE_LEN);
7335                                 current_ev = iwe_stream_add_point(current_ev, end_buf,
7336                                                 &iwe, (char *) info_element);
7337                                 break;
7338
7339                         default:
7340                                 break;
7341                         }
7342
7343                         length -= sizeof(*info_element) + info_element->len;
7344                         info_element =
7345                             (struct ieee80211_info_element *)&info_element->
7346                             data[info_element->len];
7347                 }
7348         }
7349         return current_ev;
7350 }
7351
7352 /*------------------------------------------------------------------*/
7353 /*
7354  * Wireless Handler : Read Scan Results
7355  */
7356 static int airo_get_scan(struct net_device *dev,
7357                          struct iw_request_info *info,
7358                          struct iw_point *dwrq,
7359                          char *extra)
7360 {
7361         struct airo_info *ai = dev->priv;
7362         BSSListElement *net;
7363         int err = 0;
7364         char *current_ev = extra;
7365
7366         /* If a scan is in-progress, return -EAGAIN */
7367         if (ai->scan_timeout > 0)
7368                 return -EAGAIN;
7369
7370         if (down_interruptible(&ai->sem))
7371                 return -EAGAIN;
7372
7373         list_for_each_entry (net, &ai->network_list, list) {
7374                 /* Translate to WE format this entry */
7375                 current_ev = airo_translate_scan(dev, current_ev,
7376                                                  extra + dwrq->length,
7377                                                  &net->bss);
7378
7379                 /* Check if there is space for one more entry */
7380                 if((extra + dwrq->length - current_ev) <= IW_EV_ADDR_LEN) {
7381                         /* Ask user space to try again with a bigger buffer */
7382                         err = -E2BIG;
7383                         goto out;
7384                 }
7385         }
7386
7387         /* Length of data */
7388         dwrq->length = (current_ev - extra);
7389         dwrq->flags = 0;        /* todo */
7390
7391 out:
7392         up(&ai->sem);
7393         return err;
7394 }
7395
7396 /*------------------------------------------------------------------*/
7397 /*
7398  * Commit handler : called after a bunch of SET operations
7399  */
7400 static int airo_config_commit(struct net_device *dev,
7401                               struct iw_request_info *info,     /* NULL */
7402                               void *zwrq,                       /* NULL */
7403                               char *extra)                      /* NULL */
7404 {
7405         struct airo_info *local = dev->priv;
7406         Resp rsp;
7407
7408         if (!test_bit (FLAG_COMMIT, &local->flags))
7409                 return 0;
7410
7411         /* Some of the "SET" function may have modified some of the
7412          * parameters. It's now time to commit them in the card */
7413         disable_MAC(local, 1);
7414         if (test_bit (FLAG_RESET, &local->flags)) {
7415                 APListRid APList_rid;
7416                 SsidRid SSID_rid;
7417
7418                 readAPListRid(local, &APList_rid);
7419                 readSsidRid(local, &SSID_rid);
7420                 if (test_bit(FLAG_MPI,&local->flags))
7421                         setup_card(local, dev->dev_addr, 1 );
7422                 else
7423                         reset_airo_card(dev);
7424                 disable_MAC(local, 1);
7425                 writeSsidRid(local, &SSID_rid, 1);
7426                 writeAPListRid(local, &APList_rid, 1);
7427         }
7428         if (down_interruptible(&local->sem))
7429                 return -ERESTARTSYS;
7430         writeConfigRid(local, 0);
7431         enable_MAC(local, &rsp, 0);
7432         if (test_bit (FLAG_RESET, &local->flags))
7433                 airo_set_promisc(local);
7434         else
7435                 up(&local->sem);
7436
7437         return 0;
7438 }
7439
7440 /*------------------------------------------------------------------*/
7441 /*
7442  * Structures to export the Wireless Handlers
7443  */
7444
7445 static const struct iw_priv_args airo_private_args[] = {
7446 /*{ cmd,         set_args,                            get_args, name } */
7447   { AIROIOCTL, IW_PRIV_TYPE_BYTE | IW_PRIV_SIZE_FIXED | sizeof (aironet_ioctl),
7448     IW_PRIV_TYPE_BYTE | 2047, "airoioctl" },
7449   { AIROIDIFC, IW_PRIV_TYPE_BYTE | IW_PRIV_SIZE_FIXED | sizeof (aironet_ioctl),
7450     IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, "airoidifc" },
7451 };
7452
7453 static const iw_handler         airo_handler[] =
7454 {
7455         (iw_handler) airo_config_commit,        /* SIOCSIWCOMMIT */
7456         (iw_handler) airo_get_name,             /* SIOCGIWNAME */
7457         (iw_handler) NULL,                      /* SIOCSIWNWID */
7458         (iw_handler) NULL,                      /* SIOCGIWNWID */
7459         (iw_handler) airo_set_freq,             /* SIOCSIWFREQ */
7460         (iw_handler) airo_get_freq,             /* SIOCGIWFREQ */
7461         (iw_handler) airo_set_mode,             /* SIOCSIWMODE */
7462         (iw_handler) airo_get_mode,             /* SIOCGIWMODE */
7463         (iw_handler) airo_set_sens,             /* SIOCSIWSENS */
7464         (iw_handler) airo_get_sens,             /* SIOCGIWSENS */
7465         (iw_handler) NULL,                      /* SIOCSIWRANGE */
7466         (iw_handler) airo_get_range,            /* SIOCGIWRANGE */
7467         (iw_handler) NULL,                      /* SIOCSIWPRIV */
7468         (iw_handler) NULL,                      /* SIOCGIWPRIV */
7469         (iw_handler) NULL,                      /* SIOCSIWSTATS */
7470         (iw_handler) NULL,                      /* SIOCGIWSTATS */
7471         iw_handler_set_spy,                     /* SIOCSIWSPY */
7472         iw_handler_get_spy,                     /* SIOCGIWSPY */
7473         iw_handler_set_thrspy,                  /* SIOCSIWTHRSPY */
7474         iw_handler_get_thrspy,                  /* SIOCGIWTHRSPY */
7475         (iw_handler) airo_set_wap,              /* SIOCSIWAP */
7476         (iw_handler) airo_get_wap,              /* SIOCGIWAP */
7477         (iw_handler) NULL,                      /* -- hole -- */
7478         (iw_handler) airo_get_aplist,           /* SIOCGIWAPLIST */
7479         (iw_handler) airo_set_scan,             /* SIOCSIWSCAN */
7480         (iw_handler) airo_get_scan,             /* SIOCGIWSCAN */
7481         (iw_handler) airo_set_essid,            /* SIOCSIWESSID */
7482         (iw_handler) airo_get_essid,            /* SIOCGIWESSID */
7483         (iw_handler) airo_set_nick,             /* SIOCSIWNICKN */
7484         (iw_handler) airo_get_nick,             /* SIOCGIWNICKN */
7485         (iw_handler) NULL,                      /* -- hole -- */
7486         (iw_handler) NULL,                      /* -- hole -- */
7487         (iw_handler) airo_set_rate,             /* SIOCSIWRATE */
7488         (iw_handler) airo_get_rate,             /* SIOCGIWRATE */
7489         (iw_handler) airo_set_rts,              /* SIOCSIWRTS */
7490         (iw_handler) airo_get_rts,              /* SIOCGIWRTS */
7491         (iw_handler) airo_set_frag,             /* SIOCSIWFRAG */
7492         (iw_handler) airo_get_frag,             /* SIOCGIWFRAG */
7493         (iw_handler) airo_set_txpow,            /* SIOCSIWTXPOW */
7494         (iw_handler) airo_get_txpow,            /* SIOCGIWTXPOW */
7495         (iw_handler) airo_set_retry,            /* SIOCSIWRETRY */
7496         (iw_handler) airo_get_retry,            /* SIOCGIWRETRY */
7497         (iw_handler) airo_set_encode,           /* SIOCSIWENCODE */
7498         (iw_handler) airo_get_encode,           /* SIOCGIWENCODE */
7499         (iw_handler) airo_set_power,            /* SIOCSIWPOWER */
7500         (iw_handler) airo_get_power,            /* SIOCGIWPOWER */
7501         (iw_handler) NULL,                      /* -- hole -- */
7502         (iw_handler) NULL,                      /* -- hole -- */
7503         (iw_handler) NULL,                      /* SIOCSIWGENIE */
7504         (iw_handler) NULL,                      /* SIOCGIWGENIE */
7505         (iw_handler) airo_set_auth,             /* SIOCSIWAUTH */
7506         (iw_handler) airo_get_auth,             /* SIOCGIWAUTH */
7507         (iw_handler) airo_set_encodeext,        /* SIOCSIWENCODEEXT */
7508         (iw_handler) airo_get_encodeext,        /* SIOCGIWENCODEEXT */
7509         (iw_handler) NULL,                      /* SIOCSIWPMKSA */
7510 };
7511
7512 /* Note : don't describe AIROIDIFC and AIROOLDIDIFC in here.
7513  * We want to force the use of the ioctl code, because those can't be
7514  * won't work the iw_handler code (because they simultaneously read
7515  * and write data and iw_handler can't do that).
7516  * Note that it's perfectly legal to read/write on a single ioctl command,
7517  * you just can't use iwpriv and need to force it via the ioctl handler.
7518  * Jean II */
7519 static const iw_handler         airo_private_handler[] =
7520 {
7521         NULL,                           /* SIOCIWFIRSTPRIV */
7522 };
7523
7524 static const struct iw_handler_def      airo_handler_def =
7525 {
7526         .num_standard   = sizeof(airo_handler)/sizeof(iw_handler),
7527         .num_private    = sizeof(airo_private_handler)/sizeof(iw_handler),
7528         .num_private_args = sizeof(airo_private_args)/sizeof(struct iw_priv_args),
7529         .standard       = airo_handler,
7530         .private        = airo_private_handler,
7531         .private_args   = airo_private_args,
7532         .get_wireless_stats = airo_get_wireless_stats,
7533 };
7534
7535 /*
7536  * This defines the configuration part of the Wireless Extensions
7537  * Note : irq and spinlock protection will occur in the subroutines
7538  *
7539  * TODO :
7540  *      o Check input value more carefully and fill correct values in range
7541  *      o Test and shakeout the bugs (if any)
7542  *
7543  * Jean II
7544  *
7545  * Javier Achirica did a great job of merging code from the unnamed CISCO
7546  * developer that added support for flashing the card.
7547  */
7548 static int airo_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
7549 {
7550         int rc = 0;
7551         struct airo_info *ai = (struct airo_info *)dev->priv;
7552
7553         if (ai->power.event)
7554                 return 0;
7555
7556         switch (cmd) {
7557 #ifdef CISCO_EXT
7558         case AIROIDIFC:
7559 #ifdef AIROOLDIDIFC
7560         case AIROOLDIDIFC:
7561 #endif
7562         {
7563                 int val = AIROMAGIC;
7564                 aironet_ioctl com;
7565                 if (copy_from_user(&com,rq->ifr_data,sizeof(com)))
7566                         rc = -EFAULT;
7567                 else if (copy_to_user(com.data,(char *)&val,sizeof(val)))
7568                         rc = -EFAULT;
7569         }
7570         break;
7571
7572         case AIROIOCTL:
7573 #ifdef AIROOLDIOCTL
7574         case AIROOLDIOCTL:
7575 #endif
7576                 /* Get the command struct and hand it off for evaluation by
7577                  * the proper subfunction
7578                  */
7579         {
7580                 aironet_ioctl com;
7581                 if (copy_from_user(&com,rq->ifr_data,sizeof(com))) {
7582                         rc = -EFAULT;
7583                         break;
7584                 }
7585
7586                 /* Separate R/W functions bracket legality here
7587                  */
7588                 if ( com.command == AIRORSWVERSION ) {
7589                         if (copy_to_user(com.data, swversion, sizeof(swversion)))
7590                                 rc = -EFAULT;
7591                         else
7592                                 rc = 0;
7593                 }
7594                 else if ( com.command <= AIRORRID)
7595                         rc = readrids(dev,&com);
7596                 else if ( com.command >= AIROPCAP && com.command <= (AIROPLEAPUSR+2) )
7597                         rc = writerids(dev,&com);
7598                 else if ( com.command >= AIROFLSHRST && com.command <= AIRORESTART )
7599                         rc = flashcard(dev,&com);
7600                 else
7601                         rc = -EINVAL;      /* Bad command in ioctl */
7602         }
7603         break;
7604 #endif /* CISCO_EXT */
7605
7606         // All other calls are currently unsupported
7607         default:
7608                 rc = -EOPNOTSUPP;
7609         }
7610         return rc;
7611 }
7612
7613 /*
7614  * Get the Wireless stats out of the driver
7615  * Note : irq and spinlock protection will occur in the subroutines
7616  *
7617  * TODO :
7618  *      o Check if work in Ad-Hoc mode (otherwise, use SPY, as in wvlan_cs)
7619  *
7620  * Jean
7621  */
7622 static void airo_read_wireless_stats(struct airo_info *local)
7623 {
7624         StatusRid status_rid;
7625         StatsRid stats_rid;
7626         CapabilityRid cap_rid;
7627         u32 *vals = stats_rid.vals;
7628
7629         /* Get stats out of the card */
7630         clear_bit(JOB_WSTATS, &local->jobs);
7631         if (local->power.event) {
7632                 up(&local->sem);
7633                 return;
7634         }
7635         readCapabilityRid(local, &cap_rid, 0);
7636         readStatusRid(local, &status_rid, 0);
7637         readStatsRid(local, &stats_rid, RID_STATS, 0);
7638         up(&local->sem);
7639
7640         /* The status */
7641         local->wstats.status = status_rid.mode;
7642
7643         /* Signal quality and co */
7644         if (local->rssi) {
7645                 local->wstats.qual.level = airo_rssi_to_dbm( local->rssi, status_rid.sigQuality );
7646                 /* normalizedSignalStrength appears to be a percentage */
7647                 local->wstats.qual.qual = status_rid.normalizedSignalStrength;
7648         } else {
7649                 local->wstats.qual.level = (status_rid.normalizedSignalStrength + 321) / 2;
7650                 local->wstats.qual.qual = airo_get_quality(&status_rid, &cap_rid);
7651         }
7652         if (status_rid.len >= 124) {
7653                 local->wstats.qual.noise = 0x100 - status_rid.noisedBm;
7654                 local->wstats.qual.updated = IW_QUAL_ALL_UPDATED | IW_QUAL_DBM;
7655         } else {
7656                 local->wstats.qual.noise = 0;
7657                 local->wstats.qual.updated = IW_QUAL_QUAL_UPDATED | IW_QUAL_LEVEL_UPDATED | IW_QUAL_NOISE_INVALID | IW_QUAL_DBM;
7658         }
7659
7660         /* Packets discarded in the wireless adapter due to wireless
7661          * specific problems */
7662         local->wstats.discard.nwid = vals[56] + vals[57] + vals[58];/* SSID Mismatch */
7663         local->wstats.discard.code = vals[6];/* RxWepErr */
7664         local->wstats.discard.fragment = vals[30];
7665         local->wstats.discard.retries = vals[10];
7666         local->wstats.discard.misc = vals[1] + vals[32];
7667         local->wstats.miss.beacon = vals[34];
7668 }
7669
7670 static struct iw_statistics *airo_get_wireless_stats(struct net_device *dev)
7671 {
7672         struct airo_info *local =  dev->priv;
7673
7674         if (!test_bit(JOB_WSTATS, &local->jobs)) {
7675                 /* Get stats out of the card if available */
7676                 if (down_trylock(&local->sem) != 0) {
7677                         set_bit(JOB_WSTATS, &local->jobs);
7678                         wake_up_interruptible(&local->thr_wait);
7679                 } else
7680                         airo_read_wireless_stats(local);
7681         }
7682
7683         return &local->wstats;
7684 }
7685
7686 #ifdef CISCO_EXT
7687 /*
7688  * This just translates from driver IOCTL codes to the command codes to
7689  * feed to the radio's host interface. Things can be added/deleted
7690  * as needed.  This represents the READ side of control I/O to
7691  * the card
7692  */
7693 static int readrids(struct net_device *dev, aironet_ioctl *comp) {
7694         unsigned short ridcode;
7695         unsigned char *iobuf;
7696         int len;
7697         struct airo_info *ai = dev->priv;
7698         Resp rsp;
7699
7700         if (test_bit(FLAG_FLASHING, &ai->flags))
7701                 return -EIO;
7702
7703         switch(comp->command)
7704         {
7705         case AIROGCAP:      ridcode = RID_CAPABILITIES; break;
7706         case AIROGCFG:      ridcode = RID_CONFIG;
7707                 if (test_bit(FLAG_COMMIT, &ai->flags)) {
7708                         disable_MAC (ai, 1);
7709                         writeConfigRid (ai, 1);
7710                         enable_MAC (ai, &rsp, 1);
7711                 }
7712                 break;
7713         case AIROGSLIST:    ridcode = RID_SSID;         break;
7714         case AIROGVLIST:    ridcode = RID_APLIST;       break;
7715         case AIROGDRVNAM:   ridcode = RID_DRVNAME;      break;
7716         case AIROGEHTENC:   ridcode = RID_ETHERENCAP;   break;
7717         case AIROGWEPKTMP:  ridcode = RID_WEP_TEMP;
7718                 /* Only super-user can read WEP keys */
7719                 if (!capable(CAP_NET_ADMIN))
7720                         return -EPERM;
7721                 break;
7722         case AIROGWEPKNV:   ridcode = RID_WEP_PERM;
7723                 /* Only super-user can read WEP keys */
7724                 if (!capable(CAP_NET_ADMIN))
7725                         return -EPERM;
7726                 break;
7727         case AIROGSTAT:     ridcode = RID_STATUS;       break;
7728         case AIROGSTATSD32: ridcode = RID_STATSDELTA;   break;
7729         case AIROGSTATSC32: ridcode = RID_STATS;        break;
7730         case AIROGMICSTATS:
7731                 if (copy_to_user(comp->data, &ai->micstats,
7732                                  min((int)comp->len,(int)sizeof(ai->micstats))))
7733                         return -EFAULT;
7734                 return 0;
7735         case AIRORRID:      ridcode = comp->ridnum;     break;
7736         default:
7737                 return -EINVAL;
7738                 break;
7739         }
7740
7741         if ((iobuf = kmalloc(RIDSIZE, GFP_KERNEL)) == NULL)
7742                 return -ENOMEM;
7743
7744         PC4500_readrid(ai,ridcode,iobuf,RIDSIZE, 1);
7745         /* get the count of bytes in the rid  docs say 1st 2 bytes is it.
7746          * then return it to the user
7747          * 9/22/2000 Honor user given length
7748          */
7749         len = comp->len;
7750
7751         if (copy_to_user(comp->data, iobuf, min(len, (int)RIDSIZE))) {
7752                 kfree (iobuf);
7753                 return -EFAULT;
7754         }
7755         kfree (iobuf);
7756         return 0;
7757 }
7758
7759 /*
7760  * Danger Will Robinson write the rids here
7761  */
7762
7763 static int writerids(struct net_device *dev, aironet_ioctl *comp) {
7764         struct airo_info *ai = dev->priv;
7765         int  ridcode;
7766         int  enabled;
7767         Resp      rsp;
7768         static int (* writer)(struct airo_info *, u16 rid, const void *, int, int);
7769         unsigned char *iobuf;
7770
7771         /* Only super-user can write RIDs */
7772         if (!capable(CAP_NET_ADMIN))
7773                 return -EPERM;
7774
7775         if (test_bit(FLAG_FLASHING, &ai->flags))
7776                 return -EIO;
7777
7778         ridcode = 0;
7779         writer = do_writerid;
7780
7781         switch(comp->command)
7782         {
7783         case AIROPSIDS:     ridcode = RID_SSID;         break;
7784         case AIROPCAP:      ridcode = RID_CAPABILITIES; break;
7785         case AIROPAPLIST:   ridcode = RID_APLIST;       break;
7786         case AIROPCFG: ai->config.len = 0;
7787                             clear_bit(FLAG_COMMIT, &ai->flags);
7788                             ridcode = RID_CONFIG;       break;
7789         case AIROPWEPKEYNV: ridcode = RID_WEP_PERM;     break;
7790         case AIROPLEAPUSR:  ridcode = RID_LEAPUSERNAME; break;
7791         case AIROPLEAPPWD:  ridcode = RID_LEAPPASSWORD; break;
7792         case AIROPWEPKEY:   ridcode = RID_WEP_TEMP; writer = PC4500_writerid;
7793                 break;
7794         case AIROPLEAPUSR+1: ridcode = 0xFF2A;          break;
7795         case AIROPLEAPUSR+2: ridcode = 0xFF2B;          break;
7796
7797                 /* this is not really a rid but a command given to the card
7798                  * same with MAC off
7799                  */
7800         case AIROPMACON:
7801                 if (enable_MAC(ai, &rsp, 1) != 0)
7802                         return -EIO;
7803                 return 0;
7804
7805                 /*
7806                  * Evidently this code in the airo driver does not get a symbol
7807                  * as disable_MAC. it's probably so short the compiler does not gen one.
7808                  */
7809         case AIROPMACOFF:
7810                 disable_MAC(ai, 1);
7811                 return 0;
7812
7813                 /* This command merely clears the counts does not actually store any data
7814                  * only reads rid. But as it changes the cards state, I put it in the
7815                  * writerid routines.
7816                  */
7817         case AIROPSTCLR:
7818                 if ((iobuf = kmalloc(RIDSIZE, GFP_KERNEL)) == NULL)
7819                         return -ENOMEM;
7820
7821                 PC4500_readrid(ai,RID_STATSDELTACLEAR,iobuf,RIDSIZE, 1);
7822
7823                 enabled = ai->micstats.enabled;
7824                 memset(&ai->micstats,0,sizeof(ai->micstats));
7825                 ai->micstats.enabled = enabled;
7826
7827                 if (copy_to_user(comp->data, iobuf,
7828                                  min((int)comp->len, (int)RIDSIZE))) {
7829                         kfree (iobuf);
7830                         return -EFAULT;
7831                 }
7832                 kfree (iobuf);
7833                 return 0;
7834
7835         default:
7836                 return -EOPNOTSUPP;     /* Blarg! */
7837         }
7838         if(comp->len > RIDSIZE)
7839                 return -EINVAL;
7840
7841         if ((iobuf = kmalloc(RIDSIZE, GFP_KERNEL)) == NULL)
7842                 return -ENOMEM;
7843
7844         if (copy_from_user(iobuf,comp->data,comp->len)) {
7845                 kfree (iobuf);
7846                 return -EFAULT;
7847         }
7848
7849         if (comp->command == AIROPCFG) {
7850                 ConfigRid *cfg = (ConfigRid *)iobuf;
7851
7852                 if (test_bit(FLAG_MIC_CAPABLE, &ai->flags))
7853                         cfg->opmode |= MODE_MIC;
7854
7855                 if ((cfg->opmode & 0xFF) == MODE_STA_IBSS)
7856                         set_bit (FLAG_ADHOC, &ai->flags);
7857                 else
7858                         clear_bit (FLAG_ADHOC, &ai->flags);
7859         }
7860
7861         if((*writer)(ai, ridcode, iobuf,comp->len,1)) {
7862                 kfree (iobuf);
7863                 return -EIO;
7864         }
7865         kfree (iobuf);
7866         return 0;
7867 }
7868
7869 /*****************************************************************************
7870  * Ancillary flash / mod functions much black magic lurkes here              *
7871  *****************************************************************************
7872  */
7873
7874 /*
7875  * Flash command switch table
7876  */
7877
7878 static int flashcard(struct net_device *dev, aironet_ioctl *comp) {
7879         int z;
7880
7881         /* Only super-user can modify flash */
7882         if (!capable(CAP_NET_ADMIN))
7883                 return -EPERM;
7884
7885         switch(comp->command)
7886         {
7887         case AIROFLSHRST:
7888                 return cmdreset((struct airo_info *)dev->priv);
7889
7890         case AIROFLSHSTFL:
7891                 if (!((struct airo_info *)dev->priv)->flash &&
7892                         (((struct airo_info *)dev->priv)->flash = kmalloc (FLASHSIZE, GFP_KERNEL)) == NULL)
7893                         return -ENOMEM;
7894                 return setflashmode((struct airo_info *)dev->priv);
7895
7896         case AIROFLSHGCHR: /* Get char from aux */
7897                 if(comp->len != sizeof(int))
7898                         return -EINVAL;
7899                 if (copy_from_user(&z,comp->data,comp->len))
7900                         return -EFAULT;
7901                 return flashgchar((struct airo_info *)dev->priv,z,8000);
7902
7903         case AIROFLSHPCHR: /* Send char to card. */
7904                 if(comp->len != sizeof(int))
7905                         return -EINVAL;
7906                 if (copy_from_user(&z,comp->data,comp->len))
7907                         return -EFAULT;
7908                 return flashpchar((struct airo_info *)dev->priv,z,8000);
7909
7910         case AIROFLPUTBUF: /* Send 32k to card */
7911                 if (!((struct airo_info *)dev->priv)->flash)
7912                         return -ENOMEM;
7913                 if(comp->len > FLASHSIZE)
7914                         return -EINVAL;
7915                 if(copy_from_user(((struct airo_info *)dev->priv)->flash,comp->data,comp->len))
7916                         return -EFAULT;
7917
7918                 flashputbuf((struct airo_info *)dev->priv);
7919                 return 0;
7920
7921         case AIRORESTART:
7922                 if(flashrestart((struct airo_info *)dev->priv,dev))
7923                         return -EIO;
7924                 return 0;
7925         }
7926         return -EINVAL;
7927 }
7928
7929 #define FLASH_COMMAND  0x7e7e
7930
7931 /*
7932  * STEP 1)
7933  * Disable MAC and do soft reset on
7934  * card.
7935  */
7936
7937 static int cmdreset(struct airo_info *ai) {
7938         disable_MAC(ai, 1);
7939
7940         if(!waitbusy (ai)){
7941                 airo_print_info(ai->dev->name, "Waitbusy hang before RESET");
7942                 return -EBUSY;
7943         }
7944
7945         OUT4500(ai,COMMAND,CMD_SOFTRESET);
7946
7947         ssleep(1);                      /* WAS 600 12/7/00 */
7948
7949         if(!waitbusy (ai)){
7950                 airo_print_info(ai->dev->name, "Waitbusy hang AFTER RESET");
7951                 return -EBUSY;
7952         }
7953         return 0;
7954 }
7955
7956 /* STEP 2)
7957  * Put the card in legendary flash
7958  * mode
7959  */
7960
7961 static int setflashmode (struct airo_info *ai) {
7962         set_bit (FLAG_FLASHING, &ai->flags);
7963
7964         OUT4500(ai, SWS0, FLASH_COMMAND);
7965         OUT4500(ai, SWS1, FLASH_COMMAND);
7966         if (probe) {
7967                 OUT4500(ai, SWS0, FLASH_COMMAND);
7968                 OUT4500(ai, COMMAND,0x10);
7969         } else {
7970                 OUT4500(ai, SWS2, FLASH_COMMAND);
7971                 OUT4500(ai, SWS3, FLASH_COMMAND);
7972                 OUT4500(ai, COMMAND,0);
7973         }
7974         msleep(500);            /* 500ms delay */
7975
7976         if(!waitbusy(ai)) {
7977                 clear_bit (FLAG_FLASHING, &ai->flags);
7978                 airo_print_info(ai->dev->name, "Waitbusy hang after setflash mode");
7979                 return -EIO;
7980         }
7981         return 0;
7982 }
7983
7984 /* Put character to SWS0 wait for dwelltime
7985  * x 50us for  echo .
7986  */
7987
7988 static int flashpchar(struct airo_info *ai,int byte,int dwelltime) {
7989         int echo;
7990         int waittime;
7991
7992         byte |= 0x8000;
7993
7994         if(dwelltime == 0 )
7995                 dwelltime = 200;
7996
7997         waittime=dwelltime;
7998
7999         /* Wait for busy bit d15 to go false indicating buffer empty */
8000         while ((IN4500 (ai, SWS0) & 0x8000) && waittime > 0) {
8001                 udelay (50);
8002                 waittime -= 50;
8003         }
8004
8005         /* timeout for busy clear wait */
8006         if(waittime <= 0 ){
8007                 airo_print_info(ai->dev->name, "flash putchar busywait timeout!");
8008                 return -EBUSY;
8009         }
8010
8011         /* Port is clear now write byte and wait for it to echo back */
8012         do {
8013                 OUT4500(ai,SWS0,byte);
8014                 udelay(50);
8015                 dwelltime -= 50;
8016                 echo = IN4500(ai,SWS1);
8017         } while (dwelltime >= 0 && echo != byte);
8018
8019         OUT4500(ai,SWS1,0);
8020
8021         return (echo == byte) ? 0 : -EIO;
8022 }
8023
8024 /*
8025  * Get a character from the card matching matchbyte
8026  * Step 3)
8027  */
8028 static int flashgchar(struct airo_info *ai,int matchbyte,int dwelltime){
8029         int           rchar;
8030         unsigned char rbyte=0;
8031
8032         do {
8033                 rchar = IN4500(ai,SWS1);
8034
8035                 if(dwelltime && !(0x8000 & rchar)){
8036                         dwelltime -= 10;
8037                         mdelay(10);
8038                         continue;
8039                 }
8040                 rbyte = 0xff & rchar;
8041
8042                 if( (rbyte == matchbyte) && (0x8000 & rchar) ){
8043                         OUT4500(ai,SWS1,0);
8044                         return 0;
8045                 }
8046                 if( rbyte == 0x81 || rbyte == 0x82 || rbyte == 0x83 || rbyte == 0x1a || 0xffff == rchar)
8047                         break;
8048                 OUT4500(ai,SWS1,0);
8049
8050         }while(dwelltime > 0);
8051         return -EIO;
8052 }
8053
8054 /*
8055  * Transfer 32k of firmware data from user buffer to our buffer and
8056  * send to the card
8057  */
8058
8059 static int flashputbuf(struct airo_info *ai){
8060         int            nwords;
8061
8062         /* Write stuff */
8063         if (test_bit(FLAG_MPI,&ai->flags))
8064                 memcpy_toio(ai->pciaux + 0x8000, ai->flash, FLASHSIZE);
8065         else {
8066                 OUT4500(ai,AUXPAGE,0x100);
8067                 OUT4500(ai,AUXOFF,0);
8068
8069                 for(nwords=0;nwords != FLASHSIZE / 2;nwords++){
8070                         OUT4500(ai,AUXDATA,ai->flash[nwords] & 0xffff);
8071                 }
8072         }
8073         OUT4500(ai,SWS0,0x8000);
8074
8075         return 0;
8076 }
8077
8078 /*
8079  *
8080  */
8081 static int flashrestart(struct airo_info *ai,struct net_device *dev){
8082         int    i,status;
8083
8084         ssleep(1);                      /* Added 12/7/00 */
8085         clear_bit (FLAG_FLASHING, &ai->flags);
8086         if (test_bit(FLAG_MPI, &ai->flags)) {
8087                 status = mpi_init_descriptors(ai);
8088                 if (status != SUCCESS)
8089                         return status;
8090         }
8091         status = setup_card(ai, dev->dev_addr, 1);
8092
8093         if (!test_bit(FLAG_MPI,&ai->flags))
8094                 for( i = 0; i < MAX_FIDS; i++ ) {
8095                         ai->fids[i] = transmit_allocate
8096                                 ( ai, AIRO_DEF_MTU, i >= MAX_FIDS / 2 );
8097                 }
8098
8099         ssleep(1);                      /* Added 12/7/00 */
8100         return status;
8101 }
8102 #endif /* CISCO_EXT */
8103
8104 /*
8105     This program is free software; you can redistribute it and/or
8106     modify it under the terms of the GNU General Public License
8107     as published by the Free Software Foundation; either version 2
8108     of the License, or (at your option) any later version.
8109
8110     This program is distributed in the hope that it will be useful,
8111     but WITHOUT ANY WARRANTY; without even the implied warranty of
8112     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
8113     GNU General Public License for more details.
8114
8115     In addition:
8116
8117     Redistribution and use in source and binary forms, with or without
8118     modification, are permitted provided that the following conditions
8119     are met:
8120
8121     1. Redistributions of source code must retain the above copyright
8122        notice, this list of conditions and the following disclaimer.
8123     2. Redistributions in binary form must reproduce the above copyright
8124        notice, this list of conditions and the following disclaimer in the
8125        documentation and/or other materials provided with the distribution.
8126     3. The name of the author may not be used to endorse or promote
8127        products derived from this software without specific prior written
8128        permission.
8129
8130     THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
8131     IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
8132     WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
8133     ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
8134     INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
8135     (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
8136     SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
8137     HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
8138     STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
8139     IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
8140     POSSIBILITY OF SUCH DAMAGE.
8141 */
8142
8143 module_init(airo_init_module);
8144 module_exit(airo_cleanup_module);