ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / drivers / usb / core / message.c
1 /*
2  * message.c - synchronous message handling
3  */
4
5 #include <linux/config.h>
6
7 #ifdef CONFIG_USB_DEBUG
8         #define DEBUG
9 #else
10         #undef DEBUG
11 #endif
12
13 #include <linux/pci.h>  /* for scatterlist macros */
14 #include <linux/usb.h>
15 #include <linux/module.h>
16 #include <linux/slab.h>
17 #include <linux/init.h>
18 #include <linux/mm.h>
19 #include <linux/timer.h>
20 #include <asm/byteorder.h>
21
22 #include "hcd.h"        /* for usbcore internals */
23 #include "usb.h"
24
25 static void usb_api_blocking_completion(struct urb *urb, struct pt_regs *regs)
26 {
27         complete((struct completion *)urb->context);
28 }
29
30
31 static void timeout_kill(unsigned long data)
32 {
33         struct urb      *urb = (struct urb *) data;
34
35         dev_warn(&urb->dev->dev, "%s timeout on ep%d%s\n",
36                 usb_pipecontrol(urb->pipe) ? "control" : "bulk",
37                 usb_pipeendpoint(urb->pipe),
38                 usb_pipein(urb->pipe) ? "in" : "out");
39         usb_unlink_urb(urb);
40 }
41
42 // Starts urb and waits for completion or timeout
43 // note that this call is NOT interruptible, while
44 // many device driver i/o requests should be interruptible
45 static int usb_start_wait_urb(struct urb *urb, int timeout, int* actual_length)
46
47         struct completion       done;
48         struct timer_list       timer;
49         int                     status;
50
51         init_completion(&done);         
52         urb->context = &done;
53         urb->transfer_flags |= URB_ASYNC_UNLINK;
54         urb->actual_length = 0;
55         status = usb_submit_urb(urb, GFP_NOIO);
56
57         if (status == 0) {
58                 if (timeout > 0) {
59                         init_timer(&timer);
60                         timer.expires = jiffies + timeout;
61                         timer.data = (unsigned long)urb;
62                         timer.function = timeout_kill;
63                         /* grr.  timeout _should_ include submit delays. */
64                         add_timer(&timer);
65                 }
66                 wait_for_completion(&done);
67                 status = urb->status;
68                 /* note:  HCDs return ETIMEDOUT for other reasons too */
69                 if (status == -ECONNRESET)
70                         status = -ETIMEDOUT;
71                 if (timeout > 0)
72                         del_timer_sync(&timer);
73         }
74
75         if (actual_length)
76                 *actual_length = urb->actual_length;
77         usb_free_urb(urb);
78         return status;
79 }
80
81 /*-------------------------------------------------------------------*/
82 // returns status (negative) or length (positive)
83 int usb_internal_control_msg(struct usb_device *usb_dev, unsigned int pipe, 
84                             struct usb_ctrlrequest *cmd,  void *data, int len, int timeout)
85 {
86         struct urb *urb;
87         int retv;
88         int length;
89
90         urb = usb_alloc_urb(0, GFP_NOIO);
91         if (!urb)
92                 return -ENOMEM;
93   
94         usb_fill_control_urb(urb, usb_dev, pipe, (unsigned char*)cmd, data, len,
95                    usb_api_blocking_completion, 0);
96
97         retv = usb_start_wait_urb(urb, timeout, &length);
98         if (retv < 0)
99                 return retv;
100         else
101                 return length;
102 }
103
104 /**
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 jiffies to wait for the message to complete before
115  *              timing out (if 0 the wait is forever)
116  *      Context: !in_interrupt ()
117  *
118  *      This function sends a simple control message to a specified endpoint
119  *      and waits for the message to complete, or timeout.
120  *      
121  *      If successful, it returns the number of bytes transferred, otherwise a negative error number.
122  *
123  *      Don't use this function from within an interrupt context, like a
124  *      bottom half handler.  If you need an asynchronous message, or need to send
125  *      a message from within interrupt context, use usb_submit_urb()
126  *      If a thread in your driver uses this call, make sure your disconnect()
127  *      method can wait for it to complete.  Since you don't have a handle on
128  *      the URB used, you can't cancel the request.
129  */
130 int usb_control_msg(struct usb_device *dev, unsigned int pipe, __u8 request, __u8 requesttype,
131                          __u16 value, __u16 index, void *data, __u16 size, int timeout)
132 {
133         struct usb_ctrlrequest *dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_NOIO);
134         int ret;
135         
136         if (!dr)
137                 return -ENOMEM;
138
139         dr->bRequestType= requesttype;
140         dr->bRequest = request;
141         dr->wValue = cpu_to_le16p(&value);
142         dr->wIndex = cpu_to_le16p(&index);
143         dr->wLength = cpu_to_le16p(&size);
144
145         //dbg("usb_control_msg");       
146
147         ret = usb_internal_control_msg(dev, pipe, dr, data, size, timeout);
148
149         kfree(dr);
150
151         return ret;
152 }
153
154
155 /**
156  *      usb_bulk_msg - Builds a bulk urb, sends it off and waits for completion
157  *      @usb_dev: pointer to the usb device to send the message to
158  *      @pipe: endpoint "pipe" to send the message to
159  *      @data: pointer to the data to send
160  *      @len: length in bytes of the data to send
161  *      @actual_length: pointer to a location to put the actual length transferred in bytes
162  *      @timeout: time in jiffies to wait for the message to complete before
163  *              timing out (if 0 the wait is forever)
164  *      Context: !in_interrupt ()
165  *
166  *      This function sends a simple bulk message to a specified endpoint
167  *      and waits for the message to complete, or timeout.
168  *      
169  *      If successful, it returns 0, otherwise a negative error number.
170  *      The number of actual bytes transferred will be stored in the 
171  *      actual_length paramater.
172  *
173  *      Don't use this function from within an interrupt context, like a
174  *      bottom half handler.  If you need an asynchronous message, or need to
175  *      send a message from within interrupt context, use usb_submit_urb()
176  *      If a thread in your driver uses this call, make sure your disconnect()
177  *      method can wait for it to complete.  Since you don't have a handle on
178  *      the URB used, you can't cancel the request.
179  */
180 int usb_bulk_msg(struct usb_device *usb_dev, unsigned int pipe, 
181                         void *data, int len, int *actual_length, int timeout)
182 {
183         struct urb *urb;
184
185         if (len < 0)
186                 return -EINVAL;
187
188         urb=usb_alloc_urb(0, GFP_KERNEL);
189         if (!urb)
190                 return -ENOMEM;
191
192         usb_fill_bulk_urb(urb, usb_dev, pipe, data, len,
193                     usb_api_blocking_completion, 0);
194
195         return usb_start_wait_urb(urb,timeout,actual_length);
196 }
197
198 /*-------------------------------------------------------------------*/
199
200 static void sg_clean (struct usb_sg_request *io)
201 {
202         if (io->urbs) {
203                 while (io->entries--)
204                         usb_free_urb (io->urbs [io->entries]);
205                 kfree (io->urbs);
206                 io->urbs = 0;
207         }
208         if (io->dev->dev.dma_mask != 0)
209                 usb_buffer_unmap_sg (io->dev, io->pipe, io->sg, io->nents);
210         io->dev = 0;
211 }
212
213 static void sg_complete (struct urb *urb, struct pt_regs *regs)
214 {
215         struct usb_sg_request   *io = (struct usb_sg_request *) urb->context;
216
217         spin_lock (&io->lock);
218
219         /* In 2.5 we require hcds' endpoint queues not to progress after fault
220          * reports, until the completion callback (this!) returns.  That lets
221          * device driver code (like this routine) unlink queued urbs first,
222          * if it needs to, since the HC won't work on them at all.  So it's
223          * not possible for page N+1 to overwrite page N, and so on.
224          *
225          * That's only for "hard" faults; "soft" faults (unlinks) sometimes
226          * complete before the HCD can get requests away from hardware,
227          * though never during cleanup after a hard fault.
228          */
229         if (io->status
230                         && (io->status != -ECONNRESET
231                                 || urb->status != -ECONNRESET)
232                         && urb->actual_length) {
233                 dev_err (io->dev->bus->controller,
234                         "dev %s ep%d%s scatterlist error %d/%d\n",
235                         io->dev->devpath,
236                         usb_pipeendpoint (urb->pipe),
237                         usb_pipein (urb->pipe) ? "in" : "out",
238                         urb->status, io->status);
239                 // BUG ();
240         }
241
242         if (urb->status && urb->status != -ECONNRESET) {
243                 int             i, found, status;
244
245                 io->status = urb->status;
246
247                 /* the previous urbs, and this one, completed already.
248                  * unlink pending urbs so they won't rx/tx bad data.
249                  */
250                 for (i = 0, found = 0; i < io->entries; i++) {
251                         if (!io->urbs [i])
252                                 continue;
253                         if (found) {
254                                 status = usb_unlink_urb (io->urbs [i]);
255                                 if (status != -EINPROGRESS && status != -EBUSY)
256                                         dev_err (&io->dev->dev,
257                                                 "%s, unlink --> %d\n",
258                                                 __FUNCTION__, status);
259                         } else if (urb == io->urbs [i])
260                                 found = 1;
261                 }
262         }
263         urb->dev = 0;
264
265         /* on the last completion, signal usb_sg_wait() */
266         io->bytes += urb->actual_length;
267         io->count--;
268         if (!io->count)
269                 complete (&io->complete);
270
271         spin_unlock (&io->lock);
272 }
273
274
275 /**
276  * usb_sg_init - initializes scatterlist-based bulk/interrupt I/O request
277  * @io: request block being initialized.  until usb_sg_wait() returns,
278  *      treat this as a pointer to an opaque block of memory,
279  * @dev: the usb device that will send or receive the data
280  * @pipe: endpoint "pipe" used to transfer the data
281  * @period: polling rate for interrupt endpoints, in frames or
282  *      (for high speed endpoints) microframes; ignored for bulk
283  * @sg: scatterlist entries
284  * @nents: how many entries in the scatterlist
285  * @length: how many bytes to send from the scatterlist, or zero to
286  *      send every byte identified in the list.
287  * @mem_flags: SLAB_* flags affecting memory allocations in this call
288  *
289  * Returns zero for success, else a negative errno value.  This initializes a
290  * scatter/gather request, allocating resources such as I/O mappings and urb
291  * memory (except maybe memory used by USB controller drivers).
292  *
293  * The request must be issued using usb_sg_wait(), which waits for the I/O to
294  * complete (or to be canceled) and then cleans up all resources allocated by
295  * usb_sg_init().
296  *
297  * The request may be canceled with usb_sg_cancel(), either before or after
298  * usb_sg_wait() is called.
299  */
300 int usb_sg_init (
301         struct usb_sg_request   *io,
302         struct usb_device       *dev,
303         unsigned                pipe, 
304         unsigned                period,
305         struct scatterlist      *sg,
306         int                     nents,
307         size_t                  length,
308         int                     mem_flags
309 )
310 {
311         int                     i;
312         int                     urb_flags;
313         int                     dma;
314
315         if (!io || !dev || !sg
316                         || usb_pipecontrol (pipe)
317                         || usb_pipeisoc (pipe)
318                         || nents <= 0)
319                 return -EINVAL;
320
321         spin_lock_init (&io->lock);
322         io->dev = dev;
323         io->pipe = pipe;
324         io->sg = sg;
325         io->nents = nents;
326
327         /* not all host controllers use DMA (like the mainstream pci ones);
328          * they can use PIO (sl811) or be software over another transport.
329          */
330         dma = (dev->dev.dma_mask != 0);
331         if (dma)
332                 io->entries = usb_buffer_map_sg (dev, pipe, sg, nents);
333         else
334                 io->entries = nents;
335
336         /* initialize all the urbs we'll use */
337         if (io->entries <= 0)
338                 return io->entries;
339
340         io->count = 0;
341         io->urbs = kmalloc (io->entries * sizeof *io->urbs, mem_flags);
342         if (!io->urbs)
343                 goto nomem;
344
345         urb_flags = URB_ASYNC_UNLINK | URB_NO_TRANSFER_DMA_MAP
346                         | URB_NO_INTERRUPT;
347         if (usb_pipein (pipe))
348                 urb_flags |= URB_SHORT_NOT_OK;
349
350         for (i = 0; i < io->entries; i++, io->count = i) {
351                 unsigned                len;
352
353                 io->urbs [i] = usb_alloc_urb (0, mem_flags);
354                 if (!io->urbs [i]) {
355                         io->entries = i;
356                         goto nomem;
357                 }
358
359                 io->urbs [i]->dev = 0;
360                 io->urbs [i]->pipe = pipe;
361                 io->urbs [i]->interval = period;
362                 io->urbs [i]->transfer_flags = urb_flags;
363
364                 io->urbs [i]->complete = sg_complete;
365                 io->urbs [i]->context = io;
366                 io->urbs [i]->status = -EINPROGRESS;
367                 io->urbs [i]->actual_length = 0;
368
369                 if (dma) {
370                         /* hc may use _only_ transfer_dma */
371                         io->urbs [i]->transfer_dma = sg_dma_address (sg + i);
372                         len = sg_dma_len (sg + i);
373                 } else {
374                         /* hc may use _only_ transfer_buffer */
375                         io->urbs [i]->transfer_buffer =
376                                 page_address (sg [i].page) + sg [i].offset;
377                         len = sg [i].length;
378                 }
379
380                 if (length) {
381                         len = min_t (unsigned, len, length);
382                         length -= len;
383                         if (length == 0)
384                                 io->entries = i + 1;
385                 }
386                 io->urbs [i]->transfer_buffer_length = len;
387         }
388         io->urbs [--i]->transfer_flags &= ~URB_NO_INTERRUPT;
389
390         /* transaction state */
391         io->status = 0;
392         io->bytes = 0;
393         init_completion (&io->complete);
394         return 0;
395
396 nomem:
397         sg_clean (io);
398         return -ENOMEM;
399 }
400
401
402 /**
403  * usb_sg_wait - synchronously execute scatter/gather request
404  * @io: request block handle, as initialized with usb_sg_init().
405  *      some fields become accessible when this call returns.
406  * Context: !in_interrupt ()
407  *
408  * This function blocks until the specified I/O operation completes.  It
409  * leverages the grouping of the related I/O requests to get good transfer
410  * rates, by queueing the requests.  At higher speeds, such queuing can
411  * significantly improve USB throughput.
412  *
413  * There are three kinds of completion for this function.
414  * (1) success, where io->status is zero.  The number of io->bytes
415  *     transferred is as requested.
416  * (2) error, where io->status is a negative errno value.  The number
417  *     of io->bytes transferred before the error is usually less
418  *     than requested, and can be nonzero.
419  * (3) cancelation, a type of error with status -ECONNRESET that
420  *     is initiated by usb_sg_cancel().
421  *
422  * When this function returns, all memory allocated through usb_sg_init() or
423  * this call will have been freed.  The request block parameter may still be
424  * passed to usb_sg_cancel(), or it may be freed.  It could also be
425  * reinitialized and then reused.
426  *
427  * Data Transfer Rates:
428  *
429  * Bulk transfers are valid for full or high speed endpoints.
430  * The best full speed data rate is 19 packets of 64 bytes each
431  * per frame, or 1216 bytes per millisecond.
432  * The best high speed data rate is 13 packets of 512 bytes each
433  * per microframe, or 52 KBytes per millisecond.
434  *
435  * The reason to use interrupt transfers through this API would most likely
436  * be to reserve high speed bandwidth, where up to 24 KBytes per millisecond
437  * could be transferred.  That capability is less useful for low or full
438  * speed interrupt endpoints, which allow at most one packet per millisecond,
439  * of at most 8 or 64 bytes (respectively).
440  */
441 void usb_sg_wait (struct usb_sg_request *io)
442 {
443         int             i, entries = io->entries;
444
445         /* queue the urbs.  */
446         spin_lock_irq (&io->lock);
447         for (i = 0; i < entries && !io->status; i++) {
448                 int     retval;
449
450                 io->urbs [i]->dev = io->dev;
451                 retval = usb_submit_urb (io->urbs [i], SLAB_ATOMIC);
452
453                 /* after we submit, let completions or cancelations fire;
454                  * we handshake using io->status.
455                  */
456                 spin_unlock_irq (&io->lock);
457                 switch (retval) {
458                         /* maybe we retrying will recover */
459                 case -ENXIO:    // hc didn't queue this one
460                 case -EAGAIN:
461                 case -ENOMEM:
462                         io->urbs [i]->dev = 0;
463                         retval = 0;
464                         i--;
465                         yield ();
466                         break;
467
468                         /* no error? continue immediately.
469                          *
470                          * NOTE: to work better with UHCI (4K I/O buffer may
471                          * need 3K of TDs) it may be good to limit how many
472                          * URBs are queued at once; N milliseconds?
473                          */
474                 case 0:
475                         cpu_relax ();
476                         break;
477
478                         /* fail any uncompleted urbs */
479                 default:
480                         spin_lock_irq (&io->lock);
481                         io->count -= entries - i;
482                         if (io->status == -EINPROGRESS)
483                                 io->status = retval;
484                         if (io->count == 0)
485                                 complete (&io->complete);
486                         spin_unlock_irq (&io->lock);
487
488                         io->urbs [i]->dev = 0;
489                         io->urbs [i]->status = retval;
490                         dev_dbg (&io->dev->dev, "%s, submit --> %d\n",
491                                 __FUNCTION__, retval);
492                         usb_sg_cancel (io);
493                 }
494                 spin_lock_irq (&io->lock);
495                 if (retval && io->status == -ECONNRESET)
496                         io->status = retval;
497         }
498         spin_unlock_irq (&io->lock);
499
500         /* OK, yes, this could be packaged as non-blocking.
501          * So could the submit loop above ... but it's easier to
502          * solve neither problem than to solve both!
503          */
504         wait_for_completion (&io->complete);
505
506         sg_clean (io);
507 }
508
509 /**
510  * usb_sg_cancel - stop scatter/gather i/o issued by usb_sg_wait()
511  * @io: request block, initialized with usb_sg_init()
512  *
513  * This stops a request after it has been started by usb_sg_wait().
514  * It can also prevents one initialized by usb_sg_init() from starting,
515  * so that call just frees resources allocated to the request.
516  */
517 void usb_sg_cancel (struct usb_sg_request *io)
518 {
519         unsigned long   flags;
520
521         spin_lock_irqsave (&io->lock, flags);
522
523         /* shut everything down, if it didn't already */
524         if (!io->status) {
525                 int     i;
526
527                 io->status = -ECONNRESET;
528                 for (i = 0; i < io->entries; i++) {
529                         int     retval;
530
531                         if (!io->urbs [i]->dev)
532                                 continue;
533                         retval = usb_unlink_urb (io->urbs [i]);
534                         if (retval != -EINPROGRESS && retval != -EBUSY)
535                                 dev_warn (&io->dev->dev, "%s, unlink --> %d\n",
536                                         __FUNCTION__, retval);
537                 }
538         }
539         spin_unlock_irqrestore (&io->lock, flags);
540 }
541
542 /*-------------------------------------------------------------------*/
543
544 /**
545  * usb_get_descriptor - issues a generic GET_DESCRIPTOR request
546  * @dev: the device whose descriptor is being retrieved
547  * @type: the descriptor type (USB_DT_*)
548  * @index: the number of the descriptor
549  * @buf: where to put the descriptor
550  * @size: how big is "buf"?
551  * Context: !in_interrupt ()
552  *
553  * Gets a USB descriptor.  Convenience functions exist to simplify
554  * getting some types of descriptors.  Use
555  * usb_get_device_descriptor() for USB_DT_DEVICE (not exported),
556  * and usb_get_string() or usb_string() for USB_DT_STRING.
557  * Device (USB_DT_DEVICE) and configuration descriptors (USB_DT_CONFIG)
558  * are part of the device structure.
559  * In addition to a number of USB-standard descriptors, some
560  * devices also use class-specific or vendor-specific descriptors.
561  *
562  * This call is synchronous, and may not be used in an interrupt context.
563  *
564  * Returns the number of bytes received on success, or else the status code
565  * returned by the underlying usb_control_msg() call.
566  */
567 int usb_get_descriptor(struct usb_device *dev, unsigned char type, unsigned char index, void *buf, int size)
568 {
569         int i = 5;
570         int result;
571         
572         memset(buf,0,size);     // Make sure we parse really received data
573
574         while (i--) {
575                 /* retry on length 0 or stall; some devices are flakey */
576                 if ((result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
577                                     USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
578                                     (type << 8) + index, 0, buf, size,
579                                     HZ * USB_CTRL_GET_TIMEOUT)) > 0
580                                 || result != -EPIPE)
581                         break;
582
583                 dev_dbg (&dev->dev, "RETRY descriptor, result %d\n", result);
584                 result = -ENOMSG;
585         }
586         return result;
587 }
588
589 /**
590  * usb_get_string - gets a string descriptor
591  * @dev: the device whose string descriptor is being retrieved
592  * @langid: code for language chosen (from string descriptor zero)
593  * @index: the number of the descriptor
594  * @buf: where to put the string
595  * @size: how big is "buf"?
596  * Context: !in_interrupt ()
597  *
598  * Retrieves a string, encoded using UTF-16LE (Unicode, 16 bits per character,
599  * in little-endian byte order).
600  * The usb_string() function will often be a convenient way to turn
601  * these strings into kernel-printable form.
602  *
603  * Strings may be referenced in device, configuration, interface, or other
604  * descriptors, and could also be used in vendor-specific ways.
605  *
606  * This call is synchronous, and may not be used in an interrupt context.
607  *
608  * Returns the number of bytes received on success, or else the status code
609  * returned by the underlying usb_control_msg() call.
610  */
611 int usb_get_string(struct usb_device *dev, unsigned short langid, unsigned char index, void *buf, int size)
612 {
613         return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
614                 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
615                 (USB_DT_STRING << 8) + index, langid, buf, size,
616                 HZ * USB_CTRL_GET_TIMEOUT);
617 }
618
619 /**
620  * usb_get_device_descriptor - (re)reads the device descriptor
621  * @dev: the device whose device descriptor is being updated
622  * @size: how much of the descriptor to read
623  * Context: !in_interrupt ()
624  *
625  * Updates the copy of the device descriptor stored in the device structure,
626  * which dedicates space for this purpose.  Note that several fields are
627  * converted to the host CPU's byte order:  the USB version (bcdUSB), and
628  * vendors product and version fields (idVendor, idProduct, and bcdDevice).
629  * That lets device drivers compare against non-byteswapped constants.
630  *
631  * Not exported, only for use by the core.  If drivers really want to read
632  * the device descriptor directly, they can call usb_get_descriptor() with
633  * type = USB_DT_DEVICE and index = 0.
634  *
635  * This call is synchronous, and may not be used in an interrupt context.
636  *
637  * Returns the number of bytes received on success, or else the status code
638  * returned by the underlying usb_control_msg() call.
639  */
640 int usb_get_device_descriptor(struct usb_device *dev, unsigned int size)
641 {
642         struct usb_device_descriptor *desc;
643         int ret;
644
645         if (size > sizeof(*desc))
646                 return -EINVAL;
647         desc = kmalloc(sizeof(*desc), GFP_NOIO);
648         if (!desc)
649                 return -ENOMEM;
650
651         ret = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, size);
652         if (ret >= 0) {
653                 le16_to_cpus(&desc->bcdUSB);
654                 le16_to_cpus(&desc->idVendor);
655                 le16_to_cpus(&desc->idProduct);
656                 le16_to_cpus(&desc->bcdDevice);
657                 memcpy(&dev->descriptor, desc, size);
658         }
659         kfree(desc);
660         return ret;
661 }
662
663 /**
664  * usb_get_status - issues a GET_STATUS call
665  * @dev: the device whose status is being checked
666  * @type: USB_RECIP_*; for device, interface, or endpoint
667  * @target: zero (for device), else interface or endpoint number
668  * @data: pointer to two bytes of bitmap data
669  * Context: !in_interrupt ()
670  *
671  * Returns device, interface, or endpoint status.  Normally only of
672  * interest to see if the device is self powered, or has enabled the
673  * remote wakeup facility; or whether a bulk or interrupt endpoint
674  * is halted ("stalled").
675  *
676  * Bits in these status bitmaps are set using the SET_FEATURE request,
677  * and cleared using the CLEAR_FEATURE request.  The usb_clear_halt()
678  * function should be used to clear halt ("stall") status.
679  *
680  * This call is synchronous, and may not be used in an interrupt context.
681  *
682  * Returns the number of bytes received on success, or else the status code
683  * returned by the underlying usb_control_msg() call.
684  */
685 int usb_get_status(struct usb_device *dev, int type, int target, void *data)
686 {
687         return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
688                 USB_REQ_GET_STATUS, USB_DIR_IN | type, 0, target, data, 2,
689                 HZ * USB_CTRL_GET_TIMEOUT);
690 }
691
692 /**
693  * usb_clear_halt - tells device to clear endpoint halt/stall condition
694  * @dev: device whose endpoint is halted
695  * @pipe: endpoint "pipe" being cleared
696  * Context: !in_interrupt ()
697  *
698  * This is used to clear halt conditions for bulk and interrupt endpoints,
699  * as reported by URB completion status.  Endpoints that are halted are
700  * sometimes referred to as being "stalled".  Such endpoints are unable
701  * to transmit or receive data until the halt status is cleared.  Any URBs
702  * queued for such an endpoint should normally be unlinked by the driver
703  * before clearing the halt condition, as described in sections 5.7.5
704  * and 5.8.5 of the USB 2.0 spec.
705  *
706  * Note that control and isochronous endpoints don't halt, although control
707  * endpoints report "protocol stall" (for unsupported requests) using the
708  * same status code used to report a true stall.
709  *
710  * This call is synchronous, and may not be used in an interrupt context.
711  *
712  * Returns zero on success, or else the status code returned by the
713  * underlying usb_control_msg() call.
714  */
715 int usb_clear_halt(struct usb_device *dev, int pipe)
716 {
717         int result;
718         int endp = usb_pipeendpoint(pipe);
719         
720         if (usb_pipein (pipe))
721                 endp |= USB_DIR_IN;
722
723         /* we don't care if it wasn't halted first. in fact some devices
724          * (like some ibmcam model 1 units) seem to expect hosts to make
725          * this request for iso endpoints, which can't halt!
726          */
727         result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
728                 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT,
729                 USB_ENDPOINT_HALT, endp, NULL, 0,
730                 HZ * USB_CTRL_SET_TIMEOUT);
731
732         /* don't un-halt or force to DATA0 except on success */
733         if (result < 0)
734                 return result;
735
736         /* NOTE:  seems like Microsoft and Apple don't bother verifying
737          * the clear "took", so some devices could lock up if you check...
738          * such as the Hagiwara FlashGate DUAL.  So we won't bother.
739          *
740          * NOTE:  make sure the logic here doesn't diverge much from
741          * the copy in usb-storage, for as long as we need two copies.
742          */
743
744         /* toggle was reset by the clear, then ep was reactivated */
745         usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), 0);
746         usb_endpoint_running(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
747
748         return 0;
749 }
750
751 /**
752  * usb_disable_endpoint -- Disable an endpoint by address
753  * @dev: the device whose endpoint is being disabled
754  * @epaddr: the endpoint's address.  Endpoint number for output,
755  *      endpoint number + USB_DIR_IN for input
756  *
757  * Deallocates hcd/hardware state for this endpoint ... and nukes all
758  * pending urbs.
759  *
760  * If the HCD hasn't registered a disable() function, this marks the
761  * endpoint as halted and sets its maxpacket size to 0 to prevent
762  * further submissions.
763  */
764 void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr)
765 {
766         if (dev && dev->bus && dev->bus->op && dev->bus->op->disable)
767                 dev->bus->op->disable(dev, epaddr);
768         else {
769                 unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK;
770
771                 if (usb_endpoint_out(epaddr)) {
772                         usb_endpoint_halt(dev, epnum, 1);
773                         dev->epmaxpacketout[epnum] = 0;
774                 } else {
775                         usb_endpoint_halt(dev, epnum, 0);
776                         dev->epmaxpacketin[epnum] = 0;
777                 }
778         }
779 }
780
781 /**
782  * usb_disable_interface -- Disable all endpoints for an interface
783  * @dev: the device whose interface is being disabled
784  * @intf: pointer to the interface descriptor
785  *
786  * Disables all the endpoints for the interface's current altsetting.
787  */
788 void usb_disable_interface(struct usb_device *dev, struct usb_interface *intf)
789 {
790         struct usb_host_interface *alt = intf->cur_altsetting;
791         int i;
792
793         for (i = 0; i < alt->desc.bNumEndpoints; ++i) {
794                 usb_disable_endpoint(dev,
795                                 alt->endpoint[i].desc.bEndpointAddress);
796         }
797 }
798
799 static void release_interface(struct device *dev)
800 {
801 }
802
803 /*
804  * usb_disable_device - Disable all the endpoints for a USB device
805  * @dev: the device whose endpoints are being disabled
806  * @skip_ep0: 0 to disable endpoint 0, 1 to skip it.
807  *
808  * Disables all the device's endpoints, potentially including endpoint 0.
809  * Deallocates hcd/hardware state for the endpoints (nuking all or most
810  * pending urbs) and usbcore state for the interfaces, so that usbcore
811  * must usb_set_configuration() before any interfaces could be used.
812  */
813 void usb_disable_device(struct usb_device *dev, int skip_ep0)
814 {
815         int i;
816
817         dev_dbg(&dev->dev, "%s nuking %s URBs\n", __FUNCTION__,
818                         skip_ep0 ? "non-ep0" : "all");
819         for (i = skip_ep0; i < 16; ++i) {
820                 usb_disable_endpoint(dev, i);
821                 usb_disable_endpoint(dev, i + USB_DIR_IN);
822         }
823         dev->toggle[0] = dev->toggle[1] = 0;
824         dev->halted[0] = dev->halted[1] = 0;
825
826         /* getting rid of interfaces will disconnect
827          * any drivers bound to them (a key side effect)
828          */
829         if (dev->actconfig) {
830                 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
831                         struct usb_interface    *interface;
832
833                         /* remove this interface */
834                         interface = dev->actconfig->interface[i];
835                         dev_dbg (&dev->dev, "unregistering interface %s\n",
836                                 interface->dev.bus_id);
837                         device_unregister (&interface->dev);
838                 }
839                 dev->actconfig = 0;
840                 if (dev->state == USB_STATE_CONFIGURED)
841                         dev->state = USB_STATE_ADDRESS;
842         }
843 }
844
845
846 /*
847  * usb_enable_endpoint - Enable an endpoint for USB communications
848  * @dev: the device whose interface is being enabled
849  * @epd: pointer to the endpoint descriptor
850  *
851  * Marks the endpoint as running, resets its toggle, and stores
852  * its maxpacket value.  For control endpoints, both the input
853  * and output sides are handled.
854  */
855 void usb_enable_endpoint(struct usb_device *dev,
856                 struct usb_endpoint_descriptor *epd)
857 {
858         int maxsize = epd->wMaxPacketSize;
859         unsigned int epaddr = epd->bEndpointAddress;
860         unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK;
861         int is_control = ((epd->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
862                                 USB_ENDPOINT_XFER_CONTROL);
863
864         if (usb_endpoint_out(epaddr) || is_control) {
865                 usb_endpoint_running(dev, epnum, 1);
866                 usb_settoggle(dev, epnum, 1, 0);
867                 dev->epmaxpacketout[epnum] = maxsize;
868         }
869         if (!usb_endpoint_out(epaddr) || is_control) {
870                 usb_endpoint_running(dev, epnum, 0);
871                 usb_settoggle(dev, epnum, 0, 0);
872                 dev->epmaxpacketin[epnum] = maxsize;
873         }
874 }
875
876 /*
877  * usb_enable_interface - Enable all the endpoints for an interface
878  * @dev: the device whose interface is being enabled
879  * @intf: pointer to the interface descriptor
880  *
881  * Enables all the endpoints for the interface's current altsetting.
882  */
883 void usb_enable_interface(struct usb_device *dev,
884                 struct usb_interface *intf)
885 {
886         struct usb_host_interface *alt = intf->cur_altsetting;
887         int i;
888
889         for (i = 0; i < alt->desc.bNumEndpoints; ++i)
890                 usb_enable_endpoint(dev, &alt->endpoint[i].desc);
891 }
892
893 /**
894  * usb_set_interface - Makes a particular alternate setting be current
895  * @dev: the device whose interface is being updated
896  * @interface: the interface being updated
897  * @alternate: the setting being chosen.
898  * Context: !in_interrupt ()
899  *
900  * This is used to enable data transfers on interfaces that may not
901  * be enabled by default.  Not all devices support such configurability.
902  * Only the driver bound to an interface may change its setting.
903  *
904  * Within any given configuration, each interface may have several
905  * alternative settings.  These are often used to control levels of
906  * bandwidth consumption.  For example, the default setting for a high
907  * speed interrupt endpoint may not send more than 64 bytes per microframe,
908  * while interrupt transfers of up to 3KBytes per microframe are legal.
909  * Also, isochronous endpoints may never be part of an
910  * interface's default setting.  To access such bandwidth, alternate
911  * interface settings must be made current.
912  *
913  * Note that in the Linux USB subsystem, bandwidth associated with
914  * an endpoint in a given alternate setting is not reserved until an URB
915  * is submitted that needs that bandwidth.  Some other operating systems
916  * allocate bandwidth early, when a configuration is chosen.
917  *
918  * This call is synchronous, and may not be used in an interrupt context.
919  * Also, drivers must not change altsettings while urbs are scheduled for
920  * endpoints in that interface; all such urbs must first be completed
921  * (perhaps forced by unlinking).
922  *
923  * Returns zero on success, or else the status code returned by the
924  * underlying usb_control_msg() call.
925  */
926 int usb_set_interface(struct usb_device *dev, int interface, int alternate)
927 {
928         struct usb_interface *iface;
929         struct usb_host_interface *alt;
930         int ret;
931         int manual = 0;
932
933         iface = usb_ifnum_to_if(dev, interface);
934         if (!iface) {
935                 dev_dbg(&dev->dev, "selecting invalid interface %d\n",
936                         interface);
937                 return -EINVAL;
938         }
939
940         alt = usb_altnum_to_altsetting(iface, alternate);
941         if (!alt) {
942                 warn("selecting invalid altsetting %d", alternate);
943                 return -EINVAL;
944         }
945
946         ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
947                                    USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
948                                    alternate, interface, NULL, 0, HZ * 5);
949
950         /* 9.4.10 says devices don't need this and are free to STALL the
951          * request if the interface only has one alternate setting.
952          */
953         if (ret == -EPIPE && iface->num_altsetting == 1) {
954                 dev_dbg(&dev->dev,
955                         "manual set_interface for iface %d, alt %d\n",
956                         interface, alternate);
957                 manual = 1;
958         } else if (ret < 0)
959                 return ret;
960
961         /* FIXME drivers shouldn't need to replicate/bugfix the logic here
962          * when they implement async or easily-killable versions of this or
963          * other "should-be-internal" functions (like clear_halt).
964          * should hcd+usbcore postprocess control requests?
965          */
966
967         /* prevent submissions using previous endpoint settings */
968         usb_disable_interface(dev, iface);
969
970         iface->cur_altsetting = alt;
971
972         /* If the interface only has one altsetting and the device didn't
973          * accept the request, we attempt to carry out the equivalent action
974          * by manually clearing the HALT feature for each endpoint in the
975          * new altsetting.
976          */
977         if (manual) {
978                 int i;
979
980                 for (i = 0; i < alt->desc.bNumEndpoints; i++) {
981                         unsigned int epaddr =
982                                 alt->endpoint[i].desc.bEndpointAddress;
983                         unsigned int pipe =
984         __create_pipe(dev, USB_ENDPOINT_NUMBER_MASK & epaddr)
985         | (usb_endpoint_out(epaddr) ? USB_DIR_OUT : USB_DIR_IN);
986
987                         usb_clear_halt(dev, pipe);
988                 }
989         }
990
991         /* 9.1.1.5: reset toggles for all endpoints in the new altsetting
992          *
993          * Note:
994          * Despite EP0 is always present in all interfaces/AS, the list of
995          * endpoints from the descriptor does not contain EP0. Due to its
996          * omnipresence one might expect EP0 being considered "affected" by
997          * any SetInterface request and hence assume toggles need to be reset.
998          * However, EP0 toggles are re-synced for every individual transfer
999          * during the SETUP stage - hence EP0 toggles are "don't care" here.
1000          * (Likewise, EP0 never "halts" on well designed devices.)
1001          */
1002         usb_enable_interface(dev, iface);
1003
1004         return 0;
1005 }
1006
1007 /**
1008  * usb_reset_configuration - lightweight device reset
1009  * @dev: the device whose configuration is being reset
1010  *
1011  * This issues a standard SET_CONFIGURATION request to the device using
1012  * the current configuration.  The effect is to reset most USB-related
1013  * state in the device, including interface altsettings (reset to zero),
1014  * endpoint halts (cleared), and data toggle (only for bulk and interrupt
1015  * endpoints).  Other usbcore state is unchanged, including bindings of
1016  * usb device drivers to interfaces.
1017  *
1018  * Because this affects multiple interfaces, avoid using this with composite
1019  * (multi-interface) devices.  Instead, the driver for each interface may
1020  * use usb_set_interface() on the interfaces it claims.  Resetting the whole
1021  * configuration would affect other drivers' interfaces.
1022  *
1023  * Returns zero on success, else a negative error code.
1024  */
1025 int usb_reset_configuration(struct usb_device *dev)
1026 {
1027         int                     i, retval;
1028         struct usb_host_config  *config;
1029
1030         /* caller must own dev->serialize (config won't change)
1031          * and the usb bus readlock (so driver bindings are stable);
1032          * so calls during probe() are fine
1033          */
1034
1035         for (i = 1; i < 16; ++i) {
1036                 usb_disable_endpoint(dev, i);
1037                 usb_disable_endpoint(dev, i + USB_DIR_IN);
1038         }
1039
1040         config = dev->actconfig;
1041         retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1042                         USB_REQ_SET_CONFIGURATION, 0,
1043                         config->desc.bConfigurationValue, 0,
1044                         NULL, 0, HZ * USB_CTRL_SET_TIMEOUT);
1045         if (retval < 0) {
1046                 dev->state = USB_STATE_ADDRESS;
1047                 return retval;
1048         }
1049
1050         dev->toggle[0] = dev->toggle[1] = 0;
1051         dev->halted[0] = dev->halted[1] = 0;
1052
1053         /* re-init hc/hcd interface/endpoint state */
1054         for (i = 0; i < config->desc.bNumInterfaces; i++) {
1055                 struct usb_interface *intf = config->interface[i];
1056                 struct usb_host_interface *alt;
1057
1058                 alt = usb_altnum_to_altsetting(intf, 0);
1059
1060                 /* No altsetting 0?  We'll assume the first altsetting.
1061                  * We could use a GetInterface call, but if a device is
1062                  * so non-compliant that it doesn't have altsetting 0
1063                  * then I wouldn't trust its reply anyway.
1064                  */
1065                 if (!alt)
1066                         alt = &intf->altsetting[0];
1067
1068                 intf->cur_altsetting = alt;
1069                 usb_enable_interface(dev, intf);
1070         }
1071         return 0;
1072 }
1073
1074 /*
1075  * usb_set_configuration - Makes a particular device setting be current
1076  * @dev: the device whose configuration is being updated
1077  * @configuration: the configuration being chosen.
1078  * Context: !in_interrupt(), caller holds dev->serialize
1079  *
1080  * This is used to enable non-default device modes.  Not all devices
1081  * use this kind of configurability; many devices only have one
1082  * configuration.
1083  *
1084  * USB device configurations may affect Linux interoperability,
1085  * power consumption and the functionality available.  For example,
1086  * the default configuration is limited to using 100mA of bus power,
1087  * so that when certain device functionality requires more power,
1088  * and the device is bus powered, that functionality should be in some
1089  * non-default device configuration.  Other device modes may also be
1090  * reflected as configuration options, such as whether two ISDN
1091  * channels are available independently; and choosing between open
1092  * standard device protocols (like CDC) or proprietary ones.
1093  *
1094  * Note that USB has an additional level of device configurability,
1095  * associated with interfaces.  That configurability is accessed using
1096  * usb_set_interface().
1097  *
1098  * This call is synchronous. The calling context must be able to sleep,
1099  * and must not hold the driver model lock for USB; usb device driver
1100  * probe() methods may not use this routine.
1101  *
1102  * Returns zero on success, or else the status code returned by the
1103  * underlying call that failed.  On succesful completion, each interface
1104  * in the original device configuration has been destroyed, and each one
1105  * in the new configuration has been probed by all relevant usb device
1106  * drivers currently known to the kernel.
1107  */
1108 int usb_set_configuration(struct usb_device *dev, int configuration)
1109 {
1110         int i, ret;
1111         struct usb_host_config *cp = NULL;
1112         
1113         /* dev->serialize guards all config changes */
1114
1115         for (i=0; i<dev->descriptor.bNumConfigurations; i++) {
1116                 if (dev->config[i].desc.bConfigurationValue == configuration) {
1117                         cp = &dev->config[i];
1118                         break;
1119                 }
1120         }
1121         if ((!cp && configuration != 0)) {
1122                 ret = -EINVAL;
1123                 goto out;
1124         }
1125
1126         /* The USB spec says configuration 0 means unconfigured.
1127          * But if a device includes a configuration numbered 0,
1128          * we will accept it as a correctly configured state.
1129          */
1130         if (cp && configuration == 0)
1131                 dev_warn(&dev->dev, "config 0 descriptor??\n");
1132
1133         /* if it's already configured, clear out old state first.
1134          * getting rid of old interfaces means unbinding their drivers.
1135          */
1136         if (dev->state != USB_STATE_ADDRESS)
1137                 usb_disable_device (dev, 1);    // Skip ep0
1138
1139         if ((ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1140                         USB_REQ_SET_CONFIGURATION, 0, configuration, 0,
1141                         NULL, 0, HZ * USB_CTRL_SET_TIMEOUT)) < 0)
1142                 goto out;
1143
1144         dev->actconfig = cp;
1145         if (!cp)
1146                 dev->state = USB_STATE_ADDRESS;
1147         else {
1148                 dev->state = USB_STATE_CONFIGURED;
1149
1150                 /* re-initialize hc/hcd/usbcore interface/endpoint state.
1151                  * this triggers binding of drivers to interfaces; and
1152                  * maybe probe() calls will choose different altsettings.
1153                  */
1154                 for (i = 0; i < cp->desc.bNumInterfaces; ++i) {
1155                         struct usb_interface *intf = cp->interface[i];
1156                         struct usb_host_interface *alt;
1157
1158                         alt = usb_altnum_to_altsetting(intf, 0);
1159
1160                         /* No altsetting 0?  We'll assume the first altsetting.
1161                          * We could use a GetInterface call, but if a device is
1162                          * so non-compliant that it doesn't have altsetting 0
1163                          * then I wouldn't trust its reply anyway.
1164                          */
1165                         if (!alt)
1166                                 alt = &intf->altsetting[0];
1167
1168                         intf->cur_altsetting = alt;
1169                         usb_enable_interface(dev, intf);
1170                         intf->dev.parent = &dev->dev;
1171                         intf->dev.driver = NULL;
1172                         intf->dev.bus = &usb_bus_type;
1173                         intf->dev.dma_mask = dev->dev.dma_mask;
1174                         intf->dev.release = release_interface;
1175                         device_initialize (&intf->dev);
1176                         sprintf (&intf->dev.bus_id[0], "%d-%s:%d.%d",
1177                                  dev->bus->busnum, dev->devpath,
1178                                  configuration,
1179                                  alt->desc.bInterfaceNumber);
1180                 }
1181
1182                 /* Now that all interfaces are setup, probe() calls
1183                  * may claim() any interface that's not yet bound.
1184                  * Many class drivers need that: CDC, audio, video, etc.
1185                  */
1186                 for (i = 0; i < cp->desc.bNumInterfaces; ++i) {
1187                         struct usb_interface *intf = cp->interface[i];
1188                         struct usb_interface_descriptor *desc;
1189
1190                         desc = &intf->altsetting [0].desc;
1191                         dev_dbg (&dev->dev,
1192                                 "adding %s (config #%d, interface %d)\n",
1193                                 intf->dev.bus_id, configuration,
1194                                 desc->bInterfaceNumber);
1195                         ret = device_add (&intf->dev);
1196                         if (ret != 0) {
1197                                 dev_err(&dev->dev,
1198                                         "device_add(%s) --> %d\n",
1199                                         intf->dev.bus_id,
1200                                         ret);
1201                                 continue;
1202                         }
1203                         usb_create_driverfs_intf_files (intf);
1204                 }
1205         }
1206
1207 out:
1208         return ret;
1209 }
1210
1211 /**
1212  * usb_string - returns ISO 8859-1 version of a string descriptor
1213  * @dev: the device whose string descriptor is being retrieved
1214  * @index: the number of the descriptor
1215  * @buf: where to put the string
1216  * @size: how big is "buf"?
1217  * Context: !in_interrupt ()
1218  * 
1219  * This converts the UTF-16LE encoded strings returned by devices, from
1220  * usb_get_string_descriptor(), to null-terminated ISO-8859-1 encoded ones
1221  * that are more usable in most kernel contexts.  Note that all characters
1222  * in the chosen descriptor that can't be encoded using ISO-8859-1
1223  * are converted to the question mark ("?") character, and this function
1224  * chooses strings in the first language supported by the device.
1225  *
1226  * The ASCII (or, redundantly, "US-ASCII") character set is the seven-bit
1227  * subset of ISO 8859-1. ISO-8859-1 is the eight-bit subset of Unicode,
1228  * and is appropriate for use many uses of English and several other
1229  * Western European languages.  (But it doesn't include the "Euro" symbol.)
1230  *
1231  * This call is synchronous, and may not be used in an interrupt context.
1232  *
1233  * Returns length of the string (>= 0) or usb_control_msg status (< 0).
1234  */
1235 int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
1236 {
1237         unsigned char *tbuf;
1238         int err, len;
1239         unsigned int u, idx;
1240
1241         if (size <= 0 || !buf || !index)
1242                 return -EINVAL;
1243         buf[0] = 0;
1244         tbuf = kmalloc(256, GFP_KERNEL);
1245         if (!tbuf)
1246                 return -ENOMEM;
1247
1248         /* get langid for strings if it's not yet known */
1249         if (!dev->have_langid) {
1250                 err = usb_get_descriptor(dev, USB_DT_STRING, 0, tbuf, 4);
1251                 if (err < 0) {
1252                         dev_err (&dev->dev,
1253                                 "string descriptor 0 read error: %d\n",
1254                                 err);
1255                         goto errout;
1256                 } else if (err < 4 || tbuf[0] < 4) {
1257                         dev_err (&dev->dev, "string descriptor 0 too short\n");
1258                         err = -EINVAL;
1259                         goto errout;
1260                 } else {
1261                         dev->have_langid = -1;
1262                         dev->string_langid = tbuf[2] | (tbuf[3]<< 8);
1263                                 /* always use the first langid listed */
1264                         dev_dbg (&dev->dev, "default language 0x%04x\n",
1265                                 dev->string_langid);
1266                 }
1267         }
1268
1269         /*
1270          * ask for the length of the string 
1271          */
1272
1273         err = usb_get_string(dev, dev->string_langid, index, tbuf, 2);
1274         if (err == -EPIPE) {
1275                 dev_dbg(&dev->dev, "RETRY string %d read/%d\n", index, 2);
1276                 err = usb_get_string(dev, dev->string_langid, index, tbuf, 2);
1277         }
1278         if(err<2)
1279                 goto errout;
1280         len=tbuf[0];    
1281         
1282         err = usb_get_string(dev, dev->string_langid, index, tbuf, len);
1283         if (err == -EPIPE) {
1284                 dev_dbg(&dev->dev, "RETRY string %d read/%d\n", index, len);
1285                 err = usb_get_string(dev, dev->string_langid, index, tbuf, len);
1286         }
1287         if (err < 0)
1288                 goto errout;
1289
1290         size--;         /* leave room for trailing NULL char in output buffer */
1291         for (idx = 0, u = 2; u < err; u += 2) {
1292                 if (idx >= size)
1293                         break;
1294                 if (tbuf[u+1])                  /* high byte */
1295                         buf[idx++] = '?';  /* non ISO-8859-1 character */
1296                 else
1297                         buf[idx++] = tbuf[u];
1298         }
1299         buf[idx] = 0;
1300         err = idx;
1301
1302  errout:
1303         kfree(tbuf);
1304         return err;
1305 }
1306
1307 // synchronous request completion model
1308 EXPORT_SYMBOL(usb_control_msg);
1309 EXPORT_SYMBOL(usb_bulk_msg);
1310
1311 EXPORT_SYMBOL(usb_sg_init);
1312 EXPORT_SYMBOL(usb_sg_cancel);
1313 EXPORT_SYMBOL(usb_sg_wait);
1314
1315 // synchronous control message convenience routines
1316 EXPORT_SYMBOL(usb_get_descriptor);
1317 EXPORT_SYMBOL(usb_get_status);
1318 EXPORT_SYMBOL(usb_get_string);
1319 EXPORT_SYMBOL(usb_string);
1320
1321 // synchronous calls that also maintain usbcore state
1322 EXPORT_SYMBOL(usb_clear_halt);
1323 EXPORT_SYMBOL(usb_reset_configuration);
1324 EXPORT_SYMBOL(usb_set_interface);
1325