airo.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:169k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*======================================================================
  2.     Aironet driver for 4500 and 4800 series cards
  3.     This code is released under both the GPL version 2 and BSD licenses.
  4.     Either license may be used.  The respective licenses are found at
  5.     the end of this file.
  6.     This code was developed by Benjamin Reed <breed@users.sourceforge.net>
  7.     including portions of which come from the Aironet PC4500
  8.     Developer's Reference Manual and used with permission.  Copyright
  9.     (C) 1999 Benjamin Reed.  All Rights Reserved.  Permission to use
  10.     code in the Developer's manual was granted for this driver by
  11.     Aironet.  Major code contributions were received from Javier Achirica
  12.     <achirica@users.sourceforge.net> and Jean Tourrilhes <jt@hpl.hp.com>.
  13.     Code was also integrated from the Cisco Aironet driver for Linux.
  14. ======================================================================*/
  15. #include <linux/config.h>
  16. #include <linux/version.h>
  17. #include <linux/init.h>
  18. #include <linux/kernel.h>
  19. #include <linux/module.h>
  20. #include <linux/proc_fs.h>
  21. #include <linux/sched.h>
  22. #include <linux/ptrace.h>
  23. #include <linux/slab.h>
  24. #include <linux/string.h>
  25. #include <linux/timer.h>
  26. #include <linux/interrupt.h>
  27. #include <linux/in.h>
  28. #include <linux/tqueue.h>
  29. #include <asm/io.h>
  30. #include <asm/system.h>
  31. #include <asm/bitops.h>
  32. #include <linux/netdevice.h>
  33. #include <linux/etherdevice.h>
  34. #include <linux/skbuff.h>
  35. #include <linux/if_arp.h>
  36. #include <linux/ioport.h>
  37. #include <linux/config.h>
  38. #include <linux/pci.h>
  39. #include <asm/uaccess.h>
  40. #ifdef CONFIG_PCI
  41. static struct pci_device_id card_ids[] __devinitdata = {
  42. { 0x14b9, 1, PCI_ANY_ID, PCI_ANY_ID, },
  43. { 0x14b9, 0x4500, PCI_ANY_ID, PCI_ANY_ID },
  44. { 0x14b9, 0x4800, PCI_ANY_ID, PCI_ANY_ID, },
  45. { 0x14b9, 0x0340, PCI_ANY_ID, PCI_ANY_ID, },
  46. { 0x14b9, 0x0350, PCI_ANY_ID, PCI_ANY_ID, },
  47. { 0, }
  48. };
  49. MODULE_DEVICE_TABLE(pci, card_ids);
  50. static int airo_pci_probe(struct pci_dev *, const struct pci_device_id *);
  51. static void airo_pci_remove(struct pci_dev *);
  52. static struct pci_driver airo_driver = {
  53. name:     "airo",
  54. id_table: card_ids,
  55. probe:    airo_pci_probe,
  56. remove:   __devexit_p(airo_pci_remove),
  57. };
  58. #endif /* CONFIG_PCI */
  59. /* Include Wireless Extension definition and check version - Jean II */
  60. #include <linux/wireless.h>
  61. #define WIRELESS_SPY // enable iwspy support
  62. #if WIRELESS_EXT > 12
  63. #include <net/iw_handler.h> // New driver API
  64. #endif /* WIRELESS_EXT > 12 */
  65. #define CISCO_EXT // enable Cisco extensions
  66. #ifdef CISCO_EXT
  67. #include <linux/delay.h>
  68. #endif
  69. /* Support Cisco MIC feature */
  70. /* As this feature requires the AES encryption algorithm, it is not included
  71.    in the kernel tree. If you want to enable it, you need to download the
  72.    aes.h, aestab.h and mic.h files from the CVS at
  73.    http://sf.net/projects/airo-linux/ Put the files in the same directory
  74.    as airo.c and compile normally */
  75. #undef MICSUPPORT
  76. /* Hack to do some power saving */
  77. #define POWER_ON_DOWN
  78. /* As you can see this list is HUGH!
  79.    I really don't know what a lot of these counts are about, but they
  80.    are all here for completeness.  If the IGNLABEL macro is put in
  81.    infront of the label, that statistic will not be included in the list
  82.    of statistics in the /proc filesystem */
  83. #define IGNLABEL 0&(int)
  84. static char *statsLabels[] = {
  85. "RxOverrun",
  86. IGNLABEL "RxPlcpCrcErr",
  87. IGNLABEL "RxPlcpFormatErr",
  88. IGNLABEL "RxPlcpLengthErr",
  89. "RxMacCrcErr",
  90. "RxMacCrcOk",
  91. "RxWepErr",
  92. "RxWepOk",
  93. "RetryLong",
  94. "RetryShort",
  95. "MaxRetries",
  96. "NoAck",
  97. "NoCts",
  98. "RxAck",
  99. "RxCts",
  100. "TxAck",
  101. "TxRts",
  102. "TxCts",
  103. "TxMc",
  104. "TxBc",
  105. "TxUcFrags",
  106. "TxUcPackets",
  107. "TxBeacon",
  108. "RxBeacon",
  109. "TxSinColl",
  110. "TxMulColl",
  111. "DefersNo",
  112. "DefersProt",
  113. "DefersEngy",
  114. "DupFram",
  115. "RxFragDisc",
  116. "TxAged",
  117. "RxAged",
  118. "LostSync-MaxRetry",
  119. "LostSync-MissedBeacons",
  120. "LostSync-ArlExceeded",
  121. "LostSync-Deauth",
  122. "LostSync-Disassoced",
  123. "LostSync-TsfTiming",
  124. "HostTxMc",
  125. "HostTxBc",
  126. "HostTxUc",
  127. "HostTxFail",
  128. "HostRxMc",
  129. "HostRxBc",
  130. "HostRxUc",
  131. "HostRxDiscard",
  132. IGNLABEL "HmacTxMc",
  133. IGNLABEL "HmacTxBc",
  134. IGNLABEL "HmacTxUc",
  135. IGNLABEL "HmacTxFail",
  136. IGNLABEL "HmacRxMc",
  137. IGNLABEL "HmacRxBc",
  138. IGNLABEL "HmacRxUc",
  139. IGNLABEL "HmacRxDiscard",
  140. IGNLABEL "HmacRxAccepted",
  141. "SsidMismatch",
  142. "ApMismatch",
  143. "RatesMismatch",
  144. "AuthReject",
  145. "AuthTimeout",
  146. "AssocReject",
  147. "AssocTimeout",
  148. IGNLABEL "ReasonOutsideTable",
  149. IGNLABEL "ReasonStatus1",
  150. IGNLABEL "ReasonStatus2",
  151. IGNLABEL "ReasonStatus3",
  152. IGNLABEL "ReasonStatus4",
  153. IGNLABEL "ReasonStatus5",
  154. IGNLABEL "ReasonStatus6",
  155. IGNLABEL "ReasonStatus7",
  156. IGNLABEL "ReasonStatus8",
  157. IGNLABEL "ReasonStatus9",
  158. IGNLABEL "ReasonStatus10",
  159. IGNLABEL "ReasonStatus11",
  160. IGNLABEL "ReasonStatus12",
  161. IGNLABEL "ReasonStatus13",
  162. IGNLABEL "ReasonStatus14",
  163. IGNLABEL "ReasonStatus15",
  164. IGNLABEL "ReasonStatus16",
  165. IGNLABEL "ReasonStatus17",
  166. IGNLABEL "ReasonStatus18",
  167. IGNLABEL "ReasonStatus19",
  168. "RxMan",
  169. "TxMan",
  170. "RxRefresh",
  171. "TxRefresh",
  172. "RxPoll",
  173. "TxPoll",
  174. "HostRetries",
  175. "LostSync-HostReq",
  176. "HostTxBytes",
  177. "HostRxBytes",
  178. "ElapsedUsec",
  179. "ElapsedSec",
  180. "LostSyncBetterAP",
  181. "PrivacyMismatch",
  182. "Jammed",
  183. "DiscRxNotWepped",
  184. "PhyEleMismatch",
  185. (char*)-1 };
  186. #ifndef RUN_AT
  187. #define RUN_AT(x) (jiffies+(x))
  188. #endif
  189. #if LINUX_VERSION_CODE < 0x020500
  190. static inline struct proc_dir_entry *PDE(const struct inode *inode)
  191. {
  192. return inode->u.generic_ip;
  193. }
  194. #endif
  195. /* These variables are for insmod, since it seems that the rates
  196.    can only be set in setup_card.  Rates should be a comma separated
  197.    (no spaces) list of rates (up to 8). */
  198. static int rates[8];
  199. static int basic_rate;
  200. static char *ssids[3];
  201. static int io[4];
  202. static int irq[4];
  203. static
  204. int maxencrypt /* = 0 */; /* The highest rate that the card can encrypt at.
  205.        0 means no limit.  For old cards this was 4 */
  206. static int auto_wep /* = 0 */; /* If set, it tries to figure out the wep mode */
  207. static int aux_bap /* = 0 */; /* Checks to see if the aux ports are needed to read
  208.     the bap, needed on some older cards and buses. */
  209. static int adhoc;
  210. static int probe = 1;
  211. static int proc_uid /* = 0 */;
  212. static int proc_gid /* = 0 */;
  213. static int airo_perm = 0555;
  214. static int proc_perm = 0644;
  215. MODULE_AUTHOR("Benjamin Reed");
  216. MODULE_DESCRIPTION("Support for Cisco/Aironet 802.11 wireless ethernet 
  217.                    cards.  Direct support for ISA/PCI cards and support 
  218.    for PCMCIA when used with airo_cs.");
  219. MODULE_LICENSE("Dual BSD/GPL");
  220. MODULE_SUPPORTED_DEVICE("Aironet 4500, 4800 and Cisco 340");
  221. MODULE_PARM(io,"1-4i");
  222. MODULE_PARM(irq,"1-4i");
  223. MODULE_PARM(basic_rate,"i");
  224. MODULE_PARM(rates,"1-8i");
  225. MODULE_PARM(ssids,"1-3s");
  226. MODULE_PARM(auto_wep,"i");
  227. MODULE_PARM_DESC(auto_wep, "If non-zero, the driver will keep looping through 
  228. the authentication options until an association is made.  The value of 
  229. auto_wep is number of the wep keys to check.  A value of 2 will try using 
  230. the key at index 0 and index 1.");
  231. MODULE_PARM(aux_bap,"i");
  232. MODULE_PARM_DESC(aux_bap, "If non-zero, the driver will switch into a mode 
  233. than seems to work better for older cards with some older buses.  Before 
  234. switching it checks that the switch is needed.");
  235. MODULE_PARM(maxencrypt, "i");
  236. MODULE_PARM_DESC(maxencrypt, "The maximum speed that the card can do 
  237. encryption.  Units are in 512kbs.  Zero (default) means there is no limit. 
  238. Older cards used to be limited to 2mbs (4).");
  239. MODULE_PARM(adhoc, "i");
  240. MODULE_PARM_DESC(adhoc, "If non-zero, the card will start in adhoc mode.");
  241. MODULE_PARM(probe, "i");
  242. MODULE_PARM_DESC(probe, "If zero, the driver won't start the card.");
  243. MODULE_PARM(proc_uid, "i");
  244. MODULE_PARM_DESC(proc_uid, "The uid that the /proc files will belong to.");
  245. MODULE_PARM(proc_gid, "i");
  246. MODULE_PARM_DESC(proc_gid, "The gid that the /proc files will belong to.");
  247. MODULE_PARM(airo_perm, "i");
  248. MODULE_PARM_DESC(airo_perm, "The permission bits of /proc/[driver/]aironet.");
  249. MODULE_PARM(proc_perm, "i");
  250. MODULE_PARM_DESC(proc_perm, "The permission bits of the files in /proc");
  251. /* This is a kind of sloppy hack to get this information to OUT4500 and
  252.    IN4500.  I would be extremely interested in the situation where this
  253.    doesn't work though!!! */
  254. static int do8bitIO = 0;
  255. /* Return codes */
  256. #define SUCCESS 0
  257. #define ERROR -1
  258. #define NO_PACKET -2
  259. /* Commands */
  260. #define NOP2 0x0000
  261. #define MAC_ENABLE 0x0001
  262. #define MAC_DISABLE 0x0002
  263. #define CMD_LOSE_SYNC 0x0003 /* Not sure what this does... */
  264. #define CMD_SOFTRESET 0x0004
  265. #define HOSTSLEEP 0x0005
  266. #define CMD_MAGIC_PKT 0x0006
  267. #define CMD_SETWAKEMASK 0x0007
  268. #define CMD_READCFG 0x0008
  269. #define CMD_SETMODE 0x0009
  270. #define CMD_ALLOCATETX 0x000a
  271. #define CMD_TRANSMIT 0x000b
  272. #define CMD_DEALLOCATETX 0x000c
  273. #define NOP 0x0010
  274. #define CMD_WORKAROUND 0x0011
  275. #define CMD_ACCESS 0x0021
  276. #define CMD_PCIBAP 0x0022
  277. #define CMD_PCIAUX 0x0023
  278. #define CMD_ALLOCBUF 0x0028
  279. #define CMD_GETTLV 0x0029
  280. #define CMD_PUTTLV 0x002a
  281. #define CMD_DELTLV 0x002b
  282. #define CMD_FINDNEXTTLV 0x002c
  283. #define CMD_PSPNODES 0x0030
  284. #define CMD_SETCW 0x0031    
  285. #define CMD_SETPCF 0x0032    
  286. #define CMD_SETPHYREG 0x003e
  287. #define CMD_TXTEST 0x003f
  288. #define MAC_ENABLETX 0x0101
  289. #define CMD_LISTBSS 0x0103
  290. #define CMD_SAVECFG 0x0108
  291. #define CMD_ENABLEAUX 0x0111
  292. #define CMD_WRITERID 0x0121
  293. #define CMD_USEPSPNODES 0x0130
  294. #define MAC_ENABLERX 0x0201
  295. /* Command errors */
  296. #define ERROR_QUALIF 0x00
  297. #define ERROR_ILLCMD 0x01
  298. #define ERROR_ILLFMT 0x02
  299. #define ERROR_INVFID 0x03
  300. #define ERROR_INVRID 0x04
  301. #define ERROR_LARGE 0x05
  302. #define ERROR_NDISABL 0x06
  303. #define ERROR_ALLOCBSY 0x07
  304. #define ERROR_NORD 0x0B
  305. #define ERROR_NOWR 0x0C
  306. #define ERROR_INVFIDTX 0x0D
  307. #define ERROR_TESTACT 0x0E
  308. #define ERROR_TAGNFND 0x12
  309. #define ERROR_DECODE 0x20
  310. #define ERROR_DESCUNAV 0x21
  311. #define ERROR_BADLEN 0x22
  312. #define ERROR_MODE 0x80
  313. #define ERROR_HOP 0x81
  314. #define ERROR_BINTER 0x82
  315. #define ERROR_RXMODE 0x83
  316. #define ERROR_MACADDR 0x84
  317. #define ERROR_RATES 0x85
  318. #define ERROR_ORDER 0x86
  319. #define ERROR_SCAN 0x87
  320. #define ERROR_AUTH 0x88
  321. #define ERROR_PSMODE 0x89
  322. #define ERROR_RTYPE 0x8A
  323. #define ERROR_DIVER 0x8B
  324. #define ERROR_SSID 0x8C
  325. #define ERROR_APLIST 0x8D
  326. #define ERROR_AUTOWAKE 0x8E
  327. #define ERROR_LEAP 0x8F
  328. /* Registers */
  329. #define COMMAND 0x00
  330. #define PARAM0 0x02
  331. #define PARAM1 0x04
  332. #define PARAM2 0x06
  333. #define STATUS 0x08
  334. #define RESP0 0x0a
  335. #define RESP1 0x0c
  336. #define RESP2 0x0e
  337. #define LINKSTAT 0x10
  338. #define SELECT0 0x18
  339. #define OFFSET0 0x1c
  340. #define RXFID 0x20
  341. #define TXALLOCFID 0x22
  342. #define TXCOMPLFID 0x24
  343. #define DATA0 0x36
  344. #define EVSTAT 0x30
  345. #define EVINTEN 0x32
  346. #define EVACK 0x34
  347. #define SWS0 0x28
  348. #define SWS1 0x2a
  349. #define SWS2 0x2c
  350. #define SWS3 0x2e
  351. #define AUXPAGE 0x3A
  352. #define AUXOFF 0x3C
  353. #define AUXDATA 0x3E
  354. /* BAP selectors */
  355. #define BAP0 0 // Used for receiving packets
  356. #define BAP1 2 // Used for xmiting packets and working with RIDS
  357. /* Flags */
  358. #define COMMAND_BUSY 0x8000
  359. #define BAP_BUSY 0x8000
  360. #define BAP_ERR 0x4000
  361. #define BAP_DONE 0x2000
  362. #define PROMISC 0xffff
  363. #define NOPROMISC 0x0000
  364. #define EV_CMD 0x10
  365. #define EV_CLEARCOMMANDBUSY 0x4000
  366. #define EV_RX 0x01
  367. #define EV_TX 0x02
  368. #define EV_TXEXC 0x04
  369. #define EV_ALLOC 0x08
  370. #define EV_LINK 0x80
  371. #define EV_AWAKE 0x100
  372. #define EV_UNKNOWN 0x800
  373. #define EV_MIC 0x1000 /* Message Integrity Check Interrupt */
  374. #define STATUS_INTS ( EV_AWAKE | EV_LINK | EV_TXEXC | EV_TX | EV_RX | EV_MIC )
  375. #ifdef CHECK_UNKNOWN_INTS
  376. #define IGNORE_INTS ( EV_CMD | EV_UNKNOWN)
  377. #else
  378. #define IGNORE_INTS (~STATUS_INTS)
  379. #endif
  380. /* The RIDs */
  381. #define RID_CAPABILITIES 0xFF00
  382. #define RID_APINFO     0xFF01
  383. #define RID_RADIOINFO  0xFF02
  384. #define RID_UNKNOWN3   0xFF03
  385. #define RID_RSSI       0xFF04
  386. #define RID_CONFIG     0xFF10
  387. #define RID_SSID       0xFF11
  388. #define RID_APLIST     0xFF12
  389. #define RID_DRVNAME    0xFF13
  390. #define RID_ETHERENCAP 0xFF14
  391. #define RID_WEP_TEMP   0xFF15
  392. #define RID_WEP_PERM   0xFF16
  393. #define RID_MODULATION 0xFF17
  394. #define RID_OPTIONS    0xFF18
  395. #define RID_ACTUALCONFIG 0xFF20 /*readonly*/
  396. #define RID_FACTORYCONFIG 0xFF21
  397. #define RID_UNKNOWN22  0xFF22
  398. #define RID_LEAPUSERNAME 0xFF23
  399. #define RID_LEAPPASSWORD 0xFF24
  400. #define RID_STATUS     0xFF50
  401. #define RID_BEACON_HST 0xFF51
  402. #define RID_BUSY_HST   0xFF52
  403. #define RID_RETRIES_HST 0xFF53
  404. #define RID_UNKNOWN54  0xFF54
  405. #define RID_UNKNOWN55  0xFF55
  406. #define RID_UNKNOWN56  0xFF56
  407. #define RID_MIC        0xFF57
  408. #define RID_STATS16    0xFF60
  409. #define RID_STATS16DELTA 0xFF61
  410. #define RID_STATS16DELTACLEAR 0xFF62
  411. #define RID_STATS      0xFF68
  412. #define RID_STATSDELTA 0xFF69
  413. #define RID_STATSDELTACLEAR 0xFF6A
  414. #define RID_ECHOTEST_RID 0xFF70
  415. #define RID_ECHOTEST_RESULTS 0xFF71
  416. #define RID_BSSLISTFIRST 0xFF72
  417. #define RID_BSSLISTNEXT  0xFF73
  418. typedef struct {
  419. u16 cmd;
  420. u16 parm0;
  421. u16 parm1;
  422. u16 parm2;
  423. } Cmd;
  424. typedef struct {
  425. u16 status;
  426. u16 rsp0;
  427. u16 rsp1;
  428. u16 rsp2;
  429. } Resp;
  430. /*
  431.  * Rids and endian-ness:  The Rids will always be in cpu endian, since
  432.  * this all the patches from the big-endian guys end up doing that.
  433.  * so all rid access should use the read/writeXXXRid routines.
  434.  */
  435. /* This is redundant for x86 archs, but it seems necessary for ARM */
  436. #pragma pack(1)
  437. /* This structure came from an email sent to me from an engineer at
  438.    aironet for inclusion into this driver */
  439. typedef struct {
  440. u16 len;
  441. u16 kindex;
  442. u8 mac[ETH_ALEN];
  443. u16 klen;
  444. u8 key[16];
  445. } WepKeyRid;
  446. /* These structures are from the Aironet's PC4500 Developers Manual */
  447. typedef struct {
  448. u16 len;
  449. u8 ssid[32];
  450. } Ssid;
  451. typedef struct {
  452. u16 len;
  453. Ssid ssids[3];
  454. } SsidRid;
  455. typedef struct {
  456.         u16 len;
  457.         u16 modulation;
  458. #define MOD_DEFAULT 0
  459. #define MOD_CCK 1
  460. #define MOD_MOK 2
  461. } ModulationRid;
  462. typedef struct {
  463. u16 len; /* sizeof(ConfigRid) */
  464. u16 opmode; /* operating mode */
  465. #define MODE_STA_IBSS 0
  466. #define MODE_STA_ESS 1
  467. #define MODE_AP 2
  468. #define MODE_AP_RPTR 3
  469. #define MODE_ETHERNET_HOST (0<<8) /* rx payloads converted */
  470. #define MODE_LLC_HOST (1<<8) /* rx payloads left as is */
  471. #define MODE_AIRONET_EXTEND (1<<9) /* enable Aironet extenstions */
  472. #define MODE_AP_INTERFACE (1<<10) /* enable ap interface extensions */
  473. #define MODE_ANTENNA_ALIGN (1<<11) /* enable antenna alignment */
  474. #define MODE_ETHER_LLC (1<<12) /* enable ethernet LLC */
  475. #define MODE_LEAF_NODE (1<<13) /* enable leaf node bridge */
  476. #define MODE_CF_POLLABLE (1<<14) /* enable CF pollable */
  477. #define MODE_MIC (1<<15) /* enable MIC */
  478. u16 rmode; /* receive mode */
  479. #define RXMODE_BC_MC_ADDR 0
  480. #define RXMODE_BC_ADDR 1 /* ignore multicasts */
  481. #define RXMODE_ADDR 2 /* ignore multicast and broadcast */
  482. #define RXMODE_RFMON 3 /* wireless monitor mode */
  483. #define RXMODE_RFMON_ANYBSS 4
  484. #define RXMODE_LANMON 5 /* lan style monitor -- data packets only */
  485. #define RXMODE_DISABLE_802_3_HEADER (1<<8) /* disables 802.3 header on rx */
  486. #define RXMODE_NORMALIZED_RSSI (1<<9) /* return normalized RSSI */
  487. u16 fragThresh;
  488. u16 rtsThres;
  489. u8 macAddr[ETH_ALEN];
  490. u8 rates[8];
  491. u16 shortRetryLimit;
  492. u16 longRetryLimit;
  493. u16 txLifetime; /* in kusec */
  494. u16 rxLifetime; /* in kusec */
  495. u16 stationary;
  496. u16 ordering;
  497. u16 u16deviceType; /* for overriding device type */
  498. u16 cfpRate;
  499. u16 cfpDuration;
  500. u16 _reserved1[3];
  501. /*---------- Scanning/Associating ----------*/
  502. u16 scanMode;
  503. #define SCANMODE_ACTIVE 0
  504. #define SCANMODE_PASSIVE 1
  505. #define SCANMODE_AIROSCAN 2
  506. u16 probeDelay; /* in kusec */
  507. u16 probeEnergyTimeout; /* in kusec */
  508.         u16 probeResponseTimeout;
  509. u16 beaconListenTimeout;
  510. u16 joinNetTimeout;
  511. u16 authTimeout;
  512. u16 authType;
  513. #define AUTH_OPEN 0x1
  514. #define AUTH_ENCRYPT 0x101
  515. #define AUTH_SHAREDKEY 0x102
  516. #define AUTH_ALLOW_UNENCRYPTED 0x200
  517. u16 associationTimeout;
  518. u16 specifiedApTimeout;
  519. u16 offlineScanInterval;
  520. u16 offlineScanDuration;
  521. u16 linkLossDelay;
  522. u16 maxBeaconLostTime;
  523. u16 refreshInterval;
  524. #define DISABLE_REFRESH 0xFFFF
  525. u16 _reserved1a[1];
  526. /*---------- Power save operation ----------*/
  527. u16 powerSaveMode;
  528. #define POWERSAVE_CAM 0
  529. #define POWERSAVE_PSP 1
  530. #define POWERSAVE_PSPCAM 2
  531. u16 sleepForDtims;
  532. u16 listenInterval;
  533. u16 fastListenInterval;
  534. u16 listenDecay;
  535. u16 fastListenDelay;
  536. u16 _reserved2[2];
  537. /*---------- Ap/Ibss config items ----------*/
  538. u16 beaconPeriod;
  539. u16 atimDuration;
  540. u16 hopPeriod;
  541. u16 channelSet;
  542. u16 channel;
  543. u16 dtimPeriod;
  544. u16 bridgeDistance;
  545. u16 radioID;
  546. /*---------- Radio configuration ----------*/
  547. u16 radioType;
  548. #define RADIOTYPE_DEFAULT 0
  549. #define RADIOTYPE_802_11 1
  550. #define RADIOTYPE_LEGACY 2
  551. u8 rxDiversity;
  552. u8 txDiversity;
  553. u16 txPower;
  554. #define TXPOWER_DEFAULT 0
  555. u16 rssiThreshold;
  556. #define RSSI_DEFAULT 0
  557.         u16 modulation;
  558. #define PREAMBLE_AUTO 0
  559. #define PREAMBLE_LONG 1
  560. #define PREAMBLE_SHORT 2
  561. u16 preamble;
  562. u16 homeProduct;
  563. u16 radioSpecific;
  564. /*---------- Aironet Extensions ----------*/
  565. u8 nodeName[16];
  566. u16 arlThreshold;
  567. u16 arlDecay;
  568. u16 arlDelay;
  569. u16 _reserved4[1];
  570. /*---------- Aironet Extensions ----------*/
  571. u16 magicAction;
  572. #define MAGIC_ACTION_STSCHG 1
  573. #define MACIC_ACTION_RESUME 2
  574. #define MAGIC_IGNORE_MCAST (1<<8)
  575. #define MAGIC_IGNORE_BCAST (1<<9)
  576. #define MAGIC_SWITCH_TO_PSP (0<<10)
  577. #define MAGIC_STAY_IN_CAM (1<<10)
  578. u16 magicControl;
  579. u16 autoWake;
  580. } ConfigRid;
  581. typedef struct {
  582. u16 len;
  583. u8 mac[ETH_ALEN];
  584. u16 mode;
  585. u16 errorCode;
  586. u16 sigQuality;
  587. u16 SSIDlen;
  588. char SSID[32];
  589. char apName[16];
  590. char bssid[4][ETH_ALEN];
  591. u16 beaconPeriod;
  592. u16 dimPeriod;
  593. u16 atimDuration;
  594. u16 hopPeriod;
  595. u16 channelSet;
  596. u16 channel;
  597. u16 hopsToBackbone;
  598. u16 apTotalLoad;
  599. u16 generatedLoad;
  600. u16 accumulatedArl;
  601. u16 signalQuality;
  602. u16 currentXmitRate;
  603. u16 apDevExtensions;
  604. u16 normalizedSignalStrength;
  605. u16 _reserved1;
  606. u8 apIP[4];
  607. u16 _reserved[7];
  608. } StatusRid;
  609. typedef struct {
  610. u16 len;
  611. u16 spacer;
  612. u32 vals[100];
  613. } StatsRid;
  614. typedef struct {
  615. u16 len;
  616. u8 ap[4][ETH_ALEN];
  617. } APListRid;
  618. typedef struct {
  619. u16 len;
  620. char oui[3];
  621. char zero;
  622. u16 prodNum;
  623. char manName[32];
  624. char prodName[16];
  625. char prodVer[8];
  626. char factoryAddr[ETH_ALEN];
  627. char aironetAddr[ETH_ALEN];
  628. u16 radioType;
  629. u16 country;
  630. char callid[ETH_ALEN];
  631. char supportedRates[8];
  632. char rxDiversity;
  633. char txDiversity;
  634. u16 txPowerLevels[8];
  635. u16 hardVer;
  636. u16 hardCap;
  637. u16 tempRange;
  638. u16 softVer;
  639. u16 softSubVer;
  640. u16 interfaceVer;
  641. u16 softCap;
  642. u16 bootBlockVer;
  643. u16 requiredHard;
  644. u16 extSoftCap;
  645. } CapabilityRid;
  646. typedef struct {
  647.   u16 len;
  648.   u16 index; /* First is 0 and 0xffff means end of list */
  649. #define RADIO_FH 1 /* Frequency hopping radio type */
  650. #define RADIO_DS 2 /* Direct sequence radio type */
  651. #define RADIO_TMA 4 /* Proprietary radio used in old cards (2500) */
  652.   u16 radioType;
  653.   u8 bssid[ETH_ALEN]; /* Mac address of the BSS */
  654.   u8 zero;
  655.   u8 ssidLen;
  656.   u8 ssid[32];
  657.   u16 rssi;
  658. #define CAP_ESS (1<<0)
  659. #define CAP_IBSS (1<<1)
  660. #define CAP_PRIVACY (1<<4)
  661. #define CAP_SHORTHDR (1<<5)
  662.   u16 cap;
  663.   u16 beaconInterval;
  664.   u8 rates[8]; /* Same as rates for config rid */
  665.   struct { /* For frequency hopping only */
  666.     u16 dwell;
  667.     u8 hopSet;
  668.     u8 hopPattern;
  669.     u8 hopIndex;
  670.     u8 fill;
  671.   } fh;
  672.   u16 dsChannel;
  673.   u16 atimWindow;
  674. } BSSListRid;
  675. typedef struct {
  676.   u8 rssipct;
  677.   u8 rssidBm;
  678. } tdsRssiEntry;
  679. typedef struct {
  680.   u16 len;
  681.   tdsRssiEntry x[256];
  682. } tdsRssiRid;
  683. typedef struct {
  684. u16 len;
  685. u16 state;
  686. u16 multicastValid;
  687. u8  multicast[16];
  688. u16 unicastValid;
  689. u8  unicast[16];
  690. } MICRid;
  691. typedef struct {
  692. u16 typelen;
  693. union {
  694.     u8 snap[8];
  695.     struct {
  696. u8 dsap;
  697. u8 ssap;
  698. u8 control;
  699. u8 orgcode[3];
  700. u8 fieldtype[2];
  701.     } llc;
  702. } u;
  703. u32 mic;
  704. u32 seq;
  705. } MICBuffer;
  706. typedef struct {
  707. u8 da[ETH_ALEN];
  708. u8 sa[ETH_ALEN];
  709. } etherHead;
  710. #pragma pack()
  711. #define TXCTL_TXOK (1<<1) /* report if tx is ok */
  712. #define TXCTL_TXEX (1<<2) /* report if tx fails */
  713. #define TXCTL_802_3 (0<<3) /* 802.3 packet */
  714. #define TXCTL_802_11 (1<<3) /* 802.11 mac packet */
  715. #define TXCTL_ETHERNET (0<<4) /* payload has ethertype */
  716. #define TXCTL_LLC (1<<4) /* payload is llc */
  717. #define TXCTL_RELEASE (0<<5) /* release after completion */
  718. #define TXCTL_NORELEASE (1<<5) /* on completion returns to host */
  719. #define BUSY_FID 0x10000
  720. #ifdef CISCO_EXT
  721. #define AIROMAGIC 0xa55a
  722. /* Warning : SIOCDEVPRIVATE may disapear during 2.5.X - Jean II */
  723. #ifdef SIOCIWFIRSTPRIV
  724. #ifdef SIOCDEVPRIVATE
  725. #define AIROOLDIOCTL SIOCDEVPRIVATE
  726. #define AIROOLDIDIFC  AIROOLDIOCTL + 1
  727. #endif /* SIOCDEVPRIVATE */
  728. #else /* SIOCIWFIRSTPRIV */
  729. #define SIOCIWFIRSTPRIV SIOCDEVPRIVATE
  730. #endif /* SIOCIWFIRSTPRIV */
  731. /* This may be wrong. When using the new SIOCIWFIRSTPRIV range, we probably
  732.  * should use only "GET" ioctls (last bit set to 1). "SET" ioctls are root
  733.  * only and don't return the modified struct ifreq to the application which
  734.  * is usually a problem. - Jean II */
  735. #define AIROIOCTL SIOCIWFIRSTPRIV
  736. #define AIROIDIFC  AIROIOCTL + 1
  737. /* Ioctl constants to be used in airo_ioctl.command */
  738. #define AIROGCAP   0 // Capability rid
  739. #define AIROGCFG 1       // USED A LOT
  740. #define AIROGSLIST 2 // System ID list
  741. #define AIROGVLIST 3       // List of specified AP's
  742. #define AIROGDRVNAM 4 //  NOTUSED
  743. #define AIROGEHTENC 5 // NOTUSED
  744. #define AIROGWEPKTMP 6
  745. #define AIROGWEPKNV 7
  746. #define AIROGSTAT 8
  747. #define AIROGSTATSC32 9
  748. #define AIROGSTATSD32 10
  749. #define AIROGMICRID 11
  750. #define AIROGMICSTATS 12
  751. #define AIROGFLAGS 13
  752. /* Leave gap of 40 commands after AIROGSTATSD32 for future */
  753. #define AIROPCAP                AIROGSTATSD32 + 40
  754. #define AIROPVLIST              AIROPCAP      + 1
  755. #define AIROPSLIST AIROPVLIST    + 1
  756. #define AIROPCFG AIROPSLIST    + 1
  757. #define AIROPSIDS AIROPCFG      + 1
  758. #define AIROPAPLIST AIROPSIDS     + 1
  759. #define AIROPMACON AIROPAPLIST   + 1 /* Enable mac  */
  760. #define AIROPMACOFF AIROPMACON    + 1  /* Disable mac */
  761. #define AIROPSTCLR AIROPMACOFF   + 1
  762. #define AIROPWEPKEY AIROPSTCLR    + 1
  763. #define AIROPWEPKEYNV AIROPWEPKEY   + 1
  764. #define AIROPLEAPPWD            AIROPWEPKEYNV + 1
  765. #define AIROPLEAPUSR            AIROPLEAPPWD  + 1
  766. /* Flash codes */
  767. #define AIROFLSHRST        AIROPWEPKEYNV  + 40
  768. #define AIROFLSHGCHR           AIROFLSHRST    + 1
  769. #define AIROFLSHSTFL           AIROFLSHGCHR   + 1
  770. #define AIROFLSHPCHR           AIROFLSHSTFL   + 1
  771. #define AIROFLPUTBUF           AIROFLSHPCHR   + 1
  772. #define AIRORESTART            AIROFLPUTBUF   + 1
  773. #define FLASHSIZE 32768
  774. typedef struct aironet_ioctl {
  775. unsigned short command; // What to do
  776. unsigned short len; // Len of data
  777. unsigned char *data; // d-data
  778. } aironet_ioctl;
  779. #endif /* CISCO_EXT */
  780. #define NUM_MODULES       2
  781. #define MIC_MSGLEN_MAX    2400
  782. #define EMMH32_MSGLEN_MAX MIC_MSGLEN_MAX
  783. typedef struct {
  784. u32   size;            // size
  785. u8    enabled;         // MIC enabled or not
  786. u32   rxSuccess;       // successful packets received
  787. u32   rxIncorrectMIC;  // pkts dropped due to incorrect MIC comparison
  788. u32   rxNotMICed;      // pkts dropped due to not being MIC'd
  789. u32   rxMICPlummed;    // pkts dropped due to not having a MIC plummed
  790. u32   rxWrongSequence; // pkts dropped due to sequence number violation
  791. u32   reserve[32];
  792. } mic_statistics;
  793. typedef struct {
  794. u32 coeff[((EMMH32_MSGLEN_MAX)+3)>>2];
  795. u64 accum; // accumulated mic, reduced to u32 in final()
  796. int position; // current position (byte offset) in message
  797. union {
  798. u8  d8[4];
  799. u32 d32;
  800. } part; // saves partial message word across update() calls
  801. } emmh32_context;
  802. typedef struct {
  803. emmh32_context seed;     // Context - the seed
  804. u32  rx;     // Received sequence number
  805. u32  tx;     // Tx sequence number
  806. u32  window;    // Start of window
  807. u8  valid;     // Flag to say if context is valid or not
  808. u8  key[16];
  809. } miccntx;
  810. typedef struct {
  811. miccntx mCtx; // Multicast context
  812. miccntx uCtx; // Unicast context
  813. } mic_module;
  814. #ifdef WIRELESS_EXT
  815. // Frequency list (map channels to frequencies)
  816. const long frequency_list[] = { 2412, 2417, 2422, 2427, 2432, 2437, 2442,
  817. 2447, 2452, 2457, 2462, 2467, 2472, 2484 };
  818. // A few details needed for WEP (Wireless Equivalent Privacy)
  819. #define MAX_KEY_SIZE 13 // 128 (?) bits
  820. #define MIN_KEY_SIZE  5 // 40 bits RC4 - WEP
  821. typedef struct wep_key_t {
  822. u16 len;
  823. u8 key[16]; /* 40-bit and 104-bit keys */
  824. } wep_key_t;
  825. /* Backward compatibility */
  826. #ifndef IW_ENCODE_NOKEY
  827. #define IW_ENCODE_NOKEY         0x0800  /* Key is write only, so not present */
  828. #define IW_ENCODE_MODE  (IW_ENCODE_DISABLED | IW_ENCODE_RESTRICTED | IW_ENCODE_OPEN)
  829. #endif /* IW_ENCODE_NOKEY */
  830. #if WIRELESS_EXT > 12
  831. /* List of Wireless Handlers (new API) */
  832. static const struct iw_handler_def airo_handler_def;
  833. #else /* WIRELESS_EXT > 12 */
  834. /* More Wireless Extensions backward compatibility */
  835. /* Part of iw_handler prototype we need (apart that we don't need it) */
  836. struct iw_request_info {};
  837. #endif /* WIRELESS_EXT > 12 */
  838. #endif /* WIRELESS_EXT */
  839. static const char version[] = "airo.c 0.6 (Ben Reed & Javier Achirica)";
  840. struct airo_info;
  841. static int get_dec_u16( char *buffer, int *start, int limit );
  842. static void OUT4500( struct airo_info *, u16 register, u16 value );
  843. static unsigned short IN4500( struct airo_info *, u16 register );
  844. static u16 setup_card(struct airo_info*, u8 *mac);
  845. static int enable_MAC( struct airo_info *ai, Resp *rsp );
  846. static void disable_MAC(struct airo_info *ai);
  847. static void enable_interrupts(struct airo_info*);
  848. static void disable_interrupts(struct airo_info*);
  849. static u16 issuecommand(struct airo_info*, Cmd *pCmd, Resp *pRsp);
  850. static u16 sendcommand(struct airo_info *ai, Cmd *pCmd);
  851. static void completecommand(struct airo_info *ai, Resp *pRsp);
  852. static int bap_setup(struct airo_info*, u16 rid, u16 offset, int whichbap);
  853. static int aux_bap_read(struct airo_info*, u16 *pu16Dst, int bytelen,
  854. int whichbap);
  855. static int fast_bap_read(struct airo_info*, u16 *pu16Dst, int bytelen,
  856.  int whichbap);
  857. static int bap_write(struct airo_info*, const u16 *pu16Src, int bytelen,
  858.      int whichbap);
  859. static int PC4500_accessrid(struct airo_info*, u16 rid, u16 accmd);
  860. static int PC4500_readrid(struct airo_info*, u16 rid, void *pBuf, int len);
  861. static int PC4500_writerid(struct airo_info*, u16 rid, const void
  862.    *pBuf, int len);
  863. static int do_writerid( struct airo_info*, u16 rid, const void *rid_data,
  864. int len );
  865. static u16 transmit_allocate(struct airo_info*, int lenPayload, int raw);
  866. static int transmit_802_3_packet(struct airo_info*, int len, char *pPacket);
  867. static int transmit_802_11_packet(struct airo_info*, int len, char *pPacket);
  868. static void airo_interrupt( int irq, void* dev_id, struct pt_regs
  869.     *regs);
  870. static int airo_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
  871. #ifdef WIRELESS_EXT
  872. struct iw_statistics *airo_get_wireless_stats (struct net_device *dev);
  873. #endif /* WIRELESS_EXT */
  874. #ifdef CISCO_EXT
  875. static int readrids(struct net_device *dev, aironet_ioctl *comp);
  876. static int writerids(struct net_device *dev, aironet_ioctl *comp);
  877. int flashcard(struct net_device *dev, aironet_ioctl *comp);
  878. #endif /* CISCO_EXT */
  879. #ifdef MICSUPPORT
  880. static void micinit(struct airo_info *ai, MICRid *micr);
  881. static void micsetup(struct airo_info *ai);
  882. static int encapsulate(struct airo_info *ai, etherHead *pPacket, MICBuffer *buffer, int len);
  883. static int decapsulate(struct airo_info *ai, MICBuffer *mic, etherHead *pPacket, u16 payLen);
  884. #endif
  885. struct airo_info {
  886. struct net_device_stats stats;
  887. int open;
  888. struct net_device             *dev;
  889. /* Note, we can have MAX_FIDS outstanding.  FIDs are 16-bits, so we
  890.    use the high bit to mark wether it is in use. */
  891. #define MAX_FIDS 6
  892. int                           fids[MAX_FIDS];
  893. int registered;
  894. ConfigRid config;
  895. int need_commit; // Need to set config
  896. char keyindex; // Used with auto wep
  897. char defindex; // Used with auto wep
  898. struct timer_list timer;
  899. struct proc_dir_entry *proc_entry;
  900. struct airo_info *next;
  901.         spinlock_t aux_lock;
  902.         unsigned long flags;
  903. #define FLAG_PROMISC   IFF_PROMISC /* 0x100 - include/linux/if.h */
  904. #define FLAG_RADIO_OFF 0x02 /* User disabling of MAC */
  905. #define FLAG_RADIO_DOWN 0x08 /* ifup/ifdown disabling of MAC */
  906. #define FLAG_LOCKED    2 /* 0x04 - use as a bit offset */
  907. #define FLAG_FLASHING  0x10
  908. #define FLAG_ADHOC        0x01 /* Needed by MIC */
  909. #define FLAG_MIC_CAPABLE  0x20
  910. #define FLAG_UPDATE_MULTI 0x40
  911. #define FLAG_UPDATE_UNI   0x80
  912. #define FLAG_802_11    0x200
  913. int (*bap_read)(struct airo_info*, u16 *pu16Dst, int bytelen,
  914. int whichbap);
  915. unsigned short *flash;
  916. tdsRssiEntry *rssi;
  917. struct semaphore sem;
  918. struct task_struct *task;
  919. struct tq_struct promisc_task;
  920. struct {
  921. struct sk_buff *skb;
  922. int fid;
  923. struct tq_struct task;
  924. } xmit, xmit11;
  925. struct net_device *wifidev;
  926. #ifdef WIRELESS_EXT
  927. struct iw_statistics wstats; // wireless stats
  928. unsigned long scan_timestamp; /* Time started to scan */
  929. struct tq_struct event_task;
  930. #ifdef WIRELESS_SPY
  931. int spy_number;
  932. u_char spy_address[IW_MAX_SPY][ETH_ALEN];
  933. struct iw_quality spy_stat[IW_MAX_SPY];
  934. #endif /* WIRELESS_SPY */
  935. #endif /* WIRELESS_EXT */
  936. /* MIC stuff */
  937. mic_module mod[2];
  938. mic_statistics micstats;
  939. struct tq_struct  mic_task;
  940. };
  941. static inline int bap_read(struct airo_info *ai, u16 *pu16Dst, int bytelen,
  942.    int whichbap) {
  943. return ai->bap_read(ai, pu16Dst, bytelen, whichbap);
  944. }
  945. static int setup_proc_entry( struct net_device *dev,
  946.      struct airo_info *apriv );
  947. static int takedown_proc_entry( struct net_device *dev,
  948. struct airo_info *apriv );
  949. #ifdef MICSUPPORT
  950. #include "mic.h"
  951. #endif
  952. static int readBSSListRid(struct airo_info *ai, int first,
  953.       BSSListRid *list) {
  954. int rc;
  955. Cmd cmd;
  956. Resp rsp;
  957. if (first == 1) {
  958. memset(&cmd, 0, sizeof(cmd));
  959. cmd.cmd=CMD_LISTBSS;
  960. if (down_interruptible(&ai->sem))
  961. return -ERESTARTSYS;
  962. issuecommand(ai, &cmd, &rsp);
  963. up(&ai->sem);
  964. /* Let the command take effect */
  965. set_current_state (TASK_INTERRUPTIBLE);
  966. ai->task = current;
  967. schedule_timeout (3*HZ);
  968. ai->task = NULL;
  969. }
  970. rc = PC4500_readrid(ai, first ? RID_BSSLISTFIRST : RID_BSSLISTNEXT,
  971.     list, sizeof(*list));
  972. list->len = le16_to_cpu(list->len);
  973. list->index = le16_to_cpu(list->index);
  974. list->radioType = le16_to_cpu(list->radioType);
  975. list->cap = le16_to_cpu(list->cap);
  976. list->beaconInterval = le16_to_cpu(list->beaconInterval);
  977. list->fh.dwell = le16_to_cpu(list->fh.dwell);
  978. list->dsChannel = le16_to_cpu(list->dsChannel);
  979. list->atimWindow = le16_to_cpu(list->atimWindow);
  980. return rc;
  981. }
  982. static int readWepKeyRid(struct airo_info*ai, WepKeyRid *wkr, int temp) {
  983. int rc = PC4500_readrid(ai, temp ? RID_WEP_TEMP : RID_WEP_PERM,
  984. wkr, sizeof(*wkr));
  985. wkr->len = le16_to_cpu(wkr->len);
  986. wkr->kindex = le16_to_cpu(wkr->kindex);
  987. wkr->klen = le16_to_cpu(wkr->klen);
  988. return rc;
  989. }
  990. /* In the writeXXXRid routines we copy the rids so that we don't screwup
  991.  * the originals when we endian them... */
  992. static int writeWepKeyRid(struct airo_info*ai, WepKeyRid *pwkr, int perm) {
  993. int rc;
  994. WepKeyRid wkr = *pwkr;
  995. wkr.len = cpu_to_le16(wkr.len);
  996. wkr.kindex = cpu_to_le16(wkr.kindex);
  997. wkr.klen = cpu_to_le16(wkr.klen);
  998. rc = PC4500_writerid(ai, RID_WEP_TEMP, &wkr, sizeof(wkr));
  999. if (rc!=SUCCESS) printk(KERN_ERR "airo:  WEP_TEMP set %xn", rc);
  1000. if (perm) {
  1001. rc = PC4500_writerid(ai, RID_WEP_PERM, &wkr, sizeof(wkr));
  1002. if (rc!=SUCCESS) {
  1003. printk(KERN_ERR "airo:  WEP_PERM set %xn", rc);
  1004. }
  1005. }
  1006. return rc;
  1007. }
  1008. static int readSsidRid(struct airo_info*ai, SsidRid *ssidr) {
  1009. int i;
  1010. int rc = PC4500_readrid(ai, RID_SSID, ssidr, sizeof(*ssidr));
  1011. ssidr->len = le16_to_cpu(ssidr->len);
  1012. for(i = 0; i < 3; i++) {
  1013. ssidr->ssids[i].len = le16_to_cpu(ssidr->ssids[i].len);
  1014. }
  1015. return rc;
  1016. }
  1017. static int writeSsidRid(struct airo_info*ai, SsidRid *pssidr) {
  1018. int rc;
  1019. int i;
  1020. SsidRid ssidr = *pssidr;
  1021. ssidr.len = cpu_to_le16(ssidr.len);
  1022. for(i = 0; i < 3; i++) {
  1023. ssidr.ssids[i].len = cpu_to_le16(ssidr.ssids[i].len);
  1024. }
  1025. rc = PC4500_writerid(ai, RID_SSID, &ssidr, sizeof(ssidr));
  1026. return rc;
  1027. }
  1028. static int readConfigRid(struct airo_info*ai) {
  1029. int rc;
  1030. u16 *s;
  1031. ConfigRid cfg;
  1032. if (ai->config.len)
  1033. return SUCCESS;
  1034. rc = PC4500_readrid(ai, RID_ACTUALCONFIG, &cfg, sizeof(cfg));
  1035. if (rc != SUCCESS)
  1036. return rc;
  1037. for(s = &cfg.len; s <= &cfg.rtsThres; s++) *s = le16_to_cpu(*s);
  1038. for(s = &cfg.shortRetryLimit; s <= &cfg.radioType; s++)
  1039. *s = le16_to_cpu(*s);
  1040. for(s = &cfg.txPower; s <= &cfg.radioSpecific; s++)
  1041. *s = le16_to_cpu(*s);
  1042. for(s = &cfg.arlThreshold; s <= &cfg.autoWake; s++)
  1043. *s = le16_to_cpu(*s);
  1044. ai->config = cfg;
  1045. return SUCCESS;
  1046. }
  1047. static inline void checkThrottle(struct airo_info *ai) {
  1048. int i;
  1049. /* Old hardware had a limit on encryption speed */
  1050. if (ai->config.authType != AUTH_OPEN && maxencrypt) {
  1051. for(i=0; i<8; i++) {
  1052. if (ai->config.rates[i] > maxencrypt) {
  1053. ai->config.rates[i] = 0;
  1054. }
  1055. }
  1056. }
  1057. }
  1058. static int writeConfigRid(struct airo_info*ai) {
  1059. u16 *s;
  1060. ConfigRid cfgr;
  1061. if (!ai->need_commit)
  1062. return SUCCESS;
  1063. ai->need_commit = 0;
  1064. checkThrottle(ai);
  1065. if ((cfgr.opmode & 0xFF) == MODE_STA_IBSS)
  1066. ai->flags |= FLAG_ADHOC;
  1067. else
  1068. ai->flags &= ~FLAG_ADHOC;
  1069. cfgr = ai->config;
  1070. for(s = &cfgr.len; s <= &cfgr.rtsThres; s++) *s = cpu_to_le16(*s);
  1071. for(s = &cfgr.shortRetryLimit; s <= &cfgr.radioType; s++)
  1072. *s = cpu_to_le16(*s);
  1073. for(s = &cfgr.txPower; s <= &cfgr.radioSpecific; s++)
  1074. *s = cpu_to_le16(*s);
  1075. for(s = &cfgr.arlThreshold; s <= &cfgr.autoWake; s++)
  1076. *s = cpu_to_le16(*s);
  1077. return PC4500_writerid( ai, RID_CONFIG, &cfgr, sizeof(cfgr));
  1078. }
  1079. static int readStatusRid(struct airo_info*ai, StatusRid *statr) {
  1080. int rc = PC4500_readrid(ai, RID_STATUS, statr, sizeof(*statr));
  1081. u16 *s;
  1082. statr->len = le16_to_cpu(statr->len);
  1083. for(s = &statr->mode; s <= &statr->SSIDlen; s++) *s = le16_to_cpu(*s);
  1084. for(s = &statr->beaconPeriod; s <= &statr->_reserved[9]; s++)
  1085. *s = le16_to_cpu(*s);
  1086. return rc;
  1087. }
  1088. static int readAPListRid(struct airo_info*ai, APListRid *aplr) {
  1089. int rc =  PC4500_readrid(ai, RID_APLIST, aplr, sizeof(*aplr));
  1090. aplr->len = le16_to_cpu(aplr->len);
  1091. return rc;
  1092. }
  1093. static int writeAPListRid(struct airo_info*ai, APListRid *aplr) {
  1094. int rc;
  1095. aplr->len = cpu_to_le16(aplr->len);
  1096. rc = PC4500_writerid(ai, RID_APLIST, aplr, sizeof(*aplr));
  1097. return rc;
  1098. }
  1099. static int readCapabilityRid(struct airo_info*ai, CapabilityRid *capr) {
  1100. int rc = PC4500_readrid(ai, RID_CAPABILITIES, capr, sizeof(*capr));
  1101. u16 *s;
  1102. capr->len = le16_to_cpu(capr->len);
  1103. capr->prodNum = le16_to_cpu(capr->prodNum);
  1104. capr->radioType = le16_to_cpu(capr->radioType);
  1105. capr->country = le16_to_cpu(capr->country);
  1106. for(s = &capr->txPowerLevels[0]; s <= &capr->requiredHard; s++)
  1107. *s = le16_to_cpu(*s);
  1108. return rc;
  1109. }
  1110. static int readStatsRid(struct airo_info*ai, StatsRid *sr, int rid) {
  1111. int rc = PC4500_readrid(ai, rid, sr, sizeof(*sr));
  1112. u32 *i;
  1113. sr->len = le16_to_cpu(sr->len);
  1114. for(i = &sr->vals[0]; i <= &sr->vals[99]; i++) *i = le32_to_cpu(*i);
  1115. return rc;
  1116. }
  1117. static int airo_open(struct net_device *dev) {
  1118. struct airo_info *info = dev->priv;
  1119. Resp rsp;
  1120. if (info->flags & FLAG_FLASHING)
  1121. return -EIO;
  1122. /* Make sure the card is configured.
  1123.  * Wireless Extensions may postpone config changes until the card
  1124.  * is open (to pipeline changes and speed-up card setup). If
  1125.  * those changes are not yet commited, do it now - Jean II */
  1126. if(info->need_commit) {
  1127. disable_MAC(info);
  1128. writeConfigRid(info);
  1129. }
  1130. if (info->wifidev != dev) {
  1131. /* Power on the MAC controller (which may have been disabled) */
  1132. info->flags &= ~FLAG_RADIO_DOWN;
  1133. enable_interrupts(info);
  1134. }
  1135. enable_MAC(info, &rsp);
  1136. netif_start_queue(dev);
  1137. return 0;
  1138. }
  1139. static void get_tx_error(struct airo_info *ai, u32 fid)
  1140. {
  1141. u16 status;
  1142. if (bap_setup(ai, ai->fids[fid] & 0xffff, 4, BAP0) == SUCCESS) {
  1143. bap_read(ai, &status, 2, BAP0);
  1144. if (le16_to_cpu(status) & 2) /* Too many retries */
  1145. ai->stats.tx_aborted_errors++;
  1146. if (le16_to_cpu(status) & 4) /* Transmit lifetime exceeded */
  1147. ai->stats.tx_heartbeat_errors++;
  1148. if (le16_to_cpu(status) & 8) /* Aid fail */
  1149. { }
  1150. if (le16_to_cpu(status) & 0x10) /* MAC disabled */
  1151. ai->stats.tx_carrier_errors++;
  1152. if (le16_to_cpu(status) & 0x20) /* Association lost */
  1153. { }
  1154. #if WIRELESS_EXT > 13
  1155. /* We produce a TXDROP event only for retry or lifetime
  1156.  * exceeded, because that's the only status that really mean
  1157.  * that this particular node went away.
  1158.  * Other errors means that *we* screwed up. - Jean II */
  1159. if ((le16_to_cpu(status) & 2) ||
  1160.      (le16_to_cpu(status) & 4)) {
  1161. union iwreq_data wrqu;
  1162. char junk[0x18];
  1163. /* Faster to skip over useless data than to do
  1164.  * another bap_setup(). We are at offset 0x6 and
  1165.  * need to go to 0x18 and read 6 bytes - Jean II */
  1166. bap_read(ai, (u16 *) junk, 0x18, BAP0);
  1167. /* Copy 802.11 dest address.
  1168.  * We use the 802.11 header because the frame may
  1169.  * not be 802.3 or may be mangled...
  1170.  * In Ad-Hoc mode, it will be the node address.
  1171.  * In managed mode, it will be most likely the AP addr
  1172.  * User space will figure out how to convert it to
  1173.  * whatever it needs (IP address or else).
  1174.  * - Jean II */
  1175. memcpy(wrqu.addr.sa_data, junk + 0x12, ETH_ALEN);
  1176. wrqu.addr.sa_family = ARPHRD_ETHER;
  1177. /* Send event to user space */
  1178. wireless_send_event(ai->dev, IWEVTXDROP, &wrqu, NULL);
  1179. }
  1180. #endif /* WIRELESS_EXT > 13 */
  1181. }
  1182. }
  1183. static void airo_do_xmit(struct net_device *dev) {
  1184. u16 status;
  1185. int i;
  1186. struct airo_info *priv = dev->priv;
  1187. struct sk_buff *skb = priv->xmit.skb;
  1188. int fid = priv->xmit.fid;
  1189. u32 *fids = priv->fids;
  1190. if (down_trylock(&priv->sem) != 0) {
  1191. netif_stop_queue(dev);
  1192. priv->xmit.task.routine = (void (*)(void *))airo_do_xmit;
  1193. priv->xmit.task.data = (void *)dev;
  1194. schedule_task(&priv->xmit.task);
  1195. return;
  1196. }
  1197. status = transmit_802_3_packet (priv, fids[fid], skb->data);
  1198. up(&priv->sem);
  1199. i = 0;
  1200. if ( status == SUCCESS ) {
  1201. dev->trans_start = jiffies;
  1202. for (; i < MAX_FIDS / 2 && (priv->fids[i] & 0xffff0000); i++);
  1203. } else {
  1204. priv->fids[fid] &= 0xffff;
  1205. priv->stats.tx_window_errors++;
  1206. }
  1207. if (i < MAX_FIDS / 2)
  1208. netif_wake_queue(dev);
  1209. else
  1210. netif_stop_queue(dev);
  1211. dev_kfree_skb(skb);
  1212. }
  1213. static int airo_start_xmit(struct sk_buff *skb, struct net_device *dev) {
  1214. s16 len;
  1215. int i;
  1216. struct airo_info *priv = dev->priv;
  1217. u32 *fids = priv->fids;
  1218. if ( skb == NULL ) {
  1219. printk( KERN_ERR "airo:  skb == NULL!!!n" );
  1220. return 0;
  1221. }
  1222. /* Find a vacant FID */
  1223. for( i = 0; i < MAX_FIDS / 2 && (fids[i] & 0xffff0000); i++ );
  1224. if ( i == MAX_FIDS / 2 ) {
  1225. priv->stats.tx_fifo_errors++;
  1226. dev_kfree_skb(skb);
  1227. } else {
  1228. /* check min length*/
  1229. len = ETH_ZLEN < skb->len ? skb->len : ETH_ZLEN;
  1230.         /* Mark fid as used & save length for later */
  1231. fids[i] |= (len << 16);
  1232. priv->xmit.skb = skb;
  1233. priv->xmit.fid = i;
  1234. airo_do_xmit(dev);
  1235. }
  1236. return 0;
  1237. }
  1238. static void airo_do_xmit11(struct net_device *dev) {
  1239. u16 status;
  1240. int i;
  1241. struct airo_info *priv = dev->priv;
  1242. struct sk_buff *skb = priv->xmit11.skb;
  1243. int fid = priv->xmit11.fid;
  1244. u32 *fids = priv->fids;
  1245. if (down_trylock(&priv->sem) != 0) {
  1246. netif_stop_queue(dev);
  1247. priv->xmit11.task.routine = (void (*)(void *))airo_do_xmit11;
  1248. priv->xmit11.task.data = (void *)dev;
  1249. schedule_task(&priv->xmit11.task);
  1250. return;
  1251. }
  1252. status = transmit_802_11_packet (priv, fids[fid], skb->data);
  1253. up(&priv->sem);
  1254. i = MAX_FIDS / 2;
  1255. if ( status == SUCCESS ) {
  1256. dev->trans_start = jiffies;
  1257. for (; i < MAX_FIDS && (priv->fids[i] & 0xffff0000); i++);
  1258. } else {
  1259. priv->fids[fid] &= 0xffff;
  1260. priv->stats.tx_window_errors++;
  1261. }
  1262. if (i < MAX_FIDS)
  1263. netif_wake_queue(dev);
  1264. else
  1265. netif_stop_queue(dev);
  1266. dev_kfree_skb(skb);
  1267. }
  1268. static int airo_start_xmit11(struct sk_buff *skb, struct net_device *dev) {
  1269. s16 len;
  1270. int i;
  1271. struct airo_info *priv = dev->priv;
  1272. u32 *fids = priv->fids;
  1273. if ( skb == NULL ) {
  1274. printk( KERN_ERR "airo:  skb == NULL!!!n" );
  1275. return 0;
  1276. }
  1277. /* Find a vacant FID */
  1278. for( i = MAX_FIDS / 2; i < MAX_FIDS && (fids[i] & 0xffff0000); i++ );
  1279. if ( i == MAX_FIDS ) {
  1280. priv->stats.tx_fifo_errors++;
  1281. dev_kfree_skb(skb);
  1282. } else {
  1283. /* check min length*/
  1284. len = ETH_ZLEN < skb->len ? skb->len : ETH_ZLEN;
  1285.         /* Mark fid as used & save length for later */
  1286. fids[i] |= (len << 16);
  1287. priv->xmit11.skb = skb;
  1288. priv->xmit11.fid = i;
  1289. airo_do_xmit11(dev);
  1290. }
  1291. return 0;
  1292. }
  1293. struct net_device_stats *airo_get_stats(struct net_device *dev)
  1294. {
  1295. struct airo_info *local =  dev->priv;
  1296. StatsRid stats_rid;
  1297. u32 *vals = stats_rid.vals;
  1298. /* Get stats out of the card */
  1299. readStatsRid(local, &stats_rid, RID_STATS);
  1300. local->stats.rx_packets = vals[43] + vals[44] + vals[45];
  1301. local->stats.tx_packets = vals[39] + vals[40] + vals[41];
  1302. local->stats.rx_bytes = vals[92];
  1303. local->stats.tx_bytes = vals[91];
  1304. local->stats.rx_errors = vals[0] + vals[2] + vals[3] + vals[4];
  1305. local->stats.tx_errors = vals[42] + local->stats.tx_fifo_errors;
  1306. local->stats.multicast = vals[43];
  1307. local->stats.collisions = vals[89];
  1308. /* detailed rx_errors: */
  1309. local->stats.rx_length_errors = vals[3];
  1310. local->stats.rx_crc_errors = vals[4];
  1311. local->stats.rx_frame_errors = vals[2];
  1312. local->stats.rx_fifo_errors = vals[0];
  1313. return &local->stats;
  1314. }
  1315. static void airo_end_promisc(struct airo_info *ai) {
  1316. Resp rsp;
  1317. if ((IN4500(ai, EVSTAT) & EV_CMD) != 0) {
  1318. completecommand(ai, &rsp);
  1319. up(&ai->sem);
  1320. } else {
  1321. ai->promisc_task.routine = (void (*)(void *))airo_end_promisc;
  1322. ai->promisc_task.data = (void *)ai;
  1323. schedule_task(&ai->promisc_task);
  1324. }
  1325. }
  1326. static void airo_set_promisc(struct airo_info *ai) {
  1327. Cmd cmd;
  1328. if (down_trylock(&ai->sem) == 0) {
  1329. memset(&cmd, 0, sizeof(cmd));
  1330. cmd.cmd=CMD_SETMODE;
  1331. cmd.parm0=(ai->flags&IFF_PROMISC) ? PROMISC : NOPROMISC;
  1332. sendcommand(ai, &cmd);
  1333. airo_end_promisc(ai);
  1334. } else {
  1335. ai->promisc_task.routine = (void (*)(void *))airo_set_promisc;
  1336. ai->promisc_task.data = (void *)ai;
  1337. schedule_task(&ai->promisc_task);
  1338. }
  1339. }
  1340. static void airo_set_multicast_list(struct net_device *dev) {
  1341. struct airo_info *ai = dev->priv;
  1342. if ((dev->flags ^ ai->flags) & IFF_PROMISC) {
  1343. ai->flags ^= IFF_PROMISC;
  1344. airo_set_promisc(ai);
  1345. }
  1346. if ((dev->flags&IFF_ALLMULTI)||dev->mc_count>0) {
  1347. /* Turn on multicast.  (Should be already setup...) */
  1348. }
  1349. }
  1350. static int airo_set_mac_address(struct net_device *dev, void *p)
  1351. {
  1352. struct airo_info *ai = dev->priv;
  1353. struct sockaddr *addr = p;
  1354. Resp rsp;
  1355. memcpy (ai->config.macAddr, addr->sa_data, dev->addr_len);
  1356. ai->need_commit = 1;
  1357. disable_MAC(ai);
  1358. writeConfigRid (ai);
  1359. enable_MAC(ai, &rsp);
  1360. memcpy (ai->dev->dev_addr, addr->sa_data, dev->addr_len);
  1361. if (ai->wifidev)
  1362. memcpy (ai->wifidev->dev_addr, addr->sa_data, dev->addr_len);
  1363. return 0;
  1364. }
  1365. static int airo_change_mtu(struct net_device *dev, int new_mtu)
  1366. {
  1367. if ((new_mtu < 68) || (new_mtu > 2400))
  1368. return -EINVAL;
  1369. dev->mtu = new_mtu;
  1370. return 0;
  1371. }
  1372. static int airo_close(struct net_device *dev) {
  1373. struct airo_info *ai = dev->priv;
  1374. netif_stop_queue(dev);
  1375. if (ai->wifidev != dev) {
  1376. #ifdef POWER_ON_DOWN
  1377. /* Shut power to the card. The idea is that the user can save
  1378.  * power when he doesn't need the card with "ifconfig down".
  1379.  * That's the method that is most friendly towards the network
  1380.  * stack (i.e. the network stack won't try to broadcast
  1381.  * anything on the interface and routes are gone. Jean II */
  1382. ai->flags |= FLAG_RADIO_DOWN;
  1383. disable_MAC(ai);
  1384. #endif
  1385. disable_interrupts( ai );
  1386. }
  1387. return 0;
  1388. }
  1389. static void del_airo_dev( struct net_device *dev );
  1390. void stop_airo_card( struct net_device *dev, int freeres )
  1391. {
  1392. struct airo_info *ai = dev->priv;
  1393. flush_scheduled_tasks();
  1394. if (ai->flash)
  1395. kfree(ai->flash);
  1396. if (ai->rssi)
  1397. kfree(ai->rssi);
  1398. takedown_proc_entry( dev, ai );
  1399. if (ai->registered) {
  1400. unregister_netdev( dev );
  1401. if (ai->wifidev) {
  1402. unregister_netdev(ai->wifidev);
  1403. kfree(ai->wifidev);
  1404. ai->wifidev = 0;
  1405. }
  1406. ai->registered = 0;
  1407. }
  1408. disable_interrupts(ai);
  1409. free_irq( dev->irq, dev );
  1410. if (auto_wep) del_timer_sync(&ai->timer);
  1411. if (freeres) {
  1412. /* PCMCIA frees this stuff, so only for PCI and ISA */
  1413.         release_region( dev->base_addr, 64 );
  1414.         }
  1415. del_airo_dev( dev );
  1416. kfree( dev );
  1417. }
  1418. EXPORT_SYMBOL(stop_airo_card);
  1419. static int add_airo_dev( struct net_device *dev );
  1420. int wll_header_parse(struct sk_buff *skb, unsigned char *haddr)
  1421. {
  1422. memcpy(haddr, skb->mac.raw + 10, ETH_ALEN);
  1423. return ETH_ALEN;
  1424. }
  1425. static void wifi_setup(struct net_device *dev, struct net_device *ethdev)
  1426. {
  1427. struct airo_info *ai = ethdev->priv;
  1428. dev->priv = ai;
  1429. dev->hard_header        = 0;
  1430. dev->rebuild_header     = 0;
  1431. dev->hard_header_cache  = 0;
  1432. dev->header_cache_update= 0;
  1433. dev->hard_header_parse  = wll_header_parse;
  1434. dev->hard_start_xmit = &airo_start_xmit11;
  1435. dev->get_stats = &airo_get_stats;
  1436. dev->set_mac_address = &airo_set_mac_address;
  1437. dev->do_ioctl = &airo_ioctl;
  1438. #ifdef WIRELESS_EXT
  1439. dev->get_wireless_stats = airo_get_wireless_stats;
  1440. #if WIRELESS_EXT > 12
  1441. dev->wireless_handlers = (struct iw_handler_def *)&airo_handler_def;
  1442. #endif /* WIRELESS_EXT > 12 */
  1443. #endif /* WIRELESS_EXT */
  1444. dev->change_mtu = &airo_change_mtu;
  1445. dev->open = &airo_open;
  1446. dev->stop = &airo_close;
  1447. dev->irq = ethdev->irq;
  1448. dev->base_addr = ethdev->base_addr;
  1449. dev->type               = ARPHRD_IEEE80211;
  1450. dev->hard_header_len    = ETH_HLEN;
  1451. dev->mtu                = 2312;
  1452. dev->addr_len           = ETH_ALEN;
  1453. memcpy(dev->dev_addr, ethdev->dev_addr, dev->addr_len);
  1454. dev->tx_queue_len       = 100; 
  1455. memset(dev->broadcast,0xFF, ETH_ALEN);
  1456. dev->flags              = IFF_BROADCAST|IFF_MULTICAST;
  1457. }
  1458. static struct net_device *init_wifidev(struct airo_info *ai,
  1459. struct net_device *ethdev)
  1460. {
  1461. int err;
  1462. struct net_device *dev = (struct net_device*)kmalloc(sizeof *dev,GFP_KERNEL);
  1463. if (!dev) return 0;
  1464. memset(dev, 0, sizeof(*dev));
  1465. strcpy(dev->name, "wifi%d");
  1466. dev->priv = ai;
  1467. wifi_setup(dev, ethdev);
  1468. err = register_netdev(dev);
  1469. if (err<0) {
  1470. kfree(dev);
  1471. return 0;
  1472. }
  1473. return dev;
  1474. }
  1475. struct net_device *init_airo_card( unsigned short irq, int port, int is_pcmcia )
  1476. {
  1477. struct net_device *dev;
  1478. struct airo_info *ai;
  1479. int i, rc;
  1480. /* Create the network device object. */
  1481.         dev = alloc_etherdev(sizeof(*ai));
  1482.         if (!dev) {
  1483. printk(KERN_ERR "airo:  Couldn't alloc_etherdevn");
  1484. return NULL;
  1485.         }
  1486. if (dev_alloc_name(dev, dev->name) < 0) {
  1487. printk(KERN_ERR "airo:  Couldn't get name!n");
  1488. goto err_out_free;
  1489. }
  1490. ai = dev->priv;
  1491. ai->wifidev = 0;
  1492. ai->registered = 0;
  1493.         ai->dev = dev;
  1494. ai->aux_lock = SPIN_LOCK_UNLOCKED;
  1495. sema_init(&ai->sem, 1);
  1496. ai->need_commit = 0;
  1497. ai->config.len = 0;
  1498. rc = add_airo_dev( dev );
  1499. if (rc)
  1500. goto err_out_free;
  1501. /* The Airo-specific entries in the device structure. */
  1502. dev->hard_start_xmit = &airo_start_xmit;
  1503. dev->get_stats = &airo_get_stats;
  1504. dev->set_multicast_list = &airo_set_multicast_list;
  1505. dev->set_mac_address = &airo_set_mac_address;
  1506. dev->do_ioctl = &airo_ioctl;
  1507. #ifdef WIRELESS_EXT
  1508. dev->get_wireless_stats = airo_get_wireless_stats;
  1509. #if WIRELESS_EXT > 12
  1510. dev->wireless_handlers = (struct iw_handler_def *)&airo_handler_def;
  1511. #endif /* WIRELESS_EXT > 12 */
  1512. #endif /* WIRELESS_EXT */
  1513. dev->change_mtu = &airo_change_mtu;
  1514. dev->open = &airo_open;
  1515. dev->stop = &airo_close;
  1516. dev->irq = irq;
  1517. dev->base_addr = port;
  1518. rc = request_irq( dev->irq, airo_interrupt, SA_SHIRQ, dev->name, dev );
  1519. if (rc) {
  1520. printk(KERN_ERR "airo: register interrupt %d failed, rc %dn", irq, rc );
  1521. goto err_out_unlink;
  1522. }
  1523. if (!is_pcmcia) {
  1524. if (!request_region( dev->base_addr, 64, dev->name )) {
  1525. rc = -EBUSY;
  1526. goto err_out_irq;
  1527. }
  1528. }
  1529. if (probe) {
  1530. if ( setup_card( ai, dev->dev_addr ) != SUCCESS ) {
  1531. printk( KERN_ERR "airo: MAC could not be enabledn" );
  1532. rc = -EIO;
  1533. goto err_out_res;
  1534. }
  1535. } else {
  1536. ai->bap_read = fast_bap_read;
  1537. ai->flags |= FLAG_FLASHING;
  1538. }
  1539. rc = register_netdev(dev);
  1540. if (rc)
  1541. goto err_out_res;
  1542. ai->wifidev = init_wifidev(ai, dev);
  1543. ai->registered = 1;
  1544. printk( KERN_INFO "airo: MAC enabled %s %x:%x:%x:%x:%x:%xn",
  1545. dev->name,
  1546. dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2],
  1547. dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5] );
  1548. /* Allocate the transmit buffers */
  1549. if (probe)
  1550. for( i = 0; i < MAX_FIDS; i++ )
  1551. ai->fids[i] = transmit_allocate(ai,2312,i>=MAX_FIDS/2);
  1552. setup_proc_entry( dev, dev->priv ); /* XXX check for failure */
  1553. netif_start_queue(dev);
  1554. SET_MODULE_OWNER(dev);
  1555. return dev;
  1556. err_out_res:
  1557. if (!is_pcmcia)
  1558.         release_region( dev->base_addr, 64 );
  1559. err_out_irq:
  1560. free_irq(dev->irq, dev);
  1561. err_out_unlink:
  1562. del_airo_dev(dev);
  1563. err_out_free:
  1564. kfree(dev);
  1565. return NULL;
  1566. }
  1567. EXPORT_SYMBOL(init_airo_card);
  1568. static int waitbusy (struct airo_info *ai) {
  1569. int delay = 0;
  1570. while ((IN4500 (ai, COMMAND) & COMMAND_BUSY) & (delay < 10000)) {
  1571. udelay (10);
  1572. if (++delay % 20)
  1573. OUT4500(ai, EVACK, EV_CLEARCOMMANDBUSY);
  1574. }
  1575. return delay < 10000;
  1576. }
  1577. int reset_airo_card( struct net_device *dev ) {
  1578. int i;
  1579. struct airo_info *ai = dev->priv;
  1580. waitbusy (ai);
  1581. OUT4500(ai,COMMAND,CMD_SOFTRESET);
  1582. set_current_state (TASK_UNINTERRUPTIBLE);
  1583. schedule_timeout (HZ/5);
  1584. waitbusy (ai);
  1585. set_current_state (TASK_UNINTERRUPTIBLE);
  1586. schedule_timeout (HZ/5);
  1587. if ( setup_card(ai, dev->dev_addr ) != SUCCESS ) {
  1588. printk( KERN_ERR "airo: MAC could not be enabledn" );
  1589. return -1;
  1590. } else {
  1591. printk( KERN_INFO "airo: MAC enabled %s %x:%x:%x:%x:%x:%xn",
  1592. dev->name,
  1593. dev->dev_addr[0],
  1594. dev->dev_addr[1],
  1595. dev->dev_addr[2],
  1596. dev->dev_addr[3],
  1597. dev->dev_addr[4],
  1598. dev->dev_addr[5]
  1599. );
  1600. /* Allocate the transmit buffers */
  1601. for( i = 0; i < MAX_FIDS; i++ )
  1602. ai->fids[i] = transmit_allocate(ai,2312,i>=MAX_FIDS/2);
  1603. }
  1604. enable_interrupts( ai );
  1605. netif_wake_queue(dev);
  1606. return 0;
  1607. }
  1608. EXPORT_SYMBOL(reset_airo_card);
  1609. #if WIRELESS_EXT > 13
  1610. static void airo_send_event(struct net_device *dev) {
  1611. struct airo_info *ai = dev->priv;
  1612. union iwreq_data wrqu;
  1613. StatusRid status_rid;
  1614. if (down_trylock(&ai->sem) == 0) {
  1615. __set_bit(FLAG_LOCKED, &ai->flags);
  1616. PC4500_readrid(ai, RID_STATUS, &status_rid, sizeof(status_rid));
  1617. clear_bit(FLAG_LOCKED, &ai->flags);
  1618. up(&ai->sem);
  1619. wrqu.data.length = 0;
  1620. wrqu.data.flags = 0;
  1621. memcpy(wrqu.ap_addr.sa_data, status_rid.bssid[0], ETH_ALEN);
  1622. wrqu.ap_addr.sa_family = ARPHRD_ETHER;
  1623. /* Send event to user space */
  1624. wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL);
  1625. } else {
  1626. ai->event_task.routine = (void (*)(void *))airo_send_event;
  1627. ai->event_task.data = (void *)dev;
  1628. schedule_task(&ai->event_task);
  1629. }
  1630. }
  1631. #endif
  1632. static void airo_read_mic(struct airo_info *ai) {
  1633. MICRid mic_rid;
  1634. if (down_trylock(&ai->sem) == 0) {
  1635. __set_bit(FLAG_LOCKED, &ai->flags);
  1636. PC4500_readrid(ai, RID_MIC, &mic_rid, sizeof(mic_rid));
  1637. clear_bit(FLAG_LOCKED, &ai->flags);
  1638. up(&ai->sem);
  1639. #ifdef MICSUPPORT
  1640. micinit (ai, &mic_rid);
  1641. #endif
  1642. } else {
  1643. ai->mic_task.routine = (void (*)(void *))airo_read_mic;
  1644. ai->mic_task.data = (void *)ai;
  1645. schedule_task(&ai->mic_task);
  1646. }
  1647. }
  1648. static void airo_interrupt ( int irq, void* dev_id, struct pt_regs *regs) {
  1649. struct net_device *dev = (struct net_device *)dev_id;
  1650. u16 status;
  1651. u16 fid;
  1652. struct airo_info *apriv = dev->priv;
  1653. u16 savedInterrupts = 0;
  1654. if (!netif_device_present(dev))
  1655. return;
  1656. for (;;) {
  1657. status = IN4500( apriv, EVSTAT );
  1658. if ( !(status & STATUS_INTS) || status == 0xffff ) break;
  1659. if ( status & EV_AWAKE ) {
  1660. OUT4500( apriv, EVACK, EV_AWAKE );
  1661. OUT4500( apriv, EVACK, EV_AWAKE );
  1662. }
  1663. if (!savedInterrupts) {
  1664. savedInterrupts = IN4500( apriv, EVINTEN );
  1665. OUT4500( apriv, EVINTEN, 0 );
  1666. }
  1667. if ( status & EV_MIC ) {
  1668. OUT4500( apriv, EVACK, EV_MIC );
  1669. airo_read_mic( apriv );
  1670. }
  1671. if ( status & EV_LINK ) {
  1672. #if WIRELESS_EXT > 13
  1673. union iwreq_data wrqu;
  1674. #endif /* WIRELESS_EXT > 13 */
  1675. /* The link status has changed, if you want to put a
  1676.    monitor hook in, do it here.  (Remember that
  1677.    interrupts are still disabled!)
  1678. */
  1679. u16 newStatus = IN4500(apriv, LINKSTAT);
  1680. OUT4500( apriv, EVACK, EV_LINK);
  1681. /* Here is what newStatus means: */
  1682. #define NOBEACON 0x8000 /* Loss of sync - missed beacons */
  1683. #define MAXRETRIES 0x8001 /* Loss of sync - max retries */
  1684. #define MAXARL 0x8002 /* Loss of sync - average retry level exceeded*/
  1685. #define FORCELOSS 0x8003 /* Loss of sync - host request */
  1686. #define TSFSYNC 0x8004 /* Loss of sync - TSF synchronization */
  1687. #define DEAUTH 0x8100 /* Deauthentication (low byte is reason code) */
  1688. #define DISASS 0x8200 /* Disassociation (low byte is reason code) */
  1689. #define ASSFAIL 0x8400 /* Association failure (low byte is reason
  1690.   code) */
  1691. #define AUTHFAIL 0x0300 /* Authentication failure (low byte is reason
  1692.    code) */
  1693. #define ASSOCIATED 0x0400 /* Assocatied */
  1694. #define RC_RESERVED 0 /* Reserved return code */
  1695. #define RC_NOREASON 1 /* Unspecified reason */
  1696. #define RC_AUTHINV 2 /* Previous authentication invalid */
  1697. #define RC_DEAUTH 3 /* Deauthenticated because sending station is
  1698.        leaving */
  1699. #define RC_NOACT 4 /* Disassociated due to inactivity */
  1700. #define RC_MAXLOAD 5 /* Disassociated because AP is unable to handle
  1701. all currently associated stations */
  1702. #define RC_BADCLASS2 6 /* Class 2 frame received from
  1703.   non-Authenticated station */
  1704. #define RC_BADCLASS3 7 /* Class 3 frame received from
  1705.   non-Associated station */
  1706. #define RC_STATLEAVE 8 /* Disassociated because sending station is
  1707.   leaving BSS */
  1708. #define RC_NOAUTH 9 /* Station requesting (Re)Association is not
  1709.        Authenticated with the responding station */
  1710. if (newStatus != ASSOCIATED) {
  1711. if (auto_wep && !timer_pending(&apriv->timer)) {
  1712. apriv->timer.expires = RUN_AT(HZ*3);
  1713.        add_timer(&apriv->timer);
  1714. }
  1715. } else {
  1716. struct task_struct *task = apriv->task;
  1717. if (task)
  1718. wake_up_process (task);
  1719. apriv->flags|=FLAG_UPDATE_UNI|FLAG_UPDATE_MULTI;
  1720. }
  1721. #if WIRELESS_EXT > 13
  1722. /* Question : is ASSOCIATED the only status
  1723.  * that is valid ? We want to catch handover
  1724.  * and reassociations as valid status
  1725.  * Jean II */
  1726. if(newStatus == ASSOCIATED) {
  1727. if (apriv->scan_timestamp) {
  1728. /* Send an empty event to user space.
  1729.  * We don't send the received data on
  1730.  * the event because it would require
  1731.  * us to do complex transcoding, and
  1732.  * we want to minimise the work done in
  1733.  * the irq handler. Use a request to
  1734.  * extract the data - Jean II */
  1735. wrqu.data.length = 0;
  1736. wrqu.data.flags = 0;
  1737. wireless_send_event(dev, SIOCGIWSCAN, &wrqu, NULL);
  1738. apriv->scan_timestamp = 0;
  1739. }
  1740. airo_send_event(dev);
  1741. } else {
  1742. memset(wrqu.ap_addr.sa_data, '', ETH_ALEN);
  1743. wrqu.ap_addr.sa_family = ARPHRD_ETHER;
  1744. /* Send event to user space */
  1745. wireless_send_event(dev, SIOCGIWAP, &wrqu,NULL);
  1746. }
  1747. #endif /* WIRELESS_EXT > 13 */
  1748. }
  1749. /* Check to see if there is something to receive */
  1750. if ( status & EV_RX  ) {
  1751. struct sk_buff *skb = NULL;
  1752. u16 fc, len, hdrlen = 0;
  1753. #pragma pack(1)
  1754. struct {
  1755. u16 status, len;
  1756. u8 rssi[2];
  1757. u8 rate;
  1758. u8 freq;
  1759. u16 tmp[4];
  1760. } hdr;
  1761. #pragma pack()
  1762. u16 gap;
  1763. u16 tmpbuf[4];
  1764. u16 *buffer;
  1765. fid = IN4500( apriv, RXFID );
  1766. /* Get the packet length */
  1767. if (apriv->flags & FLAG_802_11) {
  1768. bap_setup (apriv, fid, 4, BAP0);
  1769. bap_read (apriv, (u16*)&hdr, sizeof(hdr), BAP0);
  1770. /* Bad CRC. Ignore packet */
  1771. if (le16_to_cpu(hdr.status) & 2)
  1772. hdr.len = 0;
  1773. if (apriv->wifidev == NULL)
  1774. hdr.len = 0;
  1775. } else {
  1776. bap_setup (apriv, fid, 0x36, BAP0);
  1777. bap_read (apriv, (u16*)&hdr.len, 2, BAP0);
  1778. }
  1779. len = le16_to_cpu(hdr.len);
  1780. if (len > 2312) {
  1781. printk( KERN_ERR "airo: Bad size %dn", len );
  1782. len = 0;
  1783. }
  1784. if (len) {
  1785. if (apriv->flags & FLAG_802_11) {
  1786. bap_read (apriv, (u16*)&fc, sizeof(fc), BAP0);
  1787. fc = le16_to_cpu(fc);
  1788. switch (fc & 0xc) {
  1789. case 4:
  1790. if ((fc & 0xe0) == 0xc0)
  1791. hdrlen = 10;
  1792. else
  1793. hdrlen = 16;
  1794. break;
  1795. case 8:
  1796. if ((fc&0x300)==0x300){
  1797. hdrlen = 30;
  1798. break;
  1799. }
  1800. default:
  1801. hdrlen = 24;
  1802. }
  1803. } else
  1804. hdrlen = ETH_ALEN * 2;
  1805. skb = dev_alloc_skb( len + hdrlen + 2 );
  1806. if ( !skb ) {
  1807. apriv->stats.rx_dropped++;
  1808. len = 0;
  1809. }
  1810. }
  1811. if (len) {
  1812. buffer = (u16*)skb_put (skb, len + hdrlen);
  1813. if (apriv->flags & FLAG_802_11) {
  1814. buffer[0] = fc;
  1815. bap_read (apriv, buffer + 1, hdrlen - 2, BAP0);
  1816. if (hdrlen == 24)
  1817. bap_read (apriv, tmpbuf, 6, BAP0);
  1818. bap_read (apriv, &gap, sizeof(gap), BAP0);
  1819. gap = le16_to_cpu(gap);
  1820. if (gap) {
  1821. if (gap <= 8)
  1822. bap_read (apriv, tmpbuf, gap, BAP0);
  1823. else
  1824. printk(KERN_ERR "airo: gaplen too big. Problems will follow...n");
  1825. }
  1826. bap_read (apriv, buffer + hdrlen/2, len, BAP0);
  1827. } else {
  1828. MICBuffer micbuf;
  1829. bap_read (apriv, buffer, ETH_ALEN*2, BAP0);
  1830. if (apriv->micstats.enabled) {
  1831. bap_read (apriv,(u16*)&micbuf,sizeof(micbuf),BAP0);
  1832. if (ntohs(micbuf.typelen) > 0x05DC)
  1833. bap_setup (apriv, fid, 0x44, BAP0);
  1834. else {
  1835. len -= sizeof(micbuf);
  1836. if (len < 48)
  1837. len = 48;
  1838. skb_trim (skb, len + hdrlen);
  1839. }
  1840. }
  1841. bap_read(apriv,buffer+ETH_ALEN,len,BAP0);
  1842. #ifdef MICSUPPORT
  1843. if (decapsulate(apriv,&micbuf,(etherHead*)buffer,len)) {
  1844. dev_kfree_skb_irq (skb);
  1845. len = 0;
  1846. }
  1847. #endif
  1848. }
  1849. }
  1850. if (len) {
  1851. #ifdef WIRELESS_SPY
  1852. if (apriv->spy_number > 0) {
  1853. int i;
  1854. char *sa;
  1855. sa = (char*)buffer + ((apriv->flags & FLAG_802_11) ? 10 : 6);
  1856. for (i=0; i<apriv->spy_number; i++)
  1857. if (!memcmp(sa,apriv->spy_address[i],ETH_ALEN))
  1858. {
  1859. if (!(apriv->flags & FLAG_802_11)) {
  1860. bap_setup (apriv, fid, 8, BAP0);
  1861. bap_read (apriv, (u16*)hdr.rssi, 2, BAP0);
  1862. }
  1863. apriv->spy_stat[i].qual = hdr.rssi[0];
  1864. if (apriv->rssi)
  1865. apriv->spy_stat[i].level = 0x100 - apriv->rssi[hdr.rssi[1]].rssidBm;
  1866. else
  1867. apriv->spy_stat[i].level = (hdr.rssi[1] + 321) / 2;
  1868. apriv->spy_stat[i].noise = 0;
  1869. apriv->spy_stat[i].updated = 3;
  1870. break;
  1871. }
  1872. }
  1873. #endif /* WIRELESS_SPY  */
  1874. OUT4500( apriv, EVACK, EV_RX);
  1875. if (apriv->flags & FLAG_802_11) {
  1876. skb->mac.raw = skb->data;
  1877. skb->pkt_type = PACKET_OTHERHOST;
  1878. skb->dev = apriv->wifidev;
  1879. skb->protocol = htons(ETH_P_802_2);
  1880. } else {
  1881. skb->dev = dev;
  1882. skb->protocol = eth_type_trans(skb,dev);
  1883. }
  1884. skb->dev->last_rx = jiffies;
  1885. skb->ip_summed = CHECKSUM_NONE;
  1886. netif_rx( skb );
  1887. } else
  1888. OUT4500( apriv, EVACK, EV_RX);
  1889. }
  1890. /* Check to see if a packet has been transmitted */
  1891. if (  status & ( EV_TX|EV_TXEXC ) ) {
  1892. int i;
  1893. int len = 0;
  1894. int index = -1;
  1895. fid = IN4500(apriv, TXCOMPLFID);
  1896. for( i = 0; i < MAX_FIDS; i++ ) {
  1897. if ( ( apriv->fids[i] & 0xffff ) == fid ) {
  1898. len = apriv->fids[i] >> 16;
  1899. index = i;
  1900. /* Set up to be used again */
  1901. apriv->fids[i] &= 0xffff;
  1902. }
  1903. }
  1904. if (index != -1) {
  1905. netif_wake_queue(dev);
  1906. if (status & EV_TXEXC)
  1907. get_tx_error(apriv, index);
  1908. }
  1909. OUT4500( apriv, EVACK, status & (EV_TX | EV_TXEXC));
  1910. if (index==-1) {
  1911. printk( KERN_ERR "airo: Unallocated FID was used to xmitn" );
  1912. }
  1913. }
  1914. if ( status & ~STATUS_INTS & ~IGNORE_INTS )
  1915. printk( KERN_WARNING "airo: Got weird status %xn",
  1916. status & ~STATUS_INTS & ~IGNORE_INTS );
  1917. }
  1918. if (savedInterrupts)
  1919. OUT4500( apriv, EVINTEN, savedInterrupts );
  1920. /* done.. */
  1921. return;
  1922. }
  1923. /*
  1924.  *  Routines to talk to the card
  1925.  */
  1926. /*
  1927.  *  This was originally written for the 4500, hence the name
  1928.  *  NOTE:  If use with 8bit mode and SMP bad things will happen!
  1929.  *         Why would some one do 8 bit IO in an SMP machine?!?
  1930.  */
  1931. static void OUT4500( struct airo_info *ai, u16 reg, u16 val ) {
  1932. if ( !do8bitIO )
  1933. outw( val, ai->dev->base_addr + reg );
  1934. else {
  1935. outb( val & 0xff, ai->dev->base_addr + reg );
  1936. outb( val >> 8, ai->dev->base_addr + reg + 1 );
  1937. }
  1938. }
  1939. static u16 IN4500( struct airo_info *ai, u16 reg ) {
  1940. unsigned short rc;
  1941. if ( !do8bitIO )
  1942. rc = inw( ai->dev->base_addr + reg );
  1943. else {
  1944. rc = inb( ai->dev->base_addr + reg );
  1945. rc += ((int)inb( ai->dev->base_addr + reg + 1 )) << 8;
  1946. }
  1947. return rc;
  1948. }
  1949. static int enable_MAC( struct airo_info *ai, Resp *rsp ) {
  1950. int rc;
  1951.         Cmd cmd;
  1952. /* FLAG_RADIO_OFF : Radio disabled via /proc or Wireless Extensions
  1953.  * FLAG_RADIO_DOWN : Radio disabled via "ifconfig ethX down"
  1954.  * Note : we could try to use !netif_running(dev) in enable_MAC()
  1955.  * instead of this flag, but I don't trust it *within* the
  1956.  * open/close functions, and testing both flags together is
  1957.  * "cheaper" - Jean II */
  1958. if (ai->flags & (FLAG_RADIO_OFF|FLAG_RADIO_DOWN)) return SUCCESS;
  1959. memset(&cmd, 0, sizeof(cmd));
  1960. cmd.cmd = MAC_ENABLE;
  1961. if (test_bit(FLAG_LOCKED, &ai->flags) != 0)
  1962. return issuecommand(ai, &cmd, rsp);
  1963. if (down_interruptible(&ai->sem))
  1964. return -ERESTARTSYS;
  1965. rc = issuecommand(ai, &cmd, rsp);
  1966. up(&ai->sem);
  1967. return rc;
  1968. }
  1969. static void disable_MAC( struct airo_info *ai ) {
  1970.         Cmd cmd;
  1971. Resp rsp;
  1972. memset(&cmd, 0, sizeof(cmd));
  1973. cmd.cmd = MAC_DISABLE; // disable in case already enabled
  1974. if (test_bit(FLAG_LOCKED, &ai->flags) != 0) {
  1975. issuecommand(ai, &cmd, &rsp);
  1976. return;
  1977. }
  1978. if (down_interruptible(&ai->sem))
  1979. return;
  1980. issuecommand(ai, &cmd, &rsp);
  1981. up(&ai->sem);
  1982. }
  1983. static void enable_interrupts( struct airo_info *ai ) {
  1984. /* Reset the status register */
  1985. u16 status = IN4500( ai, EVSTAT );
  1986. OUT4500( ai, EVACK, status );
  1987. /* Enable the interrupts */
  1988. OUT4500( ai, EVINTEN, STATUS_INTS );
  1989. /* Note there is a race condition between the last two lines that
  1990.    I dont know how to get rid of right now... */
  1991. }
  1992. static void disable_interrupts( struct airo_info *ai ) {
  1993. OUT4500( ai, EVINTEN, 0 );
  1994. }
  1995. static u16 setup_card(struct airo_info *ai, u8 *mac)
  1996. {
  1997. Cmd cmd;
  1998. Resp rsp;
  1999. int status;
  2000. int i;
  2001. SsidRid mySsid;
  2002. u16 lastindex;
  2003. WepKeyRid wkr;
  2004. int rc;
  2005. memset( &mySsid, 0, sizeof( mySsid ) );
  2006. if (ai->flash) {
  2007. kfree (ai->flash);
  2008. ai->flash = NULL;
  2009. }
  2010. /* The NOP is the first step in getting the card going */
  2011. cmd.cmd = NOP;
  2012. cmd.parm0 = cmd.parm1 = cmd.parm2 = 0;
  2013. if (down_interruptible(&ai->sem))
  2014. return ERROR;
  2015. if ( issuecommand( ai, &cmd, &rsp ) != SUCCESS ) {
  2016. up(&ai->sem);
  2017. return ERROR;
  2018. }
  2019. memset(&cmd, 0, sizeof(cmd));
  2020. cmd.cmd = MAC_DISABLE; // disable in case already enabled
  2021. if ( issuecommand( ai, &cmd, &rsp ) != SUCCESS ) {
  2022. up(&ai->sem);
  2023. return ERROR;
  2024. }
  2025. // Let's figure out if we need to use the AUX port
  2026. cmd.cmd = CMD_ENABLEAUX;
  2027. if (issuecommand(ai, &cmd, &rsp) != SUCCESS) {
  2028. up(&ai->sem);
  2029. printk(KERN_ERR "airo: Error checking for AUX portn");
  2030. return ERROR;
  2031. }
  2032. if (!aux_bap || rsp.status & 0xff00) {
  2033. ai->bap_read = fast_bap_read;
  2034. printk(KERN_DEBUG "airo: Doing fast bap_readsn");
  2035. } else {
  2036. ai->bap_read = aux_bap_read;
  2037. printk(KERN_DEBUG "airo: Doing AUX bap_readsn");
  2038. }
  2039. up(&ai->sem);
  2040. if (ai->config.len == 0) {
  2041. tdsRssiRid rssi_rid;
  2042. CapabilityRid cap_rid;
  2043. // general configuration (read/modify/write)
  2044. status = readConfigRid(ai);
  2045. if ( status != SUCCESS ) return ERROR;
  2046. status = readCapabilityRid(ai, &cap_rid);
  2047. if ( status != SUCCESS ) return ERROR;
  2048. status = PC4500_readrid(ai,RID_RSSI,&rssi_rid,sizeof(rssi_rid));
  2049. if ( status == SUCCESS ) {
  2050. if (ai->rssi || (ai->rssi = kmalloc(512, GFP_KERNEL)) != NULL)
  2051. memcpy(ai->rssi, (u8*)&rssi_rid + 2, 512);
  2052. }
  2053. else {
  2054. if (ai->rssi) {
  2055. kfree(ai->rssi);
  2056. ai->rssi = NULL;
  2057. }
  2058. if (cap_rid.softCap & 8)
  2059. ai->config.rmode |= RXMODE_NORMALIZED_RSSI;
  2060. else
  2061. printk(KERN_WARNING "airo: unknown received signal level scalen");
  2062. }
  2063. ai->config.opmode = adhoc ? MODE_STA_IBSS : MODE_STA_ESS;
  2064. #ifdef MICSUPPORT
  2065. if ((cap_rid.len==sizeof(cap_rid)) && (cap_rid.extSoftCap&1)) {
  2066. ai->config.opmode |= MODE_MIC;
  2067. ai->flags |= FLAG_MIC_CAPABLE;
  2068. micsetup(ai);
  2069. }
  2070. #endif
  2071. /* Save off the MAC */
  2072. for( i = 0; i < ETH_ALEN; i++ ) {
  2073. mac[i] = ai->config.macAddr[i];
  2074. }
  2075. /* Check to see if there are any insmod configured
  2076.    rates to add */
  2077. if ( rates ) {
  2078. int i = 0;
  2079. if ( rates[0] ) memset(ai->config.rates,0,sizeof(ai->config.rates));
  2080. for( i = 0; i < 8 && rates[i]; i++ ) {
  2081. ai->config.rates[i] = rates[i];
  2082. }
  2083. }
  2084. if ( basic_rate > 0 ) {
  2085. int i;
  2086. for( i = 0; i < 8; i++ ) {
  2087. if ( ai->config.rates[i] == basic_rate ||
  2088.      !ai->config.rates ) {
  2089. ai->config.rates[i] = basic_rate | 0x80;
  2090. break;
  2091. }
  2092. }
  2093. }
  2094. ai->need_commit = 1;
  2095. }
  2096. /* Setup the SSIDs if present */
  2097. if ( ssids[0] ) {
  2098. int i;
  2099. for( i = 0; i < 3 && ssids[i]; i++ ) {
  2100. mySsid.ssids[i].len = strlen(ssids[i]);
  2101. if ( mySsid.ssids[i].len > 32 )
  2102. mySsid.ssids[i].len = 32;
  2103. memcpy(mySsid.ssids[i].ssid, ssids[i],
  2104.        mySsid.ssids[i].len);
  2105. }
  2106. }
  2107. status = writeConfigRid(ai);
  2108. if ( status != SUCCESS ) return ERROR;
  2109. /* Set up the SSID list */
  2110. status = writeSsidRid(ai, &mySsid);
  2111. if ( status != SUCCESS ) return ERROR;
  2112. status = enable_MAC(ai, &rsp);
  2113. if ( status != SUCCESS || (rsp.status & 0xFF00) != 0) {
  2114. printk( KERN_ERR "airo: Bad MAC enable reason = %x, rid = %x, offset = %dn", rsp.rsp0, rsp.rsp1, rsp.rsp2 );
  2115. return ERROR;
  2116. }
  2117. /* Grab the initial wep key, we gotta save it for auto_wep */
  2118. rc = readWepKeyRid(ai, &wkr, 1);
  2119. if (rc == SUCCESS) do {
  2120. lastindex = wkr.kindex;
  2121. if (wkr.kindex == 0xffff) {
  2122. ai->defindex = wkr.mac[0];
  2123. }
  2124. rc = readWepKeyRid(ai, &wkr, 0);
  2125. } while(lastindex != wkr.kindex);
  2126. if (auto_wep && !timer_pending(&ai->timer)) {
  2127. ai->timer.expires = RUN_AT(HZ*3);
  2128. add_timer(&ai->timer);
  2129. }
  2130. return SUCCESS;
  2131. }
  2132. static u16 issuecommand(struct airo_info *ai, Cmd *pCmd, Resp *pRsp) {
  2133.         // Im really paranoid about letting it run forever!
  2134. int max_tries = 600000;
  2135. if (sendcommand(ai, pCmd) == (u16)ERROR)
  2136. return ERROR;
  2137. while (max_tries-- && (IN4500(ai, EVSTAT) & EV_CMD) == 0) {
  2138. if (!in_interrupt() && (max_tries & 255) == 0)
  2139. schedule();
  2140. }
  2141. if ( max_tries == -1 ) {
  2142. printk( KERN_ERR
  2143. "airo: Max tries exceeded waiting for commandn" );
  2144.                 return ERROR;
  2145. }
  2146. completecommand(ai, pRsp);
  2147. return SUCCESS;
  2148. }
  2149. static u16 sendcommand(struct airo_info *ai, Cmd *pCmd) {
  2150.         // Im really paranoid about letting it run forever!
  2151. int max_tries = 600000;
  2152. u16 cmd;
  2153. OUT4500(ai, PARAM0, pCmd->parm0);
  2154. OUT4500(ai, PARAM1, pCmd->parm1);
  2155. OUT4500(ai, PARAM2, pCmd->parm2);
  2156. OUT4500(ai, COMMAND, pCmd->cmd);
  2157. while ( max_tries-- && (IN4500(ai, EVSTAT) & EV_CMD) == 0 &&
  2158. (cmd = IN4500(ai, COMMAND)) != 0 )
  2159. if (cmd == pCmd->cmd)
  2160. // PC4500 didn't notice command, try again
  2161. OUT4500(ai, COMMAND, pCmd->cmd);
  2162. if ( max_tries == -1 ) {
  2163. printk( KERN_ERR
  2164. "airo: Max tries exceeded when issueing commandn" );
  2165.                 return ERROR;
  2166. }
  2167. return SUCCESS;
  2168. }
  2169. static void completecommand(struct airo_info *ai, Resp *pRsp) {
  2170. // command completed
  2171. pRsp->status = IN4500(ai, STATUS);
  2172. pRsp->rsp0 = IN4500(ai, RESP0);
  2173. pRsp->rsp1 = IN4500(ai, RESP1);
  2174. pRsp->rsp2 = IN4500(ai, RESP2);
  2175. // clear stuck command busy if necessary
  2176. if (IN4500(ai, COMMAND) & COMMAND_BUSY) {
  2177. OUT4500(ai, EVACK, EV_CLEARCOMMANDBUSY);
  2178. }
  2179. // acknowledge processing the status/response
  2180. OUT4500(ai, EVACK, EV_CMD);
  2181. }
  2182. /* Sets up the bap to start exchange data.  whichbap should
  2183.  * be one of the BAP0 or BAP1 defines.  Locks should be held before
  2184.  * calling! */
  2185. static int bap_setup(struct airo_info *ai, u16 rid, u16 offset, int whichbap )
  2186. {
  2187. int timeout = 50;
  2188. int max_tries = 3;
  2189. OUT4500(ai, SELECT0+whichbap, rid);
  2190. OUT4500(ai, OFFSET0+whichbap, offset);
  2191. while (1) {
  2192. int status = IN4500(ai, OFFSET0+whichbap);
  2193. if (status & BAP_BUSY) {
  2194.                         /* This isn't really a timeout, but its kinda
  2195.    close */
  2196. if (timeout--) {
  2197. continue;
  2198. }
  2199. } else if ( status & BAP_ERR ) {
  2200. /* invalid rid or offset */
  2201. printk( KERN_ERR "airo: BAP error %x %dn",
  2202. status, whichbap );
  2203. return ERROR;
  2204. } else if (status & BAP_DONE) { // success
  2205. return SUCCESS;
  2206. }
  2207. if ( !(max_tries--) ) {
  2208. printk( KERN_ERR
  2209. "airo: BAP setup error too many retriesn" );
  2210. return ERROR;
  2211. }
  2212. // -- PC4500 missed it, try again
  2213. OUT4500(ai, SELECT0+whichbap, rid);
  2214. OUT4500(ai, OFFSET0+whichbap, offset);
  2215. timeout = 50;
  2216. }
  2217. }
  2218. /* should only be called by aux_bap_read.  This aux function and the
  2219.    following use concepts not documented in the developers guide.  I
  2220.    got them from a patch given to my by Aironet */
  2221. static u16 aux_setup(struct airo_info *ai, u16 page,
  2222.      u16 offset, u16 *len)
  2223. {
  2224. u16 next;
  2225. OUT4500(ai, AUXPAGE, page);
  2226. OUT4500(ai, AUXOFF, 0);
  2227. next = IN4500(ai, AUXDATA);
  2228. *len = IN4500(ai, AUXDATA)&0xff;
  2229. if (offset != 4) OUT4500(ai, AUXOFF, offset);
  2230. return next;
  2231. }
  2232. /* requires call to bap_setup() first */
  2233. static int aux_bap_read(struct airo_info *ai, u16 *pu16Dst,
  2234. int bytelen, int whichbap)
  2235. {
  2236. u16 len;
  2237. u16 page;
  2238. u16 offset;
  2239. u16 next;
  2240. int words;
  2241. int i;
  2242. long flags;
  2243. spin_lock_irqsave(&ai->aux_lock, flags);
  2244. page = IN4500(ai, SWS0+whichbap);
  2245. offset = IN4500(ai, SWS2+whichbap);
  2246. next = aux_setup(ai, page, offset, &len);
  2247. words = (bytelen+1)>>1;
  2248. for (i=0; i<words;) {
  2249. int count;
  2250. count = (len>>1) < (words-i) ? (len>>1) : (words-i);
  2251. if ( !do8bitIO )
  2252. insw( ai->dev->base_addr+DATA0+whichbap,
  2253.       pu16Dst+i,count );
  2254. else
  2255. insb( ai->dev->base_addr+DATA0+whichbap,
  2256.       pu16Dst+i, count << 1 );
  2257. i += count;
  2258. if (i<words) {
  2259. next = aux_setup(ai, next, 4, &len);
  2260. }
  2261. }
  2262. spin_unlock_irqrestore(&ai->aux_lock, flags);
  2263. return SUCCESS;
  2264. }
  2265. /* requires call to bap_setup() first */
  2266. static int fast_bap_read(struct airo_info *ai, u16 *pu16Dst,
  2267.  int bytelen, int whichbap)
  2268. {
  2269. bytelen = (bytelen + 1) & (~1); // round up to even value
  2270. if ( !do8bitIO )
  2271. insw( ai->dev->base_addr+DATA0+whichbap, pu16Dst, bytelen>>1 );
  2272. else
  2273. insb( ai->dev->base_addr+DATA0+whichbap, pu16Dst, bytelen );
  2274. return SUCCESS;
  2275. }
  2276. /* requires call to bap_setup() first */
  2277. static int bap_write(struct airo_info *ai, const u16 *pu16Src,
  2278.      int bytelen, int whichbap)
  2279. {
  2280. bytelen = (bytelen + 1) & (~1); // round up to even value
  2281. if ( !do8bitIO )
  2282. outsw( ai->dev->base_addr+DATA0+whichbap,
  2283.        pu16Src, bytelen>>1 );
  2284. else
  2285. outsb( ai->dev->base_addr+DATA0+whichbap, pu16Src, bytelen );
  2286. return SUCCESS;
  2287. }
  2288. static int PC4500_accessrid(struct airo_info *ai, u16 rid, u16 accmd)
  2289. {
  2290. Cmd cmd; /* for issuing commands */
  2291. Resp rsp; /* response from commands */
  2292. u16 status;
  2293. memset(&cmd, 0, sizeof(cmd));
  2294. cmd.cmd = accmd;
  2295. cmd.parm0 = rid;
  2296. status = issuecommand(ai, &cmd, &rsp);
  2297. if (status != 0) return status;
  2298. if ( (rsp.status & 0x7F00) != 0) {
  2299. return (accmd << 8) + (rsp.rsp0 & 0xFF);
  2300. }
  2301. return 0;
  2302. }
  2303. /*  Note, that we are using BAP1 which is also used by transmit, so
  2304.  *  we must get a lock. */
  2305. static int PC4500_readrid(struct airo_info *ai, u16 rid, void *pBuf, int len)
  2306. {
  2307. u16 status, dolock = 0;
  2308.         int rc = SUCCESS;
  2309. if (test_bit(FLAG_LOCKED, &ai->flags) == 0) {
  2310. dolock = 1;
  2311. if (down_interruptible(&ai->sem))
  2312. return ERROR;
  2313. }
  2314. if ( (status = PC4500_accessrid(ai, rid, CMD_ACCESS)) != SUCCESS) {
  2315.                 rc = status;
  2316.                 goto done;
  2317.         }
  2318. if (bap_setup(ai, rid, 0, BAP1) != SUCCESS) {
  2319. rc = ERROR;
  2320.                 goto done;
  2321.         }
  2322. // read the rid length field
  2323. bap_read(ai, pBuf, 2, BAP1);
  2324. // length for remaining part of rid
  2325. len = min(len, (int)le16_to_cpu(*(u16*)pBuf)) - 2;
  2326. if ( len <= 2 ) {
  2327. printk( KERN_ERR
  2328. "airo: Rid %x has a length of %d which is too shortn",
  2329. (int)rid,
  2330. (int)len );
  2331. rc = ERROR;
  2332.                 goto done;
  2333. }
  2334. // read remainder of the rid
  2335. rc = bap_read(ai, ((u16*)pBuf)+1, len, BAP1);
  2336. done:
  2337. if (dolock)
  2338. up(&ai->sem);
  2339. return rc;
  2340. }
  2341. /*  Note, that we are using BAP1 which is also used by transmit, so
  2342.  *  make sure this isnt called when a transmit is happening */
  2343. static int PC4500_writerid(struct airo_info *ai, u16 rid,
  2344.    const void *pBuf, int len)
  2345. {
  2346. u16 status, dolock = 0;
  2347. int rc = SUCCESS;
  2348. if (test_bit(FLAG_LOCKED, &ai->flags) == 0) {
  2349. dolock = 1;
  2350. if (down_interruptible(&ai->sem))
  2351. return ERROR;
  2352. }
  2353. // --- first access so that we can write the rid data
  2354. if ( (status = PC4500_accessrid(ai, rid, CMD_ACCESS)) != 0) {
  2355.                 rc = status;
  2356.                 goto done;
  2357.         }
  2358. // --- now write the rid data
  2359. if (bap_setup(ai, rid, 0, BAP1) != SUCCESS) {
  2360.                 rc = ERROR;
  2361.                 goto done;
  2362.         }
  2363. bap_write(ai, pBuf, len, BAP1);
  2364. // ---now commit the rid data
  2365. rc = PC4500_accessrid(ai, rid, 0x100|CMD_ACCESS);
  2366.  done:
  2367. if (dolock)
  2368. up(&ai->sem);
  2369.         return rc;
  2370. }
  2371. /* Allocates a FID to be used for transmitting packets.  We only use
  2372.    one for now. */
  2373. static u16 transmit_allocate(struct airo_info *ai, int lenPayload, int raw)
  2374. {
  2375. Cmd cmd;
  2376. Resp rsp;
  2377. u16 txFid;
  2378. u16 txControl;
  2379. cmd.cmd = CMD_ALLOCATETX;
  2380. cmd.parm0 = lenPayload;
  2381. if (down_interruptible(&ai->sem))
  2382. return ERROR;
  2383. if (issuecommand(ai, &cmd, &rsp) != SUCCESS) {
  2384. txFid = 0;
  2385. goto done;
  2386. }
  2387. if ( (rsp.status & 0xFF00) != 0) {
  2388. txFid = 0;
  2389. goto done;
  2390. }
  2391. /* wait for the allocate event/indication
  2392.  * It makes me kind of nervous that this can just sit here and spin,
  2393.  * but in practice it only loops like four times. */
  2394. while ( (IN4500(ai, EVSTAT) & EV_ALLOC) == 0) ;
  2395. // get the allocated fid and acknowledge
  2396. txFid = IN4500(ai, TXALLOCFID);
  2397. OUT4500(ai, EVACK, EV_ALLOC);
  2398. /*  The CARD is pretty cool since it converts the ethernet packet
  2399.  *  into 802.11.  Also note that we don't release the FID since we
  2400.  *  will be using the same one over and over again. */
  2401. /*  We only have to setup the control once since we are not
  2402.  *  releasing the fid. */
  2403. if (raw)
  2404. txControl = cpu_to_le16(TXCTL_TXOK | TXCTL_TXEX | TXCTL_802_11
  2405. | TXCTL_ETHERNET | TXCTL_NORELEASE);
  2406. else
  2407. txControl = cpu_to_le16(TXCTL_TXOK | TXCTL_TXEX | TXCTL_802_3
  2408. | TXCTL_ETHERNET | TXCTL_NORELEASE);
  2409. if (bap_setup(ai, txFid, 0x0008, BAP1) != SUCCESS)
  2410. txFid = ERROR;
  2411. else
  2412. bap_write(ai, &txControl, sizeof(txControl), BAP1);
  2413. done:
  2414. up(&ai->sem);
  2415. return txFid;
  2416. }
  2417. /* In general BAP1 is dedicated to transmiting packets.  However,
  2418.    since we need a BAP when accessing RIDs, we also use BAP1 for that.
  2419.    Make sure the BAP1 spinlock is held when this is called. */
  2420. static int transmit_802_3_packet(struct airo_info *ai, int len, char *pPacket)
  2421. {
  2422. u16 payloadLen;
  2423. Cmd cmd;
  2424. Resp rsp;
  2425. int miclen = 0;
  2426. u16 txFid = len;
  2427. MICBuffer pMic;
  2428. len >>= 16;
  2429. if (len < ETH_ALEN * 2) {
  2430. printk( KERN_WARNING "Short packet %dn", len );
  2431. return ERROR;
  2432. }
  2433. len -= ETH_ALEN * 2;
  2434. #ifdef MICSUPPORT
  2435. if ((ai->flags & FLAG_MIC_CAPABLE) && ai->micstats.enabled && 
  2436.     (ntohs(((u16 *)pPacket)[6]) != 0x888E)) {
  2437. if (encapsulate(ai,(etherHead *)pPacket,&pMic,len) != SUCCESS)
  2438. return ERROR;
  2439. miclen = sizeof(pMic);
  2440. }
  2441. #endif
  2442. // packet is destination[6], source[6], payload[len-12]
  2443. // write the payload length and dst/src/payload
  2444. if (bap_setup(ai, txFid, 0x0036, BAP1) != SUCCESS) return ERROR;
  2445. /* The hardware addresses aren't counted as part of the payload, so
  2446.  * we have to subtract the 12 bytes for the addresses off */
  2447. payloadLen = cpu_to_le16(len + miclen);
  2448. bap_write(ai, &payloadLen, sizeof(payloadLen),BAP1);
  2449. bap_write(ai, (const u16*)pPacket, sizeof(etherHead), BAP1);
  2450. if (miclen)
  2451. bap_write(ai, (const u16*)&pMic, miclen, BAP1);
  2452. bap_write(ai, (const u16*)(pPacket + sizeof(etherHead)), len, BAP1);
  2453. // issue the transmit command
  2454. memset( &cmd, 0, sizeof( cmd ) );
  2455. cmd.cmd = CMD_TRANSMIT;
  2456. cmd.parm0 = txFid;
  2457. if (issuecommand(ai, &cmd, &rsp) != SUCCESS) return ERROR;
  2458. if ( (rsp.status & 0xFF00) != 0) return ERROR;
  2459. return SUCCESS;
  2460. }
  2461. static int transmit_802_11_packet(struct airo_info *ai, int len, char *pPacket)
  2462. {
  2463. u16 fc, payloadLen;
  2464. Cmd cmd;
  2465. Resp rsp;
  2466. int hdrlen;
  2467. struct {
  2468. u8 addr4[ETH_ALEN];
  2469. u16 gaplen;
  2470. u8 gap[6];
  2471. } gap;
  2472. u16 txFid = len;
  2473. len >>= 16;
  2474. gap.gaplen = 6;
  2475. fc = le16_to_cpu(*(const u16*)pPacket);
  2476. switch (fc & 0xc) {
  2477. case 4:
  2478. if ((fc & 0xe0) == 0xc0)
  2479. hdrlen = 10;
  2480. else
  2481. hdrlen = 16;
  2482. break;
  2483. case 8:
  2484. if ((fc&0x300)==0x300){
  2485. hdrlen = 30;
  2486. break;
  2487. }
  2488. default:
  2489. hdrlen = 24;
  2490. }
  2491. if (len < hdrlen) {
  2492. printk( KERN_WARNING "Short packet %dn", len );
  2493. return ERROR;
  2494. }
  2495. /* packet is 802.11 header +  payload
  2496.  * write the payload length and dst/src/payload */
  2497. if (bap_setup(ai, txFid, 6, BAP1) != SUCCESS) return ERROR;
  2498. /* The 802.11 header aren't counted as part of the payload, so
  2499.  * we have to subtract the header bytes off */
  2500. payloadLen = cpu_to_le16(len-hdrlen);
  2501. bap_write(ai, &payloadLen, sizeof(payloadLen),BAP1);
  2502. if (bap_setup(ai, txFid, 0x0014, BAP1) != SUCCESS) return ERROR;
  2503. bap_write(ai, (const u16*)pPacket, hdrlen, BAP1);
  2504. bap_write(ai, hdrlen == 30 ?
  2505. (const u16*)&gap.gaplen : (const u16*)&gap, 38 - hdrlen, BAP1);
  2506. bap_write(ai, (const u16*)(pPacket + hdrlen), len - hdrlen, BAP1);
  2507. // issue the transmit command
  2508. memset( &cmd, 0, sizeof( cmd ) );
  2509. cmd.cmd = CMD_TRANSMIT;
  2510. cmd.parm0 = txFid;
  2511. if (issuecommand(ai, &cmd, &rsp) != SUCCESS) return ERROR;
  2512. if ( (rsp.status & 0xFF00) != 0) return ERROR;
  2513. return SUCCESS;
  2514. }
  2515. /*
  2516.  *  This is the proc_fs routines.  It is a bit messier than I would
  2517.  *  like!  Feel free to clean it up!
  2518.  */
  2519. static ssize_t proc_read( struct file *file,
  2520.   char *buffer,
  2521.   size_t len,
  2522.   loff_t *offset);
  2523. static ssize_t proc_write( struct file *file,
  2524.    const char *buffer,
  2525.    size_t len,
  2526.    loff_t *offset );
  2527. static int proc_close( struct inode *inode, struct file *file );
  2528. static int proc_stats_open( struct inode *inode, struct file *file );
  2529. static int proc_statsdelta_open( struct inode *inode, struct file *file );
  2530. static int proc_status_open( struct inode *inode, struct file *file );
  2531. static int proc_SSID_open( struct inode *inode, struct file *file );
  2532. static int proc_APList_open( struct inode *inode, struct file *file );
  2533. static int proc_BSSList_open( struct inode *inode, struct file *file );
  2534. static int proc_config_open( struct inode *inode, struct file *file );
  2535. static int proc_wepkey_open( struct inode *inode, struct file *file );
  2536. static struct file_operations proc_statsdelta_ops = {
  2537. read:           proc_read,
  2538. open:           proc_statsdelta_open,
  2539. release:        proc_close
  2540. };
  2541. static struct file_operations proc_stats_ops = {
  2542. read:           proc_read,
  2543. open:           proc_stats_open,
  2544. release:        proc_close
  2545. };
  2546. static struct file_operations proc_status_ops = {
  2547. read:            proc_read,
  2548. open:            proc_status_open,
  2549. release:         proc_close
  2550. };
  2551. static struct file_operations proc_SSID_ops = {
  2552. read:          proc_read,
  2553. write:         proc_write,
  2554. open:          proc_SSID_open,
  2555. release:       proc_close
  2556. };
  2557. static struct file_operations proc_BSSList_ops = {
  2558. read:          proc_read,
  2559. write:         proc_write,
  2560. open:          proc_BSSList_open,
  2561. release:       proc_close
  2562. };
  2563. static struct file_operations proc_APList_ops = {
  2564. read:          proc_read,
  2565. write:         proc_write,
  2566. open:          proc_APList_open,
  2567. release:       proc_close
  2568. };
  2569. static struct file_operations proc_config_ops = {
  2570. read:          proc_read,
  2571. write:         proc_write,
  2572. open:          proc_config_open,
  2573. release:       proc_close
  2574. };
  2575. static struct file_operations proc_wepkey_ops = {
  2576. read:          proc_read,
  2577. write:         proc_write,
  2578. open:          proc_wepkey_open,
  2579. release:       proc_close
  2580. };
  2581. static struct proc_dir_entry *airo_entry = 0;
  2582. struct proc_data {
  2583. int release_buffer;
  2584. int readlen;
  2585. char *rbuffer;
  2586. int writelen;
  2587. int maxwritelen;
  2588. char *wbuffer;
  2589. void (*on_close) (struct inode *, struct file *);
  2590. };
  2591. #ifndef SETPROC_OPS
  2592. #define SETPROC_OPS(entry, ops) (entry)->proc_fops = &(ops)
  2593. #endif
  2594. static int setup_proc_entry( struct net_device *dev,
  2595.      struct airo_info *apriv ) {
  2596. struct proc_dir_entry *entry;
  2597. /* First setup the device directory */
  2598. apriv->proc_entry = create_proc_entry(dev->name,
  2599.       S_IFDIR|airo_perm,
  2600.       airo_entry);
  2601.         apriv->proc_entry->uid = proc_uid;
  2602.         apriv->proc_entry->gid = proc_gid;
  2603. /* Setup the StatsDelta */
  2604. entry = create_proc_entry("StatsDelta",
  2605.   S_IFREG | (S_IRUGO&proc_perm),
  2606.   apriv->proc_entry);
  2607.         entry->uid = proc_uid;
  2608.         entry->gid = proc_gid;
  2609. entry->data = dev;
  2610. SETPROC_OPS(entry, proc_statsdelta_ops);
  2611. /* Setup the Stats */
  2612. entry = create_proc_entry("Stats",
  2613.   S_IFREG | (S_IRUGO&proc_perm),
  2614.   apriv->proc_entry);
  2615.         entry->uid = proc_uid;
  2616.         entry->gid = proc_gid;
  2617. entry->data = dev;
  2618. SETPROC_OPS(entry, proc_stats_ops);
  2619. /* Setup the Status */
  2620. entry = create_proc_entry("Status",
  2621.   S_IFREG | (S_IRUGO&proc_perm),
  2622.   apriv->proc_entry);
  2623.         entry->uid = proc_uid;
  2624.         entry->gid = proc_gid;
  2625. entry->data = dev;
  2626. SETPROC_OPS(entry, proc_status_ops);
  2627. /* Setup the Config */
  2628. entry = create_proc_entry("Config",
  2629.   S_IFREG | proc_perm,
  2630.   apriv->proc_entry);
  2631.         entry->uid = proc_uid;
  2632.         entry->gid = proc_gid;
  2633. entry->data = dev;
  2634. SETPROC_OPS(entry, proc_config_ops);
  2635. /* Setup the SSID */
  2636. entry = create_proc_entry("SSID",
  2637.   S_IFREG | proc_perm,
  2638.   apriv->proc_entry);
  2639.         entry->uid = proc_uid;
  2640.         entry->gid = proc_gid;
  2641. entry->data = dev;
  2642. SETPROC_OPS(entry, proc_SSID_ops);
  2643. /* Setup the APList */
  2644. entry = create_proc_entry("APList",
  2645.   S_IFREG | proc_perm,
  2646.   apriv->proc_entry);
  2647.         entry->uid = proc_uid;
  2648.         entry->gid = proc_gid;
  2649. entry->data = dev;
  2650. SETPROC_OPS(entry, proc_APList_ops);
  2651. /* Setup the BSSList */
  2652. entry = create_proc_entry("BSSList",
  2653.   S_IFREG | proc_perm,
  2654.   apriv->proc_entry);
  2655. entry->uid = proc_uid;
  2656. entry->gid = proc_gid;
  2657. entry->data = dev;
  2658. SETPROC_OPS(entry, proc_BSSList_ops);
  2659. /* Setup the WepKey */
  2660. entry = create_proc_entry("WepKey",
  2661.   S_IFREG | proc_perm,
  2662.   apriv->proc_entry);
  2663.         entry->uid = proc_uid;
  2664.         entry->gid = proc_gid;
  2665. entry->data = dev;
  2666. SETPROC_OPS(entry, proc_wepkey_ops);
  2667. return 0;
  2668. }
  2669. static int takedown_proc_entry( struct net_device *dev,
  2670. struct airo_info *apriv ) {
  2671. if ( !apriv->proc_entry->namelen ) return 0;
  2672. remove_proc_entry("Stats",apriv->proc_entry);
  2673. remove_proc_entry("StatsDelta",apriv->proc_entry);
  2674. remove_proc_entry("Status",apriv->proc_entry);
  2675. remove_proc_entry("Config",apriv->proc_entry);
  2676. remove_proc_entry("SSID",apriv->proc_entry);
  2677. remove_proc_entry("APList",apriv->proc_entry);
  2678. remove_proc_entry("BSSList",apriv->proc_entry);
  2679. remove_proc_entry("WepKey",apriv->proc_entry);
  2680. remove_proc_entry(dev->name,airo_entry);
  2681. return 0;
  2682. }
  2683. /*
  2684.  *  What we want from the proc_fs is to be able to efficiently read
  2685.  *  and write the configuration.  To do this, we want to read the
  2686.  *  configuration when the file is opened and write it when the file is
  2687.  *  closed.  So basically we allocate a read buffer at open and fill it
  2688.  *  with data, and allocate a write buffer and read it at close.
  2689.  */
  2690. /*
  2691.  *  The read routine is generic, it relies on the preallocated rbuffer
  2692.  *  to supply the data.
  2693.  */
  2694. static ssize_t proc_read( struct file *file,
  2695.   char *buffer,
  2696.   size_t len,
  2697.   loff_t *offset )
  2698. {
  2699. int i;
  2700. int pos;
  2701. struct proc_data *priv = (struct proc_data*)file->private_data;
  2702. if( !priv->rbuffer ) return -EINVAL;
  2703. pos = *offset;
  2704. for( i = 0; i+pos < priv->readlen && i < len; i++ ) {
  2705. if (put_user( priv->rbuffer[i+pos], buffer+i ))
  2706. return -EFAULT;
  2707. }
  2708. *offset += i;
  2709. return i;
  2710. }
  2711. /*
  2712.  *  The write routine is generic, it fills in a preallocated rbuffer
  2713.  *  to supply the data.
  2714.  */
  2715. static ssize_t proc_write( struct file *file,
  2716.    const char *buffer,
  2717.    size_t len,
  2718.    loff_t *offset )
  2719. {
  2720. int i;
  2721. int pos;
  2722. struct proc_data *priv = (struct proc_data*)file->private_data;
  2723. if ( !priv->wbuffer ) {
  2724. return -EINVAL;
  2725. }
  2726. pos = *offset;
  2727. for( i = 0; i + pos <  priv->maxwritelen &&
  2728.      i < len; i++ ) {
  2729. if (get_user( priv->wbuffer[i+pos], buffer + i ))
  2730. return -EFAULT;
  2731. }
  2732. if ( i+pos > priv->writelen ) priv->writelen = i+file->f_pos;
  2733. *offset += i;
  2734. return i;
  2735. }
  2736. static int proc_status_open( struct inode *inode, struct file *file ) {
  2737. struct proc_data *data;
  2738. struct proc_dir_entry *dp = PDE(inode);
  2739. struct net_device *dev = dp->data;
  2740. struct airo_info *apriv = dev->priv;
  2741. CapabilityRid cap_rid;
  2742. StatusRid status_rid;
  2743. int i;
  2744. MOD_INC_USE_COUNT;
  2745. if ((file->private_data = kmalloc(sizeof(struct proc_data ), GFP_KERNEL)) == NULL)
  2746. return -ENOMEM;
  2747. memset(file->private_data, 0, sizeof(struct proc_data));
  2748. data = (struct proc_data *)file->private_data;
  2749. if ((data->rbuffer = kmalloc( 2048, GFP_KERNEL )) == NULL) {
  2750. kfree (file->private_data);
  2751. return -ENOMEM;
  2752. }
  2753. readStatusRid(apriv, &status_rid);
  2754. readCapabilityRid(apriv, &cap_rid);
  2755.         i = sprintf(data->rbuffer, "Status: %s%s%s%s%s%s%s%s%sn",
  2756.                     status_rid.mode & 1 ? "CFG ": "",
  2757.                     status_rid.mode & 2 ? "ACT ": "",
  2758.                     status_rid.mode & 0x10 ? "SYN ": "",
  2759.                     status_rid.mode & 0x20 ? "LNK ": "",
  2760.                     status_rid.mode & 0x40 ? "LEAP ": "",
  2761.                     status_rid.mode & 0x80 ? "PRIV ": "",
  2762.                     status_rid.mode & 0x100 ? "KEY ": "",
  2763.                     status_rid.mode & 0x200 ? "WEP ": "",
  2764.                     status_rid.mode & 0x8000 ? "ERR ": "");
  2765. sprintf( data->rbuffer+i, "Mode: %xn"
  2766.  "Signal Strength: %dn"
  2767.  "Signal Quality: %dn"
  2768.  "SSID: %-.*sn"
  2769.  "AP: %-.16sn"
  2770.  "Freq: %dn"
  2771.  "BitRate: %dmbsn"
  2772.  "Driver Version: %sn"
  2773.  "Device: %snManufacturer: %snFirmware Version: %sn"
  2774.  "Radio type: %xnCountry: %xnHardware Version: %xn"
  2775.  "Software Version: %xnSoftware Subversion: %xn"
  2776.  "Boot block version: %xn",
  2777.  (int)status_rid.mode,
  2778.  (int)status_rid.normalizedSignalStrength,
  2779.  (int)status_rid.signalQuality,
  2780.  (int)status_rid.SSIDlen,
  2781.  status_rid.SSID,
  2782.  status_rid.apName,
  2783.  (int)status_rid.channel,
  2784.  (int)status_rid.currentXmitRate/2,
  2785.  version,
  2786.  cap_rid.prodName,
  2787.  cap_rid.manName,
  2788.  cap_rid.prodVer,
  2789.  cap_rid.radioType,
  2790.  cap_rid.country,
  2791.  cap_rid.hardVer,
  2792.  (int)cap_rid.softVer,
  2793.  (int)cap_rid.softSubVer,
  2794.  (int)cap_rid.bootBlockVer );
  2795. data->readlen = strlen( data->rbuffer );
  2796. return 0;
  2797. }
  2798. static int proc_stats_rid_open(struct inode*, struct file*, u16);
  2799. static int proc_statsdelta_open( struct inode *inode,
  2800.  struct file *file ) {
  2801. if (file->f_mode&FMODE_WRITE) {
  2802. return proc_stats_rid_open(inode, file, RID_STATSDELTACLEAR);
  2803. }
  2804. return proc_stats_rid_open(inode, file, RID_STATSDELTA);
  2805. }
  2806. static int proc_stats_open( struct inode *inode, struct file *file ) {
  2807. return proc_stats_rid_open(inode, file, RID_STATS);
  2808. }
  2809. static int proc_stats_rid_open( struct inode *inode,
  2810. struct file *file,
  2811. u16 rid ) {
  2812. struct proc_data *data;
  2813. struct proc_dir_entry *dp = PDE(inode);
  2814. struct net_device *dev = dp->data;
  2815. struct airo_info *apriv = dev->priv;
  2816. StatsRid stats;
  2817. int i, j;
  2818. int *vals = stats.vals;
  2819. MOD_INC_USE_COUNT;
  2820. if ((file->private_data = kmalloc(sizeof(struct proc_data ), GFP_KERNEL)) == NULL)
  2821. return -ENOMEM;
  2822. memset(file->private_data, 0, sizeof(struct proc_data));
  2823. data = (struct proc_data *)file->private_data;
  2824. if ((data->rbuffer = kmalloc( 4096, GFP_KERNEL )) == NULL) {
  2825. kfree (file->private_data);
  2826. return -ENOMEM;
  2827. }
  2828. readStatsRid(apriv, &stats, rid);
  2829.         j = 0;