2 * Copyright (c) 1999-2005 Petko Manolov (petkan@users.sourceforge.net)
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
9 * .... Most of the time spent on reading sources & docs.
10 * v0.2.x First official release for the Linux kernel.
11 * v0.3.0 Beutified and structured, some bugs fixed.
12 * v0.3.x URBifying bulk requests and bugfixing. First relatively
13 * stable release. Still can touch device's registers only
15 * v0.4.0 Control messages remained unurbified are now URBs.
16 * Now we can touch the HW at any time.
17 * v0.4.9 Control urbs again use process context to wait. Argh...
18 * Some long standing bugs (enable_net_traffic) fixed.
19 * Also nasty trick about resubmiting control urb from
20 * interrupt context used. Please let me know how it
21 * behaves. Pegasus II support added since this version.
22 * TODO: suppressing HCD warnings spewage on disconnect.
23 * v0.4.13 Ethernet address is now set at probe(), not at open()
24 * time as this seems to break dhcpd.
25 * v0.5.0 branch to 2.5.x kernels
26 * v0.5.1 ethtool support added
27 * v0.5.5 rx socket buffers are in a pool and the their allocation
28 * is out of the interrupt routine.
31 #include <linux/sched.h>
32 #include <linux/slab.h>
33 #include <linux/init.h>
34 #include <linux/delay.h>
35 #include <linux/netdevice.h>
36 #include <linux/etherdevice.h>
37 #include <linux/ethtool.h>
38 #include <linux/mii.h>
39 #include <linux/usb.h>
40 #include <linux/module.h>
41 #include <asm/byteorder.h>
42 #include <asm/uaccess.h>
48 #define DRIVER_VERSION "v0.6.14 (2006/09/27)"
49 #define DRIVER_AUTHOR "Petko Manolov <petkan@users.sourceforge.net>"
50 #define DRIVER_DESC "Pegasus/Pegasus II USB Ethernet driver"
52 static const char driver_name
[] = "pegasus";
54 #undef PEGASUS_WRITE_EEPROM
55 #define BMSR_MEDIA (BMSR_10HALF | BMSR_10FULL | BMSR_100HALF | \
56 BMSR_100FULL | BMSR_ANEGCAPABLE)
58 static int loopback
= 0;
59 static int mii_mode
= 0;
60 static char *devid
=NULL
;
62 static struct usb_eth_dev usb_dev_id
[] = {
63 #define PEGASUS_DEV(pn, vid, pid, flags) \
64 {.name = pn, .vendor = vid, .device = pid, .private = flags},
71 static struct usb_device_id pegasus_ids
[] = {
72 #define PEGASUS_DEV(pn, vid, pid, flags) \
73 {.match_flags = USB_DEVICE_ID_MATCH_DEVICE, .idVendor = vid, .idProduct = pid},
80 MODULE_AUTHOR(DRIVER_AUTHOR
);
81 MODULE_DESCRIPTION(DRIVER_DESC
);
82 MODULE_LICENSE("GPL");
83 module_param(loopback
, bool, 0);
84 module_param(mii_mode
, bool, 0);
85 module_param(devid
, charp
, 0);
86 MODULE_PARM_DESC(loopback
, "Enable MAC loopback mode (bit 0)");
87 MODULE_PARM_DESC(mii_mode
, "Enable HomePNA mode (bit 0),default=MII mode = 0");
88 MODULE_PARM_DESC(devid
, "The format is: 'DEV_name:VendorID:DeviceID:Flags'");
90 /* use ethtool to change the level for any given device */
91 static int msg_level
= -1;
92 module_param (msg_level
, int, 0);
93 MODULE_PARM_DESC (msg_level
, "Override default message level");
95 MODULE_DEVICE_TABLE(usb
, pegasus_ids
);
96 static const struct net_device_ops pegasus_netdev_ops
;
98 static int update_eth_regs_async(pegasus_t
*);
99 /* Aargh!!! I _really_ hate such tweaks */
100 static void ctrl_callback(struct urb
*urb
)
102 pegasus_t
*pegasus
= urb
->context
;
103 int status
= urb
->status
;
110 if (pegasus
->flags
& ETH_REGS_CHANGE
) {
111 pegasus
->flags
&= ~ETH_REGS_CHANGE
;
112 pegasus
->flags
|= ETH_REGS_CHANGED
;
113 update_eth_regs_async(pegasus
);
122 if (netif_msg_drv(pegasus
) && printk_ratelimit())
123 dev_dbg(&pegasus
->intf
->dev
, "%s, status %d\n",
126 pegasus
->flags
&= ~ETH_REGS_CHANGED
;
127 wake_up(&pegasus
->ctrl_wait
);
130 static int get_registers(pegasus_t
* pegasus
, __u16 indx
, __u16 size
,
135 DECLARE_WAITQUEUE(wait
, current
);
137 buffer
= kmalloc(size
, GFP_KERNEL
);
139 if (netif_msg_drv(pegasus
))
140 dev_warn(&pegasus
->intf
->dev
, "out of memory in %s\n",
144 add_wait_queue(&pegasus
->ctrl_wait
, &wait
);
145 set_current_state(TASK_UNINTERRUPTIBLE
);
146 while (pegasus
->flags
& ETH_REGS_CHANGED
)
148 remove_wait_queue(&pegasus
->ctrl_wait
, &wait
);
149 set_current_state(TASK_RUNNING
);
151 pegasus
->dr
.bRequestType
= PEGASUS_REQT_READ
;
152 pegasus
->dr
.bRequest
= PEGASUS_REQ_GET_REGS
;
153 pegasus
->dr
.wValue
= cpu_to_le16(0);
154 pegasus
->dr
.wIndex
= cpu_to_le16(indx
);
155 pegasus
->dr
.wLength
= cpu_to_le16(size
);
156 pegasus
->ctrl_urb
->transfer_buffer_length
= size
;
158 usb_fill_control_urb(pegasus
->ctrl_urb
, pegasus
->usb
,
159 usb_rcvctrlpipe(pegasus
->usb
, 0),
160 (char *) &pegasus
->dr
,
161 buffer
, size
, ctrl_callback
, pegasus
);
163 add_wait_queue(&pegasus
->ctrl_wait
, &wait
);
164 set_current_state(TASK_UNINTERRUPTIBLE
);
166 /* using ATOMIC, we'd never wake up if we slept */
167 if ((ret
= usb_submit_urb(pegasus
->ctrl_urb
, GFP_ATOMIC
))) {
168 set_current_state(TASK_RUNNING
);
170 netif_device_detach(pegasus
->net
);
171 if (netif_msg_drv(pegasus
) && printk_ratelimit())
172 dev_err(&pegasus
->intf
->dev
, "%s, status %d\n",
179 remove_wait_queue(&pegasus
->ctrl_wait
, &wait
);
180 memcpy(data
, buffer
, size
);
186 static int set_registers(pegasus_t
* pegasus
, __u16 indx
, __u16 size
,
191 DECLARE_WAITQUEUE(wait
, current
);
193 buffer
= kmalloc(size
, GFP_KERNEL
);
195 if (netif_msg_drv(pegasus
))
196 dev_warn(&pegasus
->intf
->dev
, "out of memory in %s\n",
200 memcpy(buffer
, data
, size
);
202 add_wait_queue(&pegasus
->ctrl_wait
, &wait
);
203 set_current_state(TASK_UNINTERRUPTIBLE
);
204 while (pegasus
->flags
& ETH_REGS_CHANGED
)
206 remove_wait_queue(&pegasus
->ctrl_wait
, &wait
);
207 set_current_state(TASK_RUNNING
);
209 pegasus
->dr
.bRequestType
= PEGASUS_REQT_WRITE
;
210 pegasus
->dr
.bRequest
= PEGASUS_REQ_SET_REGS
;
211 pegasus
->dr
.wValue
= cpu_to_le16(0);
212 pegasus
->dr
.wIndex
= cpu_to_le16(indx
);
213 pegasus
->dr
.wLength
= cpu_to_le16(size
);
214 pegasus
->ctrl_urb
->transfer_buffer_length
= size
;
216 usb_fill_control_urb(pegasus
->ctrl_urb
, pegasus
->usb
,
217 usb_sndctrlpipe(pegasus
->usb
, 0),
218 (char *) &pegasus
->dr
,
219 buffer
, size
, ctrl_callback
, pegasus
);
221 add_wait_queue(&pegasus
->ctrl_wait
, &wait
);
222 set_current_state(TASK_UNINTERRUPTIBLE
);
224 if ((ret
= usb_submit_urb(pegasus
->ctrl_urb
, GFP_ATOMIC
))) {
226 netif_device_detach(pegasus
->net
);
227 if (netif_msg_drv(pegasus
))
228 dev_err(&pegasus
->intf
->dev
, "%s, status %d\n",
235 remove_wait_queue(&pegasus
->ctrl_wait
, &wait
);
241 static int set_register(pegasus_t
* pegasus
, __u16 indx
, __u8 data
)
245 DECLARE_WAITQUEUE(wait
, current
);
247 tmp
= kmalloc(1, GFP_KERNEL
);
249 if (netif_msg_drv(pegasus
))
250 dev_warn(&pegasus
->intf
->dev
, "out of memory in %s\n",
254 memcpy(tmp
, &data
, 1);
255 add_wait_queue(&pegasus
->ctrl_wait
, &wait
);
256 set_current_state(TASK_UNINTERRUPTIBLE
);
257 while (pegasus
->flags
& ETH_REGS_CHANGED
)
259 remove_wait_queue(&pegasus
->ctrl_wait
, &wait
);
260 set_current_state(TASK_RUNNING
);
262 pegasus
->dr
.bRequestType
= PEGASUS_REQT_WRITE
;
263 pegasus
->dr
.bRequest
= PEGASUS_REQ_SET_REG
;
264 pegasus
->dr
.wValue
= cpu_to_le16(data
);
265 pegasus
->dr
.wIndex
= cpu_to_le16(indx
);
266 pegasus
->dr
.wLength
= cpu_to_le16(1);
267 pegasus
->ctrl_urb
->transfer_buffer_length
= 1;
269 usb_fill_control_urb(pegasus
->ctrl_urb
, pegasus
->usb
,
270 usb_sndctrlpipe(pegasus
->usb
, 0),
271 (char *) &pegasus
->dr
,
272 tmp
, 1, ctrl_callback
, pegasus
);
274 add_wait_queue(&pegasus
->ctrl_wait
, &wait
);
275 set_current_state(TASK_UNINTERRUPTIBLE
);
277 if ((ret
= usb_submit_urb(pegasus
->ctrl_urb
, GFP_ATOMIC
))) {
279 netif_device_detach(pegasus
->net
);
280 if (netif_msg_drv(pegasus
) && printk_ratelimit())
281 dev_err(&pegasus
->intf
->dev
, "%s, status %d\n",
288 remove_wait_queue(&pegasus
->ctrl_wait
, &wait
);
294 static int update_eth_regs_async(pegasus_t
* pegasus
)
298 pegasus
->dr
.bRequestType
= PEGASUS_REQT_WRITE
;
299 pegasus
->dr
.bRequest
= PEGASUS_REQ_SET_REGS
;
300 pegasus
->dr
.wValue
= cpu_to_le16(0);
301 pegasus
->dr
.wIndex
= cpu_to_le16(EthCtrl0
);
302 pegasus
->dr
.wLength
= cpu_to_le16(3);
303 pegasus
->ctrl_urb
->transfer_buffer_length
= 3;
305 usb_fill_control_urb(pegasus
->ctrl_urb
, pegasus
->usb
,
306 usb_sndctrlpipe(pegasus
->usb
, 0),
307 (char *) &pegasus
->dr
,
308 pegasus
->eth_regs
, 3, ctrl_callback
, pegasus
);
310 if ((ret
= usb_submit_urb(pegasus
->ctrl_urb
, GFP_ATOMIC
))) {
312 netif_device_detach(pegasus
->net
);
313 if (netif_msg_drv(pegasus
))
314 dev_err(&pegasus
->intf
->dev
, "%s, status %d\n",
321 /* Returns 0 on success, error on failure */
322 static int read_mii_word(pegasus_t
* pegasus
, __u8 phy
, __u8 indx
, __u16
* regd
)
325 __u8 data
[4] = { phy
, 0, 0, indx
};
329 set_register(pegasus
, PhyCtrl
, 0);
330 set_registers(pegasus
, PhyAddr
, sizeof (data
), data
);
331 set_register(pegasus
, PhyCtrl
, (indx
| PHY_READ
));
332 for (i
= 0; i
< REG_TIMEOUT
; i
++) {
333 ret
= get_registers(pegasus
, PhyCtrl
, 1, data
);
334 if (ret
== -ESHUTDOWN
)
336 if (data
[0] & PHY_DONE
)
339 if (i
< REG_TIMEOUT
) {
340 ret
= get_registers(pegasus
, PhyData
, 2, ®di
);
341 *regd
= le16_to_cpu(regdi
);
345 if (netif_msg_drv(pegasus
))
346 dev_warn(&pegasus
->intf
->dev
, "%s failed\n", __func__
);
351 static int mdio_read(struct net_device
*dev
, int phy_id
, int loc
)
353 pegasus_t
*pegasus
= (pegasus_t
*) netdev_priv(dev
);
356 read_mii_word(pegasus
, phy_id
, loc
, &res
);
360 static int write_mii_word(pegasus_t
* pegasus
, __u8 phy
, __u8 indx
, __u16 regd
)
363 __u8 data
[4] = { phy
, 0, 0, indx
};
367 data
[2] = (u8
) (regd
>> 8);
368 set_register(pegasus
, PhyCtrl
, 0);
369 set_registers(pegasus
, PhyAddr
, sizeof(data
), data
);
370 set_register(pegasus
, PhyCtrl
, (indx
| PHY_WRITE
));
371 for (i
= 0; i
< REG_TIMEOUT
; i
++) {
372 ret
= get_registers(pegasus
, PhyCtrl
, 1, data
);
373 if (ret
== -ESHUTDOWN
)
375 if (data
[0] & PHY_DONE
)
382 if (netif_msg_drv(pegasus
))
383 dev_warn(&pegasus
->intf
->dev
, "%s failed\n", __func__
);
387 static void mdio_write(struct net_device
*dev
, int phy_id
, int loc
, int val
)
389 pegasus_t
*pegasus
= (pegasus_t
*) netdev_priv(dev
);
391 write_mii_word(pegasus
, phy_id
, loc
, val
);
394 static int read_eprom_word(pegasus_t
* pegasus
, __u8 index
, __u16
* retdata
)
401 set_register(pegasus
, EpromCtrl
, 0);
402 set_register(pegasus
, EpromOffset
, index
);
403 set_register(pegasus
, EpromCtrl
, EPROM_READ
);
405 for (i
= 0; i
< REG_TIMEOUT
; i
++) {
406 ret
= get_registers(pegasus
, EpromCtrl
, 1, &tmp
);
407 if (tmp
& EPROM_DONE
)
409 if (ret
== -ESHUTDOWN
)
412 if (i
< REG_TIMEOUT
) {
413 ret
= get_registers(pegasus
, EpromData
, 2, &retdatai
);
414 *retdata
= le16_to_cpu(retdatai
);
419 if (netif_msg_drv(pegasus
))
420 dev_warn(&pegasus
->intf
->dev
, "%s failed\n", __func__
);
424 #ifdef PEGASUS_WRITE_EEPROM
425 static inline void enable_eprom_write(pegasus_t
* pegasus
)
430 get_registers(pegasus
, EthCtrl2
, 1, &tmp
);
431 set_register(pegasus
, EthCtrl2
, tmp
| EPROM_WR_ENABLE
);
434 static inline void disable_eprom_write(pegasus_t
* pegasus
)
439 get_registers(pegasus
, EthCtrl2
, 1, &tmp
);
440 set_register(pegasus
, EpromCtrl
, 0);
441 set_register(pegasus
, EthCtrl2
, tmp
& ~EPROM_WR_ENABLE
);
444 static int write_eprom_word(pegasus_t
* pegasus
, __u8 index
, __u16 data
)
447 __u8 tmp
, d
[4] = { 0x3f, 0, 0, EPROM_WRITE
};
449 __le16 le_data
= cpu_to_le16(data
);
451 set_registers(pegasus
, EpromOffset
, 4, d
);
452 enable_eprom_write(pegasus
);
453 set_register(pegasus
, EpromOffset
, index
);
454 set_registers(pegasus
, EpromData
, 2, &le_data
);
455 set_register(pegasus
, EpromCtrl
, EPROM_WRITE
);
457 for (i
= 0; i
< REG_TIMEOUT
; i
++) {
458 ret
= get_registers(pegasus
, EpromCtrl
, 1, &tmp
);
459 if (ret
== -ESHUTDOWN
)
461 if (tmp
& EPROM_DONE
)
464 disable_eprom_write(pegasus
);
468 if (netif_msg_drv(pegasus
))
469 dev_warn(&pegasus
->intf
->dev
, "%s failed\n", __func__
);
472 #endif /* PEGASUS_WRITE_EEPROM */
474 static inline void get_node_id(pegasus_t
* pegasus
, __u8
* id
)
479 for (i
= 0; i
< 3; i
++) {
480 read_eprom_word(pegasus
, i
, &w16
);
481 ((__le16
*) id
)[i
] = cpu_to_le16(w16
);
485 static void set_ethernet_addr(pegasus_t
* pegasus
)
489 if (pegasus
->features
& PEGASUS_II
) {
490 get_registers(pegasus
, 0x10, sizeof(node_id
), node_id
);
492 get_node_id(pegasus
, node_id
);
493 set_registers(pegasus
, EthID
, sizeof (node_id
), node_id
);
495 memcpy(pegasus
->net
->dev_addr
, node_id
, sizeof (node_id
));
498 static inline int reset_mac(pegasus_t
* pegasus
)
503 set_register(pegasus
, EthCtrl1
, data
);
504 for (i
= 0; i
< REG_TIMEOUT
; i
++) {
505 get_registers(pegasus
, EthCtrl1
, 1, &data
);
509 if (mii_mode
&& (pegasus
->features
& HAS_HOME_PNA
))
510 set_register(pegasus
, Gpio1
, 0x34);
512 set_register(pegasus
, Gpio1
, 0x26);
513 set_register(pegasus
, Gpio0
, pegasus
->features
);
514 set_register(pegasus
, Gpio0
, DEFAULT_GPIO_SET
);
518 if (i
== REG_TIMEOUT
)
521 if (usb_dev_id
[pegasus
->dev_index
].vendor
== VENDOR_LINKSYS
||
522 usb_dev_id
[pegasus
->dev_index
].vendor
== VENDOR_DLINK
) {
523 set_register(pegasus
, Gpio0
, 0x24);
524 set_register(pegasus
, Gpio0
, 0x26);
526 if (usb_dev_id
[pegasus
->dev_index
].vendor
== VENDOR_ELCON
) {
528 read_mii_word(pegasus
, 3, 0x1b, &auxmode
);
529 write_mii_word(pegasus
, 3, 0x1b, auxmode
| 4);
535 static int enable_net_traffic(struct net_device
*dev
, struct usb_device
*usb
)
539 pegasus_t
*pegasus
= netdev_priv(dev
);
542 read_mii_word(pegasus
, pegasus
->phy
, MII_LPA
, &linkpart
);
545 if (linkpart
& (ADVERTISE_100FULL
| ADVERTISE_10FULL
))
546 data
[1] |= 0x20; /* set full duplex */
547 if (linkpart
& (ADVERTISE_100FULL
| ADVERTISE_100HALF
))
548 data
[1] |= 0x10; /* set 100 Mbps */
551 data
[2] = (loopback
& 1) ? 0x09 : 0x01;
553 memcpy(pegasus
->eth_regs
, data
, sizeof (data
));
554 ret
= set_registers(pegasus
, EthCtrl0
, 3, data
);
556 if (usb_dev_id
[pegasus
->dev_index
].vendor
== VENDOR_LINKSYS
||
557 usb_dev_id
[pegasus
->dev_index
].vendor
== VENDOR_LINKSYS2
||
558 usb_dev_id
[pegasus
->dev_index
].vendor
== VENDOR_DLINK
) {
560 read_mii_word(pegasus
, 0, 0x1b, &auxmode
);
561 write_mii_word(pegasus
, 0, 0x1b, auxmode
| 4);
567 static void fill_skb_pool(pegasus_t
* pegasus
)
571 for (i
= 0; i
< RX_SKBS
; i
++) {
572 if (pegasus
->rx_pool
[i
])
574 pegasus
->rx_pool
[i
] = dev_alloc_skb(PEGASUS_MTU
+ 2);
576 ** we give up if the allocation fail. the tasklet will be
577 ** rescheduled again anyway...
579 if (pegasus
->rx_pool
[i
] == NULL
)
581 skb_reserve(pegasus
->rx_pool
[i
], 2);
585 static void free_skb_pool(pegasus_t
* pegasus
)
589 for (i
= 0; i
< RX_SKBS
; i
++) {
590 if (pegasus
->rx_pool
[i
]) {
591 dev_kfree_skb(pegasus
->rx_pool
[i
]);
592 pegasus
->rx_pool
[i
] = NULL
;
597 static inline struct sk_buff
*pull_skb(pegasus_t
* pegasus
)
602 for (i
= 0; i
< RX_SKBS
; i
++) {
603 if (likely(pegasus
->rx_pool
[i
] != NULL
)) {
604 skb
= pegasus
->rx_pool
[i
];
605 pegasus
->rx_pool
[i
] = NULL
;
612 static void read_bulk_callback(struct urb
*urb
)
614 pegasus_t
*pegasus
= urb
->context
;
615 struct net_device
*net
;
616 int rx_status
, count
= urb
->actual_length
;
617 int status
= urb
->status
;
618 u8
*buf
= urb
->transfer_buffer
;
625 if (!netif_device_present(net
) || !netif_running(net
))
632 if (netif_msg_rx_err(pegasus
))
633 pr_debug("%s: reset MAC\n", net
->name
);
634 pegasus
->flags
&= ~PEGASUS_RX_BUSY
;
636 case -EPIPE
: /* stall, or disconnect from TT */
637 /* FIXME schedule work to clear the halt */
638 if (netif_msg_rx_err(pegasus
))
639 printk(KERN_WARNING
"%s: no rx stall recovery\n",
645 if (netif_msg_ifdown(pegasus
))
646 pr_debug("%s: rx unlink, %d\n", net
->name
, status
);
649 if (netif_msg_rx_err(pegasus
))
650 pr_debug("%s: RX status %d\n", net
->name
, status
);
654 if (!count
|| count
< 4)
657 rx_status
= buf
[count
- 2];
658 if (rx_status
& 0x1e) {
659 if (netif_msg_rx_err(pegasus
))
660 pr_debug("%s: RX packet error %x\n",
661 net
->name
, rx_status
);
662 pegasus
->stats
.rx_errors
++;
663 if (rx_status
& 0x06) // long or runt
664 pegasus
->stats
.rx_length_errors
++;
665 if (rx_status
& 0x08)
666 pegasus
->stats
.rx_crc_errors
++;
667 if (rx_status
& 0x10) // extra bits
668 pegasus
->stats
.rx_frame_errors
++;
671 if (pegasus
->chip
== 0x8513) {
672 pkt_len
= le32_to_cpu(*(__le32
*)urb
->transfer_buffer
);
674 pegasus
->rx_skb
->data
+= 2;
676 pkt_len
= buf
[count
- 3] << 8;
677 pkt_len
+= buf
[count
- 4];
683 * If the packet is unreasonably long, quietly drop it rather than
684 * kernel panicing by calling skb_put.
686 if (pkt_len
> PEGASUS_MTU
)
690 * at this point we are sure pegasus->rx_skb != NULL
691 * so we go ahead and pass up the packet.
693 skb_put(pegasus
->rx_skb
, pkt_len
);
694 pegasus
->rx_skb
->protocol
= eth_type_trans(pegasus
->rx_skb
, net
);
695 netif_rx(pegasus
->rx_skb
);
696 pegasus
->stats
.rx_packets
++;
697 pegasus
->stats
.rx_bytes
+= pkt_len
;
699 if (pegasus
->flags
& PEGASUS_UNPLUG
)
702 spin_lock(&pegasus
->rx_pool_lock
);
703 pegasus
->rx_skb
= pull_skb(pegasus
);
704 spin_unlock(&pegasus
->rx_pool_lock
);
706 if (pegasus
->rx_skb
== NULL
)
709 usb_fill_bulk_urb(pegasus
->rx_urb
, pegasus
->usb
,
710 usb_rcvbulkpipe(pegasus
->usb
, 1),
711 pegasus
->rx_skb
->data
, PEGASUS_MTU
+ 8,
712 read_bulk_callback
, pegasus
);
713 rx_status
= usb_submit_urb(pegasus
->rx_urb
, GFP_ATOMIC
);
714 if (rx_status
== -ENODEV
)
715 netif_device_detach(pegasus
->net
);
716 else if (rx_status
) {
717 pegasus
->flags
|= PEGASUS_RX_URB_FAIL
;
720 pegasus
->flags
&= ~PEGASUS_RX_URB_FAIL
;
726 tasklet_schedule(&pegasus
->rx_tl
);
729 static void rx_fixup(unsigned long data
)
735 pegasus
= (pegasus_t
*) data
;
736 if (pegasus
->flags
& PEGASUS_UNPLUG
)
739 spin_lock_irqsave(&pegasus
->rx_pool_lock
, flags
);
740 fill_skb_pool(pegasus
);
741 if (pegasus
->flags
& PEGASUS_RX_URB_FAIL
)
744 if (pegasus
->rx_skb
== NULL
) {
745 pegasus
->rx_skb
= pull_skb(pegasus
);
747 if (pegasus
->rx_skb
== NULL
) {
748 if (netif_msg_rx_err(pegasus
))
749 printk(KERN_WARNING
"%s: low on memory\n",
751 tasklet_schedule(&pegasus
->rx_tl
);
754 usb_fill_bulk_urb(pegasus
->rx_urb
, pegasus
->usb
,
755 usb_rcvbulkpipe(pegasus
->usb
, 1),
756 pegasus
->rx_skb
->data
, PEGASUS_MTU
+ 8,
757 read_bulk_callback
, pegasus
);
759 status
= usb_submit_urb(pegasus
->rx_urb
, GFP_ATOMIC
);
760 if (status
== -ENODEV
)
761 netif_device_detach(pegasus
->net
);
763 pegasus
->flags
|= PEGASUS_RX_URB_FAIL
;
764 tasklet_schedule(&pegasus
->rx_tl
);
766 pegasus
->flags
&= ~PEGASUS_RX_URB_FAIL
;
769 spin_unlock_irqrestore(&pegasus
->rx_pool_lock
, flags
);
772 static void write_bulk_callback(struct urb
*urb
)
774 pegasus_t
*pegasus
= urb
->context
;
775 struct net_device
*net
;
776 int status
= urb
->status
;
783 if (!netif_device_present(net
) || !netif_running(net
))
788 /* FIXME schedule_work() to clear the tx halt */
789 netif_stop_queue(net
);
790 if (netif_msg_tx_err(pegasus
))
791 printk(KERN_WARNING
"%s: no tx stall recovery\n",
797 if (netif_msg_ifdown(pegasus
))
798 pr_debug("%s: tx unlink, %d\n", net
->name
, status
);
801 if (netif_msg_tx_err(pegasus
))
802 pr_info("%s: TX status %d\n", net
->name
, status
);
808 net
->trans_start
= jiffies
;
809 netif_wake_queue(net
);
812 static void intr_callback(struct urb
*urb
)
814 pegasus_t
*pegasus
= urb
->context
;
815 struct net_device
*net
;
816 int res
, status
= urb
->status
;
825 case -ECONNRESET
: /* unlink */
830 /* some Pegasus-I products report LOTS of data
831 * toggle errors... avoid log spamming
833 if (netif_msg_timer(pegasus
))
834 pr_debug("%s: intr status %d\n", net
->name
,
838 if (urb
->actual_length
>= 6) {
839 u8
* d
= urb
->transfer_buffer
;
841 /* byte 0 == tx_status1, reg 2B */
842 if (d
[0] & (TX_UNDERRUN
|EXCESSIVE_COL
843 |LATE_COL
|JABBER_TIMEOUT
)) {
844 pegasus
->stats
.tx_errors
++;
845 if (d
[0] & TX_UNDERRUN
)
846 pegasus
->stats
.tx_fifo_errors
++;
847 if (d
[0] & (EXCESSIVE_COL
| JABBER_TIMEOUT
))
848 pegasus
->stats
.tx_aborted_errors
++;
850 pegasus
->stats
.tx_window_errors
++;
853 /* d[5].LINK_STATUS lies on some adapters.
854 * d[0].NO_CARRIER kicks in only with failed TX.
855 * ... so monitoring with MII may be safest.
858 /* bytes 3-4 == rx_lostpkt, reg 2E/2F */
859 pegasus
->stats
.rx_missed_errors
+= ((d
[3] & 0x7f) << 8) | d
[4];
862 res
= usb_submit_urb(urb
, GFP_ATOMIC
);
864 netif_device_detach(pegasus
->net
);
865 if (res
&& netif_msg_timer(pegasus
))
866 printk(KERN_ERR
"%s: can't resubmit interrupt urb, %d\n",
870 static void pegasus_tx_timeout(struct net_device
*net
)
872 pegasus_t
*pegasus
= netdev_priv(net
);
873 if (netif_msg_timer(pegasus
))
874 printk(KERN_WARNING
"%s: tx timeout\n", net
->name
);
875 usb_unlink_urb(pegasus
->tx_urb
);
876 pegasus
->stats
.tx_errors
++;
879 static netdev_tx_t
pegasus_start_xmit(struct sk_buff
*skb
,
880 struct net_device
*net
)
882 pegasus_t
*pegasus
= netdev_priv(net
);
883 int count
= ((skb
->len
+ 2) & 0x3f) ? skb
->len
+ 2 : skb
->len
+ 3;
885 __u16 l16
= skb
->len
;
887 netif_stop_queue(net
);
889 ((__le16
*) pegasus
->tx_buff
)[0] = cpu_to_le16(l16
);
890 skb_copy_from_linear_data(skb
, pegasus
->tx_buff
+ 2, skb
->len
);
891 usb_fill_bulk_urb(pegasus
->tx_urb
, pegasus
->usb
,
892 usb_sndbulkpipe(pegasus
->usb
, 2),
893 pegasus
->tx_buff
, count
,
894 write_bulk_callback
, pegasus
);
895 if ((res
= usb_submit_urb(pegasus
->tx_urb
, GFP_ATOMIC
))) {
896 if (netif_msg_tx_err(pegasus
))
897 printk(KERN_WARNING
"%s: fail tx, %d\n",
900 case -EPIPE
: /* stall, or disconnect from TT */
901 /* cleanup should already have been scheduled */
903 case -ENODEV
: /* disconnect() upcoming */
905 netif_device_detach(pegasus
->net
);
908 pegasus
->stats
.tx_errors
++;
909 netif_start_queue(net
);
912 pegasus
->stats
.tx_packets
++;
913 pegasus
->stats
.tx_bytes
+= skb
->len
;
914 net
->trans_start
= jiffies
;
921 static struct net_device_stats
*pegasus_netdev_stats(struct net_device
*dev
)
923 return &((pegasus_t
*) netdev_priv(dev
))->stats
;
926 static inline void disable_net_traffic(pegasus_t
* pegasus
)
928 __le16 tmp
= cpu_to_le16(0);
930 set_registers(pegasus
, EthCtrl0
, sizeof(tmp
), &tmp
);
933 static inline void get_interrupt_interval(pegasus_t
* pegasus
)
938 read_eprom_word(pegasus
, 4, &data
);
939 interval
= data
>> 8;
940 if (pegasus
->usb
->speed
!= USB_SPEED_HIGH
) {
941 if (interval
< 0x80) {
942 if (netif_msg_timer(pegasus
))
943 dev_info(&pegasus
->intf
->dev
, "intr interval "
944 "changed from %ums to %ums\n",
947 data
= (data
& 0x00FF) | ((u16
)interval
<< 8);
948 #ifdef PEGASUS_WRITE_EEPROM
949 write_eprom_word(pegasus
, 4, data
);
953 pegasus
->intr_interval
= interval
;
956 static void set_carrier(struct net_device
*net
)
958 pegasus_t
*pegasus
= netdev_priv(net
);
961 if (read_mii_word(pegasus
, pegasus
->phy
, MII_BMSR
, &tmp
))
964 if (tmp
& BMSR_LSTATUS
)
965 netif_carrier_on(net
);
967 netif_carrier_off(net
);
970 static void free_all_urbs(pegasus_t
* pegasus
)
972 usb_free_urb(pegasus
->intr_urb
);
973 usb_free_urb(pegasus
->tx_urb
);
974 usb_free_urb(pegasus
->rx_urb
);
975 usb_free_urb(pegasus
->ctrl_urb
);
978 static void unlink_all_urbs(pegasus_t
* pegasus
)
980 usb_kill_urb(pegasus
->intr_urb
);
981 usb_kill_urb(pegasus
->tx_urb
);
982 usb_kill_urb(pegasus
->rx_urb
);
983 usb_kill_urb(pegasus
->ctrl_urb
);
986 static int alloc_urbs(pegasus_t
* pegasus
)
988 pegasus
->ctrl_urb
= usb_alloc_urb(0, GFP_KERNEL
);
989 if (!pegasus
->ctrl_urb
) {
992 pegasus
->rx_urb
= usb_alloc_urb(0, GFP_KERNEL
);
993 if (!pegasus
->rx_urb
) {
994 usb_free_urb(pegasus
->ctrl_urb
);
997 pegasus
->tx_urb
= usb_alloc_urb(0, GFP_KERNEL
);
998 if (!pegasus
->tx_urb
) {
999 usb_free_urb(pegasus
->rx_urb
);
1000 usb_free_urb(pegasus
->ctrl_urb
);
1003 pegasus
->intr_urb
= usb_alloc_urb(0, GFP_KERNEL
);
1004 if (!pegasus
->intr_urb
) {
1005 usb_free_urb(pegasus
->tx_urb
);
1006 usb_free_urb(pegasus
->rx_urb
);
1007 usb_free_urb(pegasus
->ctrl_urb
);
1014 static int pegasus_open(struct net_device
*net
)
1016 pegasus_t
*pegasus
= netdev_priv(net
);
1019 if (pegasus
->rx_skb
== NULL
)
1020 pegasus
->rx_skb
= pull_skb(pegasus
);
1022 ** Note: no point to free the pool. it is empty :-)
1024 if (!pegasus
->rx_skb
)
1027 res
= set_registers(pegasus
, EthID
, 6, net
->dev_addr
);
1029 usb_fill_bulk_urb(pegasus
->rx_urb
, pegasus
->usb
,
1030 usb_rcvbulkpipe(pegasus
->usb
, 1),
1031 pegasus
->rx_skb
->data
, PEGASUS_MTU
+ 8,
1032 read_bulk_callback
, pegasus
);
1033 if ((res
= usb_submit_urb(pegasus
->rx_urb
, GFP_KERNEL
))) {
1035 netif_device_detach(pegasus
->net
);
1036 if (netif_msg_ifup(pegasus
))
1037 pr_debug("%s: failed rx_urb, %d", net
->name
, res
);
1041 usb_fill_int_urb(pegasus
->intr_urb
, pegasus
->usb
,
1042 usb_rcvintpipe(pegasus
->usb
, 3),
1043 pegasus
->intr_buff
, sizeof (pegasus
->intr_buff
),
1044 intr_callback
, pegasus
, pegasus
->intr_interval
);
1045 if ((res
= usb_submit_urb(pegasus
->intr_urb
, GFP_KERNEL
))) {
1047 netif_device_detach(pegasus
->net
);
1048 if (netif_msg_ifup(pegasus
))
1049 pr_debug("%s: failed intr_urb, %d\n", net
->name
, res
);
1050 usb_kill_urb(pegasus
->rx_urb
);
1053 if ((res
= enable_net_traffic(net
, pegasus
->usb
))) {
1054 if (netif_msg_ifup(pegasus
))
1055 pr_debug("%s: can't enable_net_traffic() - %d\n",
1058 usb_kill_urb(pegasus
->rx_urb
);
1059 usb_kill_urb(pegasus
->intr_urb
);
1060 free_skb_pool(pegasus
);
1064 netif_start_queue(net
);
1065 if (netif_msg_ifup(pegasus
))
1066 pr_debug("%s: open\n", net
->name
);
1072 static int pegasus_close(struct net_device
*net
)
1074 pegasus_t
*pegasus
= netdev_priv(net
);
1076 netif_stop_queue(net
);
1077 if (!(pegasus
->flags
& PEGASUS_UNPLUG
))
1078 disable_net_traffic(pegasus
);
1079 tasklet_kill(&pegasus
->rx_tl
);
1080 unlink_all_urbs(pegasus
);
1085 static void pegasus_get_drvinfo(struct net_device
*dev
,
1086 struct ethtool_drvinfo
*info
)
1088 pegasus_t
*pegasus
= netdev_priv(dev
);
1089 strncpy(info
->driver
, driver_name
, sizeof (info
->driver
) - 1);
1090 strncpy(info
->version
, DRIVER_VERSION
, sizeof (info
->version
) - 1);
1091 usb_make_path(pegasus
->usb
, info
->bus_info
, sizeof (info
->bus_info
));
1094 /* also handles three patterns of some kind in hardware */
1095 #define WOL_SUPPORTED (WAKE_MAGIC|WAKE_PHY)
1098 pegasus_get_wol(struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
1100 pegasus_t
*pegasus
= netdev_priv(dev
);
1102 wol
->supported
= WAKE_MAGIC
| WAKE_PHY
;
1103 wol
->wolopts
= pegasus
->wolopts
;
1107 pegasus_set_wol(struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
1109 pegasus_t
*pegasus
= netdev_priv(dev
);
1112 if (wol
->wolopts
& ~WOL_SUPPORTED
)
1115 if (wol
->wolopts
& WAKE_MAGIC
)
1117 if (wol
->wolopts
& WAKE_PHY
)
1119 /* FIXME this 0x10 bit still needs to get set in the chip... */
1121 pegasus
->eth_regs
[0] |= 0x10;
1123 pegasus
->eth_regs
[0] &= ~0x10;
1124 pegasus
->wolopts
= wol
->wolopts
;
1125 return set_register(pegasus
, WakeupControl
, reg78
);
1128 static inline void pegasus_reset_wol(struct net_device
*dev
)
1130 struct ethtool_wolinfo wol
;
1132 memset(&wol
, 0, sizeof wol
);
1133 (void) pegasus_set_wol(dev
, &wol
);
1137 pegasus_get_settings(struct net_device
*dev
, struct ethtool_cmd
*ecmd
)
1141 pegasus
= netdev_priv(dev
);
1142 mii_ethtool_gset(&pegasus
->mii
, ecmd
);
1147 pegasus_set_settings(struct net_device
*dev
, struct ethtool_cmd
*ecmd
)
1149 pegasus_t
*pegasus
= netdev_priv(dev
);
1150 return mii_ethtool_sset(&pegasus
->mii
, ecmd
);
1153 static int pegasus_nway_reset(struct net_device
*dev
)
1155 pegasus_t
*pegasus
= netdev_priv(dev
);
1156 return mii_nway_restart(&pegasus
->mii
);
1159 static u32
pegasus_get_link(struct net_device
*dev
)
1161 pegasus_t
*pegasus
= netdev_priv(dev
);
1162 return mii_link_ok(&pegasus
->mii
);
1165 static u32
pegasus_get_msglevel(struct net_device
*dev
)
1167 pegasus_t
*pegasus
= netdev_priv(dev
);
1168 return pegasus
->msg_enable
;
1171 static void pegasus_set_msglevel(struct net_device
*dev
, u32 v
)
1173 pegasus_t
*pegasus
= netdev_priv(dev
);
1174 pegasus
->msg_enable
= v
;
1177 static const struct ethtool_ops ops
= {
1178 .get_drvinfo
= pegasus_get_drvinfo
,
1179 .get_settings
= pegasus_get_settings
,
1180 .set_settings
= pegasus_set_settings
,
1181 .nway_reset
= pegasus_nway_reset
,
1182 .get_link
= pegasus_get_link
,
1183 .get_msglevel
= pegasus_get_msglevel
,
1184 .set_msglevel
= pegasus_set_msglevel
,
1185 .get_wol
= pegasus_get_wol
,
1186 .set_wol
= pegasus_set_wol
,
1189 static int pegasus_ioctl(struct net_device
*net
, struct ifreq
*rq
, int cmd
)
1191 __u16
*data
= (__u16
*) & rq
->ifr_ifru
;
1192 pegasus_t
*pegasus
= netdev_priv(net
);
1196 case SIOCDEVPRIVATE
:
1197 data
[0] = pegasus
->phy
;
1198 case SIOCDEVPRIVATE
+ 1:
1199 read_mii_word(pegasus
, data
[0], data
[1] & 0x1f, &data
[3]);
1202 case SIOCDEVPRIVATE
+ 2:
1203 if (!capable(CAP_NET_ADMIN
))
1205 write_mii_word(pegasus
, pegasus
->phy
, data
[1] & 0x1f, data
[2]);
1214 static void pegasus_set_multicast(struct net_device
*net
)
1216 pegasus_t
*pegasus
= netdev_priv(net
);
1218 if (net
->flags
& IFF_PROMISC
) {
1219 pegasus
->eth_regs
[EthCtrl2
] |= RX_PROMISCUOUS
;
1220 if (netif_msg_link(pegasus
))
1221 pr_info("%s: Promiscuous mode enabled.\n", net
->name
);
1222 } else if (net
->mc_count
|| (net
->flags
& IFF_ALLMULTI
)) {
1223 pegasus
->eth_regs
[EthCtrl0
] |= RX_MULTICAST
;
1224 pegasus
->eth_regs
[EthCtrl2
] &= ~RX_PROMISCUOUS
;
1225 if (netif_msg_link(pegasus
))
1226 pr_debug("%s: set allmulti\n", net
->name
);
1228 pegasus
->eth_regs
[EthCtrl0
] &= ~RX_MULTICAST
;
1229 pegasus
->eth_regs
[EthCtrl2
] &= ~RX_PROMISCUOUS
;
1232 pegasus
->ctrl_urb
->status
= 0;
1234 pegasus
->flags
|= ETH_REGS_CHANGE
;
1235 ctrl_callback(pegasus
->ctrl_urb
);
1238 static __u8
mii_phy_probe(pegasus_t
* pegasus
)
1243 for (i
= 0; i
< 32; i
++) {
1244 read_mii_word(pegasus
, i
, MII_BMSR
, &tmp
);
1245 if (tmp
== 0 || tmp
== 0xffff || (tmp
& BMSR_MEDIA
) == 0)
1254 static inline void setup_pegasus_II(pegasus_t
* pegasus
)
1258 set_register(pegasus
, Reg1d
, 0);
1259 set_register(pegasus
, Reg7b
, 1);
1261 if ((pegasus
->features
& HAS_HOME_PNA
) && mii_mode
)
1262 set_register(pegasus
, Reg7b
, 0);
1264 set_register(pegasus
, Reg7b
, 2);
1266 set_register(pegasus
, 0x83, data
);
1267 get_registers(pegasus
, 0x83, 1, &data
);
1270 pegasus
->chip
= 0x8513;
1275 set_register(pegasus
, 0x80, 0xc0);
1276 set_register(pegasus
, 0x83, 0xff);
1277 set_register(pegasus
, 0x84, 0x01);
1279 if (pegasus
->features
& HAS_HOME_PNA
&& mii_mode
)
1280 set_register(pegasus
, Reg81
, 6);
1282 set_register(pegasus
, Reg81
, 2);
1286 static int pegasus_count
;
1287 static struct workqueue_struct
*pegasus_workqueue
= NULL
;
1288 #define CARRIER_CHECK_DELAY (2 * HZ)
1290 static void check_carrier(struct work_struct
*work
)
1292 pegasus_t
*pegasus
= container_of(work
, pegasus_t
, carrier_check
.work
);
1293 set_carrier(pegasus
->net
);
1294 if (!(pegasus
->flags
& PEGASUS_UNPLUG
)) {
1295 queue_delayed_work(pegasus_workqueue
, &pegasus
->carrier_check
,
1296 CARRIER_CHECK_DELAY
);
1300 static int pegasus_blacklisted(struct usb_device
*udev
)
1302 struct usb_device_descriptor
*udd
= &udev
->descriptor
;
1304 /* Special quirk to keep the driver from handling the Belkin Bluetooth
1305 * dongle which happens to have the same ID.
1307 if ((udd
->idVendor
== cpu_to_le16(VENDOR_BELKIN
)) &&
1308 (udd
->idProduct
== cpu_to_le16(0x0121)) &&
1309 (udd
->bDeviceClass
== USB_CLASS_WIRELESS_CONTROLLER
) &&
1310 (udd
->bDeviceProtocol
== 1))
1316 /* we rely on probe() and remove() being serialized so we
1317 * don't need extra locking on pegasus_count.
1319 static void pegasus_dec_workqueue(void)
1322 if (pegasus_count
== 0) {
1323 destroy_workqueue(pegasus_workqueue
);
1324 pegasus_workqueue
= NULL
;
1328 static int pegasus_probe(struct usb_interface
*intf
,
1329 const struct usb_device_id
*id
)
1331 struct usb_device
*dev
= interface_to_usbdev(intf
);
1332 struct net_device
*net
;
1334 int dev_index
= id
- pegasus_ids
;
1337 if (pegasus_blacklisted(dev
))
1340 if (pegasus_count
== 0) {
1341 pegasus_workqueue
= create_singlethread_workqueue("pegasus");
1342 if (!pegasus_workqueue
)
1349 net
= alloc_etherdev(sizeof(struct pegasus
));
1351 dev_err(&intf
->dev
, "can't allocate %s\n", "device");
1355 pegasus
= netdev_priv(net
);
1356 pegasus
->dev_index
= dev_index
;
1357 init_waitqueue_head(&pegasus
->ctrl_wait
);
1359 if (!alloc_urbs(pegasus
)) {
1360 dev_err(&intf
->dev
, "can't allocate %s\n", "urbs");
1364 tasklet_init(&pegasus
->rx_tl
, rx_fixup
, (unsigned long) pegasus
);
1366 INIT_DELAYED_WORK(&pegasus
->carrier_check
, check_carrier
);
1368 pegasus
->intf
= intf
;
1373 net
->watchdog_timeo
= PEGASUS_TX_TIMEOUT
;
1374 net
->netdev_ops
= &pegasus_netdev_ops
;
1375 SET_ETHTOOL_OPS(net
, &ops
);
1376 pegasus
->mii
.dev
= net
;
1377 pegasus
->mii
.mdio_read
= mdio_read
;
1378 pegasus
->mii
.mdio_write
= mdio_write
;
1379 pegasus
->mii
.phy_id_mask
= 0x1f;
1380 pegasus
->mii
.reg_num_mask
= 0x1f;
1381 spin_lock_init(&pegasus
->rx_pool_lock
);
1382 pegasus
->msg_enable
= netif_msg_init (msg_level
, NETIF_MSG_DRV
1383 | NETIF_MSG_PROBE
| NETIF_MSG_LINK
);
1385 pegasus
->features
= usb_dev_id
[dev_index
].private;
1386 get_interrupt_interval(pegasus
);
1387 if (reset_mac(pegasus
)) {
1388 dev_err(&intf
->dev
, "can't reset MAC\n");
1392 set_ethernet_addr(pegasus
);
1393 fill_skb_pool(pegasus
);
1394 if (pegasus
->features
& PEGASUS_II
) {
1395 dev_info(&intf
->dev
, "setup Pegasus II specific registers\n");
1396 setup_pegasus_II(pegasus
);
1398 pegasus
->phy
= mii_phy_probe(pegasus
);
1399 if (pegasus
->phy
== 0xff) {
1400 dev_warn(&intf
->dev
, "can't locate MII phy, using default\n");
1403 pegasus
->mii
.phy_id
= pegasus
->phy
;
1404 usb_set_intfdata(intf
, pegasus
);
1405 SET_NETDEV_DEV(net
, &intf
->dev
);
1406 pegasus_reset_wol(net
);
1407 res
= register_netdev(net
);
1410 queue_delayed_work(pegasus_workqueue
, &pegasus
->carrier_check
,
1411 CARRIER_CHECK_DELAY
);
1413 dev_info(&intf
->dev
, "%s, %s, %pM\n",
1415 usb_dev_id
[dev_index
].name
,
1420 usb_set_intfdata(intf
, NULL
);
1421 free_skb_pool(pegasus
);
1423 free_all_urbs(pegasus
);
1428 pegasus_dec_workqueue();
1432 static void pegasus_disconnect(struct usb_interface
*intf
)
1434 struct pegasus
*pegasus
= usb_get_intfdata(intf
);
1436 usb_set_intfdata(intf
, NULL
);
1438 dev_dbg(&intf
->dev
, "unregistering non-bound device?\n");
1442 pegasus
->flags
|= PEGASUS_UNPLUG
;
1443 cancel_delayed_work(&pegasus
->carrier_check
);
1444 unregister_netdev(pegasus
->net
);
1445 usb_put_dev(interface_to_usbdev(intf
));
1446 unlink_all_urbs(pegasus
);
1447 free_all_urbs(pegasus
);
1448 free_skb_pool(pegasus
);
1449 if (pegasus
->rx_skb
!= NULL
) {
1450 dev_kfree_skb(pegasus
->rx_skb
);
1451 pegasus
->rx_skb
= NULL
;
1453 free_netdev(pegasus
->net
);
1454 pegasus_dec_workqueue();
1457 static int pegasus_suspend (struct usb_interface
*intf
, pm_message_t message
)
1459 struct pegasus
*pegasus
= usb_get_intfdata(intf
);
1461 netif_device_detach (pegasus
->net
);
1462 cancel_delayed_work(&pegasus
->carrier_check
);
1463 if (netif_running(pegasus
->net
)) {
1464 usb_kill_urb(pegasus
->rx_urb
);
1465 usb_kill_urb(pegasus
->intr_urb
);
1470 static int pegasus_resume (struct usb_interface
*intf
)
1472 struct pegasus
*pegasus
= usb_get_intfdata(intf
);
1474 netif_device_attach (pegasus
->net
);
1475 if (netif_running(pegasus
->net
)) {
1476 pegasus
->rx_urb
->status
= 0;
1477 pegasus
->rx_urb
->actual_length
= 0;
1478 read_bulk_callback(pegasus
->rx_urb
);
1480 pegasus
->intr_urb
->status
= 0;
1481 pegasus
->intr_urb
->actual_length
= 0;
1482 intr_callback(pegasus
->intr_urb
);
1484 queue_delayed_work(pegasus_workqueue
, &pegasus
->carrier_check
,
1485 CARRIER_CHECK_DELAY
);
1489 static const struct net_device_ops pegasus_netdev_ops
= {
1490 .ndo_open
= pegasus_open
,
1491 .ndo_stop
= pegasus_close
,
1492 .ndo_do_ioctl
= pegasus_ioctl
,
1493 .ndo_start_xmit
= pegasus_start_xmit
,
1494 .ndo_set_multicast_list
= pegasus_set_multicast
,
1495 .ndo_get_stats
= pegasus_netdev_stats
,
1496 .ndo_tx_timeout
= pegasus_tx_timeout
,
1497 .ndo_change_mtu
= eth_change_mtu
,
1498 .ndo_set_mac_address
= eth_mac_addr
,
1499 .ndo_validate_addr
= eth_validate_addr
,
1502 static struct usb_driver pegasus_driver
= {
1503 .name
= driver_name
,
1504 .probe
= pegasus_probe
,
1505 .disconnect
= pegasus_disconnect
,
1506 .id_table
= pegasus_ids
,
1507 .suspend
= pegasus_suspend
,
1508 .resume
= pegasus_resume
,
1511 static void __init
parse_id(char *id
)
1513 unsigned int vendor_id
=0, device_id
=0, flags
=0, i
=0;
1514 char *token
, *name
=NULL
;
1516 if ((token
= strsep(&id
, ":")) != NULL
)
1518 /* name now points to a null terminated string*/
1519 if ((token
= strsep(&id
, ":")) != NULL
)
1520 vendor_id
= simple_strtoul(token
, NULL
, 16);
1521 if ((token
= strsep(&id
, ":")) != NULL
)
1522 device_id
= simple_strtoul(token
, NULL
, 16);
1523 flags
= simple_strtoul(id
, NULL
, 16);
1524 pr_info("%s: new device %s, vendor ID 0x%04x, device ID 0x%04x, flags: 0x%x\n",
1525 driver_name
, name
, vendor_id
, device_id
, flags
);
1527 if (vendor_id
> 0x10000 || vendor_id
== 0)
1529 if (device_id
> 0x10000 || device_id
== 0)
1532 for (i
=0; usb_dev_id
[i
].name
; i
++);
1533 usb_dev_id
[i
].name
= name
;
1534 usb_dev_id
[i
].vendor
= vendor_id
;
1535 usb_dev_id
[i
].device
= device_id
;
1536 usb_dev_id
[i
].private = flags
;
1537 pegasus_ids
[i
].match_flags
= USB_DEVICE_ID_MATCH_DEVICE
;
1538 pegasus_ids
[i
].idVendor
= vendor_id
;
1539 pegasus_ids
[i
].idProduct
= device_id
;
1542 static int __init
pegasus_init(void)
1544 pr_info("%s: %s, " DRIVER_DESC
"\n", driver_name
, DRIVER_VERSION
);
1547 return usb_register(&pegasus_driver
);
1550 static void __exit
pegasus_exit(void)
1552 usb_deregister(&pegasus_driver
);
1555 module_init(pegasus_init
);
1556 module_exit(pegasus_exit
);