blob: 86f268cd89e7448a09bb19ab4a03e9a868f33823 [file] [log] [blame]
David Kilroy47445cb2009-02-04 23:05:48 +00001/* main.c - (formerly known as dldwd_cs.c, orinoco_cs.c and orinoco.c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * A driver for Hermes or Prism 2 chipset based PCMCIA wireless
4 * adaptors, with Lucent/Agere, Intersil or Symbol firmware.
5 *
6 * Current maintainers (as of 29 September 2003) are:
7 * Pavel Roskin <proski AT gnu.org>
8 * and David Gibson <hermes AT gibson.dropbear.id.au>
9 *
10 * (C) Copyright David Gibson, IBM Corporation 2001-2003.
11 * Copyright (C) 2000 David Gibson, Linuxcare Australia.
12 * With some help from :
13 * Copyright (C) 2001 Jean Tourrilhes, HP Labs
14 * Copyright (C) 2001 Benjamin Herrenschmidt
15 *
16 * Based on dummy_cs.c 1.27 2000/06/12 21:27:25
17 *
18 * Portions based on wvlan_cs.c 1.0.6, Copyright Andreas Neuhaus <andy
19 * AT fasta.fh-dortmund.de>
20 * http://www.stud.fh-dortmund.de/~andy/wvlan/
21 *
22 * The contents of this file are subject to the Mozilla Public License
23 * Version 1.1 (the "License"); you may not use this file except in
24 * compliance with the License. You may obtain a copy of the License
25 * at http://www.mozilla.org/MPL/
26 *
27 * Software distributed under the License is distributed on an "AS IS"
28 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
29 * the License for the specific language governing rights and
30 * limitations under the License.
31 *
32 * The initial developer of the original code is David A. Hinds
33 * <dahinds AT users.sourceforge.net>. Portions created by David
34 * A. Hinds are Copyright (C) 1999 David A. Hinds. All Rights
35 * Reserved.
36 *
37 * Alternatively, the contents of this file may be used under the
38 * terms of the GNU General Public License version 2 (the "GPL"), in
39 * which case the provisions of the GPL are applicable instead of the
40 * above. If you wish to allow the use of your version of this file
41 * only under the terms of the GPL and not to allow others to use your
42 * version of this file under the MPL, indicate your decision by
43 * deleting the provisions above and replace them with the notice and
44 * other provisions required by the GPL. If you do not delete the
45 * provisions above, a recipient may use your version of this file
46 * under either the MPL or the GPL. */
47
48/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 * TODO
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 * o Handle de-encapsulation within network layer, provide 802.11
51 * headers (patch from Thomas 'Dent' Mirlacher)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 * 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.
57 */
58
59/* Locking and synchronization:
60 *
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.
66 *
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).
75 */
76
77#define DRIVER_NAME "orinoco"
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <linux/module.h>
80#include <linux/kernel.h>
81#include <linux/init.h>
David Kilroyd03032a2008-08-21 23:28:02 +010082#include <linux/delay.h>
David Kilroy8e638262009-06-18 23:21:24 +010083#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#include <linux/netdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#include <linux/etherdevice.h>
David Kilroy39d1ffe2008-11-22 10:37:28 +000086#include <linux/suspend.h>
Pavel Roskin9c974fb2006-08-15 20:45:03 -040087#include <linux/if_arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#include <linux/wireless.h>
Johannes Berg2c7060022008-10-30 22:09:54 +010089#include <linux/ieee80211.h>
Christoph Hellwig620554e2005-06-19 01:27:33 +020090#include <net/iw_handler.h>
David Kilroyea60a6a2009-06-18 23:21:26 +010091#include <net/cfg80211.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#include "hermes_rid.h"
David Kilroy3994d502008-08-21 23:27:54 +010094#include "hermes_dld.h"
David Kilroy712a4342009-02-04 23:05:55 +000095#include "hw.h"
David Kilroyfb791b12009-02-04 23:05:50 +000096#include "scan.h"
David Kilroy4adb4742009-02-04 23:05:51 +000097#include "mic.h"
David Kilroy37a2e562009-02-04 23:05:52 +000098#include "fw.h"
David Kilroycb1576a2009-02-04 23:05:56 +000099#include "wext.h"
David Kilroyea60a6a2009-06-18 23:21:26 +0100100#include "cfg.h"
David Kilroycb1576a2009-02-04 23:05:56 +0000101#include "main.h"
David Kilroyfb791b12009-02-04 23:05:50 +0000102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#include "orinoco.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105/********************************************************************/
106/* Module information */
107/********************************************************************/
108
David Kilroyb2f30a02009-02-04 23:05:46 +0000109MODULE_AUTHOR("Pavel Roskin <proski@gnu.org> & "
110 "David Gibson <hermes@gibson.dropbear.id.au>");
111MODULE_DESCRIPTION("Driver for Lucent Orinoco, Prism II based "
112 "and similar wireless cards");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113MODULE_LICENSE("Dual MPL/GPL");
114
115/* Level of debugging. Used in the macros in orinoco.h */
116#ifdef ORINOCO_DEBUG
117int orinoco_debug = ORINOCO_DEBUG;
David Kilroy21312662009-02-04 23:05:47 +0000118EXPORT_SYMBOL(orinoco_debug);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119module_param(orinoco_debug, int, 0644);
120MODULE_PARM_DESC(orinoco_debug, "Debug level");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#endif
122
123static int suppress_linkstatus; /* = 0 */
124module_param(suppress_linkstatus, bool, 0644);
125MODULE_PARM_DESC(suppress_linkstatus, "Don't log link status changes");
David Kilroyb2f30a02009-02-04 23:05:46 +0000126
David Gibson7bb7c3a2005-05-12 20:02:10 -0400127static int ignore_disconnect; /* = 0 */
128module_param(ignore_disconnect, int, 0644);
David Kilroyb2f30a02009-02-04 23:05:46 +0000129MODULE_PARM_DESC(ignore_disconnect,
130 "Don't report lost link to the network layer");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
David Kilroycb1576a2009-02-04 23:05:56 +0000132int force_monitor; /* = 0 */
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200133module_param(force_monitor, int, 0644);
134MODULE_PARM_DESC(force_monitor, "Allow monitor mode for all firmware versions");
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/********************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137/* Internal constants */
138/********************************************************************/
139
Christoph Hellwig95dd91f2005-06-19 01:27:56 +0200140/* 802.2 LLC/SNAP header used for Ethernet encapsulation over 802.11 */
141static const u8 encaps_hdr[] = {0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00};
142#define ENCAPS_OVERHEAD (sizeof(encaps_hdr) + 2)
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144#define ORINOCO_MIN_MTU 256
Johannes Berg2c7060022008-10-30 22:09:54 +0100145#define ORINOCO_MAX_MTU (IEEE80211_MAX_DATA_LEN - ENCAPS_OVERHEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147#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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153#define DUMMY_FID 0xFFFF
154
155/*#define MAX_MULTICAST(priv) (priv->firmware_type == FIRMWARE_TYPE_AGERE ? \
156 HERMES_MAX_MULTICAST : 0)*/
157#define MAX_MULTICAST(priv) (HERMES_MAX_MULTICAST)
158
159#define ORINOCO_INTEN (HERMES_EV_RX | HERMES_EV_ALLOC \
160 | HERMES_EV_TX | HERMES_EV_TXEXC \
161 | HERMES_EV_WTERR | HERMES_EV_INFO \
David Kilroya94e8422009-02-04 23:05:44 +0000162 | HERMES_EV_INFDROP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164/********************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/* Data types */
166/********************************************************************/
167
Pavel Roskin30c2d3b2006-04-07 04:10:34 -0400168/* Beginning of the Tx descriptor, used in TxExc handling */
169struct hermes_txexc_data {
170 struct hermes_tx_descriptor desc;
Pavel Roskind133ae42005-09-23 04:18:06 -0400171 __le16 frame_ctl;
172 __le16 duration_id;
Christoph Hellwig95dd91f2005-06-19 01:27:56 +0200173 u8 addr1[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174} __attribute__ ((packed));
175
Christoph Hellwig8f2abf42005-06-19 01:28:02 +0200176/* Rx frame header except compatibility 802.3 header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177struct hermes_rx_descriptor {
Christoph Hellwig8f2abf42005-06-19 01:28:02 +0200178 /* Control */
Pavel Roskind133ae42005-09-23 04:18:06 -0400179 __le16 status;
180 __le32 time;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 u8 silence;
182 u8 signal;
183 u8 rate;
184 u8 rxflow;
Pavel Roskind133ae42005-09-23 04:18:06 -0400185 __le32 reserved;
Christoph Hellwig8f2abf42005-06-19 01:28:02 +0200186
187 /* 802.11 header */
Pavel Roskind133ae42005-09-23 04:18:06 -0400188 __le16 frame_ctl;
189 __le16 duration_id;
Christoph Hellwig8f2abf42005-06-19 01:28:02 +0200190 u8 addr1[ETH_ALEN];
191 u8 addr2[ETH_ALEN];
192 u8 addr3[ETH_ALEN];
Pavel Roskind133ae42005-09-23 04:18:06 -0400193 __le16 seq_ctl;
Christoph Hellwig8f2abf42005-06-19 01:28:02 +0200194 u8 addr4[ETH_ALEN];
195
196 /* Data length */
Pavel Roskind133ae42005-09-23 04:18:06 -0400197 __le16 data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198} __attribute__ ((packed));
199
David Kilroy47166792009-01-07 00:43:54 +0000200struct orinoco_rx_data {
201 struct hermes_rx_descriptor *desc;
202 struct sk_buff *skb;
203 struct list_head list;
204};
205
David Kilroyc63cdbe2009-06-18 23:21:33 +0100206struct orinoco_scan_data {
207 void *buf;
208 size_t len;
209 int type;
210 struct list_head list;
211};
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213/********************************************************************/
214/* Function prototypes */
215/********************************************************************/
216
David Kilroy721aa2f2009-06-18 23:21:31 +0100217static int __orinoco_set_multicast_list(struct net_device *dev);
David Kilroy6415f7d2009-06-18 23:21:30 +0100218static int __orinoco_up(struct orinoco_private *priv);
219static int __orinoco_down(struct orinoco_private *priv);
David Kilroy721aa2f2009-06-18 23:21:31 +0100220static int __orinoco_commit(struct orinoco_private *priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222/********************************************************************/
223/* Internal helper functions */
224/********************************************************************/
225
David Kilroycb1576a2009-02-04 23:05:56 +0000226void set_port_type(struct orinoco_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 switch (priv->iw_mode) {
David Kilroy5217c572009-06-18 23:21:32 +0100229 case NL80211_IFTYPE_STATION:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 priv->port_type = 1;
231 priv->createibss = 0;
232 break;
David Kilroy5217c572009-06-18 23:21:32 +0100233 case NL80211_IFTYPE_ADHOC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 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;
240 }
241 break;
David Kilroy5217c572009-06-18 23:21:32 +0100242 case NL80211_IFTYPE_MONITOR:
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200243 priv->port_type = 3;
244 priv->createibss = 0;
245 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 default:
247 printk(KERN_ERR "%s: Invalid priv->iw_mode in set_port_type()\n",
248 priv->ndev->name);
249 }
250}
251
David Kilroy3994d502008-08-21 23:27:54 +0100252/********************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253/* Device methods */
254/********************************************************************/
255
David Kilroy593ef092010-05-01 14:05:39 +0100256int orinoco_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
David Kilroyea60a6a2009-06-18 23:21:26 +0100258 struct orinoco_private *priv = ndev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 unsigned long flags;
260 int err;
261
262 if (orinoco_lock(priv, &flags) != 0)
263 return -EBUSY;
264
David Kilroya2608362009-06-18 23:21:23 +0100265 err = __orinoco_up(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
David Kilroya94e8422009-02-04 23:05:44 +0000267 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 priv->open = 1;
269
270 orinoco_unlock(priv, &flags);
271
272 return err;
273}
David Kilroy593ef092010-05-01 14:05:39 +0100274EXPORT_SYMBOL(orinoco_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
David Kilroy593ef092010-05-01 14:05:39 +0100276int orinoco_stop(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
David Kilroyea60a6a2009-06-18 23:21:26 +0100278 struct orinoco_private *priv = ndev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 int err = 0;
280
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) */
David Kilroybcad6e82010-05-01 14:05:40 +0100284 orinoco_lock_irq(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 priv->open = 0;
287
David Kilroya2608362009-06-18 23:21:23 +0100288 err = __orinoco_down(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
David Kilroybcad6e82010-05-01 14:05:40 +0100290 orinoco_unlock_irq(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 return err;
293}
David Kilroy593ef092010-05-01 14:05:39 +0100294EXPORT_SYMBOL(orinoco_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
David Kilroy593ef092010-05-01 14:05:39 +0100296struct net_device_stats *orinoco_get_stats(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
David Kilroyea60a6a2009-06-18 23:21:26 +0100298 struct orinoco_private *priv = ndev_priv(dev);
David Kilroy6fe9deb2009-02-04 23:05:43 +0000299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 return &priv->stats;
301}
David Kilroy593ef092010-05-01 14:05:39 +0100302EXPORT_SYMBOL(orinoco_get_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
David Kilroy593ef092010-05-01 14:05:39 +0100304void orinoco_set_multicast_list(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
David Kilroyea60a6a2009-06-18 23:21:26 +0100306 struct orinoco_private *priv = ndev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 unsigned long flags;
308
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;
313 }
314
315 __orinoco_set_multicast_list(dev);
316 orinoco_unlock(priv, &flags);
317}
David Kilroy593ef092010-05-01 14:05:39 +0100318EXPORT_SYMBOL(orinoco_set_multicast_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
David Kilroy593ef092010-05-01 14:05:39 +0100320int orinoco_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
David Kilroyea60a6a2009-06-18 23:21:26 +0100322 struct orinoco_private *priv = ndev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
David Kilroya94e8422009-02-04 23:05:44 +0000324 if ((new_mtu < ORINOCO_MIN_MTU) || (new_mtu > ORINOCO_MAX_MTU))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return -EINVAL;
326
Johannes Berg2c7060022008-10-30 22:09:54 +0100327 /* MTU + encapsulation + header length */
David Kilroya94e8422009-02-04 23:05:44 +0000328 if ((new_mtu + ENCAPS_OVERHEAD + sizeof(struct ieee80211_hdr)) >
329 (priv->nicbuf_size - ETH_HLEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return -EINVAL;
331
332 dev->mtu = new_mtu;
333
334 return 0;
335}
David Kilroy593ef092010-05-01 14:05:39 +0100336EXPORT_SYMBOL(orinoco_change_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338/********************************************************************/
339/* Tx path */
340/********************************************************************/
341
David Kilroybac6faf2010-05-04 22:54:41 +0100342/* Add encapsulation and MIC to the existing SKB.
343 * The main xmit routine will then send the whole lot to the card.
344 * Need 8 bytes headroom
345 * Need 8 bytes tailroom
346 *
347 * With encapsulated ethernet II frame
348 * --------
349 * 803.3 header (14 bytes)
350 * dst[6]
351 * -------- src[6]
352 * 803.3 header (14 bytes) len[2]
353 * dst[6] 803.2 header (8 bytes)
354 * src[6] encaps[6]
355 * len[2] <- leave alone -> len[2]
356 * -------- -------- <-- 0
357 * Payload Payload
358 * ... ...
359 *
360 * -------- --------
361 * MIC (8 bytes)
362 * --------
363 *
364 * returns 0 on success, -ENOMEM on error.
365 */
366int orinoco_process_xmit_skb(struct sk_buff *skb,
367 struct net_device *dev,
368 struct orinoco_private *priv,
369 int *tx_control,
370 u8 *mic_buf)
371{
372 struct orinoco_tkip_key *key;
373 struct ethhdr *eh;
374 int do_mic;
375
376 key = (struct orinoco_tkip_key *) priv->keys[priv->tx_key].key;
377
378 do_mic = ((priv->encode_alg == ORINOCO_ALG_TKIP) &&
379 (key != NULL));
380
381 if (do_mic)
382 *tx_control |= (priv->tx_key << HERMES_MIC_KEY_ID_SHIFT) |
383 HERMES_TXCTRL_MIC;
384
385 eh = (struct ethhdr *)skb->data;
386
387 /* Encapsulate Ethernet-II frames */
388 if (ntohs(eh->h_proto) > ETH_DATA_LEN) { /* Ethernet-II frame */
389 struct header_struct {
390 struct ethhdr eth; /* 802.3 header */
391 u8 encap[6]; /* 802.2 header */
392 } __attribute__ ((packed)) hdr;
393 int len = skb->len + sizeof(encaps_hdr) - (2 * ETH_ALEN);
394
395 if (skb_headroom(skb) < ENCAPS_OVERHEAD) {
396 if (net_ratelimit())
397 printk(KERN_ERR
398 "%s: Not enough headroom for 802.2 headers %d\n",
399 dev->name, skb_headroom(skb));
400 return -ENOMEM;
401 }
402
403 /* Fill in new header */
404 memcpy(&hdr.eth, eh, 2 * ETH_ALEN);
405 hdr.eth.h_proto = htons(len);
406 memcpy(hdr.encap, encaps_hdr, sizeof(encaps_hdr));
407
408 /* Make room for the new header, and copy it in */
409 eh = (struct ethhdr *) skb_push(skb, ENCAPS_OVERHEAD);
410 memcpy(eh, &hdr, sizeof(hdr));
411 }
412
413 /* Calculate Michael MIC */
414 if (do_mic) {
415 size_t len = skb->len - ETH_HLEN;
416 u8 *mic = &mic_buf[0];
417
418 /* Have to write to an even address, so copy the spare
419 * byte across */
420 if (skb->len % 2) {
421 *mic = skb->data[skb->len - 1];
422 mic++;
423 }
424
425 orinoco_mic(priv->tx_tfm_mic, key->tx_mic,
426 eh->h_dest, eh->h_source, 0 /* priority */,
427 skb->data + ETH_HLEN,
428 len, mic);
429 }
430
431 return 0;
432}
433EXPORT_SYMBOL(orinoco_process_xmit_skb);
434
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +0000435static netdev_tx_t orinoco_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
David Kilroyea60a6a2009-06-18 23:21:26 +0100437 struct orinoco_private *priv = ndev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 struct net_device_stats *stats = &priv->stats;
439 hermes_t *hw = &priv->hw;
440 int err = 0;
441 u16 txfid = priv->txfid;
David Kilroy6eecad72008-08-21 23:27:56 +0100442 int tx_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 unsigned long flags;
David Kilroybac6faf2010-05-04 22:54:41 +0100444 u8 mic_buf[MICHAEL_MIC_LEN+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
David Kilroya94e8422009-02-04 23:05:44 +0000446 if (!netif_running(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 printk(KERN_ERR "%s: Tx on stopped device!\n",
448 dev->name);
Pavel Roskinb34b8672006-04-07 04:10:36 -0400449 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
David Kilroy6fe9deb2009-02-04 23:05:43 +0000451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (netif_queue_stopped(dev)) {
David Kilroy6fe9deb2009-02-04 23:05:43 +0000453 printk(KERN_DEBUG "%s: Tx while transmitter busy!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 dev->name);
Pavel Roskinb34b8672006-04-07 04:10:36 -0400455 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
David Kilroy6fe9deb2009-02-04 23:05:43 +0000457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 if (orinoco_lock(priv, &flags) != 0) {
459 printk(KERN_ERR "%s: orinoco_xmit() called while hw_unavailable\n",
460 dev->name);
Pavel Roskinb34b8672006-04-07 04:10:36 -0400461 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
463
David Kilroy5217c572009-06-18 23:21:32 +0100464 if (!netif_carrier_ok(dev) ||
465 (priv->iw_mode == NL80211_IFTYPE_MONITOR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 /* Oops, the firmware hasn't established a connection,
David Kilroy6fe9deb2009-02-04 23:05:43 +0000467 silently drop the packet (this seems to be the
468 safest approach). */
Pavel Roskin470e2aa2006-04-07 04:10:43 -0400469 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 }
471
Pavel Roskin8d5be082006-04-07 04:10:41 -0400472 /* Check packet length */
Pavel Roskina28dc812006-04-07 04:10:45 -0400473 if (skb->len < ETH_HLEN)
Pavel Roskin470e2aa2006-04-07 04:10:43 -0400474 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
David Kilroy6eecad72008-08-21 23:27:56 +0100476 tx_control = HERMES_TXCTRL_TX_OK | HERMES_TXCTRL_TX_EX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
David Kilroybac6faf2010-05-04 22:54:41 +0100478 err = orinoco_process_xmit_skb(skb, dev, priv, &tx_control,
479 &mic_buf[0]);
480 if (err)
481 goto drop;
David Kilroy23edcc42008-08-21 23:28:05 +0100482
David Kilroy6eecad72008-08-21 23:27:56 +0100483 if (priv->has_alt_txcntl) {
484 /* WPA enabled firmwares have tx_cntl at the end of
485 * the 802.11 header. So write zeroed descriptor and
486 * 802.11 header at the same time
487 */
488 char desc[HERMES_802_3_OFFSET];
489 __le16 *txcntl = (__le16 *) &desc[HERMES_TXCNTL2_OFFSET];
490
491 memset(&desc, 0, sizeof(desc));
492
493 *txcntl = cpu_to_le16(tx_control);
David Kilroyb42f2072010-05-01 14:05:38 +0100494 err = hw->ops->bap_pwrite(hw, USER_BAP, &desc, sizeof(desc),
495 txfid, 0);
David Kilroy6eecad72008-08-21 23:27:56 +0100496 if (err) {
497 if (net_ratelimit())
498 printk(KERN_ERR "%s: Error %d writing Tx "
499 "descriptor to BAP\n", dev->name, err);
500 goto busy;
501 }
502 } else {
503 struct hermes_tx_descriptor desc;
504
505 memset(&desc, 0, sizeof(desc));
506
507 desc.tx_control = cpu_to_le16(tx_control);
David Kilroyb42f2072010-05-01 14:05:38 +0100508 err = hw->ops->bap_pwrite(hw, USER_BAP, &desc, sizeof(desc),
509 txfid, 0);
David Kilroy6eecad72008-08-21 23:27:56 +0100510 if (err) {
511 if (net_ratelimit())
512 printk(KERN_ERR "%s: Error %d writing Tx "
513 "descriptor to BAP\n", dev->name, err);
514 goto busy;
515 }
516
517 /* Clear the 802.11 header and data length fields - some
518 * firmwares (e.g. Lucent/Agere 8.xx) appear to get confused
519 * if this isn't done. */
520 hermes_clear_words(hw, HERMES_DATA0,
521 HERMES_802_3_OFFSET - HERMES_802_11_OFFSET);
522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
David Kilroyb42f2072010-05-01 14:05:38 +0100524 err = hw->ops->bap_pwrite(hw, USER_BAP, skb->data, skb->len,
525 txfid, HERMES_802_3_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (err) {
527 printk(KERN_ERR "%s: Error %d writing packet to BAP\n",
528 dev->name, err);
Pavel Roskin470e2aa2006-04-07 04:10:43 -0400529 goto busy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
531
David Kilroybac6faf2010-05-04 22:54:41 +0100532 if (tx_control & HERMES_TXCTRL_MIC) {
533 size_t offset = HERMES_802_3_OFFSET + skb->len;
534 size_t len = MICHAEL_MIC_LEN;
David Kilroy23edcc42008-08-21 23:28:05 +0100535
David Kilroybac6faf2010-05-04 22:54:41 +0100536 if (offset % 2) {
537 offset--;
538 len++;
David Kilroy23edcc42008-08-21 23:28:05 +0100539 }
David Kilroyb42f2072010-05-01 14:05:38 +0100540 err = hw->ops->bap_pwrite(hw, USER_BAP, &mic_buf[0], len,
David Kilroybac6faf2010-05-04 22:54:41 +0100541 txfid, offset);
David Kilroy23edcc42008-08-21 23:28:05 +0100542 if (err) {
543 printk(KERN_ERR "%s: Error %d writing MIC to BAP\n",
544 dev->name, err);
545 goto busy;
546 }
547 }
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 /* Finally, we actually initiate the send */
550 netif_stop_queue(dev);
551
David Kilroyb42f2072010-05-01 14:05:38 +0100552 err = hw->ops->cmd_wait(hw, HERMES_CMD_TX | HERMES_CMD_RECL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 txfid, NULL);
554 if (err) {
555 netif_start_queue(dev);
Andrew Mortonc367c212005-10-19 21:23:44 -0700556 if (net_ratelimit())
557 printk(KERN_ERR "%s: Error %d transmitting packet\n",
558 dev->name, err);
Pavel Roskin470e2aa2006-04-07 04:10:43 -0400559 goto busy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 }
561
562 dev->trans_start = jiffies;
David Kilroy23edcc42008-08-21 23:28:05 +0100563 stats->tx_bytes += HERMES_802_3_OFFSET + skb->len;
Pavel Roskin470e2aa2006-04-07 04:10:43 -0400564 goto ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Pavel Roskin470e2aa2006-04-07 04:10:43 -0400566 drop:
567 stats->tx_errors++;
568 stats->tx_dropped++;
569
570 ok:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 orinoco_unlock(priv, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 dev_kfree_skb(skb);
Pavel Roskinb34b8672006-04-07 04:10:36 -0400573 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Pavel Roskin470e2aa2006-04-07 04:10:43 -0400575 busy:
Jiri Benc2c1bd262006-04-07 04:10:47 -0400576 if (err == -EIO)
577 schedule_work(&priv->reset_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 orinoco_unlock(priv, &flags);
Pavel Roskinb34b8672006-04-07 04:10:36 -0400579 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
582static void __orinoco_ev_alloc(struct net_device *dev, hermes_t *hw)
583{
David Kilroyea60a6a2009-06-18 23:21:26 +0100584 struct orinoco_private *priv = ndev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 u16 fid = hermes_read_regn(hw, ALLOCFID);
586
587 if (fid != priv->txfid) {
588 if (fid != DUMMY_FID)
589 printk(KERN_WARNING "%s: Allocate event on unexpected fid (%04X)\n",
590 dev->name, fid);
591 return;
592 }
593
594 hermes_write_regn(hw, ALLOCFID, DUMMY_FID);
595}
596
597static void __orinoco_ev_tx(struct net_device *dev, hermes_t *hw)
598{
David Kilroyea60a6a2009-06-18 23:21:26 +0100599 struct orinoco_private *priv = ndev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 struct net_device_stats *stats = &priv->stats;
601
602 stats->tx_packets++;
603
604 netif_wake_queue(dev);
605
606 hermes_write_regn(hw, TXCOMPLFID, DUMMY_FID);
607}
608
609static void __orinoco_ev_txexc(struct net_device *dev, hermes_t *hw)
610{
David Kilroyea60a6a2009-06-18 23:21:26 +0100611 struct orinoco_private *priv = ndev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 struct net_device_stats *stats = &priv->stats;
613 u16 fid = hermes_read_regn(hw, TXCOMPLFID);
Pavel Roskind133ae42005-09-23 04:18:06 -0400614 u16 status;
Pavel Roskin30c2d3b2006-04-07 04:10:34 -0400615 struct hermes_txexc_data hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 int err = 0;
617
618 if (fid == DUMMY_FID)
619 return; /* Nothing's really happened */
620
Pavel Roskin48ca7032005-09-23 04:18:06 -0400621 /* Read part of the frame header - we need status and addr1 */
David Kilroyb42f2072010-05-01 14:05:38 +0100622 err = hw->ops->bap_pread(hw, IRQ_BAP, &hdr,
623 sizeof(struct hermes_txexc_data),
624 fid, 0);
Christoph Hellwig95dd91f2005-06-19 01:27:56 +0200625
626 hermes_write_regn(hw, TXCOMPLFID, DUMMY_FID);
627 stats->tx_errors++;
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if (err) {
630 printk(KERN_WARNING "%s: Unable to read descriptor on Tx error "
631 "(FID=%04X error %d)\n",
632 dev->name, fid, err);
Christoph Hellwig95dd91f2005-06-19 01:27:56 +0200633 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
David Kilroy6fe9deb2009-02-04 23:05:43 +0000635
Christoph Hellwig95dd91f2005-06-19 01:27:56 +0200636 DEBUG(1, "%s: Tx error, err %d (FID=%04X)\n", dev->name,
637 err, fid);
David Kilroy6fe9deb2009-02-04 23:05:43 +0000638
Christoph Hellwig95dd91f2005-06-19 01:27:56 +0200639 /* We produce a TXDROP event only for retry or lifetime
640 * exceeded, because that's the only status that really mean
641 * that this particular node went away.
642 * Other errors means that *we* screwed up. - Jean II */
Pavel Roskin30c2d3b2006-04-07 04:10:34 -0400643 status = le16_to_cpu(hdr.desc.status);
Pavel Roskind133ae42005-09-23 04:18:06 -0400644 if (status & (HERMES_TXSTAT_RETRYERR | HERMES_TXSTAT_AGEDERR)) {
Christoph Hellwig95dd91f2005-06-19 01:27:56 +0200645 union iwreq_data wrqu;
646
647 /* Copy 802.11 dest address.
648 * We use the 802.11 header because the frame may
649 * not be 802.3 or may be mangled...
650 * In Ad-Hoc mode, it will be the node address.
651 * In managed mode, it will be most likely the AP addr
652 * User space will figure out how to convert it to
653 * whatever it needs (IP address or else).
654 * - Jean II */
655 memcpy(wrqu.addr.sa_data, hdr.addr1, ETH_ALEN);
656 wrqu.addr.sa_family = ARPHRD_ETHER;
657
658 /* Send event to user space */
659 wireless_send_event(dev, IWEVTXDROP, &wrqu, NULL);
660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 netif_wake_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
664
David Kilroy593ef092010-05-01 14:05:39 +0100665void orinoco_tx_timeout(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
David Kilroyea60a6a2009-06-18 23:21:26 +0100667 struct orinoco_private *priv = ndev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 struct net_device_stats *stats = &priv->stats;
669 struct hermes *hw = &priv->hw;
670
671 printk(KERN_WARNING "%s: Tx timeout! "
672 "ALLOCFID=%04x, TXCOMPLFID=%04x, EVSTAT=%04x\n",
673 dev->name, hermes_read_regn(hw, ALLOCFID),
674 hermes_read_regn(hw, TXCOMPLFID), hermes_read_regn(hw, EVSTAT));
675
676 stats->tx_errors++;
677
678 schedule_work(&priv->reset_work);
679}
David Kilroy593ef092010-05-01 14:05:39 +0100680EXPORT_SYMBOL(orinoco_tx_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682/********************************************************************/
683/* Rx path (data frames) */
684/********************************************************************/
685
686/* Does the frame have a SNAP header indicating it should be
687 * de-encapsulated to Ethernet-II? */
688static inline int is_ethersnap(void *_hdr)
689{
690 u8 *hdr = _hdr;
691
692 /* We de-encapsulate all packets which, a) have SNAP headers
693 * (i.e. SSAP=DSAP=0xaa and CTRL=0x3 in the 802.2 LLC header
694 * and where b) the OUI of the SNAP header is 00:00:00 or
695 * 00:00:f8 - we need both because different APs appear to use
696 * different OUIs for some reason */
697 return (memcmp(hdr, &encaps_hdr, 5) == 0)
David Kilroya94e8422009-02-04 23:05:44 +0000698 && ((hdr[5] == 0x00) || (hdr[5] == 0xf8));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699}
700
701static inline void orinoco_spy_gather(struct net_device *dev, u_char *mac,
702 int level, int noise)
703{
Pavel Roskin343c6862005-09-09 18:43:02 -0400704 struct iw_quality wstats;
705 wstats.level = level - 0x95;
706 wstats.noise = noise - 0x95;
707 wstats.qual = (level > noise) ? (level - noise) : 0;
Andrey Borzenkovf941f852008-11-15 17:15:09 +0300708 wstats.updated = IW_QUAL_ALL_UPDATED | IW_QUAL_DBM;
Pavel Roskin343c6862005-09-09 18:43:02 -0400709 /* Update spy records */
710 wireless_spy_update(dev, mac, &wstats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711}
712
713static void orinoco_stat_gather(struct net_device *dev,
714 struct sk_buff *skb,
715 struct hermes_rx_descriptor *desc)
716{
David Kilroyea60a6a2009-06-18 23:21:26 +0100717 struct orinoco_private *priv = ndev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 /* Using spy support with lots of Rx packets, like in an
720 * infrastructure (AP), will really slow down everything, because
721 * the MAC address must be compared to each entry of the spy list.
722 * If the user really asks for it (set some address in the
723 * spy list), we do it, but he will pay the price.
724 * Note that to get here, you need both WIRELESS_SPY
725 * compiled in AND some addresses in the list !!!
726 */
727 /* Note : gcc will optimise the whole section away if
728 * WIRELESS_SPY is not defined... - Jean II */
729 if (SPY_NUMBER(priv)) {
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700730 orinoco_spy_gather(dev, skb_mac_header(skb) + ETH_ALEN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 desc->signal, desc->silence);
732 }
733}
734
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200735/*
736 * orinoco_rx_monitor - handle received monitor frames.
737 *
738 * Arguments:
739 * dev network device
740 * rxfid received FID
741 * desc rx descriptor of the frame
742 *
743 * Call context: interrupt
744 */
745static void orinoco_rx_monitor(struct net_device *dev, u16 rxfid,
746 struct hermes_rx_descriptor *desc)
747{
748 u32 hdrlen = 30; /* return full header by default */
749 u32 datalen = 0;
750 u16 fc;
751 int err;
752 int len;
753 struct sk_buff *skb;
David Kilroyea60a6a2009-06-18 23:21:26 +0100754 struct orinoco_private *priv = ndev_priv(dev);
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200755 struct net_device_stats *stats = &priv->stats;
756 hermes_t *hw = &priv->hw;
757
758 len = le16_to_cpu(desc->data_len);
759
760 /* Determine the size of the header and the data */
761 fc = le16_to_cpu(desc->frame_ctl);
762 switch (fc & IEEE80211_FCTL_FTYPE) {
763 case IEEE80211_FTYPE_DATA:
764 if ((fc & IEEE80211_FCTL_TODS)
765 && (fc & IEEE80211_FCTL_FROMDS))
766 hdrlen = 30;
767 else
768 hdrlen = 24;
769 datalen = len;
770 break;
771 case IEEE80211_FTYPE_MGMT:
772 hdrlen = 24;
773 datalen = len;
774 break;
775 case IEEE80211_FTYPE_CTL:
776 switch (fc & IEEE80211_FCTL_STYPE) {
777 case IEEE80211_STYPE_PSPOLL:
778 case IEEE80211_STYPE_RTS:
779 case IEEE80211_STYPE_CFEND:
780 case IEEE80211_STYPE_CFENDACK:
781 hdrlen = 16;
782 break;
783 case IEEE80211_STYPE_CTS:
784 case IEEE80211_STYPE_ACK:
785 hdrlen = 10;
786 break;
787 }
788 break;
789 default:
790 /* Unknown frame type */
791 break;
792 }
793
794 /* sanity check the length */
Johannes Berg2c7060022008-10-30 22:09:54 +0100795 if (datalen > IEEE80211_MAX_DATA_LEN + 12) {
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200796 printk(KERN_DEBUG "%s: oversized monitor frame, "
797 "data length = %d\n", dev->name, datalen);
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200798 stats->rx_length_errors++;
799 goto update_stats;
800 }
801
802 skb = dev_alloc_skb(hdrlen + datalen);
803 if (!skb) {
804 printk(KERN_WARNING "%s: Cannot allocate skb for monitor frame\n",
805 dev->name);
Florin Malitabb6e0932006-05-22 22:35:30 -0700806 goto update_stats;
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200807 }
808
809 /* Copy the 802.11 header to the skb */
810 memcpy(skb_put(skb, hdrlen), &(desc->frame_ctl), hdrlen);
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700811 skb_reset_mac_header(skb);
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200812
813 /* If any, copy the data from the card to the skb */
814 if (datalen > 0) {
David Kilroyb42f2072010-05-01 14:05:38 +0100815 err = hw->ops->bap_pread(hw, IRQ_BAP, skb_put(skb, datalen),
816 ALIGN(datalen, 2), rxfid,
817 HERMES_802_2_OFFSET);
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200818 if (err) {
819 printk(KERN_ERR "%s: error %d reading monitor frame\n",
820 dev->name, err);
821 goto drop;
822 }
823 }
824
825 skb->dev = dev;
826 skb->ip_summed = CHECKSUM_NONE;
827 skb->pkt_type = PACKET_OTHERHOST;
Harvey Harrisonc1b4aa32009-01-29 13:26:44 -0800828 skb->protocol = cpu_to_be16(ETH_P_802_2);
David Kilroy6fe9deb2009-02-04 23:05:43 +0000829
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200830 stats->rx_packets++;
831 stats->rx_bytes += skb->len;
832
833 netif_rx(skb);
834 return;
835
836 drop:
837 dev_kfree_skb_irq(skb);
838 update_stats:
839 stats->rx_errors++;
840 stats->rx_dropped++;
841}
842
David Kilroy9afac702010-05-01 14:05:41 +0100843void __orinoco_ev_rx(struct net_device *dev, hermes_t *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
David Kilroyea60a6a2009-06-18 23:21:26 +0100845 struct orinoco_private *priv = ndev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 struct net_device_stats *stats = &priv->stats;
847 struct iw_statistics *wstats = &priv->wstats;
848 struct sk_buff *skb = NULL;
David Kilroy31afcef2008-08-21 23:28:04 +0100849 u16 rxfid, status;
Christoph Hellwig8f2abf42005-06-19 01:28:02 +0200850 int length;
David Kilroy31afcef2008-08-21 23:28:04 +0100851 struct hermes_rx_descriptor *desc;
852 struct orinoco_rx_data *rx_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 int err;
854
David Kilroy31afcef2008-08-21 23:28:04 +0100855 desc = kmalloc(sizeof(*desc), GFP_ATOMIC);
856 if (!desc) {
857 printk(KERN_WARNING
858 "%s: Can't allocate space for RX descriptor\n",
859 dev->name);
860 goto update_stats;
861 }
862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 rxfid = hermes_read_regn(hw, RXFID);
864
David Kilroyb42f2072010-05-01 14:05:38 +0100865 err = hw->ops->bap_pread(hw, IRQ_BAP, desc, sizeof(*desc),
866 rxfid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (err) {
868 printk(KERN_ERR "%s: error %d reading Rx descriptor. "
869 "Frame dropped.\n", dev->name, err);
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200870 goto update_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
872
David Kilroy31afcef2008-08-21 23:28:04 +0100873 status = le16_to_cpu(desc->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200875 if (status & HERMES_RXSTAT_BADCRC) {
876 DEBUG(1, "%s: Bad CRC on Rx. Frame dropped.\n",
877 dev->name);
878 stats->rx_crc_errors++;
879 goto update_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 }
881
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200882 /* Handle frames in monitor mode */
David Kilroy5217c572009-06-18 23:21:32 +0100883 if (priv->iw_mode == NL80211_IFTYPE_MONITOR) {
David Kilroy31afcef2008-08-21 23:28:04 +0100884 orinoco_rx_monitor(dev, rxfid, desc);
885 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 }
887
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200888 if (status & HERMES_RXSTAT_UNDECRYPTABLE) {
889 DEBUG(1, "%s: Undecryptable frame on Rx. Frame dropped.\n",
890 dev->name);
891 wstats->discard.code++;
892 goto update_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 }
894
David Kilroy31afcef2008-08-21 23:28:04 +0100895 length = le16_to_cpu(desc->data_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 /* Sanity checks */
898 if (length < 3) { /* No for even an 802.2 LLC header */
899 /* At least on Symbol firmware with PCF we get quite a
David Kilroy6fe9deb2009-02-04 23:05:43 +0000900 lot of these legitimately - Poll frames with no
901 data. */
David Kilroy31afcef2008-08-21 23:28:04 +0100902 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
Johannes Berg2c7060022008-10-30 22:09:54 +0100904 if (length > IEEE80211_MAX_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 printk(KERN_WARNING "%s: Oversized frame received (%d bytes)\n",
906 dev->name, length);
907 stats->rx_length_errors++;
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200908 goto update_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
910
David Kilroy23edcc42008-08-21 23:28:05 +0100911 /* Payload size does not include Michael MIC. Increase payload
912 * size to read it together with the data. */
913 if (status & HERMES_RXSTAT_MIC)
914 length += MICHAEL_MIC_LEN;
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 /* We need space for the packet data itself, plus an ethernet
917 header, plus 2 bytes so we can align the IP header on a
918 32bit boundary, plus 1 byte so we can read in odd length
919 packets from the card, which has an IO granularity of 16
David Kilroy6fe9deb2009-02-04 23:05:43 +0000920 bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 skb = dev_alloc_skb(length+ETH_HLEN+2+1);
922 if (!skb) {
923 printk(KERN_WARNING "%s: Can't allocate skb for Rx\n",
924 dev->name);
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200925 goto update_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 }
927
Christoph Hellwig8f2abf42005-06-19 01:28:02 +0200928 /* We'll prepend the header, so reserve space for it. The worst
929 case is no decapsulation, when 802.3 header is prepended and
930 nothing is removed. 2 is for aligning the IP header. */
931 skb_reserve(skb, ETH_HLEN + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
David Kilroyb42f2072010-05-01 14:05:38 +0100933 err = hw->ops->bap_pread(hw, IRQ_BAP, skb_put(skb, length),
934 ALIGN(length, 2), rxfid,
935 HERMES_802_2_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 if (err) {
937 printk(KERN_ERR "%s: error %d reading frame. "
938 "Frame dropped.\n", dev->name, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 goto drop;
940 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
David Kilroy31afcef2008-08-21 23:28:04 +0100942 /* Add desc and skb to rx queue */
943 rx_data = kzalloc(sizeof(*rx_data), GFP_ATOMIC);
944 if (!rx_data) {
945 printk(KERN_WARNING "%s: Can't allocate RX packet\n",
946 dev->name);
947 goto drop;
948 }
949 rx_data->desc = desc;
950 rx_data->skb = skb;
951 list_add_tail(&rx_data->list, &priv->rx_list);
952 tasklet_schedule(&priv->rx_tasklet);
953
954 return;
955
956drop:
957 dev_kfree_skb_irq(skb);
958update_stats:
959 stats->rx_errors++;
960 stats->rx_dropped++;
961out:
962 kfree(desc);
963}
David Kilroy9afac702010-05-01 14:05:41 +0100964EXPORT_SYMBOL(__orinoco_ev_rx);
David Kilroy31afcef2008-08-21 23:28:04 +0100965
966static void orinoco_rx(struct net_device *dev,
967 struct hermes_rx_descriptor *desc,
968 struct sk_buff *skb)
969{
David Kilroyea60a6a2009-06-18 23:21:26 +0100970 struct orinoco_private *priv = ndev_priv(dev);
David Kilroy31afcef2008-08-21 23:28:04 +0100971 struct net_device_stats *stats = &priv->stats;
972 u16 status, fc;
973 int length;
974 struct ethhdr *hdr;
975
976 status = le16_to_cpu(desc->status);
977 length = le16_to_cpu(desc->data_len);
978 fc = le16_to_cpu(desc->frame_ctl);
979
David Kilroy23edcc42008-08-21 23:28:05 +0100980 /* Calculate and check MIC */
981 if (status & HERMES_RXSTAT_MIC) {
David Kilroy4af198f2009-08-05 21:23:32 +0100982 struct orinoco_tkip_key *key;
David Kilroy23edcc42008-08-21 23:28:05 +0100983 int key_id = ((status & HERMES_RXSTAT_MIC_KEY_ID) >>
984 HERMES_MIC_KEY_ID_SHIFT);
985 u8 mic[MICHAEL_MIC_LEN];
986 u8 *rxmic;
987 u8 *src = (fc & IEEE80211_FCTL_FROMDS) ?
988 desc->addr3 : desc->addr2;
989
990 /* Extract Michael MIC from payload */
991 rxmic = skb->data + skb->len - MICHAEL_MIC_LEN;
992
993 skb_trim(skb, skb->len - MICHAEL_MIC_LEN);
994 length -= MICHAEL_MIC_LEN;
995
David Kilroy4af198f2009-08-05 21:23:32 +0100996 key = (struct orinoco_tkip_key *) priv->keys[key_id].key;
997
998 if (!key) {
999 printk(KERN_WARNING "%s: Received encrypted frame from "
1000 "%pM using key %i, but key is not installed\n",
1001 dev->name, src, key_id);
1002 goto drop;
1003 }
1004
1005 orinoco_mic(priv->rx_tfm_mic, key->rx_mic, desc->addr1, src,
David Kilroy23edcc42008-08-21 23:28:05 +01001006 0, /* priority or QoS? */
David Kilroy4af198f2009-08-05 21:23:32 +01001007 skb->data, skb->len, &mic[0]);
David Kilroy23edcc42008-08-21 23:28:05 +01001008
1009 if (memcmp(mic, rxmic,
1010 MICHAEL_MIC_LEN)) {
1011 union iwreq_data wrqu;
1012 struct iw_michaelmicfailure wxmic;
David Kilroy23edcc42008-08-21 23:28:05 +01001013
1014 printk(KERN_WARNING "%s: "
Johannes Berge1749612008-10-27 15:59:26 -07001015 "Invalid Michael MIC in data frame from %pM, "
David Kilroy23edcc42008-08-21 23:28:05 +01001016 "using key %i\n",
Johannes Berge1749612008-10-27 15:59:26 -07001017 dev->name, src, key_id);
David Kilroy23edcc42008-08-21 23:28:05 +01001018
1019 /* TODO: update stats */
1020
1021 /* Notify userspace */
1022 memset(&wxmic, 0, sizeof(wxmic));
1023 wxmic.flags = key_id & IW_MICFAILURE_KEY_ID;
1024 wxmic.flags |= (desc->addr1[0] & 1) ?
1025 IW_MICFAILURE_GROUP : IW_MICFAILURE_PAIRWISE;
1026 wxmic.src_addr.sa_family = ARPHRD_ETHER;
1027 memcpy(wxmic.src_addr.sa_data, src, ETH_ALEN);
1028
1029 (void) orinoco_hw_get_tkip_iv(priv, key_id,
1030 &wxmic.tsc[0]);
1031
1032 memset(&wrqu, 0, sizeof(wrqu));
1033 wrqu.data.length = sizeof(wxmic);
1034 wireless_send_event(dev, IWEVMICHAELMICFAILURE, &wrqu,
1035 (char *) &wxmic);
1036
1037 goto drop;
1038 }
1039 }
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 /* Handle decapsulation
1042 * In most cases, the firmware tell us about SNAP frames.
1043 * For some reason, the SNAP frames sent by LinkSys APs
1044 * are not properly recognised by most firmwares.
1045 * So, check ourselves */
Christoph Hellwig8f2abf42005-06-19 01:28:02 +02001046 if (length >= ENCAPS_OVERHEAD &&
1047 (((status & HERMES_RXSTAT_MSGTYPE) == HERMES_RXSTAT_1042) ||
1048 ((status & HERMES_RXSTAT_MSGTYPE) == HERMES_RXSTAT_TUNNEL) ||
1049 is_ethersnap(skb->data))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 /* These indicate a SNAP within 802.2 LLC within
1051 802.11 frame which we'll need to de-encapsulate to
1052 the original EthernetII frame. */
David Kilroyb2f30a02009-02-04 23:05:46 +00001053 hdr = (struct ethhdr *)skb_push(skb,
1054 ETH_HLEN - ENCAPS_OVERHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 } else {
Christoph Hellwig8f2abf42005-06-19 01:28:02 +02001056 /* 802.3 frame - prepend 802.3 header as is */
1057 hdr = (struct ethhdr *)skb_push(skb, ETH_HLEN);
1058 hdr->h_proto = htons(length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 }
David Kilroy31afcef2008-08-21 23:28:04 +01001060 memcpy(hdr->h_dest, desc->addr1, ETH_ALEN);
Christoph Hellwig8f2abf42005-06-19 01:28:02 +02001061 if (fc & IEEE80211_FCTL_FROMDS)
David Kilroy31afcef2008-08-21 23:28:04 +01001062 memcpy(hdr->h_source, desc->addr3, ETH_ALEN);
Christoph Hellwig8f2abf42005-06-19 01:28:02 +02001063 else
David Kilroy31afcef2008-08-21 23:28:04 +01001064 memcpy(hdr->h_source, desc->addr2, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 skb->protocol = eth_type_trans(skb, dev);
1067 skb->ip_summed = CHECKSUM_NONE;
Christoph Hellwig8f2abf42005-06-19 01:28:02 +02001068 if (fc & IEEE80211_FCTL_TODS)
1069 skb->pkt_type = PACKET_OTHERHOST;
David Kilroy6fe9deb2009-02-04 23:05:43 +00001070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 /* Process the wireless stats if needed */
David Kilroy31afcef2008-08-21 23:28:04 +01001072 orinoco_stat_gather(dev, skb, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 /* Pass the packet to the networking stack */
1075 netif_rx(skb);
1076 stats->rx_packets++;
1077 stats->rx_bytes += length;
1078
1079 return;
David Kilroy23edcc42008-08-21 23:28:05 +01001080
1081 drop:
1082 dev_kfree_skb(skb);
1083 stats->rx_errors++;
1084 stats->rx_dropped++;
David Kilroy31afcef2008-08-21 23:28:04 +01001085}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
David Kilroy31afcef2008-08-21 23:28:04 +01001087static void orinoco_rx_isr_tasklet(unsigned long data)
1088{
David Kilroy53819562009-06-18 23:21:28 +01001089 struct orinoco_private *priv = (struct orinoco_private *) data;
1090 struct net_device *dev = priv->ndev;
David Kilroy31afcef2008-08-21 23:28:04 +01001091 struct orinoco_rx_data *rx_data, *temp;
1092 struct hermes_rx_descriptor *desc;
1093 struct sk_buff *skb;
David Kilroy20953ad2009-01-07 00:23:55 +00001094 unsigned long flags;
1095
1096 /* orinoco_rx requires the driver lock, and we also need to
1097 * protect priv->rx_list, so just hold the lock over the
1098 * lot.
1099 *
1100 * If orinoco_lock fails, we've unplugged the card. In this
1101 * case just abort. */
1102 if (orinoco_lock(priv, &flags) != 0)
1103 return;
David Kilroy31afcef2008-08-21 23:28:04 +01001104
1105 /* extract desc and skb from queue */
1106 list_for_each_entry_safe(rx_data, temp, &priv->rx_list, list) {
1107 desc = rx_data->desc;
1108 skb = rx_data->skb;
1109 list_del(&rx_data->list);
1110 kfree(rx_data);
1111
1112 orinoco_rx(dev, desc, skb);
1113
1114 kfree(desc);
1115 }
David Kilroy20953ad2009-01-07 00:23:55 +00001116
1117 orinoco_unlock(priv, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118}
1119
1120/********************************************************************/
1121/* Rx path (info frames) */
1122/********************************************************************/
1123
1124static void print_linkstatus(struct net_device *dev, u16 status)
1125{
David Kilroy21312662009-02-04 23:05:47 +00001126 char *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128 if (suppress_linkstatus)
1129 return;
1130
1131 switch (status) {
1132 case HERMES_LINKSTATUS_NOT_CONNECTED:
1133 s = "Not Connected";
1134 break;
1135 case HERMES_LINKSTATUS_CONNECTED:
1136 s = "Connected";
1137 break;
1138 case HERMES_LINKSTATUS_DISCONNECTED:
1139 s = "Disconnected";
1140 break;
1141 case HERMES_LINKSTATUS_AP_CHANGE:
1142 s = "AP Changed";
1143 break;
1144 case HERMES_LINKSTATUS_AP_OUT_OF_RANGE:
1145 s = "AP Out of Range";
1146 break;
1147 case HERMES_LINKSTATUS_AP_IN_RANGE:
1148 s = "AP In Range";
1149 break;
1150 case HERMES_LINKSTATUS_ASSOC_FAILED:
1151 s = "Association Failed";
1152 break;
1153 default:
1154 s = "UNKNOWN";
1155 }
David Kilroy6fe9deb2009-02-04 23:05:43 +00001156
Pavel Roskin11eaea42009-01-18 23:20:58 -05001157 printk(KERN_DEBUG "%s: New link status: %s (%04x)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 dev->name, s, status);
1159}
1160
Christoph Hellwig16739b02005-06-19 01:27:51 +02001161/* Search scan results for requested BSSID, join it if found */
David Howellsc4028952006-11-22 14:57:56 +00001162static void orinoco_join_ap(struct work_struct *work)
Christoph Hellwig16739b02005-06-19 01:27:51 +02001163{
David Howellsc4028952006-11-22 14:57:56 +00001164 struct orinoco_private *priv =
1165 container_of(work, struct orinoco_private, join_work);
1166 struct net_device *dev = priv->ndev;
Christoph Hellwig16739b02005-06-19 01:27:51 +02001167 struct hermes *hw = &priv->hw;
1168 int err;
1169 unsigned long flags;
1170 struct join_req {
1171 u8 bssid[ETH_ALEN];
Pavel Roskind133ae42005-09-23 04:18:06 -04001172 __le16 channel;
Christoph Hellwig16739b02005-06-19 01:27:51 +02001173 } __attribute__ ((packed)) req;
1174 const int atom_len = offsetof(struct prism2_scan_apinfo, atim);
Pavel Roskinc89cc222005-09-01 20:06:06 -04001175 struct prism2_scan_apinfo *atom = NULL;
Christoph Hellwig16739b02005-06-19 01:27:51 +02001176 int offset = 4;
Pavel Roskinc89cc222005-09-01 20:06:06 -04001177 int found = 0;
Christoph Hellwig16739b02005-06-19 01:27:51 +02001178 u8 *buf;
1179 u16 len;
1180
1181 /* Allocate buffer for scan results */
1182 buf = kmalloc(MAX_SCAN_LEN, GFP_KERNEL);
David Kilroya94e8422009-02-04 23:05:44 +00001183 if (!buf)
Christoph Hellwig16739b02005-06-19 01:27:51 +02001184 return;
1185
1186 if (orinoco_lock(priv, &flags) != 0)
Pavel Roskinf3cb4cc2005-09-23 04:18:06 -04001187 goto fail_lock;
Christoph Hellwig16739b02005-06-19 01:27:51 +02001188
1189 /* Sanity checks in case user changed something in the meantime */
David Kilroya94e8422009-02-04 23:05:44 +00001190 if (!priv->bssid_fixed)
Christoph Hellwig16739b02005-06-19 01:27:51 +02001191 goto out;
1192
1193 if (strlen(priv->desired_essid) == 0)
1194 goto out;
1195
1196 /* Read scan results from the firmware */
David Kilroyb42f2072010-05-01 14:05:38 +01001197 err = hw->ops->read_ltv(hw, USER_BAP,
1198 HERMES_RID_SCANRESULTSTABLE,
1199 MAX_SCAN_LEN, &len, buf);
Christoph Hellwig16739b02005-06-19 01:27:51 +02001200 if (err) {
1201 printk(KERN_ERR "%s: Cannot read scan results\n",
1202 dev->name);
1203 goto out;
1204 }
1205
1206 len = HERMES_RECLEN_TO_BYTES(len);
1207
1208 /* Go through the scan results looking for the channel of the AP
1209 * we were requested to join */
1210 for (; offset + atom_len <= len; offset += atom_len) {
1211 atom = (struct prism2_scan_apinfo *) (buf + offset);
Pavel Roskinc89cc222005-09-01 20:06:06 -04001212 if (memcmp(&atom->bssid, priv->desired_bssid, ETH_ALEN) == 0) {
1213 found = 1;
1214 break;
1215 }
Christoph Hellwig16739b02005-06-19 01:27:51 +02001216 }
1217
David Kilroya94e8422009-02-04 23:05:44 +00001218 if (!found) {
Pavel Roskinc89cc222005-09-01 20:06:06 -04001219 DEBUG(1, "%s: Requested AP not found in scan results\n",
1220 dev->name);
1221 goto out;
1222 }
Christoph Hellwig16739b02005-06-19 01:27:51 +02001223
Christoph Hellwig16739b02005-06-19 01:27:51 +02001224 memcpy(req.bssid, priv->desired_bssid, ETH_ALEN);
1225 req.channel = atom->channel; /* both are little-endian */
1226 err = HERMES_WRITE_RECORD(hw, USER_BAP, HERMES_RID_CNFJOINREQUEST,
1227 &req);
1228 if (err)
1229 printk(KERN_ERR "%s: Error issuing join request\n", dev->name);
1230
1231 out:
Christoph Hellwig16739b02005-06-19 01:27:51 +02001232 orinoco_unlock(priv, &flags);
Pavel Roskinf3cb4cc2005-09-23 04:18:06 -04001233
1234 fail_lock:
1235 kfree(buf);
Christoph Hellwig16739b02005-06-19 01:27:51 +02001236}
1237
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001238/* Send new BSSID to userspace */
David Kilroy6cd90b12008-08-21 23:28:00 +01001239static void orinoco_send_bssid_wevent(struct orinoco_private *priv)
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001240{
David Howellsc4028952006-11-22 14:57:56 +00001241 struct net_device *dev = priv->ndev;
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001242 struct hermes *hw = &priv->hw;
1243 union iwreq_data wrqu;
1244 int err;
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001245
David Kilroyb42f2072010-05-01 14:05:38 +01001246 err = hw->ops->read_ltv(hw, USER_BAP, HERMES_RID_CURRENTBSSID,
1247 ETH_ALEN, NULL, wrqu.ap_addr.sa_data);
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001248 if (err != 0)
David Kilroy6cd90b12008-08-21 23:28:00 +01001249 return;
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001250
1251 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
1252
1253 /* Send event to user space */
1254 wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL);
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001255}
1256
David Kilroy06009fd2008-08-21 23:28:03 +01001257static void orinoco_send_assocreqie_wevent(struct orinoco_private *priv)
1258{
1259 struct net_device *dev = priv->ndev;
1260 struct hermes *hw = &priv->hw;
1261 union iwreq_data wrqu;
1262 int err;
1263 u8 buf[88];
1264 u8 *ie;
1265
1266 if (!priv->has_wpa)
1267 return;
1268
David Kilroyb42f2072010-05-01 14:05:38 +01001269 err = hw->ops->read_ltv(hw, USER_BAP, HERMES_RID_CURRENT_ASSOC_REQ_INFO,
1270 sizeof(buf), NULL, &buf);
David Kilroy06009fd2008-08-21 23:28:03 +01001271 if (err != 0)
1272 return;
1273
1274 ie = orinoco_get_wpa_ie(buf, sizeof(buf));
1275 if (ie) {
1276 int rem = sizeof(buf) - (ie - &buf[0]);
1277 wrqu.data.length = ie[1] + 2;
1278 if (wrqu.data.length > rem)
1279 wrqu.data.length = rem;
1280
1281 if (wrqu.data.length)
1282 /* Send event to user space */
1283 wireless_send_event(dev, IWEVASSOCREQIE, &wrqu, ie);
1284 }
1285}
1286
1287static void orinoco_send_assocrespie_wevent(struct orinoco_private *priv)
1288{
1289 struct net_device *dev = priv->ndev;
1290 struct hermes *hw = &priv->hw;
1291 union iwreq_data wrqu;
1292 int err;
1293 u8 buf[88]; /* TODO: verify max size or IW_GENERIC_IE_MAX */
1294 u8 *ie;
1295
1296 if (!priv->has_wpa)
1297 return;
1298
David Kilroyb42f2072010-05-01 14:05:38 +01001299 err = hw->ops->read_ltv(hw, USER_BAP,
1300 HERMES_RID_CURRENT_ASSOC_RESP_INFO,
1301 sizeof(buf), NULL, &buf);
David Kilroy06009fd2008-08-21 23:28:03 +01001302 if (err != 0)
1303 return;
1304
1305 ie = orinoco_get_wpa_ie(buf, sizeof(buf));
1306 if (ie) {
1307 int rem = sizeof(buf) - (ie - &buf[0]);
1308 wrqu.data.length = ie[1] + 2;
1309 if (wrqu.data.length > rem)
1310 wrqu.data.length = rem;
1311
1312 if (wrqu.data.length)
1313 /* Send event to user space */
1314 wireless_send_event(dev, IWEVASSOCRESPIE, &wrqu, ie);
1315 }
1316}
1317
David Kilroy6cd90b12008-08-21 23:28:00 +01001318static void orinoco_send_wevents(struct work_struct *work)
1319{
1320 struct orinoco_private *priv =
1321 container_of(work, struct orinoco_private, wevent_work);
1322 unsigned long flags;
1323
1324 if (orinoco_lock(priv, &flags) != 0)
1325 return;
1326
David Kilroy06009fd2008-08-21 23:28:03 +01001327 orinoco_send_assocreqie_wevent(priv);
1328 orinoco_send_assocrespie_wevent(priv);
David Kilroy6cd90b12008-08-21 23:28:00 +01001329 orinoco_send_bssid_wevent(priv);
1330
1331 orinoco_unlock(priv, &flags);
1332}
Dan Williams1e3428e2007-10-10 23:56:25 -04001333
David Kilroyc63cdbe2009-06-18 23:21:33 +01001334static void qbuf_scan(struct orinoco_private *priv, void *buf,
1335 int len, int type)
1336{
1337 struct orinoco_scan_data *sd;
1338 unsigned long flags;
1339
1340 sd = kmalloc(sizeof(*sd), GFP_ATOMIC);
1341 sd->buf = buf;
1342 sd->len = len;
1343 sd->type = type;
1344
1345 spin_lock_irqsave(&priv->scan_lock, flags);
1346 list_add_tail(&sd->list, &priv->scan_list);
1347 spin_unlock_irqrestore(&priv->scan_lock, flags);
1348
1349 schedule_work(&priv->process_scan);
1350}
1351
1352static void qabort_scan(struct orinoco_private *priv)
1353{
1354 struct orinoco_scan_data *sd;
1355 unsigned long flags;
1356
1357 sd = kmalloc(sizeof(*sd), GFP_ATOMIC);
1358 sd->len = -1; /* Abort */
1359
1360 spin_lock_irqsave(&priv->scan_lock, flags);
1361 list_add_tail(&sd->list, &priv->scan_list);
1362 spin_unlock_irqrestore(&priv->scan_lock, flags);
1363
1364 schedule_work(&priv->process_scan);
1365}
1366
1367static void orinoco_process_scan_results(struct work_struct *work)
1368{
1369 struct orinoco_private *priv =
1370 container_of(work, struct orinoco_private, process_scan);
1371 struct orinoco_scan_data *sd, *temp;
1372 unsigned long flags;
1373 void *buf;
1374 int len;
1375 int type;
1376
1377 spin_lock_irqsave(&priv->scan_lock, flags);
1378 list_for_each_entry_safe(sd, temp, &priv->scan_list, list) {
1379 spin_unlock_irqrestore(&priv->scan_lock, flags);
1380
1381 buf = sd->buf;
1382 len = sd->len;
1383 type = sd->type;
1384
1385 list_del(&sd->list);
1386 kfree(sd);
1387
1388 if (len > 0) {
1389 if (type == HERMES_INQ_CHANNELINFO)
1390 orinoco_add_extscan_result(priv, buf, len);
1391 else
1392 orinoco_add_hostscan_results(priv, buf, len);
1393
1394 kfree(buf);
1395 } else if (priv->scan_request) {
1396 /* Either abort or complete the scan */
1397 cfg80211_scan_done(priv->scan_request, (len < 0));
1398 priv->scan_request = NULL;
1399 }
1400
1401 spin_lock_irqsave(&priv->scan_lock, flags);
1402 }
1403 spin_unlock_irqrestore(&priv->scan_lock, flags);
1404}
1405
David Kilroy9afac702010-05-01 14:05:41 +01001406void __orinoco_ev_info(struct net_device *dev, hermes_t *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407{
David Kilroyea60a6a2009-06-18 23:21:26 +01001408 struct orinoco_private *priv = ndev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 u16 infofid;
1410 struct {
Pavel Roskind133ae42005-09-23 04:18:06 -04001411 __le16 len;
1412 __le16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 } __attribute__ ((packed)) info;
1414 int len, type;
1415 int err;
1416
1417 /* This is an answer to an INQUIRE command that we did earlier,
1418 * or an information "event" generated by the card
1419 * The controller return to us a pseudo frame containing
1420 * the information in question - Jean II */
1421 infofid = hermes_read_regn(hw, INFOFID);
1422
1423 /* Read the info frame header - don't try too hard */
David Kilroyb42f2072010-05-01 14:05:38 +01001424 err = hw->ops->bap_pread(hw, IRQ_BAP, &info, sizeof(info),
1425 infofid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 if (err) {
1427 printk(KERN_ERR "%s: error %d reading info frame. "
1428 "Frame dropped.\n", dev->name, err);
1429 return;
1430 }
David Kilroy6fe9deb2009-02-04 23:05:43 +00001431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 len = HERMES_RECLEN_TO_BYTES(le16_to_cpu(info.len));
1433 type = le16_to_cpu(info.type);
1434
1435 switch (type) {
1436 case HERMES_INQ_TALLIES: {
1437 struct hermes_tallies_frame tallies;
1438 struct iw_statistics *wstats = &priv->wstats;
David Kilroy6fe9deb2009-02-04 23:05:43 +00001439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 if (len > sizeof(tallies)) {
1441 printk(KERN_WARNING "%s: Tallies frame too long (%d bytes)\n",
1442 dev->name, len);
1443 len = sizeof(tallies);
1444 }
David Kilroy6fe9deb2009-02-04 23:05:43 +00001445
David Kilroyb42f2072010-05-01 14:05:38 +01001446 err = hw->ops->bap_pread(hw, IRQ_BAP, &tallies, len,
1447 infofid, sizeof(info));
Christoph Hellwig84d8a2f2005-05-14 17:30:22 +02001448 if (err)
1449 break;
David Kilroy6fe9deb2009-02-04 23:05:43 +00001450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 /* Increment our various counters */
1452 /* wstats->discard.nwid - no wrong BSSID stuff */
1453 wstats->discard.code +=
1454 le16_to_cpu(tallies.RxWEPUndecryptable);
David Kilroy6fe9deb2009-02-04 23:05:43 +00001455 if (len == sizeof(tallies))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 wstats->discard.code +=
1457 le16_to_cpu(tallies.RxDiscards_WEPICVError) +
1458 le16_to_cpu(tallies.RxDiscards_WEPExcluded);
1459 wstats->discard.misc +=
1460 le16_to_cpu(tallies.TxDiscardsWrongSA);
1461 wstats->discard.fragment +=
1462 le16_to_cpu(tallies.RxMsgInBadMsgFragments);
1463 wstats->discard.retries +=
1464 le16_to_cpu(tallies.TxRetryLimitExceeded);
1465 /* wstats->miss.beacon - no match */
1466 }
1467 break;
1468 case HERMES_INQ_LINKSTATUS: {
1469 struct hermes_linkstatus linkstatus;
1470 u16 newstatus;
1471 int connected;
1472
David Kilroy5217c572009-06-18 23:21:32 +01001473 if (priv->iw_mode == NL80211_IFTYPE_MONITOR)
Christoph Hellwig8f2abf42005-06-19 01:28:02 +02001474 break;
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 if (len != sizeof(linkstatus)) {
1477 printk(KERN_WARNING "%s: Unexpected size for linkstatus frame (%d bytes)\n",
1478 dev->name, len);
1479 break;
1480 }
1481
David Kilroyb42f2072010-05-01 14:05:38 +01001482 err = hw->ops->bap_pread(hw, IRQ_BAP, &linkstatus, len,
1483 infofid, sizeof(info));
Christoph Hellwig84d8a2f2005-05-14 17:30:22 +02001484 if (err)
1485 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 newstatus = le16_to_cpu(linkstatus.linkstatus);
1487
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001488 /* Symbol firmware uses "out of range" to signal that
1489 * the hostscan frame can be requested. */
1490 if (newstatus == HERMES_LINKSTATUS_AP_OUT_OF_RANGE &&
1491 priv->firmware_type == FIRMWARE_TYPE_SYMBOL &&
David Kilroyc63cdbe2009-06-18 23:21:33 +01001492 priv->has_hostscan && priv->scan_request) {
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001493 hermes_inquire(hw, HERMES_INQ_HOSTSCAN_SYMBOL);
1494 break;
1495 }
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 connected = (newstatus == HERMES_LINKSTATUS_CONNECTED)
1498 || (newstatus == HERMES_LINKSTATUS_AP_CHANGE)
1499 || (newstatus == HERMES_LINKSTATUS_AP_IN_RANGE);
1500
1501 if (connected)
1502 netif_carrier_on(dev);
David Gibson7bb7c3a2005-05-12 20:02:10 -04001503 else if (!ignore_disconnect)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 netif_carrier_off(dev);
1505
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001506 if (newstatus != priv->last_linkstatus) {
1507 priv->last_linkstatus = newstatus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 print_linkstatus(dev, newstatus);
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001509 /* The info frame contains only one word which is the
1510 * status (see hermes.h). The status is pretty boring
1511 * in itself, that's why we export the new BSSID...
1512 * Jean II */
1513 schedule_work(&priv->wevent_work);
1514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 }
1516 break;
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001517 case HERMES_INQ_SCAN:
David Kilroyc63cdbe2009-06-18 23:21:33 +01001518 if (!priv->scan_request && priv->bssid_fixed &&
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001519 priv->firmware_type == FIRMWARE_TYPE_INTERSIL) {
1520 schedule_work(&priv->join_work);
1521 break;
1522 }
1523 /* fall through */
1524 case HERMES_INQ_HOSTSCAN:
1525 case HERMES_INQ_HOSTSCAN_SYMBOL: {
1526 /* Result of a scanning. Contains information about
1527 * cells in the vicinity - Jean II */
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001528 unsigned char *buf;
1529
1530 /* Sanity check */
1531 if (len > 4096) {
1532 printk(KERN_WARNING "%s: Scan results too large (%d bytes)\n",
1533 dev->name, len);
David Kilroyc63cdbe2009-06-18 23:21:33 +01001534 qabort_scan(priv);
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001535 break;
1536 }
1537
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001538 /* Allocate buffer for results */
1539 buf = kmalloc(len, GFP_ATOMIC);
David Kilroyc63cdbe2009-06-18 23:21:33 +01001540 if (buf == NULL) {
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001541 /* No memory, so can't printk()... */
David Kilroyc63cdbe2009-06-18 23:21:33 +01001542 qabort_scan(priv);
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001543 break;
David Kilroyc63cdbe2009-06-18 23:21:33 +01001544 }
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001545
1546 /* Read scan data */
David Kilroyb42f2072010-05-01 14:05:38 +01001547 err = hw->ops->bap_pread(hw, IRQ_BAP, (void *) buf, len,
1548 infofid, sizeof(info));
Pavel Roskin708218b2005-09-01 20:05:19 -04001549 if (err) {
1550 kfree(buf);
David Kilroyc63cdbe2009-06-18 23:21:33 +01001551 qabort_scan(priv);
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001552 break;
Pavel Roskin708218b2005-09-01 20:05:19 -04001553 }
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001554
1555#ifdef ORINOCO_DEBUG
1556 {
1557 int i;
1558 printk(KERN_DEBUG "Scan result [%02X", buf[0]);
David Kilroya94e8422009-02-04 23:05:44 +00001559 for (i = 1; i < (len * 2); i++)
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001560 printk(":%02X", buf[i]);
1561 printk("]\n");
1562 }
1563#endif /* ORINOCO_DEBUG */
1564
David Kilroyc63cdbe2009-06-18 23:21:33 +01001565 qbuf_scan(priv, buf, len, type);
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001566 }
1567 break;
David Kilroy01632fa2008-08-21 23:27:58 +01001568 case HERMES_INQ_CHANNELINFO:
1569 {
1570 struct agere_ext_scan_info *bss;
1571
David Kilroyc63cdbe2009-06-18 23:21:33 +01001572 if (!priv->scan_request) {
David Kilroy01632fa2008-08-21 23:27:58 +01001573 printk(KERN_DEBUG "%s: Got chaninfo without scan, "
1574 "len=%d\n", dev->name, len);
1575 break;
1576 }
1577
1578 /* An empty result indicates that the scan is complete */
1579 if (len == 0) {
David Kilroyc63cdbe2009-06-18 23:21:33 +01001580 qbuf_scan(priv, NULL, len, type);
David Kilroy01632fa2008-08-21 23:27:58 +01001581 break;
1582 }
1583
1584 /* Sanity check */
David Kilroyc63cdbe2009-06-18 23:21:33 +01001585 else if (len < (offsetof(struct agere_ext_scan_info,
David Kilroy01632fa2008-08-21 23:27:58 +01001586 data) + 2)) {
1587 /* Drop this result now so we don't have to
1588 * keep checking later */
1589 printk(KERN_WARNING
1590 "%s: Ext scan results too short (%d bytes)\n",
1591 dev->name, len);
1592 break;
1593 }
1594
David Kilroyc63cdbe2009-06-18 23:21:33 +01001595 bss = kmalloc(len, GFP_ATOMIC);
David Kilroy01632fa2008-08-21 23:27:58 +01001596 if (bss == NULL)
1597 break;
1598
1599 /* Read scan data */
David Kilroyb42f2072010-05-01 14:05:38 +01001600 err = hw->ops->bap_pread(hw, IRQ_BAP, (void *) bss, len,
1601 infofid, sizeof(info));
David Kilroyc63cdbe2009-06-18 23:21:33 +01001602 if (err)
David Kilroy01632fa2008-08-21 23:27:58 +01001603 kfree(bss);
David Kilroyc63cdbe2009-06-18 23:21:33 +01001604 else
1605 qbuf_scan(priv, bss, len, type);
David Kilroy01632fa2008-08-21 23:27:58 +01001606
David Kilroy01632fa2008-08-21 23:27:58 +01001607 break;
1608 }
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001609 case HERMES_INQ_SEC_STAT_AGERE:
1610 /* Security status (Agere specific) */
1611 /* Ignore this frame for now */
1612 if (priv->firmware_type == FIRMWARE_TYPE_AGERE)
1613 break;
1614 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 default:
1616 printk(KERN_DEBUG "%s: Unknown information frame received: "
1617 "type 0x%04x, length %d\n", dev->name, type, len);
1618 /* We don't actually do anything about it */
1619 break;
1620 }
David Kilroyc63cdbe2009-06-18 23:21:33 +01001621
1622 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623}
David Kilroy9afac702010-05-01 14:05:41 +01001624EXPORT_SYMBOL(__orinoco_ev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
1626static void __orinoco_ev_infdrop(struct net_device *dev, hermes_t *hw)
1627{
1628 if (net_ratelimit())
1629 printk(KERN_DEBUG "%s: Information frame lost.\n", dev->name);
1630}
1631
1632/********************************************************************/
1633/* Internal hardware control routines */
1634/********************************************************************/
1635
David Kilroy6415f7d2009-06-18 23:21:30 +01001636static int __orinoco_up(struct orinoco_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637{
David Kilroya2608362009-06-18 23:21:23 +01001638 struct net_device *dev = priv->ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 struct hermes *hw = &priv->hw;
1640 int err;
1641
Christoph Hellwig84d8a2f2005-05-14 17:30:22 +02001642 netif_carrier_off(dev); /* just to make sure */
1643
David Kilroy721aa2f2009-06-18 23:21:31 +01001644 err = __orinoco_commit(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 if (err) {
1646 printk(KERN_ERR "%s: Error %d configuring card\n",
1647 dev->name, err);
1648 return err;
1649 }
1650
1651 /* Fire things up again */
1652 hermes_set_irqmask(hw, ORINOCO_INTEN);
1653 err = hermes_enable_port(hw, 0);
1654 if (err) {
1655 printk(KERN_ERR "%s: Error %d enabling MAC port\n",
1656 dev->name, err);
1657 return err;
1658 }
1659
1660 netif_start_queue(dev);
1661
1662 return 0;
1663}
1664
David Kilroy6415f7d2009-06-18 23:21:30 +01001665static int __orinoco_down(struct orinoco_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666{
David Kilroya2608362009-06-18 23:21:23 +01001667 struct net_device *dev = priv->ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 struct hermes *hw = &priv->hw;
1669 int err;
1670
1671 netif_stop_queue(dev);
1672
David Kilroya94e8422009-02-04 23:05:44 +00001673 if (!priv->hw_unavailable) {
1674 if (!priv->broken_disableport) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 err = hermes_disable_port(hw, 0);
1676 if (err) {
1677 /* Some firmwares (e.g. Intersil 1.3.x) seem
1678 * to have problems disabling the port, oh
1679 * well, too bad. */
1680 printk(KERN_WARNING "%s: Error %d disabling MAC port\n",
1681 dev->name, err);
1682 priv->broken_disableport = 1;
1683 }
1684 }
1685 hermes_set_irqmask(hw, 0);
1686 hermes_write_regn(hw, EVACK, 0xffff);
1687 }
David Kilroy6fe9deb2009-02-04 23:05:43 +00001688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 /* firmware will have to reassociate */
1690 netif_carrier_off(dev);
1691 priv->last_linkstatus = 0xffff;
1692
1693 return 0;
1694}
1695
David Kilroy6415f7d2009-06-18 23:21:30 +01001696static int orinoco_reinit_firmware(struct orinoco_private *priv)
Pavel Roskin37a6c612006-04-07 04:10:49 -04001697{
Pavel Roskin37a6c612006-04-07 04:10:49 -04001698 struct hermes *hw = &priv->hw;
1699 int err;
1700
David Kilroyb42f2072010-05-01 14:05:38 +01001701 err = hw->ops->init(hw);
Andrey Borzenkov0df6cbb2008-10-12 20:15:43 +04001702 if (priv->do_fw_download && !err) {
1703 err = orinoco_download(priv);
1704 if (err)
1705 priv->do_fw_download = 0;
1706 }
Pavel Roskin37a6c612006-04-07 04:10:49 -04001707 if (!err)
David Kilroy42a51b92009-06-18 23:21:20 +01001708 err = orinoco_hw_allocate_fid(priv);
Pavel Roskin37a6c612006-04-07 04:10:49 -04001709
1710 return err;
1711}
1712
David Kilroy721aa2f2009-06-18 23:21:31 +01001713static int
David Kilroy5865d012009-02-04 23:05:54 +00001714__orinoco_set_multicast_list(struct net_device *dev)
1715{
David Kilroyea60a6a2009-06-18 23:21:26 +01001716 struct orinoco_private *priv = ndev_priv(dev);
David Kilroy5865d012009-02-04 23:05:54 +00001717 int err = 0;
1718 int promisc, mc_count;
1719
1720 /* The Hermes doesn't seem to have an allmulti mode, so we go
1721 * into promiscuous mode and let the upper levels deal. */
1722 if ((dev->flags & IFF_PROMISC) || (dev->flags & IFF_ALLMULTI) ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001723 (netdev_mc_count(dev) > MAX_MULTICAST(priv))) {
David Kilroy5865d012009-02-04 23:05:54 +00001724 promisc = 1;
1725 mc_count = 0;
1726 } else {
1727 promisc = 0;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001728 mc_count = netdev_mc_count(dev);
David Kilroy5865d012009-02-04 23:05:54 +00001729 }
1730
Jiri Pirko655ffee2010-02-27 07:35:45 +00001731 err = __orinoco_hw_set_multicast_list(priv, dev, mc_count, promisc);
David Kilroy721aa2f2009-06-18 23:21:31 +01001732
1733 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734}
1735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736/* This must be called from user context, without locks held - use
1737 * schedule_work() */
David Kilroycb1576a2009-02-04 23:05:56 +00001738void orinoco_reset(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739{
David Howellsc4028952006-11-22 14:57:56 +00001740 struct orinoco_private *priv =
1741 container_of(work, struct orinoco_private, reset_work);
1742 struct net_device *dev = priv->ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 struct hermes *hw = &priv->hw;
Christoph Hellwig8551cb92005-05-14 17:30:04 +02001744 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 unsigned long flags;
1746
1747 if (orinoco_lock(priv, &flags) != 0)
1748 /* When the hardware becomes available again, whatever
1749 * detects that is responsible for re-initializing
1750 * it. So no need for anything further */
1751 return;
1752
1753 netif_stop_queue(dev);
1754
1755 /* Shut off interrupts. Depending on what state the hardware
1756 * is in, this might not work, but we'll try anyway */
1757 hermes_set_irqmask(hw, 0);
1758 hermes_write_regn(hw, EVACK, 0xffff);
1759
1760 priv->hw_unavailable++;
1761 priv->last_linkstatus = 0xffff; /* firmware will have to reassociate */
1762 netif_carrier_off(dev);
1763
1764 orinoco_unlock(priv, &flags);
1765
David Kilroyc63cdbe2009-06-18 23:21:33 +01001766 /* Scanning support: Notify scan cancellation */
1767 if (priv->scan_request) {
1768 cfg80211_scan_done(priv->scan_request, 1);
1769 priv->scan_request = NULL;
1770 }
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001771
Christoph Hellwig8551cb92005-05-14 17:30:04 +02001772 if (priv->hard_reset) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 err = (*priv->hard_reset)(priv);
Christoph Hellwig8551cb92005-05-14 17:30:04 +02001774 if (err) {
1775 printk(KERN_ERR "%s: orinoco_reset: Error %d "
1776 "performing hard reset\n", dev->name, err);
1777 goto disable;
1778 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 }
1780
David Kilroya2608362009-06-18 23:21:23 +01001781 err = orinoco_reinit_firmware(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 if (err) {
1783 printk(KERN_ERR "%s: orinoco_reset: Error %d re-initializing firmware\n",
1784 dev->name, err);
Christoph Hellwig8551cb92005-05-14 17:30:04 +02001785 goto disable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 }
1787
David Kilroyb2f30a02009-02-04 23:05:46 +00001788 /* This has to be called from user context */
David Kilroybcad6e82010-05-01 14:05:40 +01001789 orinoco_lock_irq(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
1791 priv->hw_unavailable--;
1792
1793 /* priv->open or priv->hw_unavailable might have changed while
1794 * we dropped the lock */
David Kilroya94e8422009-02-04 23:05:44 +00001795 if (priv->open && (!priv->hw_unavailable)) {
David Kilroya2608362009-06-18 23:21:23 +01001796 err = __orinoco_up(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 if (err) {
1798 printk(KERN_ERR "%s: orinoco_reset: Error %d reenabling card\n",
1799 dev->name, err);
1800 } else
1801 dev->trans_start = jiffies;
1802 }
1803
David Kilroybcad6e82010-05-01 14:05:40 +01001804 orinoco_unlock_irq(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
1806 return;
Christoph Hellwig8551cb92005-05-14 17:30:04 +02001807 disable:
1808 hermes_set_irqmask(hw, 0);
1809 netif_device_detach(dev);
1810 printk(KERN_ERR "%s: Device has been disabled!\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811}
1812
David Kilroy721aa2f2009-06-18 23:21:31 +01001813static int __orinoco_commit(struct orinoco_private *priv)
1814{
1815 struct net_device *dev = priv->ndev;
1816 int err = 0;
1817
1818 err = orinoco_hw_program_rids(priv);
1819
1820 /* FIXME: what about netif_tx_lock */
1821 (void) __orinoco_set_multicast_list(dev);
1822
1823 return err;
1824}
1825
1826/* Ensures configuration changes are applied. May result in a reset.
1827 * The caller should hold priv->lock
1828 */
1829int orinoco_commit(struct orinoco_private *priv)
1830{
1831 struct net_device *dev = priv->ndev;
1832 hermes_t *hw = &priv->hw;
1833 int err;
1834
1835 if (priv->broken_disableport) {
1836 schedule_work(&priv->reset_work);
1837 return 0;
1838 }
1839
1840 err = hermes_disable_port(hw, 0);
1841 if (err) {
1842 printk(KERN_WARNING "%s: Unable to disable port "
1843 "while reconfiguring card\n", dev->name);
1844 priv->broken_disableport = 1;
1845 goto out;
1846 }
1847
1848 err = __orinoco_commit(priv);
1849 if (err) {
1850 printk(KERN_WARNING "%s: Unable to reconfigure card\n",
1851 dev->name);
1852 goto out;
1853 }
1854
1855 err = hermes_enable_port(hw, 0);
1856 if (err) {
1857 printk(KERN_WARNING "%s: Unable to enable port while reconfiguring card\n",
1858 dev->name);
1859 goto out;
1860 }
1861
1862 out:
1863 if (err) {
1864 printk(KERN_WARNING "%s: Resetting instead...\n", dev->name);
1865 schedule_work(&priv->reset_work);
1866 err = 0;
1867 }
1868 return err;
1869}
1870
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871/********************************************************************/
1872/* Interrupt handler */
1873/********************************************************************/
1874
1875static void __orinoco_ev_tick(struct net_device *dev, hermes_t *hw)
1876{
1877 printk(KERN_DEBUG "%s: TICK\n", dev->name);
1878}
1879
1880static void __orinoco_ev_wterr(struct net_device *dev, hermes_t *hw)
1881{
1882 /* This seems to happen a fair bit under load, but ignoring it
1883 seems to work fine...*/
1884 printk(KERN_DEBUG "%s: MAC controller error (WTERR). Ignoring.\n",
1885 dev->name);
1886}
1887
David Howells7d12e782006-10-05 14:55:46 +01001888irqreturn_t orinoco_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889{
David Kilroya2608362009-06-18 23:21:23 +01001890 struct orinoco_private *priv = dev_id;
1891 struct net_device *dev = priv->ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 hermes_t *hw = &priv->hw;
1893 int count = MAX_IRQLOOPS_PER_IRQ;
1894 u16 evstat, events;
David Kilroy21312662009-02-04 23:05:47 +00001895 /* These are used to detect a runaway interrupt situation.
1896 *
1897 * If we get more than MAX_IRQLOOPS_PER_JIFFY iterations in a jiffy,
1898 * we panic and shut down the hardware
1899 */
1900 /* jiffies value the last time we were called */
1901 static int last_irq_jiffy; /* = 0 */
1902 static int loops_this_jiffy; /* = 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 unsigned long flags;
1904
1905 if (orinoco_lock(priv, &flags) != 0) {
1906 /* If hw is unavailable - we don't know if the irq was
1907 * for us or not */
1908 return IRQ_HANDLED;
1909 }
1910
1911 evstat = hermes_read_regn(hw, EVSTAT);
1912 events = evstat & hw->inten;
David Kilroya94e8422009-02-04 23:05:44 +00001913 if (!events) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 orinoco_unlock(priv, &flags);
1915 return IRQ_NONE;
1916 }
David Kilroy6fe9deb2009-02-04 23:05:43 +00001917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 if (jiffies != last_irq_jiffy)
1919 loops_this_jiffy = 0;
1920 last_irq_jiffy = jiffies;
1921
1922 while (events && count--) {
1923 if (++loops_this_jiffy > MAX_IRQLOOPS_PER_JIFFY) {
1924 printk(KERN_WARNING "%s: IRQ handler is looping too "
1925 "much! Resetting.\n", dev->name);
1926 /* Disable interrupts for now */
1927 hermes_set_irqmask(hw, 0);
1928 schedule_work(&priv->reset_work);
1929 break;
1930 }
1931
1932 /* Check the card hasn't been removed */
David Kilroya94e8422009-02-04 23:05:44 +00001933 if (!hermes_present(hw)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 DEBUG(0, "orinoco_interrupt(): card removed\n");
1935 break;
1936 }
1937
1938 if (events & HERMES_EV_TICK)
1939 __orinoco_ev_tick(dev, hw);
1940 if (events & HERMES_EV_WTERR)
1941 __orinoco_ev_wterr(dev, hw);
1942 if (events & HERMES_EV_INFDROP)
1943 __orinoco_ev_infdrop(dev, hw);
1944 if (events & HERMES_EV_INFO)
1945 __orinoco_ev_info(dev, hw);
1946 if (events & HERMES_EV_RX)
1947 __orinoco_ev_rx(dev, hw);
1948 if (events & HERMES_EV_TXEXC)
1949 __orinoco_ev_txexc(dev, hw);
1950 if (events & HERMES_EV_TX)
1951 __orinoco_ev_tx(dev, hw);
1952 if (events & HERMES_EV_ALLOC)
1953 __orinoco_ev_alloc(dev, hw);
David Kilroy6fe9deb2009-02-04 23:05:43 +00001954
Christoph Hellwig84d8a2f2005-05-14 17:30:22 +02001955 hermes_write_regn(hw, EVACK, evstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
1957 evstat = hermes_read_regn(hw, EVSTAT);
1958 events = evstat & hw->inten;
1959 };
1960
1961 orinoco_unlock(priv, &flags);
1962 return IRQ_HANDLED;
1963}
David Kilroy21312662009-02-04 23:05:47 +00001964EXPORT_SYMBOL(orinoco_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
1966/********************************************************************/
David Kilroy39d1ffe2008-11-22 10:37:28 +00001967/* Power management */
1968/********************************************************************/
1969#if defined(CONFIG_PM_SLEEP) && !defined(CONFIG_HERMES_CACHE_FW_ON_INIT)
1970static int orinoco_pm_notifier(struct notifier_block *notifier,
1971 unsigned long pm_event,
1972 void *unused)
1973{
1974 struct orinoco_private *priv = container_of(notifier,
1975 struct orinoco_private,
1976 pm_notifier);
1977
1978 /* All we need to do is cache the firmware before suspend, and
1979 * release it when we come out.
1980 *
1981 * Only need to do this if we're downloading firmware. */
1982 if (!priv->do_fw_download)
1983 return NOTIFY_DONE;
1984
1985 switch (pm_event) {
1986 case PM_HIBERNATION_PREPARE:
1987 case PM_SUSPEND_PREPARE:
1988 orinoco_cache_fw(priv, 0);
1989 break;
1990
1991 case PM_POST_RESTORE:
1992 /* Restore from hibernation failed. We need to clean
1993 * up in exactly the same way, so fall through. */
1994 case PM_POST_HIBERNATION:
1995 case PM_POST_SUSPEND:
1996 orinoco_uncache_fw(priv);
1997 break;
1998
1999 case PM_RESTORE_PREPARE:
2000 default:
2001 break;
2002 }
2003
2004 return NOTIFY_DONE;
2005}
David S. Millerf11c1792009-02-25 00:02:05 -08002006
2007static void orinoco_register_pm_notifier(struct orinoco_private *priv)
2008{
2009 priv->pm_notifier.notifier_call = orinoco_pm_notifier;
2010 register_pm_notifier(&priv->pm_notifier);
2011}
2012
2013static void orinoco_unregister_pm_notifier(struct orinoco_private *priv)
2014{
2015 unregister_pm_notifier(&priv->pm_notifier);
2016}
David Kilroy39d1ffe2008-11-22 10:37:28 +00002017#else /* !PM_SLEEP || HERMES_CACHE_FW_ON_INIT */
David S. Millerf11c1792009-02-25 00:02:05 -08002018#define orinoco_register_pm_notifier(priv) do { } while(0)
2019#define orinoco_unregister_pm_notifier(priv) do { } while(0)
David Kilroy39d1ffe2008-11-22 10:37:28 +00002020#endif
2021
2022/********************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023/* Initialization */
2024/********************************************************************/
2025
David Kilroy8e638262009-06-18 23:21:24 +01002026int orinoco_init(struct orinoco_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027{
David Kilroy8e638262009-06-18 23:21:24 +01002028 struct device *dev = priv->dev;
David Kilroyea60a6a2009-06-18 23:21:26 +01002029 struct wiphy *wiphy = priv_to_wiphy(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 hermes_t *hw = &priv->hw;
2031 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 /* No need to lock, the hw_unavailable flag is already set in
2034 * alloc_orinocodev() */
Johannes Berg2c7060022008-10-30 22:09:54 +01002035 priv->nicbuf_size = IEEE80211_MAX_FRAME_LEN + ETH_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
2037 /* Initialize the firmware */
David Kilroyb42f2072010-05-01 14:05:38 +01002038 err = hw->ops->init(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 if (err != 0) {
David Kilroy8e638262009-06-18 23:21:24 +01002040 dev_err(dev, "Failed to initialize firmware (err = %d)\n",
2041 err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 goto out;
2043 }
2044
David Kilroy3414fc32009-10-07 22:23:32 +01002045 err = determine_fw_capabilities(priv, wiphy->fw_version,
2046 sizeof(wiphy->fw_version),
2047 &wiphy->hw_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 if (err != 0) {
David Kilroy8e638262009-06-18 23:21:24 +01002049 dev_err(dev, "Incompatible firmware, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 goto out;
2051 }
2052
David Kilroy3994d502008-08-21 23:27:54 +01002053 if (priv->do_fw_download) {
David Kilroy39d1ffe2008-11-22 10:37:28 +00002054#ifdef CONFIG_HERMES_CACHE_FW_ON_INIT
David Kilroy74734312008-11-22 10:37:25 +00002055 orinoco_cache_fw(priv, 0);
David Kilroy39d1ffe2008-11-22 10:37:28 +00002056#endif
David Kilroy74734312008-11-22 10:37:25 +00002057
David Kilroy3994d502008-08-21 23:27:54 +01002058 err = orinoco_download(priv);
2059 if (err)
2060 priv->do_fw_download = 0;
2061
2062 /* Check firmware version again */
David Kilroy3414fc32009-10-07 22:23:32 +01002063 err = determine_fw_capabilities(priv, wiphy->fw_version,
2064 sizeof(wiphy->fw_version),
2065 &wiphy->hw_version);
David Kilroy3994d502008-08-21 23:27:54 +01002066 if (err != 0) {
David Kilroy8e638262009-06-18 23:21:24 +01002067 dev_err(dev, "Incompatible firmware, aborting\n");
David Kilroy3994d502008-08-21 23:27:54 +01002068 goto out;
2069 }
2070 }
2071
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 if (priv->has_port3)
David Kilroy8e638262009-06-18 23:21:24 +01002073 dev_info(dev, "Ad-hoc demo mode supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 if (priv->has_ibss)
David Kilroy8e638262009-06-18 23:21:24 +01002075 dev_info(dev, "IEEE standard IBSS ad-hoc mode supported\n");
2076 if (priv->has_wep)
2077 dev_info(dev, "WEP supported, %s-bit key\n",
2078 priv->has_big_wep ? "104" : "40");
David Kilroy23edcc42008-08-21 23:28:05 +01002079 if (priv->has_wpa) {
David Kilroy8e638262009-06-18 23:21:24 +01002080 dev_info(dev, "WPA-PSK supported\n");
David Kilroy23edcc42008-08-21 23:28:05 +01002081 if (orinoco_mic_init(priv)) {
David Kilroy8e638262009-06-18 23:21:24 +01002082 dev_err(dev, "Failed to setup MIC crypto algorithm. "
2083 "Disabling WPA support\n");
David Kilroy23edcc42008-08-21 23:28:05 +01002084 priv->has_wpa = 0;
2085 }
2086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
David Kilroyea60a6a2009-06-18 23:21:26 +01002088 err = orinoco_hw_read_card_settings(priv, wiphy->perm_addr);
David Kilroye9e3d012009-06-18 23:21:19 +01002089 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
David Kilroy42a51b92009-06-18 23:21:20 +01002092 err = orinoco_hw_allocate_fid(priv);
Pavel Roskin37a6c612006-04-07 04:10:49 -04002093 if (err) {
David Kilroy8e638262009-06-18 23:21:24 +01002094 dev_err(dev, "Failed to allocate NIC buffer!\n");
Pavel Roskin37a6c612006-04-07 04:10:49 -04002095 goto out;
2096 }
2097
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 /* Set up the default configuration */
David Kilroy5217c572009-06-18 23:21:32 +01002099 priv->iw_mode = NL80211_IFTYPE_STATION;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 /* By default use IEEE/IBSS ad-hoc mode if we have it */
David Kilroya94e8422009-02-04 23:05:44 +00002101 priv->prefer_port3 = priv->has_port3 && (!priv->has_ibss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 set_port_type(priv);
David Gibsond51d8b12005-05-12 20:03:36 -04002103 priv->channel = 0; /* use firmware default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105 priv->promiscuous = 0;
David Kilroy5c9f41e2009-08-05 21:23:28 +01002106 priv->encode_alg = ORINOCO_ALG_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 priv->tx_key = 0;
David Kilroyd03032a2008-08-21 23:28:02 +01002108 priv->wpa_enabled = 0;
2109 priv->tkip_cm_active = 0;
2110 priv->key_mgmt = 0;
2111 priv->wpa_ie_len = 0;
2112 priv->wpa_ie = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
David Kilroyea60a6a2009-06-18 23:21:26 +01002114 if (orinoco_wiphy_register(wiphy)) {
2115 err = -ENODEV;
2116 goto out;
2117 }
2118
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 /* Make the hardware available, as long as it hasn't been
2120 * removed elsewhere (e.g. by PCMCIA hot unplug) */
David Kilroybcad6e82010-05-01 14:05:40 +01002121 orinoco_lock_irq(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 priv->hw_unavailable--;
David Kilroybcad6e82010-05-01 14:05:40 +01002123 orinoco_unlock_irq(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
David Kilroy8e638262009-06-18 23:21:24 +01002125 dev_dbg(dev, "Ready\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 return err;
2129}
David Kilroy8e638262009-06-18 23:21:24 +01002130EXPORT_SYMBOL(orinoco_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
Andrey Borzenkov89ea4092009-01-21 20:46:46 +03002132static const struct net_device_ops orinoco_netdev_ops = {
Andrey Borzenkov89ea4092009-01-21 20:46:46 +03002133 .ndo_open = orinoco_open,
2134 .ndo_stop = orinoco_stop,
2135 .ndo_start_xmit = orinoco_xmit,
2136 .ndo_set_multicast_list = orinoco_set_multicast_list,
2137 .ndo_change_mtu = orinoco_change_mtu,
Ben Hutchings240c1022009-07-09 17:54:35 +00002138 .ndo_set_mac_address = eth_mac_addr,
2139 .ndo_validate_addr = eth_validate_addr,
Andrey Borzenkov89ea4092009-01-21 20:46:46 +03002140 .ndo_tx_timeout = orinoco_tx_timeout,
2141 .ndo_get_stats = orinoco_get_stats,
2142};
2143
David Kilroyea60a6a2009-06-18 23:21:26 +01002144/* Allocate private data.
2145 *
2146 * This driver has a number of structures associated with it
2147 * netdev - Net device structure for each network interface
2148 * wiphy - structure associated with wireless phy
2149 * wireless_dev (wdev) - structure for each wireless interface
2150 * hw - structure for hermes chip info
2151 * card - card specific structure for use by the card driver
2152 * (airport, orinoco_cs)
2153 * priv - orinoco private data
2154 * device - generic linux device structure
2155 *
2156 * +---------+ +---------+
2157 * | wiphy | | netdev |
2158 * | +-------+ | +-------+
2159 * | | priv | | | wdev |
2160 * | | +-----+ +-+-------+
2161 * | | | hw |
2162 * | +-+-----+
2163 * | | card |
2164 * +-+-------+
2165 *
2166 * priv has a link to netdev and device
2167 * wdev has a link to wiphy
2168 */
David Kilroya2608362009-06-18 23:21:23 +01002169struct orinoco_private
David Kilroy3994d502008-08-21 23:27:54 +01002170*alloc_orinocodev(int sizeof_card,
2171 struct device *device,
2172 int (*hard_reset)(struct orinoco_private *),
2173 int (*stop_fw)(struct orinoco_private *, int))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 struct orinoco_private *priv;
David Kilroyea60a6a2009-06-18 23:21:26 +01002176 struct wiphy *wiphy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
David Kilroyea60a6a2009-06-18 23:21:26 +01002178 /* allocate wiphy
2179 * NOTE: We only support a single virtual interface
2180 * but this may change when monitor mode is added
2181 */
2182 wiphy = wiphy_new(&orinoco_cfg_ops,
2183 sizeof(struct orinoco_private) + sizeof_card);
2184 if (!wiphy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 return NULL;
David Kilroyea60a6a2009-06-18 23:21:26 +01002186
David Kilroyea60a6a2009-06-18 23:21:26 +01002187 priv = wiphy_priv(wiphy);
David Kilroy53819562009-06-18 23:21:28 +01002188 priv->dev = device;
David Kilroyea60a6a2009-06-18 23:21:26 +01002189
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 if (sizeof_card)
Christoph Hellwig84d8a2f2005-05-14 17:30:22 +02002191 priv->card = (void *)((unsigned long)priv
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 + sizeof(struct orinoco_private));
2193 else
2194 priv->card = NULL;
2195
David Kilroyea60a6a2009-06-18 23:21:26 +01002196 orinoco_wiphy_init(wiphy);
2197
Pavel Roskin343c6862005-09-09 18:43:02 -04002198#ifdef WIRELESS_SPY
2199 priv->wireless_data.spy_data = &priv->spy_data;
Pavel Roskin343c6862005-09-09 18:43:02 -04002200#endif
David Kilroy23edcc42008-08-21 23:28:05 +01002201
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 /* Set up default callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 priv->hard_reset = hard_reset;
David Kilroy3994d502008-08-21 23:27:54 +01002204 priv->stop_fw = stop_fw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
2206 spin_lock_init(&priv->lock);
2207 priv->open = 0;
2208 priv->hw_unavailable = 1; /* orinoco_init() must clear this
2209 * before anything else touches the
2210 * hardware */
David Howellsc4028952006-11-22 14:57:56 +00002211 INIT_WORK(&priv->reset_work, orinoco_reset);
2212 INIT_WORK(&priv->join_work, orinoco_join_ap);
2213 INIT_WORK(&priv->wevent_work, orinoco_send_wevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
David Kilroy31afcef2008-08-21 23:28:04 +01002215 INIT_LIST_HEAD(&priv->rx_list);
2216 tasklet_init(&priv->rx_tasklet, orinoco_rx_isr_tasklet,
David Kilroy53819562009-06-18 23:21:28 +01002217 (unsigned long) priv);
David Kilroy31afcef2008-08-21 23:28:04 +01002218
David Kilroyc63cdbe2009-06-18 23:21:33 +01002219 spin_lock_init(&priv->scan_lock);
2220 INIT_LIST_HEAD(&priv->scan_list);
2221 INIT_WORK(&priv->process_scan, orinoco_process_scan_results);
2222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 priv->last_linkstatus = 0xffff;
2224
Andrey Borzenkov2bfc5cb2009-02-28 23:09:09 +03002225#if defined(CONFIG_HERMES_CACHE_FW_ON_INIT) || defined(CONFIG_PM_SLEEP)
David Kilroy2cea7b22008-11-22 10:37:26 +00002226 priv->cached_pri_fw = NULL;
Andrey Borzenkov4fb30782008-10-19 12:06:11 +04002227 priv->cached_fw = NULL;
Andrey Borzenkov2bfc5cb2009-02-28 23:09:09 +03002228#endif
Andrey Borzenkov4fb30782008-10-19 12:06:11 +04002229
David Kilroy39d1ffe2008-11-22 10:37:28 +00002230 /* Register PM notifiers */
David S. Millerf11c1792009-02-25 00:02:05 -08002231 orinoco_register_pm_notifier(priv);
David Kilroy39d1ffe2008-11-22 10:37:28 +00002232
David Kilroya2608362009-06-18 23:21:23 +01002233 return priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234}
David Kilroy21312662009-02-04 23:05:47 +00002235EXPORT_SYMBOL(alloc_orinocodev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
David Kilroy53819562009-06-18 23:21:28 +01002237/* We can only support a single interface. We provide a separate
2238 * function to set it up to distinguish between hardware
2239 * initialisation and interface setup.
2240 *
2241 * The base_addr and irq parameters are passed on to netdev for use
2242 * with SIOCGIFMAP.
2243 */
2244int orinoco_if_add(struct orinoco_private *priv,
2245 unsigned long base_addr,
David Kilroy593ef092010-05-01 14:05:39 +01002246 unsigned int irq,
2247 const struct net_device_ops *ops)
David Kilroy53819562009-06-18 23:21:28 +01002248{
2249 struct wiphy *wiphy = priv_to_wiphy(priv);
2250 struct wireless_dev *wdev;
2251 struct net_device *dev;
2252 int ret;
2253
2254 dev = alloc_etherdev(sizeof(struct wireless_dev));
2255
2256 if (!dev)
2257 return -ENOMEM;
2258
2259 /* Initialise wireless_dev */
2260 wdev = netdev_priv(dev);
2261 wdev->wiphy = wiphy;
2262 wdev->iftype = NL80211_IFTYPE_STATION;
2263
2264 /* Setup / override net_device fields */
2265 dev->ieee80211_ptr = wdev;
David Kilroy53819562009-06-18 23:21:28 +01002266 dev->watchdog_timeo = HZ; /* 1 second timeout */
David Kilroy53819562009-06-18 23:21:28 +01002267 dev->wireless_handlers = &orinoco_handler_def;
2268#ifdef WIRELESS_SPY
2269 dev->wireless_data = &priv->wireless_data;
2270#endif
David Kilroy593ef092010-05-01 14:05:39 +01002271 /* Default to standard ops if not set */
2272 if (ops)
2273 dev->netdev_ops = ops;
2274 else
2275 dev->netdev_ops = &orinoco_netdev_ops;
2276
David Kilroy53819562009-06-18 23:21:28 +01002277 /* we use the default eth_mac_addr for setting the MAC addr */
2278
2279 /* Reserve space in skb for the SNAP header */
David Kilroybac6faf2010-05-04 22:54:41 +01002280 dev->needed_headroom = ENCAPS_OVERHEAD;
David Kilroy53819562009-06-18 23:21:28 +01002281
2282 netif_carrier_off(dev);
2283
2284 memcpy(dev->dev_addr, wiphy->perm_addr, ETH_ALEN);
John W. Linvillecf32ed92009-10-06 16:47:23 -04002285 memcpy(dev->perm_addr, wiphy->perm_addr, ETH_ALEN);
David Kilroy53819562009-06-18 23:21:28 +01002286
2287 dev->base_addr = base_addr;
2288 dev->irq = irq;
2289
2290 SET_NETDEV_DEV(dev, priv->dev);
2291 ret = register_netdev(dev);
2292 if (ret)
2293 goto fail;
2294
2295 priv->ndev = dev;
2296
2297 /* Report what we've done */
2298 dev_dbg(priv->dev, "Registerred interface %s.\n", dev->name);
2299
2300 return 0;
2301
2302 fail:
2303 free_netdev(dev);
2304 return ret;
2305}
2306EXPORT_SYMBOL(orinoco_if_add);
2307
2308void orinoco_if_del(struct orinoco_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309{
David Kilroya2608362009-06-18 23:21:23 +01002310 struct net_device *dev = priv->ndev;
David Kilroy53819562009-06-18 23:21:28 +01002311
2312 unregister_netdev(dev);
2313 free_netdev(dev);
2314}
2315EXPORT_SYMBOL(orinoco_if_del);
2316
2317void free_orinocodev(struct orinoco_private *priv)
2318{
David Kilroyea60a6a2009-06-18 23:21:26 +01002319 struct wiphy *wiphy = priv_to_wiphy(priv);
David Kilroy20953ad2009-01-07 00:23:55 +00002320 struct orinoco_rx_data *rx_data, *temp;
David Kilroyc63cdbe2009-06-18 23:21:33 +01002321 struct orinoco_scan_data *sd, *sdtemp;
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02002322
David Kilroyea60a6a2009-06-18 23:21:26 +01002323 wiphy_unregister(wiphy);
2324
David Kilroy20953ad2009-01-07 00:23:55 +00002325 /* If the tasklet is scheduled when we call tasklet_kill it
2326 * will run one final time. However the tasklet will only
2327 * drain priv->rx_list if the hw is still available. */
David Kilroy31afcef2008-08-21 23:28:04 +01002328 tasklet_kill(&priv->rx_tasklet);
David Kilroy74734312008-11-22 10:37:25 +00002329
David Kilroy20953ad2009-01-07 00:23:55 +00002330 /* Explicitly drain priv->rx_list */
2331 list_for_each_entry_safe(rx_data, temp, &priv->rx_list, list) {
2332 list_del(&rx_data->list);
2333
2334 dev_kfree_skb(rx_data->skb);
2335 kfree(rx_data->desc);
2336 kfree(rx_data);
2337 }
2338
David Kilroyc63cdbe2009-06-18 23:21:33 +01002339 cancel_work_sync(&priv->process_scan);
2340 /* Explicitly drain priv->scan_list */
2341 list_for_each_entry_safe(sd, sdtemp, &priv->scan_list, list) {
2342 list_del(&sd->list);
2343
2344 if ((sd->len > 0) && sd->buf)
2345 kfree(sd->buf);
2346 kfree(sd);
2347 }
2348
David S. Millerf11c1792009-02-25 00:02:05 -08002349 orinoco_unregister_pm_notifier(priv);
David Kilroy74734312008-11-22 10:37:25 +00002350 orinoco_uncache_fw(priv);
2351
David Kilroyd03032a2008-08-21 23:28:02 +01002352 priv->wpa_ie_len = 0;
2353 kfree(priv->wpa_ie);
David Kilroy23edcc42008-08-21 23:28:05 +01002354 orinoco_mic_free(priv);
David Kilroyea60a6a2009-06-18 23:21:26 +01002355 wiphy_free(wiphy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356}
David Kilroy21312662009-02-04 23:05:47 +00002357EXPORT_SYMBOL(free_orinocodev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
David Kilroy6415f7d2009-06-18 23:21:30 +01002359int orinoco_up(struct orinoco_private *priv)
2360{
2361 struct net_device *dev = priv->ndev;
2362 unsigned long flags;
2363 int err;
2364
David Kilroybcad6e82010-05-01 14:05:40 +01002365 priv->hw.ops->lock_irqsave(&priv->lock, &flags);
David Kilroy6415f7d2009-06-18 23:21:30 +01002366
2367 err = orinoco_reinit_firmware(priv);
2368 if (err) {
2369 printk(KERN_ERR "%s: Error %d re-initializing firmware\n",
2370 dev->name, err);
2371 goto exit;
2372 }
2373
2374 netif_device_attach(dev);
2375 priv->hw_unavailable--;
2376
2377 if (priv->open && !priv->hw_unavailable) {
2378 err = __orinoco_up(priv);
2379 if (err)
2380 printk(KERN_ERR "%s: Error %d restarting card\n",
2381 dev->name, err);
2382 }
2383
2384exit:
David Kilroybcad6e82010-05-01 14:05:40 +01002385 priv->hw.ops->unlock_irqrestore(&priv->lock, &flags);
David Kilroy6415f7d2009-06-18 23:21:30 +01002386
2387 return 0;
2388}
2389EXPORT_SYMBOL(orinoco_up);
2390
2391void orinoco_down(struct orinoco_private *priv)
2392{
2393 struct net_device *dev = priv->ndev;
2394 unsigned long flags;
2395 int err;
2396
David Kilroybcad6e82010-05-01 14:05:40 +01002397 priv->hw.ops->lock_irqsave(&priv->lock, &flags);
David Kilroy6415f7d2009-06-18 23:21:30 +01002398 err = __orinoco_down(priv);
2399 if (err)
2400 printk(KERN_WARNING "%s: Error %d downing interface\n",
2401 dev->name, err);
2402
2403 netif_device_detach(dev);
2404 priv->hw_unavailable++;
David Kilroybcad6e82010-05-01 14:05:40 +01002405 priv->hw.ops->unlock_irqrestore(&priv->lock, &flags);
David Kilroy6415f7d2009-06-18 23:21:30 +01002406}
2407EXPORT_SYMBOL(orinoco_down);
2408
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409/********************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410/* Module initialization */
2411/********************************************************************/
2412
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413/* Can't be declared "const" or the whole __initdata section will
2414 * become const */
2415static char version[] __initdata = DRIVER_NAME " " DRIVER_VERSION
2416 " (David Gibson <hermes@gibson.dropbear.id.au>, "
2417 "Pavel Roskin <proski@gnu.org>, et al)";
2418
2419static int __init init_orinoco(void)
2420{
2421 printk(KERN_DEBUG "%s\n", version);
2422 return 0;
2423}
2424
2425static void __exit exit_orinoco(void)
2426{
2427}
2428
2429module_init(init_orinoco);
2430module_exit(exit_orinoco);