1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * Copyright (c) 1999-2021 Petko Manolov (petkan@nucleusys.com) 4 * 5 */ 6 7 #include <linux/sched.h> 8 #include <linux/slab.h> 9 #include <linux/init.h> 10 #include <linux/delay.h> 11 #include <linux/netdevice.h> 12 #include <linux/etherdevice.h> 13 #include <linux/ethtool.h> 14 #include <linux/mii.h> 15 #include <linux/usb.h> 16 #include <linux/module.h> 17 #include <asm/byteorder.h> 18 #include <linux/uaccess.h> 19 #include "pegasus.h" 20 21 /* 22 * Version Information 23 */ 24 #define DRIVER_AUTHOR "Petko Manolov <petkan@nucleusys.com>" 25 #define DRIVER_DESC "Pegasus/Pegasus II USB Ethernet driver" 26 27 static const char driver_name[] = "pegasus"; 28 29 #undef PEGASUS_WRITE_EEPROM 30 #define BMSR_MEDIA (BMSR_10HALF | BMSR_10FULL | BMSR_100HALF | \ 31 BMSR_100FULL | BMSR_ANEGCAPABLE) 32 #define CARRIER_CHECK_DELAY (2 * HZ) 33 34 static bool loopback; 35 static bool mii_mode; 36 static char *devid; 37 38 static struct usb_eth_dev usb_dev_id[] = { 39 #define PEGASUS_DEV(pn, vid, pid, flags) \ 40 {.name = pn, .vendor = vid, .device = pid, .private = flags}, 41 #define PEGASUS_DEV_CLASS(pn, vid, pid, dclass, flags) \ 42 PEGASUS_DEV(pn, vid, pid, flags) 43 #include "pegasus.h" 44 #undef PEGASUS_DEV 45 #undef PEGASUS_DEV_CLASS 46 {NULL, 0, 0, 0}, 47 {NULL, 0, 0, 0} 48 }; 49 50 static struct usb_device_id pegasus_ids[] = { 51 #define PEGASUS_DEV(pn, vid, pid, flags) \ 52 {.match_flags = USB_DEVICE_ID_MATCH_DEVICE, .idVendor = vid, .idProduct = pid}, 53 /* 54 * The Belkin F8T012xx1 bluetooth adaptor has the same vendor and product 55 * IDs as the Belkin F5D5050, so we need to teach the pegasus driver to 56 * ignore adaptors belonging to the "Wireless" class 0xE0. For this one 57 * case anyway, seeing as the pegasus is for "Wired" adaptors. 58 */ 59 #define PEGASUS_DEV_CLASS(pn, vid, pid, dclass, flags) \ 60 {.match_flags = (USB_DEVICE_ID_MATCH_DEVICE | USB_DEVICE_ID_MATCH_DEV_CLASS), \ 61 .idVendor = vid, .idProduct = pid, .bDeviceClass = dclass}, 62 #include "pegasus.h" 63 #undef PEGASUS_DEV 64 #undef PEGASUS_DEV_CLASS 65 {}, 66 {} 67 }; 68 69 MODULE_AUTHOR(DRIVER_AUTHOR); 70 MODULE_DESCRIPTION(DRIVER_DESC); 71 MODULE_LICENSE("GPL"); 72 module_param(loopback, bool, 0); 73 module_param(mii_mode, bool, 0); 74 module_param(devid, charp, 0); 75 MODULE_PARM_DESC(loopback, "Enable MAC loopback mode (bit 0)"); 76 MODULE_PARM_DESC(mii_mode, "Enable HomePNA mode (bit 0),default=MII mode = 0"); 77 MODULE_PARM_DESC(devid, "The format is: 'DEV_name:VendorID:DeviceID:Flags'"); 78 79 /* use ethtool to change the level for any given device */ 80 static int msg_level = -1; 81 module_param(msg_level, int, 0); 82 MODULE_PARM_DESC(msg_level, "Override default message level"); 83 84 MODULE_DEVICE_TABLE(usb, pegasus_ids); 85 static const struct net_device_ops pegasus_netdev_ops; 86 87 /*****/ 88 89 static void async_ctrl_callback(struct urb *urb) 90 { 91 struct usb_ctrlrequest *req = (struct usb_ctrlrequest *)urb->context; 92 int status = urb->status; 93 94 if (status < 0) 95 dev_dbg(&urb->dev->dev, "%s failed with %d", __func__, status); 96 kfree(req); 97 usb_free_urb(urb); 98 } 99 100 static int get_registers(pegasus_t *pegasus, __u16 indx, __u16 size, void *data) 101 { 102 return usb_control_msg_recv(pegasus->usb, 0, PEGASUS_REQ_GET_REGS, 103 PEGASUS_REQT_READ, 0, indx, data, size, 104 1000, GFP_NOIO); 105 } 106 107 static int set_registers(pegasus_t *pegasus, __u16 indx, __u16 size, 108 const void *data) 109 { 110 int ret; 111 112 ret = usb_control_msg_send(pegasus->usb, 0, PEGASUS_REQ_SET_REGS, 113 PEGASUS_REQT_WRITE, 0, indx, data, size, 114 1000, GFP_NOIO); 115 if (ret < 0) 116 netif_dbg(pegasus, drv, pegasus->net, "%s failed with %d\n", __func__, ret); 117 118 return ret; 119 } 120 121 /* 122 * There is only one way to write to a single ADM8511 register and this is via 123 * specific control request. 'data' is ignored by the device, but it is here to 124 * not break the API. 125 */ 126 static int set_register(pegasus_t *pegasus, __u16 indx, __u8 data) 127 { 128 void *buf = &data; 129 int ret; 130 131 ret = usb_control_msg_send(pegasus->usb, 0, PEGASUS_REQ_SET_REG, 132 PEGASUS_REQT_WRITE, data, indx, buf, 1, 133 1000, GFP_NOIO); 134 if (ret < 0) 135 netif_dbg(pegasus, drv, pegasus->net, "%s failed with %d\n", __func__, ret); 136 137 return ret; 138 } 139 140 static int update_eth_regs_async(pegasus_t *pegasus) 141 { 142 int ret = -ENOMEM; 143 struct urb *async_urb; 144 struct usb_ctrlrequest *req; 145 146 req = kmalloc(sizeof(struct usb_ctrlrequest), GFP_ATOMIC); 147 if (req == NULL) 148 return ret; 149 150 async_urb = usb_alloc_urb(0, GFP_ATOMIC); 151 if (async_urb == NULL) { 152 kfree(req); 153 return ret; 154 } 155 req->bRequestType = PEGASUS_REQT_WRITE; 156 req->bRequest = PEGASUS_REQ_SET_REGS; 157 req->wValue = cpu_to_le16(0); 158 req->wIndex = cpu_to_le16(EthCtrl0); 159 req->wLength = cpu_to_le16(3); 160 161 usb_fill_control_urb(async_urb, pegasus->usb, 162 usb_sndctrlpipe(pegasus->usb, 0), (void *)req, 163 pegasus->eth_regs, 3, async_ctrl_callback, req); 164 165 ret = usb_submit_urb(async_urb, GFP_ATOMIC); 166 if (ret) { 167 if (ret == -ENODEV) 168 netif_device_detach(pegasus->net); 169 netif_err(pegasus, drv, pegasus->net, 170 "%s returned %d\n", __func__, ret); 171 usb_free_urb(async_urb); 172 kfree(req); 173 } 174 return ret; 175 } 176 177 static int __mii_op(pegasus_t *p, __u8 phy, __u8 indx, __u16 *regd, __u8 cmd) 178 { 179 int i, ret; 180 __le16 regdi; 181 __u8 data[4] = { phy, 0, 0, indx }; 182 183 if (cmd & PHY_WRITE) { 184 __le16 *t = (__le16 *) & data[1]; 185 *t = cpu_to_le16(*regd); 186 } 187 set_register(p, PhyCtrl, 0); 188 set_registers(p, PhyAddr, sizeof(data), data); 189 set_register(p, PhyCtrl, (indx | cmd)); 190 for (i = 0; i < REG_TIMEOUT; i++) { 191 ret = get_registers(p, PhyCtrl, 1, data); 192 if (ret < 0) 193 goto fail; 194 if (data[0] & PHY_DONE) 195 break; 196 } 197 if (i >= REG_TIMEOUT) { 198 ret = -ETIMEDOUT; 199 goto fail; 200 } 201 if (cmd & PHY_READ) { 202 ret = get_registers(p, PhyData, 2, ®di); 203 if (ret < 0) 204 goto fail; 205 *regd = le16_to_cpu(regdi); 206 } 207 return 0; 208 fail: 209 netif_dbg(p, drv, p->net, "%s failed\n", __func__); 210 return ret; 211 } 212 213 /* Returns non-negative int on success, error on failure */ 214 static int read_mii_word(pegasus_t *pegasus, __u8 phy, __u8 indx, __u16 *regd) 215 { 216 return __mii_op(pegasus, phy, indx, regd, PHY_READ); 217 } 218 219 /* Returns zero on success, error on failure */ 220 static int write_mii_word(pegasus_t *pegasus, __u8 phy, __u8 indx, __u16 *regd) 221 { 222 return __mii_op(pegasus, phy, indx, regd, PHY_WRITE); 223 } 224 225 static int mdio_read(struct net_device *dev, int phy_id, int loc) 226 { 227 pegasus_t *pegasus = netdev_priv(dev); 228 int ret; 229 u16 res; 230 231 ret = read_mii_word(pegasus, phy_id, loc, &res); 232 if (ret < 0) 233 return ret; 234 235 return (int)res; 236 } 237 238 static void mdio_write(struct net_device *dev, int phy_id, int loc, int val) 239 { 240 pegasus_t *pegasus = netdev_priv(dev); 241 u16 data = val; 242 243 write_mii_word(pegasus, phy_id, loc, &data); 244 } 245 246 static int read_eprom_word(pegasus_t *pegasus, __u8 index, __u16 *retdata) 247 { 248 int ret, i; 249 __le16 retdatai; 250 __u8 tmp = 0; 251 252 set_register(pegasus, EpromCtrl, 0); 253 set_register(pegasus, EpromOffset, index); 254 set_register(pegasus, EpromCtrl, EPROM_READ); 255 256 for (i = 0; i < REG_TIMEOUT; i++) { 257 ret = get_registers(pegasus, EpromCtrl, 1, &tmp); 258 if (ret < 0) 259 goto fail; 260 if (tmp & EPROM_DONE) 261 break; 262 } 263 if (i >= REG_TIMEOUT) { 264 ret = -ETIMEDOUT; 265 goto fail; 266 } 267 268 ret = get_registers(pegasus, EpromData, 2, &retdatai); 269 if (ret < 0) 270 goto fail; 271 *retdata = le16_to_cpu(retdatai); 272 return ret; 273 274 fail: 275 netif_dbg(pegasus, drv, pegasus->net, "%s failed\n", __func__); 276 return ret; 277 } 278 279 #ifdef PEGASUS_WRITE_EEPROM 280 static inline void enable_eprom_write(pegasus_t *pegasus) 281 { 282 __u8 tmp; 283 284 get_registers(pegasus, EthCtrl2, 1, &tmp); 285 set_register(pegasus, EthCtrl2, tmp | EPROM_WR_ENABLE); 286 } 287 288 static inline void disable_eprom_write(pegasus_t *pegasus) 289 { 290 __u8 tmp; 291 292 get_registers(pegasus, EthCtrl2, 1, &tmp); 293 set_register(pegasus, EpromCtrl, 0); 294 set_register(pegasus, EthCtrl2, tmp & ~EPROM_WR_ENABLE); 295 } 296 297 static int write_eprom_word(pegasus_t *pegasus, __u8 index, __u16 data) 298 { 299 int i; 300 __u8 tmp, d[4] = { 0x3f, 0, 0, EPROM_WRITE }; 301 int ret; 302 __le16 le_data = cpu_to_le16(data); 303 304 set_registers(pegasus, EpromOffset, 4, d); 305 enable_eprom_write(pegasus); 306 set_register(pegasus, EpromOffset, index); 307 set_registers(pegasus, EpromData, 2, &le_data); 308 set_register(pegasus, EpromCtrl, EPROM_WRITE); 309 310 for (i = 0; i < REG_TIMEOUT; i++) { 311 ret = get_registers(pegasus, EpromCtrl, 1, &tmp); 312 if (ret == -ESHUTDOWN) 313 goto fail; 314 if (tmp & EPROM_DONE) 315 break; 316 } 317 disable_eprom_write(pegasus); 318 if (i >= REG_TIMEOUT) 319 goto fail; 320 321 return ret; 322 323 fail: 324 netif_dbg(pegasus, drv, pegasus->net, "%s failed\n", __func__); 325 return -ETIMEDOUT; 326 } 327 #endif /* PEGASUS_WRITE_EEPROM */ 328 329 static inline int get_node_id(pegasus_t *pegasus, u8 *id) 330 { 331 int i, ret; 332 u16 w16; 333 334 for (i = 0; i < 3; i++) { 335 ret = read_eprom_word(pegasus, i, &w16); 336 if (ret < 0) 337 return ret; 338 ((__le16 *) id)[i] = cpu_to_le16(w16); 339 } 340 341 return 0; 342 } 343 344 static void set_ethernet_addr(pegasus_t *pegasus) 345 { 346 int ret; 347 u8 node_id[6]; 348 349 if (pegasus->features & PEGASUS_II) { 350 ret = get_registers(pegasus, 0x10, sizeof(node_id), node_id); 351 if (ret < 0) 352 goto err; 353 } else { 354 ret = get_node_id(pegasus, node_id); 355 if (ret < 0) 356 goto err; 357 ret = set_registers(pegasus, EthID, sizeof(node_id), node_id); 358 if (ret < 0) 359 goto err; 360 } 361 362 eth_hw_addr_set(pegasus->net, node_id); 363 364 return; 365 err: 366 eth_hw_addr_random(pegasus->net); 367 netif_dbg(pegasus, drv, pegasus->net, "software assigned MAC address.\n"); 368 369 return; 370 } 371 372 static inline int reset_mac(pegasus_t *pegasus) 373 { 374 int ret, i; 375 __u8 data = 0x8; 376 377 set_register(pegasus, EthCtrl1, data); 378 for (i = 0; i < REG_TIMEOUT; i++) { 379 ret = get_registers(pegasus, EthCtrl1, 1, &data); 380 if (ret < 0) 381 goto fail; 382 if (~data & 0x08) { 383 if (loopback) 384 break; 385 if (mii_mode && (pegasus->features & HAS_HOME_PNA)) 386 set_register(pegasus, Gpio1, 0x34); 387 else 388 set_register(pegasus, Gpio1, 0x26); 389 set_register(pegasus, Gpio0, pegasus->features); 390 set_register(pegasus, Gpio0, DEFAULT_GPIO_SET); 391 break; 392 } 393 } 394 if (i == REG_TIMEOUT) 395 return -ETIMEDOUT; 396 397 if (usb_dev_id[pegasus->dev_index].vendor == VENDOR_LINKSYS || 398 usb_dev_id[pegasus->dev_index].vendor == VENDOR_DLINK) { 399 set_register(pegasus, Gpio0, 0x24); 400 set_register(pegasus, Gpio0, 0x26); 401 } 402 if (usb_dev_id[pegasus->dev_index].vendor == VENDOR_ELCON) { 403 __u16 auxmode; 404 ret = read_mii_word(pegasus, 3, 0x1b, &auxmode); 405 if (ret < 0) 406 goto fail; 407 auxmode |= 4; 408 write_mii_word(pegasus, 3, 0x1b, &auxmode); 409 } 410 411 return 0; 412 fail: 413 netif_dbg(pegasus, drv, pegasus->net, "%s failed\n", __func__); 414 return ret; 415 } 416 417 static int enable_net_traffic(struct net_device *dev, struct usb_device *usb) 418 { 419 pegasus_t *pegasus = netdev_priv(dev); 420 int ret; 421 __u16 linkpart; 422 __u8 data[4]; 423 424 ret = read_mii_word(pegasus, pegasus->phy, MII_LPA, &linkpart); 425 if (ret < 0) 426 goto fail; 427 data[0] = 0xc8; /* TX & RX enable, append status, no CRC */ 428 data[1] = 0; 429 if (linkpart & (ADVERTISE_100FULL | ADVERTISE_10FULL)) 430 data[1] |= 0x20; /* set full duplex */ 431 if (linkpart & (ADVERTISE_100FULL | ADVERTISE_100HALF)) 432 data[1] |= 0x10; /* set 100 Mbps */ 433 if (mii_mode) 434 data[1] = 0; 435 data[2] = loopback ? 0x09 : 0x01; 436 437 memcpy(pegasus->eth_regs, data, sizeof(data)); 438 ret = set_registers(pegasus, EthCtrl0, 3, data); 439 440 if (usb_dev_id[pegasus->dev_index].vendor == VENDOR_LINKSYS || 441 usb_dev_id[pegasus->dev_index].vendor == VENDOR_LINKSYS2 || 442 usb_dev_id[pegasus->dev_index].vendor == VENDOR_DLINK) { 443 u16 auxmode; 444 ret = read_mii_word(pegasus, 0, 0x1b, &auxmode); 445 if (ret < 0) 446 goto fail; 447 auxmode |= 4; 448 write_mii_word(pegasus, 0, 0x1b, &auxmode); 449 } 450 451 return ret; 452 fail: 453 netif_dbg(pegasus, drv, pegasus->net, "%s failed\n", __func__); 454 return ret; 455 } 456 457 static void read_bulk_callback(struct urb *urb) 458 { 459 pegasus_t *pegasus = urb->context; 460 struct net_device *net; 461 u8 *buf = urb->transfer_buffer; 462 int rx_status, count = urb->actual_length; 463 int status = urb->status; 464 __u16 pkt_len; 465 466 if (!pegasus) 467 return; 468 469 net = pegasus->net; 470 if (!netif_device_present(net) || !netif_running(net)) 471 return; 472 473 switch (status) { 474 case 0: 475 break; 476 case -ETIME: 477 netif_dbg(pegasus, rx_err, net, "reset MAC\n"); 478 pegasus->flags &= ~PEGASUS_RX_BUSY; 479 break; 480 case -EPIPE: /* stall, or disconnect from TT */ 481 /* FIXME schedule work to clear the halt */ 482 netif_warn(pegasus, rx_err, net, "no rx stall recovery\n"); 483 return; 484 case -ENOENT: 485 case -ECONNRESET: 486 case -ESHUTDOWN: 487 netif_dbg(pegasus, ifdown, net, "rx unlink, %d\n", status); 488 return; 489 default: 490 netif_dbg(pegasus, rx_err, net, "RX status %d\n", status); 491 goto goon; 492 } 493 494 if (count < 4) 495 goto goon; 496 497 rx_status = buf[count - 2]; 498 if (rx_status & 0x1c) { 499 netif_dbg(pegasus, rx_err, net, 500 "RX packet error %x\n", rx_status); 501 net->stats.rx_errors++; 502 if (rx_status & 0x04) /* runt */ 503 net->stats.rx_length_errors++; 504 if (rx_status & 0x08) 505 net->stats.rx_crc_errors++; 506 if (rx_status & 0x10) /* extra bits */ 507 net->stats.rx_frame_errors++; 508 goto goon; 509 } 510 if (pegasus->chip == 0x8513) { 511 pkt_len = le32_to_cpu(*(__le32 *)urb->transfer_buffer); 512 pkt_len &= 0x0fff; 513 pegasus->rx_skb->data += 2; 514 } else { 515 pkt_len = buf[count - 3] << 8; 516 pkt_len += buf[count - 4]; 517 pkt_len &= 0xfff; 518 pkt_len -= 4; 519 } 520 521 /* 522 * If the packet is unreasonably long, quietly drop it rather than 523 * kernel panicing by calling skb_put. 524 */ 525 if (pkt_len > PEGASUS_MTU) 526 goto goon; 527 528 /* 529 * at this point we are sure pegasus->rx_skb != NULL 530 * so we go ahead and pass up the packet. 531 */ 532 skb_put(pegasus->rx_skb, pkt_len); 533 pegasus->rx_skb->protocol = eth_type_trans(pegasus->rx_skb, net); 534 netif_rx(pegasus->rx_skb); 535 net->stats.rx_packets++; 536 net->stats.rx_bytes += pkt_len; 537 538 if (pegasus->flags & PEGASUS_UNPLUG) 539 return; 540 541 pegasus->rx_skb = __netdev_alloc_skb_ip_align(pegasus->net, PEGASUS_MTU, 542 GFP_ATOMIC); 543 544 if (pegasus->rx_skb == NULL) 545 goto tl_sched; 546 goon: 547 usb_fill_bulk_urb(pegasus->rx_urb, pegasus->usb, 548 usb_rcvbulkpipe(pegasus->usb, 1), 549 pegasus->rx_skb->data, PEGASUS_MTU, 550 read_bulk_callback, pegasus); 551 rx_status = usb_submit_urb(pegasus->rx_urb, GFP_ATOMIC); 552 if (rx_status == -ENODEV) 553 netif_device_detach(pegasus->net); 554 else if (rx_status) { 555 pegasus->flags |= PEGASUS_RX_URB_FAIL; 556 goto tl_sched; 557 } else { 558 pegasus->flags &= ~PEGASUS_RX_URB_FAIL; 559 } 560 561 return; 562 563 tl_sched: 564 tasklet_schedule(&pegasus->rx_tl); 565 } 566 567 static void rx_fixup(struct tasklet_struct *t) 568 { 569 pegasus_t *pegasus = from_tasklet(pegasus, t, rx_tl); 570 int status; 571 572 if (pegasus->flags & PEGASUS_UNPLUG) 573 return; 574 575 if (pegasus->flags & PEGASUS_RX_URB_FAIL) 576 if (pegasus->rx_skb) 577 goto try_again; 578 if (pegasus->rx_skb == NULL) 579 pegasus->rx_skb = __netdev_alloc_skb_ip_align(pegasus->net, 580 PEGASUS_MTU, 581 GFP_ATOMIC); 582 if (pegasus->rx_skb == NULL) { 583 netif_warn(pegasus, rx_err, pegasus->net, "low on memory\n"); 584 tasklet_schedule(&pegasus->rx_tl); 585 return; 586 } 587 usb_fill_bulk_urb(pegasus->rx_urb, pegasus->usb, 588 usb_rcvbulkpipe(pegasus->usb, 1), 589 pegasus->rx_skb->data, PEGASUS_MTU, 590 read_bulk_callback, pegasus); 591 try_again: 592 status = usb_submit_urb(pegasus->rx_urb, GFP_ATOMIC); 593 if (status == -ENODEV) 594 netif_device_detach(pegasus->net); 595 else if (status) { 596 pegasus->flags |= PEGASUS_RX_URB_FAIL; 597 tasklet_schedule(&pegasus->rx_tl); 598 } else { 599 pegasus->flags &= ~PEGASUS_RX_URB_FAIL; 600 } 601 } 602 603 static void write_bulk_callback(struct urb *urb) 604 { 605 pegasus_t *pegasus = urb->context; 606 struct net_device *net; 607 int status = urb->status; 608 609 if (!pegasus) 610 return; 611 612 net = pegasus->net; 613 614 if (!netif_device_present(net) || !netif_running(net)) 615 return; 616 617 switch (status) { 618 case -EPIPE: 619 /* FIXME schedule_work() to clear the tx halt */ 620 netif_stop_queue(net); 621 netif_warn(pegasus, tx_err, net, "no tx stall recovery\n"); 622 return; 623 case -ENOENT: 624 case -ECONNRESET: 625 case -ESHUTDOWN: 626 netif_dbg(pegasus, ifdown, net, "tx unlink, %d\n", status); 627 return; 628 default: 629 netif_info(pegasus, tx_err, net, "TX status %d\n", status); 630 fallthrough; 631 case 0: 632 break; 633 } 634 635 netif_trans_update(net); /* prevent tx timeout */ 636 netif_wake_queue(net); 637 } 638 639 static void intr_callback(struct urb *urb) 640 { 641 pegasus_t *pegasus = urb->context; 642 struct net_device *net; 643 int res, status = urb->status; 644 645 if (!pegasus) 646 return; 647 net = pegasus->net; 648 649 switch (status) { 650 case 0: 651 break; 652 case -ECONNRESET: /* unlink */ 653 case -ENOENT: 654 case -ESHUTDOWN: 655 return; 656 default: 657 /* some Pegasus-I products report LOTS of data 658 * toggle errors... avoid log spamming 659 */ 660 netif_dbg(pegasus, timer, net, "intr status %d\n", status); 661 } 662 663 if (urb->actual_length >= 6) { 664 u8 *d = urb->transfer_buffer; 665 666 /* byte 0 == tx_status1, reg 2B */ 667 if (d[0] & (TX_UNDERRUN|EXCESSIVE_COL 668 |LATE_COL|JABBER_TIMEOUT)) { 669 net->stats.tx_errors++; 670 if (d[0] & TX_UNDERRUN) 671 net->stats.tx_fifo_errors++; 672 if (d[0] & (EXCESSIVE_COL | JABBER_TIMEOUT)) 673 net->stats.tx_aborted_errors++; 674 if (d[0] & LATE_COL) 675 net->stats.tx_window_errors++; 676 } 677 678 /* d[5].LINK_STATUS lies on some adapters. 679 * d[0].NO_CARRIER kicks in only with failed TX. 680 * ... so monitoring with MII may be safest. 681 */ 682 683 /* bytes 3-4 == rx_lostpkt, reg 2E/2F */ 684 net->stats.rx_missed_errors += ((d[3] & 0x7f) << 8) | d[4]; 685 } 686 687 res = usb_submit_urb(urb, GFP_ATOMIC); 688 if (res == -ENODEV) 689 netif_device_detach(pegasus->net); 690 if (res) 691 netif_err(pegasus, timer, net, 692 "can't resubmit interrupt urb, %d\n", res); 693 } 694 695 static void pegasus_tx_timeout(struct net_device *net, unsigned int txqueue) 696 { 697 pegasus_t *pegasus = netdev_priv(net); 698 netif_warn(pegasus, timer, net, "tx timeout\n"); 699 usb_unlink_urb(pegasus->tx_urb); 700 net->stats.tx_errors++; 701 } 702 703 static netdev_tx_t pegasus_start_xmit(struct sk_buff *skb, 704 struct net_device *net) 705 { 706 pegasus_t *pegasus = netdev_priv(net); 707 int count = ((skb->len + 2) & 0x3f) ? skb->len + 2 : skb->len + 3; 708 int res; 709 __u16 l16 = skb->len; 710 711 netif_stop_queue(net); 712 713 ((__le16 *) pegasus->tx_buff)[0] = cpu_to_le16(l16); 714 skb_copy_from_linear_data(skb, pegasus->tx_buff + 2, skb->len); 715 usb_fill_bulk_urb(pegasus->tx_urb, pegasus->usb, 716 usb_sndbulkpipe(pegasus->usb, 2), 717 pegasus->tx_buff, count, 718 write_bulk_callback, pegasus); 719 if ((res = usb_submit_urb(pegasus->tx_urb, GFP_ATOMIC))) { 720 netif_warn(pegasus, tx_err, net, "fail tx, %d\n", res); 721 switch (res) { 722 case -EPIPE: /* stall, or disconnect from TT */ 723 /* cleanup should already have been scheduled */ 724 break; 725 case -ENODEV: /* disconnect() upcoming */ 726 case -EPERM: 727 netif_device_detach(pegasus->net); 728 break; 729 default: 730 net->stats.tx_errors++; 731 netif_start_queue(net); 732 } 733 } else { 734 net->stats.tx_packets++; 735 net->stats.tx_bytes += skb->len; 736 } 737 dev_kfree_skb(skb); 738 739 return NETDEV_TX_OK; 740 } 741 742 static inline void disable_net_traffic(pegasus_t *pegasus) 743 { 744 __le16 tmp = cpu_to_le16(0); 745 746 set_registers(pegasus, EthCtrl0, sizeof(tmp), &tmp); 747 } 748 749 static inline int get_interrupt_interval(pegasus_t *pegasus) 750 { 751 u16 data; 752 u8 interval; 753 int ret; 754 755 ret = read_eprom_word(pegasus, 4, &data); 756 if (ret < 0) 757 return ret; 758 759 interval = data >> 8; 760 if (pegasus->usb->speed != USB_SPEED_HIGH) { 761 if (interval < 0x80) { 762 netif_info(pegasus, timer, pegasus->net, 763 "intr interval changed from %ums to %ums\n", 764 interval, 0x80); 765 interval = 0x80; 766 data = (data & 0x00FF) | ((u16)interval << 8); 767 #ifdef PEGASUS_WRITE_EEPROM 768 write_eprom_word(pegasus, 4, data); 769 #endif 770 } 771 } 772 pegasus->intr_interval = interval; 773 774 return 0; 775 } 776 777 static void set_carrier(struct net_device *net) 778 { 779 pegasus_t *pegasus = netdev_priv(net); 780 u16 tmp; 781 782 if (read_mii_word(pegasus, pegasus->phy, MII_BMSR, &tmp)) 783 return; 784 785 if (tmp & BMSR_LSTATUS) 786 netif_carrier_on(net); 787 else 788 netif_carrier_off(net); 789 } 790 791 static void free_all_urbs(pegasus_t *pegasus) 792 { 793 usb_free_urb(pegasus->intr_urb); 794 usb_free_urb(pegasus->tx_urb); 795 usb_free_urb(pegasus->rx_urb); 796 } 797 798 static void unlink_all_urbs(pegasus_t *pegasus) 799 { 800 usb_kill_urb(pegasus->intr_urb); 801 usb_kill_urb(pegasus->tx_urb); 802 usb_kill_urb(pegasus->rx_urb); 803 } 804 805 static int alloc_urbs(pegasus_t *pegasus) 806 { 807 int res = -ENOMEM; 808 809 pegasus->rx_urb = usb_alloc_urb(0, GFP_KERNEL); 810 if (!pegasus->rx_urb) { 811 return res; 812 } 813 pegasus->tx_urb = usb_alloc_urb(0, GFP_KERNEL); 814 if (!pegasus->tx_urb) { 815 usb_free_urb(pegasus->rx_urb); 816 return res; 817 } 818 pegasus->intr_urb = usb_alloc_urb(0, GFP_KERNEL); 819 if (!pegasus->intr_urb) { 820 usb_free_urb(pegasus->tx_urb); 821 usb_free_urb(pegasus->rx_urb); 822 return res; 823 } 824 825 return 0; 826 } 827 828 static int pegasus_open(struct net_device *net) 829 { 830 pegasus_t *pegasus = netdev_priv(net); 831 int res=-ENOMEM; 832 833 if (pegasus->rx_skb == NULL) 834 pegasus->rx_skb = __netdev_alloc_skb_ip_align(pegasus->net, 835 PEGASUS_MTU, 836 GFP_KERNEL); 837 if (!pegasus->rx_skb) 838 goto exit; 839 840 set_registers(pegasus, EthID, 6, net->dev_addr); 841 842 usb_fill_bulk_urb(pegasus->rx_urb, pegasus->usb, 843 usb_rcvbulkpipe(pegasus->usb, 1), 844 pegasus->rx_skb->data, PEGASUS_MTU, 845 read_bulk_callback, pegasus); 846 if ((res = usb_submit_urb(pegasus->rx_urb, GFP_KERNEL))) { 847 if (res == -ENODEV) 848 netif_device_detach(pegasus->net); 849 netif_dbg(pegasus, ifup, net, "failed rx_urb, %d\n", res); 850 goto exit; 851 } 852 853 usb_fill_int_urb(pegasus->intr_urb, pegasus->usb, 854 usb_rcvintpipe(pegasus->usb, 3), 855 pegasus->intr_buff, sizeof(pegasus->intr_buff), 856 intr_callback, pegasus, pegasus->intr_interval); 857 if ((res = usb_submit_urb(pegasus->intr_urb, GFP_KERNEL))) { 858 if (res == -ENODEV) 859 netif_device_detach(pegasus->net); 860 netif_dbg(pegasus, ifup, net, "failed intr_urb, %d\n", res); 861 usb_kill_urb(pegasus->rx_urb); 862 goto exit; 863 } 864 res = enable_net_traffic(net, pegasus->usb); 865 if (res < 0) { 866 netif_dbg(pegasus, ifup, net, 867 "can't enable_net_traffic() - %d\n", res); 868 res = -EIO; 869 usb_kill_urb(pegasus->rx_urb); 870 usb_kill_urb(pegasus->intr_urb); 871 goto exit; 872 } 873 set_carrier(net); 874 netif_start_queue(net); 875 netif_dbg(pegasus, ifup, net, "open\n"); 876 res = 0; 877 exit: 878 return res; 879 } 880 881 static int pegasus_close(struct net_device *net) 882 { 883 pegasus_t *pegasus = netdev_priv(net); 884 885 netif_stop_queue(net); 886 if (!(pegasus->flags & PEGASUS_UNPLUG)) 887 disable_net_traffic(pegasus); 888 tasklet_kill(&pegasus->rx_tl); 889 unlink_all_urbs(pegasus); 890 891 return 0; 892 } 893 894 static void pegasus_get_drvinfo(struct net_device *dev, 895 struct ethtool_drvinfo *info) 896 { 897 pegasus_t *pegasus = netdev_priv(dev); 898 899 strscpy(info->driver, driver_name, sizeof(info->driver)); 900 usb_make_path(pegasus->usb, info->bus_info, sizeof(info->bus_info)); 901 } 902 903 /* also handles three patterns of some kind in hardware */ 904 #define WOL_SUPPORTED (WAKE_MAGIC|WAKE_PHY) 905 906 static void 907 pegasus_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol) 908 { 909 pegasus_t *pegasus = netdev_priv(dev); 910 911 wol->supported = WAKE_MAGIC | WAKE_PHY; 912 wol->wolopts = pegasus->wolopts; 913 } 914 915 static int 916 pegasus_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol) 917 { 918 pegasus_t *pegasus = netdev_priv(dev); 919 u8 reg78 = 0x04; 920 int ret; 921 922 if (wol->wolopts & ~WOL_SUPPORTED) 923 return -EINVAL; 924 925 if (wol->wolopts & WAKE_MAGIC) 926 reg78 |= 0x80; 927 if (wol->wolopts & WAKE_PHY) 928 reg78 |= 0x40; 929 /* FIXME this 0x10 bit still needs to get set in the chip... */ 930 if (wol->wolopts) 931 pegasus->eth_regs[0] |= 0x10; 932 else 933 pegasus->eth_regs[0] &= ~0x10; 934 pegasus->wolopts = wol->wolopts; 935 936 ret = set_register(pegasus, WakeupControl, reg78); 937 if (!ret) 938 ret = device_set_wakeup_enable(&pegasus->usb->dev, 939 wol->wolopts); 940 return ret; 941 } 942 943 static inline void pegasus_reset_wol(struct net_device *dev) 944 { 945 struct ethtool_wolinfo wol; 946 947 memset(&wol, 0, sizeof wol); 948 (void) pegasus_set_wol(dev, &wol); 949 } 950 951 static int 952 pegasus_get_link_ksettings(struct net_device *dev, 953 struct ethtool_link_ksettings *ecmd) 954 { 955 pegasus_t *pegasus; 956 957 pegasus = netdev_priv(dev); 958 mii_ethtool_get_link_ksettings(&pegasus->mii, ecmd); 959 return 0; 960 } 961 962 static int 963 pegasus_set_link_ksettings(struct net_device *dev, 964 const struct ethtool_link_ksettings *ecmd) 965 { 966 pegasus_t *pegasus = netdev_priv(dev); 967 return mii_ethtool_set_link_ksettings(&pegasus->mii, ecmd); 968 } 969 970 static int pegasus_nway_reset(struct net_device *dev) 971 { 972 pegasus_t *pegasus = netdev_priv(dev); 973 return mii_nway_restart(&pegasus->mii); 974 } 975 976 static u32 pegasus_get_link(struct net_device *dev) 977 { 978 pegasus_t *pegasus = netdev_priv(dev); 979 return mii_link_ok(&pegasus->mii); 980 } 981 982 static u32 pegasus_get_msglevel(struct net_device *dev) 983 { 984 pegasus_t *pegasus = netdev_priv(dev); 985 return pegasus->msg_enable; 986 } 987 988 static void pegasus_set_msglevel(struct net_device *dev, u32 v) 989 { 990 pegasus_t *pegasus = netdev_priv(dev); 991 pegasus->msg_enable = v; 992 } 993 994 static const struct ethtool_ops ops = { 995 .get_drvinfo = pegasus_get_drvinfo, 996 .nway_reset = pegasus_nway_reset, 997 .get_link = pegasus_get_link, 998 .get_msglevel = pegasus_get_msglevel, 999 .set_msglevel = pegasus_set_msglevel, 1000 .get_wol = pegasus_get_wol, 1001 .set_wol = pegasus_set_wol, 1002 .get_link_ksettings = pegasus_get_link_ksettings, 1003 .set_link_ksettings = pegasus_set_link_ksettings, 1004 }; 1005 1006 static int pegasus_siocdevprivate(struct net_device *net, struct ifreq *rq, 1007 void __user *udata, int cmd) 1008 { 1009 __u16 *data = (__u16 *) &rq->ifr_ifru; 1010 pegasus_t *pegasus = netdev_priv(net); 1011 int res; 1012 1013 switch (cmd) { 1014 case SIOCDEVPRIVATE: 1015 data[0] = pegasus->phy; 1016 fallthrough; 1017 case SIOCDEVPRIVATE + 1: 1018 res = read_mii_word(pegasus, data[0], data[1] & 0x1f, &data[3]); 1019 break; 1020 case SIOCDEVPRIVATE + 2: 1021 if (!capable(CAP_NET_ADMIN)) 1022 return -EPERM; 1023 write_mii_word(pegasus, pegasus->phy, data[1] & 0x1f, &data[2]); 1024 res = 0; 1025 break; 1026 default: 1027 res = -EOPNOTSUPP; 1028 } 1029 return res; 1030 } 1031 1032 static void pegasus_set_multicast(struct net_device *net) 1033 { 1034 pegasus_t *pegasus = netdev_priv(net); 1035 1036 if (net->flags & IFF_PROMISC) { 1037 pegasus->eth_regs[EthCtrl2] |= RX_PROMISCUOUS; 1038 netif_info(pegasus, link, net, "Promiscuous mode enabled\n"); 1039 } else if (!netdev_mc_empty(net) || (net->flags & IFF_ALLMULTI)) { 1040 pegasus->eth_regs[EthCtrl0] |= RX_MULTICAST; 1041 pegasus->eth_regs[EthCtrl2] &= ~RX_PROMISCUOUS; 1042 netif_dbg(pegasus, link, net, "set allmulti\n"); 1043 } else { 1044 pegasus->eth_regs[EthCtrl0] &= ~RX_MULTICAST; 1045 pegasus->eth_regs[EthCtrl2] &= ~RX_PROMISCUOUS; 1046 } 1047 update_eth_regs_async(pegasus); 1048 } 1049 1050 static __u8 mii_phy_probe(pegasus_t *pegasus) 1051 { 1052 int i, ret; 1053 __u16 tmp; 1054 1055 for (i = 0; i < 32; i++) { 1056 ret = read_mii_word(pegasus, i, MII_BMSR, &tmp); 1057 if (ret < 0) 1058 goto fail; 1059 if (tmp == 0 || tmp == 0xffff || (tmp & BMSR_MEDIA) == 0) 1060 continue; 1061 else 1062 return i; 1063 } 1064 fail: 1065 return 0xff; 1066 } 1067 1068 static inline void setup_pegasus_II(pegasus_t *pegasus) 1069 { 1070 int ret; 1071 __u8 data = 0xa5; 1072 1073 set_register(pegasus, Reg1d, 0); 1074 set_register(pegasus, Reg7b, 1); 1075 msleep(100); 1076 if ((pegasus->features & HAS_HOME_PNA) && mii_mode) 1077 set_register(pegasus, Reg7b, 0); 1078 else 1079 set_register(pegasus, Reg7b, 2); 1080 1081 set_register(pegasus, 0x83, data); 1082 ret = get_registers(pegasus, 0x83, 1, &data); 1083 if (ret < 0) 1084 goto fail; 1085 1086 if (data == 0xa5) 1087 pegasus->chip = 0x8513; 1088 else 1089 pegasus->chip = 0; 1090 1091 set_register(pegasus, 0x80, 0xc0); 1092 set_register(pegasus, 0x83, 0xff); 1093 set_register(pegasus, 0x84, 0x01); 1094 1095 if (pegasus->features & HAS_HOME_PNA && mii_mode) 1096 set_register(pegasus, Reg81, 6); 1097 else 1098 set_register(pegasus, Reg81, 2); 1099 1100 return; 1101 fail: 1102 netif_dbg(pegasus, drv, pegasus->net, "%s failed\n", __func__); 1103 } 1104 1105 static void check_carrier(struct work_struct *work) 1106 { 1107 pegasus_t *pegasus = container_of(work, pegasus_t, carrier_check.work); 1108 set_carrier(pegasus->net); 1109 if (!(pegasus->flags & PEGASUS_UNPLUG)) { 1110 queue_delayed_work(system_long_wq, &pegasus->carrier_check, 1111 CARRIER_CHECK_DELAY); 1112 } 1113 } 1114 1115 static int pegasus_blacklisted(struct usb_device *udev) 1116 { 1117 struct usb_device_descriptor *udd = &udev->descriptor; 1118 1119 /* Special quirk to keep the driver from handling the Belkin Bluetooth 1120 * dongle which happens to have the same ID. 1121 */ 1122 if ((udd->idVendor == cpu_to_le16(VENDOR_BELKIN)) && 1123 (udd->idProduct == cpu_to_le16(0x0121)) && 1124 (udd->bDeviceClass == USB_CLASS_WIRELESS_CONTROLLER) && 1125 (udd->bDeviceProtocol == 1)) 1126 return 1; 1127 1128 return 0; 1129 } 1130 1131 static int pegasus_probe(struct usb_interface *intf, 1132 const struct usb_device_id *id) 1133 { 1134 struct usb_device *dev = interface_to_usbdev(intf); 1135 struct net_device *net; 1136 pegasus_t *pegasus; 1137 int dev_index = id - pegasus_ids; 1138 int res = -ENOMEM; 1139 1140 if (pegasus_blacklisted(dev)) 1141 return -ENODEV; 1142 1143 net = alloc_etherdev(sizeof(struct pegasus)); 1144 if (!net) 1145 goto out; 1146 1147 pegasus = netdev_priv(net); 1148 pegasus->dev_index = dev_index; 1149 1150 res = alloc_urbs(pegasus); 1151 if (res < 0) { 1152 dev_err(&intf->dev, "can't allocate %s\n", "urbs"); 1153 goto out1; 1154 } 1155 1156 tasklet_setup(&pegasus->rx_tl, rx_fixup); 1157 1158 INIT_DELAYED_WORK(&pegasus->carrier_check, check_carrier); 1159 1160 pegasus->intf = intf; 1161 pegasus->usb = dev; 1162 pegasus->net = net; 1163 1164 1165 net->watchdog_timeo = PEGASUS_TX_TIMEOUT; 1166 net->netdev_ops = &pegasus_netdev_ops; 1167 net->ethtool_ops = &ops; 1168 pegasus->mii.dev = net; 1169 pegasus->mii.mdio_read = mdio_read; 1170 pegasus->mii.mdio_write = mdio_write; 1171 pegasus->mii.phy_id_mask = 0x1f; 1172 pegasus->mii.reg_num_mask = 0x1f; 1173 pegasus->msg_enable = netif_msg_init(msg_level, NETIF_MSG_DRV 1174 | NETIF_MSG_PROBE | NETIF_MSG_LINK); 1175 1176 pegasus->features = usb_dev_id[dev_index].private; 1177 res = get_interrupt_interval(pegasus); 1178 if (res) 1179 goto out2; 1180 if (reset_mac(pegasus)) { 1181 dev_err(&intf->dev, "can't reset MAC\n"); 1182 res = -EIO; 1183 goto out2; 1184 } 1185 set_ethernet_addr(pegasus); 1186 if (pegasus->features & PEGASUS_II) { 1187 dev_info(&intf->dev, "setup Pegasus II specific registers\n"); 1188 setup_pegasus_II(pegasus); 1189 } 1190 pegasus->phy = mii_phy_probe(pegasus); 1191 if (pegasus->phy == 0xff) { 1192 dev_warn(&intf->dev, "can't locate MII phy, using default\n"); 1193 pegasus->phy = 1; 1194 } 1195 pegasus->mii.phy_id = pegasus->phy; 1196 usb_set_intfdata(intf, pegasus); 1197 SET_NETDEV_DEV(net, &intf->dev); 1198 pegasus_reset_wol(net); 1199 res = register_netdev(net); 1200 if (res) 1201 goto out3; 1202 queue_delayed_work(system_long_wq, &pegasus->carrier_check, 1203 CARRIER_CHECK_DELAY); 1204 dev_info(&intf->dev, "%s, %s, %pM\n", net->name, 1205 usb_dev_id[dev_index].name, net->dev_addr); 1206 return 0; 1207 1208 out3: 1209 usb_set_intfdata(intf, NULL); 1210 out2: 1211 free_all_urbs(pegasus); 1212 out1: 1213 free_netdev(net); 1214 out: 1215 return res; 1216 } 1217 1218 static void pegasus_disconnect(struct usb_interface *intf) 1219 { 1220 struct pegasus *pegasus = usb_get_intfdata(intf); 1221 1222 usb_set_intfdata(intf, NULL); 1223 if (!pegasus) { 1224 dev_dbg(&intf->dev, "unregistering non-bound device?\n"); 1225 return; 1226 } 1227 1228 pegasus->flags |= PEGASUS_UNPLUG; 1229 cancel_delayed_work_sync(&pegasus->carrier_check); 1230 unregister_netdev(pegasus->net); 1231 unlink_all_urbs(pegasus); 1232 free_all_urbs(pegasus); 1233 if (pegasus->rx_skb != NULL) { 1234 dev_kfree_skb(pegasus->rx_skb); 1235 pegasus->rx_skb = NULL; 1236 } 1237 free_netdev(pegasus->net); 1238 } 1239 1240 static int pegasus_suspend(struct usb_interface *intf, pm_message_t message) 1241 { 1242 struct pegasus *pegasus = usb_get_intfdata(intf); 1243 1244 netif_device_detach(pegasus->net); 1245 cancel_delayed_work_sync(&pegasus->carrier_check); 1246 if (netif_running(pegasus->net)) { 1247 usb_kill_urb(pegasus->rx_urb); 1248 usb_kill_urb(pegasus->intr_urb); 1249 } 1250 return 0; 1251 } 1252 1253 static int pegasus_resume(struct usb_interface *intf) 1254 { 1255 struct pegasus *pegasus = usb_get_intfdata(intf); 1256 1257 netif_device_attach(pegasus->net); 1258 if (netif_running(pegasus->net)) { 1259 pegasus->rx_urb->status = 0; 1260 pegasus->rx_urb->actual_length = 0; 1261 read_bulk_callback(pegasus->rx_urb); 1262 1263 pegasus->intr_urb->status = 0; 1264 pegasus->intr_urb->actual_length = 0; 1265 intr_callback(pegasus->intr_urb); 1266 } 1267 queue_delayed_work(system_long_wq, &pegasus->carrier_check, 1268 CARRIER_CHECK_DELAY); 1269 return 0; 1270 } 1271 1272 static const struct net_device_ops pegasus_netdev_ops = { 1273 .ndo_open = pegasus_open, 1274 .ndo_stop = pegasus_close, 1275 .ndo_siocdevprivate = pegasus_siocdevprivate, 1276 .ndo_start_xmit = pegasus_start_xmit, 1277 .ndo_set_rx_mode = pegasus_set_multicast, 1278 .ndo_tx_timeout = pegasus_tx_timeout, 1279 .ndo_set_mac_address = eth_mac_addr, 1280 .ndo_validate_addr = eth_validate_addr, 1281 }; 1282 1283 static struct usb_driver pegasus_driver = { 1284 .name = driver_name, 1285 .probe = pegasus_probe, 1286 .disconnect = pegasus_disconnect, 1287 .id_table = pegasus_ids, 1288 .suspend = pegasus_suspend, 1289 .resume = pegasus_resume, 1290 .disable_hub_initiated_lpm = 1, 1291 }; 1292 1293 static void __init parse_id(char *id) 1294 { 1295 unsigned int vendor_id = 0, device_id = 0, flags = 0, i = 0; 1296 char *token, *name = NULL; 1297 1298 if ((token = strsep(&id, ":")) != NULL) 1299 name = token; 1300 /* name now points to a null terminated string*/ 1301 if ((token = strsep(&id, ":")) != NULL) 1302 vendor_id = simple_strtoul(token, NULL, 16); 1303 if ((token = strsep(&id, ":")) != NULL) 1304 device_id = simple_strtoul(token, NULL, 16); 1305 flags = simple_strtoul(id, NULL, 16); 1306 pr_info("%s: new device %s, vendor ID 0x%04x, device ID 0x%04x, flags: 0x%x\n", 1307 driver_name, name, vendor_id, device_id, flags); 1308 1309 if (vendor_id > 0x10000 || vendor_id == 0) 1310 return; 1311 if (device_id > 0x10000 || device_id == 0) 1312 return; 1313 1314 for (i = 0; usb_dev_id[i].name; i++); 1315 usb_dev_id[i].name = name; 1316 usb_dev_id[i].vendor = vendor_id; 1317 usb_dev_id[i].device = device_id; 1318 usb_dev_id[i].private = flags; 1319 pegasus_ids[i].match_flags = USB_DEVICE_ID_MATCH_DEVICE; 1320 pegasus_ids[i].idVendor = vendor_id; 1321 pegasus_ids[i].idProduct = device_id; 1322 } 1323 1324 static int __init pegasus_init(void) 1325 { 1326 pr_info("%s: " DRIVER_DESC "\n", driver_name); 1327 if (devid) 1328 parse_id(devid); 1329 return usb_register(&pegasus_driver); 1330 } 1331 1332 static void __exit pegasus_exit(void) 1333 { 1334 usb_deregister(&pegasus_driver); 1335 } 1336 1337 module_init(pegasus_init); 1338 module_exit(pegasus_exit); 1339