diff options
Diffstat (limited to 'drivers/usb/gadget/function/f_loopback.c')
| -rw-r--r-- | drivers/usb/gadget/function/f_loopback.c | 571 |
1 files changed, 571 insertions, 0 deletions
diff --git a/drivers/usb/gadget/function/f_loopback.c b/drivers/usb/gadget/function/f_loopback.c new file mode 100644 index 000000000000..4557cd03f0b1 --- /dev/null +++ b/drivers/usb/gadget/function/f_loopback.c | |||
| @@ -0,0 +1,571 @@ | |||
| 1 | /* | ||
| 2 | * f_loopback.c - USB peripheral loopback configuration driver | ||
| 3 | * | ||
| 4 | * Copyright (C) 2003-2008 David Brownell | ||
| 5 | * Copyright (C) 2008 by Nokia Corporation | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License as published by | ||
| 9 | * the Free Software Foundation; either version 2 of the License, or | ||
| 10 | * (at your option) any later version. | ||
| 11 | */ | ||
| 12 | |||
| 13 | /* #define VERBOSE_DEBUG */ | ||
| 14 | |||
| 15 | #include <linux/slab.h> | ||
| 16 | #include <linux/kernel.h> | ||
| 17 | #include <linux/device.h> | ||
| 18 | #include <linux/module.h> | ||
| 19 | #include <linux/err.h> | ||
| 20 | #include <linux/usb/composite.h> | ||
| 21 | |||
| 22 | #include "g_zero.h" | ||
| 23 | #include "u_f.h" | ||
| 24 | |||
| 25 | /* | ||
| 26 | * LOOPBACK FUNCTION ... a testing vehicle for USB peripherals, | ||
| 27 | * | ||
| 28 | * This takes messages of various sizes written OUT to a device, and loops | ||
| 29 | * them back so they can be read IN from it. It has been used by certain | ||
| 30 | * test applications. It supports limited testing of data queueing logic. | ||
| 31 | * | ||
| 32 | * | ||
| 33 | * This is currently packaged as a configuration driver, which can't be | ||
| 34 | * combined with other functions to make composite devices. However, it | ||
| 35 | * can be combined with other independent configurations. | ||
| 36 | */ | ||
| 37 | struct f_loopback { | ||
| 38 | struct usb_function function; | ||
| 39 | |||
| 40 | struct usb_ep *in_ep; | ||
| 41 | struct usb_ep *out_ep; | ||
| 42 | }; | ||
| 43 | |||
| 44 | static inline struct f_loopback *func_to_loop(struct usb_function *f) | ||
| 45 | { | ||
| 46 | return container_of(f, struct f_loopback, function); | ||
| 47 | } | ||
| 48 | |||
| 49 | static unsigned qlen; | ||
| 50 | static unsigned buflen; | ||
| 51 | |||
| 52 | /*-------------------------------------------------------------------------*/ | ||
| 53 | |||
| 54 | static struct usb_interface_descriptor loopback_intf = { | ||
| 55 | .bLength = sizeof loopback_intf, | ||
| 56 | .bDescriptorType = USB_DT_INTERFACE, | ||
| 57 | |||
| 58 | .bNumEndpoints = 2, | ||
| 59 | .bInterfaceClass = USB_CLASS_VENDOR_SPEC, | ||
| 60 | /* .iInterface = DYNAMIC */ | ||
| 61 | }; | ||
| 62 | |||
| 63 | /* full speed support: */ | ||
| 64 | |||
| 65 | static struct usb_endpoint_descriptor fs_loop_source_desc = { | ||
| 66 | .bLength = USB_DT_ENDPOINT_SIZE, | ||
| 67 | .bDescriptorType = USB_DT_ENDPOINT, | ||
| 68 | |||
| 69 | .bEndpointAddress = USB_DIR_IN, | ||
| 70 | .bmAttributes = USB_ENDPOINT_XFER_BULK, | ||
| 71 | }; | ||
| 72 | |||
| 73 | static struct usb_endpoint_descriptor fs_loop_sink_desc = { | ||
| 74 | .bLength = USB_DT_ENDPOINT_SIZE, | ||
| 75 | .bDescriptorType = USB_DT_ENDPOINT, | ||
| 76 | |||
| 77 | .bEndpointAddress = USB_DIR_OUT, | ||
| 78 | .bmAttributes = USB_ENDPOINT_XFER_BULK, | ||
| 79 | }; | ||
| 80 | |||
| 81 | static struct usb_descriptor_header *fs_loopback_descs[] = { | ||
| 82 | (struct usb_descriptor_header *) &loopback_intf, | ||
| 83 | (struct usb_descriptor_header *) &fs_loop_sink_desc, | ||
| 84 | (struct usb_descriptor_header *) &fs_loop_source_desc, | ||
| 85 | NULL, | ||
| 86 | }; | ||
| 87 | |||
| 88 | /* high speed support: */ | ||
| 89 | |||
| 90 | static struct usb_endpoint_descriptor hs_loop_source_desc = { | ||
| 91 | .bLength = USB_DT_ENDPOINT_SIZE, | ||
| 92 | .bDescriptorType = USB_DT_ENDPOINT, | ||
| 93 | |||
| 94 | .bmAttributes = USB_ENDPOINT_XFER_BULK, | ||
| 95 | .wMaxPacketSize = cpu_to_le16(512), | ||
| 96 | }; | ||
| 97 | |||
| 98 | static struct usb_endpoint_descriptor hs_loop_sink_desc = { | ||
| 99 | .bLength = USB_DT_ENDPOINT_SIZE, | ||
| 100 | .bDescriptorType = USB_DT_ENDPOINT, | ||
| 101 | |||
| 102 | .bmAttributes = USB_ENDPOINT_XFER_BULK, | ||
| 103 | .wMaxPacketSize = cpu_to_le16(512), | ||
| 104 | }; | ||
| 105 | |||
| 106 | static struct usb_descriptor_header *hs_loopback_descs[] = { | ||
| 107 | (struct usb_descriptor_header *) &loopback_intf, | ||
| 108 | (struct usb_descriptor_header *) &hs_loop_source_desc, | ||
| 109 | (struct usb_descriptor_header *) &hs_loop_sink_desc, | ||
| 110 | NULL, | ||
| 111 | }; | ||
| 112 | |||
| 113 | /* super speed support: */ | ||
| 114 | |||
| 115 | static struct usb_endpoint_descriptor ss_loop_source_desc = { | ||
| 116 | .bLength = USB_DT_ENDPOINT_SIZE, | ||
| 117 | .bDescriptorType = USB_DT_ENDPOINT, | ||
| 118 | |||
| 119 | .bmAttributes = USB_ENDPOINT_XFER_BULK, | ||
| 120 | .wMaxPacketSize = cpu_to_le16(1024), | ||
| 121 | }; | ||
| 122 | |||
| 123 | static struct usb_ss_ep_comp_descriptor ss_loop_source_comp_desc = { | ||
| 124 | .bLength = USB_DT_SS_EP_COMP_SIZE, | ||
| 125 | .bDescriptorType = USB_DT_SS_ENDPOINT_COMP, | ||
| 126 | .bMaxBurst = 0, | ||
| 127 | .bmAttributes = 0, | ||
| 128 | .wBytesPerInterval = 0, | ||
| 129 | }; | ||
| 130 | |||
| 131 | static struct usb_endpoint_descriptor ss_loop_sink_desc = { | ||
| 132 | .bLength = USB_DT_ENDPOINT_SIZE, | ||
| 133 | .bDescriptorType = USB_DT_ENDPOINT, | ||
| 134 | |||
| 135 | .bmAttributes = USB_ENDPOINT_XFER_BULK, | ||
| 136 | .wMaxPacketSize = cpu_to_le16(1024), | ||
| 137 | }; | ||
| 138 | |||
| 139 | static struct usb_ss_ep_comp_descriptor ss_loop_sink_comp_desc = { | ||
| 140 | .bLength = USB_DT_SS_EP_COMP_SIZE, | ||
| 141 | .bDescriptorType = USB_DT_SS_ENDPOINT_COMP, | ||
| 142 | .bMaxBurst = 0, | ||
| 143 | .bmAttributes = 0, | ||
| 144 | .wBytesPerInterval = 0, | ||
| 145 | }; | ||
| 146 | |||
| 147 | static struct usb_descriptor_header *ss_loopback_descs[] = { | ||
| 148 | (struct usb_descriptor_header *) &loopback_intf, | ||
| 149 | (struct usb_descriptor_header *) &ss_loop_source_desc, | ||
| 150 | (struct usb_descriptor_header *) &ss_loop_source_comp_desc, | ||
| 151 | (struct usb_descriptor_header *) &ss_loop_sink_desc, | ||
| 152 | (struct usb_descriptor_header *) &ss_loop_sink_comp_desc, | ||
| 153 | NULL, | ||
| 154 | }; | ||
| 155 | |||
| 156 | /* function-specific strings: */ | ||
| 157 | |||
| 158 | static struct usb_string strings_loopback[] = { | ||
| 159 | [0].s = "loop input to output", | ||
| 160 | { } /* end of list */ | ||
| 161 | }; | ||
| 162 | |||
| 163 | static struct usb_gadget_strings stringtab_loop = { | ||
| 164 | .language = 0x0409, /* en-us */ | ||
| 165 | .strings = strings_loopback, | ||
| 166 | }; | ||
| 167 | |||
| 168 | static struct usb_gadget_strings *loopback_strings[] = { | ||
| 169 | &stringtab_loop, | ||
| 170 | NULL, | ||
| 171 | }; | ||
| 172 | |||
| 173 | /*-------------------------------------------------------------------------*/ | ||
| 174 | |||
| 175 | static int loopback_bind(struct usb_configuration *c, struct usb_function *f) | ||
| 176 | { | ||
| 177 | struct usb_composite_dev *cdev = c->cdev; | ||
| 178 | struct f_loopback *loop = func_to_loop(f); | ||
| 179 | int id; | ||
| 180 | int ret; | ||
| 181 | |||
| 182 | /* allocate interface ID(s) */ | ||
| 183 | id = usb_interface_id(c, f); | ||
| 184 | if (id < 0) | ||
| 185 | return id; | ||
| 186 | loopback_intf.bInterfaceNumber = id; | ||
| 187 | |||
| 188 | id = usb_string_id(cdev); | ||
| 189 | if (id < 0) | ||
| 190 | return id; | ||
| 191 | strings_loopback[0].id = id; | ||
| 192 | loopback_intf.iInterface = id; | ||
| 193 | |||
| 194 | /* allocate endpoints */ | ||
| 195 | |||
| 196 | loop->in_ep = usb_ep_autoconfig(cdev->gadget, &fs_loop_source_desc); | ||
| 197 | if (!loop->in_ep) { | ||
| 198 | autoconf_fail: | ||
| 199 | ERROR(cdev, "%s: can't autoconfigure on %s\n", | ||
| 200 | f->name, cdev->gadget->name); | ||
| 201 | return -ENODEV; | ||
| 202 | } | ||
| 203 | loop->in_ep->driver_data = cdev; /* claim */ | ||
| 204 | |||
