|
@@ -75,6 +75,89 @@ MODULE_PARM_DESC(autosuspend, "default autosuspend delay");
|
|
|
#endif
|
|
|
|
|
|
|
|
|
+/**
|
|
|
+ * usb_find_common_endpoints() -- look up common endpoint descriptors
|
|
|
+ * @alt: alternate setting to search
|
|
|
+ * @bulk_in: pointer to descriptor pointer, or NULL
|
|
|
+ * @bulk_out: pointer to descriptor pointer, or NULL
|
|
|
+ * @int_in: pointer to descriptor pointer, or NULL
|
|
|
+ * @int_out: pointer to descriptor pointer, or NULL
|
|
|
+ *
|
|
|
+ * Search the alternate setting's endpoint descriptors for the first bulk-in,
|
|
|
+ * bulk-out, interrupt-in and interrupt-out endpoints and return them in the
|
|
|
+ * provided pointers (unless they are NULL).
|
|
|
+ *
|
|
|
+ * If a requested endpoint is not found, the corresponding pointer is set to
|
|
|
+ * NULL.
|
|
|
+ *
|
|
|
+ * Return: Zero if all requested descriptors were found, or -ENXIO otherwise.
|
|
|
+ */
|
|
|
+int usb_find_common_endpoints(struct usb_host_interface *alt,
|
|
|
+ struct usb_endpoint_descriptor **bulk_in,
|
|
|
+ struct usb_endpoint_descriptor **bulk_out,
|
|
|
+ struct usb_endpoint_descriptor **int_in,
|
|
|
+ struct usb_endpoint_descriptor **int_out)
|
|
|
+{
|
|
|
+ struct usb_endpoint_descriptor *epd;
|
|
|
+ int i;
|
|
|
+
|
|
|
+ if (bulk_in)
|
|
|
+ *bulk_in = NULL;
|
|
|
+ if (bulk_out)
|
|
|
+ *bulk_out = NULL;
|
|
|
+ if (int_in)
|
|
|
+ *int_in = NULL;
|
|
|
+ if (int_out)
|
|
|
+ *int_out = NULL;
|
|
|
+
|
|
|
+ for (i = 0; i < alt->desc.bNumEndpoints; ++i) {
|
|
|
+ epd = &alt->endpoint[i].desc;
|
|
|
+
|
|
|
+ switch (usb_endpoint_type(epd)) {
|
|
|
+ case USB_ENDPOINT_XFER_BULK:
|
|
|
+ if (usb_endpoint_dir_in(epd)) {
|
|
|
+ if (bulk_in && !*bulk_in) {
|
|
|
+ *bulk_in = epd;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ if (bulk_out && !*bulk_out) {
|
|
|
+ *bulk_out = epd;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ continue;
|
|
|
+ case USB_ENDPOINT_XFER_INT:
|
|
|
+ if (usb_endpoint_dir_in(epd)) {
|
|
|
+ if (int_in && !*int_in) {
|
|
|
+ *int_in = epd;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ if (int_out && !*int_out) {
|
|
|
+ *int_out = epd;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ continue;
|
|
|
+ default:
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+
|
|
|
+ if ((!bulk_in || *bulk_in) &&
|
|
|
+ (!bulk_out || *bulk_out) &&
|
|
|
+ (!int_in || *int_in) &&
|
|
|
+ (!int_out || *int_out)) {
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return -ENXIO;
|
|
|
+}
|
|
|
+EXPORT_SYMBOL_GPL(usb_find_common_endpoints);
|
|
|
+
|
|
|
/**
|
|
|
* usb_find_alt_setting() - Given a configuration, find the alternate setting
|
|
|
* for the given interface.
|