2 * message.c - synchronous message handling
5 #include <linux/pci.h> /* for scatterlist macros */
7 #include <linux/module.h>
8 #include <linux/slab.h>
10 #include <linux/timer.h>
11 #include <linux/ctype.h>
12 #include <linux/nls.h>
13 #include <linux/device.h>
14 #include <linux/scatterlist.h>
15 #include <linux/usb/cdc.h>
16 #include <linux/usb/quirks.h>
17 #include <linux/usb/hcd.h> /* for usbcore internals */
18 #include <asm/byteorder.h>
22 static void cancel_async_set_config(struct usb_device
*udev
);
25 struct completion done
;
29 static void usb_api_blocking_completion(struct urb
*urb
)
31 struct api_context
*ctx
= urb
->context
;
33 ctx
->status
= urb
->status
;
39 * Starts urb and waits for completion or timeout. Note that this call
40 * is NOT interruptible. Many device driver i/o requests should be
41 * interruptible and therefore these drivers should implement their
42 * own interruptible routines.
44 static int usb_start_wait_urb(struct urb
*urb
, int timeout
, int *actual_length
)
46 struct api_context ctx
;
50 init_completion(&ctx
.done
);
52 urb
->actual_length
= 0;
53 retval
= usb_submit_urb(urb
, GFP_NOIO
);
57 expire
= timeout
? msecs_to_jiffies(timeout
) : MAX_SCHEDULE_TIMEOUT
;
58 if (!wait_for_completion_timeout(&ctx
.done
, expire
)) {
60 retval
= (ctx
.status
== -ENOENT
? -ETIMEDOUT
: ctx
.status
);
62 dev_dbg(&urb
->dev
->dev
,
63 "%s timed out on ep%d%s len=%u/%u\n",
65 usb_endpoint_num(&urb
->ep
->desc
),
66 usb_urb_dir_in(urb
) ? "in" : "out",
68 urb
->transfer_buffer_length
);
73 *actual_length
= urb
->actual_length
;
79 /*-------------------------------------------------------------------*/
80 /* returns status (negative) or length (positive) */
81 static int usb_internal_control_msg(struct usb_device
*usb_dev
,
83 struct usb_ctrlrequest
*cmd
,
84 void *data
, int len
, int timeout
)
90 urb
= usb_alloc_urb(0, GFP_NOIO
);
94 usb_fill_control_urb(urb
, usb_dev
, pipe
, (unsigned char *)cmd
, data
,
95 len
, usb_api_blocking_completion
, NULL
);
97 retv
= usb_start_wait_urb(urb
, timeout
, &length
);
105 * usb_control_msg - Builds a control urb, sends it off and waits for completion
106 * @dev: pointer to the usb device to send the message to
107 * @pipe: endpoint "pipe" to send the message to
108 * @request: USB message request value
109 * @requesttype: USB message request type value
110 * @value: USB message value
111 * @index: USB message index value
112 * @data: pointer to the data to send
113 * @size: length in bytes of the data to send
114 * @timeout: time in msecs to wait for the message to complete before timing
115 * out (if 0 the wait is forever)
117 * Context: !in_interrupt ()
119 * This function sends a simple control message to a specified endpoint and
120 * waits for the message to complete, or timeout.
122 * Don't use this function from within an interrupt context, like a bottom half
123 * handler. If you need an asynchronous message, or need to send a message
124 * from within interrupt context, use usb_submit_urb().
125 * If a thread in your driver uses this call, make sure your disconnect()
126 * method can wait for it to complete. Since you don't have a handle on the
127 * URB used, you can't cancel the request.
129 * Return: If successful, the number of bytes transferred. Otherwise, a negative
132 int usb_control_msg(struct usb_device
*dev
, unsigned int pipe
, __u8 request
,
133 __u8 requesttype
, __u16 value
, __u16 index
, void *data
,
134 __u16 size
, int timeout
)
136 struct usb_ctrlrequest
*dr
;
139 dr
= kmalloc(sizeof(struct usb_ctrlrequest
), GFP_NOIO
);
143 dr
->bRequestType
= requesttype
;
144 dr
->bRequest
= request
;
145 dr
->wValue
= cpu_to_le16(value
);
146 dr
->wIndex
= cpu_to_le16(index
);
147 dr
->wLength
= cpu_to_le16(size
);
149 ret
= usb_internal_control_msg(dev
, pipe
, dr
, data
, size
, timeout
);
151 /* Linger a bit, prior to the next control message. */
152 if (dev
->quirks
& USB_QUIRK_DELAY_CTRL_MSG
)
159 EXPORT_SYMBOL_GPL(usb_control_msg
);
162 * usb_interrupt_msg - Builds an interrupt urb, sends it off and waits for completion
163 * @usb_dev: pointer to the usb device to send the message to
164 * @pipe: endpoint "pipe" to send the message to
165 * @data: pointer to the data to send
166 * @len: length in bytes of the data to send
167 * @actual_length: pointer to a location to put the actual length transferred
169 * @timeout: time in msecs to wait for the message to complete before
170 * timing out (if 0 the wait is forever)
172 * Context: !in_interrupt ()
174 * This function sends a simple interrupt message to a specified endpoint and
175 * waits for the message to complete, or timeout.
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
185 * If successful, 0. Otherwise a negative error number. The number of actual
186 * bytes transferred will be stored in the @actual_length parameter.
188 int usb_interrupt_msg(struct usb_device
*usb_dev
, unsigned int pipe
,
189 void *data
, int len
, int *actual_length
, int timeout
)
191 return usb_bulk_msg(usb_dev
, pipe
, data
, len
, actual_length
, timeout
);
193 EXPORT_SYMBOL_GPL(usb_interrupt_msg
);
196 * usb_bulk_msg - Builds a bulk urb, sends it off and waits for completion
197 * @usb_dev: pointer to the usb device to send the message to
198 * @pipe: endpoint "pipe" to send the message to
199 * @data: pointer to the data to send
200 * @len: length in bytes of the data to send
201 * @actual_length: pointer to a location to put the actual length transferred
203 * @timeout: time in msecs to wait for the message to complete before
204 * timing out (if 0 the wait is forever)
206 * Context: !in_interrupt ()
208 * This function sends a simple bulk message to a specified endpoint
209 * and waits for the message to complete, or timeout.
211 * Don't use this function from within an interrupt context, like a bottom half
212 * handler. If you need an asynchronous message, or need to send a message
213 * from within interrupt context, use usb_submit_urb() If a thread in your
214 * driver uses this call, make sure your disconnect() method can wait for it to
215 * complete. Since you don't have a handle on the URB used, you can't cancel
218 * Because there is no usb_interrupt_msg() and no USBDEVFS_INTERRUPT ioctl,
219 * users are forced to abuse this routine by using it to submit URBs for
220 * interrupt endpoints. We will take the liberty of creating an interrupt URB
221 * (with the default interval) if the target is an interrupt endpoint.
224 * If successful, 0. Otherwise a negative error number. The number of actual
225 * bytes transferred will be stored in the @actual_length parameter.
228 int usb_bulk_msg(struct usb_device
*usb_dev
, unsigned int pipe
,
229 void *data
, int len
, int *actual_length
, int timeout
)
232 struct usb_host_endpoint
*ep
;
234 ep
= usb_pipe_endpoint(usb_dev
, pipe
);
238 urb
= usb_alloc_urb(0, GFP_KERNEL
);
242 if ((ep
->desc
.bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) ==
243 USB_ENDPOINT_XFER_INT
) {
244 pipe
= (pipe
& ~(3 << 30)) | (PIPE_INTERRUPT
<< 30);
245 usb_fill_int_urb(urb
, usb_dev
, pipe
, data
, len
,
246 usb_api_blocking_completion
, NULL
,
249 usb_fill_bulk_urb(urb
, usb_dev
, pipe
, data
, len
,
250 usb_api_blocking_completion
, NULL
);
252 return usb_start_wait_urb(urb
, timeout
, actual_length
);
254 EXPORT_SYMBOL_GPL(usb_bulk_msg
);
256 /*-------------------------------------------------------------------*/
258 static void sg_clean(struct usb_sg_request
*io
)
261 while (io
->entries
--)
262 usb_free_urb(io
->urbs
[io
->entries
]);
269 static void sg_complete(struct urb
*urb
)
271 struct usb_sg_request
*io
= urb
->context
;
272 int status
= urb
->status
;
274 spin_lock(&io
->lock
);
276 /* In 2.5 we require hcds' endpoint queues not to progress after fault
277 * reports, until the completion callback (this!) returns. That lets
278 * device driver code (like this routine) unlink queued urbs first,
279 * if it needs to, since the HC won't work on them at all. So it's
280 * not possible for page N+1 to overwrite page N, and so on.
282 * That's only for "hard" faults; "soft" faults (unlinks) sometimes
283 * complete before the HCD can get requests away from hardware,
284 * though never during cleanup after a hard fault.
287 && (io
->status
!= -ECONNRESET
288 || status
!= -ECONNRESET
)
289 && urb
->actual_length
) {
290 dev_err(io
->dev
->bus
->controller
,
291 "dev %s ep%d%s scatterlist error %d/%d\n",
293 usb_endpoint_num(&urb
->ep
->desc
),
294 usb_urb_dir_in(urb
) ? "in" : "out",
299 if (io
->status
== 0 && status
&& status
!= -ECONNRESET
) {
300 int i
, found
, retval
;
304 /* the previous urbs, and this one, completed already.
305 * unlink pending urbs so they won't rx/tx bad data.
306 * careful: unlink can sometimes be synchronous...
308 spin_unlock(&io
->lock
);
309 for (i
= 0, found
= 0; i
< io
->entries
; i
++) {
313 usb_block_urb(io
->urbs
[i
]);
314 retval
= usb_unlink_urb(io
->urbs
[i
]);
315 if (retval
!= -EINPROGRESS
&&
319 dev_err(&io
->dev
->dev
,
320 "%s, unlink --> %d\n",
322 } else if (urb
== io
->urbs
[i
])
325 spin_lock(&io
->lock
);
328 /* on the last completion, signal usb_sg_wait() */
329 io
->bytes
+= urb
->actual_length
;
332 complete(&io
->complete
);
334 spin_unlock(&io
->lock
);
339 * usb_sg_init - initializes scatterlist-based bulk/interrupt I/O request
340 * @io: request block being initialized. until usb_sg_wait() returns,
341 * treat this as a pointer to an opaque block of memory,
342 * @dev: the usb device that will send or receive the data
343 * @pipe: endpoint "pipe" used to transfer the data
344 * @period: polling rate for interrupt endpoints, in frames or
345 * (for high speed endpoints) microframes; ignored for bulk
346 * @sg: scatterlist entries
347 * @nents: how many entries in the scatterlist
348 * @length: how many bytes to send from the scatterlist, or zero to
349 * send every byte identified in the list.
350 * @mem_flags: SLAB_* flags affecting memory allocations in this call
352 * This initializes a scatter/gather request, allocating resources such as
353 * I/O mappings and urb memory (except maybe memory used by USB controller
356 * The request must be issued using usb_sg_wait(), which waits for the I/O to
357 * complete (or to be canceled) and then cleans up all resources allocated by
360 * The request may be canceled with usb_sg_cancel(), either before or after
361 * usb_sg_wait() is called.
363 * Return: Zero for success, else a negative errno value.
365 int usb_sg_init(struct usb_sg_request
*io
, struct usb_device
*dev
,
366 unsigned pipe
, unsigned period
, struct scatterlist
*sg
,
367 int nents
, size_t length
, gfp_t mem_flags
)
373 if (!io
|| !dev
|| !sg
374 || usb_pipecontrol(pipe
)
375 || usb_pipeisoc(pipe
)
379 spin_lock_init(&io
->lock
);
383 if (dev
->bus
->sg_tablesize
> 0) {
391 /* initialize all the urbs we'll use */
392 io
->urbs
= kmalloc(io
->entries
* sizeof(*io
->urbs
), mem_flags
);
396 urb_flags
= URB_NO_INTERRUPT
;
397 if (usb_pipein(pipe
))
398 urb_flags
|= URB_SHORT_NOT_OK
;
400 for_each_sg(sg
, sg
, io
->entries
, i
) {
404 urb
= usb_alloc_urb(0, mem_flags
);
413 urb
->interval
= period
;
414 urb
->transfer_flags
= urb_flags
;
415 urb
->complete
= sg_complete
;
420 /* There is no single transfer buffer */
421 urb
->transfer_buffer
= NULL
;
422 urb
->num_sgs
= nents
;
424 /* A length of zero means transfer the whole sg list */
427 struct scatterlist
*sg2
;
430 for_each_sg(sg
, sg2
, nents
, j
)
435 * Some systems can't use DMA; they use PIO instead.
436 * For their sakes, transfer_buffer is set whenever
439 if (!PageHighMem(sg_page(sg
)))
440 urb
->transfer_buffer
= sg_virt(sg
);
442 urb
->transfer_buffer
= NULL
;
446 len
= min_t(size_t, len
, length
);
452 urb
->transfer_buffer_length
= len
;
454 io
->urbs
[--i
]->transfer_flags
&= ~URB_NO_INTERRUPT
;
456 /* transaction state */
457 io
->count
= io
->entries
;
460 init_completion(&io
->complete
);
467 EXPORT_SYMBOL_GPL(usb_sg_init
);
470 * usb_sg_wait - synchronously execute scatter/gather request
471 * @io: request block handle, as initialized with usb_sg_init().
472 * some fields become accessible when this call returns.
473 * Context: !in_interrupt ()
475 * This function blocks until the specified I/O operation completes. It
476 * leverages the grouping of the related I/O requests to get good transfer
477 * rates, by queueing the requests. At higher speeds, such queuing can
478 * significantly improve USB throughput.
480 * There are three kinds of completion for this function.
481 * (1) success, where io->status is zero. The number of io->bytes
482 * transferred is as requested.
483 * (2) error, where io->status is a negative errno value. The number
484 * of io->bytes transferred before the error is usually less
485 * than requested, and can be nonzero.
486 * (3) cancellation, a type of error with status -ECONNRESET that
487 * is initiated by usb_sg_cancel().
489 * When this function returns, all memory allocated through usb_sg_init() or
490 * this call will have been freed. The request block parameter may still be
491 * passed to usb_sg_cancel(), or it may be freed. It could also be
492 * reinitialized and then reused.
494 * Data Transfer Rates:
496 * Bulk transfers are valid for full or high speed endpoints.
497 * The best full speed data rate is 19 packets of 64 bytes each
498 * per frame, or 1216 bytes per millisecond.
499 * The best high speed data rate is 13 packets of 512 bytes each
500 * per microframe, or 52 KBytes per millisecond.
502 * The reason to use interrupt transfers through this API would most likely
503 * be to reserve high speed bandwidth, where up to 24 KBytes per millisecond
504 * could be transferred. That capability is less useful for low or full
505 * speed interrupt endpoints, which allow at most one packet per millisecond,
506 * of at most 8 or 64 bytes (respectively).
508 * It is not necessary to call this function to reserve bandwidth for devices
509 * under an xHCI host controller, as the bandwidth is reserved when the
510 * configuration or interface alt setting is selected.
512 void usb_sg_wait(struct usb_sg_request
*io
)
515 int entries
= io
->entries
;
517 /* queue the urbs. */
518 spin_lock_irq(&io
->lock
);
520 while (i
< entries
&& !io
->status
) {
523 io
->urbs
[i
]->dev
= io
->dev
;
524 spin_unlock_irq(&io
->lock
);
526 retval
= usb_submit_urb(io
->urbs
[i
], GFP_NOIO
);
529 /* maybe we retrying will recover */
530 case -ENXIO
: /* hc didn't queue this one */
537 /* no error? continue immediately.
539 * NOTE: to work better with UHCI (4K I/O buffer may
540 * need 3K of TDs) it may be good to limit how many
541 * URBs are queued at once; N milliseconds?
548 /* fail any uncompleted urbs */
550 io
->urbs
[i
]->status
= retval
;
551 dev_dbg(&io
->dev
->dev
, "%s, submit --> %d\n",
555 spin_lock_irq(&io
->lock
);
556 if (retval
&& (io
->status
== 0 || io
->status
== -ECONNRESET
))
559 io
->count
-= entries
- i
;
561 complete(&io
->complete
);
562 spin_unlock_irq(&io
->lock
);
564 /* OK, yes, this could be packaged as non-blocking.
565 * So could the submit loop above ... but it's easier to
566 * solve neither problem than to solve both!
568 wait_for_completion(&io
->complete
);
572 EXPORT_SYMBOL_GPL(usb_sg_wait
);
575 * usb_sg_cancel - stop scatter/gather i/o issued by usb_sg_wait()
576 * @io: request block, initialized with usb_sg_init()
578 * This stops a request after it has been started by usb_sg_wait().
579 * It can also prevents one initialized by usb_sg_init() from starting,
580 * so that call just frees resources allocated to the request.
582 void usb_sg_cancel(struct usb_sg_request
*io
)
587 spin_lock_irqsave(&io
->lock
, flags
);
589 spin_unlock_irqrestore(&io
->lock
, flags
);
592 /* shut everything down */
593 io
->status
= -ECONNRESET
;
594 spin_unlock_irqrestore(&io
->lock
, flags
);
596 for (i
= io
->entries
- 1; i
>= 0; --i
) {
597 usb_block_urb(io
->urbs
[i
]);
599 retval
= usb_unlink_urb(io
->urbs
[i
]);
600 if (retval
!= -EINPROGRESS
604 dev_warn(&io
->dev
->dev
, "%s, unlink --> %d\n",
608 EXPORT_SYMBOL_GPL(usb_sg_cancel
);
610 /*-------------------------------------------------------------------*/
613 * usb_get_descriptor - issues a generic GET_DESCRIPTOR request
614 * @dev: the device whose descriptor is being retrieved
615 * @type: the descriptor type (USB_DT_*)
616 * @index: the number of the descriptor
617 * @buf: where to put the descriptor
618 * @size: how big is "buf"?
619 * Context: !in_interrupt ()
621 * Gets a USB descriptor. Convenience functions exist to simplify
622 * getting some types of descriptors. Use
623 * usb_get_string() or usb_string() for USB_DT_STRING.
624 * Device (USB_DT_DEVICE) and configuration descriptors (USB_DT_CONFIG)
625 * are part of the device structure.
626 * In addition to a number of USB-standard descriptors, some
627 * devices also use class-specific or vendor-specific descriptors.
629 * This call is synchronous, and may not be used in an interrupt context.
631 * Return: The number of bytes received on success, or else the status code
632 * returned by the underlying usb_control_msg() call.
634 int usb_get_descriptor(struct usb_device
*dev
, unsigned char type
,
635 unsigned char index
, void *buf
, int size
)
640 memset(buf
, 0, size
); /* Make sure we parse really received data */
642 for (i
= 0; i
< 3; ++i
) {
643 /* retry on length 0 or error; some devices are flakey */
644 result
= usb_control_msg(dev
, usb_rcvctrlpipe(dev
, 0),
645 USB_REQ_GET_DESCRIPTOR
, USB_DIR_IN
,
646 (type
<< 8) + index
, 0, buf
, size
,
647 USB_CTRL_GET_TIMEOUT
);
648 if (result
<= 0 && result
!= -ETIMEDOUT
)
650 if (result
> 1 && ((u8
*)buf
)[1] != type
) {
658 EXPORT_SYMBOL_GPL(usb_get_descriptor
);
661 * usb_get_string - gets a string descriptor
662 * @dev: the device whose string descriptor is being retrieved
663 * @langid: code for language chosen (from string descriptor zero)
664 * @index: the number of the descriptor
665 * @buf: where to put the string
666 * @size: how big is "buf"?
667 * Context: !in_interrupt ()
669 * Retrieves a string, encoded using UTF-16LE (Unicode, 16 bits per character,
670 * in little-endian byte order).
671 * The usb_string() function will often be a convenient way to turn
672 * these strings into kernel-printable form.
674 * Strings may be referenced in device, configuration, interface, or other
675 * descriptors, and could also be used in vendor-specific ways.
677 * This call is synchronous, and may not be used in an interrupt context.
679 * Return: The number of bytes received on success, or else the status code
680 * returned by the underlying usb_control_msg() call.
682 static int usb_get_string(struct usb_device
*dev
, unsigned short langid
,
683 unsigned char index
, void *buf
, int size
)
688 for (i
= 0; i
< 3; ++i
) {
689 /* retry on length 0 or stall; some devices are flakey */
690 result
= usb_control_msg(dev
, usb_rcvctrlpipe(dev
, 0),
691 USB_REQ_GET_DESCRIPTOR
, USB_DIR_IN
,
692 (USB_DT_STRING
<< 8) + index
, langid
, buf
, size
,
693 USB_CTRL_GET_TIMEOUT
);
694 if (result
== 0 || result
== -EPIPE
)
696 if (result
> 1 && ((u8
*) buf
)[1] != USB_DT_STRING
) {
705 static void usb_try_string_workarounds(unsigned char *buf
, int *length
)
707 int newlength
, oldlength
= *length
;
709 for (newlength
= 2; newlength
+ 1 < oldlength
; newlength
+= 2)
710 if (!isprint(buf
[newlength
]) || buf
[newlength
+ 1])
719 static int usb_string_sub(struct usb_device
*dev
, unsigned int langid
,
720 unsigned int index
, unsigned char *buf
)
724 /* Try to read the string descriptor by asking for the maximum
725 * possible number of bytes */
726 if (dev
->quirks
& USB_QUIRK_STRING_FETCH_255
)
729 rc
= usb_get_string(dev
, langid
, index
, buf
, 255);
731 /* If that failed try to read the descriptor length, then
732 * ask for just that many bytes */
734 rc
= usb_get_string(dev
, langid
, index
, buf
, 2);
736 rc
= usb_get_string(dev
, langid
, index
, buf
, buf
[0]);
740 if (!buf
[0] && !buf
[1])
741 usb_try_string_workarounds(buf
, &rc
);
743 /* There might be extra junk at the end of the descriptor */
747 rc
= rc
- (rc
& 1); /* force a multiple of two */
751 rc
= (rc
< 0 ? rc
: -EINVAL
);
756 static int usb_get_langid(struct usb_device
*dev
, unsigned char *tbuf
)
760 if (dev
->have_langid
)
763 if (dev
->string_langid
< 0)
766 err
= usb_string_sub(dev
, 0, 0, tbuf
);
768 /* If the string was reported but is malformed, default to english
770 if (err
== -ENODATA
|| (err
> 0 && err
< 4)) {
771 dev
->string_langid
= 0x0409;
772 dev
->have_langid
= 1;
774 "language id specifier not provided by device, defaulting to English\n");
778 /* In case of all other errors, we assume the device is not able to
779 * deal with strings at all. Set string_langid to -1 in order to
780 * prevent any string to be retrieved from the device */
782 dev_err(&dev
->dev
, "string descriptor 0 read error: %d\n",
784 dev
->string_langid
= -1;
788 /* always use the first langid listed */
789 dev
->string_langid
= tbuf
[2] | (tbuf
[3] << 8);
790 dev
->have_langid
= 1;
791 dev_dbg(&dev
->dev
, "default language 0x%04x\n",
797 * usb_string - returns UTF-8 version of a string descriptor
798 * @dev: the device whose string descriptor is being retrieved
799 * @index: the number of the descriptor
800 * @buf: where to put the string
801 * @size: how big is "buf"?
802 * Context: !in_interrupt ()
804 * This converts the UTF-16LE encoded strings returned by devices, from
805 * usb_get_string_descriptor(), to null-terminated UTF-8 encoded ones
806 * that are more usable in most kernel contexts. Note that this function
807 * chooses strings in the first language supported by the device.
809 * This call is synchronous, and may not be used in an interrupt context.
811 * Return: length of the string (>= 0) or usb_control_msg status (< 0).
813 int usb_string(struct usb_device
*dev
, int index
, char *buf
, size_t size
)
818 if (dev
->state
== USB_STATE_SUSPENDED
)
819 return -EHOSTUNREACH
;
820 if (size
<= 0 || !buf
|| !index
)
823 tbuf
= kmalloc(256, GFP_NOIO
);
827 err
= usb_get_langid(dev
, tbuf
);
831 err
= usb_string_sub(dev
, dev
->string_langid
, index
, tbuf
);
835 size
--; /* leave room for trailing NULL char in output buffer */
836 err
= utf16s_to_utf8s((wchar_t *) &tbuf
[2], (err
- 2) / 2,
837 UTF16_LITTLE_ENDIAN
, buf
, size
);
840 if (tbuf
[1] != USB_DT_STRING
)
842 "wrong descriptor type %02x for string %d (\"%s\")\n",
843 tbuf
[1], index
, buf
);
849 EXPORT_SYMBOL_GPL(usb_string
);
851 /* one UTF-8-encoded 16-bit character has at most three bytes */
852 #define MAX_USB_STRING_SIZE (127 * 3 + 1)
855 * usb_cache_string - read a string descriptor and cache it for later use
856 * @udev: the device whose string descriptor is being read
857 * @index: the descriptor index
859 * Return: A pointer to a kmalloc'ed buffer containing the descriptor string,
860 * or %NULL if the index is 0 or the string could not be read.
862 char *usb_cache_string(struct usb_device
*udev
, int index
)
865 char *smallbuf
= NULL
;
871 buf
= kmalloc(MAX_USB_STRING_SIZE
, GFP_NOIO
);
873 len
= usb_string(udev
, index
, buf
, MAX_USB_STRING_SIZE
);
875 smallbuf
= kmalloc(++len
, GFP_NOIO
);
878 memcpy(smallbuf
, buf
, len
);
886 * usb_get_device_descriptor - (re)reads the device descriptor (usbcore)
887 * @dev: the device whose device descriptor is being updated
888 * @size: how much of the descriptor to read
889 * Context: !in_interrupt ()
891 * Updates the copy of the device descriptor stored in the device structure,
892 * which dedicates space for this purpose.
894 * Not exported, only for use by the core. If drivers really want to read
895 * the device descriptor directly, they can call usb_get_descriptor() with
896 * type = USB_DT_DEVICE and index = 0.
898 * This call is synchronous, and may not be used in an interrupt context.
900 * Return: The number of bytes received on success, or else the status code
901 * returned by the underlying usb_control_msg() call.
903 int usb_get_device_descriptor(struct usb_device
*dev
, unsigned int size
)
905 struct usb_device_descriptor
*desc
;
908 if (size
> sizeof(*desc
))
910 desc
= kmalloc(sizeof(*desc
), GFP_NOIO
);
914 ret
= usb_get_descriptor(dev
, USB_DT_DEVICE
, 0, desc
, size
);
916 memcpy(&dev
->descriptor
, desc
, size
);
922 * usb_get_status - issues a GET_STATUS call
923 * @dev: the device whose status is being checked
924 * @type: USB_RECIP_*; for device, interface, or endpoint
925 * @target: zero (for device), else interface or endpoint number
926 * @data: pointer to two bytes of bitmap data
927 * Context: !in_interrupt ()
929 * Returns device, interface, or endpoint status. Normally only of
930 * interest to see if the device is self powered, or has enabled the
931 * remote wakeup facility; or whether a bulk or interrupt endpoint
932 * is halted ("stalled").
934 * Bits in these status bitmaps are set using the SET_FEATURE request,
935 * and cleared using the CLEAR_FEATURE request. The usb_clear_halt()
936 * function should be used to clear halt ("stall") status.
938 * This call is synchronous, and may not be used in an interrupt context.
940 * Returns 0 and the status value in *@data (in host byte order) on success,
941 * or else the status code from the underlying usb_control_msg() call.
943 int usb_get_status(struct usb_device
*dev
, int type
, int target
, void *data
)
946 __le16
*status
= kmalloc(sizeof(*status
), GFP_KERNEL
);
951 ret
= usb_control_msg(dev
, usb_rcvctrlpipe(dev
, 0),
952 USB_REQ_GET_STATUS
, USB_DIR_IN
| type
, 0, target
, status
,
953 sizeof(*status
), USB_CTRL_GET_TIMEOUT
);
956 *(u16
*) data
= le16_to_cpu(*status
);
958 } else if (ret
>= 0) {
964 EXPORT_SYMBOL_GPL(usb_get_status
);
967 * usb_clear_halt - tells device to clear endpoint halt/stall condition
968 * @dev: device whose endpoint is halted
969 * @pipe: endpoint "pipe" being cleared
970 * Context: !in_interrupt ()
972 * This is used to clear halt conditions for bulk and interrupt endpoints,
973 * as reported by URB completion status. Endpoints that are halted are
974 * sometimes referred to as being "stalled". Such endpoints are unable
975 * to transmit or receive data until the halt status is cleared. Any URBs
976 * queued for such an endpoint should normally be unlinked by the driver
977 * before clearing the halt condition, as described in sections 5.7.5
978 * and 5.8.5 of the USB 2.0 spec.
980 * Note that control and isochronous endpoints don't halt, although control
981 * endpoints report "protocol stall" (for unsupported requests) using the
982 * same status code used to report a true stall.
984 * This call is synchronous, and may not be used in an interrupt context.
986 * Return: Zero on success, or else the status code returned by the
987 * underlying usb_control_msg() call.
989 int usb_clear_halt(struct usb_device
*dev
, int pipe
)
992 int endp
= usb_pipeendpoint(pipe
);
994 if (usb_pipein(pipe
))
997 /* we don't care if it wasn't halted first. in fact some devices
998 * (like some ibmcam model 1 units) seem to expect hosts to make
999 * this request for iso endpoints, which can't halt!
1001 result
= usb_control_msg(dev
, usb_sndctrlpipe(dev
, 0),
1002 USB_REQ_CLEAR_FEATURE
, USB_RECIP_ENDPOINT
,
1003 USB_ENDPOINT_HALT
, endp
, NULL
, 0,
1004 USB_CTRL_SET_TIMEOUT
);
1006 /* don't un-halt or force to DATA0 except on success */
1010 /* NOTE: seems like Microsoft and Apple don't bother verifying
1011 * the clear "took", so some devices could lock up if you check...
1012 * such as the Hagiwara FlashGate DUAL. So we won't bother.
1014 * NOTE: make sure the logic here doesn't diverge much from
1015 * the copy in usb-storage, for as long as we need two copies.
1018 usb_reset_endpoint(dev
, endp
);
1022 EXPORT_SYMBOL_GPL(usb_clear_halt
);
1024 static int create_intf_ep_devs(struct usb_interface
*intf
)
1026 struct usb_device
*udev
= interface_to_usbdev(intf
);
1027 struct usb_host_interface
*alt
= intf
->cur_altsetting
;
1030 if (intf
->ep_devs_created
|| intf
->unregistering
)
1033 for (i
= 0; i
< alt
->desc
.bNumEndpoints
; ++i
)
1034 (void) usb_create_ep_devs(&intf
->dev
, &alt
->endpoint
[i
], udev
);
1035 intf
->ep_devs_created
= 1;
1039 static void remove_intf_ep_devs(struct usb_interface
*intf
)
1041 struct usb_host_interface
*alt
= intf
->cur_altsetting
;
1044 if (!intf
->ep_devs_created
)
1047 for (i
= 0; i
< alt
->desc
.bNumEndpoints
; ++i
)
1048 usb_remove_ep_devs(&alt
->endpoint
[i
]);
1049 intf
->ep_devs_created
= 0;
1053 * usb_disable_endpoint -- Disable an endpoint by address
1054 * @dev: the device whose endpoint is being disabled
1055 * @epaddr: the endpoint's address. Endpoint number for output,
1056 * endpoint number + USB_DIR_IN for input
1057 * @reset_hardware: flag to erase any endpoint state stored in the
1058 * controller hardware
1060 * Disables the endpoint for URB submission and nukes all pending URBs.
1061 * If @reset_hardware is set then also deallocates hcd/hardware state
1064 void usb_disable_endpoint(struct usb_device
*dev
, unsigned int epaddr
,
1065 bool reset_hardware
)
1067 unsigned int epnum
= epaddr
& USB_ENDPOINT_NUMBER_MASK
;
1068 struct usb_host_endpoint
*ep
;
1073 if (usb_endpoint_out(epaddr
)) {
1074 ep
= dev
->ep_out
[epnum
];
1076 dev
->ep_out
[epnum
] = NULL
;
1078 ep
= dev
->ep_in
[epnum
];
1080 dev
->ep_in
[epnum
] = NULL
;
1084 usb_hcd_flush_endpoint(dev
, ep
);
1086 usb_hcd_disable_endpoint(dev
, ep
);
1091 * usb_reset_endpoint - Reset an endpoint's state.
1092 * @dev: the device whose endpoint is to be reset
1093 * @epaddr: the endpoint's address. Endpoint number for output,
1094 * endpoint number + USB_DIR_IN for input
1096 * Resets any host-side endpoint state such as the toggle bit,
1097 * sequence number or current window.
1099 void usb_reset_endpoint(struct usb_device
*dev
, unsigned int epaddr
)
1101 unsigned int epnum
= epaddr
& USB_ENDPOINT_NUMBER_MASK
;
1102 struct usb_host_endpoint
*ep
;
1104 if (usb_endpoint_out(epaddr
))
1105 ep
= dev
->ep_out
[epnum
];
1107 ep
= dev
->ep_in
[epnum
];
1109 usb_hcd_reset_endpoint(dev
, ep
);
1111 EXPORT_SYMBOL_GPL(usb_reset_endpoint
);
1115 * usb_disable_interface -- Disable all endpoints for an interface
1116 * @dev: the device whose interface is being disabled
1117 * @intf: pointer to the interface descriptor
1118 * @reset_hardware: flag to erase any endpoint state stored in the
1119 * controller hardware
1121 * Disables all the endpoints for the interface's current altsetting.
1123 void usb_disable_interface(struct usb_device
*dev
, struct usb_interface
*intf
,
1124 bool reset_hardware
)
1126 struct usb_host_interface
*alt
= intf
->cur_altsetting
;
1129 for (i
= 0; i
< alt
->desc
.bNumEndpoints
; ++i
) {
1130 usb_disable_endpoint(dev
,
1131 alt
->endpoint
[i
].desc
.bEndpointAddress
,
1137 * usb_disable_device - Disable all the endpoints for a USB device
1138 * @dev: the device whose endpoints are being disabled
1139 * @skip_ep0: 0 to disable endpoint 0, 1 to skip it.
1141 * Disables all the device's endpoints, potentially including endpoint 0.
1142 * Deallocates hcd/hardware state for the endpoints (nuking all or most
1143 * pending urbs) and usbcore state for the interfaces, so that usbcore
1144 * must usb_set_configuration() before any interfaces could be used.
1146 void usb_disable_device(struct usb_device
*dev
, int skip_ep0
)
1149 struct usb_hcd
*hcd
= bus_to_hcd(dev
->bus
);
1151 /* getting rid of interfaces will disconnect
1152 * any drivers bound to them (a key side effect)
1154 if (dev
->actconfig
) {
1156 * FIXME: In order to avoid self-deadlock involving the
1157 * bandwidth_mutex, we have to mark all the interfaces
1158 * before unregistering any of them.
1160 for (i
= 0; i
< dev
->actconfig
->desc
.bNumInterfaces
; i
++)
1161 dev
->actconfig
->interface
[i
]->unregistering
= 1;
1163 for (i
= 0; i
< dev
->actconfig
->desc
.bNumInterfaces
; i
++) {
1164 struct usb_interface
*interface
;
1166 /* remove this interface if it has been registered */
1167 interface
= dev
->actconfig
->interface
[i
];
1168 if (!device_is_registered(&interface
->dev
))
1170 dev_dbg(&dev
->dev
, "unregistering interface %s\n",
1171 dev_name(&interface
->dev
));
1172 remove_intf_ep_devs(interface
);
1173 device_del(&interface
->dev
);
1176 /* Now that the interfaces are unbound, nobody should
1177 * try to access them.
1179 for (i
= 0; i
< dev
->actconfig
->desc
.bNumInterfaces
; i
++) {
1180 put_device(&dev
->actconfig
->interface
[i
]->dev
);
1181 dev
->actconfig
->interface
[i
] = NULL
;
1184 if (dev
->usb2_hw_lpm_enabled
== 1)
1185 usb_set_usb2_hardware_lpm(dev
, 0);
1186 usb_unlocked_disable_lpm(dev
);
1187 usb_disable_ltm(dev
);
1189 dev
->actconfig
= NULL
;
1190 if (dev
->state
== USB_STATE_CONFIGURED
)
1191 usb_set_device_state(dev
, USB_STATE_ADDRESS
);
1194 dev_dbg(&dev
->dev
, "%s nuking %s URBs\n", __func__
,
1195 skip_ep0
? "non-ep0" : "all");
1196 if (hcd
->driver
->check_bandwidth
) {
1197 /* First pass: Cancel URBs, leave endpoint pointers intact. */
1198 for (i
= skip_ep0
; i
< 16; ++i
) {
1199 usb_disable_endpoint(dev
, i
, false);
1200 usb_disable_endpoint(dev
, i
+ USB_DIR_IN
, false);
1202 /* Remove endpoints from the host controller internal state */
1203 mutex_lock(hcd
->bandwidth_mutex
);
1204 usb_hcd_alloc_bandwidth(dev
, NULL
, NULL
, NULL
);
1205 mutex_unlock(hcd
->bandwidth_mutex
);
1206 /* Second pass: remove endpoint pointers */
1208 for (i
= skip_ep0
; i
< 16; ++i
) {
1209 usb_disable_endpoint(dev
, i
, true);
1210 usb_disable_endpoint(dev
, i
+ USB_DIR_IN
, true);
1215 * usb_enable_endpoint - Enable an endpoint for USB communications
1216 * @dev: the device whose interface is being enabled
1218 * @reset_ep: flag to reset the endpoint state
1220 * Resets the endpoint state if asked, and sets dev->ep_{in,out} pointers.
1221 * For control endpoints, both the input and output sides are handled.
1223 void usb_enable_endpoint(struct usb_device
*dev
, struct usb_host_endpoint
*ep
,
1226 int epnum
= usb_endpoint_num(&ep
->desc
);
1227 int is_out
= usb_endpoint_dir_out(&ep
->desc
);
1228 int is_control
= usb_endpoint_xfer_control(&ep
->desc
);
1231 usb_hcd_reset_endpoint(dev
, ep
);
1232 if (is_out
|| is_control
)
1233 dev
->ep_out
[epnum
] = ep
;
1234 if (!is_out
|| is_control
)
1235 dev
->ep_in
[epnum
] = ep
;
1240 * usb_enable_interface - Enable all the endpoints for an interface
1241 * @dev: the device whose interface is being enabled
1242 * @intf: pointer to the interface descriptor
1243 * @reset_eps: flag to reset the endpoints' state
1245 * Enables all the endpoints for the interface's current altsetting.
1247 void usb_enable_interface(struct usb_device
*dev
,
1248 struct usb_interface
*intf
, bool reset_eps
)
1250 struct usb_host_interface
*alt
= intf
->cur_altsetting
;
1253 for (i
= 0; i
< alt
->desc
.bNumEndpoints
; ++i
)
1254 usb_enable_endpoint(dev
, &alt
->endpoint
[i
], reset_eps
);
1258 * usb_set_interface - Makes a particular alternate setting be current
1259 * @dev: the device whose interface is being updated
1260 * @interface: the interface being updated
1261 * @alternate: the setting being chosen.
1262 * Context: !in_interrupt ()
1264 * This is used to enable data transfers on interfaces that may not
1265 * be enabled by default. Not all devices support such configurability.
1266 * Only the driver bound to an interface may change its setting.
1268 * Within any given configuration, each interface may have several
1269 * alternative settings. These are often used to control levels of
1270 * bandwidth consumption. For example, the default setting for a high
1271 * speed interrupt endpoint may not send more than 64 bytes per microframe,
1272 * while interrupt transfers of up to 3KBytes per microframe are legal.
1273 * Also, isochronous endpoints may never be part of an
1274 * interface's default setting. To access such bandwidth, alternate
1275 * interface settings must be made current.
1277 * Note that in the Linux USB subsystem, bandwidth associated with
1278 * an endpoint in a given alternate setting is not reserved until an URB
1279 * is submitted that needs that bandwidth. Some other operating systems
1280 * allocate bandwidth early, when a configuration is chosen.
1282 * This call is synchronous, and may not be used in an interrupt context.
1283 * Also, drivers must not change altsettings while urbs are scheduled for
1284 * endpoints in that interface; all such urbs must first be completed
1285 * (perhaps forced by unlinking).
1287 * Return: Zero on success, or else the status code returned by the
1288 * underlying usb_control_msg() call.
1290 int usb_set_interface(struct usb_device
*dev
, int interface
, int alternate
)
1292 struct usb_interface
*iface
;
1293 struct usb_host_interface
*alt
;
1294 struct usb_hcd
*hcd
= bus_to_hcd(dev
->bus
);
1295 int i
, ret
, manual
= 0;
1296 unsigned int epaddr
;
1299 if (dev
->state
== USB_STATE_SUSPENDED
)
1300 return -EHOSTUNREACH
;
1302 iface
= usb_ifnum_to_if(dev
, interface
);
1304 dev_dbg(&dev
->dev
, "selecting invalid interface %d\n",
1308 if (iface
->unregistering
)
1311 alt
= usb_altnum_to_altsetting(iface
, alternate
);
1313 dev_warn(&dev
->dev
, "selecting invalid altsetting %d\n",
1318 /* Make sure we have enough bandwidth for this alternate interface.
1319 * Remove the current alt setting and add the new alt setting.
1321 mutex_lock(hcd
->bandwidth_mutex
);
1322 /* Disable LPM, and re-enable it once the new alt setting is installed,
1323 * so that the xHCI driver can recalculate the U1/U2 timeouts.
1325 if (usb_disable_lpm(dev
)) {
1326 dev_err(&iface
->dev
, "%s Failed to disable LPM\n.", __func__
);
1327 mutex_unlock(hcd
->bandwidth_mutex
);
1330 /* Changing alt-setting also frees any allocated streams */
1331 for (i
= 0; i
< iface
->cur_altsetting
->desc
.bNumEndpoints
; i
++)
1332 iface
->cur_altsetting
->endpoint
[i
].streams
= 0;
1334 ret
= usb_hcd_alloc_bandwidth(dev
, NULL
, iface
->cur_altsetting
, alt
);
1336 dev_info(&dev
->dev
, "Not enough bandwidth for altsetting %d\n",
1338 usb_enable_lpm(dev
);
1339 mutex_unlock(hcd
->bandwidth_mutex
);
1343 if (dev
->quirks
& USB_QUIRK_NO_SET_INTF
)
1346 ret
= usb_control_msg(dev
, usb_sndctrlpipe(dev
, 0),
1347 USB_REQ_SET_INTERFACE
, USB_RECIP_INTERFACE
,
1348 alternate
, interface
, NULL
, 0, 5000);
1350 /* 9.4.10 says devices don't need this and are free to STALL the
1351 * request if the interface only has one alternate setting.
1353 if (ret
== -EPIPE
&& iface
->num_altsetting
== 1) {
1355 "manual set_interface for iface %d, alt %d\n",
1356 interface
, alternate
);
1358 } else if (ret
< 0) {
1359 /* Re-instate the old alt setting */
1360 usb_hcd_alloc_bandwidth(dev
, NULL
, alt
, iface
->cur_altsetting
);
1361 usb_enable_lpm(dev
);
1362 mutex_unlock(hcd
->bandwidth_mutex
);
1365 mutex_unlock(hcd
->bandwidth_mutex
);
1367 /* FIXME drivers shouldn't need to replicate/bugfix the logic here
1368 * when they implement async or easily-killable versions of this or
1369 * other "should-be-internal" functions (like clear_halt).
1370 * should hcd+usbcore postprocess control requests?
1373 /* prevent submissions using previous endpoint settings */
1374 if (iface
->cur_altsetting
!= alt
) {
1375 remove_intf_ep_devs(iface
);
1376 usb_remove_sysfs_intf_files(iface
);
1378 usb_disable_interface(dev
, iface
, true);
1380 iface
->cur_altsetting
= alt
;
1382 /* Now that the interface is installed, re-enable LPM. */
1383 usb_unlocked_enable_lpm(dev
);
1385 /* If the interface only has one altsetting and the device didn't
1386 * accept the request, we attempt to carry out the equivalent action
1387 * by manually clearing the HALT feature for each endpoint in the
1391 for (i
= 0; i
< alt
->desc
.bNumEndpoints
; i
++) {
1392 epaddr
= alt
->endpoint
[i
].desc
.bEndpointAddress
;
1393 pipe
= __create_pipe(dev
,
1394 USB_ENDPOINT_NUMBER_MASK
& epaddr
) |
1395 (usb_endpoint_out(epaddr
) ?
1396 USB_DIR_OUT
: USB_DIR_IN
);
1398 usb_clear_halt(dev
, pipe
);
1402 /* 9.1.1.5: reset toggles for all endpoints in the new altsetting
1405 * Despite EP0 is always present in all interfaces/AS, the list of
1406 * endpoints from the descriptor does not contain EP0. Due to its
1407 * omnipresence one might expect EP0 being considered "affected" by
1408 * any SetInterface request and hence assume toggles need to be reset.
1409 * However, EP0 toggles are re-synced for every individual transfer
1410 * during the SETUP stage - hence EP0 toggles are "don't care" here.
1411 * (Likewise, EP0 never "halts" on well designed devices.)
1413 usb_enable_interface(dev
, iface
, true);
1414 if (device_is_registered(&iface
->dev
)) {
1415 usb_create_sysfs_intf_files(iface
);
1416 create_intf_ep_devs(iface
);
1420 EXPORT_SYMBOL_GPL(usb_set_interface
);
1423 * usb_reset_configuration - lightweight device reset
1424 * @dev: the device whose configuration is being reset
1426 * This issues a standard SET_CONFIGURATION request to the device using
1427 * the current configuration. The effect is to reset most USB-related
1428 * state in the device, including interface altsettings (reset to zero),
1429 * endpoint halts (cleared), and endpoint state (only for bulk and interrupt
1430 * endpoints). Other usbcore state is unchanged, including bindings of
1431 * usb device drivers to interfaces.
1433 * Because this affects multiple interfaces, avoid using this with composite
1434 * (multi-interface) devices. Instead, the driver for each interface may
1435 * use usb_set_interface() on the interfaces it claims. Be careful though;
1436 * some devices don't support the SET_INTERFACE request, and others won't
1437 * reset all the interface state (notably endpoint state). Resetting the whole
1438 * configuration would affect other drivers' interfaces.
1440 * The caller must own the device lock.
1442 * Return: Zero on success, else a negative error code.
1444 int usb_reset_configuration(struct usb_device
*dev
)
1447 struct usb_host_config
*config
;
1448 struct usb_hcd
*hcd
= bus_to_hcd(dev
->bus
);
1450 if (dev
->state
== USB_STATE_SUSPENDED
)
1451 return -EHOSTUNREACH
;
1453 /* caller must have locked the device and must own
1454 * the usb bus readlock (so driver bindings are stable);
1455 * calls during probe() are fine
1458 for (i
= 1; i
< 16; ++i
) {
1459 usb_disable_endpoint(dev
, i
, true);
1460 usb_disable_endpoint(dev
, i
+ USB_DIR_IN
, true);
1463 config
= dev
->actconfig
;
1465 mutex_lock(hcd
->bandwidth_mutex
);
1466 /* Disable LPM, and re-enable it once the configuration is reset, so
1467 * that the xHCI driver can recalculate the U1/U2 timeouts.
1469 if (usb_disable_lpm(dev
)) {
1470 dev_err(&dev
->dev
, "%s Failed to disable LPM\n.", __func__
);
1471 mutex_unlock(hcd
->bandwidth_mutex
);
1474 /* Make sure we have enough bandwidth for each alternate setting 0 */
1475 for (i
= 0; i
< config
->desc
.bNumInterfaces
; i
++) {
1476 struct usb_interface
*intf
= config
->interface
[i
];
1477 struct usb_host_interface
*alt
;
1479 alt
= usb_altnum_to_altsetting(intf
, 0);
1481 alt
= &intf
->altsetting
[0];
1482 if (alt
!= intf
->cur_altsetting
)
1483 retval
= usb_hcd_alloc_bandwidth(dev
, NULL
,
1484 intf
->cur_altsetting
, alt
);
1488 /* If not, reinstate the old alternate settings */
1491 for (i
--; i
>= 0; i
--) {
1492 struct usb_interface
*intf
= config
->interface
[i
];
1493 struct usb_host_interface
*alt
;
1495 alt
= usb_altnum_to_altsetting(intf
, 0);
1497 alt
= &intf
->altsetting
[0];
1498 if (alt
!= intf
->cur_altsetting
)
1499 usb_hcd_alloc_bandwidth(dev
, NULL
,
1500 alt
, intf
->cur_altsetting
);
1502 usb_enable_lpm(dev
);
1503 mutex_unlock(hcd
->bandwidth_mutex
);
1506 retval
= usb_control_msg(dev
, usb_sndctrlpipe(dev
, 0),
1507 USB_REQ_SET_CONFIGURATION
, 0,
1508 config
->desc
.bConfigurationValue
, 0,
1509 NULL
, 0, USB_CTRL_SET_TIMEOUT
);
1511 goto reset_old_alts
;
1512 mutex_unlock(hcd
->bandwidth_mutex
);
1514 /* re-init hc/hcd interface/endpoint state */
1515 for (i
= 0; i
< config
->desc
.bNumInterfaces
; i
++) {
1516 struct usb_interface
*intf
= config
->interface
[i
];
1517 struct usb_host_interface
*alt
;
1519 alt
= usb_altnum_to_altsetting(intf
, 0);
1521 /* No altsetting 0? We'll assume the first altsetting.
1522 * We could use a GetInterface call, but if a device is
1523 * so non-compliant that it doesn't have altsetting 0
1524 * then I wouldn't trust its reply anyway.
1527 alt
= &intf
->altsetting
[0];
1529 if (alt
!= intf
->cur_altsetting
) {
1530 remove_intf_ep_devs(intf
);
1531 usb_remove_sysfs_intf_files(intf
);
1533 intf
->cur_altsetting
= alt
;
1534 usb_enable_interface(dev
, intf
, true);
1535 if (device_is_registered(&intf
->dev
)) {
1536 usb_create_sysfs_intf_files(intf
);
1537 create_intf_ep_devs(intf
);
1540 /* Now that the interfaces are installed, re-enable LPM. */
1541 usb_unlocked_enable_lpm(dev
);
1544 EXPORT_SYMBOL_GPL(usb_reset_configuration
);
1546 static void usb_release_interface(struct device
*dev
)
1548 struct usb_interface
*intf
= to_usb_interface(dev
);
1549 struct usb_interface_cache
*intfc
=
1550 altsetting_to_usb_interface_cache(intf
->altsetting
);
1552 kref_put(&intfc
->ref
, usb_release_interface_cache
);
1553 usb_put_dev(interface_to_usbdev(intf
));
1558 * usb_deauthorize_interface - deauthorize an USB interface
1560 * @intf: USB interface structure
1562 void usb_deauthorize_interface(struct usb_interface
*intf
)
1564 struct device
*dev
= &intf
->dev
;
1566 device_lock(dev
->parent
);
1568 if (intf
->authorized
) {
1570 intf
->authorized
= 0;
1573 usb_forced_unbind_intf(intf
);
1576 device_unlock(dev
->parent
);
1580 * usb_authorize_interface - authorize an USB interface
1582 * @intf: USB interface structure
1584 void usb_authorize_interface(struct usb_interface
*intf
)
1586 struct device
*dev
= &intf
->dev
;
1588 if (!intf
->authorized
) {
1590 intf
->authorized
= 1; /* authorize interface */
1595 static int usb_if_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
1597 struct usb_device
*usb_dev
;
1598 struct usb_interface
*intf
;
1599 struct usb_host_interface
*alt
;
1601 intf
= to_usb_interface(dev
);
1602 usb_dev
= interface_to_usbdev(intf
);
1603 alt
= intf
->cur_altsetting
;
1605 if (add_uevent_var(env
, "INTERFACE=%d/%d/%d",
1606 alt
->desc
.bInterfaceClass
,
1607 alt
->desc
.bInterfaceSubClass
,
1608 alt
->desc
.bInterfaceProtocol
))
1611 if (add_uevent_var(env
,
1613 "v%04Xp%04Xd%04Xdc%02Xdsc%02Xdp%02Xic%02Xisc%02Xip%02Xin%02X",
1614 le16_to_cpu(usb_dev
->descriptor
.idVendor
),
1615 le16_to_cpu(usb_dev
->descriptor
.idProduct
),
1616 le16_to_cpu(usb_dev
->descriptor
.bcdDevice
),
1617 usb_dev
->descriptor
.bDeviceClass
,
1618 usb_dev
->descriptor
.bDeviceSubClass
,
1619 usb_dev
->descriptor
.bDeviceProtocol
,
1620 alt
->desc
.bInterfaceClass
,
1621 alt
->desc
.bInterfaceSubClass
,
1622 alt
->desc
.bInterfaceProtocol
,
1623 alt
->desc
.bInterfaceNumber
))
1629 struct device_type usb_if_device_type
= {
1630 .name
= "usb_interface",
1631 .release
= usb_release_interface
,
1632 .uevent
= usb_if_uevent
,
1635 static struct usb_interface_assoc_descriptor
*find_iad(struct usb_device
*dev
,
1636 struct usb_host_config
*config
,
1639 struct usb_interface_assoc_descriptor
*retval
= NULL
;
1640 struct usb_interface_assoc_descriptor
*intf_assoc
;
1645 for (i
= 0; (i
< USB_MAXIADS
&& config
->intf_assoc
[i
]); i
++) {
1646 intf_assoc
= config
->intf_assoc
[i
];
1647 if (intf_assoc
->bInterfaceCount
== 0)
1650 first_intf
= intf_assoc
->bFirstInterface
;
1651 last_intf
= first_intf
+ (intf_assoc
->bInterfaceCount
- 1);
1652 if (inum
>= first_intf
&& inum
<= last_intf
) {
1654 retval
= intf_assoc
;
1656 dev_err(&dev
->dev
, "Interface #%d referenced"
1657 " by multiple IADs\n", inum
);
1666 * Internal function to queue a device reset
1667 * See usb_queue_reset_device() for more details
1669 static void __usb_queue_reset_device(struct work_struct
*ws
)
1672 struct usb_interface
*iface
=
1673 container_of(ws
, struct usb_interface
, reset_ws
);
1674 struct usb_device
*udev
= interface_to_usbdev(iface
);
1676 rc
= usb_lock_device_for_reset(udev
, iface
);
1678 usb_reset_device(udev
);
1679 usb_unlock_device(udev
);
1681 usb_put_intf(iface
); /* Undo _get_ in usb_queue_reset_device() */
1686 * usb_set_configuration - Makes a particular device setting be current
1687 * @dev: the device whose configuration is being updated
1688 * @configuration: the configuration being chosen.
1689 * Context: !in_interrupt(), caller owns the device lock
1691 * This is used to enable non-default device modes. Not all devices
1692 * use this kind of configurability; many devices only have one
1695 * @configuration is the value of the configuration to be installed.
1696 * According to the USB spec (e.g. section 9.1.1.5), configuration values
1697 * must be non-zero; a value of zero indicates that the device in
1698 * unconfigured. However some devices erroneously use 0 as one of their
1699 * configuration values. To help manage such devices, this routine will
1700 * accept @configuration = -1 as indicating the device should be put in
1701 * an unconfigured state.
1703 * USB device configurations may affect Linux interoperability,
1704 * power consumption and the functionality available. For example,
1705 * the default configuration is limited to using 100mA of bus power,
1706 * so that when certain device functionality requires more power,
1707 * and the device is bus powered, that functionality should be in some
1708 * non-default device configuration. Other device modes may also be
1709 * reflected as configuration options, such as whether two ISDN
1710 * channels are available independently; and choosing between open
1711 * standard device protocols (like CDC) or proprietary ones.
1713 * Note that a non-authorized device (dev->authorized == 0) will only
1714 * be put in unconfigured mode.
1716 * Note that USB has an additional level of device configurability,
1717 * associated with interfaces. That configurability is accessed using
1718 * usb_set_interface().
1720 * This call is synchronous. The calling context must be able to sleep,
1721 * must own the device lock, and must not hold the driver model's USB
1722 * bus mutex; usb interface driver probe() methods cannot use this routine.
1724 * Returns zero on success, or else the status code returned by the
1725 * underlying call that failed. On successful completion, each interface
1726 * in the original device configuration has been destroyed, and each one
1727 * in the new configuration has been probed by all relevant usb device
1728 * drivers currently known to the kernel.
1730 int usb_set_configuration(struct usb_device
*dev
, int configuration
)
1733 struct usb_host_config
*cp
= NULL
;
1734 struct usb_interface
**new_interfaces
= NULL
;
1735 struct usb_hcd
*hcd
= bus_to_hcd(dev
->bus
);
1738 if (dev
->authorized
== 0 || configuration
== -1)
1741 for (i
= 0; i
< dev
->descriptor
.bNumConfigurations
; i
++) {
1742 if (dev
->config
[i
].desc
.bConfigurationValue
==
1744 cp
= &dev
->config
[i
];
1749 if ((!cp
&& configuration
!= 0))
1752 /* The USB spec says configuration 0 means unconfigured.
1753 * But if a device includes a configuration numbered 0,
1754 * we will accept it as a correctly configured state.
1755 * Use -1 if you really want to unconfigure the device.
1757 if (cp
&& configuration
== 0)
1758 dev_warn(&dev
->dev
, "config 0 descriptor??\n");
1760 /* Allocate memory for new interfaces before doing anything else,
1761 * so that if we run out then nothing will have changed. */
1764 nintf
= cp
->desc
.bNumInterfaces
;
1765 new_interfaces
= kmalloc(nintf
* sizeof(*new_interfaces
),
1767 if (!new_interfaces
)
1770 for (; n
< nintf
; ++n
) {
1771 new_interfaces
[n
] = kzalloc(
1772 sizeof(struct usb_interface
),
1774 if (!new_interfaces
[n
]) {
1778 kfree(new_interfaces
[n
]);
1779 kfree(new_interfaces
);
1784 i
= dev
->bus_mA
- usb_get_max_power(dev
, cp
);
1786 dev_warn(&dev
->dev
, "new config #%d exceeds power "
1791 /* Wake up the device so we can send it the Set-Config request */
1792 ret
= usb_autoresume_device(dev
);
1794 goto free_interfaces
;
1796 /* if it's already configured, clear out old state first.
1797 * getting rid of old interfaces means unbinding their drivers.
1799 if (dev
->state
!= USB_STATE_ADDRESS
)
1800 usb_disable_device(dev
, 1); /* Skip ep0 */
1802 /* Get rid of pending async Set-Config requests for this device */
1803 cancel_async_set_config(dev
);
1805 /* Make sure we have bandwidth (and available HCD resources) for this
1806 * configuration. Remove endpoints from the schedule if we're dropping
1807 * this configuration to set configuration 0. After this point, the
1808 * host controller will not allow submissions to dropped endpoints. If
1809 * this call fails, the device state is unchanged.
1811 mutex_lock(hcd
->bandwidth_mutex
);
1812 /* Disable LPM, and re-enable it once the new configuration is
1813 * installed, so that the xHCI driver can recalculate the U1/U2
1816 if (dev
->actconfig
&& usb_disable_lpm(dev
)) {
1817 dev_err(&dev
->dev
, "%s Failed to disable LPM\n.", __func__
);
1818 mutex_unlock(hcd
->bandwidth_mutex
);
1820 goto free_interfaces
;
1822 ret
= usb_hcd_alloc_bandwidth(dev
, cp
, NULL
, NULL
);
1825 usb_enable_lpm(dev
);
1826 mutex_unlock(hcd
->bandwidth_mutex
);
1827 usb_autosuspend_device(dev
);
1828 goto free_interfaces
;
1832 * Initialize the new interface structures and the
1833 * hc/hcd/usbcore interface/endpoint state.
1835 for (i
= 0; i
< nintf
; ++i
) {
1836 struct usb_interface_cache
*intfc
;
1837 struct usb_interface
*intf
;
1838 struct usb_host_interface
*alt
;
1840 cp
->interface
[i
] = intf
= new_interfaces
[i
];
1841 intfc
= cp
->intf_cache
[i
];
1842 intf
->altsetting
= intfc
->altsetting
;
1843 intf
->num_altsetting
= intfc
->num_altsetting
;
1844 intf
->authorized
= !!HCD_INTF_AUTHORIZED(hcd
);
1845 kref_get(&intfc
->ref
);
1847 alt
= usb_altnum_to_altsetting(intf
, 0);
1849 /* No altsetting 0? We'll assume the first altsetting.
1850 * We could use a GetInterface call, but if a device is
1851 * so non-compliant that it doesn't have altsetting 0
1852 * then I wouldn't trust its reply anyway.
1855 alt
= &intf
->altsetting
[0];
1858 find_iad(dev
, cp
, alt
->desc
.bInterfaceNumber
);
1859 intf
->cur_altsetting
= alt
;
1860 usb_enable_interface(dev
, intf
, true);
1861 intf
->dev
.parent
= &dev
->dev
;
1862 intf
->dev
.driver
= NULL
;
1863 intf
->dev
.bus
= &usb_bus_type
;
1864 intf
->dev
.type
= &usb_if_device_type
;
1865 intf
->dev
.groups
= usb_interface_groups
;
1867 * Please refer to usb_alloc_dev() to see why we set
1868 * dma_mask and dma_pfn_offset.
1870 intf
->dev
.dma_mask
= dev
->dev
.dma_mask
;
1871 intf
->dev
.dma_pfn_offset
= dev
->dev
.dma_pfn_offset
;
1872 INIT_WORK(&intf
->reset_ws
, __usb_queue_reset_device
);
1874 device_initialize(&intf
->dev
);
1875 pm_runtime_no_callbacks(&intf
->dev
);
1876 dev_set_name(&intf
->dev
, "%d-%s:%d.%d",
1877 dev
->bus
->busnum
, dev
->devpath
,
1878 configuration
, alt
->desc
.bInterfaceNumber
);
1881 kfree(new_interfaces
);
1883 ret
= usb_control_msg(dev
, usb_sndctrlpipe(dev
, 0),
1884 USB_REQ_SET_CONFIGURATION
, 0, configuration
, 0,
1885 NULL
, 0, USB_CTRL_SET_TIMEOUT
);
1886 if (ret
< 0 && cp
) {
1888 * All the old state is gone, so what else can we do?
1889 * The device is probably useless now anyway.
1891 usb_hcd_alloc_bandwidth(dev
, NULL
, NULL
, NULL
);
1892 for (i
= 0; i
< nintf
; ++i
) {
1893 usb_disable_interface(dev
, cp
->interface
[i
], true);
1894 put_device(&cp
->interface
[i
]->dev
);
1895 cp
->interface
[i
] = NULL
;
1900 dev
->actconfig
= cp
;
1901 mutex_unlock(hcd
->bandwidth_mutex
);
1904 usb_set_device_state(dev
, USB_STATE_ADDRESS
);
1906 /* Leave LPM disabled while the device is unconfigured. */
1907 usb_autosuspend_device(dev
);
1910 usb_set_device_state(dev
, USB_STATE_CONFIGURED
);
1912 if (cp
->string
== NULL
&&
1913 !(dev
->quirks
& USB_QUIRK_CONFIG_INTF_STRINGS
))
1914 cp
->string
= usb_cache_string(dev
, cp
->desc
.iConfiguration
);
1916 /* Now that the interfaces are installed, re-enable LPM. */
1917 usb_unlocked_enable_lpm(dev
);
1918 /* Enable LTM if it was turned off by usb_disable_device. */
1919 usb_enable_ltm(dev
);
1921 /* Now that all the interfaces are set up, register them
1922 * to trigger binding of drivers to interfaces. probe()
1923 * routines may install different altsettings and may
1924 * claim() any interfaces not yet bound. Many class drivers
1925 * need that: CDC, audio, video, etc.
1927 for (i
= 0; i
< nintf
; ++i
) {
1928 struct usb_interface
*intf
= cp
->interface
[i
];
1931 "adding %s (config #%d, interface %d)\n",
1932 dev_name(&intf
->dev
), configuration
,
1933 intf
->cur_altsetting
->desc
.bInterfaceNumber
);
1934 device_enable_async_suspend(&intf
->dev
);
1935 ret
= device_add(&intf
->dev
);
1937 dev_err(&dev
->dev
, "device_add(%s) --> %d\n",
1938 dev_name(&intf
->dev
), ret
);
1941 create_intf_ep_devs(intf
);
1944 usb_autosuspend_device(dev
);
1947 EXPORT_SYMBOL_GPL(usb_set_configuration
);
1949 static LIST_HEAD(set_config_list
);
1950 static DEFINE_SPINLOCK(set_config_lock
);
1952 struct set_config_request
{
1953 struct usb_device
*udev
;
1955 struct work_struct work
;
1956 struct list_head node
;
1959 /* Worker routine for usb_driver_set_configuration() */
1960 static void driver_set_config_work(struct work_struct
*work
)
1962 struct set_config_request
*req
=
1963 container_of(work
, struct set_config_request
, work
);
1964 struct usb_device
*udev
= req
->udev
;
1966 usb_lock_device(udev
);
1967 spin_lock(&set_config_lock
);
1968 list_del(&req
->node
);
1969 spin_unlock(&set_config_lock
);
1971 if (req
->config
>= -1) /* Is req still valid? */
1972 usb_set_configuration(udev
, req
->config
);
1973 usb_unlock_device(udev
);
1978 /* Cancel pending Set-Config requests for a device whose configuration
1981 static void cancel_async_set_config(struct usb_device
*udev
)
1983 struct set_config_request
*req
;
1985 spin_lock(&set_config_lock
);
1986 list_for_each_entry(req
, &set_config_list
, node
) {
1987 if (req
->udev
== udev
)
1988 req
->config
= -999; /* Mark as cancelled */
1990 spin_unlock(&set_config_lock
);
1994 * usb_driver_set_configuration - Provide a way for drivers to change device configurations
1995 * @udev: the device whose configuration is being updated
1996 * @config: the configuration being chosen.
1997 * Context: In process context, must be able to sleep
1999 * Device interface drivers are not allowed to change device configurations.
2000 * This is because changing configurations will destroy the interface the
2001 * driver is bound to and create new ones; it would be like a floppy-disk
2002 * driver telling the computer to replace the floppy-disk drive with a
2005 * Still, in certain specialized circumstances the need may arise. This
2006 * routine gets around the normal restrictions by using a work thread to
2007 * submit the change-config request.
2009 * Return: 0 if the request was successfully queued, error code otherwise.
2010 * The caller has no way to know whether the queued request will eventually
2013 int usb_driver_set_configuration(struct usb_device
*udev
, int config
)
2015 struct set_config_request
*req
;
2017 req
= kmalloc(sizeof(*req
), GFP_KERNEL
);
2021 req
->config
= config
;
2022 INIT_WORK(&req
->work
, driver_set_config_work
);
2024 spin_lock(&set_config_lock
);
2025 list_add(&req
->node
, &set_config_list
);
2026 spin_unlock(&set_config_lock
);
2029 schedule_work(&req
->work
);
2032 EXPORT_SYMBOL_GPL(usb_driver_set_configuration
);
2035 * cdc_parse_cdc_header - parse the extra headers present in CDC devices
2036 * @hdr: the place to put the results of the parsing
2037 * @intf: the interface for which parsing is requested
2038 * @buffer: pointer to the extra headers to be parsed
2039 * @buflen: length of the extra headers
2041 * This evaluates the extra headers present in CDC devices which
2042 * bind the interfaces for data and control and provide details
2043 * about the capabilities of the device.
2045 * Return: number of descriptors parsed or -EINVAL
2046 * if the header is contradictory beyond salvage
2049 int cdc_parse_cdc_header(struct usb_cdc_parsed_header
*hdr
,
2050 struct usb_interface
*intf
,
2054 /* duplicates are ignored */
2055 struct usb_cdc_union_desc
*union_header
= NULL
;
2057 /* duplicates are not tolerated */
2058 struct usb_cdc_header_desc
*header
= NULL
;
2059 struct usb_cdc_ether_desc
*ether
= NULL
;
2060 struct usb_cdc_mdlm_detail_desc
*detail
= NULL
;
2061 struct usb_cdc_mdlm_desc
*desc
= NULL
;
2063 unsigned int elength
;
2066 memset(hdr
, 0x00, sizeof(struct usb_cdc_parsed_header
));
2067 hdr
->phonet_magic_present
= false;
2068 while (buflen
> 0) {
2069 elength
= buffer
[0];
2071 dev_err(&intf
->dev
, "skipping garbage byte\n");
2075 if ((buflen
< elength
) || (elength
< 3)) {
2076 dev_err(&intf
->dev
, "invalid descriptor buffer length\n");
2079 if (buffer
[1] != USB_DT_CS_INTERFACE
) {
2080 dev_err(&intf
->dev
, "skipping garbage\n");
2084 switch (buffer
[2]) {
2085 case USB_CDC_UNION_TYPE
: /* we've found it */
2086 if (elength
< sizeof(struct usb_cdc_union_desc
))
2089 dev_err(&intf
->dev
, "More than one union descriptor, skipping ...\n");
2092 union_header
= (struct usb_cdc_union_desc
*)buffer
;
2094 case USB_CDC_COUNTRY_TYPE
:
2095 if (elength
< sizeof(struct usb_cdc_country_functional_desc
))
2097 hdr
->usb_cdc_country_functional_desc
=
2098 (struct usb_cdc_country_functional_desc
*)buffer
;
2100 case USB_CDC_HEADER_TYPE
:
2101 if (elength
!= sizeof(struct usb_cdc_header_desc
))
2105 header
= (struct usb_cdc_header_desc
*)buffer
;
2107 case USB_CDC_ACM_TYPE
:
2108 if (elength
< sizeof(struct usb_cdc_acm_descriptor
))
2110 hdr
->usb_cdc_acm_descriptor
=
2111 (struct usb_cdc_acm_descriptor
*)buffer
;
2113 case USB_CDC_ETHERNET_TYPE
:
2114 if (elength
!= sizeof(struct usb_cdc_ether_desc
))
2118 ether
= (struct usb_cdc_ether_desc
*)buffer
;
2120 case USB_CDC_CALL_MANAGEMENT_TYPE
:
2121 if (elength
< sizeof(struct usb_cdc_call_mgmt_descriptor
))
2123 hdr
->usb_cdc_call_mgmt_descriptor
=
2124 (struct usb_cdc_call_mgmt_descriptor
*)buffer
;
2126 case USB_CDC_DMM_TYPE
:
2127 if (elength
< sizeof(struct usb_cdc_dmm_desc
))
2129 hdr
->usb_cdc_dmm_desc
=
2130 (struct usb_cdc_dmm_desc
*)buffer
;
2132 case USB_CDC_MDLM_TYPE
:
2133 if (elength
< sizeof(struct usb_cdc_mdlm_desc
*))
2137 desc
= (struct usb_cdc_mdlm_desc
*)buffer
;
2139 case USB_CDC_MDLM_DETAIL_TYPE
:
2140 if (elength
< sizeof(struct usb_cdc_mdlm_detail_desc
*))
2144 detail
= (struct usb_cdc_mdlm_detail_desc
*)buffer
;
2146 case USB_CDC_NCM_TYPE
:
2147 if (elength
< sizeof(struct usb_cdc_ncm_desc
))
2149 hdr
->usb_cdc_ncm_desc
= (struct usb_cdc_ncm_desc
*)buffer
;
2151 case USB_CDC_MBIM_TYPE
:
2152 if (elength
< sizeof(struct usb_cdc_mbim_desc
))
2155 hdr
->usb_cdc_mbim_desc
= (struct usb_cdc_mbim_desc
*)buffer
;
2157 case USB_CDC_MBIM_EXTENDED_TYPE
:
2158 if (elength
< sizeof(struct usb_cdc_mbim_extended_desc
))
2160 hdr
->usb_cdc_mbim_extended_desc
=
2161 (struct usb_cdc_mbim_extended_desc
*)buffer
;
2163 case CDC_PHONET_MAGIC_NUMBER
:
2164 hdr
->phonet_magic_present
= true;
2168 * there are LOTS more CDC descriptors that
2169 * could legitimately be found here.
2171 dev_dbg(&intf
->dev
, "Ignoring descriptor: type %02x, length %ud\n",
2172 buffer
[2], elength
);
2180 hdr
->usb_cdc_union_desc
= union_header
;
2181 hdr
->usb_cdc_header_desc
= header
;
2182 hdr
->usb_cdc_mdlm_detail_desc
= detail
;
2183 hdr
->usb_cdc_mdlm_desc
= desc
;
2184 hdr
->usb_cdc_ether_desc
= ether
;
2188 EXPORT_SYMBOL(cdc_parse_cdc_header
);