1 // SPDX-License-Identifier: GPL-2.0
3 * Released under the GPLv2 only.
7 #include <linux/usb/ch9.h>
8 #include <linux/usb/hcd.h>
9 #include <linux/usb/quirks.h>
10 #include <linux/module.h>
11 #include <linux/slab.h>
12 #include <linux/device.h>
13 #include <asm/byteorder.h>
17 #define USB_MAXALTSETTING 128 /* Hard limit */
19 #define USB_MAXCONFIG 8 /* Arbitrary limit */
22 static inline const char *plural(int n
)
24 return (n
== 1 ? "" : "s");
27 static int find_next_descriptor(unsigned char *buffer
, int size
,
28 int dt1
, int dt2
, int *num_skipped
)
30 struct usb_descriptor_header
*h
;
32 unsigned char *buffer0
= buffer
;
34 /* Find the next descriptor of type dt1 or dt2 */
36 h
= (struct usb_descriptor_header
*) buffer
;
37 if (h
->bDescriptorType
== dt1
|| h
->bDescriptorType
== dt2
)
44 /* Store the number of descriptors skipped and return the
45 * number of bytes skipped */
48 return buffer
- buffer0
;
51 static void usb_parse_ssp_isoc_endpoint_companion(struct device
*ddev
,
52 int cfgno
, int inum
, int asnum
, struct usb_host_endpoint
*ep
,
53 unsigned char *buffer
, int size
)
55 struct usb_ssp_isoc_ep_comp_descriptor
*desc
;
58 * The SuperSpeedPlus Isoc endpoint companion descriptor immediately
59 * follows the SuperSpeed Endpoint Companion descriptor
61 desc
= (struct usb_ssp_isoc_ep_comp_descriptor
*) buffer
;
62 if (desc
->bDescriptorType
!= USB_DT_SSP_ISOC_ENDPOINT_COMP
||
63 size
< USB_DT_SSP_ISOC_EP_COMP_SIZE
) {
64 dev_warn(ddev
, "Invalid SuperSpeedPlus isoc endpoint companion"
65 "for config %d interface %d altsetting %d ep %d.\n",
66 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
);
69 memcpy(&ep
->ssp_isoc_ep_comp
, desc
, USB_DT_SSP_ISOC_EP_COMP_SIZE
);
72 static void usb_parse_ss_endpoint_companion(struct device
*ddev
, int cfgno
,
73 int inum
, int asnum
, struct usb_host_endpoint
*ep
,
74 unsigned char *buffer
, int size
)
76 struct usb_ss_ep_comp_descriptor
*desc
;
79 /* The SuperSpeed endpoint companion descriptor is supposed to
80 * be the first thing immediately following the endpoint descriptor.
82 desc
= (struct usb_ss_ep_comp_descriptor
*) buffer
;
84 if (desc
->bDescriptorType
!= USB_DT_SS_ENDPOINT_COMP
||
85 size
< USB_DT_SS_EP_COMP_SIZE
) {
86 dev_warn(ddev
, "No SuperSpeed endpoint companion for config %d "
87 " interface %d altsetting %d ep %d: "
88 "using minimum values\n",
89 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
);
91 /* Fill in some default values.
92 * Leave bmAttributes as zero, which will mean no streams for
93 * bulk, and isoc won't support multiple bursts of packets.
94 * With bursts of only one packet, and a Mult of 1, the max
95 * amount of data moved per endpoint service interval is one
98 ep
->ss_ep_comp
.bLength
= USB_DT_SS_EP_COMP_SIZE
;
99 ep
->ss_ep_comp
.bDescriptorType
= USB_DT_SS_ENDPOINT_COMP
;
100 if (usb_endpoint_xfer_isoc(&ep
->desc
) ||
101 usb_endpoint_xfer_int(&ep
->desc
))
102 ep
->ss_ep_comp
.wBytesPerInterval
=
103 ep
->desc
.wMaxPacketSize
;
106 buffer
+= desc
->bLength
;
107 size
-= desc
->bLength
;
108 memcpy(&ep
->ss_ep_comp
, desc
, USB_DT_SS_EP_COMP_SIZE
);
110 /* Check the various values */
111 if (usb_endpoint_xfer_control(&ep
->desc
) && desc
->bMaxBurst
!= 0) {
112 dev_warn(ddev
, "Control endpoint with bMaxBurst = %d in "
113 "config %d interface %d altsetting %d ep %d: "
114 "setting to zero\n", desc
->bMaxBurst
,
115 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
);
116 ep
->ss_ep_comp
.bMaxBurst
= 0;
117 } else if (desc
->bMaxBurst
> 15) {
118 dev_warn(ddev
, "Endpoint with bMaxBurst = %d in "
119 "config %d interface %d altsetting %d ep %d: "
120 "setting to 15\n", desc
->bMaxBurst
,
121 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
);
122 ep
->ss_ep_comp
.bMaxBurst
= 15;
125 if ((usb_endpoint_xfer_control(&ep
->desc
) ||
126 usb_endpoint_xfer_int(&ep
->desc
)) &&
127 desc
->bmAttributes
!= 0) {
128 dev_warn(ddev
, "%s endpoint with bmAttributes = %d in "
129 "config %d interface %d altsetting %d ep %d: "
131 usb_endpoint_xfer_control(&ep
->desc
) ? "Control" : "Bulk",
133 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
);
134 ep
->ss_ep_comp
.bmAttributes
= 0;
135 } else if (usb_endpoint_xfer_bulk(&ep
->desc
) &&
136 desc
->bmAttributes
> 16) {
137 dev_warn(ddev
, "Bulk endpoint with more than 65536 streams in "
138 "config %d interface %d altsetting %d ep %d: "
140 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
);
141 ep
->ss_ep_comp
.bmAttributes
= 16;
142 } else if (usb_endpoint_xfer_isoc(&ep
->desc
) &&
143 !USB_SS_SSP_ISOC_COMP(desc
->bmAttributes
) &&
144 USB_SS_MULT(desc
->bmAttributes
) > 3) {
145 dev_warn(ddev
, "Isoc endpoint has Mult of %d in "
146 "config %d interface %d altsetting %d ep %d: "
148 USB_SS_MULT(desc
->bmAttributes
),
149 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
);
150 ep
->ss_ep_comp
.bmAttributes
= 2;
153 if (usb_endpoint_xfer_isoc(&ep
->desc
))
154 max_tx
= (desc
->bMaxBurst
+ 1) *
155 (USB_SS_MULT(desc
->bmAttributes
)) *
156 usb_endpoint_maxp(&ep
->desc
);
157 else if (usb_endpoint_xfer_int(&ep
->desc
))
158 max_tx
= usb_endpoint_maxp(&ep
->desc
) *
159 (desc
->bMaxBurst
+ 1);
162 if (le16_to_cpu(desc
->wBytesPerInterval
) > max_tx
) {
163 dev_warn(ddev
, "%s endpoint with wBytesPerInterval of %d in "
164 "config %d interface %d altsetting %d ep %d: "
166 usb_endpoint_xfer_isoc(&ep
->desc
) ? "Isoc" : "Int",
167 le16_to_cpu(desc
->wBytesPerInterval
),
168 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
,
170 ep
->ss_ep_comp
.wBytesPerInterval
= cpu_to_le16(max_tx
);
172 /* Parse a possible SuperSpeedPlus isoc ep companion descriptor */
173 if (usb_endpoint_xfer_isoc(&ep
->desc
) &&
174 USB_SS_SSP_ISOC_COMP(desc
->bmAttributes
))
175 usb_parse_ssp_isoc_endpoint_companion(ddev
, cfgno
, inum
, asnum
,
179 static const unsigned short low_speed_maxpacket_maxes
[4] = {
180 [USB_ENDPOINT_XFER_CONTROL
] = 8,
181 [USB_ENDPOINT_XFER_ISOC
] = 0,
182 [USB_ENDPOINT_XFER_BULK
] = 0,
183 [USB_ENDPOINT_XFER_INT
] = 8,
185 static const unsigned short full_speed_maxpacket_maxes
[4] = {
186 [USB_ENDPOINT_XFER_CONTROL
] = 64,
187 [USB_ENDPOINT_XFER_ISOC
] = 1023,
188 [USB_ENDPOINT_XFER_BULK
] = 64,
189 [USB_ENDPOINT_XFER_INT
] = 64,
191 static const unsigned short high_speed_maxpacket_maxes
[4] = {
192 [USB_ENDPOINT_XFER_CONTROL
] = 64,
193 [USB_ENDPOINT_XFER_ISOC
] = 1024,
194 [USB_ENDPOINT_XFER_BULK
] = 512,
195 [USB_ENDPOINT_XFER_INT
] = 1024,
197 static const unsigned short super_speed_maxpacket_maxes
[4] = {
198 [USB_ENDPOINT_XFER_CONTROL
] = 512,
199 [USB_ENDPOINT_XFER_ISOC
] = 1024,
200 [USB_ENDPOINT_XFER_BULK
] = 1024,
201 [USB_ENDPOINT_XFER_INT
] = 1024,
204 static int usb_parse_endpoint(struct device
*ddev
, int cfgno
, int inum
,
205 int asnum
, struct usb_host_interface
*ifp
, int num_ep
,
206 unsigned char *buffer
, int size
)
208 unsigned char *buffer0
= buffer
;
209 struct usb_endpoint_descriptor
*d
;
210 struct usb_host_endpoint
*endpoint
;
213 const unsigned short *maxpacket_maxes
;
215 d
= (struct usb_endpoint_descriptor
*) buffer
;
216 buffer
+= d
->bLength
;
219 if (d
->bLength
>= USB_DT_ENDPOINT_AUDIO_SIZE
)
220 n
= USB_DT_ENDPOINT_AUDIO_SIZE
;
221 else if (d
->bLength
>= USB_DT_ENDPOINT_SIZE
)
222 n
= USB_DT_ENDPOINT_SIZE
;
224 dev_warn(ddev
, "config %d interface %d altsetting %d has an "
225 "invalid endpoint descriptor of length %d, skipping\n",
226 cfgno
, inum
, asnum
, d
->bLength
);
227 goto skip_to_next_endpoint_or_interface_descriptor
;
230 i
= d
->bEndpointAddress
& ~USB_ENDPOINT_DIR_MASK
;
231 if (i
>= 16 || i
== 0) {
232 dev_warn(ddev
, "config %d interface %d altsetting %d has an "
233 "invalid endpoint with address 0x%X, skipping\n",
234 cfgno
, inum
, asnum
, d
->bEndpointAddress
);
235 goto skip_to_next_endpoint_or_interface_descriptor
;
238 /* Only store as many endpoints as we have room for */
239 if (ifp
->desc
.bNumEndpoints
>= num_ep
)
240 goto skip_to_next_endpoint_or_interface_descriptor
;
242 /* Check for duplicate endpoint addresses */
243 for (i
= 0; i
< ifp
->desc
.bNumEndpoints
; ++i
) {
244 if (ifp
->endpoint
[i
].desc
.bEndpointAddress
==
245 d
->bEndpointAddress
) {
246 dev_warn(ddev
, "config %d interface %d altsetting %d has a duplicate endpoint with address 0x%X, skipping\n",
247 cfgno
, inum
, asnum
, d
->bEndpointAddress
);
248 goto skip_to_next_endpoint_or_interface_descriptor
;
252 endpoint
= &ifp
->endpoint
[ifp
->desc
.bNumEndpoints
];
253 ++ifp
->desc
.bNumEndpoints
;
255 memcpy(&endpoint
->desc
, d
, n
);
256 INIT_LIST_HEAD(&endpoint
->urb_list
);
259 * Fix up bInterval values outside the legal range.
260 * Use 10 or 8 ms if no proper value can be guessed.
262 i
= 0; /* i = min, j = max, n = default */
264 if (usb_endpoint_xfer_int(d
)) {
266 switch (to_usb_device(ddev
)->speed
) {
267 case USB_SPEED_SUPER_PLUS
:
268 case USB_SPEED_SUPER
:
271 * Many device manufacturers are using full-speed
272 * bInterval values in high-speed interrupt endpoint
273 * descriptors. Try to fix those and fall back to an
274 * 8-ms default value otherwise.
276 n
= fls(d
->bInterval
*8);
278 n
= 7; /* 8 ms = 2^(7-1) uframes */
282 * Adjust bInterval for quirked devices.
285 * This quirk fixes bIntervals reported in ms.
287 if (to_usb_device(ddev
)->quirks
&
288 USB_QUIRK_LINEAR_FRAME_INTR_BINTERVAL
) {
289 n
= clamp(fls(d
->bInterval
) + 3, i
, j
);
293 * This quirk fixes bIntervals reported in
294 * linear microframes.
296 if (to_usb_device(ddev
)->quirks
&
297 USB_QUIRK_LINEAR_UFRAME_INTR_BINTERVAL
) {
298 n
= clamp(fls(d
->bInterval
), i
, j
);
302 default: /* USB_SPEED_FULL or _LOW */
304 * For low-speed, 10 ms is the official minimum.
305 * But some "overclocked" devices might want faster
306 * polling so we'll allow it.
311 } else if (usb_endpoint_xfer_isoc(d
)) {
314 switch (to_usb_device(ddev
)->speed
) {
316 n
= 7; /* 8 ms = 2^(7-1) uframes */
318 default: /* USB_SPEED_FULL */
319 n
= 4; /* 8 ms = 2^(4-1) frames */
323 if (d
->bInterval
< i
|| d
->bInterval
> j
) {
324 dev_warn(ddev
, "config %d interface %d altsetting %d "
325 "endpoint 0x%X has an invalid bInterval %d, "
328 d
->bEndpointAddress
, d
->bInterval
, n
);
329 endpoint
->desc
.bInterval
= n
;
332 /* Some buggy low-speed devices have Bulk endpoints, which is
333 * explicitly forbidden by the USB spec. In an attempt to make
334 * them usable, we will try treating them as Interrupt endpoints.
336 if (to_usb_device(ddev
)->speed
== USB_SPEED_LOW
&&
337 usb_endpoint_xfer_bulk(d
)) {
338 dev_warn(ddev
, "config %d interface %d altsetting %d "
339 "endpoint 0x%X is Bulk; changing to Interrupt\n",
340 cfgno
, inum
, asnum
, d
->bEndpointAddress
);
341 endpoint
->desc
.bmAttributes
= USB_ENDPOINT_XFER_INT
;
342 endpoint
->desc
.bInterval
= 1;
343 if (usb_endpoint_maxp(&endpoint
->desc
) > 8)
344 endpoint
->desc
.wMaxPacketSize
= cpu_to_le16(8);
347 /* Validate the wMaxPacketSize field */
348 maxp
= usb_endpoint_maxp(&endpoint
->desc
);
350 /* Find the highest legal maxpacket size for this endpoint */
351 i
= 0; /* additional transactions per microframe */
352 switch (to_usb_device(ddev
)->speed
) {
354 maxpacket_maxes
= low_speed_maxpacket_maxes
;
357 maxpacket_maxes
= full_speed_maxpacket_maxes
;
360 /* Bits 12..11 are allowed only for HS periodic endpoints */
361 if (usb_endpoint_xfer_int(d
) || usb_endpoint_xfer_isoc(d
)) {
362 i
= maxp
& (BIT(12) | BIT(11));
367 maxpacket_maxes
= high_speed_maxpacket_maxes
;
369 case USB_SPEED_SUPER
:
370 case USB_SPEED_SUPER_PLUS
:
371 maxpacket_maxes
= super_speed_maxpacket_maxes
;
374 j
= maxpacket_maxes
[usb_endpoint_type(&endpoint
->desc
)];
377 dev_warn(ddev
, "config %d interface %d altsetting %d endpoint 0x%X has invalid maxpacket %d, setting to %d\n",
378 cfgno
, inum
, asnum
, d
->bEndpointAddress
, maxp
, j
);
380 endpoint
->desc
.wMaxPacketSize
= cpu_to_le16(i
| maxp
);
384 * Some buggy high speed devices have bulk endpoints using
385 * maxpacket sizes other than 512. High speed HCDs may not
386 * be able to handle that particular bug, so let's warn...
388 if (to_usb_device(ddev
)->speed
== USB_SPEED_HIGH
389 && usb_endpoint_xfer_bulk(d
)) {
391 dev_warn(ddev
, "config %d interface %d altsetting %d "
392 "bulk endpoint 0x%X has invalid maxpacket %d\n",
393 cfgno
, inum
, asnum
, d
->bEndpointAddress
,
397 /* Parse a possible SuperSpeed endpoint companion descriptor */
398 if (to_usb_device(ddev
)->speed
>= USB_SPEED_SUPER
)
399 usb_parse_ss_endpoint_companion(ddev
, cfgno
,
400 inum
, asnum
, endpoint
, buffer
, size
);
402 /* Skip over any Class Specific or Vendor Specific descriptors;
403 * find the next endpoint or interface descriptor */
404 endpoint
->extra
= buffer
;
405 i
= find_next_descriptor(buffer
, size
, USB_DT_ENDPOINT
,
406 USB_DT_INTERFACE
, &n
);
407 endpoint
->extralen
= i
;
408 retval
= buffer
- buffer0
+ i
;
410 dev_dbg(ddev
, "skipped %d descriptor%s after %s\n",
411 n
, plural(n
), "endpoint");
414 skip_to_next_endpoint_or_interface_descriptor
:
415 i
= find_next_descriptor(buffer
, size
, USB_DT_ENDPOINT
,
416 USB_DT_INTERFACE
, NULL
);
417 return buffer
- buffer0
+ i
;
420 void usb_release_interface_cache(struct kref
*ref
)
422 struct usb_interface_cache
*intfc
= ref_to_usb_interface_cache(ref
);
425 for (j
= 0; j
< intfc
->num_altsetting
; j
++) {
426 struct usb_host_interface
*alt
= &intfc
->altsetting
[j
];
428 kfree(alt
->endpoint
);
434 static int usb_parse_interface(struct device
*ddev
, int cfgno
,
435 struct usb_host_config
*config
, unsigned char *buffer
, int size
,
436 u8 inums
[], u8 nalts
[])
438 unsigned char *buffer0
= buffer
;
439 struct usb_interface_descriptor
*d
;
441 struct usb_interface_cache
*intfc
;
442 struct usb_host_interface
*alt
;
445 int num_ep
, num_ep_orig
;
447 d
= (struct usb_interface_descriptor
*) buffer
;
448 buffer
+= d
->bLength
;
451 if (d
->bLength
< USB_DT_INTERFACE_SIZE
)
452 goto skip_to_next_interface_descriptor
;
454 /* Which interface entry is this? */
456 inum
= d
->bInterfaceNumber
;
457 for (i
= 0; i
< config
->desc
.bNumInterfaces
; ++i
) {
458 if (inums
[i
] == inum
) {
459 intfc
= config
->intf_cache
[i
];
463 if (!intfc
|| intfc
->num_altsetting
>= nalts
[i
])
464 goto skip_to_next_interface_descriptor
;
466 /* Check for duplicate altsetting entries */
467 asnum
= d
->bAlternateSetting
;
468 for ((i
= 0, alt
= &intfc
->altsetting
[0]);
469 i
< intfc
->num_altsetting
;
471 if (alt
->desc
.bAlternateSetting
== asnum
) {
472 dev_warn(ddev
, "Duplicate descriptor for config %d "
473 "interface %d altsetting %d, skipping\n",
475 goto skip_to_next_interface_descriptor
;
479 ++intfc
->num_altsetting
;
480 memcpy(&alt
->desc
, d
, USB_DT_INTERFACE_SIZE
);
482 /* Skip over any Class Specific or Vendor Specific descriptors;
483 * find the first endpoint or interface descriptor */
485 i
= find_next_descriptor(buffer
, size
, USB_DT_ENDPOINT
,
486 USB_DT_INTERFACE
, &n
);
489 dev_dbg(ddev
, "skipped %d descriptor%s after %s\n",
490 n
, plural(n
), "interface");
494 /* Allocate space for the right(?) number of endpoints */
495 num_ep
= num_ep_orig
= alt
->desc
.bNumEndpoints
;
496 alt
->desc
.bNumEndpoints
= 0; /* Use as a counter */
497 if (num_ep
> USB_MAXENDPOINTS
) {
498 dev_warn(ddev
, "too many endpoints for config %d interface %d "
499 "altsetting %d: %d, using maximum allowed: %d\n",
500 cfgno
, inum
, asnum
, num_ep
, USB_MAXENDPOINTS
);
501 num_ep
= USB_MAXENDPOINTS
;
505 /* Can't allocate 0 bytes */
506 len
= sizeof(struct usb_host_endpoint
) * num_ep
;
507 alt
->endpoint
= kzalloc(len
, GFP_KERNEL
);
512 /* Parse all the endpoint descriptors */
515 if (((struct usb_descriptor_header
*) buffer
)->bDescriptorType
518 retval
= usb_parse_endpoint(ddev
, cfgno
, inum
, asnum
, alt
,
519 num_ep
, buffer
, size
);
528 if (n
!= num_ep_orig
)
529 dev_warn(ddev
, "config %d interface %d altsetting %d has %d "
530 "endpoint descriptor%s, different from the interface "
531 "descriptor's value: %d\n",
532 cfgno
, inum
, asnum
, n
, plural(n
), num_ep_orig
);
533 return buffer
- buffer0
;
535 skip_to_next_interface_descriptor
:
536 i
= find_next_descriptor(buffer
, size
, USB_DT_INTERFACE
,
537 USB_DT_INTERFACE
, NULL
);
538 return buffer
- buffer0
+ i
;
541 static int usb_parse_configuration(struct usb_device
*dev
, int cfgidx
,
542 struct usb_host_config
*config
, unsigned char *buffer
, int size
)
544 struct device
*ddev
= &dev
->dev
;
545 unsigned char *buffer0
= buffer
;
547 int nintf
, nintf_orig
;
549 struct usb_interface_cache
*intfc
;
550 unsigned char *buffer2
;
552 struct usb_descriptor_header
*header
;
554 u8 inums
[USB_MAXINTERFACES
], nalts
[USB_MAXINTERFACES
];
555 unsigned iad_num
= 0;
557 memcpy(&config
->desc
, buffer
, USB_DT_CONFIG_SIZE
);
558 nintf
= nintf_orig
= config
->desc
.bNumInterfaces
;
559 config
->desc
.bNumInterfaces
= 0; // Adjusted later
561 if (config
->desc
.bDescriptorType
!= USB_DT_CONFIG
||
562 config
->desc
.bLength
< USB_DT_CONFIG_SIZE
||
563 config
->desc
.bLength
> size
) {
564 dev_err(ddev
, "invalid descriptor for config index %d: "
565 "type = 0x%X, length = %d\n", cfgidx
,
566 config
->desc
.bDescriptorType
, config
->desc
.bLength
);
569 cfgno
= config
->desc
.bConfigurationValue
;
571 buffer
+= config
->desc
.bLength
;
572 size
-= config
->desc
.bLength
;
574 if (nintf
> USB_MAXINTERFACES
) {
575 dev_warn(ddev
, "config %d has too many interfaces: %d, "
576 "using maximum allowed: %d\n",
577 cfgno
, nintf
, USB_MAXINTERFACES
);
578 nintf
= USB_MAXINTERFACES
;
581 /* Go through the descriptors, checking their length and counting the
582 * number of altsettings for each interface */
584 for ((buffer2
= buffer
, size2
= size
);
586 (buffer2
+= header
->bLength
, size2
-= header
->bLength
)) {
588 if (size2
< sizeof(struct usb_descriptor_header
)) {
589 dev_warn(ddev
, "config %d descriptor has %d excess "
590 "byte%s, ignoring\n",
591 cfgno
, size2
, plural(size2
));
595 header
= (struct usb_descriptor_header
*) buffer2
;
596 if ((header
->bLength
> size2
) || (header
->bLength
< 2)) {
597 dev_warn(ddev
, "config %d has an invalid descriptor "
598 "of length %d, skipping remainder of the config\n",
599 cfgno
, header
->bLength
);
603 if (header
->bDescriptorType
== USB_DT_INTERFACE
) {
604 struct usb_interface_descriptor
*d
;
607 d
= (struct usb_interface_descriptor
*) header
;
608 if (d
->bLength
< USB_DT_INTERFACE_SIZE
) {
609 dev_warn(ddev
, "config %d has an invalid "
610 "interface descriptor of length %d, "
611 "skipping\n", cfgno
, d
->bLength
);
615 inum
= d
->bInterfaceNumber
;
617 if ((dev
->quirks
& USB_QUIRK_HONOR_BNUMINTERFACES
) &&
619 dev_warn(ddev
, "config %d has more interface "
620 "descriptors, than it declares in "
621 "bNumInterfaces, ignoring interface "
622 "number: %d\n", cfgno
, inum
);
626 if (inum
>= nintf_orig
)
627 dev_warn(ddev
, "config %d has an invalid "
628 "interface number: %d but max is %d\n",
629 cfgno
, inum
, nintf_orig
- 1);
631 /* Have we already encountered this interface?
632 * Count its altsettings */
633 for (i
= 0; i
< n
; ++i
) {
634 if (inums
[i
] == inum
)
640 } else if (n
< USB_MAXINTERFACES
) {
646 } else if (header
->bDescriptorType
==
647 USB_DT_INTERFACE_ASSOCIATION
) {
648 struct usb_interface_assoc_descriptor
*d
;
650 d
= (struct usb_interface_assoc_descriptor
*)header
;
651 if (d
->bLength
< USB_DT_INTERFACE_ASSOCIATION_SIZE
) {
653 "config %d has an invalid interface association descriptor of length %d, skipping\n",
658 if (iad_num
== USB_MAXIADS
) {
659 dev_warn(ddev
, "found more Interface "
660 "Association Descriptors "
661 "than allocated for in "
662 "configuration %d\n", cfgno
);
664 config
->intf_assoc
[iad_num
] = d
;
668 } else if (header
->bDescriptorType
== USB_DT_DEVICE
||
669 header
->bDescriptorType
== USB_DT_CONFIG
)
670 dev_warn(ddev
, "config %d contains an unexpected "
671 "descriptor of type 0x%X, skipping\n",
672 cfgno
, header
->bDescriptorType
);
674 } /* for ((buffer2 = buffer, size2 = size); ...) */
675 size
= buffer2
- buffer
;
676 config
->desc
.wTotalLength
= cpu_to_le16(buffer2
- buffer0
);
679 dev_warn(ddev
, "config %d has %d interface%s, different from "
680 "the descriptor's value: %d\n",
681 cfgno
, n
, plural(n
), nintf_orig
);
683 dev_warn(ddev
, "config %d has no interfaces?\n", cfgno
);
684 config
->desc
.bNumInterfaces
= nintf
= n
;
686 /* Check for missing interface numbers */
687 for (i
= 0; i
< nintf
; ++i
) {
688 for (j
= 0; j
< nintf
; ++j
) {
693 dev_warn(ddev
, "config %d has no interface number "
697 /* Allocate the usb_interface_caches and altsetting arrays */
698 for (i
= 0; i
< nintf
; ++i
) {
700 if (j
> USB_MAXALTSETTING
) {
701 dev_warn(ddev
, "too many alternate settings for "
702 "config %d interface %d: %d, "
703 "using maximum allowed: %d\n",
704 cfgno
, inums
[i
], j
, USB_MAXALTSETTING
);
705 nalts
[i
] = j
= USB_MAXALTSETTING
;
708 len
= sizeof(*intfc
) + sizeof(struct usb_host_interface
) * j
;
709 config
->intf_cache
[i
] = intfc
= kzalloc(len
, GFP_KERNEL
);
712 kref_init(&intfc
->ref
);
715 /* FIXME: parse the BOS descriptor */
717 /* Skip over any Class Specific or Vendor Specific descriptors;
718 * find the first interface descriptor */
719 config
->extra
= buffer
;
720 i
= find_next_descriptor(buffer
, size
, USB_DT_INTERFACE
,
721 USB_DT_INTERFACE
, &n
);
722 config
->extralen
= i
;
724 dev_dbg(ddev
, "skipped %d descriptor%s after %s\n",
725 n
, plural(n
), "configuration");
729 /* Parse all the interface/altsetting descriptors */
731 retval
= usb_parse_interface(ddev
, cfgno
, config
,
732 buffer
, size
, inums
, nalts
);
740 /* Check for missing altsettings */
741 for (i
= 0; i
< nintf
; ++i
) {
742 intfc
= config
->intf_cache
[i
];
743 for (j
= 0; j
< intfc
->num_altsetting
; ++j
) {
744 for (n
= 0; n
< intfc
->num_altsetting
; ++n
) {
745 if (intfc
->altsetting
[n
].desc
.
746 bAlternateSetting
== j
)
749 if (n
>= intfc
->num_altsetting
)
750 dev_warn(ddev
, "config %d interface %d has no "
751 "altsetting %d\n", cfgno
, inums
[i
], j
);
758 /* hub-only!! ... and only exported for reset/reinit path.
759 * otherwise used internally on disconnect/destroy path
761 void usb_destroy_configuration(struct usb_device
*dev
)
768 if (dev
->rawdescriptors
) {
769 for (i
= 0; i
< dev
->descriptor
.bNumConfigurations
; i
++)
770 kfree(dev
->rawdescriptors
[i
]);
772 kfree(dev
->rawdescriptors
);
773 dev
->rawdescriptors
= NULL
;
776 for (c
= 0; c
< dev
->descriptor
.bNumConfigurations
; c
++) {
777 struct usb_host_config
*cf
= &dev
->config
[c
];
780 for (i
= 0; i
< cf
->desc
.bNumInterfaces
; i
++) {
781 if (cf
->intf_cache
[i
])
782 kref_put(&cf
->intf_cache
[i
]->ref
,
783 usb_release_interface_cache
);
792 * Get the USB config descriptors, cache and parse'em
794 * hub-only!! ... and only in reset path, or usb_new_device()
795 * (used by real hubs and virtual root hubs)
797 int usb_get_configuration(struct usb_device
*dev
)
799 struct device
*ddev
= &dev
->dev
;
800 int ncfg
= dev
->descriptor
.bNumConfigurations
;
802 unsigned int cfgno
, length
;
803 unsigned char *bigbuffer
;
804 struct usb_config_descriptor
*desc
;
808 if (ncfg
> USB_MAXCONFIG
) {
809 dev_warn(ddev
, "too many configurations: %d, "
810 "using maximum allowed: %d\n", ncfg
, USB_MAXCONFIG
);
811 dev
->descriptor
.bNumConfigurations
= ncfg
= USB_MAXCONFIG
;
815 dev_err(ddev
, "no configurations\n");
819 length
= ncfg
* sizeof(struct usb_host_config
);
820 dev
->config
= kzalloc(length
, GFP_KERNEL
);
824 length
= ncfg
* sizeof(char *);
825 dev
->rawdescriptors
= kzalloc(length
, GFP_KERNEL
);
826 if (!dev
->rawdescriptors
)
829 desc
= kmalloc(USB_DT_CONFIG_SIZE
, GFP_KERNEL
);
834 for (; cfgno
< ncfg
; cfgno
++) {
835 /* We grab just the first descriptor so we know how long
836 * the whole configuration is */
837 result
= usb_get_descriptor(dev
, USB_DT_CONFIG
, cfgno
,
838 desc
, USB_DT_CONFIG_SIZE
);
840 dev_err(ddev
, "unable to read config index %d "
841 "descriptor/%s: %d\n", cfgno
, "start", result
);
842 if (result
!= -EPIPE
)
844 dev_err(ddev
, "chopping to %d config(s)\n", cfgno
);
845 dev
->descriptor
.bNumConfigurations
= cfgno
;
847 } else if (result
< 4) {
848 dev_err(ddev
, "config index %d descriptor too short "
849 "(expected %i, got %i)\n", cfgno
,
850 USB_DT_CONFIG_SIZE
, result
);
854 length
= max((int) le16_to_cpu(desc
->wTotalLength
),
857 /* Now that we know the length, get the whole thing */
858 bigbuffer
= kmalloc(length
, GFP_KERNEL
);
864 if (dev
->quirks
& USB_QUIRK_DELAY_INIT
)
867 result
= usb_get_descriptor(dev
, USB_DT_CONFIG
, cfgno
,
870 dev_err(ddev
, "unable to read config index %d "
871 "descriptor/%s\n", cfgno
, "all");
875 if (result
< length
) {
876 dev_warn(ddev
, "config index %d descriptor too short "
877 "(expected %i, got %i)\n", cfgno
, length
, result
);
881 dev
->rawdescriptors
[cfgno
] = bigbuffer
;
883 result
= usb_parse_configuration(dev
, cfgno
,
884 &dev
->config
[cfgno
], bigbuffer
, length
);
894 dev
->descriptor
.bNumConfigurations
= cfgno
;
896 if (result
== -ENOMEM
)
897 dev_err(ddev
, "out of memory\n");
901 void usb_release_bos_descriptor(struct usb_device
*dev
)
904 kfree(dev
->bos
->desc
);
910 static const __u8 bos_desc_len
[256] = {
911 [USB_CAP_TYPE_WIRELESS_USB
] = USB_DT_USB_WIRELESS_CAP_SIZE
,
912 [USB_CAP_TYPE_EXT
] = USB_DT_USB_EXT_CAP_SIZE
,
913 [USB_SS_CAP_TYPE
] = USB_DT_USB_SS_CAP_SIZE
,
914 [USB_SSP_CAP_TYPE
] = USB_DT_USB_SSP_CAP_SIZE(1),
915 [CONTAINER_ID_TYPE
] = USB_DT_USB_SS_CONTN_ID_SIZE
,
916 [USB_PTM_CAP_TYPE
] = USB_DT_USB_PTM_ID_SIZE
,
919 /* Get BOS descriptor set */
920 int usb_get_bos_descriptor(struct usb_device
*dev
)
922 struct device
*ddev
= &dev
->dev
;
923 struct usb_bos_descriptor
*bos
;
924 struct usb_dev_cap_header
*cap
;
925 struct usb_ssp_cap_descriptor
*ssp_cap
;
926 unsigned char *buffer
;
927 int length
, total_len
, num
, i
, ssac
;
931 bos
= kzalloc(sizeof(struct usb_bos_descriptor
), GFP_KERNEL
);
935 /* Get BOS descriptor */
936 ret
= usb_get_descriptor(dev
, USB_DT_BOS
, 0, bos
, USB_DT_BOS_SIZE
);
937 if (ret
< USB_DT_BOS_SIZE
) {
938 dev_err(ddev
, "unable to get BOS descriptor\n");
945 length
= bos
->bLength
;
946 total_len
= le16_to_cpu(bos
->wTotalLength
);
947 num
= bos
->bNumDeviceCaps
;
949 if (total_len
< length
)
952 dev
->bos
= kzalloc(sizeof(struct usb_host_bos
), GFP_KERNEL
);
956 /* Now let's get the whole BOS descriptor set */
957 buffer
= kzalloc(total_len
, GFP_KERNEL
);
962 dev
->bos
->desc
= (struct usb_bos_descriptor
*)buffer
;
964 ret
= usb_get_descriptor(dev
, USB_DT_BOS
, 0, buffer
, total_len
);
965 if (ret
< total_len
) {
966 dev_err(ddev
, "unable to get BOS descriptor set\n");
973 for (i
= 0; i
< num
; i
++) {
975 cap
= (struct usb_dev_cap_header
*)buffer
;
977 if (total_len
< sizeof(*cap
) || total_len
< cap
->bLength
) {
978 dev
->bos
->desc
->bNumDeviceCaps
= i
;
981 cap_type
= cap
->bDevCapabilityType
;
982 length
= cap
->bLength
;
983 if (bos_desc_len
[cap_type
] && length
< bos_desc_len
[cap_type
]) {
984 dev
->bos
->desc
->bNumDeviceCaps
= i
;
990 if (cap
->bDescriptorType
!= USB_DT_DEVICE_CAPABILITY
) {
991 dev_warn(ddev
, "descriptor type invalid, skip\n");
996 case USB_CAP_TYPE_WIRELESS_USB
:
997 /* Wireless USB cap descriptor is handled by wusb */
999 case USB_CAP_TYPE_EXT
:
1001 (struct usb_ext_cap_descriptor
*)buffer
;
1003 case USB_SS_CAP_TYPE
:
1005 (struct usb_ss_cap_descriptor
*)buffer
;
1007 case USB_SSP_CAP_TYPE
:
1008 ssp_cap
= (struct usb_ssp_cap_descriptor
*)buffer
;
1009 ssac
= (le32_to_cpu(ssp_cap
->bmAttributes
) &
1010 USB_SSP_SUBLINK_SPEED_ATTRIBS
);
1011 if (length
>= USB_DT_USB_SSP_CAP_SIZE(ssac
))
1012 dev
->bos
->ssp_cap
= ssp_cap
;
1014 case CONTAINER_ID_TYPE
:
1016 (struct usb_ss_container_id_descriptor
*)buffer
;
1018 case USB_PTM_CAP_TYPE
:
1020 (struct usb_ptm_cap_descriptor
*)buffer
;
1029 usb_release_bos_descriptor(dev
);