blob: 2ee034f70d1c61a1cfd0cbb799f02485ce654bdc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/****************************************************************
2 *
3 * kaweth.c - driver for KL5KUSB101 based USB->Ethernet
4 *
5 * (c) 2000 Interlan Communications
6 * (c) 2000 Stephane Alnet
7 * (C) 2001 Brad Hards
8 * (C) 2002 Oliver Neukum
9 *
10 * Original author: The Zapman <zapman@interlan.net>
11 * Inspired by, and much credit goes to Michael Rothwell
12 * <rothwell@interlan.net> for the test equipment, help, and patience
13 * Based off of (and with thanks to) Petko Manolov's pegaus.c driver.
14 * Also many thanks to Joel Silverman and Ed Surprenant at Kawasaki
15 * for providing the firmware and driver resources.
16 *
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License as
19 * published by the Free Software Foundation; either version 2, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software Foundation,
29 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
30 *
31 ****************************************************************/
32
33/* TODO:
34 * Fix in_interrupt() problem
35 * Develop test procedures for USB net interfaces
36 * Run test procedures
37 * Fix bugs from previous two steps
38 * Snoop other OSs for any tricks we're not doing
39 * SMP locking
40 * Reduce arbitrary timeouts
41 * Smart multicast support
42 * Temporary MAC change support
43 * Tunable SOFs parameter - ioctl()?
44 * Ethernet stats collection
45 * Code formatting improvements
46 */
47
48#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/slab.h>
50#include <linux/string.h>
51#include <linux/init.h>
52#include <linux/delay.h>
53#include <linux/netdevice.h>
54#include <linux/etherdevice.h>
55#include <linux/usb.h>
56#include <linux/types.h>
57#include <linux/ethtool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/dma-mapping.h>
59#include <linux/wait.h>
David Woodhouse79682492008-05-29 17:17:17 +030060#include <linux/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <asm/byteorder.h>
63
64#undef DEBUG
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#define KAWETH_MTU 1514
67#define KAWETH_BUF_SIZE 1664
68#define KAWETH_TX_TIMEOUT (5 * HZ)
69#define KAWETH_SCRATCH_SIZE 32
70#define KAWETH_FIRMWARE_BUF_SIZE 4096
Russ Dill2b2b2e32008-01-07 21:48:12 -080071#define KAWETH_CONTROL_TIMEOUT (30000)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73#define KAWETH_STATUS_BROKEN 0x0000001
74#define KAWETH_STATUS_CLOSING 0x0000002
Oliver Neukum1a2ea1d2006-10-03 10:30:52 +020075#define KAWETH_STATUS_SUSPENDING 0x0000004
76
77#define KAWETH_STATUS_BLOCKED (KAWETH_STATUS_CLOSING | KAWETH_STATUS_SUSPENDING)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79#define KAWETH_PACKET_FILTER_PROMISCUOUS 0x01
80#define KAWETH_PACKET_FILTER_ALL_MULTICAST 0x02
81#define KAWETH_PACKET_FILTER_DIRECTED 0x04
82#define KAWETH_PACKET_FILTER_BROADCAST 0x08
83#define KAWETH_PACKET_FILTER_MULTICAST 0x10
84
85/* Table 7 */
86#define KAWETH_COMMAND_GET_ETHERNET_DESC 0x00
87#define KAWETH_COMMAND_MULTICAST_FILTERS 0x01
88#define KAWETH_COMMAND_SET_PACKET_FILTER 0x02
89#define KAWETH_COMMAND_STATISTICS 0x03
90#define KAWETH_COMMAND_SET_TEMP_MAC 0x06
91#define KAWETH_COMMAND_GET_TEMP_MAC 0x07
92#define KAWETH_COMMAND_SET_URB_SIZE 0x08
93#define KAWETH_COMMAND_SET_SOFS_WAIT 0x09
94#define KAWETH_COMMAND_SCAN 0xFF
95
96#define KAWETH_SOFS_TO_WAIT 0x05
97
98#define INTBUFFERSIZE 4
99
100#define STATE_OFFSET 0
101#define STATE_MASK 0x40
102#define STATE_SHIFT 5
103
Oliver Neukum1a2ea1d2006-10-03 10:30:52 +0200104#define IS_BLOCKED(s) (s & KAWETH_STATUS_BLOCKED)
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107MODULE_AUTHOR("Michael Zappe <zapman@interlan.net>, Stephane Alnet <stephane@u-picardie.fr>, Brad Hards <bhards@bigpond.net.au> and Oliver Neukum <oliver@neukum.org>");
108MODULE_DESCRIPTION("KL5USB101 USB Ethernet driver");
109MODULE_LICENSE("GPL");
David Woodhouse79682492008-05-29 17:17:17 +0300110MODULE_FIRMWARE("kaweth/new_code.bin");
111MODULE_FIRMWARE("kaweth/new_code_fix.bin");
112MODULE_FIRMWARE("kaweth/trigger_code.bin");
113MODULE_FIRMWARE("kaweth/trigger_code_fix.bin");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115static const char driver_name[] = "kaweth";
116
117static int kaweth_probe(
118 struct usb_interface *intf,
119 const struct usb_device_id *id /* from id_table */
120 );
121static void kaweth_disconnect(struct usb_interface *intf);
122static int kaweth_internal_control_msg(struct usb_device *usb_dev,
123 unsigned int pipe,
124 struct usb_ctrlrequest *cmd, void *data,
125 int len, int timeout);
Oliver Neukum1a2ea1d2006-10-03 10:30:52 +0200126static int kaweth_suspend(struct usb_interface *intf, pm_message_t message);
127static int kaweth_resume(struct usb_interface *intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129/****************************************************************
130 * usb_device_id
131 ****************************************************************/
132static struct usb_device_id usb_klsi_table[] = {
133 { USB_DEVICE(0x03e8, 0x0008) }, /* AOX Endpoints USB Ethernet */
134 { USB_DEVICE(0x04bb, 0x0901) }, /* I-O DATA USB-ET/T */
135 { USB_DEVICE(0x0506, 0x03e8) }, /* 3Com 3C19250 */
136 { USB_DEVICE(0x0506, 0x11f8) }, /* 3Com 3C460 */
137 { USB_DEVICE(0x0557, 0x2002) }, /* ATEN USB Ethernet */
138 { USB_DEVICE(0x0557, 0x4000) }, /* D-Link DSB-650C */
139 { USB_DEVICE(0x0565, 0x0002) }, /* Peracom Enet */
140 { USB_DEVICE(0x0565, 0x0003) }, /* Optus@Home UEP1045A */
141 { USB_DEVICE(0x0565, 0x0005) }, /* Peracom Enet2 */
142 { USB_DEVICE(0x05e9, 0x0008) }, /* KLSI KL5KUSB101B */
143 { USB_DEVICE(0x05e9, 0x0009) }, /* KLSI KL5KUSB101B (Board change) */
144 { USB_DEVICE(0x066b, 0x2202) }, /* Linksys USB10T */
145 { USB_DEVICE(0x06e1, 0x0008) }, /* ADS USB-10BT */
146 { USB_DEVICE(0x06e1, 0x0009) }, /* ADS USB-10BT */
147 { USB_DEVICE(0x0707, 0x0100) }, /* SMC 2202USB */
148 { USB_DEVICE(0x07aa, 0x0001) }, /* Correga K.K. */
149 { USB_DEVICE(0x07b8, 0x4000) }, /* D-Link DU-E10 */
150 { USB_DEVICE(0x0846, 0x1001) }, /* NetGear EA-101 */
151 { USB_DEVICE(0x0846, 0x1002) }, /* NetGear EA-101 */
152 { USB_DEVICE(0x085a, 0x0008) }, /* PortGear Ethernet Adapter */
153 { USB_DEVICE(0x085a, 0x0009) }, /* PortGear Ethernet Adapter */
154 { USB_DEVICE(0x087d, 0x5704) }, /* Jaton USB Ethernet Device Adapter */
155 { USB_DEVICE(0x0951, 0x0008) }, /* Kingston Technology USB Ethernet Adapter */
156 { USB_DEVICE(0x095a, 0x3003) }, /* Portsmith Express Ethernet Adapter */
157 { USB_DEVICE(0x10bd, 0x1427) }, /* ASANTE USB To Ethernet Adapter */
158 { USB_DEVICE(0x1342, 0x0204) }, /* Mobility USB-Ethernet Adapter */
159 { USB_DEVICE(0x13d2, 0x0400) }, /* Shark Pocket Adapter */
160 { USB_DEVICE(0x1485, 0x0001) }, /* Silicom U2E */
161 { USB_DEVICE(0x1485, 0x0002) }, /* Psion Dacom Gold Port Ethernet */
162 { USB_DEVICE(0x1645, 0x0005) }, /* Entrega E45 */
163 { USB_DEVICE(0x1645, 0x0008) }, /* Entrega USB Ethernet Adapter */
164 { USB_DEVICE(0x1645, 0x8005) }, /* PortGear Ethernet Adapter */
Oliver Neukum486ba2a2006-09-28 22:21:19 +0200165 { USB_DEVICE(0x1668, 0x0323) }, /* Actiontec USB Ethernet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 { USB_DEVICE(0x2001, 0x4000) }, /* D-link DSB-650C */
167 {} /* Null terminator */
168};
169
170MODULE_DEVICE_TABLE (usb, usb_klsi_table);
171
172/****************************************************************
173 * kaweth_driver
174 ****************************************************************/
175static struct usb_driver kaweth_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 .name = driver_name,
177 .probe = kaweth_probe,
178 .disconnect = kaweth_disconnect,
Oliver Neukum1a2ea1d2006-10-03 10:30:52 +0200179 .suspend = kaweth_suspend,
180 .resume = kaweth_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 .id_table = usb_klsi_table,
Oliver Neukumb98b98f2007-01-16 09:47:12 +0100182 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183};
184
185typedef __u8 eth_addr_t[6];
186
187/****************************************************************
188 * usb_eth_dev
189 ****************************************************************/
190struct usb_eth_dev {
191 char *name;
192 __u16 vendor;
193 __u16 device;
194 void *pdata;
195};
196
197/****************************************************************
198 * kaweth_ethernet_configuration
199 * Refer Table 8
200 ****************************************************************/
201struct kaweth_ethernet_configuration
202{
203 __u8 size;
204 __u8 reserved1;
205 __u8 reserved2;
206 eth_addr_t hw_addr;
207 __u32 statistics_mask;
208 __le16 segment_size;
209 __u16 max_multicast_filters;
210 __u8 reserved3;
211} __attribute__ ((packed));
212
213/****************************************************************
214 * kaweth_device
215 ****************************************************************/
216struct kaweth_device
217{
218 spinlock_t device_lock;
219
220 __u32 status;
221 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 int suspend_lowmem_rx;
223 int suspend_lowmem_ctrl;
224 int linkstate;
Oliver Neukum1a2ea1d2006-10-03 10:30:52 +0200225 int opened;
David Howellsc4028952006-11-22 14:57:56 +0000226 struct delayed_work lowmem_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 struct usb_device *dev;
Oliver Neukumb98b98f2007-01-16 09:47:12 +0100229 struct usb_interface *intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 struct net_device *net;
231 wait_queue_head_t term_wait;
232
233 struct urb *rx_urb;
234 struct urb *tx_urb;
235 struct urb *irq_urb;
236
237 dma_addr_t intbufferhandle;
238 __u8 *intbuffer;
239 dma_addr_t rxbufferhandle;
240 __u8 *rx_buf;
241
242
243 struct sk_buff *tx_skb;
244
245 __u8 *firmware_buf;
246 __u8 scratch[KAWETH_SCRATCH_SIZE];
247 __u16 packet_filter_bitmap;
248
249 struct kaweth_ethernet_configuration configuration;
250
251 struct net_device_stats stats;
252};
253
254
255/****************************************************************
256 * kaweth_control
257 ****************************************************************/
258static int kaweth_control(struct kaweth_device *kaweth,
259 unsigned int pipe,
260 __u8 request,
261 __u8 requesttype,
262 __u16 value,
263 __u16 index,
264 void *data,
265 __u16 size,
266 int timeout)
267{
268 struct usb_ctrlrequest *dr;
269
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200270 dbg("kaweth_control()");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 if(in_interrupt()) {
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200273 dbg("in_interrupt()");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 return -EBUSY;
275 }
276
277 dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_ATOMIC);
278
279 if (!dr) {
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200280 dbg("kmalloc() failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return -ENOMEM;
282 }
283
284 dr->bRequestType= requesttype;
285 dr->bRequest = request;
286 dr->wValue = cpu_to_le16p(&value);
287 dr->wIndex = cpu_to_le16p(&index);
288 dr->wLength = cpu_to_le16p(&size);
289
290 return kaweth_internal_control_msg(kaweth->dev,
291 pipe,
292 dr,
293 data,
294 size,
295 timeout);
296}
297
298/****************************************************************
299 * kaweth_read_configuration
300 ****************************************************************/
301static int kaweth_read_configuration(struct kaweth_device *kaweth)
302{
303 int retval;
304
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200305 dbg("Reading kaweth configuration");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 retval = kaweth_control(kaweth,
308 usb_rcvctrlpipe(kaweth->dev, 0),
309 KAWETH_COMMAND_GET_ETHERNET_DESC,
310 USB_TYPE_VENDOR | USB_DIR_IN | USB_RECIP_DEVICE,
311 0,
312 0,
313 (void *)&kaweth->configuration,
314 sizeof(kaweth->configuration),
315 KAWETH_CONTROL_TIMEOUT);
316
317 return retval;
318}
319
320/****************************************************************
321 * kaweth_set_urb_size
322 ****************************************************************/
323static int kaweth_set_urb_size(struct kaweth_device *kaweth, __u16 urb_size)
324{
325 int retval;
326
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200327 dbg("Setting URB size to %d", (unsigned)urb_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 retval = kaweth_control(kaweth,
330 usb_sndctrlpipe(kaweth->dev, 0),
331 KAWETH_COMMAND_SET_URB_SIZE,
332 USB_TYPE_VENDOR | USB_DIR_OUT | USB_RECIP_DEVICE,
333 urb_size,
334 0,
335 (void *)&kaweth->scratch,
336 0,
337 KAWETH_CONTROL_TIMEOUT);
338
339 return retval;
340}
341
342/****************************************************************
343 * kaweth_set_sofs_wait
344 ****************************************************************/
345static int kaweth_set_sofs_wait(struct kaweth_device *kaweth, __u16 sofs_wait)
346{
347 int retval;
348
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200349 dbg("Set SOFS wait to %d", (unsigned)sofs_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 retval = kaweth_control(kaweth,
352 usb_sndctrlpipe(kaweth->dev, 0),
353 KAWETH_COMMAND_SET_SOFS_WAIT,
354 USB_TYPE_VENDOR | USB_DIR_OUT | USB_RECIP_DEVICE,
355 sofs_wait,
356 0,
357 (void *)&kaweth->scratch,
358 0,
359 KAWETH_CONTROL_TIMEOUT);
360
361 return retval;
362}
363
364/****************************************************************
365 * kaweth_set_receive_filter
366 ****************************************************************/
367static int kaweth_set_receive_filter(struct kaweth_device *kaweth,
368 __u16 receive_filter)
369{
370 int retval;
371
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200372 dbg("Set receive filter to %d", (unsigned)receive_filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 retval = kaweth_control(kaweth,
375 usb_sndctrlpipe(kaweth->dev, 0),
376 KAWETH_COMMAND_SET_PACKET_FILTER,
377 USB_TYPE_VENDOR | USB_DIR_OUT | USB_RECIP_DEVICE,
378 receive_filter,
379 0,
380 (void *)&kaweth->scratch,
381 0,
382 KAWETH_CONTROL_TIMEOUT);
383
384 return retval;
385}
386
387/****************************************************************
388 * kaweth_download_firmware
389 ****************************************************************/
390static int kaweth_download_firmware(struct kaweth_device *kaweth,
David Woodhouse79682492008-05-29 17:17:17 +0300391 const char *fwname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 __u8 interrupt,
393 __u8 type)
394{
David Woodhouse79682492008-05-29 17:17:17 +0300395 const struct firmware *fw;
396 int data_len;
397 int ret;
398
399 ret = request_firmware(&fw, fwname, &kaweth->dev->dev);
400 if (ret) {
401 err("Firmware request failed\n");
402 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
404
David Woodhouse79682492008-05-29 17:17:17 +0300405 if (fw->size > KAWETH_FIRMWARE_BUF_SIZE) {
406 err("Firmware too big: %zu", fw->size);
407 return -ENOSPC;
408 }
409 data_len = fw->size;
410 memcpy(kaweth->firmware_buf, fw->data, fw->size);
411
412 release_firmware(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 kaweth->firmware_buf[2] = (data_len & 0xFF) - 7;
415 kaweth->firmware_buf[3] = data_len >> 8;
416 kaweth->firmware_buf[4] = type;
417 kaweth->firmware_buf[5] = interrupt;
418
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200419 dbg("High: %i, Low:%i", kaweth->firmware_buf[3],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 kaweth->firmware_buf[2]);
421
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200422 dbg("Downloading firmware at %p to kaweth device at %p",
David Woodhouse79682492008-05-29 17:17:17 +0300423 fw->data, kaweth);
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200424 dbg("Firmware length: %d", data_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 return kaweth_control(kaweth,
427 usb_sndctrlpipe(kaweth->dev, 0),
428 KAWETH_COMMAND_SCAN,
429 USB_TYPE_VENDOR | USB_DIR_OUT | USB_RECIP_DEVICE,
430 0,
431 0,
432 (void *)kaweth->firmware_buf,
433 data_len,
434 KAWETH_CONTROL_TIMEOUT);
435}
436
437/****************************************************************
438 * kaweth_trigger_firmware
439 ****************************************************************/
440static int kaweth_trigger_firmware(struct kaweth_device *kaweth,
441 __u8 interrupt)
442{
443 kaweth->firmware_buf[0] = 0xB6;
444 kaweth->firmware_buf[1] = 0xC3;
445 kaweth->firmware_buf[2] = 0x01;
446 kaweth->firmware_buf[3] = 0x00;
447 kaweth->firmware_buf[4] = 0x06;
448 kaweth->firmware_buf[5] = interrupt;
449 kaweth->firmware_buf[6] = 0x00;
450 kaweth->firmware_buf[7] = 0x00;
451
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200452 dbg("Triggering firmware");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 return kaweth_control(kaweth,
455 usb_sndctrlpipe(kaweth->dev, 0),
456 KAWETH_COMMAND_SCAN,
457 USB_TYPE_VENDOR | USB_DIR_OUT | USB_RECIP_DEVICE,
458 0,
459 0,
460 (void *)kaweth->firmware_buf,
461 8,
462 KAWETH_CONTROL_TIMEOUT);
463}
464
465/****************************************************************
466 * kaweth_reset
467 ****************************************************************/
468static int kaweth_reset(struct kaweth_device *kaweth)
469{
470 int result;
471
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200472 dbg("kaweth_reset(%p)", kaweth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 result = kaweth_control(kaweth,
474 usb_sndctrlpipe(kaweth->dev, 0),
475 USB_REQ_SET_CONFIGURATION,
476 0,
477 kaweth->dev->config[0].desc.bConfigurationValue,
478 0,
479 NULL,
480 0,
481 KAWETH_CONTROL_TIMEOUT);
482
Guillaume GOURAT /f2d45cd2005-10-21 14:01:35 +0200483 mdelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200485 dbg("kaweth_reset() returns %d.",result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 return result;
488}
489
David Howells7d12e782006-10-05 14:55:46 +0100490static void kaweth_usb_receive(struct urb *);
Al Viro55016f12005-10-21 03:21:58 -0400491static int kaweth_resubmit_rx_urb(struct kaweth_device *, gfp_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493/****************************************************************
494 int_callback
495*****************************************************************/
496
Al Viro55016f12005-10-21 03:21:58 -0400497static void kaweth_resubmit_int_urb(struct kaweth_device *kaweth, gfp_t mf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
499 int status;
500
501 status = usb_submit_urb (kaweth->irq_urb, mf);
502 if (unlikely(status == -ENOMEM)) {
503 kaweth->suspend_lowmem_ctrl = 1;
504 schedule_delayed_work(&kaweth->lowmem_work, HZ/4);
505 } else {
506 kaweth->suspend_lowmem_ctrl = 0;
507 }
508
509 if (status)
510 err ("can't resubmit intr, %s-%s, status %d",
511 kaweth->dev->bus->bus_name,
512 kaweth->dev->devpath, status);
513}
514
David Howells7d12e782006-10-05 14:55:46 +0100515static void int_callback(struct urb *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
517 struct kaweth_device *kaweth = u->context;
518 int act_state;
Oliver Neukumc94cb312008-12-18 23:00:59 -0800519 int status = u->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Oliver Neukumc94cb312008-12-18 23:00:59 -0800521 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 case 0: /* success */
523 break;
524 case -ECONNRESET: /* unlink */
525 case -ENOENT:
526 case -ESHUTDOWN:
527 return;
528 /* -EPIPE: should clear the halt */
529 default: /* error */
530 goto resubmit;
531 }
532
533 /* we check the link state to report changes */
534 if (kaweth->linkstate != (act_state = ( kaweth->intbuffer[STATE_OFFSET] | STATE_MASK) >> STATE_SHIFT)) {
Oliver Neukum58125f92005-06-15 22:26:38 -0700535 if (act_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 netif_carrier_on(kaweth->net);
537 else
538 netif_carrier_off(kaweth->net);
539
540 kaweth->linkstate = act_state;
541 }
542resubmit:
543 kaweth_resubmit_int_urb(kaweth, GFP_ATOMIC);
544}
545
David Howellsc4028952006-11-22 14:57:56 +0000546static void kaweth_resubmit_tl(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
David Howellsc4028952006-11-22 14:57:56 +0000548 struct kaweth_device *kaweth =
549 container_of(work, struct kaweth_device, lowmem_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Oliver Neukum1a2ea1d2006-10-03 10:30:52 +0200551 if (IS_BLOCKED(kaweth->status))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return;
553
554 if (kaweth->suspend_lowmem_rx)
555 kaweth_resubmit_rx_urb(kaweth, GFP_NOIO);
556
557 if (kaweth->suspend_lowmem_ctrl)
558 kaweth_resubmit_int_urb(kaweth, GFP_NOIO);
559}
560
561
562/****************************************************************
563 * kaweth_resubmit_rx_urb
564 ****************************************************************/
565static int kaweth_resubmit_rx_urb(struct kaweth_device *kaweth,
Al Viro55016f12005-10-21 03:21:58 -0400566 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
568 int result;
569
570 usb_fill_bulk_urb(kaweth->rx_urb,
571 kaweth->dev,
572 usb_rcvbulkpipe(kaweth->dev, 1),
573 kaweth->rx_buf,
574 KAWETH_BUF_SIZE,
575 kaweth_usb_receive,
576 kaweth);
577 kaweth->rx_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
578 kaweth->rx_urb->transfer_dma = kaweth->rxbufferhandle;
579
580 if((result = usb_submit_urb(kaweth->rx_urb, mem_flags))) {
581 if (result == -ENOMEM) {
582 kaweth->suspend_lowmem_rx = 1;
583 schedule_delayed_work(&kaweth->lowmem_work, HZ/4);
584 }
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200585 err("resubmitting rx_urb %d failed", result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 } else {
587 kaweth->suspend_lowmem_rx = 0;
588 }
589
590 return result;
591}
592
593static void kaweth_async_set_rx_mode(struct kaweth_device *kaweth);
594
595/****************************************************************
596 * kaweth_usb_receive
597 ****************************************************************/
David Howells7d12e782006-10-05 14:55:46 +0100598static void kaweth_usb_receive(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
600 struct kaweth_device *kaweth = urb->context;
601 struct net_device *net = kaweth->net;
Oliver Neukumc94cb312008-12-18 23:00:59 -0800602 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 int count = urb->actual_length;
605 int count2 = urb->transfer_buffer_length;
606
607 __u16 pkt_len = le16_to_cpup((__le16 *)kaweth->rx_buf);
608
609 struct sk_buff *skb;
610
Oliver Neukumc94cb312008-12-18 23:00:59 -0800611 if(unlikely(status == -ECONNRESET || status == -ESHUTDOWN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 /* we are killed - set a flag and wake the disconnect handler */
613 {
614 kaweth->end = 1;
615 wake_up(&kaweth->term_wait);
616 return;
617 }
618
Oliver Neukum1a2ea1d2006-10-03 10:30:52 +0200619 spin_lock(&kaweth->device_lock);
620 if (IS_BLOCKED(kaweth->status)) {
621 spin_unlock(&kaweth->device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 return;
Oliver Neukum1a2ea1d2006-10-03 10:30:52 +0200623 }
624 spin_unlock(&kaweth->device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Oliver Neukumc94cb312008-12-18 23:00:59 -0800626 if(status && status != -EREMOTEIO && count != 1) {
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200627 err("%s RX status: %d count: %d packet_len: %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 net->name,
Oliver Neukumc94cb312008-12-18 23:00:59 -0800629 status,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 count,
631 (int)pkt_len);
632 kaweth_resubmit_rx_urb(kaweth, GFP_ATOMIC);
633 return;
634 }
635
636 if(kaweth->net && (count > 2)) {
637 if(pkt_len > (count - 2)) {
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200638 err("Packet length too long for USB frame (pkt_len: %x, count: %x)",pkt_len, count);
639 err("Packet len & 2047: %x", pkt_len & 2047);
640 err("Count 2: %x", count2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 kaweth_resubmit_rx_urb(kaweth, GFP_ATOMIC);
642 return;
643 }
644
645 if(!(skb = dev_alloc_skb(pkt_len+2))) {
646 kaweth_resubmit_rx_urb(kaweth, GFP_ATOMIC);
647 return;
648 }
649
650 skb_reserve(skb, 2); /* Align IP on 16 byte boundaries */
651
David S. Miller8c7b7fa2007-07-10 22:08:12 -0700652 skb_copy_to_linear_data(skb, kaweth->rx_buf + 2, pkt_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 skb_put(skb, pkt_len);
655
656 skb->protocol = eth_type_trans(skb, net);
657
658 netif_rx(skb);
659
660 kaweth->stats.rx_packets++;
661 kaweth->stats.rx_bytes += pkt_len;
662 }
663
664 kaweth_resubmit_rx_urb(kaweth, GFP_ATOMIC);
665}
666
667/****************************************************************
668 * kaweth_open
669 ****************************************************************/
670static int kaweth_open(struct net_device *net)
671{
672 struct kaweth_device *kaweth = netdev_priv(net);
673 int res;
674
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200675 dbg("Opening network device.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Oliver Neukumb98b98f2007-01-16 09:47:12 +0100677 res = usb_autopm_get_interface(kaweth->intf);
678 if (res) {
679 err("Interface cannot be resumed.");
680 return -EIO;
681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 res = kaweth_resubmit_rx_urb(kaweth, GFP_KERNEL);
683 if (res)
Oliver Neukumb98b98f2007-01-16 09:47:12 +0100684 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 usb_fill_int_urb(
687 kaweth->irq_urb,
688 kaweth->dev,
689 usb_rcvintpipe(kaweth->dev, 3),
690 kaweth->intbuffer,
691 INTBUFFERSIZE,
692 int_callback,
693 kaweth,
694 250); /* overriding the descriptor */
695 kaweth->irq_urb->transfer_dma = kaweth->intbufferhandle;
696 kaweth->irq_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
697
698 res = usb_submit_urb(kaweth->irq_urb, GFP_KERNEL);
699 if (res) {
700 usb_kill_urb(kaweth->rx_urb);
Oliver Neukumb98b98f2007-01-16 09:47:12 +0100701 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 }
Oliver Neukum1a2ea1d2006-10-03 10:30:52 +0200703 kaweth->opened = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 netif_start_queue(net);
706
707 kaweth_async_set_rx_mode(kaweth);
708 return 0;
Oliver Neukumb98b98f2007-01-16 09:47:12 +0100709
710err_out:
711 usb_autopm_enable(kaweth->intf);
712 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713}
714
715/****************************************************************
Oliver Neukumb98b98f2007-01-16 09:47:12 +0100716 * kaweth_kill_urbs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 ****************************************************************/
Oliver Neukum1a2ea1d2006-10-03 10:30:52 +0200718static void kaweth_kill_urbs(struct kaweth_device *kaweth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 usb_kill_urb(kaweth->irq_urb);
721 usb_kill_urb(kaweth->rx_urb);
Herbert Xud23b5362005-11-17 09:47:45 -0800722 usb_kill_urb(kaweth->tx_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
David S. Miller4bb073c2008-06-12 02:22:02 -0700724 cancel_delayed_work_sync(&kaweth->lowmem_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726 /* a scheduled work may have resubmitted,
727 we hit them again */
728 usb_kill_urb(kaweth->irq_urb);
729 usb_kill_urb(kaweth->rx_urb);
Oliver Neukum1a2ea1d2006-10-03 10:30:52 +0200730}
731
732/****************************************************************
733 * kaweth_close
734 ****************************************************************/
735static int kaweth_close(struct net_device *net)
736{
737 struct kaweth_device *kaweth = netdev_priv(net);
738
739 netif_stop_queue(net);
740 kaweth->opened = 0;
741
742 kaweth->status |= KAWETH_STATUS_CLOSING;
743
744 kaweth_kill_urbs(kaweth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 kaweth->status &= ~KAWETH_STATUS_CLOSING;
747
Oliver Neukumb98b98f2007-01-16 09:47:12 +0100748 usb_autopm_enable(kaweth->intf);
749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return 0;
751}
752
753static void kaweth_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
754{
Oliver Neukumb3ebd522007-01-16 12:01:26 +0100755 struct kaweth_device *kaweth = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 strlcpy(info->driver, driver_name, sizeof(info->driver));
Oliver Neukumb3ebd522007-01-16 12:01:26 +0100758 usb_make_path(kaweth->dev, info->bus_info, sizeof (info->bus_info));
759}
760
761static u32 kaweth_get_link(struct net_device *dev)
762{
763 struct kaweth_device *kaweth = netdev_priv(dev);
764
765 return kaweth->linkstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
768static struct ethtool_ops ops = {
Oliver Neukumb3ebd522007-01-16 12:01:26 +0100769 .get_drvinfo = kaweth_get_drvinfo,
770 .get_link = kaweth_get_link
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771};
772
773/****************************************************************
774 * kaweth_usb_transmit_complete
775 ****************************************************************/
David Howells7d12e782006-10-05 14:55:46 +0100776static void kaweth_usb_transmit_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
778 struct kaweth_device *kaweth = urb->context;
779 struct sk_buff *skb = kaweth->tx_skb;
Oliver Neukumc94cb312008-12-18 23:00:59 -0800780 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Oliver Neukumc94cb312008-12-18 23:00:59 -0800782 if (unlikely(status != 0))
783 if (status != -ENOENT)
784 dbg("%s: TX status %d.", kaweth->net->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 netif_wake_queue(kaweth->net);
787 dev_kfree_skb_irq(skb);
788}
789
790/****************************************************************
791 * kaweth_start_xmit
792 ****************************************************************/
793static int kaweth_start_xmit(struct sk_buff *skb, struct net_device *net)
794{
795 struct kaweth_device *kaweth = netdev_priv(net);
796 __le16 *private_header;
797
798 int res;
799
800 spin_lock(&kaweth->device_lock);
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 kaweth_async_set_rx_mode(kaweth);
803 netif_stop_queue(net);
Oliver Neukum1a2ea1d2006-10-03 10:30:52 +0200804 if (IS_BLOCKED(kaweth->status)) {
805 goto skip;
806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 /* We now decide whether we can put our special header into the sk_buff */
809 if (skb_cloned(skb) || skb_headroom(skb) < 2) {
810 /* no such luck - we make our own */
811 struct sk_buff *copied_skb;
812 copied_skb = skb_copy_expand(skb, 2, 0, GFP_ATOMIC);
813 dev_kfree_skb_irq(skb);
814 skb = copied_skb;
815 if (!copied_skb) {
816 kaweth->stats.tx_errors++;
817 netif_start_queue(net);
818 spin_unlock(&kaweth->device_lock);
819 return 0;
820 }
821 }
822
823 private_header = (__le16 *)__skb_push(skb, 2);
824 *private_header = cpu_to_le16(skb->len-2);
825 kaweth->tx_skb = skb;
826
827 usb_fill_bulk_urb(kaweth->tx_urb,
828 kaweth->dev,
829 usb_sndbulkpipe(kaweth->dev, 2),
830 private_header,
831 skb->len,
832 kaweth_usb_transmit_complete,
833 kaweth);
834 kaweth->end = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 if((res = usb_submit_urb(kaweth->tx_urb, GFP_ATOMIC)))
837 {
Greg Kroah-Hartman4dc89942008-08-14 09:37:34 -0700838 dev_warn(&net->dev, "kaweth failed tx_urb %d\n", res);
Oliver Neukum1a2ea1d2006-10-03 10:30:52 +0200839skip:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 kaweth->stats.tx_errors++;
841
842 netif_start_queue(net);
843 dev_kfree_skb_irq(skb);
844 }
845 else
846 {
847 kaweth->stats.tx_packets++;
848 kaweth->stats.tx_bytes += skb->len;
849 net->trans_start = jiffies;
850 }
851
852 spin_unlock(&kaweth->device_lock);
853
854 return 0;
855}
856
857/****************************************************************
858 * kaweth_set_rx_mode
859 ****************************************************************/
860static void kaweth_set_rx_mode(struct net_device *net)
861{
862 struct kaweth_device *kaweth = netdev_priv(net);
863
864 __u16 packet_filter_bitmap = KAWETH_PACKET_FILTER_DIRECTED |
865 KAWETH_PACKET_FILTER_BROADCAST |
866 KAWETH_PACKET_FILTER_MULTICAST;
867
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200868 dbg("Setting Rx mode to %d", packet_filter_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 netif_stop_queue(net);
871
872 if (net->flags & IFF_PROMISC) {
873 packet_filter_bitmap |= KAWETH_PACKET_FILTER_PROMISCUOUS;
874 }
875 else if ((net->mc_count) || (net->flags & IFF_ALLMULTI)) {
876 packet_filter_bitmap |= KAWETH_PACKET_FILTER_ALL_MULTICAST;
877 }
878
879 kaweth->packet_filter_bitmap = packet_filter_bitmap;
880 netif_wake_queue(net);
881}
882
883/****************************************************************
884 * kaweth_async_set_rx_mode
885 ****************************************************************/
886static void kaweth_async_set_rx_mode(struct kaweth_device *kaweth)
887{
888 __u16 packet_filter_bitmap = kaweth->packet_filter_bitmap;
889 kaweth->packet_filter_bitmap = 0;
890 if (packet_filter_bitmap == 0)
891 return;
892
893 {
894 int result;
895 result = kaweth_control(kaweth,
896 usb_sndctrlpipe(kaweth->dev, 0),
897 KAWETH_COMMAND_SET_PACKET_FILTER,
898 USB_TYPE_VENDOR | USB_DIR_OUT | USB_RECIP_DEVICE,
899 packet_filter_bitmap,
900 0,
901 (void *)&kaweth->scratch,
902 0,
903 KAWETH_CONTROL_TIMEOUT);
904
905 if(result < 0) {
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200906 err("Failed to set Rx mode: %d", result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
908 else {
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200909 dbg("Set Rx mode to %d", packet_filter_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
911 }
912}
913
914/****************************************************************
915 * kaweth_netdev_stats
916 ****************************************************************/
917static struct net_device_stats *kaweth_netdev_stats(struct net_device *dev)
918{
919 struct kaweth_device *kaweth = netdev_priv(dev);
920 return &kaweth->stats;
921}
922
923/****************************************************************
924 * kaweth_tx_timeout
925 ****************************************************************/
926static void kaweth_tx_timeout(struct net_device *net)
927{
928 struct kaweth_device *kaweth = netdev_priv(net);
929
Greg Kroah-Hartman4dc89942008-08-14 09:37:34 -0700930 dev_warn(&net->dev, "%s: Tx timed out. Resetting.\n", net->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 kaweth->stats.tx_errors++;
932 net->trans_start = jiffies;
933
934 usb_unlink_urb(kaweth->tx_urb);
935}
936
937/****************************************************************
Oliver Neukum1a2ea1d2006-10-03 10:30:52 +0200938 * kaweth_suspend
939 ****************************************************************/
940static int kaweth_suspend(struct usb_interface *intf, pm_message_t message)
941{
942 struct kaweth_device *kaweth = usb_get_intfdata(intf);
943 unsigned long flags;
944
Oliver Neukumb98b98f2007-01-16 09:47:12 +0100945 dbg("Suspending device");
Oliver Neukum1a2ea1d2006-10-03 10:30:52 +0200946 spin_lock_irqsave(&kaweth->device_lock, flags);
947 kaweth->status |= KAWETH_STATUS_SUSPENDING;
948 spin_unlock_irqrestore(&kaweth->device_lock, flags);
949
950 kaweth_kill_urbs(kaweth);
951 return 0;
952}
953
954/****************************************************************
955 * kaweth_resume
956 ****************************************************************/
957static int kaweth_resume(struct usb_interface *intf)
958{
959 struct kaweth_device *kaweth = usb_get_intfdata(intf);
960 unsigned long flags;
961
Oliver Neukumb98b98f2007-01-16 09:47:12 +0100962 dbg("Resuming device");
Oliver Neukum1a2ea1d2006-10-03 10:30:52 +0200963 spin_lock_irqsave(&kaweth->device_lock, flags);
964 kaweth->status &= ~KAWETH_STATUS_SUSPENDING;
965 spin_unlock_irqrestore(&kaweth->device_lock, flags);
966
967 if (!kaweth->opened)
968 return 0;
969 kaweth_resubmit_rx_urb(kaweth, GFP_NOIO);
970 kaweth_resubmit_int_urb(kaweth, GFP_NOIO);
971
972 return 0;
973}
974
975/****************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 * kaweth_probe
977 ****************************************************************/
978static int kaweth_probe(
979 struct usb_interface *intf,
980 const struct usb_device_id *id /* from id_table */
981 )
982{
983 struct usb_device *dev = interface_to_usbdev(intf);
984 struct kaweth_device *kaweth;
985 struct net_device *netdev;
986 const eth_addr_t bcast_addr = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
987 int result = 0;
988
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200989 dbg("Kawasaki Device Probe (Device number:%d): 0x%4.4x:0x%4.4x:0x%4.4x",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 dev->devnum,
991 le16_to_cpu(dev->descriptor.idVendor),
992 le16_to_cpu(dev->descriptor.idProduct),
993 le16_to_cpu(dev->descriptor.bcdDevice));
994
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200995 dbg("Device at %p", dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Oliver Neukumfbe2baf2006-09-28 23:36:04 +0200997 dbg("Descriptor length: %x type: %x",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 (int)dev->descriptor.bLength,
999 (int)dev->descriptor.bDescriptorType);
1000
1001 netdev = alloc_etherdev(sizeof(*kaweth));
1002 if (!netdev)
1003 return -ENOMEM;
1004
1005 kaweth = netdev_priv(netdev);
1006 kaweth->dev = dev;
1007 kaweth->net = netdev;
1008
1009 spin_lock_init(&kaweth->device_lock);
1010 init_waitqueue_head(&kaweth->term_wait);
1011
Oliver Neukumfbe2baf2006-09-28 23:36:04 +02001012 dbg("Resetting.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 kaweth_reset(kaweth);
1015
1016 /*
1017 * If high byte of bcdDevice is nonzero, firmware is already
1018 * downloaded. Don't try to do it again, or we'll hang the device.
1019 */
1020
1021 if (le16_to_cpu(dev->descriptor.bcdDevice) >> 8) {
Greg Kroah-Hartman880c9c62008-08-18 13:21:04 -07001022 dev_info(&intf->dev, "Firmware present in device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 } else {
1024 /* Download the firmware */
Greg Kroah-Hartman880c9c62008-08-18 13:21:04 -07001025 dev_info(&intf->dev, "Downloading firmware...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 kaweth->firmware_buf = (__u8 *)__get_free_page(GFP_KERNEL);
1027 if ((result = kaweth_download_firmware(kaweth,
David Woodhouse79682492008-05-29 17:17:17 +03001028 "kaweth/new_code.bin",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 100,
1030 2)) < 0) {
Oliver Neukumfbe2baf2006-09-28 23:36:04 +02001031 err("Error downloading firmware (%d)", result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 goto err_fw;
1033 }
1034
1035 if ((result = kaweth_download_firmware(kaweth,
David Woodhouse79682492008-05-29 17:17:17 +03001036 "kaweth/new_code_fix.bin",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 100,
1038 3)) < 0) {
Oliver Neukumfbe2baf2006-09-28 23:36:04 +02001039 err("Error downloading firmware fix (%d)", result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 goto err_fw;
1041 }
1042
1043 if ((result = kaweth_download_firmware(kaweth,
David Woodhouse79682492008-05-29 17:17:17 +03001044 "kaweth/trigger_code.bin",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 126,
1046 2)) < 0) {
Oliver Neukumfbe2baf2006-09-28 23:36:04 +02001047 err("Error downloading trigger code (%d)", result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 goto err_fw;
1049
1050 }
1051
1052 if ((result = kaweth_download_firmware(kaweth,
David Woodhouse79682492008-05-29 17:17:17 +03001053 "kaweth/trigger_code_fix.bin",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 126,
1055 3)) < 0) {
Oliver Neukumfbe2baf2006-09-28 23:36:04 +02001056 err("Error downloading trigger code fix (%d)", result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 goto err_fw;
1058 }
1059
1060
1061 if ((result = kaweth_trigger_firmware(kaweth, 126)) < 0) {
Oliver Neukumfbe2baf2006-09-28 23:36:04 +02001062 err("Error triggering firmware (%d)", result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 goto err_fw;
1064 }
1065
1066 /* Device will now disappear for a moment... */
Greg Kroah-Hartman880c9c62008-08-18 13:21:04 -07001067 dev_info(&intf->dev, "Firmware loaded. I'll be back...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068err_fw:
1069 free_page((unsigned long)kaweth->firmware_buf);
1070 free_netdev(netdev);
1071 return -EIO;
1072 }
1073
1074 result = kaweth_read_configuration(kaweth);
1075
1076 if(result < 0) {
Oliver Neukumfbe2baf2006-09-28 23:36:04 +02001077 err("Error reading configuration (%d), no net device created", result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 goto err_free_netdev;
1079 }
1080
Greg Kroah-Hartman880c9c62008-08-18 13:21:04 -07001081 dev_info(&intf->dev, "Statistics collection: %x\n", kaweth->configuration.statistics_mask);
1082 dev_info(&intf->dev, "Multicast filter limit: %x\n", kaweth->configuration.max_multicast_filters & ((1 << 15) - 1));
1083 dev_info(&intf->dev, "MTU: %d\n", le16_to_cpu(kaweth->configuration.segment_size));
1084 dev_info(&intf->dev, "Read MAC address %2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 (int)kaweth->configuration.hw_addr[0],
1086 (int)kaweth->configuration.hw_addr[1],
1087 (int)kaweth->configuration.hw_addr[2],
1088 (int)kaweth->configuration.hw_addr[3],
1089 (int)kaweth->configuration.hw_addr[4],
1090 (int)kaweth->configuration.hw_addr[5]);
1091
1092 if(!memcmp(&kaweth->configuration.hw_addr,
1093 &bcast_addr,
1094 sizeof(bcast_addr))) {
Oliver Neukumfbe2baf2006-09-28 23:36:04 +02001095 err("Firmware not functioning properly, no net device created");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 goto err_free_netdev;
1097 }
1098
1099 if(kaweth_set_urb_size(kaweth, KAWETH_BUF_SIZE) < 0) {
Oliver Neukumfbe2baf2006-09-28 23:36:04 +02001100 dbg("Error setting URB size");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 goto err_free_netdev;
1102 }
1103
1104 if(kaweth_set_sofs_wait(kaweth, KAWETH_SOFS_TO_WAIT) < 0) {
Oliver Neukumfbe2baf2006-09-28 23:36:04 +02001105 err("Error setting SOFS wait");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 goto err_free_netdev;
1107 }
1108
1109 result = kaweth_set_receive_filter(kaweth,
1110 KAWETH_PACKET_FILTER_DIRECTED |
1111 KAWETH_PACKET_FILTER_BROADCAST |
1112 KAWETH_PACKET_FILTER_MULTICAST);
1113
1114 if(result < 0) {
Oliver Neukumfbe2baf2006-09-28 23:36:04 +02001115 err("Error setting receive filter");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 goto err_free_netdev;
1117 }
1118
Oliver Neukumfbe2baf2006-09-28 23:36:04 +02001119 dbg("Initializing net device.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Oliver Neukumb98b98f2007-01-16 09:47:12 +01001121 kaweth->intf = intf;
1122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 kaweth->tx_urb = usb_alloc_urb(0, GFP_KERNEL);
1124 if (!kaweth->tx_urb)
1125 goto err_free_netdev;
1126 kaweth->rx_urb = usb_alloc_urb(0, GFP_KERNEL);
1127 if (!kaweth->rx_urb)
1128 goto err_only_tx;
1129 kaweth->irq_urb = usb_alloc_urb(0, GFP_KERNEL);
1130 if (!kaweth->irq_urb)
1131 goto err_tx_and_rx;
1132
1133 kaweth->intbuffer = usb_buffer_alloc( kaweth->dev,
1134 INTBUFFERSIZE,
1135 GFP_KERNEL,
1136 &kaweth->intbufferhandle);
1137 if (!kaweth->intbuffer)
1138 goto err_tx_and_rx_and_irq;
1139 kaweth->rx_buf = usb_buffer_alloc( kaweth->dev,
1140 KAWETH_BUF_SIZE,
1141 GFP_KERNEL,
1142 &kaweth->rxbufferhandle);
1143 if (!kaweth->rx_buf)
1144 goto err_all_but_rxbuf;
1145
1146 memcpy(netdev->broadcast, &bcast_addr, sizeof(bcast_addr));
1147 memcpy(netdev->dev_addr, &kaweth->configuration.hw_addr,
1148 sizeof(kaweth->configuration.hw_addr));
1149
1150 netdev->open = kaweth_open;
1151 netdev->stop = kaweth_close;
1152
1153 netdev->watchdog_timeo = KAWETH_TX_TIMEOUT;
1154 netdev->tx_timeout = kaweth_tx_timeout;
1155
1156 netdev->hard_start_xmit = kaweth_start_xmit;
1157 netdev->set_multicast_list = kaweth_set_rx_mode;
1158 netdev->get_stats = kaweth_netdev_stats;
1159 netdev->mtu = le16_to_cpu(kaweth->configuration.segment_size);
1160 SET_ETHTOOL_OPS(netdev, &ops);
1161
1162 /* kaweth is zeroed as part of alloc_netdev */
1163
David Howellsc4028952006-11-22 14:57:56 +00001164 INIT_DELAYED_WORK(&kaweth->lowmem_work, kaweth_resubmit_tl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 usb_set_intfdata(intf, kaweth);
1167
1168#if 0
1169// dma_supported() is deeply broken on almost all architectures
1170 if (dma_supported (&intf->dev, 0xffffffffffffffffULL))
1171 kaweth->net->features |= NETIF_F_HIGHDMA;
1172#endif
1173
1174 SET_NETDEV_DEV(netdev, &intf->dev);
1175 if (register_netdev(netdev) != 0) {
Oliver Neukumfbe2baf2006-09-28 23:36:04 +02001176 err("Error registering netdev.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 goto err_intfdata;
1178 }
1179
Greg Kroah-Hartman880c9c62008-08-18 13:21:04 -07001180 dev_info(&intf->dev, "kaweth interface created at %s\n",
1181 kaweth->net->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Oliver Neukumfbe2baf2006-09-28 23:36:04 +02001183 dbg("Kaweth probe returning.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 return 0;
1186
1187err_intfdata:
1188 usb_set_intfdata(intf, NULL);
1189 usb_buffer_free(kaweth->dev, KAWETH_BUF_SIZE, (void *)kaweth->rx_buf, kaweth->rxbufferhandle);
1190err_all_but_rxbuf:
1191 usb_buffer_free(kaweth->dev, INTBUFFERSIZE, (void *)kaweth->intbuffer, kaweth->intbufferhandle);
1192err_tx_and_rx_and_irq:
1193 usb_free_urb(kaweth->irq_urb);
1194err_tx_and_rx:
1195 usb_free_urb(kaweth->rx_urb);
1196err_only_tx:
1197 usb_free_urb(kaweth->tx_urb);
1198err_free_netdev:
1199 free_netdev(netdev);
1200
1201 return -EIO;
1202}
1203
1204/****************************************************************
1205 * kaweth_disconnect
1206 ****************************************************************/
1207static void kaweth_disconnect(struct usb_interface *intf)
1208{
1209 struct kaweth_device *kaweth = usb_get_intfdata(intf);
1210 struct net_device *netdev;
1211
Greg Kroah-Hartman880c9c62008-08-18 13:21:04 -07001212 dev_info(&intf->dev, "Unregistering\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
1214 usb_set_intfdata(intf, NULL);
1215 if (!kaweth) {
Greg Kroah-Hartman4dc89942008-08-14 09:37:34 -07001216 dev_warn(&intf->dev, "unregistering non-existant device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 return;
1218 }
1219 netdev = kaweth->net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Oliver Neukumfbe2baf2006-09-28 23:36:04 +02001221 dbg("Unregistering net device");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 unregister_netdev(netdev);
1223
1224 usb_free_urb(kaweth->rx_urb);
1225 usb_free_urb(kaweth->tx_urb);
1226 usb_free_urb(kaweth->irq_urb);
1227
1228 usb_buffer_free(kaweth->dev, KAWETH_BUF_SIZE, (void *)kaweth->rx_buf, kaweth->rxbufferhandle);
1229 usb_buffer_free(kaweth->dev, INTBUFFERSIZE, (void *)kaweth->intbuffer, kaweth->intbufferhandle);
1230
1231 free_netdev(netdev);
1232}
1233
1234
1235// FIXME this completion stuff is a modified clone of
1236// an OLD version of some stuff in usb.c ...
1237struct usb_api_data {
1238 wait_queue_head_t wqh;
1239 int done;
1240};
1241
1242/*-------------------------------------------------------------------*
1243 * completion handler for compatibility wrappers (sync control/bulk) *
1244 *-------------------------------------------------------------------*/
David Howells7d12e782006-10-05 14:55:46 +01001245static void usb_api_blocking_completion(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
1247 struct usb_api_data *awd = (struct usb_api_data *)urb->context;
1248
1249 awd->done=1;
1250 wake_up(&awd->wqh);
1251}
1252
1253/*-------------------------------------------------------------------*
1254 * COMPATIBILITY STUFF *
1255 *-------------------------------------------------------------------*/
1256
1257// Starts urb and waits for completion or timeout
1258static int usb_start_wait_urb(struct urb *urb, int timeout, int* actual_length)
1259{
1260 struct usb_api_data awd;
1261 int status;
1262
1263 init_waitqueue_head(&awd.wqh);
1264 awd.done = 0;
1265
1266 urb->context = &awd;
1267 status = usb_submit_urb(urb, GFP_NOIO);
1268 if (status) {
1269 // something went wrong
1270 usb_free_urb(urb);
1271 return status;
1272 }
1273
1274 if (!wait_event_timeout(awd.wqh, awd.done, timeout)) {
1275 // timeout
Greg Kroah-Hartman4dc89942008-08-14 09:37:34 -07001276 dev_warn(&urb->dev->dev, "usb_control/bulk_msg: timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 usb_kill_urb(urb); // remove urb safely
1278 status = -ETIMEDOUT;
1279 }
1280 else {
1281 status = urb->status;
1282 }
1283
1284 if (actual_length) {
1285 *actual_length = urb->actual_length;
1286 }
1287
1288 usb_free_urb(urb);
1289 return status;
1290}
1291
1292/*-------------------------------------------------------------------*/
1293// returns status (negative) or length (positive)
1294static int kaweth_internal_control_msg(struct usb_device *usb_dev,
1295 unsigned int pipe,
1296 struct usb_ctrlrequest *cmd, void *data,
1297 int len, int timeout)
1298{
1299 struct urb *urb;
1300 int retv;
Oliver Neukumb98b98f2007-01-16 09:47:12 +01001301 int length = 0; /* shut up GCC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 urb = usb_alloc_urb(0, GFP_NOIO);
1304 if (!urb)
1305 return -ENOMEM;
1306
1307 usb_fill_control_urb(urb, usb_dev, pipe, (unsigned char*)cmd, data,
1308 len, usb_api_blocking_completion, NULL);
1309
1310 retv = usb_start_wait_urb(urb, timeout, &length);
1311 if (retv < 0) {
1312 return retv;
1313 }
1314 else {
1315 return length;
1316 }
1317}
1318
1319
1320/****************************************************************
1321 * kaweth_init
1322 ****************************************************************/
1323static int __init kaweth_init(void)
1324{
Oliver Neukumfbe2baf2006-09-28 23:36:04 +02001325 dbg("Driver loading");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 return usb_register(&kaweth_driver);
1327}
1328
1329/****************************************************************
1330 * kaweth_exit
1331 ****************************************************************/
1332static void __exit kaweth_exit(void)
1333{
1334 usb_deregister(&kaweth_driver);
1335}
1336
1337module_init(kaweth_init);
1338module_exit(kaweth_exit);
1339
1340
1341
1342
1343
1344
1345
1346
1347