4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * version 2 as published by the Free Software Foundation.
9 #include <linux/signal.h>
10 #include <linux/slab.h>
11 #include <linux/module.h>
12 #include <linux/netdevice.h>
13 #include <linux/etherdevice.h>
14 #include <linux/mii.h>
15 #include <linux/ethtool.h>
16 #include <linux/usb.h>
17 #include <asm/uaccess.h>
19 /* Version Information */
20 #define DRIVER_VERSION "v0.6.2 (2004/08/27)"
22 #define DRIVER_DESC "rtl8150 based usb-ethernet driver"
43 #define CSCR 0x014C /* This one has the link status */
44 #define CSCR_LINK_STATUS (1 << 3)
46 #define IDR_EEPROM 0x1202
49 #define PHY_WRITE 0x20
52 #define MII_TIMEOUT 10
55 #define RTL8150_REQT_READ 0xc0
56 #define RTL8150_REQT_WRITE 0x40
57 #define RTL8150_REQ_GET_REGS 0x05
58 #define RTL8150_REQ_SET_REGS 0x05
61 /* Transmit status register errors */
62 #define TSR_ECOL (1<<5)
63 #define TSR_LCOL (1<<4)
64 #define TSR_LOSS_CRS (1<<3)
65 #define TSR_JBR (1<<2)
66 #define TSR_ERRORS (TSR_ECOL | TSR_LCOL | TSR_LOSS_CRS | TSR_JBR)
67 /* Receive status register errors */
68 #define RSR_CRC (1<<2)
69 #define RSR_FAE (1<<1)
70 #define RSR_ERRORS (RSR_CRC | RSR_FAE)
72 /* Media status register definitions */
73 #define MSR_DUPLEX (1<<4)
74 #define MSR_SPEED (1<<3)
75 #define MSR_LINK (1<<2)
77 /* Interrupt pipe data */
81 #define INT_WAKSR 0x03
82 #define INT_TXOK_CNT 0x04
83 #define INT_RXLOST_CNT 0x05
84 #define INT_CRERR_CNT 0x06
85 #define INT_COL_CNT 0x07
88 #define RTL8150_MTU 1540
89 #define RTL8150_TX_TIMEOUT (HZ)
90 #define RX_SKB_POOL_SIZE 4
93 #define RTL8150_HW_CRC 0
95 #define RTL8150_UNPLUG 2
98 /* Define these values to match your device */
99 #define VENDOR_ID_REALTEK 0x0bda
100 #define VENDOR_ID_MELCO 0x0411
101 #define VENDOR_ID_MICRONET 0x3980
102 #define VENDOR_ID_LONGSHINE 0x07b8
103 #define VENDOR_ID_OQO 0x1557
104 #define VENDOR_ID_ZYXEL 0x0586
106 #define PRODUCT_ID_RTL8150 0x8150
107 #define PRODUCT_ID_LUAKTX 0x0012
108 #define PRODUCT_ID_LCS8138TX 0x401a
109 #define PRODUCT_ID_SP128AR 0x0003
110 #define PRODUCT_ID_PRESTIGE 0x401a
114 /* table of devices that work with this driver */
115 static struct usb_device_id rtl8150_table[] = {
116 {USB_DEVICE(VENDOR_ID_REALTEK, PRODUCT_ID_RTL8150)},
117 {USB_DEVICE(VENDOR_ID_MELCO, PRODUCT_ID_LUAKTX)},
118 {USB_DEVICE(VENDOR_ID_MICRONET, PRODUCT_ID_SP128AR)},
119 {USB_DEVICE(VENDOR_ID_LONGSHINE, PRODUCT_ID_LCS8138TX)},
120 {USB_DEVICE(VENDOR_ID_OQO, PRODUCT_ID_RTL8150)},
121 {USB_DEVICE(VENDOR_ID_ZYXEL, PRODUCT_ID_PRESTIGE)},
125 MODULE_DEVICE_TABLE(usb, rtl8150_table);
129 struct usb_device *udev;
130 struct tasklet_struct tl;
131 struct net_device *netdev;
132 struct urb *rx_urb, *tx_urb, *intr_urb;
133 struct sk_buff *tx_skb, *rx_skb;
134 struct sk_buff *rx_skb_pool[RX_SKB_POOL_SIZE];
135 spinlock_t rx_pool_lock;
136 struct usb_ctrlrequest dr;
142 typedef struct rtl8150 rtl8150_t;
145 struct usb_ctrlrequest dr;
149 static const char driver_name [] = "rtl8150";
153 ** device related part of the code
156 static int get_registers(rtl8150_t * dev, u16 indx, u16 size, void *data)
158 return usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0),
159 RTL8150_REQ_GET_REGS, RTL8150_REQT_READ,
160 indx, 0, data, size, 500);
163 static int set_registers(rtl8150_t * dev, u16 indx, u16 size, void *data)
165 return usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0),
166 RTL8150_REQ_SET_REGS, RTL8150_REQT_WRITE,
167 indx, 0, data, size, 500);
170 static void async_set_reg_cb(struct urb *urb)
172 struct async_req *req = (struct async_req *)urb->context;
173 int status = urb->status;
176 dev_dbg(&urb->dev->dev, "%s failed with %d", __func__, status);
181 static int async_set_registers(rtl8150_t *dev, u16 indx, u16 size, u16 reg)
184 struct urb *async_urb;
185 struct async_req *req;
187 req = kmalloc(sizeof(struct async_req), GFP_ATOMIC);
190 async_urb = usb_alloc_urb(0, GFP_ATOMIC);
191 if (async_urb == NULL) {
195 req->rx_creg = cpu_to_le16(reg);
196 req->dr.bRequestType = RTL8150_REQT_WRITE;
197 req->dr.bRequest = RTL8150_REQ_SET_REGS;
199 req->dr.wValue = cpu_to_le16(indx);
200 req->dr.wLength = cpu_to_le16(size);
201 usb_fill_control_urb(async_urb, dev->udev,
202 usb_sndctrlpipe(dev->udev, 0), (void *)&req->dr,
203 &req->rx_creg, size, async_set_reg_cb, req);
204 res = usb_submit_urb(async_urb, GFP_ATOMIC);
207 netif_device_detach(dev->netdev);
208 dev_err(&dev->udev->dev, "%s failed with %d\n", __func__, res);
213 static int read_mii_word(rtl8150_t * dev, u8 phy, __u8 indx, u16 * reg)
219 data[1] = data[2] = 0;
220 tmp = indx | PHY_READ | PHY_GO;
223 set_registers(dev, PHYADD, sizeof(data), data);
224 set_registers(dev, PHYCNT, 1, &tmp);
226 get_registers(dev, PHYCNT, 1, data);
227 } while ((data[0] & PHY_GO) && (i++ < MII_TIMEOUT));
229 if (i <= MII_TIMEOUT) {
230 get_registers(dev, PHYDAT, 2, data);
231 *reg = data[0] | (data[1] << 8);
237 static int write_mii_word(rtl8150_t * dev, u8 phy, __u8 indx, u16 reg)
243 data[1] = reg & 0xff;
244 data[2] = (reg >> 8) & 0xff;
245 tmp = indx | PHY_WRITE | PHY_GO;
248 set_registers(dev, PHYADD, sizeof(data), data);
249 set_registers(dev, PHYCNT, 1, &tmp);
251 get_registers(dev, PHYCNT, 1, data);
252 } while ((data[0] & PHY_GO) && (i++ < MII_TIMEOUT));
254 if (i <= MII_TIMEOUT)
260 static inline void set_ethernet_addr(rtl8150_t * dev)
264 get_registers(dev, IDR, sizeof(node_id), node_id);
265 memcpy(dev->netdev->dev_addr, node_id, sizeof(node_id));
268 static int rtl8150_set_mac_address(struct net_device *netdev, void *p)
270 struct sockaddr *addr = p;
271 rtl8150_t *dev = netdev_priv(netdev);
273 if (netif_running(netdev))
276 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
277 netdev_dbg(netdev, "Setting MAC address to %pM\n", netdev->dev_addr);
278 /* Set the IDR registers. */
279 set_registers(dev, IDR, netdev->addr_len, netdev->dev_addr);
284 /* Get the CR contents. */
285 get_registers(dev, CR, 1, &cr);
286 /* Set the WEPROM bit (eeprom write enable). */
288 set_registers(dev, CR, 1, &cr);
289 /* Write the MAC address into eeprom. Eeprom writes must be word-sized,
290 so we need to split them up. */
291 for (i = 0; i * 2 < netdev->addr_len; i++) {
292 set_registers(dev, IDR_EEPROM + (i * 2), 2,
293 netdev->dev_addr + (i * 2));
295 /* Clear the WEPROM bit (preventing accidental eeprom writes). */
297 set_registers(dev, CR, 1, &cr);
303 static int rtl8150_reset(rtl8150_t * dev)
308 set_registers(dev, CR, 1, &data);
310 get_registers(dev, CR, 1, &data);
311 } while ((data & 0x10) && --i);
313 return (i > 0) ? 1 : 0;
316 static int alloc_all_urbs(rtl8150_t * dev)
318 dev->rx_urb = usb_alloc_urb(0, GFP_KERNEL);
321 dev->tx_urb = usb_alloc_urb(0, GFP_KERNEL);
323 usb_free_urb(dev->rx_urb);
326 dev->intr_urb = usb_alloc_urb(0, GFP_KERNEL);
327 if (!dev->intr_urb) {
328 usb_free_urb(dev->rx_urb);
329 usb_free_urb(dev->tx_urb);
336 static void free_all_urbs(rtl8150_t * dev)
338 usb_free_urb(dev->rx_urb);
339 usb_free_urb(dev->tx_urb);
340 usb_free_urb(dev->intr_urb);
343 static void unlink_all_urbs(rtl8150_t * dev)
345 usb_kill_urb(dev->rx_urb);
346 usb_kill_urb(dev->tx_urb);
347 usb_kill_urb(dev->intr_urb);
350 static inline struct sk_buff *pull_skb(rtl8150_t *dev)
355 for (i = 0; i < RX_SKB_POOL_SIZE; i++) {
356 if (dev->rx_skb_pool[i]) {
357 skb = dev->rx_skb_pool[i];
358 dev->rx_skb_pool[i] = NULL;
365 static void read_bulk_callback(struct urb *urb)
368 unsigned pkt_len, res;
370 struct net_device *netdev;
372 int status = urb->status;
378 if (test_bit(RTL8150_UNPLUG, &dev->flags))
380 netdev = dev->netdev;
381 if (!netif_device_present(netdev))
388 return; /* the urb is in unlink state */
390 if (printk_ratelimit())
391 dev_warn(&urb->dev->dev, "may be reset is needed?..\n");
394 if (printk_ratelimit())
395 dev_warn(&urb->dev->dev, "Rx status %d\n", status);
401 /* protect against short packets (tell me why we got some?!?) */
402 if (urb->actual_length < 4)
405 res = urb->actual_length;
406 rx_stat = le16_to_cpu(*(__le16 *)(urb->transfer_buffer + res - 4));
409 skb_put(dev->rx_skb, pkt_len);
410 dev->rx_skb->protocol = eth_type_trans(dev->rx_skb, netdev);
411 netif_rx(dev->rx_skb);
412 netdev->stats.rx_packets++;
413 netdev->stats.rx_bytes += pkt_len;
415 spin_lock(&dev->rx_pool_lock);
417 spin_unlock(&dev->rx_pool_lock);
423 usb_fill_bulk_urb(dev->rx_urb, dev->udev, usb_rcvbulkpipe(dev->udev, 1),
424 dev->rx_skb->data, RTL8150_MTU, read_bulk_callback, dev);
425 result = usb_submit_urb(dev->rx_urb, GFP_ATOMIC);
426 if (result == -ENODEV)
427 netif_device_detach(dev->netdev);
429 set_bit(RX_URB_FAIL, &dev->flags);
432 clear_bit(RX_URB_FAIL, &dev->flags);
437 tasklet_schedule(&dev->tl);
440 static void write_bulk_callback(struct urb *urb)
443 int status = urb->status;
448 dev_kfree_skb_irq(dev->tx_skb);
449 if (!netif_device_present(dev->netdev))
452 dev_info(&urb->dev->dev, "%s: Tx status %d\n",
453 dev->netdev->name, status);
454 dev->netdev->trans_start = jiffies;
455 netif_wake_queue(dev->netdev);
458 static void intr_callback(struct urb *urb)
462 int status = urb->status;
469 case 0: /* success */
471 case -ECONNRESET: /* unlink */
475 /* -EPIPE: should clear the halt */
477 dev_info(&urb->dev->dev, "%s: intr status %d\n",
478 dev->netdev->name, status);
482 d = urb->transfer_buffer;
483 if (d[0] & TSR_ERRORS) {
484 dev->netdev->stats.tx_errors++;
485 if (d[INT_TSR] & (TSR_ECOL | TSR_JBR))
486 dev->netdev->stats.tx_aborted_errors++;
487 if (d[INT_TSR] & TSR_LCOL)
488 dev->netdev->stats.tx_window_errors++;
489 if (d[INT_TSR] & TSR_LOSS_CRS)
490 dev->netdev->stats.tx_carrier_errors++;
492 /* Report link status changes to the network stack */
493 if ((d[INT_MSR] & MSR_LINK) == 0) {
494 if (netif_carrier_ok(dev->netdev)) {
495 netif_carrier_off(dev->netdev);
496 netdev_dbg(dev->netdev, "%s: LINK LOST\n", __func__);
499 if (!netif_carrier_ok(dev->netdev)) {
500 netif_carrier_on(dev->netdev);
501 netdev_dbg(dev->netdev, "%s: LINK CAME BACK\n", __func__);
506 res = usb_submit_urb (urb, GFP_ATOMIC);
508 netif_device_detach(dev->netdev);
510 dev_err(&dev->udev->dev,
511 "can't resubmit intr, %s-%s/input0, status %d\n",
512 dev->udev->bus->bus_name, dev->udev->devpath, res);
515 static int rtl8150_suspend(struct usb_interface *intf, pm_message_t message)
517 rtl8150_t *dev = usb_get_intfdata(intf);
519 netif_device_detach(dev->netdev);
521 if (netif_running(dev->netdev)) {
522 usb_kill_urb(dev->rx_urb);
523 usb_kill_urb(dev->intr_urb);
528 static int rtl8150_resume(struct usb_interface *intf)
530 rtl8150_t *dev = usb_get_intfdata(intf);
532 netif_device_attach(dev->netdev);
533 if (netif_running(dev->netdev)) {
534 dev->rx_urb->status = 0;
535 dev->rx_urb->actual_length = 0;
536 read_bulk_callback(dev->rx_urb);
538 dev->intr_urb->status = 0;
539 dev->intr_urb->actual_length = 0;
540 intr_callback(dev->intr_urb);
547 ** network related part of the code
551 static void fill_skb_pool(rtl8150_t *dev)
556 for (i = 0; i < RX_SKB_POOL_SIZE; i++) {
557 if (dev->rx_skb_pool[i])
559 skb = dev_alloc_skb(RTL8150_MTU + 2);
564 dev->rx_skb_pool[i] = skb;
568 static void free_skb_pool(rtl8150_t *dev)
572 for (i = 0; i < RX_SKB_POOL_SIZE; i++)
573 if (dev->rx_skb_pool[i])
574 dev_kfree_skb(dev->rx_skb_pool[i]);
577 static void rx_fixup(unsigned long data)
579 struct rtl8150 *dev = (struct rtl8150 *)data;
583 spin_lock_irq(&dev->rx_pool_lock);
585 spin_unlock_irq(&dev->rx_pool_lock);
586 if (test_bit(RX_URB_FAIL, &dev->flags))
589 spin_lock_irq(&dev->rx_pool_lock);
591 spin_unlock_irq(&dev->rx_pool_lock);
595 usb_fill_bulk_urb(dev->rx_urb, dev->udev, usb_rcvbulkpipe(dev->udev, 1),
596 dev->rx_skb->data, RTL8150_MTU, read_bulk_callback, dev);
598 status = usb_submit_urb(dev->rx_urb, GFP_ATOMIC);
599 if (status == -ENODEV) {
600 netif_device_detach(dev->netdev);
602 set_bit(RX_URB_FAIL, &dev->flags);
605 clear_bit(RX_URB_FAIL, &dev->flags);
610 tasklet_schedule(&dev->tl);
613 static int enable_net_traffic(rtl8150_t * dev)
615 u8 cr, tcr, rcr, msr;
617 if (!rtl8150_reset(dev)) {
618 dev_warn(&dev->udev->dev, "device reset failed\n");
620 /* RCR bit7=1 attach Rx info at the end; =0 HW CRC (which is broken) */
625 set_bit(RTL8150_HW_CRC, &dev->flags);
626 set_registers(dev, RCR, 1, &rcr);
627 set_registers(dev, TCR, 1, &tcr);
628 set_registers(dev, CR, 1, &cr);
629 get_registers(dev, MSR, 1, &msr);
634 static void disable_net_traffic(rtl8150_t * dev)
638 get_registers(dev, CR, 1, &cr);
640 set_registers(dev, CR, 1, &cr);
643 static void rtl8150_tx_timeout(struct net_device *netdev)
645 rtl8150_t *dev = netdev_priv(netdev);
646 dev_warn(&netdev->dev, "Tx timeout.\n");
647 usb_unlink_urb(dev->tx_urb);
648 netdev->stats.tx_errors++;
651 static void rtl8150_set_multicast(struct net_device *netdev)
653 rtl8150_t *dev = netdev_priv(netdev);
656 netif_stop_queue(netdev);
657 if (netdev->flags & IFF_PROMISC) {
659 dev_info(&netdev->dev, "%s: promiscuous mode\n", netdev->name);
660 } else if (!netdev_mc_empty(netdev) ||
661 (netdev->flags & IFF_ALLMULTI)) {
664 dev_info(&netdev->dev, "%s: allmulti set\n", netdev->name);
666 /* ~RX_MULTICAST, ~RX_PROMISCUOUS */
669 async_set_registers(dev, RCR, sizeof(rx_creg), rx_creg);
670 netif_wake_queue(netdev);
673 static netdev_tx_t rtl8150_start_xmit(struct sk_buff *skb,
674 struct net_device *netdev)
676 rtl8150_t *dev = netdev_priv(netdev);
679 netif_stop_queue(netdev);
680 count = (skb->len < 60) ? 60 : skb->len;
681 count = (count & 0x3f) ? count : count + 1;
683 usb_fill_bulk_urb(dev->tx_urb, dev->udev, usb_sndbulkpipe(dev->udev, 2),
684 skb->data, count, write_bulk_callback, dev);
685 if ((res = usb_submit_urb(dev->tx_urb, GFP_ATOMIC))) {
686 /* Can we get/handle EPIPE here? */
688 netif_device_detach(dev->netdev);
690 dev_warn(&netdev->dev, "failed tx_urb %d\n", res);
691 netdev->stats.tx_errors++;
692 netif_start_queue(netdev);
695 netdev->stats.tx_packets++;
696 netdev->stats.tx_bytes += skb->len;
697 netdev->trans_start = jiffies;
704 static void set_carrier(struct net_device *netdev)
706 rtl8150_t *dev = netdev_priv(netdev);
709 get_registers(dev, CSCR, 2, &tmp);
710 if (tmp & CSCR_LINK_STATUS)
711 netif_carrier_on(netdev);
713 netif_carrier_off(netdev);
716 static int rtl8150_open(struct net_device *netdev)
718 rtl8150_t *dev = netdev_priv(netdev);
721 if (dev->rx_skb == NULL)
722 dev->rx_skb = pull_skb(dev);
726 set_registers(dev, IDR, 6, netdev->dev_addr);
728 usb_fill_bulk_urb(dev->rx_urb, dev->udev, usb_rcvbulkpipe(dev->udev, 1),
729 dev->rx_skb->data, RTL8150_MTU, read_bulk_callback, dev);
730 if ((res = usb_submit_urb(dev->rx_urb, GFP_KERNEL))) {
732 netif_device_detach(dev->netdev);
733 dev_warn(&netdev->dev, "rx_urb submit failed: %d\n", res);
736 usb_fill_int_urb(dev->intr_urb, dev->udev, usb_rcvintpipe(dev->udev, 3),
737 dev->intr_buff, INTBUFSIZE, intr_callback,
738 dev, dev->intr_interval);
739 if ((res = usb_submit_urb(dev->intr_urb, GFP_KERNEL))) {
741 netif_device_detach(dev->netdev);
742 dev_warn(&netdev->dev, "intr_urb submit failed: %d\n", res);
743 usb_kill_urb(dev->rx_urb);
746 enable_net_traffic(dev);
748 netif_start_queue(netdev);
753 static int rtl8150_close(struct net_device *netdev)
755 rtl8150_t *dev = netdev_priv(netdev);
758 netif_stop_queue(netdev);
759 if (!test_bit(RTL8150_UNPLUG, &dev->flags))
760 disable_net_traffic(dev);
761 unlink_all_urbs(dev);
766 static void rtl8150_get_drvinfo(struct net_device *netdev, struct ethtool_drvinfo *info)
768 rtl8150_t *dev = netdev_priv(netdev);
770 strlcpy(info->driver, driver_name, sizeof(info->driver));
771 strlcpy(info->version, DRIVER_VERSION, sizeof(info->version));
772 usb_make_path(dev->udev, info->bus_info, sizeof(info->bus_info));
775 static int rtl8150_get_settings(struct net_device *netdev, struct ethtool_cmd *ecmd)
777 rtl8150_t *dev = netdev_priv(netdev);
780 ecmd->supported = (SUPPORTED_10baseT_Half |
781 SUPPORTED_10baseT_Full |
782 SUPPORTED_100baseT_Half |
783 SUPPORTED_100baseT_Full |
785 SUPPORTED_TP | SUPPORTED_MII);
786 ecmd->port = PORT_TP;
787 ecmd->transceiver = XCVR_INTERNAL;
788 ecmd->phy_address = dev->phy;
789 get_registers(dev, BMCR, 2, &bmcr);
790 get_registers(dev, ANLP, 2, &lpa);
791 if (bmcr & BMCR_ANENABLE) {
792 u32 speed = ((lpa & (LPA_100HALF | LPA_100FULL)) ?
793 SPEED_100 : SPEED_10);
794 ethtool_cmd_speed_set(ecmd, speed);
795 ecmd->autoneg = AUTONEG_ENABLE;
796 if (speed == SPEED_100)
797 ecmd->duplex = (lpa & LPA_100FULL) ?
798 DUPLEX_FULL : DUPLEX_HALF;
800 ecmd->duplex = (lpa & LPA_10FULL) ?
801 DUPLEX_FULL : DUPLEX_HALF;
803 ecmd->autoneg = AUTONEG_DISABLE;
804 ethtool_cmd_speed_set(ecmd, ((bmcr & BMCR_SPEED100) ?
805 SPEED_100 : SPEED_10));
806 ecmd->duplex = (bmcr & BMCR_FULLDPLX) ?
807 DUPLEX_FULL : DUPLEX_HALF;
812 static const struct ethtool_ops ops = {
813 .get_drvinfo = rtl8150_get_drvinfo,
814 .get_settings = rtl8150_get_settings,
815 .get_link = ethtool_op_get_link
818 static int rtl8150_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd)
820 rtl8150_t *dev = netdev_priv(netdev);
821 u16 *data = (u16 *) & rq->ifr_ifru;
827 case SIOCDEVPRIVATE + 1:
828 read_mii_word(dev, dev->phy, (data[1] & 0x1f), &data[3]);
830 case SIOCDEVPRIVATE + 2:
831 if (!capable(CAP_NET_ADMIN))
833 write_mii_word(dev, dev->phy, (data[1] & 0x1f), data[2]);
842 static const struct net_device_ops rtl8150_netdev_ops = {
843 .ndo_open = rtl8150_open,
844 .ndo_stop = rtl8150_close,
845 .ndo_do_ioctl = rtl8150_ioctl,
846 .ndo_start_xmit = rtl8150_start_xmit,
847 .ndo_tx_timeout = rtl8150_tx_timeout,
848 .ndo_set_rx_mode = rtl8150_set_multicast,
849 .ndo_set_mac_address = rtl8150_set_mac_address,
851 .ndo_change_mtu = eth_change_mtu,
852 .ndo_validate_addr = eth_validate_addr,
855 static int rtl8150_probe(struct usb_interface *intf,
856 const struct usb_device_id *id)
858 struct usb_device *udev = interface_to_usbdev(intf);
860 struct net_device *netdev;
862 netdev = alloc_etherdev(sizeof(rtl8150_t));
866 dev = netdev_priv(netdev);
868 dev->intr_buff = kmalloc(INTBUFSIZE, GFP_KERNEL);
869 if (!dev->intr_buff) {
874 tasklet_init(&dev->tl, rx_fixup, (unsigned long)dev);
875 spin_lock_init(&dev->rx_pool_lock);
878 dev->netdev = netdev;
879 netdev->netdev_ops = &rtl8150_netdev_ops;
880 netdev->watchdog_timeo = RTL8150_TX_TIMEOUT;
881 SET_ETHTOOL_OPS(netdev, &ops);
882 dev->intr_interval = 100; /* 100ms */
884 if (!alloc_all_urbs(dev)) {
885 dev_err(&intf->dev, "out of memory\n");
888 if (!rtl8150_reset(dev)) {
889 dev_err(&intf->dev, "couldn't reset the device\n");
893 set_ethernet_addr(dev);
895 usb_set_intfdata(intf, dev);
896 SET_NETDEV_DEV(netdev, &intf->dev);
897 if (register_netdev(netdev) != 0) {
898 dev_err(&intf->dev, "couldn't register the device\n");
902 dev_info(&intf->dev, "%s: rtl8150 is detected\n", netdev->name);
907 usb_set_intfdata(intf, NULL);
912 kfree(dev->intr_buff);
917 static void rtl8150_disconnect(struct usb_interface *intf)
919 rtl8150_t *dev = usb_get_intfdata(intf);
921 usb_set_intfdata(intf, NULL);
923 set_bit(RTL8150_UNPLUG, &dev->flags);
924 tasklet_kill(&dev->tl);
925 unregister_netdev(dev->netdev);
926 unlink_all_urbs(dev);
930 dev_kfree_skb(dev->rx_skb);
931 kfree(dev->intr_buff);
932 free_netdev(dev->netdev);
936 static struct usb_driver rtl8150_driver = {
938 .probe = rtl8150_probe,
939 .disconnect = rtl8150_disconnect,
940 .id_table = rtl8150_table,
941 .suspend = rtl8150_suspend,
942 .resume = rtl8150_resume,
943 .disable_hub_initiated_lpm = 1,
946 module_usb_driver(rtl8150_driver);
948 MODULE_AUTHOR(DRIVER_AUTHOR);
949 MODULE_DESCRIPTION(DRIVER_DESC);
950 MODULE_LICENSE("GPL");