2 * message.c - synchronous message handling
5 #include <linux/pci.h> /* for scatterlist macros */
7 #include <linux/module.h>
8 #include <linux/slab.h>
9 #include <linux/init.h>
11 #include <linux/timer.h>
12 #include <linux/ctype.h>
13 #include <linux/nls.h>
14 #include <linux/device.h>
15 #include <linux/scatterlist.h>
16 #include <linux/usb/quirks.h>
17 #include <asm/byteorder.h>
19 #include "hcd.h" /* for usbcore internals */
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 * If successful, it returns the number of bytes transferred, otherwise a
123 * negative error number.
125 * Don't use this function from within an interrupt context, like a bottom half
126 * handler. If you need an asynchronous message, or need to send a message
127 * from within interrupt context, use usb_submit_urb().
128 * If a thread in your driver uses this call, make sure your disconnect()
129 * method can wait for it to complete. Since you don't have a handle on the
130 * URB used, you can't cancel the request.
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 /* dbg("usb_control_msg"); */
151 ret
= usb_internal_control_msg(dev
, pipe
, dr
, data
, size
, timeout
);
157 EXPORT_SYMBOL_GPL(usb_control_msg
);
160 * usb_interrupt_msg - Builds an interrupt urb, sends it off and waits for completion
161 * @usb_dev: pointer to the usb device to send the message to
162 * @pipe: endpoint "pipe" to send the message to
163 * @data: pointer to the data to send
164 * @len: length in bytes of the data to send
165 * @actual_length: pointer to a location to put the actual length transferred
167 * @timeout: time in msecs to wait for the message to complete before
168 * timing out (if 0 the wait is forever)
170 * Context: !in_interrupt ()
172 * This function sends a simple interrupt message to a specified endpoint and
173 * waits for the message to complete, or timeout.
175 * If successful, it returns 0, otherwise a negative error number. The number
176 * of actual bytes transferred will be stored in the actual_length paramater.
178 * Don't use this function from within an interrupt context, like a bottom half
179 * handler. If you need an asynchronous message, or need to send a message
180 * from within interrupt context, use usb_submit_urb() If a thread in your
181 * driver uses this call, make sure your disconnect() method can wait for it to
182 * complete. Since you don't have a handle on the URB used, you can't cancel
185 int usb_interrupt_msg(struct usb_device
*usb_dev
, unsigned int pipe
,
186 void *data
, int len
, int *actual_length
, int timeout
)
188 return usb_bulk_msg(usb_dev
, pipe
, data
, len
, actual_length
, timeout
);
190 EXPORT_SYMBOL_GPL(usb_interrupt_msg
);
193 * usb_bulk_msg - Builds a bulk urb, sends it off and waits for completion
194 * @usb_dev: pointer to the usb device to send the message to
195 * @pipe: endpoint "pipe" to send the message to
196 * @data: pointer to the data to send
197 * @len: length in bytes of the data to send
198 * @actual_length: pointer to a location to put the actual length transferred
200 * @timeout: time in msecs to wait for the message to complete before
201 * timing out (if 0 the wait is forever)
203 * Context: !in_interrupt ()
205 * This function sends a simple bulk message to a specified endpoint
206 * and waits for the message to complete, or timeout.
208 * If successful, it returns 0, otherwise a negative error number. The number
209 * of actual bytes transferred will be stored in the actual_length paramater.
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.
223 int usb_bulk_msg(struct usb_device
*usb_dev
, unsigned int pipe
,
224 void *data
, int len
, int *actual_length
, int timeout
)
227 struct usb_host_endpoint
*ep
;
229 ep
= (usb_pipein(pipe
) ? usb_dev
->ep_in
: usb_dev
->ep_out
)
230 [usb_pipeendpoint(pipe
)];
234 urb
= usb_alloc_urb(0, GFP_KERNEL
);
238 if ((ep
->desc
.bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) ==
239 USB_ENDPOINT_XFER_INT
) {
240 pipe
= (pipe
& ~(3 << 30)) | (PIPE_INTERRUPT
<< 30);
241 usb_fill_int_urb(urb
, usb_dev
, pipe
, data
, len
,
242 usb_api_blocking_completion
, NULL
,
245 usb_fill_bulk_urb(urb
, usb_dev
, pipe
, data
, len
,
246 usb_api_blocking_completion
, NULL
);
248 return usb_start_wait_urb(urb
, timeout
, actual_length
);
250 EXPORT_SYMBOL_GPL(usb_bulk_msg
);
252 /*-------------------------------------------------------------------*/
254 static void sg_clean(struct usb_sg_request
*io
)
257 while (io
->entries
--)
258 usb_free_urb(io
->urbs
[io
->entries
]);
262 if (io
->dev
->dev
.dma_mask
!= NULL
)
263 usb_buffer_unmap_sg(io
->dev
, usb_pipein(io
->pipe
),
268 static void sg_complete(struct urb
*urb
)
270 struct usb_sg_request
*io
= urb
->context
;
271 int status
= urb
->status
;
273 spin_lock(&io
->lock
);
275 /* In 2.5 we require hcds' endpoint queues not to progress after fault
276 * reports, until the completion callback (this!) returns. That lets
277 * device driver code (like this routine) unlink queued urbs first,
278 * if it needs to, since the HC won't work on them at all. So it's
279 * not possible for page N+1 to overwrite page N, and so on.
281 * That's only for "hard" faults; "soft" faults (unlinks) sometimes
282 * complete before the HCD can get requests away from hardware,
283 * though never during cleanup after a hard fault.
286 && (io
->status
!= -ECONNRESET
287 || status
!= -ECONNRESET
)
288 && urb
->actual_length
) {
289 dev_err(io
->dev
->bus
->controller
,
290 "dev %s ep%d%s scatterlist error %d/%d\n",
292 usb_endpoint_num(&urb
->ep
->desc
),
293 usb_urb_dir_in(urb
) ? "in" : "out",
298 if (io
->status
== 0 && status
&& status
!= -ECONNRESET
) {
299 int i
, found
, retval
;
303 /* the previous urbs, and this one, completed already.
304 * unlink pending urbs so they won't rx/tx bad data.
305 * careful: unlink can sometimes be synchronous...
307 spin_unlock(&io
->lock
);
308 for (i
= 0, found
= 0; i
< io
->entries
; i
++) {
309 if (!io
->urbs
[i
] || !io
->urbs
[i
]->dev
)
312 retval
= usb_unlink_urb(io
->urbs
[i
]);
313 if (retval
!= -EINPROGRESS
&&
316 dev_err(&io
->dev
->dev
,
317 "%s, unlink --> %d\n",
319 } else if (urb
== io
->urbs
[i
])
322 spin_lock(&io
->lock
);
326 /* on the last completion, signal usb_sg_wait() */
327 io
->bytes
+= urb
->actual_length
;
330 complete(&io
->complete
);
332 spin_unlock(&io
->lock
);
337 * usb_sg_init - initializes scatterlist-based bulk/interrupt I/O request
338 * @io: request block being initialized. until usb_sg_wait() returns,
339 * treat this as a pointer to an opaque block of memory,
340 * @dev: the usb device that will send or receive the data
341 * @pipe: endpoint "pipe" used to transfer the data
342 * @period: polling rate for interrupt endpoints, in frames or
343 * (for high speed endpoints) microframes; ignored for bulk
344 * @sg: scatterlist entries
345 * @nents: how many entries in the scatterlist
346 * @length: how many bytes to send from the scatterlist, or zero to
347 * send every byte identified in the list.
348 * @mem_flags: SLAB_* flags affecting memory allocations in this call
350 * Returns zero for success, else a negative errno value. This initializes a
351 * scatter/gather request, allocating resources such as I/O mappings and urb
352 * memory (except maybe memory used by USB controller drivers).
354 * The request must be issued using usb_sg_wait(), which waits for the I/O to
355 * complete (or to be canceled) and then cleans up all resources allocated by
358 * The request may be canceled with usb_sg_cancel(), either before or after
359 * usb_sg_wait() is called.
361 int usb_sg_init(struct usb_sg_request
*io
, struct usb_device
*dev
,
362 unsigned pipe
, unsigned period
, struct scatterlist
*sg
,
363 int nents
, size_t length
, gfp_t mem_flags
)
370 if (!io
|| !dev
|| !sg
371 || usb_pipecontrol(pipe
)
372 || usb_pipeisoc(pipe
)
376 spin_lock_init(&io
->lock
);
382 /* not all host controllers use DMA (like the mainstream pci ones);
383 * they can use PIO (sl811) or be software over another transport.
385 dma
= (dev
->dev
.dma_mask
!= NULL
);
387 io
->entries
= usb_buffer_map_sg(dev
, usb_pipein(pipe
),
392 /* initialize all the urbs we'll use */
393 if (io
->entries
<= 0)
396 if (dev
->bus
->sg_tablesize
> 0) {
397 io
->urbs
= kmalloc(sizeof *io
->urbs
, mem_flags
);
400 io
->urbs
= kmalloc(io
->entries
* sizeof *io
->urbs
, mem_flags
);
406 urb_flags
= URB_NO_INTERRUPT
;
408 urb_flags
|= URB_NO_TRANSFER_DMA_MAP
;
409 if (usb_pipein(pipe
))
410 urb_flags
|= URB_SHORT_NOT_OK
;
413 io
->urbs
[0] = usb_alloc_urb(0, mem_flags
);
419 io
->urbs
[0]->dev
= NULL
;
420 io
->urbs
[0]->pipe
= pipe
;
421 io
->urbs
[0]->interval
= period
;
422 io
->urbs
[0]->transfer_flags
= urb_flags
;
424 io
->urbs
[0]->complete
= sg_complete
;
425 io
->urbs
[0]->context
= io
;
426 /* A length of zero means transfer the whole sg list */
427 io
->urbs
[0]->transfer_buffer_length
= length
;
429 for_each_sg(sg
, sg
, io
->entries
, i
) {
430 io
->urbs
[0]->transfer_buffer_length
+=
434 io
->urbs
[0]->sg
= io
;
435 io
->urbs
[0]->num_sgs
= io
->entries
;
438 for_each_sg(sg
, sg
, io
->entries
, i
) {
441 io
->urbs
[i
] = usb_alloc_urb(0, mem_flags
);
447 io
->urbs
[i
]->dev
= NULL
;
448 io
->urbs
[i
]->pipe
= pipe
;
449 io
->urbs
[i
]->interval
= period
;
450 io
->urbs
[i
]->transfer_flags
= urb_flags
;
452 io
->urbs
[i
]->complete
= sg_complete
;
453 io
->urbs
[i
]->context
= io
;
456 * Some systems need to revert to PIO when DMA is temporarily
457 * unavailable. For their sakes, both transfer_buffer and
458 * transfer_dma are set when possible.
460 * Note that if IOMMU coalescing occurred, we cannot
461 * trust sg_page anymore, so check if S/G list shrunk.
463 if (io
->nents
== io
->entries
&& !PageHighMem(sg_page(sg
)))
464 io
->urbs
[i
]->transfer_buffer
= sg_virt(sg
);
466 io
->urbs
[i
]->transfer_buffer
= NULL
;
469 io
->urbs
[i
]->transfer_dma
= sg_dma_address(sg
);
470 len
= sg_dma_len(sg
);
472 /* hc may use _only_ transfer_buffer */
477 len
= min_t(unsigned, len
, length
);
482 io
->urbs
[i
]->transfer_buffer_length
= len
;
484 io
->urbs
[--i
]->transfer_flags
&= ~URB_NO_INTERRUPT
;
487 /* transaction state */
488 io
->count
= io
->entries
;
491 init_completion(&io
->complete
);
498 EXPORT_SYMBOL_GPL(usb_sg_init
);
501 * usb_sg_wait - synchronously execute scatter/gather request
502 * @io: request block handle, as initialized with usb_sg_init().
503 * some fields become accessible when this call returns.
504 * Context: !in_interrupt ()
506 * This function blocks until the specified I/O operation completes. It
507 * leverages the grouping of the related I/O requests to get good transfer
508 * rates, by queueing the requests. At higher speeds, such queuing can
509 * significantly improve USB throughput.
511 * There are three kinds of completion for this function.
512 * (1) success, where io->status is zero. The number of io->bytes
513 * transferred is as requested.
514 * (2) error, where io->status is a negative errno value. The number
515 * of io->bytes transferred before the error is usually less
516 * than requested, and can be nonzero.
517 * (3) cancellation, a type of error with status -ECONNRESET that
518 * is initiated by usb_sg_cancel().
520 * When this function returns, all memory allocated through usb_sg_init() or
521 * this call will have been freed. The request block parameter may still be
522 * passed to usb_sg_cancel(), or it may be freed. It could also be
523 * reinitialized and then reused.
525 * Data Transfer Rates:
527 * Bulk transfers are valid for full or high speed endpoints.
528 * The best full speed data rate is 19 packets of 64 bytes each
529 * per frame, or 1216 bytes per millisecond.
530 * The best high speed data rate is 13 packets of 512 bytes each
531 * per microframe, or 52 KBytes per millisecond.
533 * The reason to use interrupt transfers through this API would most likely
534 * be to reserve high speed bandwidth, where up to 24 KBytes per millisecond
535 * could be transferred. That capability is less useful for low or full
536 * speed interrupt endpoints, which allow at most one packet per millisecond,
537 * of at most 8 or 64 bytes (respectively).
539 * It is not necessary to call this function to reserve bandwidth for devices
540 * under an xHCI host controller, as the bandwidth is reserved when the
541 * configuration or interface alt setting is selected.
543 void usb_sg_wait(struct usb_sg_request
*io
)
546 int entries
= io
->entries
;
548 /* queue the urbs. */
549 spin_lock_irq(&io
->lock
);
551 while (i
< entries
&& !io
->status
) {
554 io
->urbs
[i
]->dev
= io
->dev
;
555 retval
= usb_submit_urb(io
->urbs
[i
], GFP_ATOMIC
);
557 /* after we submit, let completions or cancelations fire;
558 * we handshake using io->status.
560 spin_unlock_irq(&io
->lock
);
562 /* maybe we retrying will recover */
563 case -ENXIO
: /* hc didn't queue this one */
566 io
->urbs
[i
]->dev
= NULL
;
571 /* no error? continue immediately.
573 * NOTE: to work better with UHCI (4K I/O buffer may
574 * need 3K of TDs) it may be good to limit how many
575 * URBs are queued at once; N milliseconds?
582 /* fail any uncompleted urbs */
584 io
->urbs
[i
]->dev
= NULL
;
585 io
->urbs
[i
]->status
= retval
;
586 dev_dbg(&io
->dev
->dev
, "%s, submit --> %d\n",
590 spin_lock_irq(&io
->lock
);
591 if (retval
&& (io
->status
== 0 || io
->status
== -ECONNRESET
))
594 io
->count
-= entries
- i
;
596 complete(&io
->complete
);
597 spin_unlock_irq(&io
->lock
);
599 /* OK, yes, this could be packaged as non-blocking.
600 * So could the submit loop above ... but it's easier to
601 * solve neither problem than to solve both!
603 wait_for_completion(&io
->complete
);
607 EXPORT_SYMBOL_GPL(usb_sg_wait
);
610 * usb_sg_cancel - stop scatter/gather i/o issued by usb_sg_wait()
611 * @io: request block, initialized with usb_sg_init()
613 * This stops a request after it has been started by usb_sg_wait().
614 * It can also prevents one initialized by usb_sg_init() from starting,
615 * so that call just frees resources allocated to the request.
617 void usb_sg_cancel(struct usb_sg_request
*io
)
621 spin_lock_irqsave(&io
->lock
, flags
);
623 /* shut everything down, if it didn't already */
627 io
->status
= -ECONNRESET
;
628 spin_unlock(&io
->lock
);
629 for (i
= 0; i
< io
->entries
; i
++) {
632 if (!io
->urbs
[i
]->dev
)
634 retval
= usb_unlink_urb(io
->urbs
[i
]);
635 if (retval
!= -EINPROGRESS
&& retval
!= -EBUSY
)
636 dev_warn(&io
->dev
->dev
, "%s, unlink --> %d\n",
639 spin_lock(&io
->lock
);
641 spin_unlock_irqrestore(&io
->lock
, flags
);
643 EXPORT_SYMBOL_GPL(usb_sg_cancel
);
645 /*-------------------------------------------------------------------*/
648 * usb_get_descriptor - issues a generic GET_DESCRIPTOR request
649 * @dev: the device whose descriptor is being retrieved
650 * @type: the descriptor type (USB_DT_*)
651 * @index: the number of the descriptor
652 * @buf: where to put the descriptor
653 * @size: how big is "buf"?
654 * Context: !in_interrupt ()
656 * Gets a USB descriptor. Convenience functions exist to simplify
657 * getting some types of descriptors. Use
658 * usb_get_string() or usb_string() for USB_DT_STRING.
659 * Device (USB_DT_DEVICE) and configuration descriptors (USB_DT_CONFIG)
660 * are part of the device structure.
661 * In addition to a number of USB-standard descriptors, some
662 * devices also use class-specific or vendor-specific descriptors.
664 * This call is synchronous, and may not be used in an interrupt context.
666 * Returns the number of bytes received on success, or else the status code
667 * returned by the underlying usb_control_msg() call.
669 int usb_get_descriptor(struct usb_device
*dev
, unsigned char type
,
670 unsigned char index
, void *buf
, int size
)
675 memset(buf
, 0, size
); /* Make sure we parse really received data */
677 for (i
= 0; i
< 3; ++i
) {
678 /* retry on length 0 or error; some devices are flakey */
679 result
= usb_control_msg(dev
, usb_rcvctrlpipe(dev
, 0),
680 USB_REQ_GET_DESCRIPTOR
, USB_DIR_IN
,
681 (type
<< 8) + index
, 0, buf
, size
,
682 USB_CTRL_GET_TIMEOUT
);
683 if (result
<= 0 && result
!= -ETIMEDOUT
)
685 if (result
> 1 && ((u8
*)buf
)[1] != type
) {
693 EXPORT_SYMBOL_GPL(usb_get_descriptor
);
696 * usb_get_string - gets a string descriptor
697 * @dev: the device whose string descriptor is being retrieved
698 * @langid: code for language chosen (from string descriptor zero)
699 * @index: the number of the descriptor
700 * @buf: where to put the string
701 * @size: how big is "buf"?
702 * Context: !in_interrupt ()
704 * Retrieves a string, encoded using UTF-16LE (Unicode, 16 bits per character,
705 * in little-endian byte order).
706 * The usb_string() function will often be a convenient way to turn
707 * these strings into kernel-printable form.
709 * Strings may be referenced in device, configuration, interface, or other
710 * descriptors, and could also be used in vendor-specific ways.
712 * This call is synchronous, and may not be used in an interrupt context.
714 * Returns the number of bytes received on success, or else the status code
715 * returned by the underlying usb_control_msg() call.
717 static int usb_get_string(struct usb_device
*dev
, unsigned short langid
,
718 unsigned char index
, void *buf
, int size
)
723 for (i
= 0; i
< 3; ++i
) {
724 /* retry on length 0 or stall; some devices are flakey */
725 result
= usb_control_msg(dev
, usb_rcvctrlpipe(dev
, 0),
726 USB_REQ_GET_DESCRIPTOR
, USB_DIR_IN
,
727 (USB_DT_STRING
<< 8) + index
, langid
, buf
, size
,
728 USB_CTRL_GET_TIMEOUT
);
729 if (result
== 0 || result
== -EPIPE
)
731 if (result
> 1 && ((u8
*) buf
)[1] != USB_DT_STRING
) {
740 static void usb_try_string_workarounds(unsigned char *buf
, int *length
)
742 int newlength
, oldlength
= *length
;
744 for (newlength
= 2; newlength
+ 1 < oldlength
; newlength
+= 2)
745 if (!isprint(buf
[newlength
]) || buf
[newlength
+ 1])
754 static int usb_string_sub(struct usb_device
*dev
, unsigned int langid
,
755 unsigned int index
, unsigned char *buf
)
759 /* Try to read the string descriptor by asking for the maximum
760 * possible number of bytes */
761 if (dev
->quirks
& USB_QUIRK_STRING_FETCH_255
)
764 rc
= usb_get_string(dev
, langid
, index
, buf
, 255);
766 /* If that failed try to read the descriptor length, then
767 * ask for just that many bytes */
769 rc
= usb_get_string(dev
, langid
, index
, buf
, 2);
771 rc
= usb_get_string(dev
, langid
, index
, buf
, buf
[0]);
775 if (!buf
[0] && !buf
[1])
776 usb_try_string_workarounds(buf
, &rc
);
778 /* There might be extra junk at the end of the descriptor */
782 rc
= rc
- (rc
& 1); /* force a multiple of two */
786 rc
= (rc
< 0 ? rc
: -EINVAL
);
791 static int usb_get_langid(struct usb_device
*dev
, unsigned char *tbuf
)
795 if (dev
->have_langid
)
798 if (dev
->string_langid
< 0)
801 err
= usb_string_sub(dev
, 0, 0, tbuf
);
803 /* If the string was reported but is malformed, default to english
805 if (err
== -ENODATA
|| (err
> 0 && err
< 4)) {
806 dev
->string_langid
= 0x0409;
807 dev
->have_langid
= 1;
809 "string descriptor 0 malformed (err = %d), "
810 "defaulting to 0x%04x\n",
811 err
, dev
->string_langid
);
815 /* In case of all other errors, we assume the device is not able to
816 * deal with strings at all. Set string_langid to -1 in order to
817 * prevent any string to be retrieved from the device */
819 dev_err(&dev
->dev
, "string descriptor 0 read error: %d\n",
821 dev
->string_langid
= -1;
825 /* always use the first langid listed */
826 dev
->string_langid
= tbuf
[2] | (tbuf
[3] << 8);
827 dev
->have_langid
= 1;
828 dev_dbg(&dev
->dev
, "default language 0x%04x\n",
834 * usb_string - returns UTF-8 version of a string descriptor
835 * @dev: the device whose string descriptor is being retrieved
836 * @index: the number of the descriptor
837 * @buf: where to put the string
838 * @size: how big is "buf"?
839 * Context: !in_interrupt ()
841 * This converts the UTF-16LE encoded strings returned by devices, from
842 * usb_get_string_descriptor(), to null-terminated UTF-8 encoded ones
843 * that are more usable in most kernel contexts. Note that this function
844 * chooses strings in the first language supported by the device.
846 * This call is synchronous, and may not be used in an interrupt context.
848 * Returns length of the string (>= 0) or usb_control_msg status (< 0).
850 int usb_string(struct usb_device
*dev
, int index
, char *buf
, size_t size
)
855 if (dev
->state
== USB_STATE_SUSPENDED
)
856 return -EHOSTUNREACH
;
857 if (size
<= 0 || !buf
|| !index
)
860 tbuf
= kmalloc(256, GFP_NOIO
);
864 err
= usb_get_langid(dev
, tbuf
);
868 err
= usb_string_sub(dev
, dev
->string_langid
, index
, tbuf
);
872 size
--; /* leave room for trailing NULL char in output buffer */
873 err
= utf16s_to_utf8s((wchar_t *) &tbuf
[2], (err
- 2) / 2,
874 UTF16_LITTLE_ENDIAN
, buf
, size
);
877 if (tbuf
[1] != USB_DT_STRING
)
879 "wrong descriptor type %02x for string %d (\"%s\")\n",
880 tbuf
[1], index
, buf
);
886 EXPORT_SYMBOL_GPL(usb_string
);
888 /* one UTF-8-encoded 16-bit character has at most three bytes */
889 #define MAX_USB_STRING_SIZE (127 * 3 + 1)
892 * usb_cache_string - read a string descriptor and cache it for later use
893 * @udev: the device whose string descriptor is being read
894 * @index: the descriptor index
896 * Returns a pointer to a kmalloc'ed buffer containing the descriptor string,
897 * or NULL if the index is 0 or the string could not be read.
899 char *usb_cache_string(struct usb_device
*udev
, int index
)
902 char *smallbuf
= NULL
;
908 buf
= kmalloc(MAX_USB_STRING_SIZE
, GFP_KERNEL
);
910 len
= usb_string(udev
, index
, buf
, MAX_USB_STRING_SIZE
);
912 smallbuf
= kmalloc(++len
, GFP_KERNEL
);
915 memcpy(smallbuf
, buf
, len
);
923 * usb_get_device_descriptor - (re)reads the device descriptor (usbcore)
924 * @dev: the device whose device descriptor is being updated
925 * @size: how much of the descriptor to read
926 * Context: !in_interrupt ()
928 * Updates the copy of the device descriptor stored in the device structure,
929 * which dedicates space for this purpose.
931 * Not exported, only for use by the core. If drivers really want to read
932 * the device descriptor directly, they can call usb_get_descriptor() with
933 * type = USB_DT_DEVICE and index = 0.
935 * This call is synchronous, and may not be used in an interrupt context.
937 * Returns the number of bytes received on success, or else the status code
938 * returned by the underlying usb_control_msg() call.
940 int usb_get_device_descriptor(struct usb_device
*dev
, unsigned int size
)
942 struct usb_device_descriptor
*desc
;
945 if (size
> sizeof(*desc
))
947 desc
= kmalloc(sizeof(*desc
), GFP_NOIO
);
951 ret
= usb_get_descriptor(dev
, USB_DT_DEVICE
, 0, desc
, size
);
953 memcpy(&dev
->descriptor
, desc
, size
);
959 * usb_get_status - issues a GET_STATUS call
960 * @dev: the device whose status is being checked
961 * @type: USB_RECIP_*; for device, interface, or endpoint
962 * @target: zero (for device), else interface or endpoint number
963 * @data: pointer to two bytes of bitmap data
964 * Context: !in_interrupt ()
966 * Returns device, interface, or endpoint status. Normally only of
967 * interest to see if the device is self powered, or has enabled the
968 * remote wakeup facility; or whether a bulk or interrupt endpoint
969 * is halted ("stalled").
971 * Bits in these status bitmaps are set using the SET_FEATURE request,
972 * and cleared using the CLEAR_FEATURE request. The usb_clear_halt()
973 * function should be used to clear halt ("stall") status.
975 * This call is synchronous, and may not be used in an interrupt context.
977 * Returns the number of bytes received on success, or else the status code
978 * returned by the underlying usb_control_msg() call.
980 int usb_get_status(struct usb_device
*dev
, int type
, int target
, void *data
)
983 u16
*status
= kmalloc(sizeof(*status
), GFP_KERNEL
);
988 ret
= usb_control_msg(dev
, usb_rcvctrlpipe(dev
, 0),
989 USB_REQ_GET_STATUS
, USB_DIR_IN
| type
, 0, target
, status
,
990 sizeof(*status
), USB_CTRL_GET_TIMEOUT
);
992 *(u16
*)data
= *status
;
996 EXPORT_SYMBOL_GPL(usb_get_status
);
999 * usb_clear_halt - tells device to clear endpoint halt/stall condition
1000 * @dev: device whose endpoint is halted
1001 * @pipe: endpoint "pipe" being cleared
1002 * Context: !in_interrupt ()
1004 * This is used to clear halt conditions for bulk and interrupt endpoints,
1005 * as reported by URB completion status. Endpoints that are halted are
1006 * sometimes referred to as being "stalled". Such endpoints are unable
1007 * to transmit or receive data until the halt status is cleared. Any URBs
1008 * queued for such an endpoint should normally be unlinked by the driver
1009 * before clearing the halt condition, as described in sections 5.7.5
1010 * and 5.8.5 of the USB 2.0 spec.
1012 * Note that control and isochronous endpoints don't halt, although control
1013 * endpoints report "protocol stall" (for unsupported requests) using the
1014 * same status code used to report a true stall.
1016 * This call is synchronous, and may not be used in an interrupt context.
1018 * Returns zero on success, or else the status code returned by the
1019 * underlying usb_control_msg() call.
1021 int usb_clear_halt(struct usb_device
*dev
, int pipe
)
1024 int endp
= usb_pipeendpoint(pipe
);
1026 if (usb_pipein(pipe
))
1029 /* we don't care if it wasn't halted first. in fact some devices
1030 * (like some ibmcam model 1 units) seem to expect hosts to make
1031 * this request for iso endpoints, which can't halt!
1033 result
= usb_control_msg(dev
, usb_sndctrlpipe(dev
, 0),
1034 USB_REQ_CLEAR_FEATURE
, USB_RECIP_ENDPOINT
,
1035 USB_ENDPOINT_HALT
, endp
, NULL
, 0,
1036 USB_CTRL_SET_TIMEOUT
);
1038 /* don't un-halt or force to DATA0 except on success */
1042 /* NOTE: seems like Microsoft and Apple don't bother verifying
1043 * the clear "took", so some devices could lock up if you check...
1044 * such as the Hagiwara FlashGate DUAL. So we won't bother.
1046 * NOTE: make sure the logic here doesn't diverge much from
1047 * the copy in usb-storage, for as long as we need two copies.
1050 usb_reset_endpoint(dev
, endp
);
1054 EXPORT_SYMBOL_GPL(usb_clear_halt
);
1056 static int create_intf_ep_devs(struct usb_interface
*intf
)
1058 struct usb_device
*udev
= interface_to_usbdev(intf
);
1059 struct usb_host_interface
*alt
= intf
->cur_altsetting
;
1062 if (intf
->ep_devs_created
|| intf
->unregistering
)
1065 for (i
= 0; i
< alt
->desc
.bNumEndpoints
; ++i
)
1066 (void) usb_create_ep_devs(&intf
->dev
, &alt
->endpoint
[i
], udev
);
1067 intf
->ep_devs_created
= 1;
1071 static void remove_intf_ep_devs(struct usb_interface
*intf
)
1073 struct usb_host_interface
*alt
= intf
->cur_altsetting
;
1076 if (!intf
->ep_devs_created
)
1079 for (i
= 0; i
< alt
->desc
.bNumEndpoints
; ++i
)
1080 usb_remove_ep_devs(&alt
->endpoint
[i
]);
1081 intf
->ep_devs_created
= 0;
1085 * usb_disable_endpoint -- Disable an endpoint by address
1086 * @dev: the device whose endpoint is being disabled
1087 * @epaddr: the endpoint's address. Endpoint number for output,
1088 * endpoint number + USB_DIR_IN for input
1089 * @reset_hardware: flag to erase any endpoint state stored in the
1090 * controller hardware
1092 * Disables the endpoint for URB submission and nukes all pending URBs.
1093 * If @reset_hardware is set then also deallocates hcd/hardware state
1096 void usb_disable_endpoint(struct usb_device
*dev
, unsigned int epaddr
,
1097 bool reset_hardware
)
1099 unsigned int epnum
= epaddr
& USB_ENDPOINT_NUMBER_MASK
;
1100 struct usb_host_endpoint
*ep
;
1105 if (usb_endpoint_out(epaddr
)) {
1106 ep
= dev
->ep_out
[epnum
];
1108 dev
->ep_out
[epnum
] = NULL
;
1110 ep
= dev
->ep_in
[epnum
];
1112 dev
->ep_in
[epnum
] = NULL
;
1116 usb_hcd_flush_endpoint(dev
, ep
);
1118 usb_hcd_disable_endpoint(dev
, ep
);
1123 * usb_reset_endpoint - Reset an endpoint's state.
1124 * @dev: the device whose endpoint is to be reset
1125 * @epaddr: the endpoint's address. Endpoint number for output,
1126 * endpoint number + USB_DIR_IN for input
1128 * Resets any host-side endpoint state such as the toggle bit,
1129 * sequence number or current window.
1131 void usb_reset_endpoint(struct usb_device
*dev
, unsigned int epaddr
)
1133 unsigned int epnum
= epaddr
& USB_ENDPOINT_NUMBER_MASK
;
1134 struct usb_host_endpoint
*ep
;
1136 if (usb_endpoint_out(epaddr
))
1137 ep
= dev
->ep_out
[epnum
];
1139 ep
= dev
->ep_in
[epnum
];
1141 usb_hcd_reset_endpoint(dev
, ep
);
1143 EXPORT_SYMBOL_GPL(usb_reset_endpoint
);
1147 * usb_disable_interface -- Disable all endpoints for an interface
1148 * @dev: the device whose interface is being disabled
1149 * @intf: pointer to the interface descriptor
1150 * @reset_hardware: flag to erase any endpoint state stored in the
1151 * controller hardware
1153 * Disables all the endpoints for the interface's current altsetting.
1155 void usb_disable_interface(struct usb_device
*dev
, struct usb_interface
*intf
,
1156 bool reset_hardware
)
1158 struct usb_host_interface
*alt
= intf
->cur_altsetting
;
1161 for (i
= 0; i
< alt
->desc
.bNumEndpoints
; ++i
) {
1162 usb_disable_endpoint(dev
,
1163 alt
->endpoint
[i
].desc
.bEndpointAddress
,
1169 * usb_disable_device - Disable all the endpoints for a USB device
1170 * @dev: the device whose endpoints are being disabled
1171 * @skip_ep0: 0 to disable endpoint 0, 1 to skip it.
1173 * Disables all the device's endpoints, potentially including endpoint 0.
1174 * Deallocates hcd/hardware state for the endpoints (nuking all or most
1175 * pending urbs) and usbcore state for the interfaces, so that usbcore
1176 * must usb_set_configuration() before any interfaces could be used.
1178 void usb_disable_device(struct usb_device
*dev
, int skip_ep0
)
1182 dev_dbg(&dev
->dev
, "%s nuking %s URBs\n", __func__
,
1183 skip_ep0
? "non-ep0" : "all");
1184 for (i
= skip_ep0
; i
< 16; ++i
) {
1185 usb_disable_endpoint(dev
, i
, true);
1186 usb_disable_endpoint(dev
, i
+ USB_DIR_IN
, true);
1189 /* getting rid of interfaces will disconnect
1190 * any drivers bound to them (a key side effect)
1192 if (dev
->actconfig
) {
1193 for (i
= 0; i
< dev
->actconfig
->desc
.bNumInterfaces
; i
++) {
1194 struct usb_interface
*interface
;
1196 /* remove this interface if it has been registered */
1197 interface
= dev
->actconfig
->interface
[i
];
1198 if (!device_is_registered(&interface
->dev
))
1200 dev_dbg(&dev
->dev
, "unregistering interface %s\n",
1201 dev_name(&interface
->dev
));
1202 interface
->unregistering
= 1;
1203 remove_intf_ep_devs(interface
);
1204 device_del(&interface
->dev
);
1207 /* Now that the interfaces are unbound, nobody should
1208 * try to access them.
1210 for (i
= 0; i
< dev
->actconfig
->desc
.bNumInterfaces
; i
++) {
1211 put_device(&dev
->actconfig
->interface
[i
]->dev
);
1212 dev
->actconfig
->interface
[i
] = NULL
;
1214 dev
->actconfig
= NULL
;
1215 if (dev
->state
== USB_STATE_CONFIGURED
)
1216 usb_set_device_state(dev
, USB_STATE_ADDRESS
);
1221 * usb_enable_endpoint - Enable an endpoint for USB communications
1222 * @dev: the device whose interface is being enabled
1224 * @reset_ep: flag to reset the endpoint state
1226 * Resets the endpoint state if asked, and sets dev->ep_{in,out} pointers.
1227 * For control endpoints, both the input and output sides are handled.
1229 void usb_enable_endpoint(struct usb_device
*dev
, struct usb_host_endpoint
*ep
,
1232 int epnum
= usb_endpoint_num(&ep
->desc
);
1233 int is_out
= usb_endpoint_dir_out(&ep
->desc
);
1234 int is_control
= usb_endpoint_xfer_control(&ep
->desc
);
1237 usb_hcd_reset_endpoint(dev
, ep
);
1238 if (is_out
|| is_control
)
1239 dev
->ep_out
[epnum
] = ep
;
1240 if (!is_out
|| is_control
)
1241 dev
->ep_in
[epnum
] = ep
;
1246 * usb_enable_interface - Enable all the endpoints for an interface
1247 * @dev: the device whose interface is being enabled
1248 * @intf: pointer to the interface descriptor
1249 * @reset_eps: flag to reset the endpoints' state
1251 * Enables all the endpoints for the interface's current altsetting.
1253 void usb_enable_interface(struct usb_device
*dev
,
1254 struct usb_interface
*intf
, bool reset_eps
)
1256 struct usb_host_interface
*alt
= intf
->cur_altsetting
;
1259 for (i
= 0; i
< alt
->desc
.bNumEndpoints
; ++i
)
1260 usb_enable_endpoint(dev
, &alt
->endpoint
[i
], reset_eps
);
1264 * usb_set_interface - Makes a particular alternate setting be current
1265 * @dev: the device whose interface is being updated
1266 * @interface: the interface being updated
1267 * @alternate: the setting being chosen.
1268 * Context: !in_interrupt ()
1270 * This is used to enable data transfers on interfaces that may not
1271 * be enabled by default. Not all devices support such configurability.
1272 * Only the driver bound to an interface may change its setting.
1274 * Within any given configuration, each interface may have several
1275 * alternative settings. These are often used to control levels of
1276 * bandwidth consumption. For example, the default setting for a high
1277 * speed interrupt endpoint may not send more than 64 bytes per microframe,
1278 * while interrupt transfers of up to 3KBytes per microframe are legal.
1279 * Also, isochronous endpoints may never be part of an
1280 * interface's default setting. To access such bandwidth, alternate
1281 * interface settings must be made current.
1283 * Note that in the Linux USB subsystem, bandwidth associated with
1284 * an endpoint in a given alternate setting is not reserved until an URB
1285 * is submitted that needs that bandwidth. Some other operating systems
1286 * allocate bandwidth early, when a configuration is chosen.
1288 * This call is synchronous, and may not be used in an interrupt context.
1289 * Also, drivers must not change altsettings while urbs are scheduled for
1290 * endpoints in that interface; all such urbs must first be completed
1291 * (perhaps forced by unlinking).
1293 * Returns zero on success, or else the status code returned by the
1294 * underlying usb_control_msg() call.
1296 int usb_set_interface(struct usb_device
*dev
, int interface
, int alternate
)
1298 struct usb_interface
*iface
;
1299 struct usb_host_interface
*alt
;
1302 unsigned int epaddr
;
1305 if (dev
->state
== USB_STATE_SUSPENDED
)
1306 return -EHOSTUNREACH
;
1308 iface
= usb_ifnum_to_if(dev
, interface
);
1310 dev_dbg(&dev
->dev
, "selecting invalid interface %d\n",
1315 alt
= usb_altnum_to_altsetting(iface
, alternate
);
1317 dev_warn(&dev
->dev
, "selecting invalid altsetting %d",
1322 if (dev
->quirks
& USB_QUIRK_NO_SET_INTF
)
1325 ret
= usb_control_msg(dev
, usb_sndctrlpipe(dev
, 0),
1326 USB_REQ_SET_INTERFACE
, USB_RECIP_INTERFACE
,
1327 alternate
, interface
, NULL
, 0, 5000);
1329 /* 9.4.10 says devices don't need this and are free to STALL the
1330 * request if the interface only has one alternate setting.
1332 if (ret
== -EPIPE
&& iface
->num_altsetting
== 1) {
1334 "manual set_interface for iface %d, alt %d\n",
1335 interface
, alternate
);
1340 /* FIXME drivers shouldn't need to replicate/bugfix the logic here
1341 * when they implement async or easily-killable versions of this or
1342 * other "should-be-internal" functions (like clear_halt).
1343 * should hcd+usbcore postprocess control requests?
1346 /* prevent submissions using previous endpoint settings */
1347 if (iface
->cur_altsetting
!= alt
) {
1348 remove_intf_ep_devs(iface
);
1349 usb_remove_sysfs_intf_files(iface
);
1351 usb_disable_interface(dev
, iface
, true);
1353 iface
->cur_altsetting
= alt
;
1355 /* If the interface only has one altsetting and the device didn't
1356 * accept the request, we attempt to carry out the equivalent action
1357 * by manually clearing the HALT feature for each endpoint in the
1363 for (i
= 0; i
< alt
->desc
.bNumEndpoints
; i
++) {
1364 epaddr
= alt
->endpoint
[i
].desc
.bEndpointAddress
;
1365 pipe
= __create_pipe(dev
,
1366 USB_ENDPOINT_NUMBER_MASK
& epaddr
) |
1367 (usb_endpoint_out(epaddr
) ?
1368 USB_DIR_OUT
: USB_DIR_IN
);
1370 usb_clear_halt(dev
, pipe
);
1374 /* 9.1.1.5: reset toggles for all endpoints in the new altsetting
1377 * Despite EP0 is always present in all interfaces/AS, the list of
1378 * endpoints from the descriptor does not contain EP0. Due to its
1379 * omnipresence one might expect EP0 being considered "affected" by
1380 * any SetInterface request and hence assume toggles need to be reset.
1381 * However, EP0 toggles are re-synced for every individual transfer
1382 * during the SETUP stage - hence EP0 toggles are "don't care" here.
1383 * (Likewise, EP0 never "halts" on well designed devices.)
1385 usb_enable_interface(dev
, iface
, true);
1386 if (device_is_registered(&iface
->dev
)) {
1387 usb_create_sysfs_intf_files(iface
);
1388 create_intf_ep_devs(iface
);
1392 EXPORT_SYMBOL_GPL(usb_set_interface
);
1395 * usb_reset_configuration - lightweight device reset
1396 * @dev: the device whose configuration is being reset
1398 * This issues a standard SET_CONFIGURATION request to the device using
1399 * the current configuration. The effect is to reset most USB-related
1400 * state in the device, including interface altsettings (reset to zero),
1401 * endpoint halts (cleared), and endpoint state (only for bulk and interrupt
1402 * endpoints). Other usbcore state is unchanged, including bindings of
1403 * usb device drivers to interfaces.
1405 * Because this affects multiple interfaces, avoid using this with composite
1406 * (multi-interface) devices. Instead, the driver for each interface may
1407 * use usb_set_interface() on the interfaces it claims. Be careful though;
1408 * some devices don't support the SET_INTERFACE request, and others won't
1409 * reset all the interface state (notably endpoint state). Resetting the whole
1410 * configuration would affect other drivers' interfaces.
1412 * The caller must own the device lock.
1414 * Returns zero on success, else a negative error code.
1416 int usb_reset_configuration(struct usb_device
*dev
)
1419 struct usb_host_config
*config
;
1421 if (dev
->state
== USB_STATE_SUSPENDED
)
1422 return -EHOSTUNREACH
;
1424 /* caller must have locked the device and must own
1425 * the usb bus readlock (so driver bindings are stable);
1426 * calls during probe() are fine
1429 for (i
= 1; i
< 16; ++i
) {
1430 usb_disable_endpoint(dev
, i
, true);
1431 usb_disable_endpoint(dev
, i
+ USB_DIR_IN
, true);
1434 config
= dev
->actconfig
;
1435 retval
= usb_control_msg(dev
, usb_sndctrlpipe(dev
, 0),
1436 USB_REQ_SET_CONFIGURATION
, 0,
1437 config
->desc
.bConfigurationValue
, 0,
1438 NULL
, 0, USB_CTRL_SET_TIMEOUT
);
1442 /* re-init hc/hcd interface/endpoint state */
1443 for (i
= 0; i
< config
->desc
.bNumInterfaces
; i
++) {
1444 struct usb_interface
*intf
= config
->interface
[i
];
1445 struct usb_host_interface
*alt
;
1447 alt
= usb_altnum_to_altsetting(intf
, 0);
1449 /* No altsetting 0? We'll assume the first altsetting.
1450 * We could use a GetInterface call, but if a device is
1451 * so non-compliant that it doesn't have altsetting 0
1452 * then I wouldn't trust its reply anyway.
1455 alt
= &intf
->altsetting
[0];
1457 if (alt
!= intf
->cur_altsetting
) {
1458 remove_intf_ep_devs(intf
);
1459 usb_remove_sysfs_intf_files(intf
);
1461 intf
->cur_altsetting
= alt
;
1462 usb_enable_interface(dev
, intf
, true);
1463 if (device_is_registered(&intf
->dev
)) {
1464 usb_create_sysfs_intf_files(intf
);
1465 create_intf_ep_devs(intf
);
1470 EXPORT_SYMBOL_GPL(usb_reset_configuration
);
1472 static void usb_release_interface(struct device
*dev
)
1474 struct usb_interface
*intf
= to_usb_interface(dev
);
1475 struct usb_interface_cache
*intfc
=
1476 altsetting_to_usb_interface_cache(intf
->altsetting
);
1478 kref_put(&intfc
->ref
, usb_release_interface_cache
);
1482 #ifdef CONFIG_HOTPLUG
1483 static int usb_if_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
1485 struct usb_device
*usb_dev
;
1486 struct usb_interface
*intf
;
1487 struct usb_host_interface
*alt
;
1489 intf
= to_usb_interface(dev
);
1490 usb_dev
= interface_to_usbdev(intf
);
1491 alt
= intf
->cur_altsetting
;
1493 if (add_uevent_var(env
, "INTERFACE=%d/%d/%d",
1494 alt
->desc
.bInterfaceClass
,
1495 alt
->desc
.bInterfaceSubClass
,
1496 alt
->desc
.bInterfaceProtocol
))
1499 if (add_uevent_var(env
,
1501 "v%04Xp%04Xd%04Xdc%02Xdsc%02Xdp%02Xic%02Xisc%02Xip%02X",
1502 le16_to_cpu(usb_dev
->descriptor
.idVendor
),
1503 le16_to_cpu(usb_dev
->descriptor
.idProduct
),
1504 le16_to_cpu(usb_dev
->descriptor
.bcdDevice
),
1505 usb_dev
->descriptor
.bDeviceClass
,
1506 usb_dev
->descriptor
.bDeviceSubClass
,
1507 usb_dev
->descriptor
.bDeviceProtocol
,
1508 alt
->desc
.bInterfaceClass
,
1509 alt
->desc
.bInterfaceSubClass
,
1510 alt
->desc
.bInterfaceProtocol
))
1518 static int usb_if_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
1522 #endif /* CONFIG_HOTPLUG */
1524 struct device_type usb_if_device_type
= {
1525 .name
= "usb_interface",
1526 .release
= usb_release_interface
,
1527 .uevent
= usb_if_uevent
,
1530 static struct usb_interface_assoc_descriptor
*find_iad(struct usb_device
*dev
,
1531 struct usb_host_config
*config
,
1534 struct usb_interface_assoc_descriptor
*retval
= NULL
;
1535 struct usb_interface_assoc_descriptor
*intf_assoc
;
1540 for (i
= 0; (i
< USB_MAXIADS
&& config
->intf_assoc
[i
]); i
++) {
1541 intf_assoc
= config
->intf_assoc
[i
];
1542 if (intf_assoc
->bInterfaceCount
== 0)
1545 first_intf
= intf_assoc
->bFirstInterface
;
1546 last_intf
= first_intf
+ (intf_assoc
->bInterfaceCount
- 1);
1547 if (inum
>= first_intf
&& inum
<= last_intf
) {
1549 retval
= intf_assoc
;
1551 dev_err(&dev
->dev
, "Interface #%d referenced"
1552 " by multiple IADs\n", inum
);
1561 * Internal function to queue a device reset
1563 * This is initialized into the workstruct in 'struct
1564 * usb_device->reset_ws' that is launched by
1565 * message.c:usb_set_configuration() when initializing each 'struct
1568 * It is safe to get the USB device without reference counts because
1569 * the life cycle of @iface is bound to the life cycle of @udev. Then,
1570 * this function will be ran only if @iface is alive (and before
1571 * freeing it any scheduled instances of it will have been cancelled).
1573 * We need to set a flag (usb_dev->reset_running) because when we call
1574 * the reset, the interfaces might be unbound. The current interface
1575 * cannot try to remove the queued work as it would cause a deadlock
1576 * (you cannot remove your work from within your executing
1577 * workqueue). This flag lets it know, so that
1578 * usb_cancel_queued_reset() doesn't try to do it.
1580 * See usb_queue_reset_device() for more details
1582 void __usb_queue_reset_device(struct work_struct
*ws
)
1585 struct usb_interface
*iface
=
1586 container_of(ws
, struct usb_interface
, reset_ws
);
1587 struct usb_device
*udev
= interface_to_usbdev(iface
);
1589 rc
= usb_lock_device_for_reset(udev
, iface
);
1591 iface
->reset_running
= 1;
1592 usb_reset_device(udev
);
1593 iface
->reset_running
= 0;
1594 usb_unlock_device(udev
);
1600 * usb_set_configuration - Makes a particular device setting be current
1601 * @dev: the device whose configuration is being updated
1602 * @configuration: the configuration being chosen.
1603 * Context: !in_interrupt(), caller owns the device lock
1605 * This is used to enable non-default device modes. Not all devices
1606 * use this kind of configurability; many devices only have one
1609 * @configuration is the value of the configuration to be installed.
1610 * According to the USB spec (e.g. section 9.1.1.5), configuration values
1611 * must be non-zero; a value of zero indicates that the device in
1612 * unconfigured. However some devices erroneously use 0 as one of their
1613 * configuration values. To help manage such devices, this routine will
1614 * accept @configuration = -1 as indicating the device should be put in
1615 * an unconfigured state.
1617 * USB device configurations may affect Linux interoperability,
1618 * power consumption and the functionality available. For example,
1619 * the default configuration is limited to using 100mA of bus power,
1620 * so that when certain device functionality requires more power,
1621 * and the device is bus powered, that functionality should be in some
1622 * non-default device configuration. Other device modes may also be
1623 * reflected as configuration options, such as whether two ISDN
1624 * channels are available independently; and choosing between open
1625 * standard device protocols (like CDC) or proprietary ones.
1627 * Note that a non-authorized device (dev->authorized == 0) will only
1628 * be put in unconfigured mode.
1630 * Note that USB has an additional level of device configurability,
1631 * associated with interfaces. That configurability is accessed using
1632 * usb_set_interface().
1634 * This call is synchronous. The calling context must be able to sleep,
1635 * must own the device lock, and must not hold the driver model's USB
1636 * bus mutex; usb interface driver probe() methods cannot use this routine.
1638 * Returns zero on success, or else the status code returned by the
1639 * underlying call that failed. On successful completion, each interface
1640 * in the original device configuration has been destroyed, and each one
1641 * in the new configuration has been probed by all relevant usb device
1642 * drivers currently known to the kernel.
1644 int usb_set_configuration(struct usb_device
*dev
, int configuration
)
1647 struct usb_host_config
*cp
= NULL
;
1648 struct usb_interface
**new_interfaces
= NULL
;
1651 if (dev
->authorized
== 0 || configuration
== -1)
1654 for (i
= 0; i
< dev
->descriptor
.bNumConfigurations
; i
++) {
1655 if (dev
->config
[i
].desc
.bConfigurationValue
==
1657 cp
= &dev
->config
[i
];
1662 if ((!cp
&& configuration
!= 0))
1665 /* The USB spec says configuration 0 means unconfigured.
1666 * But if a device includes a configuration numbered 0,
1667 * we will accept it as a correctly configured state.
1668 * Use -1 if you really want to unconfigure the device.
1670 if (cp
&& configuration
== 0)
1671 dev_warn(&dev
->dev
, "config 0 descriptor??\n");
1673 /* Allocate memory for new interfaces before doing anything else,
1674 * so that if we run out then nothing will have changed. */
1677 nintf
= cp
->desc
.bNumInterfaces
;
1678 new_interfaces
= kmalloc(nintf
* sizeof(*new_interfaces
),
1680 if (!new_interfaces
) {
1681 dev_err(&dev
->dev
, "Out of memory\n");
1685 for (; n
< nintf
; ++n
) {
1686 new_interfaces
[n
] = kzalloc(
1687 sizeof(struct usb_interface
),
1689 if (!new_interfaces
[n
]) {
1690 dev_err(&dev
->dev
, "Out of memory\n");
1694 kfree(new_interfaces
[n
]);
1695 kfree(new_interfaces
);
1700 i
= dev
->bus_mA
- cp
->desc
.bMaxPower
* 2;
1702 dev_warn(&dev
->dev
, "new config #%d exceeds power "
1707 /* Wake up the device so we can send it the Set-Config request */
1708 ret
= usb_autoresume_device(dev
);
1710 goto free_interfaces
;
1712 /* Make sure we have bandwidth (and available HCD resources) for this
1713 * configuration. Remove endpoints from the schedule if we're dropping
1714 * this configuration to set configuration 0. After this point, the
1715 * host controller will not allow submissions to dropped endpoints. If
1716 * this call fails, the device state is unchanged.
1719 ret
= usb_hcd_check_bandwidth(dev
, cp
, NULL
);
1721 ret
= usb_hcd_check_bandwidth(dev
, NULL
, NULL
);
1723 usb_autosuspend_device(dev
);
1724 goto free_interfaces
;
1727 /* if it's already configured, clear out old state first.
1728 * getting rid of old interfaces means unbinding their drivers.
1730 if (dev
->state
!= USB_STATE_ADDRESS
)
1731 usb_disable_device(dev
, 1); /* Skip ep0 */
1733 /* Get rid of pending async Set-Config requests for this device */
1734 cancel_async_set_config(dev
);
1736 ret
= usb_control_msg(dev
, usb_sndctrlpipe(dev
, 0),
1737 USB_REQ_SET_CONFIGURATION
, 0, configuration
, 0,
1738 NULL
, 0, USB_CTRL_SET_TIMEOUT
);
1740 /* All the old state is gone, so what else can we do?
1741 * The device is probably useless now anyway.
1746 dev
->actconfig
= cp
;
1748 usb_set_device_state(dev
, USB_STATE_ADDRESS
);
1749 usb_hcd_check_bandwidth(dev
, NULL
, NULL
);
1750 usb_autosuspend_device(dev
);
1751 goto free_interfaces
;
1753 usb_set_device_state(dev
, USB_STATE_CONFIGURED
);
1755 /* Initialize the new interface structures and the
1756 * hc/hcd/usbcore interface/endpoint state.
1758 for (i
= 0; i
< nintf
; ++i
) {
1759 struct usb_interface_cache
*intfc
;
1760 struct usb_interface
*intf
;
1761 struct usb_host_interface
*alt
;
1763 cp
->interface
[i
] = intf
= new_interfaces
[i
];
1764 intfc
= cp
->intf_cache
[i
];
1765 intf
->altsetting
= intfc
->altsetting
;
1766 intf
->num_altsetting
= intfc
->num_altsetting
;
1767 intf
->intf_assoc
= find_iad(dev
, cp
, i
);
1768 kref_get(&intfc
->ref
);
1770 alt
= usb_altnum_to_altsetting(intf
, 0);
1772 /* No altsetting 0? We'll assume the first altsetting.
1773 * We could use a GetInterface call, but if a device is
1774 * so non-compliant that it doesn't have altsetting 0
1775 * then I wouldn't trust its reply anyway.
1778 alt
= &intf
->altsetting
[0];
1780 intf
->cur_altsetting
= alt
;
1781 usb_enable_interface(dev
, intf
, true);
1782 intf
->dev
.parent
= &dev
->dev
;
1783 intf
->dev
.driver
= NULL
;
1784 intf
->dev
.bus
= &usb_bus_type
;
1785 intf
->dev
.type
= &usb_if_device_type
;
1786 intf
->dev
.groups
= usb_interface_groups
;
1787 intf
->dev
.dma_mask
= dev
->dev
.dma_mask
;
1788 INIT_WORK(&intf
->reset_ws
, __usb_queue_reset_device
);
1789 device_initialize(&intf
->dev
);
1790 mark_quiesced(intf
);
1791 dev_set_name(&intf
->dev
, "%d-%s:%d.%d",
1792 dev
->bus
->busnum
, dev
->devpath
,
1793 configuration
, alt
->desc
.bInterfaceNumber
);
1795 kfree(new_interfaces
);
1797 if (cp
->string
== NULL
&&
1798 !(dev
->quirks
& USB_QUIRK_CONFIG_INTF_STRINGS
))
1799 cp
->string
= usb_cache_string(dev
, cp
->desc
.iConfiguration
);
1801 /* Now that all the interfaces are set up, register them
1802 * to trigger binding of drivers to interfaces. probe()
1803 * routines may install different altsettings and may
1804 * claim() any interfaces not yet bound. Many class drivers
1805 * need that: CDC, audio, video, etc.
1807 for (i
= 0; i
< nintf
; ++i
) {
1808 struct usb_interface
*intf
= cp
->interface
[i
];
1811 "adding %s (config #%d, interface %d)\n",
1812 dev_name(&intf
->dev
), configuration
,
1813 intf
->cur_altsetting
->desc
.bInterfaceNumber
);
1814 ret
= device_add(&intf
->dev
);
1816 dev_err(&dev
->dev
, "device_add(%s) --> %d\n",
1817 dev_name(&intf
->dev
), ret
);
1820 create_intf_ep_devs(intf
);
1823 usb_autosuspend_device(dev
);
1827 static LIST_HEAD(set_config_list
);
1828 static DEFINE_SPINLOCK(set_config_lock
);
1830 struct set_config_request
{
1831 struct usb_device
*udev
;
1833 struct work_struct work
;
1834 struct list_head node
;
1837 /* Worker routine for usb_driver_set_configuration() */
1838 static void driver_set_config_work(struct work_struct
*work
)
1840 struct set_config_request
*req
=
1841 container_of(work
, struct set_config_request
, work
);
1842 struct usb_device
*udev
= req
->udev
;
1844 usb_lock_device(udev
);
1845 spin_lock(&set_config_lock
);
1846 list_del(&req
->node
);
1847 spin_unlock(&set_config_lock
);
1849 if (req
->config
>= -1) /* Is req still valid? */
1850 usb_set_configuration(udev
, req
->config
);
1851 usb_unlock_device(udev
);
1856 /* Cancel pending Set-Config requests for a device whose configuration
1859 static void cancel_async_set_config(struct usb_device
*udev
)
1861 struct set_config_request
*req
;
1863 spin_lock(&set_config_lock
);
1864 list_for_each_entry(req
, &set_config_list
, node
) {
1865 if (req
->udev
== udev
)
1866 req
->config
= -999; /* Mark as cancelled */
1868 spin_unlock(&set_config_lock
);
1872 * usb_driver_set_configuration - Provide a way for drivers to change device configurations
1873 * @udev: the device whose configuration is being updated
1874 * @config: the configuration being chosen.
1875 * Context: In process context, must be able to sleep
1877 * Device interface drivers are not allowed to change device configurations.
1878 * This is because changing configurations will destroy the interface the
1879 * driver is bound to and create new ones; it would be like a floppy-disk
1880 * driver telling the computer to replace the floppy-disk drive with a
1883 * Still, in certain specialized circumstances the need may arise. This
1884 * routine gets around the normal restrictions by using a work thread to
1885 * submit the change-config request.
1887 * Returns 0 if the request was succesfully queued, error code otherwise.
1888 * The caller has no way to know whether the queued request will eventually
1891 int usb_driver_set_configuration(struct usb_device
*udev
, int config
)
1893 struct set_config_request
*req
;
1895 req
= kmalloc(sizeof(*req
), GFP_KERNEL
);
1899 req
->config
= config
;
1900 INIT_WORK(&req
->work
, driver_set_config_work
);
1902 spin_lock(&set_config_lock
);
1903 list_add(&req
->node
, &set_config_list
);
1904 spin_unlock(&set_config_lock
);
1907 schedule_work(&req
->work
);
1910 EXPORT_SYMBOL_GPL(usb_driver_set_configuration
);