blob: 7c9faa4c079e32a5593d0aaa89c896fbdca7e30a [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
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +0000342static netdev_tx_t orinoco_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
David Kilroyea60a6a2009-06-18 23:21:26 +0100344 struct orinoco_private *priv = ndev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 struct net_device_stats *stats = &priv->stats;
David Kilroy4af198f2009-08-05 21:23:32 +0100346 struct orinoco_tkip_key *key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 hermes_t *hw = &priv->hw;
348 int err = 0;
349 u16 txfid = priv->txfid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 struct ethhdr *eh;
David Kilroy6eecad72008-08-21 23:27:56 +0100351 int tx_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 unsigned long flags;
David Kilroy4af198f2009-08-05 21:23:32 +0100353 int do_mic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
David Kilroya94e8422009-02-04 23:05:44 +0000355 if (!netif_running(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 printk(KERN_ERR "%s: Tx on stopped device!\n",
357 dev->name);
Pavel Roskinb34b8672006-04-07 04:10:36 -0400358 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
David Kilroy6fe9deb2009-02-04 23:05:43 +0000360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (netif_queue_stopped(dev)) {
David Kilroy6fe9deb2009-02-04 23:05:43 +0000362 printk(KERN_DEBUG "%s: Tx while transmitter busy!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 dev->name);
Pavel Roskinb34b8672006-04-07 04:10:36 -0400364 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
David Kilroy6fe9deb2009-02-04 23:05:43 +0000366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (orinoco_lock(priv, &flags) != 0) {
368 printk(KERN_ERR "%s: orinoco_xmit() called while hw_unavailable\n",
369 dev->name);
Pavel Roskinb34b8672006-04-07 04:10:36 -0400370 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372
David Kilroy5217c572009-06-18 23:21:32 +0100373 if (!netif_carrier_ok(dev) ||
374 (priv->iw_mode == NL80211_IFTYPE_MONITOR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 /* Oops, the firmware hasn't established a connection,
David Kilroy6fe9deb2009-02-04 23:05:43 +0000376 silently drop the packet (this seems to be the
377 safest approach). */
Pavel Roskin470e2aa2006-04-07 04:10:43 -0400378 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
380
Pavel Roskin8d5be082006-04-07 04:10:41 -0400381 /* Check packet length */
Pavel Roskina28dc812006-04-07 04:10:45 -0400382 if (skb->len < ETH_HLEN)
Pavel Roskin470e2aa2006-04-07 04:10:43 -0400383 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
David Kilroy4af198f2009-08-05 21:23:32 +0100385 key = (struct orinoco_tkip_key *) priv->keys[priv->tx_key].key;
386
387 do_mic = ((priv->encode_alg == ORINOCO_ALG_TKIP) &&
388 (key != NULL));
389
David Kilroy6eecad72008-08-21 23:27:56 +0100390 tx_control = HERMES_TXCTRL_TX_OK | HERMES_TXCTRL_TX_EX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
David Kilroy4af198f2009-08-05 21:23:32 +0100392 if (do_mic)
David Kilroy23edcc42008-08-21 23:28:05 +0100393 tx_control |= (priv->tx_key << HERMES_MIC_KEY_ID_SHIFT) |
394 HERMES_TXCTRL_MIC;
395
David Kilroy6eecad72008-08-21 23:27:56 +0100396 if (priv->has_alt_txcntl) {
397 /* WPA enabled firmwares have tx_cntl at the end of
398 * the 802.11 header. So write zeroed descriptor and
399 * 802.11 header at the same time
400 */
401 char desc[HERMES_802_3_OFFSET];
402 __le16 *txcntl = (__le16 *) &desc[HERMES_TXCNTL2_OFFSET];
403
404 memset(&desc, 0, sizeof(desc));
405
406 *txcntl = cpu_to_le16(tx_control);
David Kilroyb42f2072010-05-01 14:05:38 +0100407 err = hw->ops->bap_pwrite(hw, USER_BAP, &desc, sizeof(desc),
408 txfid, 0);
David Kilroy6eecad72008-08-21 23:27:56 +0100409 if (err) {
410 if (net_ratelimit())
411 printk(KERN_ERR "%s: Error %d writing Tx "
412 "descriptor to BAP\n", dev->name, err);
413 goto busy;
414 }
415 } else {
416 struct hermes_tx_descriptor desc;
417
418 memset(&desc, 0, sizeof(desc));
419
420 desc.tx_control = cpu_to_le16(tx_control);
David Kilroyb42f2072010-05-01 14:05:38 +0100421 err = hw->ops->bap_pwrite(hw, USER_BAP, &desc, sizeof(desc),
422 txfid, 0);
David Kilroy6eecad72008-08-21 23:27:56 +0100423 if (err) {
424 if (net_ratelimit())
425 printk(KERN_ERR "%s: Error %d writing Tx "
426 "descriptor to BAP\n", dev->name, err);
427 goto busy;
428 }
429
430 /* Clear the 802.11 header and data length fields - some
431 * firmwares (e.g. Lucent/Agere 8.xx) appear to get confused
432 * if this isn't done. */
433 hermes_clear_words(hw, HERMES_DATA0,
434 HERMES_802_3_OFFSET - HERMES_802_11_OFFSET);
435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
David Kilroy23edcc42008-08-21 23:28:05 +0100437 eh = (struct ethhdr *)skb->data;
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 /* Encapsulate Ethernet-II frames */
440 if (ntohs(eh->h_proto) > ETH_DATA_LEN) { /* Ethernet-II frame */
Pavel Roskina28dc812006-04-07 04:10:45 -0400441 struct header_struct {
442 struct ethhdr eth; /* 802.3 header */
443 u8 encap[6]; /* 802.2 header */
444 } __attribute__ ((packed)) hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Pavel Roskina28dc812006-04-07 04:10:45 -0400446 /* Strip destination and source from the data */
447 skb_pull(skb, 2 * ETH_ALEN);
Pavel Roskina28dc812006-04-07 04:10:45 -0400448
449 /* And move them to a separate header */
450 memcpy(&hdr.eth, eh, 2 * ETH_ALEN);
451 hdr.eth.h_proto = htons(sizeof(encaps_hdr) + skb->len);
452 memcpy(hdr.encap, encaps_hdr, sizeof(encaps_hdr));
453
David Kilroy23edcc42008-08-21 23:28:05 +0100454 /* Insert the SNAP header */
455 if (skb_headroom(skb) < sizeof(hdr)) {
456 printk(KERN_ERR
457 "%s: Not enough headroom for 802.2 headers %d\n",
458 dev->name, skb_headroom(skb));
459 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 }
David Kilroy23edcc42008-08-21 23:28:05 +0100461 eh = (struct ethhdr *) skb_push(skb, sizeof(hdr));
462 memcpy(eh, &hdr, sizeof(hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
464
David Kilroyb42f2072010-05-01 14:05:38 +0100465 err = hw->ops->bap_pwrite(hw, USER_BAP, skb->data, skb->len,
466 txfid, HERMES_802_3_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 if (err) {
468 printk(KERN_ERR "%s: Error %d writing packet to BAP\n",
469 dev->name, err);
Pavel Roskin470e2aa2006-04-07 04:10:43 -0400470 goto busy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 }
472
David Kilroy23edcc42008-08-21 23:28:05 +0100473 /* Calculate Michael MIC */
David Kilroy4af198f2009-08-05 21:23:32 +0100474 if (do_mic) {
David Kilroy23edcc42008-08-21 23:28:05 +0100475 u8 mic_buf[MICHAEL_MIC_LEN + 1];
476 u8 *mic;
477 size_t offset;
478 size_t len;
479
480 if (skb->len % 2) {
481 /* MIC start is on an odd boundary */
482 mic_buf[0] = skb->data[skb->len - 1];
483 mic = &mic_buf[1];
484 offset = skb->len - 1;
485 len = MICHAEL_MIC_LEN + 1;
486 } else {
487 mic = &mic_buf[0];
488 offset = skb->len;
489 len = MICHAEL_MIC_LEN;
490 }
491
David Kilroy4af198f2009-08-05 21:23:32 +0100492 orinoco_mic(priv->tx_tfm_mic, key->tx_mic,
David Kilroy23edcc42008-08-21 23:28:05 +0100493 eh->h_dest, eh->h_source, 0 /* priority */,
494 skb->data + ETH_HLEN, skb->len - ETH_HLEN, mic);
495
496 /* Write the MIC */
David Kilroyb42f2072010-05-01 14:05:38 +0100497 err = hw->ops->bap_pwrite(hw, USER_BAP, &mic_buf[0], len,
498 txfid, HERMES_802_3_OFFSET + offset);
David Kilroy23edcc42008-08-21 23:28:05 +0100499 if (err) {
500 printk(KERN_ERR "%s: Error %d writing MIC to BAP\n",
501 dev->name, err);
502 goto busy;
503 }
504 }
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 /* Finally, we actually initiate the send */
507 netif_stop_queue(dev);
508
David Kilroyb42f2072010-05-01 14:05:38 +0100509 err = hw->ops->cmd_wait(hw, HERMES_CMD_TX | HERMES_CMD_RECL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 txfid, NULL);
511 if (err) {
512 netif_start_queue(dev);
Andrew Mortonc367c212005-10-19 21:23:44 -0700513 if (net_ratelimit())
514 printk(KERN_ERR "%s: Error %d transmitting packet\n",
515 dev->name, err);
Pavel Roskin470e2aa2006-04-07 04:10:43 -0400516 goto busy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518
519 dev->trans_start = jiffies;
David Kilroy23edcc42008-08-21 23:28:05 +0100520 stats->tx_bytes += HERMES_802_3_OFFSET + skb->len;
Pavel Roskin470e2aa2006-04-07 04:10:43 -0400521 goto ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Pavel Roskin470e2aa2006-04-07 04:10:43 -0400523 drop:
524 stats->tx_errors++;
525 stats->tx_dropped++;
526
527 ok:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 orinoco_unlock(priv, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 dev_kfree_skb(skb);
Pavel Roskinb34b8672006-04-07 04:10:36 -0400530 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Pavel Roskin470e2aa2006-04-07 04:10:43 -0400532 busy:
Jiri Benc2c1bd262006-04-07 04:10:47 -0400533 if (err == -EIO)
534 schedule_work(&priv->reset_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 orinoco_unlock(priv, &flags);
Pavel Roskinb34b8672006-04-07 04:10:36 -0400536 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
539static void __orinoco_ev_alloc(struct net_device *dev, hermes_t *hw)
540{
David Kilroyea60a6a2009-06-18 23:21:26 +0100541 struct orinoco_private *priv = ndev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 u16 fid = hermes_read_regn(hw, ALLOCFID);
543
544 if (fid != priv->txfid) {
545 if (fid != DUMMY_FID)
546 printk(KERN_WARNING "%s: Allocate event on unexpected fid (%04X)\n",
547 dev->name, fid);
548 return;
549 }
550
551 hermes_write_regn(hw, ALLOCFID, DUMMY_FID);
552}
553
554static void __orinoco_ev_tx(struct net_device *dev, hermes_t *hw)
555{
David Kilroyea60a6a2009-06-18 23:21:26 +0100556 struct orinoco_private *priv = ndev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 struct net_device_stats *stats = &priv->stats;
558
559 stats->tx_packets++;
560
561 netif_wake_queue(dev);
562
563 hermes_write_regn(hw, TXCOMPLFID, DUMMY_FID);
564}
565
566static void __orinoco_ev_txexc(struct net_device *dev, hermes_t *hw)
567{
David Kilroyea60a6a2009-06-18 23:21:26 +0100568 struct orinoco_private *priv = ndev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 struct net_device_stats *stats = &priv->stats;
570 u16 fid = hermes_read_regn(hw, TXCOMPLFID);
Pavel Roskind133ae42005-09-23 04:18:06 -0400571 u16 status;
Pavel Roskin30c2d3b2006-04-07 04:10:34 -0400572 struct hermes_txexc_data hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 int err = 0;
574
575 if (fid == DUMMY_FID)
576 return; /* Nothing's really happened */
577
Pavel Roskin48ca7032005-09-23 04:18:06 -0400578 /* Read part of the frame header - we need status and addr1 */
David Kilroyb42f2072010-05-01 14:05:38 +0100579 err = hw->ops->bap_pread(hw, IRQ_BAP, &hdr,
580 sizeof(struct hermes_txexc_data),
581 fid, 0);
Christoph Hellwig95dd91f2005-06-19 01:27:56 +0200582
583 hermes_write_regn(hw, TXCOMPLFID, DUMMY_FID);
584 stats->tx_errors++;
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (err) {
587 printk(KERN_WARNING "%s: Unable to read descriptor on Tx error "
588 "(FID=%04X error %d)\n",
589 dev->name, fid, err);
Christoph Hellwig95dd91f2005-06-19 01:27:56 +0200590 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
David Kilroy6fe9deb2009-02-04 23:05:43 +0000592
Christoph Hellwig95dd91f2005-06-19 01:27:56 +0200593 DEBUG(1, "%s: Tx error, err %d (FID=%04X)\n", dev->name,
594 err, fid);
David Kilroy6fe9deb2009-02-04 23:05:43 +0000595
Christoph Hellwig95dd91f2005-06-19 01:27:56 +0200596 /* We produce a TXDROP event only for retry or lifetime
597 * exceeded, because that's the only status that really mean
598 * that this particular node went away.
599 * Other errors means that *we* screwed up. - Jean II */
Pavel Roskin30c2d3b2006-04-07 04:10:34 -0400600 status = le16_to_cpu(hdr.desc.status);
Pavel Roskind133ae42005-09-23 04:18:06 -0400601 if (status & (HERMES_TXSTAT_RETRYERR | HERMES_TXSTAT_AGEDERR)) {
Christoph Hellwig95dd91f2005-06-19 01:27:56 +0200602 union iwreq_data wrqu;
603
604 /* Copy 802.11 dest address.
605 * We use the 802.11 header because the frame may
606 * not be 802.3 or may be mangled...
607 * In Ad-Hoc mode, it will be the node address.
608 * In managed mode, it will be most likely the AP addr
609 * User space will figure out how to convert it to
610 * whatever it needs (IP address or else).
611 * - Jean II */
612 memcpy(wrqu.addr.sa_data, hdr.addr1, ETH_ALEN);
613 wrqu.addr.sa_family = ARPHRD_ETHER;
614
615 /* Send event to user space */
616 wireless_send_event(dev, IWEVTXDROP, &wrqu, NULL);
617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 netif_wake_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620}
621
David Kilroy593ef092010-05-01 14:05:39 +0100622void orinoco_tx_timeout(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
David Kilroyea60a6a2009-06-18 23:21:26 +0100624 struct orinoco_private *priv = ndev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 struct net_device_stats *stats = &priv->stats;
626 struct hermes *hw = &priv->hw;
627
628 printk(KERN_WARNING "%s: Tx timeout! "
629 "ALLOCFID=%04x, TXCOMPLFID=%04x, EVSTAT=%04x\n",
630 dev->name, hermes_read_regn(hw, ALLOCFID),
631 hermes_read_regn(hw, TXCOMPLFID), hermes_read_regn(hw, EVSTAT));
632
633 stats->tx_errors++;
634
635 schedule_work(&priv->reset_work);
636}
David Kilroy593ef092010-05-01 14:05:39 +0100637EXPORT_SYMBOL(orinoco_tx_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639/********************************************************************/
640/* Rx path (data frames) */
641/********************************************************************/
642
643/* Does the frame have a SNAP header indicating it should be
644 * de-encapsulated to Ethernet-II? */
645static inline int is_ethersnap(void *_hdr)
646{
647 u8 *hdr = _hdr;
648
649 /* We de-encapsulate all packets which, a) have SNAP headers
650 * (i.e. SSAP=DSAP=0xaa and CTRL=0x3 in the 802.2 LLC header
651 * and where b) the OUI of the SNAP header is 00:00:00 or
652 * 00:00:f8 - we need both because different APs appear to use
653 * different OUIs for some reason */
654 return (memcmp(hdr, &encaps_hdr, 5) == 0)
David Kilroya94e8422009-02-04 23:05:44 +0000655 && ((hdr[5] == 0x00) || (hdr[5] == 0xf8));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
658static inline void orinoco_spy_gather(struct net_device *dev, u_char *mac,
659 int level, int noise)
660{
Pavel Roskin343c6862005-09-09 18:43:02 -0400661 struct iw_quality wstats;
662 wstats.level = level - 0x95;
663 wstats.noise = noise - 0x95;
664 wstats.qual = (level > noise) ? (level - noise) : 0;
Andrey Borzenkovf941f852008-11-15 17:15:09 +0300665 wstats.updated = IW_QUAL_ALL_UPDATED | IW_QUAL_DBM;
Pavel Roskin343c6862005-09-09 18:43:02 -0400666 /* Update spy records */
667 wireless_spy_update(dev, mac, &wstats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
670static void orinoco_stat_gather(struct net_device *dev,
671 struct sk_buff *skb,
672 struct hermes_rx_descriptor *desc)
673{
David Kilroyea60a6a2009-06-18 23:21:26 +0100674 struct orinoco_private *priv = ndev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 /* Using spy support with lots of Rx packets, like in an
677 * infrastructure (AP), will really slow down everything, because
678 * the MAC address must be compared to each entry of the spy list.
679 * If the user really asks for it (set some address in the
680 * spy list), we do it, but he will pay the price.
681 * Note that to get here, you need both WIRELESS_SPY
682 * compiled in AND some addresses in the list !!!
683 */
684 /* Note : gcc will optimise the whole section away if
685 * WIRELESS_SPY is not defined... - Jean II */
686 if (SPY_NUMBER(priv)) {
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700687 orinoco_spy_gather(dev, skb_mac_header(skb) + ETH_ALEN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 desc->signal, desc->silence);
689 }
690}
691
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200692/*
693 * orinoco_rx_monitor - handle received monitor frames.
694 *
695 * Arguments:
696 * dev network device
697 * rxfid received FID
698 * desc rx descriptor of the frame
699 *
700 * Call context: interrupt
701 */
702static void orinoco_rx_monitor(struct net_device *dev, u16 rxfid,
703 struct hermes_rx_descriptor *desc)
704{
705 u32 hdrlen = 30; /* return full header by default */
706 u32 datalen = 0;
707 u16 fc;
708 int err;
709 int len;
710 struct sk_buff *skb;
David Kilroyea60a6a2009-06-18 23:21:26 +0100711 struct orinoco_private *priv = ndev_priv(dev);
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200712 struct net_device_stats *stats = &priv->stats;
713 hermes_t *hw = &priv->hw;
714
715 len = le16_to_cpu(desc->data_len);
716
717 /* Determine the size of the header and the data */
718 fc = le16_to_cpu(desc->frame_ctl);
719 switch (fc & IEEE80211_FCTL_FTYPE) {
720 case IEEE80211_FTYPE_DATA:
721 if ((fc & IEEE80211_FCTL_TODS)
722 && (fc & IEEE80211_FCTL_FROMDS))
723 hdrlen = 30;
724 else
725 hdrlen = 24;
726 datalen = len;
727 break;
728 case IEEE80211_FTYPE_MGMT:
729 hdrlen = 24;
730 datalen = len;
731 break;
732 case IEEE80211_FTYPE_CTL:
733 switch (fc & IEEE80211_FCTL_STYPE) {
734 case IEEE80211_STYPE_PSPOLL:
735 case IEEE80211_STYPE_RTS:
736 case IEEE80211_STYPE_CFEND:
737 case IEEE80211_STYPE_CFENDACK:
738 hdrlen = 16;
739 break;
740 case IEEE80211_STYPE_CTS:
741 case IEEE80211_STYPE_ACK:
742 hdrlen = 10;
743 break;
744 }
745 break;
746 default:
747 /* Unknown frame type */
748 break;
749 }
750
751 /* sanity check the length */
Johannes Berg2c7060022008-10-30 22:09:54 +0100752 if (datalen > IEEE80211_MAX_DATA_LEN + 12) {
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200753 printk(KERN_DEBUG "%s: oversized monitor frame, "
754 "data length = %d\n", dev->name, datalen);
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200755 stats->rx_length_errors++;
756 goto update_stats;
757 }
758
759 skb = dev_alloc_skb(hdrlen + datalen);
760 if (!skb) {
761 printk(KERN_WARNING "%s: Cannot allocate skb for monitor frame\n",
762 dev->name);
Florin Malitabb6e0932006-05-22 22:35:30 -0700763 goto update_stats;
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200764 }
765
766 /* Copy the 802.11 header to the skb */
767 memcpy(skb_put(skb, hdrlen), &(desc->frame_ctl), hdrlen);
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700768 skb_reset_mac_header(skb);
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200769
770 /* If any, copy the data from the card to the skb */
771 if (datalen > 0) {
David Kilroyb42f2072010-05-01 14:05:38 +0100772 err = hw->ops->bap_pread(hw, IRQ_BAP, skb_put(skb, datalen),
773 ALIGN(datalen, 2), rxfid,
774 HERMES_802_2_OFFSET);
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200775 if (err) {
776 printk(KERN_ERR "%s: error %d reading monitor frame\n",
777 dev->name, err);
778 goto drop;
779 }
780 }
781
782 skb->dev = dev;
783 skb->ip_summed = CHECKSUM_NONE;
784 skb->pkt_type = PACKET_OTHERHOST;
Harvey Harrisonc1b4aa32009-01-29 13:26:44 -0800785 skb->protocol = cpu_to_be16(ETH_P_802_2);
David Kilroy6fe9deb2009-02-04 23:05:43 +0000786
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200787 stats->rx_packets++;
788 stats->rx_bytes += skb->len;
789
790 netif_rx(skb);
791 return;
792
793 drop:
794 dev_kfree_skb_irq(skb);
795 update_stats:
796 stats->rx_errors++;
797 stats->rx_dropped++;
798}
799
David Kilroy9afac702010-05-01 14:05:41 +0100800void __orinoco_ev_rx(struct net_device *dev, hermes_t *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
David Kilroyea60a6a2009-06-18 23:21:26 +0100802 struct orinoco_private *priv = ndev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 struct net_device_stats *stats = &priv->stats;
804 struct iw_statistics *wstats = &priv->wstats;
805 struct sk_buff *skb = NULL;
David Kilroy31afcef2008-08-21 23:28:04 +0100806 u16 rxfid, status;
Christoph Hellwig8f2abf42005-06-19 01:28:02 +0200807 int length;
David Kilroy31afcef2008-08-21 23:28:04 +0100808 struct hermes_rx_descriptor *desc;
809 struct orinoco_rx_data *rx_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 int err;
811
David Kilroy31afcef2008-08-21 23:28:04 +0100812 desc = kmalloc(sizeof(*desc), GFP_ATOMIC);
813 if (!desc) {
814 printk(KERN_WARNING
815 "%s: Can't allocate space for RX descriptor\n",
816 dev->name);
817 goto update_stats;
818 }
819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 rxfid = hermes_read_regn(hw, RXFID);
821
David Kilroyb42f2072010-05-01 14:05:38 +0100822 err = hw->ops->bap_pread(hw, IRQ_BAP, desc, sizeof(*desc),
823 rxfid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (err) {
825 printk(KERN_ERR "%s: error %d reading Rx descriptor. "
826 "Frame dropped.\n", dev->name, err);
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200827 goto update_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 }
829
David Kilroy31afcef2008-08-21 23:28:04 +0100830 status = le16_to_cpu(desc->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200832 if (status & HERMES_RXSTAT_BADCRC) {
833 DEBUG(1, "%s: Bad CRC on Rx. Frame dropped.\n",
834 dev->name);
835 stats->rx_crc_errors++;
836 goto update_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
838
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200839 /* Handle frames in monitor mode */
David Kilroy5217c572009-06-18 23:21:32 +0100840 if (priv->iw_mode == NL80211_IFTYPE_MONITOR) {
David Kilroy31afcef2008-08-21 23:28:04 +0100841 orinoco_rx_monitor(dev, rxfid, desc);
842 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 }
844
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200845 if (status & HERMES_RXSTAT_UNDECRYPTABLE) {
846 DEBUG(1, "%s: Undecryptable frame on Rx. Frame dropped.\n",
847 dev->name);
848 wstats->discard.code++;
849 goto update_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 }
851
David Kilroy31afcef2008-08-21 23:28:04 +0100852 length = le16_to_cpu(desc->data_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 /* Sanity checks */
855 if (length < 3) { /* No for even an 802.2 LLC header */
856 /* At least on Symbol firmware with PCF we get quite a
David Kilroy6fe9deb2009-02-04 23:05:43 +0000857 lot of these legitimately - Poll frames with no
858 data. */
David Kilroy31afcef2008-08-21 23:28:04 +0100859 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 }
Johannes Berg2c7060022008-10-30 22:09:54 +0100861 if (length > IEEE80211_MAX_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 printk(KERN_WARNING "%s: Oversized frame received (%d bytes)\n",
863 dev->name, length);
864 stats->rx_length_errors++;
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200865 goto update_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 }
867
David Kilroy23edcc42008-08-21 23:28:05 +0100868 /* Payload size does not include Michael MIC. Increase payload
869 * size to read it together with the data. */
870 if (status & HERMES_RXSTAT_MIC)
871 length += MICHAEL_MIC_LEN;
872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 /* We need space for the packet data itself, plus an ethernet
874 header, plus 2 bytes so we can align the IP header on a
875 32bit boundary, plus 1 byte so we can read in odd length
876 packets from the card, which has an IO granularity of 16
David Kilroy6fe9deb2009-02-04 23:05:43 +0000877 bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 skb = dev_alloc_skb(length+ETH_HLEN+2+1);
879 if (!skb) {
880 printk(KERN_WARNING "%s: Can't allocate skb for Rx\n",
881 dev->name);
Christoph Hellwig98c4cae2005-06-19 01:28:06 +0200882 goto update_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
884
Christoph Hellwig8f2abf42005-06-19 01:28:02 +0200885 /* We'll prepend the header, so reserve space for it. The worst
886 case is no decapsulation, when 802.3 header is prepended and
887 nothing is removed. 2 is for aligning the IP header. */
888 skb_reserve(skb, ETH_HLEN + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
David Kilroyb42f2072010-05-01 14:05:38 +0100890 err = hw->ops->bap_pread(hw, IRQ_BAP, skb_put(skb, length),
891 ALIGN(length, 2), rxfid,
892 HERMES_802_2_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if (err) {
894 printk(KERN_ERR "%s: error %d reading frame. "
895 "Frame dropped.\n", dev->name, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 goto drop;
897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
David Kilroy31afcef2008-08-21 23:28:04 +0100899 /* Add desc and skb to rx queue */
900 rx_data = kzalloc(sizeof(*rx_data), GFP_ATOMIC);
901 if (!rx_data) {
902 printk(KERN_WARNING "%s: Can't allocate RX packet\n",
903 dev->name);
904 goto drop;
905 }
906 rx_data->desc = desc;
907 rx_data->skb = skb;
908 list_add_tail(&rx_data->list, &priv->rx_list);
909 tasklet_schedule(&priv->rx_tasklet);
910
911 return;
912
913drop:
914 dev_kfree_skb_irq(skb);
915update_stats:
916 stats->rx_errors++;
917 stats->rx_dropped++;
918out:
919 kfree(desc);
920}
David Kilroy9afac702010-05-01 14:05:41 +0100921EXPORT_SYMBOL(__orinoco_ev_rx);
David Kilroy31afcef2008-08-21 23:28:04 +0100922
923static void orinoco_rx(struct net_device *dev,
924 struct hermes_rx_descriptor *desc,
925 struct sk_buff *skb)
926{
David Kilroyea60a6a2009-06-18 23:21:26 +0100927 struct orinoco_private *priv = ndev_priv(dev);
David Kilroy31afcef2008-08-21 23:28:04 +0100928 struct net_device_stats *stats = &priv->stats;
929 u16 status, fc;
930 int length;
931 struct ethhdr *hdr;
932
933 status = le16_to_cpu(desc->status);
934 length = le16_to_cpu(desc->data_len);
935 fc = le16_to_cpu(desc->frame_ctl);
936
David Kilroy23edcc42008-08-21 23:28:05 +0100937 /* Calculate and check MIC */
938 if (status & HERMES_RXSTAT_MIC) {
David Kilroy4af198f2009-08-05 21:23:32 +0100939 struct orinoco_tkip_key *key;
David Kilroy23edcc42008-08-21 23:28:05 +0100940 int key_id = ((status & HERMES_RXSTAT_MIC_KEY_ID) >>
941 HERMES_MIC_KEY_ID_SHIFT);
942 u8 mic[MICHAEL_MIC_LEN];
943 u8 *rxmic;
944 u8 *src = (fc & IEEE80211_FCTL_FROMDS) ?
945 desc->addr3 : desc->addr2;
946
947 /* Extract Michael MIC from payload */
948 rxmic = skb->data + skb->len - MICHAEL_MIC_LEN;
949
950 skb_trim(skb, skb->len - MICHAEL_MIC_LEN);
951 length -= MICHAEL_MIC_LEN;
952
David Kilroy4af198f2009-08-05 21:23:32 +0100953 key = (struct orinoco_tkip_key *) priv->keys[key_id].key;
954
955 if (!key) {
956 printk(KERN_WARNING "%s: Received encrypted frame from "
957 "%pM using key %i, but key is not installed\n",
958 dev->name, src, key_id);
959 goto drop;
960 }
961
962 orinoco_mic(priv->rx_tfm_mic, key->rx_mic, desc->addr1, src,
David Kilroy23edcc42008-08-21 23:28:05 +0100963 0, /* priority or QoS? */
David Kilroy4af198f2009-08-05 21:23:32 +0100964 skb->data, skb->len, &mic[0]);
David Kilroy23edcc42008-08-21 23:28:05 +0100965
966 if (memcmp(mic, rxmic,
967 MICHAEL_MIC_LEN)) {
968 union iwreq_data wrqu;
969 struct iw_michaelmicfailure wxmic;
David Kilroy23edcc42008-08-21 23:28:05 +0100970
971 printk(KERN_WARNING "%s: "
Johannes Berge1749612008-10-27 15:59:26 -0700972 "Invalid Michael MIC in data frame from %pM, "
David Kilroy23edcc42008-08-21 23:28:05 +0100973 "using key %i\n",
Johannes Berge1749612008-10-27 15:59:26 -0700974 dev->name, src, key_id);
David Kilroy23edcc42008-08-21 23:28:05 +0100975
976 /* TODO: update stats */
977
978 /* Notify userspace */
979 memset(&wxmic, 0, sizeof(wxmic));
980 wxmic.flags = key_id & IW_MICFAILURE_KEY_ID;
981 wxmic.flags |= (desc->addr1[0] & 1) ?
982 IW_MICFAILURE_GROUP : IW_MICFAILURE_PAIRWISE;
983 wxmic.src_addr.sa_family = ARPHRD_ETHER;
984 memcpy(wxmic.src_addr.sa_data, src, ETH_ALEN);
985
986 (void) orinoco_hw_get_tkip_iv(priv, key_id,
987 &wxmic.tsc[0]);
988
989 memset(&wrqu, 0, sizeof(wrqu));
990 wrqu.data.length = sizeof(wxmic);
991 wireless_send_event(dev, IWEVMICHAELMICFAILURE, &wrqu,
992 (char *) &wxmic);
993
994 goto drop;
995 }
996 }
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 /* Handle decapsulation
999 * In most cases, the firmware tell us about SNAP frames.
1000 * For some reason, the SNAP frames sent by LinkSys APs
1001 * are not properly recognised by most firmwares.
1002 * So, check ourselves */
Christoph Hellwig8f2abf42005-06-19 01:28:02 +02001003 if (length >= ENCAPS_OVERHEAD &&
1004 (((status & HERMES_RXSTAT_MSGTYPE) == HERMES_RXSTAT_1042) ||
1005 ((status & HERMES_RXSTAT_MSGTYPE) == HERMES_RXSTAT_TUNNEL) ||
1006 is_ethersnap(skb->data))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 /* These indicate a SNAP within 802.2 LLC within
1008 802.11 frame which we'll need to de-encapsulate to
1009 the original EthernetII frame. */
David Kilroyb2f30a02009-02-04 23:05:46 +00001010 hdr = (struct ethhdr *)skb_push(skb,
1011 ETH_HLEN - ENCAPS_OVERHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 } else {
Christoph Hellwig8f2abf42005-06-19 01:28:02 +02001013 /* 802.3 frame - prepend 802.3 header as is */
1014 hdr = (struct ethhdr *)skb_push(skb, ETH_HLEN);
1015 hdr->h_proto = htons(length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
David Kilroy31afcef2008-08-21 23:28:04 +01001017 memcpy(hdr->h_dest, desc->addr1, ETH_ALEN);
Christoph Hellwig8f2abf42005-06-19 01:28:02 +02001018 if (fc & IEEE80211_FCTL_FROMDS)
David Kilroy31afcef2008-08-21 23:28:04 +01001019 memcpy(hdr->h_source, desc->addr3, ETH_ALEN);
Christoph Hellwig8f2abf42005-06-19 01:28:02 +02001020 else
David Kilroy31afcef2008-08-21 23:28:04 +01001021 memcpy(hdr->h_source, desc->addr2, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 skb->protocol = eth_type_trans(skb, dev);
1024 skb->ip_summed = CHECKSUM_NONE;
Christoph Hellwig8f2abf42005-06-19 01:28:02 +02001025 if (fc & IEEE80211_FCTL_TODS)
1026 skb->pkt_type = PACKET_OTHERHOST;
David Kilroy6fe9deb2009-02-04 23:05:43 +00001027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 /* Process the wireless stats if needed */
David Kilroy31afcef2008-08-21 23:28:04 +01001029 orinoco_stat_gather(dev, skb, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031 /* Pass the packet to the networking stack */
1032 netif_rx(skb);
1033 stats->rx_packets++;
1034 stats->rx_bytes += length;
1035
1036 return;
David Kilroy23edcc42008-08-21 23:28:05 +01001037
1038 drop:
1039 dev_kfree_skb(skb);
1040 stats->rx_errors++;
1041 stats->rx_dropped++;
David Kilroy31afcef2008-08-21 23:28:04 +01001042}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
David Kilroy31afcef2008-08-21 23:28:04 +01001044static void orinoco_rx_isr_tasklet(unsigned long data)
1045{
David Kilroy53819562009-06-18 23:21:28 +01001046 struct orinoco_private *priv = (struct orinoco_private *) data;
1047 struct net_device *dev = priv->ndev;
David Kilroy31afcef2008-08-21 23:28:04 +01001048 struct orinoco_rx_data *rx_data, *temp;
1049 struct hermes_rx_descriptor *desc;
1050 struct sk_buff *skb;
David Kilroy20953ad2009-01-07 00:23:55 +00001051 unsigned long flags;
1052
1053 /* orinoco_rx requires the driver lock, and we also need to
1054 * protect priv->rx_list, so just hold the lock over the
1055 * lot.
1056 *
1057 * If orinoco_lock fails, we've unplugged the card. In this
1058 * case just abort. */
1059 if (orinoco_lock(priv, &flags) != 0)
1060 return;
David Kilroy31afcef2008-08-21 23:28:04 +01001061
1062 /* extract desc and skb from queue */
1063 list_for_each_entry_safe(rx_data, temp, &priv->rx_list, list) {
1064 desc = rx_data->desc;
1065 skb = rx_data->skb;
1066 list_del(&rx_data->list);
1067 kfree(rx_data);
1068
1069 orinoco_rx(dev, desc, skb);
1070
1071 kfree(desc);
1072 }
David Kilroy20953ad2009-01-07 00:23:55 +00001073
1074 orinoco_unlock(priv, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075}
1076
1077/********************************************************************/
1078/* Rx path (info frames) */
1079/********************************************************************/
1080
1081static void print_linkstatus(struct net_device *dev, u16 status)
1082{
David Kilroy21312662009-02-04 23:05:47 +00001083 char *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085 if (suppress_linkstatus)
1086 return;
1087
1088 switch (status) {
1089 case HERMES_LINKSTATUS_NOT_CONNECTED:
1090 s = "Not Connected";
1091 break;
1092 case HERMES_LINKSTATUS_CONNECTED:
1093 s = "Connected";
1094 break;
1095 case HERMES_LINKSTATUS_DISCONNECTED:
1096 s = "Disconnected";
1097 break;
1098 case HERMES_LINKSTATUS_AP_CHANGE:
1099 s = "AP Changed";
1100 break;
1101 case HERMES_LINKSTATUS_AP_OUT_OF_RANGE:
1102 s = "AP Out of Range";
1103 break;
1104 case HERMES_LINKSTATUS_AP_IN_RANGE:
1105 s = "AP In Range";
1106 break;
1107 case HERMES_LINKSTATUS_ASSOC_FAILED:
1108 s = "Association Failed";
1109 break;
1110 default:
1111 s = "UNKNOWN";
1112 }
David Kilroy6fe9deb2009-02-04 23:05:43 +00001113
Pavel Roskin11eaea42009-01-18 23:20:58 -05001114 printk(KERN_DEBUG "%s: New link status: %s (%04x)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 dev->name, s, status);
1116}
1117
Christoph Hellwig16739b02005-06-19 01:27:51 +02001118/* Search scan results for requested BSSID, join it if found */
David Howellsc4028952006-11-22 14:57:56 +00001119static void orinoco_join_ap(struct work_struct *work)
Christoph Hellwig16739b02005-06-19 01:27:51 +02001120{
David Howellsc4028952006-11-22 14:57:56 +00001121 struct orinoco_private *priv =
1122 container_of(work, struct orinoco_private, join_work);
1123 struct net_device *dev = priv->ndev;
Christoph Hellwig16739b02005-06-19 01:27:51 +02001124 struct hermes *hw = &priv->hw;
1125 int err;
1126 unsigned long flags;
1127 struct join_req {
1128 u8 bssid[ETH_ALEN];
Pavel Roskind133ae42005-09-23 04:18:06 -04001129 __le16 channel;
Christoph Hellwig16739b02005-06-19 01:27:51 +02001130 } __attribute__ ((packed)) req;
1131 const int atom_len = offsetof(struct prism2_scan_apinfo, atim);
Pavel Roskinc89cc222005-09-01 20:06:06 -04001132 struct prism2_scan_apinfo *atom = NULL;
Christoph Hellwig16739b02005-06-19 01:27:51 +02001133 int offset = 4;
Pavel Roskinc89cc222005-09-01 20:06:06 -04001134 int found = 0;
Christoph Hellwig16739b02005-06-19 01:27:51 +02001135 u8 *buf;
1136 u16 len;
1137
1138 /* Allocate buffer for scan results */
1139 buf = kmalloc(MAX_SCAN_LEN, GFP_KERNEL);
David Kilroya94e8422009-02-04 23:05:44 +00001140 if (!buf)
Christoph Hellwig16739b02005-06-19 01:27:51 +02001141 return;
1142
1143 if (orinoco_lock(priv, &flags) != 0)
Pavel Roskinf3cb4cc2005-09-23 04:18:06 -04001144 goto fail_lock;
Christoph Hellwig16739b02005-06-19 01:27:51 +02001145
1146 /* Sanity checks in case user changed something in the meantime */
David Kilroya94e8422009-02-04 23:05:44 +00001147 if (!priv->bssid_fixed)
Christoph Hellwig16739b02005-06-19 01:27:51 +02001148 goto out;
1149
1150 if (strlen(priv->desired_essid) == 0)
1151 goto out;
1152
1153 /* Read scan results from the firmware */
David Kilroyb42f2072010-05-01 14:05:38 +01001154 err = hw->ops->read_ltv(hw, USER_BAP,
1155 HERMES_RID_SCANRESULTSTABLE,
1156 MAX_SCAN_LEN, &len, buf);
Christoph Hellwig16739b02005-06-19 01:27:51 +02001157 if (err) {
1158 printk(KERN_ERR "%s: Cannot read scan results\n",
1159 dev->name);
1160 goto out;
1161 }
1162
1163 len = HERMES_RECLEN_TO_BYTES(len);
1164
1165 /* Go through the scan results looking for the channel of the AP
1166 * we were requested to join */
1167 for (; offset + atom_len <= len; offset += atom_len) {
1168 atom = (struct prism2_scan_apinfo *) (buf + offset);
Pavel Roskinc89cc222005-09-01 20:06:06 -04001169 if (memcmp(&atom->bssid, priv->desired_bssid, ETH_ALEN) == 0) {
1170 found = 1;
1171 break;
1172 }
Christoph Hellwig16739b02005-06-19 01:27:51 +02001173 }
1174
David Kilroya94e8422009-02-04 23:05:44 +00001175 if (!found) {
Pavel Roskinc89cc222005-09-01 20:06:06 -04001176 DEBUG(1, "%s: Requested AP not found in scan results\n",
1177 dev->name);
1178 goto out;
1179 }
Christoph Hellwig16739b02005-06-19 01:27:51 +02001180
Christoph Hellwig16739b02005-06-19 01:27:51 +02001181 memcpy(req.bssid, priv->desired_bssid, ETH_ALEN);
1182 req.channel = atom->channel; /* both are little-endian */
1183 err = HERMES_WRITE_RECORD(hw, USER_BAP, HERMES_RID_CNFJOINREQUEST,
1184 &req);
1185 if (err)
1186 printk(KERN_ERR "%s: Error issuing join request\n", dev->name);
1187
1188 out:
Christoph Hellwig16739b02005-06-19 01:27:51 +02001189 orinoco_unlock(priv, &flags);
Pavel Roskinf3cb4cc2005-09-23 04:18:06 -04001190
1191 fail_lock:
1192 kfree(buf);
Christoph Hellwig16739b02005-06-19 01:27:51 +02001193}
1194
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001195/* Send new BSSID to userspace */
David Kilroy6cd90b12008-08-21 23:28:00 +01001196static void orinoco_send_bssid_wevent(struct orinoco_private *priv)
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001197{
David Howellsc4028952006-11-22 14:57:56 +00001198 struct net_device *dev = priv->ndev;
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001199 struct hermes *hw = &priv->hw;
1200 union iwreq_data wrqu;
1201 int err;
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001202
David Kilroyb42f2072010-05-01 14:05:38 +01001203 err = hw->ops->read_ltv(hw, USER_BAP, HERMES_RID_CURRENTBSSID,
1204 ETH_ALEN, NULL, wrqu.ap_addr.sa_data);
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001205 if (err != 0)
David Kilroy6cd90b12008-08-21 23:28:00 +01001206 return;
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001207
1208 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
1209
1210 /* Send event to user space */
1211 wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL);
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001212}
1213
David Kilroy06009fd2008-08-21 23:28:03 +01001214static void orinoco_send_assocreqie_wevent(struct orinoco_private *priv)
1215{
1216 struct net_device *dev = priv->ndev;
1217 struct hermes *hw = &priv->hw;
1218 union iwreq_data wrqu;
1219 int err;
1220 u8 buf[88];
1221 u8 *ie;
1222
1223 if (!priv->has_wpa)
1224 return;
1225
David Kilroyb42f2072010-05-01 14:05:38 +01001226 err = hw->ops->read_ltv(hw, USER_BAP, HERMES_RID_CURRENT_ASSOC_REQ_INFO,
1227 sizeof(buf), NULL, &buf);
David Kilroy06009fd2008-08-21 23:28:03 +01001228 if (err != 0)
1229 return;
1230
1231 ie = orinoco_get_wpa_ie(buf, sizeof(buf));
1232 if (ie) {
1233 int rem = sizeof(buf) - (ie - &buf[0]);
1234 wrqu.data.length = ie[1] + 2;
1235 if (wrqu.data.length > rem)
1236 wrqu.data.length = rem;
1237
1238 if (wrqu.data.length)
1239 /* Send event to user space */
1240 wireless_send_event(dev, IWEVASSOCREQIE, &wrqu, ie);
1241 }
1242}
1243
1244static void orinoco_send_assocrespie_wevent(struct orinoco_private *priv)
1245{
1246 struct net_device *dev = priv->ndev;
1247 struct hermes *hw = &priv->hw;
1248 union iwreq_data wrqu;
1249 int err;
1250 u8 buf[88]; /* TODO: verify max size or IW_GENERIC_IE_MAX */
1251 u8 *ie;
1252
1253 if (!priv->has_wpa)
1254 return;
1255
David Kilroyb42f2072010-05-01 14:05:38 +01001256 err = hw->ops->read_ltv(hw, USER_BAP,
1257 HERMES_RID_CURRENT_ASSOC_RESP_INFO,
1258 sizeof(buf), NULL, &buf);
David Kilroy06009fd2008-08-21 23:28:03 +01001259 if (err != 0)
1260 return;
1261
1262 ie = orinoco_get_wpa_ie(buf, sizeof(buf));
1263 if (ie) {
1264 int rem = sizeof(buf) - (ie - &buf[0]);
1265 wrqu.data.length = ie[1] + 2;
1266 if (wrqu.data.length > rem)
1267 wrqu.data.length = rem;
1268
1269 if (wrqu.data.length)
1270 /* Send event to user space */
1271 wireless_send_event(dev, IWEVASSOCRESPIE, &wrqu, ie);
1272 }
1273}
1274
David Kilroy6cd90b12008-08-21 23:28:00 +01001275static void orinoco_send_wevents(struct work_struct *work)
1276{
1277 struct orinoco_private *priv =
1278 container_of(work, struct orinoco_private, wevent_work);
1279 unsigned long flags;
1280
1281 if (orinoco_lock(priv, &flags) != 0)
1282 return;
1283
David Kilroy06009fd2008-08-21 23:28:03 +01001284 orinoco_send_assocreqie_wevent(priv);
1285 orinoco_send_assocrespie_wevent(priv);
David Kilroy6cd90b12008-08-21 23:28:00 +01001286 orinoco_send_bssid_wevent(priv);
1287
1288 orinoco_unlock(priv, &flags);
1289}
Dan Williams1e3428e2007-10-10 23:56:25 -04001290
David Kilroyc63cdbe2009-06-18 23:21:33 +01001291static void qbuf_scan(struct orinoco_private *priv, void *buf,
1292 int len, int type)
1293{
1294 struct orinoco_scan_data *sd;
1295 unsigned long flags;
1296
1297 sd = kmalloc(sizeof(*sd), GFP_ATOMIC);
1298 sd->buf = buf;
1299 sd->len = len;
1300 sd->type = type;
1301
1302 spin_lock_irqsave(&priv->scan_lock, flags);
1303 list_add_tail(&sd->list, &priv->scan_list);
1304 spin_unlock_irqrestore(&priv->scan_lock, flags);
1305
1306 schedule_work(&priv->process_scan);
1307}
1308
1309static void qabort_scan(struct orinoco_private *priv)
1310{
1311 struct orinoco_scan_data *sd;
1312 unsigned long flags;
1313
1314 sd = kmalloc(sizeof(*sd), GFP_ATOMIC);
1315 sd->len = -1; /* Abort */
1316
1317 spin_lock_irqsave(&priv->scan_lock, flags);
1318 list_add_tail(&sd->list, &priv->scan_list);
1319 spin_unlock_irqrestore(&priv->scan_lock, flags);
1320
1321 schedule_work(&priv->process_scan);
1322}
1323
1324static void orinoco_process_scan_results(struct work_struct *work)
1325{
1326 struct orinoco_private *priv =
1327 container_of(work, struct orinoco_private, process_scan);
1328 struct orinoco_scan_data *sd, *temp;
1329 unsigned long flags;
1330 void *buf;
1331 int len;
1332 int type;
1333
1334 spin_lock_irqsave(&priv->scan_lock, flags);
1335 list_for_each_entry_safe(sd, temp, &priv->scan_list, list) {
1336 spin_unlock_irqrestore(&priv->scan_lock, flags);
1337
1338 buf = sd->buf;
1339 len = sd->len;
1340 type = sd->type;
1341
1342 list_del(&sd->list);
1343 kfree(sd);
1344
1345 if (len > 0) {
1346 if (type == HERMES_INQ_CHANNELINFO)
1347 orinoco_add_extscan_result(priv, buf, len);
1348 else
1349 orinoco_add_hostscan_results(priv, buf, len);
1350
1351 kfree(buf);
1352 } else if (priv->scan_request) {
1353 /* Either abort or complete the scan */
1354 cfg80211_scan_done(priv->scan_request, (len < 0));
1355 priv->scan_request = NULL;
1356 }
1357
1358 spin_lock_irqsave(&priv->scan_lock, flags);
1359 }
1360 spin_unlock_irqrestore(&priv->scan_lock, flags);
1361}
1362
David Kilroy9afac702010-05-01 14:05:41 +01001363void __orinoco_ev_info(struct net_device *dev, hermes_t *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364{
David Kilroyea60a6a2009-06-18 23:21:26 +01001365 struct orinoco_private *priv = ndev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 u16 infofid;
1367 struct {
Pavel Roskind133ae42005-09-23 04:18:06 -04001368 __le16 len;
1369 __le16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 } __attribute__ ((packed)) info;
1371 int len, type;
1372 int err;
1373
1374 /* This is an answer to an INQUIRE command that we did earlier,
1375 * or an information "event" generated by the card
1376 * The controller return to us a pseudo frame containing
1377 * the information in question - Jean II */
1378 infofid = hermes_read_regn(hw, INFOFID);
1379
1380 /* Read the info frame header - don't try too hard */
David Kilroyb42f2072010-05-01 14:05:38 +01001381 err = hw->ops->bap_pread(hw, IRQ_BAP, &info, sizeof(info),
1382 infofid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 if (err) {
1384 printk(KERN_ERR "%s: error %d reading info frame. "
1385 "Frame dropped.\n", dev->name, err);
1386 return;
1387 }
David Kilroy6fe9deb2009-02-04 23:05:43 +00001388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 len = HERMES_RECLEN_TO_BYTES(le16_to_cpu(info.len));
1390 type = le16_to_cpu(info.type);
1391
1392 switch (type) {
1393 case HERMES_INQ_TALLIES: {
1394 struct hermes_tallies_frame tallies;
1395 struct iw_statistics *wstats = &priv->wstats;
David Kilroy6fe9deb2009-02-04 23:05:43 +00001396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 if (len > sizeof(tallies)) {
1398 printk(KERN_WARNING "%s: Tallies frame too long (%d bytes)\n",
1399 dev->name, len);
1400 len = sizeof(tallies);
1401 }
David Kilroy6fe9deb2009-02-04 23:05:43 +00001402
David Kilroyb42f2072010-05-01 14:05:38 +01001403 err = hw->ops->bap_pread(hw, IRQ_BAP, &tallies, len,
1404 infofid, sizeof(info));
Christoph Hellwig84d8a2f2005-05-14 17:30:22 +02001405 if (err)
1406 break;
David Kilroy6fe9deb2009-02-04 23:05:43 +00001407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 /* Increment our various counters */
1409 /* wstats->discard.nwid - no wrong BSSID stuff */
1410 wstats->discard.code +=
1411 le16_to_cpu(tallies.RxWEPUndecryptable);
David Kilroy6fe9deb2009-02-04 23:05:43 +00001412 if (len == sizeof(tallies))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 wstats->discard.code +=
1414 le16_to_cpu(tallies.RxDiscards_WEPICVError) +
1415 le16_to_cpu(tallies.RxDiscards_WEPExcluded);
1416 wstats->discard.misc +=
1417 le16_to_cpu(tallies.TxDiscardsWrongSA);
1418 wstats->discard.fragment +=
1419 le16_to_cpu(tallies.RxMsgInBadMsgFragments);
1420 wstats->discard.retries +=
1421 le16_to_cpu(tallies.TxRetryLimitExceeded);
1422 /* wstats->miss.beacon - no match */
1423 }
1424 break;
1425 case HERMES_INQ_LINKSTATUS: {
1426 struct hermes_linkstatus linkstatus;
1427 u16 newstatus;
1428 int connected;
1429
David Kilroy5217c572009-06-18 23:21:32 +01001430 if (priv->iw_mode == NL80211_IFTYPE_MONITOR)
Christoph Hellwig8f2abf42005-06-19 01:28:02 +02001431 break;
1432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 if (len != sizeof(linkstatus)) {
1434 printk(KERN_WARNING "%s: Unexpected size for linkstatus frame (%d bytes)\n",
1435 dev->name, len);
1436 break;
1437 }
1438
David Kilroyb42f2072010-05-01 14:05:38 +01001439 err = hw->ops->bap_pread(hw, IRQ_BAP, &linkstatus, len,
1440 infofid, sizeof(info));
Christoph Hellwig84d8a2f2005-05-14 17:30:22 +02001441 if (err)
1442 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 newstatus = le16_to_cpu(linkstatus.linkstatus);
1444
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001445 /* Symbol firmware uses "out of range" to signal that
1446 * the hostscan frame can be requested. */
1447 if (newstatus == HERMES_LINKSTATUS_AP_OUT_OF_RANGE &&
1448 priv->firmware_type == FIRMWARE_TYPE_SYMBOL &&
David Kilroyc63cdbe2009-06-18 23:21:33 +01001449 priv->has_hostscan && priv->scan_request) {
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001450 hermes_inquire(hw, HERMES_INQ_HOSTSCAN_SYMBOL);
1451 break;
1452 }
1453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 connected = (newstatus == HERMES_LINKSTATUS_CONNECTED)
1455 || (newstatus == HERMES_LINKSTATUS_AP_CHANGE)
1456 || (newstatus == HERMES_LINKSTATUS_AP_IN_RANGE);
1457
1458 if (connected)
1459 netif_carrier_on(dev);
David Gibson7bb7c3a2005-05-12 20:02:10 -04001460 else if (!ignore_disconnect)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 netif_carrier_off(dev);
1462
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001463 if (newstatus != priv->last_linkstatus) {
1464 priv->last_linkstatus = newstatus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 print_linkstatus(dev, newstatus);
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001466 /* The info frame contains only one word which is the
1467 * status (see hermes.h). The status is pretty boring
1468 * in itself, that's why we export the new BSSID...
1469 * Jean II */
1470 schedule_work(&priv->wevent_work);
1471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 }
1473 break;
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001474 case HERMES_INQ_SCAN:
David Kilroyc63cdbe2009-06-18 23:21:33 +01001475 if (!priv->scan_request && priv->bssid_fixed &&
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001476 priv->firmware_type == FIRMWARE_TYPE_INTERSIL) {
1477 schedule_work(&priv->join_work);
1478 break;
1479 }
1480 /* fall through */
1481 case HERMES_INQ_HOSTSCAN:
1482 case HERMES_INQ_HOSTSCAN_SYMBOL: {
1483 /* Result of a scanning. Contains information about
1484 * cells in the vicinity - Jean II */
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001485 unsigned char *buf;
1486
1487 /* Sanity check */
1488 if (len > 4096) {
1489 printk(KERN_WARNING "%s: Scan results too large (%d bytes)\n",
1490 dev->name, len);
David Kilroyc63cdbe2009-06-18 23:21:33 +01001491 qabort_scan(priv);
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001492 break;
1493 }
1494
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001495 /* Allocate buffer for results */
1496 buf = kmalloc(len, GFP_ATOMIC);
David Kilroyc63cdbe2009-06-18 23:21:33 +01001497 if (buf == NULL) {
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001498 /* No memory, so can't printk()... */
David Kilroyc63cdbe2009-06-18 23:21:33 +01001499 qabort_scan(priv);
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001500 break;
David Kilroyc63cdbe2009-06-18 23:21:33 +01001501 }
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001502
1503 /* Read scan data */
David Kilroyb42f2072010-05-01 14:05:38 +01001504 err = hw->ops->bap_pread(hw, IRQ_BAP, (void *) buf, len,
1505 infofid, sizeof(info));
Pavel Roskin708218b2005-09-01 20:05:19 -04001506 if (err) {
1507 kfree(buf);
David Kilroyc63cdbe2009-06-18 23:21:33 +01001508 qabort_scan(priv);
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001509 break;
Pavel Roskin708218b2005-09-01 20:05:19 -04001510 }
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001511
1512#ifdef ORINOCO_DEBUG
1513 {
1514 int i;
1515 printk(KERN_DEBUG "Scan result [%02X", buf[0]);
David Kilroya94e8422009-02-04 23:05:44 +00001516 for (i = 1; i < (len * 2); i++)
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001517 printk(":%02X", buf[i]);
1518 printk("]\n");
1519 }
1520#endif /* ORINOCO_DEBUG */
1521
David Kilroyc63cdbe2009-06-18 23:21:33 +01001522 qbuf_scan(priv, buf, len, type);
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001523 }
1524 break;
David Kilroy01632fa2008-08-21 23:27:58 +01001525 case HERMES_INQ_CHANNELINFO:
1526 {
1527 struct agere_ext_scan_info *bss;
1528
David Kilroyc63cdbe2009-06-18 23:21:33 +01001529 if (!priv->scan_request) {
David Kilroy01632fa2008-08-21 23:27:58 +01001530 printk(KERN_DEBUG "%s: Got chaninfo without scan, "
1531 "len=%d\n", dev->name, len);
1532 break;
1533 }
1534
1535 /* An empty result indicates that the scan is complete */
1536 if (len == 0) {
David Kilroyc63cdbe2009-06-18 23:21:33 +01001537 qbuf_scan(priv, NULL, len, type);
David Kilroy01632fa2008-08-21 23:27:58 +01001538 break;
1539 }
1540
1541 /* Sanity check */
David Kilroyc63cdbe2009-06-18 23:21:33 +01001542 else if (len < (offsetof(struct agere_ext_scan_info,
David Kilroy01632fa2008-08-21 23:27:58 +01001543 data) + 2)) {
1544 /* Drop this result now so we don't have to
1545 * keep checking later */
1546 printk(KERN_WARNING
1547 "%s: Ext scan results too short (%d bytes)\n",
1548 dev->name, len);
1549 break;
1550 }
1551
David Kilroyc63cdbe2009-06-18 23:21:33 +01001552 bss = kmalloc(len, GFP_ATOMIC);
David Kilroy01632fa2008-08-21 23:27:58 +01001553 if (bss == NULL)
1554 break;
1555
1556 /* Read scan data */
David Kilroyb42f2072010-05-01 14:05:38 +01001557 err = hw->ops->bap_pread(hw, IRQ_BAP, (void *) bss, len,
1558 infofid, sizeof(info));
David Kilroyc63cdbe2009-06-18 23:21:33 +01001559 if (err)
David Kilroy01632fa2008-08-21 23:27:58 +01001560 kfree(bss);
David Kilroyc63cdbe2009-06-18 23:21:33 +01001561 else
1562 qbuf_scan(priv, bss, len, type);
David Kilroy01632fa2008-08-21 23:27:58 +01001563
David Kilroy01632fa2008-08-21 23:27:58 +01001564 break;
1565 }
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001566 case HERMES_INQ_SEC_STAT_AGERE:
1567 /* Security status (Agere specific) */
1568 /* Ignore this frame for now */
1569 if (priv->firmware_type == FIRMWARE_TYPE_AGERE)
1570 break;
1571 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 default:
1573 printk(KERN_DEBUG "%s: Unknown information frame received: "
1574 "type 0x%04x, length %d\n", dev->name, type, len);
1575 /* We don't actually do anything about it */
1576 break;
1577 }
David Kilroyc63cdbe2009-06-18 23:21:33 +01001578
1579 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580}
David Kilroy9afac702010-05-01 14:05:41 +01001581EXPORT_SYMBOL(__orinoco_ev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
1583static void __orinoco_ev_infdrop(struct net_device *dev, hermes_t *hw)
1584{
1585 if (net_ratelimit())
1586 printk(KERN_DEBUG "%s: Information frame lost.\n", dev->name);
1587}
1588
1589/********************************************************************/
1590/* Internal hardware control routines */
1591/********************************************************************/
1592
David Kilroy6415f7d2009-06-18 23:21:30 +01001593static int __orinoco_up(struct orinoco_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594{
David Kilroya2608362009-06-18 23:21:23 +01001595 struct net_device *dev = priv->ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 struct hermes *hw = &priv->hw;
1597 int err;
1598
Christoph Hellwig84d8a2f2005-05-14 17:30:22 +02001599 netif_carrier_off(dev); /* just to make sure */
1600
David Kilroy721aa2f2009-06-18 23:21:31 +01001601 err = __orinoco_commit(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 if (err) {
1603 printk(KERN_ERR "%s: Error %d configuring card\n",
1604 dev->name, err);
1605 return err;
1606 }
1607
1608 /* Fire things up again */
1609 hermes_set_irqmask(hw, ORINOCO_INTEN);
1610 err = hermes_enable_port(hw, 0);
1611 if (err) {
1612 printk(KERN_ERR "%s: Error %d enabling MAC port\n",
1613 dev->name, err);
1614 return err;
1615 }
1616
1617 netif_start_queue(dev);
1618
1619 return 0;
1620}
1621
David Kilroy6415f7d2009-06-18 23:21:30 +01001622static int __orinoco_down(struct orinoco_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623{
David Kilroya2608362009-06-18 23:21:23 +01001624 struct net_device *dev = priv->ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 struct hermes *hw = &priv->hw;
1626 int err;
1627
1628 netif_stop_queue(dev);
1629
David Kilroya94e8422009-02-04 23:05:44 +00001630 if (!priv->hw_unavailable) {
1631 if (!priv->broken_disableport) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 err = hermes_disable_port(hw, 0);
1633 if (err) {
1634 /* Some firmwares (e.g. Intersil 1.3.x) seem
1635 * to have problems disabling the port, oh
1636 * well, too bad. */
1637 printk(KERN_WARNING "%s: Error %d disabling MAC port\n",
1638 dev->name, err);
1639 priv->broken_disableport = 1;
1640 }
1641 }
1642 hermes_set_irqmask(hw, 0);
1643 hermes_write_regn(hw, EVACK, 0xffff);
1644 }
David Kilroy6fe9deb2009-02-04 23:05:43 +00001645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 /* firmware will have to reassociate */
1647 netif_carrier_off(dev);
1648 priv->last_linkstatus = 0xffff;
1649
1650 return 0;
1651}
1652
David Kilroy6415f7d2009-06-18 23:21:30 +01001653static int orinoco_reinit_firmware(struct orinoco_private *priv)
Pavel Roskin37a6c612006-04-07 04:10:49 -04001654{
Pavel Roskin37a6c612006-04-07 04:10:49 -04001655 struct hermes *hw = &priv->hw;
1656 int err;
1657
David Kilroyb42f2072010-05-01 14:05:38 +01001658 err = hw->ops->init(hw);
Andrey Borzenkov0df6cbb2008-10-12 20:15:43 +04001659 if (priv->do_fw_download && !err) {
1660 err = orinoco_download(priv);
1661 if (err)
1662 priv->do_fw_download = 0;
1663 }
Pavel Roskin37a6c612006-04-07 04:10:49 -04001664 if (!err)
David Kilroy42a51b92009-06-18 23:21:20 +01001665 err = orinoco_hw_allocate_fid(priv);
Pavel Roskin37a6c612006-04-07 04:10:49 -04001666
1667 return err;
1668}
1669
David Kilroy721aa2f2009-06-18 23:21:31 +01001670static int
David Kilroy5865d012009-02-04 23:05:54 +00001671__orinoco_set_multicast_list(struct net_device *dev)
1672{
David Kilroyea60a6a2009-06-18 23:21:26 +01001673 struct orinoco_private *priv = ndev_priv(dev);
David Kilroy5865d012009-02-04 23:05:54 +00001674 int err = 0;
1675 int promisc, mc_count;
1676
1677 /* The Hermes doesn't seem to have an allmulti mode, so we go
1678 * into promiscuous mode and let the upper levels deal. */
1679 if ((dev->flags & IFF_PROMISC) || (dev->flags & IFF_ALLMULTI) ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001680 (netdev_mc_count(dev) > MAX_MULTICAST(priv))) {
David Kilroy5865d012009-02-04 23:05:54 +00001681 promisc = 1;
1682 mc_count = 0;
1683 } else {
1684 promisc = 0;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001685 mc_count = netdev_mc_count(dev);
David Kilroy5865d012009-02-04 23:05:54 +00001686 }
1687
Jiri Pirko655ffee2010-02-27 07:35:45 +00001688 err = __orinoco_hw_set_multicast_list(priv, dev, mc_count, promisc);
David Kilroy721aa2f2009-06-18 23:21:31 +01001689
1690 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691}
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693/* This must be called from user context, without locks held - use
1694 * schedule_work() */
David Kilroycb1576a2009-02-04 23:05:56 +00001695void orinoco_reset(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696{
David Howellsc4028952006-11-22 14:57:56 +00001697 struct orinoco_private *priv =
1698 container_of(work, struct orinoco_private, reset_work);
1699 struct net_device *dev = priv->ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 struct hermes *hw = &priv->hw;
Christoph Hellwig8551cb92005-05-14 17:30:04 +02001701 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 unsigned long flags;
1703
1704 if (orinoco_lock(priv, &flags) != 0)
1705 /* When the hardware becomes available again, whatever
1706 * detects that is responsible for re-initializing
1707 * it. So no need for anything further */
1708 return;
1709
1710 netif_stop_queue(dev);
1711
1712 /* Shut off interrupts. Depending on what state the hardware
1713 * is in, this might not work, but we'll try anyway */
1714 hermes_set_irqmask(hw, 0);
1715 hermes_write_regn(hw, EVACK, 0xffff);
1716
1717 priv->hw_unavailable++;
1718 priv->last_linkstatus = 0xffff; /* firmware will have to reassociate */
1719 netif_carrier_off(dev);
1720
1721 orinoco_unlock(priv, &flags);
1722
David Kilroyc63cdbe2009-06-18 23:21:33 +01001723 /* Scanning support: Notify scan cancellation */
1724 if (priv->scan_request) {
1725 cfg80211_scan_done(priv->scan_request, 1);
1726 priv->scan_request = NULL;
1727 }
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02001728
Christoph Hellwig8551cb92005-05-14 17:30:04 +02001729 if (priv->hard_reset) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 err = (*priv->hard_reset)(priv);
Christoph Hellwig8551cb92005-05-14 17:30:04 +02001731 if (err) {
1732 printk(KERN_ERR "%s: orinoco_reset: Error %d "
1733 "performing hard reset\n", dev->name, err);
1734 goto disable;
1735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 }
1737
David Kilroya2608362009-06-18 23:21:23 +01001738 err = orinoco_reinit_firmware(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 if (err) {
1740 printk(KERN_ERR "%s: orinoco_reset: Error %d re-initializing firmware\n",
1741 dev->name, err);
Christoph Hellwig8551cb92005-05-14 17:30:04 +02001742 goto disable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 }
1744
David Kilroyb2f30a02009-02-04 23:05:46 +00001745 /* This has to be called from user context */
David Kilroybcad6e82010-05-01 14:05:40 +01001746 orinoco_lock_irq(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
1748 priv->hw_unavailable--;
1749
1750 /* priv->open or priv->hw_unavailable might have changed while
1751 * we dropped the lock */
David Kilroya94e8422009-02-04 23:05:44 +00001752 if (priv->open && (!priv->hw_unavailable)) {
David Kilroya2608362009-06-18 23:21:23 +01001753 err = __orinoco_up(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 if (err) {
1755 printk(KERN_ERR "%s: orinoco_reset: Error %d reenabling card\n",
1756 dev->name, err);
1757 } else
1758 dev->trans_start = jiffies;
1759 }
1760
David Kilroybcad6e82010-05-01 14:05:40 +01001761 orinoco_unlock_irq(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
1763 return;
Christoph Hellwig8551cb92005-05-14 17:30:04 +02001764 disable:
1765 hermes_set_irqmask(hw, 0);
1766 netif_device_detach(dev);
1767 printk(KERN_ERR "%s: Device has been disabled!\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768}
1769
David Kilroy721aa2f2009-06-18 23:21:31 +01001770static int __orinoco_commit(struct orinoco_private *priv)
1771{
1772 struct net_device *dev = priv->ndev;
1773 int err = 0;
1774
1775 err = orinoco_hw_program_rids(priv);
1776
1777 /* FIXME: what about netif_tx_lock */
1778 (void) __orinoco_set_multicast_list(dev);
1779
1780 return err;
1781}
1782
1783/* Ensures configuration changes are applied. May result in a reset.
1784 * The caller should hold priv->lock
1785 */
1786int orinoco_commit(struct orinoco_private *priv)
1787{
1788 struct net_device *dev = priv->ndev;
1789 hermes_t *hw = &priv->hw;
1790 int err;
1791
1792 if (priv->broken_disableport) {
1793 schedule_work(&priv->reset_work);
1794 return 0;
1795 }
1796
1797 err = hermes_disable_port(hw, 0);
1798 if (err) {
1799 printk(KERN_WARNING "%s: Unable to disable port "
1800 "while reconfiguring card\n", dev->name);
1801 priv->broken_disableport = 1;
1802 goto out;
1803 }
1804
1805 err = __orinoco_commit(priv);
1806 if (err) {
1807 printk(KERN_WARNING "%s: Unable to reconfigure card\n",
1808 dev->name);
1809 goto out;
1810 }
1811
1812 err = hermes_enable_port(hw, 0);
1813 if (err) {
1814 printk(KERN_WARNING "%s: Unable to enable port while reconfiguring card\n",
1815 dev->name);
1816 goto out;
1817 }
1818
1819 out:
1820 if (err) {
1821 printk(KERN_WARNING "%s: Resetting instead...\n", dev->name);
1822 schedule_work(&priv->reset_work);
1823 err = 0;
1824 }
1825 return err;
1826}
1827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828/********************************************************************/
1829/* Interrupt handler */
1830/********************************************************************/
1831
1832static void __orinoco_ev_tick(struct net_device *dev, hermes_t *hw)
1833{
1834 printk(KERN_DEBUG "%s: TICK\n", dev->name);
1835}
1836
1837static void __orinoco_ev_wterr(struct net_device *dev, hermes_t *hw)
1838{
1839 /* This seems to happen a fair bit under load, but ignoring it
1840 seems to work fine...*/
1841 printk(KERN_DEBUG "%s: MAC controller error (WTERR). Ignoring.\n",
1842 dev->name);
1843}
1844
David Howells7d12e782006-10-05 14:55:46 +01001845irqreturn_t orinoco_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
David Kilroya2608362009-06-18 23:21:23 +01001847 struct orinoco_private *priv = dev_id;
1848 struct net_device *dev = priv->ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 hermes_t *hw = &priv->hw;
1850 int count = MAX_IRQLOOPS_PER_IRQ;
1851 u16 evstat, events;
David Kilroy21312662009-02-04 23:05:47 +00001852 /* These are used to detect a runaway interrupt situation.
1853 *
1854 * If we get more than MAX_IRQLOOPS_PER_JIFFY iterations in a jiffy,
1855 * we panic and shut down the hardware
1856 */
1857 /* jiffies value the last time we were called */
1858 static int last_irq_jiffy; /* = 0 */
1859 static int loops_this_jiffy; /* = 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 unsigned long flags;
1861
1862 if (orinoco_lock(priv, &flags) != 0) {
1863 /* If hw is unavailable - we don't know if the irq was
1864 * for us or not */
1865 return IRQ_HANDLED;
1866 }
1867
1868 evstat = hermes_read_regn(hw, EVSTAT);
1869 events = evstat & hw->inten;
David Kilroya94e8422009-02-04 23:05:44 +00001870 if (!events) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 orinoco_unlock(priv, &flags);
1872 return IRQ_NONE;
1873 }
David Kilroy6fe9deb2009-02-04 23:05:43 +00001874
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 if (jiffies != last_irq_jiffy)
1876 loops_this_jiffy = 0;
1877 last_irq_jiffy = jiffies;
1878
1879 while (events && count--) {
1880 if (++loops_this_jiffy > MAX_IRQLOOPS_PER_JIFFY) {
1881 printk(KERN_WARNING "%s: IRQ handler is looping too "
1882 "much! Resetting.\n", dev->name);
1883 /* Disable interrupts for now */
1884 hermes_set_irqmask(hw, 0);
1885 schedule_work(&priv->reset_work);
1886 break;
1887 }
1888
1889 /* Check the card hasn't been removed */
David Kilroya94e8422009-02-04 23:05:44 +00001890 if (!hermes_present(hw)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 DEBUG(0, "orinoco_interrupt(): card removed\n");
1892 break;
1893 }
1894
1895 if (events & HERMES_EV_TICK)
1896 __orinoco_ev_tick(dev, hw);
1897 if (events & HERMES_EV_WTERR)
1898 __orinoco_ev_wterr(dev, hw);
1899 if (events & HERMES_EV_INFDROP)
1900 __orinoco_ev_infdrop(dev, hw);
1901 if (events & HERMES_EV_INFO)
1902 __orinoco_ev_info(dev, hw);
1903 if (events & HERMES_EV_RX)
1904 __orinoco_ev_rx(dev, hw);
1905 if (events & HERMES_EV_TXEXC)
1906 __orinoco_ev_txexc(dev, hw);
1907 if (events & HERMES_EV_TX)
1908 __orinoco_ev_tx(dev, hw);
1909 if (events & HERMES_EV_ALLOC)
1910 __orinoco_ev_alloc(dev, hw);
David Kilroy6fe9deb2009-02-04 23:05:43 +00001911
Christoph Hellwig84d8a2f2005-05-14 17:30:22 +02001912 hermes_write_regn(hw, EVACK, evstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
1914 evstat = hermes_read_regn(hw, EVSTAT);
1915 events = evstat & hw->inten;
1916 };
1917
1918 orinoco_unlock(priv, &flags);
1919 return IRQ_HANDLED;
1920}
David Kilroy21312662009-02-04 23:05:47 +00001921EXPORT_SYMBOL(orinoco_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
1923/********************************************************************/
David Kilroy39d1ffe2008-11-22 10:37:28 +00001924/* Power management */
1925/********************************************************************/
1926#if defined(CONFIG_PM_SLEEP) && !defined(CONFIG_HERMES_CACHE_FW_ON_INIT)
1927static int orinoco_pm_notifier(struct notifier_block *notifier,
1928 unsigned long pm_event,
1929 void *unused)
1930{
1931 struct orinoco_private *priv = container_of(notifier,
1932 struct orinoco_private,
1933 pm_notifier);
1934
1935 /* All we need to do is cache the firmware before suspend, and
1936 * release it when we come out.
1937 *
1938 * Only need to do this if we're downloading firmware. */
1939 if (!priv->do_fw_download)
1940 return NOTIFY_DONE;
1941
1942 switch (pm_event) {
1943 case PM_HIBERNATION_PREPARE:
1944 case PM_SUSPEND_PREPARE:
1945 orinoco_cache_fw(priv, 0);
1946 break;
1947
1948 case PM_POST_RESTORE:
1949 /* Restore from hibernation failed. We need to clean
1950 * up in exactly the same way, so fall through. */
1951 case PM_POST_HIBERNATION:
1952 case PM_POST_SUSPEND:
1953 orinoco_uncache_fw(priv);
1954 break;
1955
1956 case PM_RESTORE_PREPARE:
1957 default:
1958 break;
1959 }
1960
1961 return NOTIFY_DONE;
1962}
David S. Millerf11c1792009-02-25 00:02:05 -08001963
1964static void orinoco_register_pm_notifier(struct orinoco_private *priv)
1965{
1966 priv->pm_notifier.notifier_call = orinoco_pm_notifier;
1967 register_pm_notifier(&priv->pm_notifier);
1968}
1969
1970static void orinoco_unregister_pm_notifier(struct orinoco_private *priv)
1971{
1972 unregister_pm_notifier(&priv->pm_notifier);
1973}
David Kilroy39d1ffe2008-11-22 10:37:28 +00001974#else /* !PM_SLEEP || HERMES_CACHE_FW_ON_INIT */
David S. Millerf11c1792009-02-25 00:02:05 -08001975#define orinoco_register_pm_notifier(priv) do { } while(0)
1976#define orinoco_unregister_pm_notifier(priv) do { } while(0)
David Kilroy39d1ffe2008-11-22 10:37:28 +00001977#endif
1978
1979/********************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980/* Initialization */
1981/********************************************************************/
1982
David Kilroy8e638262009-06-18 23:21:24 +01001983int orinoco_init(struct orinoco_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984{
David Kilroy8e638262009-06-18 23:21:24 +01001985 struct device *dev = priv->dev;
David Kilroyea60a6a2009-06-18 23:21:26 +01001986 struct wiphy *wiphy = priv_to_wiphy(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 hermes_t *hw = &priv->hw;
1988 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 /* No need to lock, the hw_unavailable flag is already set in
1991 * alloc_orinocodev() */
Johannes Berg2c7060022008-10-30 22:09:54 +01001992 priv->nicbuf_size = IEEE80211_MAX_FRAME_LEN + ETH_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994 /* Initialize the firmware */
David Kilroyb42f2072010-05-01 14:05:38 +01001995 err = hw->ops->init(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 if (err != 0) {
David Kilroy8e638262009-06-18 23:21:24 +01001997 dev_err(dev, "Failed to initialize firmware (err = %d)\n",
1998 err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 goto out;
2000 }
2001
David Kilroy3414fc32009-10-07 22:23:32 +01002002 err = determine_fw_capabilities(priv, wiphy->fw_version,
2003 sizeof(wiphy->fw_version),
2004 &wiphy->hw_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 if (err != 0) {
David Kilroy8e638262009-06-18 23:21:24 +01002006 dev_err(dev, "Incompatible firmware, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 goto out;
2008 }
2009
David Kilroy3994d502008-08-21 23:27:54 +01002010 if (priv->do_fw_download) {
David Kilroy39d1ffe2008-11-22 10:37:28 +00002011#ifdef CONFIG_HERMES_CACHE_FW_ON_INIT
David Kilroy74734312008-11-22 10:37:25 +00002012 orinoco_cache_fw(priv, 0);
David Kilroy39d1ffe2008-11-22 10:37:28 +00002013#endif
David Kilroy74734312008-11-22 10:37:25 +00002014
David Kilroy3994d502008-08-21 23:27:54 +01002015 err = orinoco_download(priv);
2016 if (err)
2017 priv->do_fw_download = 0;
2018
2019 /* Check firmware version again */
David Kilroy3414fc32009-10-07 22:23:32 +01002020 err = determine_fw_capabilities(priv, wiphy->fw_version,
2021 sizeof(wiphy->fw_version),
2022 &wiphy->hw_version);
David Kilroy3994d502008-08-21 23:27:54 +01002023 if (err != 0) {
David Kilroy8e638262009-06-18 23:21:24 +01002024 dev_err(dev, "Incompatible firmware, aborting\n");
David Kilroy3994d502008-08-21 23:27:54 +01002025 goto out;
2026 }
2027 }
2028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 if (priv->has_port3)
David Kilroy8e638262009-06-18 23:21:24 +01002030 dev_info(dev, "Ad-hoc demo mode supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 if (priv->has_ibss)
David Kilroy8e638262009-06-18 23:21:24 +01002032 dev_info(dev, "IEEE standard IBSS ad-hoc mode supported\n");
2033 if (priv->has_wep)
2034 dev_info(dev, "WEP supported, %s-bit key\n",
2035 priv->has_big_wep ? "104" : "40");
David Kilroy23edcc42008-08-21 23:28:05 +01002036 if (priv->has_wpa) {
David Kilroy8e638262009-06-18 23:21:24 +01002037 dev_info(dev, "WPA-PSK supported\n");
David Kilroy23edcc42008-08-21 23:28:05 +01002038 if (orinoco_mic_init(priv)) {
David Kilroy8e638262009-06-18 23:21:24 +01002039 dev_err(dev, "Failed to setup MIC crypto algorithm. "
2040 "Disabling WPA support\n");
David Kilroy23edcc42008-08-21 23:28:05 +01002041 priv->has_wpa = 0;
2042 }
2043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
David Kilroyea60a6a2009-06-18 23:21:26 +01002045 err = orinoco_hw_read_card_settings(priv, wiphy->perm_addr);
David Kilroye9e3d012009-06-18 23:21:19 +01002046 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
David Kilroy42a51b92009-06-18 23:21:20 +01002049 err = orinoco_hw_allocate_fid(priv);
Pavel Roskin37a6c612006-04-07 04:10:49 -04002050 if (err) {
David Kilroy8e638262009-06-18 23:21:24 +01002051 dev_err(dev, "Failed to allocate NIC buffer!\n");
Pavel Roskin37a6c612006-04-07 04:10:49 -04002052 goto out;
2053 }
2054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 /* Set up the default configuration */
David Kilroy5217c572009-06-18 23:21:32 +01002056 priv->iw_mode = NL80211_IFTYPE_STATION;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 /* By default use IEEE/IBSS ad-hoc mode if we have it */
David Kilroya94e8422009-02-04 23:05:44 +00002058 priv->prefer_port3 = priv->has_port3 && (!priv->has_ibss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 set_port_type(priv);
David Gibsond51d8b12005-05-12 20:03:36 -04002060 priv->channel = 0; /* use firmware default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
2062 priv->promiscuous = 0;
David Kilroy5c9f41e2009-08-05 21:23:28 +01002063 priv->encode_alg = ORINOCO_ALG_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 priv->tx_key = 0;
David Kilroyd03032a2008-08-21 23:28:02 +01002065 priv->wpa_enabled = 0;
2066 priv->tkip_cm_active = 0;
2067 priv->key_mgmt = 0;
2068 priv->wpa_ie_len = 0;
2069 priv->wpa_ie = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
David Kilroyea60a6a2009-06-18 23:21:26 +01002071 if (orinoco_wiphy_register(wiphy)) {
2072 err = -ENODEV;
2073 goto out;
2074 }
2075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 /* Make the hardware available, as long as it hasn't been
2077 * removed elsewhere (e.g. by PCMCIA hot unplug) */
David Kilroybcad6e82010-05-01 14:05:40 +01002078 orinoco_lock_irq(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 priv->hw_unavailable--;
David Kilroybcad6e82010-05-01 14:05:40 +01002080 orinoco_unlock_irq(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
David Kilroy8e638262009-06-18 23:21:24 +01002082 dev_dbg(dev, "Ready\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
2084 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 return err;
2086}
David Kilroy8e638262009-06-18 23:21:24 +01002087EXPORT_SYMBOL(orinoco_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Andrey Borzenkov89ea4092009-01-21 20:46:46 +03002089static const struct net_device_ops orinoco_netdev_ops = {
Andrey Borzenkov89ea4092009-01-21 20:46:46 +03002090 .ndo_open = orinoco_open,
2091 .ndo_stop = orinoco_stop,
2092 .ndo_start_xmit = orinoco_xmit,
2093 .ndo_set_multicast_list = orinoco_set_multicast_list,
2094 .ndo_change_mtu = orinoco_change_mtu,
Ben Hutchings240c1022009-07-09 17:54:35 +00002095 .ndo_set_mac_address = eth_mac_addr,
2096 .ndo_validate_addr = eth_validate_addr,
Andrey Borzenkov89ea4092009-01-21 20:46:46 +03002097 .ndo_tx_timeout = orinoco_tx_timeout,
2098 .ndo_get_stats = orinoco_get_stats,
2099};
2100
David Kilroyea60a6a2009-06-18 23:21:26 +01002101/* Allocate private data.
2102 *
2103 * This driver has a number of structures associated with it
2104 * netdev - Net device structure for each network interface
2105 * wiphy - structure associated with wireless phy
2106 * wireless_dev (wdev) - structure for each wireless interface
2107 * hw - structure for hermes chip info
2108 * card - card specific structure for use by the card driver
2109 * (airport, orinoco_cs)
2110 * priv - orinoco private data
2111 * device - generic linux device structure
2112 *
2113 * +---------+ +---------+
2114 * | wiphy | | netdev |
2115 * | +-------+ | +-------+
2116 * | | priv | | | wdev |
2117 * | | +-----+ +-+-------+
2118 * | | | hw |
2119 * | +-+-----+
2120 * | | card |
2121 * +-+-------+
2122 *
2123 * priv has a link to netdev and device
2124 * wdev has a link to wiphy
2125 */
David Kilroya2608362009-06-18 23:21:23 +01002126struct orinoco_private
David Kilroy3994d502008-08-21 23:27:54 +01002127*alloc_orinocodev(int sizeof_card,
2128 struct device *device,
2129 int (*hard_reset)(struct orinoco_private *),
2130 int (*stop_fw)(struct orinoco_private *, int))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 struct orinoco_private *priv;
David Kilroyea60a6a2009-06-18 23:21:26 +01002133 struct wiphy *wiphy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
David Kilroyea60a6a2009-06-18 23:21:26 +01002135 /* allocate wiphy
2136 * NOTE: We only support a single virtual interface
2137 * but this may change when monitor mode is added
2138 */
2139 wiphy = wiphy_new(&orinoco_cfg_ops,
2140 sizeof(struct orinoco_private) + sizeof_card);
2141 if (!wiphy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 return NULL;
David Kilroyea60a6a2009-06-18 23:21:26 +01002143
David Kilroyea60a6a2009-06-18 23:21:26 +01002144 priv = wiphy_priv(wiphy);
David Kilroy53819562009-06-18 23:21:28 +01002145 priv->dev = device;
David Kilroyea60a6a2009-06-18 23:21:26 +01002146
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 if (sizeof_card)
Christoph Hellwig84d8a2f2005-05-14 17:30:22 +02002148 priv->card = (void *)((unsigned long)priv
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 + sizeof(struct orinoco_private));
2150 else
2151 priv->card = NULL;
2152
David Kilroyea60a6a2009-06-18 23:21:26 +01002153 orinoco_wiphy_init(wiphy);
2154
Pavel Roskin343c6862005-09-09 18:43:02 -04002155#ifdef WIRELESS_SPY
2156 priv->wireless_data.spy_data = &priv->spy_data;
Pavel Roskin343c6862005-09-09 18:43:02 -04002157#endif
David Kilroy23edcc42008-08-21 23:28:05 +01002158
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 /* Set up default callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 priv->hard_reset = hard_reset;
David Kilroy3994d502008-08-21 23:27:54 +01002161 priv->stop_fw = stop_fw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
2163 spin_lock_init(&priv->lock);
2164 priv->open = 0;
2165 priv->hw_unavailable = 1; /* orinoco_init() must clear this
2166 * before anything else touches the
2167 * hardware */
David Howellsc4028952006-11-22 14:57:56 +00002168 INIT_WORK(&priv->reset_work, orinoco_reset);
2169 INIT_WORK(&priv->join_work, orinoco_join_ap);
2170 INIT_WORK(&priv->wevent_work, orinoco_send_wevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
David Kilroy31afcef2008-08-21 23:28:04 +01002172 INIT_LIST_HEAD(&priv->rx_list);
2173 tasklet_init(&priv->rx_tasklet, orinoco_rx_isr_tasklet,
David Kilroy53819562009-06-18 23:21:28 +01002174 (unsigned long) priv);
David Kilroy31afcef2008-08-21 23:28:04 +01002175
David Kilroyc63cdbe2009-06-18 23:21:33 +01002176 spin_lock_init(&priv->scan_lock);
2177 INIT_LIST_HEAD(&priv->scan_list);
2178 INIT_WORK(&priv->process_scan, orinoco_process_scan_results);
2179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 priv->last_linkstatus = 0xffff;
2181
Andrey Borzenkov2bfc5cb2009-02-28 23:09:09 +03002182#if defined(CONFIG_HERMES_CACHE_FW_ON_INIT) || defined(CONFIG_PM_SLEEP)
David Kilroy2cea7b22008-11-22 10:37:26 +00002183 priv->cached_pri_fw = NULL;
Andrey Borzenkov4fb30782008-10-19 12:06:11 +04002184 priv->cached_fw = NULL;
Andrey Borzenkov2bfc5cb2009-02-28 23:09:09 +03002185#endif
Andrey Borzenkov4fb30782008-10-19 12:06:11 +04002186
David Kilroy39d1ffe2008-11-22 10:37:28 +00002187 /* Register PM notifiers */
David S. Millerf11c1792009-02-25 00:02:05 -08002188 orinoco_register_pm_notifier(priv);
David Kilroy39d1ffe2008-11-22 10:37:28 +00002189
David Kilroya2608362009-06-18 23:21:23 +01002190 return priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191}
David Kilroy21312662009-02-04 23:05:47 +00002192EXPORT_SYMBOL(alloc_orinocodev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
David Kilroy53819562009-06-18 23:21:28 +01002194/* We can only support a single interface. We provide a separate
2195 * function to set it up to distinguish between hardware
2196 * initialisation and interface setup.
2197 *
2198 * The base_addr and irq parameters are passed on to netdev for use
2199 * with SIOCGIFMAP.
2200 */
2201int orinoco_if_add(struct orinoco_private *priv,
2202 unsigned long base_addr,
David Kilroy593ef092010-05-01 14:05:39 +01002203 unsigned int irq,
2204 const struct net_device_ops *ops)
David Kilroy53819562009-06-18 23:21:28 +01002205{
2206 struct wiphy *wiphy = priv_to_wiphy(priv);
2207 struct wireless_dev *wdev;
2208 struct net_device *dev;
2209 int ret;
2210
2211 dev = alloc_etherdev(sizeof(struct wireless_dev));
2212
2213 if (!dev)
2214 return -ENOMEM;
2215
2216 /* Initialise wireless_dev */
2217 wdev = netdev_priv(dev);
2218 wdev->wiphy = wiphy;
2219 wdev->iftype = NL80211_IFTYPE_STATION;
2220
2221 /* Setup / override net_device fields */
2222 dev->ieee80211_ptr = wdev;
David Kilroy53819562009-06-18 23:21:28 +01002223 dev->watchdog_timeo = HZ; /* 1 second timeout */
David Kilroy53819562009-06-18 23:21:28 +01002224 dev->wireless_handlers = &orinoco_handler_def;
2225#ifdef WIRELESS_SPY
2226 dev->wireless_data = &priv->wireless_data;
2227#endif
David Kilroy593ef092010-05-01 14:05:39 +01002228 /* Default to standard ops if not set */
2229 if (ops)
2230 dev->netdev_ops = ops;
2231 else
2232 dev->netdev_ops = &orinoco_netdev_ops;
2233
David Kilroy53819562009-06-18 23:21:28 +01002234 /* we use the default eth_mac_addr for setting the MAC addr */
2235
2236 /* Reserve space in skb for the SNAP header */
2237 dev->hard_header_len += ENCAPS_OVERHEAD;
2238
2239 netif_carrier_off(dev);
2240
2241 memcpy(dev->dev_addr, wiphy->perm_addr, ETH_ALEN);
John W. Linvillecf32ed92009-10-06 16:47:23 -04002242 memcpy(dev->perm_addr, wiphy->perm_addr, ETH_ALEN);
David Kilroy53819562009-06-18 23:21:28 +01002243
2244 dev->base_addr = base_addr;
2245 dev->irq = irq;
2246
2247 SET_NETDEV_DEV(dev, priv->dev);
2248 ret = register_netdev(dev);
2249 if (ret)
2250 goto fail;
2251
2252 priv->ndev = dev;
2253
2254 /* Report what we've done */
2255 dev_dbg(priv->dev, "Registerred interface %s.\n", dev->name);
2256
2257 return 0;
2258
2259 fail:
2260 free_netdev(dev);
2261 return ret;
2262}
2263EXPORT_SYMBOL(orinoco_if_add);
2264
2265void orinoco_if_del(struct orinoco_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266{
David Kilroya2608362009-06-18 23:21:23 +01002267 struct net_device *dev = priv->ndev;
David Kilroy53819562009-06-18 23:21:28 +01002268
2269 unregister_netdev(dev);
2270 free_netdev(dev);
2271}
2272EXPORT_SYMBOL(orinoco_if_del);
2273
2274void free_orinocodev(struct orinoco_private *priv)
2275{
David Kilroyea60a6a2009-06-18 23:21:26 +01002276 struct wiphy *wiphy = priv_to_wiphy(priv);
David Kilroy20953ad2009-01-07 00:23:55 +00002277 struct orinoco_rx_data *rx_data, *temp;
David Kilroyc63cdbe2009-06-18 23:21:33 +01002278 struct orinoco_scan_data *sd, *sdtemp;
Christoph Hellwig95dd91f2005-06-19 01:27:56 +02002279
David Kilroyea60a6a2009-06-18 23:21:26 +01002280 wiphy_unregister(wiphy);
2281
David Kilroy20953ad2009-01-07 00:23:55 +00002282 /* If the tasklet is scheduled when we call tasklet_kill it
2283 * will run one final time. However the tasklet will only
2284 * drain priv->rx_list if the hw is still available. */
David Kilroy31afcef2008-08-21 23:28:04 +01002285 tasklet_kill(&priv->rx_tasklet);
David Kilroy74734312008-11-22 10:37:25 +00002286
David Kilroy20953ad2009-01-07 00:23:55 +00002287 /* Explicitly drain priv->rx_list */
2288 list_for_each_entry_safe(rx_data, temp, &priv->rx_list, list) {
2289 list_del(&rx_data->list);
2290
2291 dev_kfree_skb(rx_data->skb);
2292 kfree(rx_data->desc);
2293 kfree(rx_data);
2294 }
2295
David Kilroyc63cdbe2009-06-18 23:21:33 +01002296 cancel_work_sync(&priv->process_scan);
2297 /* Explicitly drain priv->scan_list */
2298 list_for_each_entry_safe(sd, sdtemp, &priv->scan_list, list) {
2299 list_del(&sd->list);
2300
2301 if ((sd->len > 0) && sd->buf)
2302 kfree(sd->buf);
2303 kfree(sd);
2304 }
2305
David S. Millerf11c1792009-02-25 00:02:05 -08002306 orinoco_unregister_pm_notifier(priv);
David Kilroy74734312008-11-22 10:37:25 +00002307 orinoco_uncache_fw(priv);
2308
David Kilroyd03032a2008-08-21 23:28:02 +01002309 priv->wpa_ie_len = 0;
2310 kfree(priv->wpa_ie);
David Kilroy23edcc42008-08-21 23:28:05 +01002311 orinoco_mic_free(priv);
David Kilroyea60a6a2009-06-18 23:21:26 +01002312 wiphy_free(wiphy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313}
David Kilroy21312662009-02-04 23:05:47 +00002314EXPORT_SYMBOL(free_orinocodev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
David Kilroy6415f7d2009-06-18 23:21:30 +01002316int orinoco_up(struct orinoco_private *priv)
2317{
2318 struct net_device *dev = priv->ndev;
2319 unsigned long flags;
2320 int err;
2321
David Kilroybcad6e82010-05-01 14:05:40 +01002322 priv->hw.ops->lock_irqsave(&priv->lock, &flags);
David Kilroy6415f7d2009-06-18 23:21:30 +01002323
2324 err = orinoco_reinit_firmware(priv);
2325 if (err) {
2326 printk(KERN_ERR "%s: Error %d re-initializing firmware\n",
2327 dev->name, err);
2328 goto exit;
2329 }
2330
2331 netif_device_attach(dev);
2332 priv->hw_unavailable--;
2333
2334 if (priv->open && !priv->hw_unavailable) {
2335 err = __orinoco_up(priv);
2336 if (err)
2337 printk(KERN_ERR "%s: Error %d restarting card\n",
2338 dev->name, err);
2339 }
2340
2341exit:
David Kilroybcad6e82010-05-01 14:05:40 +01002342 priv->hw.ops->unlock_irqrestore(&priv->lock, &flags);
David Kilroy6415f7d2009-06-18 23:21:30 +01002343
2344 return 0;
2345}
2346EXPORT_SYMBOL(orinoco_up);
2347
2348void orinoco_down(struct orinoco_private *priv)
2349{
2350 struct net_device *dev = priv->ndev;
2351 unsigned long flags;
2352 int err;
2353
David Kilroybcad6e82010-05-01 14:05:40 +01002354 priv->hw.ops->lock_irqsave(&priv->lock, &flags);
David Kilroy6415f7d2009-06-18 23:21:30 +01002355 err = __orinoco_down(priv);
2356 if (err)
2357 printk(KERN_WARNING "%s: Error %d downing interface\n",
2358 dev->name, err);
2359
2360 netif_device_detach(dev);
2361 priv->hw_unavailable++;
David Kilroybcad6e82010-05-01 14:05:40 +01002362 priv->hw.ops->unlock_irqrestore(&priv->lock, &flags);
David Kilroy6415f7d2009-06-18 23:21:30 +01002363}
2364EXPORT_SYMBOL(orinoco_down);
2365
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366/********************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367/* Module initialization */
2368/********************************************************************/
2369
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370/* Can't be declared "const" or the whole __initdata section will
2371 * become const */
2372static char version[] __initdata = DRIVER_NAME " " DRIVER_VERSION
2373 " (David Gibson <hermes@gibson.dropbear.id.au>, "
2374 "Pavel Roskin <proski@gnu.org>, et al)";
2375
2376static int __init init_orinoco(void)
2377{
2378 printk(KERN_DEBUG "%s\n", version);
2379 return 0;
2380}
2381
2382static void __exit exit_orinoco(void)
2383{
2384}
2385
2386module_init(init_orinoco);
2387module_exit(exit_orinoco);