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
);
97 static int update_eth_regs_async(pegasus_t
*);
98 /* Aargh!!! I _really_ hate such tweaks */
99 static void ctrl_callback(struct urb
*urb
)
101 pegasus_t
*pegasus
= urb
->context
;
106 switch (urb
->status
) {
108 if (pegasus
->flags
& ETH_REGS_CHANGE
) {
109 pegasus
->flags
&= ~ETH_REGS_CHANGE
;
110 pegasus
->flags
|= ETH_REGS_CHANGED
;
111 update_eth_regs_async(pegasus
);
120 if (netif_msg_drv(pegasus
))
121 dev_dbg(&pegasus
->intf
->dev
, "%s, status %d\n",
122 __FUNCTION__
, urb
->status
);
124 pegasus
->flags
&= ~ETH_REGS_CHANGED
;
125 wake_up(&pegasus
->ctrl_wait
);
128 static int get_registers(pegasus_t
* pegasus
, __u16 indx
, __u16 size
,
133 DECLARE_WAITQUEUE(wait
, current
);
135 buffer
= kmalloc(size
, GFP_KERNEL
);
137 if (netif_msg_drv(pegasus
))
138 dev_warn(&pegasus
->intf
->dev
, "out of memory in %s\n",
142 add_wait_queue(&pegasus
->ctrl_wait
, &wait
);
143 set_current_state(TASK_UNINTERRUPTIBLE
);
144 while (pegasus
->flags
& ETH_REGS_CHANGED
)
146 remove_wait_queue(&pegasus
->ctrl_wait
, &wait
);
147 set_current_state(TASK_RUNNING
);
149 pegasus
->dr
.bRequestType
= PEGASUS_REQT_READ
;
150 pegasus
->dr
.bRequest
= PEGASUS_REQ_GET_REGS
;
151 pegasus
->dr
.wValue
= cpu_to_le16(0);
152 pegasus
->dr
.wIndex
= cpu_to_le16p(&indx
);
153 pegasus
->dr
.wLength
= cpu_to_le16p(&size
);
154 pegasus
->ctrl_urb
->transfer_buffer_length
= size
;
156 usb_fill_control_urb(pegasus
->ctrl_urb
, pegasus
->usb
,
157 usb_rcvctrlpipe(pegasus
->usb
, 0),
158 (char *) &pegasus
->dr
,
159 buffer
, size
, ctrl_callback
, pegasus
);
161 add_wait_queue(&pegasus
->ctrl_wait
, &wait
);
162 set_current_state(TASK_UNINTERRUPTIBLE
);
164 /* using ATOMIC, we'd never wake up if we slept */
165 if ((ret
= usb_submit_urb(pegasus
->ctrl_urb
, GFP_ATOMIC
))) {
166 set_current_state(TASK_RUNNING
);
168 netif_device_detach(pegasus
->net
);
169 if (netif_msg_drv(pegasus
))
170 dev_err(&pegasus
->intf
->dev
, "%s, status %d\n",
177 remove_wait_queue(&pegasus
->ctrl_wait
, &wait
);
178 memcpy(data
, buffer
, size
);
184 static int set_registers(pegasus_t
* pegasus
, __u16 indx
, __u16 size
,
189 DECLARE_WAITQUEUE(wait
, current
);
191 buffer
= kmalloc(size
, GFP_KERNEL
);
193 if (netif_msg_drv(pegasus
))
194 dev_warn(&pegasus
->intf
->dev
, "out of memory in %s\n",
198 memcpy(buffer
, data
, size
);
200 add_wait_queue(&pegasus
->ctrl_wait
, &wait
);
201 set_current_state(TASK_UNINTERRUPTIBLE
);
202 while (pegasus
->flags
& ETH_REGS_CHANGED
)
204 remove_wait_queue(&pegasus
->ctrl_wait
, &wait
);
205 set_current_state(TASK_RUNNING
);
207 pegasus
->dr
.bRequestType
= PEGASUS_REQT_WRITE
;
208 pegasus
->dr
.bRequest
= PEGASUS_REQ_SET_REGS
;
209 pegasus
->dr
.wValue
= cpu_to_le16(0);
210 pegasus
->dr
.wIndex
= cpu_to_le16p(&indx
);
211 pegasus
->dr
.wLength
= cpu_to_le16p(&size
);
212 pegasus
->ctrl_urb
->transfer_buffer_length
= size
;
214 usb_fill_control_urb(pegasus
->ctrl_urb
, pegasus
->usb
,
215 usb_sndctrlpipe(pegasus
->usb
, 0),
216 (char *) &pegasus
->dr
,
217 buffer
, size
, ctrl_callback
, pegasus
);
219 add_wait_queue(&pegasus
->ctrl_wait
, &wait
);
220 set_current_state(TASK_UNINTERRUPTIBLE
);
222 if ((ret
= usb_submit_urb(pegasus
->ctrl_urb
, GFP_ATOMIC
))) {
224 netif_device_detach(pegasus
->net
);
225 if (netif_msg_drv(pegasus
))
226 dev_err(&pegasus
->intf
->dev
, "%s, status %d\n",
233 remove_wait_queue(&pegasus
->ctrl_wait
, &wait
);
239 static int set_register(pegasus_t
* pegasus
, __u16 indx
, __u8 data
)
243 DECLARE_WAITQUEUE(wait
, current
);
245 tmp
= kmalloc(1, GFP_KERNEL
);
247 if (netif_msg_drv(pegasus
))
248 dev_warn(&pegasus
->intf
->dev
, "out of memory in %s\n",
252 memcpy(tmp
, &data
, 1);
253 add_wait_queue(&pegasus
->ctrl_wait
, &wait
);
254 set_current_state(TASK_UNINTERRUPTIBLE
);
255 while (pegasus
->flags
& ETH_REGS_CHANGED
)
257 remove_wait_queue(&pegasus
->ctrl_wait
, &wait
);
258 set_current_state(TASK_RUNNING
);
260 pegasus
->dr
.bRequestType
= PEGASUS_REQT_WRITE
;
261 pegasus
->dr
.bRequest
= PEGASUS_REQ_SET_REG
;
262 pegasus
->dr
.wValue
= cpu_to_le16(data
);
263 pegasus
->dr
.wIndex
= cpu_to_le16p(&indx
);
264 pegasus
->dr
.wLength
= cpu_to_le16(1);
265 pegasus
->ctrl_urb
->transfer_buffer_length
= 1;
267 usb_fill_control_urb(pegasus
->ctrl_urb
, pegasus
->usb
,
268 usb_sndctrlpipe(pegasus
->usb
, 0),
269 (char *) &pegasus
->dr
,
270 tmp
, 1, ctrl_callback
, pegasus
);
272 add_wait_queue(&pegasus
->ctrl_wait
, &wait
);
273 set_current_state(TASK_UNINTERRUPTIBLE
);
275 if ((ret
= usb_submit_urb(pegasus
->ctrl_urb
, GFP_ATOMIC
))) {
277 netif_device_detach(pegasus
->net
);
278 if (netif_msg_drv(pegasus
))
279 dev_err(&pegasus
->intf
->dev
, "%s, status %d\n",
286 remove_wait_queue(&pegasus
->ctrl_wait
, &wait
);
292 static int update_eth_regs_async(pegasus_t
* pegasus
)
296 pegasus
->dr
.bRequestType
= PEGASUS_REQT_WRITE
;
297 pegasus
->dr
.bRequest
= PEGASUS_REQ_SET_REGS
;
298 pegasus
->dr
.wValue
= 0;
299 pegasus
->dr
.wIndex
= cpu_to_le16(EthCtrl0
);
300 pegasus
->dr
.wLength
= cpu_to_le16(3);
301 pegasus
->ctrl_urb
->transfer_buffer_length
= 3;
303 usb_fill_control_urb(pegasus
->ctrl_urb
, pegasus
->usb
,
304 usb_sndctrlpipe(pegasus
->usb
, 0),
305 (char *) &pegasus
->dr
,
306 pegasus
->eth_regs
, 3, ctrl_callback
, pegasus
);
308 if ((ret
= usb_submit_urb(pegasus
->ctrl_urb
, GFP_ATOMIC
))) {
310 netif_device_detach(pegasus
->net
);
311 if (netif_msg_drv(pegasus
))
312 dev_err(&pegasus
->intf
->dev
, "%s, status %d\n",
319 static int read_mii_word(pegasus_t
* pegasus
, __u8 phy
, __u8 indx
, __u16
* regd
)
322 __u8 data
[4] = { phy
, 0, 0, indx
};
326 set_register(pegasus
, PhyCtrl
, 0);
327 set_registers(pegasus
, PhyAddr
, sizeof (data
), data
);
328 set_register(pegasus
, PhyCtrl
, (indx
| PHY_READ
));
329 for (i
= 0; i
< REG_TIMEOUT
; i
++) {
330 ret
= get_registers(pegasus
, PhyCtrl
, 1, data
);
331 if (ret
== -ESHUTDOWN
)
333 if (data
[0] & PHY_DONE
)
336 if (i
< REG_TIMEOUT
) {
337 ret
= get_registers(pegasus
, PhyData
, 2, ®di
);
338 *regd
= le16_to_cpu(regdi
);
342 if (netif_msg_drv(pegasus
))
343 dev_warn(&pegasus
->intf
->dev
, "%s failed\n", __FUNCTION__
);
348 static int mdio_read(struct net_device
*dev
, int phy_id
, int loc
)
350 pegasus_t
*pegasus
= (pegasus_t
*) netdev_priv(dev
);
353 read_mii_word(pegasus
, phy_id
, loc
, &res
);
357 static int write_mii_word(pegasus_t
* pegasus
, __u8 phy
, __u8 indx
, __u16 regd
)
360 __u8 data
[4] = { phy
, 0, 0, indx
};
364 data
[2] = (u8
) (regd
>> 8);
365 set_register(pegasus
, PhyCtrl
, 0);
366 set_registers(pegasus
, PhyAddr
, sizeof(data
), data
);
367 set_register(pegasus
, PhyCtrl
, (indx
| PHY_WRITE
));
368 for (i
= 0; i
< REG_TIMEOUT
; i
++) {
369 ret
= get_registers(pegasus
, PhyCtrl
, 1, data
);
370 if (ret
== -ESHUTDOWN
)
372 if (data
[0] & PHY_DONE
)
379 if (netif_msg_drv(pegasus
))
380 dev_warn(&pegasus
->intf
->dev
, "%s failed\n", __FUNCTION__
);
384 static void mdio_write(struct net_device
*dev
, int phy_id
, int loc
, int val
)
386 pegasus_t
*pegasus
= (pegasus_t
*) netdev_priv(dev
);
388 write_mii_word(pegasus
, phy_id
, loc
, val
);
391 static int read_eprom_word(pegasus_t
* pegasus
, __u8 index
, __u16
* retdata
)
398 set_register(pegasus
, EpromCtrl
, 0);
399 set_register(pegasus
, EpromOffset
, index
);
400 set_register(pegasus
, EpromCtrl
, EPROM_READ
);
402 for (i
= 0; i
< REG_TIMEOUT
; i
++) {
403 ret
= get_registers(pegasus
, EpromCtrl
, 1, &tmp
);
404 if (tmp
& EPROM_DONE
)
406 if (ret
== -ESHUTDOWN
)
409 if (i
< REG_TIMEOUT
) {
410 ret
= get_registers(pegasus
, EpromData
, 2, &retdatai
);
411 *retdata
= le16_to_cpu(retdatai
);
416 if (netif_msg_drv(pegasus
))
417 dev_warn(&pegasus
->intf
->dev
, "%s failed\n", __FUNCTION__
);
421 #ifdef PEGASUS_WRITE_EEPROM
422 static inline void enable_eprom_write(pegasus_t
* pegasus
)
427 get_registers(pegasus
, EthCtrl2
, 1, &tmp
);
428 set_register(pegasus
, EthCtrl2
, tmp
| EPROM_WR_ENABLE
);
431 static inline void disable_eprom_write(pegasus_t
* pegasus
)
436 get_registers(pegasus
, EthCtrl2
, 1, &tmp
);
437 set_register(pegasus
, EpromCtrl
, 0);
438 set_register(pegasus
, EthCtrl2
, tmp
& ~EPROM_WR_ENABLE
);
441 static int write_eprom_word(pegasus_t
* pegasus
, __u8 index
, __u16 data
)
444 __u8 tmp
, d
[4] = { 0x3f, 0, 0, EPROM_WRITE
};
447 set_registers(pegasus
, EpromOffset
, 4, d
);
448 enable_eprom_write(pegasus
);
449 set_register(pegasus
, EpromOffset
, index
);
450 set_registers(pegasus
, EpromData
, 2, &data
);
451 set_register(pegasus
, EpromCtrl
, EPROM_WRITE
);
453 for (i
= 0; i
< REG_TIMEOUT
; i
++) {
454 ret
= get_registers(pegasus
, EpromCtrl
, 1, &tmp
);
455 if (ret
== -ESHUTDOWN
)
457 if (tmp
& EPROM_DONE
)
460 disable_eprom_write(pegasus
);
464 if (netif_msg_drv(pegasus
))
465 dev_warn(&pegasus
->intf
->dev
, "%s failed\n", __FUNCTION__
);
468 #endif /* PEGASUS_WRITE_EEPROM */
470 static inline void get_node_id(pegasus_t
* pegasus
, __u8
* id
)
475 for (i
= 0; i
< 3; i
++) {
476 read_eprom_word(pegasus
, i
, &w16
);
477 ((__le16
*) id
)[i
] = cpu_to_le16p(&w16
);
481 static void set_ethernet_addr(pegasus_t
* pegasus
)
485 if (pegasus
->features
& PEGASUS_II
) {
486 get_registers(pegasus
, 0x10, sizeof(node_id
), node_id
);
488 get_node_id(pegasus
, node_id
);
489 set_registers(pegasus
, EthID
, sizeof (node_id
), node_id
);
491 memcpy(pegasus
->net
->dev_addr
, node_id
, sizeof (node_id
));
494 static inline int reset_mac(pegasus_t
* pegasus
)
499 set_register(pegasus
, EthCtrl1
, data
);
500 for (i
= 0; i
< REG_TIMEOUT
; i
++) {
501 get_registers(pegasus
, EthCtrl1
, 1, &data
);
505 if (mii_mode
&& (pegasus
->features
& HAS_HOME_PNA
))
506 set_register(pegasus
, Gpio1
, 0x34);
508 set_register(pegasus
, Gpio1
, 0x26);
509 set_register(pegasus
, Gpio0
, pegasus
->features
);
510 set_register(pegasus
, Gpio0
, DEFAULT_GPIO_SET
);
514 if (i
== REG_TIMEOUT
)
517 if (usb_dev_id
[pegasus
->dev_index
].vendor
== VENDOR_LINKSYS
||
518 usb_dev_id
[pegasus
->dev_index
].vendor
== VENDOR_DLINK
) {
519 set_register(pegasus
, Gpio0
, 0x24);
520 set_register(pegasus
, Gpio0
, 0x26);
522 if (usb_dev_id
[pegasus
->dev_index
].vendor
== VENDOR_ELCON
) {
524 read_mii_word(pegasus
, 3, 0x1b, &auxmode
);
525 write_mii_word(pegasus
, 3, 0x1b, auxmode
| 4);
531 static int enable_net_traffic(struct net_device
*dev
, struct usb_device
*usb
)
535 pegasus_t
*pegasus
= netdev_priv(dev
);
538 read_mii_word(pegasus
, pegasus
->phy
, MII_LPA
, &linkpart
);
541 if (linkpart
& (ADVERTISE_100FULL
| ADVERTISE_10FULL
))
542 data
[1] |= 0x20; /* set full duplex */
543 if (linkpart
& (ADVERTISE_100FULL
| ADVERTISE_100HALF
))
544 data
[1] |= 0x10; /* set 100 Mbps */
547 data
[2] = (loopback
& 1) ? 0x09 : 0x01;
549 memcpy(pegasus
->eth_regs
, data
, sizeof (data
));
550 ret
= set_registers(pegasus
, EthCtrl0
, 3, data
);
552 if (usb_dev_id
[pegasus
->dev_index
].vendor
== VENDOR_LINKSYS
||
553 usb_dev_id
[pegasus
->dev_index
].vendor
== VENDOR_LINKSYS2
||
554 usb_dev_id
[pegasus
->dev_index
].vendor
== VENDOR_DLINK
) {
556 read_mii_word(pegasus
, 0, 0x1b, &auxmode
);
557 write_mii_word(pegasus
, 0, 0x1b, auxmode
| 4);
563 static void fill_skb_pool(pegasus_t
* pegasus
)
567 for (i
= 0; i
< RX_SKBS
; i
++) {
568 if (pegasus
->rx_pool
[i
])
570 pegasus
->rx_pool
[i
] = dev_alloc_skb(PEGASUS_MTU
+ 2);
572 ** we give up if the allocation fail. the tasklet will be
573 ** rescheduled again anyway...
575 if (pegasus
->rx_pool
[i
] == NULL
)
577 pegasus
->rx_pool
[i
]->dev
= pegasus
->net
;
578 skb_reserve(pegasus
->rx_pool
[i
], 2);
582 static void free_skb_pool(pegasus_t
* pegasus
)
586 for (i
= 0; i
< RX_SKBS
; i
++) {
587 if (pegasus
->rx_pool
[i
]) {
588 dev_kfree_skb(pegasus
->rx_pool
[i
]);
589 pegasus
->rx_pool
[i
] = NULL
;
594 static inline struct sk_buff
*pull_skb(pegasus_t
* pegasus
)
599 for (i
= 0; i
< RX_SKBS
; i
++) {
600 if (likely(pegasus
->rx_pool
[i
] != NULL
)) {
601 skb
= pegasus
->rx_pool
[i
];
602 pegasus
->rx_pool
[i
] = NULL
;
609 static void read_bulk_callback(struct urb
*urb
)
611 pegasus_t
*pegasus
= urb
->context
;
612 struct net_device
*net
;
613 int rx_status
, count
= urb
->actual_length
;
614 u8
*buf
= urb
->transfer_buffer
;
621 if (!netif_device_present(net
) || !netif_running(net
))
624 switch (urb
->status
) {
628 if (netif_msg_rx_err(pegasus
))
629 pr_debug("%s: reset MAC\n", net
->name
);
630 pegasus
->flags
&= ~PEGASUS_RX_BUSY
;
632 case -EPIPE
: /* stall, or disconnect from TT */
633 /* FIXME schedule work to clear the halt */
634 if (netif_msg_rx_err(pegasus
))
635 printk(KERN_WARNING
"%s: no rx stall recovery\n",
641 if (netif_msg_ifdown(pegasus
))
642 pr_debug("%s: rx unlink, %d\n", net
->name
, urb
->status
);
645 if (netif_msg_rx_err(pegasus
))
646 pr_debug("%s: RX status %d\n", net
->name
, urb
->status
);
650 if (!count
|| count
< 4)
653 rx_status
= buf
[count
- 2];
654 if (rx_status
& 0x1e) {
655 if (netif_msg_rx_err(pegasus
))
656 pr_debug("%s: RX packet error %x\n",
657 net
->name
, rx_status
);
658 pegasus
->stats
.rx_errors
++;
659 if (rx_status
& 0x06) // long or runt
660 pegasus
->stats
.rx_length_errors
++;
661 if (rx_status
& 0x08)
662 pegasus
->stats
.rx_crc_errors
++;
663 if (rx_status
& 0x10) // extra bits
664 pegasus
->stats
.rx_frame_errors
++;
667 if (pegasus
->chip
== 0x8513) {
668 pkt_len
= le32_to_cpu(*(__le32
*)urb
->transfer_buffer
);
670 pegasus
->rx_skb
->data
+= 2;
672 pkt_len
= buf
[count
- 3] << 8;
673 pkt_len
+= buf
[count
- 4];
679 * If the packet is unreasonably long, quietly drop it rather than
680 * kernel panicing by calling skb_put.
682 if (pkt_len
> PEGASUS_MTU
)
686 * at this point we are sure pegasus->rx_skb != NULL
687 * so we go ahead and pass up the packet.
689 skb_put(pegasus
->rx_skb
, pkt_len
);
690 pegasus
->rx_skb
->protocol
= eth_type_trans(pegasus
->rx_skb
, net
);
691 netif_rx(pegasus
->rx_skb
);
692 pegasus
->stats
.rx_packets
++;
693 pegasus
->stats
.rx_bytes
+= pkt_len
;
695 if (pegasus
->flags
& PEGASUS_UNPLUG
)
698 spin_lock(&pegasus
->rx_pool_lock
);
699 pegasus
->rx_skb
= pull_skb(pegasus
);
700 spin_unlock(&pegasus
->rx_pool_lock
);
702 if (pegasus
->rx_skb
== NULL
)
705 usb_fill_bulk_urb(pegasus
->rx_urb
, pegasus
->usb
,
706 usb_rcvbulkpipe(pegasus
->usb
, 1),
707 pegasus
->rx_skb
->data
, PEGASUS_MTU
+ 8,
708 read_bulk_callback
, pegasus
);
709 rx_status
= usb_submit_urb(pegasus
->rx_urb
, GFP_ATOMIC
);
710 if (rx_status
== -ENODEV
)
711 netif_device_detach(pegasus
->net
);
712 else if (rx_status
) {
713 pegasus
->flags
|= PEGASUS_RX_URB_FAIL
;
716 pegasus
->flags
&= ~PEGASUS_RX_URB_FAIL
;
722 tasklet_schedule(&pegasus
->rx_tl
);
725 static void rx_fixup(unsigned long data
)
731 pegasus
= (pegasus_t
*) data
;
732 if (pegasus
->flags
& PEGASUS_UNPLUG
)
735 spin_lock_irqsave(&pegasus
->rx_pool_lock
, flags
);
736 fill_skb_pool(pegasus
);
737 if (pegasus
->flags
& PEGASUS_RX_URB_FAIL
)
740 if (pegasus
->rx_skb
== NULL
) {
741 pegasus
->rx_skb
= pull_skb(pegasus
);
743 if (pegasus
->rx_skb
== NULL
) {
744 if (netif_msg_rx_err(pegasus
))
745 printk(KERN_WARNING
"%s: low on memory\n",
747 tasklet_schedule(&pegasus
->rx_tl
);
750 usb_fill_bulk_urb(pegasus
->rx_urb
, pegasus
->usb
,
751 usb_rcvbulkpipe(pegasus
->usb
, 1),
752 pegasus
->rx_skb
->data
, PEGASUS_MTU
+ 8,
753 read_bulk_callback
, pegasus
);
755 status
= usb_submit_urb(pegasus
->rx_urb
, GFP_ATOMIC
);
756 if (status
== -ENODEV
)
757 netif_device_detach(pegasus
->net
);
759 pegasus
->flags
|= PEGASUS_RX_URB_FAIL
;
760 tasklet_schedule(&pegasus
->rx_tl
);
762 pegasus
->flags
&= ~PEGASUS_RX_URB_FAIL
;
765 spin_unlock_irqrestore(&pegasus
->rx_pool_lock
, flags
);
768 static void write_bulk_callback(struct urb
*urb
)
770 pegasus_t
*pegasus
= urb
->context
;
771 struct net_device
*net
= pegasus
->net
;
776 if (!netif_device_present(net
) || !netif_running(net
))
779 switch (urb
->status
) {
781 /* FIXME schedule_work() to clear the tx halt */
782 netif_stop_queue(net
);
783 if (netif_msg_tx_err(pegasus
))
784 printk(KERN_WARNING
"%s: no tx stall recovery\n",
790 if (netif_msg_ifdown(pegasus
))
791 pr_debug("%s: tx unlink, %d\n", net
->name
, urb
->status
);
794 if (netif_msg_tx_err(pegasus
))
795 pr_info("%s: TX status %d\n", net
->name
, urb
->status
);
801 net
->trans_start
= jiffies
;
802 netif_wake_queue(net
);
805 static void intr_callback(struct urb
*urb
)
807 pegasus_t
*pegasus
= urb
->context
;
808 struct net_device
*net
;
815 switch (urb
->status
) {
818 case -ECONNRESET
: /* unlink */
823 /* some Pegasus-I products report LOTS of data
824 * toggle errors... avoid log spamming
826 if (netif_msg_timer(pegasus
))
827 pr_debug("%s: intr status %d\n", net
->name
,
831 if (urb
->actual_length
>= 6) {
832 u8
* d
= urb
->transfer_buffer
;
834 /* byte 0 == tx_status1, reg 2B */
835 if (d
[0] & (TX_UNDERRUN
|EXCESSIVE_COL
836 |LATE_COL
|JABBER_TIMEOUT
)) {
837 pegasus
->stats
.tx_errors
++;
838 if (d
[0] & TX_UNDERRUN
)
839 pegasus
->stats
.tx_fifo_errors
++;
840 if (d
[0] & (EXCESSIVE_COL
| JABBER_TIMEOUT
))
841 pegasus
->stats
.tx_aborted_errors
++;
843 pegasus
->stats
.tx_window_errors
++;
846 /* d[5].LINK_STATUS lies on some adapters.
847 * d[0].NO_CARRIER kicks in only with failed TX.
848 * ... so monitoring with MII may be safest.
850 if (d
[0] & NO_CARRIER
)
851 netif_carrier_off(net
);
853 netif_carrier_on(net
);
855 /* bytes 3-4 == rx_lostpkt, reg 2E/2F */
856 pegasus
->stats
.rx_missed_errors
+= ((d
[3] & 0x7f) << 8) | d
[4];
859 status
= usb_submit_urb(urb
, GFP_ATOMIC
);
860 if (status
== -ENODEV
)
861 netif_device_detach(pegasus
->net
);
862 if (status
&& netif_msg_timer(pegasus
))
863 printk(KERN_ERR
"%s: can't resubmit interrupt urb, %d\n",
867 static void pegasus_tx_timeout(struct net_device
*net
)
869 pegasus_t
*pegasus
= netdev_priv(net
);
870 if (netif_msg_timer(pegasus
))
871 printk(KERN_WARNING
"%s: tx timeout\n", net
->name
);
872 usb_unlink_urb(pegasus
->tx_urb
);
873 pegasus
->stats
.tx_errors
++;
876 static int pegasus_start_xmit(struct sk_buff
*skb
, struct net_device
*net
)
878 pegasus_t
*pegasus
= netdev_priv(net
);
879 int count
= ((skb
->len
+ 2) & 0x3f) ? skb
->len
+ 2 : skb
->len
+ 3;
881 __u16 l16
= skb
->len
;
883 netif_stop_queue(net
);
885 ((__le16
*) pegasus
->tx_buff
)[0] = cpu_to_le16(l16
);
886 memcpy(pegasus
->tx_buff
+ 2, skb
->data
, skb
->len
);
887 usb_fill_bulk_urb(pegasus
->tx_urb
, pegasus
->usb
,
888 usb_sndbulkpipe(pegasus
->usb
, 2),
889 pegasus
->tx_buff
, count
,
890 write_bulk_callback
, pegasus
);
891 if ((res
= usb_submit_urb(pegasus
->tx_urb
, GFP_ATOMIC
))) {
892 if (netif_msg_tx_err(pegasus
))
893 printk(KERN_WARNING
"%s: fail tx, %d\n",
896 case -EPIPE
: /* stall, or disconnect from TT */
897 /* cleanup should already have been scheduled */
899 case -ENODEV
: /* disconnect() upcoming */
900 netif_device_detach(pegasus
->net
);
903 pegasus
->stats
.tx_errors
++;
904 netif_start_queue(net
);
907 pegasus
->stats
.tx_packets
++;
908 pegasus
->stats
.tx_bytes
+= skb
->len
;
909 net
->trans_start
= jiffies
;
916 static struct net_device_stats
*pegasus_netdev_stats(struct net_device
*dev
)
918 return &((pegasus_t
*) netdev_priv(dev
))->stats
;
921 static inline void disable_net_traffic(pegasus_t
* pegasus
)
925 set_registers(pegasus
, EthCtrl0
, 2, &tmp
);
928 static inline void get_interrupt_interval(pegasus_t
* pegasus
)
932 read_eprom_word(pegasus
, 4, (__u16
*) data
);
933 if (pegasus
->usb
->speed
!= USB_SPEED_HIGH
) {
934 if (data
[1] < 0x80) {
935 if (netif_msg_timer(pegasus
))
936 dev_info(&pegasus
->intf
->dev
, "intr interval "
937 "changed from %ums to %ums\n",
940 #ifdef PEGASUS_WRITE_EEPROM
941 write_eprom_word(pegasus
, 4, *(__u16
*) data
);
945 pegasus
->intr_interval
= data
[1];
948 static void set_carrier(struct net_device
*net
)
950 pegasus_t
*pegasus
= netdev_priv(net
);
953 if (!read_mii_word(pegasus
, pegasus
->phy
, MII_BMSR
, &tmp
))
956 if (tmp
& BMSR_LSTATUS
)
957 netif_carrier_on(net
);
959 netif_carrier_off(net
);
962 static void free_all_urbs(pegasus_t
* pegasus
)
964 usb_free_urb(pegasus
->intr_urb
);
965 usb_free_urb(pegasus
->tx_urb
);
966 usb_free_urb(pegasus
->rx_urb
);
967 usb_free_urb(pegasus
->ctrl_urb
);
970 static void unlink_all_urbs(pegasus_t
* pegasus
)
972 usb_kill_urb(pegasus
->intr_urb
);
973 usb_kill_urb(pegasus
->tx_urb
);
974 usb_kill_urb(pegasus
->rx_urb
);
975 usb_kill_urb(pegasus
->ctrl_urb
);
978 static int alloc_urbs(pegasus_t
* pegasus
)
980 pegasus
->ctrl_urb
= usb_alloc_urb(0, GFP_KERNEL
);
981 if (!pegasus
->ctrl_urb
) {
984 pegasus
->rx_urb
= usb_alloc_urb(0, GFP_KERNEL
);
985 if (!pegasus
->rx_urb
) {
986 usb_free_urb(pegasus
->ctrl_urb
);
989 pegasus
->tx_urb
= usb_alloc_urb(0, GFP_KERNEL
);
990 if (!pegasus
->tx_urb
) {
991 usb_free_urb(pegasus
->rx_urb
);
992 usb_free_urb(pegasus
->ctrl_urb
);
995 pegasus
->intr_urb
= usb_alloc_urb(0, GFP_KERNEL
);
996 if (!pegasus
->intr_urb
) {
997 usb_free_urb(pegasus
->tx_urb
);
998 usb_free_urb(pegasus
->rx_urb
);
999 usb_free_urb(pegasus
->ctrl_urb
);
1006 static int pegasus_open(struct net_device
*net
)
1008 pegasus_t
*pegasus
= netdev_priv(net
);
1011 if (pegasus
->rx_skb
== NULL
)
1012 pegasus
->rx_skb
= pull_skb(pegasus
);
1014 ** Note: no point to free the pool. it is empty :-)
1016 if (!pegasus
->rx_skb
)
1019 res
= set_registers(pegasus
, EthID
, 6, net
->dev_addr
);
1021 usb_fill_bulk_urb(pegasus
->rx_urb
, pegasus
->usb
,
1022 usb_rcvbulkpipe(pegasus
->usb
, 1),
1023 pegasus
->rx_skb
->data
, PEGASUS_MTU
+ 8,
1024 read_bulk_callback
, pegasus
);
1025 if ((res
= usb_submit_urb(pegasus
->rx_urb
, GFP_KERNEL
))) {
1027 netif_device_detach(pegasus
->net
);
1028 if (netif_msg_ifup(pegasus
))
1029 pr_debug("%s: failed rx_urb, %d", net
->name
, res
);
1033 usb_fill_int_urb(pegasus
->intr_urb
, pegasus
->usb
,
1034 usb_rcvintpipe(pegasus
->usb
, 3),
1035 pegasus
->intr_buff
, sizeof (pegasus
->intr_buff
),
1036 intr_callback
, pegasus
, pegasus
->intr_interval
);
1037 if ((res
= usb_submit_urb(pegasus
->intr_urb
, GFP_KERNEL
))) {
1039 netif_device_detach(pegasus
->net
);
1040 if (netif_msg_ifup(pegasus
))
1041 pr_debug("%s: failed intr_urb, %d\n", net
->name
, res
);
1042 usb_kill_urb(pegasus
->rx_urb
);
1045 if ((res
= enable_net_traffic(net
, pegasus
->usb
))) {
1046 if (netif_msg_ifup(pegasus
))
1047 pr_debug("%s: can't enable_net_traffic() - %d\n",
1050 usb_kill_urb(pegasus
->rx_urb
);
1051 usb_kill_urb(pegasus
->intr_urb
);
1052 free_skb_pool(pegasus
);
1056 netif_start_queue(net
);
1057 if (netif_msg_ifup(pegasus
))
1058 pr_debug("%s: open\n", net
->name
);
1064 static int pegasus_close(struct net_device
*net
)
1066 pegasus_t
*pegasus
= netdev_priv(net
);
1068 netif_stop_queue(net
);
1069 if (!(pegasus
->flags
& PEGASUS_UNPLUG
))
1070 disable_net_traffic(pegasus
);
1071 tasklet_kill(&pegasus
->rx_tl
);
1072 unlink_all_urbs(pegasus
);
1077 static void pegasus_get_drvinfo(struct net_device
*dev
,
1078 struct ethtool_drvinfo
*info
)
1080 pegasus_t
*pegasus
= netdev_priv(dev
);
1081 strncpy(info
->driver
, driver_name
, sizeof (info
->driver
) - 1);
1082 strncpy(info
->version
, DRIVER_VERSION
, sizeof (info
->version
) - 1);
1083 usb_make_path(pegasus
->usb
, info
->bus_info
, sizeof (info
->bus_info
));
1086 /* also handles three patterns of some kind in hardware */
1087 #define WOL_SUPPORTED (WAKE_MAGIC|WAKE_PHY)
1090 pegasus_get_wol(struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
1092 pegasus_t
*pegasus
= netdev_priv(dev
);
1094 wol
->supported
= WAKE_MAGIC
| WAKE_PHY
;
1095 wol
->wolopts
= pegasus
->wolopts
;
1099 pegasus_set_wol(struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
1101 pegasus_t
*pegasus
= netdev_priv(dev
);
1104 if (wol
->wolopts
& ~WOL_SUPPORTED
)
1107 if (wol
->wolopts
& WAKE_MAGIC
)
1109 if (wol
->wolopts
& WAKE_PHY
)
1111 /* FIXME this 0x10 bit still needs to get set in the chip... */
1113 pegasus
->eth_regs
[0] |= 0x10;
1115 pegasus
->eth_regs
[0] &= ~0x10;
1116 pegasus
->wolopts
= wol
->wolopts
;
1117 return set_register(pegasus
, WakeupControl
, reg78
);
1120 static inline void pegasus_reset_wol(struct net_device
*dev
)
1122 struct ethtool_wolinfo wol
;
1124 memset(&wol
, 0, sizeof wol
);
1125 (void) pegasus_set_wol(dev
, &wol
);
1129 pegasus_get_settings(struct net_device
*dev
, struct ethtool_cmd
*ecmd
)
1136 pegasus
= netdev_priv(dev
);
1137 mii_ethtool_gset(&pegasus
->mii
, ecmd
);
1143 pegasus_set_settings(struct net_device
*dev
, struct ethtool_cmd
*ecmd
)
1145 pegasus_t
*pegasus
= netdev_priv(dev
);
1146 return mii_ethtool_sset(&pegasus
->mii
, ecmd
);
1149 static int pegasus_nway_reset(struct net_device
*dev
)
1151 pegasus_t
*pegasus
= netdev_priv(dev
);
1152 return mii_nway_restart(&pegasus
->mii
);
1155 static u32
pegasus_get_link(struct net_device
*dev
)
1157 pegasus_t
*pegasus
= netdev_priv(dev
);
1158 return mii_link_ok(&pegasus
->mii
);
1161 static u32
pegasus_get_msglevel(struct net_device
*dev
)
1163 pegasus_t
*pegasus
= netdev_priv(dev
);
1164 return pegasus
->msg_enable
;
1167 static void pegasus_set_msglevel(struct net_device
*dev
, u32 v
)
1169 pegasus_t
*pegasus
= netdev_priv(dev
);
1170 pegasus
->msg_enable
= v
;
1173 static struct ethtool_ops ops
= {
1174 .get_drvinfo
= pegasus_get_drvinfo
,
1175 .get_settings
= pegasus_get_settings
,
1176 .set_settings
= pegasus_set_settings
,
1177 .nway_reset
= pegasus_nway_reset
,
1178 .get_link
= pegasus_get_link
,
1179 .get_msglevel
= pegasus_get_msglevel
,
1180 .set_msglevel
= pegasus_set_msglevel
,
1181 .get_wol
= pegasus_get_wol
,
1182 .set_wol
= pegasus_set_wol
,
1185 static int pegasus_ioctl(struct net_device
*net
, struct ifreq
*rq
, int cmd
)
1187 __u16
*data
= (__u16
*) & rq
->ifr_ifru
;
1188 pegasus_t
*pegasus
= netdev_priv(net
);
1192 case SIOCDEVPRIVATE
:
1193 data
[0] = pegasus
->phy
;
1194 case SIOCDEVPRIVATE
+ 1:
1195 read_mii_word(pegasus
, data
[0], data
[1] & 0x1f, &data
[3]);
1198 case SIOCDEVPRIVATE
+ 2:
1199 if (!capable(CAP_NET_ADMIN
))
1201 write_mii_word(pegasus
, pegasus
->phy
, data
[1] & 0x1f, data
[2]);
1210 static void pegasus_set_multicast(struct net_device
*net
)
1212 pegasus_t
*pegasus
= netdev_priv(net
);
1214 if (net
->flags
& IFF_PROMISC
) {
1215 pegasus
->eth_regs
[EthCtrl2
] |= RX_PROMISCUOUS
;
1216 if (netif_msg_link(pegasus
))
1217 pr_info("%s: Promiscuous mode enabled.\n", net
->name
);
1218 } else if (net
->mc_count
||
1219 (net
->flags
& IFF_ALLMULTI
)) {
1220 pegasus
->eth_regs
[EthCtrl0
] |= RX_MULTICAST
;
1221 pegasus
->eth_regs
[EthCtrl2
] &= ~RX_PROMISCUOUS
;
1222 if (netif_msg_link(pegasus
))
1223 pr_info("%s: set allmulti\n", net
->name
);
1225 pegasus
->eth_regs
[EthCtrl0
] &= ~RX_MULTICAST
;
1226 pegasus
->eth_regs
[EthCtrl2
] &= ~RX_PROMISCUOUS
;
1229 pegasus
->flags
|= ETH_REGS_CHANGE
;
1230 ctrl_callback(pegasus
->ctrl_urb
);
1233 static __u8
mii_phy_probe(pegasus_t
* pegasus
)
1238 for (i
= 0; i
< 32; i
++) {
1239 read_mii_word(pegasus
, i
, MII_BMSR
, &tmp
);
1240 if (tmp
== 0 || tmp
== 0xffff || (tmp
& BMSR_MEDIA
) == 0)
1249 static inline void setup_pegasus_II(pegasus_t
* pegasus
)
1253 set_register(pegasus
, Reg1d
, 0);
1254 set_register(pegasus
, Reg7b
, 1);
1256 if ((pegasus
->features
& HAS_HOME_PNA
) && mii_mode
)
1257 set_register(pegasus
, Reg7b
, 0);
1259 set_register(pegasus
, Reg7b
, 2);
1261 set_register(pegasus
, 0x83, data
);
1262 get_registers(pegasus
, 0x83, 1, &data
);
1265 pegasus
->chip
= 0x8513;
1270 set_register(pegasus
, 0x80, 0xc0);
1271 set_register(pegasus
, 0x83, 0xff);
1272 set_register(pegasus
, 0x84, 0x01);
1274 if (pegasus
->features
& HAS_HOME_PNA
&& mii_mode
)
1275 set_register(pegasus
, Reg81
, 6);
1277 set_register(pegasus
, Reg81
, 2);
1281 static struct workqueue_struct
*pegasus_workqueue
= NULL
;
1282 #define CARRIER_CHECK_DELAY (2 * HZ)
1284 static void check_carrier(struct work_struct
*work
)
1286 pegasus_t
*pegasus
= container_of(work
, pegasus_t
, carrier_check
.work
);
1287 set_carrier(pegasus
->net
);
1288 if (!(pegasus
->flags
& PEGASUS_UNPLUG
)) {
1289 queue_delayed_work(pegasus_workqueue
, &pegasus
->carrier_check
,
1290 CARRIER_CHECK_DELAY
);
1294 static int pegasus_probe(struct usb_interface
*intf
,
1295 const struct usb_device_id
*id
)
1297 struct usb_device
*dev
= interface_to_usbdev(intf
);
1298 struct net_device
*net
;
1300 int dev_index
= id
- pegasus_ids
;
1304 net
= alloc_etherdev(sizeof(struct pegasus
));
1306 dev_err(&intf
->dev
, "can't allocate %s\n", "device");
1310 pegasus
= netdev_priv(net
);
1311 memset(pegasus
, 0, sizeof (struct pegasus
));
1312 pegasus
->dev_index
= dev_index
;
1313 init_waitqueue_head(&pegasus
->ctrl_wait
);
1315 if (!alloc_urbs(pegasus
)) {
1316 dev_err(&intf
->dev
, "can't allocate %s\n", "urbs");
1320 tasklet_init(&pegasus
->rx_tl
, rx_fixup
, (unsigned long) pegasus
);
1322 INIT_DELAYED_WORK(&pegasus
->carrier_check
, check_carrier
);
1324 pegasus
->intf
= intf
;
1327 SET_MODULE_OWNER(net
);
1328 net
->open
= pegasus_open
;
1329 net
->stop
= pegasus_close
;
1330 net
->watchdog_timeo
= PEGASUS_TX_TIMEOUT
;
1331 net
->tx_timeout
= pegasus_tx_timeout
;
1332 net
->do_ioctl
= pegasus_ioctl
;
1333 net
->hard_start_xmit
= pegasus_start_xmit
;
1334 net
->set_multicast_list
= pegasus_set_multicast
;
1335 net
->get_stats
= pegasus_netdev_stats
;
1336 SET_ETHTOOL_OPS(net
, &ops
);
1337 pegasus
->mii
.dev
= net
;
1338 pegasus
->mii
.mdio_read
= mdio_read
;
1339 pegasus
->mii
.mdio_write
= mdio_write
;
1340 pegasus
->mii
.phy_id_mask
= 0x1f;
1341 pegasus
->mii
.reg_num_mask
= 0x1f;
1342 spin_lock_init(&pegasus
->rx_pool_lock
);
1343 pegasus
->msg_enable
= netif_msg_init (msg_level
, NETIF_MSG_DRV
1344 | NETIF_MSG_PROBE
| NETIF_MSG_LINK
);
1346 pegasus
->features
= usb_dev_id
[dev_index
].private;
1347 get_interrupt_interval(pegasus
);
1348 if (reset_mac(pegasus
)) {
1349 dev_err(&intf
->dev
, "can't reset MAC\n");
1353 set_ethernet_addr(pegasus
);
1354 fill_skb_pool(pegasus
);
1355 if (pegasus
->features
& PEGASUS_II
) {
1356 dev_info(&intf
->dev
, "setup Pegasus II specific registers\n");
1357 setup_pegasus_II(pegasus
);
1359 pegasus
->phy
= mii_phy_probe(pegasus
);
1360 if (pegasus
->phy
== 0xff) {
1361 dev_warn(&intf
->dev
, "can't locate MII phy, using default\n");
1364 pegasus
->mii
.phy_id
= pegasus
->phy
;
1365 usb_set_intfdata(intf
, pegasus
);
1366 SET_NETDEV_DEV(net
, &intf
->dev
);
1367 pegasus_reset_wol(net
);
1368 res
= register_netdev(net
);
1371 queue_delayed_work(pegasus_workqueue
, &pegasus
->carrier_check
,
1372 CARRIER_CHECK_DELAY
);
1374 dev_info(&intf
->dev
, "%s, %s, %02x:%02x:%02x:%02x:%02x:%02x\n",
1376 usb_dev_id
[dev_index
].name
,
1377 net
->dev_addr
[0], net
->dev_addr
[1],
1378 net
->dev_addr
[2], net
->dev_addr
[3],
1379 net
->dev_addr
[4], net
->dev_addr
[5]);
1383 usb_set_intfdata(intf
, NULL
);
1384 free_skb_pool(pegasus
);
1386 free_all_urbs(pegasus
);
1394 static void pegasus_disconnect(struct usb_interface
*intf
)
1396 struct pegasus
*pegasus
= usb_get_intfdata(intf
);
1398 usb_set_intfdata(intf
, NULL
);
1400 dev_dbg(&intf
->dev
, "unregistering non-bound device?\n");
1404 pegasus
->flags
|= PEGASUS_UNPLUG
;
1405 cancel_delayed_work(&pegasus
->carrier_check
);
1406 unregister_netdev(pegasus
->net
);
1407 usb_put_dev(interface_to_usbdev(intf
));
1408 unlink_all_urbs(pegasus
);
1409 free_all_urbs(pegasus
);
1410 free_skb_pool(pegasus
);
1411 if (pegasus
->rx_skb
)
1412 dev_kfree_skb(pegasus
->rx_skb
);
1413 free_netdev(pegasus
->net
);
1416 static int pegasus_suspend (struct usb_interface
*intf
, pm_message_t message
)
1418 struct pegasus
*pegasus
= usb_get_intfdata(intf
);
1420 netif_device_detach (pegasus
->net
);
1421 cancel_delayed_work(&pegasus
->carrier_check
);
1422 if (netif_running(pegasus
->net
)) {
1423 usb_kill_urb(pegasus
->rx_urb
);
1424 usb_kill_urb(pegasus
->intr_urb
);
1429 static int pegasus_resume (struct usb_interface
*intf
)
1431 struct pegasus
*pegasus
= usb_get_intfdata(intf
);
1433 netif_device_attach (pegasus
->net
);
1434 if (netif_running(pegasus
->net
)) {
1435 pegasus
->rx_urb
->status
= 0;
1436 pegasus
->rx_urb
->actual_length
= 0;
1437 read_bulk_callback(pegasus
->rx_urb
);
1439 pegasus
->intr_urb
->status
= 0;
1440 pegasus
->intr_urb
->actual_length
= 0;
1441 intr_callback(pegasus
->intr_urb
);
1443 queue_delayed_work(pegasus_workqueue
, &pegasus
->carrier_check
,
1444 CARRIER_CHECK_DELAY
);
1448 static struct usb_driver pegasus_driver
= {
1449 .name
= driver_name
,
1450 .probe
= pegasus_probe
,
1451 .disconnect
= pegasus_disconnect
,
1452 .id_table
= pegasus_ids
,
1453 .suspend
= pegasus_suspend
,
1454 .resume
= pegasus_resume
,
1457 static void parse_id(char *id
)
1459 unsigned int vendor_id
=0, device_id
=0, flags
=0, i
=0;
1460 char *token
, *name
=NULL
;
1462 if ((token
= strsep(&id
, ":")) != NULL
)
1464 /* name now points to a null terminated string*/
1465 if ((token
= strsep(&id
, ":")) != NULL
)
1466 vendor_id
= simple_strtoul(token
, NULL
, 16);
1467 if ((token
= strsep(&id
, ":")) != NULL
)
1468 device_id
= simple_strtoul(token
, NULL
, 16);
1469 flags
= simple_strtoul(id
, NULL
, 16);
1470 pr_info("%s: new device %s, vendor ID 0x%04x, device ID 0x%04x, flags: 0x%x\n",
1471 driver_name
, name
, vendor_id
, device_id
, flags
);
1473 if (vendor_id
> 0x10000 || vendor_id
== 0)
1475 if (device_id
> 0x10000 || device_id
== 0)
1478 for (i
=0; usb_dev_id
[i
].name
; i
++);
1479 usb_dev_id
[i
].name
= name
;
1480 usb_dev_id
[i
].vendor
= vendor_id
;
1481 usb_dev_id
[i
].device
= device_id
;
1482 usb_dev_id
[i
].private = flags
;
1483 pegasus_ids
[i
].match_flags
= USB_DEVICE_ID_MATCH_DEVICE
;
1484 pegasus_ids
[i
].idVendor
= vendor_id
;
1485 pegasus_ids
[i
].idProduct
= device_id
;
1488 static int __init
pegasus_init(void)
1490 pr_info("%s: %s, " DRIVER_DESC
"\n", driver_name
, DRIVER_VERSION
);
1493 pegasus_workqueue
= create_singlethread_workqueue("pegasus");
1494 if (!pegasus_workqueue
)
1496 return usb_register(&pegasus_driver
);
1499 static void __exit
pegasus_exit(void)
1501 destroy_workqueue(pegasus_workqueue
);
1502 usb_deregister(&pegasus_driver
);
1505 module_init(pegasus_init
);
1506 module_exit(pegasus_exit
);