patch-2_6_7-vs1_9_1_12
[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 /*
800  * usb_disable_device - Disable all the endpoints for a USB device
801  * @dev: the device whose endpoints are being disabled
802  * @skip_ep0: 0 to disable endpoint 0, 1 to skip it.
803  *
804  * Disables all the device's endpoints, potentially including endpoint 0.
805  * Deallocates hcd/hardware state for the endpoints (nuking all or most
806  * pending urbs) and usbcore state for the interfaces, so that usbcore
807  * must usb_set_configuration() before any interfaces could be used.
808  */
809 void usb_disable_device(struct usb_device *dev, int skip_ep0)
810 {
811         int i;
812
813         dev_dbg(&dev->dev, "%s nuking %s URBs\n", __FUNCTION__,
814                         skip_ep0 ? "non-ep0" : "all");
815         for (i = skip_ep0; i < 16; ++i) {
816                 usb_disable_endpoint(dev, i);
817                 usb_disable_endpoint(dev, i + USB_DIR_IN);
818         }
819         dev->toggle[0] = dev->toggle[1] = 0;
820         dev->halted[0] = dev->halted[1] = 0;
821
822         /* getting rid of interfaces will disconnect
823          * any drivers bound to them (a key side effect)
824          */
825         if (dev->actconfig) {
826                 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
827                         struct usb_interface    *interface;
828
829                         /* remove this interface */
830                         interface = dev->actconfig->interface[i];
831                         dev_dbg (&dev->dev, "unregistering interface %s\n",
832                                 interface->dev.bus_id);
833                         device_del (&interface->dev);
834                 }
835
836                 /* Now that the interfaces are unbound, nobody should
837                  * try to access them.
838                  */
839                 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
840                         put_device (&dev->actconfig->interface[i]->dev);
841                         dev->actconfig->interface[i] = NULL;
842                 }
843                 dev->actconfig = 0;
844                 if (dev->state == USB_STATE_CONFIGURED)
845                         dev->state = USB_STATE_ADDRESS;
846         }
847 }
848
849
850 /*
851  * usb_enable_endpoint - Enable an endpoint for USB communications
852  * @dev: the device whose interface is being enabled
853  * @epd: pointer to the endpoint descriptor
854  *
855  * Marks the endpoint as running, resets its toggle, and stores
856  * its maxpacket value.  For control endpoints, both the input
857  * and output sides are handled.
858  */
859 void usb_enable_endpoint(struct usb_device *dev,
860                 struct usb_endpoint_descriptor *epd)
861 {
862         int maxsize = epd->wMaxPacketSize;
863         unsigned int epaddr = epd->bEndpointAddress;
864         unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK;
865         int is_control = ((epd->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
866                                 USB_ENDPOINT_XFER_CONTROL);
867
868         if (usb_endpoint_out(epaddr) || is_control) {
869                 usb_endpoint_running(dev, epnum, 1);
870                 usb_settoggle(dev, epnum, 1, 0);
871                 dev->epmaxpacketout[epnum] = maxsize;
872         }
873         if (!usb_endpoint_out(epaddr) || is_control) {
874                 usb_endpoint_running(dev, epnum, 0);
875                 usb_settoggle(dev, epnum, 0, 0);
876                 dev->epmaxpacketin[epnum] = maxsize;
877         }
878 }
879
880 /*
881  * usb_enable_interface - Enable all the endpoints for an interface
882  * @dev: the device whose interface is being enabled
883  * @intf: pointer to the interface descriptor
884  *
885  * Enables all the endpoints for the interface's current altsetting.
886  */
887 void usb_enable_interface(struct usb_device *dev,
888                 struct usb_interface *intf)
889 {
890         struct usb_host_interface *alt = intf->cur_altsetting;
891         int i;
892
893         for (i = 0; i < alt->desc.bNumEndpoints; ++i)
894                 usb_enable_endpoint(dev, &alt->endpoint[i].desc);
895 }
896
897 /**
898  * usb_set_interface - Makes a particular alternate setting be current
899  * @dev: the device whose interface is being updated
900  * @interface: the interface being updated
901  * @alternate: the setting being chosen.
902  * Context: !in_interrupt ()
903  *
904  * This is used to enable data transfers on interfaces that may not
905  * be enabled by default.  Not all devices support such configurability.
906  * Only the driver bound to an interface may change its setting.
907  *
908  * Within any given configuration, each interface may have several
909  * alternative settings.  These are often used to control levels of
910  * bandwidth consumption.  For example, the default setting for a high
911  * speed interrupt endpoint may not send more than 64 bytes per microframe,
912  * while interrupt transfers of up to 3KBytes per microframe are legal.
913  * Also, isochronous endpoints may never be part of an
914  * interface's default setting.  To access such bandwidth, alternate
915  * interface settings must be made current.
916  *
917  * Note that in the Linux USB subsystem, bandwidth associated with
918  * an endpoint in a given alternate setting is not reserved until an URB
919  * is submitted that needs that bandwidth.  Some other operating systems
920  * allocate bandwidth early, when a configuration is chosen.
921  *
922  * This call is synchronous, and may not be used in an interrupt context.
923  * Also, drivers must not change altsettings while urbs are scheduled for
924  * endpoints in that interface; all such urbs must first be completed
925  * (perhaps forced by unlinking).
926  *
927  * Returns zero on success, or else the status code returned by the
928  * underlying usb_control_msg() call.
929  */
930 int usb_set_interface(struct usb_device *dev, int interface, int alternate)
931 {
932         struct usb_interface *iface;
933         struct usb_host_interface *alt;
934         int ret;
935         int manual = 0;
936
937         iface = usb_ifnum_to_if(dev, interface);
938         if (!iface) {
939                 dev_dbg(&dev->dev, "selecting invalid interface %d\n",
940                         interface);
941                 return -EINVAL;
942         }
943
944         alt = usb_altnum_to_altsetting(iface, alternate);
945         if (!alt) {
946                 warn("selecting invalid altsetting %d", alternate);
947                 return -EINVAL;
948         }
949
950         ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
951                                    USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
952                                    alternate, interface, NULL, 0, HZ * 5);
953
954         /* 9.4.10 says devices don't need this and are free to STALL the
955          * request if the interface only has one alternate setting.
956          */
957         if (ret == -EPIPE && iface->num_altsetting == 1) {
958                 dev_dbg(&dev->dev,
959                         "manual set_interface for iface %d, alt %d\n",
960                         interface, alternate);
961                 manual = 1;
962         } else if (ret < 0)
963                 return ret;
964
965         /* FIXME drivers shouldn't need to replicate/bugfix the logic here
966          * when they implement async or easily-killable versions of this or
967          * other "should-be-internal" functions (like clear_halt).
968          * should hcd+usbcore postprocess control requests?
969          */
970
971         /* prevent submissions using previous endpoint settings */
972         usb_disable_interface(dev, iface);
973
974         iface->cur_altsetting = alt;
975
976         /* If the interface only has one altsetting and the device didn't
977          * accept the request, we attempt to carry out the equivalent action
978          * by manually clearing the HALT feature for each endpoint in the
979          * new altsetting.
980          */
981         if (manual) {
982                 int i;
983
984                 for (i = 0; i < alt->desc.bNumEndpoints; i++) {
985                         unsigned int epaddr =
986                                 alt->endpoint[i].desc.bEndpointAddress;
987                         unsigned int pipe =
988         __create_pipe(dev, USB_ENDPOINT_NUMBER_MASK & epaddr)
989         | (usb_endpoint_out(epaddr) ? USB_DIR_OUT : USB_DIR_IN);
990
991                         usb_clear_halt(dev, pipe);
992                 }
993         }
994
995         /* 9.1.1.5: reset toggles for all endpoints in the new altsetting
996          *
997          * Note:
998          * Despite EP0 is always present in all interfaces/AS, the list of
999          * endpoints from the descriptor does not contain EP0. Due to its
1000          * omnipresence one might expect EP0 being considered "affected" by
1001          * any SetInterface request and hence assume toggles need to be reset.
1002          * However, EP0 toggles are re-synced for every individual transfer
1003          * during the SETUP stage - hence EP0 toggles are "don't care" here.
1004          * (Likewise, EP0 never "halts" on well designed devices.)
1005          */
1006         usb_enable_interface(dev, iface);
1007
1008         return 0;
1009 }
1010
1011 /**
1012  * usb_reset_configuration - lightweight device reset
1013  * @dev: the device whose configuration is being reset
1014  *
1015  * This issues a standard SET_CONFIGURATION request to the device using
1016  * the current configuration.  The effect is to reset most USB-related
1017  * state in the device, including interface altsettings (reset to zero),
1018  * endpoint halts (cleared), and data toggle (only for bulk and interrupt
1019  * endpoints).  Other usbcore state is unchanged, including bindings of
1020  * usb device drivers to interfaces.
1021  *
1022  * Because this affects multiple interfaces, avoid using this with composite
1023  * (multi-interface) devices.  Instead, the driver for each interface may
1024  * use usb_set_interface() on the interfaces it claims.  Resetting the whole
1025  * configuration would affect other drivers' interfaces.
1026  *
1027  * Returns zero on success, else a negative error code.
1028  */
1029 int usb_reset_configuration(struct usb_device *dev)
1030 {
1031         int                     i, retval;
1032         struct usb_host_config  *config;
1033
1034         /* caller must own dev->serialize (config won't change)
1035          * and the usb bus readlock (so driver bindings are stable);
1036          * so calls during probe() are fine
1037          */
1038
1039         for (i = 1; i < 16; ++i) {
1040                 usb_disable_endpoint(dev, i);
1041                 usb_disable_endpoint(dev, i + USB_DIR_IN);
1042         }
1043
1044         config = dev->actconfig;
1045         retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1046                         USB_REQ_SET_CONFIGURATION, 0,
1047                         config->desc.bConfigurationValue, 0,
1048                         NULL, 0, HZ * USB_CTRL_SET_TIMEOUT);
1049         if (retval < 0) {
1050                 dev->state = USB_STATE_ADDRESS;
1051                 return retval;
1052         }
1053
1054         dev->toggle[0] = dev->toggle[1] = 0;
1055         dev->halted[0] = dev->halted[1] = 0;
1056
1057         /* re-init hc/hcd interface/endpoint state */
1058         for (i = 0; i < config->desc.bNumInterfaces; i++) {
1059                 struct usb_interface *intf = config->interface[i];
1060                 struct usb_host_interface *alt;
1061
1062                 alt = usb_altnum_to_altsetting(intf, 0);
1063
1064                 /* No altsetting 0?  We'll assume the first altsetting.
1065                  * We could use a GetInterface call, but if a device is
1066                  * so non-compliant that it doesn't have altsetting 0
1067                  * then I wouldn't trust its reply anyway.
1068                  */
1069                 if (!alt)
1070                         alt = &intf->altsetting[0];
1071
1072                 intf->cur_altsetting = alt;
1073                 usb_enable_interface(dev, intf);
1074         }
1075         return 0;
1076 }
1077
1078 static void release_interface(struct device *dev)
1079 {
1080         struct usb_interface *intf = to_usb_interface(dev);
1081         struct usb_interface_cache *intfc =
1082                         altsetting_to_usb_interface_cache(intf->altsetting);
1083
1084         kref_put(&intfc->ref);
1085         kfree(intf);
1086 }
1087
1088 /*
1089  * usb_set_configuration - Makes a particular device setting be current
1090  * @dev: the device whose configuration is being updated
1091  * @configuration: the configuration being chosen.
1092  * Context: !in_interrupt(), caller holds dev->serialize
1093  *
1094  * This is used to enable non-default device modes.  Not all devices
1095  * use this kind of configurability; many devices only have one
1096  * configuration.
1097  *
1098  * USB device configurations may affect Linux interoperability,
1099  * power consumption and the functionality available.  For example,
1100  * the default configuration is limited to using 100mA of bus power,
1101  * so that when certain device functionality requires more power,
1102  * and the device is bus powered, that functionality should be in some
1103  * non-default device configuration.  Other device modes may also be
1104  * reflected as configuration options, such as whether two ISDN
1105  * channels are available independently; and choosing between open
1106  * standard device protocols (like CDC) or proprietary ones.
1107  *
1108  * Note that USB has an additional level of device configurability,
1109  * associated with interfaces.  That configurability is accessed using
1110  * usb_set_interface().
1111  *
1112  * This call is synchronous. The calling context must be able to sleep,
1113  * and must not hold the driver model lock for USB; usb device driver
1114  * probe() methods may not use this routine.
1115  *
1116  * Returns zero on success, or else the status code returned by the
1117  * underlying call that failed.  On succesful completion, each interface
1118  * in the original device configuration has been destroyed, and each one
1119  * in the new configuration has been probed by all relevant usb device
1120  * drivers currently known to the kernel.
1121  */
1122 int usb_set_configuration(struct usb_device *dev, int configuration)
1123 {
1124         int i, ret;
1125         struct usb_host_config *cp = NULL;
1126         struct usb_interface **new_interfaces = NULL;
1127         int n, nintf;
1128
1129         /* dev->serialize guards all config changes */
1130
1131         for (i = 0; i < dev->descriptor.bNumConfigurations; i++) {
1132                 if (dev->config[i].desc.bConfigurationValue == configuration) {
1133                         cp = &dev->config[i];
1134                         break;
1135                 }
1136         }
1137         if ((!cp && configuration != 0))
1138                 return -EINVAL;
1139
1140         /* The USB spec says configuration 0 means unconfigured.
1141          * But if a device includes a configuration numbered 0,
1142          * we will accept it as a correctly configured state.
1143          */
1144         if (cp && configuration == 0)
1145                 dev_warn(&dev->dev, "config 0 descriptor??\n");
1146
1147         /* Allocate memory for new interfaces before doing anything else,
1148          * so that if we run out then nothing will have changed. */
1149         n = nintf = 0;
1150         if (cp) {
1151                 nintf = cp->desc.bNumInterfaces;
1152                 new_interfaces = kmalloc(nintf * sizeof(*new_interfaces),
1153                                 GFP_KERNEL);
1154                 if (!new_interfaces) {
1155                         dev_err(&dev->dev, "Out of memory");
1156                         return -ENOMEM;
1157                 }
1158
1159                 for (; n < nintf; ++n) {
1160                         new_interfaces[n] = kmalloc(
1161                                         sizeof(struct usb_interface),
1162                                         GFP_KERNEL);
1163                         if (!new_interfaces[n]) {
1164                                 dev_err(&dev->dev, "Out of memory");
1165                                 ret = -ENOMEM;
1166 free_interfaces:
1167                                 while (--n >= 0)
1168                                         kfree(new_interfaces[n]);
1169                                 kfree(new_interfaces);
1170                                 return ret;
1171                         }
1172                 }
1173         }
1174
1175         /* if it's already configured, clear out old state first.
1176          * getting rid of old interfaces means unbinding their drivers.
1177          */
1178         if (dev->state != USB_STATE_ADDRESS)
1179                 usb_disable_device (dev, 1);    // Skip ep0
1180
1181         if ((ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1182                         USB_REQ_SET_CONFIGURATION, 0, configuration, 0,
1183                         NULL, 0, HZ * USB_CTRL_SET_TIMEOUT)) < 0)
1184                 goto free_interfaces;
1185
1186         dev->actconfig = cp;
1187         if (!cp)
1188                 dev->state = USB_STATE_ADDRESS;
1189         else {
1190                 dev->state = USB_STATE_CONFIGURED;
1191
1192                 /* Initialize the new interface structures and the
1193                  * hc/hcd/usbcore interface/endpoint state.
1194                  */
1195                 for (i = 0; i < nintf; ++i) {
1196                         struct usb_interface_cache *intfc;
1197                         struct usb_interface *intf;
1198                         struct usb_host_interface *alt;
1199
1200                         cp->interface[i] = intf = new_interfaces[i];
1201                         memset(intf, 0, sizeof(*intf));
1202                         intfc = cp->intf_cache[i];
1203                         intf->altsetting = intfc->altsetting;
1204                         intf->num_altsetting = intfc->num_altsetting;
1205                         kref_get(&intfc->ref);
1206
1207                         alt = usb_altnum_to_altsetting(intf, 0);
1208
1209                         /* No altsetting 0?  We'll assume the first altsetting.
1210                          * We could use a GetInterface call, but if a device is
1211                          * so non-compliant that it doesn't have altsetting 0
1212                          * then I wouldn't trust its reply anyway.
1213                          */
1214                         if (!alt)
1215                                 alt = &intf->altsetting[0];
1216
1217                         intf->cur_altsetting = alt;
1218                         usb_enable_interface(dev, intf);
1219                         intf->dev.parent = &dev->dev;
1220                         intf->dev.driver = NULL;
1221                         intf->dev.bus = &usb_bus_type;
1222                         intf->dev.dma_mask = dev->dev.dma_mask;
1223                         intf->dev.release = release_interface;
1224                         device_initialize (&intf->dev);
1225                         sprintf (&intf->dev.bus_id[0], "%d-%s:%d.%d",
1226                                  dev->bus->busnum, dev->devpath,
1227                                  configuration,
1228                                  alt->desc.bInterfaceNumber);
1229                 }
1230                 kfree(new_interfaces);
1231
1232                 /* Now that all the interfaces are set up, register them
1233                  * to trigger binding of drivers to interfaces.  probe()
1234                  * routines may install different altsettings and may
1235                  * claim() any interfaces not yet bound.  Many class drivers
1236                  * need that: CDC, audio, video, etc.
1237                  */
1238                 for (i = 0; i < nintf; ++i) {
1239                         struct usb_interface *intf = cp->interface[i];
1240                         struct usb_interface_descriptor *desc;
1241
1242                         desc = &intf->altsetting [0].desc;
1243                         dev_dbg (&dev->dev,
1244                                 "adding %s (config #%d, interface %d)\n",
1245                                 intf->dev.bus_id, configuration,
1246                                 desc->bInterfaceNumber);
1247                         ret = device_add (&intf->dev);
1248                         if (ret != 0) {
1249                                 dev_err(&dev->dev,
1250                                         "device_add(%s) --> %d\n",
1251                                         intf->dev.bus_id,
1252                                         ret);
1253                                 continue;
1254                         }
1255                         usb_create_sysfs_intf_files (intf);
1256                 }
1257         }
1258
1259         return ret;
1260 }
1261
1262 /**
1263  * usb_string - returns ISO 8859-1 version of a string descriptor
1264  * @dev: the device whose string descriptor is being retrieved
1265  * @index: the number of the descriptor
1266  * @buf: where to put the string
1267  * @size: how big is "buf"?
1268  * Context: !in_interrupt ()
1269  * 
1270  * This converts the UTF-16LE encoded strings returned by devices, from
1271  * usb_get_string_descriptor(), to null-terminated ISO-8859-1 encoded ones
1272  * that are more usable in most kernel contexts.  Note that all characters
1273  * in the chosen descriptor that can't be encoded using ISO-8859-1
1274  * are converted to the question mark ("?") character, and this function
1275  * chooses strings in the first language supported by the device.
1276  *
1277  * The ASCII (or, redundantly, "US-ASCII") character set is the seven-bit
1278  * subset of ISO 8859-1. ISO-8859-1 is the eight-bit subset of Unicode,
1279  * and is appropriate for use many uses of English and several other
1280  * Western European languages.  (But it doesn't include the "Euro" symbol.)
1281  *
1282  * This call is synchronous, and may not be used in an interrupt context.
1283  *
1284  * Returns length of the string (>= 0) or usb_control_msg status (< 0).
1285  */
1286 int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
1287 {
1288         unsigned char *tbuf;
1289         int err, len;
1290         unsigned int u, idx;
1291
1292         if (size <= 0 || !buf || !index)
1293                 return -EINVAL;
1294         buf[0] = 0;
1295         tbuf = kmalloc(256, GFP_KERNEL);
1296         if (!tbuf)
1297                 return -ENOMEM;
1298
1299         /* get langid for strings if it's not yet known */
1300         if (!dev->have_langid) {
1301                 err = usb_get_descriptor(dev, USB_DT_STRING, 0, tbuf, 4);
1302                 if (err < 0) {
1303                         dev_err (&dev->dev,
1304                                 "string descriptor 0 read error: %d\n",
1305                                 err);
1306                         goto errout;
1307                 } else if (err < 4 || tbuf[0] < 4) {
1308                         dev_err (&dev->dev, "string descriptor 0 too short\n");
1309                         err = -EINVAL;
1310                         goto errout;
1311                 } else {
1312                         dev->have_langid = -1;
1313                         dev->string_langid = tbuf[2] | (tbuf[3]<< 8);
1314                                 /* always use the first langid listed */
1315                         dev_dbg (&dev->dev, "default language 0x%04x\n",
1316                                 dev->string_langid);
1317                 }
1318         }
1319
1320         /*
1321          * ask for the length of the string 
1322          */
1323
1324         err = usb_get_string(dev, dev->string_langid, index, tbuf, 2);
1325         if (err == -EPIPE) {
1326                 dev_dbg(&dev->dev, "RETRY string %d read/%d\n", index, 2);
1327                 err = usb_get_string(dev, dev->string_langid, index, tbuf, 2);
1328         }
1329         if(err<2)
1330                 goto errout;
1331         len=tbuf[0];    
1332         
1333         err = usb_get_string(dev, dev->string_langid, index, tbuf, len);
1334         if (err == -EPIPE) {
1335                 dev_dbg(&dev->dev, "RETRY string %d read/%d\n", index, len);
1336                 err = usb_get_string(dev, dev->string_langid, index, tbuf, len);
1337         }
1338         if (err < 0)
1339                 goto errout;
1340
1341         size--;         /* leave room for trailing NULL char in output buffer */
1342         for (idx = 0, u = 2; u < err; u += 2) {
1343                 if (idx >= size)
1344                         break;
1345                 if (tbuf[u+1])                  /* high byte */
1346                         buf[idx++] = '?';  /* non ISO-8859-1 character */
1347                 else
1348                         buf[idx++] = tbuf[u];
1349         }
1350         buf[idx] = 0;
1351         err = idx;
1352
1353  errout:
1354         kfree(tbuf);
1355         return err;
1356 }
1357
1358 // synchronous request completion model
1359 EXPORT_SYMBOL(usb_control_msg);
1360 EXPORT_SYMBOL(usb_bulk_msg);
1361
1362 EXPORT_SYMBOL(usb_sg_init);
1363 EXPORT_SYMBOL(usb_sg_cancel);
1364 EXPORT_SYMBOL(usb_sg_wait);
1365
1366 // synchronous control message convenience routines
1367 EXPORT_SYMBOL(usb_get_descriptor);
1368 EXPORT_SYMBOL(usb_get_status);
1369 EXPORT_SYMBOL(usb_get_string);
1370 EXPORT_SYMBOL(usb_string);
1371
1372 // synchronous calls that also maintain usbcore state
1373 EXPORT_SYMBOL(usb_clear_halt);
1374 EXPORT_SYMBOL(usb_reset_configuration);
1375 EXPORT_SYMBOL(usb_set_interface);
1376