1 /* orinoco.c - (formerly known as dldwd_cs.c and orinoco_cs.c)
3 * A driver for Hermes or Prism 2 chipset based PCMCIA wireless
4 * adaptors, with Lucent/Agere, Intersil or Symbol firmware.
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>
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
16 * Based on dummy_cs.c 1.27 2000/06/12 21:27:25
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/
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/
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.
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
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. */
50 * o Handle de-encapsulation within network layer, provide 802.11
51 * headers (patch from Thomas 'Dent' Mirlacher)
52 * o Fix possible races in SPY handling.
53 * o Disconnect wireless extensions from fundamental configuration.
54 * o (maybe) Software WEP support (patch from Stano Meduna).
55 * o (maybe) Use multiple Tx buffers - driver handling queue
56 * rather than firmware.
59 /* Locking and synchronization:
61 * The basic principle is that everything is serialized through a
62 * single spinlock, priv->lock. The lock is used in user, bh and irq
63 * context, so when taken outside hardirq context it should always be
64 * taken with interrupts disabled. The lock protects both the
65 * hardware and the struct orinoco_private.
67 * Another flag, priv->hw_unavailable indicates that the hardware is
68 * unavailable for an extended period of time (e.g. suspended, or in
69 * the middle of a hard reset). This flag is protected by the
70 * spinlock. All code which touches the hardware should check the
71 * flag after taking the lock, and if it is set, give up on whatever
72 * they are doing and drop the lock again. The orinoco_lock()
73 * function handles this (it unlocks and returns -EBUSY if
74 * hw_unavailable is non-zero).
77 #define DRIVER_NAME "orinoco"
79 #include <linux/config.h>
80 #include <linux/module.h>
81 #include <linux/kernel.h>
82 #include <linux/init.h>
83 #include <linux/netdevice.h>
84 #include <linux/etherdevice.h>
85 #include <linux/ethtool.h>
86 #include <linux/wireless.h>
87 #include <net/iw_handler.h>
88 #include <net/ieee80211.h>
90 #include "hermes_rid.h"
93 /********************************************************************/
94 /* Module information */
95 /********************************************************************/
97 MODULE_AUTHOR("Pavel Roskin <proski@gnu.org> & David Gibson <hermes@gibson.dropbear.id.au>");
98 MODULE_DESCRIPTION("Driver for Lucent Orinoco, Prism II based and similar wireless cards");
99 MODULE_LICENSE("Dual MPL/GPL");
101 /* Level of debugging. Used in the macros in orinoco.h */
103 int orinoco_debug = ORINOCO_DEBUG;
104 module_param(orinoco_debug, int, 0644);
105 MODULE_PARM_DESC(orinoco_debug, "Debug level");
106 EXPORT_SYMBOL(orinoco_debug);
109 static int suppress_linkstatus; /* = 0 */
110 module_param(suppress_linkstatus, bool, 0644);
111 MODULE_PARM_DESC(suppress_linkstatus, "Don't log link status changes");
112 static int ignore_disconnect; /* = 0 */
113 module_param(ignore_disconnect, int, 0644);
114 MODULE_PARM_DESC(ignore_disconnect, "Don't report lost link to the network layer");
116 static int force_monitor; /* = 0 */
117 module_param(force_monitor, int, 0644);
118 MODULE_PARM_DESC(force_monitor, "Allow monitor mode for all firmware versions");
120 /********************************************************************/
121 /* Compile time configuration and compatibility stuff */
122 /********************************************************************/
124 /* We do this this way to avoid ifdefs in the actual code */
126 #define SPY_NUMBER(priv) (priv->spy_data.spy_number)
128 #define SPY_NUMBER(priv) 0
129 #endif /* WIRELESS_SPY */
131 /********************************************************************/
132 /* Internal constants */
133 /********************************************************************/
135 /* 802.2 LLC/SNAP header used for Ethernet encapsulation over 802.11 */
136 static const u8 encaps_hdr[] = {0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00};
137 #define ENCAPS_OVERHEAD (sizeof(encaps_hdr) + 2)
139 #define ORINOCO_MIN_MTU 256
140 #define ORINOCO_MAX_MTU (IEEE80211_DATA_LEN - ENCAPS_OVERHEAD)
142 #define SYMBOL_MAX_VER_LEN (14)
145 #define MAX_IRQLOOPS_PER_IRQ 10
146 #define MAX_IRQLOOPS_PER_JIFFY (20000/HZ) /* Based on a guestimate of
147 * how many events the
149 * legitimately generate */
150 #define SMALL_KEY_SIZE 5
151 #define LARGE_KEY_SIZE 13
152 #define TX_NICBUF_SIZE_BUG 1585 /* Bug in Symbol firmware */
154 #define DUMMY_FID 0xFFFF
156 /*#define MAX_MULTICAST(priv) (priv->firmware_type == FIRMWARE_TYPE_AGERE ? \
157 HERMES_MAX_MULTICAST : 0)*/
158 #define MAX_MULTICAST(priv) (HERMES_MAX_MULTICAST)
160 #define ORINOCO_INTEN (HERMES_EV_RX | HERMES_EV_ALLOC \
161 | HERMES_EV_TX | HERMES_EV_TXEXC \
162 | HERMES_EV_WTERR | HERMES_EV_INFO \
163 | HERMES_EV_INFDROP )
165 #define MAX_RID_LEN 1024
167 static const struct iw_handler_def orinoco_handler_def;
168 static struct ethtool_ops orinoco_ethtool_ops;
170 /********************************************************************/
172 /********************************************************************/
174 /* The frequency of each channel in MHz */
175 static const long channel_frequency[] = {
176 2412, 2417, 2422, 2427, 2432, 2437, 2442,
177 2447, 2452, 2457, 2462, 2467, 2472, 2484
179 #define NUM_CHANNELS ARRAY_SIZE(channel_frequency)
181 /* This tables gives the actual meanings of the bitrate IDs returned
182 * by the firmware. */
184 int bitrate; /* in 100s of kilobits */
186 u16 agere_txratectrl;
187 u16 intersil_txratectrl;
188 } bitrate_table[] = {
189 {110, 1, 3, 15}, /* Entry 0 is the default */
198 #define BITRATE_TABLE_SIZE ARRAY_SIZE(bitrate_table)
200 /********************************************************************/
202 /********************************************************************/
204 /* Used in Event handling.
205 * We avoid nested structures as they break on ARM -- Moustafa */
206 struct hermes_tx_descriptor_802_11 {
207 /* hermes_tx_descriptor */
228 u8 h_dest[ETH_ALEN]; /* destination eth addr */
229 u8 h_source[ETH_ALEN]; /* source ether addr */
230 __be16 h_proto; /* packet type ID field */
239 } __attribute__ ((packed));
241 /* Rx frame header except compatibility 802.3 header */
242 struct hermes_rx_descriptor {
263 } __attribute__ ((packed));
265 /********************************************************************/
266 /* Function prototypes */
267 /********************************************************************/
269 static int __orinoco_program_rids(struct net_device *dev);
270 static void __orinoco_set_multicast_list(struct net_device *dev);
272 /********************************************************************/
273 /* Internal helper functions */
274 /********************************************************************/
276 static inline void set_port_type(struct orinoco_private *priv)
278 switch (priv->iw_mode) {
281 priv->createibss = 0;
284 if (priv->prefer_port3) {
286 priv->createibss = 0;
288 priv->port_type = priv->ibss_port;
289 priv->createibss = 1;
292 case IW_MODE_MONITOR:
294 priv->createibss = 0;
297 printk(KERN_ERR "%s: Invalid priv->iw_mode in set_port_type()\n",
302 /********************************************************************/
304 /********************************************************************/
306 static int orinoco_open(struct net_device *dev)
308 struct orinoco_private *priv = netdev_priv(dev);
312 if (orinoco_lock(priv, &flags) != 0)
315 err = __orinoco_up(dev);
320 orinoco_unlock(priv, &flags);
325 static int orinoco_stop(struct net_device *dev)
327 struct orinoco_private *priv = netdev_priv(dev);
330 /* We mustn't use orinoco_lock() here, because we need to be
331 able to close the interface even if hw_unavailable is set
332 (e.g. as we're released after a PC Card removal) */
333 spin_lock_irq(&priv->lock);
337 err = __orinoco_down(dev);
339 spin_unlock_irq(&priv->lock);
344 static struct net_device_stats *orinoco_get_stats(struct net_device *dev)
346 struct orinoco_private *priv = netdev_priv(dev);
351 static struct iw_statistics *orinoco_get_wireless_stats(struct net_device *dev)
353 struct orinoco_private *priv = netdev_priv(dev);
354 hermes_t *hw = &priv->hw;
355 struct iw_statistics *wstats = &priv->wstats;
359 if (! netif_device_present(dev)) {
360 printk(KERN_WARNING "%s: get_wireless_stats() called while device not present\n",
362 return NULL; /* FIXME: Can we do better than this? */
365 /* If busy, return the old stats. Returning NULL may cause
366 * the interface to disappear from /proc/net/wireless */
367 if (orinoco_lock(priv, &flags) != 0)
370 /* We can't really wait for the tallies inquiry command to
371 * complete, so we just use the previous results and trigger
372 * a new tallies inquiry command for next time - Jean II */
373 /* FIXME: Really we should wait for the inquiry to come back -
374 * as it is the stats we give don't make a whole lot of sense.
375 * Unfortunately, it's not clear how to do that within the
376 * wireless extensions framework: I think we're in user
377 * context, but a lock seems to be held by the time we get in
378 * here so we're not safe to sleep here. */
379 hermes_inquire(hw, HERMES_INQ_TALLIES);
381 if (priv->iw_mode == IW_MODE_ADHOC) {
382 memset(&wstats->qual, 0, sizeof(wstats->qual));
383 /* If a spy address is defined, we report stats of the
384 * first spy address - Jean II */
385 if (SPY_NUMBER(priv)) {
386 wstats->qual.qual = priv->spy_data.spy_stat[0].qual;
387 wstats->qual.level = priv->spy_data.spy_stat[0].level;
388 wstats->qual.noise = priv->spy_data.spy_stat[0].noise;
389 wstats->qual.updated = priv->spy_data.spy_stat[0].updated;
393 __le16 qual, signal, noise;
394 } __attribute__ ((packed)) cq;
396 err = HERMES_READ_RECORD(hw, USER_BAP,
397 HERMES_RID_COMMSQUALITY, &cq);
400 wstats->qual.qual = (int)le16_to_cpu(cq.qual);
401 wstats->qual.level = (int)le16_to_cpu(cq.signal) - 0x95;
402 wstats->qual.noise = (int)le16_to_cpu(cq.noise) - 0x95;
403 wstats->qual.updated = 7;
407 orinoco_unlock(priv, &flags);
411 static void orinoco_set_multicast_list(struct net_device *dev)
413 struct orinoco_private *priv = netdev_priv(dev);
416 if (orinoco_lock(priv, &flags) != 0) {
417 printk(KERN_DEBUG "%s: orinoco_set_multicast_list() "
418 "called when hw_unavailable\n", dev->name);
422 __orinoco_set_multicast_list(dev);
423 orinoco_unlock(priv, &flags);
426 static int orinoco_change_mtu(struct net_device *dev, int new_mtu)
428 struct orinoco_private *priv = netdev_priv(dev);
430 if ( (new_mtu < ORINOCO_MIN_MTU) || (new_mtu > ORINOCO_MAX_MTU) )
433 if ( (new_mtu + ENCAPS_OVERHEAD + IEEE80211_HLEN) >
434 (priv->nicbuf_size - ETH_HLEN) )
442 /********************************************************************/
444 /********************************************************************/
446 static int orinoco_xmit(struct sk_buff *skb, struct net_device *dev)
448 struct orinoco_private *priv = netdev_priv(dev);
449 struct net_device_stats *stats = &priv->stats;
450 hermes_t *hw = &priv->hw;
452 u16 txfid = priv->txfid;
455 int len, data_len, data_off;
456 struct hermes_tx_descriptor desc;
459 TRACE_ENTER(dev->name);
461 if (! netif_running(dev)) {
462 printk(KERN_ERR "%s: Tx on stopped device!\n",
464 TRACE_EXIT(dev->name);
468 if (netif_queue_stopped(dev)) {
469 printk(KERN_DEBUG "%s: Tx while transmitter busy!\n",
471 TRACE_EXIT(dev->name);
475 if (orinoco_lock(priv, &flags) != 0) {
476 printk(KERN_ERR "%s: orinoco_xmit() called while hw_unavailable\n",
478 TRACE_EXIT(dev->name);
482 if (! netif_carrier_ok(dev) || (priv->iw_mode == IW_MODE_MONITOR)) {
483 /* Oops, the firmware hasn't established a connection,
484 silently drop the packet (this seems to be the
487 orinoco_unlock(priv, &flags);
489 TRACE_EXIT(dev->name);
493 /* Length of the packet body */
494 /* FIXME: what if the skb is smaller than this? */
495 len = max_t(int, ALIGN(skb->len, 2), ETH_ZLEN);
496 skb = skb_padto(skb, len);
501 eh = (struct ethhdr *)skb->data;
503 memset(&desc, 0, sizeof(desc));
504 desc.tx_control = cpu_to_le16(HERMES_TXCTRL_TX_OK | HERMES_TXCTRL_TX_EX);
505 err = hermes_bap_pwrite(hw, USER_BAP, &desc, sizeof(desc), txfid, 0);
508 printk(KERN_ERR "%s: Error %d writing Tx descriptor "
509 "to BAP\n", dev->name, err);
514 /* Clear the 802.11 header and data length fields - some
515 * firmwares (e.g. Lucent/Agere 8.xx) appear to get confused
516 * if this isn't done. */
517 hermes_clear_words(hw, HERMES_DATA0,
518 HERMES_802_3_OFFSET - HERMES_802_11_OFFSET);
520 /* Encapsulate Ethernet-II frames */
521 if (ntohs(eh->h_proto) > ETH_DATA_LEN) { /* Ethernet-II frame */
522 struct header_struct hdr;
524 data_off = HERMES_802_3_OFFSET + sizeof(hdr);
525 p = skb->data + ETH_HLEN;
528 memcpy(hdr.dest, eh->h_dest, ETH_ALEN);
529 memcpy(hdr.src, eh->h_source, ETH_ALEN);
530 hdr.len = htons(data_len + ENCAPS_OVERHEAD);
533 memcpy(&hdr.dsap, &encaps_hdr, sizeof(encaps_hdr));
535 hdr.ethertype = eh->h_proto;
536 err = hermes_bap_pwrite(hw, USER_BAP, &hdr, sizeof(hdr),
537 txfid, HERMES_802_3_OFFSET);
540 printk(KERN_ERR "%s: Error %d writing packet "
541 "header to BAP\n", dev->name, err);
545 /* Actual xfer length - allow for padding */
546 len = ALIGN(data_len, 2);
547 if (len < ETH_ZLEN - ETH_HLEN)
548 len = ETH_ZLEN - ETH_HLEN;
549 } else { /* IEEE 802.3 frame */
550 data_len = len + ETH_HLEN;
551 data_off = HERMES_802_3_OFFSET;
553 /* Actual xfer length - round up for odd length packets */
554 len = ALIGN(data_len, 2);
559 err = hermes_bap_pwrite_pad(hw, USER_BAP, p, data_len, len,
562 printk(KERN_ERR "%s: Error %d writing packet to BAP\n",
568 /* Finally, we actually initiate the send */
569 netif_stop_queue(dev);
571 err = hermes_docmd_wait(hw, HERMES_CMD_TX | HERMES_CMD_RECL,
574 netif_start_queue(dev);
576 printk(KERN_ERR "%s: Error %d transmitting packet\n",
582 dev->trans_start = jiffies;
583 stats->tx_bytes += data_off + data_len;
585 orinoco_unlock(priv, &flags);
589 TRACE_EXIT(dev->name);
593 TRACE_EXIT(dev->name);
595 orinoco_unlock(priv, &flags);
599 static void __orinoco_ev_alloc(struct net_device *dev, hermes_t *hw)
601 struct orinoco_private *priv = netdev_priv(dev);
602 u16 fid = hermes_read_regn(hw, ALLOCFID);
604 if (fid != priv->txfid) {
605 if (fid != DUMMY_FID)
606 printk(KERN_WARNING "%s: Allocate event on unexpected fid (%04X)\n",
611 hermes_write_regn(hw, ALLOCFID, DUMMY_FID);
614 static void __orinoco_ev_tx(struct net_device *dev, hermes_t *hw)
616 struct orinoco_private *priv = netdev_priv(dev);
617 struct net_device_stats *stats = &priv->stats;
621 netif_wake_queue(dev);
623 hermes_write_regn(hw, TXCOMPLFID, DUMMY_FID);
626 static void __orinoco_ev_txexc(struct net_device *dev, hermes_t *hw)
628 struct orinoco_private *priv = netdev_priv(dev);
629 struct net_device_stats *stats = &priv->stats;
630 u16 fid = hermes_read_regn(hw, TXCOMPLFID);
632 struct hermes_tx_descriptor_802_11 hdr;
635 if (fid == DUMMY_FID)
636 return; /* Nothing's really happened */
638 /* Read part of the frame header - we need status and addr1 */
639 err = hermes_bap_pread(hw, IRQ_BAP, &hdr,
640 offsetof(struct hermes_tx_descriptor_802_11,
644 hermes_write_regn(hw, TXCOMPLFID, DUMMY_FID);
648 printk(KERN_WARNING "%s: Unable to read descriptor on Tx error "
649 "(FID=%04X error %d)\n",
650 dev->name, fid, err);
654 DEBUG(1, "%s: Tx error, err %d (FID=%04X)\n", dev->name,
657 /* We produce a TXDROP event only for retry or lifetime
658 * exceeded, because that's the only status that really mean
659 * that this particular node went away.
660 * Other errors means that *we* screwed up. - Jean II */
661 status = le16_to_cpu(hdr.status);
662 if (status & (HERMES_TXSTAT_RETRYERR | HERMES_TXSTAT_AGEDERR)) {
663 union iwreq_data wrqu;
665 /* Copy 802.11 dest address.
666 * We use the 802.11 header because the frame may
667 * not be 802.3 or may be mangled...
668 * In Ad-Hoc mode, it will be the node address.
669 * In managed mode, it will be most likely the AP addr
670 * User space will figure out how to convert it to
671 * whatever it needs (IP address or else).
673 memcpy(wrqu.addr.sa_data, hdr.addr1, ETH_ALEN);
674 wrqu.addr.sa_family = ARPHRD_ETHER;
676 /* Send event to user space */
677 wireless_send_event(dev, IWEVTXDROP, &wrqu, NULL);
680 netif_wake_queue(dev);
683 static void orinoco_tx_timeout(struct net_device *dev)
685 struct orinoco_private *priv = netdev_priv(dev);
686 struct net_device_stats *stats = &priv->stats;
687 struct hermes *hw = &priv->hw;
689 printk(KERN_WARNING "%s: Tx timeout! "
690 "ALLOCFID=%04x, TXCOMPLFID=%04x, EVSTAT=%04x\n",
691 dev->name, hermes_read_regn(hw, ALLOCFID),
692 hermes_read_regn(hw, TXCOMPLFID), hermes_read_regn(hw, EVSTAT));
696 schedule_work(&priv->reset_work);
699 /********************************************************************/
700 /* Rx path (data frames) */
701 /********************************************************************/
703 /* Does the frame have a SNAP header indicating it should be
704 * de-encapsulated to Ethernet-II? */
705 static inline int is_ethersnap(void *_hdr)
709 /* We de-encapsulate all packets which, a) have SNAP headers
710 * (i.e. SSAP=DSAP=0xaa and CTRL=0x3 in the 802.2 LLC header
711 * and where b) the OUI of the SNAP header is 00:00:00 or
712 * 00:00:f8 - we need both because different APs appear to use
713 * different OUIs for some reason */
714 return (memcmp(hdr, &encaps_hdr, 5) == 0)
715 && ( (hdr[5] == 0x00) || (hdr[5] == 0xf8) );
718 static inline void orinoco_spy_gather(struct net_device *dev, u_char *mac,
719 int level, int noise)
721 struct iw_quality wstats;
722 wstats.level = level - 0x95;
723 wstats.noise = noise - 0x95;
724 wstats.qual = (level > noise) ? (level - noise) : 0;
726 /* Update spy records */
727 wireless_spy_update(dev, mac, &wstats);
730 static void orinoco_stat_gather(struct net_device *dev,
732 struct hermes_rx_descriptor *desc)
734 struct orinoco_private *priv = netdev_priv(dev);
736 /* Using spy support with lots of Rx packets, like in an
737 * infrastructure (AP), will really slow down everything, because
738 * the MAC address must be compared to each entry of the spy list.
739 * If the user really asks for it (set some address in the
740 * spy list), we do it, but he will pay the price.
741 * Note that to get here, you need both WIRELESS_SPY
742 * compiled in AND some addresses in the list !!!
744 /* Note : gcc will optimise the whole section away if
745 * WIRELESS_SPY is not defined... - Jean II */
746 if (SPY_NUMBER(priv)) {
747 orinoco_spy_gather(dev, skb->mac.raw + ETH_ALEN,
748 desc->signal, desc->silence);
753 * orinoco_rx_monitor - handle received monitor frames.
758 * desc rx descriptor of the frame
760 * Call context: interrupt
762 static void orinoco_rx_monitor(struct net_device *dev, u16 rxfid,
763 struct hermes_rx_descriptor *desc)
765 u32 hdrlen = 30; /* return full header by default */
771 struct orinoco_private *priv = netdev_priv(dev);
772 struct net_device_stats *stats = &priv->stats;
773 hermes_t *hw = &priv->hw;
775 len = le16_to_cpu(desc->data_len);
777 /* Determine the size of the header and the data */
778 fc = le16_to_cpu(desc->frame_ctl);
779 switch (fc & IEEE80211_FCTL_FTYPE) {
780 case IEEE80211_FTYPE_DATA:
781 if ((fc & IEEE80211_FCTL_TODS)
782 && (fc & IEEE80211_FCTL_FROMDS))
788 case IEEE80211_FTYPE_MGMT:
792 case IEEE80211_FTYPE_CTL:
793 switch (fc & IEEE80211_FCTL_STYPE) {
794 case IEEE80211_STYPE_PSPOLL:
795 case IEEE80211_STYPE_RTS:
796 case IEEE80211_STYPE_CFEND:
797 case IEEE80211_STYPE_CFENDACK:
800 case IEEE80211_STYPE_CTS:
801 case IEEE80211_STYPE_ACK:
807 /* Unknown frame type */
811 /* sanity check the length */
812 if (datalen > IEEE80211_DATA_LEN + 12) {
813 printk(KERN_DEBUG "%s: oversized monitor frame, "
814 "data length = %d\n", dev->name, datalen);
816 stats->rx_length_errors++;
820 skb = dev_alloc_skb(hdrlen + datalen);
822 printk(KERN_WARNING "%s: Cannot allocate skb for monitor frame\n",
828 /* Copy the 802.11 header to the skb */
829 memcpy(skb_put(skb, hdrlen), &(desc->frame_ctl), hdrlen);
830 skb->mac.raw = skb->data;
832 /* If any, copy the data from the card to the skb */
834 err = hermes_bap_pread(hw, IRQ_BAP, skb_put(skb, datalen),
835 ALIGN(datalen, 2), rxfid,
836 HERMES_802_2_OFFSET);
838 printk(KERN_ERR "%s: error %d reading monitor frame\n",
845 skb->ip_summed = CHECKSUM_NONE;
846 skb->pkt_type = PACKET_OTHERHOST;
847 skb->protocol = __constant_htons(ETH_P_802_2);
849 dev->last_rx = jiffies;
851 stats->rx_bytes += skb->len;
857 dev_kfree_skb_irq(skb);
863 static void __orinoco_ev_rx(struct net_device *dev, hermes_t *hw)
865 struct orinoco_private *priv = netdev_priv(dev);
866 struct net_device_stats *stats = &priv->stats;
867 struct iw_statistics *wstats = &priv->wstats;
868 struct sk_buff *skb = NULL;
869 u16 rxfid, status, fc;
871 struct hermes_rx_descriptor desc;
875 rxfid = hermes_read_regn(hw, RXFID);
877 err = hermes_bap_pread(hw, IRQ_BAP, &desc, sizeof(desc),
880 printk(KERN_ERR "%s: error %d reading Rx descriptor. "
881 "Frame dropped.\n", dev->name, err);
885 status = le16_to_cpu(desc.status);
887 if (status & HERMES_RXSTAT_BADCRC) {
888 DEBUG(1, "%s: Bad CRC on Rx. Frame dropped.\n",
890 stats->rx_crc_errors++;
894 /* Handle frames in monitor mode */
895 if (priv->iw_mode == IW_MODE_MONITOR) {
896 orinoco_rx_monitor(dev, rxfid, &desc);
900 if (status & HERMES_RXSTAT_UNDECRYPTABLE) {
901 DEBUG(1, "%s: Undecryptable frame on Rx. Frame dropped.\n",
903 wstats->discard.code++;
907 length = le16_to_cpu(desc.data_len);
908 fc = le16_to_cpu(desc.frame_ctl);
911 if (length < 3) { /* No for even an 802.2 LLC header */
912 /* At least on Symbol firmware with PCF we get quite a
913 lot of these legitimately - Poll frames with no
917 if (length > IEEE80211_DATA_LEN) {
918 printk(KERN_WARNING "%s: Oversized frame received (%d bytes)\n",
920 stats->rx_length_errors++;
924 /* We need space for the packet data itself, plus an ethernet
925 header, plus 2 bytes so we can align the IP header on a
926 32bit boundary, plus 1 byte so we can read in odd length
927 packets from the card, which has an IO granularity of 16
929 skb = dev_alloc_skb(length+ETH_HLEN+2+1);
931 printk(KERN_WARNING "%s: Can't allocate skb for Rx\n",
936 /* We'll prepend the header, so reserve space for it. The worst
937 case is no decapsulation, when 802.3 header is prepended and
938 nothing is removed. 2 is for aligning the IP header. */
939 skb_reserve(skb, ETH_HLEN + 2);
941 err = hermes_bap_pread(hw, IRQ_BAP, skb_put(skb, length),
942 ALIGN(length, 2), rxfid,
943 HERMES_802_2_OFFSET);
945 printk(KERN_ERR "%s: error %d reading frame. "
946 "Frame dropped.\n", dev->name, err);
950 /* Handle decapsulation
951 * In most cases, the firmware tell us about SNAP frames.
952 * For some reason, the SNAP frames sent by LinkSys APs
953 * are not properly recognised by most firmwares.
954 * So, check ourselves */
955 if (length >= ENCAPS_OVERHEAD &&
956 (((status & HERMES_RXSTAT_MSGTYPE) == HERMES_RXSTAT_1042) ||
957 ((status & HERMES_RXSTAT_MSGTYPE) == HERMES_RXSTAT_TUNNEL) ||
958 is_ethersnap(skb->data))) {
959 /* These indicate a SNAP within 802.2 LLC within
960 802.11 frame which we'll need to de-encapsulate to
961 the original EthernetII frame. */
962 hdr = (struct ethhdr *)skb_push(skb, ETH_HLEN - ENCAPS_OVERHEAD);
964 /* 802.3 frame - prepend 802.3 header as is */
965 hdr = (struct ethhdr *)skb_push(skb, ETH_HLEN);
966 hdr->h_proto = htons(length);
968 memcpy(hdr->h_dest, desc.addr1, ETH_ALEN);
969 if (fc & IEEE80211_FCTL_FROMDS)
970 memcpy(hdr->h_source, desc.addr3, ETH_ALEN);
972 memcpy(hdr->h_source, desc.addr2, ETH_ALEN);
974 dev->last_rx = jiffies;
976 skb->protocol = eth_type_trans(skb, dev);
977 skb->ip_summed = CHECKSUM_NONE;
978 if (fc & IEEE80211_FCTL_TODS)
979 skb->pkt_type = PACKET_OTHERHOST;
981 /* Process the wireless stats if needed */
982 orinoco_stat_gather(dev, skb, &desc);
984 /* Pass the packet to the networking stack */
987 stats->rx_bytes += length;
992 dev_kfree_skb_irq(skb);
998 /********************************************************************/
999 /* Rx path (info frames) */
1000 /********************************************************************/
1002 static void print_linkstatus(struct net_device *dev, u16 status)
1006 if (suppress_linkstatus)
1010 case HERMES_LINKSTATUS_NOT_CONNECTED:
1011 s = "Not Connected";
1013 case HERMES_LINKSTATUS_CONNECTED:
1016 case HERMES_LINKSTATUS_DISCONNECTED:
1019 case HERMES_LINKSTATUS_AP_CHANGE:
1022 case HERMES_LINKSTATUS_AP_OUT_OF_RANGE:
1023 s = "AP Out of Range";
1025 case HERMES_LINKSTATUS_AP_IN_RANGE:
1028 case HERMES_LINKSTATUS_ASSOC_FAILED:
1029 s = "Association Failed";
1035 printk(KERN_INFO "%s: New link status: %s (%04x)\n",
1036 dev->name, s, status);
1039 /* Search scan results for requested BSSID, join it if found */
1040 static void orinoco_join_ap(struct net_device *dev)
1042 struct orinoco_private *priv = netdev_priv(dev);
1043 struct hermes *hw = &priv->hw;
1045 unsigned long flags;
1049 } __attribute__ ((packed)) req;
1050 const int atom_len = offsetof(struct prism2_scan_apinfo, atim);
1051 struct prism2_scan_apinfo *atom = NULL;
1057 /* Allocate buffer for scan results */
1058 buf = kmalloc(MAX_SCAN_LEN, GFP_KERNEL);
1062 if (orinoco_lock(priv, &flags) != 0)
1065 /* Sanity checks in case user changed something in the meantime */
1066 if (! priv->bssid_fixed)
1069 if (strlen(priv->desired_essid) == 0)
1072 /* Read scan results from the firmware */
1073 err = hermes_read_ltv(hw, USER_BAP,
1074 HERMES_RID_SCANRESULTSTABLE,
1075 MAX_SCAN_LEN, &len, buf);
1077 printk(KERN_ERR "%s: Cannot read scan results\n",
1082 len = HERMES_RECLEN_TO_BYTES(len);
1084 /* Go through the scan results looking for the channel of the AP
1085 * we were requested to join */
1086 for (; offset + atom_len <= len; offset += atom_len) {
1087 atom = (struct prism2_scan_apinfo *) (buf + offset);
1088 if (memcmp(&atom->bssid, priv->desired_bssid, ETH_ALEN) == 0) {
1095 DEBUG(1, "%s: Requested AP not found in scan results\n",
1100 memcpy(req.bssid, priv->desired_bssid, ETH_ALEN);
1101 req.channel = atom->channel; /* both are little-endian */
1102 err = HERMES_WRITE_RECORD(hw, USER_BAP, HERMES_RID_CNFJOINREQUEST,
1105 printk(KERN_ERR "%s: Error issuing join request\n", dev->name);
1108 orinoco_unlock(priv, &flags);
1114 /* Send new BSSID to userspace */
1115 static void orinoco_send_wevents(struct net_device *dev)
1117 struct orinoco_private *priv = netdev_priv(dev);
1118 struct hermes *hw = &priv->hw;
1119 union iwreq_data wrqu;
1121 unsigned long flags;
1123 if (orinoco_lock(priv, &flags) != 0)
1126 err = hermes_read_ltv(hw, IRQ_BAP, HERMES_RID_CURRENTBSSID,
1127 ETH_ALEN, NULL, wrqu.ap_addr.sa_data);
1131 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
1133 /* Send event to user space */
1134 wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL);
1137 orinoco_unlock(priv, &flags);
1140 static void __orinoco_ev_info(struct net_device *dev, hermes_t *hw)
1142 struct orinoco_private *priv = netdev_priv(dev);
1147 } __attribute__ ((packed)) info;
1151 /* This is an answer to an INQUIRE command that we did earlier,
1152 * or an information "event" generated by the card
1153 * The controller return to us a pseudo frame containing
1154 * the information in question - Jean II */
1155 infofid = hermes_read_regn(hw, INFOFID);
1157 /* Read the info frame header - don't try too hard */
1158 err = hermes_bap_pread(hw, IRQ_BAP, &info, sizeof(info),
1161 printk(KERN_ERR "%s: error %d reading info frame. "
1162 "Frame dropped.\n", dev->name, err);
1166 len = HERMES_RECLEN_TO_BYTES(le16_to_cpu(info.len));
1167 type = le16_to_cpu(info.type);
1170 case HERMES_INQ_TALLIES: {
1171 struct hermes_tallies_frame tallies;
1172 struct iw_statistics *wstats = &priv->wstats;
1174 if (len > sizeof(tallies)) {
1175 printk(KERN_WARNING "%s: Tallies frame too long (%d bytes)\n",
1177 len = sizeof(tallies);
1180 err = hermes_bap_pread(hw, IRQ_BAP, &tallies, len,
1181 infofid, sizeof(info));
1185 /* Increment our various counters */
1186 /* wstats->discard.nwid - no wrong BSSID stuff */
1187 wstats->discard.code +=
1188 le16_to_cpu(tallies.RxWEPUndecryptable);
1189 if (len == sizeof(tallies))
1190 wstats->discard.code +=
1191 le16_to_cpu(tallies.RxDiscards_WEPICVError) +
1192 le16_to_cpu(tallies.RxDiscards_WEPExcluded);
1193 wstats->discard.misc +=
1194 le16_to_cpu(tallies.TxDiscardsWrongSA);
1195 wstats->discard.fragment +=
1196 le16_to_cpu(tallies.RxMsgInBadMsgFragments);
1197 wstats->discard.retries +=
1198 le16_to_cpu(tallies.TxRetryLimitExceeded);
1199 /* wstats->miss.beacon - no match */
1202 case HERMES_INQ_LINKSTATUS: {
1203 struct hermes_linkstatus linkstatus;
1207 if (priv->iw_mode == IW_MODE_MONITOR)
1210 if (len != sizeof(linkstatus)) {
1211 printk(KERN_WARNING "%s: Unexpected size for linkstatus frame (%d bytes)\n",
1216 err = hermes_bap_pread(hw, IRQ_BAP, &linkstatus, len,
1217 infofid, sizeof(info));
1220 newstatus = le16_to_cpu(linkstatus.linkstatus);
1222 /* Symbol firmware uses "out of range" to signal that
1223 * the hostscan frame can be requested. */
1224 if (newstatus == HERMES_LINKSTATUS_AP_OUT_OF_RANGE &&
1225 priv->firmware_type == FIRMWARE_TYPE_SYMBOL &&
1226 priv->has_hostscan && priv->scan_inprogress) {
1227 hermes_inquire(hw, HERMES_INQ_HOSTSCAN_SYMBOL);
1231 connected = (newstatus == HERMES_LINKSTATUS_CONNECTED)
1232 || (newstatus == HERMES_LINKSTATUS_AP_CHANGE)
1233 || (newstatus == HERMES_LINKSTATUS_AP_IN_RANGE);
1236 netif_carrier_on(dev);
1237 else if (!ignore_disconnect)
1238 netif_carrier_off(dev);
1240 if (newstatus != priv->last_linkstatus) {
1241 priv->last_linkstatus = newstatus;
1242 print_linkstatus(dev, newstatus);
1243 /* The info frame contains only one word which is the
1244 * status (see hermes.h). The status is pretty boring
1245 * in itself, that's why we export the new BSSID...
1247 schedule_work(&priv->wevent_work);
1251 case HERMES_INQ_SCAN:
1252 if (!priv->scan_inprogress && priv->bssid_fixed &&
1253 priv->firmware_type == FIRMWARE_TYPE_INTERSIL) {
1254 schedule_work(&priv->join_work);
1258 case HERMES_INQ_HOSTSCAN:
1259 case HERMES_INQ_HOSTSCAN_SYMBOL: {
1260 /* Result of a scanning. Contains information about
1261 * cells in the vicinity - Jean II */
1262 union iwreq_data wrqu;
1267 printk(KERN_WARNING "%s: Scan results too large (%d bytes)\n",
1272 /* We are a strict producer. If the previous scan results
1273 * have not been consumed, we just have to drop this
1274 * frame. We can't remove the previous results ourselves,
1275 * that would be *very* racy... Jean II */
1276 if (priv->scan_result != NULL) {
1277 printk(KERN_WARNING "%s: Previous scan results not consumed, dropping info frame.\n", dev->name);
1281 /* Allocate buffer for results */
1282 buf = kmalloc(len, GFP_ATOMIC);
1284 /* No memory, so can't printk()... */
1287 /* Read scan data */
1288 err = hermes_bap_pread(hw, IRQ_BAP, (void *) buf, len,
1289 infofid, sizeof(info));
1295 #ifdef ORINOCO_DEBUG
1298 printk(KERN_DEBUG "Scan result [%02X", buf[0]);
1299 for(i = 1; i < (len * 2); i++)
1300 printk(":%02X", buf[i]);
1303 #endif /* ORINOCO_DEBUG */
1305 /* Allow the clients to access the results */
1306 priv->scan_len = len;
1307 priv->scan_result = buf;
1309 /* Send an empty event to user space.
1310 * We don't send the received data on the event because
1311 * it would require us to do complex transcoding, and
1312 * we want to minimise the work done in the irq handler
1313 * Use a request to extract the data - Jean II */
1314 wrqu.data.length = 0;
1315 wrqu.data.flags = 0;
1316 wireless_send_event(dev, SIOCGIWSCAN, &wrqu, NULL);
1319 case HERMES_INQ_SEC_STAT_AGERE:
1320 /* Security status (Agere specific) */
1321 /* Ignore this frame for now */
1322 if (priv->firmware_type == FIRMWARE_TYPE_AGERE)
1326 printk(KERN_DEBUG "%s: Unknown information frame received: "
1327 "type 0x%04x, length %d\n", dev->name, type, len);
1328 /* We don't actually do anything about it */
1333 static void __orinoco_ev_infdrop(struct net_device *dev, hermes_t *hw)
1335 if (net_ratelimit())
1336 printk(KERN_DEBUG "%s: Information frame lost.\n", dev->name);
1339 /********************************************************************/
1340 /* Internal hardware control routines */
1341 /********************************************************************/
1343 int __orinoco_up(struct net_device *dev)
1345 struct orinoco_private *priv = netdev_priv(dev);
1346 struct hermes *hw = &priv->hw;
1349 netif_carrier_off(dev); /* just to make sure */
1351 err = __orinoco_program_rids(dev);
1353 printk(KERN_ERR "%s: Error %d configuring card\n",
1358 /* Fire things up again */
1359 hermes_set_irqmask(hw, ORINOCO_INTEN);
1360 err = hermes_enable_port(hw, 0);
1362 printk(KERN_ERR "%s: Error %d enabling MAC port\n",
1367 netif_start_queue(dev);
1372 int __orinoco_down(struct net_device *dev)
1374 struct orinoco_private *priv = netdev_priv(dev);
1375 struct hermes *hw = &priv->hw;
1378 netif_stop_queue(dev);
1380 if (! priv->hw_unavailable) {
1381 if (! priv->broken_disableport) {
1382 err = hermes_disable_port(hw, 0);
1384 /* Some firmwares (e.g. Intersil 1.3.x) seem
1385 * to have problems disabling the port, oh
1387 printk(KERN_WARNING "%s: Error %d disabling MAC port\n",
1389 priv->broken_disableport = 1;
1392 hermes_set_irqmask(hw, 0);
1393 hermes_write_regn(hw, EVACK, 0xffff);
1396 /* firmware will have to reassociate */
1397 netif_carrier_off(dev);
1398 priv->last_linkstatus = 0xffff;
1403 int orinoco_reinit_firmware(struct net_device *dev)
1405 struct orinoco_private *priv = netdev_priv(dev);
1406 struct hermes *hw = &priv->hw;
1409 err = hermes_init(hw);
1413 err = hermes_allocate(hw, priv->nicbuf_size, &priv->txfid);
1414 if (err == -EIO && priv->nicbuf_size > TX_NICBUF_SIZE_BUG) {
1415 /* Try workaround for old Symbol firmware bug */
1416 printk(KERN_WARNING "%s: firmware ALLOC bug detected "
1417 "(old Symbol firmware?). Trying to work around... ",
1420 priv->nicbuf_size = TX_NICBUF_SIZE_BUG;
1421 err = hermes_allocate(hw, priv->nicbuf_size, &priv->txfid);
1423 printk("failed!\n");
1431 static int __orinoco_hw_set_bitrate(struct orinoco_private *priv)
1433 hermes_t *hw = &priv->hw;
1436 if (priv->bitratemode >= BITRATE_TABLE_SIZE) {
1437 printk(KERN_ERR "%s: BUG: Invalid bitrate mode %d\n",
1438 priv->ndev->name, priv->bitratemode);
1442 switch (priv->firmware_type) {
1443 case FIRMWARE_TYPE_AGERE:
1444 err = hermes_write_wordrec(hw, USER_BAP,
1445 HERMES_RID_CNFTXRATECONTROL,
1446 bitrate_table[priv->bitratemode].agere_txratectrl);
1448 case FIRMWARE_TYPE_INTERSIL:
1449 case FIRMWARE_TYPE_SYMBOL:
1450 err = hermes_write_wordrec(hw, USER_BAP,
1451 HERMES_RID_CNFTXRATECONTROL,
1452 bitrate_table[priv->bitratemode].intersil_txratectrl);
1461 /* Set fixed AP address */
1462 static int __orinoco_hw_set_wap(struct orinoco_private *priv)
1466 hermes_t *hw = &priv->hw;
1468 switch (priv->firmware_type) {
1469 case FIRMWARE_TYPE_AGERE:
1472 case FIRMWARE_TYPE_INTERSIL:
1473 if (priv->bssid_fixed)
1478 err = hermes_write_wordrec(hw, USER_BAP,
1479 HERMES_RID_CNFROAMINGMODE,
1482 case FIRMWARE_TYPE_SYMBOL:
1483 err = HERMES_WRITE_RECORD(hw, USER_BAP,
1484 HERMES_RID_CNFMANDATORYBSSID_SYMBOL,
1485 &priv->desired_bssid);
1491 /* Change the WEP keys and/or the current keys. Can be called
1492 * either from __orinoco_hw_setup_wep() or directly from
1493 * orinoco_ioctl_setiwencode(). In the later case the association
1494 * with the AP is not broken (if the firmware can handle it),
1495 * which is needed for 802.1x implementations. */
1496 static int __orinoco_hw_setup_wepkeys(struct orinoco_private *priv)
1498 hermes_t *hw = &priv->hw;
1501 switch (priv->firmware_type) {
1502 case FIRMWARE_TYPE_AGERE:
1503 err = HERMES_WRITE_RECORD(hw, USER_BAP,
1504 HERMES_RID_CNFWEPKEYS_AGERE,
1508 err = hermes_write_wordrec(hw, USER_BAP,
1509 HERMES_RID_CNFTXKEY_AGERE,
1514 case FIRMWARE_TYPE_INTERSIL:
1515 case FIRMWARE_TYPE_SYMBOL:
1520 /* Force uniform key length to work around firmware bugs */
1521 keylen = le16_to_cpu(priv->keys[priv->tx_key].len);
1523 if (keylen > LARGE_KEY_SIZE) {
1524 printk(KERN_ERR "%s: BUG: Key %d has oversize length %d.\n",
1525 priv->ndev->name, priv->tx_key, keylen);
1529 /* Write all 4 keys */
1530 for(i = 0; i < ORINOCO_MAX_KEYS; i++) {
1531 err = hermes_write_ltv(hw, USER_BAP,
1532 HERMES_RID_CNFDEFAULTKEY0 + i,
1533 HERMES_BYTES_TO_RECLEN(keylen),
1534 priv->keys[i].data);
1539 /* Write the index of the key used in transmission */
1540 err = hermes_write_wordrec(hw, USER_BAP,
1541 HERMES_RID_CNFWEPDEFAULTKEYID,
1552 static int __orinoco_hw_setup_wep(struct orinoco_private *priv)
1554 hermes_t *hw = &priv->hw;
1556 int master_wep_flag;
1560 __orinoco_hw_setup_wepkeys(priv);
1562 if (priv->wep_restrict)
1563 auth_flag = HERMES_AUTH_SHARED_KEY;
1565 auth_flag = HERMES_AUTH_OPEN;
1567 switch (priv->firmware_type) {
1568 case FIRMWARE_TYPE_AGERE: /* Agere style WEP */
1570 /* Enable the shared-key authentication. */
1571 err = hermes_write_wordrec(hw, USER_BAP,
1572 HERMES_RID_CNFAUTHENTICATION_AGERE,
1575 err = hermes_write_wordrec(hw, USER_BAP,
1576 HERMES_RID_CNFWEPENABLED_AGERE,
1582 case FIRMWARE_TYPE_INTERSIL: /* Intersil style WEP */
1583 case FIRMWARE_TYPE_SYMBOL: /* Symbol style WEP */
1585 if (priv->wep_restrict ||
1586 (priv->firmware_type == FIRMWARE_TYPE_SYMBOL))
1587 master_wep_flag = HERMES_WEP_PRIVACY_INVOKED |
1588 HERMES_WEP_EXCL_UNENCRYPTED;
1590 master_wep_flag = HERMES_WEP_PRIVACY_INVOKED;
1592 err = hermes_write_wordrec(hw, USER_BAP,
1593 HERMES_RID_CNFAUTHENTICATION,
1598 master_wep_flag = 0;
1600 if (priv->iw_mode == IW_MODE_MONITOR)
1601 master_wep_flag |= HERMES_WEP_HOST_DECRYPT;
1603 /* Master WEP setting : on/off */
1604 err = hermes_write_wordrec(hw, USER_BAP,
1605 HERMES_RID_CNFWEPFLAGS_INTERSIL,
1616 static int __orinoco_program_rids(struct net_device *dev)
1618 struct orinoco_private *priv = netdev_priv(dev);
1619 hermes_t *hw = &priv->hw;
1621 struct hermes_idstring idbuf;
1623 /* Set the MAC address */
1624 err = hermes_write_ltv(hw, USER_BAP, HERMES_RID_CNFOWNMACADDR,
1625 HERMES_BYTES_TO_RECLEN(ETH_ALEN), dev->dev_addr);
1627 printk(KERN_ERR "%s: Error %d setting MAC address\n",
1632 /* Set up the link mode */
1633 err = hermes_write_wordrec(hw, USER_BAP, HERMES_RID_CNFPORTTYPE,
1636 printk(KERN_ERR "%s: Error %d setting port type\n",
1640 /* Set the channel/frequency */
1641 if (priv->channel != 0 && priv->iw_mode != IW_MODE_INFRA) {
1642 err = hermes_write_wordrec(hw, USER_BAP,
1643 HERMES_RID_CNFOWNCHANNEL,
1646 printk(KERN_ERR "%s: Error %d setting channel %d\n",
1647 dev->name, err, priv->channel);
1652 if (priv->has_ibss) {
1655 if ((strlen(priv->desired_essid) == 0) && (priv->createibss)) {
1656 printk(KERN_WARNING "%s: This firmware requires an "
1657 "ESSID in IBSS-Ad-Hoc mode.\n", dev->name);
1658 /* With wvlan_cs, in this case, we would crash.
1659 * hopefully, this driver will behave better...
1663 createibss = priv->createibss;
1666 err = hermes_write_wordrec(hw, USER_BAP,
1667 HERMES_RID_CNFCREATEIBSS,
1670 printk(KERN_ERR "%s: Error %d setting CREATEIBSS\n",
1676 /* Set the desired BSSID */
1677 err = __orinoco_hw_set_wap(priv);
1679 printk(KERN_ERR "%s: Error %d setting AP address\n",
1683 /* Set the desired ESSID */
1684 idbuf.len = cpu_to_le16(strlen(priv->desired_essid));
1685 memcpy(&idbuf.val, priv->desired_essid, sizeof(idbuf.val));
1686 /* WinXP wants partner to configure OWNSSID even in IBSS mode. (jimc) */
1687 err = hermes_write_ltv(hw, USER_BAP, HERMES_RID_CNFOWNSSID,
1688 HERMES_BYTES_TO_RECLEN(strlen(priv->desired_essid)+2),
1691 printk(KERN_ERR "%s: Error %d setting OWNSSID\n",
1695 err = hermes_write_ltv(hw, USER_BAP, HERMES_RID_CNFDESIREDSSID,
1696 HERMES_BYTES_TO_RECLEN(strlen(priv->desired_essid)+2),
1699 printk(KERN_ERR "%s: Error %d setting DESIREDSSID\n",
1704 /* Set the station name */
1705 idbuf.len = cpu_to_le16(strlen(priv->nick));
1706 memcpy(&idbuf.val, priv->nick, sizeof(idbuf.val));
1707 err = hermes_write_ltv(hw, USER_BAP, HERMES_RID_CNFOWNNAME,
1708 HERMES_BYTES_TO_RECLEN(strlen(priv->nick)+2),
1711 printk(KERN_ERR "%s: Error %d setting nickname\n",
1716 /* Set AP density */
1717 if (priv->has_sensitivity) {
1718 err = hermes_write_wordrec(hw, USER_BAP,
1719 HERMES_RID_CNFSYSTEMSCALE,
1722 printk(KERN_WARNING "%s: Error %d setting SYSTEMSCALE. "
1723 "Disabling sensitivity control\n",
1726 priv->has_sensitivity = 0;
1730 /* Set RTS threshold */
1731 err = hermes_write_wordrec(hw, USER_BAP, HERMES_RID_CNFRTSTHRESHOLD,
1734 printk(KERN_ERR "%s: Error %d setting RTS threshold\n",
1739 /* Set fragmentation threshold or MWO robustness */
1741 err = hermes_write_wordrec(hw, USER_BAP,
1742 HERMES_RID_CNFMWOROBUST_AGERE,
1745 err = hermes_write_wordrec(hw, USER_BAP,
1746 HERMES_RID_CNFFRAGMENTATIONTHRESHOLD,
1749 printk(KERN_ERR "%s: Error %d setting fragmentation\n",
1755 err = __orinoco_hw_set_bitrate(priv);
1757 printk(KERN_ERR "%s: Error %d setting bitrate\n",
1762 /* Set power management */
1764 err = hermes_write_wordrec(hw, USER_BAP,
1765 HERMES_RID_CNFPMENABLED,
1768 printk(KERN_ERR "%s: Error %d setting up PM\n",
1773 err = hermes_write_wordrec(hw, USER_BAP,
1774 HERMES_RID_CNFMULTICASTRECEIVE,
1777 printk(KERN_ERR "%s: Error %d setting up PM\n",
1781 err = hermes_write_wordrec(hw, USER_BAP,
1782 HERMES_RID_CNFMAXSLEEPDURATION,
1785 printk(KERN_ERR "%s: Error %d setting up PM\n",
1789 err = hermes_write_wordrec(hw, USER_BAP,
1790 HERMES_RID_CNFPMHOLDOVERDURATION,
1793 printk(KERN_ERR "%s: Error %d setting up PM\n",
1799 /* Set preamble - only for Symbol so far... */
1800 if (priv->has_preamble) {
1801 err = hermes_write_wordrec(hw, USER_BAP,
1802 HERMES_RID_CNFPREAMBLE_SYMBOL,
1805 printk(KERN_ERR "%s: Error %d setting preamble\n",
1811 /* Set up encryption */
1812 if (priv->has_wep) {
1813 err = __orinoco_hw_setup_wep(priv);
1815 printk(KERN_ERR "%s: Error %d activating WEP\n",
1821 if (priv->iw_mode == IW_MODE_MONITOR) {
1822 /* Enable monitor mode */
1823 dev->type = ARPHRD_IEEE80211;
1824 err = hermes_docmd_wait(hw, HERMES_CMD_TEST |
1825 HERMES_TEST_MONITOR, 0, NULL);
1827 /* Disable monitor mode */
1828 dev->type = ARPHRD_ETHER;
1829 err = hermes_docmd_wait(hw, HERMES_CMD_TEST |
1830 HERMES_TEST_STOP, 0, NULL);
1835 /* Set promiscuity / multicast*/
1836 priv->promiscuous = 0;
1838 __orinoco_set_multicast_list(dev); /* FIXME: what about the xmit_lock */
1843 /* FIXME: return int? */
1845 __orinoco_set_multicast_list(struct net_device *dev)
1847 struct orinoco_private *priv = netdev_priv(dev);
1848 hermes_t *hw = &priv->hw;
1850 int promisc, mc_count;
1852 /* The Hermes doesn't seem to have an allmulti mode, so we go
1853 * into promiscuous mode and let the upper levels deal. */
1854 if ( (dev->flags & IFF_PROMISC) || (dev->flags & IFF_ALLMULTI) ||
1855 (dev->mc_count > MAX_MULTICAST(priv)) ) {
1860 mc_count = dev->mc_count;
1863 if (promisc != priv->promiscuous) {
1864 err = hermes_write_wordrec(hw, USER_BAP,
1865 HERMES_RID_CNFPROMISCUOUSMODE,
1868 printk(KERN_ERR "%s: Error %d setting PROMISCUOUSMODE to 1.\n",
1871 priv->promiscuous = promisc;
1874 if (! promisc && (mc_count || priv->mc_count) ) {
1875 struct dev_mc_list *p = dev->mc_list;
1876 struct hermes_multicast mclist;
1879 for (i = 0; i < mc_count; i++) {
1880 /* paranoia: is list shorter than mc_count? */
1882 /* paranoia: bad address size in list? */
1883 BUG_ON(p->dmi_addrlen != ETH_ALEN);
1885 memcpy(mclist.addr[i], p->dmi_addr, ETH_ALEN);
1890 printk(KERN_WARNING "%s: Multicast list is "
1891 "longer than mc_count\n", dev->name);
1893 err = hermes_write_ltv(hw, USER_BAP, HERMES_RID_CNFGROUPADDRESSES,
1894 HERMES_BYTES_TO_RECLEN(priv->mc_count * ETH_ALEN),
1897 printk(KERN_ERR "%s: Error %d setting multicast list.\n",
1900 priv->mc_count = mc_count;
1903 /* Since we can set the promiscuous flag when it wasn't asked
1904 for, make sure the net_device knows about it. */
1905 if (priv->promiscuous)
1906 dev->flags |= IFF_PROMISC;
1908 dev->flags &= ~IFF_PROMISC;
1911 /* This must be called from user context, without locks held - use
1912 * schedule_work() */
1913 static void orinoco_reset(struct net_device *dev)
1915 struct orinoco_private *priv = netdev_priv(dev);
1916 struct hermes *hw = &priv->hw;
1918 unsigned long flags;
1920 if (orinoco_lock(priv, &flags) != 0)
1921 /* When the hardware becomes available again, whatever
1922 * detects that is responsible for re-initializing
1923 * it. So no need for anything further */
1926 netif_stop_queue(dev);
1928 /* Shut off interrupts. Depending on what state the hardware
1929 * is in, this might not work, but we'll try anyway */
1930 hermes_set_irqmask(hw, 0);
1931 hermes_write_regn(hw, EVACK, 0xffff);
1933 priv->hw_unavailable++;
1934 priv->last_linkstatus = 0xffff; /* firmware will have to reassociate */
1935 netif_carrier_off(dev);
1937 orinoco_unlock(priv, &flags);
1939 /* Scanning support: Cleanup of driver struct */
1940 kfree(priv->scan_result);
1941 priv->scan_result = NULL;
1942 priv->scan_inprogress = 0;
1944 if (priv->hard_reset) {
1945 err = (*priv->hard_reset)(priv);
1947 printk(KERN_ERR "%s: orinoco_reset: Error %d "
1948 "performing hard reset\n", dev->name, err);
1953 err = orinoco_reinit_firmware(dev);
1955 printk(KERN_ERR "%s: orinoco_reset: Error %d re-initializing firmware\n",
1960 spin_lock_irq(&priv->lock); /* This has to be called from user context */
1962 priv->hw_unavailable--;
1964 /* priv->open or priv->hw_unavailable might have changed while
1965 * we dropped the lock */
1966 if (priv->open && (! priv->hw_unavailable)) {
1967 err = __orinoco_up(dev);
1969 printk(KERN_ERR "%s: orinoco_reset: Error %d reenabling card\n",
1972 dev->trans_start = jiffies;
1975 spin_unlock_irq(&priv->lock);
1979 hermes_set_irqmask(hw, 0);
1980 netif_device_detach(dev);
1981 printk(KERN_ERR "%s: Device has been disabled!\n", dev->name);
1984 /********************************************************************/
1985 /* Interrupt handler */
1986 /********************************************************************/
1988 static void __orinoco_ev_tick(struct net_device *dev, hermes_t *hw)
1990 printk(KERN_DEBUG "%s: TICK\n", dev->name);
1993 static void __orinoco_ev_wterr(struct net_device *dev, hermes_t *hw)
1995 /* This seems to happen a fair bit under load, but ignoring it
1996 seems to work fine...*/
1997 printk(KERN_DEBUG "%s: MAC controller error (WTERR). Ignoring.\n",
2001 irqreturn_t orinoco_interrupt(int irq, void *dev_id, struct pt_regs *regs)
2003 struct net_device *dev = (struct net_device *)dev_id;
2004 struct orinoco_private *priv = netdev_priv(dev);
2005 hermes_t *hw = &priv->hw;
2006 int count = MAX_IRQLOOPS_PER_IRQ;
2008 /* These are used to detect a runaway interrupt situation */
2009 /* If we get more than MAX_IRQLOOPS_PER_JIFFY iterations in a jiffy,
2010 * we panic and shut down the hardware */
2011 static int last_irq_jiffy = 0; /* jiffies value the last time
2013 static int loops_this_jiffy = 0;
2014 unsigned long flags;
2016 if (orinoco_lock(priv, &flags) != 0) {
2017 /* If hw is unavailable - we don't know if the irq was
2022 evstat = hermes_read_regn(hw, EVSTAT);
2023 events = evstat & hw->inten;
2025 orinoco_unlock(priv, &flags);
2029 if (jiffies != last_irq_jiffy)
2030 loops_this_jiffy = 0;
2031 last_irq_jiffy = jiffies;
2033 while (events && count--) {
2034 if (++loops_this_jiffy > MAX_IRQLOOPS_PER_JIFFY) {
2035 printk(KERN_WARNING "%s: IRQ handler is looping too "
2036 "much! Resetting.\n", dev->name);
2037 /* Disable interrupts for now */
2038 hermes_set_irqmask(hw, 0);
2039 schedule_work(&priv->reset_work);
2043 /* Check the card hasn't been removed */
2044 if (! hermes_present(hw)) {
2045 DEBUG(0, "orinoco_interrupt(): card removed\n");
2049 if (events & HERMES_EV_TICK)
2050 __orinoco_ev_tick(dev, hw);
2051 if (events & HERMES_EV_WTERR)
2052 __orinoco_ev_wterr(dev, hw);
2053 if (events & HERMES_EV_INFDROP)
2054 __orinoco_ev_infdrop(dev, hw);
2055 if (events & HERMES_EV_INFO)
2056 __orinoco_ev_info(dev, hw);
2057 if (events & HERMES_EV_RX)
2058 __orinoco_ev_rx(dev, hw);
2059 if (events & HERMES_EV_TXEXC)
2060 __orinoco_ev_txexc(dev, hw);
2061 if (events & HERMES_EV_TX)
2062 __orinoco_ev_tx(dev, hw);
2063 if (events & HERMES_EV_ALLOC)
2064 __orinoco_ev_alloc(dev, hw);
2066 hermes_write_regn(hw, EVACK, evstat);
2068 evstat = hermes_read_regn(hw, EVSTAT);
2069 events = evstat & hw->inten;
2072 orinoco_unlock(priv, &flags);
2076 /********************************************************************/
2077 /* Initialization */
2078 /********************************************************************/
2081 u16 id, variant, major, minor;
2082 } __attribute__ ((packed));
2084 static inline fwtype_t determine_firmware_type(struct comp_id *nic_id)
2086 if (nic_id->id < 0x8000)
2087 return FIRMWARE_TYPE_AGERE;
2088 else if (nic_id->id == 0x8000 && nic_id->major == 0)
2089 return FIRMWARE_TYPE_SYMBOL;
2091 return FIRMWARE_TYPE_INTERSIL;
2094 /* Set priv->firmware type, determine firmware properties */
2095 static int determine_firmware(struct net_device *dev)
2097 struct orinoco_private *priv = netdev_priv(dev);
2098 hermes_t *hw = &priv->hw;
2100 struct comp_id nic_id, sta_id;
2101 unsigned int firmver;
2102 char tmp[SYMBOL_MAX_VER_LEN+1];
2104 /* Get the hardware version */
2105 err = HERMES_READ_RECORD(hw, USER_BAP, HERMES_RID_NICID, &nic_id);
2107 printk(KERN_ERR "%s: Cannot read hardware identity: error %d\n",
2112 le16_to_cpus(&nic_id.id);
2113 le16_to_cpus(&nic_id.variant);
2114 le16_to_cpus(&nic_id.major);
2115 le16_to_cpus(&nic_id.minor);
2116 printk(KERN_DEBUG "%s: Hardware identity %04x:%04x:%04x:%04x\n",
2117 dev->name, nic_id.id, nic_id.variant,
2118 nic_id.major, nic_id.minor);
2120 priv->firmware_type = determine_firmware_type(&nic_id);
2122 /* Get the firmware version */
2123 err = HERMES_READ_RECORD(hw, USER_BAP, HERMES_RID_STAID, &sta_id);
2125 printk(KERN_ERR "%s: Cannot read station identity: error %d\n",
2130 le16_to_cpus(&sta_id.id);
2131 le16_to_cpus(&sta_id.variant);
2132 le16_to_cpus(&sta_id.major);
2133 le16_to_cpus(&sta_id.minor);
2134 printk(KERN_DEBUG "%s: Station identity %04x:%04x:%04x:%04x\n",
2135 dev->name, sta_id.id, sta_id.variant,
2136 sta_id.major, sta_id.minor);
2138 switch (sta_id.id) {
2140 printk(KERN_ERR "%s: Primary firmware is active\n",
2144 printk(KERN_ERR "%s: Tertiary firmware is active\n",
2147 case 0x1f: /* Intersil, Agere, Symbol Spectrum24 */
2148 case 0x21: /* Symbol Spectrum24 Trilogy */
2151 printk(KERN_NOTICE "%s: Unknown station ID, please report\n",
2156 /* Default capabilities */
2157 priv->has_sensitivity = 1;
2159 priv->has_preamble = 0;
2160 priv->has_port3 = 1;
2163 priv->has_big_wep = 0;
2165 /* Determine capabilities from the firmware version */
2166 switch (priv->firmware_type) {
2167 case FIRMWARE_TYPE_AGERE:
2168 /* Lucent Wavelan IEEE, Lucent Orinoco, Cabletron RoamAbout,
2169 ELSA, Melco, HP, IBM, Dell 1150, Compaq 110/210 */
2170 snprintf(priv->fw_name, sizeof(priv->fw_name) - 1,
2171 "Lucent/Agere %d.%02d", sta_id.major, sta_id.minor);
2173 firmver = ((unsigned long)sta_id.major << 16) | sta_id.minor;
2175 priv->has_ibss = (firmver >= 0x60006);
2176 priv->has_wep = (firmver >= 0x40020);
2177 priv->has_big_wep = 1; /* FIXME: this is wrong - how do we tell
2178 Gold cards from the others? */
2179 priv->has_mwo = (firmver >= 0x60000);
2180 priv->has_pm = (firmver >= 0x40020); /* Don't work in 7.52 ? */
2181 priv->ibss_port = 1;
2182 priv->has_hostscan = (firmver >= 0x8000a);
2183 priv->broken_monitor = (firmver >= 0x80000);
2185 /* Tested with Agere firmware :
2186 * 1.16 ; 4.08 ; 4.52 ; 6.04 ; 6.16 ; 7.28 => Jean II
2187 * Tested CableTron firmware : 4.32 => Anton */
2189 case FIRMWARE_TYPE_SYMBOL:
2190 /* Symbol , 3Com AirConnect, Intel, Ericsson WLAN */
2191 /* Intel MAC : 00:02:B3:* */
2192 /* 3Com MAC : 00:50:DA:* */
2193 memset(tmp, 0, sizeof(tmp));
2194 /* Get the Symbol firmware version */
2195 err = hermes_read_ltv(hw, USER_BAP,
2196 HERMES_RID_SECONDARYVERSION_SYMBOL,
2197 SYMBOL_MAX_VER_LEN, NULL, &tmp);
2200 "%s: Error %d reading Symbol firmware info. Wildly guessing capabilities...\n",
2205 /* The firmware revision is a string, the format is
2206 * something like : "V2.20-01".
2207 * Quick and dirty parsing... - Jean II
2209 firmver = ((tmp[1] - '0') << 16) | ((tmp[3] - '0') << 12)
2210 | ((tmp[4] - '0') << 8) | ((tmp[6] - '0') << 4)
2213 tmp[SYMBOL_MAX_VER_LEN] = '\0';
2216 snprintf(priv->fw_name, sizeof(priv->fw_name) - 1,
2219 priv->has_ibss = (firmver >= 0x20000);
2220 priv->has_wep = (firmver >= 0x15012);
2221 priv->has_big_wep = (firmver >= 0x20000);
2222 priv->has_pm = (firmver >= 0x20000 && firmver < 0x22000) ||
2223 (firmver >= 0x29000 && firmver < 0x30000) ||
2225 priv->has_preamble = (firmver >= 0x20000);
2226 priv->ibss_port = 4;
2227 priv->broken_disableport = (firmver == 0x25013) ||
2228 (firmver >= 0x30000 && firmver <= 0x31000);
2229 priv->has_hostscan = (firmver >= 0x31001) ||
2230 (firmver >= 0x29057 && firmver < 0x30000);
2231 /* Tested with Intel firmware : 0x20015 => Jean II */
2232 /* Tested with 3Com firmware : 0x15012 & 0x22001 => Jean II */
2234 case FIRMWARE_TYPE_INTERSIL:
2235 /* D-Link, Linksys, Adtron, ZoomAir, and many others...
2236 * Samsung, Compaq 100/200 and Proxim are slightly
2237 * different and less well tested */
2238 /* D-Link MAC : 00:40:05:* */
2239 /* Addtron MAC : 00:90:D1:* */
2240 snprintf(priv->fw_name, sizeof(priv->fw_name) - 1,
2241 "Intersil %d.%d.%d", sta_id.major, sta_id.minor,
2244 firmver = ((unsigned long)sta_id.major << 16) |
2245 ((unsigned long)sta_id.minor << 8) | sta_id.variant;
2247 priv->has_ibss = (firmver >= 0x000700); /* FIXME */
2248 priv->has_big_wep = priv->has_wep = (firmver >= 0x000800);
2249 priv->has_pm = (firmver >= 0x000700);
2250 priv->has_hostscan = (firmver >= 0x010301);
2252 if (firmver >= 0x000800)
2253 priv->ibss_port = 0;
2255 printk(KERN_NOTICE "%s: Intersil firmware earlier "
2256 "than v0.8.x - several features not supported\n",
2258 priv->ibss_port = 1;
2262 printk(KERN_DEBUG "%s: Firmware determined as %s\n", dev->name,
2268 static int orinoco_init(struct net_device *dev)
2270 struct orinoco_private *priv = netdev_priv(dev);
2271 hermes_t *hw = &priv->hw;
2273 struct hermes_idstring nickbuf;
2277 TRACE_ENTER(dev->name);
2279 /* No need to lock, the hw_unavailable flag is already set in
2280 * alloc_orinocodev() */
2281 priv->nicbuf_size = IEEE80211_FRAME_LEN + ETH_HLEN;
2283 /* Initialize the firmware */
2284 err = orinoco_reinit_firmware(dev);
2286 printk(KERN_ERR "%s: failed to initialize firmware (err = %d)\n",
2291 err = determine_firmware(dev);
2293 printk(KERN_ERR "%s: Incompatible firmware, aborting\n",
2298 if (priv->has_port3)
2299 printk(KERN_DEBUG "%s: Ad-hoc demo mode supported\n", dev->name);
2301 printk(KERN_DEBUG "%s: IEEE standard IBSS ad-hoc mode supported\n",
2303 if (priv->has_wep) {
2304 printk(KERN_DEBUG "%s: WEP supported, ", dev->name);
2305 if (priv->has_big_wep)
2306 printk("104-bit key\n");
2308 printk("40-bit key\n");
2311 /* Get the MAC address */
2312 err = hermes_read_ltv(hw, USER_BAP, HERMES_RID_CNFOWNMACADDR,
2313 ETH_ALEN, NULL, dev->dev_addr);
2315 printk(KERN_WARNING "%s: failed to read MAC address!\n",
2320 printk(KERN_DEBUG "%s: MAC address %02X:%02X:%02X:%02X:%02X:%02X\n",
2321 dev->name, dev->dev_addr[0], dev->dev_addr[1],
2322 dev->dev_addr[2], dev->dev_addr[3], dev->dev_addr[4],
2325 /* Get the station name */
2326 err = hermes_read_ltv(hw, USER_BAP, HERMES_RID_CNFOWNNAME,
2327 sizeof(nickbuf), &reclen, &nickbuf);
2329 printk(KERN_ERR "%s: failed to read station name\n",
2334 len = min(IW_ESSID_MAX_SIZE, (int)le16_to_cpu(nickbuf.len));
2336 len = min(IW_ESSID_MAX_SIZE, 2 * reclen);
2337 memcpy(priv->nick, &nickbuf.val, len);
2338 priv->nick[len] = '\0';
2340 printk(KERN_DEBUG "%s: Station name \"%s\"\n", dev->name, priv->nick);
2342 /* Get allowed channels */
2343 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CHANNELLIST,
2344 &priv->channel_mask);
2346 printk(KERN_ERR "%s: failed to read channel list!\n",
2351 /* Get initial AP density */
2352 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFSYSTEMSCALE,
2354 if (err || priv->ap_density < 1 || priv->ap_density > 3) {
2355 priv->has_sensitivity = 0;
2358 /* Get initial RTS threshold */
2359 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFRTSTHRESHOLD,
2362 printk(KERN_ERR "%s: failed to read RTS threshold!\n",
2367 /* Get initial fragmentation settings */
2369 err = hermes_read_wordrec(hw, USER_BAP,
2370 HERMES_RID_CNFMWOROBUST_AGERE,
2373 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFFRAGMENTATIONTHRESHOLD,
2374 &priv->frag_thresh);
2376 printk(KERN_ERR "%s: failed to read fragmentation settings!\n",
2381 /* Power management setup */
2385 err = hermes_read_wordrec(hw, USER_BAP,
2386 HERMES_RID_CNFMAXSLEEPDURATION,
2389 printk(KERN_ERR "%s: failed to read power management period!\n",
2393 err = hermes_read_wordrec(hw, USER_BAP,
2394 HERMES_RID_CNFPMHOLDOVERDURATION,
2397 printk(KERN_ERR "%s: failed to read power management timeout!\n",
2403 /* Preamble setup */
2404 if (priv->has_preamble) {
2405 err = hermes_read_wordrec(hw, USER_BAP,
2406 HERMES_RID_CNFPREAMBLE_SYMBOL,
2412 /* Set up the default configuration */
2413 priv->iw_mode = IW_MODE_INFRA;
2414 /* By default use IEEE/IBSS ad-hoc mode if we have it */
2415 priv->prefer_port3 = priv->has_port3 && (! priv->has_ibss);
2416 set_port_type(priv);
2417 priv->channel = 0; /* use firmware default */
2419 priv->promiscuous = 0;
2423 /* Make the hardware available, as long as it hasn't been
2424 * removed elsewhere (e.g. by PCMCIA hot unplug) */
2425 spin_lock_irq(&priv->lock);
2426 priv->hw_unavailable--;
2427 spin_unlock_irq(&priv->lock);
2429 printk(KERN_DEBUG "%s: ready\n", dev->name);
2432 TRACE_EXIT(dev->name);
2436 struct net_device *alloc_orinocodev(int sizeof_card,
2437 int (*hard_reset)(struct orinoco_private *))
2439 struct net_device *dev;
2440 struct orinoco_private *priv;
2442 dev = alloc_etherdev(sizeof(struct orinoco_private) + sizeof_card);
2445 priv = netdev_priv(dev);
2448 priv->card = (void *)((unsigned long)priv
2449 + sizeof(struct orinoco_private));
2453 /* Setup / override net_device fields */
2454 dev->init = orinoco_init;
2455 dev->hard_start_xmit = orinoco_xmit;
2456 dev->tx_timeout = orinoco_tx_timeout;
2457 dev->watchdog_timeo = HZ; /* 1 second timeout */
2458 dev->get_stats = orinoco_get_stats;
2459 dev->ethtool_ops = &orinoco_ethtool_ops;
2460 dev->wireless_handlers = (struct iw_handler_def *)&orinoco_handler_def;
2462 priv->wireless_data.spy_data = &priv->spy_data;
2463 dev->wireless_data = &priv->wireless_data;
2465 dev->change_mtu = orinoco_change_mtu;
2466 dev->set_multicast_list = orinoco_set_multicast_list;
2467 /* we use the default eth_mac_addr for setting the MAC addr */
2469 /* Set up default callbacks */
2470 dev->open = orinoco_open;
2471 dev->stop = orinoco_stop;
2472 priv->hard_reset = hard_reset;
2474 spin_lock_init(&priv->lock);
2476 priv->hw_unavailable = 1; /* orinoco_init() must clear this
2477 * before anything else touches the
2479 INIT_WORK(&priv->reset_work, (void (*)(void *))orinoco_reset, dev);
2480 INIT_WORK(&priv->join_work, (void (*)(void *))orinoco_join_ap, dev);
2481 INIT_WORK(&priv->wevent_work, (void (*)(void *))orinoco_send_wevents, dev);
2483 netif_carrier_off(dev);
2484 priv->last_linkstatus = 0xffff;
2490 void free_orinocodev(struct net_device *dev)
2492 struct orinoco_private *priv = netdev_priv(dev);
2494 kfree(priv->scan_result);
2498 /********************************************************************/
2499 /* Wireless extensions */
2500 /********************************************************************/
2502 static int orinoco_hw_get_essid(struct orinoco_private *priv, int *active,
2503 char buf[IW_ESSID_MAX_SIZE+1])
2505 hermes_t *hw = &priv->hw;
2507 struct hermes_idstring essidbuf;
2508 char *p = (char *)(&essidbuf.val);
2510 unsigned long flags;
2512 if (orinoco_lock(priv, &flags) != 0)
2515 if (strlen(priv->desired_essid) > 0) {
2516 /* We read the desired SSID from the hardware rather
2517 than from priv->desired_essid, just in case the
2518 firmware is allowed to change it on us. I'm not
2520 /* My guess is that the OWNSSID should always be whatever
2521 * we set to the card, whereas CURRENT_SSID is the one that
2522 * may change... - Jean II */
2527 rid = (priv->port_type == 3) ? HERMES_RID_CNFOWNSSID :
2528 HERMES_RID_CNFDESIREDSSID;
2530 err = hermes_read_ltv(hw, USER_BAP, rid, sizeof(essidbuf),
2537 err = hermes_read_ltv(hw, USER_BAP, HERMES_RID_CURRENTSSID,
2538 sizeof(essidbuf), NULL, &essidbuf);
2543 len = le16_to_cpu(essidbuf.len);
2544 BUG_ON(len > IW_ESSID_MAX_SIZE);
2546 memset(buf, 0, IW_ESSID_MAX_SIZE+1);
2547 memcpy(buf, p, len);
2551 orinoco_unlock(priv, &flags);
2556 static long orinoco_hw_get_freq(struct orinoco_private *priv)
2559 hermes_t *hw = &priv->hw;
2563 unsigned long flags;
2565 if (orinoco_lock(priv, &flags) != 0)
2568 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CURRENTCHANNEL, &channel);
2572 /* Intersil firmware 1.3.5 returns 0 when the interface is down */
2578 if ( (channel < 1) || (channel > NUM_CHANNELS) ) {
2579 printk(KERN_WARNING "%s: Channel out of range (%d)!\n",
2580 priv->ndev->name, channel);
2585 freq = channel_frequency[channel-1] * 100000;
2588 orinoco_unlock(priv, &flags);
2592 return err ? err : freq;
2595 static int orinoco_hw_get_bitratelist(struct orinoco_private *priv,
2596 int *numrates, s32 *rates, int max)
2598 hermes_t *hw = &priv->hw;
2599 struct hermes_idstring list;
2600 unsigned char *p = (unsigned char *)&list.val;
2604 unsigned long flags;
2606 if (orinoco_lock(priv, &flags) != 0)
2609 err = hermes_read_ltv(hw, USER_BAP, HERMES_RID_SUPPORTEDDATARATES,
2610 sizeof(list), NULL, &list);
2611 orinoco_unlock(priv, &flags);
2616 num = le16_to_cpu(list.len);
2618 num = min(num, max);
2620 for (i = 0; i < num; i++) {
2621 rates[i] = (p[i] & 0x7f) * 500000; /* convert to bps */
2627 static int orinoco_ioctl_getname(struct net_device *dev,
2628 struct iw_request_info *info,
2632 struct orinoco_private *priv = netdev_priv(dev);
2636 err = orinoco_hw_get_bitratelist(priv, &numrates, NULL, 0);
2638 if (!err && (numrates > 2))
2639 strcpy(name, "IEEE 802.11b");
2641 strcpy(name, "IEEE 802.11-DS");
2646 static int orinoco_ioctl_setwap(struct net_device *dev,
2647 struct iw_request_info *info,
2648 struct sockaddr *ap_addr,
2651 struct orinoco_private *priv = netdev_priv(dev);
2652 int err = -EINPROGRESS; /* Call commit handler */
2653 unsigned long flags;
2654 static const u8 off_addr[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
2655 static const u8 any_addr[] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
2657 if (orinoco_lock(priv, &flags) != 0)
2660 /* Enable automatic roaming - no sanity checks are needed */
2661 if (memcmp(&ap_addr->sa_data, off_addr, ETH_ALEN) == 0 ||
2662 memcmp(&ap_addr->sa_data, any_addr, ETH_ALEN) == 0) {
2663 priv->bssid_fixed = 0;
2664 memset(priv->desired_bssid, 0, ETH_ALEN);
2666 /* "off" means keep existing connection */
2667 if (ap_addr->sa_data[0] == 0) {
2668 __orinoco_hw_set_wap(priv);
2674 if (priv->firmware_type == FIRMWARE_TYPE_AGERE) {
2675 printk(KERN_WARNING "%s: Lucent/Agere firmware doesn't "
2676 "support manual roaming\n",
2682 if (priv->iw_mode != IW_MODE_INFRA) {
2683 printk(KERN_WARNING "%s: Manual roaming supported only in "
2684 "managed mode\n", dev->name);
2689 /* Intersil firmware hangs without Desired ESSID */
2690 if (priv->firmware_type == FIRMWARE_TYPE_INTERSIL &&
2691 strlen(priv->desired_essid) == 0) {
2692 printk(KERN_WARNING "%s: Desired ESSID must be set for "
2693 "manual roaming\n", dev->name);
2698 /* Finally, enable manual roaming */
2699 priv->bssid_fixed = 1;
2700 memcpy(priv->desired_bssid, &ap_addr->sa_data, ETH_ALEN);
2703 orinoco_unlock(priv, &flags);
2707 static int orinoco_ioctl_getwap(struct net_device *dev,
2708 struct iw_request_info *info,
2709 struct sockaddr *ap_addr,
2712 struct orinoco_private *priv = netdev_priv(dev);
2714 hermes_t *hw = &priv->hw;
2716 unsigned long flags;
2718 if (orinoco_lock(priv, &flags) != 0)
2721 ap_addr->sa_family = ARPHRD_ETHER;
2722 err = hermes_read_ltv(hw, USER_BAP, HERMES_RID_CURRENTBSSID,
2723 ETH_ALEN, NULL, ap_addr->sa_data);
2725 orinoco_unlock(priv, &flags);
2730 static int orinoco_ioctl_setmode(struct net_device *dev,
2731 struct iw_request_info *info,
2735 struct orinoco_private *priv = netdev_priv(dev);
2736 int err = -EINPROGRESS; /* Call commit handler */
2737 unsigned long flags;
2739 if (priv->iw_mode == *mode)
2742 if (orinoco_lock(priv, &flags) != 0)
2747 if (!priv->has_ibss && !priv->has_port3)
2754 case IW_MODE_MONITOR:
2755 if (priv->broken_monitor && !force_monitor) {
2756 printk(KERN_WARNING "%s: Monitor mode support is "
2757 "buggy in this firmware, not enabling\n",
2768 if (err == -EINPROGRESS) {
2769 priv->iw_mode = *mode;
2770 set_port_type(priv);
2773 orinoco_unlock(priv, &flags);
2778 static int orinoco_ioctl_getmode(struct net_device *dev,
2779 struct iw_request_info *info,
2783 struct orinoco_private *priv = netdev_priv(dev);
2785 *mode = priv->iw_mode;
2789 static int orinoco_ioctl_getiwrange(struct net_device *dev,
2790 struct iw_request_info *info,
2791 struct iw_point *rrq,
2794 struct orinoco_private *priv = netdev_priv(dev);
2796 struct iw_range *range = (struct iw_range *) extra;
2800 TRACE_ENTER(dev->name);
2802 rrq->length = sizeof(struct iw_range);
2803 memset(range, 0, sizeof(struct iw_range));
2805 range->we_version_compiled = WIRELESS_EXT;
2806 range->we_version_source = 14;
2808 /* Set available channels/frequencies */
2809 range->num_channels = NUM_CHANNELS;
2811 for (i = 0; i < NUM_CHANNELS; i++) {
2812 if (priv->channel_mask & (1 << i)) {
2813 range->freq[k].i = i + 1;
2814 range->freq[k].m = channel_frequency[i] * 100000;
2815 range->freq[k].e = 1;
2819 if (k >= IW_MAX_FREQUENCIES)
2822 range->num_frequency = k;
2823 range->sensitivity = 3;
2825 if (priv->has_wep) {
2826 range->max_encoding_tokens = ORINOCO_MAX_KEYS;
2827 range->encoding_size[0] = SMALL_KEY_SIZE;
2828 range->num_encoding_sizes = 1;
2830 if (priv->has_big_wep) {
2831 range->encoding_size[1] = LARGE_KEY_SIZE;
2832 range->num_encoding_sizes = 2;
2836 if ((priv->iw_mode == IW_MODE_ADHOC) && (!SPY_NUMBER(priv))){
2837 /* Quality stats meaningless in ad-hoc mode */
2839 range->max_qual.qual = 0x8b - 0x2f;
2840 range->max_qual.level = 0x2f - 0x95 - 1;
2841 range->max_qual.noise = 0x2f - 0x95 - 1;
2842 /* Need to get better values */
2843 range->avg_qual.qual = 0x24;
2844 range->avg_qual.level = 0xC2;
2845 range->avg_qual.noise = 0x9E;
2848 err = orinoco_hw_get_bitratelist(priv, &numrates,
2849 range->bitrate, IW_MAX_BITRATES);
2852 range->num_bitrates = numrates;
2854 /* Set an indication of the max TCP throughput in bit/s that we can
2855 * expect using this interface. May be use for QoS stuff...
2858 range->throughput = 5 * 1000 * 1000; /* ~5 Mb/s */
2860 range->throughput = 1.5 * 1000 * 1000; /* ~1.5 Mb/s */
2863 range->max_rts = 2347;
2864 range->min_frag = 256;
2865 range->max_frag = 2346;
2868 range->max_pmp = 65535000;
2870 range->max_pmt = 65535 * 1000; /* ??? */
2871 range->pmp_flags = IW_POWER_PERIOD;
2872 range->pmt_flags = IW_POWER_TIMEOUT;
2873 range->pm_capa = IW_POWER_PERIOD | IW_POWER_TIMEOUT | IW_POWER_UNICAST_R;
2875 range->retry_capa = IW_RETRY_LIMIT | IW_RETRY_LIFETIME;
2876 range->retry_flags = IW_RETRY_LIMIT;
2877 range->r_time_flags = IW_RETRY_LIFETIME;
2878 range->min_retry = 0;
2879 range->max_retry = 65535; /* ??? */
2880 range->min_r_time = 0;
2881 range->max_r_time = 65535 * 1000; /* ??? */
2883 /* Event capability (kernel) */
2884 IW_EVENT_CAPA_SET_KERNEL(range->event_capa);
2885 /* Event capability (driver) */
2886 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWTHRSPY);
2887 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWAP);
2888 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWSCAN);
2889 IW_EVENT_CAPA_SET(range->event_capa, IWEVTXDROP);
2891 TRACE_EXIT(dev->name);
2896 static int orinoco_ioctl_setiwencode(struct net_device *dev,
2897 struct iw_request_info *info,
2898 struct iw_point *erq,
2901 struct orinoco_private *priv = netdev_priv(dev);
2902 int index = (erq->flags & IW_ENCODE_INDEX) - 1;
2903 int setindex = priv->tx_key;
2904 int enable = priv->wep_on;
2905 int restricted = priv->wep_restrict;
2907 int err = -EINPROGRESS; /* Call commit handler */
2908 unsigned long flags;
2910 if (! priv->has_wep)
2914 /* We actually have a key to set - check its length */
2915 if (erq->length > LARGE_KEY_SIZE)
2918 if ( (erq->length > SMALL_KEY_SIZE) && !priv->has_big_wep )
2922 if (orinoco_lock(priv, &flags) != 0)
2926 if ((index < 0) || (index >= ORINOCO_MAX_KEYS))
2927 index = priv->tx_key;
2929 /* Adjust key length to a supported value */
2930 if (erq->length > SMALL_KEY_SIZE) {
2931 xlen = LARGE_KEY_SIZE;
2932 } else if (erq->length > 0) {
2933 xlen = SMALL_KEY_SIZE;
2937 /* Switch on WEP if off */
2938 if ((!enable) && (xlen > 0)) {
2943 /* Important note : if the user do "iwconfig eth0 enc off",
2944 * we will arrive there with an index of -1. This is valid
2945 * but need to be taken care off... Jean II */
2946 if ((index < 0) || (index >= ORINOCO_MAX_KEYS)) {
2947 if((index != -1) || (erq->flags == 0)) {
2952 /* Set the index : Check that the key is valid */
2953 if(priv->keys[index].len == 0) {
2961 if (erq->flags & IW_ENCODE_DISABLED)
2963 if (erq->flags & IW_ENCODE_OPEN)
2965 if (erq->flags & IW_ENCODE_RESTRICTED)
2969 priv->keys[index].len = cpu_to_le16(xlen);
2970 memset(priv->keys[index].data, 0,
2971 sizeof(priv->keys[index].data));
2972 memcpy(priv->keys[index].data, keybuf, erq->length);
2974 priv->tx_key = setindex;
2976 /* Try fast key change if connected and only keys are changed */
2977 if (priv->wep_on && enable && (priv->wep_restrict == restricted) &&
2978 netif_carrier_ok(dev)) {
2979 err = __orinoco_hw_setup_wepkeys(priv);
2980 /* No need to commit if successful */
2984 priv->wep_on = enable;
2985 priv->wep_restrict = restricted;
2988 orinoco_unlock(priv, &flags);
2993 static int orinoco_ioctl_getiwencode(struct net_device *dev,
2994 struct iw_request_info *info,
2995 struct iw_point *erq,
2998 struct orinoco_private *priv = netdev_priv(dev);
2999 int index = (erq->flags & IW_ENCODE_INDEX) - 1;
3001 unsigned long flags;
3003 if (! priv->has_wep)
3006 if (orinoco_lock(priv, &flags) != 0)
3009 if ((index < 0) || (index >= ORINOCO_MAX_KEYS))
3010 index = priv->tx_key;
3014 erq->flags |= IW_ENCODE_DISABLED;
3015 erq->flags |= index + 1;
3017 if (priv->wep_restrict)
3018 erq->flags |= IW_ENCODE_RESTRICTED;
3020 erq->flags |= IW_ENCODE_OPEN;
3022 xlen = le16_to_cpu(priv->keys[index].len);
3026 memcpy(keybuf, priv->keys[index].data, ORINOCO_MAX_KEY_SIZE);
3028 orinoco_unlock(priv, &flags);
3032 static int orinoco_ioctl_setessid(struct net_device *dev,
3033 struct iw_request_info *info,
3034 struct iw_point *erq,
3037 struct orinoco_private *priv = netdev_priv(dev);
3038 unsigned long flags;
3040 /* Note : ESSID is ignored in Ad-Hoc demo mode, but we can set it
3041 * anyway... - Jean II */
3043 /* Hum... Should not use Wireless Extension constant (may change),
3044 * should use our own... - Jean II */
3045 if (erq->length > IW_ESSID_MAX_SIZE)
3048 if (orinoco_lock(priv, &flags) != 0)
3051 /* NULL the string (for NULL termination & ESSID = ANY) - Jean II */
3052 memset(priv->desired_essid, 0, sizeof(priv->desired_essid));
3054 /* If not ANY, get the new ESSID */
3056 memcpy(priv->desired_essid, essidbuf, erq->length);
3059 orinoco_unlock(priv, &flags);
3061 return -EINPROGRESS; /* Call commit handler */
3064 static int orinoco_ioctl_getessid(struct net_device *dev,
3065 struct iw_request_info *info,
3066 struct iw_point *erq,
3069 struct orinoco_private *priv = netdev_priv(dev);
3072 unsigned long flags;
3074 TRACE_ENTER(dev->name);
3076 if (netif_running(dev)) {
3077 err = orinoco_hw_get_essid(priv, &active, essidbuf);
3081 if (orinoco_lock(priv, &flags) != 0)
3083 memcpy(essidbuf, priv->desired_essid, IW_ESSID_MAX_SIZE + 1);
3084 orinoco_unlock(priv, &flags);
3088 erq->length = strlen(essidbuf) + 1;
3090 TRACE_EXIT(dev->name);
3095 static int orinoco_ioctl_setnick(struct net_device *dev,
3096 struct iw_request_info *info,
3097 struct iw_point *nrq,
3100 struct orinoco_private *priv = netdev_priv(dev);
3101 unsigned long flags;
3103 if (nrq->length > IW_ESSID_MAX_SIZE)
3106 if (orinoco_lock(priv, &flags) != 0)
3109 memset(priv->nick, 0, sizeof(priv->nick));
3110 memcpy(priv->nick, nickbuf, nrq->length);
3112 orinoco_unlock(priv, &flags);
3114 return -EINPROGRESS; /* Call commit handler */
3117 static int orinoco_ioctl_getnick(struct net_device *dev,
3118 struct iw_request_info *info,
3119 struct iw_point *nrq,
3122 struct orinoco_private *priv = netdev_priv(dev);
3123 unsigned long flags;
3125 if (orinoco_lock(priv, &flags) != 0)
3128 memcpy(nickbuf, priv->nick, IW_ESSID_MAX_SIZE+1);
3129 orinoco_unlock(priv, &flags);
3131 nrq->length = strlen(nickbuf)+1;
3136 static int orinoco_ioctl_setfreq(struct net_device *dev,
3137 struct iw_request_info *info,
3138 struct iw_freq *frq,
3141 struct orinoco_private *priv = netdev_priv(dev);
3143 unsigned long flags;
3144 int err = -EINPROGRESS; /* Call commit handler */
3146 /* In infrastructure mode the AP sets the channel */
3147 if (priv->iw_mode == IW_MODE_INFRA)
3150 if ( (frq->e == 0) && (frq->m <= 1000) ) {
3151 /* Setting by channel number */
3154 /* Setting by frequency - search the table */
3158 for (i = 0; i < (6 - frq->e); i++)
3161 for (i = 0; i < NUM_CHANNELS; i++)
3162 if (frq->m == (channel_frequency[i] * mult))
3166 if ( (chan < 1) || (chan > NUM_CHANNELS) ||
3167 ! (priv->channel_mask & (1 << (chan-1)) ) )
3170 if (orinoco_lock(priv, &flags) != 0)
3173 priv->channel = chan;
3174 if (priv->iw_mode == IW_MODE_MONITOR) {
3175 /* Fast channel change - no commit if successful */
3176 hermes_t *hw = &priv->hw;
3177 err = hermes_docmd_wait(hw, HERMES_CMD_TEST |
3178 HERMES_TEST_SET_CHANNEL,
3181 orinoco_unlock(priv, &flags);
3186 static int orinoco_ioctl_getfreq(struct net_device *dev,
3187 struct iw_request_info *info,
3188 struct iw_freq *frq,
3191 struct orinoco_private *priv = netdev_priv(dev);
3194 /* Locking done in there */
3195 tmp = orinoco_hw_get_freq(priv);
3206 static int orinoco_ioctl_getsens(struct net_device *dev,
3207 struct iw_request_info *info,
3208 struct iw_param *srq,
3211 struct orinoco_private *priv = netdev_priv(dev);
3212 hermes_t *hw = &priv->hw;
3215 unsigned long flags;
3217 if (!priv->has_sensitivity)
3220 if (orinoco_lock(priv, &flags) != 0)
3222 err = hermes_read_wordrec(hw, USER_BAP,
3223 HERMES_RID_CNFSYSTEMSCALE, &val);
3224 orinoco_unlock(priv, &flags);
3230 srq->fixed = 0; /* auto */
3235 static int orinoco_ioctl_setsens(struct net_device *dev,
3236 struct iw_request_info *info,
3237 struct iw_param *srq,
3240 struct orinoco_private *priv = netdev_priv(dev);
3241 int val = srq->value;
3242 unsigned long flags;
3244 if (!priv->has_sensitivity)
3247 if ((val < 1) || (val > 3))
3250 if (orinoco_lock(priv, &flags) != 0)
3252 priv->ap_density = val;
3253 orinoco_unlock(priv, &flags);
3255 return -EINPROGRESS; /* Call commit handler */
3258 static int orinoco_ioctl_setrts(struct net_device *dev,
3259 struct iw_request_info *info,
3260 struct iw_param *rrq,
3263 struct orinoco_private *priv = netdev_priv(dev);
3264 int val = rrq->value;
3265 unsigned long flags;
3270 if ( (val < 0) || (val > 2347) )
3273 if (orinoco_lock(priv, &flags) != 0)
3276 priv->rts_thresh = val;
3277 orinoco_unlock(priv, &flags);
3279 return -EINPROGRESS; /* Call commit handler */
3282 static int orinoco_ioctl_getrts(struct net_device *dev,
3283 struct iw_request_info *info,
3284 struct iw_param *rrq,
3287 struct orinoco_private *priv = netdev_priv(dev);
3289 rrq->value = priv->rts_thresh;
3290 rrq->disabled = (rrq->value == 2347);
3296 static int orinoco_ioctl_setfrag(struct net_device *dev,
3297 struct iw_request_info *info,
3298 struct iw_param *frq,
3301 struct orinoco_private *priv = netdev_priv(dev);
3302 int err = -EINPROGRESS; /* Call commit handler */
3303 unsigned long flags;
3305 if (orinoco_lock(priv, &flags) != 0)
3308 if (priv->has_mwo) {
3310 priv->mwo_robust = 0;
3313 printk(KERN_WARNING "%s: Fixed fragmentation is "
3314 "not supported on this firmware. "
3315 "Using MWO robust instead.\n", dev->name);
3316 priv->mwo_robust = 1;
3320 priv->frag_thresh = 2346;
3322 if ( (frq->value < 256) || (frq->value > 2346) )
3325 priv->frag_thresh = frq->value & ~0x1; /* must be even */
3329 orinoco_unlock(priv, &flags);
3334 static int orinoco_ioctl_getfrag(struct net_device *dev,
3335 struct iw_request_info *info,
3336 struct iw_param *frq,
3339 struct orinoco_private *priv = netdev_priv(dev);
3340 hermes_t *hw = &priv->hw;
3343 unsigned long flags;
3345 if (orinoco_lock(priv, &flags) != 0)
3348 if (priv->has_mwo) {
3349 err = hermes_read_wordrec(hw, USER_BAP,
3350 HERMES_RID_CNFMWOROBUST_AGERE,
3355 frq->value = val ? 2347 : 0;
3356 frq->disabled = ! val;
3359 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFFRAGMENTATIONTHRESHOLD,
3365 frq->disabled = (val >= 2346);
3369 orinoco_unlock(priv, &flags);
3374 static int orinoco_ioctl_setrate(struct net_device *dev,
3375 struct iw_request_info *info,
3376 struct iw_param *rrq,
3379 struct orinoco_private *priv = netdev_priv(dev);
3381 int bitrate; /* 100s of kilobits */
3383 unsigned long flags;
3385 /* As the user space doesn't know our highest rate, it uses -1
3386 * to ask us to set the highest rate. Test it using "iwconfig
3387 * ethX rate auto" - Jean II */
3388 if (rrq->value == -1)
3391 if (rrq->value % 100000)
3393 bitrate = rrq->value / 100000;
3396 if ( (bitrate != 10) && (bitrate != 20) &&
3397 (bitrate != 55) && (bitrate != 110) )
3400 for (i = 0; i < BITRATE_TABLE_SIZE; i++)
3401 if ( (bitrate_table[i].bitrate == bitrate) &&
3402 (bitrate_table[i].automatic == ! rrq->fixed) ) {
3410 if (orinoco_lock(priv, &flags) != 0)
3412 priv->bitratemode = ratemode;
3413 orinoco_unlock(priv, &flags);
3415 return -EINPROGRESS;
3418 static int orinoco_ioctl_getrate(struct net_device *dev,
3419 struct iw_request_info *info,
3420 struct iw_param *rrq,
3423 struct orinoco_private *priv = netdev_priv(dev);
3424 hermes_t *hw = &priv->hw;
3429 unsigned long flags;
3431 if (orinoco_lock(priv, &flags) != 0)
3434 ratemode = priv->bitratemode;
3436 BUG_ON((ratemode < 0) || (ratemode >= BITRATE_TABLE_SIZE));
3438 rrq->value = bitrate_table[ratemode].bitrate * 100000;
3439 rrq->fixed = ! bitrate_table[ratemode].automatic;
3442 /* If the interface is running we try to find more about the
3444 if (netif_running(dev)) {
3445 err = hermes_read_wordrec(hw, USER_BAP,
3446 HERMES_RID_CURRENTTXRATE, &val);
3450 switch (priv->firmware_type) {
3451 case FIRMWARE_TYPE_AGERE: /* Lucent style rate */
3452 /* Note : in Lucent firmware, the return value of
3453 * HERMES_RID_CURRENTTXRATE is the bitrate in Mb/s,
3454 * and therefore is totally different from the
3455 * encoding of HERMES_RID_CNFTXRATECONTROL.
3456 * Don't forget that 6Mb/s is really 5.5Mb/s */
3458 rrq->value = 5500000;
3460 rrq->value = val * 1000000;
3462 case FIRMWARE_TYPE_INTERSIL: /* Intersil style rate */
3463 case FIRMWARE_TYPE_SYMBOL: /* Symbol style rate */
3464 for (i = 0; i < BITRATE_TABLE_SIZE; i++)
3465 if (bitrate_table[i].intersil_txratectrl == val) {
3469 if (i >= BITRATE_TABLE_SIZE)
3470 printk(KERN_INFO "%s: Unable to determine current bitrate (0x%04hx)\n",
3473 rrq->value = bitrate_table[ratemode].bitrate * 100000;
3481 orinoco_unlock(priv, &flags);
3486 static int orinoco_ioctl_setpower(struct net_device *dev,
3487 struct iw_request_info *info,
3488 struct iw_param *prq,
3491 struct orinoco_private *priv = netdev_priv(dev);
3492 int err = -EINPROGRESS; /* Call commit handler */
3493 unsigned long flags;
3495 if (orinoco_lock(priv, &flags) != 0)
3498 if (prq->disabled) {
3501 switch (prq->flags & IW_POWER_MODE) {
3502 case IW_POWER_UNICAST_R:
3506 case IW_POWER_ALL_R:
3511 /* No flags : but we may have a value - Jean II */
3518 if (prq->flags & IW_POWER_TIMEOUT) {
3520 priv->pm_timeout = prq->value / 1000;
3522 if (prq->flags & IW_POWER_PERIOD) {
3524 priv->pm_period = prq->value / 1000;
3526 /* It's valid to not have a value if we are just toggling
3527 * the flags... Jean II */
3535 orinoco_unlock(priv, &flags);
3540 static int orinoco_ioctl_getpower(struct net_device *dev,
3541 struct iw_request_info *info,
3542 struct iw_param *prq,
3545 struct orinoco_private *priv = netdev_priv(dev);
3546 hermes_t *hw = &priv->hw;
3548 u16 enable, period, timeout, mcast;
3549 unsigned long flags;
3551 if (orinoco_lock(priv, &flags) != 0)
3554 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFPMENABLED, &enable);
3558 err = hermes_read_wordrec(hw, USER_BAP,
3559 HERMES_RID_CNFMAXSLEEPDURATION, &period);
3563 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFPMHOLDOVERDURATION, &timeout);
3567 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFMULTICASTRECEIVE, &mcast);
3571 prq->disabled = !enable;
3572 /* Note : by default, display the period */
3573 if ((prq->flags & IW_POWER_TYPE) == IW_POWER_TIMEOUT) {
3574 prq->flags = IW_POWER_TIMEOUT;
3575 prq->value = timeout * 1000;
3577 prq->flags = IW_POWER_PERIOD;
3578 prq->value = period * 1000;
3581 prq->flags |= IW_POWER_ALL_R;
3583 prq->flags |= IW_POWER_UNICAST_R;
3586 orinoco_unlock(priv, &flags);
3591 static int orinoco_ioctl_getretry(struct net_device *dev,
3592 struct iw_request_info *info,
3593 struct iw_param *rrq,
3596 struct orinoco_private *priv = netdev_priv(dev);
3597 hermes_t *hw = &priv->hw;
3599 u16 short_limit, long_limit, lifetime;
3600 unsigned long flags;
3602 if (orinoco_lock(priv, &flags) != 0)
3605 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_SHORTRETRYLIMIT,
3610 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_LONGRETRYLIMIT,
3615 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_MAXTRANSMITLIFETIME,
3620 rrq->disabled = 0; /* Can't be disabled */
3622 /* Note : by default, display the retry number */
3623 if ((rrq->flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME) {
3624 rrq->flags = IW_RETRY_LIFETIME;
3625 rrq->value = lifetime * 1000; /* ??? */
3627 /* By default, display the min number */
3628 if ((rrq->flags & IW_RETRY_MAX)) {
3629 rrq->flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
3630 rrq->value = long_limit;
3632 rrq->flags = IW_RETRY_LIMIT;
3633 rrq->value = short_limit;
3634 if(short_limit != long_limit)
3635 rrq->flags |= IW_RETRY_MIN;
3640 orinoco_unlock(priv, &flags);
3645 static int orinoco_ioctl_reset(struct net_device *dev,
3646 struct iw_request_info *info,
3650 struct orinoco_private *priv = netdev_priv(dev);
3652 if (! capable(CAP_NET_ADMIN))
3655 if (info->cmd == (SIOCIWFIRSTPRIV + 0x1)) {
3656 printk(KERN_DEBUG "%s: Forcing reset!\n", dev->name);
3658 /* Firmware reset */
3661 printk(KERN_DEBUG "%s: Force scheduling reset!\n", dev->name);
3663 schedule_work(&priv->reset_work);
3669 static int orinoco_ioctl_setibssport(struct net_device *dev,
3670 struct iw_request_info *info,
3675 struct orinoco_private *priv = netdev_priv(dev);
3676 int val = *( (int *) extra );
3677 unsigned long flags;
3679 if (orinoco_lock(priv, &flags) != 0)
3682 priv->ibss_port = val ;
3684 /* Actually update the mode we are using */
3685 set_port_type(priv);
3687 orinoco_unlock(priv, &flags);
3688 return -EINPROGRESS; /* Call commit handler */
3691 static int orinoco_ioctl_getibssport(struct net_device *dev,
3692 struct iw_request_info *info,
3696 struct orinoco_private *priv = netdev_priv(dev);
3697 int *val = (int *) extra;
3699 *val = priv->ibss_port;
3703 static int orinoco_ioctl_setport3(struct net_device *dev,
3704 struct iw_request_info *info,
3708 struct orinoco_private *priv = netdev_priv(dev);
3709 int val = *( (int *) extra );
3711 unsigned long flags;
3713 if (orinoco_lock(priv, &flags) != 0)
3717 case 0: /* Try to do IEEE ad-hoc mode */
3718 if (! priv->has_ibss) {
3722 priv->prefer_port3 = 0;
3726 case 1: /* Try to do Lucent proprietary ad-hoc mode */
3727 if (! priv->has_port3) {
3731 priv->prefer_port3 = 1;
3739 /* Actually update the mode we are using */
3740 set_port_type(priv);
3744 orinoco_unlock(priv, &flags);
3749 static int orinoco_ioctl_getport3(struct net_device *dev,
3750 struct iw_request_info *info,
3754 struct orinoco_private *priv = netdev_priv(dev);
3755 int *val = (int *) extra;
3757 *val = priv->prefer_port3;
3761 static int orinoco_ioctl_setpreamble(struct net_device *dev,
3762 struct iw_request_info *info,
3766 struct orinoco_private *priv = netdev_priv(dev);
3767 unsigned long flags;
3770 if (! priv->has_preamble)
3773 /* 802.11b has recently defined some short preamble.
3774 * Basically, the Phy header has been reduced in size.
3775 * This increase performance, especially at high rates
3776 * (the preamble is transmitted at 1Mb/s), unfortunately
3777 * this give compatibility troubles... - Jean II */
3778 val = *( (int *) extra );
3780 if (orinoco_lock(priv, &flags) != 0)
3788 orinoco_unlock(priv, &flags);
3790 return -EINPROGRESS; /* Call commit handler */
3793 static int orinoco_ioctl_getpreamble(struct net_device *dev,
3794 struct iw_request_info *info,
3798 struct orinoco_private *priv = netdev_priv(dev);
3799 int *val = (int *) extra;
3801 if (! priv->has_preamble)
3804 *val = priv->preamble;
3808 /* ioctl interface to hermes_read_ltv()
3809 * To use with iwpriv, pass the RID as the token argument, e.g.
3810 * iwpriv get_rid [0xfc00]
3811 * At least Wireless Tools 25 is required to use iwpriv.
3812 * For Wireless Tools 25 and 26 append "dummy" are the end. */
3813 static int orinoco_ioctl_getrid(struct net_device *dev,
3814 struct iw_request_info *info,
3815 struct iw_point *data,
3818 struct orinoco_private *priv = netdev_priv(dev);
3819 hermes_t *hw = &priv->hw;
3820 int rid = data->flags;
3823 unsigned long flags;
3825 /* It's a "get" function, but we don't want users to access the
3826 * WEP key and other raw firmware data */
3827 if (! capable(CAP_NET_ADMIN))
3830 if (rid < 0xfc00 || rid > 0xffff)
3833 if (orinoco_lock(priv, &flags) != 0)
3836 err = hermes_read_ltv(hw, USER_BAP, rid, MAX_RID_LEN, &length,
3841 data->length = min_t(u16, HERMES_RECLEN_TO_BYTES(length),
3845 orinoco_unlock(priv, &flags);
3849 /* Trigger a scan (look for other cells in the vicinity */
3850 static int orinoco_ioctl_setscan(struct net_device *dev,
3851 struct iw_request_info *info,
3852 struct iw_param *srq,
3855 struct orinoco_private *priv = netdev_priv(dev);
3856 hermes_t *hw = &priv->hw;
3858 unsigned long flags;
3860 /* Note : you may have realised that, as this is a SET operation,
3861 * this is priviledged and therefore a normal user can't
3863 * This is not an error, while the device perform scanning,
3864 * traffic doesn't flow, so it's a perfect DoS...
3867 if (orinoco_lock(priv, &flags) != 0)
3870 /* Scanning with port 0 disabled would fail */
3871 if (!netif_running(dev)) {
3876 /* In monitor mode, the scan results are always empty.
3877 * Probe responses are passed to the driver as received
3878 * frames and could be processed in software. */
3879 if (priv->iw_mode == IW_MODE_MONITOR) {
3884 /* Note : because we don't lock out the irq handler, the way
3885 * we access scan variables in priv is critical.
3886 * o scan_inprogress : not touched by irq handler
3887 * o scan_mode : not touched by irq handler
3888 * o scan_result : irq is strict producer, non-irq is strict
3890 * o scan_len : synchronised with scan_result
3891 * Before modifying anything on those variables, please think hard !
3894 /* If there is still some left-over scan results, get rid of it */
3895 if (priv->scan_result != NULL) {
3896 /* What's likely is that a client did crash or was killed
3897 * between triggering the scan request and reading the
3898 * results, so we need to reset everything.
3899 * Some clients that are too slow may suffer from that...
3901 kfree(priv->scan_result);
3902 priv->scan_result = NULL;
3906 priv->scan_mode = srq->flags;
3908 /* Always trigger scanning, even if it's in progress.
3909 * This way, if the info frame get lost, we will recover somewhat
3910 * gracefully - Jean II */
3912 if (priv->has_hostscan) {
3913 switch (priv->firmware_type) {
3914 case FIRMWARE_TYPE_SYMBOL:
3915 err = hermes_write_wordrec(hw, USER_BAP,
3916 HERMES_RID_CNFHOSTSCAN_SYMBOL,
3917 HERMES_HOSTSCAN_SYMBOL_ONCE |
3918 HERMES_HOSTSCAN_SYMBOL_BCAST);
3920 case FIRMWARE_TYPE_INTERSIL: {
3923 req[0] = cpu_to_le16(0x3fff); /* All channels */
3924 req[1] = cpu_to_le16(0x0001); /* rate 1 Mbps */
3925 req[2] = 0; /* Any ESSID */
3926 err = HERMES_WRITE_RECORD(hw, USER_BAP,
3927 HERMES_RID_CNFHOSTSCAN, &req);
3930 case FIRMWARE_TYPE_AGERE:
3931 err = hermes_write_wordrec(hw, USER_BAP,
3932 HERMES_RID_CNFSCANSSID_AGERE,
3937 err = hermes_inquire(hw, HERMES_INQ_SCAN);
3941 err = hermes_inquire(hw, HERMES_INQ_SCAN);
3943 /* One more client */
3945 priv->scan_inprogress = 1;
3948 orinoco_unlock(priv, &flags);
3952 /* Translate scan data returned from the card to a card independant
3953 * format that the Wireless Tools will understand - Jean II
3954 * Return message length or -errno for fatal errors */
3955 static inline int orinoco_translate_scan(struct net_device *dev,
3960 struct orinoco_private *priv = netdev_priv(dev);
3961 int offset; /* In the scan data */
3962 union hermes_scan_info *atom;
3966 struct iw_event iwe; /* Temporary buffer */
3967 char * current_ev = buffer;
3968 char * end_buf = buffer + IW_SCAN_MAX_DATA;
3970 switch (priv->firmware_type) {
3971 case FIRMWARE_TYPE_AGERE:
3972 atom_len = sizeof(struct agere_scan_apinfo);
3975 case FIRMWARE_TYPE_SYMBOL:
3976 /* Lack of documentation necessitates this hack.
3977 * Different firmwares have 68 or 76 byte long atoms.
3978 * We try modulo first. If the length divides by both,
3979 * we check what would be the channel in the second
3980 * frame for a 68-byte atom. 76-byte atoms have 0 there.
3981 * Valid channel cannot be 0. */
3984 else if (scan_len % 68)
3986 else if (scan_len >= 1292 && scan[68] == 0)
3992 case FIRMWARE_TYPE_INTERSIL:
3994 if (priv->has_hostscan) {
3995 atom_len = le16_to_cpup((__le16 *)scan);
3996 /* Sanity check for atom_len */
3997 if (atom_len < sizeof(struct prism2_scan_apinfo)) {
3998 printk(KERN_ERR "%s: Invalid atom_len in scan data: %d\n",
3999 dev->name, atom_len);
4003 atom_len = offsetof(struct prism2_scan_apinfo, atim);
4009 /* Check that we got an whole number of atoms */
4010 if ((scan_len - offset) % atom_len) {
4011 printk(KERN_ERR "%s: Unexpected scan data length %d, "
4012 "atom_len %d, offset %d\n", dev->name, scan_len,
4017 /* Read the entries one by one */
4018 for (; offset + atom_len <= scan_len; offset += atom_len) {
4020 atom = (union hermes_scan_info *) (scan + offset);
4022 /* First entry *MUST* be the AP MAC address */
4023 iwe.cmd = SIOCGIWAP;
4024 iwe.u.ap_addr.sa_family = ARPHRD_ETHER;
4025 memcpy(iwe.u.ap_addr.sa_data, atom->a.bssid, ETH_ALEN);
4026 current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe, IW_EV_ADDR_LEN);
4028 /* Other entries will be displayed in the order we give them */
4031 iwe.u.data.length = le16_to_cpu(atom->a.essid_len);
4032 if (iwe.u.data.length > 32)
4033 iwe.u.data.length = 32;
4034 iwe.cmd = SIOCGIWESSID;
4035 iwe.u.data.flags = 1;
4036 current_ev = iwe_stream_add_point(current_ev, end_buf, &iwe, atom->a.essid);
4039 iwe.cmd = SIOCGIWMODE;
4040 capabilities = le16_to_cpu(atom->a.capabilities);
4041 if (capabilities & 0x3) {
4042 if (capabilities & 0x1)
4043 iwe.u.mode = IW_MODE_MASTER;
4045 iwe.u.mode = IW_MODE_ADHOC;
4046 current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe, IW_EV_UINT_LEN);
4049 channel = atom->s.channel;
4050 if ( (channel >= 1) && (channel <= NUM_CHANNELS) ) {
4052 iwe.cmd = SIOCGIWFREQ;
4053 iwe.u.freq.m = channel_frequency[channel-1] * 100000;
4055 current_ev = iwe_stream_add_event(current_ev, end_buf,
4056 &iwe, IW_EV_FREQ_LEN);
4059 /* Add quality statistics */
4061 iwe.u.qual.updated = 0x10; /* no link quality */
4062 iwe.u.qual.level = (__u8) le16_to_cpu(atom->a.level) - 0x95;
4063 iwe.u.qual.noise = (__u8) le16_to_cpu(atom->a.noise) - 0x95;
4064 /* Wireless tools prior to 27.pre22 will show link quality
4065 * anyway, so we provide a reasonable value. */
4066 if (iwe.u.qual.level > iwe.u.qual.noise)
4067 iwe.u.qual.qual = iwe.u.qual.level - iwe.u.qual.noise;
4069 iwe.u.qual.qual = 0;
4070 current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe, IW_EV_QUAL_LEN);
4072 /* Add encryption capability */
4073 iwe.cmd = SIOCGIWENCODE;
4074 if (capabilities & 0x10)
4075 iwe.u.data.flags = IW_ENCODE_ENABLED | IW_ENCODE_NOKEY;
4077 iwe.u.data.flags = IW_ENCODE_DISABLED;
4078 iwe.u.data.length = 0;
4079 current_ev = iwe_stream_add_point(current_ev, end_buf, &iwe, atom->a.essid);
4081 /* Bit rate is not available in Lucent/Agere firmwares */
4082 if (priv->firmware_type != FIRMWARE_TYPE_AGERE) {
4083 char * current_val = current_ev + IW_EV_LCP_LEN;
4087 if (priv->firmware_type == FIRMWARE_TYPE_SYMBOL)
4092 iwe.cmd = SIOCGIWRATE;
4093 /* Those two flags are ignored... */
4094 iwe.u.bitrate.fixed = iwe.u.bitrate.disabled = 0;
4096 for (i = 0; i < 10; i += step) {
4097 /* NULL terminated */
4098 if (atom->p.rates[i] == 0x0)
4100 /* Bit rate given in 500 kb/s units (+ 0x80) */
4101 iwe.u.bitrate.value = ((atom->p.rates[i] & 0x7f) * 500000);
4102 current_val = iwe_stream_add_value(current_ev, current_val,
4106 /* Check if we added any event */
4107 if ((current_val - current_ev) > IW_EV_LCP_LEN)
4108 current_ev = current_val;
4111 /* The other data in the scan result are not really
4112 * interesting, so for now drop it - Jean II */
4114 return current_ev - buffer;
4117 /* Return results of a scan */
4118 static int orinoco_ioctl_getscan(struct net_device *dev,
4119 struct iw_request_info *info,
4120 struct iw_point *srq,
4123 struct orinoco_private *priv = netdev_priv(dev);
4125 unsigned long flags;
4127 if (orinoco_lock(priv, &flags) != 0)
4130 /* If no results yet, ask to try again later */
4131 if (priv->scan_result == NULL) {
4132 if (priv->scan_inprogress)
4133 /* Important note : we don't want to block the caller
4134 * until results are ready for various reasons.
4135 * First, managing wait queues is complex and racy.
4136 * Second, we grab some rtnetlink lock before comming
4137 * here (in dev_ioctl()).
4138 * Third, we generate an Wireless Event, so the
4139 * caller can wait itself on that - Jean II */
4142 /* Client error, no scan results...
4143 * The caller need to restart the scan. */
4146 /* We have some results to push back to user space */
4148 /* Translate to WE format */
4149 int ret = orinoco_translate_scan(dev, extra,
4155 kfree(priv->scan_result);
4156 priv->scan_result = NULL;
4161 srq->flags = (__u16) priv->scan_mode;
4163 /* In any case, Scan results will be cleaned up in the
4164 * reset function and when exiting the driver.
4165 * The person triggering the scanning may never come to
4166 * pick the results, so we need to do it in those places.
4169 #ifdef SCAN_SINGLE_READ
4170 /* If you enable this option, only one client (the first
4171 * one) will be able to read the result (and only one
4172 * time). If there is multiple concurent clients that
4173 * want to read scan results, this behavior is not
4174 * advisable - Jean II */
4175 kfree(priv->scan_result);
4176 priv->scan_result = NULL;
4177 #endif /* SCAN_SINGLE_READ */
4178 /* Here, if too much time has elapsed since last scan,
4179 * we may want to clean up scan results... - Jean II */
4182 /* Scan is no longer in progress */
4183 priv->scan_inprogress = 0;
4186 orinoco_unlock(priv, &flags);
4190 /* Commit handler, called after set operations */
4191 static int orinoco_ioctl_commit(struct net_device *dev,
4192 struct iw_request_info *info,
4196 struct orinoco_private *priv = netdev_priv(dev);
4197 struct hermes *hw = &priv->hw;
4198 unsigned long flags;
4204 if (priv->broken_disableport) {
4209 if (orinoco_lock(priv, &flags) != 0)
4212 err = hermes_disable_port(hw, 0);
4214 printk(KERN_WARNING "%s: Unable to disable port "
4215 "while reconfiguring card\n", dev->name);
4216 priv->broken_disableport = 1;
4220 err = __orinoco_program_rids(dev);
4222 printk(KERN_WARNING "%s: Unable to reconfigure card\n",
4227 err = hermes_enable_port(hw, 0);
4229 printk(KERN_WARNING "%s: Unable to enable port while reconfiguring card\n",
4236 printk(KERN_WARNING "%s: Resetting instead...\n", dev->name);
4237 schedule_work(&priv->reset_work);
4241 orinoco_unlock(priv, &flags);
4245 static const struct iw_priv_args orinoco_privtab[] = {
4246 { SIOCIWFIRSTPRIV + 0x0, 0, 0, "force_reset" },
4247 { SIOCIWFIRSTPRIV + 0x1, 0, 0, "card_reset" },
4248 { SIOCIWFIRSTPRIV + 0x2, IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
4250 { SIOCIWFIRSTPRIV + 0x3, 0, IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
4252 { SIOCIWFIRSTPRIV + 0x4, IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
4253 0, "set_preamble" },
4254 { SIOCIWFIRSTPRIV + 0x5, 0, IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
4256 { SIOCIWFIRSTPRIV + 0x6, IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
4257 0, "set_ibssport" },
4258 { SIOCIWFIRSTPRIV + 0x7, 0, IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
4260 { SIOCIWFIRSTPRIV + 0x9, 0, IW_PRIV_TYPE_BYTE | MAX_RID_LEN,
4266 * Structures to export the Wireless Handlers
4269 static const iw_handler orinoco_handler[] = {
4270 [SIOCSIWCOMMIT-SIOCIWFIRST] = (iw_handler) orinoco_ioctl_commit,
4271 [SIOCGIWNAME -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getname,
4272 [SIOCSIWFREQ -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setfreq,
4273 [SIOCGIWFREQ -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getfreq,
4274 [SIOCSIWMODE -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setmode,
4275 [SIOCGIWMODE -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getmode,
4276 [SIOCSIWSENS -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setsens,
4277 [SIOCGIWSENS -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getsens,
4278 [SIOCGIWRANGE -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getiwrange,
4279 [SIOCSIWSPY -SIOCIWFIRST] = (iw_handler) iw_handler_set_spy,
4280 [SIOCGIWSPY -SIOCIWFIRST] = (iw_handler) iw_handler_get_spy,
4281 [SIOCSIWTHRSPY-SIOCIWFIRST] = (iw_handler) iw_handler_set_thrspy,
4282 [SIOCGIWTHRSPY-SIOCIWFIRST] = (iw_handler) iw_handler_get_thrspy,
4283 [SIOCSIWAP -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setwap,
4284 [SIOCGIWAP -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getwap,
4285 [SIOCSIWSCAN -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setscan,
4286 [SIOCGIWSCAN -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getscan,
4287 [SIOCSIWESSID -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setessid,
4288 [SIOCGIWESSID -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getessid,
4289 [SIOCSIWNICKN -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setnick,
4290 [SIOCGIWNICKN -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getnick,
4291 [SIOCSIWRATE -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setrate,
4292 [SIOCGIWRATE -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getrate,
4293 [SIOCSIWRTS -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setrts,
4294 [SIOCGIWRTS -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getrts,
4295 [SIOCSIWFRAG -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setfrag,
4296 [SIOCGIWFRAG -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getfrag,
4297 [SIOCGIWRETRY -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getretry,
4298 [SIOCSIWENCODE-SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setiwencode,
4299 [SIOCGIWENCODE-SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getiwencode,
4300 [SIOCSIWPOWER -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setpower,
4301 [SIOCGIWPOWER -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getpower,
4306 Added typecasting since we no longer use iwreq_data -- Moustafa
4308 static const iw_handler orinoco_private_handler[] = {
4309 [0] = (iw_handler) orinoco_ioctl_reset,
4310 [1] = (iw_handler) orinoco_ioctl_reset,
4311 [2] = (iw_handler) orinoco_ioctl_setport3,
4312 [3] = (iw_handler) orinoco_ioctl_getport3,
4313 [4] = (iw_handler) orinoco_ioctl_setpreamble,
4314 [5] = (iw_handler) orinoco_ioctl_getpreamble,
4315 [6] = (iw_handler) orinoco_ioctl_setibssport,
4316 [7] = (iw_handler) orinoco_ioctl_getibssport,
4317 [9] = (iw_handler) orinoco_ioctl_getrid,
4320 static const struct iw_handler_def orinoco_handler_def = {
4321 .num_standard = ARRAY_SIZE(orinoco_handler),
4322 .num_private = ARRAY_SIZE(orinoco_private_handler),
4323 .num_private_args = ARRAY_SIZE(orinoco_privtab),
4324 .standard = orinoco_handler,
4325 .private = orinoco_private_handler,
4326 .private_args = orinoco_privtab,
4327 .get_wireless_stats = orinoco_get_wireless_stats,
4330 static void orinoco_get_drvinfo(struct net_device *dev,
4331 struct ethtool_drvinfo *info)
4333 struct orinoco_private *priv = netdev_priv(dev);
4335 strncpy(info->driver, DRIVER_NAME, sizeof(info->driver) - 1);
4336 strncpy(info->version, DRIVER_VERSION, sizeof(info->version) - 1);
4337 strncpy(info->fw_version, priv->fw_name, sizeof(info->fw_version) - 1);
4338 if (dev->class_dev.dev)
4339 strncpy(info->bus_info, dev->class_dev.dev->bus_id,
4340 sizeof(info->bus_info) - 1);
4342 snprintf(info->bus_info, sizeof(info->bus_info) - 1,
4343 "PCMCIA %p", priv->hw.iobase);
4346 static struct ethtool_ops orinoco_ethtool_ops = {
4347 .get_drvinfo = orinoco_get_drvinfo,
4348 .get_link = ethtool_op_get_link,
4351 /********************************************************************/
4353 /********************************************************************/
4356 static void show_rx_frame(struct orinoco_rxframe_hdr *frame)
4358 printk(KERN_DEBUG "RX descriptor:\n");
4359 printk(KERN_DEBUG " status = 0x%04x\n", frame->desc.status);
4360 printk(KERN_DEBUG " time = 0x%08x\n", frame->desc.time);
4361 printk(KERN_DEBUG " silence = 0x%02x\n", frame->desc.silence);
4362 printk(KERN_DEBUG " signal = 0x%02x\n", frame->desc.signal);
4363 printk(KERN_DEBUG " rate = 0x%02x\n", frame->desc.rate);
4364 printk(KERN_DEBUG " rxflow = 0x%02x\n", frame->desc.rxflow);
4365 printk(KERN_DEBUG " reserved = 0x%08x\n", frame->desc.reserved);
4367 printk(KERN_DEBUG "IEEE 802.11 header:\n");
4368 printk(KERN_DEBUG " frame_ctl = 0x%04x\n",
4369 frame->p80211.frame_ctl);
4370 printk(KERN_DEBUG " duration_id = 0x%04x\n",
4371 frame->p80211.duration_id);
4372 printk(KERN_DEBUG " addr1 = %02x:%02x:%02x:%02x:%02x:%02x\n",
4373 frame->p80211.addr1[0], frame->p80211.addr1[1],
4374 frame->p80211.addr1[2], frame->p80211.addr1[3],
4375 frame->p80211.addr1[4], frame->p80211.addr1[5]);
4376 printk(KERN_DEBUG " addr2 = %02x:%02x:%02x:%02x:%02x:%02x\n",
4377 frame->p80211.addr2[0], frame->p80211.addr2[1],
4378 frame->p80211.addr2[2], frame->p80211.addr2[3],
4379 frame->p80211.addr2[4], frame->p80211.addr2[5]);
4380 printk(KERN_DEBUG " addr3 = %02x:%02x:%02x:%02x:%02x:%02x\n",
4381 frame->p80211.addr3[0], frame->p80211.addr3[1],
4382 frame->p80211.addr3[2], frame->p80211.addr3[3],
4383 frame->p80211.addr3[4], frame->p80211.addr3[5]);
4384 printk(KERN_DEBUG " seq_ctl = 0x%04x\n",
4385 frame->p80211.seq_ctl);
4386 printk(KERN_DEBUG " addr4 = %02x:%02x:%02x:%02x:%02x:%02x\n",
4387 frame->p80211.addr4[0], frame->p80211.addr4[1],
4388 frame->p80211.addr4[2], frame->p80211.addr4[3],
4389 frame->p80211.addr4[4], frame->p80211.addr4[5]);
4390 printk(KERN_DEBUG " data_len = 0x%04x\n",
4391 frame->p80211.data_len);
4393 printk(KERN_DEBUG "IEEE 802.3 header:\n");
4394 printk(KERN_DEBUG " dest = %02x:%02x:%02x:%02x:%02x:%02x\n",
4395 frame->p8023.h_dest[0], frame->p8023.h_dest[1],
4396 frame->p8023.h_dest[2], frame->p8023.h_dest[3],
4397 frame->p8023.h_dest[4], frame->p8023.h_dest[5]);
4398 printk(KERN_DEBUG " src = %02x:%02x:%02x:%02x:%02x:%02x\n",
4399 frame->p8023.h_source[0], frame->p8023.h_source[1],
4400 frame->p8023.h_source[2], frame->p8023.h_source[3],
4401 frame->p8023.h_source[4], frame->p8023.h_source[5]);
4402 printk(KERN_DEBUG " len = 0x%04x\n", frame->p8023.h_proto);
4404 printk(KERN_DEBUG "IEEE 802.2 LLC/SNAP header:\n");
4405 printk(KERN_DEBUG " DSAP = 0x%02x\n", frame->p8022.dsap);
4406 printk(KERN_DEBUG " SSAP = 0x%02x\n", frame->p8022.ssap);
4407 printk(KERN_DEBUG " ctrl = 0x%02x\n", frame->p8022.ctrl);
4408 printk(KERN_DEBUG " OUI = %02x:%02x:%02x\n",
4409 frame->p8022.oui[0], frame->p8022.oui[1], frame->p8022.oui[2]);
4410 printk(KERN_DEBUG " ethertype = 0x%04x\n", frame->ethertype);
4414 /********************************************************************/
4415 /* Module initialization */
4416 /********************************************************************/
4418 EXPORT_SYMBOL(alloc_orinocodev);
4419 EXPORT_SYMBOL(free_orinocodev);
4421 EXPORT_SYMBOL(__orinoco_up);
4422 EXPORT_SYMBOL(__orinoco_down);
4423 EXPORT_SYMBOL(orinoco_reinit_firmware);
4425 EXPORT_SYMBOL(orinoco_interrupt);
4427 /* Can't be declared "const" or the whole __initdata section will
4429 static char version[] __initdata = DRIVER_NAME " " DRIVER_VERSION
4430 " (David Gibson <hermes@gibson.dropbear.id.au>, "
4431 "Pavel Roskin <proski@gnu.org>, et al)";
4433 static int __init init_orinoco(void)
4435 printk(KERN_DEBUG "%s\n", version);
4439 static void __exit exit_orinoco(void)
4443 module_init(init_orinoco);
4444 module_exit(exit_orinoco);