[PATCH] orinoco: basic ethtool support
[linux-2.6] / drivers / net / wireless / orinoco.c
1 /* orinoco.c - (formerly known as dldwd_cs.c and orinoco_cs.c)
2  *
3  * A driver for Hermes or Prism 2 chipset based PCMCIA wireless
4  * adaptors, with Lucent/Agere, Intersil or Symbol firmware.
5  *
6  * Current maintainers (as of 29 September 2003) are:
7  *      Pavel Roskin <proski AT gnu.org>
8  * and  David Gibson <hermes AT gibson.dropbear.id.au>
9  *
10  * (C) Copyright David Gibson, IBM Corporation 2001-2003.
11  * Copyright (C) 2000 David Gibson, Linuxcare Australia.
12  *      With some help from :
13  * Copyright (C) 2001 Jean Tourrilhes, HP Labs
14  * Copyright (C) 2001 Benjamin Herrenschmidt
15  *
16  * Based on dummy_cs.c 1.27 2000/06/12 21:27:25
17  *
18  * Portions based on wvlan_cs.c 1.0.6, Copyright Andreas Neuhaus <andy
19  * AT fasta.fh-dortmund.de>
20  *      http://www.stud.fh-dortmund.de/~andy/wvlan/
21  *
22  * The contents of this file are subject to the Mozilla Public License
23  * Version 1.1 (the "License"); you may not use this file except in
24  * compliance with the License. You may obtain a copy of the License
25  * at http://www.mozilla.org/MPL/
26  *
27  * Software distributed under the License is distributed on an "AS IS"
28  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
29  * the License for the specific language governing rights and
30  * limitations under the License.
31  *
32  * The initial developer of the original code is David A. Hinds
33  * <dahinds AT users.sourceforge.net>.  Portions created by David
34  * A. Hinds are Copyright (C) 1999 David A. Hinds.  All Rights
35  * Reserved.
36  *
37  * Alternatively, the contents of this file may be used under the
38  * terms of the GNU General Public License version 2 (the "GPL"), in
39  * which case the provisions of the GPL are applicable instead of the
40  * above.  If you wish to allow the use of your version of this file
41  * only under the terms of the GPL and not to allow others to use your
42  * version of this file under the MPL, indicate your decision by
43  * deleting the provisions above and replace them with the notice and
44  * other provisions required by the GPL.  If you do not delete the
45  * provisions above, a recipient may use your version of this file
46  * under either the MPL or the GPL.  */
47
48 /*
49  * v0.01 -> v0.02 - 21/3/2001 - Jean II
50  *      o Allow to use regular ethX device name instead of dldwdX
51  *      o Warning on IBSS with ESSID=any for firmware 6.06
52  *      o Put proper range.throughput values (optimistic)
53  *      o IWSPY support (IOCTL and stat gather in Rx path)
54  *      o Allow setting frequency in Ad-Hoc mode
55  *      o Disable WEP setting if !has_wep to work on old firmware
56  *      o Fix txpower range
57  *      o Start adding support for Samsung/Compaq firmware
58  *
59  * v0.02 -> v0.03 - 23/3/2001 - Jean II
60  *      o Start adding Symbol support - need to check all that
61  *      o Fix Prism2/Symbol WEP to accept 128 bits keys
62  *      o Add Symbol WEP (add authentication type)
63  *      o Add Prism2/Symbol rate
64  *      o Add PM timeout (holdover duration)
65  *      o Enable "iwconfig eth0 key off" and friends (toggle flags)
66  *      o Enable "iwconfig eth0 power unicast/all" (toggle flags)
67  *      o Try with an Intel card. It report firmware 1.01, behave like
68  *        an antiquated firmware, however on windows it says 2.00. Yuck !
69  *      o Workaround firmware bug in allocate buffer (Intel 1.01)
70  *      o Finish external renaming to orinoco...
71  *      o Testing with various Wavelan firmwares
72  *
73  * v0.03 -> v0.04 - 30/3/2001 - Jean II
74  *      o Update to Wireless 11 -> add retry limit/lifetime support
75  *      o Tested with a D-Link DWL 650 card, fill in firmware support
76  *      o Warning on Vcc mismatch (D-Link 3.3v card in Lucent 5v only slot)
77  *      o Fixed the Prism2 WEP bugs that I introduced in v0.03 :-(
78  *        It works on D-Link *only* after a tcpdump. Weird...
79  *        And still doesn't work on Intel card. Grrrr...
80  *      o Update the mode after a setport3
81  *      o Add preamble setting for Symbol cards (not yet enabled)
82  *      o Don't complain as much about Symbol cards...
83  *
84  * v0.04 -> v0.04b - 22/4/2001 - David Gibson
85  *      o Removed the 'eth' parameter - always use ethXX as the
86  *        interface name instead of dldwdXX.  The other was racy
87  *        anyway.
88  *      o Clean up RID definitions in hermes.h, other cleanups
89  *
90  * v0.04b -> v0.04c - 24/4/2001 - Jean II
91  *      o Tim Hurley <timster AT seiki.bliztech.com> reported a D-Link card
92  *        with vendor 02 and firmware 0.08. Added in the capabilities...
93  *      o Tested Lucent firmware 7.28, everything works...
94  *
95  * v0.04c -> v0.05 - 3/5/2001 - Benjamin Herrenschmidt
96  *      o Spin-off Pcmcia code. This file is renamed orinoco.c,
97  *        and orinoco_cs.c now contains only the Pcmcia specific stuff
98  *      o Add Airport driver support on top of orinoco.c (see airport.c)
99  *
100  * v0.05 -> v0.05a - 4/5/2001 - Jean II
101  *      o Revert to old Pcmcia code to fix breakage of Ben's changes...
102  *
103  * v0.05a -> v0.05b - 4/5/2001 - Jean II
104  *      o add module parameter 'ignore_cis_vcc' for D-Link @ 5V
105  *      o D-Link firmware doesn't support multicast. We just print a few
106  *        error messages, but otherwise everything works...
107  *      o For David : set/getport3 works fine, just upgrade iwpriv...
108  *
109  * v0.05b -> v0.05c - 5/5/2001 - Benjamin Herrenschmidt
110  *      o Adapt airport.c to latest changes in orinoco.c
111  *      o Remove deferred power enabling code
112  *
113  * v0.05c -> v0.05d - 5/5/2001 - Jean II
114  *      o Workaround to SNAP decapsulate frame from Linksys AP
115  *        original patch from : Dong Liu <dliu AT research.bell-labs.com>
116  *        (note : the memcmp bug was mine - fixed)
117  *      o Remove set_retry stuff, no firmware support it (bloat--).
118  *
119  * v0.05d -> v0.06 - 25/5/2001 - Jean II
120  *              Original patch from "Hong Lin" <alin AT redhat.com>,
121  *              "Ian Kinner" <ikinner AT redhat.com>
122  *              and "David Smith" <dsmith AT redhat.com>
123  *      o Init of priv->tx_rate_ctrl in firmware specific section.
124  *      o Prism2/Symbol rate, upto should be 0xF and not 0x15. Doh !
125  *      o Spectrum card always need cor_reset (for every reset)
126  *      o Fix cor_reset to not lose bit 7 in the register
127  *      o flush_stale_links to remove zombie Pcmcia instances
128  *      o Ack previous hermes event before reset
129  *              Me (with my little hands)
130  *      o Allow orinoco.c to call cor_reset via priv->card_reset_handler
131  *      o Add priv->need_card_reset to toggle this feature
132  *      o Fix various buglets when setting WEP in Symbol firmware
133  *        Now, encryption is fully functional on Symbol cards. Youpi !
134  *
135  * v0.06 -> v0.06b - 25/5/2001 - Jean II
136  *      o IBSS on Symbol use port_mode = 4. Please don't ask...
137  *
138  * v0.06b -> v0.06c - 29/5/2001 - Jean II
139  *      o Show first spy address in /proc/net/wireless for IBSS mode as well
140  *
141  * v0.06c -> v0.06d - 6/7/2001 - David Gibson
142  *      o Change a bunch of KERN_INFO messages to KERN_DEBUG, as per Linus'
143  *        wishes to reduce the number of unnecessary messages.
144  *      o Removed bogus message on CRC error.
145  *      o Merged fixes for v0.08 Prism 2 firmware from William Waghorn
146  *        <willwaghorn AT yahoo.co.uk>
147  *      o Slight cleanup/re-arrangement of firmware detection code.
148  *
149  * v0.06d -> v0.06e - 1/8/2001 - David Gibson
150  *      o Removed some redundant global initializers (orinoco_cs.c).
151  *      o Added some module metadata
152  *
153  * v0.06e -> v0.06f - 14/8/2001 - David Gibson
154  *      o Wording fix to license
155  *      o Added a 'use_alternate_encaps' module parameter for APs which need an
156  *        oui of 00:00:00.  We really need a better way of handling this, but
157  *        the module flag is better than nothing for now.
158  *
159  * v0.06f -> v0.07 - 20/8/2001 - David Gibson
160  *      o Removed BAP error retries from hermes_bap_seek().  For Tx we now
161  *        let the upper layers handle the retry, we retry explicitly in the
162  *        Rx path, but don't make as much noise about it.
163  *      o Firmware detection cleanups.
164  *
165  * v0.07 -> v0.07a - 1/10/3001 - Jean II
166  *      o Add code to read Symbol firmware revision, inspired by latest code
167  *        in Spectrum24 by Lee John Keyser-Allen - Thanks Lee !
168  *      o Thanks to Jared Valentine <hidden AT xmission.com> for "providing" me
169  *        a 3Com card with a recent firmware, fill out Symbol firmware
170  *        capabilities of latest rev (2.20), as well as older Symbol cards.
171  *      o Disable Power Management in newer Symbol firmware, the API 
172  *        has changed (documentation needed).
173  *
174  * v0.07a -> v0.08 - 3/10/2001 - David Gibson
175  *      o Fixed a possible buffer overrun found by the Stanford checker (in
176  *        dldwd_ioctl_setiwencode()).  Can only be called by root anyway, so not
177  *        a big problem.
178  *      o Turned has_big_wep on for Intersil cards.  That's not true for all of
179  *        them but we should at least let the capable ones try.
180  *      o Wait for BUSY to clear at the beginning of hermes_bap_seek().  I
181  *        realized that my assumption that the driver's serialization
182  *        would prevent the BAP being busy on entry was possibly false, because
183  *        things other than seeks may make the BAP busy.
184  *      o Use "alternate" (oui 00:00:00) encapsulation by default.
185  *        Setting use_old_encaps will mimic the old behaviour, but I think we
186  *        will be able to eliminate this.
187  *      o Don't try to make __initdata const (the version string).  This can't
188  *        work because of the way the __initdata sectioning works.
189  *      o Added MODULE_LICENSE tags.
190  *      o Support for PLX (transparent PCMCIA->PCI bridge) cards.
191  *      o Changed to using the new type-fascist min/max.
192  *
193  * v0.08 -> v0.08a - 9/10/2001 - David Gibson
194  *      o Inserted some missing acknowledgements/info into the Changelog.
195  *      o Fixed some bugs in the normalization of signal level reporting.
196  *      o Fixed bad bug in WEP key handling on Intersil and Symbol firmware,
197  *        which led to an instant crash on big-endian machines.
198  *
199  * v0.08a -> v0.08b - 20/11/2001 - David Gibson
200  *      o Lots of cleanup and bugfixes in orinoco_plx.c
201  *      o Cleanup to handling of Tx rate setting.
202  *      o Removed support for old encapsulation method.
203  *      o Removed old "dldwd" names.
204  *      o Split RID constants into a new file hermes_rid.h
205  *      o Renamed RID constants to match linux-wlan-ng and prism2.o
206  *      o Bugfixes in hermes.c
207  *      o Poke the PLX's INTCSR register, so it actually starts
208  *        generating interrupts.  These cards might actually work now.
209  *      o Update to wireless extensions v12 (Jean II)
210  *      o Support for tallies and inquire command (Jean II)
211  *      o Airport updates for newer PPC kernels (BenH)
212  *
213  * v0.08b -> v0.09 - 21/12/2001 - David Gibson
214  *      o Some new PCI IDs for PLX cards.
215  *      o Removed broken attempt to do ALLMULTI reception.  Just use
216  *        promiscuous mode instead
217  *      o Preliminary work for list-AP (Jean II)
218  *      o Airport updates from (BenH)
219  *      o Eliminated racy hw_ready stuff
220  *      o Fixed generation of fake events in irq handler.  This should
221  *        finally kill the EIO problems (Jean II & dgibson)
222  *      o Fixed breakage of bitrate set/get on Agere firmware (Jean II)
223  *
224  * v0.09 -> v0.09a - 2/1/2002 - David Gibson
225  *      o Fixed stupid mistake in multicast list handling, triggering
226  *        a BUG()
227  *
228  * v0.09a -> v0.09b - 16/1/2002 - David Gibson
229  *      o Fixed even stupider mistake in new interrupt handling, which
230  *        seriously broke things on big-endian machines.
231  *      o Removed a bunch of redundant includes and exports.
232  *      o Removed a redundant MOD_{INC,DEC}_USE_COUNT pair in airport.c
233  *      o Don't attempt to do hardware level multicast reception on
234  *        Intersil firmware, just go promisc instead.
235  *      o Typo fixed in hermes_issue_cmd()
236  *      o Eliminated WIRELESS_SPY #ifdefs
237  *      o Status code reported on Tx exceptions
238  *      o Moved netif_wake_queue() from ALLOC interrupts to TX and TXEXC
239  *        interrupts, which should fix the timeouts we're seeing.
240  *
241  * v0.09b -> v0.10 - 25 Feb 2002 - David Gibson
242  *      o Removed nested structures used for header parsing, so the
243  *        driver should now work without hackery on ARM
244  *      o Fix for WEP handling on Intersil (Hawk Newton)
245  *      o Eliminated the /proc/hermes/ethXX/regs debugging file.  It
246  *        was never very useful.
247  *      o Make Rx errors less noisy.
248  *
249  * v0.10 -> v0.11 - 5 Apr 2002 - David Gibson
250  *      o Laid the groundwork in hermes.[ch] for devices which map
251  *        into PCI memory space rather than IO space.
252  *      o Fixed bug in multicast handling (cleared multicast list when
253  *        leaving promiscuous mode).
254  *      o Relegated Tx error messages to debug.
255  *      o Cleaned up / corrected handling of allocation lengths.
256  *      o Set OWNSSID in IBSS mode for WinXP interoperability (jimc).
257  *      o Change to using alloc_etherdev() for structure allocations. 
258  *      o Check for and drop undersized packets.
259  *      o Fixed a race in stopping/waking the queue.  This should fix
260  *        the timeout problems (Pavel Roskin)
261  *      o Reverted to netif_wake_queue() on the ALLOC event.
262  *      o Fixes for recent Symbol firmwares which lack AP density
263  *        (Pavel Roskin).
264  *
265  * v0.11 -> v0.11a - 29 Apr 2002 - David Gibson
266  *      o Handle different register spacing, necessary for Prism 2.5
267  *        PCI adaptors (Steve Hill).
268  *      o Cleaned up initialization of card structures in orinoco_cs
269  *        and airport.  Removed card->priv field.
270  *      o Make response structure optional for hermes_docmd_wait()
271  *        Pavel Roskin)
272  *      o Added PCI id for Nortel emobility to orinoco_plx.c.
273  *      o Cleanup to handling of Symbol's allocation bug. (Pavel Roskin)
274  *      o Cleanups to firmware capability detection.
275  *      o Arrange for orinoco_pci.c to override firmware detection.
276  *        We should be able to support the PCI Intersil cards now.
277  *      o Cleanup handling of reset_cor and hard_reset (Pavel Roskin).
278  *      o Remove erroneous use of USER_BAP in the TxExc handler (Jouni
279  *        Malinen).
280  *      o Makefile changes for better integration into David Hinds
281  *        pcmcia-cs package.
282  *
283  * v0.11a -> v0.11b - 1 May 2002 - David Gibson
284  *      o Better error reporting in orinoco_plx_init_one()
285  *      o Fixed multiple bad kfree() bugs introduced by the
286  *        alloc_orinocodev() changes.
287  *
288  * v0.11b -> v0.12 - 19 Jun 2002 - David Gibson
289  *      o Support changing the MAC address.
290  *      o Correct display of Intersil firmware revision numbers.
291  *      o Entirely revised locking scheme.  Should be both simpler and
292  *         better.
293  *      o Merged some common code in orinoco_plx, orinoco_pci and
294  *        airport by creating orinoco_default_{open,stop,reset}()
295  *        which are used as the dev->open, dev->stop, priv->reset
296  *        callbacks if none are specified when alloc_orinocodev() is
297  *        called.
298  *      o Removed orinoco_plx_interrupt() and orinoco_pci_interrupt().
299  *        They didn't do anything.
300  *
301  * v0.12 -> v0.12a - 4 Jul 2002 - David Gibson
302  *      o Some rearrangement of code.
303  *      o Numerous fixups to locking and rest handling, particularly
304  *        for PCMCIA.
305  *      o This allows open and stop net_device methods to be in
306  *        orinoco.c now, rather than in the init modules.
307  *      o In orinoco_cs.c link->priv now points to the struct
308  *        net_device not to the struct orinoco_private.
309  *      o Added a check for undersized SNAP frames, which could cause
310  *        crashes.
311  *
312  * v0.12a -> v0.12b - 11 Jul 2002 - David Gibson
313  *      o Fix hw->num_init testing code, so num_init is actually
314  *        incremented.
315  *      o Fix very stupid bug in orinoco_cs which broke compile with
316  *        CONFIG_SMP.
317  *      o Squashed a warning.
318  *
319  * v0.12b -> v0.12c - 26 Jul 2002 - David Gibson
320  *      o Change to C9X style designated initializers.
321  *      o Add support for 3Com AirConnect PCI.
322  *      o No longer ignore the hard_reset argument to
323  *        alloc_orinocodev().  Oops.
324  *
325  * v0.12c -> v0.13beta1 - 13 Sep 2002 - David Gibson
326  *      o Revert the broken 0.12* locking scheme and go to a new yet
327  *        simpler scheme.
328  *      o Do firmware resets only in orinoco_init() and when waking
329  *        the card from hard sleep.
330  *
331  * v0.13beta1 -> v0.13 - 27 Sep 2002 - David Gibson
332  *      o Re-introduced full resets (via schedule_task()) on Tx
333  *        timeout.
334  *
335  * v0.13 -> v0.13a - 30 Sep 2002 - David Gibson
336  *      o Minor cleanups to info frame handling.  Add basic support
337  *        for linkstatus info frames.
338  *      o Include required kernel headers in orinoco.h, to avoid
339  *        compile problems.
340  *
341  * v0.13a -> v0.13b - 10 Feb 2003 - David Gibson
342  *      o Implemented hard reset for Airport cards
343  *      o Experimental suspend/resume implementation for orinoco_pci
344  *      o Abolished /proc debugging support, replaced with a debugging
345  *        iwpriv.  Now it's ugly and simple instead of ugly and complex.
346  *      o Bugfix in hermes.c if the firmware returned a record length
347  *        of 0, we could go clobbering memory.
348  *      o Bugfix in orinoco_stop() - it used to fail if hw_unavailable
349  *        was set, which was usually true on PCMCIA hot removes.
350  *      o Track LINKSTATUS messages, silently drop Tx packets before
351  *        we are connected (avoids confusing the firmware), and only
352  *        give LINKSTATUS printk()s if the status has changed.
353  *
354  * v0.13b -> v0.13c - 11 Mar 2003 - David Gibson
355  *      o Cleanup: use dev instead of priv in various places.
356  *      o Bug fix: Don't ReleaseConfiguration on RESET_PHYSICAL event
357  *        if we're in the middle of a (driver initiated) hard reset.
358  *      o Bug fix: ETH_ZLEN is supposed to include the header
359  *        (Dionysus Blazakis & Manish Karir)
360  *      o Convert to using workqueues instead of taskqueues (and
361  *        backwards compatibility macros for pre 2.5.41 kernels).
362  *      o Drop redundant (I think...) MOD_{INC,DEC}_USE_COUNT in
363  *        airport.c
364  *      o New orinoco_tmd.c init module from Joerg Dorchain for
365  *        TMD7160 based PCI to PCMCIA bridges (similar to
366  *        orinoco_plx.c).
367  *
368  * v0.13c -> v0.13d - 22 Apr 2003 - David Gibson
369  *      o Make hw_unavailable a counter, rather than just a flag, this
370  *        is necessary to avoid some races (such as a card being
371  *        removed in the middle of orinoco_reset().
372  *      o Restore Release/RequestConfiguration in the PCMCIA event handler
373  *        when dealing with a driver initiated hard reset.  This is
374  *        necessary to prevent hangs due to a spurious interrupt while
375  *        the reset is in progress.
376  *      o Clear the 802.11 header when transmitting, even though we
377  *        don't use it.  This fixes a long standing bug on some
378  *        firmwares, which seem to get confused if that isn't done.
379  *      o Be less eager to de-encapsulate SNAP frames, only do so if
380  *        the OUI is 00:00:00 or 00:00:f8, leave others alone.  The old
381  *        behaviour broke CDP (Cisco Discovery Protocol).
382  *      o Use dev instead of priv for free_irq() as well as
383  *        request_irq() (oops).
384  *      o Attempt to reset rather than giving up if we get too many
385  *        IRQs.
386  *      o Changed semantics of __orinoco_down() so it can be called
387  *        safely with hw_unavailable set.  It also now clears the
388  *        linkstatus (since we're going to have to reassociate).
389  *
390  * v0.13d -> v0.13e - 12 May 2003 - David Gibson
391  *      o Support for post-2.5.68 return values from irq handler.
392  *      o Fixed bug where underlength packets would be double counted
393  *        in the rx_dropped statistics.
394  *      o Provided a module parameter to suppress linkstatus messages.
395  *
396  * v0.13e -> v0.14alpha1 - 30 Sep 2003 - David Gibson
397  *      o Replaced priv->connected logic with netif_carrier_on/off()
398  *        calls.
399  *      o Remove has_ibss_any and never set the CREATEIBSS RID when
400  *        the ESSID is empty.  Too many firmwares break if we do.
401  *      o 2.6 merges: Replace pdev->slot_name with pci_name(), remove
402  *        __devinitdata from PCI ID tables, use free_netdev().
403  *      o Enabled shared-key authentication for Agere firmware (from
404  *        Robert J. Moore <Robert.J.Moore AT allanbank.com>
405  *      o Move netif_wake_queue() (back) to the Tx completion from the
406  *        ALLOC event.  This seems to prevent/mitigate the rolling
407  *        error -110 problems at least on some Intersil firmwares.
408  *        Theoretically reduces performance, but I can't measure it.
409  *        Patch from Andrew Tridgell <tridge AT samba.org>
410  *
411  * v0.14alpha1 -> v0.14alpha2 - 20 Oct 2003 - David Gibson
412  *      o Correctly turn off shared-key authentication when requested
413  *        (bugfix from Robert J. Moore).
414  *      o Correct airport sleep interfaces for current 2.6 kernels.
415  *      o Add code for key change without disabling/enabling the MAC
416  *        port.  This is supposed to allow 802.1x to work sanely, but
417  *        doesn't seem to yet.
418  *
419  * TODO
420  *      o New wireless extensions API (patch from Moustafa
421  *        Youssef, updated by Jim Carter and Pavel Roskin).
422  *      o Handle de-encapsulation within network layer, provide 802.11
423  *        headers (patch from Thomas 'Dent' Mirlacher)
424  *      o RF monitor mode support
425  *      o Fix possible races in SPY handling.
426  *      o Disconnect wireless extensions from fundamental configuration.
427  *      o (maybe) Software WEP support (patch from Stano Meduna).
428  *      o (maybe) Use multiple Tx buffers - driver handling queue
429  *        rather than firmware.
430  */
431
432 /* Locking and synchronization:
433  *
434  * The basic principle is that everything is serialized through a
435  * single spinlock, priv->lock.  The lock is used in user, bh and irq
436  * context, so when taken outside hardirq context it should always be
437  * taken with interrupts disabled.  The lock protects both the
438  * hardware and the struct orinoco_private.
439  *
440  * Another flag, priv->hw_unavailable indicates that the hardware is
441  * unavailable for an extended period of time (e.g. suspended, or in
442  * the middle of a hard reset).  This flag is protected by the
443  * spinlock.  All code which touches the hardware should check the
444  * flag after taking the lock, and if it is set, give up on whatever
445  * they are doing and drop the lock again.  The orinoco_lock()
446  * function handles this (it unlocks and returns -EBUSY if
447  * hw_unavailable is non-zero).
448  */
449
450 #define DRIVER_NAME "orinoco"
451
452 #include <linux/config.h>
453
454 #include <linux/module.h>
455 #include <linux/kernel.h>
456 #include <linux/init.h>
457 #include <linux/ptrace.h>
458 #include <linux/slab.h>
459 #include <linux/string.h>
460 #include <linux/timer.h>
461 #include <linux/ioport.h>
462 #include <linux/netdevice.h>
463 #include <linux/if_arp.h>
464 #include <linux/etherdevice.h>
465 #include <linux/ethtool.h>
466 #include <linux/wireless.h>
467 #include <net/iw_handler.h>
468 #include <net/ieee80211.h>
469
470 #include <asm/uaccess.h>
471 #include <asm/io.h>
472 #include <asm/system.h>
473
474 #include "hermes.h"
475 #include "hermes_rid.h"
476 #include "orinoco.h"
477 #include "ieee802_11.h"
478
479 /********************************************************************/
480 /* Module information                                               */
481 /********************************************************************/
482
483 MODULE_AUTHOR("Pavel Roskin <proski@gnu.org> & David Gibson <hermes@gibson.dropbear.id.au>");
484 MODULE_DESCRIPTION("Driver for Lucent Orinoco, Prism II based and similar wireless cards");
485 MODULE_LICENSE("Dual MPL/GPL");
486
487 /* Level of debugging. Used in the macros in orinoco.h */
488 #ifdef ORINOCO_DEBUG
489 int orinoco_debug = ORINOCO_DEBUG;
490 module_param(orinoco_debug, int, 0644);
491 MODULE_PARM_DESC(orinoco_debug, "Debug level");
492 EXPORT_SYMBOL(orinoco_debug);
493 #endif
494
495 static int suppress_linkstatus; /* = 0 */
496 module_param(suppress_linkstatus, bool, 0644);
497 MODULE_PARM_DESC(suppress_linkstatus, "Don't log link status changes");
498 static int ignore_disconnect; /* = 0 */
499 module_param(ignore_disconnect, int, 0644);
500 MODULE_PARM_DESC(ignore_disconnect, "Don't report lost link to the network layer");
501
502 /********************************************************************/
503 /* Compile time configuration and compatibility stuff               */
504 /********************************************************************/
505
506 /* We do this this way to avoid ifdefs in the actual code */
507 #ifdef WIRELESS_SPY
508 #define SPY_NUMBER(priv)        (priv->spy_number)
509 #else
510 #define SPY_NUMBER(priv)        0
511 #endif /* WIRELESS_SPY */
512
513 /********************************************************************/
514 /* Internal constants                                               */
515 /********************************************************************/
516
517 #define ORINOCO_MIN_MTU         256
518 #define ORINOCO_MAX_MTU         (IEEE802_11_DATA_LEN - ENCAPS_OVERHEAD)
519
520 #define SYMBOL_MAX_VER_LEN      (14)
521 #define USER_BAP                0
522 #define IRQ_BAP                 1
523 #define MAX_IRQLOOPS_PER_IRQ    10
524 #define MAX_IRQLOOPS_PER_JIFFY  (20000/HZ) /* Based on a guestimate of
525                                             * how many events the
526                                             * device could
527                                             * legitimately generate */
528 #define SMALL_KEY_SIZE          5
529 #define LARGE_KEY_SIZE          13
530 #define TX_NICBUF_SIZE_BUG      1585            /* Bug in Symbol firmware */
531
532 #define DUMMY_FID               0xFFFF
533
534 /*#define MAX_MULTICAST(priv)   (priv->firmware_type == FIRMWARE_TYPE_AGERE ? \
535   HERMES_MAX_MULTICAST : 0)*/
536 #define MAX_MULTICAST(priv)     (HERMES_MAX_MULTICAST)
537
538 #define ORINOCO_INTEN           (HERMES_EV_RX | HERMES_EV_ALLOC \
539                                  | HERMES_EV_TX | HERMES_EV_TXEXC \
540                                  | HERMES_EV_WTERR | HERMES_EV_INFO \
541                                  | HERMES_EV_INFDROP )
542
543 #define MAX_RID_LEN 1024
544
545 static const struct iw_handler_def orinoco_handler_def;
546 static struct ethtool_ops orinoco_ethtool_ops;
547
548 /********************************************************************/
549 /* Data tables                                                      */
550 /********************************************************************/
551
552 /* The frequency of each channel in MHz */
553 static const long channel_frequency[] = {
554         2412, 2417, 2422, 2427, 2432, 2437, 2442,
555         2447, 2452, 2457, 2462, 2467, 2472, 2484
556 };
557 #define NUM_CHANNELS ARRAY_SIZE(channel_frequency)
558
559 /* This tables gives the actual meanings of the bitrate IDs returned
560  * by the firmware. */
561 static struct {
562         int bitrate; /* in 100s of kilobits */
563         int automatic;
564         u16 agere_txratectrl;
565         u16 intersil_txratectrl;
566 } bitrate_table[] = {
567         {110, 1,  3, 15}, /* Entry 0 is the default */
568         {10,  0,  1,  1},
569         {10,  1,  1,  1},
570         {20,  0,  2,  2},
571         {20,  1,  6,  3},
572         {55,  0,  4,  4},
573         {55,  1,  7,  7},
574         {110, 0,  5,  8},
575 };
576 #define BITRATE_TABLE_SIZE ARRAY_SIZE(bitrate_table)
577
578 /********************************************************************/
579 /* Data types                                                       */
580 /********************************************************************/
581
582 struct header_struct {
583         /* 802.3 */
584         u8 dest[ETH_ALEN];
585         u8 src[ETH_ALEN];
586         u16 len;
587         /* 802.2 */
588         u8 dsap;
589         u8 ssap;
590         u8 ctrl;
591         /* SNAP */
592         u8 oui[3];
593         u16 ethertype;
594 } __attribute__ ((packed));
595
596 /* 802.2 LLC/SNAP header used for Ethernet encapsulation over 802.11 */
597 u8 encaps_hdr[] = {0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00};
598
599 #define ENCAPS_OVERHEAD         (sizeof(encaps_hdr) + 2)
600
601 struct hermes_rx_descriptor {
602         u16 status;
603         u32 time;
604         u8 silence;
605         u8 signal;
606         u8 rate;
607         u8 rxflow;
608         u32 reserved;
609 } __attribute__ ((packed));
610
611 /********************************************************************/
612 /* Function prototypes                                              */
613 /********************************************************************/
614
615 static int __orinoco_program_rids(struct net_device *dev);
616 static void __orinoco_set_multicast_list(struct net_device *dev);
617
618 /********************************************************************/
619 /* Internal helper functions                                        */
620 /********************************************************************/
621
622 static inline void set_port_type(struct orinoco_private *priv)
623 {
624         switch (priv->iw_mode) {
625         case IW_MODE_INFRA:
626                 priv->port_type = 1;
627                 priv->createibss = 0;
628                 break;
629         case IW_MODE_ADHOC:
630                 if (priv->prefer_port3) {
631                         priv->port_type = 3;
632                         priv->createibss = 0;
633                 } else {
634                         priv->port_type = priv->ibss_port;
635                         priv->createibss = 1;
636                 }
637                 break;
638         default:
639                 printk(KERN_ERR "%s: Invalid priv->iw_mode in set_port_type()\n",
640                        priv->ndev->name);
641         }
642 }
643
644 /********************************************************************/
645 /* Device methods                                                   */
646 /********************************************************************/
647
648 static int orinoco_open(struct net_device *dev)
649 {
650         struct orinoco_private *priv = netdev_priv(dev);
651         unsigned long flags;
652         int err;
653
654         if (orinoco_lock(priv, &flags) != 0)
655                 return -EBUSY;
656
657         err = __orinoco_up(dev);
658
659         if (! err)
660                 priv->open = 1;
661
662         orinoco_unlock(priv, &flags);
663
664         return err;
665 }
666
667 static int orinoco_stop(struct net_device *dev)
668 {
669         struct orinoco_private *priv = netdev_priv(dev);
670         int err = 0;
671
672         /* We mustn't use orinoco_lock() here, because we need to be
673            able to close the interface even if hw_unavailable is set
674            (e.g. as we're released after a PC Card removal) */
675         spin_lock_irq(&priv->lock);
676
677         priv->open = 0;
678
679         err = __orinoco_down(dev);
680
681         spin_unlock_irq(&priv->lock);
682
683         return err;
684 }
685
686 static struct net_device_stats *orinoco_get_stats(struct net_device *dev)
687 {
688         struct orinoco_private *priv = netdev_priv(dev);
689         
690         return &priv->stats;
691 }
692
693 static struct iw_statistics *orinoco_get_wireless_stats(struct net_device *dev)
694 {
695         struct orinoco_private *priv = netdev_priv(dev);
696         hermes_t *hw = &priv->hw;
697         struct iw_statistics *wstats = &priv->wstats;
698         int err;
699         unsigned long flags;
700
701         if (! netif_device_present(dev)) {
702                 printk(KERN_WARNING "%s: get_wireless_stats() called while device not present\n",
703                        dev->name);
704                 return NULL; /* FIXME: Can we do better than this? */
705         }
706
707         /* If busy, return the old stats.  Returning NULL may cause
708          * the interface to disappear from /proc/net/wireless */
709         if (orinoco_lock(priv, &flags) != 0)
710                 return wstats;
711
712         /* We can't really wait for the tallies inquiry command to
713          * complete, so we just use the previous results and trigger
714          * a new tallies inquiry command for next time - Jean II */
715         /* FIXME: Really we should wait for the inquiry to come back -
716          * as it is the stats we give don't make a whole lot of sense.
717          * Unfortunately, it's not clear how to do that within the
718          * wireless extensions framework: I think we're in user
719          * context, but a lock seems to be held by the time we get in
720          * here so we're not safe to sleep here. */
721         hermes_inquire(hw, HERMES_INQ_TALLIES);
722
723         if (priv->iw_mode == IW_MODE_ADHOC) {
724                 memset(&wstats->qual, 0, sizeof(wstats->qual));
725                 /* If a spy address is defined, we report stats of the
726                  * first spy address - Jean II */
727                 if (SPY_NUMBER(priv)) {
728                         wstats->qual.qual = priv->spy_stat[0].qual;
729                         wstats->qual.level = priv->spy_stat[0].level;
730                         wstats->qual.noise = priv->spy_stat[0].noise;
731                         wstats->qual.updated = priv->spy_stat[0].updated;
732                 }
733         } else {
734                 struct {
735                         u16 qual, signal, noise;
736                 } __attribute__ ((packed)) cq;
737
738                 err = HERMES_READ_RECORD(hw, USER_BAP,
739                                          HERMES_RID_COMMSQUALITY, &cq);
740
741                 if (!err) {
742                         wstats->qual.qual = (int)le16_to_cpu(cq.qual);
743                         wstats->qual.level = (int)le16_to_cpu(cq.signal) - 0x95;
744                         wstats->qual.noise = (int)le16_to_cpu(cq.noise) - 0x95;
745                         wstats->qual.updated = 7;
746                 }
747         }
748
749         orinoco_unlock(priv, &flags);
750         return wstats;
751 }
752
753 static void orinoco_set_multicast_list(struct net_device *dev)
754 {
755         struct orinoco_private *priv = netdev_priv(dev);
756         unsigned long flags;
757
758         if (orinoco_lock(priv, &flags) != 0) {
759                 printk(KERN_DEBUG "%s: orinoco_set_multicast_list() "
760                        "called when hw_unavailable\n", dev->name);
761                 return;
762         }
763
764         __orinoco_set_multicast_list(dev);
765         orinoco_unlock(priv, &flags);
766 }
767
768 static int orinoco_change_mtu(struct net_device *dev, int new_mtu)
769 {
770         struct orinoco_private *priv = netdev_priv(dev);
771
772         if ( (new_mtu < ORINOCO_MIN_MTU) || (new_mtu > ORINOCO_MAX_MTU) )
773                 return -EINVAL;
774
775         if ( (new_mtu + ENCAPS_OVERHEAD + IEEE802_11_HLEN) >
776              (priv->nicbuf_size - ETH_HLEN) )
777                 return -EINVAL;
778
779         dev->mtu = new_mtu;
780
781         return 0;
782 }
783
784 /********************************************************************/
785 /* Tx path                                                          */
786 /********************************************************************/
787
788 static int orinoco_xmit(struct sk_buff *skb, struct net_device *dev)
789 {
790         struct orinoco_private *priv = netdev_priv(dev);
791         struct net_device_stats *stats = &priv->stats;
792         hermes_t *hw = &priv->hw;
793         int err = 0;
794         u16 txfid = priv->txfid;
795         char *p;
796         struct ethhdr *eh;
797         int len, data_len, data_off;
798         struct hermes_tx_descriptor desc;
799         unsigned long flags;
800
801         TRACE_ENTER(dev->name);
802
803         if (! netif_running(dev)) {
804                 printk(KERN_ERR "%s: Tx on stopped device!\n",
805                        dev->name);
806                 TRACE_EXIT(dev->name);
807                 return 1;
808         }
809         
810         if (netif_queue_stopped(dev)) {
811                 printk(KERN_DEBUG "%s: Tx while transmitter busy!\n", 
812                        dev->name);
813                 TRACE_EXIT(dev->name);
814                 return 1;
815         }
816         
817         if (orinoco_lock(priv, &flags) != 0) {
818                 printk(KERN_ERR "%s: orinoco_xmit() called while hw_unavailable\n",
819                        dev->name);
820                 TRACE_EXIT(dev->name);
821                 return 1;
822         }
823
824         if (! netif_carrier_ok(dev)) {
825                 /* Oops, the firmware hasn't established a connection,
826                    silently drop the packet (this seems to be the
827                    safest approach). */
828                 stats->tx_errors++;
829                 orinoco_unlock(priv, &flags);
830                 dev_kfree_skb(skb);
831                 TRACE_EXIT(dev->name);
832                 return 0;
833         }
834
835         /* Length of the packet body */
836         /* FIXME: what if the skb is smaller than this? */
837         len = max_t(int,skb->len - ETH_HLEN, ETH_ZLEN - ETH_HLEN);
838
839         eh = (struct ethhdr *)skb->data;
840
841         memset(&desc, 0, sizeof(desc));
842         desc.tx_control = cpu_to_le16(HERMES_TXCTRL_TX_OK | HERMES_TXCTRL_TX_EX);
843         err = hermes_bap_pwrite(hw, USER_BAP, &desc, sizeof(desc), txfid, 0);
844         if (err) {
845                 if (net_ratelimit())
846                         printk(KERN_ERR "%s: Error %d writing Tx descriptor "
847                                "to BAP\n", dev->name, err);
848                 stats->tx_errors++;
849                 goto fail;
850         }
851
852         /* Clear the 802.11 header and data length fields - some
853          * firmwares (e.g. Lucent/Agere 8.xx) appear to get confused
854          * if this isn't done. */
855         hermes_clear_words(hw, HERMES_DATA0,
856                            HERMES_802_3_OFFSET - HERMES_802_11_OFFSET);
857
858         /* Encapsulate Ethernet-II frames */
859         if (ntohs(eh->h_proto) > ETH_DATA_LEN) { /* Ethernet-II frame */
860                 struct header_struct hdr;
861                 data_len = len;
862                 data_off = HERMES_802_3_OFFSET + sizeof(hdr);
863                 p = skb->data + ETH_HLEN;
864
865                 /* 802.3 header */
866                 memcpy(hdr.dest, eh->h_dest, ETH_ALEN);
867                 memcpy(hdr.src, eh->h_source, ETH_ALEN);
868                 hdr.len = htons(data_len + ENCAPS_OVERHEAD);
869                 
870                 /* 802.2 header */
871                 memcpy(&hdr.dsap, &encaps_hdr, sizeof(encaps_hdr));
872                         
873                 hdr.ethertype = eh->h_proto;
874                 err  = hermes_bap_pwrite(hw, USER_BAP, &hdr, sizeof(hdr),
875                                          txfid, HERMES_802_3_OFFSET);
876                 if (err) {
877                         if (net_ratelimit())
878                                 printk(KERN_ERR "%s: Error %d writing packet "
879                                        "header to BAP\n", dev->name, err);
880                         stats->tx_errors++;
881                         goto fail;
882                 }
883         } else { /* IEEE 802.3 frame */
884                 data_len = len + ETH_HLEN;
885                 data_off = HERMES_802_3_OFFSET;
886                 p = skb->data;
887         }
888
889         /* Round up for odd length packets */
890         err = hermes_bap_pwrite(hw, USER_BAP, p, ALIGN(data_len, 2),
891                                 txfid, data_off);
892         if (err) {
893                 printk(KERN_ERR "%s: Error %d writing packet to BAP\n",
894                        dev->name, err);
895                 stats->tx_errors++;
896                 goto fail;
897         }
898
899         /* Finally, we actually initiate the send */
900         netif_stop_queue(dev);
901
902         err = hermes_docmd_wait(hw, HERMES_CMD_TX | HERMES_CMD_RECL,
903                                 txfid, NULL);
904         if (err) {
905                 netif_start_queue(dev);
906                 printk(KERN_ERR "%s: Error %d transmitting packet\n",
907                        dev->name, err);
908                 stats->tx_errors++;
909                 goto fail;
910         }
911
912         dev->trans_start = jiffies;
913         stats->tx_bytes += data_off + data_len;
914
915         orinoco_unlock(priv, &flags);
916
917         dev_kfree_skb(skb);
918
919         TRACE_EXIT(dev->name);
920
921         return 0;
922  fail:
923         TRACE_EXIT(dev->name);
924
925         orinoco_unlock(priv, &flags);
926         return err;
927 }
928
929 static void __orinoco_ev_alloc(struct net_device *dev, hermes_t *hw)
930 {
931         struct orinoco_private *priv = netdev_priv(dev);
932         u16 fid = hermes_read_regn(hw, ALLOCFID);
933
934         if (fid != priv->txfid) {
935                 if (fid != DUMMY_FID)
936                         printk(KERN_WARNING "%s: Allocate event on unexpected fid (%04X)\n",
937                                dev->name, fid);
938                 return;
939         }
940
941         hermes_write_regn(hw, ALLOCFID, DUMMY_FID);
942 }
943
944 static void __orinoco_ev_tx(struct net_device *dev, hermes_t *hw)
945 {
946         struct orinoco_private *priv = netdev_priv(dev);
947         struct net_device_stats *stats = &priv->stats;
948
949         stats->tx_packets++;
950
951         netif_wake_queue(dev);
952
953         hermes_write_regn(hw, TXCOMPLFID, DUMMY_FID);
954 }
955
956 static void __orinoco_ev_txexc(struct net_device *dev, hermes_t *hw)
957 {
958         struct orinoco_private *priv = netdev_priv(dev);
959         struct net_device_stats *stats = &priv->stats;
960         u16 fid = hermes_read_regn(hw, TXCOMPLFID);
961         struct hermes_tx_descriptor desc;
962         int err = 0;
963
964         if (fid == DUMMY_FID)
965                 return; /* Nothing's really happened */
966
967         err = hermes_bap_pread(hw, IRQ_BAP, &desc, sizeof(desc), fid, 0);
968         if (err) {
969                 printk(KERN_WARNING "%s: Unable to read descriptor on Tx error "
970                        "(FID=%04X error %d)\n",
971                        dev->name, fid, err);
972         } else {
973                 DEBUG(1, "%s: Tx error, status %d\n",
974                       dev->name, le16_to_cpu(desc.status));
975         }
976         
977         stats->tx_errors++;
978
979         netif_wake_queue(dev);
980         hermes_write_regn(hw, TXCOMPLFID, DUMMY_FID);
981 }
982
983 static void orinoco_tx_timeout(struct net_device *dev)
984 {
985         struct orinoco_private *priv = netdev_priv(dev);
986         struct net_device_stats *stats = &priv->stats;
987         struct hermes *hw = &priv->hw;
988
989         printk(KERN_WARNING "%s: Tx timeout! "
990                "ALLOCFID=%04x, TXCOMPLFID=%04x, EVSTAT=%04x\n",
991                dev->name, hermes_read_regn(hw, ALLOCFID),
992                hermes_read_regn(hw, TXCOMPLFID), hermes_read_regn(hw, EVSTAT));
993
994         stats->tx_errors++;
995
996         schedule_work(&priv->reset_work);
997 }
998
999 /********************************************************************/
1000 /* Rx path (data frames)                                            */
1001 /********************************************************************/
1002
1003 /* Does the frame have a SNAP header indicating it should be
1004  * de-encapsulated to Ethernet-II? */
1005 static inline int is_ethersnap(void *_hdr)
1006 {
1007         u8 *hdr = _hdr;
1008
1009         /* We de-encapsulate all packets which, a) have SNAP headers
1010          * (i.e. SSAP=DSAP=0xaa and CTRL=0x3 in the 802.2 LLC header
1011          * and where b) the OUI of the SNAP header is 00:00:00 or
1012          * 00:00:f8 - we need both because different APs appear to use
1013          * different OUIs for some reason */
1014         return (memcmp(hdr, &encaps_hdr, 5) == 0)
1015                 && ( (hdr[5] == 0x00) || (hdr[5] == 0xf8) );
1016 }
1017
1018 static inline void orinoco_spy_gather(struct net_device *dev, u_char *mac,
1019                                       int level, int noise)
1020 {
1021         struct orinoco_private *priv = netdev_priv(dev);
1022         int i;
1023
1024         /* Gather wireless spy statistics: for each packet, compare the
1025          * source address with out list, and if match, get the stats... */
1026         for (i = 0; i < priv->spy_number; i++)
1027                 if (!memcmp(mac, priv->spy_address[i], ETH_ALEN)) {
1028                         priv->spy_stat[i].level = level - 0x95;
1029                         priv->spy_stat[i].noise = noise - 0x95;
1030                         priv->spy_stat[i].qual = (level > noise) ? (level - noise) : 0;
1031                         priv->spy_stat[i].updated = 7;
1032                 }
1033 }
1034
1035 static void orinoco_stat_gather(struct net_device *dev,
1036                                 struct sk_buff *skb,
1037                                 struct hermes_rx_descriptor *desc)
1038 {
1039         struct orinoco_private *priv = netdev_priv(dev);
1040
1041         /* Using spy support with lots of Rx packets, like in an
1042          * infrastructure (AP), will really slow down everything, because
1043          * the MAC address must be compared to each entry of the spy list.
1044          * If the user really asks for it (set some address in the
1045          * spy list), we do it, but he will pay the price.
1046          * Note that to get here, you need both WIRELESS_SPY
1047          * compiled in AND some addresses in the list !!!
1048          */
1049         /* Note : gcc will optimise the whole section away if
1050          * WIRELESS_SPY is not defined... - Jean II */
1051         if (SPY_NUMBER(priv)) {
1052                 orinoco_spy_gather(dev, skb->mac.raw + ETH_ALEN,
1053                                    desc->signal, desc->silence);
1054         }
1055 }
1056
1057 static void __orinoco_ev_rx(struct net_device *dev, hermes_t *hw)
1058 {
1059         struct orinoco_private *priv = netdev_priv(dev);
1060         struct net_device_stats *stats = &priv->stats;
1061         struct iw_statistics *wstats = &priv->wstats;
1062         struct sk_buff *skb = NULL;
1063         u16 rxfid, status;
1064         int length, data_len, data_off;
1065         char *p;
1066         struct hermes_rx_descriptor desc;
1067         struct header_struct hdr;
1068         struct ethhdr *eh;
1069         int err;
1070
1071         rxfid = hermes_read_regn(hw, RXFID);
1072
1073         err = hermes_bap_pread(hw, IRQ_BAP, &desc, sizeof(desc),
1074                                rxfid, 0);
1075         if (err) {
1076                 printk(KERN_ERR "%s: error %d reading Rx descriptor. "
1077                        "Frame dropped.\n", dev->name, err);
1078                 stats->rx_errors++;
1079                 goto drop;
1080         }
1081
1082         status = le16_to_cpu(desc.status);
1083
1084         if (status & HERMES_RXSTAT_ERR) {
1085                 if (status & HERMES_RXSTAT_UNDECRYPTABLE) {
1086                         wstats->discard.code++;
1087                         DEBUG(1, "%s: Undecryptable frame on Rx. Frame dropped.\n",
1088                                dev->name);
1089                 } else {
1090                         stats->rx_crc_errors++;
1091                         DEBUG(1, "%s: Bad CRC on Rx. Frame dropped.\n", dev->name);
1092                 }
1093                 stats->rx_errors++;
1094                 goto drop;
1095         }
1096
1097         /* For now we ignore the 802.11 header completely, assuming
1098            that the card's firmware has handled anything vital */
1099
1100         err = hermes_bap_pread(hw, IRQ_BAP, &hdr, sizeof(hdr),
1101                                rxfid, HERMES_802_3_OFFSET);
1102         if (err) {
1103                 printk(KERN_ERR "%s: error %d reading frame header. "
1104                        "Frame dropped.\n", dev->name, err);
1105                 stats->rx_errors++;
1106                 goto drop;
1107         }
1108
1109         length = ntohs(hdr.len);
1110         
1111         /* Sanity checks */
1112         if (length < 3) { /* No for even an 802.2 LLC header */
1113                 /* At least on Symbol firmware with PCF we get quite a
1114                    lot of these legitimately - Poll frames with no
1115                    data. */
1116                 stats->rx_dropped++;
1117                 goto drop;
1118         }
1119         if (length > IEEE802_11_DATA_LEN) {
1120                 printk(KERN_WARNING "%s: Oversized frame received (%d bytes)\n",
1121                        dev->name, length);
1122                 stats->rx_length_errors++;
1123                 stats->rx_errors++;
1124                 goto drop;
1125         }
1126
1127         /* We need space for the packet data itself, plus an ethernet
1128            header, plus 2 bytes so we can align the IP header on a
1129            32bit boundary, plus 1 byte so we can read in odd length
1130            packets from the card, which has an IO granularity of 16
1131            bits */  
1132         skb = dev_alloc_skb(length+ETH_HLEN+2+1);
1133         if (!skb) {
1134                 printk(KERN_WARNING "%s: Can't allocate skb for Rx\n",
1135                        dev->name);
1136                 goto drop;
1137         }
1138
1139         skb_reserve(skb, 2); /* This way the IP header is aligned */
1140
1141         /* Handle decapsulation
1142          * In most cases, the firmware tell us about SNAP frames.
1143          * For some reason, the SNAP frames sent by LinkSys APs
1144          * are not properly recognised by most firmwares.
1145          * So, check ourselves */
1146         if (((status & HERMES_RXSTAT_MSGTYPE) == HERMES_RXSTAT_1042) ||
1147             ((status & HERMES_RXSTAT_MSGTYPE) == HERMES_RXSTAT_TUNNEL) ||
1148             is_ethersnap(&hdr)) {
1149                 /* These indicate a SNAP within 802.2 LLC within
1150                    802.11 frame which we'll need to de-encapsulate to
1151                    the original EthernetII frame. */
1152
1153                 if (length < ENCAPS_OVERHEAD) { /* No room for full LLC+SNAP */
1154                         stats->rx_length_errors++;
1155                         goto drop;
1156                 }
1157
1158                 /* Remove SNAP header, reconstruct EthernetII frame */
1159                 data_len = length - ENCAPS_OVERHEAD;
1160                 data_off = HERMES_802_3_OFFSET + sizeof(hdr);
1161
1162                 eh = (struct ethhdr *)skb_put(skb, ETH_HLEN);
1163
1164                 memcpy(eh, &hdr, 2 * ETH_ALEN);
1165                 eh->h_proto = hdr.ethertype;
1166         } else {
1167                 /* All other cases indicate a genuine 802.3 frame.  No
1168                    decapsulation needed.  We just throw the whole
1169                    thing in, and hope the protocol layer can deal with
1170                    it as 802.3 */
1171                 data_len = length;
1172                 data_off = HERMES_802_3_OFFSET;
1173                 /* FIXME: we re-read from the card data we already read here */
1174         }
1175
1176         p = skb_put(skb, data_len);
1177         err = hermes_bap_pread(hw, IRQ_BAP, p, ALIGN(data_len, 2),
1178                                rxfid, data_off);
1179         if (err) {
1180                 printk(KERN_ERR "%s: error %d reading frame. "
1181                        "Frame dropped.\n", dev->name, err);
1182                 stats->rx_errors++;
1183                 goto drop;
1184         }
1185
1186         dev->last_rx = jiffies;
1187         skb->dev = dev;
1188         skb->protocol = eth_type_trans(skb, dev);
1189         skb->ip_summed = CHECKSUM_NONE;
1190         
1191         /* Process the wireless stats if needed */
1192         orinoco_stat_gather(dev, skb, &desc);
1193
1194         /* Pass the packet to the networking stack */
1195         netif_rx(skb);
1196         stats->rx_packets++;
1197         stats->rx_bytes += length;
1198
1199         return;
1200
1201  drop:  
1202         stats->rx_dropped++;
1203
1204         if (skb)
1205                 dev_kfree_skb_irq(skb);
1206         return;
1207 }
1208
1209 /********************************************************************/
1210 /* Rx path (info frames)                                            */
1211 /********************************************************************/
1212
1213 static void print_linkstatus(struct net_device *dev, u16 status)
1214 {
1215         char * s;
1216
1217         if (suppress_linkstatus)
1218                 return;
1219
1220         switch (status) {
1221         case HERMES_LINKSTATUS_NOT_CONNECTED:
1222                 s = "Not Connected";
1223                 break;
1224         case HERMES_LINKSTATUS_CONNECTED:
1225                 s = "Connected";
1226                 break;
1227         case HERMES_LINKSTATUS_DISCONNECTED:
1228                 s = "Disconnected";
1229                 break;
1230         case HERMES_LINKSTATUS_AP_CHANGE:
1231                 s = "AP Changed";
1232                 break;
1233         case HERMES_LINKSTATUS_AP_OUT_OF_RANGE:
1234                 s = "AP Out of Range";
1235                 break;
1236         case HERMES_LINKSTATUS_AP_IN_RANGE:
1237                 s = "AP In Range";
1238                 break;
1239         case HERMES_LINKSTATUS_ASSOC_FAILED:
1240                 s = "Association Failed";
1241                 break;
1242         default:
1243                 s = "UNKNOWN";
1244         }
1245         
1246         printk(KERN_INFO "%s: New link status: %s (%04x)\n",
1247                dev->name, s, status);
1248 }
1249
1250 static void __orinoco_ev_info(struct net_device *dev, hermes_t *hw)
1251 {
1252         struct orinoco_private *priv = netdev_priv(dev);
1253         u16 infofid;
1254         struct {
1255                 u16 len;
1256                 u16 type;
1257         } __attribute__ ((packed)) info;
1258         int len, type;
1259         int err;
1260
1261         /* This is an answer to an INQUIRE command that we did earlier,
1262          * or an information "event" generated by the card
1263          * The controller return to us a pseudo frame containing
1264          * the information in question - Jean II */
1265         infofid = hermes_read_regn(hw, INFOFID);
1266
1267         /* Read the info frame header - don't try too hard */
1268         err = hermes_bap_pread(hw, IRQ_BAP, &info, sizeof(info),
1269                                infofid, 0);
1270         if (err) {
1271                 printk(KERN_ERR "%s: error %d reading info frame. "
1272                        "Frame dropped.\n", dev->name, err);
1273                 return;
1274         }
1275         
1276         len = HERMES_RECLEN_TO_BYTES(le16_to_cpu(info.len));
1277         type = le16_to_cpu(info.type);
1278
1279         switch (type) {
1280         case HERMES_INQ_TALLIES: {
1281                 struct hermes_tallies_frame tallies;
1282                 struct iw_statistics *wstats = &priv->wstats;
1283                 
1284                 if (len > sizeof(tallies)) {
1285                         printk(KERN_WARNING "%s: Tallies frame too long (%d bytes)\n",
1286                                dev->name, len);
1287                         len = sizeof(tallies);
1288                 }
1289                 
1290                 err = hermes_bap_pread(hw, IRQ_BAP, &tallies, len,
1291                                        infofid, sizeof(info));
1292                 if (err)
1293                         break;
1294                 
1295                 /* Increment our various counters */
1296                 /* wstats->discard.nwid - no wrong BSSID stuff */
1297                 wstats->discard.code +=
1298                         le16_to_cpu(tallies.RxWEPUndecryptable);
1299                 if (len == sizeof(tallies))  
1300                         wstats->discard.code +=
1301                                 le16_to_cpu(tallies.RxDiscards_WEPICVError) +
1302                                 le16_to_cpu(tallies.RxDiscards_WEPExcluded);
1303                 wstats->discard.misc +=
1304                         le16_to_cpu(tallies.TxDiscardsWrongSA);
1305                 wstats->discard.fragment +=
1306                         le16_to_cpu(tallies.RxMsgInBadMsgFragments);
1307                 wstats->discard.retries +=
1308                         le16_to_cpu(tallies.TxRetryLimitExceeded);
1309                 /* wstats->miss.beacon - no match */
1310         }
1311         break;
1312         case HERMES_INQ_LINKSTATUS: {
1313                 struct hermes_linkstatus linkstatus;
1314                 u16 newstatus;
1315                 int connected;
1316
1317                 if (len != sizeof(linkstatus)) {
1318                         printk(KERN_WARNING "%s: Unexpected size for linkstatus frame (%d bytes)\n",
1319                                dev->name, len);
1320                         break;
1321                 }
1322
1323                 err = hermes_bap_pread(hw, IRQ_BAP, &linkstatus, len,
1324                                        infofid, sizeof(info));
1325                 if (err)
1326                         break;
1327                 newstatus = le16_to_cpu(linkstatus.linkstatus);
1328
1329                 connected = (newstatus == HERMES_LINKSTATUS_CONNECTED)
1330                         || (newstatus == HERMES_LINKSTATUS_AP_CHANGE)
1331                         || (newstatus == HERMES_LINKSTATUS_AP_IN_RANGE);
1332
1333                 if (connected)
1334                         netif_carrier_on(dev);
1335                 else if (!ignore_disconnect)
1336                         netif_carrier_off(dev);
1337
1338                 if (newstatus != priv->last_linkstatus)
1339                         print_linkstatus(dev, newstatus);
1340
1341                 priv->last_linkstatus = newstatus;
1342         }
1343         break;
1344         default:
1345                 printk(KERN_DEBUG "%s: Unknown information frame received: "
1346                        "type 0x%04x, length %d\n", dev->name, type, len);
1347                 /* We don't actually do anything about it */
1348                 break;
1349         }
1350 }
1351
1352 static void __orinoco_ev_infdrop(struct net_device *dev, hermes_t *hw)
1353 {
1354         if (net_ratelimit())
1355                 printk(KERN_DEBUG "%s: Information frame lost.\n", dev->name);
1356 }
1357
1358 /********************************************************************/
1359 /* Internal hardware control routines                               */
1360 /********************************************************************/
1361
1362 int __orinoco_up(struct net_device *dev)
1363 {
1364         struct orinoco_private *priv = netdev_priv(dev);
1365         struct hermes *hw = &priv->hw;
1366         int err;
1367
1368         netif_carrier_off(dev); /* just to make sure */
1369
1370         err = __orinoco_program_rids(dev);
1371         if (err) {
1372                 printk(KERN_ERR "%s: Error %d configuring card\n",
1373                        dev->name, err);
1374                 return err;
1375         }
1376
1377         /* Fire things up again */
1378         hermes_set_irqmask(hw, ORINOCO_INTEN);
1379         err = hermes_enable_port(hw, 0);
1380         if (err) {
1381                 printk(KERN_ERR "%s: Error %d enabling MAC port\n",
1382                        dev->name, err);
1383                 return err;
1384         }
1385
1386         netif_start_queue(dev);
1387
1388         return 0;
1389 }
1390
1391 int __orinoco_down(struct net_device *dev)
1392 {
1393         struct orinoco_private *priv = netdev_priv(dev);
1394         struct hermes *hw = &priv->hw;
1395         int err;
1396
1397         netif_stop_queue(dev);
1398
1399         if (! priv->hw_unavailable) {
1400                 if (! priv->broken_disableport) {
1401                         err = hermes_disable_port(hw, 0);
1402                         if (err) {
1403                                 /* Some firmwares (e.g. Intersil 1.3.x) seem
1404                                  * to have problems disabling the port, oh
1405                                  * well, too bad. */
1406                                 printk(KERN_WARNING "%s: Error %d disabling MAC port\n",
1407                                        dev->name, err);
1408                                 priv->broken_disableport = 1;
1409                         }
1410                 }
1411                 hermes_set_irqmask(hw, 0);
1412                 hermes_write_regn(hw, EVACK, 0xffff);
1413         }
1414         
1415         /* firmware will have to reassociate */
1416         netif_carrier_off(dev);
1417         priv->last_linkstatus = 0xffff;
1418
1419         return 0;
1420 }
1421
1422 int orinoco_reinit_firmware(struct net_device *dev)
1423 {
1424         struct orinoco_private *priv = netdev_priv(dev);
1425         struct hermes *hw = &priv->hw;
1426         int err;
1427
1428         err = hermes_init(hw);
1429         if (err)
1430                 return err;
1431
1432         err = hermes_allocate(hw, priv->nicbuf_size, &priv->txfid);
1433         if (err == -EIO && priv->nicbuf_size > TX_NICBUF_SIZE_BUG) {
1434                 /* Try workaround for old Symbol firmware bug */
1435                 printk(KERN_WARNING "%s: firmware ALLOC bug detected "
1436                        "(old Symbol firmware?). Trying to work around... ",
1437                        dev->name);
1438                 
1439                 priv->nicbuf_size = TX_NICBUF_SIZE_BUG;
1440                 err = hermes_allocate(hw, priv->nicbuf_size, &priv->txfid);
1441                 if (err)
1442                         printk("failed!\n");
1443                 else
1444                         printk("ok.\n");
1445         }
1446
1447         return err;
1448 }
1449
1450 static int __orinoco_hw_set_bitrate(struct orinoco_private *priv)
1451 {
1452         hermes_t *hw = &priv->hw;
1453         int err = 0;
1454
1455         if (priv->bitratemode >= BITRATE_TABLE_SIZE) {
1456                 printk(KERN_ERR "%s: BUG: Invalid bitrate mode %d\n",
1457                        priv->ndev->name, priv->bitratemode);
1458                 return -EINVAL;
1459         }
1460
1461         switch (priv->firmware_type) {
1462         case FIRMWARE_TYPE_AGERE:
1463                 err = hermes_write_wordrec(hw, USER_BAP,
1464                                            HERMES_RID_CNFTXRATECONTROL,
1465                                            bitrate_table[priv->bitratemode].agere_txratectrl);
1466                 break;
1467         case FIRMWARE_TYPE_INTERSIL:
1468         case FIRMWARE_TYPE_SYMBOL:
1469                 err = hermes_write_wordrec(hw, USER_BAP,
1470                                            HERMES_RID_CNFTXRATECONTROL,
1471                                            bitrate_table[priv->bitratemode].intersil_txratectrl);
1472                 break;
1473         default:
1474                 BUG();
1475         }
1476
1477         return err;
1478 }
1479
1480 /* Change the WEP keys and/or the current keys.  Can be called
1481  * either from __orinoco_hw_setup_wep() or directly from
1482  * orinoco_ioctl_setiwencode().  In the later case the association
1483  * with the AP is not broken (if the firmware can handle it),
1484  * which is needed for 802.1x implementations. */
1485 static int __orinoco_hw_setup_wepkeys(struct orinoco_private *priv)
1486 {
1487         hermes_t *hw = &priv->hw;
1488         int err = 0;
1489
1490         switch (priv->firmware_type) {
1491         case FIRMWARE_TYPE_AGERE:
1492                 err = HERMES_WRITE_RECORD(hw, USER_BAP,
1493                                           HERMES_RID_CNFWEPKEYS_AGERE,
1494                                           &priv->keys);
1495                 if (err)
1496                         return err;
1497                 err = hermes_write_wordrec(hw, USER_BAP,
1498                                            HERMES_RID_CNFTXKEY_AGERE,
1499                                            priv->tx_key);
1500                 if (err)
1501                         return err;
1502                 break;
1503         case FIRMWARE_TYPE_INTERSIL:
1504         case FIRMWARE_TYPE_SYMBOL:
1505                 {
1506                         int keylen;
1507                         int i;
1508
1509                         /* Force uniform key length to work around firmware bugs */
1510                         keylen = le16_to_cpu(priv->keys[priv->tx_key].len);
1511                         
1512                         if (keylen > LARGE_KEY_SIZE) {
1513                                 printk(KERN_ERR "%s: BUG: Key %d has oversize length %d.\n",
1514                                        priv->ndev->name, priv->tx_key, keylen);
1515                                 return -E2BIG;
1516                         }
1517
1518                         /* Write all 4 keys */
1519                         for(i = 0; i < ORINOCO_MAX_KEYS; i++) {
1520                                 err = hermes_write_ltv(hw, USER_BAP,
1521                                                        HERMES_RID_CNFDEFAULTKEY0 + i,
1522                                                        HERMES_BYTES_TO_RECLEN(keylen),
1523                                                        priv->keys[i].data);
1524                                 if (err)
1525                                         return err;
1526                         }
1527
1528                         /* Write the index of the key used in transmission */
1529                         err = hermes_write_wordrec(hw, USER_BAP,
1530                                                    HERMES_RID_CNFWEPDEFAULTKEYID,
1531                                                    priv->tx_key);
1532                         if (err)
1533                                 return err;
1534                 }
1535                 break;
1536         }
1537
1538         return 0;
1539 }
1540
1541 static int __orinoco_hw_setup_wep(struct orinoco_private *priv)
1542 {
1543         hermes_t *hw = &priv->hw;
1544         int err = 0;
1545         int master_wep_flag;
1546         int auth_flag;
1547
1548         if (priv->wep_on)
1549                 __orinoco_hw_setup_wepkeys(priv);
1550
1551         if (priv->wep_restrict)
1552                 auth_flag = HERMES_AUTH_SHARED_KEY;
1553         else
1554                 auth_flag = HERMES_AUTH_OPEN;
1555
1556         switch (priv->firmware_type) {
1557         case FIRMWARE_TYPE_AGERE: /* Agere style WEP */
1558                 if (priv->wep_on) {
1559                         /* Enable the shared-key authentication. */
1560                         err = hermes_write_wordrec(hw, USER_BAP,
1561                                                    HERMES_RID_CNFAUTHENTICATION_AGERE,
1562                                                    auth_flag);
1563                 }
1564                 err = hermes_write_wordrec(hw, USER_BAP,
1565                                            HERMES_RID_CNFWEPENABLED_AGERE,
1566                                            priv->wep_on);
1567                 if (err)
1568                         return err;
1569                 break;
1570
1571         case FIRMWARE_TYPE_INTERSIL: /* Intersil style WEP */
1572         case FIRMWARE_TYPE_SYMBOL: /* Symbol style WEP */
1573                 if (priv->wep_on) {
1574                         if (priv->wep_restrict ||
1575                             (priv->firmware_type == FIRMWARE_TYPE_SYMBOL))
1576                                 master_wep_flag = HERMES_WEP_PRIVACY_INVOKED |
1577                                                   HERMES_WEP_EXCL_UNENCRYPTED;
1578                         else
1579                                 master_wep_flag = HERMES_WEP_PRIVACY_INVOKED;
1580
1581                         err = hermes_write_wordrec(hw, USER_BAP,
1582                                                    HERMES_RID_CNFAUTHENTICATION,
1583                                                    auth_flag);
1584                         if (err)
1585                                 return err;
1586                 } else
1587                         master_wep_flag = 0;
1588
1589                 if (priv->iw_mode == IW_MODE_MONITOR)
1590                         master_wep_flag |= HERMES_WEP_HOST_DECRYPT;
1591
1592                 /* Master WEP setting : on/off */
1593                 err = hermes_write_wordrec(hw, USER_BAP,
1594                                            HERMES_RID_CNFWEPFLAGS_INTERSIL,
1595                                            master_wep_flag);
1596                 if (err)
1597                         return err;     
1598
1599                 break;
1600         }
1601
1602         return 0;
1603 }
1604
1605 static int __orinoco_program_rids(struct net_device *dev)
1606 {
1607         struct orinoco_private *priv = netdev_priv(dev);
1608         hermes_t *hw = &priv->hw;
1609         int err;
1610         struct hermes_idstring idbuf;
1611
1612         /* Set the MAC address */
1613         err = hermes_write_ltv(hw, USER_BAP, HERMES_RID_CNFOWNMACADDR,
1614                                HERMES_BYTES_TO_RECLEN(ETH_ALEN), dev->dev_addr);
1615         if (err) {
1616                 printk(KERN_ERR "%s: Error %d setting MAC address\n",
1617                        dev->name, err);
1618                 return err;
1619         }
1620
1621         /* Set up the link mode */
1622         err = hermes_write_wordrec(hw, USER_BAP, HERMES_RID_CNFPORTTYPE,
1623                                    priv->port_type);
1624         if (err) {
1625                 printk(KERN_ERR "%s: Error %d setting port type\n",
1626                        dev->name, err);
1627                 return err;
1628         }
1629         /* Set the channel/frequency */
1630         if (priv->channel != 0 && priv->iw_mode != IW_MODE_INFRA) {
1631                 err = hermes_write_wordrec(hw, USER_BAP,
1632                                            HERMES_RID_CNFOWNCHANNEL,
1633                                            priv->channel);
1634                 if (err) {
1635                         printk(KERN_ERR "%s: Error %d setting channel %d\n",
1636                                dev->name, err, priv->channel);
1637                         return err;
1638                 }
1639         }
1640
1641         if (priv->has_ibss) {
1642                 u16 createibss;
1643
1644                 if ((strlen(priv->desired_essid) == 0) && (priv->createibss)) {
1645                         printk(KERN_WARNING "%s: This firmware requires an "
1646                                "ESSID in IBSS-Ad-Hoc mode.\n", dev->name);
1647                         /* With wvlan_cs, in this case, we would crash.
1648                          * hopefully, this driver will behave better...
1649                          * Jean II */
1650                         createibss = 0;
1651                 } else {
1652                         createibss = priv->createibss;
1653                 }
1654                 
1655                 err = hermes_write_wordrec(hw, USER_BAP,
1656                                            HERMES_RID_CNFCREATEIBSS,
1657                                            createibss);
1658                 if (err) {
1659                         printk(KERN_ERR "%s: Error %d setting CREATEIBSS\n",
1660                                dev->name, err);
1661                         return err;
1662                 }
1663         }
1664
1665         /* Set the desired ESSID */
1666         idbuf.len = cpu_to_le16(strlen(priv->desired_essid));
1667         memcpy(&idbuf.val, priv->desired_essid, sizeof(idbuf.val));
1668         /* WinXP wants partner to configure OWNSSID even in IBSS mode. (jimc) */
1669         err = hermes_write_ltv(hw, USER_BAP, HERMES_RID_CNFOWNSSID,
1670                                HERMES_BYTES_TO_RECLEN(strlen(priv->desired_essid)+2),
1671                                &idbuf);
1672         if (err) {
1673                 printk(KERN_ERR "%s: Error %d setting OWNSSID\n",
1674                        dev->name, err);
1675                 return err;
1676         }
1677         err = hermes_write_ltv(hw, USER_BAP, HERMES_RID_CNFDESIREDSSID,
1678                                HERMES_BYTES_TO_RECLEN(strlen(priv->desired_essid)+2),
1679                                &idbuf);
1680         if (err) {
1681                 printk(KERN_ERR "%s: Error %d setting DESIREDSSID\n",
1682                        dev->name, err);
1683                 return err;
1684         }
1685
1686         /* Set the station name */
1687         idbuf.len = cpu_to_le16(strlen(priv->nick));
1688         memcpy(&idbuf.val, priv->nick, sizeof(idbuf.val));
1689         err = hermes_write_ltv(hw, USER_BAP, HERMES_RID_CNFOWNNAME,
1690                                HERMES_BYTES_TO_RECLEN(strlen(priv->nick)+2),
1691                                &idbuf);
1692         if (err) {
1693                 printk(KERN_ERR "%s: Error %d setting nickname\n",
1694                        dev->name, err);
1695                 return err;
1696         }
1697
1698         /* Set AP density */
1699         if (priv->has_sensitivity) {
1700                 err = hermes_write_wordrec(hw, USER_BAP,
1701                                            HERMES_RID_CNFSYSTEMSCALE,
1702                                            priv->ap_density);
1703                 if (err) {
1704                         printk(KERN_WARNING "%s: Error %d setting SYSTEMSCALE.  "
1705                                "Disabling sensitivity control\n",
1706                                dev->name, err);
1707
1708                         priv->has_sensitivity = 0;
1709                 }
1710         }
1711
1712         /* Set RTS threshold */
1713         err = hermes_write_wordrec(hw, USER_BAP, HERMES_RID_CNFRTSTHRESHOLD,
1714                                    priv->rts_thresh);
1715         if (err) {
1716                 printk(KERN_ERR "%s: Error %d setting RTS threshold\n",
1717                        dev->name, err);
1718                 return err;
1719         }
1720
1721         /* Set fragmentation threshold or MWO robustness */
1722         if (priv->has_mwo)
1723                 err = hermes_write_wordrec(hw, USER_BAP,
1724                                            HERMES_RID_CNFMWOROBUST_AGERE,
1725                                            priv->mwo_robust);
1726         else
1727                 err = hermes_write_wordrec(hw, USER_BAP,
1728                                            HERMES_RID_CNFFRAGMENTATIONTHRESHOLD,
1729                                            priv->frag_thresh);
1730         if (err) {
1731                 printk(KERN_ERR "%s: Error %d setting fragmentation\n",
1732                        dev->name, err);
1733                 return err;
1734         }
1735
1736         /* Set bitrate */
1737         err = __orinoco_hw_set_bitrate(priv);
1738         if (err) {
1739                 printk(KERN_ERR "%s: Error %d setting bitrate\n",
1740                        dev->name, err);
1741                 return err;
1742         }
1743
1744         /* Set power management */
1745         if (priv->has_pm) {
1746                 err = hermes_write_wordrec(hw, USER_BAP,
1747                                            HERMES_RID_CNFPMENABLED,
1748                                            priv->pm_on);
1749                 if (err) {
1750                         printk(KERN_ERR "%s: Error %d setting up PM\n",
1751                                dev->name, err);
1752                         return err;
1753                 }
1754
1755                 err = hermes_write_wordrec(hw, USER_BAP,
1756                                            HERMES_RID_CNFMULTICASTRECEIVE,
1757                                            priv->pm_mcast);
1758                 if (err) {
1759                         printk(KERN_ERR "%s: Error %d setting up PM\n",
1760                                dev->name, err);
1761                         return err;
1762                 }
1763                 err = hermes_write_wordrec(hw, USER_BAP,
1764                                            HERMES_RID_CNFMAXSLEEPDURATION,
1765                                            priv->pm_period);
1766                 if (err) {
1767                         printk(KERN_ERR "%s: Error %d setting up PM\n",
1768                                dev->name, err);
1769                         return err;
1770                 }
1771                 err = hermes_write_wordrec(hw, USER_BAP,
1772                                            HERMES_RID_CNFPMHOLDOVERDURATION,
1773                                            priv->pm_timeout);
1774                 if (err) {
1775                         printk(KERN_ERR "%s: Error %d setting up PM\n",
1776                                dev->name, err);
1777                         return err;
1778                 }
1779         }
1780
1781         /* Set preamble - only for Symbol so far... */
1782         if (priv->has_preamble) {
1783                 err = hermes_write_wordrec(hw, USER_BAP,
1784                                            HERMES_RID_CNFPREAMBLE_SYMBOL,
1785                                            priv->preamble);
1786                 if (err) {
1787                         printk(KERN_ERR "%s: Error %d setting preamble\n",
1788                                dev->name, err);
1789                         return err;
1790                 }
1791         }
1792
1793         /* Set up encryption */
1794         if (priv->has_wep) {
1795                 err = __orinoco_hw_setup_wep(priv);
1796                 if (err) {
1797                         printk(KERN_ERR "%s: Error %d activating WEP\n",
1798                                dev->name, err);
1799                         return err;
1800                 }
1801         }
1802
1803         /* Set promiscuity / multicast*/
1804         priv->promiscuous = 0;
1805         priv->mc_count = 0;
1806         __orinoco_set_multicast_list(dev); /* FIXME: what about the xmit_lock */
1807
1808         return 0;
1809 }
1810
1811 /* FIXME: return int? */
1812 static void
1813 __orinoco_set_multicast_list(struct net_device *dev)
1814 {
1815         struct orinoco_private *priv = netdev_priv(dev);
1816         hermes_t *hw = &priv->hw;
1817         int err = 0;
1818         int promisc, mc_count;
1819
1820         /* The Hermes doesn't seem to have an allmulti mode, so we go
1821          * into promiscuous mode and let the upper levels deal. */
1822         if ( (dev->flags & IFF_PROMISC) || (dev->flags & IFF_ALLMULTI) ||
1823              (dev->mc_count > MAX_MULTICAST(priv)) ) {
1824                 promisc = 1;
1825                 mc_count = 0;
1826         } else {
1827                 promisc = 0;
1828                 mc_count = dev->mc_count;
1829         }
1830
1831         if (promisc != priv->promiscuous) {
1832                 err = hermes_write_wordrec(hw, USER_BAP,
1833                                            HERMES_RID_CNFPROMISCUOUSMODE,
1834                                            promisc);
1835                 if (err) {
1836                         printk(KERN_ERR "%s: Error %d setting PROMISCUOUSMODE to 1.\n",
1837                                dev->name, err);
1838                 } else 
1839                         priv->promiscuous = promisc;
1840         }
1841
1842         if (! promisc && (mc_count || priv->mc_count) ) {
1843                 struct dev_mc_list *p = dev->mc_list;
1844                 struct hermes_multicast mclist;
1845                 int i;
1846
1847                 for (i = 0; i < mc_count; i++) {
1848                         /* paranoia: is list shorter than mc_count? */
1849                         BUG_ON(! p);
1850                         /* paranoia: bad address size in list? */
1851                         BUG_ON(p->dmi_addrlen != ETH_ALEN);
1852                         
1853                         memcpy(mclist.addr[i], p->dmi_addr, ETH_ALEN);
1854                         p = p->next;
1855                 }
1856                 
1857                 if (p)
1858                         printk(KERN_WARNING "%s: Multicast list is "
1859                                "longer than mc_count\n", dev->name);
1860
1861                 err = hermes_write_ltv(hw, USER_BAP, HERMES_RID_CNFGROUPADDRESSES,
1862                                        HERMES_BYTES_TO_RECLEN(priv->mc_count * ETH_ALEN),
1863                                        &mclist);
1864                 if (err)
1865                         printk(KERN_ERR "%s: Error %d setting multicast list.\n",
1866                                dev->name, err);
1867                 else
1868                         priv->mc_count = mc_count;
1869         }
1870
1871         /* Since we can set the promiscuous flag when it wasn't asked
1872            for, make sure the net_device knows about it. */
1873         if (priv->promiscuous)
1874                 dev->flags |= IFF_PROMISC;
1875         else
1876                 dev->flags &= ~IFF_PROMISC;
1877 }
1878
1879 /* This must be called from user context, without locks held - use
1880  * schedule_work() */
1881 static void orinoco_reset(struct net_device *dev)
1882 {
1883         struct orinoco_private *priv = netdev_priv(dev);
1884         struct hermes *hw = &priv->hw;
1885         int err;
1886         unsigned long flags;
1887
1888         if (orinoco_lock(priv, &flags) != 0)
1889                 /* When the hardware becomes available again, whatever
1890                  * detects that is responsible for re-initializing
1891                  * it. So no need for anything further */
1892                 return;
1893
1894         netif_stop_queue(dev);
1895
1896         /* Shut off interrupts.  Depending on what state the hardware
1897          * is in, this might not work, but we'll try anyway */
1898         hermes_set_irqmask(hw, 0);
1899         hermes_write_regn(hw, EVACK, 0xffff);
1900
1901         priv->hw_unavailable++;
1902         priv->last_linkstatus = 0xffff; /* firmware will have to reassociate */
1903         netif_carrier_off(dev);
1904
1905         orinoco_unlock(priv, &flags);
1906
1907         if (priv->hard_reset) {
1908                 err = (*priv->hard_reset)(priv);
1909                 if (err) {
1910                         printk(KERN_ERR "%s: orinoco_reset: Error %d "
1911                                "performing hard reset\n", dev->name, err);
1912                         goto disable;
1913                 }
1914         }
1915
1916         err = orinoco_reinit_firmware(dev);
1917         if (err) {
1918                 printk(KERN_ERR "%s: orinoco_reset: Error %d re-initializing firmware\n",
1919                        dev->name, err);
1920                 goto disable;
1921         }
1922
1923         spin_lock_irq(&priv->lock); /* This has to be called from user context */
1924
1925         priv->hw_unavailable--;
1926
1927         /* priv->open or priv->hw_unavailable might have changed while
1928          * we dropped the lock */
1929         if (priv->open && (! priv->hw_unavailable)) {
1930                 err = __orinoco_up(dev);
1931                 if (err) {
1932                         printk(KERN_ERR "%s: orinoco_reset: Error %d reenabling card\n",
1933                                dev->name, err);
1934                 } else
1935                         dev->trans_start = jiffies;
1936         }
1937
1938         spin_unlock_irq(&priv->lock);
1939
1940         return;
1941  disable:
1942         hermes_set_irqmask(hw, 0);
1943         netif_device_detach(dev);
1944         printk(KERN_ERR "%s: Device has been disabled!\n", dev->name);
1945 }
1946
1947 /********************************************************************/
1948 /* Interrupt handler                                                */
1949 /********************************************************************/
1950
1951 static void __orinoco_ev_tick(struct net_device *dev, hermes_t *hw)
1952 {
1953         printk(KERN_DEBUG "%s: TICK\n", dev->name);
1954 }
1955
1956 static void __orinoco_ev_wterr(struct net_device *dev, hermes_t *hw)
1957 {
1958         /* This seems to happen a fair bit under load, but ignoring it
1959            seems to work fine...*/
1960         printk(KERN_DEBUG "%s: MAC controller error (WTERR). Ignoring.\n",
1961                dev->name);
1962 }
1963
1964 irqreturn_t orinoco_interrupt(int irq, void *dev_id, struct pt_regs *regs)
1965 {
1966         struct net_device *dev = (struct net_device *)dev_id;
1967         struct orinoco_private *priv = netdev_priv(dev);
1968         hermes_t *hw = &priv->hw;
1969         int count = MAX_IRQLOOPS_PER_IRQ;
1970         u16 evstat, events;
1971         /* These are used to detect a runaway interrupt situation */
1972         /* If we get more than MAX_IRQLOOPS_PER_JIFFY iterations in a jiffy,
1973          * we panic and shut down the hardware */
1974         static int last_irq_jiffy = 0; /* jiffies value the last time
1975                                         * we were called */
1976         static int loops_this_jiffy = 0;
1977         unsigned long flags;
1978
1979         if (orinoco_lock(priv, &flags) != 0) {
1980                 /* If hw is unavailable - we don't know if the irq was
1981                  * for us or not */
1982                 return IRQ_HANDLED;
1983         }
1984
1985         evstat = hermes_read_regn(hw, EVSTAT);
1986         events = evstat & hw->inten;
1987         if (! events) {
1988                 orinoco_unlock(priv, &flags);
1989                 return IRQ_NONE;
1990         }
1991         
1992         if (jiffies != last_irq_jiffy)
1993                 loops_this_jiffy = 0;
1994         last_irq_jiffy = jiffies;
1995
1996         while (events && count--) {
1997                 if (++loops_this_jiffy > MAX_IRQLOOPS_PER_JIFFY) {
1998                         printk(KERN_WARNING "%s: IRQ handler is looping too "
1999                                "much! Resetting.\n", dev->name);
2000                         /* Disable interrupts for now */
2001                         hermes_set_irqmask(hw, 0);
2002                         schedule_work(&priv->reset_work);
2003                         break;
2004                 }
2005
2006                 /* Check the card hasn't been removed */
2007                 if (! hermes_present(hw)) {
2008                         DEBUG(0, "orinoco_interrupt(): card removed\n");
2009                         break;
2010                 }
2011
2012                 if (events & HERMES_EV_TICK)
2013                         __orinoco_ev_tick(dev, hw);
2014                 if (events & HERMES_EV_WTERR)
2015                         __orinoco_ev_wterr(dev, hw);
2016                 if (events & HERMES_EV_INFDROP)
2017                         __orinoco_ev_infdrop(dev, hw);
2018                 if (events & HERMES_EV_INFO)
2019                         __orinoco_ev_info(dev, hw);
2020                 if (events & HERMES_EV_RX)
2021                         __orinoco_ev_rx(dev, hw);
2022                 if (events & HERMES_EV_TXEXC)
2023                         __orinoco_ev_txexc(dev, hw);
2024                 if (events & HERMES_EV_TX)
2025                         __orinoco_ev_tx(dev, hw);
2026                 if (events & HERMES_EV_ALLOC)
2027                         __orinoco_ev_alloc(dev, hw);
2028                 
2029                 hermes_write_regn(hw, EVACK, evstat);
2030
2031                 evstat = hermes_read_regn(hw, EVSTAT);
2032                 events = evstat & hw->inten;
2033         };
2034
2035         orinoco_unlock(priv, &flags);
2036         return IRQ_HANDLED;
2037 }
2038
2039 /********************************************************************/
2040 /* Initialization                                                   */
2041 /********************************************************************/
2042
2043 struct comp_id {
2044         u16 id, variant, major, minor;
2045 } __attribute__ ((packed));
2046
2047 static inline fwtype_t determine_firmware_type(struct comp_id *nic_id)
2048 {
2049         if (nic_id->id < 0x8000)
2050                 return FIRMWARE_TYPE_AGERE;
2051         else if (nic_id->id == 0x8000 && nic_id->major == 0)
2052                 return FIRMWARE_TYPE_SYMBOL;
2053         else
2054                 return FIRMWARE_TYPE_INTERSIL;
2055 }
2056
2057 /* Set priv->firmware type, determine firmware properties */
2058 static int determine_firmware(struct net_device *dev)
2059 {
2060         struct orinoco_private *priv = netdev_priv(dev);
2061         hermes_t *hw = &priv->hw;
2062         int err;
2063         struct comp_id nic_id, sta_id;
2064         unsigned int firmver;
2065         char tmp[SYMBOL_MAX_VER_LEN+1];
2066
2067         /* Get the hardware version */
2068         err = HERMES_READ_RECORD(hw, USER_BAP, HERMES_RID_NICID, &nic_id);
2069         if (err) {
2070                 printk(KERN_ERR "%s: Cannot read hardware identity: error %d\n",
2071                        dev->name, err);
2072                 return err;
2073         }
2074
2075         le16_to_cpus(&nic_id.id);
2076         le16_to_cpus(&nic_id.variant);
2077         le16_to_cpus(&nic_id.major);
2078         le16_to_cpus(&nic_id.minor);
2079         printk(KERN_DEBUG "%s: Hardware identity %04x:%04x:%04x:%04x\n",
2080                dev->name, nic_id.id, nic_id.variant,
2081                nic_id.major, nic_id.minor);
2082
2083         priv->firmware_type = determine_firmware_type(&nic_id);
2084
2085         /* Get the firmware version */
2086         err = HERMES_READ_RECORD(hw, USER_BAP, HERMES_RID_STAID, &sta_id);
2087         if (err) {
2088                 printk(KERN_ERR "%s: Cannot read station identity: error %d\n",
2089                        dev->name, err);
2090                 return err;
2091         }
2092
2093         le16_to_cpus(&sta_id.id);
2094         le16_to_cpus(&sta_id.variant);
2095         le16_to_cpus(&sta_id.major);
2096         le16_to_cpus(&sta_id.minor);
2097         printk(KERN_DEBUG "%s: Station identity  %04x:%04x:%04x:%04x\n",
2098                dev->name, sta_id.id, sta_id.variant,
2099                sta_id.major, sta_id.minor);
2100
2101         switch (sta_id.id) {
2102         case 0x15:
2103                 printk(KERN_ERR "%s: Primary firmware is active\n",
2104                        dev->name);
2105                 return -ENODEV;
2106         case 0x14b:
2107                 printk(KERN_ERR "%s: Tertiary firmware is active\n",
2108                        dev->name);
2109                 return -ENODEV;
2110         case 0x1f:      /* Intersil, Agere, Symbol Spectrum24 */
2111         case 0x21:      /* Symbol Spectrum24 Trilogy */
2112                 break;
2113         default:
2114                 printk(KERN_NOTICE "%s: Unknown station ID, please report\n",
2115                        dev->name);
2116                 break;
2117         }
2118
2119         /* Default capabilities */
2120         priv->has_sensitivity = 1;
2121         priv->has_mwo = 0;
2122         priv->has_preamble = 0;
2123         priv->has_port3 = 1;
2124         priv->has_ibss = 1;
2125         priv->has_wep = 0;
2126         priv->has_big_wep = 0;
2127
2128         /* Determine capabilities from the firmware version */
2129         switch (priv->firmware_type) {
2130         case FIRMWARE_TYPE_AGERE:
2131                 /* Lucent Wavelan IEEE, Lucent Orinoco, Cabletron RoamAbout,
2132                    ELSA, Melco, HP, IBM, Dell 1150, Compaq 110/210 */
2133                 snprintf(priv->fw_name, sizeof(priv->fw_name) - 1,
2134                          "Lucent/Agere %d.%02d", sta_id.major, sta_id.minor);
2135
2136                 firmver = ((unsigned long)sta_id.major << 16) | sta_id.minor;
2137
2138                 priv->has_ibss = (firmver >= 0x60006);
2139                 priv->has_wep = (firmver >= 0x40020);
2140                 priv->has_big_wep = 1; /* FIXME: this is wrong - how do we tell
2141                                           Gold cards from the others? */
2142                 priv->has_mwo = (firmver >= 0x60000);
2143                 priv->has_pm = (firmver >= 0x40020); /* Don't work in 7.52 ? */
2144                 priv->ibss_port = 1;
2145
2146                 /* Tested with Agere firmware :
2147                  *      1.16 ; 4.08 ; 4.52 ; 6.04 ; 6.16 ; 7.28 => Jean II
2148                  * Tested CableTron firmware : 4.32 => Anton */
2149                 break;
2150         case FIRMWARE_TYPE_SYMBOL:
2151                 /* Symbol , 3Com AirConnect, Intel, Ericsson WLAN */
2152                 /* Intel MAC : 00:02:B3:* */
2153                 /* 3Com MAC : 00:50:DA:* */
2154                 memset(tmp, 0, sizeof(tmp));
2155                 /* Get the Symbol firmware version */
2156                 err = hermes_read_ltv(hw, USER_BAP,
2157                                       HERMES_RID_SECONDARYVERSION_SYMBOL,
2158                                       SYMBOL_MAX_VER_LEN, NULL, &tmp);
2159                 if (err) {
2160                         printk(KERN_WARNING
2161                                "%s: Error %d reading Symbol firmware info. Wildly guessing capabilities...\n",
2162                                dev->name, err);
2163                         firmver = 0;
2164                         tmp[0] = '\0';
2165                 } else {
2166                         /* The firmware revision is a string, the format is
2167                          * something like : "V2.20-01".
2168                          * Quick and dirty parsing... - Jean II
2169                          */
2170                         firmver = ((tmp[1] - '0') << 16) | ((tmp[3] - '0') << 12)
2171                                 | ((tmp[4] - '0') << 8) | ((tmp[6] - '0') << 4)
2172                                 | (tmp[7] - '0');
2173
2174                         tmp[SYMBOL_MAX_VER_LEN] = '\0';
2175                 }
2176
2177                 snprintf(priv->fw_name, sizeof(priv->fw_name) - 1,
2178                          "Symbol %s", tmp);
2179
2180                 priv->has_ibss = (firmver >= 0x20000);
2181                 priv->has_wep = (firmver >= 0x15012);
2182                 priv->has_big_wep = (firmver >= 0x20000);
2183                 priv->has_pm = (firmver >= 0x20000 && firmver < 0x22000) || 
2184                                (firmver >= 0x29000 && firmver < 0x30000) ||
2185                                firmver >= 0x31000;
2186                 priv->has_preamble = (firmver >= 0x20000);
2187                 priv->ibss_port = 4;
2188                 priv->broken_disableport = (firmver == 0x25013) ||
2189                                            (firmver >= 0x30000 && firmver <= 0x31000);
2190                 /* Tested with Intel firmware : 0x20015 => Jean II */
2191                 /* Tested with 3Com firmware : 0x15012 & 0x22001 => Jean II */
2192                 break;
2193         case FIRMWARE_TYPE_INTERSIL:
2194                 /* D-Link, Linksys, Adtron, ZoomAir, and many others...
2195                  * Samsung, Compaq 100/200 and Proxim are slightly
2196                  * different and less well tested */
2197                 /* D-Link MAC : 00:40:05:* */
2198                 /* Addtron MAC : 00:90:D1:* */
2199                 snprintf(priv->fw_name, sizeof(priv->fw_name) - 1,
2200                          "Intersil %d.%d.%d", sta_id.major, sta_id.minor,
2201                          sta_id.variant);
2202
2203                 firmver = ((unsigned long)sta_id.major << 16) |
2204                         ((unsigned long)sta_id.minor << 8) | sta_id.variant;
2205
2206                 priv->has_ibss = (firmver >= 0x000700); /* FIXME */
2207                 priv->has_big_wep = priv->has_wep = (firmver >= 0x000800);
2208                 priv->has_pm = (firmver >= 0x000700);
2209
2210                 if (firmver >= 0x000800)
2211                         priv->ibss_port = 0;
2212                 else {
2213                         printk(KERN_NOTICE "%s: Intersil firmware earlier "
2214                                "than v0.8.x - several features not supported\n",
2215                                dev->name);
2216                         priv->ibss_port = 1;
2217                 }
2218                 break;
2219         }
2220         printk(KERN_DEBUG "%s: Firmware determined as %s\n", dev->name,
2221                priv->fw_name);
2222
2223         return 0;
2224 }
2225
2226 static int orinoco_init(struct net_device *dev)
2227 {
2228         struct orinoco_private *priv = netdev_priv(dev);
2229         hermes_t *hw = &priv->hw;
2230         int err = 0;
2231         struct hermes_idstring nickbuf;
2232         u16 reclen;
2233         int len;
2234
2235         TRACE_ENTER(dev->name);
2236
2237         /* No need to lock, the hw_unavailable flag is already set in
2238          * alloc_orinocodev() */
2239         priv->nicbuf_size = IEEE802_11_FRAME_LEN + ETH_HLEN;
2240
2241         /* Initialize the firmware */
2242         err = orinoco_reinit_firmware(dev);
2243         if (err != 0) {
2244                 printk(KERN_ERR "%s: failed to initialize firmware (err = %d)\n",
2245                        dev->name, err);
2246                 goto out;
2247         }
2248
2249         err = determine_firmware(dev);
2250         if (err != 0) {
2251                 printk(KERN_ERR "%s: Incompatible firmware, aborting\n",
2252                        dev->name);
2253                 goto out;
2254         }
2255
2256         if (priv->has_port3)
2257                 printk(KERN_DEBUG "%s: Ad-hoc demo mode supported\n", dev->name);
2258         if (priv->has_ibss)
2259                 printk(KERN_DEBUG "%s: IEEE standard IBSS ad-hoc mode supported\n",
2260                        dev->name);
2261         if (priv->has_wep) {
2262                 printk(KERN_DEBUG "%s: WEP supported, ", dev->name);
2263                 if (priv->has_big_wep)
2264                         printk("104-bit key\n");
2265                 else
2266                         printk("40-bit key\n");
2267         }
2268
2269         /* Get the MAC address */
2270         err = hermes_read_ltv(hw, USER_BAP, HERMES_RID_CNFOWNMACADDR,
2271                               ETH_ALEN, NULL, dev->dev_addr);
2272         if (err) {
2273                 printk(KERN_WARNING "%s: failed to read MAC address!\n",
2274                        dev->name);
2275                 goto out;
2276         }
2277
2278         printk(KERN_DEBUG "%s: MAC address %02X:%02X:%02X:%02X:%02X:%02X\n",
2279                dev->name, dev->dev_addr[0], dev->dev_addr[1],
2280                dev->dev_addr[2], dev->dev_addr[3], dev->dev_addr[4],
2281                dev->dev_addr[5]);
2282
2283         /* Get the station name */
2284         err = hermes_read_ltv(hw, USER_BAP, HERMES_RID_CNFOWNNAME,
2285                               sizeof(nickbuf), &reclen, &nickbuf);
2286         if (err) {
2287                 printk(KERN_ERR "%s: failed to read station name\n",
2288                        dev->name);
2289                 goto out;
2290         }
2291         if (nickbuf.len)
2292                 len = min(IW_ESSID_MAX_SIZE, (int)le16_to_cpu(nickbuf.len));
2293         else
2294                 len = min(IW_ESSID_MAX_SIZE, 2 * reclen);
2295         memcpy(priv->nick, &nickbuf.val, len);
2296         priv->nick[len] = '\0';
2297
2298         printk(KERN_DEBUG "%s: Station name \"%s\"\n", dev->name, priv->nick);
2299
2300         /* Get allowed channels */
2301         err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CHANNELLIST,
2302                                   &priv->channel_mask);
2303         if (err) {
2304                 printk(KERN_ERR "%s: failed to read channel list!\n",
2305                        dev->name);
2306                 goto out;
2307         }
2308
2309         /* Get initial AP density */
2310         err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFSYSTEMSCALE,
2311                                   &priv->ap_density);
2312         if (err || priv->ap_density < 1 || priv->ap_density > 3) {
2313                 priv->has_sensitivity = 0;
2314         }
2315
2316         /* Get initial RTS threshold */
2317         err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFRTSTHRESHOLD,
2318                                   &priv->rts_thresh);
2319         if (err) {
2320                 printk(KERN_ERR "%s: failed to read RTS threshold!\n",
2321                        dev->name);
2322                 goto out;
2323         }
2324
2325         /* Get initial fragmentation settings */
2326         if (priv->has_mwo)
2327                 err = hermes_read_wordrec(hw, USER_BAP,
2328                                           HERMES_RID_CNFMWOROBUST_AGERE,
2329                                           &priv->mwo_robust);
2330         else
2331                 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFFRAGMENTATIONTHRESHOLD,
2332                                           &priv->frag_thresh);
2333         if (err) {
2334                 printk(KERN_ERR "%s: failed to read fragmentation settings!\n",
2335                        dev->name);
2336                 goto out;
2337         }
2338
2339         /* Power management setup */
2340         if (priv->has_pm) {
2341                 priv->pm_on = 0;
2342                 priv->pm_mcast = 1;
2343                 err = hermes_read_wordrec(hw, USER_BAP,
2344                                           HERMES_RID_CNFMAXSLEEPDURATION,
2345                                           &priv->pm_period);
2346                 if (err) {
2347                         printk(KERN_ERR "%s: failed to read power management period!\n",
2348                                dev->name);
2349                         goto out;
2350                 }
2351                 err = hermes_read_wordrec(hw, USER_BAP,
2352                                           HERMES_RID_CNFPMHOLDOVERDURATION,
2353                                           &priv->pm_timeout);
2354                 if (err) {
2355                         printk(KERN_ERR "%s: failed to read power management timeout!\n",
2356                                dev->name);
2357                         goto out;
2358                 }
2359         }
2360
2361         /* Preamble setup */
2362         if (priv->has_preamble) {
2363                 err = hermes_read_wordrec(hw, USER_BAP,
2364                                           HERMES_RID_CNFPREAMBLE_SYMBOL,
2365                                           &priv->preamble);
2366                 if (err)
2367                         goto out;
2368         }
2369                 
2370         /* Set up the default configuration */
2371         priv->iw_mode = IW_MODE_INFRA;
2372         /* By default use IEEE/IBSS ad-hoc mode if we have it */
2373         priv->prefer_port3 = priv->has_port3 && (! priv->has_ibss);
2374         set_port_type(priv);
2375         priv->channel = 0; /* use firmware default */
2376
2377         priv->promiscuous = 0;
2378         priv->wep_on = 0;
2379         priv->tx_key = 0;
2380
2381         /* Make the hardware available, as long as it hasn't been
2382          * removed elsewhere (e.g. by PCMCIA hot unplug) */
2383         spin_lock_irq(&priv->lock);
2384         priv->hw_unavailable--;
2385         spin_unlock_irq(&priv->lock);
2386
2387         printk(KERN_DEBUG "%s: ready\n", dev->name);
2388
2389  out:
2390         TRACE_EXIT(dev->name);
2391         return err;
2392 }
2393
2394 struct net_device *alloc_orinocodev(int sizeof_card,
2395                                     int (*hard_reset)(struct orinoco_private *))
2396 {
2397         struct net_device *dev;
2398         struct orinoco_private *priv;
2399
2400         dev = alloc_etherdev(sizeof(struct orinoco_private) + sizeof_card);
2401         if (! dev)
2402                 return NULL;
2403         priv = netdev_priv(dev);
2404         priv->ndev = dev;
2405         if (sizeof_card)
2406                 priv->card = (void *)((unsigned long)priv
2407                                       + sizeof(struct orinoco_private));
2408         else
2409                 priv->card = NULL;
2410
2411         /* Setup / override net_device fields */
2412         dev->init = orinoco_init;
2413         dev->hard_start_xmit = orinoco_xmit;
2414         dev->tx_timeout = orinoco_tx_timeout;
2415         dev->watchdog_timeo = HZ; /* 1 second timeout */
2416         dev->get_stats = orinoco_get_stats;
2417         dev->ethtool_ops = &orinoco_ethtool_ops;
2418         dev->get_wireless_stats = orinoco_get_wireless_stats;
2419         dev->wireless_handlers = (struct iw_handler_def *)&orinoco_handler_def;
2420         dev->change_mtu = orinoco_change_mtu;
2421         dev->set_multicast_list = orinoco_set_multicast_list;
2422         /* we use the default eth_mac_addr for setting the MAC addr */
2423
2424         /* Set up default callbacks */
2425         dev->open = orinoco_open;
2426         dev->stop = orinoco_stop;
2427         priv->hard_reset = hard_reset;
2428
2429         spin_lock_init(&priv->lock);
2430         priv->open = 0;
2431         priv->hw_unavailable = 1; /* orinoco_init() must clear this
2432                                    * before anything else touches the
2433                                    * hardware */
2434         INIT_WORK(&priv->reset_work, (void (*)(void *))orinoco_reset, dev);
2435
2436         netif_carrier_off(dev);
2437         priv->last_linkstatus = 0xffff;
2438
2439         return dev;
2440
2441 }
2442
2443 void free_orinocodev(struct net_device *dev)
2444 {
2445         free_netdev(dev);
2446 }
2447
2448 /********************************************************************/
2449 /* Wireless extensions                                              */
2450 /********************************************************************/
2451
2452 static int orinoco_hw_get_essid(struct orinoco_private *priv, int *active,
2453                                 char buf[IW_ESSID_MAX_SIZE+1])
2454 {
2455         hermes_t *hw = &priv->hw;
2456         int err = 0;
2457         struct hermes_idstring essidbuf;
2458         char *p = (char *)(&essidbuf.val);
2459         int len;
2460         unsigned long flags;
2461
2462         if (orinoco_lock(priv, &flags) != 0)
2463                 return -EBUSY;
2464
2465         if (strlen(priv->desired_essid) > 0) {
2466                 /* We read the desired SSID from the hardware rather
2467                    than from priv->desired_essid, just in case the
2468                    firmware is allowed to change it on us. I'm not
2469                    sure about this */
2470                 /* My guess is that the OWNSSID should always be whatever
2471                  * we set to the card, whereas CURRENT_SSID is the one that
2472                  * may change... - Jean II */
2473                 u16 rid;
2474
2475                 *active = 1;
2476
2477                 rid = (priv->port_type == 3) ? HERMES_RID_CNFOWNSSID :
2478                         HERMES_RID_CNFDESIREDSSID;
2479                 
2480                 err = hermes_read_ltv(hw, USER_BAP, rid, sizeof(essidbuf),
2481                                       NULL, &essidbuf);
2482                 if (err)
2483                         goto fail_unlock;
2484         } else {
2485                 *active = 0;
2486
2487                 err = hermes_read_ltv(hw, USER_BAP, HERMES_RID_CURRENTSSID,
2488                                       sizeof(essidbuf), NULL, &essidbuf);
2489                 if (err)
2490                         goto fail_unlock;
2491         }
2492
2493         len = le16_to_cpu(essidbuf.len);
2494         BUG_ON(len > IW_ESSID_MAX_SIZE);
2495
2496         memset(buf, 0, IW_ESSID_MAX_SIZE+1);
2497         memcpy(buf, p, len);
2498         buf[len] = '\0';
2499
2500  fail_unlock:
2501         orinoco_unlock(priv, &flags);
2502
2503         return err;       
2504 }
2505
2506 static long orinoco_hw_get_freq(struct orinoco_private *priv)
2507 {
2508         
2509         hermes_t *hw = &priv->hw;
2510         int err = 0;
2511         u16 channel;
2512         long freq = 0;
2513         unsigned long flags;
2514
2515         if (orinoco_lock(priv, &flags) != 0)
2516                 return -EBUSY;
2517         
2518         err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CURRENTCHANNEL, &channel);
2519         if (err)
2520                 goto out;
2521
2522         /* Intersil firmware 1.3.5 returns 0 when the interface is down */
2523         if (channel == 0) {
2524                 err = -EBUSY;
2525                 goto out;
2526         }
2527
2528         if ( (channel < 1) || (channel > NUM_CHANNELS) ) {
2529                 printk(KERN_WARNING "%s: Channel out of range (%d)!\n",
2530                        priv->ndev->name, channel);
2531                 err = -EBUSY;
2532                 goto out;
2533
2534         }
2535         freq = channel_frequency[channel-1] * 100000;
2536
2537  out:
2538         orinoco_unlock(priv, &flags);
2539
2540         if (err > 0)
2541                 err = -EBUSY;
2542         return err ? err : freq;
2543 }
2544
2545 static int orinoco_hw_get_bitratelist(struct orinoco_private *priv,
2546                                       int *numrates, s32 *rates, int max)
2547 {
2548         hermes_t *hw = &priv->hw;
2549         struct hermes_idstring list;
2550         unsigned char *p = (unsigned char *)&list.val;
2551         int err = 0;
2552         int num;
2553         int i;
2554         unsigned long flags;
2555
2556         if (orinoco_lock(priv, &flags) != 0)
2557                 return -EBUSY;
2558
2559         err = hermes_read_ltv(hw, USER_BAP, HERMES_RID_SUPPORTEDDATARATES,
2560                               sizeof(list), NULL, &list);
2561         orinoco_unlock(priv, &flags);
2562
2563         if (err)
2564                 return err;
2565         
2566         num = le16_to_cpu(list.len);
2567         *numrates = num;
2568         num = min(num, max);
2569
2570         for (i = 0; i < num; i++) {
2571                 rates[i] = (p[i] & 0x7f) * 500000; /* convert to bps */
2572         }
2573
2574         return 0;
2575 }
2576
2577 static int orinoco_ioctl_getname(struct net_device *dev,
2578                                  struct iw_request_info *info,
2579                                  char *name,
2580                                  char *extra)
2581 {
2582         struct orinoco_private *priv = netdev_priv(dev);
2583         int numrates;
2584         int err;
2585
2586         err = orinoco_hw_get_bitratelist(priv, &numrates, NULL, 0);
2587
2588         if (!err && (numrates > 2))
2589                 strcpy(name, "IEEE 802.11b");
2590         else
2591                 strcpy(name, "IEEE 802.11-DS");
2592
2593         return 0;
2594 }
2595
2596 static int orinoco_ioctl_getwap(struct net_device *dev,
2597                                 struct iw_request_info *info,
2598                                 struct sockaddr *ap_addr,
2599                                 char *extra)
2600 {
2601         struct orinoco_private *priv = netdev_priv(dev);
2602
2603         hermes_t *hw = &priv->hw;
2604         int err = 0;
2605         unsigned long flags;
2606
2607         if (orinoco_lock(priv, &flags) != 0)
2608                 return -EBUSY;
2609
2610         ap_addr->sa_family = ARPHRD_ETHER;
2611         err = hermes_read_ltv(hw, USER_BAP, HERMES_RID_CURRENTBSSID,
2612                               ETH_ALEN, NULL, ap_addr->sa_data);
2613
2614         orinoco_unlock(priv, &flags);
2615
2616         return err;
2617 }
2618
2619 static int orinoco_ioctl_setmode(struct net_device *dev,
2620                                  struct iw_request_info *info,
2621                                  u32 *mode,
2622                                  char *extra)
2623 {
2624         struct orinoco_private *priv = netdev_priv(dev);
2625         int err = -EINPROGRESS;         /* Call commit handler */
2626         unsigned long flags;
2627
2628         if (priv->iw_mode == *mode)
2629                 return 0;
2630
2631         if (orinoco_lock(priv, &flags) != 0)
2632                 return -EBUSY;
2633
2634         switch (*mode) {
2635         case IW_MODE_ADHOC:
2636                 if (!priv->has_ibss && !priv->has_port3)
2637                         err = -EOPNOTSUPP;
2638                 break;
2639
2640         case IW_MODE_INFRA:
2641                 break;
2642
2643         default:
2644                 err = -EOPNOTSUPP;
2645                 break;
2646         }
2647
2648         if (err == -EINPROGRESS) {
2649                 priv->iw_mode = *mode;
2650                 set_port_type(priv);
2651         }
2652
2653         orinoco_unlock(priv, &flags);
2654
2655         return err;
2656 }
2657
2658 static int orinoco_ioctl_getmode(struct net_device *dev,
2659                                  struct iw_request_info *info,
2660                                  u32 *mode,
2661                                  char *extra)
2662 {
2663         struct orinoco_private *priv = netdev_priv(dev);
2664
2665         *mode = priv->iw_mode;
2666         return 0;
2667 }
2668
2669 static int orinoco_ioctl_getiwrange(struct net_device *dev,
2670                                     struct iw_request_info *info,
2671                                     struct iw_point *rrq,
2672                                     char *extra)
2673 {
2674         struct orinoco_private *priv = netdev_priv(dev);
2675         int err = 0;
2676         struct iw_range *range = (struct iw_range *) extra;
2677         int numrates;
2678         int i, k;
2679
2680         TRACE_ENTER(dev->name);
2681
2682         rrq->length = sizeof(struct iw_range);
2683         memset(range, 0, sizeof(struct iw_range));
2684
2685         range->we_version_compiled = WIRELESS_EXT;
2686         range->we_version_source = 14;
2687
2688         /* Set available channels/frequencies */
2689         range->num_channels = NUM_CHANNELS;
2690         k = 0;
2691         for (i = 0; i < NUM_CHANNELS; i++) {
2692                 if (priv->channel_mask & (1 << i)) {
2693                         range->freq[k].i = i + 1;
2694                         range->freq[k].m = channel_frequency[i] * 100000;
2695                         range->freq[k].e = 1;
2696                         k++;
2697                 }
2698                 
2699                 if (k >= IW_MAX_FREQUENCIES)
2700                         break;
2701         }
2702         range->num_frequency = k;
2703         range->sensitivity = 3;
2704
2705         if (priv->has_wep) {
2706                 range->max_encoding_tokens = ORINOCO_MAX_KEYS;
2707                 range->encoding_size[0] = SMALL_KEY_SIZE;
2708                 range->num_encoding_sizes = 1;
2709
2710                 if (priv->has_big_wep) {
2711                         range->encoding_size[1] = LARGE_KEY_SIZE;
2712                         range->num_encoding_sizes = 2;
2713                 }
2714         }
2715
2716         if ((priv->iw_mode == IW_MODE_ADHOC) && (priv->spy_number == 0)){
2717                 /* Quality stats meaningless in ad-hoc mode */
2718         } else {
2719                 range->max_qual.qual = 0x8b - 0x2f;
2720                 range->max_qual.level = 0x2f - 0x95 - 1;
2721                 range->max_qual.noise = 0x2f - 0x95 - 1;
2722                 /* Need to get better values */
2723                 range->avg_qual.qual = 0x24;
2724                 range->avg_qual.level = 0xC2;
2725                 range->avg_qual.noise = 0x9E;
2726         }
2727
2728         err = orinoco_hw_get_bitratelist(priv, &numrates,
2729                                          range->bitrate, IW_MAX_BITRATES);
2730         if (err)
2731                 return err;
2732         range->num_bitrates = numrates;
2733
2734         /* Set an indication of the max TCP throughput in bit/s that we can
2735          * expect using this interface. May be use for QoS stuff...
2736          * Jean II */
2737         if (numrates > 2)
2738                 range->throughput = 5 * 1000 * 1000;    /* ~5 Mb/s */
2739         else
2740                 range->throughput = 1.5 * 1000 * 1000;  /* ~1.5 Mb/s */
2741
2742         range->min_rts = 0;
2743         range->max_rts = 2347;
2744         range->min_frag = 256;
2745         range->max_frag = 2346;
2746
2747         range->min_pmp = 0;
2748         range->max_pmp = 65535000;
2749         range->min_pmt = 0;
2750         range->max_pmt = 65535 * 1000;  /* ??? */
2751         range->pmp_flags = IW_POWER_PERIOD;
2752         range->pmt_flags = IW_POWER_TIMEOUT;
2753         range->pm_capa = IW_POWER_PERIOD | IW_POWER_TIMEOUT | IW_POWER_UNICAST_R;
2754
2755         range->retry_capa = IW_RETRY_LIMIT | IW_RETRY_LIFETIME;
2756         range->retry_flags = IW_RETRY_LIMIT;
2757         range->r_time_flags = IW_RETRY_LIFETIME;
2758         range->min_retry = 0;
2759         range->max_retry = 65535;       /* ??? */
2760         range->min_r_time = 0;
2761         range->max_r_time = 65535 * 1000;       /* ??? */
2762
2763         TRACE_EXIT(dev->name);
2764
2765         return 0;
2766 }
2767
2768 static int orinoco_ioctl_setiwencode(struct net_device *dev,
2769                                      struct iw_request_info *info,
2770                                      struct iw_point *erq,
2771                                      char *keybuf)
2772 {
2773         struct orinoco_private *priv = netdev_priv(dev);
2774         int index = (erq->flags & IW_ENCODE_INDEX) - 1;
2775         int setindex = priv->tx_key;
2776         int enable = priv->wep_on;
2777         int restricted = priv->wep_restrict;
2778         u16 xlen = 0;
2779         int err = -EINPROGRESS;         /* Call commit handler */
2780         unsigned long flags;
2781
2782         if (! priv->has_wep)
2783                 return -EOPNOTSUPP;
2784
2785         if (erq->pointer) {
2786                 /* We actually have a key to set - check its length */
2787                 if (erq->length > LARGE_KEY_SIZE)
2788                         return -E2BIG;
2789
2790                 if ( (erq->length > SMALL_KEY_SIZE) && !priv->has_big_wep )
2791                         return -E2BIG;
2792         }
2793
2794         if (orinoco_lock(priv, &flags) != 0)
2795                 return -EBUSY;
2796
2797         if (erq->pointer) {
2798                 if ((index < 0) || (index >= ORINOCO_MAX_KEYS))
2799                         index = priv->tx_key;
2800
2801                 /* Adjust key length to a supported value */
2802                 if (erq->length > SMALL_KEY_SIZE) {
2803                         xlen = LARGE_KEY_SIZE;
2804                 } else if (erq->length > 0) {
2805                         xlen = SMALL_KEY_SIZE;
2806                 } else
2807                         xlen = 0;
2808
2809                 /* Switch on WEP if off */
2810                 if ((!enable) && (xlen > 0)) {
2811                         setindex = index;
2812                         enable = 1;
2813                 }
2814         } else {
2815                 /* Important note : if the user do "iwconfig eth0 enc off",
2816                  * we will arrive there with an index of -1. This is valid
2817                  * but need to be taken care off... Jean II */
2818                 if ((index < 0) || (index >= ORINOCO_MAX_KEYS)) {
2819                         if((index != -1) || (erq->flags == 0)) {
2820                                 err = -EINVAL;
2821                                 goto out;
2822                         }
2823                 } else {
2824                         /* Set the index : Check that the key is valid */
2825                         if(priv->keys[index].len == 0) {
2826                                 err = -EINVAL;
2827                                 goto out;
2828                         }
2829                         setindex = index;
2830                 }
2831         }
2832
2833         if (erq->flags & IW_ENCODE_DISABLED)
2834                 enable = 0;
2835         if (erq->flags & IW_ENCODE_OPEN)
2836                 restricted = 0;
2837         if (erq->flags & IW_ENCODE_RESTRICTED)
2838                 restricted = 1;
2839
2840         if (erq->pointer) {
2841                 priv->keys[index].len = cpu_to_le16(xlen);
2842                 memset(priv->keys[index].data, 0,
2843                        sizeof(priv->keys[index].data));
2844                 memcpy(priv->keys[index].data, keybuf, erq->length);
2845         }
2846         priv->tx_key = setindex;
2847
2848         /* Try fast key change if connected and only keys are changed */
2849         if (priv->wep_on && enable && (priv->wep_restrict == restricted) &&
2850             netif_carrier_ok(dev)) {
2851                 err = __orinoco_hw_setup_wepkeys(priv);
2852                 /* No need to commit if successful */
2853                 goto out;
2854         }
2855
2856         priv->wep_on = enable;
2857         priv->wep_restrict = restricted;
2858
2859  out:
2860         orinoco_unlock(priv, &flags);
2861
2862         return err;
2863 }
2864
2865 static int orinoco_ioctl_getiwencode(struct net_device *dev,
2866                                      struct iw_request_info *info,
2867                                      struct iw_point *erq,
2868                                      char *keybuf)
2869 {
2870         struct orinoco_private *priv = netdev_priv(dev);
2871         int index = (erq->flags & IW_ENCODE_INDEX) - 1;
2872         u16 xlen = 0;
2873         unsigned long flags;
2874
2875         if (! priv->has_wep)
2876                 return -EOPNOTSUPP;
2877
2878         if (orinoco_lock(priv, &flags) != 0)
2879                 return -EBUSY;
2880
2881         if ((index < 0) || (index >= ORINOCO_MAX_KEYS))
2882                 index = priv->tx_key;
2883
2884         erq->flags = 0;
2885         if (! priv->wep_on)
2886                 erq->flags |= IW_ENCODE_DISABLED;
2887         erq->flags |= index + 1;
2888
2889         if (priv->wep_restrict)
2890                 erq->flags |= IW_ENCODE_RESTRICTED;
2891         else
2892                 erq->flags |= IW_ENCODE_OPEN;
2893
2894         xlen = le16_to_cpu(priv->keys[index].len);
2895
2896         erq->length = xlen;
2897
2898         memcpy(keybuf, priv->keys[index].data, ORINOCO_MAX_KEY_SIZE);
2899
2900         orinoco_unlock(priv, &flags);
2901         return 0;
2902 }
2903
2904 static int orinoco_ioctl_setessid(struct net_device *dev,
2905                                   struct iw_request_info *info,
2906                                   struct iw_point *erq,
2907                                   char *essidbuf)
2908 {
2909         struct orinoco_private *priv = netdev_priv(dev);
2910         unsigned long flags;
2911
2912         /* Note : ESSID is ignored in Ad-Hoc demo mode, but we can set it
2913          * anyway... - Jean II */
2914
2915         /* Hum... Should not use Wireless Extension constant (may change),
2916          * should use our own... - Jean II */
2917         if (erq->length > IW_ESSID_MAX_SIZE)
2918                 return -E2BIG;
2919
2920         if (orinoco_lock(priv, &flags) != 0)
2921                 return -EBUSY;
2922
2923         /* NULL the string (for NULL termination & ESSID = ANY) - Jean II */
2924         memset(priv->desired_essid, 0, sizeof(priv->desired_essid));
2925
2926         /* If not ANY, get the new ESSID */
2927         if (erq->flags) {
2928                 memcpy(priv->desired_essid, essidbuf, erq->length);
2929         }
2930
2931         orinoco_unlock(priv, &flags);
2932
2933         return -EINPROGRESS;            /* Call commit handler */
2934 }
2935
2936 static int orinoco_ioctl_getessid(struct net_device *dev,
2937                                   struct iw_request_info *info,
2938                                   struct iw_point *erq,
2939                                   char *essidbuf)
2940 {
2941         struct orinoco_private *priv = netdev_priv(dev);
2942         int active;
2943         int err = 0;
2944         unsigned long flags;
2945
2946         TRACE_ENTER(dev->name);
2947
2948         if (netif_running(dev)) {
2949                 err = orinoco_hw_get_essid(priv, &active, essidbuf);
2950                 if (err)
2951                         return err;
2952         } else {
2953                 if (orinoco_lock(priv, &flags) != 0)
2954                         return -EBUSY;
2955                 memcpy(essidbuf, priv->desired_essid, IW_ESSID_MAX_SIZE + 1);
2956                 orinoco_unlock(priv, &flags);
2957         }
2958
2959         erq->flags = 1;
2960         erq->length = strlen(essidbuf) + 1;
2961
2962         TRACE_EXIT(dev->name);
2963         
2964         return 0;
2965 }
2966
2967 static int orinoco_ioctl_setnick(struct net_device *dev,
2968                                  struct iw_request_info *info,
2969                                  struct iw_point *nrq,
2970                                  char *nickbuf)
2971 {
2972         struct orinoco_private *priv = netdev_priv(dev);
2973         unsigned long flags;
2974
2975         if (nrq->length > IW_ESSID_MAX_SIZE)
2976                 return -E2BIG;
2977
2978         if (orinoco_lock(priv, &flags) != 0)
2979                 return -EBUSY;
2980
2981         memset(priv->nick, 0, sizeof(priv->nick));
2982         memcpy(priv->nick, nickbuf, nrq->length);
2983
2984         orinoco_unlock(priv, &flags);
2985
2986         return -EINPROGRESS;            /* Call commit handler */
2987 }
2988
2989 static int orinoco_ioctl_getnick(struct net_device *dev,
2990                                  struct iw_request_info *info,
2991                                  struct iw_point *nrq,
2992                                  char *nickbuf)
2993 {
2994         struct orinoco_private *priv = netdev_priv(dev);
2995         unsigned long flags;
2996
2997         if (orinoco_lock(priv, &flags) != 0)
2998                 return -EBUSY;
2999
3000         memcpy(nickbuf, priv->nick, IW_ESSID_MAX_SIZE+1);
3001         orinoco_unlock(priv, &flags);
3002
3003         nrq->length = strlen(nickbuf)+1;
3004
3005         return 0;
3006 }
3007
3008 static int orinoco_ioctl_setfreq(struct net_device *dev,
3009                                  struct iw_request_info *info,
3010                                  struct iw_freq *frq,
3011                                  char *extra)
3012 {
3013         struct orinoco_private *priv = netdev_priv(dev);
3014         int chan = -1;
3015         unsigned long flags;
3016         int err = -EINPROGRESS;         /* Call commit handler */
3017
3018         /* We can only use this in Ad-Hoc demo mode to set the operating
3019          * frequency, or in IBSS mode to set the frequency where the IBSS
3020          * will be created - Jean II */
3021         if (priv->iw_mode != IW_MODE_ADHOC)
3022                 return -EOPNOTSUPP;
3023
3024         if ( (frq->e == 0) && (frq->m <= 1000) ) {
3025                 /* Setting by channel number */
3026                 chan = frq->m;
3027         } else {
3028                 /* Setting by frequency - search the table */
3029                 int mult = 1;
3030                 int i;
3031
3032                 for (i = 0; i < (6 - frq->e); i++)
3033                         mult *= 10;
3034
3035                 for (i = 0; i < NUM_CHANNELS; i++)
3036                         if (frq->m == (channel_frequency[i] * mult))
3037                                 chan = i+1;
3038         }
3039
3040         if ( (chan < 1) || (chan > NUM_CHANNELS) ||
3041              ! (priv->channel_mask & (1 << (chan-1)) ) )
3042                 return -EINVAL;
3043
3044         if (orinoco_lock(priv, &flags) != 0)
3045                 return -EBUSY;
3046         priv->channel = chan;
3047         orinoco_unlock(priv, &flags);
3048
3049         return err;
3050 }
3051
3052 static int orinoco_ioctl_getfreq(struct net_device *dev,
3053                                  struct iw_request_info *info,
3054                                  struct iw_freq *frq,
3055                                  char *extra)
3056 {
3057         struct orinoco_private *priv = netdev_priv(dev);
3058         int tmp;
3059
3060         /* Locking done in there */
3061         tmp = orinoco_hw_get_freq(priv);
3062         if (tmp < 0) {
3063                 return tmp;
3064         }
3065
3066         frq->m = tmp;
3067         frq->e = 1;
3068
3069         return 0;
3070 }
3071
3072 static int orinoco_ioctl_getsens(struct net_device *dev,
3073                                  struct iw_request_info *info,
3074                                  struct iw_param *srq,
3075                                  char *extra)
3076 {
3077         struct orinoco_private *priv = netdev_priv(dev);
3078         hermes_t *hw = &priv->hw;
3079         u16 val;
3080         int err;
3081         unsigned long flags;
3082
3083         if (!priv->has_sensitivity)
3084                 return -EOPNOTSUPP;
3085
3086         if (orinoco_lock(priv, &flags) != 0)
3087                 return -EBUSY;
3088         err = hermes_read_wordrec(hw, USER_BAP,
3089                                   HERMES_RID_CNFSYSTEMSCALE, &val);
3090         orinoco_unlock(priv, &flags);
3091
3092         if (err)
3093                 return err;
3094
3095         srq->value = val;
3096         srq->fixed = 0; /* auto */
3097
3098         return 0;
3099 }
3100
3101 static int orinoco_ioctl_setsens(struct net_device *dev,
3102                                  struct iw_request_info *info,
3103                                  struct iw_param *srq,
3104                                  char *extra)
3105 {
3106         struct orinoco_private *priv = netdev_priv(dev);
3107         int val = srq->value;
3108         unsigned long flags;
3109
3110         if (!priv->has_sensitivity)
3111                 return -EOPNOTSUPP;
3112
3113         if ((val < 1) || (val > 3))
3114                 return -EINVAL;
3115         
3116         if (orinoco_lock(priv, &flags) != 0)
3117                 return -EBUSY;
3118         priv->ap_density = val;
3119         orinoco_unlock(priv, &flags);
3120
3121         return -EINPROGRESS;            /* Call commit handler */
3122 }
3123
3124 static int orinoco_ioctl_setrts(struct net_device *dev,
3125                                 struct iw_request_info *info,
3126                                 struct iw_param *rrq,
3127                                 char *extra)
3128 {
3129         struct orinoco_private *priv = netdev_priv(dev);
3130         int val = rrq->value;
3131         unsigned long flags;
3132
3133         if (rrq->disabled)
3134                 val = 2347;
3135
3136         if ( (val < 0) || (val > 2347) )
3137                 return -EINVAL;
3138
3139         if (orinoco_lock(priv, &flags) != 0)
3140                 return -EBUSY;
3141
3142         priv->rts_thresh = val;
3143         orinoco_unlock(priv, &flags);
3144
3145         return -EINPROGRESS;            /* Call commit handler */
3146 }
3147
3148 static int orinoco_ioctl_getrts(struct net_device *dev,
3149                                 struct iw_request_info *info,
3150                                 struct iw_param *rrq,
3151                                 char *extra)
3152 {
3153         struct orinoco_private *priv = netdev_priv(dev);
3154
3155         rrq->value = priv->rts_thresh;
3156         rrq->disabled = (rrq->value == 2347);
3157         rrq->fixed = 1;
3158
3159         return 0;
3160 }
3161
3162 static int orinoco_ioctl_setfrag(struct net_device *dev,
3163                                  struct iw_request_info *info,
3164                                  struct iw_param *frq,
3165                                  char *extra)
3166 {
3167         struct orinoco_private *priv = netdev_priv(dev);
3168         int err = -EINPROGRESS;         /* Call commit handler */
3169         unsigned long flags;
3170
3171         if (orinoco_lock(priv, &flags) != 0)
3172                 return -EBUSY;
3173
3174         if (priv->has_mwo) {
3175                 if (frq->disabled)
3176                         priv->mwo_robust = 0;
3177                 else {
3178                         if (frq->fixed)
3179                                 printk(KERN_WARNING "%s: Fixed fragmentation is "
3180                                        "not supported on this firmware. "
3181                                        "Using MWO robust instead.\n", dev->name);
3182                         priv->mwo_robust = 1;
3183                 }
3184         } else {
3185                 if (frq->disabled)
3186                         priv->frag_thresh = 2346;
3187                 else {
3188                         if ( (frq->value < 256) || (frq->value > 2346) )
3189                                 err = -EINVAL;
3190                         else
3191                                 priv->frag_thresh = frq->value & ~0x1; /* must be even */
3192                 }
3193         }
3194
3195         orinoco_unlock(priv, &flags);
3196
3197         return err;
3198 }
3199
3200 static int orinoco_ioctl_getfrag(struct net_device *dev,
3201                                  struct iw_request_info *info,
3202                                  struct iw_param *frq,
3203                                  char *extra)
3204 {
3205         struct orinoco_private *priv = netdev_priv(dev);
3206         hermes_t *hw = &priv->hw;
3207         int err;
3208         u16 val;
3209         unsigned long flags;
3210
3211         if (orinoco_lock(priv, &flags) != 0)
3212                 return -EBUSY;
3213         
3214         if (priv->has_mwo) {
3215                 err = hermes_read_wordrec(hw, USER_BAP,
3216                                           HERMES_RID_CNFMWOROBUST_AGERE,
3217                                           &val);
3218                 if (err)
3219                         val = 0;
3220
3221                 frq->value = val ? 2347 : 0;
3222                 frq->disabled = ! val;
3223                 frq->fixed = 0;
3224         } else {
3225                 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFFRAGMENTATIONTHRESHOLD,
3226                                           &val);
3227                 if (err)
3228                         val = 0;
3229
3230                 frq->value = val;
3231                 frq->disabled = (val >= 2346);
3232                 frq->fixed = 1;
3233         }
3234
3235         orinoco_unlock(priv, &flags);
3236         
3237         return err;
3238 }
3239
3240 static int orinoco_ioctl_setrate(struct net_device *dev,
3241                                  struct iw_request_info *info,
3242                                  struct iw_param *rrq,
3243                                  char *extra)
3244 {
3245         struct orinoco_private *priv = netdev_priv(dev);
3246         int ratemode = -1;
3247         int bitrate; /* 100s of kilobits */
3248         int i;
3249         unsigned long flags;
3250         
3251         /* As the user space doesn't know our highest rate, it uses -1
3252          * to ask us to set the highest rate.  Test it using "iwconfig
3253          * ethX rate auto" - Jean II */
3254         if (rrq->value == -1)
3255                 bitrate = 110;
3256         else {
3257                 if (rrq->value % 100000)
3258                         return -EINVAL;
3259                 bitrate = rrq->value / 100000;
3260         }
3261
3262         if ( (bitrate != 10) && (bitrate != 20) &&
3263              (bitrate != 55) && (bitrate != 110) )
3264                 return -EINVAL;
3265
3266         for (i = 0; i < BITRATE_TABLE_SIZE; i++)
3267                 if ( (bitrate_table[i].bitrate == bitrate) &&
3268                      (bitrate_table[i].automatic == ! rrq->fixed) ) {
3269                         ratemode = i;
3270                         break;
3271                 }
3272         
3273         if (ratemode == -1)
3274                 return -EINVAL;
3275
3276         if (orinoco_lock(priv, &flags) != 0)
3277                 return -EBUSY;
3278         priv->bitratemode = ratemode;
3279         orinoco_unlock(priv, &flags);
3280
3281         return -EINPROGRESS;
3282 }
3283
3284 static int orinoco_ioctl_getrate(struct net_device *dev,
3285                                  struct iw_request_info *info,
3286                                  struct iw_param *rrq,
3287                                  char *extra)
3288 {
3289         struct orinoco_private *priv = netdev_priv(dev);
3290         hermes_t *hw = &priv->hw;
3291         int err = 0;
3292         int ratemode;
3293         int i;
3294         u16 val;
3295         unsigned long flags;
3296
3297         if (orinoco_lock(priv, &flags) != 0)
3298                 return -EBUSY;
3299
3300         ratemode = priv->bitratemode;
3301
3302         BUG_ON((ratemode < 0) || (ratemode >= BITRATE_TABLE_SIZE));
3303
3304         rrq->value = bitrate_table[ratemode].bitrate * 100000;
3305         rrq->fixed = ! bitrate_table[ratemode].automatic;
3306         rrq->disabled = 0;
3307
3308         /* If the interface is running we try to find more about the
3309            current mode */
3310         if (netif_running(dev)) {
3311                 err = hermes_read_wordrec(hw, USER_BAP,
3312                                           HERMES_RID_CURRENTTXRATE, &val);
3313                 if (err)
3314                         goto out;
3315                 
3316                 switch (priv->firmware_type) {
3317                 case FIRMWARE_TYPE_AGERE: /* Lucent style rate */
3318                         /* Note : in Lucent firmware, the return value of
3319                          * HERMES_RID_CURRENTTXRATE is the bitrate in Mb/s,
3320                          * and therefore is totally different from the
3321                          * encoding of HERMES_RID_CNFTXRATECONTROL.
3322                          * Don't forget that 6Mb/s is really 5.5Mb/s */
3323                         if (val == 6)
3324                                 rrq->value = 5500000;
3325                         else
3326                                 rrq->value = val * 1000000;
3327                         break;
3328                 case FIRMWARE_TYPE_INTERSIL: /* Intersil style rate */
3329                 case FIRMWARE_TYPE_SYMBOL: /* Symbol style rate */
3330                         for (i = 0; i < BITRATE_TABLE_SIZE; i++)
3331                                 if (bitrate_table[i].intersil_txratectrl == val) {
3332                                         ratemode = i;
3333                                         break;
3334                                 }
3335                         if (i >= BITRATE_TABLE_SIZE)
3336                                 printk(KERN_INFO "%s: Unable to determine current bitrate (0x%04hx)\n",
3337                                        dev->name, val);
3338
3339                         rrq->value = bitrate_table[ratemode].bitrate * 100000;
3340                         break;
3341                 default:
3342                         BUG();
3343                 }
3344         }
3345
3346  out:
3347         orinoco_unlock(priv, &flags);
3348
3349         return err;
3350 }
3351
3352 static int orinoco_ioctl_setpower(struct net_device *dev,
3353                                   struct iw_request_info *info,
3354                                   struct iw_param *prq,
3355                                   char *extra)
3356 {
3357         struct orinoco_private *priv = netdev_priv(dev);
3358         int err = -EINPROGRESS;         /* Call commit handler */
3359         unsigned long flags;
3360
3361         if (orinoco_lock(priv, &flags) != 0)
3362                 return -EBUSY;
3363
3364         if (prq->disabled) {
3365                 priv->pm_on = 0;
3366         } else {
3367                 switch (prq->flags & IW_POWER_MODE) {
3368                 case IW_POWER_UNICAST_R:
3369                         priv->pm_mcast = 0;
3370                         priv->pm_on = 1;
3371                         break;
3372                 case IW_POWER_ALL_R:
3373                         priv->pm_mcast = 1;
3374                         priv->pm_on = 1;
3375                         break;
3376                 case IW_POWER_ON:
3377                         /* No flags : but we may have a value - Jean II */
3378                         break;
3379                 default:
3380                         err = -EINVAL;
3381                 }
3382                 if (err)
3383                         goto out;
3384                 
3385                 if (prq->flags & IW_POWER_TIMEOUT) {
3386                         priv->pm_on = 1;
3387                         priv->pm_timeout = prq->value / 1000;
3388                 }
3389                 if (prq->flags & IW_POWER_PERIOD) {
3390                         priv->pm_on = 1;
3391                         priv->pm_period = prq->value / 1000;
3392                 }
3393                 /* It's valid to not have a value if we are just toggling
3394                  * the flags... Jean II */
3395                 if(!priv->pm_on) {
3396                         err = -EINVAL;
3397                         goto out;
3398                 }                       
3399         }
3400
3401  out:
3402         orinoco_unlock(priv, &flags);
3403
3404         return err;
3405 }
3406
3407 static int orinoco_ioctl_getpower(struct net_device *dev,
3408                                   struct iw_request_info *info,
3409                                   struct iw_param *prq,
3410                                   char *extra)
3411 {
3412         struct orinoco_private *priv = netdev_priv(dev);
3413         hermes_t *hw = &priv->hw;
3414         int err = 0;
3415         u16 enable, period, timeout, mcast;
3416         unsigned long flags;
3417
3418         if (orinoco_lock(priv, &flags) != 0)
3419                 return -EBUSY;
3420         
3421         err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFPMENABLED, &enable);
3422         if (err)
3423                 goto out;
3424
3425         err = hermes_read_wordrec(hw, USER_BAP,
3426                                   HERMES_RID_CNFMAXSLEEPDURATION, &period);
3427         if (err)
3428                 goto out;
3429
3430         err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFPMHOLDOVERDURATION, &timeout);
3431         if (err)
3432                 goto out;
3433
3434         err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFMULTICASTRECEIVE, &mcast);
3435         if (err)
3436                 goto out;
3437
3438         prq->disabled = !enable;
3439         /* Note : by default, display the period */
3440         if ((prq->flags & IW_POWER_TYPE) == IW_POWER_TIMEOUT) {
3441                 prq->flags = IW_POWER_TIMEOUT;
3442                 prq->value = timeout * 1000;
3443         } else {
3444                 prq->flags = IW_POWER_PERIOD;
3445                 prq->value = period * 1000;
3446         }
3447         if (mcast)
3448                 prq->flags |= IW_POWER_ALL_R;
3449         else
3450                 prq->flags |= IW_POWER_UNICAST_R;
3451
3452  out:
3453         orinoco_unlock(priv, &flags);
3454
3455         return err;
3456 }
3457
3458 static int orinoco_ioctl_getretry(struct net_device *dev,
3459                                   struct iw_request_info *info,
3460                                   struct iw_param *rrq,
3461                                   char *extra)
3462 {
3463         struct orinoco_private *priv = netdev_priv(dev);
3464         hermes_t *hw = &priv->hw;
3465         int err = 0;
3466         u16 short_limit, long_limit, lifetime;
3467         unsigned long flags;
3468
3469         if (orinoco_lock(priv, &flags) != 0)
3470                 return -EBUSY;
3471         
3472         err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_SHORTRETRYLIMIT,
3473                                   &short_limit);
3474         if (err)
3475                 goto out;
3476
3477         err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_LONGRETRYLIMIT,
3478                                   &long_limit);
3479         if (err)
3480                 goto out;
3481
3482         err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_MAXTRANSMITLIFETIME,
3483                                   &lifetime);
3484         if (err)
3485                 goto out;
3486
3487         rrq->disabled = 0;              /* Can't be disabled */
3488
3489         /* Note : by default, display the retry number */
3490         if ((rrq->flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME) {
3491                 rrq->flags = IW_RETRY_LIFETIME;
3492                 rrq->value = lifetime * 1000;   /* ??? */
3493         } else {
3494                 /* By default, display the min number */
3495                 if ((rrq->flags & IW_RETRY_MAX)) {
3496                         rrq->flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
3497                         rrq->value = long_limit;
3498                 } else {
3499                         rrq->flags = IW_RETRY_LIMIT;
3500                         rrq->value = short_limit;
3501                         if(short_limit != long_limit)
3502                                 rrq->flags |= IW_RETRY_MIN;
3503                 }
3504         }
3505
3506  out:
3507         orinoco_unlock(priv, &flags);
3508
3509         return err;
3510 }
3511
3512 static int orinoco_ioctl_reset(struct net_device *dev,
3513                                struct iw_request_info *info,
3514                                void *wrqu,
3515                                char *extra)
3516 {
3517         struct orinoco_private *priv = netdev_priv(dev);
3518
3519         if (! capable(CAP_NET_ADMIN))
3520                 return -EPERM;
3521
3522         if (info->cmd == (SIOCIWFIRSTPRIV + 0x1)) {
3523                 printk(KERN_DEBUG "%s: Forcing reset!\n", dev->name);
3524
3525                 /* Firmware reset */
3526                 orinoco_reset(dev);
3527         } else {
3528                 printk(KERN_DEBUG "%s: Force scheduling reset!\n", dev->name);
3529
3530                 schedule_work(&priv->reset_work);
3531         }
3532
3533         return 0;
3534 }
3535
3536 static int orinoco_ioctl_setibssport(struct net_device *dev,
3537                                      struct iw_request_info *info,
3538                                      void *wrqu,
3539                                      char *extra)
3540
3541 {
3542         struct orinoco_private *priv = netdev_priv(dev);
3543         int val = *( (int *) extra );
3544         unsigned long flags;
3545
3546         if (orinoco_lock(priv, &flags) != 0)
3547                 return -EBUSY;
3548
3549         priv->ibss_port = val ;
3550
3551         /* Actually update the mode we are using */
3552         set_port_type(priv);
3553
3554         orinoco_unlock(priv, &flags);
3555         return -EINPROGRESS;            /* Call commit handler */
3556 }
3557
3558 static int orinoco_ioctl_getibssport(struct net_device *dev,
3559                                      struct iw_request_info *info,
3560                                      void *wrqu,
3561                                      char *extra)
3562 {
3563         struct orinoco_private *priv = netdev_priv(dev);
3564         int *val = (int *) extra;
3565
3566         *val = priv->ibss_port;
3567         return 0;
3568 }
3569
3570 static int orinoco_ioctl_setport3(struct net_device *dev,
3571                                   struct iw_request_info *info,
3572                                   void *wrqu,
3573                                   char *extra)
3574 {
3575         struct orinoco_private *priv = netdev_priv(dev);
3576         int val = *( (int *) extra );
3577         int err = 0;
3578         unsigned long flags;
3579
3580         if (orinoco_lock(priv, &flags) != 0)
3581                 return -EBUSY;
3582
3583         switch (val) {
3584         case 0: /* Try to do IEEE ad-hoc mode */
3585                 if (! priv->has_ibss) {
3586                         err = -EINVAL;
3587                         break;
3588                 }
3589                 priv->prefer_port3 = 0;
3590                         
3591                 break;
3592
3593         case 1: /* Try to do Lucent proprietary ad-hoc mode */
3594                 if (! priv->has_port3) {
3595                         err = -EINVAL;
3596                         break;
3597                 }
3598                 priv->prefer_port3 = 1;
3599                 break;
3600
3601         default:
3602                 err = -EINVAL;
3603         }
3604
3605         if (! err) {
3606                 /* Actually update the mode we are using */
3607                 set_port_type(priv);
3608                 err = -EINPROGRESS;
3609         }
3610
3611         orinoco_unlock(priv, &flags);
3612
3613         return err;
3614 }
3615
3616 static int orinoco_ioctl_getport3(struct net_device *dev,
3617                                   struct iw_request_info *info,
3618                                   void *wrqu,
3619                                   char *extra)
3620 {
3621         struct orinoco_private *priv = netdev_priv(dev);
3622         int *val = (int *) extra;
3623
3624         *val = priv->prefer_port3;
3625         return 0;
3626 }
3627
3628 static int orinoco_ioctl_setpreamble(struct net_device *dev,
3629                                      struct iw_request_info *info,
3630                                      void *wrqu,
3631                                      char *extra)
3632 {
3633         struct orinoco_private *priv = netdev_priv(dev);
3634         unsigned long flags;
3635         int val;
3636
3637         if (! priv->has_preamble)
3638                 return -EOPNOTSUPP;
3639
3640         /* 802.11b has recently defined some short preamble.
3641          * Basically, the Phy header has been reduced in size.
3642          * This increase performance, especially at high rates
3643          * (the preamble is transmitted at 1Mb/s), unfortunately
3644          * this give compatibility troubles... - Jean II */
3645         val = *( (int *) extra );
3646
3647         if (orinoco_lock(priv, &flags) != 0)
3648                 return -EBUSY;
3649
3650         if (val)
3651                 priv->preamble = 1;
3652         else
3653                 priv->preamble = 0;
3654
3655         orinoco_unlock(priv, &flags);
3656
3657         return -EINPROGRESS;            /* Call commit handler */
3658 }
3659
3660 static int orinoco_ioctl_getpreamble(struct net_device *dev,
3661                                      struct iw_request_info *info,
3662                                      void *wrqu,
3663                                      char *extra)
3664 {
3665         struct orinoco_private *priv = netdev_priv(dev);
3666         int *val = (int *) extra;
3667
3668         if (! priv->has_preamble)
3669                 return -EOPNOTSUPP;
3670
3671         *val = priv->preamble;
3672         return 0;
3673 }
3674
3675 /* ioctl interface to hermes_read_ltv()
3676  * To use with iwpriv, pass the RID as the token argument, e.g.
3677  * iwpriv get_rid [0xfc00]
3678  * At least Wireless Tools 25 is required to use iwpriv.
3679  * For Wireless Tools 25 and 26 append "dummy" are the end. */
3680 static int orinoco_ioctl_getrid(struct net_device *dev,
3681                                 struct iw_request_info *info,
3682                                 struct iw_point *data,
3683                                 char *extra)
3684 {
3685         struct orinoco_private *priv = netdev_priv(dev);
3686         hermes_t *hw = &priv->hw;
3687         int rid = data->flags;
3688         u16 length;
3689         int err;
3690         unsigned long flags;
3691
3692         /* It's a "get" function, but we don't want users to access the
3693          * WEP key and other raw firmware data */
3694         if (! capable(CAP_NET_ADMIN))
3695                 return -EPERM;
3696
3697         if (rid < 0xfc00 || rid > 0xffff)
3698                 return -EINVAL;
3699
3700         if (orinoco_lock(priv, &flags) != 0)
3701                 return -EBUSY;
3702
3703         err = hermes_read_ltv(hw, USER_BAP, rid, MAX_RID_LEN, &length,
3704                               extra);
3705         if (err)
3706                 goto out;
3707
3708         data->length = min_t(u16, HERMES_RECLEN_TO_BYTES(length),
3709                              MAX_RID_LEN);
3710
3711  out:
3712         orinoco_unlock(priv, &flags);
3713         return err;
3714 }
3715
3716 /* Spy is used for link quality/strength measurements in Ad-Hoc mode
3717  * Jean II */
3718 static int orinoco_ioctl_setspy(struct net_device *dev,
3719                                 struct iw_request_info *info,
3720                                 struct iw_point *srq,
3721                                 char *extra)
3722
3723 {
3724         struct orinoco_private *priv = netdev_priv(dev);
3725         struct sockaddr *address = (struct sockaddr *) extra;
3726         int number = srq->length;
3727         int i;
3728         unsigned long flags;
3729
3730         /* Make sure nobody mess with the structure while we do */
3731         if (orinoco_lock(priv, &flags) != 0)
3732                 return -EBUSY;
3733
3734         /* orinoco_lock() doesn't disable interrupts, so make sure the
3735          * interrupt rx path don't get confused while we copy */
3736         priv->spy_number = 0;
3737
3738         if (number > 0) {
3739                 /* Extract the addresses */
3740                 for (i = 0; i < number; i++)
3741                         memcpy(priv->spy_address[i], address[i].sa_data,
3742                                ETH_ALEN);
3743                 /* Reset stats */
3744                 memset(priv->spy_stat, 0,
3745                        sizeof(struct iw_quality) * IW_MAX_SPY);
3746                 /* Set number of addresses */
3747                 priv->spy_number = number;
3748         }
3749
3750         /* Now, let the others play */
3751         orinoco_unlock(priv, &flags);
3752
3753         /* Do NOT call commit handler */
3754         return 0;
3755 }
3756
3757 static int orinoco_ioctl_getspy(struct net_device *dev,
3758                                 struct iw_request_info *info,
3759                                 struct iw_point *srq,
3760                                 char *extra)
3761 {
3762         struct orinoco_private *priv = netdev_priv(dev);
3763         struct sockaddr *address = (struct sockaddr *) extra;
3764         int number;
3765         int i;
3766         unsigned long flags;
3767
3768         if (orinoco_lock(priv, &flags) != 0)
3769                 return -EBUSY;
3770
3771         number = priv->spy_number;
3772         /* Create address struct */
3773         for (i = 0; i < number; i++) {
3774                 memcpy(address[i].sa_data, priv->spy_address[i], ETH_ALEN);
3775                 address[i].sa_family = AF_UNIX;
3776         }
3777         if (number > 0) {
3778                 /* Create address struct */
3779                 for (i = 0; i < number; i++) {
3780                         memcpy(address[i].sa_data, priv->spy_address[i],
3781                                ETH_ALEN);
3782                         address[i].sa_family = AF_UNIX;
3783                 }
3784                 /* Copy stats */
3785                 /* In theory, we should disable irqs while copying the stats
3786                  * because the rx path might update it in the middle...
3787                  * Bah, who care ? - Jean II */
3788                 memcpy(extra  + (sizeof(struct sockaddr) * number),
3789                        priv->spy_stat, sizeof(struct iw_quality) * number);
3790         }
3791         /* Reset updated flags. */
3792         for (i = 0; i < number; i++)
3793                 priv->spy_stat[i].updated = 0;
3794
3795         orinoco_unlock(priv, &flags);
3796
3797         srq->length = number;
3798
3799         return 0;
3800 }
3801
3802 /* Commit handler, called after set operations */
3803 static int orinoco_ioctl_commit(struct net_device *dev,
3804                                 struct iw_request_info *info,
3805                                 void *wrqu,
3806                                 char *extra)
3807 {
3808         struct orinoco_private *priv = netdev_priv(dev);
3809         struct hermes *hw = &priv->hw;
3810         unsigned long flags;
3811         int err = 0;
3812
3813         if (!priv->open)
3814                 return 0;
3815
3816         if (priv->broken_disableport) {
3817                 orinoco_reset(dev);
3818                 return 0;
3819         }
3820
3821         if (orinoco_lock(priv, &flags) != 0)
3822                 return err;
3823
3824         err = hermes_disable_port(hw, 0);
3825         if (err) {
3826                 printk(KERN_WARNING "%s: Unable to disable port "
3827                        "while reconfiguring card\n", dev->name);
3828                 priv->broken_disableport = 1;
3829                 goto out;
3830         }
3831
3832         err = __orinoco_program_rids(dev);
3833         if (err) {
3834                 printk(KERN_WARNING "%s: Unable to reconfigure card\n",
3835                        dev->name);
3836                 goto out;
3837         }
3838
3839         err = hermes_enable_port(hw, 0);
3840         if (err) {
3841                 printk(KERN_WARNING "%s: Unable to enable port while reconfiguring card\n",
3842                        dev->name);
3843                 goto out;
3844         }
3845
3846  out:
3847         if (err) {
3848                 printk(KERN_WARNING "%s: Resetting instead...\n", dev->name);
3849                 schedule_work(&priv->reset_work);
3850                 err = 0;
3851         }
3852
3853         orinoco_unlock(priv, &flags);
3854         return err;
3855 }
3856
3857 static const struct iw_priv_args orinoco_privtab[] = {
3858         { SIOCIWFIRSTPRIV + 0x0, 0, 0, "force_reset" },
3859         { SIOCIWFIRSTPRIV + 0x1, 0, 0, "card_reset" },
3860         { SIOCIWFIRSTPRIV + 0x2, IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
3861           0, "set_port3" },
3862         { SIOCIWFIRSTPRIV + 0x3, 0, IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
3863           "get_port3" },
3864         { SIOCIWFIRSTPRIV + 0x4, IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
3865           0, "set_preamble" },
3866         { SIOCIWFIRSTPRIV + 0x5, 0, IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
3867           "get_preamble" },
3868         { SIOCIWFIRSTPRIV + 0x6, IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
3869           0, "set_ibssport" },
3870         { SIOCIWFIRSTPRIV + 0x7, 0, IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
3871           "get_ibssport" },
3872         { SIOCIWFIRSTPRIV + 0x9, 0, IW_PRIV_TYPE_BYTE | MAX_RID_LEN,
3873           "get_rid" },
3874 };
3875
3876
3877 /*
3878  * Structures to export the Wireless Handlers
3879  */
3880
3881 static const iw_handler orinoco_handler[] = {
3882         [SIOCSIWCOMMIT-SIOCIWFIRST] (iw_handler) orinoco_ioctl_commit,
3883         [SIOCGIWNAME  -SIOCIWFIRST] (iw_handler) orinoco_ioctl_getname,
3884         [SIOCSIWFREQ  -SIOCIWFIRST] (iw_handler) orinoco_ioctl_setfreq,
3885         [SIOCGIWFREQ  -SIOCIWFIRST] (iw_handler) orinoco_ioctl_getfreq,
3886         [SIOCSIWMODE  -SIOCIWFIRST] (iw_handler) orinoco_ioctl_setmode,
3887         [SIOCGIWMODE  -SIOCIWFIRST] (iw_handler) orinoco_ioctl_getmode,
3888         [SIOCSIWSENS  -SIOCIWFIRST] (iw_handler) orinoco_ioctl_setsens,
3889         [SIOCGIWSENS  -SIOCIWFIRST] (iw_handler) orinoco_ioctl_getsens,
3890         [SIOCGIWRANGE -SIOCIWFIRST] (iw_handler) orinoco_ioctl_getiwrange,
3891         [SIOCSIWSPY   -SIOCIWFIRST] (iw_handler) orinoco_ioctl_setspy,
3892         [SIOCGIWSPY   -SIOCIWFIRST] (iw_handler) orinoco_ioctl_getspy,
3893         [SIOCGIWAP    -SIOCIWFIRST] (iw_handler) orinoco_ioctl_getwap,
3894         [SIOCSIWESSID -SIOCIWFIRST] (iw_handler) orinoco_ioctl_setessid,
3895         [SIOCGIWESSID -SIOCIWFIRST] (iw_handler) orinoco_ioctl_getessid,
3896         [SIOCSIWNICKN -SIOCIWFIRST] (iw_handler) orinoco_ioctl_setnick,
3897         [SIOCGIWNICKN -SIOCIWFIRST] (iw_handler) orinoco_ioctl_getnick,
3898         [SIOCSIWRATE  -SIOCIWFIRST] (iw_handler) orinoco_ioctl_setrate,
3899         [SIOCGIWRATE  -SIOCIWFIRST] (iw_handler) orinoco_ioctl_getrate,
3900         [SIOCSIWRTS   -SIOCIWFIRST] (iw_handler) orinoco_ioctl_setrts,
3901         [SIOCGIWRTS   -SIOCIWFIRST] (iw_handler) orinoco_ioctl_getrts,
3902         [SIOCSIWFRAG  -SIOCIWFIRST] (iw_handler) orinoco_ioctl_setfrag,
3903         [SIOCGIWFRAG  -SIOCIWFIRST] (iw_handler) orinoco_ioctl_getfrag,
3904         [SIOCGIWRETRY -SIOCIWFIRST] (iw_handler) orinoco_ioctl_getretry,
3905         [SIOCSIWENCODE-SIOCIWFIRST] (iw_handler) orinoco_ioctl_setiwencode,
3906         [SIOCGIWENCODE-SIOCIWFIRST] (iw_handler) orinoco_ioctl_getiwencode,
3907         [SIOCSIWPOWER -SIOCIWFIRST] (iw_handler) orinoco_ioctl_setpower,
3908         [SIOCGIWPOWER -SIOCIWFIRST] (iw_handler) orinoco_ioctl_getpower,
3909 };
3910
3911
3912 /*
3913   Added typecasting since we no longer use iwreq_data -- Moustafa
3914  */
3915 static const iw_handler orinoco_private_handler[] = {
3916         [0] (iw_handler) orinoco_ioctl_reset,
3917         [1] (iw_handler) orinoco_ioctl_reset,
3918         [2] (iw_handler) orinoco_ioctl_setport3,
3919         [3] (iw_handler) orinoco_ioctl_getport3,
3920         [4] (iw_handler) orinoco_ioctl_setpreamble,
3921         [5] (iw_handler) orinoco_ioctl_getpreamble,
3922         [6] (iw_handler) orinoco_ioctl_setibssport,
3923         [7] (iw_handler) orinoco_ioctl_getibssport,
3924         [9] (iw_handler) orinoco_ioctl_getrid,
3925 };
3926
3927 static const struct iw_handler_def orinoco_handler_def = {
3928         .num_standard = ARRAY_SIZE(orinoco_handler),
3929         .num_private = ARRAY_SIZE(orinoco_private_handler),
3930         .num_private_args = ARRAY_SIZE(orinoco_privtab),
3931         .standard = orinoco_handler,
3932         .private = orinoco_private_handler,
3933         .private_args = orinoco_privtab,
3934 };
3935
3936 static void orinoco_get_drvinfo(struct net_device *dev,
3937                                 struct ethtool_drvinfo *info)
3938 {
3939         struct orinoco_private *priv = netdev_priv(dev);
3940
3941         strncpy(info->driver, DRIVER_NAME, sizeof(info->driver) - 1);
3942         strncpy(info->version, DRIVER_VERSION, sizeof(info->version) - 1);
3943         strncpy(info->fw_version, priv->fw_name, sizeof(info->fw_version) - 1);
3944         if (dev->class_dev.dev)
3945                 strncpy(info->bus_info, dev->class_dev.dev->bus_id,
3946                         sizeof(info->bus_info) - 1);
3947         else
3948                 snprintf(info->bus_info, sizeof(info->bus_info) - 1,
3949                          "PCMCIA %p", priv->hw.iobase);
3950 }
3951
3952 static struct ethtool_ops orinoco_ethtool_ops = {
3953         .get_drvinfo = orinoco_get_drvinfo,
3954         .get_link = ethtool_op_get_link,
3955 };
3956
3957 /********************************************************************/
3958 /* Debugging                                                        */
3959 /********************************************************************/
3960
3961 #if 0
3962 static void show_rx_frame(struct orinoco_rxframe_hdr *frame)
3963 {
3964         printk(KERN_DEBUG "RX descriptor:\n");
3965         printk(KERN_DEBUG "  status      = 0x%04x\n", frame->desc.status);
3966         printk(KERN_DEBUG "  time        = 0x%08x\n", frame->desc.time);
3967         printk(KERN_DEBUG "  silence     = 0x%02x\n", frame->desc.silence);
3968         printk(KERN_DEBUG "  signal      = 0x%02x\n", frame->desc.signal);
3969         printk(KERN_DEBUG "  rate        = 0x%02x\n", frame->desc.rate);
3970         printk(KERN_DEBUG "  rxflow      = 0x%02x\n", frame->desc.rxflow);
3971         printk(KERN_DEBUG "  reserved    = 0x%08x\n", frame->desc.reserved);
3972
3973         printk(KERN_DEBUG "IEEE 802.11 header:\n");
3974         printk(KERN_DEBUG "  frame_ctl   = 0x%04x\n",
3975                frame->p80211.frame_ctl);
3976         printk(KERN_DEBUG "  duration_id = 0x%04x\n",
3977                frame->p80211.duration_id);
3978         printk(KERN_DEBUG "  addr1       = %02x:%02x:%02x:%02x:%02x:%02x\n",
3979                frame->p80211.addr1[0], frame->p80211.addr1[1],
3980                frame->p80211.addr1[2], frame->p80211.addr1[3],
3981                frame->p80211.addr1[4], frame->p80211.addr1[5]);
3982         printk(KERN_DEBUG "  addr2       = %02x:%02x:%02x:%02x:%02x:%02x\n",
3983                frame->p80211.addr2[0], frame->p80211.addr2[1],
3984                frame->p80211.addr2[2], frame->p80211.addr2[3],
3985                frame->p80211.addr2[4], frame->p80211.addr2[5]);
3986         printk(KERN_DEBUG "  addr3       = %02x:%02x:%02x:%02x:%02x:%02x\n",
3987                frame->p80211.addr3[0], frame->p80211.addr3[1],
3988                frame->p80211.addr3[2], frame->p80211.addr3[3],
3989                frame->p80211.addr3[4], frame->p80211.addr3[5]);
3990         printk(KERN_DEBUG "  seq_ctl     = 0x%04x\n",
3991                frame->p80211.seq_ctl);
3992         printk(KERN_DEBUG "  addr4       = %02x:%02x:%02x:%02x:%02x:%02x\n",
3993                frame->p80211.addr4[0], frame->p80211.addr4[1],
3994                frame->p80211.addr4[2], frame->p80211.addr4[3],
3995                frame->p80211.addr4[4], frame->p80211.addr4[5]);
3996         printk(KERN_DEBUG "  data_len    = 0x%04x\n",
3997                frame->p80211.data_len);
3998
3999         printk(KERN_DEBUG "IEEE 802.3 header:\n");
4000         printk(KERN_DEBUG "  dest        = %02x:%02x:%02x:%02x:%02x:%02x\n",
4001                frame->p8023.h_dest[0], frame->p8023.h_dest[1],
4002                frame->p8023.h_dest[2], frame->p8023.h_dest[3],
4003                frame->p8023.h_dest[4], frame->p8023.h_dest[5]);
4004         printk(KERN_DEBUG "  src         = %02x:%02x:%02x:%02x:%02x:%02x\n",
4005                frame->p8023.h_source[0], frame->p8023.h_source[1],
4006                frame->p8023.h_source[2], frame->p8023.h_source[3],
4007                frame->p8023.h_source[4], frame->p8023.h_source[5]);
4008         printk(KERN_DEBUG "  len         = 0x%04x\n", frame->p8023.h_proto);
4009
4010         printk(KERN_DEBUG "IEEE 802.2 LLC/SNAP header:\n");
4011         printk(KERN_DEBUG "  DSAP        = 0x%02x\n", frame->p8022.dsap);
4012         printk(KERN_DEBUG "  SSAP        = 0x%02x\n", frame->p8022.ssap);
4013         printk(KERN_DEBUG "  ctrl        = 0x%02x\n", frame->p8022.ctrl);
4014         printk(KERN_DEBUG "  OUI         = %02x:%02x:%02x\n",
4015                frame->p8022.oui[0], frame->p8022.oui[1], frame->p8022.oui[2]);
4016         printk(KERN_DEBUG "  ethertype  = 0x%04x\n", frame->ethertype);
4017 }
4018 #endif /* 0 */
4019
4020 /********************************************************************/
4021 /* Module initialization                                            */
4022 /********************************************************************/
4023
4024 EXPORT_SYMBOL(alloc_orinocodev);
4025 EXPORT_SYMBOL(free_orinocodev);
4026
4027 EXPORT_SYMBOL(__orinoco_up);
4028 EXPORT_SYMBOL(__orinoco_down);
4029 EXPORT_SYMBOL(orinoco_reinit_firmware);
4030
4031 EXPORT_SYMBOL(orinoco_interrupt);
4032
4033 /* Can't be declared "const" or the whole __initdata section will
4034  * become const */
4035 static char version[] __initdata = DRIVER_NAME " " DRIVER_VERSION
4036         " (David Gibson <hermes@gibson.dropbear.id.au>, "
4037         "Pavel Roskin <proski@gnu.org>, et al)";
4038
4039 static int __init init_orinoco(void)
4040 {
4041         printk(KERN_DEBUG "%s\n", version);
4042         return 0;
4043 }
4044
4045 static void __exit exit_orinoco(void)
4046 {
4047 }
4048
4049 module_init(init_orinoco);
4050 module_exit(exit_orinoco);