orinoco: add orinoco_usb driver
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / net / wireless / orinoco / main.c
blob7c9faa4c079e32a5593d0aaa89c896fbdca7e30a
1 /* main.c - (formerly known as dldwd_cs.c, orinoco_cs.c and orinoco.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
35 * Reserved.
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. */
49 * TODO
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/module.h>
80 #include <linux/kernel.h>
81 #include <linux/init.h>
82 #include <linux/delay.h>
83 #include <linux/device.h>
84 #include <linux/netdevice.h>
85 #include <linux/etherdevice.h>
86 #include <linux/suspend.h>
87 #include <linux/if_arp.h>
88 #include <linux/wireless.h>
89 #include <linux/ieee80211.h>
90 #include <net/iw_handler.h>
91 #include <net/cfg80211.h>
93 #include "hermes_rid.h"
94 #include "hermes_dld.h"
95 #include "hw.h"
96 #include "scan.h"
97 #include "mic.h"
98 #include "fw.h"
99 #include "wext.h"
100 #include "cfg.h"
101 #include "main.h"
103 #include "orinoco.h"
105 /********************************************************************/
106 /* Module information */
107 /********************************************************************/
109 MODULE_AUTHOR("Pavel Roskin <proski@gnu.org> & "
110 "David Gibson <hermes@gibson.dropbear.id.au>");
111 MODULE_DESCRIPTION("Driver for Lucent Orinoco, Prism II based "
112 "and similar wireless cards");
113 MODULE_LICENSE("Dual MPL/GPL");
115 /* Level of debugging. Used in the macros in orinoco.h */
116 #ifdef ORINOCO_DEBUG
117 int orinoco_debug = ORINOCO_DEBUG;
118 EXPORT_SYMBOL(orinoco_debug);
119 module_param(orinoco_debug, int, 0644);
120 MODULE_PARM_DESC(orinoco_debug, "Debug level");
121 #endif
123 static int suppress_linkstatus; /* = 0 */
124 module_param(suppress_linkstatus, bool, 0644);
125 MODULE_PARM_DESC(suppress_linkstatus, "Don't log link status changes");
127 static int ignore_disconnect; /* = 0 */
128 module_param(ignore_disconnect, int, 0644);
129 MODULE_PARM_DESC(ignore_disconnect,
130 "Don't report lost link to the network layer");
132 int force_monitor; /* = 0 */
133 module_param(force_monitor, int, 0644);
134 MODULE_PARM_DESC(force_monitor, "Allow monitor mode for all firmware versions");
136 /********************************************************************/
137 /* Internal constants */
138 /********************************************************************/
140 /* 802.2 LLC/SNAP header used for Ethernet encapsulation over 802.11 */
141 static const u8 encaps_hdr[] = {0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00};
142 #define ENCAPS_OVERHEAD (sizeof(encaps_hdr) + 2)
144 #define ORINOCO_MIN_MTU 256
145 #define ORINOCO_MAX_MTU (IEEE80211_MAX_DATA_LEN - ENCAPS_OVERHEAD)
147 #define MAX_IRQLOOPS_PER_IRQ 10
148 #define MAX_IRQLOOPS_PER_JIFFY (20000/HZ) /* Based on a guestimate of
149 * how many events the
150 * device could
151 * legitimately generate */
153 #define DUMMY_FID 0xFFFF
155 /*#define MAX_MULTICAST(priv) (priv->firmware_type == FIRMWARE_TYPE_AGERE ? \
156 HERMES_MAX_MULTICAST : 0)*/
157 #define MAX_MULTICAST(priv) (HERMES_MAX_MULTICAST)
159 #define ORINOCO_INTEN (HERMES_EV_RX | HERMES_EV_ALLOC \
160 | HERMES_EV_TX | HERMES_EV_TXEXC \
161 | HERMES_EV_WTERR | HERMES_EV_INFO \
162 | HERMES_EV_INFDROP)
164 /********************************************************************/
165 /* Data types */
166 /********************************************************************/
168 /* Beginning of the Tx descriptor, used in TxExc handling */
169 struct hermes_txexc_data {
170 struct hermes_tx_descriptor desc;
171 __le16 frame_ctl;
172 __le16 duration_id;
173 u8 addr1[ETH_ALEN];
174 } __attribute__ ((packed));
176 /* Rx frame header except compatibility 802.3 header */
177 struct hermes_rx_descriptor {
178 /* Control */
179 __le16 status;
180 __le32 time;
181 u8 silence;
182 u8 signal;
183 u8 rate;
184 u8 rxflow;
185 __le32 reserved;
187 /* 802.11 header */
188 __le16 frame_ctl;
189 __le16 duration_id;
190 u8 addr1[ETH_ALEN];
191 u8 addr2[ETH_ALEN];
192 u8 addr3[ETH_ALEN];
193 __le16 seq_ctl;
194 u8 addr4[ETH_ALEN];
196 /* Data length */
197 __le16 data_len;
198 } __attribute__ ((packed));
200 struct orinoco_rx_data {
201 struct hermes_rx_descriptor *desc;
202 struct sk_buff *skb;
203 struct list_head list;
206 struct orinoco_scan_data {
207 void *buf;
208 size_t len;
209 int type;
210 struct list_head list;
213 /********************************************************************/
214 /* Function prototypes */
215 /********************************************************************/
217 static int __orinoco_set_multicast_list(struct net_device *dev);
218 static int __orinoco_up(struct orinoco_private *priv);
219 static int __orinoco_down(struct orinoco_private *priv);
220 static int __orinoco_commit(struct orinoco_private *priv);
222 /********************************************************************/
223 /* Internal helper functions */
224 /********************************************************************/
226 void set_port_type(struct orinoco_private *priv)
228 switch (priv->iw_mode) {
229 case NL80211_IFTYPE_STATION:
230 priv->port_type = 1;
231 priv->createibss = 0;
232 break;
233 case NL80211_IFTYPE_ADHOC:
234 if (priv->prefer_port3) {
235 priv->port_type = 3;
236 priv->createibss = 0;
237 } else {
238 priv->port_type = priv->ibss_port;
239 priv->createibss = 1;
241 break;
242 case NL80211_IFTYPE_MONITOR:
243 priv->port_type = 3;
244 priv->createibss = 0;
245 break;
246 default:
247 printk(KERN_ERR "%s: Invalid priv->iw_mode in set_port_type()\n",
248 priv->ndev->name);
252 /********************************************************************/
253 /* Device methods */
254 /********************************************************************/
256 int orinoco_open(struct net_device *dev)
258 struct orinoco_private *priv = ndev_priv(dev);
259 unsigned long flags;
260 int err;
262 if (orinoco_lock(priv, &flags) != 0)
263 return -EBUSY;
265 err = __orinoco_up(priv);
267 if (!err)
268 priv->open = 1;
270 orinoco_unlock(priv, &flags);
272 return err;
274 EXPORT_SYMBOL(orinoco_open);
276 int orinoco_stop(struct net_device *dev)
278 struct orinoco_private *priv = ndev_priv(dev);
279 int err = 0;
281 /* We mustn't use orinoco_lock() here, because we need to be
282 able to close the interface even if hw_unavailable is set
283 (e.g. as we're released after a PC Card removal) */
284 orinoco_lock_irq(priv);
286 priv->open = 0;
288 err = __orinoco_down(priv);
290 orinoco_unlock_irq(priv);
292 return err;
294 EXPORT_SYMBOL(orinoco_stop);
296 struct net_device_stats *orinoco_get_stats(struct net_device *dev)
298 struct orinoco_private *priv = ndev_priv(dev);
300 return &priv->stats;
302 EXPORT_SYMBOL(orinoco_get_stats);
304 void orinoco_set_multicast_list(struct net_device *dev)
306 struct orinoco_private *priv = ndev_priv(dev);
307 unsigned long flags;
309 if (orinoco_lock(priv, &flags) != 0) {
310 printk(KERN_DEBUG "%s: orinoco_set_multicast_list() "
311 "called when hw_unavailable\n", dev->name);
312 return;
315 __orinoco_set_multicast_list(dev);
316 orinoco_unlock(priv, &flags);
318 EXPORT_SYMBOL(orinoco_set_multicast_list);
320 int orinoco_change_mtu(struct net_device *dev, int new_mtu)
322 struct orinoco_private *priv = ndev_priv(dev);
324 if ((new_mtu < ORINOCO_MIN_MTU) || (new_mtu > ORINOCO_MAX_MTU))
325 return -EINVAL;
327 /* MTU + encapsulation + header length */
328 if ((new_mtu + ENCAPS_OVERHEAD + sizeof(struct ieee80211_hdr)) >
329 (priv->nicbuf_size - ETH_HLEN))
330 return -EINVAL;
332 dev->mtu = new_mtu;
334 return 0;
336 EXPORT_SYMBOL(orinoco_change_mtu);
338 /********************************************************************/
339 /* Tx path */
340 /********************************************************************/
342 static netdev_tx_t orinoco_xmit(struct sk_buff *skb, struct net_device *dev)
344 struct orinoco_private *priv = ndev_priv(dev);
345 struct net_device_stats *stats = &priv->stats;
346 struct orinoco_tkip_key *key;
347 hermes_t *hw = &priv->hw;
348 int err = 0;
349 u16 txfid = priv->txfid;
350 struct ethhdr *eh;
351 int tx_control;
352 unsigned long flags;
353 int do_mic;
355 if (!netif_running(dev)) {
356 printk(KERN_ERR "%s: Tx on stopped device!\n",
357 dev->name);
358 return NETDEV_TX_BUSY;
361 if (netif_queue_stopped(dev)) {
362 printk(KERN_DEBUG "%s: Tx while transmitter busy!\n",
363 dev->name);
364 return NETDEV_TX_BUSY;
367 if (orinoco_lock(priv, &flags) != 0) {
368 printk(KERN_ERR "%s: orinoco_xmit() called while hw_unavailable\n",
369 dev->name);
370 return NETDEV_TX_BUSY;
373 if (!netif_carrier_ok(dev) ||
374 (priv->iw_mode == NL80211_IFTYPE_MONITOR)) {
375 /* Oops, the firmware hasn't established a connection,
376 silently drop the packet (this seems to be the
377 safest approach). */
378 goto drop;
381 /* Check packet length */
382 if (skb->len < ETH_HLEN)
383 goto drop;
385 key = (struct orinoco_tkip_key *) priv->keys[priv->tx_key].key;
387 do_mic = ((priv->encode_alg == ORINOCO_ALG_TKIP) &&
388 (key != NULL));
390 tx_control = HERMES_TXCTRL_TX_OK | HERMES_TXCTRL_TX_EX;
392 if (do_mic)
393 tx_control |= (priv->tx_key << HERMES_MIC_KEY_ID_SHIFT) |
394 HERMES_TXCTRL_MIC;
396 if (priv->has_alt_txcntl) {
397 /* WPA enabled firmwares have tx_cntl at the end of
398 * the 802.11 header. So write zeroed descriptor and
399 * 802.11 header at the same time
401 char desc[HERMES_802_3_OFFSET];
402 __le16 *txcntl = (__le16 *) &desc[HERMES_TXCNTL2_OFFSET];
404 memset(&desc, 0, sizeof(desc));
406 *txcntl = cpu_to_le16(tx_control);
407 err = hw->ops->bap_pwrite(hw, USER_BAP, &desc, sizeof(desc),
408 txfid, 0);
409 if (err) {
410 if (net_ratelimit())
411 printk(KERN_ERR "%s: Error %d writing Tx "
412 "descriptor to BAP\n", dev->name, err);
413 goto busy;
415 } else {
416 struct hermes_tx_descriptor desc;
418 memset(&desc, 0, sizeof(desc));
420 desc.tx_control = cpu_to_le16(tx_control);
421 err = hw->ops->bap_pwrite(hw, USER_BAP, &desc, sizeof(desc),
422 txfid, 0);
423 if (err) {
424 if (net_ratelimit())
425 printk(KERN_ERR "%s: Error %d writing Tx "
426 "descriptor to BAP\n", dev->name, err);
427 goto busy;
430 /* Clear the 802.11 header and data length fields - some
431 * firmwares (e.g. Lucent/Agere 8.xx) appear to get confused
432 * if this isn't done. */
433 hermes_clear_words(hw, HERMES_DATA0,
434 HERMES_802_3_OFFSET - HERMES_802_11_OFFSET);
437 eh = (struct ethhdr *)skb->data;
439 /* Encapsulate Ethernet-II frames */
440 if (ntohs(eh->h_proto) > ETH_DATA_LEN) { /* Ethernet-II frame */
441 struct header_struct {
442 struct ethhdr eth; /* 802.3 header */
443 u8 encap[6]; /* 802.2 header */
444 } __attribute__ ((packed)) hdr;
446 /* Strip destination and source from the data */
447 skb_pull(skb, 2 * ETH_ALEN);
449 /* And move them to a separate header */
450 memcpy(&hdr.eth, eh, 2 * ETH_ALEN);
451 hdr.eth.h_proto = htons(sizeof(encaps_hdr) + skb->len);
452 memcpy(hdr.encap, encaps_hdr, sizeof(encaps_hdr));
454 /* Insert the SNAP header */
455 if (skb_headroom(skb) < sizeof(hdr)) {
456 printk(KERN_ERR
457 "%s: Not enough headroom for 802.2 headers %d\n",
458 dev->name, skb_headroom(skb));
459 goto drop;
461 eh = (struct ethhdr *) skb_push(skb, sizeof(hdr));
462 memcpy(eh, &hdr, sizeof(hdr));
465 err = hw->ops->bap_pwrite(hw, USER_BAP, skb->data, skb->len,
466 txfid, HERMES_802_3_OFFSET);
467 if (err) {
468 printk(KERN_ERR "%s: Error %d writing packet to BAP\n",
469 dev->name, err);
470 goto busy;
473 /* Calculate Michael MIC */
474 if (do_mic) {
475 u8 mic_buf[MICHAEL_MIC_LEN + 1];
476 u8 *mic;
477 size_t offset;
478 size_t len;
480 if (skb->len % 2) {
481 /* MIC start is on an odd boundary */
482 mic_buf[0] = skb->data[skb->len - 1];
483 mic = &mic_buf[1];
484 offset = skb->len - 1;
485 len = MICHAEL_MIC_LEN + 1;
486 } else {
487 mic = &mic_buf[0];
488 offset = skb->len;
489 len = MICHAEL_MIC_LEN;
492 orinoco_mic(priv->tx_tfm_mic, key->tx_mic,
493 eh->h_dest, eh->h_source, 0 /* priority */,
494 skb->data + ETH_HLEN, skb->len - ETH_HLEN, mic);
496 /* Write the MIC */
497 err = hw->ops->bap_pwrite(hw, USER_BAP, &mic_buf[0], len,
498 txfid, HERMES_802_3_OFFSET + offset);
499 if (err) {
500 printk(KERN_ERR "%s: Error %d writing MIC to BAP\n",
501 dev->name, err);
502 goto busy;
506 /* Finally, we actually initiate the send */
507 netif_stop_queue(dev);
509 err = hw->ops->cmd_wait(hw, HERMES_CMD_TX | HERMES_CMD_RECL,
510 txfid, NULL);
511 if (err) {
512 netif_start_queue(dev);
513 if (net_ratelimit())
514 printk(KERN_ERR "%s: Error %d transmitting packet\n",
515 dev->name, err);
516 goto busy;
519 dev->trans_start = jiffies;
520 stats->tx_bytes += HERMES_802_3_OFFSET + skb->len;
521 goto ok;
523 drop:
524 stats->tx_errors++;
525 stats->tx_dropped++;
528 orinoco_unlock(priv, &flags);
529 dev_kfree_skb(skb);
530 return NETDEV_TX_OK;
532 busy:
533 if (err == -EIO)
534 schedule_work(&priv->reset_work);
535 orinoco_unlock(priv, &flags);
536 return NETDEV_TX_BUSY;
539 static void __orinoco_ev_alloc(struct net_device *dev, hermes_t *hw)
541 struct orinoco_private *priv = ndev_priv(dev);
542 u16 fid = hermes_read_regn(hw, ALLOCFID);
544 if (fid != priv->txfid) {
545 if (fid != DUMMY_FID)
546 printk(KERN_WARNING "%s: Allocate event on unexpected fid (%04X)\n",
547 dev->name, fid);
548 return;
551 hermes_write_regn(hw, ALLOCFID, DUMMY_FID);
554 static void __orinoco_ev_tx(struct net_device *dev, hermes_t *hw)
556 struct orinoco_private *priv = ndev_priv(dev);
557 struct net_device_stats *stats = &priv->stats;
559 stats->tx_packets++;
561 netif_wake_queue(dev);
563 hermes_write_regn(hw, TXCOMPLFID, DUMMY_FID);
566 static void __orinoco_ev_txexc(struct net_device *dev, hermes_t *hw)
568 struct orinoco_private *priv = ndev_priv(dev);
569 struct net_device_stats *stats = &priv->stats;
570 u16 fid = hermes_read_regn(hw, TXCOMPLFID);
571 u16 status;
572 struct hermes_txexc_data hdr;
573 int err = 0;
575 if (fid == DUMMY_FID)
576 return; /* Nothing's really happened */
578 /* Read part of the frame header - we need status and addr1 */
579 err = hw->ops->bap_pread(hw, IRQ_BAP, &hdr,
580 sizeof(struct hermes_txexc_data),
581 fid, 0);
583 hermes_write_regn(hw, TXCOMPLFID, DUMMY_FID);
584 stats->tx_errors++;
586 if (err) {
587 printk(KERN_WARNING "%s: Unable to read descriptor on Tx error "
588 "(FID=%04X error %d)\n",
589 dev->name, fid, err);
590 return;
593 DEBUG(1, "%s: Tx error, err %d (FID=%04X)\n", dev->name,
594 err, fid);
596 /* We produce a TXDROP event only for retry or lifetime
597 * exceeded, because that's the only status that really mean
598 * that this particular node went away.
599 * Other errors means that *we* screwed up. - Jean II */
600 status = le16_to_cpu(hdr.desc.status);
601 if (status & (HERMES_TXSTAT_RETRYERR | HERMES_TXSTAT_AGEDERR)) {
602 union iwreq_data wrqu;
604 /* Copy 802.11 dest address.
605 * We use the 802.11 header because the frame may
606 * not be 802.3 or may be mangled...
607 * In Ad-Hoc mode, it will be the node address.
608 * In managed mode, it will be most likely the AP addr
609 * User space will figure out how to convert it to
610 * whatever it needs (IP address or else).
611 * - Jean II */
612 memcpy(wrqu.addr.sa_data, hdr.addr1, ETH_ALEN);
613 wrqu.addr.sa_family = ARPHRD_ETHER;
615 /* Send event to user space */
616 wireless_send_event(dev, IWEVTXDROP, &wrqu, NULL);
619 netif_wake_queue(dev);
622 void orinoco_tx_timeout(struct net_device *dev)
624 struct orinoco_private *priv = ndev_priv(dev);
625 struct net_device_stats *stats = &priv->stats;
626 struct hermes *hw = &priv->hw;
628 printk(KERN_WARNING "%s: Tx timeout! "
629 "ALLOCFID=%04x, TXCOMPLFID=%04x, EVSTAT=%04x\n",
630 dev->name, hermes_read_regn(hw, ALLOCFID),
631 hermes_read_regn(hw, TXCOMPLFID), hermes_read_regn(hw, EVSTAT));
633 stats->tx_errors++;
635 schedule_work(&priv->reset_work);
637 EXPORT_SYMBOL(orinoco_tx_timeout);
639 /********************************************************************/
640 /* Rx path (data frames) */
641 /********************************************************************/
643 /* Does the frame have a SNAP header indicating it should be
644 * de-encapsulated to Ethernet-II? */
645 static inline int is_ethersnap(void *_hdr)
647 u8 *hdr = _hdr;
649 /* We de-encapsulate all packets which, a) have SNAP headers
650 * (i.e. SSAP=DSAP=0xaa and CTRL=0x3 in the 802.2 LLC header
651 * and where b) the OUI of the SNAP header is 00:00:00 or
652 * 00:00:f8 - we need both because different APs appear to use
653 * different OUIs for some reason */
654 return (memcmp(hdr, &encaps_hdr, 5) == 0)
655 && ((hdr[5] == 0x00) || (hdr[5] == 0xf8));
658 static inline void orinoco_spy_gather(struct net_device *dev, u_char *mac,
659 int level, int noise)
661 struct iw_quality wstats;
662 wstats.level = level - 0x95;
663 wstats.noise = noise - 0x95;
664 wstats.qual = (level > noise) ? (level - noise) : 0;
665 wstats.updated = IW_QUAL_ALL_UPDATED | IW_QUAL_DBM;
666 /* Update spy records */
667 wireless_spy_update(dev, mac, &wstats);
670 static void orinoco_stat_gather(struct net_device *dev,
671 struct sk_buff *skb,
672 struct hermes_rx_descriptor *desc)
674 struct orinoco_private *priv = ndev_priv(dev);
676 /* Using spy support with lots of Rx packets, like in an
677 * infrastructure (AP), will really slow down everything, because
678 * the MAC address must be compared to each entry of the spy list.
679 * If the user really asks for it (set some address in the
680 * spy list), we do it, but he will pay the price.
681 * Note that to get here, you need both WIRELESS_SPY
682 * compiled in AND some addresses in the list !!!
684 /* Note : gcc will optimise the whole section away if
685 * WIRELESS_SPY is not defined... - Jean II */
686 if (SPY_NUMBER(priv)) {
687 orinoco_spy_gather(dev, skb_mac_header(skb) + ETH_ALEN,
688 desc->signal, desc->silence);
693 * orinoco_rx_monitor - handle received monitor frames.
695 * Arguments:
696 * dev network device
697 * rxfid received FID
698 * desc rx descriptor of the frame
700 * Call context: interrupt
702 static void orinoco_rx_monitor(struct net_device *dev, u16 rxfid,
703 struct hermes_rx_descriptor *desc)
705 u32 hdrlen = 30; /* return full header by default */
706 u32 datalen = 0;
707 u16 fc;
708 int err;
709 int len;
710 struct sk_buff *skb;
711 struct orinoco_private *priv = ndev_priv(dev);
712 struct net_device_stats *stats = &priv->stats;
713 hermes_t *hw = &priv->hw;
715 len = le16_to_cpu(desc->data_len);
717 /* Determine the size of the header and the data */
718 fc = le16_to_cpu(desc->frame_ctl);
719 switch (fc & IEEE80211_FCTL_FTYPE) {
720 case IEEE80211_FTYPE_DATA:
721 if ((fc & IEEE80211_FCTL_TODS)
722 && (fc & IEEE80211_FCTL_FROMDS))
723 hdrlen = 30;
724 else
725 hdrlen = 24;
726 datalen = len;
727 break;
728 case IEEE80211_FTYPE_MGMT:
729 hdrlen = 24;
730 datalen = len;
731 break;
732 case IEEE80211_FTYPE_CTL:
733 switch (fc & IEEE80211_FCTL_STYPE) {
734 case IEEE80211_STYPE_PSPOLL:
735 case IEEE80211_STYPE_RTS:
736 case IEEE80211_STYPE_CFEND:
737 case IEEE80211_STYPE_CFENDACK:
738 hdrlen = 16;
739 break;
740 case IEEE80211_STYPE_CTS:
741 case IEEE80211_STYPE_ACK:
742 hdrlen = 10;
743 break;
745 break;
746 default:
747 /* Unknown frame type */
748 break;
751 /* sanity check the length */
752 if (datalen > IEEE80211_MAX_DATA_LEN + 12) {
753 printk(KERN_DEBUG "%s: oversized monitor frame, "
754 "data length = %d\n", dev->name, datalen);
755 stats->rx_length_errors++;
756 goto update_stats;
759 skb = dev_alloc_skb(hdrlen + datalen);
760 if (!skb) {
761 printk(KERN_WARNING "%s: Cannot allocate skb for monitor frame\n",
762 dev->name);
763 goto update_stats;
766 /* Copy the 802.11 header to the skb */
767 memcpy(skb_put(skb, hdrlen), &(desc->frame_ctl), hdrlen);
768 skb_reset_mac_header(skb);
770 /* If any, copy the data from the card to the skb */
771 if (datalen > 0) {
772 err = hw->ops->bap_pread(hw, IRQ_BAP, skb_put(skb, datalen),
773 ALIGN(datalen, 2), rxfid,
774 HERMES_802_2_OFFSET);
775 if (err) {
776 printk(KERN_ERR "%s: error %d reading monitor frame\n",
777 dev->name, err);
778 goto drop;
782 skb->dev = dev;
783 skb->ip_summed = CHECKSUM_NONE;
784 skb->pkt_type = PACKET_OTHERHOST;
785 skb->protocol = cpu_to_be16(ETH_P_802_2);
787 stats->rx_packets++;
788 stats->rx_bytes += skb->len;
790 netif_rx(skb);
791 return;
793 drop:
794 dev_kfree_skb_irq(skb);
795 update_stats:
796 stats->rx_errors++;
797 stats->rx_dropped++;
800 void __orinoco_ev_rx(struct net_device *dev, hermes_t *hw)
802 struct orinoco_private *priv = ndev_priv(dev);
803 struct net_device_stats *stats = &priv->stats;
804 struct iw_statistics *wstats = &priv->wstats;
805 struct sk_buff *skb = NULL;
806 u16 rxfid, status;
807 int length;
808 struct hermes_rx_descriptor *desc;
809 struct orinoco_rx_data *rx_data;
810 int err;
812 desc = kmalloc(sizeof(*desc), GFP_ATOMIC);
813 if (!desc) {
814 printk(KERN_WARNING
815 "%s: Can't allocate space for RX descriptor\n",
816 dev->name);
817 goto update_stats;
820 rxfid = hermes_read_regn(hw, RXFID);
822 err = hw->ops->bap_pread(hw, IRQ_BAP, desc, sizeof(*desc),
823 rxfid, 0);
824 if (err) {
825 printk(KERN_ERR "%s: error %d reading Rx descriptor. "
826 "Frame dropped.\n", dev->name, err);
827 goto update_stats;
830 status = le16_to_cpu(desc->status);
832 if (status & HERMES_RXSTAT_BADCRC) {
833 DEBUG(1, "%s: Bad CRC on Rx. Frame dropped.\n",
834 dev->name);
835 stats->rx_crc_errors++;
836 goto update_stats;
839 /* Handle frames in monitor mode */
840 if (priv->iw_mode == NL80211_IFTYPE_MONITOR) {
841 orinoco_rx_monitor(dev, rxfid, desc);
842 goto out;
845 if (status & HERMES_RXSTAT_UNDECRYPTABLE) {
846 DEBUG(1, "%s: Undecryptable frame on Rx. Frame dropped.\n",
847 dev->name);
848 wstats->discard.code++;
849 goto update_stats;
852 length = le16_to_cpu(desc->data_len);
854 /* Sanity checks */
855 if (length < 3) { /* No for even an 802.2 LLC header */
856 /* At least on Symbol firmware with PCF we get quite a
857 lot of these legitimately - Poll frames with no
858 data. */
859 goto out;
861 if (length > IEEE80211_MAX_DATA_LEN) {
862 printk(KERN_WARNING "%s: Oversized frame received (%d bytes)\n",
863 dev->name, length);
864 stats->rx_length_errors++;
865 goto update_stats;
868 /* Payload size does not include Michael MIC. Increase payload
869 * size to read it together with the data. */
870 if (status & HERMES_RXSTAT_MIC)
871 length += MICHAEL_MIC_LEN;
873 /* We need space for the packet data itself, plus an ethernet
874 header, plus 2 bytes so we can align the IP header on a
875 32bit boundary, plus 1 byte so we can read in odd length
876 packets from the card, which has an IO granularity of 16
877 bits */
878 skb = dev_alloc_skb(length+ETH_HLEN+2+1);
879 if (!skb) {
880 printk(KERN_WARNING "%s: Can't allocate skb for Rx\n",
881 dev->name);
882 goto update_stats;
885 /* We'll prepend the header, so reserve space for it. The worst
886 case is no decapsulation, when 802.3 header is prepended and
887 nothing is removed. 2 is for aligning the IP header. */
888 skb_reserve(skb, ETH_HLEN + 2);
890 err = hw->ops->bap_pread(hw, IRQ_BAP, skb_put(skb, length),
891 ALIGN(length, 2), rxfid,
892 HERMES_802_2_OFFSET);
893 if (err) {
894 printk(KERN_ERR "%s: error %d reading frame. "
895 "Frame dropped.\n", dev->name, err);
896 goto drop;
899 /* Add desc and skb to rx queue */
900 rx_data = kzalloc(sizeof(*rx_data), GFP_ATOMIC);
901 if (!rx_data) {
902 printk(KERN_WARNING "%s: Can't allocate RX packet\n",
903 dev->name);
904 goto drop;
906 rx_data->desc = desc;
907 rx_data->skb = skb;
908 list_add_tail(&rx_data->list, &priv->rx_list);
909 tasklet_schedule(&priv->rx_tasklet);
911 return;
913 drop:
914 dev_kfree_skb_irq(skb);
915 update_stats:
916 stats->rx_errors++;
917 stats->rx_dropped++;
918 out:
919 kfree(desc);
921 EXPORT_SYMBOL(__orinoco_ev_rx);
923 static void orinoco_rx(struct net_device *dev,
924 struct hermes_rx_descriptor *desc,
925 struct sk_buff *skb)
927 struct orinoco_private *priv = ndev_priv(dev);
928 struct net_device_stats *stats = &priv->stats;
929 u16 status, fc;
930 int length;
931 struct ethhdr *hdr;
933 status = le16_to_cpu(desc->status);
934 length = le16_to_cpu(desc->data_len);
935 fc = le16_to_cpu(desc->frame_ctl);
937 /* Calculate and check MIC */
938 if (status & HERMES_RXSTAT_MIC) {
939 struct orinoco_tkip_key *key;
940 int key_id = ((status & HERMES_RXSTAT_MIC_KEY_ID) >>
941 HERMES_MIC_KEY_ID_SHIFT);
942 u8 mic[MICHAEL_MIC_LEN];
943 u8 *rxmic;
944 u8 *src = (fc & IEEE80211_FCTL_FROMDS) ?
945 desc->addr3 : desc->addr2;
947 /* Extract Michael MIC from payload */
948 rxmic = skb->data + skb->len - MICHAEL_MIC_LEN;
950 skb_trim(skb, skb->len - MICHAEL_MIC_LEN);
951 length -= MICHAEL_MIC_LEN;
953 key = (struct orinoco_tkip_key *) priv->keys[key_id].key;
955 if (!key) {
956 printk(KERN_WARNING "%s: Received encrypted frame from "
957 "%pM using key %i, but key is not installed\n",
958 dev->name, src, key_id);
959 goto drop;
962 orinoco_mic(priv->rx_tfm_mic, key->rx_mic, desc->addr1, src,
963 0, /* priority or QoS? */
964 skb->data, skb->len, &mic[0]);
966 if (memcmp(mic, rxmic,
967 MICHAEL_MIC_LEN)) {
968 union iwreq_data wrqu;
969 struct iw_michaelmicfailure wxmic;
971 printk(KERN_WARNING "%s: "
972 "Invalid Michael MIC in data frame from %pM, "
973 "using key %i\n",
974 dev->name, src, key_id);
976 /* TODO: update stats */
978 /* Notify userspace */
979 memset(&wxmic, 0, sizeof(wxmic));
980 wxmic.flags = key_id & IW_MICFAILURE_KEY_ID;
981 wxmic.flags |= (desc->addr1[0] & 1) ?
982 IW_MICFAILURE_GROUP : IW_MICFAILURE_PAIRWISE;
983 wxmic.src_addr.sa_family = ARPHRD_ETHER;
984 memcpy(wxmic.src_addr.sa_data, src, ETH_ALEN);
986 (void) orinoco_hw_get_tkip_iv(priv, key_id,
987 &wxmic.tsc[0]);
989 memset(&wrqu, 0, sizeof(wrqu));
990 wrqu.data.length = sizeof(wxmic);
991 wireless_send_event(dev, IWEVMICHAELMICFAILURE, &wrqu,
992 (char *) &wxmic);
994 goto drop;
998 /* Handle decapsulation
999 * In most cases, the firmware tell us about SNAP frames.
1000 * For some reason, the SNAP frames sent by LinkSys APs
1001 * are not properly recognised by most firmwares.
1002 * So, check ourselves */
1003 if (length >= ENCAPS_OVERHEAD &&
1004 (((status & HERMES_RXSTAT_MSGTYPE) == HERMES_RXSTAT_1042) ||
1005 ((status & HERMES_RXSTAT_MSGTYPE) == HERMES_RXSTAT_TUNNEL) ||
1006 is_ethersnap(skb->data))) {
1007 /* These indicate a SNAP within 802.2 LLC within
1008 802.11 frame which we'll need to de-encapsulate to
1009 the original EthernetII frame. */
1010 hdr = (struct ethhdr *)skb_push(skb,
1011 ETH_HLEN - ENCAPS_OVERHEAD);
1012 } else {
1013 /* 802.3 frame - prepend 802.3 header as is */
1014 hdr = (struct ethhdr *)skb_push(skb, ETH_HLEN);
1015 hdr->h_proto = htons(length);
1017 memcpy(hdr->h_dest, desc->addr1, ETH_ALEN);
1018 if (fc & IEEE80211_FCTL_FROMDS)
1019 memcpy(hdr->h_source, desc->addr3, ETH_ALEN);
1020 else
1021 memcpy(hdr->h_source, desc->addr2, ETH_ALEN);
1023 skb->protocol = eth_type_trans(skb, dev);
1024 skb->ip_summed = CHECKSUM_NONE;
1025 if (fc & IEEE80211_FCTL_TODS)
1026 skb->pkt_type = PACKET_OTHERHOST;
1028 /* Process the wireless stats if needed */
1029 orinoco_stat_gather(dev, skb, desc);
1031 /* Pass the packet to the networking stack */
1032 netif_rx(skb);
1033 stats->rx_packets++;
1034 stats->rx_bytes += length;
1036 return;
1038 drop:
1039 dev_kfree_skb(skb);
1040 stats->rx_errors++;
1041 stats->rx_dropped++;
1044 static void orinoco_rx_isr_tasklet(unsigned long data)
1046 struct orinoco_private *priv = (struct orinoco_private *) data;
1047 struct net_device *dev = priv->ndev;
1048 struct orinoco_rx_data *rx_data, *temp;
1049 struct hermes_rx_descriptor *desc;
1050 struct sk_buff *skb;
1051 unsigned long flags;
1053 /* orinoco_rx requires the driver lock, and we also need to
1054 * protect priv->rx_list, so just hold the lock over the
1055 * lot.
1057 * If orinoco_lock fails, we've unplugged the card. In this
1058 * case just abort. */
1059 if (orinoco_lock(priv, &flags) != 0)
1060 return;
1062 /* extract desc and skb from queue */
1063 list_for_each_entry_safe(rx_data, temp, &priv->rx_list, list) {
1064 desc = rx_data->desc;
1065 skb = rx_data->skb;
1066 list_del(&rx_data->list);
1067 kfree(rx_data);
1069 orinoco_rx(dev, desc, skb);
1071 kfree(desc);
1074 orinoco_unlock(priv, &flags);
1077 /********************************************************************/
1078 /* Rx path (info frames) */
1079 /********************************************************************/
1081 static void print_linkstatus(struct net_device *dev, u16 status)
1083 char *s;
1085 if (suppress_linkstatus)
1086 return;
1088 switch (status) {
1089 case HERMES_LINKSTATUS_NOT_CONNECTED:
1090 s = "Not Connected";
1091 break;
1092 case HERMES_LINKSTATUS_CONNECTED:
1093 s = "Connected";
1094 break;
1095 case HERMES_LINKSTATUS_DISCONNECTED:
1096 s = "Disconnected";
1097 break;
1098 case HERMES_LINKSTATUS_AP_CHANGE:
1099 s = "AP Changed";
1100 break;
1101 case HERMES_LINKSTATUS_AP_OUT_OF_RANGE:
1102 s = "AP Out of Range";
1103 break;
1104 case HERMES_LINKSTATUS_AP_IN_RANGE:
1105 s = "AP In Range";
1106 break;
1107 case HERMES_LINKSTATUS_ASSOC_FAILED:
1108 s = "Association Failed";
1109 break;
1110 default:
1111 s = "UNKNOWN";
1114 printk(KERN_DEBUG "%s: New link status: %s (%04x)\n",
1115 dev->name, s, status);
1118 /* Search scan results for requested BSSID, join it if found */
1119 static void orinoco_join_ap(struct work_struct *work)
1121 struct orinoco_private *priv =
1122 container_of(work, struct orinoco_private, join_work);
1123 struct net_device *dev = priv->ndev;
1124 struct hermes *hw = &priv->hw;
1125 int err;
1126 unsigned long flags;
1127 struct join_req {
1128 u8 bssid[ETH_ALEN];
1129 __le16 channel;
1130 } __attribute__ ((packed)) req;
1131 const int atom_len = offsetof(struct prism2_scan_apinfo, atim);
1132 struct prism2_scan_apinfo *atom = NULL;
1133 int offset = 4;
1134 int found = 0;
1135 u8 *buf;
1136 u16 len;
1138 /* Allocate buffer for scan results */
1139 buf = kmalloc(MAX_SCAN_LEN, GFP_KERNEL);
1140 if (!buf)
1141 return;
1143 if (orinoco_lock(priv, &flags) != 0)
1144 goto fail_lock;
1146 /* Sanity checks in case user changed something in the meantime */
1147 if (!priv->bssid_fixed)
1148 goto out;
1150 if (strlen(priv->desired_essid) == 0)
1151 goto out;
1153 /* Read scan results from the firmware */
1154 err = hw->ops->read_ltv(hw, USER_BAP,
1155 HERMES_RID_SCANRESULTSTABLE,
1156 MAX_SCAN_LEN, &len, buf);
1157 if (err) {
1158 printk(KERN_ERR "%s: Cannot read scan results\n",
1159 dev->name);
1160 goto out;
1163 len = HERMES_RECLEN_TO_BYTES(len);
1165 /* Go through the scan results looking for the channel of the AP
1166 * we were requested to join */
1167 for (; offset + atom_len <= len; offset += atom_len) {
1168 atom = (struct prism2_scan_apinfo *) (buf + offset);
1169 if (memcmp(&atom->bssid, priv->desired_bssid, ETH_ALEN) == 0) {
1170 found = 1;
1171 break;
1175 if (!found) {
1176 DEBUG(1, "%s: Requested AP not found in scan results\n",
1177 dev->name);
1178 goto out;
1181 memcpy(req.bssid, priv->desired_bssid, ETH_ALEN);
1182 req.channel = atom->channel; /* both are little-endian */
1183 err = HERMES_WRITE_RECORD(hw, USER_BAP, HERMES_RID_CNFJOINREQUEST,
1184 &req);
1185 if (err)
1186 printk(KERN_ERR "%s: Error issuing join request\n", dev->name);
1188 out:
1189 orinoco_unlock(priv, &flags);
1191 fail_lock:
1192 kfree(buf);
1195 /* Send new BSSID to userspace */
1196 static void orinoco_send_bssid_wevent(struct orinoco_private *priv)
1198 struct net_device *dev = priv->ndev;
1199 struct hermes *hw = &priv->hw;
1200 union iwreq_data wrqu;
1201 int err;
1203 err = hw->ops->read_ltv(hw, USER_BAP, HERMES_RID_CURRENTBSSID,
1204 ETH_ALEN, NULL, wrqu.ap_addr.sa_data);
1205 if (err != 0)
1206 return;
1208 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
1210 /* Send event to user space */
1211 wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL);
1214 static void orinoco_send_assocreqie_wevent(struct orinoco_private *priv)
1216 struct net_device *dev = priv->ndev;
1217 struct hermes *hw = &priv->hw;
1218 union iwreq_data wrqu;
1219 int err;
1220 u8 buf[88];
1221 u8 *ie;
1223 if (!priv->has_wpa)
1224 return;
1226 err = hw->ops->read_ltv(hw, USER_BAP, HERMES_RID_CURRENT_ASSOC_REQ_INFO,
1227 sizeof(buf), NULL, &buf);
1228 if (err != 0)
1229 return;
1231 ie = orinoco_get_wpa_ie(buf, sizeof(buf));
1232 if (ie) {
1233 int rem = sizeof(buf) - (ie - &buf[0]);
1234 wrqu.data.length = ie[1] + 2;
1235 if (wrqu.data.length > rem)
1236 wrqu.data.length = rem;
1238 if (wrqu.data.length)
1239 /* Send event to user space */
1240 wireless_send_event(dev, IWEVASSOCREQIE, &wrqu, ie);
1244 static void orinoco_send_assocrespie_wevent(struct orinoco_private *priv)
1246 struct net_device *dev = priv->ndev;
1247 struct hermes *hw = &priv->hw;
1248 union iwreq_data wrqu;
1249 int err;
1250 u8 buf[88]; /* TODO: verify max size or IW_GENERIC_IE_MAX */
1251 u8 *ie;
1253 if (!priv->has_wpa)
1254 return;
1256 err = hw->ops->read_ltv(hw, USER_BAP,
1257 HERMES_RID_CURRENT_ASSOC_RESP_INFO,
1258 sizeof(buf), NULL, &buf);
1259 if (err != 0)
1260 return;
1262 ie = orinoco_get_wpa_ie(buf, sizeof(buf));
1263 if (ie) {
1264 int rem = sizeof(buf) - (ie - &buf[0]);
1265 wrqu.data.length = ie[1] + 2;
1266 if (wrqu.data.length > rem)
1267 wrqu.data.length = rem;
1269 if (wrqu.data.length)
1270 /* Send event to user space */
1271 wireless_send_event(dev, IWEVASSOCRESPIE, &wrqu, ie);
1275 static void orinoco_send_wevents(struct work_struct *work)
1277 struct orinoco_private *priv =
1278 container_of(work, struct orinoco_private, wevent_work);
1279 unsigned long flags;
1281 if (orinoco_lock(priv, &flags) != 0)
1282 return;
1284 orinoco_send_assocreqie_wevent(priv);
1285 orinoco_send_assocrespie_wevent(priv);
1286 orinoco_send_bssid_wevent(priv);
1288 orinoco_unlock(priv, &flags);
1291 static void qbuf_scan(struct orinoco_private *priv, void *buf,
1292 int len, int type)
1294 struct orinoco_scan_data *sd;
1295 unsigned long flags;
1297 sd = kmalloc(sizeof(*sd), GFP_ATOMIC);
1298 sd->buf = buf;
1299 sd->len = len;
1300 sd->type = type;
1302 spin_lock_irqsave(&priv->scan_lock, flags);
1303 list_add_tail(&sd->list, &priv->scan_list);
1304 spin_unlock_irqrestore(&priv->scan_lock, flags);
1306 schedule_work(&priv->process_scan);
1309 static void qabort_scan(struct orinoco_private *priv)
1311 struct orinoco_scan_data *sd;
1312 unsigned long flags;
1314 sd = kmalloc(sizeof(*sd), GFP_ATOMIC);
1315 sd->len = -1; /* Abort */
1317 spin_lock_irqsave(&priv->scan_lock, flags);
1318 list_add_tail(&sd->list, &priv->scan_list);
1319 spin_unlock_irqrestore(&priv->scan_lock, flags);
1321 schedule_work(&priv->process_scan);
1324 static void orinoco_process_scan_results(struct work_struct *work)
1326 struct orinoco_private *priv =
1327 container_of(work, struct orinoco_private, process_scan);
1328 struct orinoco_scan_data *sd, *temp;
1329 unsigned long flags;
1330 void *buf;
1331 int len;
1332 int type;
1334 spin_lock_irqsave(&priv->scan_lock, flags);
1335 list_for_each_entry_safe(sd, temp, &priv->scan_list, list) {
1336 spin_unlock_irqrestore(&priv->scan_lock, flags);
1338 buf = sd->buf;
1339 len = sd->len;
1340 type = sd->type;
1342 list_del(&sd->list);
1343 kfree(sd);
1345 if (len > 0) {
1346 if (type == HERMES_INQ_CHANNELINFO)
1347 orinoco_add_extscan_result(priv, buf, len);
1348 else
1349 orinoco_add_hostscan_results(priv, buf, len);
1351 kfree(buf);
1352 } else if (priv->scan_request) {
1353 /* Either abort or complete the scan */
1354 cfg80211_scan_done(priv->scan_request, (len < 0));
1355 priv->scan_request = NULL;
1358 spin_lock_irqsave(&priv->scan_lock, flags);
1360 spin_unlock_irqrestore(&priv->scan_lock, flags);
1363 void __orinoco_ev_info(struct net_device *dev, hermes_t *hw)
1365 struct orinoco_private *priv = ndev_priv(dev);
1366 u16 infofid;
1367 struct {
1368 __le16 len;
1369 __le16 type;
1370 } __attribute__ ((packed)) info;
1371 int len, type;
1372 int err;
1374 /* This is an answer to an INQUIRE command that we did earlier,
1375 * or an information "event" generated by the card
1376 * The controller return to us a pseudo frame containing
1377 * the information in question - Jean II */
1378 infofid = hermes_read_regn(hw, INFOFID);
1380 /* Read the info frame header - don't try too hard */
1381 err = hw->ops->bap_pread(hw, IRQ_BAP, &info, sizeof(info),
1382 infofid, 0);
1383 if (err) {
1384 printk(KERN_ERR "%s: error %d reading info frame. "
1385 "Frame dropped.\n", dev->name, err);
1386 return;
1389 len = HERMES_RECLEN_TO_BYTES(le16_to_cpu(info.len));
1390 type = le16_to_cpu(info.type);
1392 switch (type) {
1393 case HERMES_INQ_TALLIES: {
1394 struct hermes_tallies_frame tallies;
1395 struct iw_statistics *wstats = &priv->wstats;
1397 if (len > sizeof(tallies)) {
1398 printk(KERN_WARNING "%s: Tallies frame too long (%d bytes)\n",
1399 dev->name, len);
1400 len = sizeof(tallies);
1403 err = hw->ops->bap_pread(hw, IRQ_BAP, &tallies, len,
1404 infofid, sizeof(info));
1405 if (err)
1406 break;
1408 /* Increment our various counters */
1409 /* wstats->discard.nwid - no wrong BSSID stuff */
1410 wstats->discard.code +=
1411 le16_to_cpu(tallies.RxWEPUndecryptable);
1412 if (len == sizeof(tallies))
1413 wstats->discard.code +=
1414 le16_to_cpu(tallies.RxDiscards_WEPICVError) +
1415 le16_to_cpu(tallies.RxDiscards_WEPExcluded);
1416 wstats->discard.misc +=
1417 le16_to_cpu(tallies.TxDiscardsWrongSA);
1418 wstats->discard.fragment +=
1419 le16_to_cpu(tallies.RxMsgInBadMsgFragments);
1420 wstats->discard.retries +=
1421 le16_to_cpu(tallies.TxRetryLimitExceeded);
1422 /* wstats->miss.beacon - no match */
1424 break;
1425 case HERMES_INQ_LINKSTATUS: {
1426 struct hermes_linkstatus linkstatus;
1427 u16 newstatus;
1428 int connected;
1430 if (priv->iw_mode == NL80211_IFTYPE_MONITOR)
1431 break;
1433 if (len != sizeof(linkstatus)) {
1434 printk(KERN_WARNING "%s: Unexpected size for linkstatus frame (%d bytes)\n",
1435 dev->name, len);
1436 break;
1439 err = hw->ops->bap_pread(hw, IRQ_BAP, &linkstatus, len,
1440 infofid, sizeof(info));
1441 if (err)
1442 break;
1443 newstatus = le16_to_cpu(linkstatus.linkstatus);
1445 /* Symbol firmware uses "out of range" to signal that
1446 * the hostscan frame can be requested. */
1447 if (newstatus == HERMES_LINKSTATUS_AP_OUT_OF_RANGE &&
1448 priv->firmware_type == FIRMWARE_TYPE_SYMBOL &&
1449 priv->has_hostscan && priv->scan_request) {
1450 hermes_inquire(hw, HERMES_INQ_HOSTSCAN_SYMBOL);
1451 break;
1454 connected = (newstatus == HERMES_LINKSTATUS_CONNECTED)
1455 || (newstatus == HERMES_LINKSTATUS_AP_CHANGE)
1456 || (newstatus == HERMES_LINKSTATUS_AP_IN_RANGE);
1458 if (connected)
1459 netif_carrier_on(dev);
1460 else if (!ignore_disconnect)
1461 netif_carrier_off(dev);
1463 if (newstatus != priv->last_linkstatus) {
1464 priv->last_linkstatus = newstatus;
1465 print_linkstatus(dev, newstatus);
1466 /* The info frame contains only one word which is the
1467 * status (see hermes.h). The status is pretty boring
1468 * in itself, that's why we export the new BSSID...
1469 * Jean II */
1470 schedule_work(&priv->wevent_work);
1473 break;
1474 case HERMES_INQ_SCAN:
1475 if (!priv->scan_request && priv->bssid_fixed &&
1476 priv->firmware_type == FIRMWARE_TYPE_INTERSIL) {
1477 schedule_work(&priv->join_work);
1478 break;
1480 /* fall through */
1481 case HERMES_INQ_HOSTSCAN:
1482 case HERMES_INQ_HOSTSCAN_SYMBOL: {
1483 /* Result of a scanning. Contains information about
1484 * cells in the vicinity - Jean II */
1485 unsigned char *buf;
1487 /* Sanity check */
1488 if (len > 4096) {
1489 printk(KERN_WARNING "%s: Scan results too large (%d bytes)\n",
1490 dev->name, len);
1491 qabort_scan(priv);
1492 break;
1495 /* Allocate buffer for results */
1496 buf = kmalloc(len, GFP_ATOMIC);
1497 if (buf == NULL) {
1498 /* No memory, so can't printk()... */
1499 qabort_scan(priv);
1500 break;
1503 /* Read scan data */
1504 err = hw->ops->bap_pread(hw, IRQ_BAP, (void *) buf, len,
1505 infofid, sizeof(info));
1506 if (err) {
1507 kfree(buf);
1508 qabort_scan(priv);
1509 break;
1512 #ifdef ORINOCO_DEBUG
1514 int i;
1515 printk(KERN_DEBUG "Scan result [%02X", buf[0]);
1516 for (i = 1; i < (len * 2); i++)
1517 printk(":%02X", buf[i]);
1518 printk("]\n");
1520 #endif /* ORINOCO_DEBUG */
1522 qbuf_scan(priv, buf, len, type);
1524 break;
1525 case HERMES_INQ_CHANNELINFO:
1527 struct agere_ext_scan_info *bss;
1529 if (!priv->scan_request) {
1530 printk(KERN_DEBUG "%s: Got chaninfo without scan, "
1531 "len=%d\n", dev->name, len);
1532 break;
1535 /* An empty result indicates that the scan is complete */
1536 if (len == 0) {
1537 qbuf_scan(priv, NULL, len, type);
1538 break;
1541 /* Sanity check */
1542 else if (len < (offsetof(struct agere_ext_scan_info,
1543 data) + 2)) {
1544 /* Drop this result now so we don't have to
1545 * keep checking later */
1546 printk(KERN_WARNING
1547 "%s: Ext scan results too short (%d bytes)\n",
1548 dev->name, len);
1549 break;
1552 bss = kmalloc(len, GFP_ATOMIC);
1553 if (bss == NULL)
1554 break;
1556 /* Read scan data */
1557 err = hw->ops->bap_pread(hw, IRQ_BAP, (void *) bss, len,
1558 infofid, sizeof(info));
1559 if (err)
1560 kfree(bss);
1561 else
1562 qbuf_scan(priv, bss, len, type);
1564 break;
1566 case HERMES_INQ_SEC_STAT_AGERE:
1567 /* Security status (Agere specific) */
1568 /* Ignore this frame for now */
1569 if (priv->firmware_type == FIRMWARE_TYPE_AGERE)
1570 break;
1571 /* fall through */
1572 default:
1573 printk(KERN_DEBUG "%s: Unknown information frame received: "
1574 "type 0x%04x, length %d\n", dev->name, type, len);
1575 /* We don't actually do anything about it */
1576 break;
1579 return;
1581 EXPORT_SYMBOL(__orinoco_ev_info);
1583 static void __orinoco_ev_infdrop(struct net_device *dev, hermes_t *hw)
1585 if (net_ratelimit())
1586 printk(KERN_DEBUG "%s: Information frame lost.\n", dev->name);
1589 /********************************************************************/
1590 /* Internal hardware control routines */
1591 /********************************************************************/
1593 static int __orinoco_up(struct orinoco_private *priv)
1595 struct net_device *dev = priv->ndev;
1596 struct hermes *hw = &priv->hw;
1597 int err;
1599 netif_carrier_off(dev); /* just to make sure */
1601 err = __orinoco_commit(priv);
1602 if (err) {
1603 printk(KERN_ERR "%s: Error %d configuring card\n",
1604 dev->name, err);
1605 return err;
1608 /* Fire things up again */
1609 hermes_set_irqmask(hw, ORINOCO_INTEN);
1610 err = hermes_enable_port(hw, 0);
1611 if (err) {
1612 printk(KERN_ERR "%s: Error %d enabling MAC port\n",
1613 dev->name, err);
1614 return err;
1617 netif_start_queue(dev);
1619 return 0;
1622 static int __orinoco_down(struct orinoco_private *priv)
1624 struct net_device *dev = priv->ndev;
1625 struct hermes *hw = &priv->hw;
1626 int err;
1628 netif_stop_queue(dev);
1630 if (!priv->hw_unavailable) {
1631 if (!priv->broken_disableport) {
1632 err = hermes_disable_port(hw, 0);
1633 if (err) {
1634 /* Some firmwares (e.g. Intersil 1.3.x) seem
1635 * to have problems disabling the port, oh
1636 * well, too bad. */
1637 printk(KERN_WARNING "%s: Error %d disabling MAC port\n",
1638 dev->name, err);
1639 priv->broken_disableport = 1;
1642 hermes_set_irqmask(hw, 0);
1643 hermes_write_regn(hw, EVACK, 0xffff);
1646 /* firmware will have to reassociate */
1647 netif_carrier_off(dev);
1648 priv->last_linkstatus = 0xffff;
1650 return 0;
1653 static int orinoco_reinit_firmware(struct orinoco_private *priv)
1655 struct hermes *hw = &priv->hw;
1656 int err;
1658 err = hw->ops->init(hw);
1659 if (priv->do_fw_download && !err) {
1660 err = orinoco_download(priv);
1661 if (err)
1662 priv->do_fw_download = 0;
1664 if (!err)
1665 err = orinoco_hw_allocate_fid(priv);
1667 return err;
1670 static int
1671 __orinoco_set_multicast_list(struct net_device *dev)
1673 struct orinoco_private *priv = ndev_priv(dev);
1674 int err = 0;
1675 int promisc, mc_count;
1677 /* The Hermes doesn't seem to have an allmulti mode, so we go
1678 * into promiscuous mode and let the upper levels deal. */
1679 if ((dev->flags & IFF_PROMISC) || (dev->flags & IFF_ALLMULTI) ||
1680 (netdev_mc_count(dev) > MAX_MULTICAST(priv))) {
1681 promisc = 1;
1682 mc_count = 0;
1683 } else {
1684 promisc = 0;
1685 mc_count = netdev_mc_count(dev);
1688 err = __orinoco_hw_set_multicast_list(priv, dev, mc_count, promisc);
1690 return err;
1693 /* This must be called from user context, without locks held - use
1694 * schedule_work() */
1695 void orinoco_reset(struct work_struct *work)
1697 struct orinoco_private *priv =
1698 container_of(work, struct orinoco_private, reset_work);
1699 struct net_device *dev = priv->ndev;
1700 struct hermes *hw = &priv->hw;
1701 int err;
1702 unsigned long flags;
1704 if (orinoco_lock(priv, &flags) != 0)
1705 /* When the hardware becomes available again, whatever
1706 * detects that is responsible for re-initializing
1707 * it. So no need for anything further */
1708 return;
1710 netif_stop_queue(dev);
1712 /* Shut off interrupts. Depending on what state the hardware
1713 * is in, this might not work, but we'll try anyway */
1714 hermes_set_irqmask(hw, 0);
1715 hermes_write_regn(hw, EVACK, 0xffff);
1717 priv->hw_unavailable++;
1718 priv->last_linkstatus = 0xffff; /* firmware will have to reassociate */
1719 netif_carrier_off(dev);
1721 orinoco_unlock(priv, &flags);
1723 /* Scanning support: Notify scan cancellation */
1724 if (priv->scan_request) {
1725 cfg80211_scan_done(priv->scan_request, 1);
1726 priv->scan_request = NULL;
1729 if (priv->hard_reset) {
1730 err = (*priv->hard_reset)(priv);
1731 if (err) {
1732 printk(KERN_ERR "%s: orinoco_reset: Error %d "
1733 "performing hard reset\n", dev->name, err);
1734 goto disable;
1738 err = orinoco_reinit_firmware(priv);
1739 if (err) {
1740 printk(KERN_ERR "%s: orinoco_reset: Error %d re-initializing firmware\n",
1741 dev->name, err);
1742 goto disable;
1745 /* This has to be called from user context */
1746 orinoco_lock_irq(priv);
1748 priv->hw_unavailable--;
1750 /* priv->open or priv->hw_unavailable might have changed while
1751 * we dropped the lock */
1752 if (priv->open && (!priv->hw_unavailable)) {
1753 err = __orinoco_up(priv);
1754 if (err) {
1755 printk(KERN_ERR "%s: orinoco_reset: Error %d reenabling card\n",
1756 dev->name, err);
1757 } else
1758 dev->trans_start = jiffies;
1761 orinoco_unlock_irq(priv);
1763 return;
1764 disable:
1765 hermes_set_irqmask(hw, 0);
1766 netif_device_detach(dev);
1767 printk(KERN_ERR "%s: Device has been disabled!\n", dev->name);
1770 static int __orinoco_commit(struct orinoco_private *priv)
1772 struct net_device *dev = priv->ndev;
1773 int err = 0;
1775 err = orinoco_hw_program_rids(priv);
1777 /* FIXME: what about netif_tx_lock */
1778 (void) __orinoco_set_multicast_list(dev);
1780 return err;
1783 /* Ensures configuration changes are applied. May result in a reset.
1784 * The caller should hold priv->lock
1786 int orinoco_commit(struct orinoco_private *priv)
1788 struct net_device *dev = priv->ndev;
1789 hermes_t *hw = &priv->hw;
1790 int err;
1792 if (priv->broken_disableport) {
1793 schedule_work(&priv->reset_work);
1794 return 0;
1797 err = hermes_disable_port(hw, 0);
1798 if (err) {
1799 printk(KERN_WARNING "%s: Unable to disable port "
1800 "while reconfiguring card\n", dev->name);
1801 priv->broken_disableport = 1;
1802 goto out;
1805 err = __orinoco_commit(priv);
1806 if (err) {
1807 printk(KERN_WARNING "%s: Unable to reconfigure card\n",
1808 dev->name);
1809 goto out;
1812 err = hermes_enable_port(hw, 0);
1813 if (err) {
1814 printk(KERN_WARNING "%s: Unable to enable port while reconfiguring card\n",
1815 dev->name);
1816 goto out;
1819 out:
1820 if (err) {
1821 printk(KERN_WARNING "%s: Resetting instead...\n", dev->name);
1822 schedule_work(&priv->reset_work);
1823 err = 0;
1825 return err;
1828 /********************************************************************/
1829 /* Interrupt handler */
1830 /********************************************************************/
1832 static void __orinoco_ev_tick(struct net_device *dev, hermes_t *hw)
1834 printk(KERN_DEBUG "%s: TICK\n", dev->name);
1837 static void __orinoco_ev_wterr(struct net_device *dev, hermes_t *hw)
1839 /* This seems to happen a fair bit under load, but ignoring it
1840 seems to work fine...*/
1841 printk(KERN_DEBUG "%s: MAC controller error (WTERR). Ignoring.\n",
1842 dev->name);
1845 irqreturn_t orinoco_interrupt(int irq, void *dev_id)
1847 struct orinoco_private *priv = dev_id;
1848 struct net_device *dev = priv->ndev;
1849 hermes_t *hw = &priv->hw;
1850 int count = MAX_IRQLOOPS_PER_IRQ;
1851 u16 evstat, events;
1852 /* These are used to detect a runaway interrupt situation.
1854 * If we get more than MAX_IRQLOOPS_PER_JIFFY iterations in a jiffy,
1855 * we panic and shut down the hardware
1857 /* jiffies value the last time we were called */
1858 static int last_irq_jiffy; /* = 0 */
1859 static int loops_this_jiffy; /* = 0 */
1860 unsigned long flags;
1862 if (orinoco_lock(priv, &flags) != 0) {
1863 /* If hw is unavailable - we don't know if the irq was
1864 * for us or not */
1865 return IRQ_HANDLED;
1868 evstat = hermes_read_regn(hw, EVSTAT);
1869 events = evstat & hw->inten;
1870 if (!events) {
1871 orinoco_unlock(priv, &flags);
1872 return IRQ_NONE;
1875 if (jiffies != last_irq_jiffy)
1876 loops_this_jiffy = 0;
1877 last_irq_jiffy = jiffies;
1879 while (events && count--) {
1880 if (++loops_this_jiffy > MAX_IRQLOOPS_PER_JIFFY) {
1881 printk(KERN_WARNING "%s: IRQ handler is looping too "
1882 "much! Resetting.\n", dev->name);
1883 /* Disable interrupts for now */
1884 hermes_set_irqmask(hw, 0);
1885 schedule_work(&priv->reset_work);
1886 break;
1889 /* Check the card hasn't been removed */
1890 if (!hermes_present(hw)) {
1891 DEBUG(0, "orinoco_interrupt(): card removed\n");
1892 break;
1895 if (events & HERMES_EV_TICK)
1896 __orinoco_ev_tick(dev, hw);
1897 if (events & HERMES_EV_WTERR)
1898 __orinoco_ev_wterr(dev, hw);
1899 if (events & HERMES_EV_INFDROP)
1900 __orinoco_ev_infdrop(dev, hw);
1901 if (events & HERMES_EV_INFO)
1902 __orinoco_ev_info(dev, hw);
1903 if (events & HERMES_EV_RX)
1904 __orinoco_ev_rx(dev, hw);
1905 if (events & HERMES_EV_TXEXC)
1906 __orinoco_ev_txexc(dev, hw);
1907 if (events & HERMES_EV_TX)
1908 __orinoco_ev_tx(dev, hw);
1909 if (events & HERMES_EV_ALLOC)
1910 __orinoco_ev_alloc(dev, hw);
1912 hermes_write_regn(hw, EVACK, evstat);
1914 evstat = hermes_read_regn(hw, EVSTAT);
1915 events = evstat & hw->inten;
1918 orinoco_unlock(priv, &flags);
1919 return IRQ_HANDLED;
1921 EXPORT_SYMBOL(orinoco_interrupt);
1923 /********************************************************************/
1924 /* Power management */
1925 /********************************************************************/
1926 #if defined(CONFIG_PM_SLEEP) && !defined(CONFIG_HERMES_CACHE_FW_ON_INIT)
1927 static int orinoco_pm_notifier(struct notifier_block *notifier,
1928 unsigned long pm_event,
1929 void *unused)
1931 struct orinoco_private *priv = container_of(notifier,
1932 struct orinoco_private,
1933 pm_notifier);
1935 /* All we need to do is cache the firmware before suspend, and
1936 * release it when we come out.
1938 * Only need to do this if we're downloading firmware. */
1939 if (!priv->do_fw_download)
1940 return NOTIFY_DONE;
1942 switch (pm_event) {
1943 case PM_HIBERNATION_PREPARE:
1944 case PM_SUSPEND_PREPARE:
1945 orinoco_cache_fw(priv, 0);
1946 break;
1948 case PM_POST_RESTORE:
1949 /* Restore from hibernation failed. We need to clean
1950 * up in exactly the same way, so fall through. */
1951 case PM_POST_HIBERNATION:
1952 case PM_POST_SUSPEND:
1953 orinoco_uncache_fw(priv);
1954 break;
1956 case PM_RESTORE_PREPARE:
1957 default:
1958 break;
1961 return NOTIFY_DONE;
1964 static void orinoco_register_pm_notifier(struct orinoco_private *priv)
1966 priv->pm_notifier.notifier_call = orinoco_pm_notifier;
1967 register_pm_notifier(&priv->pm_notifier);
1970 static void orinoco_unregister_pm_notifier(struct orinoco_private *priv)
1972 unregister_pm_notifier(&priv->pm_notifier);
1974 #else /* !PM_SLEEP || HERMES_CACHE_FW_ON_INIT */
1975 #define orinoco_register_pm_notifier(priv) do { } while(0)
1976 #define orinoco_unregister_pm_notifier(priv) do { } while(0)
1977 #endif
1979 /********************************************************************/
1980 /* Initialization */
1981 /********************************************************************/
1983 int orinoco_init(struct orinoco_private *priv)
1985 struct device *dev = priv->dev;
1986 struct wiphy *wiphy = priv_to_wiphy(priv);
1987 hermes_t *hw = &priv->hw;
1988 int err = 0;
1990 /* No need to lock, the hw_unavailable flag is already set in
1991 * alloc_orinocodev() */
1992 priv->nicbuf_size = IEEE80211_MAX_FRAME_LEN + ETH_HLEN;
1994 /* Initialize the firmware */
1995 err = hw->ops->init(hw);
1996 if (err != 0) {
1997 dev_err(dev, "Failed to initialize firmware (err = %d)\n",
1998 err);
1999 goto out;
2002 err = determine_fw_capabilities(priv, wiphy->fw_version,
2003 sizeof(wiphy->fw_version),
2004 &wiphy->hw_version);
2005 if (err != 0) {
2006 dev_err(dev, "Incompatible firmware, aborting\n");
2007 goto out;
2010 if (priv->do_fw_download) {
2011 #ifdef CONFIG_HERMES_CACHE_FW_ON_INIT
2012 orinoco_cache_fw(priv, 0);
2013 #endif
2015 err = orinoco_download(priv);
2016 if (err)
2017 priv->do_fw_download = 0;
2019 /* Check firmware version again */
2020 err = determine_fw_capabilities(priv, wiphy->fw_version,
2021 sizeof(wiphy->fw_version),
2022 &wiphy->hw_version);
2023 if (err != 0) {
2024 dev_err(dev, "Incompatible firmware, aborting\n");
2025 goto out;
2029 if (priv->has_port3)
2030 dev_info(dev, "Ad-hoc demo mode supported\n");
2031 if (priv->has_ibss)
2032 dev_info(dev, "IEEE standard IBSS ad-hoc mode supported\n");
2033 if (priv->has_wep)
2034 dev_info(dev, "WEP supported, %s-bit key\n",
2035 priv->has_big_wep ? "104" : "40");
2036 if (priv->has_wpa) {
2037 dev_info(dev, "WPA-PSK supported\n");
2038 if (orinoco_mic_init(priv)) {
2039 dev_err(dev, "Failed to setup MIC crypto algorithm. "
2040 "Disabling WPA support\n");
2041 priv->has_wpa = 0;
2045 err = orinoco_hw_read_card_settings(priv, wiphy->perm_addr);
2046 if (err)
2047 goto out;
2049 err = orinoco_hw_allocate_fid(priv);
2050 if (err) {
2051 dev_err(dev, "Failed to allocate NIC buffer!\n");
2052 goto out;
2055 /* Set up the default configuration */
2056 priv->iw_mode = NL80211_IFTYPE_STATION;
2057 /* By default use IEEE/IBSS ad-hoc mode if we have it */
2058 priv->prefer_port3 = priv->has_port3 && (!priv->has_ibss);
2059 set_port_type(priv);
2060 priv->channel = 0; /* use firmware default */
2062 priv->promiscuous = 0;
2063 priv->encode_alg = ORINOCO_ALG_NONE;
2064 priv->tx_key = 0;
2065 priv->wpa_enabled = 0;
2066 priv->tkip_cm_active = 0;
2067 priv->key_mgmt = 0;
2068 priv->wpa_ie_len = 0;
2069 priv->wpa_ie = NULL;
2071 if (orinoco_wiphy_register(wiphy)) {
2072 err = -ENODEV;
2073 goto out;
2076 /* Make the hardware available, as long as it hasn't been
2077 * removed elsewhere (e.g. by PCMCIA hot unplug) */
2078 orinoco_lock_irq(priv);
2079 priv->hw_unavailable--;
2080 orinoco_unlock_irq(priv);
2082 dev_dbg(dev, "Ready\n");
2084 out:
2085 return err;
2087 EXPORT_SYMBOL(orinoco_init);
2089 static const struct net_device_ops orinoco_netdev_ops = {
2090 .ndo_open = orinoco_open,
2091 .ndo_stop = orinoco_stop,
2092 .ndo_start_xmit = orinoco_xmit,
2093 .ndo_set_multicast_list = orinoco_set_multicast_list,
2094 .ndo_change_mtu = orinoco_change_mtu,
2095 .ndo_set_mac_address = eth_mac_addr,
2096 .ndo_validate_addr = eth_validate_addr,
2097 .ndo_tx_timeout = orinoco_tx_timeout,
2098 .ndo_get_stats = orinoco_get_stats,
2101 /* Allocate private data.
2103 * This driver has a number of structures associated with it
2104 * netdev - Net device structure for each network interface
2105 * wiphy - structure associated with wireless phy
2106 * wireless_dev (wdev) - structure for each wireless interface
2107 * hw - structure for hermes chip info
2108 * card - card specific structure for use by the card driver
2109 * (airport, orinoco_cs)
2110 * priv - orinoco private data
2111 * device - generic linux device structure
2113 * +---------+ +---------+
2114 * | wiphy | | netdev |
2115 * | +-------+ | +-------+
2116 * | | priv | | | wdev |
2117 * | | +-----+ +-+-------+
2118 * | | | hw |
2119 * | +-+-----+
2120 * | | card |
2121 * +-+-------+
2123 * priv has a link to netdev and device
2124 * wdev has a link to wiphy
2126 struct orinoco_private
2127 *alloc_orinocodev(int sizeof_card,
2128 struct device *device,
2129 int (*hard_reset)(struct orinoco_private *),
2130 int (*stop_fw)(struct orinoco_private *, int))
2132 struct orinoco_private *priv;
2133 struct wiphy *wiphy;
2135 /* allocate wiphy
2136 * NOTE: We only support a single virtual interface
2137 * but this may change when monitor mode is added
2139 wiphy = wiphy_new(&orinoco_cfg_ops,
2140 sizeof(struct orinoco_private) + sizeof_card);
2141 if (!wiphy)
2142 return NULL;
2144 priv = wiphy_priv(wiphy);
2145 priv->dev = device;
2147 if (sizeof_card)
2148 priv->card = (void *)((unsigned long)priv
2149 + sizeof(struct orinoco_private));
2150 else
2151 priv->card = NULL;
2153 orinoco_wiphy_init(wiphy);
2155 #ifdef WIRELESS_SPY
2156 priv->wireless_data.spy_data = &priv->spy_data;
2157 #endif
2159 /* Set up default callbacks */
2160 priv->hard_reset = hard_reset;
2161 priv->stop_fw = stop_fw;
2163 spin_lock_init(&priv->lock);
2164 priv->open = 0;
2165 priv->hw_unavailable = 1; /* orinoco_init() must clear this
2166 * before anything else touches the
2167 * hardware */
2168 INIT_WORK(&priv->reset_work, orinoco_reset);
2169 INIT_WORK(&priv->join_work, orinoco_join_ap);
2170 INIT_WORK(&priv->wevent_work, orinoco_send_wevents);
2172 INIT_LIST_HEAD(&priv->rx_list);
2173 tasklet_init(&priv->rx_tasklet, orinoco_rx_isr_tasklet,
2174 (unsigned long) priv);
2176 spin_lock_init(&priv->scan_lock);
2177 INIT_LIST_HEAD(&priv->scan_list);
2178 INIT_WORK(&priv->process_scan, orinoco_process_scan_results);
2180 priv->last_linkstatus = 0xffff;
2182 #if defined(CONFIG_HERMES_CACHE_FW_ON_INIT) || defined(CONFIG_PM_SLEEP)
2183 priv->cached_pri_fw = NULL;
2184 priv->cached_fw = NULL;
2185 #endif
2187 /* Register PM notifiers */
2188 orinoco_register_pm_notifier(priv);
2190 return priv;
2192 EXPORT_SYMBOL(alloc_orinocodev);
2194 /* We can only support a single interface. We provide a separate
2195 * function to set it up to distinguish between hardware
2196 * initialisation and interface setup.
2198 * The base_addr and irq parameters are passed on to netdev for use
2199 * with SIOCGIFMAP.
2201 int orinoco_if_add(struct orinoco_private *priv,
2202 unsigned long base_addr,
2203 unsigned int irq,
2204 const struct net_device_ops *ops)
2206 struct wiphy *wiphy = priv_to_wiphy(priv);
2207 struct wireless_dev *wdev;
2208 struct net_device *dev;
2209 int ret;
2211 dev = alloc_etherdev(sizeof(struct wireless_dev));
2213 if (!dev)
2214 return -ENOMEM;
2216 /* Initialise wireless_dev */
2217 wdev = netdev_priv(dev);
2218 wdev->wiphy = wiphy;
2219 wdev->iftype = NL80211_IFTYPE_STATION;
2221 /* Setup / override net_device fields */
2222 dev->ieee80211_ptr = wdev;
2223 dev->watchdog_timeo = HZ; /* 1 second timeout */
2224 dev->wireless_handlers = &orinoco_handler_def;
2225 #ifdef WIRELESS_SPY
2226 dev->wireless_data = &priv->wireless_data;
2227 #endif
2228 /* Default to standard ops if not set */
2229 if (ops)
2230 dev->netdev_ops = ops;
2231 else
2232 dev->netdev_ops = &orinoco_netdev_ops;
2234 /* we use the default eth_mac_addr for setting the MAC addr */
2236 /* Reserve space in skb for the SNAP header */
2237 dev->hard_header_len += ENCAPS_OVERHEAD;
2239 netif_carrier_off(dev);
2241 memcpy(dev->dev_addr, wiphy->perm_addr, ETH_ALEN);
2242 memcpy(dev->perm_addr, wiphy->perm_addr, ETH_ALEN);
2244 dev->base_addr = base_addr;
2245 dev->irq = irq;
2247 SET_NETDEV_DEV(dev, priv->dev);
2248 ret = register_netdev(dev);
2249 if (ret)
2250 goto fail;
2252 priv->ndev = dev;
2254 /* Report what we've done */
2255 dev_dbg(priv->dev, "Registerred interface %s.\n", dev->name);
2257 return 0;
2259 fail:
2260 free_netdev(dev);
2261 return ret;
2263 EXPORT_SYMBOL(orinoco_if_add);
2265 void orinoco_if_del(struct orinoco_private *priv)
2267 struct net_device *dev = priv->ndev;
2269 unregister_netdev(dev);
2270 free_netdev(dev);
2272 EXPORT_SYMBOL(orinoco_if_del);
2274 void free_orinocodev(struct orinoco_private *priv)
2276 struct wiphy *wiphy = priv_to_wiphy(priv);
2277 struct orinoco_rx_data *rx_data, *temp;
2278 struct orinoco_scan_data *sd, *sdtemp;
2280 wiphy_unregister(wiphy);
2282 /* If the tasklet is scheduled when we call tasklet_kill it
2283 * will run one final time. However the tasklet will only
2284 * drain priv->rx_list if the hw is still available. */
2285 tasklet_kill(&priv->rx_tasklet);
2287 /* Explicitly drain priv->rx_list */
2288 list_for_each_entry_safe(rx_data, temp, &priv->rx_list, list) {
2289 list_del(&rx_data->list);
2291 dev_kfree_skb(rx_data->skb);
2292 kfree(rx_data->desc);
2293 kfree(rx_data);
2296 cancel_work_sync(&priv->process_scan);
2297 /* Explicitly drain priv->scan_list */
2298 list_for_each_entry_safe(sd, sdtemp, &priv->scan_list, list) {
2299 list_del(&sd->list);
2301 if ((sd->len > 0) && sd->buf)
2302 kfree(sd->buf);
2303 kfree(sd);
2306 orinoco_unregister_pm_notifier(priv);
2307 orinoco_uncache_fw(priv);
2309 priv->wpa_ie_len = 0;
2310 kfree(priv->wpa_ie);
2311 orinoco_mic_free(priv);
2312 wiphy_free(wiphy);
2314 EXPORT_SYMBOL(free_orinocodev);
2316 int orinoco_up(struct orinoco_private *priv)
2318 struct net_device *dev = priv->ndev;
2319 unsigned long flags;
2320 int err;
2322 priv->hw.ops->lock_irqsave(&priv->lock, &flags);
2324 err = orinoco_reinit_firmware(priv);
2325 if (err) {
2326 printk(KERN_ERR "%s: Error %d re-initializing firmware\n",
2327 dev->name, err);
2328 goto exit;
2331 netif_device_attach(dev);
2332 priv->hw_unavailable--;
2334 if (priv->open && !priv->hw_unavailable) {
2335 err = __orinoco_up(priv);
2336 if (err)
2337 printk(KERN_ERR "%s: Error %d restarting card\n",
2338 dev->name, err);
2341 exit:
2342 priv->hw.ops->unlock_irqrestore(&priv->lock, &flags);
2344 return 0;
2346 EXPORT_SYMBOL(orinoco_up);
2348 void orinoco_down(struct orinoco_private *priv)
2350 struct net_device *dev = priv->ndev;
2351 unsigned long flags;
2352 int err;
2354 priv->hw.ops->lock_irqsave(&priv->lock, &flags);
2355 err = __orinoco_down(priv);
2356 if (err)
2357 printk(KERN_WARNING "%s: Error %d downing interface\n",
2358 dev->name, err);
2360 netif_device_detach(dev);
2361 priv->hw_unavailable++;
2362 priv->hw.ops->unlock_irqrestore(&priv->lock, &flags);
2364 EXPORT_SYMBOL(orinoco_down);
2366 /********************************************************************/
2367 /* Module initialization */
2368 /********************************************************************/
2370 /* Can't be declared "const" or the whole __initdata section will
2371 * become const */
2372 static char version[] __initdata = DRIVER_NAME " " DRIVER_VERSION
2373 " (David Gibson <hermes@gibson.dropbear.id.au>, "
2374 "Pavel Roskin <proski@gnu.org>, et al)";
2376 static int __init init_orinoco(void)
2378 printk(KERN_DEBUG "%s\n", version);
2379 return 0;
2382 static void __exit exit_orinoco(void)
2386 module_init(init_orinoco);
2387 module_exit(exit_orinoco);