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/slab.h>
7 #include <linux/device.h>
8 #include <asm/byteorder.h>
12 #define USB_MAXALTSETTING 128 /* Hard limit */
14 #define USB_MAXCONFIG 8 /* Arbitrary limit */
17 static inline const char *plural(int n
)
19 return (n
== 1 ? "" : "s");
22 static int find_next_descriptor(unsigned char *buffer
, int size
,
23 int dt1
, int dt2
, int *num_skipped
)
25 struct usb_descriptor_header
*h
;
27 unsigned char *buffer0
= buffer
;
29 /* Find the next descriptor of type dt1 or dt2 */
31 h
= (struct usb_descriptor_header
*) buffer
;
32 if (h
->bDescriptorType
== dt1
|| h
->bDescriptorType
== dt2
)
39 /* Store the number of descriptors skipped and return the
40 * number of bytes skipped */
43 return buffer
- buffer0
;
46 static void usb_parse_ss_endpoint_companion(struct device
*ddev
, int cfgno
,
47 int inum
, int asnum
, struct usb_host_endpoint
*ep
,
48 unsigned char *buffer
, int size
)
50 struct usb_ss_ep_comp_descriptor
*desc
;
53 /* The SuperSpeed endpoint companion descriptor is supposed to
54 * be the first thing immediately following the endpoint descriptor.
56 desc
= (struct usb_ss_ep_comp_descriptor
*) buffer
;
57 if (desc
->bDescriptorType
!= USB_DT_SS_ENDPOINT_COMP
||
58 size
< USB_DT_SS_EP_COMP_SIZE
) {
59 dev_warn(ddev
, "No SuperSpeed endpoint companion for config %d "
60 " interface %d altsetting %d ep %d: "
61 "using minimum values\n",
62 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
);
64 /* Fill in some default values.
65 * Leave bmAttributes as zero, which will mean no streams for
66 * bulk, and isoc won't support multiple bursts of packets.
67 * With bursts of only one packet, and a Mult of 1, the max
68 * amount of data moved per endpoint service interval is one
71 ep
->ss_ep_comp
.bLength
= USB_DT_SS_EP_COMP_SIZE
;
72 ep
->ss_ep_comp
.bDescriptorType
= USB_DT_SS_ENDPOINT_COMP
;
73 if (usb_endpoint_xfer_isoc(&ep
->desc
) ||
74 usb_endpoint_xfer_int(&ep
->desc
))
75 ep
->ss_ep_comp
.wBytesPerInterval
=
76 ep
->desc
.wMaxPacketSize
;
80 memcpy(&ep
->ss_ep_comp
, desc
, USB_DT_SS_EP_COMP_SIZE
);
82 /* Check the various values */
83 if (usb_endpoint_xfer_control(&ep
->desc
) && desc
->bMaxBurst
!= 0) {
84 dev_warn(ddev
, "Control endpoint with bMaxBurst = %d in "
85 "config %d interface %d altsetting %d ep %d: "
86 "setting to zero\n", desc
->bMaxBurst
,
87 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
);
88 ep
->ss_ep_comp
.bMaxBurst
= 0;
89 } else if (desc
->bMaxBurst
> 15) {
90 dev_warn(ddev
, "Endpoint with bMaxBurst = %d in "
91 "config %d interface %d altsetting %d ep %d: "
92 "setting to 15\n", desc
->bMaxBurst
,
93 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
);
94 ep
->ss_ep_comp
.bMaxBurst
= 15;
97 if ((usb_endpoint_xfer_control(&ep
->desc
) ||
98 usb_endpoint_xfer_int(&ep
->desc
)) &&
99 desc
->bmAttributes
!= 0) {
100 dev_warn(ddev
, "%s endpoint with bmAttributes = %d in "
101 "config %d interface %d altsetting %d ep %d: "
103 usb_endpoint_xfer_control(&ep
->desc
) ? "Control" : "Bulk",
105 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
);
106 ep
->ss_ep_comp
.bmAttributes
= 0;
107 } else if (usb_endpoint_xfer_bulk(&ep
->desc
) &&
108 desc
->bmAttributes
> 16) {
109 dev_warn(ddev
, "Bulk endpoint with more than 65536 streams in "
110 "config %d interface %d altsetting %d ep %d: "
112 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
);
113 ep
->ss_ep_comp
.bmAttributes
= 16;
114 } else if (usb_endpoint_xfer_isoc(&ep
->desc
) &&
115 desc
->bmAttributes
> 2) {
116 dev_warn(ddev
, "Isoc endpoint has Mult of %d in "
117 "config %d interface %d altsetting %d ep %d: "
118 "setting to 3\n", desc
->bmAttributes
+ 1,
119 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
);
120 ep
->ss_ep_comp
.bmAttributes
= 2;
123 if (usb_endpoint_xfer_isoc(&ep
->desc
))
124 max_tx
= (desc
->bMaxBurst
+ 1) * (desc
->bmAttributes
+ 1) *
125 usb_endpoint_maxp(&ep
->desc
);
126 else if (usb_endpoint_xfer_int(&ep
->desc
))
127 max_tx
= usb_endpoint_maxp(&ep
->desc
) *
128 (desc
->bMaxBurst
+ 1);
131 if (le16_to_cpu(desc
->wBytesPerInterval
) > max_tx
) {
132 dev_warn(ddev
, "%s endpoint with wBytesPerInterval of %d in "
133 "config %d interface %d altsetting %d ep %d: "
135 usb_endpoint_xfer_isoc(&ep
->desc
) ? "Isoc" : "Int",
136 le16_to_cpu(desc
->wBytesPerInterval
),
137 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
,
139 ep
->ss_ep_comp
.wBytesPerInterval
= cpu_to_le16(max_tx
);
143 static int usb_parse_endpoint(struct device
*ddev
, int cfgno
, int inum
,
144 int asnum
, struct usb_host_interface
*ifp
, int num_ep
,
145 unsigned char *buffer
, int size
)
147 unsigned char *buffer0
= buffer
;
148 struct usb_endpoint_descriptor
*d
;
149 struct usb_host_endpoint
*endpoint
;
152 d
= (struct usb_endpoint_descriptor
*) buffer
;
153 buffer
+= d
->bLength
;
156 if (d
->bLength
>= USB_DT_ENDPOINT_AUDIO_SIZE
)
157 n
= USB_DT_ENDPOINT_AUDIO_SIZE
;
158 else if (d
->bLength
>= USB_DT_ENDPOINT_SIZE
)
159 n
= USB_DT_ENDPOINT_SIZE
;
161 dev_warn(ddev
, "config %d interface %d altsetting %d has an "
162 "invalid endpoint descriptor of length %d, skipping\n",
163 cfgno
, inum
, asnum
, d
->bLength
);
164 goto skip_to_next_endpoint_or_interface_descriptor
;
167 i
= d
->bEndpointAddress
& ~USB_ENDPOINT_DIR_MASK
;
168 if (i
>= 16 || i
== 0) {
169 dev_warn(ddev
, "config %d interface %d altsetting %d has an "
170 "invalid endpoint with address 0x%X, skipping\n",
171 cfgno
, inum
, asnum
, d
->bEndpointAddress
);
172 goto skip_to_next_endpoint_or_interface_descriptor
;
175 /* Only store as many endpoints as we have room for */
176 if (ifp
->desc
.bNumEndpoints
>= num_ep
)
177 goto skip_to_next_endpoint_or_interface_descriptor
;
179 endpoint
= &ifp
->endpoint
[ifp
->desc
.bNumEndpoints
];
180 ++ifp
->desc
.bNumEndpoints
;
182 memcpy(&endpoint
->desc
, d
, n
);
183 INIT_LIST_HEAD(&endpoint
->urb_list
);
185 /* Fix up bInterval values outside the legal range. Use 32 ms if no
186 * proper value can be guessed. */
187 i
= 0; /* i = min, j = max, n = default */
189 if (usb_endpoint_xfer_int(d
)) {
191 switch (to_usb_device(ddev
)->speed
) {
192 case USB_SPEED_SUPER
:
194 /* Many device manufacturers are using full-speed
195 * bInterval values in high-speed interrupt endpoint
196 * descriptors. Try to fix those and fall back to a
197 * 32 ms default value otherwise. */
198 n
= fls(d
->bInterval
*8);
200 n
= 9; /* 32 ms = 2^(9-1) uframes */
204 * Adjust bInterval for quirked devices.
205 * This quirk fixes bIntervals reported in
206 * linear microframes.
208 if (to_usb_device(ddev
)->quirks
&
209 USB_QUIRK_LINEAR_UFRAME_INTR_BINTERVAL
) {
210 n
= clamp(fls(d
->bInterval
), i
, j
);
214 default: /* USB_SPEED_FULL or _LOW */
215 /* For low-speed, 10 ms is the official minimum.
216 * But some "overclocked" devices might want faster
217 * polling so we'll allow it. */
221 } else if (usb_endpoint_xfer_isoc(d
)) {
224 switch (to_usb_device(ddev
)->speed
) {
226 n
= 9; /* 32 ms = 2^(9-1) uframes */
228 default: /* USB_SPEED_FULL */
229 n
= 6; /* 32 ms = 2^(6-1) frames */
233 if (d
->bInterval
< i
|| d
->bInterval
> j
) {
234 dev_warn(ddev
, "config %d interface %d altsetting %d "
235 "endpoint 0x%X has an invalid bInterval %d, "
238 d
->bEndpointAddress
, d
->bInterval
, n
);
239 endpoint
->desc
.bInterval
= n
;
242 /* Some buggy low-speed devices have Bulk endpoints, which is
243 * explicitly forbidden by the USB spec. In an attempt to make
244 * them usable, we will try treating them as Interrupt endpoints.
246 if (to_usb_device(ddev
)->speed
== USB_SPEED_LOW
&&
247 usb_endpoint_xfer_bulk(d
)) {
248 dev_warn(ddev
, "config %d interface %d altsetting %d "
249 "endpoint 0x%X is Bulk; changing to Interrupt\n",
250 cfgno
, inum
, asnum
, d
->bEndpointAddress
);
251 endpoint
->desc
.bmAttributes
= USB_ENDPOINT_XFER_INT
;
252 endpoint
->desc
.bInterval
= 1;
253 if (usb_endpoint_maxp(&endpoint
->desc
) > 8)
254 endpoint
->desc
.wMaxPacketSize
= cpu_to_le16(8);
258 * Some buggy high speed devices have bulk endpoints using
259 * maxpacket sizes other than 512. High speed HCDs may not
260 * be able to handle that particular bug, so let's warn...
262 if (to_usb_device(ddev
)->speed
== USB_SPEED_HIGH
263 && usb_endpoint_xfer_bulk(d
)) {
266 maxp
= usb_endpoint_maxp(&endpoint
->desc
) & 0x07ff;
268 dev_warn(ddev
, "config %d interface %d altsetting %d "
269 "bulk endpoint 0x%X has invalid maxpacket %d\n",
270 cfgno
, inum
, asnum
, d
->bEndpointAddress
,
274 /* Parse a possible SuperSpeed endpoint companion descriptor */
275 if (to_usb_device(ddev
)->speed
== USB_SPEED_SUPER
)
276 usb_parse_ss_endpoint_companion(ddev
, cfgno
,
277 inum
, asnum
, endpoint
, buffer
, size
);
279 /* Skip over any Class Specific or Vendor Specific descriptors;
280 * find the next endpoint or interface descriptor */
281 endpoint
->extra
= buffer
;
282 i
= find_next_descriptor(buffer
, size
, USB_DT_ENDPOINT
,
283 USB_DT_INTERFACE
, &n
);
284 endpoint
->extralen
= i
;
285 retval
= buffer
- buffer0
+ i
;
287 dev_dbg(ddev
, "skipped %d descriptor%s after %s\n",
288 n
, plural(n
), "endpoint");
291 skip_to_next_endpoint_or_interface_descriptor
:
292 i
= find_next_descriptor(buffer
, size
, USB_DT_ENDPOINT
,
293 USB_DT_INTERFACE
, NULL
);
294 return buffer
- buffer0
+ i
;
297 void usb_release_interface_cache(struct kref
*ref
)
299 struct usb_interface_cache
*intfc
= ref_to_usb_interface_cache(ref
);
302 for (j
= 0; j
< intfc
->num_altsetting
; j
++) {
303 struct usb_host_interface
*alt
= &intfc
->altsetting
[j
];
305 kfree(alt
->endpoint
);
311 static int usb_parse_interface(struct device
*ddev
, int cfgno
,
312 struct usb_host_config
*config
, unsigned char *buffer
, int size
,
313 u8 inums
[], u8 nalts
[])
315 unsigned char *buffer0
= buffer
;
316 struct usb_interface_descriptor
*d
;
318 struct usb_interface_cache
*intfc
;
319 struct usb_host_interface
*alt
;
322 int num_ep
, num_ep_orig
;
324 d
= (struct usb_interface_descriptor
*) buffer
;
325 buffer
+= d
->bLength
;
328 if (d
->bLength
< USB_DT_INTERFACE_SIZE
)
329 goto skip_to_next_interface_descriptor
;
331 /* Which interface entry is this? */
333 inum
= d
->bInterfaceNumber
;
334 for (i
= 0; i
< config
->desc
.bNumInterfaces
; ++i
) {
335 if (inums
[i
] == inum
) {
336 intfc
= config
->intf_cache
[i
];
340 if (!intfc
|| intfc
->num_altsetting
>= nalts
[i
])
341 goto skip_to_next_interface_descriptor
;
343 /* Check for duplicate altsetting entries */
344 asnum
= d
->bAlternateSetting
;
345 for ((i
= 0, alt
= &intfc
->altsetting
[0]);
346 i
< intfc
->num_altsetting
;
348 if (alt
->desc
.bAlternateSetting
== asnum
) {
349 dev_warn(ddev
, "Duplicate descriptor for config %d "
350 "interface %d altsetting %d, skipping\n",
352 goto skip_to_next_interface_descriptor
;
356 ++intfc
->num_altsetting
;
357 memcpy(&alt
->desc
, d
, USB_DT_INTERFACE_SIZE
);
359 /* Skip over any Class Specific or Vendor Specific descriptors;
360 * find the first endpoint or interface descriptor */
362 i
= find_next_descriptor(buffer
, size
, USB_DT_ENDPOINT
,
363 USB_DT_INTERFACE
, &n
);
366 dev_dbg(ddev
, "skipped %d descriptor%s after %s\n",
367 n
, plural(n
), "interface");
371 /* Allocate space for the right(?) number of endpoints */
372 num_ep
= num_ep_orig
= alt
->desc
.bNumEndpoints
;
373 alt
->desc
.bNumEndpoints
= 0; /* Use as a counter */
374 if (num_ep
> USB_MAXENDPOINTS
) {
375 dev_warn(ddev
, "too many endpoints for config %d interface %d "
376 "altsetting %d: %d, using maximum allowed: %d\n",
377 cfgno
, inum
, asnum
, num_ep
, USB_MAXENDPOINTS
);
378 num_ep
= USB_MAXENDPOINTS
;
382 /* Can't allocate 0 bytes */
383 len
= sizeof(struct usb_host_endpoint
) * num_ep
;
384 alt
->endpoint
= kzalloc(len
, GFP_KERNEL
);
389 /* Parse all the endpoint descriptors */
392 if (((struct usb_descriptor_header
*) buffer
)->bDescriptorType
395 retval
= usb_parse_endpoint(ddev
, cfgno
, inum
, asnum
, alt
,
396 num_ep
, buffer
, size
);
405 if (n
!= num_ep_orig
)
406 dev_warn(ddev
, "config %d interface %d altsetting %d has %d "
407 "endpoint descriptor%s, different from the interface "
408 "descriptor's value: %d\n",
409 cfgno
, inum
, asnum
, n
, plural(n
), num_ep_orig
);
410 return buffer
- buffer0
;
412 skip_to_next_interface_descriptor
:
413 i
= find_next_descriptor(buffer
, size
, USB_DT_INTERFACE
,
414 USB_DT_INTERFACE
, NULL
);
415 return buffer
- buffer0
+ i
;
418 static int usb_parse_configuration(struct usb_device
*dev
, int cfgidx
,
419 struct usb_host_config
*config
, unsigned char *buffer
, int size
)
421 struct device
*ddev
= &dev
->dev
;
422 unsigned char *buffer0
= buffer
;
424 int nintf
, nintf_orig
;
426 struct usb_interface_cache
*intfc
;
427 unsigned char *buffer2
;
429 struct usb_descriptor_header
*header
;
431 u8 inums
[USB_MAXINTERFACES
], nalts
[USB_MAXINTERFACES
];
432 unsigned iad_num
= 0;
434 memcpy(&config
->desc
, buffer
, USB_DT_CONFIG_SIZE
);
435 if (config
->desc
.bDescriptorType
!= USB_DT_CONFIG
||
436 config
->desc
.bLength
< USB_DT_CONFIG_SIZE
||
437 config
->desc
.bLength
> size
) {
438 dev_err(ddev
, "invalid descriptor for config index %d: "
439 "type = 0x%X, length = %d\n", cfgidx
,
440 config
->desc
.bDescriptorType
, config
->desc
.bLength
);
443 cfgno
= config
->desc
.bConfigurationValue
;
445 buffer
+= config
->desc
.bLength
;
446 size
-= config
->desc
.bLength
;
448 nintf
= nintf_orig
= config
->desc
.bNumInterfaces
;
449 if (nintf
> USB_MAXINTERFACES
) {
450 dev_warn(ddev
, "config %d has too many interfaces: %d, "
451 "using maximum allowed: %d\n",
452 cfgno
, nintf
, USB_MAXINTERFACES
);
453 nintf
= USB_MAXINTERFACES
;
456 /* Go through the descriptors, checking their length and counting the
457 * number of altsettings for each interface */
459 for ((buffer2
= buffer
, size2
= size
);
461 (buffer2
+= header
->bLength
, size2
-= header
->bLength
)) {
463 if (size2
< sizeof(struct usb_descriptor_header
)) {
464 dev_warn(ddev
, "config %d descriptor has %d excess "
465 "byte%s, ignoring\n",
466 cfgno
, size2
, plural(size2
));
470 header
= (struct usb_descriptor_header
*) buffer2
;
471 if ((header
->bLength
> size2
) || (header
->bLength
< 2)) {
472 dev_warn(ddev
, "config %d has an invalid descriptor "
473 "of length %d, skipping remainder of the config\n",
474 cfgno
, header
->bLength
);
478 if (header
->bDescriptorType
== USB_DT_INTERFACE
) {
479 struct usb_interface_descriptor
*d
;
482 d
= (struct usb_interface_descriptor
*) header
;
483 if (d
->bLength
< USB_DT_INTERFACE_SIZE
) {
484 dev_warn(ddev
, "config %d has an invalid "
485 "interface descriptor of length %d, "
486 "skipping\n", cfgno
, d
->bLength
);
490 inum
= d
->bInterfaceNumber
;
492 if ((dev
->quirks
& USB_QUIRK_HONOR_BNUMINTERFACES
) &&
494 dev_warn(ddev
, "config %d has more interface "
495 "descriptors, than it declares in "
496 "bNumInterfaces, ignoring interface "
497 "number: %d\n", cfgno
, inum
);
501 if (inum
>= nintf_orig
)
502 dev_warn(ddev
, "config %d has an invalid "
503 "interface number: %d but max is %d\n",
504 cfgno
, inum
, nintf_orig
- 1);
506 /* Have we already encountered this interface?
507 * Count its altsettings */
508 for (i
= 0; i
< n
; ++i
) {
509 if (inums
[i
] == inum
)
515 } else if (n
< USB_MAXINTERFACES
) {
521 } else if (header
->bDescriptorType
==
522 USB_DT_INTERFACE_ASSOCIATION
) {
523 if (iad_num
== USB_MAXIADS
) {
524 dev_warn(ddev
, "found more Interface "
525 "Association Descriptors "
526 "than allocated for in "
527 "configuration %d\n", cfgno
);
529 config
->intf_assoc
[iad_num
] =
530 (struct usb_interface_assoc_descriptor
535 } else if (header
->bDescriptorType
== USB_DT_DEVICE
||
536 header
->bDescriptorType
== USB_DT_CONFIG
)
537 dev_warn(ddev
, "config %d contains an unexpected "
538 "descriptor of type 0x%X, skipping\n",
539 cfgno
, header
->bDescriptorType
);
541 } /* for ((buffer2 = buffer, size2 = size); ...) */
542 size
= buffer2
- buffer
;
543 config
->desc
.wTotalLength
= cpu_to_le16(buffer2
- buffer0
);
546 dev_warn(ddev
, "config %d has %d interface%s, different from "
547 "the descriptor's value: %d\n",
548 cfgno
, n
, plural(n
), nintf_orig
);
550 dev_warn(ddev
, "config %d has no interfaces?\n", cfgno
);
551 config
->desc
.bNumInterfaces
= nintf
= n
;
553 /* Check for missing interface numbers */
554 for (i
= 0; i
< nintf
; ++i
) {
555 for (j
= 0; j
< nintf
; ++j
) {
560 dev_warn(ddev
, "config %d has no interface number "
564 /* Allocate the usb_interface_caches and altsetting arrays */
565 for (i
= 0; i
< nintf
; ++i
) {
567 if (j
> USB_MAXALTSETTING
) {
568 dev_warn(ddev
, "too many alternate settings for "
569 "config %d interface %d: %d, "
570 "using maximum allowed: %d\n",
571 cfgno
, inums
[i
], j
, USB_MAXALTSETTING
);
572 nalts
[i
] = j
= USB_MAXALTSETTING
;
575 len
= sizeof(*intfc
) + sizeof(struct usb_host_interface
) * j
;
576 config
->intf_cache
[i
] = intfc
= kzalloc(len
, GFP_KERNEL
);
579 kref_init(&intfc
->ref
);
582 /* FIXME: parse the BOS descriptor */
584 /* Skip over any Class Specific or Vendor Specific descriptors;
585 * find the first interface descriptor */
586 config
->extra
= buffer
;
587 i
= find_next_descriptor(buffer
, size
, USB_DT_INTERFACE
,
588 USB_DT_INTERFACE
, &n
);
589 config
->extralen
= i
;
591 dev_dbg(ddev
, "skipped %d descriptor%s after %s\n",
592 n
, plural(n
), "configuration");
596 /* Parse all the interface/altsetting descriptors */
598 retval
= usb_parse_interface(ddev
, cfgno
, config
,
599 buffer
, size
, inums
, nalts
);
607 /* Check for missing altsettings */
608 for (i
= 0; i
< nintf
; ++i
) {
609 intfc
= config
->intf_cache
[i
];
610 for (j
= 0; j
< intfc
->num_altsetting
; ++j
) {
611 for (n
= 0; n
< intfc
->num_altsetting
; ++n
) {
612 if (intfc
->altsetting
[n
].desc
.
613 bAlternateSetting
== j
)
616 if (n
>= intfc
->num_altsetting
)
617 dev_warn(ddev
, "config %d interface %d has no "
618 "altsetting %d\n", cfgno
, inums
[i
], j
);
625 /* hub-only!! ... and only exported for reset/reinit path.
626 * otherwise used internally on disconnect/destroy path
628 void usb_destroy_configuration(struct usb_device
*dev
)
635 if (dev
->rawdescriptors
) {
636 for (i
= 0; i
< dev
->descriptor
.bNumConfigurations
; i
++)
637 kfree(dev
->rawdescriptors
[i
]);
639 kfree(dev
->rawdescriptors
);
640 dev
->rawdescriptors
= NULL
;
643 for (c
= 0; c
< dev
->descriptor
.bNumConfigurations
; c
++) {
644 struct usb_host_config
*cf
= &dev
->config
[c
];
647 for (i
= 0; i
< cf
->desc
.bNumInterfaces
; i
++) {
648 if (cf
->intf_cache
[i
])
649 kref_put(&cf
->intf_cache
[i
]->ref
,
650 usb_release_interface_cache
);
659 * Get the USB config descriptors, cache and parse'em
661 * hub-only!! ... and only in reset path, or usb_new_device()
662 * (used by real hubs and virtual root hubs)
664 int usb_get_configuration(struct usb_device
*dev
)
666 struct device
*ddev
= &dev
->dev
;
667 int ncfg
= dev
->descriptor
.bNumConfigurations
;
669 unsigned int cfgno
, length
;
670 unsigned char *bigbuffer
;
671 struct usb_config_descriptor
*desc
;
675 if (ncfg
> USB_MAXCONFIG
) {
676 dev_warn(ddev
, "too many configurations: %d, "
677 "using maximum allowed: %d\n", ncfg
, USB_MAXCONFIG
);
678 dev
->descriptor
.bNumConfigurations
= ncfg
= USB_MAXCONFIG
;
682 dev_err(ddev
, "no configurations\n");
686 length
= ncfg
* sizeof(struct usb_host_config
);
687 dev
->config
= kzalloc(length
, GFP_KERNEL
);
691 length
= ncfg
* sizeof(char *);
692 dev
->rawdescriptors
= kzalloc(length
, GFP_KERNEL
);
693 if (!dev
->rawdescriptors
)
696 desc
= kmalloc(USB_DT_CONFIG_SIZE
, GFP_KERNEL
);
701 for (; cfgno
< ncfg
; cfgno
++) {
702 /* We grab just the first descriptor so we know how long
703 * the whole configuration is */
704 result
= usb_get_descriptor(dev
, USB_DT_CONFIG
, cfgno
,
705 desc
, USB_DT_CONFIG_SIZE
);
707 dev_err(ddev
, "unable to read config index %d "
708 "descriptor/%s: %d\n", cfgno
, "start", result
);
709 if (result
!= -EPIPE
)
711 dev_err(ddev
, "chopping to %d config(s)\n", cfgno
);
712 dev
->descriptor
.bNumConfigurations
= cfgno
;
714 } else if (result
< 4) {
715 dev_err(ddev
, "config index %d descriptor too short "
716 "(expected %i, got %i)\n", cfgno
,
717 USB_DT_CONFIG_SIZE
, result
);
721 length
= max((int) le16_to_cpu(desc
->wTotalLength
),
724 /* Now that we know the length, get the whole thing */
725 bigbuffer
= kmalloc(length
, GFP_KERNEL
);
731 if (dev
->quirks
& USB_QUIRK_DELAY_INIT
)
734 result
= usb_get_descriptor(dev
, USB_DT_CONFIG
, cfgno
,
737 dev_err(ddev
, "unable to read config index %d "
738 "descriptor/%s\n", cfgno
, "all");
742 if (result
< length
) {
743 dev_warn(ddev
, "config index %d descriptor too short "
744 "(expected %i, got %i)\n", cfgno
, length
, result
);
748 dev
->rawdescriptors
[cfgno
] = bigbuffer
;
750 result
= usb_parse_configuration(dev
, cfgno
,
751 &dev
->config
[cfgno
], bigbuffer
, length
);
761 dev
->descriptor
.bNumConfigurations
= cfgno
;
763 if (result
== -ENOMEM
)
764 dev_err(ddev
, "out of memory\n");
768 void usb_release_bos_descriptor(struct usb_device
*dev
)
771 kfree(dev
->bos
->desc
);
777 /* Get BOS descriptor set */
778 int usb_get_bos_descriptor(struct usb_device
*dev
)
780 struct device
*ddev
= &dev
->dev
;
781 struct usb_bos_descriptor
*bos
;
782 struct usb_dev_cap_header
*cap
;
783 unsigned char *buffer
;
784 int length
, total_len
, num
, i
;
787 bos
= kzalloc(sizeof(struct usb_bos_descriptor
), GFP_KERNEL
);
791 /* Get BOS descriptor */
792 ret
= usb_get_descriptor(dev
, USB_DT_BOS
, 0, bos
, USB_DT_BOS_SIZE
);
793 if (ret
< USB_DT_BOS_SIZE
) {
794 dev_err(ddev
, "unable to get BOS descriptor\n");
801 length
= bos
->bLength
;
802 total_len
= le16_to_cpu(bos
->wTotalLength
);
803 num
= bos
->bNumDeviceCaps
;
805 if (total_len
< length
)
808 dev
->bos
= kzalloc(sizeof(struct usb_host_bos
), GFP_KERNEL
);
812 /* Now let's get the whole BOS descriptor set */
813 buffer
= kzalloc(total_len
, GFP_KERNEL
);
818 dev
->bos
->desc
= (struct usb_bos_descriptor
*)buffer
;
820 ret
= usb_get_descriptor(dev
, USB_DT_BOS
, 0, buffer
, total_len
);
821 if (ret
< total_len
) {
822 dev_err(ddev
, "unable to get BOS descriptor set\n");
829 for (i
= 0; i
< num
; i
++) {
831 cap
= (struct usb_dev_cap_header
*)buffer
;
832 length
= cap
->bLength
;
834 if (total_len
< length
)
838 if (cap
->bDescriptorType
!= USB_DT_DEVICE_CAPABILITY
) {
839 dev_warn(ddev
, "descriptor type invalid, skip\n");
843 switch (cap
->bDevCapabilityType
) {
844 case USB_CAP_TYPE_WIRELESS_USB
:
845 /* Wireless USB cap descriptor is handled by wusb */
847 case USB_CAP_TYPE_EXT
:
849 (struct usb_ext_cap_descriptor
*)buffer
;
851 case USB_SS_CAP_TYPE
:
853 (struct usb_ss_cap_descriptor
*)buffer
;
855 case CONTAINER_ID_TYPE
:
857 (struct usb_ss_container_id_descriptor
*)buffer
;
867 usb_release_bos_descriptor(dev
);