usb-core bInterval quirk
[pandora-kernel.git] / drivers / usb / core / config.c
1 #include <linux/usb.h>
2 #include <linux/usb/ch9.h>
3 #include <linux/usb/hcd.h>
4 #include <linux/usb/quirks.h>
5 #include <linux/module.h>
6 #include <linux/init.h>
7 #include <linux/slab.h>
8 #include <linux/device.h>
9 #include <asm/byteorder.h>
10 #include "usb.h"
11
12
13 #define USB_MAXALTSETTING               128     /* Hard limit */
14 #define USB_MAXENDPOINTS                30      /* Hard limit */
15
16 #define USB_MAXCONFIG                   8       /* Arbitrary limit */
17
18
19 static inline const char *plural(int n)
20 {
21         return (n == 1 ? "" : "s");
22 }
23
24 static int find_next_descriptor(unsigned char *buffer, int size,
25     int dt1, int dt2, int *num_skipped)
26 {
27         struct usb_descriptor_header *h;
28         int n = 0;
29         unsigned char *buffer0 = buffer;
30
31         /* Find the next descriptor of type dt1 or dt2 */
32         while (size > 0) {
33                 h = (struct usb_descriptor_header *) buffer;
34                 if (h->bDescriptorType == dt1 || h->bDescriptorType == dt2)
35                         break;
36                 buffer += h->bLength;
37                 size -= h->bLength;
38                 ++n;
39         }
40
41         /* Store the number of descriptors skipped and return the
42          * number of bytes skipped */
43         if (num_skipped)
44                 *num_skipped = n;
45         return buffer - buffer0;
46 }
47
48 static void usb_parse_ss_endpoint_companion(struct device *ddev, int cfgno,
49                 int inum, int asnum, struct usb_host_endpoint *ep,
50                 unsigned char *buffer, int size)
51 {
52         struct usb_ss_ep_comp_descriptor *desc;
53         int max_tx;
54
55         /* The SuperSpeed endpoint companion descriptor is supposed to
56          * be the first thing immediately following the endpoint descriptor.
57          */
58         desc = (struct usb_ss_ep_comp_descriptor *) buffer;
59         if (desc->bDescriptorType != USB_DT_SS_ENDPOINT_COMP ||
60                         size < USB_DT_SS_EP_COMP_SIZE) {
61                 dev_warn(ddev, "No SuperSpeed endpoint companion for config %d "
62                                 " interface %d altsetting %d ep %d: "
63                                 "using minimum values\n",
64                                 cfgno, inum, asnum, ep->desc.bEndpointAddress);
65
66                 /* Fill in some default values.
67                  * Leave bmAttributes as zero, which will mean no streams for
68                  * bulk, and isoc won't support multiple bursts of packets.
69                  * With bursts of only one packet, and a Mult of 1, the max
70                  * amount of data moved per endpoint service interval is one
71                  * packet.
72                  */
73                 ep->ss_ep_comp.bLength = USB_DT_SS_EP_COMP_SIZE;
74                 ep->ss_ep_comp.bDescriptorType = USB_DT_SS_ENDPOINT_COMP;
75                 if (usb_endpoint_xfer_isoc(&ep->desc) ||
76                                 usb_endpoint_xfer_int(&ep->desc))
77                         ep->ss_ep_comp.wBytesPerInterval =
78                                         ep->desc.wMaxPacketSize;
79                 return;
80         }
81
82         memcpy(&ep->ss_ep_comp, desc, USB_DT_SS_EP_COMP_SIZE);
83
84         /* Check the various values */
85         if (usb_endpoint_xfer_control(&ep->desc) && desc->bMaxBurst != 0) {
86                 dev_warn(ddev, "Control endpoint with bMaxBurst = %d in "
87                                 "config %d interface %d altsetting %d ep %d: "
88                                 "setting to zero\n", desc->bMaxBurst,
89                                 cfgno, inum, asnum, ep->desc.bEndpointAddress);
90                 ep->ss_ep_comp.bMaxBurst = 0;
91         } else if (desc->bMaxBurst > 15) {
92                 dev_warn(ddev, "Endpoint with bMaxBurst = %d in "
93                                 "config %d interface %d altsetting %d ep %d: "
94                                 "setting to 15\n", desc->bMaxBurst,
95                                 cfgno, inum, asnum, ep->desc.bEndpointAddress);
96                 ep->ss_ep_comp.bMaxBurst = 15;
97         }
98
99         if ((usb_endpoint_xfer_control(&ep->desc) ||
100                         usb_endpoint_xfer_int(&ep->desc)) &&
101                                 desc->bmAttributes != 0) {
102                 dev_warn(ddev, "%s endpoint with bmAttributes = %d in "
103                                 "config %d interface %d altsetting %d ep %d: "
104                                 "setting to zero\n",
105                                 usb_endpoint_xfer_control(&ep->desc) ? "Control" : "Bulk",
106                                 desc->bmAttributes,
107                                 cfgno, inum, asnum, ep->desc.bEndpointAddress);
108                 ep->ss_ep_comp.bmAttributes = 0;
109         } else if (usb_endpoint_xfer_bulk(&ep->desc) &&
110                         desc->bmAttributes > 16) {
111                 dev_warn(ddev, "Bulk endpoint with more than 65536 streams in "
112                                 "config %d interface %d altsetting %d ep %d: "
113                                 "setting to max\n",
114                                 cfgno, inum, asnum, ep->desc.bEndpointAddress);
115                 ep->ss_ep_comp.bmAttributes = 16;
116         } else if (usb_endpoint_xfer_isoc(&ep->desc) &&
117                         desc->bmAttributes > 2) {
118                 dev_warn(ddev, "Isoc endpoint has Mult of %d in "
119                                 "config %d interface %d altsetting %d ep %d: "
120                                 "setting to 3\n", desc->bmAttributes + 1,
121                                 cfgno, inum, asnum, ep->desc.bEndpointAddress);
122                 ep->ss_ep_comp.bmAttributes = 2;
123         }
124
125         if (usb_endpoint_xfer_isoc(&ep->desc))
126                 max_tx = (desc->bMaxBurst + 1) * (desc->bmAttributes + 1) *
127                         usb_endpoint_maxp(&ep->desc);
128         else if (usb_endpoint_xfer_int(&ep->desc))
129                 max_tx = usb_endpoint_maxp(&ep->desc) *
130                         (desc->bMaxBurst + 1);
131         else
132                 max_tx = 999999;
133         if (le16_to_cpu(desc->wBytesPerInterval) > max_tx) {
134                 dev_warn(ddev, "%s endpoint with wBytesPerInterval of %d in "
135                                 "config %d interface %d altsetting %d ep %d: "
136                                 "setting to %d\n",
137                                 usb_endpoint_xfer_isoc(&ep->desc) ? "Isoc" : "Int",
138                                 le16_to_cpu(desc->wBytesPerInterval),
139                                 cfgno, inum, asnum, ep->desc.bEndpointAddress,
140                                 max_tx);
141                 ep->ss_ep_comp.wBytesPerInterval = cpu_to_le16(max_tx);
142         }
143 }
144
145 static int usb_parse_endpoint(struct device *ddev, int cfgno, int inum,
146     int asnum, struct usb_host_interface *ifp, int num_ep,
147     unsigned char *buffer, int size)
148 {
149         unsigned char *buffer0 = buffer;
150         struct usb_endpoint_descriptor *d;
151         struct usb_host_endpoint *endpoint;
152         int n, i, j, retval;
153
154         d = (struct usb_endpoint_descriptor *) buffer;
155         buffer += d->bLength;
156         size -= d->bLength;
157
158         if (d->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE)
159                 n = USB_DT_ENDPOINT_AUDIO_SIZE;
160         else if (d->bLength >= USB_DT_ENDPOINT_SIZE)
161                 n = USB_DT_ENDPOINT_SIZE;
162         else {
163                 dev_warn(ddev, "config %d interface %d altsetting %d has an "
164                     "invalid endpoint descriptor of length %d, skipping\n",
165                     cfgno, inum, asnum, d->bLength);
166                 goto skip_to_next_endpoint_or_interface_descriptor;
167         }
168
169         i = d->bEndpointAddress & ~USB_ENDPOINT_DIR_MASK;
170         if (i >= 16 || i == 0) {
171                 dev_warn(ddev, "config %d interface %d altsetting %d has an "
172                     "invalid endpoint with address 0x%X, skipping\n",
173                     cfgno, inum, asnum, d->bEndpointAddress);
174                 goto skip_to_next_endpoint_or_interface_descriptor;
175         }
176
177         /* Only store as many endpoints as we have room for */
178         if (ifp->desc.bNumEndpoints >= num_ep)
179                 goto skip_to_next_endpoint_or_interface_descriptor;
180
181         endpoint = &ifp->endpoint[ifp->desc.bNumEndpoints];
182         ++ifp->desc.bNumEndpoints;
183
184         memcpy(&endpoint->desc, d, n);
185         INIT_LIST_HEAD(&endpoint->urb_list);
186
187         /* Fix up bInterval values outside the legal range. Use 32 ms if no
188          * proper value can be guessed. */
189         i = 0;          /* i = min, j = max, n = default */
190         j = 255;
191         if (usb_endpoint_xfer_int(d)) {
192                 i = 1;
193                 switch (to_usb_device(ddev)->speed) {
194                 case USB_SPEED_SUPER:
195                 case USB_SPEED_HIGH:
196                         /* Many device manufacturers are using full-speed
197                          * bInterval values in high-speed interrupt endpoint
198                          * descriptors. Try to fix those and fall back to a
199                          * 32 ms default value otherwise. */
200                         n = fls(d->bInterval*8);
201                         if (n == 0)
202                                 n = 9;  /* 32 ms = 2^(9-1) uframes */
203                         j = 16;
204
205                         /*
206                          * Adjust bInterval for quirked devices.
207                          * This quirk fixes bIntervals reported in
208                          * linear microframes.
209                          */
210                         if (to_usb_device(ddev)->quirks &
211                                 USB_QUIRK_LINEAR_UFRAME_INTR_BINTERVAL) {
212                                 n = clamp(fls(d->bInterval), i, j);
213                                 i = j = n;
214                         }
215                         break;
216                 default:                /* USB_SPEED_FULL or _LOW */
217                         /* For low-speed, 10 ms is the official minimum.
218                          * But some "overclocked" devices might want faster
219                          * polling so we'll allow it. */
220                         n = 32;
221                         break;
222                 }
223         } else if (usb_endpoint_xfer_isoc(d)) {
224                 i = 1;
225                 j = 16;
226                 switch (to_usb_device(ddev)->speed) {
227                 case USB_SPEED_HIGH:
228                         n = 9;          /* 32 ms = 2^(9-1) uframes */
229                         break;
230                 default:                /* USB_SPEED_FULL */
231                         n = 6;          /* 32 ms = 2^(6-1) frames */
232                         break;
233                 }
234         }
235         if (d->bInterval < i || d->bInterval > j) {
236                 dev_warn(ddev, "config %d interface %d altsetting %d "
237                     "endpoint 0x%X has an invalid bInterval %d, "
238                     "changing to %d\n",
239                     cfgno, inum, asnum,
240                     d->bEndpointAddress, d->bInterval, n);
241                 endpoint->desc.bInterval = n;
242         }
243
244         /* Some buggy low-speed devices have Bulk endpoints, which is
245          * explicitly forbidden by the USB spec.  In an attempt to make
246          * them usable, we will try treating them as Interrupt endpoints.
247          */
248         if (to_usb_device(ddev)->speed == USB_SPEED_LOW &&
249                         usb_endpoint_xfer_bulk(d)) {
250                 dev_warn(ddev, "config %d interface %d altsetting %d "
251                     "endpoint 0x%X is Bulk; changing to Interrupt\n",
252                     cfgno, inum, asnum, d->bEndpointAddress);
253                 endpoint->desc.bmAttributes = USB_ENDPOINT_XFER_INT;
254                 endpoint->desc.bInterval = 1;
255                 if (usb_endpoint_maxp(&endpoint->desc) > 8)
256                         endpoint->desc.wMaxPacketSize = cpu_to_le16(8);
257         }
258
259         /*
260          * Some buggy high speed devices have bulk endpoints using
261          * maxpacket sizes other than 512.  High speed HCDs may not
262          * be able to handle that particular bug, so let's warn...
263          */
264         if (to_usb_device(ddev)->speed == USB_SPEED_HIGH
265                         && usb_endpoint_xfer_bulk(d)) {
266                 unsigned maxp;
267
268                 maxp = usb_endpoint_maxp(&endpoint->desc) & 0x07ff;
269                 if (maxp != 512)
270                         dev_warn(ddev, "config %d interface %d altsetting %d "
271                                 "bulk endpoint 0x%X has invalid maxpacket %d\n",
272                                 cfgno, inum, asnum, d->bEndpointAddress,
273                                 maxp);
274         }
275
276         /* Parse a possible SuperSpeed endpoint companion descriptor */
277         if (to_usb_device(ddev)->speed == USB_SPEED_SUPER)
278                 usb_parse_ss_endpoint_companion(ddev, cfgno,
279                                 inum, asnum, endpoint, buffer, size);
280
281         /* Skip over any Class Specific or Vendor Specific descriptors;
282          * find the next endpoint or interface descriptor */
283         endpoint->extra = buffer;
284         i = find_next_descriptor(buffer, size, USB_DT_ENDPOINT,
285                         USB_DT_INTERFACE, &n);
286         endpoint->extralen = i;
287         retval = buffer - buffer0 + i;
288         if (n > 0)
289                 dev_dbg(ddev, "skipped %d descriptor%s after %s\n",
290                     n, plural(n), "endpoint");
291         return retval;
292
293 skip_to_next_endpoint_or_interface_descriptor:
294         i = find_next_descriptor(buffer, size, USB_DT_ENDPOINT,
295             USB_DT_INTERFACE, NULL);
296         return buffer - buffer0 + i;
297 }
298
299 void usb_release_interface_cache(struct kref *ref)
300 {
301         struct usb_interface_cache *intfc = ref_to_usb_interface_cache(ref);
302         int j;
303
304         for (j = 0; j < intfc->num_altsetting; j++) {
305                 struct usb_host_interface *alt = &intfc->altsetting[j];
306
307                 kfree(alt->endpoint);
308                 kfree(alt->string);
309         }
310         kfree(intfc);
311 }
312
313 static int usb_parse_interface(struct device *ddev, int cfgno,
314     struct usb_host_config *config, unsigned char *buffer, int size,
315     u8 inums[], u8 nalts[])
316 {
317         unsigned char *buffer0 = buffer;
318         struct usb_interface_descriptor *d;
319         int inum, asnum;
320         struct usb_interface_cache *intfc;
321         struct usb_host_interface *alt;
322         int i, n;
323         int len, retval;
324         int num_ep, num_ep_orig;
325
326         d = (struct usb_interface_descriptor *) buffer;
327         buffer += d->bLength;
328         size -= d->bLength;
329
330         if (d->bLength < USB_DT_INTERFACE_SIZE)
331                 goto skip_to_next_interface_descriptor;
332
333         /* Which interface entry is this? */
334         intfc = NULL;
335         inum = d->bInterfaceNumber;
336         for (i = 0; i < config->desc.bNumInterfaces; ++i) {
337                 if (inums[i] == inum) {
338                         intfc = config->intf_cache[i];
339                         break;
340                 }
341         }
342         if (!intfc || intfc->num_altsetting >= nalts[i])
343                 goto skip_to_next_interface_descriptor;
344
345         /* Check for duplicate altsetting entries */
346         asnum = d->bAlternateSetting;
347         for ((i = 0, alt = &intfc->altsetting[0]);
348               i < intfc->num_altsetting;
349              (++i, ++alt)) {
350                 if (alt->desc.bAlternateSetting == asnum) {
351                         dev_warn(ddev, "Duplicate descriptor for config %d "
352                             "interface %d altsetting %d, skipping\n",
353                             cfgno, inum, asnum);
354                         goto skip_to_next_interface_descriptor;
355                 }
356         }
357
358         ++intfc->num_altsetting;
359         memcpy(&alt->desc, d, USB_DT_INTERFACE_SIZE);
360
361         /* Skip over any Class Specific or Vendor Specific descriptors;
362          * find the first endpoint or interface descriptor */
363         alt->extra = buffer;
364         i = find_next_descriptor(buffer, size, USB_DT_ENDPOINT,
365             USB_DT_INTERFACE, &n);
366         alt->extralen = i;
367         if (n > 0)
368                 dev_dbg(ddev, "skipped %d descriptor%s after %s\n",
369                     n, plural(n), "interface");
370         buffer += i;
371         size -= i;
372
373         /* Allocate space for the right(?) number of endpoints */
374         num_ep = num_ep_orig = alt->desc.bNumEndpoints;
375         alt->desc.bNumEndpoints = 0;            /* Use as a counter */
376         if (num_ep > USB_MAXENDPOINTS) {
377                 dev_warn(ddev, "too many endpoints for config %d interface %d "
378                     "altsetting %d: %d, using maximum allowed: %d\n",
379                     cfgno, inum, asnum, num_ep, USB_MAXENDPOINTS);
380                 num_ep = USB_MAXENDPOINTS;
381         }
382
383         if (num_ep > 0) {
384                 /* Can't allocate 0 bytes */
385                 len = sizeof(struct usb_host_endpoint) * num_ep;
386                 alt->endpoint = kzalloc(len, GFP_KERNEL);
387                 if (!alt->endpoint)
388                         return -ENOMEM;
389         }
390
391         /* Parse all the endpoint descriptors */
392         n = 0;
393         while (size > 0) {
394                 if (((struct usb_descriptor_header *) buffer)->bDescriptorType
395                      == USB_DT_INTERFACE)
396                         break;
397                 retval = usb_parse_endpoint(ddev, cfgno, inum, asnum, alt,
398                     num_ep, buffer, size);
399                 if (retval < 0)
400                         return retval;
401                 ++n;
402
403                 buffer += retval;
404                 size -= retval;
405         }
406
407         if (n != num_ep_orig)
408                 dev_warn(ddev, "config %d interface %d altsetting %d has %d "
409                     "endpoint descriptor%s, different from the interface "
410                     "descriptor's value: %d\n",
411                     cfgno, inum, asnum, n, plural(n), num_ep_orig);
412         return buffer - buffer0;
413
414 skip_to_next_interface_descriptor:
415         i = find_next_descriptor(buffer, size, USB_DT_INTERFACE,
416             USB_DT_INTERFACE, NULL);
417         return buffer - buffer0 + i;
418 }
419
420 static int usb_parse_configuration(struct usb_device *dev, int cfgidx,
421     struct usb_host_config *config, unsigned char *buffer, int size)
422 {
423         struct device *ddev = &dev->dev;
424         unsigned char *buffer0 = buffer;
425         int cfgno;
426         int nintf, nintf_orig;
427         int i, j, n;
428         struct usb_interface_cache *intfc;
429         unsigned char *buffer2;
430         int size2;
431         struct usb_descriptor_header *header;
432         int len, retval;
433         u8 inums[USB_MAXINTERFACES], nalts[USB_MAXINTERFACES];
434         unsigned iad_num = 0;
435
436         memcpy(&config->desc, buffer, USB_DT_CONFIG_SIZE);
437         if (config->desc.bDescriptorType != USB_DT_CONFIG ||
438             config->desc.bLength < USB_DT_CONFIG_SIZE ||
439             config->desc.bLength > size) {
440                 dev_err(ddev, "invalid descriptor for config index %d: "
441                     "type = 0x%X, length = %d\n", cfgidx,
442                     config->desc.bDescriptorType, config->desc.bLength);
443                 return -EINVAL;
444         }
445         cfgno = config->desc.bConfigurationValue;
446
447         buffer += config->desc.bLength;
448         size -= config->desc.bLength;
449
450         nintf = nintf_orig = config->desc.bNumInterfaces;
451         if (nintf > USB_MAXINTERFACES) {
452                 dev_warn(ddev, "config %d has too many interfaces: %d, "
453                     "using maximum allowed: %d\n",
454                     cfgno, nintf, USB_MAXINTERFACES);
455                 nintf = USB_MAXINTERFACES;
456         }
457
458         /* Go through the descriptors, checking their length and counting the
459          * number of altsettings for each interface */
460         n = 0;
461         for ((buffer2 = buffer, size2 = size);
462               size2 > 0;
463              (buffer2 += header->bLength, size2 -= header->bLength)) {
464
465                 if (size2 < sizeof(struct usb_descriptor_header)) {
466                         dev_warn(ddev, "config %d descriptor has %d excess "
467                             "byte%s, ignoring\n",
468                             cfgno, size2, plural(size2));
469                         break;
470                 }
471
472                 header = (struct usb_descriptor_header *) buffer2;
473                 if ((header->bLength > size2) || (header->bLength < 2)) {
474                         dev_warn(ddev, "config %d has an invalid descriptor "
475                             "of length %d, skipping remainder of the config\n",
476                             cfgno, header->bLength);
477                         break;
478                 }
479
480                 if (header->bDescriptorType == USB_DT_INTERFACE) {
481                         struct usb_interface_descriptor *d;
482                         int inum;
483
484                         d = (struct usb_interface_descriptor *) header;
485                         if (d->bLength < USB_DT_INTERFACE_SIZE) {
486                                 dev_warn(ddev, "config %d has an invalid "
487                                     "interface descriptor of length %d, "
488                                     "skipping\n", cfgno, d->bLength);
489                                 continue;
490                         }
491
492                         inum = d->bInterfaceNumber;
493
494                         if ((dev->quirks & USB_QUIRK_HONOR_BNUMINTERFACES) &&
495                             n >= nintf_orig) {
496                                 dev_warn(ddev, "config %d has more interface "
497                                     "descriptors, than it declares in "
498                                     "bNumInterfaces, ignoring interface "
499                                     "number: %d\n", cfgno, inum);
500                                 continue;
501                         }
502
503                         if (inum >= nintf_orig)
504                                 dev_warn(ddev, "config %d has an invalid "
505                                     "interface number: %d but max is %d\n",
506                                     cfgno, inum, nintf_orig - 1);
507
508                         /* Have we already encountered this interface?
509                          * Count its altsettings */
510                         for (i = 0; i < n; ++i) {
511                                 if (inums[i] == inum)
512                                         break;
513                         }
514                         if (i < n) {
515                                 if (nalts[i] < 255)
516                                         ++nalts[i];
517                         } else if (n < USB_MAXINTERFACES) {
518                                 inums[n] = inum;
519                                 nalts[n] = 1;
520                                 ++n;
521                         }
522
523                 } else if (header->bDescriptorType ==
524                                 USB_DT_INTERFACE_ASSOCIATION) {
525                         if (iad_num == USB_MAXIADS) {
526                                 dev_warn(ddev, "found more Interface "
527                                                "Association Descriptors "
528                                                "than allocated for in "
529                                                "configuration %d\n", cfgno);
530                         } else {
531                                 config->intf_assoc[iad_num] =
532                                         (struct usb_interface_assoc_descriptor
533                                         *)header;
534                                 iad_num++;
535                         }
536
537                 } else if (header->bDescriptorType == USB_DT_DEVICE ||
538                             header->bDescriptorType == USB_DT_CONFIG)
539                         dev_warn(ddev, "config %d contains an unexpected "
540                             "descriptor of type 0x%X, skipping\n",
541                             cfgno, header->bDescriptorType);
542
543         }       /* for ((buffer2 = buffer, size2 = size); ...) */
544         size = buffer2 - buffer;
545         config->desc.wTotalLength = cpu_to_le16(buffer2 - buffer0);
546
547         if (n != nintf)
548                 dev_warn(ddev, "config %d has %d interface%s, different from "
549                     "the descriptor's value: %d\n",
550                     cfgno, n, plural(n), nintf_orig);
551         else if (n == 0)
552                 dev_warn(ddev, "config %d has no interfaces?\n", cfgno);
553         config->desc.bNumInterfaces = nintf = n;
554
555         /* Check for missing interface numbers */
556         for (i = 0; i < nintf; ++i) {
557                 for (j = 0; j < nintf; ++j) {
558                         if (inums[j] == i)
559                                 break;
560                 }
561                 if (j >= nintf)
562                         dev_warn(ddev, "config %d has no interface number "
563                             "%d\n", cfgno, i);
564         }
565
566         /* Allocate the usb_interface_caches and altsetting arrays */
567         for (i = 0; i < nintf; ++i) {
568                 j = nalts[i];
569                 if (j > USB_MAXALTSETTING) {
570                         dev_warn(ddev, "too many alternate settings for "
571                             "config %d interface %d: %d, "
572                             "using maximum allowed: %d\n",
573                             cfgno, inums[i], j, USB_MAXALTSETTING);
574                         nalts[i] = j = USB_MAXALTSETTING;
575                 }
576
577                 len = sizeof(*intfc) + sizeof(struct usb_host_interface) * j;
578                 config->intf_cache[i] = intfc = kzalloc(len, GFP_KERNEL);
579                 if (!intfc)
580                         return -ENOMEM;
581                 kref_init(&intfc->ref);
582         }
583
584         /* FIXME: parse the BOS descriptor */
585
586         /* Skip over any Class Specific or Vendor Specific descriptors;
587          * find the first interface descriptor */
588         config->extra = buffer;
589         i = find_next_descriptor(buffer, size, USB_DT_INTERFACE,
590             USB_DT_INTERFACE, &n);
591         config->extralen = i;
592         if (n > 0)
593                 dev_dbg(ddev, "skipped %d descriptor%s after %s\n",
594                     n, plural(n), "configuration");
595         buffer += i;
596         size -= i;
597
598         /* Parse all the interface/altsetting descriptors */
599         while (size > 0) {
600                 retval = usb_parse_interface(ddev, cfgno, config,
601                     buffer, size, inums, nalts);
602                 if (retval < 0)
603                         return retval;
604
605                 buffer += retval;
606                 size -= retval;
607         }
608
609         /* Check for missing altsettings */
610         for (i = 0; i < nintf; ++i) {
611                 intfc = config->intf_cache[i];
612                 for (j = 0; j < intfc->num_altsetting; ++j) {
613                         for (n = 0; n < intfc->num_altsetting; ++n) {
614                                 if (intfc->altsetting[n].desc.
615                                     bAlternateSetting == j)
616                                         break;
617                         }
618                         if (n >= intfc->num_altsetting)
619                                 dev_warn(ddev, "config %d interface %d has no "
620                                     "altsetting %d\n", cfgno, inums[i], j);
621                 }
622         }
623
624         return 0;
625 }
626
627 /* hub-only!! ... and only exported for reset/reinit path.
628  * otherwise used internally on disconnect/destroy path
629  */
630 void usb_destroy_configuration(struct usb_device *dev)
631 {
632         int c, i;
633
634         if (!dev->config)
635                 return;
636
637         if (dev->rawdescriptors) {
638                 for (i = 0; i < dev->descriptor.bNumConfigurations; i++)
639                         kfree(dev->rawdescriptors[i]);
640
641                 kfree(dev->rawdescriptors);
642                 dev->rawdescriptors = NULL;
643         }
644
645         for (c = 0; c < dev->descriptor.bNumConfigurations; c++) {
646                 struct usb_host_config *cf = &dev->config[c];
647
648                 kfree(cf->string);
649                 for (i = 0; i < cf->desc.bNumInterfaces; i++) {
650                         if (cf->intf_cache[i])
651                                 kref_put(&cf->intf_cache[i]->ref,
652                                           usb_release_interface_cache);
653                 }
654         }
655         kfree(dev->config);
656         dev->config = NULL;
657 }
658
659
660 /*
661  * Get the USB config descriptors, cache and parse'em
662  *
663  * hub-only!! ... and only in reset path, or usb_new_device()
664  * (used by real hubs and virtual root hubs)
665  *
666  * NOTE: if this is a WUSB device and is not authorized, we skip the
667  *       whole thing. A non-authorized USB device has no
668  *       configurations.
669  */
670 int usb_get_configuration(struct usb_device *dev)
671 {
672         struct device *ddev = &dev->dev;
673         int ncfg = dev->descriptor.bNumConfigurations;
674         int result = 0;
675         unsigned int cfgno, length;
676         unsigned char *bigbuffer;
677         struct usb_config_descriptor *desc;
678
679         cfgno = 0;
680         if (dev->authorized == 0)       /* Not really an error */
681                 goto out_not_authorized;
682         result = -ENOMEM;
683         if (ncfg > USB_MAXCONFIG) {
684                 dev_warn(ddev, "too many configurations: %d, "
685                     "using maximum allowed: %d\n", ncfg, USB_MAXCONFIG);
686                 dev->descriptor.bNumConfigurations = ncfg = USB_MAXCONFIG;
687         }
688
689         if (ncfg < 1) {
690                 dev_err(ddev, "no configurations\n");
691                 return -EINVAL;
692         }
693
694         length = ncfg * sizeof(struct usb_host_config);
695         dev->config = kzalloc(length, GFP_KERNEL);
696         if (!dev->config)
697                 goto err2;
698
699         length = ncfg * sizeof(char *);
700         dev->rawdescriptors = kzalloc(length, GFP_KERNEL);
701         if (!dev->rawdescriptors)
702                 goto err2;
703
704         desc = kmalloc(USB_DT_CONFIG_SIZE, GFP_KERNEL);
705         if (!desc)
706                 goto err2;
707
708         result = 0;
709         for (; cfgno < ncfg; cfgno++) {
710                 /* We grab just the first descriptor so we know how long
711                  * the whole configuration is */
712                 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno,
713                     desc, USB_DT_CONFIG_SIZE);
714                 if (result < 0) {
715                         dev_err(ddev, "unable to read config index %d "
716                             "descriptor/%s: %d\n", cfgno, "start", result);
717                         dev_err(ddev, "chopping to %d config(s)\n", cfgno);
718                         dev->descriptor.bNumConfigurations = cfgno;
719                         break;
720                 } else if (result < 4) {
721                         dev_err(ddev, "config index %d descriptor too short "
722                             "(expected %i, got %i)\n", cfgno,
723                             USB_DT_CONFIG_SIZE, result);
724                         result = -EINVAL;
725                         goto err;
726                 }
727                 length = max((int) le16_to_cpu(desc->wTotalLength),
728                     USB_DT_CONFIG_SIZE);
729
730                 /* Now that we know the length, get the whole thing */
731                 bigbuffer = kmalloc(length, GFP_KERNEL);
732                 if (!bigbuffer) {
733                         result = -ENOMEM;
734                         goto err;
735                 }
736
737                 if (dev->quirks & USB_QUIRK_DELAY_INIT)
738                         msleep(100);
739
740                 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno,
741                     bigbuffer, length);
742                 if (result < 0) {
743                         dev_err(ddev, "unable to read config index %d "
744                             "descriptor/%s\n", cfgno, "all");
745                         kfree(bigbuffer);
746                         goto err;
747                 }
748                 if (result < length) {
749                         dev_warn(ddev, "config index %d descriptor too short "
750                             "(expected %i, got %i)\n", cfgno, length, result);
751                         length = result;
752                 }
753
754                 dev->rawdescriptors[cfgno] = bigbuffer;
755
756                 result = usb_parse_configuration(dev, cfgno,
757                     &dev->config[cfgno], bigbuffer, length);
758                 if (result < 0) {
759                         ++cfgno;
760                         goto err;
761                 }
762         }
763         result = 0;
764
765 err:
766         kfree(desc);
767 out_not_authorized:
768         dev->descriptor.bNumConfigurations = cfgno;
769 err2:
770         if (result == -ENOMEM)
771                 dev_err(ddev, "out of memory\n");
772         return result;
773 }
774
775 void usb_release_bos_descriptor(struct usb_device *dev)
776 {
777         if (dev->bos) {
778                 kfree(dev->bos->desc);
779                 kfree(dev->bos);
780                 dev->bos = NULL;
781         }
782 }
783
784 /* Get BOS descriptor set */
785 int usb_get_bos_descriptor(struct usb_device *dev)
786 {
787         struct device *ddev = &dev->dev;
788         struct usb_bos_descriptor *bos;
789         struct usb_dev_cap_header *cap;
790         unsigned char *buffer;
791         int length, total_len, num, i;
792         int ret;
793
794         bos = kzalloc(sizeof(struct usb_bos_descriptor), GFP_KERNEL);
795         if (!bos)
796                 return -ENOMEM;
797
798         /* Get BOS descriptor */
799         ret = usb_get_descriptor(dev, USB_DT_BOS, 0, bos, USB_DT_BOS_SIZE);
800         if (ret < USB_DT_BOS_SIZE) {
801                 dev_err(ddev, "unable to get BOS descriptor\n");
802                 if (ret >= 0)
803                         ret = -ENOMSG;
804                 kfree(bos);
805                 return ret;
806         }
807
808         length = bos->bLength;
809         total_len = le16_to_cpu(bos->wTotalLength);
810         num = bos->bNumDeviceCaps;
811         kfree(bos);
812         if (total_len < length)
813                 return -EINVAL;
814
815         dev->bos = kzalloc(sizeof(struct usb_host_bos), GFP_KERNEL);
816         if (!dev->bos)
817                 return -ENOMEM;
818
819         /* Now let's get the whole BOS descriptor set */
820         buffer = kzalloc(total_len, GFP_KERNEL);
821         if (!buffer) {
822                 ret = -ENOMEM;
823                 goto err;
824         }
825         dev->bos->desc = (struct usb_bos_descriptor *)buffer;
826
827         ret = usb_get_descriptor(dev, USB_DT_BOS, 0, buffer, total_len);
828         if (ret < total_len) {
829                 dev_err(ddev, "unable to get BOS descriptor set\n");
830                 if (ret >= 0)
831                         ret = -ENOMSG;
832                 goto err;
833         }
834         total_len -= length;
835
836         for (i = 0; i < num; i++) {
837                 buffer += length;
838                 cap = (struct usb_dev_cap_header *)buffer;
839                 length = cap->bLength;
840
841                 if (total_len < length)
842                         break;
843                 total_len -= length;
844
845                 if (cap->bDescriptorType != USB_DT_DEVICE_CAPABILITY) {
846                         dev_warn(ddev, "descriptor type invalid, skip\n");
847                         continue;
848                 }
849
850                 switch (cap->bDevCapabilityType) {
851                 case USB_CAP_TYPE_WIRELESS_USB:
852                         /* Wireless USB cap descriptor is handled by wusb */
853                         break;
854                 case USB_CAP_TYPE_EXT:
855                         dev->bos->ext_cap =
856                                 (struct usb_ext_cap_descriptor *)buffer;
857                         break;
858                 case USB_SS_CAP_TYPE:
859                         dev->bos->ss_cap =
860                                 (struct usb_ss_cap_descriptor *)buffer;
861                         break;
862                 case CONTAINER_ID_TYPE:
863                         dev->bos->ss_id =
864                                 (struct usb_ss_container_id_descriptor *)buffer;
865                         break;
866                 default:
867                         break;
868                 }
869         }
870
871         return 0;
872
873 err:
874         usb_release_bos_descriptor(dev);
875         return ret;
876 }