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