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_ssp_isoc_endpoint_companion(struct device
*ddev
,
47 int cfgno
, int inum
, int asnum
, struct usb_host_endpoint
*ep
,
48 unsigned char *buffer
, int size
)
50 struct usb_ssp_isoc_ep_comp_descriptor
*desc
;
53 * The SuperSpeedPlus Isoc endpoint companion descriptor immediately
54 * follows the SuperSpeed Endpoint Companion descriptor
56 desc
= (struct usb_ssp_isoc_ep_comp_descriptor
*) buffer
;
57 if (desc
->bDescriptorType
!= USB_DT_SSP_ISOC_ENDPOINT_COMP
||
58 size
< USB_DT_SSP_ISOC_EP_COMP_SIZE
) {
59 dev_warn(ddev
, "Invalid SuperSpeedPlus isoc endpoint companion"
60 "for config %d interface %d altsetting %d ep %d.\n",
61 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
);
64 memcpy(&ep
->ssp_isoc_ep_comp
, desc
, USB_DT_SSP_ISOC_EP_COMP_SIZE
);
67 static void usb_parse_ss_endpoint_companion(struct device
*ddev
, int cfgno
,
68 int inum
, int asnum
, struct usb_host_endpoint
*ep
,
69 unsigned char *buffer
, int size
)
71 struct usb_ss_ep_comp_descriptor
*desc
;
74 /* The SuperSpeed endpoint companion descriptor is supposed to
75 * be the first thing immediately following the endpoint descriptor.
77 desc
= (struct usb_ss_ep_comp_descriptor
*) buffer
;
79 if (desc
->bDescriptorType
!= USB_DT_SS_ENDPOINT_COMP
||
80 size
< USB_DT_SS_EP_COMP_SIZE
) {
81 dev_warn(ddev
, "No SuperSpeed endpoint companion for config %d "
82 " interface %d altsetting %d ep %d: "
83 "using minimum values\n",
84 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
);
86 /* Fill in some default values.
87 * Leave bmAttributes as zero, which will mean no streams for
88 * bulk, and isoc won't support multiple bursts of packets.
89 * With bursts of only one packet, and a Mult of 1, the max
90 * amount of data moved per endpoint service interval is one
93 ep
->ss_ep_comp
.bLength
= USB_DT_SS_EP_COMP_SIZE
;
94 ep
->ss_ep_comp
.bDescriptorType
= USB_DT_SS_ENDPOINT_COMP
;
95 if (usb_endpoint_xfer_isoc(&ep
->desc
) ||
96 usb_endpoint_xfer_int(&ep
->desc
))
97 ep
->ss_ep_comp
.wBytesPerInterval
=
98 ep
->desc
.wMaxPacketSize
;
101 buffer
+= desc
->bLength
;
102 size
-= desc
->bLength
;
103 memcpy(&ep
->ss_ep_comp
, desc
, USB_DT_SS_EP_COMP_SIZE
);
105 /* Check the various values */
106 if (usb_endpoint_xfer_control(&ep
->desc
) && desc
->bMaxBurst
!= 0) {
107 dev_warn(ddev
, "Control endpoint with bMaxBurst = %d in "
108 "config %d interface %d altsetting %d ep %d: "
109 "setting to zero\n", desc
->bMaxBurst
,
110 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
);
111 ep
->ss_ep_comp
.bMaxBurst
= 0;
112 } else if (desc
->bMaxBurst
> 15) {
113 dev_warn(ddev
, "Endpoint with bMaxBurst = %d in "
114 "config %d interface %d altsetting %d ep %d: "
115 "setting to 15\n", desc
->bMaxBurst
,
116 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
);
117 ep
->ss_ep_comp
.bMaxBurst
= 15;
120 if ((usb_endpoint_xfer_control(&ep
->desc
) ||
121 usb_endpoint_xfer_int(&ep
->desc
)) &&
122 desc
->bmAttributes
!= 0) {
123 dev_warn(ddev
, "%s endpoint with bmAttributes = %d in "
124 "config %d interface %d altsetting %d ep %d: "
126 usb_endpoint_xfer_control(&ep
->desc
) ? "Control" : "Bulk",
128 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
);
129 ep
->ss_ep_comp
.bmAttributes
= 0;
130 } else if (usb_endpoint_xfer_bulk(&ep
->desc
) &&
131 desc
->bmAttributes
> 16) {
132 dev_warn(ddev
, "Bulk endpoint with more than 65536 streams in "
133 "config %d interface %d altsetting %d ep %d: "
135 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
);
136 ep
->ss_ep_comp
.bmAttributes
= 16;
137 } else if (usb_endpoint_xfer_isoc(&ep
->desc
) &&
138 !USB_SS_SSP_ISOC_COMP(desc
->bmAttributes
) &&
139 USB_SS_MULT(desc
->bmAttributes
) > 3) {
140 dev_warn(ddev
, "Isoc endpoint has Mult of %d in "
141 "config %d interface %d altsetting %d ep %d: "
143 USB_SS_MULT(desc
->bmAttributes
),
144 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
);
145 ep
->ss_ep_comp
.bmAttributes
= 2;
148 if (usb_endpoint_xfer_isoc(&ep
->desc
))
149 max_tx
= (desc
->bMaxBurst
+ 1) *
150 (USB_SS_MULT(desc
->bmAttributes
)) *
151 usb_endpoint_maxp(&ep
->desc
);
152 else if (usb_endpoint_xfer_int(&ep
->desc
))
153 max_tx
= usb_endpoint_maxp(&ep
->desc
) *
154 (desc
->bMaxBurst
+ 1);
157 if (le16_to_cpu(desc
->wBytesPerInterval
) > max_tx
) {
158 dev_warn(ddev
, "%s endpoint with wBytesPerInterval of %d in "
159 "config %d interface %d altsetting %d ep %d: "
161 usb_endpoint_xfer_isoc(&ep
->desc
) ? "Isoc" : "Int",
162 le16_to_cpu(desc
->wBytesPerInterval
),
163 cfgno
, inum
, asnum
, ep
->desc
.bEndpointAddress
,
165 ep
->ss_ep_comp
.wBytesPerInterval
= cpu_to_le16(max_tx
);
167 /* Parse a possible SuperSpeedPlus isoc ep companion descriptor */
168 if (usb_endpoint_xfer_isoc(&ep
->desc
) &&
169 USB_SS_SSP_ISOC_COMP(desc
->bmAttributes
))
170 usb_parse_ssp_isoc_endpoint_companion(ddev
, cfgno
, inum
, asnum
,
174 static const unsigned short low_speed_maxpacket_maxes
[4] = {
175 [USB_ENDPOINT_XFER_CONTROL
] = 8,
176 [USB_ENDPOINT_XFER_ISOC
] = 0,
177 [USB_ENDPOINT_XFER_BULK
] = 0,
178 [USB_ENDPOINT_XFER_INT
] = 8,
180 static const unsigned short full_speed_maxpacket_maxes
[4] = {
181 [USB_ENDPOINT_XFER_CONTROL
] = 64,
182 [USB_ENDPOINT_XFER_ISOC
] = 1023,
183 [USB_ENDPOINT_XFER_BULK
] = 64,
184 [USB_ENDPOINT_XFER_INT
] = 64,
186 static const unsigned short high_speed_maxpacket_maxes
[4] = {
187 [USB_ENDPOINT_XFER_CONTROL
] = 64,
188 [USB_ENDPOINT_XFER_ISOC
] = 1024,
190 /* Bulk should be 512, but some devices use 1024: we will warn below */
191 [USB_ENDPOINT_XFER_BULK
] = 1024,
192 [USB_ENDPOINT_XFER_INT
] = 1024,
194 static const unsigned short super_speed_maxpacket_maxes
[4] = {
195 [USB_ENDPOINT_XFER_CONTROL
] = 512,
196 [USB_ENDPOINT_XFER_ISOC
] = 1024,
197 [USB_ENDPOINT_XFER_BULK
] = 1024,
198 [USB_ENDPOINT_XFER_INT
] = 1024,
201 static int usb_parse_endpoint(struct device
*ddev
, int cfgno
, int inum
,
202 int asnum
, struct usb_host_interface
*ifp
, int num_ep
,
203 unsigned char *buffer
, int size
)
205 unsigned char *buffer0
= buffer
;
206 struct usb_endpoint_descriptor
*d
;
207 struct usb_host_endpoint
*endpoint
;
210 const unsigned short *maxpacket_maxes
;
212 d
= (struct usb_endpoint_descriptor
*) buffer
;
213 buffer
+= d
->bLength
;
216 if (d
->bLength
>= USB_DT_ENDPOINT_AUDIO_SIZE
)
217 n
= USB_DT_ENDPOINT_AUDIO_SIZE
;
218 else if (d
->bLength
>= USB_DT_ENDPOINT_SIZE
)
219 n
= USB_DT_ENDPOINT_SIZE
;
221 dev_warn(ddev
, "config %d interface %d altsetting %d has an "
222 "invalid endpoint descriptor of length %d, skipping\n",
223 cfgno
, inum
, asnum
, d
->bLength
);
224 goto skip_to_next_endpoint_or_interface_descriptor
;
227 i
= d
->bEndpointAddress
& ~USB_ENDPOINT_DIR_MASK
;
228 if (i
>= 16 || i
== 0) {
229 dev_warn(ddev
, "config %d interface %d altsetting %d has an "
230 "invalid endpoint with address 0x%X, skipping\n",
231 cfgno
, inum
, asnum
, d
->bEndpointAddress
);
232 goto skip_to_next_endpoint_or_interface_descriptor
;
235 /* Only store as many endpoints as we have room for */
236 if (ifp
->desc
.bNumEndpoints
>= num_ep
)
237 goto skip_to_next_endpoint_or_interface_descriptor
;
239 /* Check for duplicate endpoint addresses */
240 for (i
= 0; i
< ifp
->desc
.bNumEndpoints
; ++i
) {
241 if (ifp
->endpoint
[i
].desc
.bEndpointAddress
==
242 d
->bEndpointAddress
) {
243 dev_warn(ddev
, "config %d interface %d altsetting %d has a duplicate endpoint with address 0x%X, skipping\n",
244 cfgno
, inum
, asnum
, d
->bEndpointAddress
);
245 goto skip_to_next_endpoint_or_interface_descriptor
;
249 endpoint
= &ifp
->endpoint
[ifp
->desc
.bNumEndpoints
];
250 ++ifp
->desc
.bNumEndpoints
;
252 memcpy(&endpoint
->desc
, d
, n
);
253 INIT_LIST_HEAD(&endpoint
->urb_list
);
256 * Fix up bInterval values outside the legal range.
257 * Use 10 or 8 ms if no proper value can be guessed.
259 i
= 0; /* i = min, j = max, n = default */
261 if (usb_endpoint_xfer_int(d
)) {
263 switch (to_usb_device(ddev
)->speed
) {
264 case USB_SPEED_SUPER_PLUS
:
265 case USB_SPEED_SUPER
:
268 * Many device manufacturers are using full-speed
269 * bInterval values in high-speed interrupt endpoint
270 * descriptors. Try to fix those and fall back to an
271 * 8-ms default value otherwise.
273 n
= fls(d
->bInterval
*8);
275 n
= 7; /* 8 ms = 2^(7-1) uframes */
279 * Adjust bInterval for quirked devices.
282 * This quirk fixes bIntervals reported in ms.
284 if (to_usb_device(ddev
)->quirks
&
285 USB_QUIRK_LINEAR_FRAME_INTR_BINTERVAL
) {
286 n
= clamp(fls(d
->bInterval
) + 3, i
, j
);
290 * This quirk fixes bIntervals reported in
291 * linear microframes.
293 if (to_usb_device(ddev
)->quirks
&
294 USB_QUIRK_LINEAR_UFRAME_INTR_BINTERVAL
) {
295 n
= clamp(fls(d
->bInterval
), i
, j
);
299 default: /* USB_SPEED_FULL or _LOW */
301 * For low-speed, 10 ms is the official minimum.
302 * But some "overclocked" devices might want faster
303 * polling so we'll allow it.
308 } else if (usb_endpoint_xfer_isoc(d
)) {
311 switch (to_usb_device(ddev
)->speed
) {
313 n
= 7; /* 8 ms = 2^(7-1) uframes */
315 default: /* USB_SPEED_FULL */
316 n
= 4; /* 8 ms = 2^(4-1) frames */
320 if (d
->bInterval
< i
|| d
->bInterval
> j
) {
321 dev_warn(ddev
, "config %d interface %d altsetting %d "
322 "endpoint 0x%X has an invalid bInterval %d, "
325 d
->bEndpointAddress
, d
->bInterval
, n
);
326 endpoint
->desc
.bInterval
= n
;
329 /* Some buggy low-speed devices have Bulk endpoints, which is
330 * explicitly forbidden by the USB spec. In an attempt to make
331 * them usable, we will try treating them as Interrupt endpoints.
333 if (to_usb_device(ddev
)->speed
== USB_SPEED_LOW
&&
334 usb_endpoint_xfer_bulk(d
)) {
335 dev_warn(ddev
, "config %d interface %d altsetting %d "
336 "endpoint 0x%X is Bulk; changing to Interrupt\n",
337 cfgno
, inum
, asnum
, d
->bEndpointAddress
);
338 endpoint
->desc
.bmAttributes
= USB_ENDPOINT_XFER_INT
;
339 endpoint
->desc
.bInterval
= 1;
340 if (usb_endpoint_maxp(&endpoint
->desc
) > 8)
341 endpoint
->desc
.wMaxPacketSize
= cpu_to_le16(8);
344 /* Validate the wMaxPacketSize field */
345 maxp
= usb_endpoint_maxp(&endpoint
->desc
);
347 /* Find the highest legal maxpacket size for this endpoint */
348 i
= 0; /* additional transactions per microframe */
349 switch (to_usb_device(ddev
)->speed
) {
351 maxpacket_maxes
= low_speed_maxpacket_maxes
;
354 maxpacket_maxes
= full_speed_maxpacket_maxes
;
357 /* Bits 12..11 are allowed only for HS periodic endpoints */
358 if (usb_endpoint_xfer_int(d
) || usb_endpoint_xfer_isoc(d
)) {
359 i
= maxp
& (BIT(12) | BIT(11));
364 maxpacket_maxes
= high_speed_maxpacket_maxes
;
366 case USB_SPEED_SUPER
:
367 case USB_SPEED_SUPER_PLUS
:
368 maxpacket_maxes
= super_speed_maxpacket_maxes
;
371 j
= maxpacket_maxes
[usb_endpoint_type(&endpoint
->desc
)];
374 dev_warn(ddev
, "config %d interface %d altsetting %d endpoint 0x%X has invalid maxpacket %d, setting to %d\n",
375 cfgno
, inum
, asnum
, d
->bEndpointAddress
, maxp
, j
);
377 endpoint
->desc
.wMaxPacketSize
= cpu_to_le16(i
| maxp
);
381 * Some buggy high speed devices have bulk endpoints using
382 * maxpacket sizes other than 512. High speed HCDs may not
383 * be able to handle that particular bug, so let's warn...
385 if (to_usb_device(ddev
)->speed
== USB_SPEED_HIGH
386 && usb_endpoint_xfer_bulk(d
)) {
388 dev_warn(ddev
, "config %d interface %d altsetting %d "
389 "bulk endpoint 0x%X has invalid maxpacket %d\n",
390 cfgno
, inum
, asnum
, d
->bEndpointAddress
,
394 /* Parse a possible SuperSpeed endpoint companion descriptor */
395 if (to_usb_device(ddev
)->speed
>= USB_SPEED_SUPER
)
396 usb_parse_ss_endpoint_companion(ddev
, cfgno
,
397 inum
, asnum
, endpoint
, buffer
, size
);
399 /* Skip over any Class Specific or Vendor Specific descriptors;
400 * find the next endpoint or interface descriptor */
401 endpoint
->extra
= buffer
;
402 i
= find_next_descriptor(buffer
, size
, USB_DT_ENDPOINT
,
403 USB_DT_INTERFACE
, &n
);
404 endpoint
->extralen
= i
;
405 retval
= buffer
- buffer0
+ i
;
407 dev_dbg(ddev
, "skipped %d descriptor%s after %s\n",
408 n
, plural(n
), "endpoint");
411 skip_to_next_endpoint_or_interface_descriptor
:
412 i
= find_next_descriptor(buffer
, size
, USB_DT_ENDPOINT
,
413 USB_DT_INTERFACE
, NULL
);
414 return buffer
- buffer0
+ i
;
417 void usb_release_interface_cache(struct kref
*ref
)
419 struct usb_interface_cache
*intfc
= ref_to_usb_interface_cache(ref
);
422 for (j
= 0; j
< intfc
->num_altsetting
; j
++) {
423 struct usb_host_interface
*alt
= &intfc
->altsetting
[j
];
425 kfree(alt
->endpoint
);
431 static int usb_parse_interface(struct device
*ddev
, int cfgno
,
432 struct usb_host_config
*config
, unsigned char *buffer
, int size
,
433 u8 inums
[], u8 nalts
[])
435 unsigned char *buffer0
= buffer
;
436 struct usb_interface_descriptor
*d
;
438 struct usb_interface_cache
*intfc
;
439 struct usb_host_interface
*alt
;
442 int num_ep
, num_ep_orig
;
444 d
= (struct usb_interface_descriptor
*) buffer
;
445 buffer
+= d
->bLength
;
448 if (d
->bLength
< USB_DT_INTERFACE_SIZE
)
449 goto skip_to_next_interface_descriptor
;
451 /* Which interface entry is this? */
453 inum
= d
->bInterfaceNumber
;
454 for (i
= 0; i
< config
->desc
.bNumInterfaces
; ++i
) {
455 if (inums
[i
] == inum
) {
456 intfc
= config
->intf_cache
[i
];
460 if (!intfc
|| intfc
->num_altsetting
>= nalts
[i
])
461 goto skip_to_next_interface_descriptor
;
463 /* Check for duplicate altsetting entries */
464 asnum
= d
->bAlternateSetting
;
465 for ((i
= 0, alt
= &intfc
->altsetting
[0]);
466 i
< intfc
->num_altsetting
;
468 if (alt
->desc
.bAlternateSetting
== asnum
) {
469 dev_warn(ddev
, "Duplicate descriptor for config %d "
470 "interface %d altsetting %d, skipping\n",
472 goto skip_to_next_interface_descriptor
;
476 ++intfc
->num_altsetting
;
477 memcpy(&alt
->desc
, d
, USB_DT_INTERFACE_SIZE
);
479 /* Skip over any Class Specific or Vendor Specific descriptors;
480 * find the first endpoint or interface descriptor */
482 i
= find_next_descriptor(buffer
, size
, USB_DT_ENDPOINT
,
483 USB_DT_INTERFACE
, &n
);
486 dev_dbg(ddev
, "skipped %d descriptor%s after %s\n",
487 n
, plural(n
), "interface");
491 /* Allocate space for the right(?) number of endpoints */
492 num_ep
= num_ep_orig
= alt
->desc
.bNumEndpoints
;
493 alt
->desc
.bNumEndpoints
= 0; /* Use as a counter */
494 if (num_ep
> USB_MAXENDPOINTS
) {
495 dev_warn(ddev
, "too many endpoints for config %d interface %d "
496 "altsetting %d: %d, using maximum allowed: %d\n",
497 cfgno
, inum
, asnum
, num_ep
, USB_MAXENDPOINTS
);
498 num_ep
= USB_MAXENDPOINTS
;
502 /* Can't allocate 0 bytes */
503 len
= sizeof(struct usb_host_endpoint
) * num_ep
;
504 alt
->endpoint
= kzalloc(len
, GFP_KERNEL
);
509 /* Parse all the endpoint descriptors */
512 if (((struct usb_descriptor_header
*) buffer
)->bDescriptorType
515 retval
= usb_parse_endpoint(ddev
, cfgno
, inum
, asnum
, alt
,
516 num_ep
, buffer
, size
);
525 if (n
!= num_ep_orig
)
526 dev_warn(ddev
, "config %d interface %d altsetting %d has %d "
527 "endpoint descriptor%s, different from the interface "
528 "descriptor's value: %d\n",
529 cfgno
, inum
, asnum
, n
, plural(n
), num_ep_orig
);
530 return buffer
- buffer0
;
532 skip_to_next_interface_descriptor
:
533 i
= find_next_descriptor(buffer
, size
, USB_DT_INTERFACE
,
534 USB_DT_INTERFACE
, NULL
);
535 return buffer
- buffer0
+ i
;
538 static int usb_parse_configuration(struct usb_device
*dev
, int cfgidx
,
539 struct usb_host_config
*config
, unsigned char *buffer
, int size
)
541 struct device
*ddev
= &dev
->dev
;
542 unsigned char *buffer0
= buffer
;
544 int nintf
, nintf_orig
;
546 struct usb_interface_cache
*intfc
;
547 unsigned char *buffer2
;
549 struct usb_descriptor_header
*header
;
551 u8 inums
[USB_MAXINTERFACES
], nalts
[USB_MAXINTERFACES
];
552 unsigned iad_num
= 0;
554 memcpy(&config
->desc
, buffer
, USB_DT_CONFIG_SIZE
);
555 nintf
= nintf_orig
= config
->desc
.bNumInterfaces
;
556 config
->desc
.bNumInterfaces
= 0; // Adjusted later
558 if (config
->desc
.bDescriptorType
!= USB_DT_CONFIG
||
559 config
->desc
.bLength
< USB_DT_CONFIG_SIZE
||
560 config
->desc
.bLength
> size
) {
561 dev_err(ddev
, "invalid descriptor for config index %d: "
562 "type = 0x%X, length = %d\n", cfgidx
,
563 config
->desc
.bDescriptorType
, config
->desc
.bLength
);
566 cfgno
= config
->desc
.bConfigurationValue
;
568 buffer
+= config
->desc
.bLength
;
569 size
-= config
->desc
.bLength
;
571 if (nintf
> USB_MAXINTERFACES
) {
572 dev_warn(ddev
, "config %d has too many interfaces: %d, "
573 "using maximum allowed: %d\n",
574 cfgno
, nintf
, USB_MAXINTERFACES
);
575 nintf
= USB_MAXINTERFACES
;
578 /* Go through the descriptors, checking their length and counting the
579 * number of altsettings for each interface */
581 for ((buffer2
= buffer
, size2
= size
);
583 (buffer2
+= header
->bLength
, size2
-= header
->bLength
)) {
585 if (size2
< sizeof(struct usb_descriptor_header
)) {
586 dev_warn(ddev
, "config %d descriptor has %d excess "
587 "byte%s, ignoring\n",
588 cfgno
, size2
, plural(size2
));
592 header
= (struct usb_descriptor_header
*) buffer2
;
593 if ((header
->bLength
> size2
) || (header
->bLength
< 2)) {
594 dev_warn(ddev
, "config %d has an invalid descriptor "
595 "of length %d, skipping remainder of the config\n",
596 cfgno
, header
->bLength
);
600 if (header
->bDescriptorType
== USB_DT_INTERFACE
) {
601 struct usb_interface_descriptor
*d
;
604 d
= (struct usb_interface_descriptor
*) header
;
605 if (d
->bLength
< USB_DT_INTERFACE_SIZE
) {
606 dev_warn(ddev
, "config %d has an invalid "
607 "interface descriptor of length %d, "
608 "skipping\n", cfgno
, d
->bLength
);
612 inum
= d
->bInterfaceNumber
;
614 if ((dev
->quirks
& USB_QUIRK_HONOR_BNUMINTERFACES
) &&
616 dev_warn(ddev
, "config %d has more interface "
617 "descriptors, than it declares in "
618 "bNumInterfaces, ignoring interface "
619 "number: %d\n", cfgno
, inum
);
623 if (inum
>= nintf_orig
)
624 dev_warn(ddev
, "config %d has an invalid "
625 "interface number: %d but max is %d\n",
626 cfgno
, inum
, nintf_orig
- 1);
628 /* Have we already encountered this interface?
629 * Count its altsettings */
630 for (i
= 0; i
< n
; ++i
) {
631 if (inums
[i
] == inum
)
637 } else if (n
< USB_MAXINTERFACES
) {
643 } else if (header
->bDescriptorType
==
644 USB_DT_INTERFACE_ASSOCIATION
) {
645 struct usb_interface_assoc_descriptor
*d
;
647 d
= (struct usb_interface_assoc_descriptor
*)header
;
648 if (d
->bLength
< USB_DT_INTERFACE_ASSOCIATION_SIZE
) {
650 "config %d has an invalid interface association descriptor of length %d, skipping\n",
655 if (iad_num
== USB_MAXIADS
) {
656 dev_warn(ddev
, "found more Interface "
657 "Association Descriptors "
658 "than allocated for in "
659 "configuration %d\n", cfgno
);
661 config
->intf_assoc
[iad_num
] = d
;
665 } else if (header
->bDescriptorType
== USB_DT_DEVICE
||
666 header
->bDescriptorType
== USB_DT_CONFIG
)
667 dev_warn(ddev
, "config %d contains an unexpected "
668 "descriptor of type 0x%X, skipping\n",
669 cfgno
, header
->bDescriptorType
);
671 } /* for ((buffer2 = buffer, size2 = size); ...) */
672 size
= buffer2
- buffer
;
673 config
->desc
.wTotalLength
= cpu_to_le16(buffer2
- buffer0
);
676 dev_warn(ddev
, "config %d has %d interface%s, different from "
677 "the descriptor's value: %d\n",
678 cfgno
, n
, plural(n
), nintf_orig
);
680 dev_warn(ddev
, "config %d has no interfaces?\n", cfgno
);
681 config
->desc
.bNumInterfaces
= nintf
= n
;
683 /* Check for missing interface numbers */
684 for (i
= 0; i
< nintf
; ++i
) {
685 for (j
= 0; j
< nintf
; ++j
) {
690 dev_warn(ddev
, "config %d has no interface number "
694 /* Allocate the usb_interface_caches and altsetting arrays */
695 for (i
= 0; i
< nintf
; ++i
) {
697 if (j
> USB_MAXALTSETTING
) {
698 dev_warn(ddev
, "too many alternate settings for "
699 "config %d interface %d: %d, "
700 "using maximum allowed: %d\n",
701 cfgno
, inums
[i
], j
, USB_MAXALTSETTING
);
702 nalts
[i
] = j
= USB_MAXALTSETTING
;
705 len
= sizeof(*intfc
) + sizeof(struct usb_host_interface
) * j
;
706 config
->intf_cache
[i
] = intfc
= kzalloc(len
, GFP_KERNEL
);
709 kref_init(&intfc
->ref
);
712 /* FIXME: parse the BOS descriptor */
714 /* Skip over any Class Specific or Vendor Specific descriptors;
715 * find the first interface descriptor */
716 config
->extra
= buffer
;
717 i
= find_next_descriptor(buffer
, size
, USB_DT_INTERFACE
,
718 USB_DT_INTERFACE
, &n
);
719 config
->extralen
= i
;
721 dev_dbg(ddev
, "skipped %d descriptor%s after %s\n",
722 n
, plural(n
), "configuration");
726 /* Parse all the interface/altsetting descriptors */
728 retval
= usb_parse_interface(ddev
, cfgno
, config
,
729 buffer
, size
, inums
, nalts
);
737 /* Check for missing altsettings */
738 for (i
= 0; i
< nintf
; ++i
) {
739 intfc
= config
->intf_cache
[i
];
740 for (j
= 0; j
< intfc
->num_altsetting
; ++j
) {
741 for (n
= 0; n
< intfc
->num_altsetting
; ++n
) {
742 if (intfc
->altsetting
[n
].desc
.
743 bAlternateSetting
== j
)
746 if (n
>= intfc
->num_altsetting
)
747 dev_warn(ddev
, "config %d interface %d has no "
748 "altsetting %d\n", cfgno
, inums
[i
], j
);
755 /* hub-only!! ... and only exported for reset/reinit path.
756 * otherwise used internally on disconnect/destroy path
758 void usb_destroy_configuration(struct usb_device
*dev
)
765 if (dev
->rawdescriptors
) {
766 for (i
= 0; i
< dev
->descriptor
.bNumConfigurations
; i
++)
767 kfree(dev
->rawdescriptors
[i
]);
769 kfree(dev
->rawdescriptors
);
770 dev
->rawdescriptors
= NULL
;
773 for (c
= 0; c
< dev
->descriptor
.bNumConfigurations
; c
++) {
774 struct usb_host_config
*cf
= &dev
->config
[c
];
777 for (i
= 0; i
< cf
->desc
.bNumInterfaces
; i
++) {
778 if (cf
->intf_cache
[i
])
779 kref_put(&cf
->intf_cache
[i
]->ref
,
780 usb_release_interface_cache
);
789 * Get the USB config descriptors, cache and parse'em
791 * hub-only!! ... and only in reset path, or usb_new_device()
792 * (used by real hubs and virtual root hubs)
794 int usb_get_configuration(struct usb_device
*dev
)
796 struct device
*ddev
= &dev
->dev
;
797 int ncfg
= dev
->descriptor
.bNumConfigurations
;
799 unsigned int cfgno
, length
;
800 unsigned char *bigbuffer
;
801 struct usb_config_descriptor
*desc
;
805 if (ncfg
> USB_MAXCONFIG
) {
806 dev_warn(ddev
, "too many configurations: %d, "
807 "using maximum allowed: %d\n", ncfg
, USB_MAXCONFIG
);
808 dev
->descriptor
.bNumConfigurations
= ncfg
= USB_MAXCONFIG
;
812 dev_err(ddev
, "no configurations\n");
816 length
= ncfg
* sizeof(struct usb_host_config
);
817 dev
->config
= kzalloc(length
, GFP_KERNEL
);
821 length
= ncfg
* sizeof(char *);
822 dev
->rawdescriptors
= kzalloc(length
, GFP_KERNEL
);
823 if (!dev
->rawdescriptors
)
826 desc
= kmalloc(USB_DT_CONFIG_SIZE
, GFP_KERNEL
);
831 for (; cfgno
< ncfg
; cfgno
++) {
832 /* We grab just the first descriptor so we know how long
833 * the whole configuration is */
834 result
= usb_get_descriptor(dev
, USB_DT_CONFIG
, cfgno
,
835 desc
, USB_DT_CONFIG_SIZE
);
837 dev_err(ddev
, "unable to read config index %d "
838 "descriptor/%s: %d\n", cfgno
, "start", result
);
839 if (result
!= -EPIPE
)
841 dev_err(ddev
, "chopping to %d config(s)\n", cfgno
);
842 dev
->descriptor
.bNumConfigurations
= cfgno
;
844 } else if (result
< 4) {
845 dev_err(ddev
, "config index %d descriptor too short "
846 "(expected %i, got %i)\n", cfgno
,
847 USB_DT_CONFIG_SIZE
, result
);
851 length
= max((int) le16_to_cpu(desc
->wTotalLength
),
854 /* Now that we know the length, get the whole thing */
855 bigbuffer
= kmalloc(length
, GFP_KERNEL
);
861 if (dev
->quirks
& USB_QUIRK_DELAY_INIT
)
864 result
= usb_get_descriptor(dev
, USB_DT_CONFIG
, cfgno
,
867 dev_err(ddev
, "unable to read config index %d "
868 "descriptor/%s\n", cfgno
, "all");
872 if (result
< length
) {
873 dev_warn(ddev
, "config index %d descriptor too short "
874 "(expected %i, got %i)\n", cfgno
, length
, result
);
878 dev
->rawdescriptors
[cfgno
] = bigbuffer
;
880 result
= usb_parse_configuration(dev
, cfgno
,
881 &dev
->config
[cfgno
], bigbuffer
, length
);
891 dev
->descriptor
.bNumConfigurations
= cfgno
;
893 if (result
== -ENOMEM
)
894 dev_err(ddev
, "out of memory\n");
898 void usb_release_bos_descriptor(struct usb_device
*dev
)
901 kfree(dev
->bos
->desc
);
907 static const __u8 bos_desc_len
[256] = {
908 [USB_CAP_TYPE_WIRELESS_USB
] = USB_DT_USB_WIRELESS_CAP_SIZE
,
909 [USB_CAP_TYPE_EXT
] = USB_DT_USB_EXT_CAP_SIZE
,
910 [USB_SS_CAP_TYPE
] = USB_DT_USB_SS_CAP_SIZE
,
911 [USB_SSP_CAP_TYPE
] = USB_DT_USB_SSP_CAP_SIZE(1),
912 [CONTAINER_ID_TYPE
] = USB_DT_USB_SS_CONTN_ID_SIZE
,
913 [USB_PTM_CAP_TYPE
] = USB_DT_USB_PTM_ID_SIZE
,
916 /* Get BOS descriptor set */
917 int usb_get_bos_descriptor(struct usb_device
*dev
)
919 struct device
*ddev
= &dev
->dev
;
920 struct usb_bos_descriptor
*bos
;
921 struct usb_dev_cap_header
*cap
;
922 struct usb_ssp_cap_descriptor
*ssp_cap
;
923 unsigned char *buffer
;
924 int length
, total_len
, num
, i
, ssac
;
928 bos
= kzalloc(sizeof(struct usb_bos_descriptor
), GFP_KERNEL
);
932 /* Get BOS descriptor */
933 ret
= usb_get_descriptor(dev
, USB_DT_BOS
, 0, bos
, USB_DT_BOS_SIZE
);
934 if (ret
< USB_DT_BOS_SIZE
) {
935 dev_err(ddev
, "unable to get BOS descriptor\n");
942 length
= bos
->bLength
;
943 total_len
= le16_to_cpu(bos
->wTotalLength
);
944 num
= bos
->bNumDeviceCaps
;
946 if (total_len
< length
)
949 dev
->bos
= kzalloc(sizeof(struct usb_host_bos
), GFP_KERNEL
);
953 /* Now let's get the whole BOS descriptor set */
954 buffer
= kzalloc(total_len
, GFP_KERNEL
);
959 dev
->bos
->desc
= (struct usb_bos_descriptor
*)buffer
;
961 ret
= usb_get_descriptor(dev
, USB_DT_BOS
, 0, buffer
, total_len
);
962 if (ret
< total_len
) {
963 dev_err(ddev
, "unable to get BOS descriptor set\n");
970 for (i
= 0; i
< num
; i
++) {
972 cap
= (struct usb_dev_cap_header
*)buffer
;
974 if (total_len
< sizeof(*cap
) || total_len
< cap
->bLength
) {
975 dev
->bos
->desc
->bNumDeviceCaps
= i
;
978 cap_type
= cap
->bDevCapabilityType
;
979 length
= cap
->bLength
;
980 if (bos_desc_len
[cap_type
] && length
< bos_desc_len
[cap_type
]) {
981 dev
->bos
->desc
->bNumDeviceCaps
= i
;
987 if (cap
->bDescriptorType
!= USB_DT_DEVICE_CAPABILITY
) {
988 dev_warn(ddev
, "descriptor type invalid, skip\n");
993 case USB_CAP_TYPE_WIRELESS_USB
:
994 /* Wireless USB cap descriptor is handled by wusb */
996 case USB_CAP_TYPE_EXT
:
998 (struct usb_ext_cap_descriptor
*)buffer
;
1000 case USB_SS_CAP_TYPE
:
1002 (struct usb_ss_cap_descriptor
*)buffer
;
1004 case USB_SSP_CAP_TYPE
:
1005 ssp_cap
= (struct usb_ssp_cap_descriptor
*)buffer
;
1006 ssac
= (le32_to_cpu(ssp_cap
->bmAttributes
) &
1007 USB_SSP_SUBLINK_SPEED_ATTRIBS
);
1008 if (length
>= USB_DT_USB_SSP_CAP_SIZE(ssac
))
1009 dev
->bos
->ssp_cap
= ssp_cap
;
1011 case CONTAINER_ID_TYPE
:
1013 (struct usb_ss_container_id_descriptor
*)buffer
;
1015 case USB_PTM_CAP_TYPE
:
1017 (struct usb_ptm_cap_descriptor
*)buffer
;
1026 usb_release_bos_descriptor(dev
);