Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * message.c - synchronous message handling |
| 3 | */ |
| 4 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | #include <linux/pci.h> /* for scatterlist macros */ |
| 6 | #include <linux/usb.h> |
| 7 | #include <linux/module.h> |
| 8 | #include <linux/slab.h> |
| 9 | #include <linux/init.h> |
| 10 | #include <linux/mm.h> |
| 11 | #include <linux/timer.h> |
| 12 | #include <linux/ctype.h> |
| 13 | #include <linux/device.h> |
Ralf Baechle | 1176360 | 2007-10-23 20:42:11 +0200 | [diff] [blame] | 14 | #include <linux/scatterlist.h> |
Oliver Neukum | 7ceec1f | 2007-01-26 14:26:21 +0100 | [diff] [blame] | 15 | #include <linux/usb/quirks.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <asm/byteorder.h> |
| 17 | |
| 18 | #include "hcd.h" /* for usbcore internals */ |
| 19 | #include "usb.h" |
| 20 | |
Alan Stern | df71896 | 2008-12-19 10:27:56 -0500 | [diff] [blame] | 21 | static void cancel_async_set_config(struct usb_device *udev); |
| 22 | |
Alan Stern | 67f5dde | 2007-07-24 18:23:23 -0400 | [diff] [blame] | 23 | struct api_context { |
| 24 | struct completion done; |
| 25 | int status; |
| 26 | }; |
| 27 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 28 | static void usb_api_blocking_completion(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | { |
Alan Stern | 67f5dde | 2007-07-24 18:23:23 -0400 | [diff] [blame] | 30 | struct api_context *ctx = urb->context; |
| 31 | |
| 32 | ctx->status = urb->status; |
| 33 | complete(&ctx->done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | } |
| 35 | |
| 36 | |
Franck Bui-Huu | ecdc0a5 | 2006-07-12 10:09:41 +0200 | [diff] [blame] | 37 | /* |
| 38 | * Starts urb and waits for completion or timeout. Note that this call |
| 39 | * is NOT interruptible. Many device driver i/o requests should be |
| 40 | * interruptible and therefore these drivers should implement their |
| 41 | * own interruptible routines. |
| 42 | */ |
| 43 | static int usb_start_wait_urb(struct urb *urb, int timeout, int *actual_length) |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 44 | { |
Alan Stern | 67f5dde | 2007-07-24 18:23:23 -0400 | [diff] [blame] | 45 | struct api_context ctx; |
Franck Bui-Huu | ecdc0a5 | 2006-07-12 10:09:41 +0200 | [diff] [blame] | 46 | unsigned long expire; |
Greg Kroah-Hartman | 3fc3e82 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 47 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Alan Stern | 67f5dde | 2007-07-24 18:23:23 -0400 | [diff] [blame] | 49 | init_completion(&ctx.done); |
| 50 | urb->context = &ctx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | urb->actual_length = 0; |
Greg Kroah-Hartman | 3fc3e82 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 52 | retval = usb_submit_urb(urb, GFP_NOIO); |
| 53 | if (unlikely(retval)) |
Franck Bui-Huu | ecdc0a5 | 2006-07-12 10:09:41 +0200 | [diff] [blame] | 54 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
Franck Bui-Huu | ecdc0a5 | 2006-07-12 10:09:41 +0200 | [diff] [blame] | 56 | expire = timeout ? msecs_to_jiffies(timeout) : MAX_SCHEDULE_TIMEOUT; |
Alan Stern | 67f5dde | 2007-07-24 18:23:23 -0400 | [diff] [blame] | 57 | if (!wait_for_completion_timeout(&ctx.done, expire)) { |
| 58 | usb_kill_urb(urb); |
| 59 | retval = (ctx.status == -ENOENT ? -ETIMEDOUT : ctx.status); |
Franck Bui-Huu | ecdc0a5 | 2006-07-12 10:09:41 +0200 | [diff] [blame] | 60 | |
| 61 | dev_dbg(&urb->dev->dev, |
Roel Kluin | 71d2718 | 2009-03-13 12:19:18 +0100 | [diff] [blame] | 62 | "%s timed out on ep%d%s len=%u/%u\n", |
Franck Bui-Huu | ecdc0a5 | 2006-07-12 10:09:41 +0200 | [diff] [blame] | 63 | current->comm, |
Alan Stern | 5e60a16 | 2007-07-30 17:07:21 -0400 | [diff] [blame] | 64 | usb_endpoint_num(&urb->ep->desc), |
| 65 | usb_urb_dir_in(urb) ? "in" : "out", |
Franck Bui-Huu | ecdc0a5 | 2006-07-12 10:09:41 +0200 | [diff] [blame] | 66 | urb->actual_length, |
| 67 | urb->transfer_buffer_length); |
Franck Bui-Huu | ecdc0a5 | 2006-07-12 10:09:41 +0200 | [diff] [blame] | 68 | } else |
Alan Stern | 67f5dde | 2007-07-24 18:23:23 -0400 | [diff] [blame] | 69 | retval = ctx.status; |
Franck Bui-Huu | ecdc0a5 | 2006-07-12 10:09:41 +0200 | [diff] [blame] | 70 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | if (actual_length) |
| 72 | *actual_length = urb->actual_length; |
Franck Bui-Huu | ecdc0a5 | 2006-07-12 10:09:41 +0200 | [diff] [blame] | 73 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | usb_free_urb(urb); |
Greg Kroah-Hartman | 3fc3e82 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 75 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | /*-------------------------------------------------------------------*/ |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 79 | /* returns status (negative) or length (positive) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | static int usb_internal_control_msg(struct usb_device *usb_dev, |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 81 | unsigned int pipe, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | struct usb_ctrlrequest *cmd, |
| 83 | void *data, int len, int timeout) |
| 84 | { |
| 85 | struct urb *urb; |
| 86 | int retv; |
| 87 | int length; |
| 88 | |
| 89 | urb = usb_alloc_urb(0, GFP_NOIO); |
| 90 | if (!urb) |
| 91 | return -ENOMEM; |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 92 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | usb_fill_control_urb(urb, usb_dev, pipe, (unsigned char *)cmd, data, |
| 94 | len, usb_api_blocking_completion, NULL); |
| 95 | |
| 96 | retv = usb_start_wait_urb(urb, timeout, &length); |
| 97 | if (retv < 0) |
| 98 | return retv; |
| 99 | else |
| 100 | return length; |
| 101 | } |
| 102 | |
| 103 | /** |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 104 | * usb_control_msg - Builds a control urb, sends it off and waits for completion |
| 105 | * @dev: pointer to the usb device to send the message to |
| 106 | * @pipe: endpoint "pipe" to send the message to |
| 107 | * @request: USB message request value |
| 108 | * @requesttype: USB message request type value |
| 109 | * @value: USB message value |
| 110 | * @index: USB message index value |
| 111 | * @data: pointer to the data to send |
| 112 | * @size: length in bytes of the data to send |
| 113 | * @timeout: time in msecs to wait for the message to complete before timing |
| 114 | * out (if 0 the wait is forever) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | * |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 116 | * Context: !in_interrupt () |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | * |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 118 | * This function sends a simple control message to a specified endpoint and |
| 119 | * waits for the message to complete, or timeout. |
| 120 | * |
| 121 | * If successful, it returns the number of bytes transferred, otherwise a |
| 122 | * negative error number. |
| 123 | * |
| 124 | * Don't use this function from within an interrupt context, like a bottom half |
| 125 | * handler. If you need an asynchronous message, or need to send a message |
| 126 | * from within interrupt context, use usb_submit_urb(). |
| 127 | * If a thread in your driver uses this call, make sure your disconnect() |
| 128 | * method can wait for it to complete. Since you don't have a handle on the |
| 129 | * URB used, you can't cancel the request. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | */ |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 131 | int usb_control_msg(struct usb_device *dev, unsigned int pipe, __u8 request, |
| 132 | __u8 requesttype, __u16 value, __u16 index, void *data, |
| 133 | __u16 size, int timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | { |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 135 | struct usb_ctrlrequest *dr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | int ret; |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 137 | |
| 138 | dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_NOIO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | if (!dr) |
| 140 | return -ENOMEM; |
| 141 | |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 142 | dr->bRequestType = requesttype; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | dr->bRequest = request; |
Harvey Harrison | da2bbdc | 2008-10-29 14:25:51 -0700 | [diff] [blame] | 144 | dr->wValue = cpu_to_le16(value); |
| 145 | dr->wIndex = cpu_to_le16(index); |
| 146 | dr->wLength = cpu_to_le16(size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 148 | /* dbg("usb_control_msg"); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
| 150 | ret = usb_internal_control_msg(dev, pipe, dr, data, size, timeout); |
| 151 | |
| 152 | kfree(dr); |
| 153 | |
| 154 | return ret; |
| 155 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 156 | EXPORT_SYMBOL_GPL(usb_control_msg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
| 158 | /** |
Greg Kroah-Hartman | 782a7a6 | 2006-05-19 13:20:20 -0700 | [diff] [blame] | 159 | * usb_interrupt_msg - Builds an interrupt urb, sends it off and waits for completion |
| 160 | * @usb_dev: pointer to the usb device to send the message to |
| 161 | * @pipe: endpoint "pipe" to send the message to |
| 162 | * @data: pointer to the data to send |
| 163 | * @len: length in bytes of the data to send |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 164 | * @actual_length: pointer to a location to put the actual length transferred |
| 165 | * in bytes |
Greg Kroah-Hartman | 782a7a6 | 2006-05-19 13:20:20 -0700 | [diff] [blame] | 166 | * @timeout: time in msecs to wait for the message to complete before |
| 167 | * timing out (if 0 the wait is forever) |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 168 | * |
Greg Kroah-Hartman | 782a7a6 | 2006-05-19 13:20:20 -0700 | [diff] [blame] | 169 | * Context: !in_interrupt () |
| 170 | * |
| 171 | * This function sends a simple interrupt message to a specified endpoint and |
| 172 | * waits for the message to complete, or timeout. |
| 173 | * |
| 174 | * If successful, it returns 0, otherwise a negative error number. The number |
| 175 | * of actual bytes transferred will be stored in the actual_length paramater. |
| 176 | * |
| 177 | * Don't use this function from within an interrupt context, like a bottom half |
| 178 | * handler. If you need an asynchronous message, or need to send a message |
| 179 | * from within interrupt context, use usb_submit_urb() If a thread in your |
| 180 | * driver uses this call, make sure your disconnect() method can wait for it to |
| 181 | * complete. Since you don't have a handle on the URB used, you can't cancel |
| 182 | * the request. |
| 183 | */ |
| 184 | int usb_interrupt_msg(struct usb_device *usb_dev, unsigned int pipe, |
| 185 | void *data, int len, int *actual_length, int timeout) |
| 186 | { |
| 187 | return usb_bulk_msg(usb_dev, pipe, data, len, actual_length, timeout); |
| 188 | } |
| 189 | EXPORT_SYMBOL_GPL(usb_interrupt_msg); |
| 190 | |
| 191 | /** |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 192 | * usb_bulk_msg - Builds a bulk urb, sends it off and waits for completion |
| 193 | * @usb_dev: pointer to the usb device to send the message to |
| 194 | * @pipe: endpoint "pipe" to send the message to |
| 195 | * @data: pointer to the data to send |
| 196 | * @len: length in bytes of the data to send |
| 197 | * @actual_length: pointer to a location to put the actual length transferred |
| 198 | * in bytes |
| 199 | * @timeout: time in msecs to wait for the message to complete before |
| 200 | * timing out (if 0 the wait is forever) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | * |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 202 | * Context: !in_interrupt () |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | * |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 204 | * This function sends a simple bulk message to a specified endpoint |
| 205 | * and waits for the message to complete, or timeout. |
Alan Stern | d09d36a | 2005-09-26 16:22:45 -0400 | [diff] [blame] | 206 | * |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 207 | * If successful, it returns 0, otherwise a negative error number. The number |
| 208 | * of actual bytes transferred will be stored in the actual_length paramater. |
| 209 | * |
| 210 | * Don't use this function from within an interrupt context, like a bottom half |
| 211 | * handler. If you need an asynchronous message, or need to send a message |
| 212 | * from within interrupt context, use usb_submit_urb() If a thread in your |
| 213 | * driver uses this call, make sure your disconnect() method can wait for it to |
| 214 | * complete. Since you don't have a handle on the URB used, you can't cancel |
| 215 | * the request. |
| 216 | * |
| 217 | * Because there is no usb_interrupt_msg() and no USBDEVFS_INTERRUPT ioctl, |
| 218 | * users are forced to abuse this routine by using it to submit URBs for |
| 219 | * interrupt endpoints. We will take the liberty of creating an interrupt URB |
| 220 | * (with the default interval) if the target is an interrupt endpoint. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | */ |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 222 | int usb_bulk_msg(struct usb_device *usb_dev, unsigned int pipe, |
| 223 | void *data, int len, int *actual_length, int timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | { |
| 225 | struct urb *urb; |
Alan Stern | d09d36a | 2005-09-26 16:22:45 -0400 | [diff] [blame] | 226 | struct usb_host_endpoint *ep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | |
Alan Stern | d09d36a | 2005-09-26 16:22:45 -0400 | [diff] [blame] | 228 | ep = (usb_pipein(pipe) ? usb_dev->ep_in : usb_dev->ep_out) |
| 229 | [usb_pipeendpoint(pipe)]; |
| 230 | if (!ep || len < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | return -EINVAL; |
| 232 | |
Alan Stern | d09d36a | 2005-09-26 16:22:45 -0400 | [diff] [blame] | 233 | urb = usb_alloc_urb(0, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | if (!urb) |
| 235 | return -ENOMEM; |
| 236 | |
Alan Stern | d09d36a | 2005-09-26 16:22:45 -0400 | [diff] [blame] | 237 | if ((ep->desc.bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) == |
| 238 | USB_ENDPOINT_XFER_INT) { |
| 239 | pipe = (pipe & ~(3 << 30)) | (PIPE_INTERRUPT << 30); |
| 240 | usb_fill_int_urb(urb, usb_dev, pipe, data, len, |
Alan Stern | 8d062b9 | 2007-04-23 17:30:32 -0400 | [diff] [blame] | 241 | usb_api_blocking_completion, NULL, |
| 242 | ep->desc.bInterval); |
Alan Stern | d09d36a | 2005-09-26 16:22:45 -0400 | [diff] [blame] | 243 | } else |
| 244 | usb_fill_bulk_urb(urb, usb_dev, pipe, data, len, |
| 245 | usb_api_blocking_completion, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | |
| 247 | return usb_start_wait_urb(urb, timeout, actual_length); |
| 248 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 249 | EXPORT_SYMBOL_GPL(usb_bulk_msg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | |
| 251 | /*-------------------------------------------------------------------*/ |
| 252 | |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 253 | static void sg_clean(struct usb_sg_request *io) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | { |
| 255 | if (io->urbs) { |
| 256 | while (io->entries--) |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 257 | usb_free_urb(io->urbs [io->entries]); |
| 258 | kfree(io->urbs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | io->urbs = NULL; |
| 260 | } |
| 261 | if (io->dev->dev.dma_mask != NULL) |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 262 | usb_buffer_unmap_sg(io->dev, usb_pipein(io->pipe), |
| 263 | io->sg, io->nents); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | io->dev = NULL; |
| 265 | } |
| 266 | |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 267 | static void sg_complete(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | { |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 269 | struct usb_sg_request *io = urb->context; |
Greg Kroah-Hartman | 3fc3e82 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 270 | int status = urb->status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 272 | spin_lock(&io->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
| 274 | /* In 2.5 we require hcds' endpoint queues not to progress after fault |
| 275 | * reports, until the completion callback (this!) returns. That lets |
| 276 | * device driver code (like this routine) unlink queued urbs first, |
| 277 | * if it needs to, since the HC won't work on them at all. So it's |
| 278 | * not possible for page N+1 to overwrite page N, and so on. |
| 279 | * |
| 280 | * That's only for "hard" faults; "soft" faults (unlinks) sometimes |
| 281 | * complete before the HCD can get requests away from hardware, |
| 282 | * though never during cleanup after a hard fault. |
| 283 | */ |
| 284 | if (io->status |
| 285 | && (io->status != -ECONNRESET |
Greg Kroah-Hartman | 3fc3e82 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 286 | || status != -ECONNRESET) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | && urb->actual_length) { |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 288 | dev_err(io->dev->bus->controller, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | "dev %s ep%d%s scatterlist error %d/%d\n", |
| 290 | io->dev->devpath, |
Alan Stern | 5e60a16 | 2007-07-30 17:07:21 -0400 | [diff] [blame] | 291 | usb_endpoint_num(&urb->ep->desc), |
| 292 | usb_urb_dir_in(urb) ? "in" : "out", |
Greg Kroah-Hartman | 3fc3e82 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 293 | status, io->status); |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 294 | /* BUG (); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | } |
| 296 | |
Greg Kroah-Hartman | 3fc3e82 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 297 | if (io->status == 0 && status && status != -ECONNRESET) { |
| 298 | int i, found, retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | |
Greg Kroah-Hartman | 3fc3e82 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 300 | io->status = status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
| 302 | /* the previous urbs, and this one, completed already. |
| 303 | * unlink pending urbs so they won't rx/tx bad data. |
| 304 | * careful: unlink can sometimes be synchronous... |
| 305 | */ |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 306 | spin_unlock(&io->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | for (i = 0, found = 0; i < io->entries; i++) { |
| 308 | if (!io->urbs [i] || !io->urbs [i]->dev) |
| 309 | continue; |
| 310 | if (found) { |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 311 | retval = usb_unlink_urb(io->urbs [i]); |
Greg Kroah-Hartman | 3fc3e82 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 312 | if (retval != -EINPROGRESS && |
| 313 | retval != -ENODEV && |
| 314 | retval != -EBUSY) |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 315 | dev_err(&io->dev->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | "%s, unlink --> %d\n", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 317 | __func__, retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | } else if (urb == io->urbs [i]) |
| 319 | found = 1; |
| 320 | } |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 321 | spin_lock(&io->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | } |
| 323 | urb->dev = NULL; |
| 324 | |
| 325 | /* on the last completion, signal usb_sg_wait() */ |
| 326 | io->bytes += urb->actual_length; |
| 327 | io->count--; |
| 328 | if (!io->count) |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 329 | complete(&io->complete); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 331 | spin_unlock(&io->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | } |
| 333 | |
| 334 | |
| 335 | /** |
| 336 | * usb_sg_init - initializes scatterlist-based bulk/interrupt I/O request |
| 337 | * @io: request block being initialized. until usb_sg_wait() returns, |
| 338 | * treat this as a pointer to an opaque block of memory, |
| 339 | * @dev: the usb device that will send or receive the data |
| 340 | * @pipe: endpoint "pipe" used to transfer the data |
| 341 | * @period: polling rate for interrupt endpoints, in frames or |
| 342 | * (for high speed endpoints) microframes; ignored for bulk |
| 343 | * @sg: scatterlist entries |
| 344 | * @nents: how many entries in the scatterlist |
| 345 | * @length: how many bytes to send from the scatterlist, or zero to |
| 346 | * send every byte identified in the list. |
| 347 | * @mem_flags: SLAB_* flags affecting memory allocations in this call |
| 348 | * |
| 349 | * Returns zero for success, else a negative errno value. This initializes a |
| 350 | * scatter/gather request, allocating resources such as I/O mappings and urb |
| 351 | * memory (except maybe memory used by USB controller drivers). |
| 352 | * |
| 353 | * The request must be issued using usb_sg_wait(), which waits for the I/O to |
| 354 | * complete (or to be canceled) and then cleans up all resources allocated by |
| 355 | * usb_sg_init(). |
| 356 | * |
| 357 | * The request may be canceled with usb_sg_cancel(), either before or after |
| 358 | * usb_sg_wait() is called. |
| 359 | */ |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 360 | int usb_sg_init(struct usb_sg_request *io, struct usb_device *dev, |
| 361 | unsigned pipe, unsigned period, struct scatterlist *sg, |
| 362 | int nents, size_t length, gfp_t mem_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | { |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 364 | int i; |
| 365 | int urb_flags; |
| 366 | int dma; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | |
| 368 | if (!io || !dev || !sg |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 369 | || usb_pipecontrol(pipe) |
| 370 | || usb_pipeisoc(pipe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | || nents <= 0) |
| 372 | return -EINVAL; |
| 373 | |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 374 | spin_lock_init(&io->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | io->dev = dev; |
| 376 | io->pipe = pipe; |
| 377 | io->sg = sg; |
| 378 | io->nents = nents; |
| 379 | |
| 380 | /* not all host controllers use DMA (like the mainstream pci ones); |
| 381 | * they can use PIO (sl811) or be software over another transport. |
| 382 | */ |
| 383 | dma = (dev->dev.dma_mask != NULL); |
| 384 | if (dma) |
Alan Stern | 5e60a16 | 2007-07-30 17:07:21 -0400 | [diff] [blame] | 385 | io->entries = usb_buffer_map_sg(dev, usb_pipein(pipe), |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 386 | sg, nents); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | else |
| 388 | io->entries = nents; |
| 389 | |
| 390 | /* initialize all the urbs we'll use */ |
| 391 | if (io->entries <= 0) |
| 392 | return io->entries; |
| 393 | |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 394 | io->urbs = kmalloc(io->entries * sizeof *io->urbs, mem_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | if (!io->urbs) |
| 396 | goto nomem; |
| 397 | |
Yoshihiro Shimoda | e272252 | 2008-04-21 13:48:22 +0900 | [diff] [blame] | 398 | urb_flags = URB_NO_INTERRUPT; |
| 399 | if (dma) |
| 400 | urb_flags |= URB_NO_TRANSFER_DMA_MAP; |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 401 | if (usb_pipein(pipe)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | urb_flags |= URB_SHORT_NOT_OK; |
| 403 | |
Alan Stern | 7c3e28b | 2008-06-16 12:11:39 -0400 | [diff] [blame] | 404 | for_each_sg(sg, sg, io->entries, i) { |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 405 | unsigned len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 407 | io->urbs[i] = usb_alloc_urb(0, mem_flags); |
| 408 | if (!io->urbs[i]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | io->entries = i; |
| 410 | goto nomem; |
| 411 | } |
| 412 | |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 413 | io->urbs[i]->dev = NULL; |
| 414 | io->urbs[i]->pipe = pipe; |
| 415 | io->urbs[i]->interval = period; |
| 416 | io->urbs[i]->transfer_flags = urb_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 418 | io->urbs[i]->complete = sg_complete; |
| 419 | io->urbs[i]->context = io; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | |
Tony Lindgren | 35d07fd | 2007-03-31 18:15:43 -0700 | [diff] [blame] | 421 | /* |
| 422 | * Some systems need to revert to PIO when DMA is temporarily |
| 423 | * unavailable. For their sakes, both transfer_buffer and |
| 424 | * transfer_dma are set when possible. However this can only |
David Brownell | a12b8db | 2007-07-22 15:13:13 -0700 | [diff] [blame] | 425 | * work on systems without: |
| 426 | * |
| 427 | * - HIGHMEM, since DMA buffers located in high memory are |
| 428 | * not directly addressable by the CPU for PIO; |
| 429 | * |
| 430 | * - IOMMU, since dma_map_sg() is allowed to use an IOMMU to |
| 431 | * make virtually discontiguous buffers be "dma-contiguous" |
| 432 | * so that PIO and DMA need diferent numbers of URBs. |
| 433 | * |
| 434 | * So when HIGHMEM or IOMMU are in use, transfer_buffer is NULL |
Tony Lindgren | 35d07fd | 2007-03-31 18:15:43 -0700 | [diff] [blame] | 435 | * to prevent stale pointers and to help spot bugs. |
| 436 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | if (dma) { |
Alan Stern | 7c3e28b | 2008-06-16 12:11:39 -0400 | [diff] [blame] | 438 | io->urbs[i]->transfer_dma = sg_dma_address(sg); |
| 439 | len = sg_dma_len(sg); |
Joerg Roedel | 966396d | 2007-10-24 12:49:48 +0200 | [diff] [blame] | 440 | #if defined(CONFIG_HIGHMEM) || defined(CONFIG_GART_IOMMU) |
Tony Lindgren | 35d07fd | 2007-03-31 18:15:43 -0700 | [diff] [blame] | 441 | io->urbs[i]->transfer_buffer = NULL; |
| 442 | #else |
Alan Stern | 7c3e28b | 2008-06-16 12:11:39 -0400 | [diff] [blame] | 443 | io->urbs[i]->transfer_buffer = sg_virt(sg); |
Tony Lindgren | 35d07fd | 2007-03-31 18:15:43 -0700 | [diff] [blame] | 444 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | } else { |
| 446 | /* hc may use _only_ transfer_buffer */ |
Alan Stern | 7c3e28b | 2008-06-16 12:11:39 -0400 | [diff] [blame] | 447 | io->urbs[i]->transfer_buffer = sg_virt(sg); |
| 448 | len = sg->length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | } |
| 450 | |
| 451 | if (length) { |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 452 | len = min_t(unsigned, len, length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | length -= len; |
| 454 | if (length == 0) |
| 455 | io->entries = i + 1; |
| 456 | } |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 457 | io->urbs[i]->transfer_buffer_length = len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | } |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 459 | io->urbs[--i]->transfer_flags &= ~URB_NO_INTERRUPT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | |
| 461 | /* transaction state */ |
Alan Stern | 580da34 | 2008-08-05 13:05:17 -0400 | [diff] [blame] | 462 | io->count = io->entries; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | io->status = 0; |
| 464 | io->bytes = 0; |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 465 | init_completion(&io->complete); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | return 0; |
| 467 | |
| 468 | nomem: |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 469 | sg_clean(io); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | return -ENOMEM; |
| 471 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 472 | EXPORT_SYMBOL_GPL(usb_sg_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | |
| 474 | /** |
| 475 | * usb_sg_wait - synchronously execute scatter/gather request |
| 476 | * @io: request block handle, as initialized with usb_sg_init(). |
| 477 | * some fields become accessible when this call returns. |
| 478 | * Context: !in_interrupt () |
| 479 | * |
| 480 | * This function blocks until the specified I/O operation completes. It |
| 481 | * leverages the grouping of the related I/O requests to get good transfer |
| 482 | * rates, by queueing the requests. At higher speeds, such queuing can |
| 483 | * significantly improve USB throughput. |
| 484 | * |
| 485 | * There are three kinds of completion for this function. |
| 486 | * (1) success, where io->status is zero. The number of io->bytes |
| 487 | * transferred is as requested. |
| 488 | * (2) error, where io->status is a negative errno value. The number |
| 489 | * of io->bytes transferred before the error is usually less |
| 490 | * than requested, and can be nonzero. |
Steven Cole | 093cf72 | 2005-05-03 19:07:24 -0600 | [diff] [blame] | 491 | * (3) cancellation, a type of error with status -ECONNRESET that |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | * is initiated by usb_sg_cancel(). |
| 493 | * |
| 494 | * When this function returns, all memory allocated through usb_sg_init() or |
| 495 | * this call will have been freed. The request block parameter may still be |
| 496 | * passed to usb_sg_cancel(), or it may be freed. It could also be |
| 497 | * reinitialized and then reused. |
| 498 | * |
| 499 | * Data Transfer Rates: |
| 500 | * |
| 501 | * Bulk transfers are valid for full or high speed endpoints. |
| 502 | * The best full speed data rate is 19 packets of 64 bytes each |
| 503 | * per frame, or 1216 bytes per millisecond. |
| 504 | * The best high speed data rate is 13 packets of 512 bytes each |
| 505 | * per microframe, or 52 KBytes per millisecond. |
| 506 | * |
| 507 | * The reason to use interrupt transfers through this API would most likely |
| 508 | * be to reserve high speed bandwidth, where up to 24 KBytes per millisecond |
| 509 | * could be transferred. That capability is less useful for low or full |
| 510 | * speed interrupt endpoints, which allow at most one packet per millisecond, |
| 511 | * of at most 8 or 64 bytes (respectively). |
| 512 | */ |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 513 | void usb_sg_wait(struct usb_sg_request *io) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | { |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 515 | int i; |
| 516 | int entries = io->entries; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | |
| 518 | /* queue the urbs. */ |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 519 | spin_lock_irq(&io->lock); |
Alan Stern | 8ccef0d | 2007-06-21 16:26:46 -0400 | [diff] [blame] | 520 | i = 0; |
| 521 | while (i < entries && !io->status) { |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 522 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 524 | io->urbs[i]->dev = io->dev; |
| 525 | retval = usb_submit_urb(io->urbs [i], GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | |
| 527 | /* after we submit, let completions or cancelations fire; |
| 528 | * we handshake using io->status. |
| 529 | */ |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 530 | spin_unlock_irq(&io->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | switch (retval) { |
| 532 | /* maybe we retrying will recover */ |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 533 | case -ENXIO: /* hc didn't queue this one */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | case -EAGAIN: |
| 535 | case -ENOMEM: |
| 536 | io->urbs[i]->dev = NULL; |
| 537 | retval = 0; |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 538 | yield(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | break; |
| 540 | |
| 541 | /* no error? continue immediately. |
| 542 | * |
| 543 | * NOTE: to work better with UHCI (4K I/O buffer may |
| 544 | * need 3K of TDs) it may be good to limit how many |
| 545 | * URBs are queued at once; N milliseconds? |
| 546 | */ |
| 547 | case 0: |
Alan Stern | 8ccef0d | 2007-06-21 16:26:46 -0400 | [diff] [blame] | 548 | ++i; |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 549 | cpu_relax(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | break; |
| 551 | |
| 552 | /* fail any uncompleted urbs */ |
| 553 | default: |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 554 | io->urbs[i]->dev = NULL; |
| 555 | io->urbs[i]->status = retval; |
| 556 | dev_dbg(&io->dev->dev, "%s, submit --> %d\n", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 557 | __func__, retval); |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 558 | usb_sg_cancel(io); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | } |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 560 | spin_lock_irq(&io->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | if (retval && (io->status == 0 || io->status == -ECONNRESET)) |
| 562 | io->status = retval; |
| 563 | } |
| 564 | io->count -= entries - i; |
| 565 | if (io->count == 0) |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 566 | complete(&io->complete); |
| 567 | spin_unlock_irq(&io->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | |
| 569 | /* OK, yes, this could be packaged as non-blocking. |
| 570 | * So could the submit loop above ... but it's easier to |
| 571 | * solve neither problem than to solve both! |
| 572 | */ |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 573 | wait_for_completion(&io->complete); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 575 | sg_clean(io); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 577 | EXPORT_SYMBOL_GPL(usb_sg_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | |
| 579 | /** |
| 580 | * usb_sg_cancel - stop scatter/gather i/o issued by usb_sg_wait() |
| 581 | * @io: request block, initialized with usb_sg_init() |
| 582 | * |
| 583 | * This stops a request after it has been started by usb_sg_wait(). |
| 584 | * It can also prevents one initialized by usb_sg_init() from starting, |
| 585 | * so that call just frees resources allocated to the request. |
| 586 | */ |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 587 | void usb_sg_cancel(struct usb_sg_request *io) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | { |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 589 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 591 | spin_lock_irqsave(&io->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | |
| 593 | /* shut everything down, if it didn't already */ |
| 594 | if (!io->status) { |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 595 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | |
| 597 | io->status = -ECONNRESET; |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 598 | spin_unlock(&io->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | for (i = 0; i < io->entries; i++) { |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 600 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | |
| 602 | if (!io->urbs [i]->dev) |
| 603 | continue; |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 604 | retval = usb_unlink_urb(io->urbs [i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | if (retval != -EINPROGRESS && retval != -EBUSY) |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 606 | dev_warn(&io->dev->dev, "%s, unlink --> %d\n", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 607 | __func__, retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | } |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 609 | spin_lock(&io->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | } |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 611 | spin_unlock_irqrestore(&io->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 613 | EXPORT_SYMBOL_GPL(usb_sg_cancel); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | |
| 615 | /*-------------------------------------------------------------------*/ |
| 616 | |
| 617 | /** |
| 618 | * usb_get_descriptor - issues a generic GET_DESCRIPTOR request |
| 619 | * @dev: the device whose descriptor is being retrieved |
| 620 | * @type: the descriptor type (USB_DT_*) |
| 621 | * @index: the number of the descriptor |
| 622 | * @buf: where to put the descriptor |
| 623 | * @size: how big is "buf"? |
| 624 | * Context: !in_interrupt () |
| 625 | * |
| 626 | * Gets a USB descriptor. Convenience functions exist to simplify |
| 627 | * getting some types of descriptors. Use |
| 628 | * usb_get_string() or usb_string() for USB_DT_STRING. |
| 629 | * Device (USB_DT_DEVICE) and configuration descriptors (USB_DT_CONFIG) |
| 630 | * are part of the device structure. |
| 631 | * In addition to a number of USB-standard descriptors, some |
| 632 | * devices also use class-specific or vendor-specific descriptors. |
| 633 | * |
| 634 | * This call is synchronous, and may not be used in an interrupt context. |
| 635 | * |
| 636 | * Returns the number of bytes received on success, or else the status code |
| 637 | * returned by the underlying usb_control_msg() call. |
| 638 | */ |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 639 | int usb_get_descriptor(struct usb_device *dev, unsigned char type, |
| 640 | unsigned char index, void *buf, int size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | { |
| 642 | int i; |
| 643 | int result; |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 644 | |
| 645 | memset(buf, 0, size); /* Make sure we parse really received data */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | |
| 647 | for (i = 0; i < 3; ++i) { |
Alan Stern | c39772d | 2007-08-20 10:45:28 -0400 | [diff] [blame] | 648 | /* retry on length 0 or error; some devices are flakey */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), |
| 650 | USB_REQ_GET_DESCRIPTOR, USB_DIR_IN, |
| 651 | (type << 8) + index, 0, buf, size, |
| 652 | USB_CTRL_GET_TIMEOUT); |
Alan Stern | c39772d | 2007-08-20 10:45:28 -0400 | [diff] [blame] | 653 | if (result <= 0 && result != -ETIMEDOUT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | continue; |
| 655 | if (result > 1 && ((u8 *)buf)[1] != type) { |
Alan Stern | 67f5a4b | 2009-02-20 16:33:08 -0500 | [diff] [blame] | 656 | result = -ENODATA; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | continue; |
| 658 | } |
| 659 | break; |
| 660 | } |
| 661 | return result; |
| 662 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 663 | EXPORT_SYMBOL_GPL(usb_get_descriptor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | |
| 665 | /** |
| 666 | * usb_get_string - gets a string descriptor |
| 667 | * @dev: the device whose string descriptor is being retrieved |
| 668 | * @langid: code for language chosen (from string descriptor zero) |
| 669 | * @index: the number of the descriptor |
| 670 | * @buf: where to put the string |
| 671 | * @size: how big is "buf"? |
| 672 | * Context: !in_interrupt () |
| 673 | * |
| 674 | * Retrieves a string, encoded using UTF-16LE (Unicode, 16 bits per character, |
| 675 | * in little-endian byte order). |
| 676 | * The usb_string() function will often be a convenient way to turn |
| 677 | * these strings into kernel-printable form. |
| 678 | * |
| 679 | * Strings may be referenced in device, configuration, interface, or other |
| 680 | * descriptors, and could also be used in vendor-specific ways. |
| 681 | * |
| 682 | * This call is synchronous, and may not be used in an interrupt context. |
| 683 | * |
| 684 | * Returns the number of bytes received on success, or else the status code |
| 685 | * returned by the underlying usb_control_msg() call. |
| 686 | */ |
Adrian Bunk | e266a12 | 2005-11-08 21:05:43 +0100 | [diff] [blame] | 687 | static int usb_get_string(struct usb_device *dev, unsigned short langid, |
| 688 | unsigned char index, void *buf, int size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | { |
| 690 | int i; |
| 691 | int result; |
| 692 | |
| 693 | for (i = 0; i < 3; ++i) { |
| 694 | /* retry on length 0 or stall; some devices are flakey */ |
| 695 | result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), |
| 696 | USB_REQ_GET_DESCRIPTOR, USB_DIR_IN, |
| 697 | (USB_DT_STRING << 8) + index, langid, buf, size, |
| 698 | USB_CTRL_GET_TIMEOUT); |
Alan Stern | 67f5a4b | 2009-02-20 16:33:08 -0500 | [diff] [blame] | 699 | if (result == 0 || result == -EPIPE) |
| 700 | continue; |
| 701 | if (result > 1 && ((u8 *) buf)[1] != USB_DT_STRING) { |
| 702 | result = -ENODATA; |
| 703 | continue; |
| 704 | } |
| 705 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | } |
| 707 | return result; |
| 708 | } |
| 709 | |
| 710 | static void usb_try_string_workarounds(unsigned char *buf, int *length) |
| 711 | { |
| 712 | int newlength, oldlength = *length; |
| 713 | |
| 714 | for (newlength = 2; newlength + 1 < oldlength; newlength += 2) |
| 715 | if (!isprint(buf[newlength]) || buf[newlength + 1]) |
| 716 | break; |
| 717 | |
| 718 | if (newlength > 2) { |
| 719 | buf[0] = newlength; |
| 720 | *length = newlength; |
| 721 | } |
| 722 | } |
| 723 | |
| 724 | static int usb_string_sub(struct usb_device *dev, unsigned int langid, |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 725 | unsigned int index, unsigned char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | { |
| 727 | int rc; |
| 728 | |
| 729 | /* Try to read the string descriptor by asking for the maximum |
| 730 | * possible number of bytes */ |
Oliver Neukum | 7ceec1f | 2007-01-26 14:26:21 +0100 | [diff] [blame] | 731 | if (dev->quirks & USB_QUIRK_STRING_FETCH_255) |
| 732 | rc = -EIO; |
| 733 | else |
| 734 | rc = usb_get_string(dev, langid, index, buf, 255); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | |
| 736 | /* If that failed try to read the descriptor length, then |
| 737 | * ask for just that many bytes */ |
| 738 | if (rc < 2) { |
| 739 | rc = usb_get_string(dev, langid, index, buf, 2); |
| 740 | if (rc == 2) |
| 741 | rc = usb_get_string(dev, langid, index, buf, buf[0]); |
| 742 | } |
| 743 | |
| 744 | if (rc >= 2) { |
| 745 | if (!buf[0] && !buf[1]) |
| 746 | usb_try_string_workarounds(buf, &rc); |
| 747 | |
| 748 | /* There might be extra junk at the end of the descriptor */ |
| 749 | if (buf[0] < rc) |
| 750 | rc = buf[0]; |
| 751 | |
| 752 | rc = rc - (rc & 1); /* force a multiple of two */ |
| 753 | } |
| 754 | |
| 755 | if (rc < 2) |
| 756 | rc = (rc < 0 ? rc : -EINVAL); |
| 757 | |
| 758 | return rc; |
| 759 | } |
| 760 | |
| 761 | /** |
| 762 | * usb_string - returns ISO 8859-1 version of a string descriptor |
| 763 | * @dev: the device whose string descriptor is being retrieved |
| 764 | * @index: the number of the descriptor |
| 765 | * @buf: where to put the string |
| 766 | * @size: how big is "buf"? |
| 767 | * Context: !in_interrupt () |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 768 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | * This converts the UTF-16LE encoded strings returned by devices, from |
| 770 | * usb_get_string_descriptor(), to null-terminated ISO-8859-1 encoded ones |
| 771 | * that are more usable in most kernel contexts. Note that all characters |
| 772 | * in the chosen descriptor that can't be encoded using ISO-8859-1 |
| 773 | * are converted to the question mark ("?") character, and this function |
| 774 | * chooses strings in the first language supported by the device. |
| 775 | * |
| 776 | * The ASCII (or, redundantly, "US-ASCII") character set is the seven-bit |
| 777 | * subset of ISO 8859-1. ISO-8859-1 is the eight-bit subset of Unicode, |
| 778 | * and is appropriate for use many uses of English and several other |
| 779 | * Western European languages. (But it doesn't include the "Euro" symbol.) |
| 780 | * |
| 781 | * This call is synchronous, and may not be used in an interrupt context. |
| 782 | * |
| 783 | * Returns length of the string (>= 0) or usb_control_msg status (< 0). |
| 784 | */ |
| 785 | int usb_string(struct usb_device *dev, int index, char *buf, size_t size) |
| 786 | { |
| 787 | unsigned char *tbuf; |
| 788 | int err; |
| 789 | unsigned int u, idx; |
| 790 | |
| 791 | if (dev->state == USB_STATE_SUSPENDED) |
| 792 | return -EHOSTUNREACH; |
| 793 | if (size <= 0 || !buf || !index) |
| 794 | return -EINVAL; |
| 795 | buf[0] = 0; |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 796 | tbuf = kmalloc(256, GFP_NOIO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | if (!tbuf) |
| 798 | return -ENOMEM; |
| 799 | |
| 800 | /* get langid for strings if it's not yet known */ |
| 801 | if (!dev->have_langid) { |
| 802 | err = usb_string_sub(dev, 0, 0, tbuf); |
| 803 | if (err < 0) { |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 804 | dev_err(&dev->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | "string descriptor 0 read error: %d\n", |
| 806 | err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | } else if (err < 4) { |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 808 | dev_err(&dev->dev, "string descriptor 0 too short\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | } else { |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 810 | dev->string_langid = tbuf[2] | (tbuf[3] << 8); |
| 811 | /* always use the first langid listed */ |
| 812 | dev_dbg(&dev->dev, "default language 0x%04x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | dev->string_langid); |
| 814 | } |
Daniel Mack | b7af0bb | 2009-03-20 19:58:57 +0100 | [diff] [blame] | 815 | |
| 816 | dev->have_langid = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | } |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 818 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | err = usb_string_sub(dev, dev->string_langid, index, tbuf); |
| 820 | if (err < 0) |
| 821 | goto errout; |
| 822 | |
| 823 | size--; /* leave room for trailing NULL char in output buffer */ |
| 824 | for (idx = 0, u = 2; u < err; u += 2) { |
| 825 | if (idx >= size) |
| 826 | break; |
| 827 | if (tbuf[u+1]) /* high byte */ |
| 828 | buf[idx++] = '?'; /* non ISO-8859-1 character */ |
| 829 | else |
| 830 | buf[idx++] = tbuf[u]; |
| 831 | } |
| 832 | buf[idx] = 0; |
| 833 | err = idx; |
| 834 | |
| 835 | if (tbuf[1] != USB_DT_STRING) |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 836 | dev_dbg(&dev->dev, |
| 837 | "wrong descriptor type %02x for string %d (\"%s\")\n", |
| 838 | tbuf[1], index, buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | |
| 840 | errout: |
| 841 | kfree(tbuf); |
| 842 | return err; |
| 843 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 844 | EXPORT_SYMBOL_GPL(usb_string); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | |
Alan Stern | 4f62efe | 2005-10-24 16:24:14 -0400 | [diff] [blame] | 846 | /** |
| 847 | * usb_cache_string - read a string descriptor and cache it for later use |
| 848 | * @udev: the device whose string descriptor is being read |
| 849 | * @index: the descriptor index |
| 850 | * |
| 851 | * Returns a pointer to a kmalloc'ed buffer containing the descriptor string, |
| 852 | * or NULL if the index is 0 or the string could not be read. |
| 853 | */ |
| 854 | char *usb_cache_string(struct usb_device *udev, int index) |
| 855 | { |
| 856 | char *buf; |
| 857 | char *smallbuf = NULL; |
| 858 | int len; |
| 859 | |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 860 | if (index <= 0) |
| 861 | return NULL; |
| 862 | |
| 863 | buf = kmalloc(256, GFP_KERNEL); |
| 864 | if (buf) { |
| 865 | len = usb_string(udev, index, buf, 256); |
| 866 | if (len > 0) { |
| 867 | smallbuf = kmalloc(++len, GFP_KERNEL); |
| 868 | if (!smallbuf) |
Alan Stern | 4f62efe | 2005-10-24 16:24:14 -0400 | [diff] [blame] | 869 | return buf; |
| 870 | memcpy(smallbuf, buf, len); |
| 871 | } |
| 872 | kfree(buf); |
| 873 | } |
| 874 | return smallbuf; |
| 875 | } |
| 876 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | /* |
| 878 | * usb_get_device_descriptor - (re)reads the device descriptor (usbcore) |
| 879 | * @dev: the device whose device descriptor is being updated |
| 880 | * @size: how much of the descriptor to read |
| 881 | * Context: !in_interrupt () |
| 882 | * |
| 883 | * Updates the copy of the device descriptor stored in the device structure, |
Laurent Pinchart | 6ab16a9 | 2006-11-07 10:16:25 +0100 | [diff] [blame] | 884 | * which dedicates space for this purpose. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | * |
| 886 | * Not exported, only for use by the core. If drivers really want to read |
| 887 | * the device descriptor directly, they can call usb_get_descriptor() with |
| 888 | * type = USB_DT_DEVICE and index = 0. |
| 889 | * |
| 890 | * This call is synchronous, and may not be used in an interrupt context. |
| 891 | * |
| 892 | * Returns the number of bytes received on success, or else the status code |
| 893 | * returned by the underlying usb_control_msg() call. |
| 894 | */ |
| 895 | int usb_get_device_descriptor(struct usb_device *dev, unsigned int size) |
| 896 | { |
| 897 | struct usb_device_descriptor *desc; |
| 898 | int ret; |
| 899 | |
| 900 | if (size > sizeof(*desc)) |
| 901 | return -EINVAL; |
| 902 | desc = kmalloc(sizeof(*desc), GFP_NOIO); |
| 903 | if (!desc) |
| 904 | return -ENOMEM; |
| 905 | |
| 906 | ret = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, size); |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 907 | if (ret >= 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | memcpy(&dev->descriptor, desc, size); |
| 909 | kfree(desc); |
| 910 | return ret; |
| 911 | } |
| 912 | |
| 913 | /** |
| 914 | * usb_get_status - issues a GET_STATUS call |
| 915 | * @dev: the device whose status is being checked |
| 916 | * @type: USB_RECIP_*; for device, interface, or endpoint |
| 917 | * @target: zero (for device), else interface or endpoint number |
| 918 | * @data: pointer to two bytes of bitmap data |
| 919 | * Context: !in_interrupt () |
| 920 | * |
| 921 | * Returns device, interface, or endpoint status. Normally only of |
| 922 | * interest to see if the device is self powered, or has enabled the |
| 923 | * remote wakeup facility; or whether a bulk or interrupt endpoint |
| 924 | * is halted ("stalled"). |
| 925 | * |
| 926 | * Bits in these status bitmaps are set using the SET_FEATURE request, |
| 927 | * and cleared using the CLEAR_FEATURE request. The usb_clear_halt() |
| 928 | * function should be used to clear halt ("stall") status. |
| 929 | * |
| 930 | * This call is synchronous, and may not be used in an interrupt context. |
| 931 | * |
| 932 | * Returns the number of bytes received on success, or else the status code |
| 933 | * returned by the underlying usb_control_msg() call. |
| 934 | */ |
| 935 | int usb_get_status(struct usb_device *dev, int type, int target, void *data) |
| 936 | { |
| 937 | int ret; |
| 938 | u16 *status = kmalloc(sizeof(*status), GFP_KERNEL); |
| 939 | |
| 940 | if (!status) |
| 941 | return -ENOMEM; |
| 942 | |
| 943 | ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), |
| 944 | USB_REQ_GET_STATUS, USB_DIR_IN | type, 0, target, status, |
| 945 | sizeof(*status), USB_CTRL_GET_TIMEOUT); |
| 946 | |
| 947 | *(u16 *)data = *status; |
| 948 | kfree(status); |
| 949 | return ret; |
| 950 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 951 | EXPORT_SYMBOL_GPL(usb_get_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | |
| 953 | /** |
| 954 | * usb_clear_halt - tells device to clear endpoint halt/stall condition |
| 955 | * @dev: device whose endpoint is halted |
| 956 | * @pipe: endpoint "pipe" being cleared |
| 957 | * Context: !in_interrupt () |
| 958 | * |
| 959 | * This is used to clear halt conditions for bulk and interrupt endpoints, |
| 960 | * as reported by URB completion status. Endpoints that are halted are |
| 961 | * sometimes referred to as being "stalled". Such endpoints are unable |
| 962 | * to transmit or receive data until the halt status is cleared. Any URBs |
| 963 | * queued for such an endpoint should normally be unlinked by the driver |
| 964 | * before clearing the halt condition, as described in sections 5.7.5 |
| 965 | * and 5.8.5 of the USB 2.0 spec. |
| 966 | * |
| 967 | * Note that control and isochronous endpoints don't halt, although control |
| 968 | * endpoints report "protocol stall" (for unsupported requests) using the |
| 969 | * same status code used to report a true stall. |
| 970 | * |
| 971 | * This call is synchronous, and may not be used in an interrupt context. |
| 972 | * |
| 973 | * Returns zero on success, or else the status code returned by the |
| 974 | * underlying usb_control_msg() call. |
| 975 | */ |
| 976 | int usb_clear_halt(struct usb_device *dev, int pipe) |
| 977 | { |
| 978 | int result; |
| 979 | int endp = usb_pipeendpoint(pipe); |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 980 | |
| 981 | if (usb_pipein(pipe)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | endp |= USB_DIR_IN; |
| 983 | |
| 984 | /* we don't care if it wasn't halted first. in fact some devices |
| 985 | * (like some ibmcam model 1 units) seem to expect hosts to make |
| 986 | * this request for iso endpoints, which can't halt! |
| 987 | */ |
| 988 | result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
| 989 | USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT, |
| 990 | USB_ENDPOINT_HALT, endp, NULL, 0, |
| 991 | USB_CTRL_SET_TIMEOUT); |
| 992 | |
| 993 | /* don't un-halt or force to DATA0 except on success */ |
| 994 | if (result < 0) |
| 995 | return result; |
| 996 | |
| 997 | /* NOTE: seems like Microsoft and Apple don't bother verifying |
| 998 | * the clear "took", so some devices could lock up if you check... |
| 999 | * such as the Hagiwara FlashGate DUAL. So we won't bother. |
| 1000 | * |
| 1001 | * NOTE: make sure the logic here doesn't diverge much from |
| 1002 | * the copy in usb-storage, for as long as we need two copies. |
| 1003 | */ |
| 1004 | |
| 1005 | /* toggle was reset by the clear */ |
| 1006 | usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), 0); |
| 1007 | |
| 1008 | return 0; |
| 1009 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 1010 | EXPORT_SYMBOL_GPL(usb_clear_halt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 1012 | static int create_intf_ep_devs(struct usb_interface *intf) |
| 1013 | { |
| 1014 | struct usb_device *udev = interface_to_usbdev(intf); |
| 1015 | struct usb_host_interface *alt = intf->cur_altsetting; |
| 1016 | int i; |
| 1017 | |
| 1018 | if (intf->ep_devs_created || intf->unregistering) |
| 1019 | return 0; |
| 1020 | |
| 1021 | for (i = 0; i < alt->desc.bNumEndpoints; ++i) |
| 1022 | (void) usb_create_ep_devs(&intf->dev, &alt->endpoint[i], udev); |
| 1023 | intf->ep_devs_created = 1; |
| 1024 | return 0; |
| 1025 | } |
| 1026 | |
| 1027 | static void remove_intf_ep_devs(struct usb_interface *intf) |
| 1028 | { |
| 1029 | struct usb_host_interface *alt = intf->cur_altsetting; |
| 1030 | int i; |
| 1031 | |
| 1032 | if (!intf->ep_devs_created) |
| 1033 | return; |
| 1034 | |
| 1035 | for (i = 0; i < alt->desc.bNumEndpoints; ++i) |
| 1036 | usb_remove_ep_devs(&alt->endpoint[i]); |
| 1037 | intf->ep_devs_created = 0; |
| 1038 | } |
| 1039 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | /** |
| 1041 | * usb_disable_endpoint -- Disable an endpoint by address |
| 1042 | * @dev: the device whose endpoint is being disabled |
| 1043 | * @epaddr: the endpoint's address. Endpoint number for output, |
| 1044 | * endpoint number + USB_DIR_IN for input |
Alan Stern | ddeac4e7 | 2009-01-15 17:03:33 -0500 | [diff] [blame] | 1045 | * @reset_hardware: flag to erase any endpoint state stored in the |
| 1046 | * controller hardware |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | * |
Alan Stern | ddeac4e7 | 2009-01-15 17:03:33 -0500 | [diff] [blame] | 1048 | * Disables the endpoint for URB submission and nukes all pending URBs. |
| 1049 | * If @reset_hardware is set then also deallocates hcd/hardware state |
| 1050 | * for the endpoint. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | */ |
Alan Stern | ddeac4e7 | 2009-01-15 17:03:33 -0500 | [diff] [blame] | 1052 | void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr, |
| 1053 | bool reset_hardware) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | { |
| 1055 | unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK; |
| 1056 | struct usb_host_endpoint *ep; |
| 1057 | |
| 1058 | if (!dev) |
| 1059 | return; |
| 1060 | |
| 1061 | if (usb_endpoint_out(epaddr)) { |
| 1062 | ep = dev->ep_out[epnum]; |
Alan Stern | ddeac4e7 | 2009-01-15 17:03:33 -0500 | [diff] [blame] | 1063 | if (reset_hardware) |
| 1064 | dev->ep_out[epnum] = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | } else { |
| 1066 | ep = dev->ep_in[epnum]; |
Alan Stern | ddeac4e7 | 2009-01-15 17:03:33 -0500 | [diff] [blame] | 1067 | if (reset_hardware) |
| 1068 | dev->ep_in[epnum] = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | } |
Alan Stern | bdd016b | 2007-07-30 17:05:22 -0400 | [diff] [blame] | 1070 | if (ep) { |
| 1071 | ep->enabled = 0; |
Alan Stern | 95cf82f | 2007-09-10 11:33:05 -0400 | [diff] [blame] | 1072 | usb_hcd_flush_endpoint(dev, ep); |
Alan Stern | ddeac4e7 | 2009-01-15 17:03:33 -0500 | [diff] [blame] | 1073 | if (reset_hardware) |
| 1074 | usb_hcd_disable_endpoint(dev, ep); |
Alan Stern | bdd016b | 2007-07-30 17:05:22 -0400 | [diff] [blame] | 1075 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | } |
| 1077 | |
| 1078 | /** |
| 1079 | * usb_disable_interface -- Disable all endpoints for an interface |
| 1080 | * @dev: the device whose interface is being disabled |
| 1081 | * @intf: pointer to the interface descriptor |
Alan Stern | ddeac4e7 | 2009-01-15 17:03:33 -0500 | [diff] [blame] | 1082 | * @reset_hardware: flag to erase any endpoint state stored in the |
| 1083 | * controller hardware |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | * |
| 1085 | * Disables all the endpoints for the interface's current altsetting. |
| 1086 | */ |
Alan Stern | ddeac4e7 | 2009-01-15 17:03:33 -0500 | [diff] [blame] | 1087 | void usb_disable_interface(struct usb_device *dev, struct usb_interface *intf, |
| 1088 | bool reset_hardware) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | { |
| 1090 | struct usb_host_interface *alt = intf->cur_altsetting; |
| 1091 | int i; |
| 1092 | |
| 1093 | for (i = 0; i < alt->desc.bNumEndpoints; ++i) { |
| 1094 | usb_disable_endpoint(dev, |
Alan Stern | ddeac4e7 | 2009-01-15 17:03:33 -0500 | [diff] [blame] | 1095 | alt->endpoint[i].desc.bEndpointAddress, |
| 1096 | reset_hardware); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | } |
| 1098 | } |
| 1099 | |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 1100 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | * usb_disable_device - Disable all the endpoints for a USB device |
| 1102 | * @dev: the device whose endpoints are being disabled |
| 1103 | * @skip_ep0: 0 to disable endpoint 0, 1 to skip it. |
| 1104 | * |
| 1105 | * Disables all the device's endpoints, potentially including endpoint 0. |
| 1106 | * Deallocates hcd/hardware state for the endpoints (nuking all or most |
| 1107 | * pending urbs) and usbcore state for the interfaces, so that usbcore |
| 1108 | * must usb_set_configuration() before any interfaces could be used. |
| 1109 | */ |
| 1110 | void usb_disable_device(struct usb_device *dev, int skip_ep0) |
| 1111 | { |
| 1112 | int i; |
| 1113 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1114 | dev_dbg(&dev->dev, "%s nuking %s URBs\n", __func__, |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 1115 | skip_ep0 ? "non-ep0" : "all"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | for (i = skip_ep0; i < 16; ++i) { |
Alan Stern | ddeac4e7 | 2009-01-15 17:03:33 -0500 | [diff] [blame] | 1117 | usb_disable_endpoint(dev, i, true); |
| 1118 | usb_disable_endpoint(dev, i + USB_DIR_IN, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | } |
| 1120 | dev->toggle[0] = dev->toggle[1] = 0; |
| 1121 | |
| 1122 | /* getting rid of interfaces will disconnect |
| 1123 | * any drivers bound to them (a key side effect) |
| 1124 | */ |
| 1125 | if (dev->actconfig) { |
| 1126 | for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) { |
| 1127 | struct usb_interface *interface; |
| 1128 | |
Alan Stern | 86d3074 | 2005-07-29 12:17:16 -0700 | [diff] [blame] | 1129 | /* remove this interface if it has been registered */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | interface = dev->actconfig->interface[i]; |
Daniel Ritz | d305ef5 | 2005-09-22 00:47:24 -0700 | [diff] [blame] | 1131 | if (!device_is_registered(&interface->dev)) |
Alan Stern | 86d3074 | 2005-07-29 12:17:16 -0700 | [diff] [blame] | 1132 | continue; |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 1133 | dev_dbg(&dev->dev, "unregistering interface %s\n", |
Kay Sievers | 7071a3c | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 1134 | dev_name(&interface->dev)); |
Alan Stern | 352d026 | 2008-10-29 15:16:58 -0400 | [diff] [blame] | 1135 | interface->unregistering = 1; |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 1136 | remove_intf_ep_devs(interface); |
Alan Stern | 1a21175 | 2008-07-30 11:31:50 -0400 | [diff] [blame] | 1137 | device_del(&interface->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | } |
| 1139 | |
| 1140 | /* Now that the interfaces are unbound, nobody should |
| 1141 | * try to access them. |
| 1142 | */ |
| 1143 | for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) { |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 1144 | put_device(&dev->actconfig->interface[i]->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | dev->actconfig->interface[i] = NULL; |
| 1146 | } |
| 1147 | dev->actconfig = NULL; |
| 1148 | if (dev->state == USB_STATE_CONFIGURED) |
| 1149 | usb_set_device_state(dev, USB_STATE_ADDRESS); |
| 1150 | } |
| 1151 | } |
| 1152 | |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 1153 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | * usb_enable_endpoint - Enable an endpoint for USB communications |
| 1155 | * @dev: the device whose interface is being enabled |
| 1156 | * @ep: the endpoint |
Alan Stern | 2caf7fc | 2008-12-31 11:31:33 -0500 | [diff] [blame] | 1157 | * @reset_toggle: flag to set the endpoint's toggle back to 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | * |
Alan Stern | 2caf7fc | 2008-12-31 11:31:33 -0500 | [diff] [blame] | 1159 | * Resets the endpoint toggle if asked, and sets dev->ep_{in,out} pointers. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | * For control endpoints, both the input and output sides are handled. |
| 1161 | */ |
Alan Stern | 2caf7fc | 2008-12-31 11:31:33 -0500 | [diff] [blame] | 1162 | void usb_enable_endpoint(struct usb_device *dev, struct usb_host_endpoint *ep, |
| 1163 | bool reset_toggle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | { |
Alan Stern | bdd016b | 2007-07-30 17:05:22 -0400 | [diff] [blame] | 1165 | int epnum = usb_endpoint_num(&ep->desc); |
| 1166 | int is_out = usb_endpoint_dir_out(&ep->desc); |
| 1167 | int is_control = usb_endpoint_xfer_control(&ep->desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | |
Alan Stern | bdd016b | 2007-07-30 17:05:22 -0400 | [diff] [blame] | 1169 | if (is_out || is_control) { |
Alan Stern | 2caf7fc | 2008-12-31 11:31:33 -0500 | [diff] [blame] | 1170 | if (reset_toggle) |
| 1171 | usb_settoggle(dev, epnum, 1, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | dev->ep_out[epnum] = ep; |
| 1173 | } |
Alan Stern | bdd016b | 2007-07-30 17:05:22 -0400 | [diff] [blame] | 1174 | if (!is_out || is_control) { |
Alan Stern | 2caf7fc | 2008-12-31 11:31:33 -0500 | [diff] [blame] | 1175 | if (reset_toggle) |
| 1176 | usb_settoggle(dev, epnum, 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | dev->ep_in[epnum] = ep; |
| 1178 | } |
Alan Stern | bdd016b | 2007-07-30 17:05:22 -0400 | [diff] [blame] | 1179 | ep->enabled = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | } |
| 1181 | |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 1182 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 | * usb_enable_interface - Enable all the endpoints for an interface |
| 1184 | * @dev: the device whose interface is being enabled |
| 1185 | * @intf: pointer to the interface descriptor |
Alan Stern | 2caf7fc | 2008-12-31 11:31:33 -0500 | [diff] [blame] | 1186 | * @reset_toggles: flag to set the endpoints' toggles back to 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | * |
| 1188 | * Enables all the endpoints for the interface's current altsetting. |
| 1189 | */ |
Alan Stern | 2caf7fc | 2008-12-31 11:31:33 -0500 | [diff] [blame] | 1190 | void usb_enable_interface(struct usb_device *dev, |
| 1191 | struct usb_interface *intf, bool reset_toggles) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | { |
| 1193 | struct usb_host_interface *alt = intf->cur_altsetting; |
| 1194 | int i; |
| 1195 | |
| 1196 | for (i = 0; i < alt->desc.bNumEndpoints; ++i) |
Alan Stern | 2caf7fc | 2008-12-31 11:31:33 -0500 | [diff] [blame] | 1197 | usb_enable_endpoint(dev, &alt->endpoint[i], reset_toggles); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | } |
| 1199 | |
| 1200 | /** |
| 1201 | * usb_set_interface - Makes a particular alternate setting be current |
| 1202 | * @dev: the device whose interface is being updated |
| 1203 | * @interface: the interface being updated |
| 1204 | * @alternate: the setting being chosen. |
| 1205 | * Context: !in_interrupt () |
| 1206 | * |
| 1207 | * This is used to enable data transfers on interfaces that may not |
| 1208 | * be enabled by default. Not all devices support such configurability. |
| 1209 | * Only the driver bound to an interface may change its setting. |
| 1210 | * |
| 1211 | * Within any given configuration, each interface may have several |
| 1212 | * alternative settings. These are often used to control levels of |
| 1213 | * bandwidth consumption. For example, the default setting for a high |
| 1214 | * speed interrupt endpoint may not send more than 64 bytes per microframe, |
| 1215 | * while interrupt transfers of up to 3KBytes per microframe are legal. |
| 1216 | * Also, isochronous endpoints may never be part of an |
| 1217 | * interface's default setting. To access such bandwidth, alternate |
| 1218 | * interface settings must be made current. |
| 1219 | * |
| 1220 | * Note that in the Linux USB subsystem, bandwidth associated with |
| 1221 | * an endpoint in a given alternate setting is not reserved until an URB |
| 1222 | * is submitted that needs that bandwidth. Some other operating systems |
| 1223 | * allocate bandwidth early, when a configuration is chosen. |
| 1224 | * |
| 1225 | * This call is synchronous, and may not be used in an interrupt context. |
| 1226 | * Also, drivers must not change altsettings while urbs are scheduled for |
| 1227 | * endpoints in that interface; all such urbs must first be completed |
| 1228 | * (perhaps forced by unlinking). |
| 1229 | * |
| 1230 | * Returns zero on success, or else the status code returned by the |
| 1231 | * underlying usb_control_msg() call. |
| 1232 | */ |
| 1233 | int usb_set_interface(struct usb_device *dev, int interface, int alternate) |
| 1234 | { |
| 1235 | struct usb_interface *iface; |
| 1236 | struct usb_host_interface *alt; |
| 1237 | int ret; |
| 1238 | int manual = 0; |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 1239 | unsigned int epaddr; |
| 1240 | unsigned int pipe; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | |
| 1242 | if (dev->state == USB_STATE_SUSPENDED) |
| 1243 | return -EHOSTUNREACH; |
| 1244 | |
| 1245 | iface = usb_ifnum_to_if(dev, interface); |
| 1246 | if (!iface) { |
| 1247 | dev_dbg(&dev->dev, "selecting invalid interface %d\n", |
| 1248 | interface); |
| 1249 | return -EINVAL; |
| 1250 | } |
| 1251 | |
| 1252 | alt = usb_altnum_to_altsetting(iface, alternate); |
| 1253 | if (!alt) { |
Greg Kroah-Hartman | 3b6004f | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 1254 | dev_warn(&dev->dev, "selecting invalid altsetting %d", |
| 1255 | alternate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | return -EINVAL; |
| 1257 | } |
| 1258 | |
Alan Stern | 392e1d9 | 2008-03-11 10:20:12 -0400 | [diff] [blame] | 1259 | if (dev->quirks & USB_QUIRK_NO_SET_INTF) |
| 1260 | ret = -EPIPE; |
| 1261 | else |
| 1262 | ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE, |
| 1264 | alternate, interface, NULL, 0, 5000); |
| 1265 | |
| 1266 | /* 9.4.10 says devices don't need this and are free to STALL the |
| 1267 | * request if the interface only has one alternate setting. |
| 1268 | */ |
| 1269 | if (ret == -EPIPE && iface->num_altsetting == 1) { |
| 1270 | dev_dbg(&dev->dev, |
| 1271 | "manual set_interface for iface %d, alt %d\n", |
| 1272 | interface, alternate); |
| 1273 | manual = 1; |
| 1274 | } else if (ret < 0) |
| 1275 | return ret; |
| 1276 | |
| 1277 | /* FIXME drivers shouldn't need to replicate/bugfix the logic here |
| 1278 | * when they implement async or easily-killable versions of this or |
| 1279 | * other "should-be-internal" functions (like clear_halt). |
| 1280 | * should hcd+usbcore postprocess control requests? |
| 1281 | */ |
| 1282 | |
| 1283 | /* prevent submissions using previous endpoint settings */ |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 1284 | if (iface->cur_altsetting != alt) { |
| 1285 | remove_intf_ep_devs(iface); |
Alan Stern | 0e6c8e8 | 2005-10-24 15:33:03 -0400 | [diff] [blame] | 1286 | usb_remove_sysfs_intf_files(iface); |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 1287 | } |
Alan Stern | ddeac4e7 | 2009-01-15 17:03:33 -0500 | [diff] [blame] | 1288 | usb_disable_interface(dev, iface, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | iface->cur_altsetting = alt; |
| 1291 | |
| 1292 | /* If the interface only has one altsetting and the device didn't |
David Brownell | a81e7ec | 2005-04-18 17:39:25 -0700 | [diff] [blame] | 1293 | * accept the request, we attempt to carry out the equivalent action |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 | * by manually clearing the HALT feature for each endpoint in the |
| 1295 | * new altsetting. |
| 1296 | */ |
| 1297 | if (manual) { |
| 1298 | int i; |
| 1299 | |
| 1300 | for (i = 0; i < alt->desc.bNumEndpoints; i++) { |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 1301 | epaddr = alt->endpoint[i].desc.bEndpointAddress; |
| 1302 | pipe = __create_pipe(dev, |
| 1303 | USB_ENDPOINT_NUMBER_MASK & epaddr) | |
| 1304 | (usb_endpoint_out(epaddr) ? |
| 1305 | USB_DIR_OUT : USB_DIR_IN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | |
| 1307 | usb_clear_halt(dev, pipe); |
| 1308 | } |
| 1309 | } |
| 1310 | |
| 1311 | /* 9.1.1.5: reset toggles for all endpoints in the new altsetting |
| 1312 | * |
| 1313 | * Note: |
| 1314 | * Despite EP0 is always present in all interfaces/AS, the list of |
| 1315 | * endpoints from the descriptor does not contain EP0. Due to its |
| 1316 | * omnipresence one might expect EP0 being considered "affected" by |
| 1317 | * any SetInterface request and hence assume toggles need to be reset. |
| 1318 | * However, EP0 toggles are re-synced for every individual transfer |
| 1319 | * during the SETUP stage - hence EP0 toggles are "don't care" here. |
| 1320 | * (Likewise, EP0 never "halts" on well designed devices.) |
| 1321 | */ |
Alan Stern | 2caf7fc | 2008-12-31 11:31:33 -0500 | [diff] [blame] | 1322 | usb_enable_interface(dev, iface, true); |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 1323 | if (device_is_registered(&iface->dev)) { |
Alan Stern | 0e6c8e8 | 2005-10-24 15:33:03 -0400 | [diff] [blame] | 1324 | usb_create_sysfs_intf_files(iface); |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 1325 | create_intf_ep_devs(iface); |
| 1326 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1327 | return 0; |
| 1328 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 1329 | EXPORT_SYMBOL_GPL(usb_set_interface); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 | |
| 1331 | /** |
| 1332 | * usb_reset_configuration - lightweight device reset |
| 1333 | * @dev: the device whose configuration is being reset |
| 1334 | * |
| 1335 | * This issues a standard SET_CONFIGURATION request to the device using |
| 1336 | * the current configuration. The effect is to reset most USB-related |
| 1337 | * state in the device, including interface altsettings (reset to zero), |
| 1338 | * endpoint halts (cleared), and data toggle (only for bulk and interrupt |
| 1339 | * endpoints). Other usbcore state is unchanged, including bindings of |
| 1340 | * usb device drivers to interfaces. |
| 1341 | * |
| 1342 | * Because this affects multiple interfaces, avoid using this with composite |
| 1343 | * (multi-interface) devices. Instead, the driver for each interface may |
David Brownell | a81e7ec | 2005-04-18 17:39:25 -0700 | [diff] [blame] | 1344 | * use usb_set_interface() on the interfaces it claims. Be careful though; |
| 1345 | * some devices don't support the SET_INTERFACE request, and others won't |
| 1346 | * reset all the interface state (notably data toggles). Resetting the whole |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1347 | * configuration would affect other drivers' interfaces. |
| 1348 | * |
| 1349 | * The caller must own the device lock. |
| 1350 | * |
| 1351 | * Returns zero on success, else a negative error code. |
| 1352 | */ |
| 1353 | int usb_reset_configuration(struct usb_device *dev) |
| 1354 | { |
| 1355 | int i, retval; |
| 1356 | struct usb_host_config *config; |
| 1357 | |
| 1358 | if (dev->state == USB_STATE_SUSPENDED) |
| 1359 | return -EHOSTUNREACH; |
| 1360 | |
| 1361 | /* caller must have locked the device and must own |
| 1362 | * the usb bus readlock (so driver bindings are stable); |
| 1363 | * calls during probe() are fine |
| 1364 | */ |
| 1365 | |
| 1366 | for (i = 1; i < 16; ++i) { |
Alan Stern | ddeac4e7 | 2009-01-15 17:03:33 -0500 | [diff] [blame] | 1367 | usb_disable_endpoint(dev, i, true); |
| 1368 | usb_disable_endpoint(dev, i + USB_DIR_IN, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | } |
| 1370 | |
| 1371 | config = dev->actconfig; |
| 1372 | retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
| 1373 | USB_REQ_SET_CONFIGURATION, 0, |
| 1374 | config->desc.bConfigurationValue, 0, |
| 1375 | NULL, 0, USB_CTRL_SET_TIMEOUT); |
Alan Stern | 0e6c8e8 | 2005-10-24 15:33:03 -0400 | [diff] [blame] | 1376 | if (retval < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | |
| 1379 | dev->toggle[0] = dev->toggle[1] = 0; |
| 1380 | |
| 1381 | /* re-init hc/hcd interface/endpoint state */ |
| 1382 | for (i = 0; i < config->desc.bNumInterfaces; i++) { |
| 1383 | struct usb_interface *intf = config->interface[i]; |
| 1384 | struct usb_host_interface *alt; |
| 1385 | |
| 1386 | alt = usb_altnum_to_altsetting(intf, 0); |
| 1387 | |
| 1388 | /* No altsetting 0? We'll assume the first altsetting. |
| 1389 | * We could use a GetInterface call, but if a device is |
| 1390 | * so non-compliant that it doesn't have altsetting 0 |
| 1391 | * then I wouldn't trust its reply anyway. |
| 1392 | */ |
| 1393 | if (!alt) |
| 1394 | alt = &intf->altsetting[0]; |
| 1395 | |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 1396 | if (alt != intf->cur_altsetting) { |
| 1397 | remove_intf_ep_devs(intf); |
| 1398 | usb_remove_sysfs_intf_files(intf); |
| 1399 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | intf->cur_altsetting = alt; |
Alan Stern | 2caf7fc | 2008-12-31 11:31:33 -0500 | [diff] [blame] | 1401 | usb_enable_interface(dev, intf, true); |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 1402 | if (device_is_registered(&intf->dev)) { |
Alan Stern | 0e6c8e8 | 2005-10-24 15:33:03 -0400 | [diff] [blame] | 1403 | usb_create_sysfs_intf_files(intf); |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 1404 | create_intf_ep_devs(intf); |
| 1405 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | } |
| 1407 | return 0; |
| 1408 | } |
Greg Kroah-Hartman | 782e70c | 2008-01-25 11:12:21 -0600 | [diff] [blame] | 1409 | EXPORT_SYMBOL_GPL(usb_reset_configuration); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | |
Greg Kroah-Hartman | b0e396e | 2007-08-02 22:44:27 -0600 | [diff] [blame] | 1411 | static void usb_release_interface(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | { |
| 1413 | struct usb_interface *intf = to_usb_interface(dev); |
| 1414 | struct usb_interface_cache *intfc = |
| 1415 | altsetting_to_usb_interface_cache(intf->altsetting); |
| 1416 | |
| 1417 | kref_put(&intfc->ref, usb_release_interface_cache); |
| 1418 | kfree(intf); |
| 1419 | } |
| 1420 | |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 1421 | #ifdef CONFIG_HOTPLUG |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 1422 | static int usb_if_uevent(struct device *dev, struct kobj_uevent_env *env) |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 1423 | { |
| 1424 | struct usb_device *usb_dev; |
| 1425 | struct usb_interface *intf; |
| 1426 | struct usb_host_interface *alt; |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 1427 | |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 1428 | intf = to_usb_interface(dev); |
| 1429 | usb_dev = interface_to_usbdev(intf); |
| 1430 | alt = intf->cur_altsetting; |
| 1431 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 1432 | if (add_uevent_var(env, "INTERFACE=%d/%d/%d", |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 1433 | alt->desc.bInterfaceClass, |
| 1434 | alt->desc.bInterfaceSubClass, |
| 1435 | alt->desc.bInterfaceProtocol)) |
| 1436 | return -ENOMEM; |
| 1437 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 1438 | if (add_uevent_var(env, |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 1439 | "MODALIAS=usb:" |
| 1440 | "v%04Xp%04Xd%04Xdc%02Xdsc%02Xdp%02Xic%02Xisc%02Xip%02X", |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 1441 | le16_to_cpu(usb_dev->descriptor.idVendor), |
| 1442 | le16_to_cpu(usb_dev->descriptor.idProduct), |
| 1443 | le16_to_cpu(usb_dev->descriptor.bcdDevice), |
| 1444 | usb_dev->descriptor.bDeviceClass, |
| 1445 | usb_dev->descriptor.bDeviceSubClass, |
| 1446 | usb_dev->descriptor.bDeviceProtocol, |
| 1447 | alt->desc.bInterfaceClass, |
| 1448 | alt->desc.bInterfaceSubClass, |
| 1449 | alt->desc.bInterfaceProtocol)) |
| 1450 | return -ENOMEM; |
| 1451 | |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 1452 | return 0; |
| 1453 | } |
| 1454 | |
| 1455 | #else |
| 1456 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 1457 | static int usb_if_uevent(struct device *dev, struct kobj_uevent_env *env) |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 1458 | { |
| 1459 | return -ENODEV; |
| 1460 | } |
| 1461 | #endif /* CONFIG_HOTPLUG */ |
| 1462 | |
| 1463 | struct device_type usb_if_device_type = { |
| 1464 | .name = "usb_interface", |
| 1465 | .release = usb_release_interface, |
| 1466 | .uevent = usb_if_uevent, |
| 1467 | }; |
| 1468 | |
Craig W. Nadler | 165fe97 | 2007-06-15 23:14:35 -0400 | [diff] [blame] | 1469 | static struct usb_interface_assoc_descriptor *find_iad(struct usb_device *dev, |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 1470 | struct usb_host_config *config, |
| 1471 | u8 inum) |
Craig W. Nadler | 165fe97 | 2007-06-15 23:14:35 -0400 | [diff] [blame] | 1472 | { |
| 1473 | struct usb_interface_assoc_descriptor *retval = NULL; |
| 1474 | struct usb_interface_assoc_descriptor *intf_assoc; |
| 1475 | int first_intf; |
| 1476 | int last_intf; |
| 1477 | int i; |
| 1478 | |
| 1479 | for (i = 0; (i < USB_MAXIADS && config->intf_assoc[i]); i++) { |
| 1480 | intf_assoc = config->intf_assoc[i]; |
| 1481 | if (intf_assoc->bInterfaceCount == 0) |
| 1482 | continue; |
| 1483 | |
| 1484 | first_intf = intf_assoc->bFirstInterface; |
| 1485 | last_intf = first_intf + (intf_assoc->bInterfaceCount - 1); |
| 1486 | if (inum >= first_intf && inum <= last_intf) { |
| 1487 | if (!retval) |
| 1488 | retval = intf_assoc; |
| 1489 | else |
| 1490 | dev_err(&dev->dev, "Interface #%d referenced" |
| 1491 | " by multiple IADs\n", inum); |
| 1492 | } |
| 1493 | } |
| 1494 | |
| 1495 | return retval; |
| 1496 | } |
| 1497 | |
Inaky Perez-Gonzalez | dc023dc | 2008-11-13 10:31:35 -0800 | [diff] [blame] | 1498 | |
| 1499 | /* |
| 1500 | * Internal function to queue a device reset |
| 1501 | * |
| 1502 | * This is initialized into the workstruct in 'struct |
| 1503 | * usb_device->reset_ws' that is launched by |
| 1504 | * message.c:usb_set_configuration() when initializing each 'struct |
| 1505 | * usb_interface'. |
| 1506 | * |
| 1507 | * It is safe to get the USB device without reference counts because |
| 1508 | * the life cycle of @iface is bound to the life cycle of @udev. Then, |
| 1509 | * this function will be ran only if @iface is alive (and before |
| 1510 | * freeing it any scheduled instances of it will have been cancelled). |
| 1511 | * |
| 1512 | * We need to set a flag (usb_dev->reset_running) because when we call |
| 1513 | * the reset, the interfaces might be unbound. The current interface |
| 1514 | * cannot try to remove the queued work as it would cause a deadlock |
| 1515 | * (you cannot remove your work from within your executing |
| 1516 | * workqueue). This flag lets it know, so that |
| 1517 | * usb_cancel_queued_reset() doesn't try to do it. |
| 1518 | * |
| 1519 | * See usb_queue_reset_device() for more details |
| 1520 | */ |
| 1521 | void __usb_queue_reset_device(struct work_struct *ws) |
| 1522 | { |
| 1523 | int rc; |
| 1524 | struct usb_interface *iface = |
| 1525 | container_of(ws, struct usb_interface, reset_ws); |
| 1526 | struct usb_device *udev = interface_to_usbdev(iface); |
| 1527 | |
| 1528 | rc = usb_lock_device_for_reset(udev, iface); |
| 1529 | if (rc >= 0) { |
| 1530 | iface->reset_running = 1; |
| 1531 | usb_reset_device(udev); |
| 1532 | iface->reset_running = 0; |
| 1533 | usb_unlock_device(udev); |
| 1534 | } |
| 1535 | } |
| 1536 | |
| 1537 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | /* |
| 1539 | * usb_set_configuration - Makes a particular device setting be current |
| 1540 | * @dev: the device whose configuration is being updated |
| 1541 | * @configuration: the configuration being chosen. |
| 1542 | * Context: !in_interrupt(), caller owns the device lock |
| 1543 | * |
| 1544 | * This is used to enable non-default device modes. Not all devices |
| 1545 | * use this kind of configurability; many devices only have one |
| 1546 | * configuration. |
| 1547 | * |
Alan Stern | 3f141e2 | 2007-02-08 16:40:43 -0500 | [diff] [blame] | 1548 | * @configuration is the value of the configuration to be installed. |
| 1549 | * According to the USB spec (e.g. section 9.1.1.5), configuration values |
| 1550 | * must be non-zero; a value of zero indicates that the device in |
| 1551 | * unconfigured. However some devices erroneously use 0 as one of their |
| 1552 | * configuration values. To help manage such devices, this routine will |
| 1553 | * accept @configuration = -1 as indicating the device should be put in |
| 1554 | * an unconfigured state. |
| 1555 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1556 | * USB device configurations may affect Linux interoperability, |
| 1557 | * power consumption and the functionality available. For example, |
| 1558 | * the default configuration is limited to using 100mA of bus power, |
| 1559 | * so that when certain device functionality requires more power, |
| 1560 | * and the device is bus powered, that functionality should be in some |
| 1561 | * non-default device configuration. Other device modes may also be |
| 1562 | * reflected as configuration options, such as whether two ISDN |
| 1563 | * channels are available independently; and choosing between open |
| 1564 | * standard device protocols (like CDC) or proprietary ones. |
| 1565 | * |
Inaky Perez-Gonzalez | 16bbab2 | 2007-07-31 20:34:01 -0700 | [diff] [blame] | 1566 | * Note that a non-authorized device (dev->authorized == 0) will only |
| 1567 | * be put in unconfigured mode. |
| 1568 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1569 | * Note that USB has an additional level of device configurability, |
| 1570 | * associated with interfaces. That configurability is accessed using |
| 1571 | * usb_set_interface(). |
| 1572 | * |
| 1573 | * This call is synchronous. The calling context must be able to sleep, |
| 1574 | * must own the device lock, and must not hold the driver model's USB |
Ming Lei | 6d243e5 | 2008-06-17 23:24:08 +0800 | [diff] [blame] | 1575 | * bus mutex; usb interface driver probe() methods cannot use this routine. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1576 | * |
| 1577 | * Returns zero on success, or else the status code returned by the |
Steven Cole | 093cf72 | 2005-05-03 19:07:24 -0600 | [diff] [blame] | 1578 | * underlying call that failed. On successful completion, each interface |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1579 | * in the original device configuration has been destroyed, and each one |
| 1580 | * in the new configuration has been probed by all relevant usb device |
| 1581 | * drivers currently known to the kernel. |
| 1582 | */ |
| 1583 | int usb_set_configuration(struct usb_device *dev, int configuration) |
| 1584 | { |
| 1585 | int i, ret; |
| 1586 | struct usb_host_config *cp = NULL; |
| 1587 | struct usb_interface **new_interfaces = NULL; |
| 1588 | int n, nintf; |
| 1589 | |
Inaky Perez-Gonzalez | 16bbab2 | 2007-07-31 20:34:01 -0700 | [diff] [blame] | 1590 | if (dev->authorized == 0 || configuration == -1) |
Alan Stern | 3f141e2 | 2007-02-08 16:40:43 -0500 | [diff] [blame] | 1591 | configuration = 0; |
| 1592 | else { |
| 1593 | for (i = 0; i < dev->descriptor.bNumConfigurations; i++) { |
| 1594 | if (dev->config[i].desc.bConfigurationValue == |
| 1595 | configuration) { |
| 1596 | cp = &dev->config[i]; |
| 1597 | break; |
| 1598 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1599 | } |
| 1600 | } |
| 1601 | if ((!cp && configuration != 0)) |
| 1602 | return -EINVAL; |
| 1603 | |
| 1604 | /* The USB spec says configuration 0 means unconfigured. |
| 1605 | * But if a device includes a configuration numbered 0, |
| 1606 | * we will accept it as a correctly configured state. |
Alan Stern | 3f141e2 | 2007-02-08 16:40:43 -0500 | [diff] [blame] | 1607 | * Use -1 if you really want to unconfigure the device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1608 | */ |
| 1609 | if (cp && configuration == 0) |
| 1610 | dev_warn(&dev->dev, "config 0 descriptor??\n"); |
| 1611 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1612 | /* Allocate memory for new interfaces before doing anything else, |
| 1613 | * so that if we run out then nothing will have changed. */ |
| 1614 | n = nintf = 0; |
| 1615 | if (cp) { |
| 1616 | nintf = cp->desc.bNumInterfaces; |
| 1617 | new_interfaces = kmalloc(nintf * sizeof(*new_interfaces), |
| 1618 | GFP_KERNEL); |
| 1619 | if (!new_interfaces) { |
Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 1620 | dev_err(&dev->dev, "Out of memory\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1621 | return -ENOMEM; |
| 1622 | } |
| 1623 | |
| 1624 | for (; n < nintf; ++n) { |
Alan Stern | 0a1ef3b | 2005-10-24 15:38:24 -0400 | [diff] [blame] | 1625 | new_interfaces[n] = kzalloc( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | sizeof(struct usb_interface), |
| 1627 | GFP_KERNEL); |
| 1628 | if (!new_interfaces[n]) { |
Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 1629 | dev_err(&dev->dev, "Out of memory\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1630 | ret = -ENOMEM; |
| 1631 | free_interfaces: |
| 1632 | while (--n >= 0) |
| 1633 | kfree(new_interfaces[n]); |
| 1634 | kfree(new_interfaces); |
| 1635 | return ret; |
| 1636 | } |
| 1637 | } |
Alan Stern | 6ad0712 | 2006-06-01 13:59:16 -0400 | [diff] [blame] | 1638 | |
| 1639 | i = dev->bus_mA - cp->desc.bMaxPower * 2; |
| 1640 | if (i < 0) |
| 1641 | dev_warn(&dev->dev, "new config #%d exceeds power " |
| 1642 | "limit by %dmA\n", |
| 1643 | configuration, -i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | } |
| 1645 | |
Alan Stern | 01d883d | 2006-08-30 15:47:18 -0400 | [diff] [blame] | 1646 | /* Wake up the device so we can send it the Set-Config request */ |
Alan Stern | 94fcda1 | 2006-11-20 11:38:46 -0500 | [diff] [blame] | 1647 | ret = usb_autoresume_device(dev); |
Alan Stern | 01d883d | 2006-08-30 15:47:18 -0400 | [diff] [blame] | 1648 | if (ret) |
| 1649 | goto free_interfaces; |
| 1650 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | /* if it's already configured, clear out old state first. |
| 1652 | * getting rid of old interfaces means unbinding their drivers. |
| 1653 | */ |
| 1654 | if (dev->state != USB_STATE_ADDRESS) |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 1655 | usb_disable_device(dev, 1); /* Skip ep0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | |
Alan Stern | df71896 | 2008-12-19 10:27:56 -0500 | [diff] [blame] | 1657 | /* Get rid of pending async Set-Config requests for this device */ |
| 1658 | cancel_async_set_config(dev); |
| 1659 | |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 1660 | ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
| 1661 | USB_REQ_SET_CONFIGURATION, 0, configuration, 0, |
| 1662 | NULL, 0, USB_CTRL_SET_TIMEOUT); |
| 1663 | if (ret < 0) { |
Alan Stern | 6ad0712 | 2006-06-01 13:59:16 -0400 | [diff] [blame] | 1664 | /* All the old state is gone, so what else can we do? |
| 1665 | * The device is probably useless now anyway. |
| 1666 | */ |
| 1667 | cp = NULL; |
| 1668 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | |
| 1670 | dev->actconfig = cp; |
Alan Stern | 6ad0712 | 2006-06-01 13:59:16 -0400 | [diff] [blame] | 1671 | if (!cp) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1672 | usb_set_device_state(dev, USB_STATE_ADDRESS); |
Alan Stern | 94fcda1 | 2006-11-20 11:38:46 -0500 | [diff] [blame] | 1673 | usb_autosuspend_device(dev); |
Alan Stern | 6ad0712 | 2006-06-01 13:59:16 -0400 | [diff] [blame] | 1674 | goto free_interfaces; |
| 1675 | } |
| 1676 | usb_set_device_state(dev, USB_STATE_CONFIGURED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1677 | |
Alan Stern | 6ad0712 | 2006-06-01 13:59:16 -0400 | [diff] [blame] | 1678 | /* Initialize the new interface structures and the |
| 1679 | * hc/hcd/usbcore interface/endpoint state. |
| 1680 | */ |
| 1681 | for (i = 0; i < nintf; ++i) { |
| 1682 | struct usb_interface_cache *intfc; |
| 1683 | struct usb_interface *intf; |
| 1684 | struct usb_host_interface *alt; |
| 1685 | |
| 1686 | cp->interface[i] = intf = new_interfaces[i]; |
| 1687 | intfc = cp->intf_cache[i]; |
| 1688 | intf->altsetting = intfc->altsetting; |
| 1689 | intf->num_altsetting = intfc->num_altsetting; |
Craig W. Nadler | 165fe97 | 2007-06-15 23:14:35 -0400 | [diff] [blame] | 1690 | intf->intf_assoc = find_iad(dev, cp, i); |
Alan Stern | 6ad0712 | 2006-06-01 13:59:16 -0400 | [diff] [blame] | 1691 | kref_get(&intfc->ref); |
| 1692 | |
| 1693 | alt = usb_altnum_to_altsetting(intf, 0); |
| 1694 | |
| 1695 | /* No altsetting 0? We'll assume the first altsetting. |
| 1696 | * We could use a GetInterface call, but if a device is |
| 1697 | * so non-compliant that it doesn't have altsetting 0 |
| 1698 | * then I wouldn't trust its reply anyway. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1699 | */ |
Alan Stern | 6ad0712 | 2006-06-01 13:59:16 -0400 | [diff] [blame] | 1700 | if (!alt) |
| 1701 | alt = &intf->altsetting[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1702 | |
Alan Stern | 6ad0712 | 2006-06-01 13:59:16 -0400 | [diff] [blame] | 1703 | intf->cur_altsetting = alt; |
Alan Stern | 2caf7fc | 2008-12-31 11:31:33 -0500 | [diff] [blame] | 1704 | usb_enable_interface(dev, intf, true); |
Alan Stern | 6ad0712 | 2006-06-01 13:59:16 -0400 | [diff] [blame] | 1705 | intf->dev.parent = &dev->dev; |
| 1706 | intf->dev.driver = NULL; |
| 1707 | intf->dev.bus = &usb_bus_type; |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 1708 | intf->dev.type = &usb_if_device_type; |
Alan Stern | 2e5f10e | 2008-04-30 15:37:19 -0400 | [diff] [blame] | 1709 | intf->dev.groups = usb_interface_groups; |
Alan Stern | 6ad0712 | 2006-06-01 13:59:16 -0400 | [diff] [blame] | 1710 | intf->dev.dma_mask = dev->dev.dma_mask; |
Inaky Perez-Gonzalez | dc023dc | 2008-11-13 10:31:35 -0800 | [diff] [blame] | 1711 | INIT_WORK(&intf->reset_ws, __usb_queue_reset_device); |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 1712 | device_initialize(&intf->dev); |
Alan Stern | 6ad0712 | 2006-06-01 13:59:16 -0400 | [diff] [blame] | 1713 | mark_quiesced(intf); |
Kay Sievers | 0031a06 | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 1714 | dev_set_name(&intf->dev, "%d-%s:%d.%d", |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 1715 | dev->bus->busnum, dev->devpath, |
| 1716 | configuration, alt->desc.bInterfaceNumber); |
Alan Stern | 6ad0712 | 2006-06-01 13:59:16 -0400 | [diff] [blame] | 1717 | } |
| 1718 | kfree(new_interfaces); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1719 | |
Alan Stern | 1662e3a | 2009-03-18 14:28:53 -0400 | [diff] [blame] | 1720 | if (cp->string == NULL && |
| 1721 | !(dev->quirks & USB_QUIRK_CONFIG_INTF_STRINGS)) |
Alan Stern | 6ad0712 | 2006-06-01 13:59:16 -0400 | [diff] [blame] | 1722 | cp->string = usb_cache_string(dev, cp->desc.iConfiguration); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1723 | |
Alan Stern | 6ad0712 | 2006-06-01 13:59:16 -0400 | [diff] [blame] | 1724 | /* Now that all the interfaces are set up, register them |
| 1725 | * to trigger binding of drivers to interfaces. probe() |
| 1726 | * routines may install different altsettings and may |
| 1727 | * claim() any interfaces not yet bound. Many class drivers |
| 1728 | * need that: CDC, audio, video, etc. |
| 1729 | */ |
| 1730 | for (i = 0; i < nintf; ++i) { |
| 1731 | struct usb_interface *intf = cp->interface[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 1733 | dev_dbg(&dev->dev, |
Alan Stern | 6ad0712 | 2006-06-01 13:59:16 -0400 | [diff] [blame] | 1734 | "adding %s (config #%d, interface %d)\n", |
Kay Sievers | 7071a3c | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 1735 | dev_name(&intf->dev), configuration, |
Alan Stern | 6ad0712 | 2006-06-01 13:59:16 -0400 | [diff] [blame] | 1736 | intf->cur_altsetting->desc.bInterfaceNumber); |
Greg Kroah-Hartman | 3e35bf3 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 1737 | ret = device_add(&intf->dev); |
Alan Stern | 6ad0712 | 2006-06-01 13:59:16 -0400 | [diff] [blame] | 1738 | if (ret != 0) { |
| 1739 | dev_err(&dev->dev, "device_add(%s) --> %d\n", |
Kay Sievers | 7071a3c | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 1740 | dev_name(&intf->dev), ret); |
Alan Stern | 6ad0712 | 2006-06-01 13:59:16 -0400 | [diff] [blame] | 1741 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1742 | } |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 1743 | create_intf_ep_devs(intf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1744 | } |
| 1745 | |
Alan Stern | 94fcda1 | 2006-11-20 11:38:46 -0500 | [diff] [blame] | 1746 | usb_autosuspend_device(dev); |
Alan Stern | 86d3074 | 2005-07-29 12:17:16 -0700 | [diff] [blame] | 1747 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1748 | } |
| 1749 | |
Alan Stern | df71896 | 2008-12-19 10:27:56 -0500 | [diff] [blame] | 1750 | static LIST_HEAD(set_config_list); |
| 1751 | static DEFINE_SPINLOCK(set_config_lock); |
| 1752 | |
Alan Stern | 088dc27 | 2006-08-21 12:08:19 -0400 | [diff] [blame] | 1753 | struct set_config_request { |
| 1754 | struct usb_device *udev; |
| 1755 | int config; |
| 1756 | struct work_struct work; |
Alan Stern | df71896 | 2008-12-19 10:27:56 -0500 | [diff] [blame] | 1757 | struct list_head node; |
Alan Stern | 088dc27 | 2006-08-21 12:08:19 -0400 | [diff] [blame] | 1758 | }; |
| 1759 | |
| 1760 | /* Worker routine for usb_driver_set_configuration() */ |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1761 | static void driver_set_config_work(struct work_struct *work) |
Alan Stern | 088dc27 | 2006-08-21 12:08:19 -0400 | [diff] [blame] | 1762 | { |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1763 | struct set_config_request *req = |
| 1764 | container_of(work, struct set_config_request, work); |
Alan Stern | df71896 | 2008-12-19 10:27:56 -0500 | [diff] [blame] | 1765 | struct usb_device *udev = req->udev; |
Alan Stern | 088dc27 | 2006-08-21 12:08:19 -0400 | [diff] [blame] | 1766 | |
Alan Stern | df71896 | 2008-12-19 10:27:56 -0500 | [diff] [blame] | 1767 | usb_lock_device(udev); |
| 1768 | spin_lock(&set_config_lock); |
| 1769 | list_del(&req->node); |
| 1770 | spin_unlock(&set_config_lock); |
| 1771 | |
| 1772 | if (req->config >= -1) /* Is req still valid? */ |
| 1773 | usb_set_configuration(udev, req->config); |
| 1774 | usb_unlock_device(udev); |
| 1775 | usb_put_dev(udev); |
Alan Stern | 088dc27 | 2006-08-21 12:08:19 -0400 | [diff] [blame] | 1776 | kfree(req); |
| 1777 | } |
| 1778 | |
Alan Stern | df71896 | 2008-12-19 10:27:56 -0500 | [diff] [blame] | 1779 | /* Cancel pending Set-Config requests for a device whose configuration |
| 1780 | * was just changed |
| 1781 | */ |
| 1782 | static void cancel_async_set_config(struct usb_device *udev) |
| 1783 | { |
| 1784 | struct set_config_request *req; |
| 1785 | |
| 1786 | spin_lock(&set_config_lock); |
| 1787 | list_for_each_entry(req, &set_config_list, node) { |
| 1788 | if (req->udev == udev) |
| 1789 | req->config = -999; /* Mark as cancelled */ |
| 1790 | } |
| 1791 | spin_unlock(&set_config_lock); |
| 1792 | } |
| 1793 | |
Alan Stern | 088dc27 | 2006-08-21 12:08:19 -0400 | [diff] [blame] | 1794 | /** |
| 1795 | * usb_driver_set_configuration - Provide a way for drivers to change device configurations |
| 1796 | * @udev: the device whose configuration is being updated |
| 1797 | * @config: the configuration being chosen. |
| 1798 | * Context: In process context, must be able to sleep |
| 1799 | * |
| 1800 | * Device interface drivers are not allowed to change device configurations. |
| 1801 | * This is because changing configurations will destroy the interface the |
| 1802 | * driver is bound to and create new ones; it would be like a floppy-disk |
| 1803 | * driver telling the computer to replace the floppy-disk drive with a |
| 1804 | * tape drive! |
| 1805 | * |
| 1806 | * Still, in certain specialized circumstances the need may arise. This |
| 1807 | * routine gets around the normal restrictions by using a work thread to |
| 1808 | * submit the change-config request. |
| 1809 | * |
| 1810 | * Returns 0 if the request was succesfully queued, error code otherwise. |
| 1811 | * The caller has no way to know whether the queued request will eventually |
| 1812 | * succeed. |
| 1813 | */ |
| 1814 | int usb_driver_set_configuration(struct usb_device *udev, int config) |
| 1815 | { |
| 1816 | struct set_config_request *req; |
| 1817 | |
| 1818 | req = kmalloc(sizeof(*req), GFP_KERNEL); |
| 1819 | if (!req) |
| 1820 | return -ENOMEM; |
| 1821 | req->udev = udev; |
| 1822 | req->config = config; |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1823 | INIT_WORK(&req->work, driver_set_config_work); |
Alan Stern | 088dc27 | 2006-08-21 12:08:19 -0400 | [diff] [blame] | 1824 | |
Alan Stern | df71896 | 2008-12-19 10:27:56 -0500 | [diff] [blame] | 1825 | spin_lock(&set_config_lock); |
| 1826 | list_add(&req->node, &set_config_list); |
| 1827 | spin_unlock(&set_config_lock); |
| 1828 | |
Alan Stern | 088dc27 | 2006-08-21 12:08:19 -0400 | [diff] [blame] | 1829 | usb_get_dev(udev); |
Alan Stern | 1737bf2 | 2006-12-15 16:04:52 -0500 | [diff] [blame] | 1830 | schedule_work(&req->work); |
Alan Stern | 088dc27 | 2006-08-21 12:08:19 -0400 | [diff] [blame] | 1831 | return 0; |
| 1832 | } |
| 1833 | EXPORT_SYMBOL_GPL(usb_driver_set_configuration); |