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