diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-19 15:59:04 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-19 15:59:04 -0500 |
commit | 460223d21d960e420775ca4d11ddaa8389af4d25 (patch) | |
tree | c1e9d3e661180263f5e4ac72af85a151d3c183e7 /drivers/usb | |
parent | 255f0385c8e0d6b9005c0e09fffb5bd852f3b506 (diff) | |
parent | ed077bb714816e942ea9b740156659a28a34112f (diff) |
Merge master.kernel.org:/pub/scm/linux/kernel/git/gregkh/usb-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/gregkh/usb-2.6: (39 commits)
USB: at91-ohci, handle extra at91sam9261 ahb clock
USB: another id for cp2101 driver
USB: ueagle-atm.c needs sched.h
USB: at91_udc, shrink runtime footprint
usbnet: add missing Kconfig for KC2190 cables
usbnet: init fault (oops) cleanup, whitespace fixes
usbnet: recognize SiteCom CN-124
usb: Remove Airprime device from option.c
USB: change __init to __devinit for isp116x_probe
USB: ps3: don't call ps3_system_bus_driver_register on other platforms
USB: hid-core.c: Removes GTCO CalComp Interwrite IPanel PIDs from blacklist
USB: kernel-doc fixes
USB: quirky device for cdc-acm
USB: cdc-acm: fix incorrect throtteling, make set_control optional
USB: unconfigure devices which have config 0
USB: make usb_iso_packet_descriptor.status signed
USB: fix g_serial small error
USB: use __u32 rather than u32 in userspace ioctls in usbdevice_fs.h
USB Storage: US_FL_IGNORE_RESIDUE needed for Aiptek MP3 Player
USB: Fix misspelled "USBNET_MII" kernel config option.
...
Diffstat (limited to 'drivers/usb')
36 files changed, 492 insertions, 155 deletions
diff --git a/drivers/usb/Makefile b/drivers/usb/Makefile index 825bf884537a..8b7ff467d262 100644 --- a/drivers/usb/Makefile +++ b/drivers/usb/Makefile | |||
@@ -51,6 +51,7 @@ obj-$(CONFIG_USB_SERIAL) += serial/ | |||
51 | obj-$(CONFIG_USB_ADUTUX) += misc/ | 51 | obj-$(CONFIG_USB_ADUTUX) += misc/ |
52 | obj-$(CONFIG_USB_APPLEDISPLAY) += misc/ | 52 | obj-$(CONFIG_USB_APPLEDISPLAY) += misc/ |
53 | obj-$(CONFIG_USB_AUERSWALD) += misc/ | 53 | obj-$(CONFIG_USB_AUERSWALD) += misc/ |
54 | obj-$(CONFIG_USB_BERRY_CHARGE) += misc/ | ||
54 | obj-$(CONFIG_USB_CYPRESS_CY7C63)+= misc/ | 55 | obj-$(CONFIG_USB_CYPRESS_CY7C63)+= misc/ |
55 | obj-$(CONFIG_USB_CYTHERM) += misc/ | 56 | obj-$(CONFIG_USB_CYTHERM) += misc/ |
56 | obj-$(CONFIG_USB_EMI26) += misc/ | 57 | obj-$(CONFIG_USB_EMI26) += misc/ |
diff --git a/drivers/usb/atm/ueagle-atm.c b/drivers/usb/atm/ueagle-atm.c index dae4ef1e8fe5..4973e147bc79 100644 --- a/drivers/usb/atm/ueagle-atm.c +++ b/drivers/usb/atm/ueagle-atm.c | |||
@@ -61,6 +61,7 @@ | |||
61 | #include <linux/usb.h> | 61 | #include <linux/usb.h> |
62 | #include <linux/firmware.h> | 62 | #include <linux/firmware.h> |
63 | #include <linux/ctype.h> | 63 | #include <linux/ctype.h> |
64 | #include <linux/sched.h> | ||
64 | #include <linux/kthread.h> | 65 | #include <linux/kthread.h> |
65 | #include <linux/version.h> | 66 | #include <linux/version.h> |
66 | #include <linux/mutex.h> | 67 | #include <linux/mutex.h> |
diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c index 98199628e394..d38a25f36ea5 100644 --- a/drivers/usb/class/cdc-acm.c +++ b/drivers/usb/class/cdc-acm.c | |||
@@ -326,10 +326,16 @@ static void acm_rx_tasklet(unsigned long _acm) | |||
326 | struct tty_struct *tty = acm->tty; | 326 | struct tty_struct *tty = acm->tty; |
327 | struct acm_ru *rcv; | 327 | struct acm_ru *rcv; |
328 | unsigned long flags; | 328 | unsigned long flags; |
329 | int i = 0; | 329 | unsigned char throttled; |
330 | dbg("Entering acm_rx_tasklet"); | 330 | dbg("Entering acm_rx_tasklet"); |
331 | 331 | ||
332 | if (!ACM_READY(acm) || acm->throttle) | 332 | if (!ACM_READY(acm)) |
333 | return; | ||
334 | |||
335 | spin_lock(&acm->throttle_lock); | ||
336 | throttled = acm->throttle; | ||
337 | spin_unlock(&acm->throttle_lock); | ||
338 | if (throttled) | ||
333 | return; | 339 | return; |
334 | 340 | ||
335 | next_buffer: | 341 | next_buffer: |
@@ -346,22 +352,20 @@ next_buffer: | |||
346 | dbg("acm_rx_tasklet: procesing buf 0x%p, size = %d", buf, buf->size); | 352 | dbg("acm_rx_tasklet: procesing buf 0x%p, size = %d", buf, buf->size); |
347 | 353 | ||
348 | tty_buffer_request_room(tty, buf->size); | 354 | tty_buffer_request_room(tty, buf->size); |
349 | if (!acm->throttle) | 355 | spin_lock(&acm->throttle_lock); |
356 | throttled = acm->throttle; | ||
357 | spin_unlock(&acm->throttle_lock); | ||
358 | if (!throttled) | ||
350 | tty_insert_flip_string(tty, buf->base, buf->size); | 359 | tty_insert_flip_string(tty, buf->base, buf->size); |
351 | tty_flip_buffer_push(tty); | 360 | tty_flip_buffer_push(tty); |
352 | 361 | ||
353 | spin_lock(&acm->throttle_lock); | 362 | if (throttled) { |
354 | if (acm->throttle) { | 363 | dbg("Throttling noticed"); |
355 | dbg("Throtteling noticed"); | ||
356 | memmove(buf->base, buf->base + i, buf->size - i); | ||
357 | buf->size -= i; | ||
358 | spin_unlock(&acm->throttle_lock); | ||
359 | spin_lock_irqsave(&acm->read_lock, flags); | 364 | spin_lock_irqsave(&acm->read_lock, flags); |
360 | list_add(&buf->list, &acm->filled_read_bufs); | 365 | list_add(&buf->list, &acm->filled_read_bufs); |
361 | spin_unlock_irqrestore(&acm->read_lock, flags); | 366 | spin_unlock_irqrestore(&acm->read_lock, flags); |
362 | return; | 367 | return; |
363 | } | 368 | } |
364 | spin_unlock(&acm->throttle_lock); | ||
365 | 369 | ||
366 | spin_lock_irqsave(&acm->read_lock, flags); | 370 | spin_lock_irqsave(&acm->read_lock, flags); |
367 | list_add(&buf->list, &acm->spare_read_bufs); | 371 | list_add(&buf->list, &acm->spare_read_bufs); |
@@ -467,7 +471,8 @@ static int acm_tty_open(struct tty_struct *tty, struct file *filp) | |||
467 | goto bail_out; | 471 | goto bail_out; |
468 | } | 472 | } |
469 | 473 | ||
470 | if (0 > acm_set_control(acm, acm->ctrlout = ACM_CTRL_DTR | ACM_CTRL_RTS)) | 474 | if (0 > acm_set_control(acm, acm->ctrlout = ACM_CTRL_DTR | ACM_CTRL_RTS) && |
475 | (acm->ctrl_caps & USB_CDC_CAP_LINE)) | ||
471 | goto full_bailout; | 476 | goto full_bailout; |
472 | 477 | ||
473 | INIT_LIST_HEAD(&acm->spare_read_urbs); | 478 | INIT_LIST_HEAD(&acm->spare_read_urbs); |
@@ -480,6 +485,8 @@ static int acm_tty_open(struct tty_struct *tty, struct file *filp) | |||
480 | list_add(&(acm->rb[i].list), &acm->spare_read_bufs); | 485 | list_add(&(acm->rb[i].list), &acm->spare_read_bufs); |
481 | } | 486 | } |
482 | 487 | ||
488 | acm->throttle = 0; | ||
489 | |||
483 | tasklet_schedule(&acm->urb_task); | 490 | tasklet_schedule(&acm->urb_task); |
484 | 491 | ||
485 | done: | 492 | done: |
@@ -1092,6 +1099,10 @@ static struct usb_device_id acm_ids[] = { | |||
1092 | { USB_DEVICE(0x0ace, 0x1611), /* ZyDAS 56K USB MODEM - new version */ | 1099 | { USB_DEVICE(0x0ace, 0x1611), /* ZyDAS 56K USB MODEM - new version */ |
1093 | .driver_info = SINGLE_RX_URB, /* firmware bug */ | 1100 | .driver_info = SINGLE_RX_URB, /* firmware bug */ |
1094 | }, | 1101 | }, |
1102 | { USB_DEVICE(0x22b8, 0x7000), /* Motorola Q Phone */ | ||
1103 | .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ | ||
1104 | }, | ||
1105 | |||
1095 | /* control interfaces with various AT-command sets */ | 1106 | /* control interfaces with various AT-command sets */ |
1096 | { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM, | 1107 | { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM, |
1097 | USB_CDC_ACM_PROTO_AT_V25TER) }, | 1108 | USB_CDC_ACM_PROTO_AT_V25TER) }, |
diff --git a/drivers/usb/core/devices.c b/drivers/usb/core/devices.c index a47c30b2d764..aefc7987120d 100644 --- a/drivers/usb/core/devices.c +++ b/drivers/usb/core/devices.c | |||
@@ -604,10 +604,6 @@ static unsigned int usb_device_poll(struct file *file, struct poll_table_struct | |||
604 | lock_kernel(); | 604 | lock_kernel(); |
605 | if (!st) { | 605 | if (!st) { |
606 | st = kmalloc(sizeof(struct usb_device_status), GFP_KERNEL); | 606 | st = kmalloc(sizeof(struct usb_device_status), GFP_KERNEL); |
607 | if (!st) { | ||
608 | unlock_kernel(); | ||
609 | return POLLIN; | ||
610 | } | ||
611 | 607 | ||
612 | /* we may have dropped BKL - need to check for having lost the race */ | 608 | /* we may have dropped BKL - need to check for having lost the race */ |
613 | if (file->private_data) { | 609 | if (file->private_data) { |
@@ -615,6 +611,11 @@ static unsigned int usb_device_poll(struct file *file, struct poll_table_struct | |||
615 | st = file->private_data; | 611 | st = file->private_data; |
616 | goto lost_race; | 612 | goto lost_race; |
617 | } | 613 | } |
614 | /* we haven't lost - check for allocation failure now */ | ||
615 | if (!st) { | ||
616 | unlock_kernel(); | ||
617 | return POLLIN; | ||
618 | } | ||
618 | 619 | ||
619 | /* | 620 | /* |
620 | * need to prevent the module from being unloaded, since | 621 | * need to prevent the module from being unloaded, since |
diff --git a/drivers/usb/core/devio.c b/drivers/usb/core/devio.c index 2087766f9e88..274f14f1633e 100644 --- a/drivers/usb/core/devio.c +++ b/drivers/usb/core/devio.c | |||
@@ -857,11 +857,11 @@ static int proc_setintf(struct dev_state *ps, void __user *arg) | |||
857 | 857 | ||
858 | static int proc_setconfig(struct dev_state *ps, void __user *arg) | 858 | static int proc_setconfig(struct dev_state *ps, void __user *arg) |
859 | { | 859 | { |
860 | unsigned int u; | 860 | int u; |
861 | int status = 0; | 861 | int status = 0; |
862 | struct usb_host_config *actconfig; | 862 | struct usb_host_config *actconfig; |
863 | 863 | ||
864 | if (get_user(u, (unsigned int __user *)arg)) | 864 | if (get_user(u, (int __user *)arg)) |
865 | return -EFAULT; | 865 | return -EFAULT; |
866 | 866 | ||
867 | actconfig = ps->dev->actconfig; | 867 | actconfig = ps->dev->actconfig; |
diff --git a/drivers/usb/core/driver.c b/drivers/usb/core/driver.c index 600d1bc8272a..2aded261f42c 100644 --- a/drivers/usb/core/driver.c +++ b/drivers/usb/core/driver.c | |||
@@ -743,6 +743,7 @@ EXPORT_SYMBOL_GPL(usb_deregister_device_driver); | |||
743 | * usb_register_driver - register a USB interface driver | 743 | * usb_register_driver - register a USB interface driver |
744 | * @new_driver: USB operations for the interface driver | 744 | * @new_driver: USB operations for the interface driver |
745 | * @owner: module owner of this driver. | 745 | * @owner: module owner of this driver. |
746 | * @mod_name: module name string | ||
746 | * | 747 | * |
747 | * Registers a USB interface driver with the USB core. The list of | 748 | * Registers a USB interface driver with the USB core. The list of |
748 | * unattached interfaces will be rescanned whenever a new driver is | 749 | * unattached interfaces will be rescanned whenever a new driver is |
diff --git a/drivers/usb/core/endpoint.c b/drivers/usb/core/endpoint.c index 5e628ae3aec7..e0ec7045e865 100644 --- a/drivers/usb/core/endpoint.c +++ b/drivers/usb/core/endpoint.c | |||
@@ -229,7 +229,7 @@ static int init_endpoint_class(void) | |||
229 | kref_init(&ep_class->kref); | 229 | kref_init(&ep_class->kref); |
230 | ep_class->class = class_create(THIS_MODULE, "usb_endpoint"); | 230 | ep_class->class = class_create(THIS_MODULE, "usb_endpoint"); |
231 | if (IS_ERR(ep_class->class)) { | 231 | if (IS_ERR(ep_class->class)) { |
232 | result = IS_ERR(ep_class->class); | 232 | result = PTR_ERR(ep_class->class); |
233 | goto class_create_error; | 233 | goto class_create_error; |
234 | } | 234 | } |
235 | 235 | ||
diff --git a/drivers/usb/core/generic.c b/drivers/usb/core/generic.c index b531a4fd30c2..9bbcb20e2d94 100644 --- a/drivers/usb/core/generic.c +++ b/drivers/usb/core/generic.c | |||
@@ -184,7 +184,7 @@ static void generic_disconnect(struct usb_device *udev) | |||
184 | /* if this is only an unbind, not a physical disconnect, then | 184 | /* if this is only an unbind, not a physical disconnect, then |
185 | * unconfigure the device */ | 185 | * unconfigure the device */ |
186 | if (udev->actconfig) | 186 | if (udev->actconfig) |
187 | usb_set_configuration(udev, 0); | 187 | usb_set_configuration(udev, -1); |
188 | 188 | ||
189 | usb_remove_sysfs_dev_files(udev); | 189 | usb_remove_sysfs_dev_files(udev); |
190 | } | 190 | } |
diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c index 590ec82d0515..50c0db15304a 100644 --- a/drivers/usb/core/hub.c +++ b/drivers/usb/core/hub.c | |||
@@ -44,6 +44,7 @@ struct usb_hub { | |||
44 | struct usb_hub_status hub; | 44 | struct usb_hub_status hub; |
45 | struct usb_port_status port; | 45 | struct usb_port_status port; |
46 | } *status; /* buffer for status reports */ | 46 | } *status; /* buffer for status reports */ |
47 | struct mutex status_mutex; /* for the status buffer */ | ||
47 | 48 | ||
48 | int error; /* last reported error */ | 49 | int error; /* last reported error */ |
49 | int nerrors; /* track consecutive errors */ | 50 | int nerrors; /* track consecutive errors */ |
@@ -535,6 +536,7 @@ static int hub_hub_status(struct usb_hub *hub, | |||
535 | { | 536 | { |
536 | int ret; | 537 | int ret; |
537 | 538 | ||
539 | mutex_lock(&hub->status_mutex); | ||
538 | ret = get_hub_status(hub->hdev, &hub->status->hub); | 540 | ret = get_hub_status(hub->hdev, &hub->status->hub); |
539 | if (ret < 0) | 541 | if (ret < 0) |
540 | dev_err (hub->intfdev, | 542 | dev_err (hub->intfdev, |
@@ -544,6 +546,7 @@ static int hub_hub_status(struct usb_hub *hub, | |||
544 | *change = le16_to_cpu(hub->status->hub.wHubChange); | 546 | *change = le16_to_cpu(hub->status->hub.wHubChange); |
545 | ret = 0; | 547 | ret = 0; |
546 | } | 548 | } |
549 | mutex_unlock(&hub->status_mutex); | ||
547 | return ret; | 550 | return ret; |
548 | } | 551 | } |
549 | 552 | ||
@@ -617,6 +620,7 @@ static int hub_configure(struct usb_hub *hub, | |||
617 | ret = -ENOMEM; | 620 | ret = -ENOMEM; |
618 | goto fail; | 621 | goto fail; |
619 | } | 622 | } |
623 | mutex_init(&hub->status_mutex); | ||
620 | 624 | ||
621 | hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL); | 625 | hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL); |
622 | if (!hub->descriptor) { | 626 | if (!hub->descriptor) { |
@@ -1396,6 +1400,7 @@ static int hub_port_status(struct usb_hub *hub, int port1, | |||
1396 | { | 1400 | { |
1397 | int ret; | 1401 | int ret; |
1398 | 1402 | ||
1403 | mutex_lock(&hub->status_mutex); | ||
1399 | ret = get_port_status(hub->hdev, port1, &hub->status->port); | 1404 | ret = get_port_status(hub->hdev, port1, &hub->status->port); |
1400 | if (ret < 4) { | 1405 | if (ret < 4) { |
1401 | dev_err (hub->intfdev, | 1406 | dev_err (hub->intfdev, |
@@ -1407,6 +1412,7 @@ static int hub_port_status(struct usb_hub *hub, int port1, | |||
1407 | *change = le16_to_cpu(hub->status->port.wPortChange); | 1412 | *change = le16_to_cpu(hub->status->port.wPortChange); |
1408 | ret = 0; | 1413 | ret = 0; |
1409 | } | 1414 | } |
1415 | mutex_unlock(&hub->status_mutex); | ||
1410 | return ret; | 1416 | return ret; |
1411 | } | 1417 | } |
1412 | 1418 | ||
@@ -1904,6 +1910,7 @@ static int hub_suspend(struct usb_interface *intf, pm_message_t msg) | |||
1904 | struct usb_hub *hub = usb_get_intfdata (intf); | 1910 | struct usb_hub *hub = usb_get_intfdata (intf); |
1905 | struct usb_device *hdev = hub->hdev; | 1911 | struct usb_device *hdev = hub->hdev; |
1906 | unsigned port1; | 1912 | unsigned port1; |
1913 | int status = 0; | ||
1907 | 1914 | ||
1908 | /* fail if children aren't already suspended */ | 1915 | /* fail if children aren't already suspended */ |
1909 | for (port1 = 1; port1 <= hdev->maxchild; port1++) { | 1916 | for (port1 = 1; port1 <= hdev->maxchild; port1++) { |
@@ -1927,24 +1934,18 @@ static int hub_suspend(struct usb_interface *intf, pm_message_t msg) | |||
1927 | 1934 | ||
1928 | dev_dbg(&intf->dev, "%s\n", __FUNCTION__); | 1935 | dev_dbg(&intf->dev, "%s\n", __FUNCTION__); |
1929 | 1936 | ||
1937 | /* stop khubd and related activity */ | ||
1938 | hub_quiesce(hub); | ||
1939 | |||
1930 | /* "global suspend" of the downstream HC-to-USB interface */ | 1940 | /* "global suspend" of the downstream HC-to-USB interface */ |
1931 | if (!hdev->parent) { | 1941 | if (!hdev->parent) { |
1932 | struct usb_bus *bus = hdev->bus; | 1942 | status = hcd_bus_suspend(hdev->bus); |
1933 | if (bus) { | 1943 | if (status != 0) { |
1934 | int status = hcd_bus_suspend (bus); | 1944 | dev_dbg(&hdev->dev, "'global' suspend %d\n", status); |
1935 | 1945 | hub_activate(hub); | |
1936 | if (status != 0) { | 1946 | } |
1937 | dev_dbg(&hdev->dev, "'global' suspend %d\n", | ||
1938 | status); | ||
1939 | return status; | ||
1940 | } | ||
1941 | } else | ||
1942 | return -EOPNOTSUPP; | ||
1943 | } | 1947 | } |
1944 | 1948 | return status; | |
1945 | /* stop khubd and related activity */ | ||
1946 | hub_quiesce(hub); | ||
1947 | return 0; | ||
1948 | } | 1949 | } |
1949 | 1950 | ||
1950 | static int hub_resume(struct usb_interface *intf) | 1951 | static int hub_resume(struct usb_interface *intf) |
diff --git a/drivers/usb/core/message.c b/drivers/usb/core/message.c index 8aca3574c2b5..74edaea5665d 100644 --- a/drivers/usb/core/message.c +++ b/drivers/usb/core/message.c | |||
@@ -1316,6 +1316,14 @@ static void release_interface(struct device *dev) | |||
1316 | * use this kind of configurability; many devices only have one | 1316 | * use this kind of configurability; many devices only have one |
1317 | * configuration. | 1317 | * configuration. |
1318 | * | 1318 | * |
1319 | * @configuration is the value of the configuration to be installed. | ||
1320 | * According to the USB spec (e.g. section 9.1.1.5), configuration values | ||
1321 | * must be non-zero; a value of zero indicates that the device in | ||
1322 | * unconfigured. However some devices erroneously use 0 as one of their | ||
1323 | * configuration values. To help manage such devices, this routine will | ||
1324 | * accept @configuration = -1 as indicating the device should be put in | ||
1325 | * an unconfigured state. | ||
1326 | * | ||
1319 | * USB device configurations may affect Linux interoperability, | 1327 | * USB device configurations may affect Linux interoperability, |
1320 | * power consumption and the functionality available. For example, | 1328 | * power consumption and the functionality available. For example, |
1321 | * the default configuration is limited to using 100mA of bus power, | 1329 | * the default configuration is limited to using 100mA of bus power, |
@@ -1347,10 +1355,15 @@ int usb_set_configuration(struct usb_device *dev, int configuration) | |||
1347 | struct usb_interface **new_interfaces = NULL; | 1355 | struct usb_interface **new_interfaces = NULL; |
1348 | int n, nintf; | 1356 | int n, nintf; |
1349 | 1357 | ||
1350 | for (i = 0; i < dev->descriptor.bNumConfigurations; i++) { | 1358 | if (configuration == -1) |
1351 | if (dev->config[i].desc.bConfigurationValue == configuration) { | 1359 | configuration = 0; |
1352 | cp = &dev->config[i]; | 1360 | else { |
1353 | break; | 1361 | for (i = 0; i < dev->descriptor.bNumConfigurations; i++) { |
1362 | if (dev->config[i].desc.bConfigurationValue == | ||
1363 | configuration) { | ||
1364 | cp = &dev->config[i]; | ||
1365 | break; | ||
1366 | } | ||
1354 | } | 1367 | } |
1355 | } | 1368 | } |
1356 | if ((!cp && configuration != 0)) | 1369 | if ((!cp && configuration != 0)) |
@@ -1359,6 +1372,7 @@ int usb_set_configuration(struct usb_device *dev, int configuration) | |||
1359 | /* The USB spec says configuration 0 means unconfigured. | 1372 | /* The USB spec says configuration 0 means unconfigured. |
1360 | * But if a device includes a configuration numbered 0, | 1373 | * But if a device includes a configuration numbered 0, |
1361 | * we will accept it as a correctly configured state. | 1374 | * we will accept it as a correctly configured state. |
1375 | * Use -1 if you really want to unconfigure the device. | ||
1362 | */ | 1376 | */ |
1363 | if (cp && configuration == 0) | 1377 | if (cp && configuration == 0) |
1364 | dev_warn(&dev->dev, "config 0 descriptor??\n"); | 1378 | dev_warn(&dev->dev, "config 0 descriptor??\n"); |
diff --git a/drivers/usb/core/otg_whitelist.h b/drivers/usb/core/otg_whitelist.h index 627a5a2fc9cf..7f31a495a25d 100644 --- a/drivers/usb/core/otg_whitelist.h +++ b/drivers/usb/core/otg_whitelist.h | |||
@@ -31,7 +31,7 @@ static struct usb_device_id whitelist_table [] = { | |||
31 | { USB_DEVICE_INFO(7, 1, 3) }, | 31 | { USB_DEVICE_INFO(7, 1, 3) }, |
32 | #endif | 32 | #endif |
33 | 33 | ||
34 | #ifdef CONFIG_USB_CDCETHER | 34 | #ifdef CONFIG_USB_NET_CDCETHER |
35 | /* Linux-USB CDC Ethernet gadget */ | 35 | /* Linux-USB CDC Ethernet gadget */ |
36 | { USB_DEVICE(0x0525, 0xa4a1), }, | 36 | { USB_DEVICE(0x0525, 0xa4a1), }, |
37 | /* Linux-USB CDC Ethernet + RNDIS gadget */ | 37 | /* Linux-USB CDC Ethernet + RNDIS gadget */ |
diff --git a/drivers/usb/core/sysfs.c b/drivers/usb/core/sysfs.c index 4eaa0ee8e72f..0edfbafd702c 100644 --- a/drivers/usb/core/sysfs.c +++ b/drivers/usb/core/sysfs.c | |||
@@ -63,7 +63,7 @@ set_bConfigurationValue(struct device *dev, struct device_attribute *attr, | |||
63 | struct usb_device *udev = to_usb_device(dev); | 63 | struct usb_device *udev = to_usb_device(dev); |
64 | int config, value; | 64 | int config, value; |
65 | 65 | ||
66 | if (sscanf(buf, "%u", &config) != 1 || config > 255) | 66 | if (sscanf(buf, "%d", &config) != 1 || config < -1 || config > 255) |
67 | return -EINVAL; | 67 | return -EINVAL; |
68 | usb_lock_device(udev); | 68 | usb_lock_device(udev); |
69 | value = usb_set_configuration(udev, config); | 69 | value = usb_set_configuration(udev, config); |
diff --git a/drivers/usb/gadget/at91_udc.c b/drivers/usb/gadget/at91_udc.c index 36b36e0175fc..82369c4729b5 100644 --- a/drivers/usb/gadget/at91_udc.c +++ b/drivers/usb/gadget/at91_udc.c | |||
@@ -784,7 +784,7 @@ static int at91_ep_set_halt(struct usb_ep *_ep, int value) | |||
784 | return status; | 784 | return status; |
785 | } | 785 | } |
786 | 786 | ||
787 | static struct usb_ep_ops at91_ep_ops = { | 787 | static const struct usb_ep_ops at91_ep_ops = { |
788 | .enable = at91_ep_enable, | 788 | .enable = at91_ep_enable, |
789 | .disable = at91_ep_disable, | 789 | .disable = at91_ep_disable, |
790 | .alloc_request = at91_ep_alloc_request, | 790 | .alloc_request = at91_ep_alloc_request, |
@@ -1651,7 +1651,7 @@ static void at91udc_shutdown(struct platform_device *dev) | |||
1651 | pullup(platform_get_drvdata(dev), 0); | 1651 | pullup(platform_get_drvdata(dev), 0); |
1652 | } | 1652 | } |
1653 | 1653 | ||
1654 | static int __devinit at91udc_probe(struct platform_device *pdev) | 1654 | static int __init at91udc_probe(struct platform_device *pdev) |
1655 | { | 1655 | { |
1656 | struct device *dev = &pdev->dev; | 1656 | struct device *dev = &pdev->dev; |
1657 | struct at91_udc *udc; | 1657 | struct at91_udc *udc; |
@@ -1762,7 +1762,7 @@ fail0: | |||
1762 | return retval; | 1762 | return retval; |
1763 | } | 1763 | } |
1764 | 1764 | ||
1765 | static int __devexit at91udc_remove(struct platform_device *pdev) | 1765 | static int __exit at91udc_remove(struct platform_device *pdev) |
1766 | { | 1766 | { |
1767 | struct at91_udc *udc = platform_get_drvdata(pdev); | 1767 | struct at91_udc *udc = platform_get_drvdata(pdev); |
1768 | struct resource *res; | 1768 | struct resource *res; |
@@ -1836,8 +1836,7 @@ static int at91udc_resume(struct platform_device *pdev) | |||
1836 | #endif | 1836 | #endif |
1837 | 1837 | ||
1838 | static struct platform_driver at91_udc = { | 1838 | static struct platform_driver at91_udc = { |
1839 | .probe = at91udc_probe, | 1839 | .remove = __exit_p(at91udc_remove), |
1840 | .remove = __devexit_p(at91udc_remove), | ||
1841 | .shutdown = at91udc_shutdown, | 1840 | .shutdown = at91udc_shutdown, |
1842 | .suspend = at91udc_suspend, | 1841 | .suspend = at91udc_suspend, |
1843 | .resume = at91udc_resume, | 1842 | .resume = at91udc_resume, |
@@ -1847,13 +1846,13 @@ static struct platform_driver at91_udc = { | |||
1847 | }, | 1846 | }, |
1848 | }; | 1847 | }; |
1849 | 1848 | ||
1850 | static int __devinit udc_init_module(void) | 1849 | static int __init udc_init_module(void) |
1851 | { | 1850 | { |
1852 | return platform_driver_register(&at91_udc); | 1851 | return platform_driver_probe(&at91_udc, at91udc_probe); |
1853 | } | 1852 | } |
1854 | module_init(udc_init_module); | 1853 | module_init(udc_init_module); |
1855 | 1854 | ||
1856 | static void __devexit udc_exit_module(void) | 1855 | static void __exit udc_exit_module(void) |
1857 | { | 1856 | { |
1858 | platform_driver_unregister(&at91_udc); | 1857 | platform_driver_unregister(&at91_udc); |
1859 | } | 1858 | } |
diff --git a/drivers/usb/gadget/serial.c b/drivers/usb/gadget/serial.c index e6c19aa4bef3..e552668d36b3 100644 --- a/drivers/usb/gadget/serial.c +++ b/drivers/usb/gadget/serial.c | |||
@@ -1699,6 +1699,7 @@ static int gs_setup_class(struct usb_gadget *gadget, | |||
1699 | memcpy(&port->port_line_coding, req->buf, ret); | 1699 | memcpy(&port->port_line_coding, req->buf, ret); |
1700 | spin_unlock(&port->port_lock); | 1700 | spin_unlock(&port->port_lock); |
1701 | } | 1701 | } |
1702 | ret = 0; | ||
1702 | break; | 1703 | break; |
1703 | 1704 | ||
1704 | case USB_CDC_REQ_GET_LINE_CODING: | 1705 | case USB_CDC_REQ_GET_LINE_CODING: |
diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c index 185721dba42b..a74056488234 100644 --- a/drivers/usb/host/ehci-hcd.c +++ b/drivers/usb/host/ehci-hcd.c | |||
@@ -42,6 +42,9 @@ | |||
42 | #include <asm/irq.h> | 42 | #include <asm/irq.h> |
43 | #include <asm/system.h> | 43 | #include <asm/system.h> |
44 | #include <asm/unaligned.h> | 44 | #include <asm/unaligned.h> |
45 | #ifdef CONFIG_PPC_PS3 | ||
46 | #include <asm/firmware.h> | ||
47 | #endif | ||
45 | 48 | ||
46 | 49 | ||
47 | /*-------------------------------------------------------------------------*/ | 50 | /*-------------------------------------------------------------------------*/ |
@@ -299,6 +302,19 @@ static void ehci_watchdog (unsigned long param) | |||
299 | spin_unlock_irqrestore (&ehci->lock, flags); | 302 | spin_unlock_irqrestore (&ehci->lock, flags); |
300 | } | 303 | } |
301 | 304 | ||
305 | /* On some systems, leaving remote wakeup enabled prevents system shutdown. | ||
306 | * The firmware seems to think that powering off is a wakeup event! | ||
307 | * This routine turns off remote wakeup and everything else, on all ports. | ||
308 | */ | ||
309 | static void ehci_turn_off_all_ports(struct ehci_hcd *ehci) | ||
310 | { | ||
311 | int port = HCS_N_PORTS(ehci->hcs_params); | ||
312 | |||
313 | while (port--) | ||
314 | ehci_writel(ehci, PORT_RWC_BITS, | ||
315 | &ehci->regs->port_status[port]); | ||
316 | } | ||
317 | |||
302 | /* ehci_shutdown kick in for silicon on any bus (not just pci, etc). | 318 | /* ehci_shutdown kick in for silicon on any bus (not just pci, etc). |
303 | * This forcibly disables dma and IRQs, helping kexec and other cases | 319 | * This forcibly disables dma and IRQs, helping kexec and other cases |
304 | * where the next system software may expect clean state. | 320 | * where the next system software may expect clean state. |
@@ -310,9 +326,13 @@ ehci_shutdown (struct usb_hcd *hcd) | |||
310 | 326 | ||
311 | ehci = hcd_to_ehci (hcd); | 327 | ehci = hcd_to_ehci (hcd); |
312 | (void) ehci_halt (ehci); | 328 | (void) ehci_halt (ehci); |
329 | ehci_turn_off_all_ports(ehci); | ||
313 | 330 | ||
314 | /* make BIOS/etc use companion controller during reboot */ | 331 | /* make BIOS/etc use companion controller during reboot */ |
315 | ehci_writel(ehci, 0, &ehci->regs->configured_flag); | 332 | ehci_writel(ehci, 0, &ehci->regs->configured_flag); |
333 | |||
334 | /* unblock posted writes */ | ||
335 | ehci_readl(ehci, &ehci->regs->configured_flag); | ||
316 | } | 336 | } |
317 | 337 | ||
318 | static void ehci_port_power (struct ehci_hcd *ehci, int is_on) | 338 | static void ehci_port_power (struct ehci_hcd *ehci, int is_on) |
@@ -951,15 +971,18 @@ static int __init ehci_hcd_init(void) | |||
951 | #endif | 971 | #endif |
952 | 972 | ||
953 | #ifdef PS3_SYSTEM_BUS_DRIVER | 973 | #ifdef PS3_SYSTEM_BUS_DRIVER |
954 | retval = ps3_system_bus_driver_register(&PS3_SYSTEM_BUS_DRIVER); | 974 | if (firmware_has_feature(FW_FEATURE_PS3_LV1)) { |
955 | if (retval < 0) { | 975 | retval = ps3_system_bus_driver_register( |
976 | &PS3_SYSTEM_BUS_DRIVER); | ||
977 | if (retval < 0) { | ||
956 | #ifdef PLATFORM_DRIVER | 978 | #ifdef PLATFORM_DRIVER |
957 | platform_driver_unregister(&PLATFORM_DRIVER); | 979 | platform_driver_unregister(&PLATFORM_DRIVER); |
958 | #endif | 980 | #endif |
959 | #ifdef PCI_DRIVER | 981 | #ifdef PCI_DRIVER |
960 | pci_unregister_driver(&PCI_DRIVER); | 982 | pci_unregister_driver(&PCI_DRIVER); |
961 | #endif | 983 | #endif |
962 | return retval; | 984 | return retval; |
985 | } | ||
963 | } | 986 | } |
964 | #endif | 987 | #endif |
965 | 988 | ||
@@ -976,7 +999,8 @@ static void __exit ehci_hcd_cleanup(void) | |||
976 | pci_unregister_driver(&PCI_DRIVER); | 999 | pci_unregister_driver(&PCI_DRIVER); |
977 | #endif | 1000 | #endif |
978 | #ifdef PS3_SYSTEM_BUS_DRIVER | 1001 | #ifdef PS3_SYSTEM_BUS_DRIVER |
979 | ps3_system_bus_driver_unregister(&PS3_SYSTEM_BUS_DRIVER); | 1002 | if (firmware_has_feature(FW_FEATURE_PS3_LV1)) |
1003 | ps3_system_bus_driver_unregister(&PS3_SYSTEM_BUS_DRIVER); | ||
980 | #endif | 1004 | #endif |
981 | } | 1005 | } |
982 | module_exit(ehci_hcd_cleanup); | 1006 | module_exit(ehci_hcd_cleanup); |
diff --git a/drivers/usb/host/ehci-hub.c b/drivers/usb/host/ehci-hub.c index 0d83c6df1a3b..9af529d22b3e 100644 --- a/drivers/usb/host/ehci-hub.c +++ b/drivers/usb/host/ehci-hub.c | |||
@@ -36,6 +36,8 @@ static int ehci_bus_suspend (struct usb_hcd *hcd) | |||
36 | int port; | 36 | int port; |
37 | int mask; | 37 | int mask; |
38 | 38 | ||
39 | ehci_dbg(ehci, "suspend root hub\n"); | ||
40 | |||
39 | if (time_before (jiffies, ehci->next_statechange)) | 41 | if (time_before (jiffies, ehci->next_statechange)) |
40 | msleep(5); | 42 | msleep(5); |
41 | 43 | ||
diff --git a/drivers/usb/host/isp116x-hcd.c b/drivers/usb/host/isp116x-hcd.c index 2718b5dc4ec1..46873f2534b5 100644 --- a/drivers/usb/host/isp116x-hcd.c +++ b/drivers/usb/host/isp116x-hcd.c | |||
@@ -1577,7 +1577,7 @@ static int isp116x_remove(struct platform_device *pdev) | |||
1577 | 1577 | ||
1578 | #define resource_len(r) (((r)->end - (r)->start) + 1) | 1578 | #define resource_len(r) (((r)->end - (r)->start) + 1) |
1579 | 1579 | ||
1580 | static int __init isp116x_probe(struct platform_device *pdev) | 1580 | static int __devinit isp116x_probe(struct platform_device *pdev) |
1581 | { | 1581 | { |
1582 | struct usb_hcd *hcd; | 1582 | struct usb_hcd *hcd; |
1583 | struct isp116x *isp116x; | 1583 | struct isp116x *isp116x; |
diff --git a/drivers/usb/host/ohci-at91.c b/drivers/usb/host/ohci-at91.c index 930346487278..d849c809acbd 100644 --- a/drivers/usb/host/ohci-at91.c +++ b/drivers/usb/host/ohci-at91.c | |||
@@ -18,19 +18,38 @@ | |||
18 | #include <asm/mach-types.h> | 18 | #include <asm/mach-types.h> |
19 | #include <asm/hardware.h> | 19 | #include <asm/hardware.h> |
20 | #include <asm/arch/board.h> | 20 | #include <asm/arch/board.h> |
21 | #include <asm/arch/cpu.h> | ||
21 | 22 | ||
22 | #ifndef CONFIG_ARCH_AT91 | 23 | #ifndef CONFIG_ARCH_AT91 |
23 | #error "CONFIG_ARCH_AT91 must be defined." | 24 | #error "CONFIG_ARCH_AT91 must be defined." |
24 | #endif | 25 | #endif |
25 | 26 | ||
26 | /* interface and function clocks */ | 27 | /* interface and function clocks; sometimes also an AHB clock */ |
27 | static struct clk *iclk, *fclk; | 28 | static struct clk *iclk, *fclk, *hclk; |
28 | static int clocked; | 29 | static int clocked; |
29 | 30 | ||
30 | extern int usb_disabled(void); | 31 | extern int usb_disabled(void); |
31 | 32 | ||
32 | /*-------------------------------------------------------------------------*/ | 33 | /*-------------------------------------------------------------------------*/ |
33 | 34 | ||
35 | static void at91_start_clock(void) | ||
36 | { | ||
37 | if (cpu_is_at91sam9261()) | ||
38 | clk_enable(hclk); | ||
39 | clk_enable(iclk); | ||
40 | clk_enable(fclk); | ||
41 | clocked = 1; | ||
42 | } | ||
43 | |||
44 | static void at91_stop_clock(void) | ||
45 | { | ||
46 | clk_disable(fclk); | ||
47 | clk_disable(iclk); | ||
48 | if (cpu_is_at91sam9261()) | ||
49 | clk_disable(hclk); | ||
50 | clocked = 0; | ||
51 | } | ||
52 | |||
34 | static void at91_start_hc(struct platform_device *pdev) | 53 | static void at91_start_hc(struct platform_device *pdev) |
35 | { | 54 | { |
36 | struct usb_hcd *hcd = platform_get_drvdata(pdev); | 55 | struct usb_hcd *hcd = platform_get_drvdata(pdev); |
@@ -41,9 +60,7 @@ static void at91_start_hc(struct platform_device *pdev) | |||
41 | /* | 60 | /* |
42 | * Start the USB clocks. | 61 | * Start the USB clocks. |
43 | */ | 62 | */ |
44 | clk_enable(iclk); | 63 | at91_start_clock(); |
45 | clk_enable(fclk); | ||
46 | clocked = 1; | ||
47 | 64 | ||
48 | /* | 65 | /* |
49 | * The USB host controller must remain in reset. | 66 | * The USB host controller must remain in reset. |
@@ -66,9 +83,7 @@ static void at91_stop_hc(struct platform_device *pdev) | |||
66 | /* | 83 | /* |
67 | * Stop the USB clocks. | 84 | * Stop the USB clocks. |
68 | */ | 85 | */ |
69 | clk_disable(fclk); | 86 | at91_stop_clock(); |
70 | clk_disable(iclk); | ||
71 | clocked = 0; | ||
72 | } | 87 | } |
73 | 88 | ||
74 | 89 | ||
@@ -126,6 +141,8 @@ static int usb_hcd_at91_probe(const struct hc_driver *driver, | |||
126 | 141 | ||
127 | iclk = clk_get(&pdev->dev, "ohci_clk"); | 142 | iclk = clk_get(&pdev->dev, "ohci_clk"); |
128 | fclk = clk_get(&pdev->dev, "uhpck"); | 143 | fclk = clk_get(&pdev->dev, "uhpck"); |
144 | if (cpu_is_at91sam9261()) | ||
145 | hclk = clk_get(&pdev->dev, "hck0"); | ||
129 | 146 | ||
130 | at91_start_hc(pdev); | 147 | at91_start_hc(pdev); |
131 | ohci_hcd_init(hcd_to_ohci(hcd)); | 148 | ohci_hcd_init(hcd_to_ohci(hcd)); |
@@ -137,6 +154,8 @@ static int usb_hcd_at91_probe(const struct hc_driver *driver, | |||
137 | /* Error handling */ | 154 | /* Error handling */ |
138 | at91_stop_hc(pdev); | 155 | at91_stop_hc(pdev); |
139 | 156 | ||
157 | if (cpu_is_at91sam9261()) | ||
158 | clk_put(hclk); | ||
140 | clk_put(fclk); | 159 | clk_put(fclk); |
141 | clk_put(iclk); | 160 | clk_put(iclk); |
142 | 161 | ||
@@ -171,9 +190,11 @@ static int usb_hcd_at91_remove(struct usb_hcd *hcd, | |||
171 | iounmap(hcd->regs); | 190 | iounmap(hcd->regs); |
172 | release_mem_region(hcd->rsrc_start, hcd->rsrc_len); | 191 | release_mem_region(hcd->rsrc_start, hcd->rsrc_len); |
173 | 192 | ||
193 | if (cpu_is_at91sam9261()) | ||
194 | clk_put(hclk); | ||
174 | clk_put(fclk); | 195 | clk_put(fclk); |
175 | clk_put(iclk); | 196 | clk_put(iclk); |
176 | fclk = iclk = NULL; | 197 | fclk = iclk = hclk = NULL; |
177 | 198 | ||
178 | dev_set_drvdata(&pdev->dev, NULL); | 199 | dev_set_drvdata(&pdev->dev, NULL); |
179 | return 0; | 200 | return 0; |
@@ -280,9 +301,7 @@ ohci_hcd_at91_drv_suspend(struct platform_device *pdev, pm_message_t mesg) | |||
280 | */ | 301 | */ |
281 | if (at91_suspend_entering_slow_clock()) { | 302 | if (at91_suspend_entering_slow_clock()) { |
282 | ohci_usb_reset (ohci); | 303 | ohci_usb_reset (ohci); |
283 | clk_disable(fclk); | 304 | at91_stop_clock(); |
284 | clk_disable(iclk); | ||
285 | clocked = 0; | ||
286 | } | 305 | } |
287 | 306 | ||
288 | return 0; | 307 | return 0; |
@@ -295,11 +314,8 @@ static int ohci_hcd_at91_drv_resume(struct platform_device *pdev) | |||
295 | if (device_may_wakeup(&pdev->dev)) | 314 | if (device_may_wakeup(&pdev->dev)) |
296 | disable_irq_wake(hcd->irq); | 315 | disable_irq_wake(hcd->irq); |
297 | 316 | ||
298 | if (!clocked) { | 317 | if (!clocked) |
299 | clk_enable(iclk); | 318 | at91_start_clock(); |
300 | clk_enable(fclk); | ||
301 | clocked = 1; | ||
302 | } | ||
303 | 319 | ||
304 | return 0; | 320 | return 0; |
305 | } | 321 | } |
diff --git a/drivers/usb/host/ohci-hcd.c b/drivers/usb/host/ohci-hcd.c index fa6a7ceaa0db..f0d29eda3c6d 100644 --- a/drivers/usb/host/ohci-hcd.c +++ b/drivers/usb/host/ohci-hcd.c | |||
@@ -42,6 +42,9 @@ | |||
42 | #include <asm/system.h> | 42 | #include <asm/system.h> |
43 | #include <asm/unaligned.h> | 43 | #include <asm/unaligned.h> |
44 | #include <asm/byteorder.h> | 44 | #include <asm/byteorder.h> |
45 | #ifdef CONFIG_PPC_PS3 | ||
46 | #include <asm/firmware.h> | ||
47 | #endif | ||
45 | 48 | ||
46 | #include "../core/hcd.h" | 49 | #include "../core/hcd.h" |
47 | 50 | ||
@@ -944,9 +947,12 @@ static int __init ohci_hcd_mod_init(void) | |||
944 | sizeof (struct ed), sizeof (struct td)); | 947 | sizeof (struct ed), sizeof (struct td)); |
945 | 948 | ||
946 | #ifdef PS3_SYSTEM_BUS_DRIVER | 949 | #ifdef PS3_SYSTEM_BUS_DRIVER |
947 | retval = ps3_system_bus_driver_register(&PS3_SYSTEM_BUS_DRIVER); | 950 | if (firmware_has_feature(FW_FEATURE_PS3_LV1)) { |
948 | if (retval < 0) | 951 | retval = ps3_system_bus_driver_register( |
949 | goto error_ps3; | 952 | &PS3_SYSTEM_BUS_DRIVER); |
953 | if (retval < 0) | ||
954 | goto error_ps3; | ||
955 | } | ||
950 | #endif | 956 | #endif |
951 | 957 | ||
952 | #ifdef PLATFORM_DRIVER | 958 | #ifdef PLATFORM_DRIVER |
@@ -992,7 +998,8 @@ static int __init ohci_hcd_mod_init(void) | |||
992 | error_platform: | 998 | error_platform: |
993 | #endif | 999 | #endif |
994 | #ifdef PS3_SYSTEM_BUS_DRIVER | 1000 | #ifdef PS3_SYSTEM_BUS_DRIVER |
995 | ps3_system_bus_driver_unregister(&PS3_SYSTEM_BUS_DRIVER); | 1001 | if (firmware_has_feature(FW_FEATURE_PS3_LV1)) |
1002 | ps3_system_bus_driver_unregister(&PS3_SYSTEM_BUS_DRIVER); | ||
996 | error_ps3: | 1003 | error_ps3: |
997 | #endif | 1004 | #endif |
998 | return retval; | 1005 | return retval; |
@@ -1014,7 +1021,8 @@ static void __exit ohci_hcd_mod_exit(void) | |||
1014 | platform_driver_unregister(&PLATFORM_DRIVER); | 1021 | platform_driver_unregister(&PLATFORM_DRIVER); |
1015 | #endif | 1022 | #endif |
1016 | #ifdef PS3_SYSTEM_BUS_DRIVER | 1023 | #ifdef PS3_SYSTEM_BUS_DRIVER |
1017 | ps3_system_bus_driver_unregister(&PS3_SYSTEM_BUS_DRIVER); | 1024 | if (firmware_has_feature(FW_FEATURE_PS3_LV1)) |
1025 | ps3_system_bus_driver_unregister(&PS3_SYSTEM_BUS_DRIVER); | ||
1018 | #endif | 1026 | #endif |
1019 | } | 1027 | } |
1020 | module_exit(ohci_hcd_mod_exit); | 1028 | module_exit(ohci_hcd_mod_exit); |
diff --git a/drivers/usb/input/hid-core.c b/drivers/usb/input/hid-core.c index 4d8ed3d71a15..ef09952f2039 100644 --- a/drivers/usb/input/hid-core.c +++ b/drivers/usb/input/hid-core.c | |||
@@ -515,6 +515,7 @@ void usbhid_close(struct hid_device *hid) | |||
515 | 515 | ||
516 | #define USB_VENDOR_ID_TURBOX 0x062a | 516 | #define USB_VENDOR_ID_TURBOX 0x062a |
517 | #define USB_DEVICE_ID_TURBOX_KEYBOARD 0x0201 | 517 | #define USB_DEVICE_ID_TURBOX_KEYBOARD 0x0201 |
518 | #define USB_VENDOR_ID_CIDC 0x1677 | ||
518 | 519 | ||
519 | /* | 520 | /* |
520 | * Initialize all reports | 521 | * Initialize all reports |
@@ -548,7 +549,6 @@ void usbhid_init_reports(struct hid_device *hid) | |||
548 | } | 549 | } |
549 | 550 | ||
550 | #define USB_VENDOR_ID_GTCO 0x078c | 551 | #define USB_VENDOR_ID_GTCO 0x078c |
551 | #define USB_VENDOR_ID_GTCO_IPANEL_2 0x5543 | ||
552 | #define USB_DEVICE_ID_GTCO_90 0x0090 | 552 | #define USB_DEVICE_ID_GTCO_90 0x0090 |
553 | #define USB_DEVICE_ID_GTCO_100 0x0100 | 553 | #define USB_DEVICE_ID_GTCO_100 0x0100 |
554 | #define USB_DEVICE_ID_GTCO_101 0x0101 | 554 | #define USB_DEVICE_ID_GTCO_101 0x0101 |
@@ -594,8 +594,6 @@ void usbhid_init_reports(struct hid_device *hid) | |||
594 | #define USB_DEVICE_ID_GTCO_1004 0x1004 | 594 | #define USB_DEVICE_ID_GTCO_1004 0x1004 |
595 | #define USB_DEVICE_ID_GTCO_1005 0x1005 | 595 | #define USB_DEVICE_ID_GTCO_1005 0x1005 |
596 | #define USB_DEVICE_ID_GTCO_1006 0x1006 | 596 | #define USB_DEVICE_ID_GTCO_1006 0x1006 |
597 | #define USB_DEVICE_ID_GTCO_8 0x0008 | ||
598 | #define USB_DEVICE_ID_GTCO_d 0x000d | ||
599 | 597 | ||
600 | #define USB_VENDOR_ID_WACOM 0x056a | 598 | #define USB_VENDOR_ID_WACOM 0x056a |
601 | 599 | ||
@@ -854,8 +852,6 @@ static const struct hid_blacklist { | |||
854 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1004, HID_QUIRK_IGNORE }, | 852 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1004, HID_QUIRK_IGNORE }, |
855 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1005, HID_QUIRK_IGNORE }, | 853 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1005, HID_QUIRK_IGNORE }, |
856 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1006, HID_QUIRK_IGNORE }, | 854 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1006, HID_QUIRK_IGNORE }, |
857 | { USB_VENDOR_ID_GTCO_IPANEL_2, USB_DEVICE_ID_GTCO_8, HID_QUIRK_IGNORE }, | ||
858 | { USB_VENDOR_ID_GTCO_IPANEL_2, USB_DEVICE_ID_GTCO_d, HID_QUIRK_IGNORE }, | ||
859 | { USB_VENDOR_ID_IMATION, USB_DEVICE_ID_DISC_STAKKA, HID_QUIRK_IGNORE }, | 855 | { USB_VENDOR_ID_IMATION, USB_DEVICE_ID_DISC_STAKKA, HID_QUIRK_IGNORE }, |
860 | { USB_VENDOR_ID_KBGEAR, USB_DEVICE_ID_KBGEAR_JAMSTUDIO, HID_QUIRK_IGNORE }, | 856 | { USB_VENDOR_ID_KBGEAR, USB_DEVICE_ID_KBGEAR_JAMSTUDIO, HID_QUIRK_IGNORE }, |
861 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY, HID_QUIRK_IGNORE }, | 857 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY, HID_QUIRK_IGNORE }, |
@@ -953,6 +949,8 @@ static const struct hid_blacklist { | |||
953 | 949 | ||
954 | { USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_CONTROLLER, HID_QUIRK_SONY_PS3_CONTROLLER }, | 950 | { USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_CONTROLLER, HID_QUIRK_SONY_PS3_CONTROLLER }, |
955 | 951 | ||
952 | { USB_VENDOR_ID_CIDC, 0x0103, HID_QUIRK_IGNORE }, | ||
953 | |||
956 | { 0, 0 } | 954 | { 0, 0 } |
957 | }; | 955 | }; |
958 | 956 | ||
diff --git a/drivers/usb/misc/Kconfig b/drivers/usb/misc/Kconfig index a74bf8617e7f..4907e8b80070 100644 --- a/drivers/usb/misc/Kconfig +++ b/drivers/usb/misc/Kconfig | |||
@@ -88,6 +88,17 @@ config USB_LCD | |||
88 | To compile this driver as a module, choose M here: the | 88 | To compile this driver as a module, choose M here: the |
89 | module will be called usblcd. | 89 | module will be called usblcd. |
90 | 90 | ||
91 | config USB_BERRY_CHARGE | ||
92 | tristate "USB BlackBerry recharge support" | ||
93 | depends on USB | ||
94 | help | ||
95 | Say Y here if you want to connect a BlackBerry device to your | ||
96 | computer's USB port and have it automatically switch to "recharge" | ||
97 | mode. | ||
98 | |||
99 | To compile this driver as a module, choose M here: the | ||
100 | module will be called berry_charge. | ||
101 | |||
91 | config USB_LED | 102 | config USB_LED |
92 | tristate "USB LED driver support" | 103 | tristate "USB LED driver support" |
93 | depends on USB | 104 | depends on USB |
diff --git a/drivers/usb/misc/Makefile b/drivers/usb/misc/Makefile index 2cba07d31971..dac2d5b71566 100644 --- a/drivers/usb/misc/Makefile +++ b/drivers/usb/misc/Makefile | |||
@@ -6,6 +6,7 @@ | |||
6 | obj-$(CONFIG_USB_ADUTUX) += adutux.o | 6 | obj-$(CONFIG_USB_ADUTUX) += adutux.o |
7 | obj-$(CONFIG_USB_APPLEDISPLAY) += appledisplay.o | 7 | obj-$(CONFIG_USB_APPLEDISPLAY) += appledisplay.o |
8 | obj-$(CONFIG_USB_AUERSWALD) += auerswald.o | 8 | obj-$(CONFIG_USB_AUERSWALD) += auerswald.o |
9 | obj-$(CONFIG_USB_BERRY_CHARGE) += berry_charge.o | ||
9 | obj-$(CONFIG_USB_CYPRESS_CY7C63)+= cypress_cy7c63.o | 10 | obj-$(CONFIG_USB_CYPRESS_CY7C63)+= cypress_cy7c63.o |
10 | obj-$(CONFIG_USB_CYTHERM) += cytherm.o | 11 | obj-$(CONFIG_USB_CYTHERM) += cytherm.o |
11 | obj-$(CONFIG_USB_EMI26) += emi26.o | 12 | obj-$(CONFIG_USB_EMI26) += emi26.o |
diff --git a/drivers/usb/misc/berry_charge.c b/drivers/usb/misc/berry_charge.c new file mode 100644 index 000000000000..60893c6c8221 --- /dev/null +++ b/drivers/usb/misc/berry_charge.c | |||
@@ -0,0 +1,140 @@ | |||
1 | /* | ||
2 | * USB BlackBerry charging module | ||
3 | * | ||
4 | * Copyright (C) 2007 Greg Kroah-Hartman <gregkh@suse.de> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public License as | ||
8 | * published by the Free Software Foundation, version 2. | ||
9 | * | ||
10 | * Information on how to switch configs was taken by the bcharge.cc file | ||
11 | * created by the barry.sf.net project. | ||
12 | * | ||
13 | * bcharge.cc has the following copyright: | ||
14 | * Copyright (C) 2006, Net Direct Inc. (http://www.netdirect.ca/) | ||
15 | * and is released under the GPLv2. | ||
16 | * | ||
17 | * | ||
18 | */ | ||
19 | |||
20 | #include <linux/kernel.h> | ||
21 | #include <linux/errno.h> | ||
22 | #include <linux/init.h> | ||
23 | #include <linux/slab.h> | ||
24 | #include <linux/module.h> | ||
25 | #include <linux/usb.h> | ||
26 | |||
27 | #define RIM_VENDOR 0x0fca | ||
28 | #define BLACKBERRY 0x0001 | ||
29 | |||
30 | static int debug; | ||
31 | |||
32 | #ifdef dbg | ||
33 | #undef dbg | ||
34 | #endif | ||
35 | #define dbg(dev, format, arg...) \ | ||
36 | if (debug) \ | ||
37 | dev_printk(KERN_DEBUG , dev , format , ## arg) | ||
38 | |||
39 | static struct usb_device_id id_table [] = { | ||
40 | { USB_DEVICE(RIM_VENDOR, BLACKBERRY) }, | ||
41 | { }, /* Terminating entry */ | ||
42 | }; | ||
43 | MODULE_DEVICE_TABLE(usb, id_table); | ||
44 | |||
45 | static int magic_charge(struct usb_device *udev) | ||
46 | { | ||
47 | char *dummy_buffer = kzalloc(2, GFP_KERNEL); | ||
48 | int retval; | ||
49 | |||
50 | if (!dummy_buffer) | ||
51 | return -ENOMEM; | ||
52 | |||
53 | /* send two magic commands and then set the configuration. The device | ||
54 | * will then reset itself with the new power usage and should start | ||
55 | * charging. */ | ||
56 | |||
57 | /* Note, with testing, it only seems that the first message is really | ||
58 | * needed (at least for the 8700c), but to be safe, we emulate what | ||
59 | * other operating systems seem to be sending to their device. We | ||
60 | * really need to get some specs for this device to be sure about what | ||
61 | * is going on here. | ||
62 | */ | ||
63 | dbg(&udev->dev, "Sending first magic command\n"); | ||
64 | retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), | ||
65 | 0xa5, 0xc0, 0, 1, dummy_buffer, 2, 100); | ||
66 | if (retval != 2) { | ||
67 | dev_err(&udev->dev, "First magic command failed: %d.\n", | ||
68 | retval); | ||
69 | return retval; | ||
70 | } | ||
71 | |||
72 | dbg(&udev->dev, "Sending first magic command\n"); | ||
73 | retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), | ||
74 | 0xa2, 0x40, 0, 1, dummy_buffer, 0, 100); | ||
75 | if (retval != 0) { | ||
76 | dev_err(&udev->dev, "Second magic command failed: %d.\n", | ||
77 | retval); | ||
78 | return retval; | ||
79 | } | ||
80 | |||
81 | dbg(&udev->dev, "Calling set_configuration\n"); | ||
82 | retval = usb_driver_set_configuration(udev, 1); | ||
83 | if (retval) | ||
84 | dev_err(&udev->dev, "Set Configuration failed :%d.\n", retval); | ||
85 | |||
86 | return retval; | ||
87 | } | ||
88 | |||
89 | static int berry_probe(struct usb_interface *intf, | ||
90 | const struct usb_device_id *id) | ||
91 | { | ||
92 | struct usb_device *udev = interface_to_usbdev(intf); | ||
93 | |||
94 | dbg(&udev->dev, "Power is set to %dmA\n", | ||
95 | udev->actconfig->desc.bMaxPower * 2); | ||
96 | |||
97 | /* check the power usage so we don't try to enable something that is | ||
98 | * already enabled */ | ||
99 | if ((udev->actconfig->desc.bMaxPower * 2) == 500) { | ||
100 | dbg(&udev->dev, "device is already charging, power is " | ||
101 | "set to %dmA\n", udev->actconfig->desc.bMaxPower * 2); | ||
102 | return -ENODEV; | ||
103 | } | ||
104 | |||
105 | /* turn the power on */ | ||
106 | magic_charge(udev); | ||
107 | |||
108 | /* we don't really want to bind to the device, userspace programs can | ||
109 | * handle the syncing just fine, so get outta here. */ | ||
110 | return -ENODEV; | ||
111 | } | ||
112 | |||
113 | static void berry_disconnect(struct usb_interface *intf) | ||
114 | { | ||
115 | } | ||
116 | |||
117 | static struct usb_driver berry_driver = { | ||
118 | .name = "berry_charge", | ||
119 | .probe = berry_probe, | ||
120 | .disconnect = berry_disconnect, | ||
121 | .id_table = id_table, | ||
122 | }; | ||
123 | |||
124 | static int __init berry_init(void) | ||
125 | { | ||
126 | return usb_register(&berry_driver); | ||
127 | } | ||
128 | |||
129 | static void __exit berry_exit(void) | ||
130 | { | ||
131 | usb_deregister(&berry_driver); | ||
132 | } | ||
133 | |||
134 | module_init(berry_init); | ||
135 | module_exit(berry_exit); | ||
136 | |||
137 | MODULE_LICENSE("GPL"); | ||
138 | MODULE_AUTHOR("Greg Kroah-Hartman <gregkh@suse.de>"); | ||
139 | module_param(debug, bool, S_IRUGO | S_IWUSR); | ||
140 | MODULE_PARM_DESC(debug, "Debug enabled or not"); | ||
diff --git a/drivers/usb/net/Kconfig b/drivers/usb/net/Kconfig index a2b94ef512bc..0f3d7dbb537f 100644 --- a/drivers/usb/net/Kconfig +++ b/drivers/usb/net/Kconfig | |||
@@ -84,6 +84,7 @@ config USB_PEGASUS | |||
84 | config USB_RTL8150 | 84 | config USB_RTL8150 |
85 | tristate "USB RTL8150 based ethernet device support (EXPERIMENTAL)" | 85 | tristate "USB RTL8150 based ethernet device support (EXPERIMENTAL)" |
86 | depends on EXPERIMENTAL | 86 | depends on EXPERIMENTAL |
87 | select MII | ||
87 | help | 88 | help |
88 | Say Y here if you have RTL8150 based usb-ethernet adapter. | 89 | Say Y here if you have RTL8150 based usb-ethernet adapter. |
89 | Send me <petkan@users.sourceforge.net> any comments you may have. | 90 | Send me <petkan@users.sourceforge.net> any comments you may have. |
@@ -98,7 +99,7 @@ config USB_USBNET_MII | |||
98 | 99 | ||
99 | config USB_USBNET | 100 | config USB_USBNET |
100 | tristate "Multi-purpose USB Networking Framework" | 101 | tristate "Multi-purpose USB Networking Framework" |
101 | select MII if USBNET_MII != n | 102 | select MII if USB_USBNET_MII != n |
102 | ---help--- | 103 | ---help--- |
103 | This driver supports several kinds of network links over USB, | 104 | This driver supports several kinds of network links over USB, |
104 | with "minidrivers" built around a common network driver core | 105 | with "minidrivers" built around a common network driver core |
@@ -239,6 +240,7 @@ config USB_NET_RNDIS_HOST | |||
239 | config USB_NET_CDC_SUBSET | 240 | config USB_NET_CDC_SUBSET |
240 | tristate "Simple USB Network Links (CDC Ethernet subset)" | 241 | tristate "Simple USB Network Links (CDC Ethernet subset)" |
241 | depends on USB_USBNET | 242 | depends on USB_USBNET |
243 | default y | ||
242 | help | 244 | help |
243 | This driver module supports USB network devices that can work | 245 | This driver module supports USB network devices that can work |
244 | without any device-specific information. Select it if you have | 246 | without any device-specific information. Select it if you have |
@@ -298,6 +300,13 @@ config USB_EPSON2888 | |||
298 | Choose this option to support the usb networking links used | 300 | Choose this option to support the usb networking links used |
299 | by some sample firmware from Epson. | 301 | by some sample firmware from Epson. |
300 | 302 | ||
303 | config USB_KC2190 | ||
304 | boolean "KT Technology KC2190 based cables (InstaNet)" | ||
305 | depends on USB_NET_CDC_SUBSET && EXPERIMENTAL | ||
306 | help | ||
307 | Choose this option if you're using a host-to-host cable | ||
308 | with one of these chips. | ||
309 | |||
301 | config USB_NET_ZAURUS | 310 | config USB_NET_ZAURUS |
302 | tristate "Sharp Zaurus (stock ROMs) and compatible" | 311 | tristate "Sharp Zaurus (stock ROMs) and compatible" |
303 | depends on USB_USBNET | 312 | depends on USB_USBNET |
diff --git a/drivers/usb/net/asix.c b/drivers/usb/net/asix.c index bd357e178e55..7ef2e4b5e39b 100644 --- a/drivers/usb/net/asix.c +++ b/drivers/usb/net/asix.c | |||
@@ -351,9 +351,11 @@ static struct sk_buff *asix_tx_fixup(struct usbnet *dev, struct sk_buff *skb, | |||
351 | 351 | ||
352 | skb_push(skb, 4); | 352 | skb_push(skb, 4); |
353 | packet_len = (((skb->len - 4) ^ 0x0000ffff) << 16) + (skb->len - 4); | 353 | packet_len = (((skb->len - 4) ^ 0x0000ffff) << 16) + (skb->len - 4); |
354 | cpu_to_le32s(&packet_len); | ||
354 | memcpy(skb->data, &packet_len, sizeof(packet_len)); | 355 | memcpy(skb->data, &packet_len, sizeof(packet_len)); |
355 | 356 | ||
356 | if ((skb->len % 512) == 0) { | 357 | if ((skb->len % 512) == 0) { |
358 | cpu_to_le32s(&padbytes); | ||
357 | memcpy( skb->tail, &padbytes, sizeof(padbytes)); | 359 | memcpy( skb->tail, &padbytes, sizeof(padbytes)); |
358 | skb_put(skb, sizeof(padbytes)); | 360 | skb_put(skb, sizeof(padbytes)); |
359 | } | 361 | } |
diff --git a/drivers/usb/net/cdc_subset.c b/drivers/usb/net/cdc_subset.c index ae8fb06cf38e..bc62b012602b 100644 --- a/drivers/usb/net/cdc_subset.c +++ b/drivers/usb/net/cdc_subset.c | |||
@@ -79,13 +79,19 @@ static int always_connected (struct usbnet *dev) | |||
79 | * | 79 | * |
80 | * ALi M5632 driver ... does high speed | 80 | * ALi M5632 driver ... does high speed |
81 | * | 81 | * |
82 | * NOTE that the MS-Windows drivers for this chip use some funky and | ||
83 | * (naturally) undocumented 7-byte prefix to each packet, so this is a | ||
84 | * case where we don't currently interoperate. Also, once you unplug | ||
85 | * one end of the cable, you need to replug the other end too ... since | ||
86 | * chip docs are unavailable, there's no way to reset the relevant state | ||
87 | * short of a power cycle. | ||
88 | * | ||
82 | *-------------------------------------------------------------------------*/ | 89 | *-------------------------------------------------------------------------*/ |
83 | 90 | ||
84 | static const struct driver_info ali_m5632_info = { | 91 | static const struct driver_info ali_m5632_info = { |
85 | .description = "ALi M5632", | 92 | .description = "ALi M5632", |
86 | }; | 93 | }; |
87 | 94 | ||
88 | |||
89 | #endif | 95 | #endif |
90 | 96 | ||
91 | 97 | ||
@@ -159,6 +165,11 @@ static const struct driver_info epson2888_info = { | |||
159 | #endif /* CONFIG_USB_EPSON2888 */ | 165 | #endif /* CONFIG_USB_EPSON2888 */ |
160 | 166 | ||
161 | 167 | ||
168 | /*------------------------------------------------------------------------- | ||
169 | * | ||
170 | * info from Jonathan McDowell <noodles@earth.li> | ||
171 | * | ||
172 | *-------------------------------------------------------------------------*/ | ||
162 | #ifdef CONFIG_USB_KC2190 | 173 | #ifdef CONFIG_USB_KC2190 |
163 | #define HAVE_HARDWARE | 174 | #define HAVE_HARDWARE |
164 | static const struct driver_info kc2190_info = { | 175 | static const struct driver_info kc2190_info = { |
@@ -223,6 +234,10 @@ static const struct usb_device_id products [] = { | |||
223 | USB_DEVICE (0x0402, 0x5632), // ALi defaults | 234 | USB_DEVICE (0x0402, 0x5632), // ALi defaults |
224 | .driver_info = (unsigned long) &ali_m5632_info, | 235 | .driver_info = (unsigned long) &ali_m5632_info, |
225 | }, | 236 | }, |
237 | { | ||
238 | USB_DEVICE (0x182d,0x207c), // SiteCom CN-124 | ||
239 | .driver_info = (unsigned long) &ali_m5632_info, | ||
240 | }, | ||
226 | #endif | 241 | #endif |
227 | 242 | ||
228 | #ifdef CONFIG_USB_AN2720 | 243 | #ifdef CONFIG_USB_AN2720 |
@@ -314,13 +329,13 @@ static struct usb_driver cdc_subset_driver = { | |||
314 | 329 | ||
315 | static int __init cdc_subset_init(void) | 330 | static int __init cdc_subset_init(void) |
316 | { | 331 | { |
317 | return usb_register(&cdc_subset_driver); | 332 | return usb_register(&cdc_subset_driver); |
318 | } | 333 | } |
319 | module_init(cdc_subset_init); | 334 | module_init(cdc_subset_init); |
320 | 335 | ||
321 | static void __exit cdc_subset_exit(void) | 336 | static void __exit cdc_subset_exit(void) |
322 | { | 337 | { |
323 | usb_deregister(&cdc_subset_driver); | 338 | usb_deregister(&cdc_subset_driver); |
324 | } | 339 | } |
325 | module_exit(cdc_subset_exit); | 340 | module_exit(cdc_subset_exit); |
326 | 341 | ||
diff --git a/drivers/usb/net/usbnet.c b/drivers/usb/net/usbnet.c index 43ba61abfcc5..de69b183bd2f 100644 --- a/drivers/usb/net/usbnet.c +++ b/drivers/usb/net/usbnet.c | |||
@@ -147,7 +147,7 @@ int usbnet_get_endpoints(struct usbnet *dev, struct usb_interface *intf) | |||
147 | if (tmp < 0) | 147 | if (tmp < 0) |
148 | return tmp; | 148 | return tmp; |
149 | } | 149 | } |
150 | 150 | ||
151 | dev->in = usb_rcvbulkpipe (dev->udev, | 151 | dev->in = usb_rcvbulkpipe (dev->udev, |
152 | in->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK); | 152 | in->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK); |
153 | dev->out = usb_sndbulkpipe (dev->udev, | 153 | dev->out = usb_sndbulkpipe (dev->udev, |
@@ -327,7 +327,7 @@ static void rx_submit (struct usbnet *dev, struct urb *urb, gfp_t flags) | |||
327 | if (netif_running (dev->net) | 327 | if (netif_running (dev->net) |
328 | && netif_device_present (dev->net) | 328 | && netif_device_present (dev->net) |
329 | && !test_bit (EVENT_RX_HALT, &dev->flags)) { | 329 | && !test_bit (EVENT_RX_HALT, &dev->flags)) { |
330 | switch (retval = usb_submit_urb (urb, GFP_ATOMIC)){ | 330 | switch (retval = usb_submit_urb (urb, GFP_ATOMIC)){ |
331 | case -EPIPE: | 331 | case -EPIPE: |
332 | usbnet_defer_kevent (dev, EVENT_RX_HALT); | 332 | usbnet_defer_kevent (dev, EVENT_RX_HALT); |
333 | break; | 333 | break; |
@@ -443,7 +443,7 @@ block: | |||
443 | case -EOVERFLOW: | 443 | case -EOVERFLOW: |
444 | dev->stats.rx_over_errors++; | 444 | dev->stats.rx_over_errors++; |
445 | // FALLTHROUGH | 445 | // FALLTHROUGH |
446 | 446 | ||
447 | default: | 447 | default: |
448 | entry->state = rx_cleanup; | 448 | entry->state = rx_cleanup; |
449 | dev->stats.rx_errors++; | 449 | dev->stats.rx_errors++; |
@@ -560,7 +560,7 @@ static int usbnet_stop (struct net_device *net) | |||
560 | 560 | ||
561 | if (netif_msg_ifdown (dev)) | 561 | if (netif_msg_ifdown (dev)) |
562 | devinfo (dev, "stop stats: rx/tx %ld/%ld, errs %ld/%ld", | 562 | devinfo (dev, "stop stats: rx/tx %ld/%ld, errs %ld/%ld", |
563 | dev->stats.rx_packets, dev->stats.tx_packets, | 563 | dev->stats.rx_packets, dev->stats.tx_packets, |
564 | dev->stats.rx_errors, dev->stats.tx_errors | 564 | dev->stats.rx_errors, dev->stats.tx_errors |
565 | ); | 565 | ); |
566 | 566 | ||
@@ -578,7 +578,7 @@ static int usbnet_stop (struct net_device *net) | |||
578 | devdbg (dev, "waited for %d urb completions", temp); | 578 | devdbg (dev, "waited for %d urb completions", temp); |
579 | } | 579 | } |
580 | dev->wait = NULL; | 580 | dev->wait = NULL; |
581 | remove_wait_queue (&unlink_wakeup, &wait); | 581 | remove_wait_queue (&unlink_wakeup, &wait); |
582 | 582 | ||
583 | usb_kill_urb(dev->interrupt); | 583 | usb_kill_urb(dev->interrupt); |
584 | 584 | ||
@@ -834,7 +834,7 @@ kevent (struct work_struct *work) | |||
834 | } | 834 | } |
835 | 835 | ||
836 | if (test_bit (EVENT_LINK_RESET, &dev->flags)) { | 836 | if (test_bit (EVENT_LINK_RESET, &dev->flags)) { |
837 | struct driver_info *info = dev->driver_info; | 837 | struct driver_info *info = dev->driver_info; |
838 | int retval = 0; | 838 | int retval = 0; |
839 | 839 | ||
840 | clear_bit (EVENT_LINK_RESET, &dev->flags); | 840 | clear_bit (EVENT_LINK_RESET, &dev->flags); |
@@ -1066,7 +1066,7 @@ static void usbnet_bh (unsigned long param) | |||
1066 | * USB Device Driver support | 1066 | * USB Device Driver support |
1067 | * | 1067 | * |
1068 | *-------------------------------------------------------------------------*/ | 1068 | *-------------------------------------------------------------------------*/ |
1069 | 1069 | ||
1070 | // precondition: never called in_interrupt | 1070 | // precondition: never called in_interrupt |
1071 | 1071 | ||
1072 | void usbnet_disconnect (struct usb_interface *intf) | 1072 | void usbnet_disconnect (struct usb_interface *intf) |
@@ -1087,7 +1087,7 @@ void usbnet_disconnect (struct usb_interface *intf) | |||
1087 | intf->dev.driver->name, | 1087 | intf->dev.driver->name, |
1088 | xdev->bus->bus_name, xdev->devpath, | 1088 | xdev->bus->bus_name, xdev->devpath, |
1089 | dev->driver_info->description); | 1089 | dev->driver_info->description); |
1090 | 1090 | ||
1091 | net = dev->net; | 1091 | net = dev->net; |
1092 | unregister_netdev (net); | 1092 | unregister_netdev (net); |
1093 | 1093 | ||
@@ -1111,7 +1111,7 @@ int | |||
1111 | usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod) | 1111 | usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod) |
1112 | { | 1112 | { |
1113 | struct usbnet *dev; | 1113 | struct usbnet *dev; |
1114 | struct net_device *net; | 1114 | struct net_device *net; |
1115 | struct usb_host_interface *interface; | 1115 | struct usb_host_interface *interface; |
1116 | struct driver_info *info; | 1116 | struct driver_info *info; |
1117 | struct usb_device *xdev; | 1117 | struct usb_device *xdev; |
@@ -1181,6 +1181,9 @@ usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod) | |||
1181 | // NOTE net->name still not usable ... | 1181 | // NOTE net->name still not usable ... |
1182 | if (info->bind) { | 1182 | if (info->bind) { |
1183 | status = info->bind (dev, udev); | 1183 | status = info->bind (dev, udev); |
1184 | if (status < 0) | ||
1185 | goto out1; | ||
1186 | |||
1184 | // heuristic: "usb%d" for links we know are two-host, | 1187 | // heuristic: "usb%d" for links we know are two-host, |
1185 | // else "eth%d" when there's reasonable doubt. userspace | 1188 | // else "eth%d" when there's reasonable doubt. userspace |
1186 | // can rename the link if it knows better. | 1189 | // can rename the link if it knows better. |
@@ -1207,12 +1210,12 @@ usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod) | |||
1207 | if (status == 0 && dev->status) | 1210 | if (status == 0 && dev->status) |
1208 | status = init_status (dev, udev); | 1211 | status = init_status (dev, udev); |
1209 | if (status < 0) | 1212 | if (status < 0) |
1210 | goto out1; | 1213 | goto out3; |
1211 | 1214 | ||
1212 | if (!dev->rx_urb_size) | 1215 | if (!dev->rx_urb_size) |
1213 | dev->rx_urb_size = dev->hard_mtu; | 1216 | dev->rx_urb_size = dev->hard_mtu; |
1214 | dev->maxpacket = usb_maxpacket (dev->udev, dev->out, 1); | 1217 | dev->maxpacket = usb_maxpacket (dev->udev, dev->out, 1); |
1215 | 1218 | ||
1216 | SET_NETDEV_DEV(net, &udev->dev); | 1219 | SET_NETDEV_DEV(net, &udev->dev); |
1217 | status = register_netdev (net); | 1220 | status = register_netdev (net); |
1218 | if (status) | 1221 | if (status) |
@@ -1255,7 +1258,7 @@ EXPORT_SYMBOL_GPL(usbnet_probe); | |||
1255 | int usbnet_suspend (struct usb_interface *intf, pm_message_t message) | 1258 | int usbnet_suspend (struct usb_interface *intf, pm_message_t message) |
1256 | { | 1259 | { |
1257 | struct usbnet *dev = usb_get_intfdata(intf); | 1260 | struct usbnet *dev = usb_get_intfdata(intf); |
1258 | 1261 | ||
1259 | /* accelerate emptying of the rx and queues, to avoid | 1262 | /* accelerate emptying of the rx and queues, to avoid |
1260 | * having everything error out. | 1263 | * having everything error out. |
1261 | */ | 1264 | */ |
@@ -1286,7 +1289,7 @@ static int __init usbnet_init(void) | |||
1286 | < sizeof (struct skb_data)); | 1289 | < sizeof (struct skb_data)); |
1287 | 1290 | ||
1288 | random_ether_addr(node_id); | 1291 | random_ether_addr(node_id); |
1289 | return 0; | 1292 | return 0; |
1290 | } | 1293 | } |
1291 | module_init(usbnet_init); | 1294 | module_init(usbnet_init); |
1292 | 1295 | ||
diff --git a/drivers/usb/serial/airprime.c b/drivers/usb/serial/airprime.c index 0af42e32fa0a..18816bf96a4d 100644 --- a/drivers/usb/serial/airprime.c +++ b/drivers/usb/serial/airprime.c | |||
@@ -58,11 +58,6 @@ static void airprime_read_bulk_callback(struct urb *urb) | |||
58 | if (urb->status) { | 58 | if (urb->status) { |
59 | dbg("%s - nonzero read bulk status received: %d", | 59 | dbg("%s - nonzero read bulk status received: %d", |
60 | __FUNCTION__, urb->status); | 60 | __FUNCTION__, urb->status); |
61 | /* something happened, so free up the memory for this urb */ | ||
62 | if (urb->transfer_buffer) { | ||
63 | kfree (urb->transfer_buffer); | ||
64 | urb->transfer_buffer = NULL; | ||
65 | } | ||
66 | return; | 61 | return; |
67 | } | 62 | } |
68 | usb_serial_debug_data(debug, &port->dev, __FUNCTION__, urb->actual_length, data); | 63 | usb_serial_debug_data(debug, &port->dev, __FUNCTION__, urb->actual_length, data); |
@@ -146,6 +141,8 @@ static int airprime_open(struct usb_serial_port *port, struct file *filp) | |||
146 | airprime_read_bulk_callback, port); | 141 | airprime_read_bulk_callback, port); |
147 | result = usb_submit_urb(urb, GFP_KERNEL); | 142 | result = usb_submit_urb(urb, GFP_KERNEL); |
148 | if (result) { | 143 | if (result) { |
144 | usb_free_urb(urb); | ||
145 | kfree(buffer); | ||
149 | dev_err(&port->dev, | 146 | dev_err(&port->dev, |
150 | "%s - failed submitting read urb %d for port %d, error %d\n", | 147 | "%s - failed submitting read urb %d for port %d, error %d\n", |
151 | __FUNCTION__, i, port->number, result); | 148 | __FUNCTION__, i, port->number, result); |
@@ -160,27 +157,12 @@ static int airprime_open(struct usb_serial_port *port, struct file *filp) | |||
160 | /* some error happened, cancel any submitted urbs and clean up anything that | 157 | /* some error happened, cancel any submitted urbs and clean up anything that |
161 | got allocated successfully */ | 158 | got allocated successfully */ |
162 | 159 | ||
163 | for ( ; i >= 0; --i) { | 160 | while (i-- != 0) { |
164 | urb = priv->read_urbp[i]; | 161 | urb = priv->read_urbp[i]; |
165 | if (urb) { | 162 | buffer = urb->transfer_buffer; |
166 | /* This urb was submitted successfully. So we have to | 163 | usb_kill_urb (urb); |
167 | cancel it. | 164 | usb_free_urb (urb); |
168 | Unlinking the urb will invoke read_bulk_callback() | 165 | kfree (buffer); |
169 | with an error status, so its transfer buffer will | ||
170 | be freed there */ | ||
171 | if (usb_unlink_urb (urb) != -EINPROGRESS) { | ||
172 | /* comments in drivers/usb/core/urb.c say this | ||
173 | can only happen if the urb was never submitted, | ||
174 | or has completed already. | ||
175 | Either way we may have to free the transfer | ||
176 | buffer here. */ | ||
177 | if (urb->transfer_buffer) { | ||
178 | kfree (urb->transfer_buffer); | ||
179 | urb->transfer_buffer = NULL; | ||
180 | } | ||
181 | } | ||
182 | usb_free_urb (urb); | ||
183 | } | ||
184 | } | 166 | } |
185 | 167 | ||
186 | out: | 168 | out: |
@@ -194,10 +176,9 @@ static void airprime_close(struct usb_serial_port *port, struct file * filp) | |||
194 | 176 | ||
195 | dbg("%s - port %d", __FUNCTION__, port->number); | 177 | dbg("%s - port %d", __FUNCTION__, port->number); |
196 | 178 | ||
197 | /* killing the urb will invoke read_bulk_callback() with an error status, | ||
198 | so the transfer buffer will be freed there */ | ||
199 | for (i = 0; i < NUM_READ_URBS; ++i) { | 179 | for (i = 0; i < NUM_READ_URBS; ++i) { |
200 | usb_kill_urb (priv->read_urbp[i]); | 180 | usb_kill_urb (priv->read_urbp[i]); |
181 | kfree (priv->read_urbp[i]->transfer_buffer); | ||
201 | usb_free_urb (priv->read_urbp[i]); | 182 | usb_free_urb (priv->read_urbp[i]); |
202 | } | 183 | } |
203 | 184 | ||
diff --git a/drivers/usb/serial/cp2101.c b/drivers/usb/serial/cp2101.c index 3ec24870bca9..db623e754899 100644 --- a/drivers/usb/serial/cp2101.c +++ b/drivers/usb/serial/cp2101.c | |||
@@ -69,6 +69,7 @@ static struct usb_device_id id_table [] = { | |||
69 | { USB_DEVICE(0x10C4, 0x8218) }, /* Lipowsky Industrie Elektronik GmbH, HARP-1 */ | 69 | { USB_DEVICE(0x10C4, 0x8218) }, /* Lipowsky Industrie Elektronik GmbH, HARP-1 */ |
70 | { USB_DEVICE(0x10C4, 0xEA60) }, /* Silicon Labs factory default */ | 70 | { USB_DEVICE(0x10C4, 0xEA60) }, /* Silicon Labs factory default */ |
71 | { USB_DEVICE(0x10C4, 0xEA61) }, /* Silicon Labs factory default */ | 71 | { USB_DEVICE(0x10C4, 0xEA61) }, /* Silicon Labs factory default */ |
72 | { USB_DEVICE(0x10C5, 0xEA61) }, /* Silicon Labs MobiData GPRS USB Modem */ | ||
72 | { USB_DEVICE(0x13AD, 0x9999) }, /* Baltech card reader */ | 73 | { USB_DEVICE(0x13AD, 0x9999) }, /* Baltech card reader */ |
73 | { USB_DEVICE(0x16D6, 0x0001) }, /* Jablotron serial interface */ | 74 | { USB_DEVICE(0x16D6, 0x0001) }, /* Jablotron serial interface */ |
74 | { } /* Terminating Entry */ | 75 | { } /* Terminating Entry */ |
diff --git a/drivers/usb/serial/generic.c b/drivers/usb/serial/generic.c index 601e0648dec6..53baeec8f265 100644 --- a/drivers/usb/serial/generic.c +++ b/drivers/usb/serial/generic.c | |||
@@ -66,6 +66,8 @@ struct usb_serial_driver usb_serial_generic_device = { | |||
66 | .num_bulk_out = NUM_DONT_CARE, | 66 | .num_bulk_out = NUM_DONT_CARE, |
67 | .num_ports = 1, | 67 | .num_ports = 1, |
68 | .shutdown = usb_serial_generic_shutdown, | 68 | .shutdown = usb_serial_generic_shutdown, |
69 | .throttle = usb_serial_generic_throttle, | ||
70 | .unthrottle = usb_serial_generic_unthrottle, | ||
69 | }; | 71 | }; |
70 | 72 | ||
71 | static int generic_probe(struct usb_interface *interface, | 73 | static int generic_probe(struct usb_interface *interface, |
@@ -115,6 +117,7 @@ int usb_serial_generic_open (struct usb_serial_port *port, struct file *filp) | |||
115 | { | 117 | { |
116 | struct usb_serial *serial = port->serial; | 118 | struct usb_serial *serial = port->serial; |
117 | int result = 0; | 119 | int result = 0; |
120 | unsigned long flags; | ||
118 | 121 | ||
119 | dbg("%s - port %d", __FUNCTION__, port->number); | 122 | dbg("%s - port %d", __FUNCTION__, port->number); |
120 | 123 | ||
@@ -124,7 +127,13 @@ int usb_serial_generic_open (struct usb_serial_port *port, struct file *filp) | |||
124 | if (port->tty) | 127 | if (port->tty) |
125 | port->tty->low_latency = 1; | 128 | port->tty->low_latency = 1; |
126 | 129 | ||
127 | /* if we have a bulk interrupt, start reading from it */ | 130 | /* clear the throttle flags */ |
131 | spin_lock_irqsave(&port->lock, flags); | ||
132 | port->throttled = 0; | ||
133 | port->throttle_req = 0; | ||
134 | spin_unlock_irqrestore(&port->lock, flags); | ||
135 | |||
136 | /* if we have a bulk endpoint, start reading from it */ | ||
128 | if (serial->num_bulk_in) { | 137 | if (serial->num_bulk_in) { |
129 | /* Start reading from the device */ | 138 | /* Start reading from the device */ |
130 | usb_fill_bulk_urb (port->read_urb, serial->dev, | 139 | usb_fill_bulk_urb (port->read_urb, serial->dev, |
@@ -253,31 +262,22 @@ int usb_serial_generic_chars_in_buffer (struct usb_serial_port *port) | |||
253 | return (chars); | 262 | return (chars); |
254 | } | 263 | } |
255 | 264 | ||
256 | void usb_serial_generic_read_bulk_callback (struct urb *urb) | 265 | /* Push data to tty layer and resubmit the bulk read URB */ |
266 | static void flush_and_resubmit_read_urb (struct usb_serial_port *port) | ||
257 | { | 267 | { |
258 | struct usb_serial_port *port = (struct usb_serial_port *)urb->context; | ||
259 | struct usb_serial *serial = port->serial; | 268 | struct usb_serial *serial = port->serial; |
260 | struct tty_struct *tty; | 269 | struct urb *urb = port->read_urb; |
261 | unsigned char *data = urb->transfer_buffer; | 270 | struct tty_struct *tty = port->tty; |
262 | int result; | 271 | int result; |
263 | 272 | ||
264 | dbg("%s - port %d", __FUNCTION__, port->number); | 273 | /* Push data to tty */ |
265 | |||
266 | if (urb->status) { | ||
267 | dbg("%s - nonzero read bulk status received: %d", __FUNCTION__, urb->status); | ||
268 | return; | ||
269 | } | ||
270 | |||
271 | usb_serial_debug_data(debug, &port->dev, __FUNCTION__, urb->actual_length, data); | ||
272 | |||
273 | tty = port->tty; | ||
274 | if (tty && urb->actual_length) { | 274 | if (tty && urb->actual_length) { |
275 | tty_buffer_request_room(tty, urb->actual_length); | 275 | tty_buffer_request_room(tty, urb->actual_length); |
276 | tty_insert_flip_string(tty, data, urb->actual_length); | 276 | tty_insert_flip_string(tty, urb->transfer_buffer, urb->actual_length); |
277 | tty_flip_buffer_push(tty); | 277 | tty_flip_buffer_push(tty); /* is this allowed from an URB callback ? */ |
278 | } | 278 | } |
279 | 279 | ||
280 | /* Continue trying to always read */ | 280 | /* Continue reading from device */ |
281 | usb_fill_bulk_urb (port->read_urb, serial->dev, | 281 | usb_fill_bulk_urb (port->read_urb, serial->dev, |
282 | usb_rcvbulkpipe (serial->dev, | 282 | usb_rcvbulkpipe (serial->dev, |
283 | port->bulk_in_endpointAddress), | 283 | port->bulk_in_endpointAddress), |
@@ -290,6 +290,40 @@ void usb_serial_generic_read_bulk_callback (struct urb *urb) | |||
290 | if (result) | 290 | if (result) |
291 | dev_err(&port->dev, "%s - failed resubmitting read urb, error %d\n", __FUNCTION__, result); | 291 | dev_err(&port->dev, "%s - failed resubmitting read urb, error %d\n", __FUNCTION__, result); |
292 | } | 292 | } |
293 | |||
294 | void usb_serial_generic_read_bulk_callback (struct urb *urb) | ||
295 | { | ||
296 | struct usb_serial_port *port = (struct usb_serial_port *)urb->context; | ||
297 | unsigned char *data = urb->transfer_buffer; | ||
298 | int is_throttled; | ||
299 | unsigned long flags; | ||
300 | |||
301 | dbg("%s - port %d", __FUNCTION__, port->number); | ||
302 | |||
303 | if (urb->status) { | ||
304 | dbg("%s - nonzero read bulk status received: %d", __FUNCTION__, urb->status); | ||
305 | return; | ||
306 | } | ||
307 | |||
308 | usb_serial_debug_data(debug, &port->dev, __FUNCTION__, urb->actual_length, data); | ||
309 | |||
310 | /* Throttle the device if requested by tty */ | ||
311 | if (urb->actual_length) { | ||
312 | spin_lock_irqsave(&port->lock, flags); | ||
313 | is_throttled = port->throttled = port->throttle_req; | ||
314 | spin_unlock_irqrestore(&port->lock, flags); | ||
315 | if (is_throttled) { | ||
316 | /* Let the received data linger in the read URB; | ||
317 | * usb_serial_generic_unthrottle() will pick it | ||
318 | * up later. */ | ||
319 | dbg("%s - throttling device", __FUNCTION__); | ||
320 | return; | ||
321 | } | ||
322 | } | ||
323 | |||
324 | /* Handle data and continue reading from device */ | ||
325 | flush_and_resubmit_read_urb(port); | ||
326 | } | ||
293 | EXPORT_SYMBOL_GPL(usb_serial_generic_read_bulk_callback); | 327 | EXPORT_SYMBOL_GPL(usb_serial_generic_read_bulk_callback); |
294 | 328 | ||
295 | void usb_serial_generic_write_bulk_callback (struct urb *urb) | 329 | void usb_serial_generic_write_bulk_callback (struct urb *urb) |
@@ -308,6 +342,38 @@ void usb_serial_generic_write_bulk_callback (struct urb *urb) | |||
308 | } | 342 | } |
309 | EXPORT_SYMBOL_GPL(usb_serial_generic_write_bulk_callback); | 343 | EXPORT_SYMBOL_GPL(usb_serial_generic_write_bulk_callback); |
310 | 344 | ||
345 | void usb_serial_generic_throttle (struct usb_serial_port *port) | ||
346 | { | ||
347 | unsigned long flags; | ||
348 | |||
349 | dbg("%s - port %d", __FUNCTION__, port->number); | ||
350 | |||
351 | /* Set the throttle request flag. It will be picked up | ||
352 | * by usb_serial_generic_read_bulk_callback(). */ | ||
353 | spin_lock_irqsave(&port->lock, flags); | ||
354 | port->throttle_req = 1; | ||
355 | spin_unlock_irqrestore(&port->lock, flags); | ||
356 | } | ||
357 | |||
358 | void usb_serial_generic_unthrottle (struct usb_serial_port *port) | ||
359 | { | ||
360 | int was_throttled; | ||
361 | unsigned long flags; | ||
362 | |||
363 | dbg("%s - port %d", __FUNCTION__, port->number); | ||
364 | |||
365 | /* Clear the throttle flags */ | ||
366 | spin_lock_irqsave(&port->lock, flags); | ||
367 | was_throttled = port->throttled; | ||
368 | port->throttled = port->throttle_req = 0; | ||
369 | spin_unlock_irqrestore(&port->lock, flags); | ||
370 | |||
371 | if (was_throttled) { | ||
372 | /* Handle pending data and resume reading from device */ | ||
373 | flush_and_resubmit_read_urb(port); | ||
374 | } | ||
375 | } | ||
376 | |||
311 | void usb_serial_generic_shutdown (struct usb_serial *serial) | 377 | void usb_serial_generic_shutdown (struct usb_serial *serial) |
312 | { | 378 | { |
313 | int i; | 379 | int i; |
diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c index ced9f32b29d9..9963a8b75840 100644 --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c | |||
@@ -69,7 +69,6 @@ static int option_send_setup(struct usb_serial_port *port); | |||
69 | /* Vendor and product IDs */ | 69 | /* Vendor and product IDs */ |
70 | #define OPTION_VENDOR_ID 0x0AF0 | 70 | #define OPTION_VENDOR_ID 0x0AF0 |
71 | #define HUAWEI_VENDOR_ID 0x12D1 | 71 | #define HUAWEI_VENDOR_ID 0x12D1 |
72 | #define AUDIOVOX_VENDOR_ID 0x0F3D | ||
73 | #define NOVATELWIRELESS_VENDOR_ID 0x1410 | 72 | #define NOVATELWIRELESS_VENDOR_ID 0x1410 |
74 | #define ANYDATA_VENDOR_ID 0x16d5 | 73 | #define ANYDATA_VENDOR_ID 0x16d5 |
75 | 74 | ||
@@ -81,7 +80,6 @@ static int option_send_setup(struct usb_serial_port *port); | |||
81 | #define OPTION_PRODUCT_GTMAX36 0x6701 | 80 | #define OPTION_PRODUCT_GTMAX36 0x6701 |
82 | #define HUAWEI_PRODUCT_E600 0x1001 | 81 | #define HUAWEI_PRODUCT_E600 0x1001 |
83 | #define HUAWEI_PRODUCT_E220 0x1003 | 82 | #define HUAWEI_PRODUCT_E220 0x1003 |
84 | #define AUDIOVOX_PRODUCT_AIRCARD 0x0112 | ||
85 | #define NOVATELWIRELESS_PRODUCT_U740 0x1400 | 83 | #define NOVATELWIRELESS_PRODUCT_U740 0x1400 |
86 | #define ANYDATA_PRODUCT_ID 0x6501 | 84 | #define ANYDATA_PRODUCT_ID 0x6501 |
87 | 85 | ||
@@ -94,7 +92,6 @@ static struct usb_device_id option_ids[] = { | |||
94 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GTMAX36) }, | 92 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GTMAX36) }, |
95 | { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600) }, | 93 | { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600) }, |
96 | { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220) }, | 94 | { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220) }, |
97 | { USB_DEVICE(AUDIOVOX_VENDOR_ID, AUDIOVOX_PRODUCT_AIRCARD) }, | ||
98 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID,NOVATELWIRELESS_PRODUCT_U740) }, | 95 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID,NOVATELWIRELESS_PRODUCT_U740) }, |
99 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ID) }, | 96 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ID) }, |
100 | { } /* Terminating entry */ | 97 | { } /* Terminating entry */ |
@@ -109,7 +106,6 @@ static struct usb_device_id option_ids1[] = { | |||
109 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GTMAX36) }, | 106 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GTMAX36) }, |
110 | { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600) }, | 107 | { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600) }, |
111 | { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220) }, | 108 | { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220) }, |
112 | { USB_DEVICE(AUDIOVOX_VENDOR_ID, AUDIOVOX_PRODUCT_AIRCARD) }, | ||
113 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID,NOVATELWIRELESS_PRODUCT_U740) }, | 109 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID,NOVATELWIRELESS_PRODUCT_U740) }, |
114 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ID) }, | 110 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ID) }, |
115 | { } /* Terminating entry */ | 111 | { } /* Terminating entry */ |
diff --git a/drivers/usb/serial/pl2303.c b/drivers/usb/serial/pl2303.c index 6c083d4e2c9b..83dfae93a45d 100644 --- a/drivers/usb/serial/pl2303.c +++ b/drivers/usb/serial/pl2303.c | |||
@@ -83,6 +83,7 @@ static struct usb_device_id id_table [] = { | |||
83 | { USB_DEVICE(BELKIN_VENDOR_ID, BELKIN_PRODUCT_ID) }, | 83 | { USB_DEVICE(BELKIN_VENDOR_ID, BELKIN_PRODUCT_ID) }, |
84 | { USB_DEVICE(ALCOR_VENDOR_ID, ALCOR_PRODUCT_ID) }, | 84 | { USB_DEVICE(ALCOR_VENDOR_ID, ALCOR_PRODUCT_ID) }, |
85 | { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_ID) }, | 85 | { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_ID) }, |
86 | { USB_DEVICE(WS002IN_VENDOR_ID, WS002IN_PRODUCT_ID) }, | ||
86 | { } /* Terminating entry */ | 87 | { } /* Terminating entry */ |
87 | }; | 88 | }; |
88 | 89 | ||
diff --git a/drivers/usb/serial/pl2303.h b/drivers/usb/serial/pl2303.h index 65a5039665e7..f9a71d0c102e 100644 --- a/drivers/usb/serial/pl2303.h +++ b/drivers/usb/serial/pl2303.h | |||
@@ -97,3 +97,8 @@ | |||
97 | /* Huawei E620 UMTS/HSDPA card (ID: 12d1:1001) */ | 97 | /* Huawei E620 UMTS/HSDPA card (ID: 12d1:1001) */ |
98 | #define HUAWEI_VENDOR_ID 0x12d1 | 98 | #define HUAWEI_VENDOR_ID 0x12d1 |
99 | #define HUAWEI_PRODUCT_ID 0x1001 | 99 | #define HUAWEI_PRODUCT_ID 0x1001 |
100 | |||
101 | /* Willcom WS002IN Data Driver (by NetIndex Inc.) */ | ||
102 | #define WS002IN_VENDOR_ID 0x11f6 | ||
103 | #define WS002IN_PRODUCT_ID 0x2001 | ||
104 | |||
diff --git a/drivers/usb/storage/scsiglue.c b/drivers/usb/storage/scsiglue.c index 70234f5dbeeb..e227f64d5641 100644 --- a/drivers/usb/storage/scsiglue.c +++ b/drivers/usb/storage/scsiglue.c | |||
@@ -153,6 +153,12 @@ static int slave_configure(struct scsi_device *sdev) | |||
153 | if (us->flags & US_FL_FIX_CAPACITY) | 153 | if (us->flags & US_FL_FIX_CAPACITY) |
154 | sdev->fix_capacity = 1; | 154 | sdev->fix_capacity = 1; |
155 | 155 | ||
156 | /* A few disks have two indistinguishable version, one of | ||
157 | * which reports the correct capacity and the other does not. | ||
158 | * The sd driver has to guess which is the case. */ | ||
159 | if (us->flags & US_FL_CAPACITY_HEURISTICS) | ||
160 | sdev->guess_capacity = 1; | ||
161 | |||
156 | /* Some devices report a SCSI revision level above 2 but are | 162 | /* Some devices report a SCSI revision level above 2 but are |
157 | * unable to handle the REPORT LUNS command (for which | 163 | * unable to handle the REPORT LUNS command (for which |
158 | * support is mandatory at level 3). Since we already have | 164 | * support is mandatory at level 3). Since we already have |
diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h index f49a62fc32d2..9644a8ea4aa7 100644 --- a/drivers/usb/storage/unusual_devs.h +++ b/drivers/usb/storage/unusual_devs.h | |||
@@ -1101,6 +1101,15 @@ UNUSUAL_DEV( 0x08bd, 0x1100, 0x0000, 0x0000, | |||
1101 | US_SC_DEVICE, US_PR_DEVICE, NULL, | 1101 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
1102 | US_FL_SINGLE_LUN), | 1102 | US_FL_SINGLE_LUN), |
1103 | 1103 | ||
1104 | /* Submitted by Dylan Taft <d13f00l@gmail.com> | ||
1105 | * US_FL_IGNORE_RESIDUE Needed | ||
1106 | */ | ||
1107 | UNUSUAL_DEV( 0x08ca, 0x3103, 0x0100, 0x0100, | ||
1108 | "AIPTEK", | ||
1109 | "Aiptek USB Keychain MP3 Player", | ||
1110 | US_SC_DEVICE, US_PR_DEVICE, NULL, | ||
1111 | US_FL_IGNORE_RESIDUE), | ||
1112 | |||
1104 | /* Entry needed for flags. Moreover, all devices with this ID use | 1113 | /* Entry needed for flags. Moreover, all devices with this ID use |
1105 | * bulk-only transport, but _some_ falsely report Control/Bulk instead. | 1114 | * bulk-only transport, but _some_ falsely report Control/Bulk instead. |
1106 | * One example is "Trumpion Digital Research MYMP3". | 1115 | * One example is "Trumpion Digital Research MYMP3". |
@@ -1311,12 +1320,13 @@ UNUSUAL_DEV( 0x0fce, 0xd008, 0x0000, 0x0000, | |||
1311 | US_SC_DEVICE, US_PR_DEVICE, NULL, | 1320 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
1312 | US_FL_NO_WP_DETECT ), | 1321 | US_FL_NO_WP_DETECT ), |
1313 | 1322 | ||
1314 | /* Reported by Jan Mate <mate@fiit.stuba.sk> */ | 1323 | /* Reported by Jan Mate <mate@fiit.stuba.sk> |
1324 | * and by Soeren Sonnenburg <kernel@nn7.de> */ | ||
1315 | UNUSUAL_DEV( 0x0fce, 0xe030, 0x0000, 0x0000, | 1325 | UNUSUAL_DEV( 0x0fce, 0xe030, 0x0000, 0x0000, |
1316 | "Sony Ericsson", | 1326 | "Sony Ericsson", |
1317 | "P990i", | 1327 | "P990i", |
1318 | US_SC_DEVICE, US_PR_DEVICE, NULL, | 1328 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
1319 | US_FL_FIX_CAPACITY ), | 1329 | US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ), |
1320 | 1330 | ||
1321 | /* Reported by Emmanuel Vasilakis <evas@forthnet.gr> */ | 1331 | /* Reported by Emmanuel Vasilakis <evas@forthnet.gr> */ |
1322 | UNUSUAL_DEV( 0x0fce, 0xe031, 0x0000, 0x0000, | 1332 | UNUSUAL_DEV( 0x0fce, 0xe031, 0x0000, 0x0000, |
@@ -1385,6 +1395,16 @@ UNUSUAL_DEV( 0x1652, 0x6600, 0x0201, 0x0201, | |||
1385 | US_SC_DEVICE, US_PR_DEVICE, NULL, | 1395 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
1386 | US_FL_IGNORE_RESIDUE ), | 1396 | US_FL_IGNORE_RESIDUE ), |
1387 | 1397 | ||
1398 | /* Reported by Thomas Baechler <thomas@archlinux.org> | ||
1399 | * Fixes I/O errors with Teac HD-35PU devices | ||
1400 | */ | ||
1401 | |||
1402 | UNUSUAL_DEV( 0x1652, 0x6600, 0x0201, 0x0201, | ||
1403 | "Super Top", | ||
1404 | "USB 2.0 IDE DEVICE", | ||
1405 | US_SC_DEVICE, US_PR_DEVICE, NULL, | ||
1406 | US_FL_IGNORE_RESIDUE), | ||
1407 | |||
1388 | /* patch submitted by Davide Perini <perini.davide@dpsoftware.org> | 1408 | /* patch submitted by Davide Perini <perini.davide@dpsoftware.org> |
1389 | * and Renato Perini <rperini@email.it> | 1409 | * and Renato Perini <rperini@email.it> |
1390 | */ | 1410 | */ |
@@ -1423,7 +1443,7 @@ UNUSUAL_DEV( 0xed06, 0x4500, 0x0001, 0x0001, | |||
1423 | "DataStor", | 1443 | "DataStor", |
1424 | "USB4500 FW1.04", | 1444 | "USB4500 FW1.04", |
1425 | US_SC_DEVICE, US_PR_DEVICE, NULL, | 1445 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
1426 | US_FL_FIX_CAPACITY), | 1446 | US_FL_CAPACITY_HEURISTICS), |
1427 | 1447 | ||
1428 | /* Control/Bulk transport for all SubClass values */ | 1448 | /* Control/Bulk transport for all SubClass values */ |
1429 | USUAL_DEV(US_SC_RBC, US_PR_CB, USB_US_TYPE_STOR), | 1449 | USUAL_DEV(US_SC_RBC, US_PR_CB, USB_US_TYPE_STOR), |
diff --git a/drivers/usb/usb-skeleton.c b/drivers/usb/usb-skeleton.c index 296b091cf168..46929a1b6f24 100644 --- a/drivers/usb/usb-skeleton.c +++ b/drivers/usb/usb-skeleton.c | |||
@@ -90,13 +90,15 @@ static int skel_open(struct inode *inode, struct file *file) | |||
90 | goto exit; | 90 | goto exit; |
91 | } | 91 | } |
92 | 92 | ||
93 | /* increment our usage count for the device */ | ||
94 | kref_get(&dev->kref); | ||
95 | |||
93 | /* prevent the device from being autosuspended */ | 96 | /* prevent the device from being autosuspended */ |
94 | retval = usb_autopm_get_interface(interface); | 97 | retval = usb_autopm_get_interface(interface); |
95 | if (retval) | 98 | if (retval) { |
99 | kref_put(&dev->kref, skel_delete); | ||
96 | goto exit; | 100 | goto exit; |
97 | 101 | } | |
98 | /* increment our usage count for the device */ | ||
99 | kref_get(&dev->kref); | ||
100 | 102 | ||
101 | /* save our object in the file's private structure */ | 103 | /* save our object in the file's private structure */ |
102 | file->private_data = dev; | 104 | file->private_data = dev; |