diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-11-12 20:13:28 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-11-12 20:13:28 -0500 |
| commit | 00dad7fa99701f5ca83b9f598d1c36c9523bbbf7 (patch) | |
| tree | 6cd0f9a4b63ed0fe25c1cfd48978209e0819e86b | |
| parent | edaa4d668babd65e98e1452043996bbefc0285b0 (diff) | |
| parent | 868719752d60fb04a3714d77fdeb780b4d585faf (diff) | |
Merge branch 'usb-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb-2.6
* 'usb-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb-2.6: (28 commits)
Revert "USB: xhci: Use GFP_ATOMIC under spin_lock"
USB: ohci-jz4740: Fix spelling in MODULE_ALIAS
UWB: Return UWB_RSV_ALLOC_NOT_FOUND rather than crashing on NULL dereference if kzalloc fails
usb: core: fix information leak to userland
usb: misc: iowarrior: fix information leak to userland
usb: misc: sisusbvga: fix information leak to userland
usb: subtle increased memory usage in u_serial
USB: option: fix when the driver is loaded incorrectly for some Huawei devices.
USB: xhci: Use GFP_ATOMIC under spin_lock
usb: gadget: goku_udc: add registered flag bit, fixing build
USB: ehci/mxc: compile fix
USB: Fix FSL USB driver on non Open Firmware systems
USB: the development of the usb tree is now in git
usb: musb: fail unaligned DMA transfers on v1.8 and above
USB: ftdi_sio: add device IDs for Milkymist One JTAG/serial
usb.h: fix ioctl kernel-doc info
usb: musb: gadget: kill duplicate code in musb_gadget_queue()
usb: musb: Fix handling of spurious SESSREQ
usb: musb: fix kernel oops when loading musb_hdrc module for the 2nd time
USB: musb: blackfin: push clkin value to platform resources
...
| -rw-r--r-- | MAINTAINERS | 2 | ||||
| -rw-r--r-- | drivers/usb/core/devio.c | 7 | ||||
| -rw-r--r-- | drivers/usb/gadget/Kconfig | 2 | ||||
| -rw-r--r-- | drivers/usb/gadget/goku_udc.h | 3 | ||||
| -rw-r--r-- | drivers/usb/gadget/u_serial.c | 54 | ||||
| -rw-r--r-- | drivers/usb/host/Kconfig | 2 | ||||
| -rw-r--r-- | drivers/usb/host/ehci-mxc.c | 14 | ||||
| -rw-r--r-- | drivers/usb/host/ohci-jz4740.c | 2 | ||||
| -rw-r--r-- | drivers/usb/misc/iowarrior.c | 1 | ||||
| -rw-r--r-- | drivers/usb/misc/sisusbvga/sisusb.c | 1 | ||||
| -rw-r--r-- | drivers/usb/musb/blackfin.c | 80 | ||||
| -rw-r--r-- | drivers/usb/musb/musb_core.c | 41 | ||||
| -rw-r--r-- | drivers/usb/musb/musb_core.h | 2 | ||||
| -rw-r--r-- | drivers/usb/musb/musb_gadget.c | 41 | ||||
| -rw-r--r-- | drivers/usb/musb/musb_regs.h | 3 | ||||
| -rw-r--r-- | drivers/usb/musb/musbhsdma.c | 14 | ||||
| -rw-r--r-- | drivers/usb/serial/ftdi_sio.c | 2 | ||||
| -rw-r--r-- | drivers/usb/serial/ftdi_sio_ids.h | 7 | ||||
| -rw-r--r-- | drivers/usb/serial/option.c | 2 | ||||
| -rw-r--r-- | drivers/uwb/allocator.c | 3 | ||||
| -rw-r--r-- | include/linux/usb.h | 2 | ||||
| -rw-r--r-- | include/linux/usb/musb.h | 2 |
22 files changed, 188 insertions, 99 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index 716c548107dd..1b1954dc087d 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
| @@ -6233,7 +6233,7 @@ USB SUBSYSTEM | |||
| 6233 | M: Greg Kroah-Hartman <gregkh@suse.de> | 6233 | M: Greg Kroah-Hartman <gregkh@suse.de> |
| 6234 | L: linux-usb@vger.kernel.org | 6234 | L: linux-usb@vger.kernel.org |
| 6235 | W: http://www.linux-usb.org | 6235 | W: http://www.linux-usb.org |
| 6236 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ | 6236 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb-2.6.git |
| 6237 | S: Supported | 6237 | S: Supported |
| 6238 | F: Documentation/usb/ | 6238 | F: Documentation/usb/ |
| 6239 | F: drivers/net/usb/ | 6239 | F: drivers/net/usb/ |
diff --git a/drivers/usb/core/devio.c b/drivers/usb/core/devio.c index f1aaff6202a5..045bb4b823e1 100644 --- a/drivers/usb/core/devio.c +++ b/drivers/usb/core/devio.c | |||
| @@ -965,10 +965,11 @@ static int proc_getdriver(struct dev_state *ps, void __user *arg) | |||
| 965 | 965 | ||
| 966 | static int proc_connectinfo(struct dev_state *ps, void __user *arg) | 966 | static int proc_connectinfo(struct dev_state *ps, void __user *arg) |
| 967 | { | 967 | { |
| 968 | struct usbdevfs_connectinfo ci; | 968 | struct usbdevfs_connectinfo ci = { |
| 969 | .devnum = ps->dev->devnum, | ||
| 970 | .slow = ps->dev->speed == USB_SPEED_LOW | ||
| 971 | }; | ||
| 969 | 972 | ||
| 970 | ci.devnum = ps->dev->devnum; | ||
| 971 | ci.slow = ps->dev->speed == USB_SPEED_LOW; | ||
| 972 | if (copy_to_user(arg, &ci, sizeof(ci))) | 973 | if (copy_to_user(arg, &ci, sizeof(ci))) |
| 973 | return -EFAULT; | 974 | return -EFAULT; |
| 974 | return 0; | 975 | return 0; |
diff --git a/drivers/usb/gadget/Kconfig b/drivers/usb/gadget/Kconfig index b739ca814651..607d0db4a988 100644 --- a/drivers/usb/gadget/Kconfig +++ b/drivers/usb/gadget/Kconfig | |||
| @@ -158,7 +158,7 @@ config USB_GADGET_FSL_USB2 | |||
| 158 | boolean "Freescale Highspeed USB DR Peripheral Controller" | 158 | boolean "Freescale Highspeed USB DR Peripheral Controller" |
| 159 | depends on FSL_SOC || ARCH_MXC | 159 | depends on FSL_SOC || ARCH_MXC |
| 160 | select USB_GADGET_DUALSPEED | 160 | select USB_GADGET_DUALSPEED |
| 161 | select USB_FSL_MPH_DR_OF | 161 | select USB_FSL_MPH_DR_OF if OF |
| 162 | help | 162 | help |
| 163 | Some of Freescale PowerPC processors have a High Speed | 163 | Some of Freescale PowerPC processors have a High Speed |
| 164 | Dual-Role(DR) USB controller, which supports device mode. | 164 | Dual-Role(DR) USB controller, which supports device mode. |
diff --git a/drivers/usb/gadget/goku_udc.h b/drivers/usb/gadget/goku_udc.h index 566cb2319056..e7e0c69d3b1f 100644 --- a/drivers/usb/gadget/goku_udc.h +++ b/drivers/usb/gadget/goku_udc.h | |||
| @@ -251,7 +251,8 @@ struct goku_udc { | |||
| 251 | got_region:1, | 251 | got_region:1, |
| 252 | req_config:1, | 252 | req_config:1, |
| 253 | configured:1, | 253 | configured:1, |
| 254 | enabled:1; | 254 | enabled:1, |
| 255 | registered:1; | ||
| 255 | 256 | ||
| 256 | /* pci state used to access those endpoints */ | 257 | /* pci state used to access those endpoints */ |
| 257 | struct pci_dev *pdev; | 258 | struct pci_dev *pdev; |
diff --git a/drivers/usb/gadget/u_serial.c b/drivers/usb/gadget/u_serial.c index 01e5354a4c20..40f7716b31fc 100644 --- a/drivers/usb/gadget/u_serial.c +++ b/drivers/usb/gadget/u_serial.c | |||
| @@ -105,11 +105,15 @@ struct gs_port { | |||
| 105 | wait_queue_head_t close_wait; /* wait for last close */ | 105 | wait_queue_head_t close_wait; /* wait for last close */ |
| 106 | 106 | ||
| 107 | struct list_head read_pool; | 107 | struct list_head read_pool; |
| 108 | int read_started; | ||
| 109 | int read_allocated; | ||
| 108 | struct list_head read_queue; | 110 | struct list_head read_queue; |
| 109 | unsigned n_read; | 111 | unsigned n_read; |
| 110 | struct tasklet_struct push; | 112 | struct tasklet_struct push; |
| 111 | 113 | ||
| 112 | struct list_head write_pool; | 114 | struct list_head write_pool; |
| 115 | int write_started; | ||
| 116 | int write_allocated; | ||
| 113 | struct gs_buf port_write_buf; | 117 | struct gs_buf port_write_buf; |
| 114 | wait_queue_head_t drain_wait; /* wait while writes drain */ | 118 | wait_queue_head_t drain_wait; /* wait while writes drain */ |
| 115 | 119 | ||
| @@ -363,6 +367,9 @@ __acquires(&port->port_lock) | |||
| 363 | struct usb_request *req; | 367 | struct usb_request *req; |
| 364 | int len; | 368 | int len; |
| 365 | 369 | ||
| 370 | if (port->write_started >= QUEUE_SIZE) | ||
| 371 | break; | ||
| 372 | |||
| 366 | req = list_entry(pool->next, struct usb_request, list); | 373 | req = list_entry(pool->next, struct usb_request, list); |
| 367 | len = gs_send_packet(port, req->buf, in->maxpacket); | 374 | len = gs_send_packet(port, req->buf, in->maxpacket); |
| 368 | if (len == 0) { | 375 | if (len == 0) { |
| @@ -397,6 +404,8 @@ __acquires(&port->port_lock) | |||
| 397 | break; | 404 | break; |
| 398 | } | 405 | } |
| 399 | 406 | ||
| 407 | port->write_started++; | ||
| 408 | |||
| 400 | /* abort immediately after disconnect */ | 409 | /* abort immediately after disconnect */ |
| 401 | if (!port->port_usb) | 410 | if (!port->port_usb) |
| 402 | break; | 411 | break; |
| @@ -418,7 +427,6 @@ __acquires(&port->port_lock) | |||
| 418 | { | 427 | { |
| 419 | struct list_head *pool = &port->read_pool; | 428 | struct list_head *pool = &port->read_pool; |
| 420 | struct usb_ep *out = port->port_usb->out; | 429 | struct usb_ep *out = port->port_usb->out; |
| 421 | unsigned started = 0; | ||
| 422 | 430 | ||
| 423 | while (!list_empty(pool)) { | 431 | while (!list_empty(pool)) { |
| 424 | struct usb_request *req; | 432 | struct usb_request *req; |
| @@ -430,6 +438,9 @@ __acquires(&port->port_lock) | |||
| 430 | if (!tty) | 438 | if (!tty) |
| 431 | break; | 439 | break; |
| 432 | 440 | ||
| 441 | if (port->read_started >= QUEUE_SIZE) | ||
| 442 | break; | ||
| 443 | |||
| 433 | req = list_entry(pool->next, struct usb_request, list); | 444 | req = list_entry(pool->next, struct usb_request, list); |
| 434 | list_del(&req->list); | 445 | list_del(&req->list); |
| 435 | req->length = out->maxpacket; | 446 | req->length = out->maxpacket; |
| @@ -447,13 +458,13 @@ __acquires(&port->port_lock) | |||
| 447 | list_add(&req->list, pool); | 458 | list_add(&req->list, pool); |
| 448 | break; | 459 | break; |
| 449 | } | 460 | } |
| 450 | started++; | 461 | port->read_started++; |
| 451 | 462 | ||
| 452 | /* abort immediately after disconnect */ | 463 | /* abort immediately after disconnect */ |
| 453 | if (!port->port_usb) | 464 | if (!port->port_usb) |
| 454 | break; | 465 | break; |
| 455 | } | 466 | } |
| 456 | return started; | 467 | return port->read_started; |
| 457 | } | 468 | } |
| 458 | 469 | ||
| 459 | /* | 470 | /* |
| @@ -535,6 +546,7 @@ static void gs_rx_push(unsigned long _port) | |||
| 535 | } | 546 | } |
| 536 | recycle: | 547 | recycle: |
| 537 | list_move(&req->list, &port->read_pool); | 548 | list_move(&req->list, &port->read_pool); |
| 549 | port->read_started--; | ||
| 538 | } | 550 | } |
| 539 | 551 | ||
| 540 | /* Push from tty to ldisc; without low_latency set this is handled by | 552 | /* Push from tty to ldisc; without low_latency set this is handled by |
| @@ -587,6 +599,7 @@ static void gs_write_complete(struct usb_ep *ep, struct usb_request *req) | |||
| 587 | 599 | ||
| 588 | spin_lock(&port->port_lock); | 600 | spin_lock(&port->port_lock); |
| 589 | list_add(&req->list, &port->write_pool); | 601 | list_add(&req->list, &port->write_pool); |
| 602 | port->write_started--; | ||
| 590 | 603 | ||
| 591 | switch (req->status) { | 604 | switch (req->status) { |
| 592 | default: | 605 | default: |
| @@ -608,7 +621,8 @@ static void gs_write_complete(struct usb_ep *ep, struct usb_request *req) | |||
| 608 | spin_unlock(&port->port_lock); | 621 | spin_unlock(&port->port_lock); |
| 609 | } | 622 | } |
| 610 | 623 | ||
| 611 | static void gs_free_requests(struct usb_ep *ep, struct list_head *head) | 624 | static void gs_free_requests(struct usb_ep *ep, struct list_head *head, |
| 625 | int *allocated) | ||
| 612 | { | 626 | { |
| 613 | struct usb_request *req; | 627 | struct usb_request *req; |
| 614 | 628 | ||
| @@ -616,25 +630,31 @@ static void gs_free_requests(struct usb_ep *ep, struct list_head *head) | |||
| 616 | req = list_entry(head->next, struct usb_request, list); | 630 | req = list_entry(head->next, struct usb_request, list); |
| 617 | list_del(&req->list); | 631 | list_del(&req->list); |
| 618 | gs_free_req(ep, req); | 632 | gs_free_req(ep, req); |
| 633 | if (allocated) | ||
| 634 | (*allocated)--; | ||
| 619 | } | 635 | } |
| 620 | } | 636 | } |
| 621 | 637 | ||
| 622 | static int gs_alloc_requests(struct usb_ep *ep, struct list_head *head, | 638 | static int gs_alloc_requests(struct usb_ep *ep, struct list_head *head, |
| 623 | void (*fn)(struct usb_ep *, struct usb_request *)) | 639 | void (*fn)(struct usb_ep *, struct usb_request *), |
| 640 | int *allocated) | ||
| 624 | { | 641 | { |
| 625 | int i; | 642 | int i; |
| 626 | struct usb_request *req; | 643 | struct usb_request *req; |
| 644 | int n = allocated ? QUEUE_SIZE - *allocated : QUEUE_SIZE; | ||
| 627 | 645 | ||
| 628 | /* Pre-allocate up to QUEUE_SIZE transfers, but if we can't | 646 | /* Pre-allocate up to QUEUE_SIZE transfers, but if we can't |
| 629 | * do quite that many this time, don't fail ... we just won't | 647 | * do quite that many this time, don't fail ... we just won't |
| 630 | * be as speedy as we might otherwise be. | 648 | * be as speedy as we might otherwise be. |
| 631 | */ | 649 | */ |
| 632 | for (i = 0; i < QUEUE_SIZE; i++) { | 650 | for (i = 0; i < n; i++) { |
| 633 | req = gs_alloc_req(ep, ep->maxpacket, GFP_ATOMIC); | 651 | req = gs_alloc_req(ep, ep->maxpacket, GFP_ATOMIC); |
| 634 | if (!req) | 652 | if (!req) |
| 635 | return list_empty(head) ? -ENOMEM : 0; | 653 | return list_empty(head) ? -ENOMEM : 0; |
| 636 | req->complete = fn; | 654 | req->complete = fn; |
| 637 | list_add_tail(&req->list, head); | 655 | list_add_tail(&req->list, head); |
| 656 | if (allocated) | ||
| 657 | (*allocated)++; | ||
| 638 | } | 658 | } |
| 639 | return 0; | 659 | return 0; |
| 640 | } | 660 | } |
| @@ -661,14 +681,15 @@ static int gs_start_io(struct gs_port *port) | |||
| 661 | * configurations may use different endpoints with a given port; | 681 | * configurations may use different endpoints with a given port; |
| 662 | * and high speed vs full speed changes packet sizes too. | 682 | * and high speed vs full speed changes packet sizes too. |
| 663 | */ | 683 | */ |
| 664 | status = gs_alloc_requests(ep, head, gs_read_complete); | 684 | status = gs_alloc_requests(ep, head, gs_read_complete, |
| 685 | &port->read_allocated); | ||
| 665 | if (status) | 686 | if (status) |
| 666 | return status; | 687 | return status; |
| 667 | 688 | ||
| 668 | status = gs_alloc_requests(port->port_usb->in, &port->write_pool, | 689 | status = gs_alloc_requests(port->port_usb->in, &port->write_pool, |
| 669 | gs_write_complete); | 690 | gs_write_complete, &port->write_allocated); |
| 670 | if (status) { | 691 | if (status) { |
| 671 | gs_free_requests(ep, head); | 692 | gs_free_requests(ep, head, &port->read_allocated); |
| 672 | return status; | 693 | return status; |
| 673 | } | 694 | } |
| 674 | 695 | ||
| @@ -680,8 +701,9 @@ static int gs_start_io(struct gs_port *port) | |||
| 680 | if (started) { | 701 | if (started) { |
| 681 | tty_wakeup(port->port_tty); | 702 | tty_wakeup(port->port_tty); |
| 682 | } else { | 703 | } else { |
| 683 | gs_free_requests(ep, head); | 704 | gs_free_requests(ep, head, &port->read_allocated); |
| 684 | gs_free_requests(port->port_usb->in, &port->write_pool); | 705 | gs_free_requests(port->port_usb->in, &port->write_pool, |
| 706 | &port->write_allocated); | ||
| 685 | status = -EIO; | 707 | status = -EIO; |
| 686 | } | 708 | } |
| 687 | 709 | ||
| @@ -1315,8 +1337,12 @@ void gserial_disconnect(struct gserial *gser) | |||
| 1315 | spin_lock_irqsave(&port->port_lock, flags); | 1337 | spin_lock_irqsave(&port->port_lock, flags); |
| 1316 | if (port->open_count == 0 && !port->openclose) | 1338 | if (port->open_count == 0 && !port->openclose) |
| 1317 | gs_buf_free(&port->port_write_buf); | 1339 | gs_buf_free(&port->port_write_buf); |
| 1318 | gs_free_requests(gser->out, &port->read_pool); | 1340 | gs_free_requests(gser->out, &port->read_pool, NULL); |
| 1319 | gs_free_requests(gser->out, &port->read_queue); | 1341 | gs_free_requests(gser->out, &port->read_queue, NULL); |
| 1320 | gs_free_requests(gser->in, &port->write_pool); | 1342 | gs_free_requests(gser->in, &port->write_pool, NULL); |
| 1343 | |||
| 1344 | port->read_allocated = port->read_started = | ||
| 1345 | port->write_allocated = port->write_started = 0; | ||
| 1346 | |||
| 1321 | spin_unlock_irqrestore(&port->port_lock, flags); | 1347 | spin_unlock_irqrestore(&port->port_lock, flags); |
| 1322 | } | 1348 | } |
diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig index 2391c396ca32..6f4f8e6a40c7 100644 --- a/drivers/usb/host/Kconfig +++ b/drivers/usb/host/Kconfig | |||
| @@ -122,7 +122,7 @@ config USB_EHCI_FSL | |||
| 122 | bool "Support for Freescale on-chip EHCI USB controller" | 122 | bool "Support for Freescale on-chip EHCI USB controller" |
| 123 | depends on USB_EHCI_HCD && FSL_SOC | 123 | depends on USB_EHCI_HCD && FSL_SOC |
| 124 | select USB_EHCI_ROOT_HUB_TT | 124 | select USB_EHCI_ROOT_HUB_TT |
| 125 | select USB_FSL_MPH_DR_OF | 125 | select USB_FSL_MPH_DR_OF if OF |
| 126 | ---help--- | 126 | ---help--- |
| 127 | Variation of ARC USB block used in some Freescale chips. | 127 | Variation of ARC USB block used in some Freescale chips. |
| 128 | 128 | ||
diff --git a/drivers/usb/host/ehci-mxc.c b/drivers/usb/host/ehci-mxc.c index ac9c4d7c44af..bce85055019a 100644 --- a/drivers/usb/host/ehci-mxc.c +++ b/drivers/usb/host/ehci-mxc.c | |||
| @@ -36,6 +36,8 @@ struct ehci_mxc_priv { | |||
| 36 | static int ehci_mxc_setup(struct usb_hcd *hcd) | 36 | static int ehci_mxc_setup(struct usb_hcd *hcd) |
| 37 | { | 37 | { |
| 38 | struct ehci_hcd *ehci = hcd_to_ehci(hcd); | 38 | struct ehci_hcd *ehci = hcd_to_ehci(hcd); |
| 39 | struct device *dev = hcd->self.controller; | ||
| 40 | struct mxc_usbh_platform_data *pdata = dev_get_platdata(dev); | ||
| 39 | int retval; | 41 | int retval; |
| 40 | 42 | ||
| 41 | /* EHCI registers start at offset 0x100 */ | 43 | /* EHCI registers start at offset 0x100 */ |
| @@ -63,6 +65,12 @@ static int ehci_mxc_setup(struct usb_hcd *hcd) | |||
| 63 | 65 | ||
| 64 | ehci_reset(ehci); | 66 | ehci_reset(ehci); |
| 65 | 67 | ||
| 68 | /* set up the PORTSCx register */ | ||
| 69 | ehci_writel(ehci, pdata->portsc, &ehci->regs->port_status[0]); | ||
| 70 | |||
| 71 | /* is this really needed? */ | ||
| 72 | msleep(10); | ||
| 73 | |||
| 66 | ehci_port_power(ehci, 0); | 74 | ehci_port_power(ehci, 0); |
| 67 | return 0; | 75 | return 0; |
| 68 | } | 76 | } |
| @@ -114,7 +122,7 @@ static int ehci_mxc_drv_probe(struct platform_device *pdev) | |||
| 114 | struct mxc_usbh_platform_data *pdata = pdev->dev.platform_data; | 122 | struct mxc_usbh_platform_data *pdata = pdev->dev.platform_data; |
| 115 | struct usb_hcd *hcd; | 123 | struct usb_hcd *hcd; |
| 116 | struct resource *res; | 124 | struct resource *res; |
| 117 | int irq, ret, temp; | 125 | int irq, ret; |
| 118 | struct ehci_mxc_priv *priv; | 126 | struct ehci_mxc_priv *priv; |
| 119 | struct device *dev = &pdev->dev; | 127 | struct device *dev = &pdev->dev; |
| 120 | 128 | ||
| @@ -188,10 +196,6 @@ static int ehci_mxc_drv_probe(struct platform_device *pdev) | |||
| 188 | clk_enable(priv->ahbclk); | 196 | clk_enable(priv->ahbclk); |
| 189 | } | 197 | } |
| 190 | 198 | ||
| 191 | /* set up the PORTSCx register */ | ||
| 192 | ehci_writel(ehci, pdata->portsc, &ehci->regs->port_status[0]); | ||
| 193 | mdelay(10); | ||
| 194 | |||
| 195 | /* setup specific usb hw */ | 199 | /* setup specific usb hw */ |
| 196 | ret = mxc_initialize_usb_hw(pdev->id, pdata->flags); | 200 | ret = mxc_initialize_usb_hw(pdev->id, pdata->flags); |
| 197 | if (ret < 0) | 201 | if (ret < 0) |
diff --git a/drivers/usb/host/ohci-jz4740.c b/drivers/usb/host/ohci-jz4740.c index 10e1872f3ab9..931d588c3fb5 100644 --- a/drivers/usb/host/ohci-jz4740.c +++ b/drivers/usb/host/ohci-jz4740.c | |||
| @@ -273,4 +273,4 @@ static struct platform_driver ohci_hcd_jz4740_driver = { | |||
| 273 | }, | 273 | }, |
| 274 | }; | 274 | }; |
| 275 | 275 | ||
| 276 | MODULE_ALIAS("platfrom:jz4740-ohci"); | 276 | MODULE_ALIAS("platform:jz4740-ohci"); |
diff --git a/drivers/usb/misc/iowarrior.c b/drivers/usb/misc/iowarrior.c index 375664198776..c9078e4e1f4d 100644 --- a/drivers/usb/misc/iowarrior.c +++ b/drivers/usb/misc/iowarrior.c | |||
| @@ -553,6 +553,7 @@ static long iowarrior_ioctl(struct file *file, unsigned int cmd, | |||
| 553 | /* needed for power consumption */ | 553 | /* needed for power consumption */ |
| 554 | struct usb_config_descriptor *cfg_descriptor = &dev->udev->actconfig->desc; | 554 | struct usb_config_descriptor *cfg_descriptor = &dev->udev->actconfig->desc; |
| 555 | 555 | ||
| 556 | memset(&info, 0, sizeof(info)); | ||
| 556 | /* directly from the descriptor */ | 557 | /* directly from the descriptor */ |
| 557 | info.vendor = le16_to_cpu(dev->udev->descriptor.idVendor); | 558 | info.vendor = le16_to_cpu(dev->udev->descriptor.idVendor); |
| 558 | info.product = dev->product_id; | 559 | info.product = dev->product_id; |
diff --git a/drivers/usb/misc/sisusbvga/sisusb.c b/drivers/usb/misc/sisusbvga/sisusb.c index 70d00e99a4b4..dd573abd2d1e 100644 --- a/drivers/usb/misc/sisusbvga/sisusb.c +++ b/drivers/usb/misc/sisusbvga/sisusb.c | |||
| @@ -3008,6 +3008,7 @@ sisusb_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | |||
| 3008 | #else | 3008 | #else |
| 3009 | x.sisusb_conactive = 0; | 3009 | x.sisusb_conactive = 0; |
| 3010 | #endif | 3010 | #endif |
| 3011 | memset(x.sisusb_reserved, 0, sizeof(x.sisusb_reserved)); | ||
| 3011 | 3012 | ||
| 3012 | if (copy_to_user((void __user *)arg, &x, sizeof(x))) | 3013 | if (copy_to_user((void __user *)arg, &x, sizeof(x))) |
| 3013 | retval = -EFAULT; | 3014 | retval = -EFAULT; |
diff --git a/drivers/usb/musb/blackfin.c b/drivers/usb/musb/blackfin.c index 611a9d274363..fcb5206a65bd 100644 --- a/drivers/usb/musb/blackfin.c +++ b/drivers/usb/musb/blackfin.c | |||
| @@ -171,8 +171,9 @@ static irqreturn_t blackfin_interrupt(int irq, void *__hci) | |||
| 171 | } | 171 | } |
| 172 | 172 | ||
| 173 | /* Start sampling ID pin, when plug is removed from MUSB */ | 173 | /* Start sampling ID pin, when plug is removed from MUSB */ |
| 174 | if (is_otg_enabled(musb) && (musb->xceiv->state == OTG_STATE_B_IDLE | 174 | if ((is_otg_enabled(musb) && (musb->xceiv->state == OTG_STATE_B_IDLE |
| 175 | || musb->xceiv->state == OTG_STATE_A_WAIT_BCON)) { | 175 | || musb->xceiv->state == OTG_STATE_A_WAIT_BCON)) || |
| 176 | (musb->int_usb & MUSB_INTR_DISCONNECT && is_host_active(musb))) { | ||
| 176 | mod_timer(&musb_conn_timer, jiffies + TIMER_DELAY); | 177 | mod_timer(&musb_conn_timer, jiffies + TIMER_DELAY); |
| 177 | musb->a_wait_bcon = TIMER_DELAY; | 178 | musb->a_wait_bcon = TIMER_DELAY; |
| 178 | } | 179 | } |
| @@ -323,30 +324,8 @@ int musb_platform_set_mode(struct musb *musb, u8 musb_mode) | |||
| 323 | return -EIO; | 324 | return -EIO; |
| 324 | } | 325 | } |
| 325 | 326 | ||
| 326 | int __init musb_platform_init(struct musb *musb, void *board_data) | 327 | static void musb_platform_reg_init(struct musb *musb) |
| 327 | { | 328 | { |
| 328 | |||
| 329 | /* | ||
| 330 | * Rev 1.0 BF549 EZ-KITs require PE7 to be high for both DEVICE | ||
| 331 | * and OTG HOST modes, while rev 1.1 and greater require PE7 to | ||
| 332 | * be low for DEVICE mode and high for HOST mode. We set it high | ||
| 333 | * here because we are in host mode | ||
| 334 | */ | ||
| 335 | |||
| 336 | if (gpio_request(musb->config->gpio_vrsel, "USB_VRSEL")) { | ||
| 337 | printk(KERN_ERR "Failed ro request USB_VRSEL GPIO_%d \n", | ||
| 338 | musb->config->gpio_vrsel); | ||
| 339 | return -ENODEV; | ||
| 340 | } | ||
| 341 | gpio_direction_output(musb->config->gpio_vrsel, 0); | ||
| 342 | |||
| 343 | usb_nop_xceiv_register(); | ||
| 344 | musb->xceiv = otg_get_transceiver(); | ||
| 345 | if (!musb->xceiv) { | ||
| 346 | gpio_free(musb->config->gpio_vrsel); | ||
| 347 | return -ENODEV; | ||
| 348 | } | ||
| 349 | |||
| 350 | if (ANOMALY_05000346) { | 329 | if (ANOMALY_05000346) { |
| 351 | bfin_write_USB_APHY_CALIB(ANOMALY_05000346_value); | 330 | bfin_write_USB_APHY_CALIB(ANOMALY_05000346_value); |
| 352 | SSYNC(); | 331 | SSYNC(); |
| @@ -358,7 +337,8 @@ int __init musb_platform_init(struct musb *musb, void *board_data) | |||
| 358 | } | 337 | } |
| 359 | 338 | ||
| 360 | /* Configure PLL oscillator register */ | 339 | /* Configure PLL oscillator register */ |
| 361 | bfin_write_USB_PLLOSC_CTRL(0x30a8); | 340 | bfin_write_USB_PLLOSC_CTRL(0x3080 | |
| 341 | ((480/musb->config->clkin) << 1)); | ||
| 362 | SSYNC(); | 342 | SSYNC(); |
| 363 | 343 | ||
| 364 | bfin_write_USB_SRP_CLKDIV((get_sclk()/1000) / 32 - 1); | 344 | bfin_write_USB_SRP_CLKDIV((get_sclk()/1000) / 32 - 1); |
| @@ -380,6 +360,33 @@ int __init musb_platform_init(struct musb *musb, void *board_data) | |||
| 380 | EP2_RX_ENA | EP3_RX_ENA | EP4_RX_ENA | | 360 | EP2_RX_ENA | EP3_RX_ENA | EP4_RX_ENA | |
| 381 | EP5_RX_ENA | EP6_RX_ENA | EP7_RX_ENA); | 361 | EP5_RX_ENA | EP6_RX_ENA | EP7_RX_ENA); |
| 382 | SSYNC(); | 362 | SSYNC(); |
| 363 | } | ||
| 364 | |||
| 365 | int __init musb_platform_init(struct musb *musb, void *board_data) | ||
| 366 | { | ||
| 367 | |||
| 368 | /* | ||
| 369 | * Rev 1.0 BF549 EZ-KITs require PE7 to be high for both DEVICE | ||
| 370 | * and OTG HOST modes, while rev 1.1 and greater require PE7 to | ||
| 371 | * be low for DEVICE mode and high for HOST mode. We set it high | ||
| 372 | * here because we are in host mode | ||
| 373 | */ | ||
| 374 | |||
| 375 | if (gpio_request(musb->config->gpio_vrsel, "USB_VRSEL")) { | ||
| 376 | printk(KERN_ERR "Failed ro request USB_VRSEL GPIO_%d\n", | ||
| 377 | musb->config->gpio_vrsel); | ||
| 378 | return -ENODEV; | ||
| 379 | } | ||
| 380 | gpio_direction_output(musb->config->gpio_vrsel, 0); | ||
| 381 | |||
| 382 | usb_nop_xceiv_register(); | ||
| 383 | musb->xceiv = otg_get_transceiver(); | ||
| 384 | if (!musb->xceiv) { | ||
| 385 | gpio_free(musb->config->gpio_vrsel); | ||
| 386 | return -ENODEV; | ||
| 387 | } | ||
| 388 | |||
| 389 | musb_platform_reg_init(musb); | ||
| 383 | 390 | ||
| 384 | if (is_host_enabled(musb)) { | 391 | if (is_host_enabled(musb)) { |
| 385 | musb->board_set_vbus = bfin_set_vbus; | 392 | musb->board_set_vbus = bfin_set_vbus; |
| @@ -394,6 +401,27 @@ int __init musb_platform_init(struct musb *musb, void *board_data) | |||
| 394 | return 0; | 401 | return 0; |
| 395 | } | 402 | } |
| 396 | 403 | ||
| 404 | #ifdef CONFIG_PM | ||
| 405 | void musb_platform_save_context(struct musb *musb, | ||
| 406 | struct musb_context_registers *musb_context) | ||
| 407 | { | ||
| 408 | if (is_host_active(musb)) | ||
| 409 | /* | ||
| 410 | * During hibernate gpio_vrsel will change from high to low | ||
| 411 | * low which will generate wakeup event resume the system | ||
| 412 | * immediately. Set it to 0 before hibernate to avoid this | ||
| 413 | * wakeup event. | ||
| 414 | */ | ||
| 415 | gpio_set_value(musb->config->gpio_vrsel, 0); | ||
| 416 | } | ||
| 417 | |||
| 418 | void musb_platform_restore_context(struct musb *musb, | ||
| 419 | struct musb_context_registers *musb_context) | ||
| 420 | { | ||
| 421 | musb_platform_reg_init(musb); | ||
| 422 | } | ||
| 423 | #endif | ||
| 424 | |||
| 397 | int musb_platform_exit(struct musb *musb) | 425 | int musb_platform_exit(struct musb *musb) |
| 398 | { | 426 | { |
| 399 | gpio_free(musb->config->gpio_vrsel); | 427 | gpio_free(musb->config->gpio_vrsel); |
diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c index c9f9024c5515..e6669fc3b804 100644 --- a/drivers/usb/musb/musb_core.c +++ b/drivers/usb/musb/musb_core.c | |||
| @@ -552,7 +552,8 @@ static irqreturn_t musb_stage0_irq(struct musb *musb, u8 int_usb, | |||
| 552 | if (int_usb & MUSB_INTR_SESSREQ) { | 552 | if (int_usb & MUSB_INTR_SESSREQ) { |
| 553 | void __iomem *mbase = musb->mregs; | 553 | void __iomem *mbase = musb->mregs; |
| 554 | 554 | ||
| 555 | if (devctl & MUSB_DEVCTL_BDEVICE) { | 555 | if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS |
| 556 | && (devctl & MUSB_DEVCTL_BDEVICE)) { | ||
| 556 | DBG(3, "SessReq while on B state\n"); | 557 | DBG(3, "SessReq while on B state\n"); |
| 557 | return IRQ_HANDLED; | 558 | return IRQ_HANDLED; |
| 558 | } | 559 | } |
| @@ -1052,6 +1053,11 @@ static void musb_shutdown(struct platform_device *pdev) | |||
| 1052 | clk_put(musb->clock); | 1053 | clk_put(musb->clock); |
| 1053 | spin_unlock_irqrestore(&musb->lock, flags); | 1054 | spin_unlock_irqrestore(&musb->lock, flags); |
| 1054 | 1055 | ||
| 1056 | if (!is_otg_enabled(musb) && is_host_enabled(musb)) | ||
| 1057 | usb_remove_hcd(musb_to_hcd(musb)); | ||
| 1058 | musb_writeb(musb->mregs, MUSB_DEVCTL, 0); | ||
| 1059 | musb_platform_exit(musb); | ||
| 1060 | |||
| 1055 | /* FIXME power down */ | 1061 | /* FIXME power down */ |
| 1056 | } | 1062 | } |
| 1057 | 1063 | ||
| @@ -2244,13 +2250,6 @@ static int __exit musb_remove(struct platform_device *pdev) | |||
| 2244 | */ | 2250 | */ |
| 2245 | musb_exit_debugfs(musb); | 2251 | musb_exit_debugfs(musb); |
| 2246 | musb_shutdown(pdev); | 2252 | musb_shutdown(pdev); |
| 2247 | #ifdef CONFIG_USB_MUSB_HDRC_HCD | ||
| 2248 | if (musb->board_mode == MUSB_HOST) | ||
| 2249 | usb_remove_hcd(musb_to_hcd(musb)); | ||
| 2250 | #endif | ||
| 2251 | musb_writeb(musb->mregs, MUSB_DEVCTL, 0); | ||
| 2252 | musb_platform_exit(musb); | ||
| 2253 | musb_writeb(musb->mregs, MUSB_DEVCTL, 0); | ||
| 2254 | 2253 | ||
| 2255 | musb_free(musb); | 2254 | musb_free(musb); |
| 2256 | iounmap(ctrl_base); | 2255 | iounmap(ctrl_base); |
| @@ -2411,9 +2410,6 @@ static int musb_suspend(struct device *dev) | |||
| 2411 | unsigned long flags; | 2410 | unsigned long flags; |
| 2412 | struct musb *musb = dev_to_musb(&pdev->dev); | 2411 | struct musb *musb = dev_to_musb(&pdev->dev); |
| 2413 | 2412 | ||
| 2414 | if (!musb->clock) | ||
| 2415 | return 0; | ||
| 2416 | |||
| 2417 | spin_lock_irqsave(&musb->lock, flags); | 2413 | spin_lock_irqsave(&musb->lock, flags); |
| 2418 | 2414 | ||
| 2419 | if (is_peripheral_active(musb)) { | 2415 | if (is_peripheral_active(musb)) { |
| @@ -2428,10 +2424,12 @@ static int musb_suspend(struct device *dev) | |||
| 2428 | 2424 | ||
| 2429 | musb_save_context(musb); | 2425 | musb_save_context(musb); |
| 2430 | 2426 | ||
| 2431 | if (musb->set_clock) | 2427 | if (musb->clock) { |
| 2432 | musb->set_clock(musb->clock, 0); | 2428 | if (musb->set_clock) |
| 2433 | else | 2429 | musb->set_clock(musb->clock, 0); |
| 2434 | clk_disable(musb->clock); | 2430 | else |
| 2431 | clk_disable(musb->clock); | ||
| 2432 | } | ||
| 2435 | spin_unlock_irqrestore(&musb->lock, flags); | 2433 | spin_unlock_irqrestore(&musb->lock, flags); |
| 2436 | return 0; | 2434 | return 0; |
| 2437 | } | 2435 | } |
| @@ -2441,13 +2439,12 @@ static int musb_resume_noirq(struct device *dev) | |||
| 2441 | struct platform_device *pdev = to_platform_device(dev); | 2439 | struct platform_device *pdev = to_platform_device(dev); |
| 2442 | struct musb *musb = dev_to_musb(&pdev->dev); | 2440 | struct musb *musb = dev_to_musb(&pdev->dev); |
| 2443 | 2441 | ||
| 2444 | if (!musb->clock) | 2442 | if (musb->clock) { |
| 2445 | return 0; | 2443 | if (musb->set_clock) |
| 2446 | 2444 | musb->set_clock(musb->clock, 1); | |
| 2447 | if (musb->set_clock) | 2445 | else |
| 2448 | musb->set_clock(musb->clock, 1); | 2446 | clk_enable(musb->clock); |
| 2449 | else | 2447 | } |
| 2450 | clk_enable(musb->clock); | ||
| 2451 | 2448 | ||
| 2452 | musb_restore_context(musb); | 2449 | musb_restore_context(musb); |
| 2453 | 2450 | ||
diff --git a/drivers/usb/musb/musb_core.h b/drivers/usb/musb/musb_core.h index 69797e5b46a7..febaabcc2b35 100644 --- a/drivers/usb/musb/musb_core.h +++ b/drivers/usb/musb/musb_core.h | |||
| @@ -487,7 +487,7 @@ struct musb_context_registers { | |||
| 487 | }; | 487 | }; |
| 488 | 488 | ||
| 489 | #if defined(CONFIG_ARCH_OMAP2430) || defined(CONFIG_ARCH_OMAP3) || \ | 489 | #if defined(CONFIG_ARCH_OMAP2430) || defined(CONFIG_ARCH_OMAP3) || \ |
| 490 | defined(CONFIG_ARCH_OMAP4) | 490 | defined(CONFIG_ARCH_OMAP4) || defined(CONFIG_BLACKFIN) |
| 491 | extern void musb_platform_save_context(struct musb *musb, | 491 | extern void musb_platform_save_context(struct musb *musb, |
| 492 | struct musb_context_registers *musb_context); | 492 | struct musb_context_registers *musb_context); |
| 493 | extern void musb_platform_restore_context(struct musb *musb, | 493 | extern void musb_platform_restore_context(struct musb *musb, |
diff --git a/drivers/usb/musb/musb_gadget.c b/drivers/usb/musb/musb_gadget.c index 5d815049cbaa..36cfd060dbe5 100644 --- a/drivers/usb/musb/musb_gadget.c +++ b/drivers/usb/musb/musb_gadget.c | |||
| @@ -644,10 +644,8 @@ static void rxstate(struct musb *musb, struct musb_request *req) | |||
| 644 | */ | 644 | */ |
| 645 | 645 | ||
| 646 | csr |= MUSB_RXCSR_DMAENAB; | 646 | csr |= MUSB_RXCSR_DMAENAB; |
| 647 | if (!musb_ep->hb_mult && | ||
| 648 | musb_ep->hw_ep->rx_double_buffered) | ||
| 649 | csr |= MUSB_RXCSR_AUTOCLEAR; | ||
| 650 | #ifdef USE_MODE1 | 647 | #ifdef USE_MODE1 |
| 648 | csr |= MUSB_RXCSR_AUTOCLEAR; | ||
| 651 | /* csr |= MUSB_RXCSR_DMAMODE; */ | 649 | /* csr |= MUSB_RXCSR_DMAMODE; */ |
| 652 | 650 | ||
| 653 | /* this special sequence (enabling and then | 651 | /* this special sequence (enabling and then |
| @@ -656,6 +654,10 @@ static void rxstate(struct musb *musb, struct musb_request *req) | |||
| 656 | */ | 654 | */ |
| 657 | musb_writew(epio, MUSB_RXCSR, | 655 | musb_writew(epio, MUSB_RXCSR, |
| 658 | csr | MUSB_RXCSR_DMAMODE); | 656 | csr | MUSB_RXCSR_DMAMODE); |
| 657 | #else | ||
| 658 | if (!musb_ep->hb_mult && | ||
| 659 | musb_ep->hw_ep->rx_double_buffered) | ||
| 660 | csr |= MUSB_RXCSR_AUTOCLEAR; | ||
| 659 | #endif | 661 | #endif |
| 660 | musb_writew(epio, MUSB_RXCSR, csr); | 662 | musb_writew(epio, MUSB_RXCSR, csr); |
| 661 | 663 | ||
| @@ -807,7 +809,7 @@ void musb_g_rx(struct musb *musb, u8 epnum) | |||
| 807 | 809 | ||
| 808 | #if defined(CONFIG_USB_INVENTRA_DMA) || defined(CONFIG_USB_TUSB_OMAP_DMA) | 810 | #if defined(CONFIG_USB_INVENTRA_DMA) || defined(CONFIG_USB_TUSB_OMAP_DMA) |
| 809 | /* Autoclear doesn't clear RxPktRdy for short packets */ | 811 | /* Autoclear doesn't clear RxPktRdy for short packets */ |
| 810 | if ((dma->desired_mode == 0) | 812 | if ((dma->desired_mode == 0 && !hw_ep->rx_double_buffered) |
| 811 | || (dma->actual_len | 813 | || (dma->actual_len |
| 812 | & (musb_ep->packet_sz - 1))) { | 814 | & (musb_ep->packet_sz - 1))) { |
| 813 | /* ack the read! */ | 815 | /* ack the read! */ |
| @@ -818,8 +820,16 @@ void musb_g_rx(struct musb *musb, u8 epnum) | |||
| 818 | /* incomplete, and not short? wait for next IN packet */ | 820 | /* incomplete, and not short? wait for next IN packet */ |
| 819 | if ((request->actual < request->length) | 821 | if ((request->actual < request->length) |
| 820 | && (musb_ep->dma->actual_len | 822 | && (musb_ep->dma->actual_len |
| 821 | == musb_ep->packet_sz)) | 823 | == musb_ep->packet_sz)) { |
| 824 | /* In double buffer case, continue to unload fifo if | ||
| 825 | * there is Rx packet in FIFO. | ||
| 826 | **/ | ||
| 827 | csr = musb_readw(epio, MUSB_RXCSR); | ||
| 828 | if ((csr & MUSB_RXCSR_RXPKTRDY) && | ||
| 829 | hw_ep->rx_double_buffered) | ||
| 830 | goto exit; | ||
| 822 | return; | 831 | return; |
| 832 | } | ||
| 823 | #endif | 833 | #endif |
| 824 | musb_g_giveback(musb_ep, request, 0); | 834 | musb_g_giveback(musb_ep, request, 0); |
| 825 | 835 | ||
| @@ -827,7 +837,7 @@ void musb_g_rx(struct musb *musb, u8 epnum) | |||
| 827 | if (!request) | 837 | if (!request) |
| 828 | return; | 838 | return; |
| 829 | } | 839 | } |
| 830 | 840 | exit: | |
| 831 | /* Analyze request */ | 841 | /* Analyze request */ |
| 832 | rxstate(musb, to_musb_request(request)); | 842 | rxstate(musb, to_musb_request(request)); |
| 833 | } | 843 | } |
| @@ -916,13 +926,9 @@ static int musb_gadget_enable(struct usb_ep *ep, | |||
| 916 | * likewise high bandwidth periodic tx | 926 | * likewise high bandwidth periodic tx |
| 917 | */ | 927 | */ |
| 918 | /* Set TXMAXP with the FIFO size of the endpoint | 928 | /* Set TXMAXP with the FIFO size of the endpoint |
| 919 | * to disable double buffering mode. Currently, It seems that double | 929 | * to disable double buffering mode. |
| 920 | * buffering has problem if musb RTL revision number < 2.0. | ||
| 921 | */ | 930 | */ |
| 922 | if (musb->hwvers < MUSB_HWVERS_2000) | 931 | musb_writew(regs, MUSB_TXMAXP, musb_ep->packet_sz | (musb_ep->hb_mult << 11)); |
| 923 | musb_writew(regs, MUSB_TXMAXP, hw_ep->max_packet_sz_tx); | ||
| 924 | else | ||
| 925 | musb_writew(regs, MUSB_TXMAXP, musb_ep->packet_sz | (musb_ep->hb_mult << 11)); | ||
| 926 | 932 | ||
| 927 | csr = MUSB_TXCSR_MODE | MUSB_TXCSR_CLRDATATOG; | 933 | csr = MUSB_TXCSR_MODE | MUSB_TXCSR_CLRDATATOG; |
| 928 | if (musb_readw(regs, MUSB_TXCSR) | 934 | if (musb_readw(regs, MUSB_TXCSR) |
| @@ -958,10 +964,7 @@ static int musb_gadget_enable(struct usb_ep *ep, | |||
| 958 | /* Set RXMAXP with the FIFO size of the endpoint | 964 | /* Set RXMAXP with the FIFO size of the endpoint |
| 959 | * to disable double buffering mode. | 965 | * to disable double buffering mode. |
| 960 | */ | 966 | */ |
| 961 | if (musb->hwvers < MUSB_HWVERS_2000) | 967 | musb_writew(regs, MUSB_RXMAXP, musb_ep->packet_sz | (musb_ep->hb_mult << 11)); |
| 962 | musb_writew(regs, MUSB_RXMAXP, hw_ep->max_packet_sz_rx); | ||
| 963 | else | ||
| 964 | musb_writew(regs, MUSB_RXMAXP, musb_ep->packet_sz | (musb_ep->hb_mult << 11)); | ||
| 965 | 968 | ||
| 966 | /* force shared fifo to OUT-only mode */ | 969 | /* force shared fifo to OUT-only mode */ |
| 967 | if (hw_ep->is_shared_fifo) { | 970 | if (hw_ep->is_shared_fifo) { |
| @@ -1166,8 +1169,6 @@ static int musb_gadget_queue(struct usb_ep *ep, struct usb_request *req, | |||
| 1166 | : DMA_FROM_DEVICE); | 1169 | : DMA_FROM_DEVICE); |
| 1167 | request->mapped = 0; | 1170 | request->mapped = 0; |
| 1168 | } | 1171 | } |
| 1169 | } else if (!req->buf) { | ||
| 1170 | return -ENODATA; | ||
| 1171 | } else | 1172 | } else |
| 1172 | request->mapped = 0; | 1173 | request->mapped = 0; |
| 1173 | 1174 | ||
| @@ -1695,8 +1696,10 @@ int __init musb_gadget_setup(struct musb *musb) | |||
| 1695 | musb_platform_try_idle(musb, 0); | 1696 | musb_platform_try_idle(musb, 0); |
| 1696 | 1697 | ||
| 1697 | status = device_register(&musb->g.dev); | 1698 | status = device_register(&musb->g.dev); |
| 1698 | if (status != 0) | 1699 | if (status != 0) { |
| 1700 | put_device(&musb->g.dev); | ||
| 1699 | the_gadget = NULL; | 1701 | the_gadget = NULL; |
| 1702 | } | ||
| 1700 | return status; | 1703 | return status; |
| 1701 | } | 1704 | } |
| 1702 | 1705 | ||
diff --git a/drivers/usb/musb/musb_regs.h b/drivers/usb/musb/musb_regs.h index 244267527a60..5a727c5b8676 100644 --- a/drivers/usb/musb/musb_regs.h +++ b/drivers/usb/musb/musb_regs.h | |||
| @@ -633,8 +633,9 @@ static inline u8 musb_read_txhubaddr(void __iomem *mbase, u8 epnum) | |||
| 633 | return 0; | 633 | return 0; |
| 634 | } | 634 | } |
| 635 | 635 | ||
| 636 | static inline void musb_read_txhubport(void __iomem *mbase, u8 epnum) | 636 | static inline u8 musb_read_txhubport(void __iomem *mbase, u8 epnum) |
| 637 | { | 637 | { |
| 638 | return 0; | ||
| 638 | } | 639 | } |
| 639 | 640 | ||
| 640 | #endif /* CONFIG_BLACKFIN */ | 641 | #endif /* CONFIG_BLACKFIN */ |
diff --git a/drivers/usb/musb/musbhsdma.c b/drivers/usb/musb/musbhsdma.c index 6f771af5cbdb..563114d613d6 100644 --- a/drivers/usb/musb/musbhsdma.c +++ b/drivers/usb/musb/musbhsdma.c | |||
| @@ -158,6 +158,8 @@ static int dma_channel_program(struct dma_channel *channel, | |||
| 158 | dma_addr_t dma_addr, u32 len) | 158 | dma_addr_t dma_addr, u32 len) |
| 159 | { | 159 | { |
| 160 | struct musb_dma_channel *musb_channel = channel->private_data; | 160 | struct musb_dma_channel *musb_channel = channel->private_data; |
| 161 | struct musb_dma_controller *controller = musb_channel->controller; | ||
| 162 | struct musb *musb = controller->private_data; | ||
| 161 | 163 | ||
| 162 | DBG(2, "ep%d-%s pkt_sz %d, dma_addr 0x%x length %d, mode %d\n", | 164 | DBG(2, "ep%d-%s pkt_sz %d, dma_addr 0x%x length %d, mode %d\n", |
| 163 | musb_channel->epnum, | 165 | musb_channel->epnum, |
| @@ -167,6 +169,18 @@ static int dma_channel_program(struct dma_channel *channel, | |||
| 167 | BUG_ON(channel->status == MUSB_DMA_STATUS_UNKNOWN || | 169 | BUG_ON(channel->status == MUSB_DMA_STATUS_UNKNOWN || |
| 168 | channel->status == MUSB_DMA_STATUS_BUSY); | 170 | channel->status == MUSB_DMA_STATUS_BUSY); |
| 169 | 171 | ||
| 172 | /* | ||
| 173 | * The DMA engine in RTL1.8 and above cannot handle | ||
| 174 | * DMA addresses that are not aligned to a 4 byte boundary. | ||
| 175 | * It ends up masking the last two bits of the address | ||
| 176 | * programmed in DMA_ADDR. | ||
| 177 | * | ||
| 178 | * Fail such DMA transfers, so that the backup PIO mode | ||
| 179 | * can carry out the transfer | ||
| 180 | */ | ||
| 181 | if ((musb->hwvers >= MUSB_HWVERS_1800) && (dma_addr % 4)) | ||
| 182 | return false; | ||
| 183 | |||
| 170 | channel->actual_len = 0; | 184 | channel->actual_len = 0; |
| 171 | musb_channel->start_addr = dma_addr; | 185 | musb_channel->start_addr = dma_addr; |
| 172 | musb_channel->len = len; | 186 | musb_channel->len = len; |
diff --git a/drivers/usb/serial/ftdi_sio.c b/drivers/usb/serial/ftdi_sio.c index 89a9a5847803..76f8b3556672 100644 --- a/drivers/usb/serial/ftdi_sio.c +++ b/drivers/usb/serial/ftdi_sio.c | |||
| @@ -794,6 +794,8 @@ static struct usb_device_id id_table_combined [] = { | |||
| 794 | { USB_DEVICE(FTDI_VID, FTDI_SCIENCESCOPE_LOGBOOKML_PID) }, | 794 | { USB_DEVICE(FTDI_VID, FTDI_SCIENCESCOPE_LOGBOOKML_PID) }, |
| 795 | { USB_DEVICE(FTDI_VID, FTDI_SCIENCESCOPE_LS_LOGBOOK_PID) }, | 795 | { USB_DEVICE(FTDI_VID, FTDI_SCIENCESCOPE_LS_LOGBOOK_PID) }, |
| 796 | { USB_DEVICE(FTDI_VID, FTDI_SCIENCESCOPE_HS_LOGBOOK_PID) }, | 796 | { USB_DEVICE(FTDI_VID, FTDI_SCIENCESCOPE_HS_LOGBOOK_PID) }, |
| 797 | { USB_DEVICE(QIHARDWARE_VID, MILKYMISTONE_JTAGSERIAL_PID), | ||
| 798 | .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, | ||
| 797 | { }, /* Optional parameter entry */ | 799 | { }, /* Optional parameter entry */ |
| 798 | { } /* Terminating entry */ | 800 | { } /* Terminating entry */ |
| 799 | }; | 801 | }; |
diff --git a/drivers/usb/serial/ftdi_sio_ids.h b/drivers/usb/serial/ftdi_sio_ids.h index 7dfe02f1fb6a..263f62551197 100644 --- a/drivers/usb/serial/ftdi_sio_ids.h +++ b/drivers/usb/serial/ftdi_sio_ids.h | |||
| @@ -1100,3 +1100,10 @@ | |||
| 1100 | #define FTDI_SCIENCESCOPE_LOGBOOKML_PID 0xFF18 | 1100 | #define FTDI_SCIENCESCOPE_LOGBOOKML_PID 0xFF18 |
| 1101 | #define FTDI_SCIENCESCOPE_LS_LOGBOOK_PID 0xFF1C | 1101 | #define FTDI_SCIENCESCOPE_LS_LOGBOOK_PID 0xFF1C |
| 1102 | #define FTDI_SCIENCESCOPE_HS_LOGBOOK_PID 0xFF1D | 1102 | #define FTDI_SCIENCESCOPE_HS_LOGBOOK_PID 0xFF1D |
| 1103 | |||
| 1104 | /* | ||
| 1105 | * Milkymist One JTAG/Serial | ||
| 1106 | */ | ||
| 1107 | #define QIHARDWARE_VID 0x20B7 | ||
| 1108 | #define MILKYMISTONE_JTAGSERIAL_PID 0x0713 | ||
| 1109 | |||
diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c index 2297fb1bcf65..ef2977d3a613 100644 --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c | |||
| @@ -518,7 +518,7 @@ static const struct usb_device_id option_ids[] = { | |||
| 518 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_K4505, 0xff, 0xff, 0xff) }, | 518 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_K4505, 0xff, 0xff, 0xff) }, |
| 519 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_K3765, 0xff, 0xff, 0xff) }, | 519 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_K3765, 0xff, 0xff, 0xff) }, |
| 520 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_ETS1220, 0xff, 0xff, 0xff) }, | 520 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_ETS1220, 0xff, 0xff, 0xff) }, |
| 521 | { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E14AC) }, | 521 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E14AC, 0xff, 0xff, 0xff) }, |
| 522 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V640) }, | 522 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V640) }, |
| 523 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V620) }, | 523 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V620) }, |
| 524 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V740) }, | 524 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V740) }, |
diff --git a/drivers/uwb/allocator.c b/drivers/uwb/allocator.c index 436e4f7110cb..e45e673b8770 100644 --- a/drivers/uwb/allocator.c +++ b/drivers/uwb/allocator.c | |||
| @@ -326,7 +326,8 @@ int uwb_rsv_find_best_allocation(struct uwb_rsv *rsv, struct uwb_mas_bm *availab | |||
| 326 | int bit_index; | 326 | int bit_index; |
| 327 | 327 | ||
| 328 | ai = kzalloc(sizeof(struct uwb_rsv_alloc_info), GFP_KERNEL); | 328 | ai = kzalloc(sizeof(struct uwb_rsv_alloc_info), GFP_KERNEL); |
| 329 | 329 | if (!ai) | |
| 330 | return UWB_RSV_ALLOC_NOT_FOUND; | ||
| 330 | ai->min_mas = rsv->min_mas; | 331 | ai->min_mas = rsv->min_mas; |
| 331 | ai->max_mas = rsv->max_mas; | 332 | ai->max_mas = rsv->max_mas; |
| 332 | ai->max_interval = rsv->max_interval; | 333 | ai->max_interval = rsv->max_interval; |
diff --git a/include/linux/usb.h b/include/linux/usb.h index 35fe6ab222bb..24300d8a1bc1 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h | |||
| @@ -797,7 +797,7 @@ struct usbdrv_wrap { | |||
| 797 | * @disconnect: Called when the interface is no longer accessible, usually | 797 | * @disconnect: Called when the interface is no longer accessible, usually |
| 798 | * because its device has been (or is being) disconnected or the | 798 | * because its device has been (or is being) disconnected or the |
| 799 | * driver module is being unloaded. | 799 | * driver module is being unloaded. |
| 800 | * @ioctl: Used for drivers that want to talk to userspace through | 800 | * @unlocked_ioctl: Used for drivers that want to talk to userspace through |
| 801 | * the "usbfs" filesystem. This lets devices provide ways to | 801 | * the "usbfs" filesystem. This lets devices provide ways to |
| 802 | * expose information to user space regardless of where they | 802 | * expose information to user space regardless of where they |
| 803 | * do (or don't) show up otherwise in the filesystem. | 803 | * do (or don't) show up otherwise in the filesystem. |
diff --git a/include/linux/usb/musb.h b/include/linux/usb/musb.h index ee2dd1d506ed..2387f9fc8138 100644 --- a/include/linux/usb/musb.h +++ b/include/linux/usb/musb.h | |||
| @@ -89,6 +89,8 @@ struct musb_hdrc_config { | |||
| 89 | /* A GPIO controlling VRSEL in Blackfin */ | 89 | /* A GPIO controlling VRSEL in Blackfin */ |
| 90 | unsigned int gpio_vrsel; | 90 | unsigned int gpio_vrsel; |
| 91 | unsigned int gpio_vrsel_active; | 91 | unsigned int gpio_vrsel_active; |
| 92 | /* musb CLKIN in Blackfin in MHZ */ | ||
| 93 | unsigned char clkin; | ||
| 92 | #endif | 94 | #endif |
| 93 | 95 | ||
| 94 | }; | 96 | }; |
