blob: 25e83ddd5aa7ecaa1c2ec1332f58a40db9ae95a8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * message.c - synchronous message handling
3 */
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/pci.h> /* for scatterlist macros */
6#include <linux/usb.h>
7#include <linux/module.h>
8#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/mm.h>
10#include <linux/timer.h>
11#include <linux/ctype.h>
Clemens Ladischa853a3d2009-04-24 10:12:18 +020012#include <linux/nls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/device.h>
Ralf Baechle11763602007-10-23 20:42:11 +020014#include <linux/scatterlist.h>
Oliver Neukume4c6fb72016-07-14 15:41:30 +020015#include <linux/usb/cdc.h>
Oliver Neukum7ceec1f2007-01-26 14:26:21 +010016#include <linux/usb/quirks.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +020017#include <linux/usb/hcd.h> /* for usbcore internals */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/byteorder.h>
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "usb.h"
21
Alan Sterndf718962008-12-19 10:27:56 -050022static void cancel_async_set_config(struct usb_device *udev);
23
Alan Stern67f5dde2007-07-24 18:23:23 -040024struct api_context {
25 struct completion done;
26 int status;
27};
28
David Howells7d12e782006-10-05 14:55:46 +010029static void usb_api_blocking_completion(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
Alan Stern67f5dde2007-07-24 18:23:23 -040031 struct api_context *ctx = urb->context;
32
33 ctx->status = urb->status;
34 complete(&ctx->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035}
36
37
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020038/*
39 * Starts urb and waits for completion or timeout. Note that this call
40 * is NOT interruptible. Many device driver i/o requests should be
41 * interruptible and therefore these drivers should implement their
42 * own interruptible routines.
43 */
44static int usb_start_wait_urb(struct urb *urb, int timeout, int *actual_length)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -080045{
Alan Stern67f5dde2007-07-24 18:23:23 -040046 struct api_context ctx;
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020047 unsigned long expire;
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -070048 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Alan Stern67f5dde2007-07-24 18:23:23 -040050 init_completion(&ctx.done);
51 urb->context = &ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 urb->actual_length = 0;
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -070053 retval = usb_submit_urb(urb, GFP_NOIO);
54 if (unlikely(retval))
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020055 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020057 expire = timeout ? msecs_to_jiffies(timeout) : MAX_SCHEDULE_TIMEOUT;
Alan Stern67f5dde2007-07-24 18:23:23 -040058 if (!wait_for_completion_timeout(&ctx.done, expire)) {
59 usb_kill_urb(urb);
60 retval = (ctx.status == -ENOENT ? -ETIMEDOUT : ctx.status);
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020061
62 dev_dbg(&urb->dev->dev,
Roel Kluin71d27182009-03-13 12:19:18 +010063 "%s timed out on ep%d%s len=%u/%u\n",
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020064 current->comm,
Alan Stern5e60a162007-07-30 17:07:21 -040065 usb_endpoint_num(&urb->ep->desc),
66 usb_urb_dir_in(urb) ? "in" : "out",
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020067 urb->actual_length,
68 urb->transfer_buffer_length);
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020069 } else
Alan Stern67f5dde2007-07-24 18:23:23 -040070 retval = ctx.status;
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020071out:
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 if (actual_length)
73 *actual_length = urb->actual_length;
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 usb_free_urb(urb);
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -070076 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
79/*-------------------------------------------------------------------*/
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -080080/* returns status (negative) or length (positive) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static int usb_internal_control_msg(struct usb_device *usb_dev,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -080082 unsigned int pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 struct usb_ctrlrequest *cmd,
84 void *data, int len, int timeout)
85{
86 struct urb *urb;
87 int retv;
88 int length;
89
90 urb = usb_alloc_urb(0, GFP_NOIO);
91 if (!urb)
92 return -ENOMEM;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -080093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 usb_fill_control_urb(urb, usb_dev, pipe, (unsigned char *)cmd, data,
95 len, usb_api_blocking_completion, NULL);
96
97 retv = usb_start_wait_urb(urb, timeout, &length);
98 if (retv < 0)
99 return retv;
100 else
101 return length;
102}
103
104/**
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800105 * usb_control_msg - Builds a control urb, sends it off and waits for completion
106 * @dev: pointer to the usb device to send the message to
107 * @pipe: endpoint "pipe" to send the message to
108 * @request: USB message request value
109 * @requesttype: USB message request type value
110 * @value: USB message value
111 * @index: USB message index value
112 * @data: pointer to the data to send
113 * @size: length in bytes of the data to send
114 * @timeout: time in msecs to wait for the message to complete before timing
115 * out (if 0 the wait is forever)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800117 * Context: !in_interrupt ()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800119 * This function sends a simple control message to a specified endpoint and
120 * waits for the message to complete, or timeout.
121 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800122 * Don't use this function from within an interrupt context, like a bottom half
123 * handler. If you need an asynchronous message, or need to send a message
124 * from within interrupt context, use usb_submit_urb().
125 * If a thread in your driver uses this call, make sure your disconnect()
126 * method can wait for it to complete. Since you don't have a handle on the
127 * URB used, you can't cancel the request.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200128 *
129 * Return: If successful, the number of bytes transferred. Otherwise, a negative
130 * error number.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800132int usb_control_msg(struct usb_device *dev, unsigned int pipe, __u8 request,
133 __u8 requesttype, __u16 value, __u16 index, void *data,
134 __u16 size, int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800136 struct usb_ctrlrequest *dr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 int ret;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800138
139 dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 if (!dr)
141 return -ENOMEM;
142
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800143 dr->bRequestType = requesttype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 dr->bRequest = request;
Harvey Harrisonda2bbdc2008-10-29 14:25:51 -0700145 dr->wValue = cpu_to_le16(value);
146 dr->wIndex = cpu_to_le16(index);
147 dr->wLength = cpu_to_le16(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 ret = usb_internal_control_msg(dev, pipe, dr, data, size, timeout);
150
Danilo Krummrichb2708e12018-03-06 09:38:49 +0100151 /* Linger a bit, prior to the next control message. */
152 if (dev->quirks & USB_QUIRK_DELAY_CTRL_MSG)
153 msleep(200);
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 kfree(dr);
156
157 return ret;
158}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600159EXPORT_SYMBOL_GPL(usb_control_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161/**
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700162 * usb_interrupt_msg - Builds an interrupt urb, sends it off and waits for completion
163 * @usb_dev: pointer to the usb device to send the message to
164 * @pipe: endpoint "pipe" to send the message to
165 * @data: pointer to the data to send
166 * @len: length in bytes of the data to send
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800167 * @actual_length: pointer to a location to put the actual length transferred
168 * in bytes
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700169 * @timeout: time in msecs to wait for the message to complete before
170 * timing out (if 0 the wait is forever)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800171 *
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700172 * Context: !in_interrupt ()
173 *
174 * This function sends a simple interrupt message to a specified endpoint and
175 * waits for the message to complete, or timeout.
176 *
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700177 * Don't use this function from within an interrupt context, like a bottom half
178 * handler. If you need an asynchronous message, or need to send a message
179 * from within interrupt context, use usb_submit_urb() If a thread in your
180 * driver uses this call, make sure your disconnect() method can wait for it to
181 * complete. Since you don't have a handle on the URB used, you can't cancel
182 * the request.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200183 *
184 * Return:
185 * If successful, 0. Otherwise a negative error number. The number of actual
Masanari Iidae2278672014-02-18 22:54:36 +0900186 * bytes transferred will be stored in the @actual_length parameter.
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700187 */
188int usb_interrupt_msg(struct usb_device *usb_dev, unsigned int pipe,
189 void *data, int len, int *actual_length, int timeout)
190{
191 return usb_bulk_msg(usb_dev, pipe, data, len, actual_length, timeout);
192}
193EXPORT_SYMBOL_GPL(usb_interrupt_msg);
194
195/**
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800196 * usb_bulk_msg - Builds a bulk urb, sends it off and waits for completion
197 * @usb_dev: pointer to the usb device to send the message to
198 * @pipe: endpoint "pipe" to send the message to
199 * @data: pointer to the data to send
200 * @len: length in bytes of the data to send
201 * @actual_length: pointer to a location to put the actual length transferred
202 * in bytes
203 * @timeout: time in msecs to wait for the message to complete before
204 * timing out (if 0 the wait is forever)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800206 * Context: !in_interrupt ()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800208 * This function sends a simple bulk message to a specified endpoint
209 * and waits for the message to complete, or timeout.
Alan Sternd09d36a2005-09-26 16:22:45 -0400210 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800211 * Don't use this function from within an interrupt context, like a bottom half
212 * handler. If you need an asynchronous message, or need to send a message
213 * from within interrupt context, use usb_submit_urb() If a thread in your
214 * driver uses this call, make sure your disconnect() method can wait for it to
215 * complete. Since you don't have a handle on the URB used, you can't cancel
216 * the request.
217 *
218 * Because there is no usb_interrupt_msg() and no USBDEVFS_INTERRUPT ioctl,
219 * users are forced to abuse this routine by using it to submit URBs for
220 * interrupt endpoints. We will take the liberty of creating an interrupt URB
221 * (with the default interval) if the target is an interrupt endpoint.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200222 *
223 * Return:
224 * If successful, 0. Otherwise a negative error number. The number of actual
Rahul Bedarkar025d4432014-01-04 11:24:41 +0530225 * bytes transferred will be stored in the @actual_length parameter.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200226 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800228int usb_bulk_msg(struct usb_device *usb_dev, unsigned int pipe,
229 void *data, int len, int *actual_length, int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
231 struct urb *urb;
Alan Sternd09d36a2005-09-26 16:22:45 -0400232 struct usb_host_endpoint *ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Matthew Wilcoxfe54b052010-04-30 13:11:29 -0600234 ep = usb_pipe_endpoint(usb_dev, pipe);
Alan Sternd09d36a2005-09-26 16:22:45 -0400235 if (!ep || len < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return -EINVAL;
237
Alan Sternd09d36a2005-09-26 16:22:45 -0400238 urb = usb_alloc_urb(0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (!urb)
240 return -ENOMEM;
241
Alan Sternd09d36a2005-09-26 16:22:45 -0400242 if ((ep->desc.bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
243 USB_ENDPOINT_XFER_INT) {
244 pipe = (pipe & ~(3 << 30)) | (PIPE_INTERRUPT << 30);
245 usb_fill_int_urb(urb, usb_dev, pipe, data, len,
Alan Stern8d062b92007-04-23 17:30:32 -0400246 usb_api_blocking_completion, NULL,
247 ep->desc.bInterval);
Alan Sternd09d36a2005-09-26 16:22:45 -0400248 } else
249 usb_fill_bulk_urb(urb, usb_dev, pipe, data, len,
250 usb_api_blocking_completion, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 return usb_start_wait_urb(urb, timeout, actual_length);
253}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600254EXPORT_SYMBOL_GPL(usb_bulk_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256/*-------------------------------------------------------------------*/
257
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800258static void sg_clean(struct usb_sg_request *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
260 if (io->urbs) {
261 while (io->entries--)
Tülin İzer085528e2013-05-17 10:32:35 +0300262 usb_free_urb(io->urbs[io->entries]);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800263 kfree(io->urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 io->urbs = NULL;
265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 io->dev = NULL;
267}
268
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800269static void sg_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800271 struct usb_sg_request *io = urb->context;
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700272 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800274 spin_lock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 /* In 2.5 we require hcds' endpoint queues not to progress after fault
277 * reports, until the completion callback (this!) returns. That lets
278 * device driver code (like this routine) unlink queued urbs first,
279 * if it needs to, since the HC won't work on them at all. So it's
280 * not possible for page N+1 to overwrite page N, and so on.
281 *
282 * That's only for "hard" faults; "soft" faults (unlinks) sometimes
283 * complete before the HCD can get requests away from hardware,
284 * though never during cleanup after a hard fault.
285 */
286 if (io->status
287 && (io->status != -ECONNRESET
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700288 || status != -ECONNRESET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 && urb->actual_length) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800290 dev_err(io->dev->bus->controller,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 "dev %s ep%d%s scatterlist error %d/%d\n",
292 io->dev->devpath,
Alan Stern5e60a162007-07-30 17:07:21 -0400293 usb_endpoint_num(&urb->ep->desc),
294 usb_urb_dir_in(urb) ? "in" : "out",
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700295 status, io->status);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800296 /* BUG (); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
298
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700299 if (io->status == 0 && status && status != -ECONNRESET) {
300 int i, found, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700302 io->status = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 /* the previous urbs, and this one, completed already.
305 * unlink pending urbs so they won't rx/tx bad data.
306 * careful: unlink can sometimes be synchronous...
307 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800308 spin_unlock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 for (i = 0, found = 0; i < io->entries; i++) {
David Mosberger98b74b02016-03-08 14:42:48 -0700310 if (!io->urbs[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 continue;
312 if (found) {
David Mosberger98b74b02016-03-08 14:42:48 -0700313 usb_block_urb(io->urbs[i]);
Tülin İzer085528e2013-05-17 10:32:35 +0300314 retval = usb_unlink_urb(io->urbs[i]);
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700315 if (retval != -EINPROGRESS &&
316 retval != -ENODEV &&
Alan Sternbcf39852012-03-22 11:00:21 -0400317 retval != -EBUSY &&
318 retval != -EIDRM)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800319 dev_err(&io->dev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 "%s, unlink --> %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800321 __func__, retval);
Tülin İzer085528e2013-05-17 10:32:35 +0300322 } else if (urb == io->urbs[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 found = 1;
324 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800325 spin_lock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 /* on the last completion, signal usb_sg_wait() */
329 io->bytes += urb->actual_length;
330 io->count--;
331 if (!io->count)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800332 complete(&io->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800334 spin_unlock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
337
338/**
339 * usb_sg_init - initializes scatterlist-based bulk/interrupt I/O request
340 * @io: request block being initialized. until usb_sg_wait() returns,
341 * treat this as a pointer to an opaque block of memory,
342 * @dev: the usb device that will send or receive the data
343 * @pipe: endpoint "pipe" used to transfer the data
344 * @period: polling rate for interrupt endpoints, in frames or
345 * (for high speed endpoints) microframes; ignored for bulk
346 * @sg: scatterlist entries
347 * @nents: how many entries in the scatterlist
348 * @length: how many bytes to send from the scatterlist, or zero to
349 * send every byte identified in the list.
350 * @mem_flags: SLAB_* flags affecting memory allocations in this call
351 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200352 * This initializes a scatter/gather request, allocating resources such as
353 * I/O mappings and urb memory (except maybe memory used by USB controller
354 * drivers).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 *
356 * The request must be issued using usb_sg_wait(), which waits for the I/O to
357 * complete (or to be canceled) and then cleans up all resources allocated by
358 * usb_sg_init().
359 *
360 * The request may be canceled with usb_sg_cancel(), either before or after
361 * usb_sg_wait() is called.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200362 *
363 * Return: Zero for success, else a negative errno value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800365int usb_sg_init(struct usb_sg_request *io, struct usb_device *dev,
366 unsigned pipe, unsigned period, struct scatterlist *sg,
367 int nents, size_t length, gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800369 int i;
370 int urb_flags;
Sarah Sharpe04748e2009-04-27 19:59:01 -0700371 int use_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 if (!io || !dev || !sg
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800374 || usb_pipecontrol(pipe)
375 || usb_pipeisoc(pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 || nents <= 0)
377 return -EINVAL;
378
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800379 spin_lock_init(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 io->dev = dev;
381 io->pipe = pipe;
Alan Stern0ba169af2010-05-05 15:26:17 -0400382
383 if (dev->bus->sg_tablesize > 0) {
384 use_sg = true;
385 io->entries = 1;
386 } else {
387 use_sg = false;
388 io->entries = nents;
389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 /* initialize all the urbs we'll use */
Tülin İzera1fefaa2013-05-17 10:33:05 +0300392 io->urbs = kmalloc(io->entries * sizeof(*io->urbs), mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (!io->urbs)
394 goto nomem;
395
Alan Stern0ba169af2010-05-05 15:26:17 -0400396 urb_flags = URB_NO_INTERRUPT;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800397 if (usb_pipein(pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 urb_flags |= URB_SHORT_NOT_OK;
399
Alan Stern0ba169af2010-05-05 15:26:17 -0400400 for_each_sg(sg, sg, io->entries, i) {
401 struct urb *urb;
402 unsigned len;
403
404 urb = usb_alloc_urb(0, mem_flags);
405 if (!urb) {
406 io->entries = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 goto nomem;
408 }
Alan Stern0ba169af2010-05-05 15:26:17 -0400409 io->urbs[i] = urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Alan Stern0ba169af2010-05-05 15:26:17 -0400411 urb->dev = NULL;
412 urb->pipe = pipe;
413 urb->interval = period;
414 urb->transfer_flags = urb_flags;
415 urb->complete = sg_complete;
416 urb->context = io;
417 urb->sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Alan Stern0ba169af2010-05-05 15:26:17 -0400419 if (use_sg) {
420 /* There is no single transfer buffer */
421 urb->transfer_buffer = NULL;
422 urb->num_sgs = nents;
Alan Sternff9c8952010-04-02 13:27:28 -0400423
Alan Stern0ba169af2010-05-05 15:26:17 -0400424 /* A length of zero means transfer the whole sg list */
425 len = length;
426 if (len == 0) {
Alan Stern64d65872010-06-18 10:16:33 -0400427 struct scatterlist *sg2;
428 int j;
429
430 for_each_sg(sg, sg2, nents, j)
431 len += sg2->length;
Sarah Sharpe04748e2009-04-27 19:59:01 -0700432 }
Alan Stern0ba169af2010-05-05 15:26:17 -0400433 } else {
Sarah Sharpe04748e2009-04-27 19:59:01 -0700434 /*
Alan Sternff9c8952010-04-02 13:27:28 -0400435 * Some systems can't use DMA; they use PIO instead.
436 * For their sakes, transfer_buffer is set whenever
437 * possible.
Sarah Sharpe04748e2009-04-27 19:59:01 -0700438 */
Alan Sternff9c8952010-04-02 13:27:28 -0400439 if (!PageHighMem(sg_page(sg)))
Alan Stern0ba169af2010-05-05 15:26:17 -0400440 urb->transfer_buffer = sg_virt(sg);
Pete Zaitcev81bf46f2009-06-11 08:40:39 -0600441 else
Alan Stern0ba169af2010-05-05 15:26:17 -0400442 urb->transfer_buffer = NULL;
Pete Zaitcev81bf46f2009-06-11 08:40:39 -0600443
Alan Sternff9c8952010-04-02 13:27:28 -0400444 len = sg->length;
Sarah Sharpe04748e2009-04-27 19:59:01 -0700445 if (length) {
Dan Carpenteredb2b252011-09-27 09:25:19 +0300446 len = min_t(size_t, len, length);
Sarah Sharpe04748e2009-04-27 19:59:01 -0700447 length -= len;
448 if (length == 0)
449 io->entries = i + 1;
450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
Alan Stern0ba169af2010-05-05 15:26:17 -0400452 urb->transfer_buffer_length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
Alan Stern0ba169af2010-05-05 15:26:17 -0400454 io->urbs[--i]->transfer_flags &= ~URB_NO_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 /* transaction state */
Alan Stern580da342008-08-05 13:05:17 -0400457 io->count = io->entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 io->status = 0;
459 io->bytes = 0;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800460 init_completion(&io->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 return 0;
462
463nomem:
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800464 sg_clean(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return -ENOMEM;
466}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600467EXPORT_SYMBOL_GPL(usb_sg_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469/**
470 * usb_sg_wait - synchronously execute scatter/gather request
471 * @io: request block handle, as initialized with usb_sg_init().
472 * some fields become accessible when this call returns.
473 * Context: !in_interrupt ()
474 *
475 * This function blocks until the specified I/O operation completes. It
476 * leverages the grouping of the related I/O requests to get good transfer
477 * rates, by queueing the requests. At higher speeds, such queuing can
478 * significantly improve USB throughput.
479 *
480 * There are three kinds of completion for this function.
481 * (1) success, where io->status is zero. The number of io->bytes
482 * transferred is as requested.
483 * (2) error, where io->status is a negative errno value. The number
484 * of io->bytes transferred before the error is usually less
485 * than requested, and can be nonzero.
Steven Cole093cf722005-05-03 19:07:24 -0600486 * (3) cancellation, a type of error with status -ECONNRESET that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 * is initiated by usb_sg_cancel().
488 *
489 * When this function returns, all memory allocated through usb_sg_init() or
490 * this call will have been freed. The request block parameter may still be
491 * passed to usb_sg_cancel(), or it may be freed. It could also be
492 * reinitialized and then reused.
493 *
494 * Data Transfer Rates:
495 *
496 * Bulk transfers are valid for full or high speed endpoints.
497 * The best full speed data rate is 19 packets of 64 bytes each
498 * per frame, or 1216 bytes per millisecond.
499 * The best high speed data rate is 13 packets of 512 bytes each
500 * per microframe, or 52 KBytes per millisecond.
501 *
502 * The reason to use interrupt transfers through this API would most likely
503 * be to reserve high speed bandwidth, where up to 24 KBytes per millisecond
504 * could be transferred. That capability is less useful for low or full
505 * speed interrupt endpoints, which allow at most one packet per millisecond,
506 * of at most 8 or 64 bytes (respectively).
Sarah Sharp79abb1a2009-04-27 19:58:26 -0700507 *
508 * It is not necessary to call this function to reserve bandwidth for devices
509 * under an xHCI host controller, as the bandwidth is reserved when the
510 * configuration or interface alt setting is selected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800512void usb_sg_wait(struct usb_sg_request *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800514 int i;
515 int entries = io->entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 /* queue the urbs. */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800518 spin_lock_irq(&io->lock);
Alan Stern8ccef0d2007-06-21 16:26:46 -0400519 i = 0;
520 while (i < entries && !io->status) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800521 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800523 io->urbs[i]->dev = io->dev;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800524 spin_unlock_irq(&io->lock);
David Mosberger98b74b02016-03-08 14:42:48 -0700525
526 retval = usb_submit_urb(io->urbs[i], GFP_NOIO);
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 switch (retval) {
529 /* maybe we retrying will recover */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800530 case -ENXIO: /* hc didn't queue this one */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 case -EAGAIN:
532 case -ENOMEM:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 retval = 0;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800534 yield();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 break;
536
537 /* no error? continue immediately.
538 *
539 * NOTE: to work better with UHCI (4K I/O buffer may
540 * need 3K of TDs) it may be good to limit how many
541 * URBs are queued at once; N milliseconds?
542 */
543 case 0:
Alan Stern8ccef0d2007-06-21 16:26:46 -0400544 ++i;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800545 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 break;
547
548 /* fail any uncompleted urbs */
549 default:
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800550 io->urbs[i]->status = retval;
551 dev_dbg(&io->dev->dev, "%s, submit --> %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800552 __func__, retval);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800553 usb_sg_cancel(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800555 spin_lock_irq(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (retval && (io->status == 0 || io->status == -ECONNRESET))
557 io->status = retval;
558 }
559 io->count -= entries - i;
560 if (io->count == 0)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800561 complete(&io->complete);
562 spin_unlock_irq(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 /* OK, yes, this could be packaged as non-blocking.
565 * So could the submit loop above ... but it's easier to
566 * solve neither problem than to solve both!
567 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800568 wait_for_completion(&io->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800570 sg_clean(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600572EXPORT_SYMBOL_GPL(usb_sg_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574/**
575 * usb_sg_cancel - stop scatter/gather i/o issued by usb_sg_wait()
576 * @io: request block, initialized with usb_sg_init()
577 *
578 * This stops a request after it has been started by usb_sg_wait().
579 * It can also prevents one initialized by usb_sg_init() from starting,
580 * so that call just frees resources allocated to the request.
581 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800582void usb_sg_cancel(struct usb_sg_request *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800584 unsigned long flags;
David Mosberger5f2e5fb2016-03-08 14:42:49 -0700585 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800587 spin_lock_irqsave(&io->lock, flags);
Alan Stern007258f2020-03-28 16:18:11 -0400588 if (io->status || io->count == 0) {
David Mosberger5f2e5fb2016-03-08 14:42:49 -0700589 spin_unlock_irqrestore(&io->lock, flags);
590 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
David Mosberger5f2e5fb2016-03-08 14:42:49 -0700592 /* shut everything down */
593 io->status = -ECONNRESET;
Alan Stern007258f2020-03-28 16:18:11 -0400594 io->count++; /* Keep the request alive until we're done */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800595 spin_unlock_irqrestore(&io->lock, flags);
David Mosberger5f2e5fb2016-03-08 14:42:49 -0700596
597 for (i = io->entries - 1; i >= 0; --i) {
598 usb_block_urb(io->urbs[i]);
599
600 retval = usb_unlink_urb(io->urbs[i]);
601 if (retval != -EINPROGRESS
602 && retval != -ENODEV
603 && retval != -EBUSY
604 && retval != -EIDRM)
605 dev_warn(&io->dev->dev, "%s, unlink --> %d\n",
606 __func__, retval);
607 }
Alan Stern007258f2020-03-28 16:18:11 -0400608
609 spin_lock_irqsave(&io->lock, flags);
610 io->count--;
611 if (!io->count)
612 complete(&io->complete);
613 spin_unlock_irqrestore(&io->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600615EXPORT_SYMBOL_GPL(usb_sg_cancel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617/*-------------------------------------------------------------------*/
618
619/**
620 * usb_get_descriptor - issues a generic GET_DESCRIPTOR request
621 * @dev: the device whose descriptor is being retrieved
622 * @type: the descriptor type (USB_DT_*)
623 * @index: the number of the descriptor
624 * @buf: where to put the descriptor
625 * @size: how big is "buf"?
626 * Context: !in_interrupt ()
627 *
628 * Gets a USB descriptor. Convenience functions exist to simplify
629 * getting some types of descriptors. Use
630 * usb_get_string() or usb_string() for USB_DT_STRING.
631 * Device (USB_DT_DEVICE) and configuration descriptors (USB_DT_CONFIG)
632 * are part of the device structure.
633 * In addition to a number of USB-standard descriptors, some
634 * devices also use class-specific or vendor-specific descriptors.
635 *
636 * This call is synchronous, and may not be used in an interrupt context.
637 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200638 * Return: The number of bytes received on success, or else the status code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 * returned by the underlying usb_control_msg() call.
640 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800641int usb_get_descriptor(struct usb_device *dev, unsigned char type,
642 unsigned char index, void *buf, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
644 int i;
645 int result;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800646
647 memset(buf, 0, size); /* Make sure we parse really received data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649 for (i = 0; i < 3; ++i) {
Alan Sternc39772d2007-08-20 10:45:28 -0400650 /* retry on length 0 or error; some devices are flakey */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
652 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
653 (type << 8) + index, 0, buf, size,
654 USB_CTRL_GET_TIMEOUT);
Alan Sternc39772d2007-08-20 10:45:28 -0400655 if (result <= 0 && result != -ETIMEDOUT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 continue;
657 if (result > 1 && ((u8 *)buf)[1] != type) {
Alan Stern67f5a4b2009-02-20 16:33:08 -0500658 result = -ENODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 continue;
660 }
661 break;
662 }
663 return result;
664}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600665EXPORT_SYMBOL_GPL(usb_get_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667/**
668 * usb_get_string - gets a string descriptor
669 * @dev: the device whose string descriptor is being retrieved
670 * @langid: code for language chosen (from string descriptor zero)
671 * @index: the number of the descriptor
672 * @buf: where to put the string
673 * @size: how big is "buf"?
674 * Context: !in_interrupt ()
675 *
676 * Retrieves a string, encoded using UTF-16LE (Unicode, 16 bits per character,
677 * in little-endian byte order).
678 * The usb_string() function will often be a convenient way to turn
679 * these strings into kernel-printable form.
680 *
681 * Strings may be referenced in device, configuration, interface, or other
682 * descriptors, and could also be used in vendor-specific ways.
683 *
684 * This call is synchronous, and may not be used in an interrupt context.
685 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200686 * Return: The number of bytes received on success, or else the status code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 * returned by the underlying usb_control_msg() call.
688 */
Adrian Bunke266a122005-11-08 21:05:43 +0100689static int usb_get_string(struct usb_device *dev, unsigned short langid,
690 unsigned char index, void *buf, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
692 int i;
693 int result;
694
695 for (i = 0; i < 3; ++i) {
696 /* retry on length 0 or stall; some devices are flakey */
697 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
698 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
699 (USB_DT_STRING << 8) + index, langid, buf, size,
700 USB_CTRL_GET_TIMEOUT);
Alan Stern67f5a4b2009-02-20 16:33:08 -0500701 if (result == 0 || result == -EPIPE)
702 continue;
703 if (result > 1 && ((u8 *) buf)[1] != USB_DT_STRING) {
704 result = -ENODATA;
705 continue;
706 }
707 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709 return result;
710}
711
712static void usb_try_string_workarounds(unsigned char *buf, int *length)
713{
714 int newlength, oldlength = *length;
715
716 for (newlength = 2; newlength + 1 < oldlength; newlength += 2)
717 if (!isprint(buf[newlength]) || buf[newlength + 1])
718 break;
719
720 if (newlength > 2) {
721 buf[0] = newlength;
722 *length = newlength;
723 }
724}
725
726static int usb_string_sub(struct usb_device *dev, unsigned int langid,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800727 unsigned int index, unsigned char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
729 int rc;
730
731 /* Try to read the string descriptor by asking for the maximum
732 * possible number of bytes */
Oliver Neukum7ceec1f2007-01-26 14:26:21 +0100733 if (dev->quirks & USB_QUIRK_STRING_FETCH_255)
734 rc = -EIO;
735 else
736 rc = usb_get_string(dev, langid, index, buf, 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738 /* If that failed try to read the descriptor length, then
739 * ask for just that many bytes */
740 if (rc < 2) {
741 rc = usb_get_string(dev, langid, index, buf, 2);
742 if (rc == 2)
743 rc = usb_get_string(dev, langid, index, buf, buf[0]);
744 }
745
746 if (rc >= 2) {
747 if (!buf[0] && !buf[1])
748 usb_try_string_workarounds(buf, &rc);
749
750 /* There might be extra junk at the end of the descriptor */
751 if (buf[0] < rc)
752 rc = buf[0];
753
754 rc = rc - (rc & 1); /* force a multiple of two */
755 }
756
757 if (rc < 2)
758 rc = (rc < 0 ? rc : -EINVAL);
759
760 return rc;
761}
762
Daniel Mack0cce2ed2009-07-10 11:04:58 +0200763static int usb_get_langid(struct usb_device *dev, unsigned char *tbuf)
764{
765 int err;
766
767 if (dev->have_langid)
768 return 0;
769
770 if (dev->string_langid < 0)
771 return -EPIPE;
772
773 err = usb_string_sub(dev, 0, 0, tbuf);
774
775 /* If the string was reported but is malformed, default to english
776 * (0x0409) */
777 if (err == -ENODATA || (err > 0 && err < 4)) {
778 dev->string_langid = 0x0409;
779 dev->have_langid = 1;
780 dev_err(&dev->dev,
Scot Doyle586af072014-09-25 15:16:48 +0000781 "language id specifier not provided by device, defaulting to English\n");
Daniel Mack0cce2ed2009-07-10 11:04:58 +0200782 return 0;
783 }
784
785 /* In case of all other errors, we assume the device is not able to
786 * deal with strings at all. Set string_langid to -1 in order to
787 * prevent any string to be retrieved from the device */
788 if (err < 0) {
789 dev_err(&dev->dev, "string descriptor 0 read error: %d\n",
790 err);
791 dev->string_langid = -1;
792 return -EPIPE;
793 }
794
795 /* always use the first langid listed */
796 dev->string_langid = tbuf[2] | (tbuf[3] << 8);
797 dev->have_langid = 1;
798 dev_dbg(&dev->dev, "default language 0x%04x\n",
799 dev->string_langid);
800 return 0;
801}
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803/**
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200804 * usb_string - returns UTF-8 version of a string descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 * @dev: the device whose string descriptor is being retrieved
806 * @index: the number of the descriptor
807 * @buf: where to put the string
808 * @size: how big is "buf"?
809 * Context: !in_interrupt ()
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800810 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 * This converts the UTF-16LE encoded strings returned by devices, from
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200812 * usb_get_string_descriptor(), to null-terminated UTF-8 encoded ones
813 * that are more usable in most kernel contexts. Note that this function
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 * chooses strings in the first language supported by the device.
815 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 * This call is synchronous, and may not be used in an interrupt context.
817 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200818 * Return: length of the string (>= 0) or usb_control_msg status (< 0).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 */
820int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
821{
822 unsigned char *tbuf;
823 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 if (dev->state == USB_STATE_SUSPENDED)
826 return -EHOSTUNREACH;
Alan Stern7bbbb952019-04-15 11:51:38 -0400827 if (size <= 0 || !buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 return -EINVAL;
829 buf[0] = 0;
Alan Stern7bbbb952019-04-15 11:51:38 -0400830 if (index <= 0 || index >= 256)
831 return -EINVAL;
Alan Stern74675a52009-04-30 10:08:18 -0400832 tbuf = kmalloc(256, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 if (!tbuf)
834 return -ENOMEM;
835
Daniel Mack0cce2ed2009-07-10 11:04:58 +0200836 err = usb_get_langid(dev, tbuf);
837 if (err < 0)
838 goto errout;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 err = usb_string_sub(dev, dev->string_langid, index, tbuf);
841 if (err < 0)
842 goto errout;
843
844 size--; /* leave room for trailing NULL char in output buffer */
Alan Stern74675a52009-04-30 10:08:18 -0400845 err = utf16s_to_utf8s((wchar_t *) &tbuf[2], (err - 2) / 2,
846 UTF16_LITTLE_ENDIAN, buf, size);
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200847 buf[err] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 if (tbuf[1] != USB_DT_STRING)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800850 dev_dbg(&dev->dev,
851 "wrong descriptor type %02x for string %d (\"%s\")\n",
852 tbuf[1], index, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 errout:
855 kfree(tbuf);
856 return err;
857}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600858EXPORT_SYMBOL_GPL(usb_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200860/* one UTF-8-encoded 16-bit character has at most three bytes */
861#define MAX_USB_STRING_SIZE (127 * 3 + 1)
862
Alan Stern4f62efe2005-10-24 16:24:14 -0400863/**
864 * usb_cache_string - read a string descriptor and cache it for later use
865 * @udev: the device whose string descriptor is being read
866 * @index: the descriptor index
867 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200868 * Return: A pointer to a kmalloc'ed buffer containing the descriptor string,
869 * or %NULL if the index is 0 or the string could not be read.
Alan Stern4f62efe2005-10-24 16:24:14 -0400870 */
871char *usb_cache_string(struct usb_device *udev, int index)
872{
873 char *buf;
874 char *smallbuf = NULL;
875 int len;
876
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800877 if (index <= 0)
878 return NULL;
879
Oliver Neukumacbe2fe2010-01-12 12:32:50 +0100880 buf = kmalloc(MAX_USB_STRING_SIZE, GFP_NOIO);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800881 if (buf) {
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200882 len = usb_string(udev, index, buf, MAX_USB_STRING_SIZE);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800883 if (len > 0) {
Oliver Neukumacbe2fe2010-01-12 12:32:50 +0100884 smallbuf = kmalloc(++len, GFP_NOIO);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800885 if (!smallbuf)
Alan Stern4f62efe2005-10-24 16:24:14 -0400886 return buf;
887 memcpy(smallbuf, buf, len);
888 }
889 kfree(buf);
890 }
891 return smallbuf;
892}
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894/*
895 * usb_get_device_descriptor - (re)reads the device descriptor (usbcore)
896 * @dev: the device whose device descriptor is being updated
897 * @size: how much of the descriptor to read
898 * Context: !in_interrupt ()
899 *
900 * Updates the copy of the device descriptor stored in the device structure,
Laurent Pinchart6ab16a92006-11-07 10:16:25 +0100901 * which dedicates space for this purpose.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 *
903 * Not exported, only for use by the core. If drivers really want to read
904 * the device descriptor directly, they can call usb_get_descriptor() with
905 * type = USB_DT_DEVICE and index = 0.
906 *
907 * This call is synchronous, and may not be used in an interrupt context.
908 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200909 * Return: The number of bytes received on success, or else the status code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 * returned by the underlying usb_control_msg() call.
911 */
912int usb_get_device_descriptor(struct usb_device *dev, unsigned int size)
913{
914 struct usb_device_descriptor *desc;
915 int ret;
916
917 if (size > sizeof(*desc))
918 return -EINVAL;
919 desc = kmalloc(sizeof(*desc), GFP_NOIO);
920 if (!desc)
921 return -ENOMEM;
922
923 ret = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, size);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800924 if (ret >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 memcpy(&dev->descriptor, desc, size);
926 kfree(desc);
927 return ret;
928}
929
930/**
931 * usb_get_status - issues a GET_STATUS call
932 * @dev: the device whose status is being checked
933 * @type: USB_RECIP_*; for device, interface, or endpoint
934 * @target: zero (for device), else interface or endpoint number
935 * @data: pointer to two bytes of bitmap data
936 * Context: !in_interrupt ()
937 *
938 * Returns device, interface, or endpoint status. Normally only of
939 * interest to see if the device is self powered, or has enabled the
940 * remote wakeup facility; or whether a bulk or interrupt endpoint
941 * is halted ("stalled").
942 *
943 * Bits in these status bitmaps are set using the SET_FEATURE request,
944 * and cleared using the CLEAR_FEATURE request. The usb_clear_halt()
945 * function should be used to clear halt ("stall") status.
946 *
947 * This call is synchronous, and may not be used in an interrupt context.
948 *
Alan Stern15b73362013-07-30 15:35:40 -0400949 * Returns 0 and the status value in *@data (in host byte order) on success,
950 * or else the status code from the underlying usb_control_msg() call.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 */
952int usb_get_status(struct usb_device *dev, int type, int target, void *data)
953{
954 int ret;
Alan Stern15b73362013-07-30 15:35:40 -0400955 __le16 *status = kmalloc(sizeof(*status), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957 if (!status)
958 return -ENOMEM;
959
960 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
961 USB_REQ_GET_STATUS, USB_DIR_IN | type, 0, target, status,
962 sizeof(*status), USB_CTRL_GET_TIMEOUT);
963
Alan Stern15b73362013-07-30 15:35:40 -0400964 if (ret == 2) {
965 *(u16 *) data = le16_to_cpu(*status);
966 ret = 0;
967 } else if (ret >= 0) {
968 ret = -EIO;
969 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 kfree(status);
971 return ret;
972}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600973EXPORT_SYMBOL_GPL(usb_get_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975/**
976 * usb_clear_halt - tells device to clear endpoint halt/stall condition
977 * @dev: device whose endpoint is halted
978 * @pipe: endpoint "pipe" being cleared
979 * Context: !in_interrupt ()
980 *
981 * This is used to clear halt conditions for bulk and interrupt endpoints,
982 * as reported by URB completion status. Endpoints that are halted are
983 * sometimes referred to as being "stalled". Such endpoints are unable
984 * to transmit or receive data until the halt status is cleared. Any URBs
985 * queued for such an endpoint should normally be unlinked by the driver
986 * before clearing the halt condition, as described in sections 5.7.5
987 * and 5.8.5 of the USB 2.0 spec.
988 *
989 * Note that control and isochronous endpoints don't halt, although control
990 * endpoints report "protocol stall" (for unsupported requests) using the
991 * same status code used to report a true stall.
992 *
993 * This call is synchronous, and may not be used in an interrupt context.
994 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200995 * Return: Zero on success, or else the status code returned by the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 * underlying usb_control_msg() call.
997 */
998int usb_clear_halt(struct usb_device *dev, int pipe)
999{
1000 int result;
1001 int endp = usb_pipeendpoint(pipe);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001002
1003 if (usb_pipein(pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 endp |= USB_DIR_IN;
1005
1006 /* we don't care if it wasn't halted first. in fact some devices
1007 * (like some ibmcam model 1 units) seem to expect hosts to make
1008 * this request for iso endpoints, which can't halt!
1009 */
1010 result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1011 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT,
1012 USB_ENDPOINT_HALT, endp, NULL, 0,
1013 USB_CTRL_SET_TIMEOUT);
1014
1015 /* don't un-halt or force to DATA0 except on success */
1016 if (result < 0)
1017 return result;
1018
1019 /* NOTE: seems like Microsoft and Apple don't bother verifying
1020 * the clear "took", so some devices could lock up if you check...
1021 * such as the Hagiwara FlashGate DUAL. So we won't bother.
1022 *
1023 * NOTE: make sure the logic here doesn't diverge much from
1024 * the copy in usb-storage, for as long as we need two copies.
1025 */
1026
David Vrabel3444b262009-04-08 17:36:28 +00001027 usb_reset_endpoint(dev, endp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029 return 0;
1030}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001031EXPORT_SYMBOL_GPL(usb_clear_halt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Alan Stern3b23dd62008-12-05 14:10:34 -05001033static int create_intf_ep_devs(struct usb_interface *intf)
1034{
1035 struct usb_device *udev = interface_to_usbdev(intf);
1036 struct usb_host_interface *alt = intf->cur_altsetting;
1037 int i;
1038
1039 if (intf->ep_devs_created || intf->unregistering)
1040 return 0;
1041
1042 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
1043 (void) usb_create_ep_devs(&intf->dev, &alt->endpoint[i], udev);
1044 intf->ep_devs_created = 1;
1045 return 0;
1046}
1047
1048static void remove_intf_ep_devs(struct usb_interface *intf)
1049{
1050 struct usb_host_interface *alt = intf->cur_altsetting;
1051 int i;
1052
1053 if (!intf->ep_devs_created)
1054 return;
1055
1056 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
1057 usb_remove_ep_devs(&alt->endpoint[i]);
1058 intf->ep_devs_created = 0;
1059}
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061/**
1062 * usb_disable_endpoint -- Disable an endpoint by address
1063 * @dev: the device whose endpoint is being disabled
1064 * @epaddr: the endpoint's address. Endpoint number for output,
1065 * endpoint number + USB_DIR_IN for input
Alan Sternddeac4e72009-01-15 17:03:33 -05001066 * @reset_hardware: flag to erase any endpoint state stored in the
1067 * controller hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 *
Alan Sternddeac4e72009-01-15 17:03:33 -05001069 * Disables the endpoint for URB submission and nukes all pending URBs.
1070 * If @reset_hardware is set then also deallocates hcd/hardware state
1071 * for the endpoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 */
Alan Sternddeac4e72009-01-15 17:03:33 -05001073void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr,
1074 bool reset_hardware)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
1076 unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK;
1077 struct usb_host_endpoint *ep;
1078
1079 if (!dev)
1080 return;
1081
1082 if (usb_endpoint_out(epaddr)) {
1083 ep = dev->ep_out[epnum];
Alan Sternddeac4e72009-01-15 17:03:33 -05001084 if (reset_hardware)
1085 dev->ep_out[epnum] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 } else {
1087 ep = dev->ep_in[epnum];
Alan Sternddeac4e72009-01-15 17:03:33 -05001088 if (reset_hardware)
1089 dev->ep_in[epnum] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 }
Alan Sternbdd016b2007-07-30 17:05:22 -04001091 if (ep) {
1092 ep->enabled = 0;
Alan Stern95cf82f2007-09-10 11:33:05 -04001093 usb_hcd_flush_endpoint(dev, ep);
Alan Sternddeac4e72009-01-15 17:03:33 -05001094 if (reset_hardware)
1095 usb_hcd_disable_endpoint(dev, ep);
Alan Sternbdd016b2007-07-30 17:05:22 -04001096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097}
1098
1099/**
David Vrabel3444b262009-04-08 17:36:28 +00001100 * usb_reset_endpoint - Reset an endpoint's state.
1101 * @dev: the device whose endpoint is to be reset
1102 * @epaddr: the endpoint's address. Endpoint number for output,
1103 * endpoint number + USB_DIR_IN for input
1104 *
1105 * Resets any host-side endpoint state such as the toggle bit,
1106 * sequence number or current window.
1107 */
1108void usb_reset_endpoint(struct usb_device *dev, unsigned int epaddr)
1109{
1110 unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK;
1111 struct usb_host_endpoint *ep;
1112
1113 if (usb_endpoint_out(epaddr))
1114 ep = dev->ep_out[epnum];
1115 else
1116 ep = dev->ep_in[epnum];
1117 if (ep)
1118 usb_hcd_reset_endpoint(dev, ep);
1119}
1120EXPORT_SYMBOL_GPL(usb_reset_endpoint);
1121
1122
1123/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 * usb_disable_interface -- Disable all endpoints for an interface
1125 * @dev: the device whose interface is being disabled
1126 * @intf: pointer to the interface descriptor
Alan Sternddeac4e72009-01-15 17:03:33 -05001127 * @reset_hardware: flag to erase any endpoint state stored in the
1128 * controller hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 *
1130 * Disables all the endpoints for the interface's current altsetting.
1131 */
Alan Sternddeac4e72009-01-15 17:03:33 -05001132void usb_disable_interface(struct usb_device *dev, struct usb_interface *intf,
1133 bool reset_hardware)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134{
1135 struct usb_host_interface *alt = intf->cur_altsetting;
1136 int i;
1137
1138 for (i = 0; i < alt->desc.bNumEndpoints; ++i) {
1139 usb_disable_endpoint(dev,
Alan Sternddeac4e72009-01-15 17:03:33 -05001140 alt->endpoint[i].desc.bEndpointAddress,
1141 reset_hardware);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 }
1143}
1144
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001145/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 * usb_disable_device - Disable all the endpoints for a USB device
1147 * @dev: the device whose endpoints are being disabled
1148 * @skip_ep0: 0 to disable endpoint 0, 1 to skip it.
1149 *
1150 * Disables all the device's endpoints, potentially including endpoint 0.
1151 * Deallocates hcd/hardware state for the endpoints (nuking all or most
1152 * pending urbs) and usbcore state for the interfaces, so that usbcore
1153 * must usb_set_configuration() before any interfaces could be used.
1154 */
1155void usb_disable_device(struct usb_device *dev, int skip_ep0)
1156{
1157 int i;
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001158 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 /* getting rid of interfaces will disconnect
1161 * any drivers bound to them (a key side effect)
1162 */
1163 if (dev->actconfig) {
Alan Sternca5c4852011-07-06 17:03:45 -04001164 /*
1165 * FIXME: In order to avoid self-deadlock involving the
1166 * bandwidth_mutex, we have to mark all the interfaces
1167 * before unregistering any of them.
1168 */
1169 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++)
1170 dev->actconfig->interface[i]->unregistering = 1;
1171
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
1173 struct usb_interface *interface;
1174
Alan Stern86d30742005-07-29 12:17:16 -07001175 /* remove this interface if it has been registered */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 interface = dev->actconfig->interface[i];
Daniel Ritzd305ef52005-09-22 00:47:24 -07001177 if (!device_is_registered(&interface->dev))
Alan Stern86d30742005-07-29 12:17:16 -07001178 continue;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001179 dev_dbg(&dev->dev, "unregistering interface %s\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001180 dev_name(&interface->dev));
Alan Stern3b23dd62008-12-05 14:10:34 -05001181 remove_intf_ep_devs(interface);
Alan Stern1a211752008-07-30 11:31:50 -04001182 device_del(&interface->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 }
1184
1185 /* Now that the interfaces are unbound, nobody should
1186 * try to access them.
1187 */
1188 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001189 put_device(&dev->actconfig->interface[i]->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 dev->actconfig->interface[i] = NULL;
1191 }
Sarah Sharpf468f7b2013-10-08 08:28:43 -07001192
Kai-Heng Feng9b916af2019-01-12 03:54:25 +08001193 usb_disable_usb2_hardware_lpm(dev);
Sarah Sharp24971912012-07-05 14:09:30 -07001194 usb_unlocked_disable_lpm(dev);
Sarah Sharpf74631e2012-06-25 12:08:08 -07001195 usb_disable_ltm(dev);
Sarah Sharpf468f7b2013-10-08 08:28:43 -07001196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 dev->actconfig = NULL;
1198 if (dev->state == USB_STATE_CONFIGURED)
1199 usb_set_device_state(dev, USB_STATE_ADDRESS);
1200 }
Alan Stern80f0cf32010-09-30 15:16:23 -04001201
1202 dev_dbg(&dev->dev, "%s nuking %s URBs\n", __func__,
1203 skip_ep0 ? "non-ep0" : "all");
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001204 if (hcd->driver->check_bandwidth) {
1205 /* First pass: Cancel URBs, leave endpoint pointers intact. */
1206 for (i = skip_ep0; i < 16; ++i) {
1207 usb_disable_endpoint(dev, i, false);
1208 usb_disable_endpoint(dev, i + USB_DIR_IN, false);
1209 }
1210 /* Remove endpoints from the host controller internal state */
Alan Stern8963c482012-04-17 15:22:39 -04001211 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001212 usb_hcd_alloc_bandwidth(dev, NULL, NULL, NULL);
Alan Stern8963c482012-04-17 15:22:39 -04001213 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001214 /* Second pass: remove endpoint pointers */
1215 }
Alan Stern80f0cf32010-09-30 15:16:23 -04001216 for (i = skip_ep0; i < 16; ++i) {
1217 usb_disable_endpoint(dev, i, true);
1218 usb_disable_endpoint(dev, i + USB_DIR_IN, true);
1219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220}
1221
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001222/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 * usb_enable_endpoint - Enable an endpoint for USB communications
1224 * @dev: the device whose interface is being enabled
1225 * @ep: the endpoint
David Vrabel3444b262009-04-08 17:36:28 +00001226 * @reset_ep: flag to reset the endpoint state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 *
David Vrabel3444b262009-04-08 17:36:28 +00001228 * Resets the endpoint state if asked, and sets dev->ep_{in,out} pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 * For control endpoints, both the input and output sides are handled.
1230 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001231void usb_enable_endpoint(struct usb_device *dev, struct usb_host_endpoint *ep,
David Vrabel3444b262009-04-08 17:36:28 +00001232 bool reset_ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233{
Alan Sternbdd016b2007-07-30 17:05:22 -04001234 int epnum = usb_endpoint_num(&ep->desc);
1235 int is_out = usb_endpoint_dir_out(&ep->desc);
1236 int is_control = usb_endpoint_xfer_control(&ep->desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
David Vrabel3444b262009-04-08 17:36:28 +00001238 if (reset_ep)
1239 usb_hcd_reset_endpoint(dev, ep);
1240 if (is_out || is_control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 dev->ep_out[epnum] = ep;
David Vrabel3444b262009-04-08 17:36:28 +00001242 if (!is_out || is_control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 dev->ep_in[epnum] = ep;
Alan Sternbdd016b2007-07-30 17:05:22 -04001244 ep->enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245}
1246
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001247/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 * usb_enable_interface - Enable all the endpoints for an interface
1249 * @dev: the device whose interface is being enabled
1250 * @intf: pointer to the interface descriptor
David Vrabel3444b262009-04-08 17:36:28 +00001251 * @reset_eps: flag to reset the endpoints' state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 *
1253 * Enables all the endpoints for the interface's current altsetting.
1254 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001255void usb_enable_interface(struct usb_device *dev,
David Vrabel3444b262009-04-08 17:36:28 +00001256 struct usb_interface *intf, bool reset_eps)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
1258 struct usb_host_interface *alt = intf->cur_altsetting;
1259 int i;
1260
1261 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
David Vrabel3444b262009-04-08 17:36:28 +00001262 usb_enable_endpoint(dev, &alt->endpoint[i], reset_eps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263}
1264
1265/**
1266 * usb_set_interface - Makes a particular alternate setting be current
1267 * @dev: the device whose interface is being updated
1268 * @interface: the interface being updated
1269 * @alternate: the setting being chosen.
1270 * Context: !in_interrupt ()
1271 *
1272 * This is used to enable data transfers on interfaces that may not
1273 * be enabled by default. Not all devices support such configurability.
1274 * Only the driver bound to an interface may change its setting.
1275 *
1276 * Within any given configuration, each interface may have several
1277 * alternative settings. These are often used to control levels of
1278 * bandwidth consumption. For example, the default setting for a high
1279 * speed interrupt endpoint may not send more than 64 bytes per microframe,
1280 * while interrupt transfers of up to 3KBytes per microframe are legal.
1281 * Also, isochronous endpoints may never be part of an
1282 * interface's default setting. To access such bandwidth, alternate
1283 * interface settings must be made current.
1284 *
1285 * Note that in the Linux USB subsystem, bandwidth associated with
1286 * an endpoint in a given alternate setting is not reserved until an URB
1287 * is submitted that needs that bandwidth. Some other operating systems
1288 * allocate bandwidth early, when a configuration is chosen.
1289 *
Mathias Nymanc531c702018-09-03 15:44:16 +03001290 * xHCI reserves bandwidth and configures the alternate setting in
1291 * usb_hcd_alloc_bandwidth(). If it fails the original interface altsetting
1292 * may be disabled. Drivers cannot rely on any particular alternate
1293 * setting being in effect after a failure.
1294 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 * This call is synchronous, and may not be used in an interrupt context.
1296 * Also, drivers must not change altsettings while urbs are scheduled for
1297 * endpoints in that interface; all such urbs must first be completed
1298 * (perhaps forced by unlinking).
1299 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02001300 * Return: Zero on success, or else the status code returned by the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 * underlying usb_control_msg() call.
1302 */
1303int usb_set_interface(struct usb_device *dev, int interface, int alternate)
1304{
1305 struct usb_interface *iface;
1306 struct usb_host_interface *alt;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001307 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
Hans de Goede7a7b5622013-11-08 16:37:26 +01001308 int i, ret, manual = 0;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001309 unsigned int epaddr;
1310 unsigned int pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
1312 if (dev->state == USB_STATE_SUSPENDED)
1313 return -EHOSTUNREACH;
1314
1315 iface = usb_ifnum_to_if(dev, interface);
1316 if (!iface) {
1317 dev_dbg(&dev->dev, "selecting invalid interface %d\n",
1318 interface);
1319 return -EINVAL;
1320 }
Alan Sterne534c5b2011-07-01 16:43:02 -04001321 if (iface->unregistering)
1322 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
1324 alt = usb_altnum_to_altsetting(iface, alternate);
1325 if (!alt) {
Thadeu Lima de Souza Cascardo385f6902010-01-17 19:24:03 -02001326 dev_warn(&dev->dev, "selecting invalid altsetting %d\n",
Greg Kroah-Hartman3b6004f2008-08-14 09:37:34 -07001327 alternate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return -EINVAL;
1329 }
Mathias Nymanc531c702018-09-03 15:44:16 +03001330 /*
1331 * usb3 hosts configure the interface in usb_hcd_alloc_bandwidth,
1332 * including freeing dropped endpoint ring buffers.
1333 * Make sure the interface endpoints are flushed before that
1334 */
1335 usb_disable_interface(dev, iface, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001337 /* Make sure we have enough bandwidth for this alternate interface.
1338 * Remove the current alt setting and add the new alt setting.
1339 */
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001340 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp83060952012-05-02 14:25:52 -07001341 /* Disable LPM, and re-enable it once the new alt setting is installed,
1342 * so that the xHCI driver can recalculate the U1/U2 timeouts.
1343 */
1344 if (usb_disable_lpm(dev)) {
1345 dev_err(&iface->dev, "%s Failed to disable LPM\n.", __func__);
1346 mutex_unlock(hcd->bandwidth_mutex);
1347 return -ENOMEM;
1348 }
Hans de Goede7a7b5622013-11-08 16:37:26 +01001349 /* Changing alt-setting also frees any allocated streams */
1350 for (i = 0; i < iface->cur_altsetting->desc.bNumEndpoints; i++)
1351 iface->cur_altsetting->endpoint[i].streams = 0;
1352
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001353 ret = usb_hcd_alloc_bandwidth(dev, NULL, iface->cur_altsetting, alt);
1354 if (ret < 0) {
1355 dev_info(&dev->dev, "Not enough bandwidth for altsetting %d\n",
1356 alternate);
Sarah Sharp83060952012-05-02 14:25:52 -07001357 usb_enable_lpm(dev);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001358 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001359 return ret;
1360 }
1361
Alan Stern392e1d92008-03-11 10:20:12 -04001362 if (dev->quirks & USB_QUIRK_NO_SET_INTF)
1363 ret = -EPIPE;
1364 else
1365 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
1367 alternate, interface, NULL, 0, 5000);
1368
1369 /* 9.4.10 says devices don't need this and are free to STALL the
1370 * request if the interface only has one alternate setting.
1371 */
1372 if (ret == -EPIPE && iface->num_altsetting == 1) {
1373 dev_dbg(&dev->dev,
1374 "manual set_interface for iface %d, alt %d\n",
1375 interface, alternate);
1376 manual = 1;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001377 } else if (ret < 0) {
1378 /* Re-instate the old alt setting */
1379 usb_hcd_alloc_bandwidth(dev, NULL, alt, iface->cur_altsetting);
Sarah Sharp83060952012-05-02 14:25:52 -07001380 usb_enable_lpm(dev);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001381 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 return ret;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001383 }
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001384 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 /* FIXME drivers shouldn't need to replicate/bugfix the logic here
1387 * when they implement async or easily-killable versions of this or
1388 * other "should-be-internal" functions (like clear_halt).
1389 * should hcd+usbcore postprocess control requests?
1390 */
1391
1392 /* prevent submissions using previous endpoint settings */
Alan Stern3b23dd62008-12-05 14:10:34 -05001393 if (iface->cur_altsetting != alt) {
1394 remove_intf_ep_devs(iface);
Alan Stern0e6c8e82005-10-24 15:33:03 -04001395 usb_remove_sysfs_intf_files(iface);
Alan Stern3b23dd62008-12-05 14:10:34 -05001396 }
Alan Sternddeac4e72009-01-15 17:03:33 -05001397 usb_disable_interface(dev, iface, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 iface->cur_altsetting = alt;
1400
Sarah Sharp83060952012-05-02 14:25:52 -07001401 /* Now that the interface is installed, re-enable LPM. */
1402 usb_unlocked_enable_lpm(dev);
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 /* If the interface only has one altsetting and the device didn't
David Brownella81e7ec2005-04-18 17:39:25 -07001405 * accept the request, we attempt to carry out the equivalent action
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 * by manually clearing the HALT feature for each endpoint in the
1407 * new altsetting.
1408 */
1409 if (manual) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 for (i = 0; i < alt->desc.bNumEndpoints; i++) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001411 epaddr = alt->endpoint[i].desc.bEndpointAddress;
1412 pipe = __create_pipe(dev,
1413 USB_ENDPOINT_NUMBER_MASK & epaddr) |
1414 (usb_endpoint_out(epaddr) ?
1415 USB_DIR_OUT : USB_DIR_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 usb_clear_halt(dev, pipe);
1418 }
1419 }
1420
1421 /* 9.1.1.5: reset toggles for all endpoints in the new altsetting
1422 *
1423 * Note:
1424 * Despite EP0 is always present in all interfaces/AS, the list of
1425 * endpoints from the descriptor does not contain EP0. Due to its
1426 * omnipresence one might expect EP0 being considered "affected" by
1427 * any SetInterface request and hence assume toggles need to be reset.
1428 * However, EP0 toggles are re-synced for every individual transfer
1429 * during the SETUP stage - hence EP0 toggles are "don't care" here.
1430 * (Likewise, EP0 never "halts" on well designed devices.)
1431 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001432 usb_enable_interface(dev, iface, true);
Alan Stern3b23dd62008-12-05 14:10:34 -05001433 if (device_is_registered(&iface->dev)) {
Alan Stern0e6c8e82005-10-24 15:33:03 -04001434 usb_create_sysfs_intf_files(iface);
Alan Stern3b23dd62008-12-05 14:10:34 -05001435 create_intf_ep_devs(iface);
1436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 return 0;
1438}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001439EXPORT_SYMBOL_GPL(usb_set_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
1441/**
Hemant Kumarad400622017-08-18 17:54:58 -07001442 * usb_set_interface_timeout - Makes a particular alternate setting be current
1443 * and allows to set a timout value for this control transfer.
1444 * @dev: the device whose interface is being updated
1445 * @interface: the interface being updated
1446 * @alternate: the setting being chosen.
1447 * @timeout: timeout value in ms (non-zero), before which this transfer should
1448 * complete.
1449 * Context: !in_interrupt ()
1450 *
1451 * This is used to enable data transfers on interfaces that may not
1452 * be enabled by default. Not all devices support such configurability.
1453 * Only the driver bound to an interface may change its setting.
1454 *
1455 * Within any given configuration, each interface may have several
1456 * alternative settings. These are often used to control levels of
1457 * bandwidth consumption. For example, the default setting for a high
1458 * speed interrupt endpoint may not send more than 64 bytes per microframe,
1459 * while interrupt transfers of up to 3KBytes per microframe are legal.
1460 * Also, isochronous endpoints may never be part of an
1461 * interface's default setting. To access such bandwidth, alternate
1462 * interface settings must be made current.
1463 *
1464 * Note that in the Linux USB subsystem, bandwidth associated with
1465 * an endpoint in a given alternate setting is not reserved until an URB
1466 * is submitted that needs that bandwidth. Some other operating systems
1467 * allocate bandwidth early, when a configuration is chosen.
1468 *
1469 * This call is synchronous, and may not be used in an interrupt context.
1470 * Also, drivers must not change altsettings while urbs are scheduled for
1471 * endpoints in that interface; all such urbs must first be completed
1472 * (perhaps forced by unlinking).
1473 *
1474 * Return: Zero on success, or else the status code returned by the
1475 * underlying usb_control_msg() call.
1476 */
1477int usb_set_interface_timeout(struct usb_device *dev, int interface,
1478 int alternate, unsigned long timeout_ms)
1479{
1480 struct usb_interface *iface;
1481 struct usb_host_interface *alt;
1482 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
1483 int i, ret, manual = 0;
1484 unsigned int epaddr;
1485 unsigned int pipe;
1486
1487 if (dev->state == USB_STATE_SUSPENDED)
1488 return -EHOSTUNREACH;
1489
1490 iface = usb_ifnum_to_if(dev, interface);
1491 if (!iface) {
1492 dev_dbg(&dev->dev, "selecting invalid interface %d\n",
1493 interface);
1494 return -EINVAL;
1495 }
1496 if (iface->unregistering)
1497 return -ENODEV;
1498
1499 alt = usb_altnum_to_altsetting(iface, alternate);
1500 if (!alt) {
1501 dev_warn(&dev->dev, "selecting invalid altsetting %d\n",
1502 alternate);
1503 return -EINVAL;
1504 }
1505
1506 /* Make sure we have enough bandwidth for this alternate interface.
1507 * Remove the current alt setting and add the new alt setting.
1508 */
1509 mutex_lock(hcd->bandwidth_mutex);
1510 /* Disable LPM, and re-enable it once the new alt setting is installed,
1511 * so that the xHCI driver can recalculate the U1/U2 timeouts.
1512 */
1513 if (usb_disable_lpm(dev)) {
1514 dev_err(&iface->dev, "%s Failed to disable LPM\n.", __func__);
1515 mutex_unlock(hcd->bandwidth_mutex);
1516 return -ENOMEM;
1517 }
1518 /* Changing alt-setting also frees any allocated streams */
1519 for (i = 0; i < iface->cur_altsetting->desc.bNumEndpoints; i++)
1520 iface->cur_altsetting->endpoint[i].streams = 0;
1521
1522 ret = usb_hcd_alloc_bandwidth(dev, NULL, iface->cur_altsetting, alt);
1523 if (ret < 0) {
1524 dev_info(&dev->dev, "Not enough bandwidth for altsetting %d\n",
1525 alternate);
1526 usb_enable_lpm(dev);
1527 mutex_unlock(hcd->bandwidth_mutex);
1528 return ret;
1529 }
1530
1531 if (dev->quirks & USB_QUIRK_NO_SET_INTF)
1532 ret = -EPIPE;
1533 else
1534 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1535 USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
1536 alternate, interface, NULL, 0, timeout_ms);
1537
1538 /* 9.4.10 says devices don't need this and are free to STALL the
1539 * request if the interface only has one alternate setting.
1540 */
1541 if (ret == -EPIPE && iface->num_altsetting == 1) {
1542 dev_dbg(&dev->dev,
1543 "manual set_interface for iface %d, alt %d\n",
1544 interface, alternate);
1545 manual = 1;
1546 } else if (ret < 0) {
1547 /* Re-instate the old alt setting */
1548 usb_hcd_alloc_bandwidth(dev, NULL, alt, iface->cur_altsetting);
1549 usb_enable_lpm(dev);
1550 mutex_unlock(hcd->bandwidth_mutex);
1551 return ret;
1552 }
1553 mutex_unlock(hcd->bandwidth_mutex);
1554
1555 /* FIXME drivers shouldn't need to replicate/bugfix the logic here
1556 * when they implement async or easily-killable versions of this or
1557 * other "should-be-internal" functions (like clear_halt).
1558 * should hcd+usbcore postprocess control requests?
1559 */
1560
1561 /* prevent submissions using previous endpoint settings */
1562 if (iface->cur_altsetting != alt) {
1563 remove_intf_ep_devs(iface);
1564 usb_remove_sysfs_intf_files(iface);
1565 }
1566 usb_disable_interface(dev, iface, true);
1567
1568 iface->cur_altsetting = alt;
1569
1570 /* Now that the interface is installed, re-enable LPM. */
1571 usb_unlocked_enable_lpm(dev);
1572
1573 /* If the interface only has one altsetting and the device didn't
1574 * accept the request, we attempt to carry out the equivalent action
1575 * by manually clearing the HALT feature for each endpoint in the
1576 * new altsetting.
1577 */
1578 if (manual) {
1579 for (i = 0; i < alt->desc.bNumEndpoints; i++) {
1580 epaddr = alt->endpoint[i].desc.bEndpointAddress;
1581 pipe = __create_pipe(dev,
1582 USB_ENDPOINT_NUMBER_MASK & epaddr) |
1583 (usb_endpoint_out(epaddr) ?
1584 USB_DIR_OUT : USB_DIR_IN);
1585
1586 usb_clear_halt(dev, pipe);
1587 }
1588 }
1589
1590 /* 9.1.1.5: reset toggles for all endpoints in the new altsetting
1591 *
1592 * Note:
1593 * Despite EP0 is always present in all interfaces/AS, the list of
1594 * endpoints from the descriptor does not contain EP0. Due to its
1595 * omnipresence one might expect EP0 being considered "affected" by
1596 * any SetInterface request and hence assume toggles need to be reset.
1597 * However, EP0 toggles are re-synced for every individual transfer
1598 * during the SETUP stage - hence EP0 toggles are "don't care" here.
1599 * (Likewise, EP0 never "halts" on well designed devices.)
1600 */
1601 usb_enable_interface(dev, iface, true);
1602 if (device_is_registered(&iface->dev)) {
1603 usb_create_sysfs_intf_files(iface);
1604 create_intf_ep_devs(iface);
1605 }
1606 return 0;
1607}
1608EXPORT_SYMBOL(usb_set_interface_timeout);
1609
1610/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 * usb_reset_configuration - lightweight device reset
1612 * @dev: the device whose configuration is being reset
1613 *
1614 * This issues a standard SET_CONFIGURATION request to the device using
1615 * the current configuration. The effect is to reset most USB-related
1616 * state in the device, including interface altsettings (reset to zero),
David Vrabel3444b262009-04-08 17:36:28 +00001617 * endpoint halts (cleared), and endpoint state (only for bulk and interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 * endpoints). Other usbcore state is unchanged, including bindings of
1619 * usb device drivers to interfaces.
1620 *
1621 * Because this affects multiple interfaces, avoid using this with composite
1622 * (multi-interface) devices. Instead, the driver for each interface may
David Brownella81e7ec2005-04-18 17:39:25 -07001623 * use usb_set_interface() on the interfaces it claims. Be careful though;
1624 * some devices don't support the SET_INTERFACE request, and others won't
David Vrabel3444b262009-04-08 17:36:28 +00001625 * reset all the interface state (notably endpoint state). Resetting the whole
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 * configuration would affect other drivers' interfaces.
1627 *
1628 * The caller must own the device lock.
1629 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02001630 * Return: Zero on success, else a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 */
1632int usb_reset_configuration(struct usb_device *dev)
1633{
1634 int i, retval;
1635 struct usb_host_config *config;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001636 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
1638 if (dev->state == USB_STATE_SUSPENDED)
1639 return -EHOSTUNREACH;
1640
1641 /* caller must have locked the device and must own
1642 * the usb bus readlock (so driver bindings are stable);
1643 * calls during probe() are fine
1644 */
1645
1646 for (i = 1; i < 16; ++i) {
Alan Sternddeac4e72009-01-15 17:03:33 -05001647 usb_disable_endpoint(dev, i, true);
1648 usb_disable_endpoint(dev, i + USB_DIR_IN, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 }
1650
1651 config = dev->actconfig;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001652 retval = 0;
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001653 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp83060952012-05-02 14:25:52 -07001654 /* Disable LPM, and re-enable it once the configuration is reset, so
1655 * that the xHCI driver can recalculate the U1/U2 timeouts.
1656 */
1657 if (usb_disable_lpm(dev)) {
1658 dev_err(&dev->dev, "%s Failed to disable LPM\n.", __func__);
1659 mutex_unlock(hcd->bandwidth_mutex);
1660 return -ENOMEM;
1661 }
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001662 /* Make sure we have enough bandwidth for each alternate setting 0 */
1663 for (i = 0; i < config->desc.bNumInterfaces; i++) {
1664 struct usb_interface *intf = config->interface[i];
1665 struct usb_host_interface *alt;
1666
1667 alt = usb_altnum_to_altsetting(intf, 0);
1668 if (!alt)
1669 alt = &intf->altsetting[0];
1670 if (alt != intf->cur_altsetting)
1671 retval = usb_hcd_alloc_bandwidth(dev, NULL,
1672 intf->cur_altsetting, alt);
1673 if (retval < 0)
1674 break;
1675 }
1676 /* If not, reinstate the old alternate settings */
1677 if (retval < 0) {
1678reset_old_alts:
Roel Kluine4a3d942010-02-18 02:36:23 +01001679 for (i--; i >= 0; i--) {
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001680 struct usb_interface *intf = config->interface[i];
1681 struct usb_host_interface *alt;
1682
1683 alt = usb_altnum_to_altsetting(intf, 0);
1684 if (!alt)
1685 alt = &intf->altsetting[0];
1686 if (alt != intf->cur_altsetting)
1687 usb_hcd_alloc_bandwidth(dev, NULL,
1688 alt, intf->cur_altsetting);
1689 }
Sarah Sharp83060952012-05-02 14:25:52 -07001690 usb_enable_lpm(dev);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001691 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001692 return retval;
1693 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1695 USB_REQ_SET_CONFIGURATION, 0,
1696 config->desc.bConfigurationValue, 0,
1697 NULL, 0, USB_CTRL_SET_TIMEOUT);
Alan Stern0e6c8e82005-10-24 15:33:03 -04001698 if (retval < 0)
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001699 goto reset_old_alts;
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001700 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 /* re-init hc/hcd interface/endpoint state */
1703 for (i = 0; i < config->desc.bNumInterfaces; i++) {
1704 struct usb_interface *intf = config->interface[i];
1705 struct usb_host_interface *alt;
1706
1707 alt = usb_altnum_to_altsetting(intf, 0);
1708
1709 /* No altsetting 0? We'll assume the first altsetting.
1710 * We could use a GetInterface call, but if a device is
1711 * so non-compliant that it doesn't have altsetting 0
1712 * then I wouldn't trust its reply anyway.
1713 */
1714 if (!alt)
1715 alt = &intf->altsetting[0];
1716
Alan Stern3b23dd62008-12-05 14:10:34 -05001717 if (alt != intf->cur_altsetting) {
1718 remove_intf_ep_devs(intf);
1719 usb_remove_sysfs_intf_files(intf);
1720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 intf->cur_altsetting = alt;
Alan Stern2caf7fc2008-12-31 11:31:33 -05001722 usb_enable_interface(dev, intf, true);
Alan Stern3b23dd62008-12-05 14:10:34 -05001723 if (device_is_registered(&intf->dev)) {
Alan Stern0e6c8e82005-10-24 15:33:03 -04001724 usb_create_sysfs_intf_files(intf);
Alan Stern3b23dd62008-12-05 14:10:34 -05001725 create_intf_ep_devs(intf);
1726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 }
Sarah Sharp83060952012-05-02 14:25:52 -07001728 /* Now that the interfaces are installed, re-enable LPM. */
1729 usb_unlocked_enable_lpm(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 return 0;
1731}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001732EXPORT_SYMBOL_GPL(usb_reset_configuration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Greg Kroah-Hartmanb0e396e2007-08-02 22:44:27 -06001734static void usb_release_interface(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735{
1736 struct usb_interface *intf = to_usb_interface(dev);
1737 struct usb_interface_cache *intfc =
1738 altsetting_to_usb_interface_cache(intf->altsetting);
1739
1740 kref_put(&intfc->ref, usb_release_interface_cache);
Alan Stern524134d2015-01-21 14:02:43 -05001741 usb_put_dev(interface_to_usbdev(intf));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 kfree(intf);
1743}
1744
Stefan Kochb3910ce2015-08-25 21:10:08 +02001745/*
1746 * usb_deauthorize_interface - deauthorize an USB interface
1747 *
1748 * @intf: USB interface structure
1749 */
1750void usb_deauthorize_interface(struct usb_interface *intf)
1751{
1752 struct device *dev = &intf->dev;
1753
1754 device_lock(dev->parent);
1755
1756 if (intf->authorized) {
1757 device_lock(dev);
1758 intf->authorized = 0;
1759 device_unlock(dev);
1760
1761 usb_forced_unbind_intf(intf);
1762 }
1763
1764 device_unlock(dev->parent);
1765}
1766
1767/*
1768 * usb_authorize_interface - authorize an USB interface
1769 *
1770 * @intf: USB interface structure
1771 */
1772void usb_authorize_interface(struct usb_interface *intf)
1773{
1774 struct device *dev = &intf->dev;
1775
1776 if (!intf->authorized) {
1777 device_lock(dev);
1778 intf->authorized = 1; /* authorize interface */
1779 device_unlock(dev);
1780 }
1781}
1782
Kay Sievers7eff2e72007-08-14 15:15:12 +02001783static int usb_if_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001784{
1785 struct usb_device *usb_dev;
1786 struct usb_interface *intf;
1787 struct usb_host_interface *alt;
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001788
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001789 intf = to_usb_interface(dev);
1790 usb_dev = interface_to_usbdev(intf);
1791 alt = intf->cur_altsetting;
1792
Kay Sievers7eff2e72007-08-14 15:15:12 +02001793 if (add_uevent_var(env, "INTERFACE=%d/%d/%d",
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001794 alt->desc.bInterfaceClass,
1795 alt->desc.bInterfaceSubClass,
1796 alt->desc.bInterfaceProtocol))
1797 return -ENOMEM;
1798
Kay Sievers7eff2e72007-08-14 15:15:12 +02001799 if (add_uevent_var(env,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001800 "MODALIAS=usb:"
Bjørn Mork81df2d52012-05-18 21:27:43 +02001801 "v%04Xp%04Xd%04Xdc%02Xdsc%02Xdp%02Xic%02Xisc%02Xip%02Xin%02X",
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001802 le16_to_cpu(usb_dev->descriptor.idVendor),
1803 le16_to_cpu(usb_dev->descriptor.idProduct),
1804 le16_to_cpu(usb_dev->descriptor.bcdDevice),
1805 usb_dev->descriptor.bDeviceClass,
1806 usb_dev->descriptor.bDeviceSubClass,
1807 usb_dev->descriptor.bDeviceProtocol,
1808 alt->desc.bInterfaceClass,
1809 alt->desc.bInterfaceSubClass,
Bjørn Mork81df2d52012-05-18 21:27:43 +02001810 alt->desc.bInterfaceProtocol,
1811 alt->desc.bInterfaceNumber))
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001812 return -ENOMEM;
1813
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001814 return 0;
1815}
1816
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001817struct device_type usb_if_device_type = {
1818 .name = "usb_interface",
1819 .release = usb_release_interface,
1820 .uevent = usb_if_uevent,
1821};
1822
Craig W. Nadler165fe972007-06-15 23:14:35 -04001823static struct usb_interface_assoc_descriptor *find_iad(struct usb_device *dev,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001824 struct usb_host_config *config,
1825 u8 inum)
Craig W. Nadler165fe972007-06-15 23:14:35 -04001826{
1827 struct usb_interface_assoc_descriptor *retval = NULL;
1828 struct usb_interface_assoc_descriptor *intf_assoc;
1829 int first_intf;
1830 int last_intf;
1831 int i;
1832
1833 for (i = 0; (i < USB_MAXIADS && config->intf_assoc[i]); i++) {
1834 intf_assoc = config->intf_assoc[i];
1835 if (intf_assoc->bInterfaceCount == 0)
1836 continue;
1837
1838 first_intf = intf_assoc->bFirstInterface;
1839 last_intf = first_intf + (intf_assoc->bInterfaceCount - 1);
1840 if (inum >= first_intf && inum <= last_intf) {
1841 if (!retval)
1842 retval = intf_assoc;
1843 else
1844 dev_err(&dev->dev, "Interface #%d referenced"
1845 " by multiple IADs\n", inum);
1846 }
1847 }
1848
1849 return retval;
1850}
1851
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001852
1853/*
1854 * Internal function to queue a device reset
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001855 * See usb_queue_reset_device() for more details
1856 */
Felipe Balbi09e81f32009-12-04 15:47:44 +02001857static void __usb_queue_reset_device(struct work_struct *ws)
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001858{
1859 int rc;
1860 struct usb_interface *iface =
1861 container_of(ws, struct usb_interface, reset_ws);
1862 struct usb_device *udev = interface_to_usbdev(iface);
1863
1864 rc = usb_lock_device_for_reset(udev, iface);
1865 if (rc >= 0) {
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001866 usb_reset_device(udev);
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001867 usb_unlock_device(udev);
1868 }
Alan Stern524134d2015-01-21 14:02:43 -05001869 usb_put_intf(iface); /* Undo _get_ in usb_queue_reset_device() */
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001870}
1871
1872
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873/*
1874 * usb_set_configuration - Makes a particular device setting be current
1875 * @dev: the device whose configuration is being updated
1876 * @configuration: the configuration being chosen.
1877 * Context: !in_interrupt(), caller owns the device lock
1878 *
1879 * This is used to enable non-default device modes. Not all devices
1880 * use this kind of configurability; many devices only have one
1881 * configuration.
1882 *
Alan Stern3f141e22007-02-08 16:40:43 -05001883 * @configuration is the value of the configuration to be installed.
1884 * According to the USB spec (e.g. section 9.1.1.5), configuration values
1885 * must be non-zero; a value of zero indicates that the device in
1886 * unconfigured. However some devices erroneously use 0 as one of their
1887 * configuration values. To help manage such devices, this routine will
1888 * accept @configuration = -1 as indicating the device should be put in
1889 * an unconfigured state.
1890 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 * USB device configurations may affect Linux interoperability,
1892 * power consumption and the functionality available. For example,
1893 * the default configuration is limited to using 100mA of bus power,
1894 * so that when certain device functionality requires more power,
1895 * and the device is bus powered, that functionality should be in some
1896 * non-default device configuration. Other device modes may also be
1897 * reflected as configuration options, such as whether two ISDN
1898 * channels are available independently; and choosing between open
1899 * standard device protocols (like CDC) or proprietary ones.
1900 *
Inaky Perez-Gonzalez16bbab22007-07-31 20:34:01 -07001901 * Note that a non-authorized device (dev->authorized == 0) will only
1902 * be put in unconfigured mode.
1903 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 * Note that USB has an additional level of device configurability,
1905 * associated with interfaces. That configurability is accessed using
1906 * usb_set_interface().
1907 *
1908 * This call is synchronous. The calling context must be able to sleep,
1909 * must own the device lock, and must not hold the driver model's USB
Ming Lei6d243e52008-06-17 23:24:08 +08001910 * bus mutex; usb interface driver probe() methods cannot use this routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 *
1912 * Returns zero on success, or else the status code returned by the
Steven Cole093cf722005-05-03 19:07:24 -06001913 * underlying call that failed. On successful completion, each interface
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 * in the original device configuration has been destroyed, and each one
1915 * in the new configuration has been probed by all relevant usb device
1916 * drivers currently known to the kernel.
1917 */
1918int usb_set_configuration(struct usb_device *dev, int configuration)
1919{
1920 int i, ret;
1921 struct usb_host_config *cp = NULL;
1922 struct usb_interface **new_interfaces = NULL;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001923 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 int n, nintf;
1925
Inaky Perez-Gonzalez16bbab22007-07-31 20:34:01 -07001926 if (dev->authorized == 0 || configuration == -1)
Alan Stern3f141e22007-02-08 16:40:43 -05001927 configuration = 0;
1928 else {
1929 for (i = 0; i < dev->descriptor.bNumConfigurations; i++) {
1930 if (dev->config[i].desc.bConfigurationValue ==
1931 configuration) {
1932 cp = &dev->config[i];
1933 break;
1934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 }
1936 }
1937 if ((!cp && configuration != 0))
1938 return -EINVAL;
1939
1940 /* The USB spec says configuration 0 means unconfigured.
1941 * But if a device includes a configuration numbered 0,
1942 * we will accept it as a correctly configured state.
Alan Stern3f141e22007-02-08 16:40:43 -05001943 * Use -1 if you really want to unconfigure the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 */
1945 if (cp && configuration == 0)
1946 dev_warn(&dev->dev, "config 0 descriptor??\n");
1947
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 /* Allocate memory for new interfaces before doing anything else,
1949 * so that if we run out then nothing will have changed. */
1950 n = nintf = 0;
1951 if (cp) {
1952 nintf = cp->desc.bNumInterfaces;
1953 new_interfaces = kmalloc(nintf * sizeof(*new_interfaces),
Oliver Neukumacbe2fe2010-01-12 12:32:50 +01001954 GFP_NOIO);
Wolfram Sang93fab792016-08-25 19:39:00 +02001955 if (!new_interfaces)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
1958 for (; n < nintf; ++n) {
Alan Stern0a1ef3b2005-10-24 15:38:24 -04001959 new_interfaces[n] = kzalloc(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 sizeof(struct usb_interface),
Oliver Neukumacbe2fe2010-01-12 12:32:50 +01001961 GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 if (!new_interfaces[n]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 ret = -ENOMEM;
1964free_interfaces:
1965 while (--n >= 0)
1966 kfree(new_interfaces[n]);
1967 kfree(new_interfaces);
1968 return ret;
1969 }
1970 }
Alan Stern6ad07122006-06-01 13:59:16 -04001971
Sebastian Andrzej Siewior8d8479d2012-12-18 15:25:46 +01001972 i = dev->bus_mA - usb_get_max_power(dev, cp);
Alan Stern6ad07122006-06-01 13:59:16 -04001973 if (i < 0)
1974 dev_warn(&dev->dev, "new config #%d exceeds power "
1975 "limit by %dmA\n",
1976 configuration, -i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 }
1978
Alan Stern01d883d2006-08-30 15:47:18 -04001979 /* Wake up the device so we can send it the Set-Config request */
Alan Stern94fcda12006-11-20 11:38:46 -05001980 ret = usb_autoresume_device(dev);
Alan Stern01d883d2006-08-30 15:47:18 -04001981 if (ret)
1982 goto free_interfaces;
1983
Thadeu Lima de Souza Cascardo07919712010-08-28 03:06:29 -03001984 /* if it's already configured, clear out old state first.
1985 * getting rid of old interfaces means unbinding their drivers.
1986 */
1987 if (dev->state != USB_STATE_ADDRESS)
1988 usb_disable_device(dev, 1); /* Skip ep0 */
1989
1990 /* Get rid of pending async Set-Config requests for this device */
1991 cancel_async_set_config(dev);
1992
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001993 /* Make sure we have bandwidth (and available HCD resources) for this
1994 * configuration. Remove endpoints from the schedule if we're dropping
1995 * this configuration to set configuration 0. After this point, the
1996 * host controller will not allow submissions to dropped endpoints. If
1997 * this call fails, the device state is unchanged.
1998 */
Alan Stern8963c482012-04-17 15:22:39 -04001999 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp83060952012-05-02 14:25:52 -07002000 /* Disable LPM, and re-enable it once the new configuration is
2001 * installed, so that the xHCI driver can recalculate the U1/U2
2002 * timeouts.
2003 */
Sarah Sharp9cf65992012-07-03 23:22:38 -07002004 if (dev->actconfig && usb_disable_lpm(dev)) {
Sarah Sharp83060952012-05-02 14:25:52 -07002005 dev_err(&dev->dev, "%s Failed to disable LPM\n.", __func__);
2006 mutex_unlock(hcd->bandwidth_mutex);
Sachin Kamatc058f7a2012-11-21 11:01:19 +05302007 ret = -ENOMEM;
2008 goto free_interfaces;
Sarah Sharp83060952012-05-02 14:25:52 -07002009 }
Sarah Sharp3f0479e2009-12-03 09:44:36 -08002010 ret = usb_hcd_alloc_bandwidth(dev, cp, NULL, NULL);
Sarah Sharp79abb1a2009-04-27 19:58:26 -07002011 if (ret < 0) {
Sarah Sharp9cf65992012-07-03 23:22:38 -07002012 if (dev->actconfig)
2013 usb_enable_lpm(dev);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07002014 mutex_unlock(hcd->bandwidth_mutex);
Thadeu Lima de Souza Cascardo07919712010-08-28 03:06:29 -03002015 usb_autosuspend_device(dev);
Sarah Sharp79abb1a2009-04-27 19:58:26 -07002016 goto free_interfaces;
2017 }
2018
Alan Stern36caff52012-11-07 10:31:30 -05002019 /*
2020 * Initialize the new interface structures and the
Alan Stern6ad07122006-06-01 13:59:16 -04002021 * hc/hcd/usbcore interface/endpoint state.
2022 */
2023 for (i = 0; i < nintf; ++i) {
2024 struct usb_interface_cache *intfc;
2025 struct usb_interface *intf;
2026 struct usb_host_interface *alt;
2027
2028 cp->interface[i] = intf = new_interfaces[i];
2029 intfc = cp->intf_cache[i];
2030 intf->altsetting = intfc->altsetting;
2031 intf->num_altsetting = intfc->num_altsetting;
Stefan Koch6b2bd3c2015-08-25 21:10:06 +02002032 intf->authorized = !!HCD_INTF_AUTHORIZED(hcd);
Alan Stern6ad07122006-06-01 13:59:16 -04002033 kref_get(&intfc->ref);
2034
2035 alt = usb_altnum_to_altsetting(intf, 0);
2036
2037 /* No altsetting 0? We'll assume the first altsetting.
2038 * We could use a GetInterface call, but if a device is
2039 * so non-compliant that it doesn't have altsetting 0
2040 * then I wouldn't trust its reply anyway.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 */
Alan Stern6ad07122006-06-01 13:59:16 -04002042 if (!alt)
2043 alt = &intf->altsetting[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Daniel Mackb3a3dd02012-06-12 20:23:52 +02002045 intf->intf_assoc =
2046 find_iad(dev, cp, alt->desc.bInterfaceNumber);
Alan Stern6ad07122006-06-01 13:59:16 -04002047 intf->cur_altsetting = alt;
Alan Stern2caf7fc2008-12-31 11:31:33 -05002048 usb_enable_interface(dev, intf, true);
Alan Stern6ad07122006-06-01 13:59:16 -04002049 intf->dev.parent = &dev->dev;
2050 intf->dev.driver = NULL;
2051 intf->dev.bus = &usb_bus_type;
Kay Sievers9f8b17e2007-03-13 15:59:31 +01002052 intf->dev.type = &usb_if_device_type;
Alan Stern2e5f10e2008-04-30 15:37:19 -04002053 intf->dev.groups = usb_interface_groups;
Roger Quadrosb44bbc42016-09-13 11:16:03 +03002054 /*
2055 * Please refer to usb_alloc_dev() to see why we set
2056 * dma_mask and dma_pfn_offset.
2057 */
Alan Stern6ad07122006-06-01 13:59:16 -04002058 intf->dev.dma_mask = dev->dev.dma_mask;
Roger Quadrosb44bbc42016-09-13 11:16:03 +03002059 intf->dev.dma_pfn_offset = dev->dev.dma_pfn_offset;
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08002060 INIT_WORK(&intf->reset_ws, __usb_queue_reset_device);
Alan Stern0026e002010-09-21 15:01:53 -04002061 intf->minor = -1;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08002062 device_initialize(&intf->dev);
Ming Lei63defa72010-11-15 15:56:54 -05002063 pm_runtime_no_callbacks(&intf->dev);
Kay Sievers0031a062008-05-02 06:02:41 +02002064 dev_set_name(&intf->dev, "%d-%s:%d.%d",
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08002065 dev->bus->busnum, dev->devpath,
2066 configuration, alt->desc.bInterfaceNumber);
Alan Stern524134d2015-01-21 14:02:43 -05002067 usb_get_dev(dev);
Alan Stern6ad07122006-06-01 13:59:16 -04002068 }
2069 kfree(new_interfaces);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Alan Stern36caff52012-11-07 10:31:30 -05002071 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
2072 USB_REQ_SET_CONFIGURATION, 0, configuration, 0,
2073 NULL, 0, USB_CTRL_SET_TIMEOUT);
2074 if (ret < 0 && cp) {
2075 /*
2076 * All the old state is gone, so what else can we do?
2077 * The device is probably useless now anyway.
2078 */
2079 usb_hcd_alloc_bandwidth(dev, NULL, NULL, NULL);
2080 for (i = 0; i < nintf; ++i) {
2081 usb_disable_interface(dev, cp->interface[i], true);
2082 put_device(&cp->interface[i]->dev);
2083 cp->interface[i] = NULL;
2084 }
2085 cp = NULL;
2086 }
2087
2088 dev->actconfig = cp;
2089 mutex_unlock(hcd->bandwidth_mutex);
2090
2091 if (!cp) {
2092 usb_set_device_state(dev, USB_STATE_ADDRESS);
2093
2094 /* Leave LPM disabled while the device is unconfigured. */
2095 usb_autosuspend_device(dev);
2096 return ret;
2097 }
2098 usb_set_device_state(dev, USB_STATE_CONFIGURED);
2099
Alan Stern1662e3a2009-03-18 14:28:53 -04002100 if (cp->string == NULL &&
2101 !(dev->quirks & USB_QUIRK_CONFIG_INTF_STRINGS))
Alan Stern6ad07122006-06-01 13:59:16 -04002102 cp->string = usb_cache_string(dev, cp->desc.iConfiguration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Sarah Sharp83060952012-05-02 14:25:52 -07002104 /* Now that the interfaces are installed, re-enable LPM. */
2105 usb_unlocked_enable_lpm(dev);
Sarah Sharpf74631e2012-06-25 12:08:08 -07002106 /* Enable LTM if it was turned off by usb_disable_device. */
2107 usb_enable_ltm(dev);
Sarah Sharp83060952012-05-02 14:25:52 -07002108
Alan Stern6ad07122006-06-01 13:59:16 -04002109 /* Now that all the interfaces are set up, register them
2110 * to trigger binding of drivers to interfaces. probe()
2111 * routines may install different altsettings and may
2112 * claim() any interfaces not yet bound. Many class drivers
2113 * need that: CDC, audio, video, etc.
2114 */
2115 for (i = 0; i < nintf; ++i) {
2116 struct usb_interface *intf = cp->interface[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08002118 dev_dbg(&dev->dev,
Alan Stern6ad07122006-06-01 13:59:16 -04002119 "adding %s (config #%d, interface %d)\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02002120 dev_name(&intf->dev), configuration,
Alan Stern6ad07122006-06-01 13:59:16 -04002121 intf->cur_altsetting->desc.bInterfaceNumber);
Rafael J. Wysocki927bc912010-02-08 19:18:16 +01002122 device_enable_async_suspend(&intf->dev);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08002123 ret = device_add(&intf->dev);
Alan Stern6ad07122006-06-01 13:59:16 -04002124 if (ret != 0) {
2125 dev_err(&dev->dev, "device_add(%s) --> %d\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02002126 dev_name(&intf->dev), ret);
Alan Stern6ad07122006-06-01 13:59:16 -04002127 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 }
Alan Stern3b23dd62008-12-05 14:10:34 -05002129 create_intf_ep_devs(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 }
2131
Alan Stern94fcda12006-11-20 11:38:46 -05002132 usb_autosuspend_device(dev);
Alan Stern86d30742005-07-29 12:17:16 -07002133 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134}
Valentina Maneab7945b72014-01-23 23:12:29 +02002135EXPORT_SYMBOL_GPL(usb_set_configuration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Alan Sterndf718962008-12-19 10:27:56 -05002137static LIST_HEAD(set_config_list);
2138static DEFINE_SPINLOCK(set_config_lock);
2139
Alan Stern088dc272006-08-21 12:08:19 -04002140struct set_config_request {
2141 struct usb_device *udev;
2142 int config;
2143 struct work_struct work;
Alan Sterndf718962008-12-19 10:27:56 -05002144 struct list_head node;
Alan Stern088dc272006-08-21 12:08:19 -04002145};
2146
2147/* Worker routine for usb_driver_set_configuration() */
David Howellsc4028952006-11-22 14:57:56 +00002148static void driver_set_config_work(struct work_struct *work)
Alan Stern088dc272006-08-21 12:08:19 -04002149{
David Howellsc4028952006-11-22 14:57:56 +00002150 struct set_config_request *req =
2151 container_of(work, struct set_config_request, work);
Alan Sterndf718962008-12-19 10:27:56 -05002152 struct usb_device *udev = req->udev;
Alan Stern088dc272006-08-21 12:08:19 -04002153
Alan Sterndf718962008-12-19 10:27:56 -05002154 usb_lock_device(udev);
2155 spin_lock(&set_config_lock);
2156 list_del(&req->node);
2157 spin_unlock(&set_config_lock);
2158
2159 if (req->config >= -1) /* Is req still valid? */
2160 usb_set_configuration(udev, req->config);
2161 usb_unlock_device(udev);
2162 usb_put_dev(udev);
Alan Stern088dc272006-08-21 12:08:19 -04002163 kfree(req);
2164}
2165
Alan Sterndf718962008-12-19 10:27:56 -05002166/* Cancel pending Set-Config requests for a device whose configuration
2167 * was just changed
2168 */
2169static void cancel_async_set_config(struct usb_device *udev)
2170{
2171 struct set_config_request *req;
2172
2173 spin_lock(&set_config_lock);
2174 list_for_each_entry(req, &set_config_list, node) {
2175 if (req->udev == udev)
2176 req->config = -999; /* Mark as cancelled */
2177 }
2178 spin_unlock(&set_config_lock);
2179}
2180
Alan Stern088dc272006-08-21 12:08:19 -04002181/**
2182 * usb_driver_set_configuration - Provide a way for drivers to change device configurations
2183 * @udev: the device whose configuration is being updated
2184 * @config: the configuration being chosen.
2185 * Context: In process context, must be able to sleep
2186 *
2187 * Device interface drivers are not allowed to change device configurations.
2188 * This is because changing configurations will destroy the interface the
2189 * driver is bound to and create new ones; it would be like a floppy-disk
2190 * driver telling the computer to replace the floppy-disk drive with a
2191 * tape drive!
2192 *
2193 * Still, in certain specialized circumstances the need may arise. This
2194 * routine gets around the normal restrictions by using a work thread to
2195 * submit the change-config request.
2196 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02002197 * Return: 0 if the request was successfully queued, error code otherwise.
Alan Stern088dc272006-08-21 12:08:19 -04002198 * The caller has no way to know whether the queued request will eventually
2199 * succeed.
2200 */
2201int usb_driver_set_configuration(struct usb_device *udev, int config)
2202{
2203 struct set_config_request *req;
2204
2205 req = kmalloc(sizeof(*req), GFP_KERNEL);
2206 if (!req)
2207 return -ENOMEM;
2208 req->udev = udev;
2209 req->config = config;
David Howellsc4028952006-11-22 14:57:56 +00002210 INIT_WORK(&req->work, driver_set_config_work);
Alan Stern088dc272006-08-21 12:08:19 -04002211
Alan Sterndf718962008-12-19 10:27:56 -05002212 spin_lock(&set_config_lock);
2213 list_add(&req->node, &set_config_list);
2214 spin_unlock(&set_config_lock);
2215
Alan Stern088dc272006-08-21 12:08:19 -04002216 usb_get_dev(udev);
Alan Stern1737bf22006-12-15 16:04:52 -05002217 schedule_work(&req->work);
Alan Stern088dc272006-08-21 12:08:19 -04002218 return 0;
2219}
2220EXPORT_SYMBOL_GPL(usb_driver_set_configuration);
Oliver Neukume4c6fb72016-07-14 15:41:30 +02002221
2222/**
2223 * cdc_parse_cdc_header - parse the extra headers present in CDC devices
2224 * @hdr: the place to put the results of the parsing
2225 * @intf: the interface for which parsing is requested
2226 * @buffer: pointer to the extra headers to be parsed
2227 * @buflen: length of the extra headers
2228 *
2229 * This evaluates the extra headers present in CDC devices which
2230 * bind the interfaces for data and control and provide details
2231 * about the capabilities of the device.
2232 *
2233 * Return: number of descriptors parsed or -EINVAL
2234 * if the header is contradictory beyond salvage
2235 */
2236
2237int cdc_parse_cdc_header(struct usb_cdc_parsed_header *hdr,
2238 struct usb_interface *intf,
2239 u8 *buffer,
2240 int buflen)
2241{
2242 /* duplicates are ignored */
2243 struct usb_cdc_union_desc *union_header = NULL;
2244
2245 /* duplicates are not tolerated */
2246 struct usb_cdc_header_desc *header = NULL;
2247 struct usb_cdc_ether_desc *ether = NULL;
2248 struct usb_cdc_mdlm_detail_desc *detail = NULL;
2249 struct usb_cdc_mdlm_desc *desc = NULL;
2250
2251 unsigned int elength;
2252 int cnt = 0;
2253
2254 memset(hdr, 0x00, sizeof(struct usb_cdc_parsed_header));
2255 hdr->phonet_magic_present = false;
2256 while (buflen > 0) {
2257 elength = buffer[0];
2258 if (!elength) {
2259 dev_err(&intf->dev, "skipping garbage byte\n");
2260 elength = 1;
2261 goto next_desc;
2262 }
Greg Kroah-Hartman767f7a22017-09-21 16:58:48 +02002263 if ((buflen < elength) || (elength < 3)) {
2264 dev_err(&intf->dev, "invalid descriptor buffer length\n");
2265 break;
2266 }
Oliver Neukume4c6fb72016-07-14 15:41:30 +02002267 if (buffer[1] != USB_DT_CS_INTERFACE) {
2268 dev_err(&intf->dev, "skipping garbage\n");
2269 goto next_desc;
2270 }
2271
2272 switch (buffer[2]) {
2273 case USB_CDC_UNION_TYPE: /* we've found it */
2274 if (elength < sizeof(struct usb_cdc_union_desc))
2275 goto next_desc;
2276 if (union_header) {
2277 dev_err(&intf->dev, "More than one union descriptor, skipping ...\n");
2278 goto next_desc;
2279 }
2280 union_header = (struct usb_cdc_union_desc *)buffer;
2281 break;
2282 case USB_CDC_COUNTRY_TYPE:
2283 if (elength < sizeof(struct usb_cdc_country_functional_desc))
2284 goto next_desc;
2285 hdr->usb_cdc_country_functional_desc =
2286 (struct usb_cdc_country_functional_desc *)buffer;
2287 break;
2288 case USB_CDC_HEADER_TYPE:
2289 if (elength != sizeof(struct usb_cdc_header_desc))
2290 goto next_desc;
2291 if (header)
2292 return -EINVAL;
2293 header = (struct usb_cdc_header_desc *)buffer;
2294 break;
2295 case USB_CDC_ACM_TYPE:
2296 if (elength < sizeof(struct usb_cdc_acm_descriptor))
2297 goto next_desc;
2298 hdr->usb_cdc_acm_descriptor =
2299 (struct usb_cdc_acm_descriptor *)buffer;
2300 break;
2301 case USB_CDC_ETHERNET_TYPE:
2302 if (elength != sizeof(struct usb_cdc_ether_desc))
2303 goto next_desc;
2304 if (ether)
2305 return -EINVAL;
2306 ether = (struct usb_cdc_ether_desc *)buffer;
2307 break;
2308 case USB_CDC_CALL_MANAGEMENT_TYPE:
2309 if (elength < sizeof(struct usb_cdc_call_mgmt_descriptor))
2310 goto next_desc;
2311 hdr->usb_cdc_call_mgmt_descriptor =
2312 (struct usb_cdc_call_mgmt_descriptor *)buffer;
2313 break;
2314 case USB_CDC_DMM_TYPE:
2315 if (elength < sizeof(struct usb_cdc_dmm_desc))
2316 goto next_desc;
2317 hdr->usb_cdc_dmm_desc =
2318 (struct usb_cdc_dmm_desc *)buffer;
2319 break;
2320 case USB_CDC_MDLM_TYPE:
Oliver Neukum911a8ca2019-08-13 11:35:41 +02002321 if (elength < sizeof(struct usb_cdc_mdlm_desc))
Oliver Neukume4c6fb72016-07-14 15:41:30 +02002322 goto next_desc;
2323 if (desc)
2324 return -EINVAL;
2325 desc = (struct usb_cdc_mdlm_desc *)buffer;
2326 break;
2327 case USB_CDC_MDLM_DETAIL_TYPE:
Oliver Neukum911a8ca2019-08-13 11:35:41 +02002328 if (elength < sizeof(struct usb_cdc_mdlm_detail_desc))
Oliver Neukume4c6fb72016-07-14 15:41:30 +02002329 goto next_desc;
2330 if (detail)
2331 return -EINVAL;
2332 detail = (struct usb_cdc_mdlm_detail_desc *)buffer;
2333 break;
2334 case USB_CDC_NCM_TYPE:
2335 if (elength < sizeof(struct usb_cdc_ncm_desc))
2336 goto next_desc;
2337 hdr->usb_cdc_ncm_desc = (struct usb_cdc_ncm_desc *)buffer;
2338 break;
2339 case USB_CDC_MBIM_TYPE:
2340 if (elength < sizeof(struct usb_cdc_mbim_desc))
2341 goto next_desc;
2342
2343 hdr->usb_cdc_mbim_desc = (struct usb_cdc_mbim_desc *)buffer;
2344 break;
2345 case USB_CDC_MBIM_EXTENDED_TYPE:
2346 if (elength < sizeof(struct usb_cdc_mbim_extended_desc))
2347 break;
2348 hdr->usb_cdc_mbim_extended_desc =
2349 (struct usb_cdc_mbim_extended_desc *)buffer;
2350 break;
2351 case CDC_PHONET_MAGIC_NUMBER:
2352 hdr->phonet_magic_present = true;
2353 break;
2354 default:
2355 /*
2356 * there are LOTS more CDC descriptors that
2357 * could legitimately be found here.
2358 */
2359 dev_dbg(&intf->dev, "Ignoring descriptor: type %02x, length %ud\n",
2360 buffer[2], elength);
2361 goto next_desc;
2362 }
2363 cnt++;
2364next_desc:
2365 buflen -= elength;
2366 buffer += elength;
2367 }
2368 hdr->usb_cdc_union_desc = union_header;
2369 hdr->usb_cdc_header_desc = header;
2370 hdr->usb_cdc_mdlm_detail_desc = detail;
2371 hdr->usb_cdc_mdlm_desc = desc;
2372 hdr->usb_cdc_ether_desc = ether;
2373 return cnt;
2374}
2375
2376EXPORT_SYMBOL(cdc_parse_cdc_header);