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 /* Check packet length, pad short packets, round up odd length */
494 len = max_t(int, ALIGN(skb->len, 2), ETH_ZLEN);
495 skb = skb_padto(skb, len);
500 eh = (struct ethhdr *)skb->data;
502 memset(&desc, 0, sizeof(desc));
503 desc.tx_control = cpu_to_le16(HERMES_TXCTRL_TX_OK | HERMES_TXCTRL_TX_EX);
504 err = hermes_bap_pwrite(hw, USER_BAP, &desc, sizeof(desc), txfid, 0);
507 printk(KERN_ERR "%s: Error %d writing Tx descriptor "
508 "to BAP\n", dev->name, err);
513 /* Clear the 802.11 header and data length fields - some
514 * firmwares (e.g. Lucent/Agere 8.xx) appear to get confused
515 * if this isn't done. */
516 hermes_clear_words(hw, HERMES_DATA0,
517 HERMES_802_3_OFFSET - HERMES_802_11_OFFSET);
519 /* Encapsulate Ethernet-II frames */
520 if (ntohs(eh->h_proto) > ETH_DATA_LEN) { /* Ethernet-II frame */
521 struct header_struct hdr;
523 data_off = HERMES_802_3_OFFSET + sizeof(hdr);
524 p = skb->data + ETH_HLEN;
527 memcpy(hdr.dest, eh->h_dest, ETH_ALEN);
528 memcpy(hdr.src, eh->h_source, ETH_ALEN);
529 hdr.len = htons(data_len + ENCAPS_OVERHEAD);
532 memcpy(&hdr.dsap, &encaps_hdr, sizeof(encaps_hdr));
534 hdr.ethertype = eh->h_proto;
535 err = hermes_bap_pwrite(hw, USER_BAP, &hdr, sizeof(hdr),
536 txfid, HERMES_802_3_OFFSET);
539 printk(KERN_ERR "%s: Error %d writing packet "
540 "header to BAP\n", dev->name, err);
544 } else { /* IEEE 802.3 frame */
545 data_len = len + ETH_HLEN;
546 data_off = HERMES_802_3_OFFSET;
550 err = hermes_bap_pwrite(hw, USER_BAP, p, data_len,
553 printk(KERN_ERR "%s: Error %d writing packet to BAP\n",
559 /* Finally, we actually initiate the send */
560 netif_stop_queue(dev);
562 err = hermes_docmd_wait(hw, HERMES_CMD_TX | HERMES_CMD_RECL,
565 netif_start_queue(dev);
567 printk(KERN_ERR "%s: Error %d transmitting packet\n",
573 dev->trans_start = jiffies;
574 stats->tx_bytes += data_off + data_len;
576 orinoco_unlock(priv, &flags);
580 TRACE_EXIT(dev->name);
584 TRACE_EXIT(dev->name);
586 orinoco_unlock(priv, &flags);
590 static void __orinoco_ev_alloc(struct net_device *dev, hermes_t *hw)
592 struct orinoco_private *priv = netdev_priv(dev);
593 u16 fid = hermes_read_regn(hw, ALLOCFID);
595 if (fid != priv->txfid) {
596 if (fid != DUMMY_FID)
597 printk(KERN_WARNING "%s: Allocate event on unexpected fid (%04X)\n",
602 hermes_write_regn(hw, ALLOCFID, DUMMY_FID);
605 static void __orinoco_ev_tx(struct net_device *dev, hermes_t *hw)
607 struct orinoco_private *priv = netdev_priv(dev);
608 struct net_device_stats *stats = &priv->stats;
612 netif_wake_queue(dev);
614 hermes_write_regn(hw, TXCOMPLFID, DUMMY_FID);
617 static void __orinoco_ev_txexc(struct net_device *dev, hermes_t *hw)
619 struct orinoco_private *priv = netdev_priv(dev);
620 struct net_device_stats *stats = &priv->stats;
621 u16 fid = hermes_read_regn(hw, TXCOMPLFID);
623 struct hermes_tx_descriptor_802_11 hdr;
626 if (fid == DUMMY_FID)
627 return; /* Nothing's really happened */
629 /* Read part of the frame header - we need status and addr1 */
630 err = hermes_bap_pread(hw, IRQ_BAP, &hdr,
631 offsetof(struct hermes_tx_descriptor_802_11,
635 hermes_write_regn(hw, TXCOMPLFID, DUMMY_FID);
639 printk(KERN_WARNING "%s: Unable to read descriptor on Tx error "
640 "(FID=%04X error %d)\n",
641 dev->name, fid, err);
645 DEBUG(1, "%s: Tx error, err %d (FID=%04X)\n", dev->name,
648 /* We produce a TXDROP event only for retry or lifetime
649 * exceeded, because that's the only status that really mean
650 * that this particular node went away.
651 * Other errors means that *we* screwed up. - Jean II */
652 status = le16_to_cpu(hdr.status);
653 if (status & (HERMES_TXSTAT_RETRYERR | HERMES_TXSTAT_AGEDERR)) {
654 union iwreq_data wrqu;
656 /* Copy 802.11 dest address.
657 * We use the 802.11 header because the frame may
658 * not be 802.3 or may be mangled...
659 * In Ad-Hoc mode, it will be the node address.
660 * In managed mode, it will be most likely the AP addr
661 * User space will figure out how to convert it to
662 * whatever it needs (IP address or else).
664 memcpy(wrqu.addr.sa_data, hdr.addr1, ETH_ALEN);
665 wrqu.addr.sa_family = ARPHRD_ETHER;
667 /* Send event to user space */
668 wireless_send_event(dev, IWEVTXDROP, &wrqu, NULL);
671 netif_wake_queue(dev);
674 static void orinoco_tx_timeout(struct net_device *dev)
676 struct orinoco_private *priv = netdev_priv(dev);
677 struct net_device_stats *stats = &priv->stats;
678 struct hermes *hw = &priv->hw;
680 printk(KERN_WARNING "%s: Tx timeout! "
681 "ALLOCFID=%04x, TXCOMPLFID=%04x, EVSTAT=%04x\n",
682 dev->name, hermes_read_regn(hw, ALLOCFID),
683 hermes_read_regn(hw, TXCOMPLFID), hermes_read_regn(hw, EVSTAT));
687 schedule_work(&priv->reset_work);
690 /********************************************************************/
691 /* Rx path (data frames) */
692 /********************************************************************/
694 /* Does the frame have a SNAP header indicating it should be
695 * de-encapsulated to Ethernet-II? */
696 static inline int is_ethersnap(void *_hdr)
700 /* We de-encapsulate all packets which, a) have SNAP headers
701 * (i.e. SSAP=DSAP=0xaa and CTRL=0x3 in the 802.2 LLC header
702 * and where b) the OUI of the SNAP header is 00:00:00 or
703 * 00:00:f8 - we need both because different APs appear to use
704 * different OUIs for some reason */
705 return (memcmp(hdr, &encaps_hdr, 5) == 0)
706 && ( (hdr[5] == 0x00) || (hdr[5] == 0xf8) );
709 static inline void orinoco_spy_gather(struct net_device *dev, u_char *mac,
710 int level, int noise)
712 struct iw_quality wstats;
713 wstats.level = level - 0x95;
714 wstats.noise = noise - 0x95;
715 wstats.qual = (level > noise) ? (level - noise) : 0;
717 /* Update spy records */
718 wireless_spy_update(dev, mac, &wstats);
721 static void orinoco_stat_gather(struct net_device *dev,
723 struct hermes_rx_descriptor *desc)
725 struct orinoco_private *priv = netdev_priv(dev);
727 /* Using spy support with lots of Rx packets, like in an
728 * infrastructure (AP), will really slow down everything, because
729 * the MAC address must be compared to each entry of the spy list.
730 * If the user really asks for it (set some address in the
731 * spy list), we do it, but he will pay the price.
732 * Note that to get here, you need both WIRELESS_SPY
733 * compiled in AND some addresses in the list !!!
735 /* Note : gcc will optimise the whole section away if
736 * WIRELESS_SPY is not defined... - Jean II */
737 if (SPY_NUMBER(priv)) {
738 orinoco_spy_gather(dev, skb->mac.raw + ETH_ALEN,
739 desc->signal, desc->silence);
744 * orinoco_rx_monitor - handle received monitor frames.
749 * desc rx descriptor of the frame
751 * Call context: interrupt
753 static void orinoco_rx_monitor(struct net_device *dev, u16 rxfid,
754 struct hermes_rx_descriptor *desc)
756 u32 hdrlen = 30; /* return full header by default */
762 struct orinoco_private *priv = netdev_priv(dev);
763 struct net_device_stats *stats = &priv->stats;
764 hermes_t *hw = &priv->hw;
766 len = le16_to_cpu(desc->data_len);
768 /* Determine the size of the header and the data */
769 fc = le16_to_cpu(desc->frame_ctl);
770 switch (fc & IEEE80211_FCTL_FTYPE) {
771 case IEEE80211_FTYPE_DATA:
772 if ((fc & IEEE80211_FCTL_TODS)
773 && (fc & IEEE80211_FCTL_FROMDS))
779 case IEEE80211_FTYPE_MGMT:
783 case IEEE80211_FTYPE_CTL:
784 switch (fc & IEEE80211_FCTL_STYPE) {
785 case IEEE80211_STYPE_PSPOLL:
786 case IEEE80211_STYPE_RTS:
787 case IEEE80211_STYPE_CFEND:
788 case IEEE80211_STYPE_CFENDACK:
791 case IEEE80211_STYPE_CTS:
792 case IEEE80211_STYPE_ACK:
798 /* Unknown frame type */
802 /* sanity check the length */
803 if (datalen > IEEE80211_DATA_LEN + 12) {
804 printk(KERN_DEBUG "%s: oversized monitor frame, "
805 "data length = %d\n", dev->name, datalen);
807 stats->rx_length_errors++;
811 skb = dev_alloc_skb(hdrlen + datalen);
813 printk(KERN_WARNING "%s: Cannot allocate skb for monitor frame\n",
819 /* Copy the 802.11 header to the skb */
820 memcpy(skb_put(skb, hdrlen), &(desc->frame_ctl), hdrlen);
821 skb->mac.raw = skb->data;
823 /* If any, copy the data from the card to the skb */
825 err = hermes_bap_pread(hw, IRQ_BAP, skb_put(skb, datalen),
826 ALIGN(datalen, 2), rxfid,
827 HERMES_802_2_OFFSET);
829 printk(KERN_ERR "%s: error %d reading monitor frame\n",
836 skb->ip_summed = CHECKSUM_NONE;
837 skb->pkt_type = PACKET_OTHERHOST;
838 skb->protocol = __constant_htons(ETH_P_802_2);
840 dev->last_rx = jiffies;
842 stats->rx_bytes += skb->len;
848 dev_kfree_skb_irq(skb);
854 static void __orinoco_ev_rx(struct net_device *dev, hermes_t *hw)
856 struct orinoco_private *priv = netdev_priv(dev);
857 struct net_device_stats *stats = &priv->stats;
858 struct iw_statistics *wstats = &priv->wstats;
859 struct sk_buff *skb = NULL;
860 u16 rxfid, status, fc;
862 struct hermes_rx_descriptor desc;
866 rxfid = hermes_read_regn(hw, RXFID);
868 err = hermes_bap_pread(hw, IRQ_BAP, &desc, sizeof(desc),
871 printk(KERN_ERR "%s: error %d reading Rx descriptor. "
872 "Frame dropped.\n", dev->name, err);
876 status = le16_to_cpu(desc.status);
878 if (status & HERMES_RXSTAT_BADCRC) {
879 DEBUG(1, "%s: Bad CRC on Rx. Frame dropped.\n",
881 stats->rx_crc_errors++;
885 /* Handle frames in monitor mode */
886 if (priv->iw_mode == IW_MODE_MONITOR) {
887 orinoco_rx_monitor(dev, rxfid, &desc);
891 if (status & HERMES_RXSTAT_UNDECRYPTABLE) {
892 DEBUG(1, "%s: Undecryptable frame on Rx. Frame dropped.\n",
894 wstats->discard.code++;
898 length = le16_to_cpu(desc.data_len);
899 fc = le16_to_cpu(desc.frame_ctl);
902 if (length < 3) { /* No for even an 802.2 LLC header */
903 /* At least on Symbol firmware with PCF we get quite a
904 lot of these legitimately - Poll frames with no
908 if (length > IEEE80211_DATA_LEN) {
909 printk(KERN_WARNING "%s: Oversized frame received (%d bytes)\n",
911 stats->rx_length_errors++;
915 /* We need space for the packet data itself, plus an ethernet
916 header, plus 2 bytes so we can align the IP header on a
917 32bit boundary, plus 1 byte so we can read in odd length
918 packets from the card, which has an IO granularity of 16
920 skb = dev_alloc_skb(length+ETH_HLEN+2+1);
922 printk(KERN_WARNING "%s: Can't allocate skb for Rx\n",
927 /* We'll prepend the header, so reserve space for it. The worst
928 case is no decapsulation, when 802.3 header is prepended and
929 nothing is removed. 2 is for aligning the IP header. */
930 skb_reserve(skb, ETH_HLEN + 2);
932 err = hermes_bap_pread(hw, IRQ_BAP, skb_put(skb, length),
933 ALIGN(length, 2), rxfid,
934 HERMES_802_2_OFFSET);
936 printk(KERN_ERR "%s: error %d reading frame. "
937 "Frame dropped.\n", dev->name, err);
941 /* Handle decapsulation
942 * In most cases, the firmware tell us about SNAP frames.
943 * For some reason, the SNAP frames sent by LinkSys APs
944 * are not properly recognised by most firmwares.
945 * So, check ourselves */
946 if (length >= ENCAPS_OVERHEAD &&
947 (((status & HERMES_RXSTAT_MSGTYPE) == HERMES_RXSTAT_1042) ||
948 ((status & HERMES_RXSTAT_MSGTYPE) == HERMES_RXSTAT_TUNNEL) ||
949 is_ethersnap(skb->data))) {
950 /* These indicate a SNAP within 802.2 LLC within
951 802.11 frame which we'll need to de-encapsulate to
952 the original EthernetII frame. */
953 hdr = (struct ethhdr *)skb_push(skb, ETH_HLEN - ENCAPS_OVERHEAD);
955 /* 802.3 frame - prepend 802.3 header as is */
956 hdr = (struct ethhdr *)skb_push(skb, ETH_HLEN);
957 hdr->h_proto = htons(length);
959 memcpy(hdr->h_dest, desc.addr1, ETH_ALEN);
960 if (fc & IEEE80211_FCTL_FROMDS)
961 memcpy(hdr->h_source, desc.addr3, ETH_ALEN);
963 memcpy(hdr->h_source, desc.addr2, ETH_ALEN);
965 dev->last_rx = jiffies;
967 skb->protocol = eth_type_trans(skb, dev);
968 skb->ip_summed = CHECKSUM_NONE;
969 if (fc & IEEE80211_FCTL_TODS)
970 skb->pkt_type = PACKET_OTHERHOST;
972 /* Process the wireless stats if needed */
973 orinoco_stat_gather(dev, skb, &desc);
975 /* Pass the packet to the networking stack */
978 stats->rx_bytes += length;
983 dev_kfree_skb_irq(skb);
989 /********************************************************************/
990 /* Rx path (info frames) */
991 /********************************************************************/
993 static void print_linkstatus(struct net_device *dev, u16 status)
997 if (suppress_linkstatus)
1001 case HERMES_LINKSTATUS_NOT_CONNECTED:
1002 s = "Not Connected";
1004 case HERMES_LINKSTATUS_CONNECTED:
1007 case HERMES_LINKSTATUS_DISCONNECTED:
1010 case HERMES_LINKSTATUS_AP_CHANGE:
1013 case HERMES_LINKSTATUS_AP_OUT_OF_RANGE:
1014 s = "AP Out of Range";
1016 case HERMES_LINKSTATUS_AP_IN_RANGE:
1019 case HERMES_LINKSTATUS_ASSOC_FAILED:
1020 s = "Association Failed";
1026 printk(KERN_INFO "%s: New link status: %s (%04x)\n",
1027 dev->name, s, status);
1030 /* Search scan results for requested BSSID, join it if found */
1031 static void orinoco_join_ap(struct net_device *dev)
1033 struct orinoco_private *priv = netdev_priv(dev);
1034 struct hermes *hw = &priv->hw;
1036 unsigned long flags;
1040 } __attribute__ ((packed)) req;
1041 const int atom_len = offsetof(struct prism2_scan_apinfo, atim);
1042 struct prism2_scan_apinfo *atom = NULL;
1048 /* Allocate buffer for scan results */
1049 buf = kmalloc(MAX_SCAN_LEN, GFP_KERNEL);
1053 if (orinoco_lock(priv, &flags) != 0)
1056 /* Sanity checks in case user changed something in the meantime */
1057 if (! priv->bssid_fixed)
1060 if (strlen(priv->desired_essid) == 0)
1063 /* Read scan results from the firmware */
1064 err = hermes_read_ltv(hw, USER_BAP,
1065 HERMES_RID_SCANRESULTSTABLE,
1066 MAX_SCAN_LEN, &len, buf);
1068 printk(KERN_ERR "%s: Cannot read scan results\n",
1073 len = HERMES_RECLEN_TO_BYTES(len);
1075 /* Go through the scan results looking for the channel of the AP
1076 * we were requested to join */
1077 for (; offset + atom_len <= len; offset += atom_len) {
1078 atom = (struct prism2_scan_apinfo *) (buf + offset);
1079 if (memcmp(&atom->bssid, priv->desired_bssid, ETH_ALEN) == 0) {
1086 DEBUG(1, "%s: Requested AP not found in scan results\n",
1091 memcpy(req.bssid, priv->desired_bssid, ETH_ALEN);
1092 req.channel = atom->channel; /* both are little-endian */
1093 err = HERMES_WRITE_RECORD(hw, USER_BAP, HERMES_RID_CNFJOINREQUEST,
1096 printk(KERN_ERR "%s: Error issuing join request\n", dev->name);
1099 orinoco_unlock(priv, &flags);
1105 /* Send new BSSID to userspace */
1106 static void orinoco_send_wevents(struct net_device *dev)
1108 struct orinoco_private *priv = netdev_priv(dev);
1109 struct hermes *hw = &priv->hw;
1110 union iwreq_data wrqu;
1112 unsigned long flags;
1114 if (orinoco_lock(priv, &flags) != 0)
1117 err = hermes_read_ltv(hw, IRQ_BAP, HERMES_RID_CURRENTBSSID,
1118 ETH_ALEN, NULL, wrqu.ap_addr.sa_data);
1122 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
1124 /* Send event to user space */
1125 wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL);
1128 orinoco_unlock(priv, &flags);
1131 static void __orinoco_ev_info(struct net_device *dev, hermes_t *hw)
1133 struct orinoco_private *priv = netdev_priv(dev);
1138 } __attribute__ ((packed)) info;
1142 /* This is an answer to an INQUIRE command that we did earlier,
1143 * or an information "event" generated by the card
1144 * The controller return to us a pseudo frame containing
1145 * the information in question - Jean II */
1146 infofid = hermes_read_regn(hw, INFOFID);
1148 /* Read the info frame header - don't try too hard */
1149 err = hermes_bap_pread(hw, IRQ_BAP, &info, sizeof(info),
1152 printk(KERN_ERR "%s: error %d reading info frame. "
1153 "Frame dropped.\n", dev->name, err);
1157 len = HERMES_RECLEN_TO_BYTES(le16_to_cpu(info.len));
1158 type = le16_to_cpu(info.type);
1161 case HERMES_INQ_TALLIES: {
1162 struct hermes_tallies_frame tallies;
1163 struct iw_statistics *wstats = &priv->wstats;
1165 if (len > sizeof(tallies)) {
1166 printk(KERN_WARNING "%s: Tallies frame too long (%d bytes)\n",
1168 len = sizeof(tallies);
1171 err = hermes_bap_pread(hw, IRQ_BAP, &tallies, len,
1172 infofid, sizeof(info));
1176 /* Increment our various counters */
1177 /* wstats->discard.nwid - no wrong BSSID stuff */
1178 wstats->discard.code +=
1179 le16_to_cpu(tallies.RxWEPUndecryptable);
1180 if (len == sizeof(tallies))
1181 wstats->discard.code +=
1182 le16_to_cpu(tallies.RxDiscards_WEPICVError) +
1183 le16_to_cpu(tallies.RxDiscards_WEPExcluded);
1184 wstats->discard.misc +=
1185 le16_to_cpu(tallies.TxDiscardsWrongSA);
1186 wstats->discard.fragment +=
1187 le16_to_cpu(tallies.RxMsgInBadMsgFragments);
1188 wstats->discard.retries +=
1189 le16_to_cpu(tallies.TxRetryLimitExceeded);
1190 /* wstats->miss.beacon - no match */
1193 case HERMES_INQ_LINKSTATUS: {
1194 struct hermes_linkstatus linkstatus;
1198 if (priv->iw_mode == IW_MODE_MONITOR)
1201 if (len != sizeof(linkstatus)) {
1202 printk(KERN_WARNING "%s: Unexpected size for linkstatus frame (%d bytes)\n",
1207 err = hermes_bap_pread(hw, IRQ_BAP, &linkstatus, len,
1208 infofid, sizeof(info));
1211 newstatus = le16_to_cpu(linkstatus.linkstatus);
1213 /* Symbol firmware uses "out of range" to signal that
1214 * the hostscan frame can be requested. */
1215 if (newstatus == HERMES_LINKSTATUS_AP_OUT_OF_RANGE &&
1216 priv->firmware_type == FIRMWARE_TYPE_SYMBOL &&
1217 priv->has_hostscan && priv->scan_inprogress) {
1218 hermes_inquire(hw, HERMES_INQ_HOSTSCAN_SYMBOL);
1222 connected = (newstatus == HERMES_LINKSTATUS_CONNECTED)
1223 || (newstatus == HERMES_LINKSTATUS_AP_CHANGE)
1224 || (newstatus == HERMES_LINKSTATUS_AP_IN_RANGE);
1227 netif_carrier_on(dev);
1228 else if (!ignore_disconnect)
1229 netif_carrier_off(dev);
1231 if (newstatus != priv->last_linkstatus) {
1232 priv->last_linkstatus = newstatus;
1233 print_linkstatus(dev, newstatus);
1234 /* The info frame contains only one word which is the
1235 * status (see hermes.h). The status is pretty boring
1236 * in itself, that's why we export the new BSSID...
1238 schedule_work(&priv->wevent_work);
1242 case HERMES_INQ_SCAN:
1243 if (!priv->scan_inprogress && priv->bssid_fixed &&
1244 priv->firmware_type == FIRMWARE_TYPE_INTERSIL) {
1245 schedule_work(&priv->join_work);
1249 case HERMES_INQ_HOSTSCAN:
1250 case HERMES_INQ_HOSTSCAN_SYMBOL: {
1251 /* Result of a scanning. Contains information about
1252 * cells in the vicinity - Jean II */
1253 union iwreq_data wrqu;
1258 printk(KERN_WARNING "%s: Scan results too large (%d bytes)\n",
1263 /* We are a strict producer. If the previous scan results
1264 * have not been consumed, we just have to drop this
1265 * frame. We can't remove the previous results ourselves,
1266 * that would be *very* racy... Jean II */
1267 if (priv->scan_result != NULL) {
1268 printk(KERN_WARNING "%s: Previous scan results not consumed, dropping info frame.\n", dev->name);
1272 /* Allocate buffer for results */
1273 buf = kmalloc(len, GFP_ATOMIC);
1275 /* No memory, so can't printk()... */
1278 /* Read scan data */
1279 err = hermes_bap_pread(hw, IRQ_BAP, (void *) buf, len,
1280 infofid, sizeof(info));
1286 #ifdef ORINOCO_DEBUG
1289 printk(KERN_DEBUG "Scan result [%02X", buf[0]);
1290 for(i = 1; i < (len * 2); i++)
1291 printk(":%02X", buf[i]);
1294 #endif /* ORINOCO_DEBUG */
1296 /* Allow the clients to access the results */
1297 priv->scan_len = len;
1298 priv->scan_result = buf;
1300 /* Send an empty event to user space.
1301 * We don't send the received data on the event because
1302 * it would require us to do complex transcoding, and
1303 * we want to minimise the work done in the irq handler
1304 * Use a request to extract the data - Jean II */
1305 wrqu.data.length = 0;
1306 wrqu.data.flags = 0;
1307 wireless_send_event(dev, SIOCGIWSCAN, &wrqu, NULL);
1310 case HERMES_INQ_SEC_STAT_AGERE:
1311 /* Security status (Agere specific) */
1312 /* Ignore this frame for now */
1313 if (priv->firmware_type == FIRMWARE_TYPE_AGERE)
1317 printk(KERN_DEBUG "%s: Unknown information frame received: "
1318 "type 0x%04x, length %d\n", dev->name, type, len);
1319 /* We don't actually do anything about it */
1324 static void __orinoco_ev_infdrop(struct net_device *dev, hermes_t *hw)
1326 if (net_ratelimit())
1327 printk(KERN_DEBUG "%s: Information frame lost.\n", dev->name);
1330 /********************************************************************/
1331 /* Internal hardware control routines */
1332 /********************************************************************/
1334 int __orinoco_up(struct net_device *dev)
1336 struct orinoco_private *priv = netdev_priv(dev);
1337 struct hermes *hw = &priv->hw;
1340 netif_carrier_off(dev); /* just to make sure */
1342 err = __orinoco_program_rids(dev);
1344 printk(KERN_ERR "%s: Error %d configuring card\n",
1349 /* Fire things up again */
1350 hermes_set_irqmask(hw, ORINOCO_INTEN);
1351 err = hermes_enable_port(hw, 0);
1353 printk(KERN_ERR "%s: Error %d enabling MAC port\n",
1358 netif_start_queue(dev);
1363 int __orinoco_down(struct net_device *dev)
1365 struct orinoco_private *priv = netdev_priv(dev);
1366 struct hermes *hw = &priv->hw;
1369 netif_stop_queue(dev);
1371 if (! priv->hw_unavailable) {
1372 if (! priv->broken_disableport) {
1373 err = hermes_disable_port(hw, 0);
1375 /* Some firmwares (e.g. Intersil 1.3.x) seem
1376 * to have problems disabling the port, oh
1378 printk(KERN_WARNING "%s: Error %d disabling MAC port\n",
1380 priv->broken_disableport = 1;
1383 hermes_set_irqmask(hw, 0);
1384 hermes_write_regn(hw, EVACK, 0xffff);
1387 /* firmware will have to reassociate */
1388 netif_carrier_off(dev);
1389 priv->last_linkstatus = 0xffff;
1394 int orinoco_reinit_firmware(struct net_device *dev)
1396 struct orinoco_private *priv = netdev_priv(dev);
1397 struct hermes *hw = &priv->hw;
1400 err = hermes_init(hw);
1404 err = hermes_allocate(hw, priv->nicbuf_size, &priv->txfid);
1405 if (err == -EIO && priv->nicbuf_size > TX_NICBUF_SIZE_BUG) {
1406 /* Try workaround for old Symbol firmware bug */
1407 printk(KERN_WARNING "%s: firmware ALLOC bug detected "
1408 "(old Symbol firmware?). Trying to work around... ",
1411 priv->nicbuf_size = TX_NICBUF_SIZE_BUG;
1412 err = hermes_allocate(hw, priv->nicbuf_size, &priv->txfid);
1414 printk("failed!\n");
1422 static int __orinoco_hw_set_bitrate(struct orinoco_private *priv)
1424 hermes_t *hw = &priv->hw;
1427 if (priv->bitratemode >= BITRATE_TABLE_SIZE) {
1428 printk(KERN_ERR "%s: BUG: Invalid bitrate mode %d\n",
1429 priv->ndev->name, priv->bitratemode);
1433 switch (priv->firmware_type) {
1434 case FIRMWARE_TYPE_AGERE:
1435 err = hermes_write_wordrec(hw, USER_BAP,
1436 HERMES_RID_CNFTXRATECONTROL,
1437 bitrate_table[priv->bitratemode].agere_txratectrl);
1439 case FIRMWARE_TYPE_INTERSIL:
1440 case FIRMWARE_TYPE_SYMBOL:
1441 err = hermes_write_wordrec(hw, USER_BAP,
1442 HERMES_RID_CNFTXRATECONTROL,
1443 bitrate_table[priv->bitratemode].intersil_txratectrl);
1452 /* Set fixed AP address */
1453 static int __orinoco_hw_set_wap(struct orinoco_private *priv)
1457 hermes_t *hw = &priv->hw;
1459 switch (priv->firmware_type) {
1460 case FIRMWARE_TYPE_AGERE:
1463 case FIRMWARE_TYPE_INTERSIL:
1464 if (priv->bssid_fixed)
1469 err = hermes_write_wordrec(hw, USER_BAP,
1470 HERMES_RID_CNFROAMINGMODE,
1473 case FIRMWARE_TYPE_SYMBOL:
1474 err = HERMES_WRITE_RECORD(hw, USER_BAP,
1475 HERMES_RID_CNFMANDATORYBSSID_SYMBOL,
1476 &priv->desired_bssid);
1482 /* Change the WEP keys and/or the current keys. Can be called
1483 * either from __orinoco_hw_setup_wep() or directly from
1484 * orinoco_ioctl_setiwencode(). In the later case the association
1485 * with the AP is not broken (if the firmware can handle it),
1486 * which is needed for 802.1x implementations. */
1487 static int __orinoco_hw_setup_wepkeys(struct orinoco_private *priv)
1489 hermes_t *hw = &priv->hw;
1492 switch (priv->firmware_type) {
1493 case FIRMWARE_TYPE_AGERE:
1494 err = HERMES_WRITE_RECORD(hw, USER_BAP,
1495 HERMES_RID_CNFWEPKEYS_AGERE,
1499 err = hermes_write_wordrec(hw, USER_BAP,
1500 HERMES_RID_CNFTXKEY_AGERE,
1505 case FIRMWARE_TYPE_INTERSIL:
1506 case FIRMWARE_TYPE_SYMBOL:
1511 /* Force uniform key length to work around firmware bugs */
1512 keylen = le16_to_cpu(priv->keys[priv->tx_key].len);
1514 if (keylen > LARGE_KEY_SIZE) {
1515 printk(KERN_ERR "%s: BUG: Key %d has oversize length %d.\n",
1516 priv->ndev->name, priv->tx_key, keylen);
1520 /* Write all 4 keys */
1521 for(i = 0; i < ORINOCO_MAX_KEYS; i++) {
1522 err = hermes_write_ltv(hw, USER_BAP,
1523 HERMES_RID_CNFDEFAULTKEY0 + i,
1524 HERMES_BYTES_TO_RECLEN(keylen),
1525 priv->keys[i].data);
1530 /* Write the index of the key used in transmission */
1531 err = hermes_write_wordrec(hw, USER_BAP,
1532 HERMES_RID_CNFWEPDEFAULTKEYID,
1543 static int __orinoco_hw_setup_wep(struct orinoco_private *priv)
1545 hermes_t *hw = &priv->hw;
1547 int master_wep_flag;
1551 __orinoco_hw_setup_wepkeys(priv);
1553 if (priv->wep_restrict)
1554 auth_flag = HERMES_AUTH_SHARED_KEY;
1556 auth_flag = HERMES_AUTH_OPEN;
1558 switch (priv->firmware_type) {
1559 case FIRMWARE_TYPE_AGERE: /* Agere style WEP */
1561 /* Enable the shared-key authentication. */
1562 err = hermes_write_wordrec(hw, USER_BAP,
1563 HERMES_RID_CNFAUTHENTICATION_AGERE,
1566 err = hermes_write_wordrec(hw, USER_BAP,
1567 HERMES_RID_CNFWEPENABLED_AGERE,
1573 case FIRMWARE_TYPE_INTERSIL: /* Intersil style WEP */
1574 case FIRMWARE_TYPE_SYMBOL: /* Symbol style WEP */
1576 if (priv->wep_restrict ||
1577 (priv->firmware_type == FIRMWARE_TYPE_SYMBOL))
1578 master_wep_flag = HERMES_WEP_PRIVACY_INVOKED |
1579 HERMES_WEP_EXCL_UNENCRYPTED;
1581 master_wep_flag = HERMES_WEP_PRIVACY_INVOKED;
1583 err = hermes_write_wordrec(hw, USER_BAP,
1584 HERMES_RID_CNFAUTHENTICATION,
1589 master_wep_flag = 0;
1591 if (priv->iw_mode == IW_MODE_MONITOR)
1592 master_wep_flag |= HERMES_WEP_HOST_DECRYPT;
1594 /* Master WEP setting : on/off */
1595 err = hermes_write_wordrec(hw, USER_BAP,
1596 HERMES_RID_CNFWEPFLAGS_INTERSIL,
1607 static int __orinoco_program_rids(struct net_device *dev)
1609 struct orinoco_private *priv = netdev_priv(dev);
1610 hermes_t *hw = &priv->hw;
1612 struct hermes_idstring idbuf;
1614 /* Set the MAC address */
1615 err = hermes_write_ltv(hw, USER_BAP, HERMES_RID_CNFOWNMACADDR,
1616 HERMES_BYTES_TO_RECLEN(ETH_ALEN), dev->dev_addr);
1618 printk(KERN_ERR "%s: Error %d setting MAC address\n",
1623 /* Set up the link mode */
1624 err = hermes_write_wordrec(hw, USER_BAP, HERMES_RID_CNFPORTTYPE,
1627 printk(KERN_ERR "%s: Error %d setting port type\n",
1631 /* Set the channel/frequency */
1632 if (priv->channel != 0 && priv->iw_mode != IW_MODE_INFRA) {
1633 err = hermes_write_wordrec(hw, USER_BAP,
1634 HERMES_RID_CNFOWNCHANNEL,
1637 printk(KERN_ERR "%s: Error %d setting channel %d\n",
1638 dev->name, err, priv->channel);
1643 if (priv->has_ibss) {
1646 if ((strlen(priv->desired_essid) == 0) && (priv->createibss)) {
1647 printk(KERN_WARNING "%s: This firmware requires an "
1648 "ESSID in IBSS-Ad-Hoc mode.\n", dev->name);
1649 /* With wvlan_cs, in this case, we would crash.
1650 * hopefully, this driver will behave better...
1654 createibss = priv->createibss;
1657 err = hermes_write_wordrec(hw, USER_BAP,
1658 HERMES_RID_CNFCREATEIBSS,
1661 printk(KERN_ERR "%s: Error %d setting CREATEIBSS\n",
1667 /* Set the desired BSSID */
1668 err = __orinoco_hw_set_wap(priv);
1670 printk(KERN_ERR "%s: Error %d setting AP address\n",
1674 /* Set the desired ESSID */
1675 idbuf.len = cpu_to_le16(strlen(priv->desired_essid));
1676 memcpy(&idbuf.val, priv->desired_essid, sizeof(idbuf.val));
1677 /* WinXP wants partner to configure OWNSSID even in IBSS mode. (jimc) */
1678 err = hermes_write_ltv(hw, USER_BAP, HERMES_RID_CNFOWNSSID,
1679 HERMES_BYTES_TO_RECLEN(strlen(priv->desired_essid)+2),
1682 printk(KERN_ERR "%s: Error %d setting OWNSSID\n",
1686 err = hermes_write_ltv(hw, USER_BAP, HERMES_RID_CNFDESIREDSSID,
1687 HERMES_BYTES_TO_RECLEN(strlen(priv->desired_essid)+2),
1690 printk(KERN_ERR "%s: Error %d setting DESIREDSSID\n",
1695 /* Set the station name */
1696 idbuf.len = cpu_to_le16(strlen(priv->nick));
1697 memcpy(&idbuf.val, priv->nick, sizeof(idbuf.val));
1698 err = hermes_write_ltv(hw, USER_BAP, HERMES_RID_CNFOWNNAME,
1699 HERMES_BYTES_TO_RECLEN(strlen(priv->nick)+2),
1702 printk(KERN_ERR "%s: Error %d setting nickname\n",
1707 /* Set AP density */
1708 if (priv->has_sensitivity) {
1709 err = hermes_write_wordrec(hw, USER_BAP,
1710 HERMES_RID_CNFSYSTEMSCALE,
1713 printk(KERN_WARNING "%s: Error %d setting SYSTEMSCALE. "
1714 "Disabling sensitivity control\n",
1717 priv->has_sensitivity = 0;
1721 /* Set RTS threshold */
1722 err = hermes_write_wordrec(hw, USER_BAP, HERMES_RID_CNFRTSTHRESHOLD,
1725 printk(KERN_ERR "%s: Error %d setting RTS threshold\n",
1730 /* Set fragmentation threshold or MWO robustness */
1732 err = hermes_write_wordrec(hw, USER_BAP,
1733 HERMES_RID_CNFMWOROBUST_AGERE,
1736 err = hermes_write_wordrec(hw, USER_BAP,
1737 HERMES_RID_CNFFRAGMENTATIONTHRESHOLD,
1740 printk(KERN_ERR "%s: Error %d setting fragmentation\n",
1746 err = __orinoco_hw_set_bitrate(priv);
1748 printk(KERN_ERR "%s: Error %d setting bitrate\n",
1753 /* Set power management */
1755 err = hermes_write_wordrec(hw, USER_BAP,
1756 HERMES_RID_CNFPMENABLED,
1759 printk(KERN_ERR "%s: Error %d setting up PM\n",
1764 err = hermes_write_wordrec(hw, USER_BAP,
1765 HERMES_RID_CNFMULTICASTRECEIVE,
1768 printk(KERN_ERR "%s: Error %d setting up PM\n",
1772 err = hermes_write_wordrec(hw, USER_BAP,
1773 HERMES_RID_CNFMAXSLEEPDURATION,
1776 printk(KERN_ERR "%s: Error %d setting up PM\n",
1780 err = hermes_write_wordrec(hw, USER_BAP,
1781 HERMES_RID_CNFPMHOLDOVERDURATION,
1784 printk(KERN_ERR "%s: Error %d setting up PM\n",
1790 /* Set preamble - only for Symbol so far... */
1791 if (priv->has_preamble) {
1792 err = hermes_write_wordrec(hw, USER_BAP,
1793 HERMES_RID_CNFPREAMBLE_SYMBOL,
1796 printk(KERN_ERR "%s: Error %d setting preamble\n",
1802 /* Set up encryption */
1803 if (priv->has_wep) {
1804 err = __orinoco_hw_setup_wep(priv);
1806 printk(KERN_ERR "%s: Error %d activating WEP\n",
1812 if (priv->iw_mode == IW_MODE_MONITOR) {
1813 /* Enable monitor mode */
1814 dev->type = ARPHRD_IEEE80211;
1815 err = hermes_docmd_wait(hw, HERMES_CMD_TEST |
1816 HERMES_TEST_MONITOR, 0, NULL);
1818 /* Disable monitor mode */
1819 dev->type = ARPHRD_ETHER;
1820 err = hermes_docmd_wait(hw, HERMES_CMD_TEST |
1821 HERMES_TEST_STOP, 0, NULL);
1826 /* Set promiscuity / multicast*/
1827 priv->promiscuous = 0;
1829 __orinoco_set_multicast_list(dev); /* FIXME: what about the xmit_lock */
1834 /* FIXME: return int? */
1836 __orinoco_set_multicast_list(struct net_device *dev)
1838 struct orinoco_private *priv = netdev_priv(dev);
1839 hermes_t *hw = &priv->hw;
1841 int promisc, mc_count;
1843 /* The Hermes doesn't seem to have an allmulti mode, so we go
1844 * into promiscuous mode and let the upper levels deal. */
1845 if ( (dev->flags & IFF_PROMISC) || (dev->flags & IFF_ALLMULTI) ||
1846 (dev->mc_count > MAX_MULTICAST(priv)) ) {
1851 mc_count = dev->mc_count;
1854 if (promisc != priv->promiscuous) {
1855 err = hermes_write_wordrec(hw, USER_BAP,
1856 HERMES_RID_CNFPROMISCUOUSMODE,
1859 printk(KERN_ERR "%s: Error %d setting PROMISCUOUSMODE to 1.\n",
1862 priv->promiscuous = promisc;
1865 if (! promisc && (mc_count || priv->mc_count) ) {
1866 struct dev_mc_list *p = dev->mc_list;
1867 struct hermes_multicast mclist;
1870 for (i = 0; i < mc_count; i++) {
1871 /* paranoia: is list shorter than mc_count? */
1873 /* paranoia: bad address size in list? */
1874 BUG_ON(p->dmi_addrlen != ETH_ALEN);
1876 memcpy(mclist.addr[i], p->dmi_addr, ETH_ALEN);
1881 printk(KERN_WARNING "%s: Multicast list is "
1882 "longer than mc_count\n", dev->name);
1884 err = hermes_write_ltv(hw, USER_BAP, HERMES_RID_CNFGROUPADDRESSES,
1885 HERMES_BYTES_TO_RECLEN(priv->mc_count * ETH_ALEN),
1888 printk(KERN_ERR "%s: Error %d setting multicast list.\n",
1891 priv->mc_count = mc_count;
1894 /* Since we can set the promiscuous flag when it wasn't asked
1895 for, make sure the net_device knows about it. */
1896 if (priv->promiscuous)
1897 dev->flags |= IFF_PROMISC;
1899 dev->flags &= ~IFF_PROMISC;
1902 /* This must be called from user context, without locks held - use
1903 * schedule_work() */
1904 static void orinoco_reset(struct net_device *dev)
1906 struct orinoco_private *priv = netdev_priv(dev);
1907 struct hermes *hw = &priv->hw;
1909 unsigned long flags;
1911 if (orinoco_lock(priv, &flags) != 0)
1912 /* When the hardware becomes available again, whatever
1913 * detects that is responsible for re-initializing
1914 * it. So no need for anything further */
1917 netif_stop_queue(dev);
1919 /* Shut off interrupts. Depending on what state the hardware
1920 * is in, this might not work, but we'll try anyway */
1921 hermes_set_irqmask(hw, 0);
1922 hermes_write_regn(hw, EVACK, 0xffff);
1924 priv->hw_unavailable++;
1925 priv->last_linkstatus = 0xffff; /* firmware will have to reassociate */
1926 netif_carrier_off(dev);
1928 orinoco_unlock(priv, &flags);
1930 /* Scanning support: Cleanup of driver struct */
1931 kfree(priv->scan_result);
1932 priv->scan_result = NULL;
1933 priv->scan_inprogress = 0;
1935 if (priv->hard_reset) {
1936 err = (*priv->hard_reset)(priv);
1938 printk(KERN_ERR "%s: orinoco_reset: Error %d "
1939 "performing hard reset\n", dev->name, err);
1944 err = orinoco_reinit_firmware(dev);
1946 printk(KERN_ERR "%s: orinoco_reset: Error %d re-initializing firmware\n",
1951 spin_lock_irq(&priv->lock); /* This has to be called from user context */
1953 priv->hw_unavailable--;
1955 /* priv->open or priv->hw_unavailable might have changed while
1956 * we dropped the lock */
1957 if (priv->open && (! priv->hw_unavailable)) {
1958 err = __orinoco_up(dev);
1960 printk(KERN_ERR "%s: orinoco_reset: Error %d reenabling card\n",
1963 dev->trans_start = jiffies;
1966 spin_unlock_irq(&priv->lock);
1970 hermes_set_irqmask(hw, 0);
1971 netif_device_detach(dev);
1972 printk(KERN_ERR "%s: Device has been disabled!\n", dev->name);
1975 /********************************************************************/
1976 /* Interrupt handler */
1977 /********************************************************************/
1979 static void __orinoco_ev_tick(struct net_device *dev, hermes_t *hw)
1981 printk(KERN_DEBUG "%s: TICK\n", dev->name);
1984 static void __orinoco_ev_wterr(struct net_device *dev, hermes_t *hw)
1986 /* This seems to happen a fair bit under load, but ignoring it
1987 seems to work fine...*/
1988 printk(KERN_DEBUG "%s: MAC controller error (WTERR). Ignoring.\n",
1992 irqreturn_t orinoco_interrupt(int irq, void *dev_id, struct pt_regs *regs)
1994 struct net_device *dev = (struct net_device *)dev_id;
1995 struct orinoco_private *priv = netdev_priv(dev);
1996 hermes_t *hw = &priv->hw;
1997 int count = MAX_IRQLOOPS_PER_IRQ;
1999 /* These are used to detect a runaway interrupt situation */
2000 /* If we get more than MAX_IRQLOOPS_PER_JIFFY iterations in a jiffy,
2001 * we panic and shut down the hardware */
2002 static int last_irq_jiffy = 0; /* jiffies value the last time
2004 static int loops_this_jiffy = 0;
2005 unsigned long flags;
2007 if (orinoco_lock(priv, &flags) != 0) {
2008 /* If hw is unavailable - we don't know if the irq was
2013 evstat = hermes_read_regn(hw, EVSTAT);
2014 events = evstat & hw->inten;
2016 orinoco_unlock(priv, &flags);
2020 if (jiffies != last_irq_jiffy)
2021 loops_this_jiffy = 0;
2022 last_irq_jiffy = jiffies;
2024 while (events && count--) {
2025 if (++loops_this_jiffy > MAX_IRQLOOPS_PER_JIFFY) {
2026 printk(KERN_WARNING "%s: IRQ handler is looping too "
2027 "much! Resetting.\n", dev->name);
2028 /* Disable interrupts for now */
2029 hermes_set_irqmask(hw, 0);
2030 schedule_work(&priv->reset_work);
2034 /* Check the card hasn't been removed */
2035 if (! hermes_present(hw)) {
2036 DEBUG(0, "orinoco_interrupt(): card removed\n");
2040 if (events & HERMES_EV_TICK)
2041 __orinoco_ev_tick(dev, hw);
2042 if (events & HERMES_EV_WTERR)
2043 __orinoco_ev_wterr(dev, hw);
2044 if (events & HERMES_EV_INFDROP)
2045 __orinoco_ev_infdrop(dev, hw);
2046 if (events & HERMES_EV_INFO)
2047 __orinoco_ev_info(dev, hw);
2048 if (events & HERMES_EV_RX)
2049 __orinoco_ev_rx(dev, hw);
2050 if (events & HERMES_EV_TXEXC)
2051 __orinoco_ev_txexc(dev, hw);
2052 if (events & HERMES_EV_TX)
2053 __orinoco_ev_tx(dev, hw);
2054 if (events & HERMES_EV_ALLOC)
2055 __orinoco_ev_alloc(dev, hw);
2057 hermes_write_regn(hw, EVACK, evstat);
2059 evstat = hermes_read_regn(hw, EVSTAT);
2060 events = evstat & hw->inten;
2063 orinoco_unlock(priv, &flags);
2067 /********************************************************************/
2068 /* Initialization */
2069 /********************************************************************/
2072 u16 id, variant, major, minor;
2073 } __attribute__ ((packed));
2075 static inline fwtype_t determine_firmware_type(struct comp_id *nic_id)
2077 if (nic_id->id < 0x8000)
2078 return FIRMWARE_TYPE_AGERE;
2079 else if (nic_id->id == 0x8000 && nic_id->major == 0)
2080 return FIRMWARE_TYPE_SYMBOL;
2082 return FIRMWARE_TYPE_INTERSIL;
2085 /* Set priv->firmware type, determine firmware properties */
2086 static int determine_firmware(struct net_device *dev)
2088 struct orinoco_private *priv = netdev_priv(dev);
2089 hermes_t *hw = &priv->hw;
2091 struct comp_id nic_id, sta_id;
2092 unsigned int firmver;
2093 char tmp[SYMBOL_MAX_VER_LEN+1];
2095 /* Get the hardware version */
2096 err = HERMES_READ_RECORD(hw, USER_BAP, HERMES_RID_NICID, &nic_id);
2098 printk(KERN_ERR "%s: Cannot read hardware identity: error %d\n",
2103 le16_to_cpus(&nic_id.id);
2104 le16_to_cpus(&nic_id.variant);
2105 le16_to_cpus(&nic_id.major);
2106 le16_to_cpus(&nic_id.minor);
2107 printk(KERN_DEBUG "%s: Hardware identity %04x:%04x:%04x:%04x\n",
2108 dev->name, nic_id.id, nic_id.variant,
2109 nic_id.major, nic_id.minor);
2111 priv->firmware_type = determine_firmware_type(&nic_id);
2113 /* Get the firmware version */
2114 err = HERMES_READ_RECORD(hw, USER_BAP, HERMES_RID_STAID, &sta_id);
2116 printk(KERN_ERR "%s: Cannot read station identity: error %d\n",
2121 le16_to_cpus(&sta_id.id);
2122 le16_to_cpus(&sta_id.variant);
2123 le16_to_cpus(&sta_id.major);
2124 le16_to_cpus(&sta_id.minor);
2125 printk(KERN_DEBUG "%s: Station identity %04x:%04x:%04x:%04x\n",
2126 dev->name, sta_id.id, sta_id.variant,
2127 sta_id.major, sta_id.minor);
2129 switch (sta_id.id) {
2131 printk(KERN_ERR "%s: Primary firmware is active\n",
2135 printk(KERN_ERR "%s: Tertiary firmware is active\n",
2138 case 0x1f: /* Intersil, Agere, Symbol Spectrum24 */
2139 case 0x21: /* Symbol Spectrum24 Trilogy */
2142 printk(KERN_NOTICE "%s: Unknown station ID, please report\n",
2147 /* Default capabilities */
2148 priv->has_sensitivity = 1;
2150 priv->has_preamble = 0;
2151 priv->has_port3 = 1;
2154 priv->has_big_wep = 0;
2156 /* Determine capabilities from the firmware version */
2157 switch (priv->firmware_type) {
2158 case FIRMWARE_TYPE_AGERE:
2159 /* Lucent Wavelan IEEE, Lucent Orinoco, Cabletron RoamAbout,
2160 ELSA, Melco, HP, IBM, Dell 1150, Compaq 110/210 */
2161 snprintf(priv->fw_name, sizeof(priv->fw_name) - 1,
2162 "Lucent/Agere %d.%02d", sta_id.major, sta_id.minor);
2164 firmver = ((unsigned long)sta_id.major << 16) | sta_id.minor;
2166 priv->has_ibss = (firmver >= 0x60006);
2167 priv->has_wep = (firmver >= 0x40020);
2168 priv->has_big_wep = 1; /* FIXME: this is wrong - how do we tell
2169 Gold cards from the others? */
2170 priv->has_mwo = (firmver >= 0x60000);
2171 priv->has_pm = (firmver >= 0x40020); /* Don't work in 7.52 ? */
2172 priv->ibss_port = 1;
2173 priv->has_hostscan = (firmver >= 0x8000a);
2174 priv->broken_monitor = (firmver >= 0x80000);
2176 /* Tested with Agere firmware :
2177 * 1.16 ; 4.08 ; 4.52 ; 6.04 ; 6.16 ; 7.28 => Jean II
2178 * Tested CableTron firmware : 4.32 => Anton */
2180 case FIRMWARE_TYPE_SYMBOL:
2181 /* Symbol , 3Com AirConnect, Intel, Ericsson WLAN */
2182 /* Intel MAC : 00:02:B3:* */
2183 /* 3Com MAC : 00:50:DA:* */
2184 memset(tmp, 0, sizeof(tmp));
2185 /* Get the Symbol firmware version */
2186 err = hermes_read_ltv(hw, USER_BAP,
2187 HERMES_RID_SECONDARYVERSION_SYMBOL,
2188 SYMBOL_MAX_VER_LEN, NULL, &tmp);
2191 "%s: Error %d reading Symbol firmware info. Wildly guessing capabilities...\n",
2196 /* The firmware revision is a string, the format is
2197 * something like : "V2.20-01".
2198 * Quick and dirty parsing... - Jean II
2200 firmver = ((tmp[1] - '0') << 16) | ((tmp[3] - '0') << 12)
2201 | ((tmp[4] - '0') << 8) | ((tmp[6] - '0') << 4)
2204 tmp[SYMBOL_MAX_VER_LEN] = '\0';
2207 snprintf(priv->fw_name, sizeof(priv->fw_name) - 1,
2210 priv->has_ibss = (firmver >= 0x20000);
2211 priv->has_wep = (firmver >= 0x15012);
2212 priv->has_big_wep = (firmver >= 0x20000);
2213 priv->has_pm = (firmver >= 0x20000 && firmver < 0x22000) ||
2214 (firmver >= 0x29000 && firmver < 0x30000) ||
2216 priv->has_preamble = (firmver >= 0x20000);
2217 priv->ibss_port = 4;
2218 priv->broken_disableport = (firmver == 0x25013) ||
2219 (firmver >= 0x30000 && firmver <= 0x31000);
2220 priv->has_hostscan = (firmver >= 0x31001) ||
2221 (firmver >= 0x29057 && firmver < 0x30000);
2222 /* Tested with Intel firmware : 0x20015 => Jean II */
2223 /* Tested with 3Com firmware : 0x15012 & 0x22001 => Jean II */
2225 case FIRMWARE_TYPE_INTERSIL:
2226 /* D-Link, Linksys, Adtron, ZoomAir, and many others...
2227 * Samsung, Compaq 100/200 and Proxim are slightly
2228 * different and less well tested */
2229 /* D-Link MAC : 00:40:05:* */
2230 /* Addtron MAC : 00:90:D1:* */
2231 snprintf(priv->fw_name, sizeof(priv->fw_name) - 1,
2232 "Intersil %d.%d.%d", sta_id.major, sta_id.minor,
2235 firmver = ((unsigned long)sta_id.major << 16) |
2236 ((unsigned long)sta_id.minor << 8) | sta_id.variant;
2238 priv->has_ibss = (firmver >= 0x000700); /* FIXME */
2239 priv->has_big_wep = priv->has_wep = (firmver >= 0x000800);
2240 priv->has_pm = (firmver >= 0x000700);
2241 priv->has_hostscan = (firmver >= 0x010301);
2243 if (firmver >= 0x000800)
2244 priv->ibss_port = 0;
2246 printk(KERN_NOTICE "%s: Intersil firmware earlier "
2247 "than v0.8.x - several features not supported\n",
2249 priv->ibss_port = 1;
2253 printk(KERN_DEBUG "%s: Firmware determined as %s\n", dev->name,
2259 static int orinoco_init(struct net_device *dev)
2261 struct orinoco_private *priv = netdev_priv(dev);
2262 hermes_t *hw = &priv->hw;
2264 struct hermes_idstring nickbuf;
2268 TRACE_ENTER(dev->name);
2270 /* No need to lock, the hw_unavailable flag is already set in
2271 * alloc_orinocodev() */
2272 priv->nicbuf_size = IEEE80211_FRAME_LEN + ETH_HLEN;
2274 /* Initialize the firmware */
2275 err = orinoco_reinit_firmware(dev);
2277 printk(KERN_ERR "%s: failed to initialize firmware (err = %d)\n",
2282 err = determine_firmware(dev);
2284 printk(KERN_ERR "%s: Incompatible firmware, aborting\n",
2289 if (priv->has_port3)
2290 printk(KERN_DEBUG "%s: Ad-hoc demo mode supported\n", dev->name);
2292 printk(KERN_DEBUG "%s: IEEE standard IBSS ad-hoc mode supported\n",
2294 if (priv->has_wep) {
2295 printk(KERN_DEBUG "%s: WEP supported, ", dev->name);
2296 if (priv->has_big_wep)
2297 printk("104-bit key\n");
2299 printk("40-bit key\n");
2302 /* Get the MAC address */
2303 err = hermes_read_ltv(hw, USER_BAP, HERMES_RID_CNFOWNMACADDR,
2304 ETH_ALEN, NULL, dev->dev_addr);
2306 printk(KERN_WARNING "%s: failed to read MAC address!\n",
2311 printk(KERN_DEBUG "%s: MAC address %02X:%02X:%02X:%02X:%02X:%02X\n",
2312 dev->name, dev->dev_addr[0], dev->dev_addr[1],
2313 dev->dev_addr[2], dev->dev_addr[3], dev->dev_addr[4],
2316 /* Get the station name */
2317 err = hermes_read_ltv(hw, USER_BAP, HERMES_RID_CNFOWNNAME,
2318 sizeof(nickbuf), &reclen, &nickbuf);
2320 printk(KERN_ERR "%s: failed to read station name\n",
2325 len = min(IW_ESSID_MAX_SIZE, (int)le16_to_cpu(nickbuf.len));
2327 len = min(IW_ESSID_MAX_SIZE, 2 * reclen);
2328 memcpy(priv->nick, &nickbuf.val, len);
2329 priv->nick[len] = '\0';
2331 printk(KERN_DEBUG "%s: Station name \"%s\"\n", dev->name, priv->nick);
2333 /* Get allowed channels */
2334 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CHANNELLIST,
2335 &priv->channel_mask);
2337 printk(KERN_ERR "%s: failed to read channel list!\n",
2342 /* Get initial AP density */
2343 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFSYSTEMSCALE,
2345 if (err || priv->ap_density < 1 || priv->ap_density > 3) {
2346 priv->has_sensitivity = 0;
2349 /* Get initial RTS threshold */
2350 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFRTSTHRESHOLD,
2353 printk(KERN_ERR "%s: failed to read RTS threshold!\n",
2358 /* Get initial fragmentation settings */
2360 err = hermes_read_wordrec(hw, USER_BAP,
2361 HERMES_RID_CNFMWOROBUST_AGERE,
2364 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFFRAGMENTATIONTHRESHOLD,
2365 &priv->frag_thresh);
2367 printk(KERN_ERR "%s: failed to read fragmentation settings!\n",
2372 /* Power management setup */
2376 err = hermes_read_wordrec(hw, USER_BAP,
2377 HERMES_RID_CNFMAXSLEEPDURATION,
2380 printk(KERN_ERR "%s: failed to read power management period!\n",
2384 err = hermes_read_wordrec(hw, USER_BAP,
2385 HERMES_RID_CNFPMHOLDOVERDURATION,
2388 printk(KERN_ERR "%s: failed to read power management timeout!\n",
2394 /* Preamble setup */
2395 if (priv->has_preamble) {
2396 err = hermes_read_wordrec(hw, USER_BAP,
2397 HERMES_RID_CNFPREAMBLE_SYMBOL,
2403 /* Set up the default configuration */
2404 priv->iw_mode = IW_MODE_INFRA;
2405 /* By default use IEEE/IBSS ad-hoc mode if we have it */
2406 priv->prefer_port3 = priv->has_port3 && (! priv->has_ibss);
2407 set_port_type(priv);
2408 priv->channel = 0; /* use firmware default */
2410 priv->promiscuous = 0;
2414 /* Make the hardware available, as long as it hasn't been
2415 * removed elsewhere (e.g. by PCMCIA hot unplug) */
2416 spin_lock_irq(&priv->lock);
2417 priv->hw_unavailable--;
2418 spin_unlock_irq(&priv->lock);
2420 printk(KERN_DEBUG "%s: ready\n", dev->name);
2423 TRACE_EXIT(dev->name);
2427 struct net_device *alloc_orinocodev(int sizeof_card,
2428 int (*hard_reset)(struct orinoco_private *))
2430 struct net_device *dev;
2431 struct orinoco_private *priv;
2433 dev = alloc_etherdev(sizeof(struct orinoco_private) + sizeof_card);
2436 priv = netdev_priv(dev);
2439 priv->card = (void *)((unsigned long)priv
2440 + sizeof(struct orinoco_private));
2444 /* Setup / override net_device fields */
2445 dev->init = orinoco_init;
2446 dev->hard_start_xmit = orinoco_xmit;
2447 dev->tx_timeout = orinoco_tx_timeout;
2448 dev->watchdog_timeo = HZ; /* 1 second timeout */
2449 dev->get_stats = orinoco_get_stats;
2450 dev->ethtool_ops = &orinoco_ethtool_ops;
2451 dev->wireless_handlers = (struct iw_handler_def *)&orinoco_handler_def;
2453 priv->wireless_data.spy_data = &priv->spy_data;
2454 dev->wireless_data = &priv->wireless_data;
2456 dev->change_mtu = orinoco_change_mtu;
2457 dev->set_multicast_list = orinoco_set_multicast_list;
2458 /* we use the default eth_mac_addr for setting the MAC addr */
2460 /* Set up default callbacks */
2461 dev->open = orinoco_open;
2462 dev->stop = orinoco_stop;
2463 priv->hard_reset = hard_reset;
2465 spin_lock_init(&priv->lock);
2467 priv->hw_unavailable = 1; /* orinoco_init() must clear this
2468 * before anything else touches the
2470 INIT_WORK(&priv->reset_work, (void (*)(void *))orinoco_reset, dev);
2471 INIT_WORK(&priv->join_work, (void (*)(void *))orinoco_join_ap, dev);
2472 INIT_WORK(&priv->wevent_work, (void (*)(void *))orinoco_send_wevents, dev);
2474 netif_carrier_off(dev);
2475 priv->last_linkstatus = 0xffff;
2481 void free_orinocodev(struct net_device *dev)
2483 struct orinoco_private *priv = netdev_priv(dev);
2485 kfree(priv->scan_result);
2489 /********************************************************************/
2490 /* Wireless extensions */
2491 /********************************************************************/
2493 static int orinoco_hw_get_essid(struct orinoco_private *priv, int *active,
2494 char buf[IW_ESSID_MAX_SIZE+1])
2496 hermes_t *hw = &priv->hw;
2498 struct hermes_idstring essidbuf;
2499 char *p = (char *)(&essidbuf.val);
2501 unsigned long flags;
2503 if (orinoco_lock(priv, &flags) != 0)
2506 if (strlen(priv->desired_essid) > 0) {
2507 /* We read the desired SSID from the hardware rather
2508 than from priv->desired_essid, just in case the
2509 firmware is allowed to change it on us. I'm not
2511 /* My guess is that the OWNSSID should always be whatever
2512 * we set to the card, whereas CURRENT_SSID is the one that
2513 * may change... - Jean II */
2518 rid = (priv->port_type == 3) ? HERMES_RID_CNFOWNSSID :
2519 HERMES_RID_CNFDESIREDSSID;
2521 err = hermes_read_ltv(hw, USER_BAP, rid, sizeof(essidbuf),
2528 err = hermes_read_ltv(hw, USER_BAP, HERMES_RID_CURRENTSSID,
2529 sizeof(essidbuf), NULL, &essidbuf);
2534 len = le16_to_cpu(essidbuf.len);
2535 BUG_ON(len > IW_ESSID_MAX_SIZE);
2537 memset(buf, 0, IW_ESSID_MAX_SIZE+1);
2538 memcpy(buf, p, len);
2542 orinoco_unlock(priv, &flags);
2547 static long orinoco_hw_get_freq(struct orinoco_private *priv)
2550 hermes_t *hw = &priv->hw;
2554 unsigned long flags;
2556 if (orinoco_lock(priv, &flags) != 0)
2559 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CURRENTCHANNEL, &channel);
2563 /* Intersil firmware 1.3.5 returns 0 when the interface is down */
2569 if ( (channel < 1) || (channel > NUM_CHANNELS) ) {
2570 printk(KERN_WARNING "%s: Channel out of range (%d)!\n",
2571 priv->ndev->name, channel);
2576 freq = channel_frequency[channel-1] * 100000;
2579 orinoco_unlock(priv, &flags);
2583 return err ? err : freq;
2586 static int orinoco_hw_get_bitratelist(struct orinoco_private *priv,
2587 int *numrates, s32 *rates, int max)
2589 hermes_t *hw = &priv->hw;
2590 struct hermes_idstring list;
2591 unsigned char *p = (unsigned char *)&list.val;
2595 unsigned long flags;
2597 if (orinoco_lock(priv, &flags) != 0)
2600 err = hermes_read_ltv(hw, USER_BAP, HERMES_RID_SUPPORTEDDATARATES,
2601 sizeof(list), NULL, &list);
2602 orinoco_unlock(priv, &flags);
2607 num = le16_to_cpu(list.len);
2609 num = min(num, max);
2611 for (i = 0; i < num; i++) {
2612 rates[i] = (p[i] & 0x7f) * 500000; /* convert to bps */
2618 static int orinoco_ioctl_getname(struct net_device *dev,
2619 struct iw_request_info *info,
2623 struct orinoco_private *priv = netdev_priv(dev);
2627 err = orinoco_hw_get_bitratelist(priv, &numrates, NULL, 0);
2629 if (!err && (numrates > 2))
2630 strcpy(name, "IEEE 802.11b");
2632 strcpy(name, "IEEE 802.11-DS");
2637 static int orinoco_ioctl_setwap(struct net_device *dev,
2638 struct iw_request_info *info,
2639 struct sockaddr *ap_addr,
2642 struct orinoco_private *priv = netdev_priv(dev);
2643 int err = -EINPROGRESS; /* Call commit handler */
2644 unsigned long flags;
2645 static const u8 off_addr[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
2646 static const u8 any_addr[] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
2648 if (orinoco_lock(priv, &flags) != 0)
2651 /* Enable automatic roaming - no sanity checks are needed */
2652 if (memcmp(&ap_addr->sa_data, off_addr, ETH_ALEN) == 0 ||
2653 memcmp(&ap_addr->sa_data, any_addr, ETH_ALEN) == 0) {
2654 priv->bssid_fixed = 0;
2655 memset(priv->desired_bssid, 0, ETH_ALEN);
2657 /* "off" means keep existing connection */
2658 if (ap_addr->sa_data[0] == 0) {
2659 __orinoco_hw_set_wap(priv);
2665 if (priv->firmware_type == FIRMWARE_TYPE_AGERE) {
2666 printk(KERN_WARNING "%s: Lucent/Agere firmware doesn't "
2667 "support manual roaming\n",
2673 if (priv->iw_mode != IW_MODE_INFRA) {
2674 printk(KERN_WARNING "%s: Manual roaming supported only in "
2675 "managed mode\n", dev->name);
2680 /* Intersil firmware hangs without Desired ESSID */
2681 if (priv->firmware_type == FIRMWARE_TYPE_INTERSIL &&
2682 strlen(priv->desired_essid) == 0) {
2683 printk(KERN_WARNING "%s: Desired ESSID must be set for "
2684 "manual roaming\n", dev->name);
2689 /* Finally, enable manual roaming */
2690 priv->bssid_fixed = 1;
2691 memcpy(priv->desired_bssid, &ap_addr->sa_data, ETH_ALEN);
2694 orinoco_unlock(priv, &flags);
2698 static int orinoco_ioctl_getwap(struct net_device *dev,
2699 struct iw_request_info *info,
2700 struct sockaddr *ap_addr,
2703 struct orinoco_private *priv = netdev_priv(dev);
2705 hermes_t *hw = &priv->hw;
2707 unsigned long flags;
2709 if (orinoco_lock(priv, &flags) != 0)
2712 ap_addr->sa_family = ARPHRD_ETHER;
2713 err = hermes_read_ltv(hw, USER_BAP, HERMES_RID_CURRENTBSSID,
2714 ETH_ALEN, NULL, ap_addr->sa_data);
2716 orinoco_unlock(priv, &flags);
2721 static int orinoco_ioctl_setmode(struct net_device *dev,
2722 struct iw_request_info *info,
2726 struct orinoco_private *priv = netdev_priv(dev);
2727 int err = -EINPROGRESS; /* Call commit handler */
2728 unsigned long flags;
2730 if (priv->iw_mode == *mode)
2733 if (orinoco_lock(priv, &flags) != 0)
2738 if (!priv->has_ibss && !priv->has_port3)
2745 case IW_MODE_MONITOR:
2746 if (priv->broken_monitor && !force_monitor) {
2747 printk(KERN_WARNING "%s: Monitor mode support is "
2748 "buggy in this firmware, not enabling\n",
2759 if (err == -EINPROGRESS) {
2760 priv->iw_mode = *mode;
2761 set_port_type(priv);
2764 orinoco_unlock(priv, &flags);
2769 static int orinoco_ioctl_getmode(struct net_device *dev,
2770 struct iw_request_info *info,
2774 struct orinoco_private *priv = netdev_priv(dev);
2776 *mode = priv->iw_mode;
2780 static int orinoco_ioctl_getiwrange(struct net_device *dev,
2781 struct iw_request_info *info,
2782 struct iw_point *rrq,
2785 struct orinoco_private *priv = netdev_priv(dev);
2787 struct iw_range *range = (struct iw_range *) extra;
2791 TRACE_ENTER(dev->name);
2793 rrq->length = sizeof(struct iw_range);
2794 memset(range, 0, sizeof(struct iw_range));
2796 range->we_version_compiled = WIRELESS_EXT;
2797 range->we_version_source = 14;
2799 /* Set available channels/frequencies */
2800 range->num_channels = NUM_CHANNELS;
2802 for (i = 0; i < NUM_CHANNELS; i++) {
2803 if (priv->channel_mask & (1 << i)) {
2804 range->freq[k].i = i + 1;
2805 range->freq[k].m = channel_frequency[i] * 100000;
2806 range->freq[k].e = 1;
2810 if (k >= IW_MAX_FREQUENCIES)
2813 range->num_frequency = k;
2814 range->sensitivity = 3;
2816 if (priv->has_wep) {
2817 range->max_encoding_tokens = ORINOCO_MAX_KEYS;
2818 range->encoding_size[0] = SMALL_KEY_SIZE;
2819 range->num_encoding_sizes = 1;
2821 if (priv->has_big_wep) {
2822 range->encoding_size[1] = LARGE_KEY_SIZE;
2823 range->num_encoding_sizes = 2;
2827 if ((priv->iw_mode == IW_MODE_ADHOC) && (!SPY_NUMBER(priv))){
2828 /* Quality stats meaningless in ad-hoc mode */
2830 range->max_qual.qual = 0x8b - 0x2f;
2831 range->max_qual.level = 0x2f - 0x95 - 1;
2832 range->max_qual.noise = 0x2f - 0x95 - 1;
2833 /* Need to get better values */
2834 range->avg_qual.qual = 0x24;
2835 range->avg_qual.level = 0xC2;
2836 range->avg_qual.noise = 0x9E;
2839 err = orinoco_hw_get_bitratelist(priv, &numrates,
2840 range->bitrate, IW_MAX_BITRATES);
2843 range->num_bitrates = numrates;
2845 /* Set an indication of the max TCP throughput in bit/s that we can
2846 * expect using this interface. May be use for QoS stuff...
2849 range->throughput = 5 * 1000 * 1000; /* ~5 Mb/s */
2851 range->throughput = 1.5 * 1000 * 1000; /* ~1.5 Mb/s */
2854 range->max_rts = 2347;
2855 range->min_frag = 256;
2856 range->max_frag = 2346;
2859 range->max_pmp = 65535000;
2861 range->max_pmt = 65535 * 1000; /* ??? */
2862 range->pmp_flags = IW_POWER_PERIOD;
2863 range->pmt_flags = IW_POWER_TIMEOUT;
2864 range->pm_capa = IW_POWER_PERIOD | IW_POWER_TIMEOUT | IW_POWER_UNICAST_R;
2866 range->retry_capa = IW_RETRY_LIMIT | IW_RETRY_LIFETIME;
2867 range->retry_flags = IW_RETRY_LIMIT;
2868 range->r_time_flags = IW_RETRY_LIFETIME;
2869 range->min_retry = 0;
2870 range->max_retry = 65535; /* ??? */
2871 range->min_r_time = 0;
2872 range->max_r_time = 65535 * 1000; /* ??? */
2874 /* Event capability (kernel) */
2875 IW_EVENT_CAPA_SET_KERNEL(range->event_capa);
2876 /* Event capability (driver) */
2877 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWTHRSPY);
2878 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWAP);
2879 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWSCAN);
2880 IW_EVENT_CAPA_SET(range->event_capa, IWEVTXDROP);
2882 TRACE_EXIT(dev->name);
2887 static int orinoco_ioctl_setiwencode(struct net_device *dev,
2888 struct iw_request_info *info,
2889 struct iw_point *erq,
2892 struct orinoco_private *priv = netdev_priv(dev);
2893 int index = (erq->flags & IW_ENCODE_INDEX) - 1;
2894 int setindex = priv->tx_key;
2895 int enable = priv->wep_on;
2896 int restricted = priv->wep_restrict;
2898 int err = -EINPROGRESS; /* Call commit handler */
2899 unsigned long flags;
2901 if (! priv->has_wep)
2905 /* We actually have a key to set - check its length */
2906 if (erq->length > LARGE_KEY_SIZE)
2909 if ( (erq->length > SMALL_KEY_SIZE) && !priv->has_big_wep )
2913 if (orinoco_lock(priv, &flags) != 0)
2917 if ((index < 0) || (index >= ORINOCO_MAX_KEYS))
2918 index = priv->tx_key;
2920 /* Adjust key length to a supported value */
2921 if (erq->length > SMALL_KEY_SIZE) {
2922 xlen = LARGE_KEY_SIZE;
2923 } else if (erq->length > 0) {
2924 xlen = SMALL_KEY_SIZE;
2928 /* Switch on WEP if off */
2929 if ((!enable) && (xlen > 0)) {
2934 /* Important note : if the user do "iwconfig eth0 enc off",
2935 * we will arrive there with an index of -1. This is valid
2936 * but need to be taken care off... Jean II */
2937 if ((index < 0) || (index >= ORINOCO_MAX_KEYS)) {
2938 if((index != -1) || (erq->flags == 0)) {
2943 /* Set the index : Check that the key is valid */
2944 if(priv->keys[index].len == 0) {
2952 if (erq->flags & IW_ENCODE_DISABLED)
2954 if (erq->flags & IW_ENCODE_OPEN)
2956 if (erq->flags & IW_ENCODE_RESTRICTED)
2960 priv->keys[index].len = cpu_to_le16(xlen);
2961 memset(priv->keys[index].data, 0,
2962 sizeof(priv->keys[index].data));
2963 memcpy(priv->keys[index].data, keybuf, erq->length);
2965 priv->tx_key = setindex;
2967 /* Try fast key change if connected and only keys are changed */
2968 if (priv->wep_on && enable && (priv->wep_restrict == restricted) &&
2969 netif_carrier_ok(dev)) {
2970 err = __orinoco_hw_setup_wepkeys(priv);
2971 /* No need to commit if successful */
2975 priv->wep_on = enable;
2976 priv->wep_restrict = restricted;
2979 orinoco_unlock(priv, &flags);
2984 static int orinoco_ioctl_getiwencode(struct net_device *dev,
2985 struct iw_request_info *info,
2986 struct iw_point *erq,
2989 struct orinoco_private *priv = netdev_priv(dev);
2990 int index = (erq->flags & IW_ENCODE_INDEX) - 1;
2992 unsigned long flags;
2994 if (! priv->has_wep)
2997 if (orinoco_lock(priv, &flags) != 0)
3000 if ((index < 0) || (index >= ORINOCO_MAX_KEYS))
3001 index = priv->tx_key;
3005 erq->flags |= IW_ENCODE_DISABLED;
3006 erq->flags |= index + 1;
3008 if (priv->wep_restrict)
3009 erq->flags |= IW_ENCODE_RESTRICTED;
3011 erq->flags |= IW_ENCODE_OPEN;
3013 xlen = le16_to_cpu(priv->keys[index].len);
3017 memcpy(keybuf, priv->keys[index].data, ORINOCO_MAX_KEY_SIZE);
3019 orinoco_unlock(priv, &flags);
3023 static int orinoco_ioctl_setessid(struct net_device *dev,
3024 struct iw_request_info *info,
3025 struct iw_point *erq,
3028 struct orinoco_private *priv = netdev_priv(dev);
3029 unsigned long flags;
3031 /* Note : ESSID is ignored in Ad-Hoc demo mode, but we can set it
3032 * anyway... - Jean II */
3034 /* Hum... Should not use Wireless Extension constant (may change),
3035 * should use our own... - Jean II */
3036 if (erq->length > IW_ESSID_MAX_SIZE)
3039 if (orinoco_lock(priv, &flags) != 0)
3042 /* NULL the string (for NULL termination & ESSID = ANY) - Jean II */
3043 memset(priv->desired_essid, 0, sizeof(priv->desired_essid));
3045 /* If not ANY, get the new ESSID */
3047 memcpy(priv->desired_essid, essidbuf, erq->length);
3050 orinoco_unlock(priv, &flags);
3052 return -EINPROGRESS; /* Call commit handler */
3055 static int orinoco_ioctl_getessid(struct net_device *dev,
3056 struct iw_request_info *info,
3057 struct iw_point *erq,
3060 struct orinoco_private *priv = netdev_priv(dev);
3063 unsigned long flags;
3065 TRACE_ENTER(dev->name);
3067 if (netif_running(dev)) {
3068 err = orinoco_hw_get_essid(priv, &active, essidbuf);
3072 if (orinoco_lock(priv, &flags) != 0)
3074 memcpy(essidbuf, priv->desired_essid, IW_ESSID_MAX_SIZE + 1);
3075 orinoco_unlock(priv, &flags);
3079 erq->length = strlen(essidbuf) + 1;
3081 TRACE_EXIT(dev->name);
3086 static int orinoco_ioctl_setnick(struct net_device *dev,
3087 struct iw_request_info *info,
3088 struct iw_point *nrq,
3091 struct orinoco_private *priv = netdev_priv(dev);
3092 unsigned long flags;
3094 if (nrq->length > IW_ESSID_MAX_SIZE)
3097 if (orinoco_lock(priv, &flags) != 0)
3100 memset(priv->nick, 0, sizeof(priv->nick));
3101 memcpy(priv->nick, nickbuf, nrq->length);
3103 orinoco_unlock(priv, &flags);
3105 return -EINPROGRESS; /* Call commit handler */
3108 static int orinoco_ioctl_getnick(struct net_device *dev,
3109 struct iw_request_info *info,
3110 struct iw_point *nrq,
3113 struct orinoco_private *priv = netdev_priv(dev);
3114 unsigned long flags;
3116 if (orinoco_lock(priv, &flags) != 0)
3119 memcpy(nickbuf, priv->nick, IW_ESSID_MAX_SIZE+1);
3120 orinoco_unlock(priv, &flags);
3122 nrq->length = strlen(nickbuf)+1;
3127 static int orinoco_ioctl_setfreq(struct net_device *dev,
3128 struct iw_request_info *info,
3129 struct iw_freq *frq,
3132 struct orinoco_private *priv = netdev_priv(dev);
3134 unsigned long flags;
3135 int err = -EINPROGRESS; /* Call commit handler */
3137 /* In infrastructure mode the AP sets the channel */
3138 if (priv->iw_mode == IW_MODE_INFRA)
3141 if ( (frq->e == 0) && (frq->m <= 1000) ) {
3142 /* Setting by channel number */
3145 /* Setting by frequency - search the table */
3149 for (i = 0; i < (6 - frq->e); i++)
3152 for (i = 0; i < NUM_CHANNELS; i++)
3153 if (frq->m == (channel_frequency[i] * mult))
3157 if ( (chan < 1) || (chan > NUM_CHANNELS) ||
3158 ! (priv->channel_mask & (1 << (chan-1)) ) )
3161 if (orinoco_lock(priv, &flags) != 0)
3164 priv->channel = chan;
3165 if (priv->iw_mode == IW_MODE_MONITOR) {
3166 /* Fast channel change - no commit if successful */
3167 hermes_t *hw = &priv->hw;
3168 err = hermes_docmd_wait(hw, HERMES_CMD_TEST |
3169 HERMES_TEST_SET_CHANNEL,
3172 orinoco_unlock(priv, &flags);
3177 static int orinoco_ioctl_getfreq(struct net_device *dev,
3178 struct iw_request_info *info,
3179 struct iw_freq *frq,
3182 struct orinoco_private *priv = netdev_priv(dev);
3185 /* Locking done in there */
3186 tmp = orinoco_hw_get_freq(priv);
3197 static int orinoco_ioctl_getsens(struct net_device *dev,
3198 struct iw_request_info *info,
3199 struct iw_param *srq,
3202 struct orinoco_private *priv = netdev_priv(dev);
3203 hermes_t *hw = &priv->hw;
3206 unsigned long flags;
3208 if (!priv->has_sensitivity)
3211 if (orinoco_lock(priv, &flags) != 0)
3213 err = hermes_read_wordrec(hw, USER_BAP,
3214 HERMES_RID_CNFSYSTEMSCALE, &val);
3215 orinoco_unlock(priv, &flags);
3221 srq->fixed = 0; /* auto */
3226 static int orinoco_ioctl_setsens(struct net_device *dev,
3227 struct iw_request_info *info,
3228 struct iw_param *srq,
3231 struct orinoco_private *priv = netdev_priv(dev);
3232 int val = srq->value;
3233 unsigned long flags;
3235 if (!priv->has_sensitivity)
3238 if ((val < 1) || (val > 3))
3241 if (orinoco_lock(priv, &flags) != 0)
3243 priv->ap_density = val;
3244 orinoco_unlock(priv, &flags);
3246 return -EINPROGRESS; /* Call commit handler */
3249 static int orinoco_ioctl_setrts(struct net_device *dev,
3250 struct iw_request_info *info,
3251 struct iw_param *rrq,
3254 struct orinoco_private *priv = netdev_priv(dev);
3255 int val = rrq->value;
3256 unsigned long flags;
3261 if ( (val < 0) || (val > 2347) )
3264 if (orinoco_lock(priv, &flags) != 0)
3267 priv->rts_thresh = val;
3268 orinoco_unlock(priv, &flags);
3270 return -EINPROGRESS; /* Call commit handler */
3273 static int orinoco_ioctl_getrts(struct net_device *dev,
3274 struct iw_request_info *info,
3275 struct iw_param *rrq,
3278 struct orinoco_private *priv = netdev_priv(dev);
3280 rrq->value = priv->rts_thresh;
3281 rrq->disabled = (rrq->value == 2347);
3287 static int orinoco_ioctl_setfrag(struct net_device *dev,
3288 struct iw_request_info *info,
3289 struct iw_param *frq,
3292 struct orinoco_private *priv = netdev_priv(dev);
3293 int err = -EINPROGRESS; /* Call commit handler */
3294 unsigned long flags;
3296 if (orinoco_lock(priv, &flags) != 0)
3299 if (priv->has_mwo) {
3301 priv->mwo_robust = 0;
3304 printk(KERN_WARNING "%s: Fixed fragmentation is "
3305 "not supported on this firmware. "
3306 "Using MWO robust instead.\n", dev->name);
3307 priv->mwo_robust = 1;
3311 priv->frag_thresh = 2346;
3313 if ( (frq->value < 256) || (frq->value > 2346) )
3316 priv->frag_thresh = frq->value & ~0x1; /* must be even */
3320 orinoco_unlock(priv, &flags);
3325 static int orinoco_ioctl_getfrag(struct net_device *dev,
3326 struct iw_request_info *info,
3327 struct iw_param *frq,
3330 struct orinoco_private *priv = netdev_priv(dev);
3331 hermes_t *hw = &priv->hw;
3334 unsigned long flags;
3336 if (orinoco_lock(priv, &flags) != 0)
3339 if (priv->has_mwo) {
3340 err = hermes_read_wordrec(hw, USER_BAP,
3341 HERMES_RID_CNFMWOROBUST_AGERE,
3346 frq->value = val ? 2347 : 0;
3347 frq->disabled = ! val;
3350 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFFRAGMENTATIONTHRESHOLD,
3356 frq->disabled = (val >= 2346);
3360 orinoco_unlock(priv, &flags);
3365 static int orinoco_ioctl_setrate(struct net_device *dev,
3366 struct iw_request_info *info,
3367 struct iw_param *rrq,
3370 struct orinoco_private *priv = netdev_priv(dev);
3372 int bitrate; /* 100s of kilobits */
3374 unsigned long flags;
3376 /* As the user space doesn't know our highest rate, it uses -1
3377 * to ask us to set the highest rate. Test it using "iwconfig
3378 * ethX rate auto" - Jean II */
3379 if (rrq->value == -1)
3382 if (rrq->value % 100000)
3384 bitrate = rrq->value / 100000;
3387 if ( (bitrate != 10) && (bitrate != 20) &&
3388 (bitrate != 55) && (bitrate != 110) )
3391 for (i = 0; i < BITRATE_TABLE_SIZE; i++)
3392 if ( (bitrate_table[i].bitrate == bitrate) &&
3393 (bitrate_table[i].automatic == ! rrq->fixed) ) {
3401 if (orinoco_lock(priv, &flags) != 0)
3403 priv->bitratemode = ratemode;
3404 orinoco_unlock(priv, &flags);
3406 return -EINPROGRESS;
3409 static int orinoco_ioctl_getrate(struct net_device *dev,
3410 struct iw_request_info *info,
3411 struct iw_param *rrq,
3414 struct orinoco_private *priv = netdev_priv(dev);
3415 hermes_t *hw = &priv->hw;
3420 unsigned long flags;
3422 if (orinoco_lock(priv, &flags) != 0)
3425 ratemode = priv->bitratemode;
3427 BUG_ON((ratemode < 0) || (ratemode >= BITRATE_TABLE_SIZE));
3429 rrq->value = bitrate_table[ratemode].bitrate * 100000;
3430 rrq->fixed = ! bitrate_table[ratemode].automatic;
3433 /* If the interface is running we try to find more about the
3435 if (netif_running(dev)) {
3436 err = hermes_read_wordrec(hw, USER_BAP,
3437 HERMES_RID_CURRENTTXRATE, &val);
3441 switch (priv->firmware_type) {
3442 case FIRMWARE_TYPE_AGERE: /* Lucent style rate */
3443 /* Note : in Lucent firmware, the return value of
3444 * HERMES_RID_CURRENTTXRATE is the bitrate in Mb/s,
3445 * and therefore is totally different from the
3446 * encoding of HERMES_RID_CNFTXRATECONTROL.
3447 * Don't forget that 6Mb/s is really 5.5Mb/s */
3449 rrq->value = 5500000;
3451 rrq->value = val * 1000000;
3453 case FIRMWARE_TYPE_INTERSIL: /* Intersil style rate */
3454 case FIRMWARE_TYPE_SYMBOL: /* Symbol style rate */
3455 for (i = 0; i < BITRATE_TABLE_SIZE; i++)
3456 if (bitrate_table[i].intersil_txratectrl == val) {
3460 if (i >= BITRATE_TABLE_SIZE)
3461 printk(KERN_INFO "%s: Unable to determine current bitrate (0x%04hx)\n",
3464 rrq->value = bitrate_table[ratemode].bitrate * 100000;
3472 orinoco_unlock(priv, &flags);
3477 static int orinoco_ioctl_setpower(struct net_device *dev,
3478 struct iw_request_info *info,
3479 struct iw_param *prq,
3482 struct orinoco_private *priv = netdev_priv(dev);
3483 int err = -EINPROGRESS; /* Call commit handler */
3484 unsigned long flags;
3486 if (orinoco_lock(priv, &flags) != 0)
3489 if (prq->disabled) {
3492 switch (prq->flags & IW_POWER_MODE) {
3493 case IW_POWER_UNICAST_R:
3497 case IW_POWER_ALL_R:
3502 /* No flags : but we may have a value - Jean II */
3510 if (prq->flags & IW_POWER_TIMEOUT) {
3512 priv->pm_timeout = prq->value / 1000;
3514 if (prq->flags & IW_POWER_PERIOD) {
3516 priv->pm_period = prq->value / 1000;
3518 /* It's valid to not have a value if we are just toggling
3519 * the flags... Jean II */
3527 orinoco_unlock(priv, &flags);
3532 static int orinoco_ioctl_getpower(struct net_device *dev,
3533 struct iw_request_info *info,
3534 struct iw_param *prq,
3537 struct orinoco_private *priv = netdev_priv(dev);
3538 hermes_t *hw = &priv->hw;
3540 u16 enable, period, timeout, mcast;
3541 unsigned long flags;
3543 if (orinoco_lock(priv, &flags) != 0)
3546 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFPMENABLED, &enable);
3550 err = hermes_read_wordrec(hw, USER_BAP,
3551 HERMES_RID_CNFMAXSLEEPDURATION, &period);
3555 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFPMHOLDOVERDURATION, &timeout);
3559 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFMULTICASTRECEIVE, &mcast);
3563 prq->disabled = !enable;
3564 /* Note : by default, display the period */
3565 if ((prq->flags & IW_POWER_TYPE) == IW_POWER_TIMEOUT) {
3566 prq->flags = IW_POWER_TIMEOUT;
3567 prq->value = timeout * 1000;
3569 prq->flags = IW_POWER_PERIOD;
3570 prq->value = period * 1000;
3573 prq->flags |= IW_POWER_ALL_R;
3575 prq->flags |= IW_POWER_UNICAST_R;
3578 orinoco_unlock(priv, &flags);
3583 static int orinoco_ioctl_getretry(struct net_device *dev,
3584 struct iw_request_info *info,
3585 struct iw_param *rrq,
3588 struct orinoco_private *priv = netdev_priv(dev);
3589 hermes_t *hw = &priv->hw;
3591 u16 short_limit, long_limit, lifetime;
3592 unsigned long flags;
3594 if (orinoco_lock(priv, &flags) != 0)
3597 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_SHORTRETRYLIMIT,
3602 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_LONGRETRYLIMIT,
3607 err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_MAXTRANSMITLIFETIME,
3612 rrq->disabled = 0; /* Can't be disabled */
3614 /* Note : by default, display the retry number */
3615 if ((rrq->flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME) {
3616 rrq->flags = IW_RETRY_LIFETIME;
3617 rrq->value = lifetime * 1000; /* ??? */
3619 /* By default, display the min number */
3620 if ((rrq->flags & IW_RETRY_MAX)) {
3621 rrq->flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
3622 rrq->value = long_limit;
3624 rrq->flags = IW_RETRY_LIMIT;
3625 rrq->value = short_limit;
3626 if(short_limit != long_limit)
3627 rrq->flags |= IW_RETRY_MIN;
3632 orinoco_unlock(priv, &flags);
3637 static int orinoco_ioctl_reset(struct net_device *dev,
3638 struct iw_request_info *info,
3642 struct orinoco_private *priv = netdev_priv(dev);
3644 if (! capable(CAP_NET_ADMIN))
3647 if (info->cmd == (SIOCIWFIRSTPRIV + 0x1)) {
3648 printk(KERN_DEBUG "%s: Forcing reset!\n", dev->name);
3650 /* Firmware reset */
3653 printk(KERN_DEBUG "%s: Force scheduling reset!\n", dev->name);
3655 schedule_work(&priv->reset_work);
3661 static int orinoco_ioctl_setibssport(struct net_device *dev,
3662 struct iw_request_info *info,
3667 struct orinoco_private *priv = netdev_priv(dev);
3668 int val = *( (int *) extra );
3669 unsigned long flags;
3671 if (orinoco_lock(priv, &flags) != 0)
3674 priv->ibss_port = val ;
3676 /* Actually update the mode we are using */
3677 set_port_type(priv);
3679 orinoco_unlock(priv, &flags);
3680 return -EINPROGRESS; /* Call commit handler */
3683 static int orinoco_ioctl_getibssport(struct net_device *dev,
3684 struct iw_request_info *info,
3688 struct orinoco_private *priv = netdev_priv(dev);
3689 int *val = (int *) extra;
3691 *val = priv->ibss_port;
3695 static int orinoco_ioctl_setport3(struct net_device *dev,
3696 struct iw_request_info *info,
3700 struct orinoco_private *priv = netdev_priv(dev);
3701 int val = *( (int *) extra );
3703 unsigned long flags;
3705 if (orinoco_lock(priv, &flags) != 0)
3709 case 0: /* Try to do IEEE ad-hoc mode */
3710 if (! priv->has_ibss) {
3714 priv->prefer_port3 = 0;
3718 case 1: /* Try to do Lucent proprietary ad-hoc mode */
3719 if (! priv->has_port3) {
3723 priv->prefer_port3 = 1;
3731 /* Actually update the mode we are using */
3732 set_port_type(priv);
3736 orinoco_unlock(priv, &flags);
3741 static int orinoco_ioctl_getport3(struct net_device *dev,
3742 struct iw_request_info *info,
3746 struct orinoco_private *priv = netdev_priv(dev);
3747 int *val = (int *) extra;
3749 *val = priv->prefer_port3;
3753 static int orinoco_ioctl_setpreamble(struct net_device *dev,
3754 struct iw_request_info *info,
3758 struct orinoco_private *priv = netdev_priv(dev);
3759 unsigned long flags;
3762 if (! priv->has_preamble)
3765 /* 802.11b has recently defined some short preamble.
3766 * Basically, the Phy header has been reduced in size.
3767 * This increase performance, especially at high rates
3768 * (the preamble is transmitted at 1Mb/s), unfortunately
3769 * this give compatibility troubles... - Jean II */
3770 val = *( (int *) extra );
3772 if (orinoco_lock(priv, &flags) != 0)
3780 orinoco_unlock(priv, &flags);
3782 return -EINPROGRESS; /* Call commit handler */
3785 static int orinoco_ioctl_getpreamble(struct net_device *dev,
3786 struct iw_request_info *info,
3790 struct orinoco_private *priv = netdev_priv(dev);
3791 int *val = (int *) extra;
3793 if (! priv->has_preamble)
3796 *val = priv->preamble;
3800 /* ioctl interface to hermes_read_ltv()
3801 * To use with iwpriv, pass the RID as the token argument, e.g.
3802 * iwpriv get_rid [0xfc00]
3803 * At least Wireless Tools 25 is required to use iwpriv.
3804 * For Wireless Tools 25 and 26 append "dummy" are the end. */
3805 static int orinoco_ioctl_getrid(struct net_device *dev,
3806 struct iw_request_info *info,
3807 struct iw_point *data,
3810 struct orinoco_private *priv = netdev_priv(dev);
3811 hermes_t *hw = &priv->hw;
3812 int rid = data->flags;
3815 unsigned long flags;
3817 /* It's a "get" function, but we don't want users to access the
3818 * WEP key and other raw firmware data */
3819 if (! capable(CAP_NET_ADMIN))
3822 if (rid < 0xfc00 || rid > 0xffff)
3825 if (orinoco_lock(priv, &flags) != 0)
3828 err = hermes_read_ltv(hw, USER_BAP, rid, MAX_RID_LEN, &length,
3833 data->length = min_t(u16, HERMES_RECLEN_TO_BYTES(length),
3837 orinoco_unlock(priv, &flags);
3841 /* Trigger a scan (look for other cells in the vicinity */
3842 static int orinoco_ioctl_setscan(struct net_device *dev,
3843 struct iw_request_info *info,
3844 struct iw_param *srq,
3847 struct orinoco_private *priv = netdev_priv(dev);
3848 hermes_t *hw = &priv->hw;
3850 unsigned long flags;
3852 /* Note : you may have realised that, as this is a SET operation,
3853 * this is priviledged and therefore a normal user can't
3855 * This is not an error, while the device perform scanning,
3856 * traffic doesn't flow, so it's a perfect DoS...
3859 if (orinoco_lock(priv, &flags) != 0)
3862 /* Scanning with port 0 disabled would fail */
3863 if (!netif_running(dev)) {
3868 /* In monitor mode, the scan results are always empty.
3869 * Probe responses are passed to the driver as received
3870 * frames and could be processed in software. */
3871 if (priv->iw_mode == IW_MODE_MONITOR) {
3876 /* Note : because we don't lock out the irq handler, the way
3877 * we access scan variables in priv is critical.
3878 * o scan_inprogress : not touched by irq handler
3879 * o scan_mode : not touched by irq handler
3880 * o scan_result : irq is strict producer, non-irq is strict
3882 * o scan_len : synchronised with scan_result
3883 * Before modifying anything on those variables, please think hard !
3886 /* If there is still some left-over scan results, get rid of it */
3887 if (priv->scan_result != NULL) {
3888 /* What's likely is that a client did crash or was killed
3889 * between triggering the scan request and reading the
3890 * results, so we need to reset everything.
3891 * Some clients that are too slow may suffer from that...
3893 kfree(priv->scan_result);
3894 priv->scan_result = NULL;
3898 priv->scan_mode = srq->flags;
3900 /* Always trigger scanning, even if it's in progress.
3901 * This way, if the info frame get lost, we will recover somewhat
3902 * gracefully - Jean II */
3904 if (priv->has_hostscan) {
3905 switch (priv->firmware_type) {
3906 case FIRMWARE_TYPE_SYMBOL:
3907 err = hermes_write_wordrec(hw, USER_BAP,
3908 HERMES_RID_CNFHOSTSCAN_SYMBOL,
3909 HERMES_HOSTSCAN_SYMBOL_ONCE |
3910 HERMES_HOSTSCAN_SYMBOL_BCAST);
3912 case FIRMWARE_TYPE_INTERSIL: {
3915 req[0] = cpu_to_le16(0x3fff); /* All channels */
3916 req[1] = cpu_to_le16(0x0001); /* rate 1 Mbps */
3917 req[2] = 0; /* Any ESSID */
3918 err = HERMES_WRITE_RECORD(hw, USER_BAP,
3919 HERMES_RID_CNFHOSTSCAN, &req);
3922 case FIRMWARE_TYPE_AGERE:
3923 err = hermes_write_wordrec(hw, USER_BAP,
3924 HERMES_RID_CNFSCANSSID_AGERE,
3929 err = hermes_inquire(hw, HERMES_INQ_SCAN);
3933 err = hermes_inquire(hw, HERMES_INQ_SCAN);
3935 /* One more client */
3937 priv->scan_inprogress = 1;
3940 orinoco_unlock(priv, &flags);
3944 /* Translate scan data returned from the card to a card independant
3945 * format that the Wireless Tools will understand - Jean II
3946 * Return message length or -errno for fatal errors */
3947 static inline int orinoco_translate_scan(struct net_device *dev,
3952 struct orinoco_private *priv = netdev_priv(dev);
3953 int offset; /* In the scan data */
3954 union hermes_scan_info *atom;
3958 struct iw_event iwe; /* Temporary buffer */
3959 char * current_ev = buffer;
3960 char * end_buf = buffer + IW_SCAN_MAX_DATA;
3962 switch (priv->firmware_type) {
3963 case FIRMWARE_TYPE_AGERE:
3964 atom_len = sizeof(struct agere_scan_apinfo);
3967 case FIRMWARE_TYPE_SYMBOL:
3968 /* Lack of documentation necessitates this hack.
3969 * Different firmwares have 68 or 76 byte long atoms.
3970 * We try modulo first. If the length divides by both,
3971 * we check what would be the channel in the second
3972 * frame for a 68-byte atom. 76-byte atoms have 0 there.
3973 * Valid channel cannot be 0. */
3976 else if (scan_len % 68)
3978 else if (scan_len >= 1292 && scan[68] == 0)
3984 case FIRMWARE_TYPE_INTERSIL:
3986 if (priv->has_hostscan) {
3987 atom_len = le16_to_cpup((__le16 *)scan);
3988 /* Sanity check for atom_len */
3989 if (atom_len < sizeof(struct prism2_scan_apinfo)) {
3990 printk(KERN_ERR "%s: Invalid atom_len in scan data: %d\n",
3991 dev->name, atom_len);
3995 atom_len = offsetof(struct prism2_scan_apinfo, atim);
4001 /* Check that we got an whole number of atoms */
4002 if ((scan_len - offset) % atom_len) {
4003 printk(KERN_ERR "%s: Unexpected scan data length %d, "
4004 "atom_len %d, offset %d\n", dev->name, scan_len,
4009 /* Read the entries one by one */
4010 for (; offset + atom_len <= scan_len; offset += atom_len) {
4012 atom = (union hermes_scan_info *) (scan + offset);
4014 /* First entry *MUST* be the AP MAC address */
4015 iwe.cmd = SIOCGIWAP;
4016 iwe.u.ap_addr.sa_family = ARPHRD_ETHER;
4017 memcpy(iwe.u.ap_addr.sa_data, atom->a.bssid, ETH_ALEN);
4018 current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe, IW_EV_ADDR_LEN);
4020 /* Other entries will be displayed in the order we give them */
4023 iwe.u.data.length = le16_to_cpu(atom->a.essid_len);
4024 if (iwe.u.data.length > 32)
4025 iwe.u.data.length = 32;
4026 iwe.cmd = SIOCGIWESSID;
4027 iwe.u.data.flags = 1;
4028 current_ev = iwe_stream_add_point(current_ev, end_buf, &iwe, atom->a.essid);
4031 iwe.cmd = SIOCGIWMODE;
4032 capabilities = le16_to_cpu(atom->a.capabilities);
4033 if (capabilities & 0x3) {
4034 if (capabilities & 0x1)
4035 iwe.u.mode = IW_MODE_MASTER;
4037 iwe.u.mode = IW_MODE_ADHOC;
4038 current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe, IW_EV_UINT_LEN);
4041 channel = atom->s.channel;
4042 if ( (channel >= 1) && (channel <= NUM_CHANNELS) ) {
4044 iwe.cmd = SIOCGIWFREQ;
4045 iwe.u.freq.m = channel_frequency[channel-1] * 100000;
4047 current_ev = iwe_stream_add_event(current_ev, end_buf,
4048 &iwe, IW_EV_FREQ_LEN);
4051 /* Add quality statistics */
4053 iwe.u.qual.updated = 0x10; /* no link quality */
4054 iwe.u.qual.level = (__u8) le16_to_cpu(atom->a.level) - 0x95;
4055 iwe.u.qual.noise = (__u8) le16_to_cpu(atom->a.noise) - 0x95;
4056 /* Wireless tools prior to 27.pre22 will show link quality
4057 * anyway, so we provide a reasonable value. */
4058 if (iwe.u.qual.level > iwe.u.qual.noise)
4059 iwe.u.qual.qual = iwe.u.qual.level - iwe.u.qual.noise;
4061 iwe.u.qual.qual = 0;
4062 current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe, IW_EV_QUAL_LEN);
4064 /* Add encryption capability */
4065 iwe.cmd = SIOCGIWENCODE;
4066 if (capabilities & 0x10)
4067 iwe.u.data.flags = IW_ENCODE_ENABLED | IW_ENCODE_NOKEY;
4069 iwe.u.data.flags = IW_ENCODE_DISABLED;
4070 iwe.u.data.length = 0;
4071 current_ev = iwe_stream_add_point(current_ev, end_buf, &iwe, atom->a.essid);
4073 /* Bit rate is not available in Lucent/Agere firmwares */
4074 if (priv->firmware_type != FIRMWARE_TYPE_AGERE) {
4075 char * current_val = current_ev + IW_EV_LCP_LEN;
4079 if (priv->firmware_type == FIRMWARE_TYPE_SYMBOL)
4084 iwe.cmd = SIOCGIWRATE;
4085 /* Those two flags are ignored... */
4086 iwe.u.bitrate.fixed = iwe.u.bitrate.disabled = 0;
4088 for (i = 0; i < 10; i += step) {
4089 /* NULL terminated */
4090 if (atom->p.rates[i] == 0x0)
4092 /* Bit rate given in 500 kb/s units (+ 0x80) */
4093 iwe.u.bitrate.value = ((atom->p.rates[i] & 0x7f) * 500000);
4094 current_val = iwe_stream_add_value(current_ev, current_val,
4098 /* Check if we added any event */
4099 if ((current_val - current_ev) > IW_EV_LCP_LEN)
4100 current_ev = current_val;
4103 /* The other data in the scan result are not really
4104 * interesting, so for now drop it - Jean II */
4106 return current_ev - buffer;
4109 /* Return results of a scan */
4110 static int orinoco_ioctl_getscan(struct net_device *dev,
4111 struct iw_request_info *info,
4112 struct iw_point *srq,
4115 struct orinoco_private *priv = netdev_priv(dev);
4117 unsigned long flags;
4119 if (orinoco_lock(priv, &flags) != 0)
4122 /* If no results yet, ask to try again later */
4123 if (priv->scan_result == NULL) {
4124 if (priv->scan_inprogress)
4125 /* Important note : we don't want to block the caller
4126 * until results are ready for various reasons.
4127 * First, managing wait queues is complex and racy.
4128 * Second, we grab some rtnetlink lock before comming
4129 * here (in dev_ioctl()).
4130 * Third, we generate an Wireless Event, so the
4131 * caller can wait itself on that - Jean II */
4134 /* Client error, no scan results...
4135 * The caller need to restart the scan. */
4138 /* We have some results to push back to user space */
4140 /* Translate to WE format */
4141 int ret = orinoco_translate_scan(dev, extra,
4147 kfree(priv->scan_result);
4148 priv->scan_result = NULL;
4153 srq->flags = (__u16) priv->scan_mode;
4155 /* In any case, Scan results will be cleaned up in the
4156 * reset function and when exiting the driver.
4157 * The person triggering the scanning may never come to
4158 * pick the results, so we need to do it in those places.
4161 #ifdef SCAN_SINGLE_READ
4162 /* If you enable this option, only one client (the first
4163 * one) will be able to read the result (and only one
4164 * time). If there is multiple concurent clients that
4165 * want to read scan results, this behavior is not
4166 * advisable - Jean II */
4167 kfree(priv->scan_result);
4168 priv->scan_result = NULL;
4169 #endif /* SCAN_SINGLE_READ */
4170 /* Here, if too much time has elapsed since last scan,
4171 * we may want to clean up scan results... - Jean II */
4174 /* Scan is no longer in progress */
4175 priv->scan_inprogress = 0;
4178 orinoco_unlock(priv, &flags);
4182 /* Commit handler, called after set operations */
4183 static int orinoco_ioctl_commit(struct net_device *dev,
4184 struct iw_request_info *info,
4188 struct orinoco_private *priv = netdev_priv(dev);
4189 struct hermes *hw = &priv->hw;
4190 unsigned long flags;
4196 if (priv->broken_disableport) {
4201 if (orinoco_lock(priv, &flags) != 0)
4204 err = hermes_disable_port(hw, 0);
4206 printk(KERN_WARNING "%s: Unable to disable port "
4207 "while reconfiguring card\n", dev->name);
4208 priv->broken_disableport = 1;
4212 err = __orinoco_program_rids(dev);
4214 printk(KERN_WARNING "%s: Unable to reconfigure card\n",
4219 err = hermes_enable_port(hw, 0);
4221 printk(KERN_WARNING "%s: Unable to enable port while reconfiguring card\n",
4228 printk(KERN_WARNING "%s: Resetting instead...\n", dev->name);
4229 schedule_work(&priv->reset_work);
4233 orinoco_unlock(priv, &flags);
4237 static const struct iw_priv_args orinoco_privtab[] = {
4238 { SIOCIWFIRSTPRIV + 0x0, 0, 0, "force_reset" },
4239 { SIOCIWFIRSTPRIV + 0x1, 0, 0, "card_reset" },
4240 { SIOCIWFIRSTPRIV + 0x2, IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
4242 { SIOCIWFIRSTPRIV + 0x3, 0, IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
4244 { SIOCIWFIRSTPRIV + 0x4, IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
4245 0, "set_preamble" },
4246 { SIOCIWFIRSTPRIV + 0x5, 0, IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
4248 { SIOCIWFIRSTPRIV + 0x6, IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
4249 0, "set_ibssport" },
4250 { SIOCIWFIRSTPRIV + 0x7, 0, IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
4252 { SIOCIWFIRSTPRIV + 0x9, 0, IW_PRIV_TYPE_BYTE | MAX_RID_LEN,
4258 * Structures to export the Wireless Handlers
4261 static const iw_handler orinoco_handler[] = {
4262 [SIOCSIWCOMMIT-SIOCIWFIRST] = (iw_handler) orinoco_ioctl_commit,
4263 [SIOCGIWNAME -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getname,
4264 [SIOCSIWFREQ -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setfreq,
4265 [SIOCGIWFREQ -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getfreq,
4266 [SIOCSIWMODE -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setmode,
4267 [SIOCGIWMODE -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getmode,
4268 [SIOCSIWSENS -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setsens,
4269 [SIOCGIWSENS -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getsens,
4270 [SIOCGIWRANGE -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getiwrange,
4271 [SIOCSIWSPY -SIOCIWFIRST] = (iw_handler) iw_handler_set_spy,
4272 [SIOCGIWSPY -SIOCIWFIRST] = (iw_handler) iw_handler_get_spy,
4273 [SIOCSIWTHRSPY-SIOCIWFIRST] = (iw_handler) iw_handler_set_thrspy,
4274 [SIOCGIWTHRSPY-SIOCIWFIRST] = (iw_handler) iw_handler_get_thrspy,
4275 [SIOCSIWAP -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setwap,
4276 [SIOCGIWAP -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getwap,
4277 [SIOCSIWSCAN -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setscan,
4278 [SIOCGIWSCAN -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getscan,
4279 [SIOCSIWESSID -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setessid,
4280 [SIOCGIWESSID -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getessid,
4281 [SIOCSIWNICKN -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setnick,
4282 [SIOCGIWNICKN -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getnick,
4283 [SIOCSIWRATE -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setrate,
4284 [SIOCGIWRATE -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getrate,
4285 [SIOCSIWRTS -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setrts,
4286 [SIOCGIWRTS -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getrts,
4287 [SIOCSIWFRAG -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setfrag,
4288 [SIOCGIWFRAG -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getfrag,
4289 [SIOCGIWRETRY -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getretry,
4290 [SIOCSIWENCODE-SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setiwencode,
4291 [SIOCGIWENCODE-SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getiwencode,
4292 [SIOCSIWPOWER -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_setpower,
4293 [SIOCGIWPOWER -SIOCIWFIRST] = (iw_handler) orinoco_ioctl_getpower,
4298 Added typecasting since we no longer use iwreq_data -- Moustafa
4300 static const iw_handler orinoco_private_handler[] = {
4301 [0] = (iw_handler) orinoco_ioctl_reset,
4302 [1] = (iw_handler) orinoco_ioctl_reset,
4303 [2] = (iw_handler) orinoco_ioctl_setport3,
4304 [3] = (iw_handler) orinoco_ioctl_getport3,
4305 [4] = (iw_handler) orinoco_ioctl_setpreamble,
4306 [5] = (iw_handler) orinoco_ioctl_getpreamble,
4307 [6] = (iw_handler) orinoco_ioctl_setibssport,
4308 [7] = (iw_handler) orinoco_ioctl_getibssport,
4309 [9] = (iw_handler) orinoco_ioctl_getrid,
4312 static const struct iw_handler_def orinoco_handler_def = {
4313 .num_standard = ARRAY_SIZE(orinoco_handler),
4314 .num_private = ARRAY_SIZE(orinoco_private_handler),
4315 .num_private_args = ARRAY_SIZE(orinoco_privtab),
4316 .standard = orinoco_handler,
4317 .private = orinoco_private_handler,
4318 .private_args = orinoco_privtab,
4319 .get_wireless_stats = orinoco_get_wireless_stats,
4322 static void orinoco_get_drvinfo(struct net_device *dev,
4323 struct ethtool_drvinfo *info)
4325 struct orinoco_private *priv = netdev_priv(dev);
4327 strncpy(info->driver, DRIVER_NAME, sizeof(info->driver) - 1);
4328 strncpy(info->version, DRIVER_VERSION, sizeof(info->version) - 1);
4329 strncpy(info->fw_version, priv->fw_name, sizeof(info->fw_version) - 1);
4330 if (dev->class_dev.dev)
4331 strncpy(info->bus_info, dev->class_dev.dev->bus_id,
4332 sizeof(info->bus_info) - 1);
4334 snprintf(info->bus_info, sizeof(info->bus_info) - 1,
4335 "PCMCIA %p", priv->hw.iobase);
4338 static struct ethtool_ops orinoco_ethtool_ops = {
4339 .get_drvinfo = orinoco_get_drvinfo,
4340 .get_link = ethtool_op_get_link,
4343 /********************************************************************/
4345 /********************************************************************/
4348 static void show_rx_frame(struct orinoco_rxframe_hdr *frame)
4350 printk(KERN_DEBUG "RX descriptor:\n");
4351 printk(KERN_DEBUG " status = 0x%04x\n", frame->desc.status);
4352 printk(KERN_DEBUG " time = 0x%08x\n", frame->desc.time);
4353 printk(KERN_DEBUG " silence = 0x%02x\n", frame->desc.silence);
4354 printk(KERN_DEBUG " signal = 0x%02x\n", frame->desc.signal);
4355 printk(KERN_DEBUG " rate = 0x%02x\n", frame->desc.rate);
4356 printk(KERN_DEBUG " rxflow = 0x%02x\n", frame->desc.rxflow);
4357 printk(KERN_DEBUG " reserved = 0x%08x\n", frame->desc.reserved);
4359 printk(KERN_DEBUG "IEEE 802.11 header:\n");
4360 printk(KERN_DEBUG " frame_ctl = 0x%04x\n",
4361 frame->p80211.frame_ctl);
4362 printk(KERN_DEBUG " duration_id = 0x%04x\n",
4363 frame->p80211.duration_id);
4364 printk(KERN_DEBUG " addr1 = %02x:%02x:%02x:%02x:%02x:%02x\n",
4365 frame->p80211.addr1[0], frame->p80211.addr1[1],
4366 frame->p80211.addr1[2], frame->p80211.addr1[3],
4367 frame->p80211.addr1[4], frame->p80211.addr1[5]);
4368 printk(KERN_DEBUG " addr2 = %02x:%02x:%02x:%02x:%02x:%02x\n",
4369 frame->p80211.addr2[0], frame->p80211.addr2[1],
4370 frame->p80211.addr2[2], frame->p80211.addr2[3],
4371 frame->p80211.addr2[4], frame->p80211.addr2[5]);
4372 printk(KERN_DEBUG " addr3 = %02x:%02x:%02x:%02x:%02x:%02x\n",
4373 frame->p80211.addr3[0], frame->p80211.addr3[1],
4374 frame->p80211.addr3[2], frame->p80211.addr3[3],
4375 frame->p80211.addr3[4], frame->p80211.addr3[5]);
4376 printk(KERN_DEBUG " seq_ctl = 0x%04x\n",
4377 frame->p80211.seq_ctl);
4378 printk(KERN_DEBUG " addr4 = %02x:%02x:%02x:%02x:%02x:%02x\n",
4379 frame->p80211.addr4[0], frame->p80211.addr4[1],
4380 frame->p80211.addr4[2], frame->p80211.addr4[3],
4381 frame->p80211.addr4[4], frame->p80211.addr4[5]);
4382 printk(KERN_DEBUG " data_len = 0x%04x\n",
4383 frame->p80211.data_len);
4385 printk(KERN_DEBUG "IEEE 802.3 header:\n");
4386 printk(KERN_DEBUG " dest = %02x:%02x:%02x:%02x:%02x:%02x\n",
4387 frame->p8023.h_dest[0], frame->p8023.h_dest[1],
4388 frame->p8023.h_dest[2], frame->p8023.h_dest[3],
4389 frame->p8023.h_dest[4], frame->p8023.h_dest[5]);
4390 printk(KERN_DEBUG " src = %02x:%02x:%02x:%02x:%02x:%02x\n",
4391 frame->p8023.h_source[0], frame->p8023.h_source[1],
4392 frame->p8023.h_source[2], frame->p8023.h_source[3],
4393 frame->p8023.h_source[4], frame->p8023.h_source[5]);
4394 printk(KERN_DEBUG " len = 0x%04x\n", frame->p8023.h_proto);
4396 printk(KERN_DEBUG "IEEE 802.2 LLC/SNAP header:\n");
4397 printk(KERN_DEBUG " DSAP = 0x%02x\n", frame->p8022.dsap);
4398 printk(KERN_DEBUG " SSAP = 0x%02x\n", frame->p8022.ssap);
4399 printk(KERN_DEBUG " ctrl = 0x%02x\n", frame->p8022.ctrl);
4400 printk(KERN_DEBUG " OUI = %02x:%02x:%02x\n",
4401 frame->p8022.oui[0], frame->p8022.oui[1], frame->p8022.oui[2]);
4402 printk(KERN_DEBUG " ethertype = 0x%04x\n", frame->ethertype);
4406 /********************************************************************/
4407 /* Module initialization */
4408 /********************************************************************/
4410 EXPORT_SYMBOL(alloc_orinocodev);
4411 EXPORT_SYMBOL(free_orinocodev);
4413 EXPORT_SYMBOL(__orinoco_up);
4414 EXPORT_SYMBOL(__orinoco_down);
4415 EXPORT_SYMBOL(orinoco_reinit_firmware);
4417 EXPORT_SYMBOL(orinoco_interrupt);
4419 /* Can't be declared "const" or the whole __initdata section will
4421 static char version[] __initdata = DRIVER_NAME " " DRIVER_VERSION
4422 " (David Gibson <hermes@gibson.dropbear.id.au>, "
4423 "Pavel Roskin <proski@gnu.org>, et al)";
4425 static int __init init_orinoco(void)
4427 printk(KERN_DEBUG "%s\n", version);
4431 static void __exit exit_orinoco(void)
4435 module_init(init_orinoco);
4436 module_exit(exit_orinoco);