blob: e13a2e5577156bde0da058192cdad6b767c720ab [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 Neukum7ceec1f2007-01-26 14:26:21 +010015#include <linux/usb/quirks.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +020016#include <linux/usb/hcd.h> /* for usbcore internals */
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/byteorder.h>
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "usb.h"
20
Alan Sterndf718962008-12-19 10:27:56 -050021static void cancel_async_set_config(struct usb_device *udev);
22
Alan Stern67f5dde2007-07-24 18:23:23 -040023struct api_context {
24 struct completion done;
25 int status;
26};
27
David Howells7d12e782006-10-05 14:55:46 +010028static void usb_api_blocking_completion(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029{
Alan Stern67f5dde2007-07-24 18:23:23 -040030 struct api_context *ctx = urb->context;
31
32 ctx->status = urb->status;
33 complete(&ctx->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034}
35
36
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020037/*
38 * Starts urb and waits for completion or timeout. Note that this call
39 * is NOT interruptible. Many device driver i/o requests should be
40 * interruptible and therefore these drivers should implement their
41 * own interruptible routines.
42 */
43static int usb_start_wait_urb(struct urb *urb, int timeout, int *actual_length)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -080044{
Alan Stern67f5dde2007-07-24 18:23:23 -040045 struct api_context ctx;
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020046 unsigned long expire;
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -070047 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Alan Stern67f5dde2007-07-24 18:23:23 -040049 init_completion(&ctx.done);
50 urb->context = &ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 urb->actual_length = 0;
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -070052 retval = usb_submit_urb(urb, GFP_NOIO);
53 if (unlikely(retval))
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020054 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020056 expire = timeout ? msecs_to_jiffies(timeout) : MAX_SCHEDULE_TIMEOUT;
Alan Stern67f5dde2007-07-24 18:23:23 -040057 if (!wait_for_completion_timeout(&ctx.done, expire)) {
58 usb_kill_urb(urb);
59 retval = (ctx.status == -ENOENT ? -ETIMEDOUT : ctx.status);
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020060
61 dev_dbg(&urb->dev->dev,
Roel Kluin71d27182009-03-13 12:19:18 +010062 "%s timed out on ep%d%s len=%u/%u\n",
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020063 current->comm,
Alan Stern5e60a162007-07-30 17:07:21 -040064 usb_endpoint_num(&urb->ep->desc),
65 usb_urb_dir_in(urb) ? "in" : "out",
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020066 urb->actual_length,
67 urb->transfer_buffer_length);
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020068 } else
Alan Stern67f5dde2007-07-24 18:23:23 -040069 retval = ctx.status;
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020070out:
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 if (actual_length)
72 *actual_length = urb->actual_length;
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 usb_free_urb(urb);
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -070075 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77
78/*-------------------------------------------------------------------*/
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -080079/* returns status (negative) or length (positive) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080static int usb_internal_control_msg(struct usb_device *usb_dev,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -080081 unsigned int pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 struct usb_ctrlrequest *cmd,
83 void *data, int len, int timeout)
84{
85 struct urb *urb;
86 int retv;
87 int length;
88
89 urb = usb_alloc_urb(0, GFP_NOIO);
90 if (!urb)
91 return -ENOMEM;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -080092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 usb_fill_control_urb(urb, usb_dev, pipe, (unsigned char *)cmd, data,
94 len, usb_api_blocking_completion, NULL);
95
96 retv = usb_start_wait_urb(urb, timeout, &length);
97 if (retv < 0)
98 return retv;
99 else
100 return length;
101}
102
103/**
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800104 * usb_control_msg - Builds a control urb, sends it off and waits for completion
105 * @dev: pointer to the usb device to send the message to
106 * @pipe: endpoint "pipe" to send the message to
107 * @request: USB message request value
108 * @requesttype: USB message request type value
109 * @value: USB message value
110 * @index: USB message index value
111 * @data: pointer to the data to send
112 * @size: length in bytes of the data to send
113 * @timeout: time in msecs to wait for the message to complete before timing
114 * out (if 0 the wait is forever)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800116 * Context: !in_interrupt ()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800118 * This function sends a simple control message to a specified endpoint and
119 * waits for the message to complete, or timeout.
120 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800121 * Don't use this function from within an interrupt context, like a bottom half
122 * handler. If you need an asynchronous message, or need to send a message
123 * from within interrupt context, use usb_submit_urb().
124 * If a thread in your driver uses this call, make sure your disconnect()
125 * method can wait for it to complete. Since you don't have a handle on the
126 * URB used, you can't cancel the request.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200127 *
128 * Return: If successful, the number of bytes transferred. Otherwise, a negative
129 * error number.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800131int usb_control_msg(struct usb_device *dev, unsigned int pipe, __u8 request,
132 __u8 requesttype, __u16 value, __u16 index, void *data,
133 __u16 size, int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800135 struct usb_ctrlrequest *dr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 int ret;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800137
138 dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (!dr)
140 return -ENOMEM;
141
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800142 dr->bRequestType = requesttype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 dr->bRequest = request;
Harvey Harrisonda2bbdc2008-10-29 14:25:51 -0700144 dr->wValue = cpu_to_le16(value);
145 dr->wIndex = cpu_to_le16(index);
146 dr->wLength = cpu_to_le16(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 ret = usb_internal_control_msg(dev, pipe, dr, data, size, timeout);
149
150 kfree(dr);
151
152 return ret;
153}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600154EXPORT_SYMBOL_GPL(usb_control_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156/**
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700157 * usb_interrupt_msg - Builds an interrupt urb, sends it off and waits for completion
158 * @usb_dev: pointer to the usb device to send the message to
159 * @pipe: endpoint "pipe" to send the message to
160 * @data: pointer to the data to send
161 * @len: length in bytes of the data to send
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800162 * @actual_length: pointer to a location to put the actual length transferred
163 * in bytes
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700164 * @timeout: time in msecs to wait for the message to complete before
165 * timing out (if 0 the wait is forever)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800166 *
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700167 * Context: !in_interrupt ()
168 *
169 * This function sends a simple interrupt message to a specified endpoint and
170 * waits for the message to complete, or timeout.
171 *
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700172 * Don't use this function from within an interrupt context, like a bottom half
173 * handler. If you need an asynchronous message, or need to send a message
174 * from within interrupt context, use usb_submit_urb() If a thread in your
175 * driver uses this call, make sure your disconnect() method can wait for it to
176 * complete. Since you don't have a handle on the URB used, you can't cancel
177 * the request.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200178 *
179 * Return:
180 * If successful, 0. Otherwise a negative error number. The number of actual
Masanari Iidae2278672014-02-18 22:54:36 +0900181 * bytes transferred will be stored in the @actual_length parameter.
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700182 */
183int usb_interrupt_msg(struct usb_device *usb_dev, unsigned int pipe,
184 void *data, int len, int *actual_length, int timeout)
185{
186 return usb_bulk_msg(usb_dev, pipe, data, len, actual_length, timeout);
187}
188EXPORT_SYMBOL_GPL(usb_interrupt_msg);
189
190/**
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800191 * usb_bulk_msg - Builds a bulk urb, sends it off and waits for completion
192 * @usb_dev: pointer to the usb device to send the message to
193 * @pipe: endpoint "pipe" to send the message to
194 * @data: pointer to the data to send
195 * @len: length in bytes of the data to send
196 * @actual_length: pointer to a location to put the actual length transferred
197 * in bytes
198 * @timeout: time in msecs to wait for the message to complete before
199 * timing out (if 0 the wait is forever)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800201 * Context: !in_interrupt ()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800203 * This function sends a simple bulk message to a specified endpoint
204 * and waits for the message to complete, or timeout.
Alan Sternd09d36a2005-09-26 16:22:45 -0400205 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800206 * Don't use this function from within an interrupt context, like a bottom half
207 * handler. If you need an asynchronous message, or need to send a message
208 * from within interrupt context, use usb_submit_urb() If a thread in your
209 * driver uses this call, make sure your disconnect() method can wait for it to
210 * complete. Since you don't have a handle on the URB used, you can't cancel
211 * the request.
212 *
213 * Because there is no usb_interrupt_msg() and no USBDEVFS_INTERRUPT ioctl,
214 * users are forced to abuse this routine by using it to submit URBs for
215 * interrupt endpoints. We will take the liberty of creating an interrupt URB
216 * (with the default interval) if the target is an interrupt endpoint.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200217 *
218 * Return:
219 * If successful, 0. Otherwise a negative error number. The number of actual
Rahul Bedarkar025d4432014-01-04 11:24:41 +0530220 * bytes transferred will be stored in the @actual_length parameter.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200221 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800223int usb_bulk_msg(struct usb_device *usb_dev, unsigned int pipe,
224 void *data, int len, int *actual_length, int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 struct urb *urb;
Alan Sternd09d36a2005-09-26 16:22:45 -0400227 struct usb_host_endpoint *ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Matthew Wilcoxfe54b052010-04-30 13:11:29 -0600229 ep = usb_pipe_endpoint(usb_dev, pipe);
Alan Sternd09d36a2005-09-26 16:22:45 -0400230 if (!ep || len < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 return -EINVAL;
232
Alan Sternd09d36a2005-09-26 16:22:45 -0400233 urb = usb_alloc_urb(0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (!urb)
235 return -ENOMEM;
236
Alan Sternd09d36a2005-09-26 16:22:45 -0400237 if ((ep->desc.bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
238 USB_ENDPOINT_XFER_INT) {
239 pipe = (pipe & ~(3 << 30)) | (PIPE_INTERRUPT << 30);
240 usb_fill_int_urb(urb, usb_dev, pipe, data, len,
Alan Stern8d062b92007-04-23 17:30:32 -0400241 usb_api_blocking_completion, NULL,
242 ep->desc.bInterval);
Alan Sternd09d36a2005-09-26 16:22:45 -0400243 } else
244 usb_fill_bulk_urb(urb, usb_dev, pipe, data, len,
245 usb_api_blocking_completion, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 return usb_start_wait_urb(urb, timeout, actual_length);
248}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600249EXPORT_SYMBOL_GPL(usb_bulk_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251/*-------------------------------------------------------------------*/
252
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800253static void sg_clean(struct usb_sg_request *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 if (io->urbs) {
256 while (io->entries--)
Tülin İzer085528e2013-05-17 10:32:35 +0300257 usb_free_urb(io->urbs[io->entries]);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800258 kfree(io->urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 io->urbs = NULL;
260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 io->dev = NULL;
262}
263
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800264static void sg_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800266 struct usb_sg_request *io = urb->context;
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700267 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800269 spin_lock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 /* In 2.5 we require hcds' endpoint queues not to progress after fault
272 * reports, until the completion callback (this!) returns. That lets
273 * device driver code (like this routine) unlink queued urbs first,
274 * if it needs to, since the HC won't work on them at all. So it's
275 * not possible for page N+1 to overwrite page N, and so on.
276 *
277 * That's only for "hard" faults; "soft" faults (unlinks) sometimes
278 * complete before the HCD can get requests away from hardware,
279 * though never during cleanup after a hard fault.
280 */
281 if (io->status
282 && (io->status != -ECONNRESET
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700283 || status != -ECONNRESET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 && urb->actual_length) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800285 dev_err(io->dev->bus->controller,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 "dev %s ep%d%s scatterlist error %d/%d\n",
287 io->dev->devpath,
Alan Stern5e60a162007-07-30 17:07:21 -0400288 usb_endpoint_num(&urb->ep->desc),
289 usb_urb_dir_in(urb) ? "in" : "out",
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700290 status, io->status);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800291 /* BUG (); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700294 if (io->status == 0 && status && status != -ECONNRESET) {
295 int i, found, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700297 io->status = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 /* the previous urbs, and this one, completed already.
300 * unlink pending urbs so they won't rx/tx bad data.
301 * careful: unlink can sometimes be synchronous...
302 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800303 spin_unlock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 for (i = 0, found = 0; i < io->entries; i++) {
David Mosberger98b74b02016-03-08 14:42:48 -0700305 if (!io->urbs[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 continue;
307 if (found) {
David Mosberger98b74b02016-03-08 14:42:48 -0700308 usb_block_urb(io->urbs[i]);
Tülin İzer085528e2013-05-17 10:32:35 +0300309 retval = usb_unlink_urb(io->urbs[i]);
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700310 if (retval != -EINPROGRESS &&
311 retval != -ENODEV &&
Alan Sternbcf39852012-03-22 11:00:21 -0400312 retval != -EBUSY &&
313 retval != -EIDRM)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800314 dev_err(&io->dev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 "%s, unlink --> %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800316 __func__, retval);
Tülin İzer085528e2013-05-17 10:32:35 +0300317 } else if (urb == io->urbs[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 found = 1;
319 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800320 spin_lock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 /* on the last completion, signal usb_sg_wait() */
324 io->bytes += urb->actual_length;
325 io->count--;
326 if (!io->count)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800327 complete(&io->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800329 spin_unlock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
332
333/**
334 * usb_sg_init - initializes scatterlist-based bulk/interrupt I/O request
335 * @io: request block being initialized. until usb_sg_wait() returns,
336 * treat this as a pointer to an opaque block of memory,
337 * @dev: the usb device that will send or receive the data
338 * @pipe: endpoint "pipe" used to transfer the data
339 * @period: polling rate for interrupt endpoints, in frames or
340 * (for high speed endpoints) microframes; ignored for bulk
341 * @sg: scatterlist entries
342 * @nents: how many entries in the scatterlist
343 * @length: how many bytes to send from the scatterlist, or zero to
344 * send every byte identified in the list.
345 * @mem_flags: SLAB_* flags affecting memory allocations in this call
346 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200347 * This initializes a scatter/gather request, allocating resources such as
348 * I/O mappings and urb memory (except maybe memory used by USB controller
349 * drivers).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 *
351 * The request must be issued using usb_sg_wait(), which waits for the I/O to
352 * complete (or to be canceled) and then cleans up all resources allocated by
353 * usb_sg_init().
354 *
355 * The request may be canceled with usb_sg_cancel(), either before or after
356 * usb_sg_wait() is called.
Yacine Belkadi626f0902013-08-02 20:10:04 +0200357 *
358 * Return: Zero for success, else a negative errno value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800360int usb_sg_init(struct usb_sg_request *io, struct usb_device *dev,
361 unsigned pipe, unsigned period, struct scatterlist *sg,
362 int nents, size_t length, gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800364 int i;
365 int urb_flags;
Sarah Sharpe04748e2009-04-27 19:59:01 -0700366 int use_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 if (!io || !dev || !sg
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800369 || usb_pipecontrol(pipe)
370 || usb_pipeisoc(pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 || nents <= 0)
372 return -EINVAL;
373
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800374 spin_lock_init(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 io->dev = dev;
376 io->pipe = pipe;
Alan Stern0ba169af2010-05-05 15:26:17 -0400377
378 if (dev->bus->sg_tablesize > 0) {
379 use_sg = true;
380 io->entries = 1;
381 } else {
382 use_sg = false;
383 io->entries = nents;
384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 /* initialize all the urbs we'll use */
Tülin İzera1fefaa2013-05-17 10:33:05 +0300387 io->urbs = kmalloc(io->entries * sizeof(*io->urbs), mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 if (!io->urbs)
389 goto nomem;
390
Alan Stern0ba169af2010-05-05 15:26:17 -0400391 urb_flags = URB_NO_INTERRUPT;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800392 if (usb_pipein(pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 urb_flags |= URB_SHORT_NOT_OK;
394
Alan Stern0ba169af2010-05-05 15:26:17 -0400395 for_each_sg(sg, sg, io->entries, i) {
396 struct urb *urb;
397 unsigned len;
398
399 urb = usb_alloc_urb(0, mem_flags);
400 if (!urb) {
401 io->entries = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 goto nomem;
403 }
Alan Stern0ba169af2010-05-05 15:26:17 -0400404 io->urbs[i] = urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Alan Stern0ba169af2010-05-05 15:26:17 -0400406 urb->dev = NULL;
407 urb->pipe = pipe;
408 urb->interval = period;
409 urb->transfer_flags = urb_flags;
410 urb->complete = sg_complete;
411 urb->context = io;
412 urb->sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Alan Stern0ba169af2010-05-05 15:26:17 -0400414 if (use_sg) {
415 /* There is no single transfer buffer */
416 urb->transfer_buffer = NULL;
417 urb->num_sgs = nents;
Alan Sternff9c8952010-04-02 13:27:28 -0400418
Alan Stern0ba169af2010-05-05 15:26:17 -0400419 /* A length of zero means transfer the whole sg list */
420 len = length;
421 if (len == 0) {
Alan Stern64d65872010-06-18 10:16:33 -0400422 struct scatterlist *sg2;
423 int j;
424
425 for_each_sg(sg, sg2, nents, j)
426 len += sg2->length;
Sarah Sharpe04748e2009-04-27 19:59:01 -0700427 }
Alan Stern0ba169af2010-05-05 15:26:17 -0400428 } else {
Sarah Sharpe04748e2009-04-27 19:59:01 -0700429 /*
Alan Sternff9c8952010-04-02 13:27:28 -0400430 * Some systems can't use DMA; they use PIO instead.
431 * For their sakes, transfer_buffer is set whenever
432 * possible.
Sarah Sharpe04748e2009-04-27 19:59:01 -0700433 */
Alan Sternff9c8952010-04-02 13:27:28 -0400434 if (!PageHighMem(sg_page(sg)))
Alan Stern0ba169af2010-05-05 15:26:17 -0400435 urb->transfer_buffer = sg_virt(sg);
Pete Zaitcev81bf46f2009-06-11 08:40:39 -0600436 else
Alan Stern0ba169af2010-05-05 15:26:17 -0400437 urb->transfer_buffer = NULL;
Pete Zaitcev81bf46f2009-06-11 08:40:39 -0600438
Alan Sternff9c8952010-04-02 13:27:28 -0400439 len = sg->length;
Sarah Sharpe04748e2009-04-27 19:59:01 -0700440 if (length) {
Dan Carpenteredb2b252011-09-27 09:25:19 +0300441 len = min_t(size_t, len, length);
Sarah Sharpe04748e2009-04-27 19:59:01 -0700442 length -= len;
443 if (length == 0)
444 io->entries = i + 1;
445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
Alan Stern0ba169af2010-05-05 15:26:17 -0400447 urb->transfer_buffer_length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
Alan Stern0ba169af2010-05-05 15:26:17 -0400449 io->urbs[--i]->transfer_flags &= ~URB_NO_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 /* transaction state */
Alan Stern580da342008-08-05 13:05:17 -0400452 io->count = io->entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 io->status = 0;
454 io->bytes = 0;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800455 init_completion(&io->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return 0;
457
458nomem:
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800459 sg_clean(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return -ENOMEM;
461}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600462EXPORT_SYMBOL_GPL(usb_sg_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464/**
465 * usb_sg_wait - synchronously execute scatter/gather request
466 * @io: request block handle, as initialized with usb_sg_init().
467 * some fields become accessible when this call returns.
468 * Context: !in_interrupt ()
469 *
470 * This function blocks until the specified I/O operation completes. It
471 * leverages the grouping of the related I/O requests to get good transfer
472 * rates, by queueing the requests. At higher speeds, such queuing can
473 * significantly improve USB throughput.
474 *
475 * There are three kinds of completion for this function.
476 * (1) success, where io->status is zero. The number of io->bytes
477 * transferred is as requested.
478 * (2) error, where io->status is a negative errno value. The number
479 * of io->bytes transferred before the error is usually less
480 * than requested, and can be nonzero.
Steven Cole093cf722005-05-03 19:07:24 -0600481 * (3) cancellation, a type of error with status -ECONNRESET that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 * is initiated by usb_sg_cancel().
483 *
484 * When this function returns, all memory allocated through usb_sg_init() or
485 * this call will have been freed. The request block parameter may still be
486 * passed to usb_sg_cancel(), or it may be freed. It could also be
487 * reinitialized and then reused.
488 *
489 * Data Transfer Rates:
490 *
491 * Bulk transfers are valid for full or high speed endpoints.
492 * The best full speed data rate is 19 packets of 64 bytes each
493 * per frame, or 1216 bytes per millisecond.
494 * The best high speed data rate is 13 packets of 512 bytes each
495 * per microframe, or 52 KBytes per millisecond.
496 *
497 * The reason to use interrupt transfers through this API would most likely
498 * be to reserve high speed bandwidth, where up to 24 KBytes per millisecond
499 * could be transferred. That capability is less useful for low or full
500 * speed interrupt endpoints, which allow at most one packet per millisecond,
501 * of at most 8 or 64 bytes (respectively).
Sarah Sharp79abb1a2009-04-27 19:58:26 -0700502 *
503 * It is not necessary to call this function to reserve bandwidth for devices
504 * under an xHCI host controller, as the bandwidth is reserved when the
505 * configuration or interface alt setting is selected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800507void usb_sg_wait(struct usb_sg_request *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800509 int i;
510 int entries = io->entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 /* queue the urbs. */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800513 spin_lock_irq(&io->lock);
Alan Stern8ccef0d2007-06-21 16:26:46 -0400514 i = 0;
515 while (i < entries && !io->status) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800516 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800518 io->urbs[i]->dev = io->dev;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800519 spin_unlock_irq(&io->lock);
David Mosberger98b74b02016-03-08 14:42:48 -0700520
521 retval = usb_submit_urb(io->urbs[i], GFP_NOIO);
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 switch (retval) {
524 /* maybe we retrying will recover */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800525 case -ENXIO: /* hc didn't queue this one */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 case -EAGAIN:
527 case -ENOMEM:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 retval = 0;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800529 yield();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 break;
531
532 /* no error? continue immediately.
533 *
534 * NOTE: to work better with UHCI (4K I/O buffer may
535 * need 3K of TDs) it may be good to limit how many
536 * URBs are queued at once; N milliseconds?
537 */
538 case 0:
Alan Stern8ccef0d2007-06-21 16:26:46 -0400539 ++i;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800540 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 break;
542
543 /* fail any uncompleted urbs */
544 default:
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800545 io->urbs[i]->status = retval;
546 dev_dbg(&io->dev->dev, "%s, submit --> %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800547 __func__, retval);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800548 usb_sg_cancel(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800550 spin_lock_irq(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (retval && (io->status == 0 || io->status == -ECONNRESET))
552 io->status = retval;
553 }
554 io->count -= entries - i;
555 if (io->count == 0)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800556 complete(&io->complete);
557 spin_unlock_irq(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 /* OK, yes, this could be packaged as non-blocking.
560 * So could the submit loop above ... but it's easier to
561 * solve neither problem than to solve both!
562 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800563 wait_for_completion(&io->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800565 sg_clean(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600567EXPORT_SYMBOL_GPL(usb_sg_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569/**
570 * usb_sg_cancel - stop scatter/gather i/o issued by usb_sg_wait()
571 * @io: request block, initialized with usb_sg_init()
572 *
573 * This stops a request after it has been started by usb_sg_wait().
574 * It can also prevents one initialized by usb_sg_init() from starting,
575 * so that call just frees resources allocated to the request.
576 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800577void usb_sg_cancel(struct usb_sg_request *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800579 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800581 spin_lock_irqsave(&io->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 /* shut everything down, if it didn't already */
584 if (!io->status) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800585 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 io->status = -ECONNRESET;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800588 spin_unlock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 for (i = 0; i < io->entries; i++) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800590 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
David Mosberger98b74b02016-03-08 14:42:48 -0700592 usb_block_urb(io->urbs[i]);
593
Tülin İzer085528e2013-05-17 10:32:35 +0300594 retval = usb_unlink_urb(io->urbs[i]);
Alan Sternbcf39852012-03-22 11:00:21 -0400595 if (retval != -EINPROGRESS
596 && retval != -ENODEV
597 && retval != -EBUSY
598 && retval != -EIDRM)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800599 dev_warn(&io->dev->dev, "%s, unlink --> %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800600 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800602 spin_lock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800604 spin_unlock_irqrestore(&io->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600606EXPORT_SYMBOL_GPL(usb_sg_cancel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608/*-------------------------------------------------------------------*/
609
610/**
611 * usb_get_descriptor - issues a generic GET_DESCRIPTOR request
612 * @dev: the device whose descriptor is being retrieved
613 * @type: the descriptor type (USB_DT_*)
614 * @index: the number of the descriptor
615 * @buf: where to put the descriptor
616 * @size: how big is "buf"?
617 * Context: !in_interrupt ()
618 *
619 * Gets a USB descriptor. Convenience functions exist to simplify
620 * getting some types of descriptors. Use
621 * usb_get_string() or usb_string() for USB_DT_STRING.
622 * Device (USB_DT_DEVICE) and configuration descriptors (USB_DT_CONFIG)
623 * are part of the device structure.
624 * In addition to a number of USB-standard descriptors, some
625 * devices also use class-specific or vendor-specific descriptors.
626 *
627 * This call is synchronous, and may not be used in an interrupt context.
628 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200629 * Return: The number of bytes received on success, or else the status code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 * returned by the underlying usb_control_msg() call.
631 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800632int usb_get_descriptor(struct usb_device *dev, unsigned char type,
633 unsigned char index, void *buf, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
635 int i;
636 int result;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800637
638 memset(buf, 0, size); /* Make sure we parse really received data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 for (i = 0; i < 3; ++i) {
Alan Sternc39772d2007-08-20 10:45:28 -0400641 /* retry on length 0 or error; some devices are flakey */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
643 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
644 (type << 8) + index, 0, buf, size,
645 USB_CTRL_GET_TIMEOUT);
Alan Sternc39772d2007-08-20 10:45:28 -0400646 if (result <= 0 && result != -ETIMEDOUT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 continue;
648 if (result > 1 && ((u8 *)buf)[1] != type) {
Alan Stern67f5a4b2009-02-20 16:33:08 -0500649 result = -ENODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 continue;
651 }
652 break;
653 }
654 return result;
655}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600656EXPORT_SYMBOL_GPL(usb_get_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658/**
659 * usb_get_string - gets a string descriptor
660 * @dev: the device whose string descriptor is being retrieved
661 * @langid: code for language chosen (from string descriptor zero)
662 * @index: the number of the descriptor
663 * @buf: where to put the string
664 * @size: how big is "buf"?
665 * Context: !in_interrupt ()
666 *
667 * Retrieves a string, encoded using UTF-16LE (Unicode, 16 bits per character,
668 * in little-endian byte order).
669 * The usb_string() function will often be a convenient way to turn
670 * these strings into kernel-printable form.
671 *
672 * Strings may be referenced in device, configuration, interface, or other
673 * descriptors, and could also be used in vendor-specific ways.
674 *
675 * This call is synchronous, and may not be used in an interrupt context.
676 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200677 * Return: The number of bytes received on success, or else the status code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 * returned by the underlying usb_control_msg() call.
679 */
Adrian Bunke266a122005-11-08 21:05:43 +0100680static int usb_get_string(struct usb_device *dev, unsigned short langid,
681 unsigned char index, void *buf, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 int i;
684 int result;
685
686 for (i = 0; i < 3; ++i) {
687 /* retry on length 0 or stall; some devices are flakey */
688 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
689 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
690 (USB_DT_STRING << 8) + index, langid, buf, size,
691 USB_CTRL_GET_TIMEOUT);
Alan Stern67f5a4b2009-02-20 16:33:08 -0500692 if (result == 0 || result == -EPIPE)
693 continue;
694 if (result > 1 && ((u8 *) buf)[1] != USB_DT_STRING) {
695 result = -ENODATA;
696 continue;
697 }
698 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 }
700 return result;
701}
702
703static void usb_try_string_workarounds(unsigned char *buf, int *length)
704{
705 int newlength, oldlength = *length;
706
707 for (newlength = 2; newlength + 1 < oldlength; newlength += 2)
708 if (!isprint(buf[newlength]) || buf[newlength + 1])
709 break;
710
711 if (newlength > 2) {
712 buf[0] = newlength;
713 *length = newlength;
714 }
715}
716
717static int usb_string_sub(struct usb_device *dev, unsigned int langid,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800718 unsigned int index, unsigned char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
720 int rc;
721
722 /* Try to read the string descriptor by asking for the maximum
723 * possible number of bytes */
Oliver Neukum7ceec1f2007-01-26 14:26:21 +0100724 if (dev->quirks & USB_QUIRK_STRING_FETCH_255)
725 rc = -EIO;
726 else
727 rc = usb_get_string(dev, langid, index, buf, 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 /* If that failed try to read the descriptor length, then
730 * ask for just that many bytes */
731 if (rc < 2) {
732 rc = usb_get_string(dev, langid, index, buf, 2);
733 if (rc == 2)
734 rc = usb_get_string(dev, langid, index, buf, buf[0]);
735 }
736
737 if (rc >= 2) {
738 if (!buf[0] && !buf[1])
739 usb_try_string_workarounds(buf, &rc);
740
741 /* There might be extra junk at the end of the descriptor */
742 if (buf[0] < rc)
743 rc = buf[0];
744
745 rc = rc - (rc & 1); /* force a multiple of two */
746 }
747
748 if (rc < 2)
749 rc = (rc < 0 ? rc : -EINVAL);
750
751 return rc;
752}
753
Daniel Mack0cce2ed2009-07-10 11:04:58 +0200754static int usb_get_langid(struct usb_device *dev, unsigned char *tbuf)
755{
756 int err;
757
758 if (dev->have_langid)
759 return 0;
760
761 if (dev->string_langid < 0)
762 return -EPIPE;
763
764 err = usb_string_sub(dev, 0, 0, tbuf);
765
766 /* If the string was reported but is malformed, default to english
767 * (0x0409) */
768 if (err == -ENODATA || (err > 0 && err < 4)) {
769 dev->string_langid = 0x0409;
770 dev->have_langid = 1;
771 dev_err(&dev->dev,
Scot Doyle586af072014-09-25 15:16:48 +0000772 "language id specifier not provided by device, defaulting to English\n");
Daniel Mack0cce2ed2009-07-10 11:04:58 +0200773 return 0;
774 }
775
776 /* In case of all other errors, we assume the device is not able to
777 * deal with strings at all. Set string_langid to -1 in order to
778 * prevent any string to be retrieved from the device */
779 if (err < 0) {
780 dev_err(&dev->dev, "string descriptor 0 read error: %d\n",
781 err);
782 dev->string_langid = -1;
783 return -EPIPE;
784 }
785
786 /* always use the first langid listed */
787 dev->string_langid = tbuf[2] | (tbuf[3] << 8);
788 dev->have_langid = 1;
789 dev_dbg(&dev->dev, "default language 0x%04x\n",
790 dev->string_langid);
791 return 0;
792}
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794/**
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200795 * usb_string - returns UTF-8 version of a string descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 * @dev: the device whose string descriptor is being retrieved
797 * @index: the number of the descriptor
798 * @buf: where to put the string
799 * @size: how big is "buf"?
800 * Context: !in_interrupt ()
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800801 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 * This converts the UTF-16LE encoded strings returned by devices, from
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200803 * usb_get_string_descriptor(), to null-terminated UTF-8 encoded ones
804 * that are more usable in most kernel contexts. Note that this function
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 * chooses strings in the first language supported by the device.
806 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 * This call is synchronous, and may not be used in an interrupt context.
808 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200809 * Return: length of the string (>= 0) or usb_control_msg status (< 0).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 */
811int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
812{
813 unsigned char *tbuf;
814 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 if (dev->state == USB_STATE_SUSPENDED)
817 return -EHOSTUNREACH;
818 if (size <= 0 || !buf || !index)
819 return -EINVAL;
820 buf[0] = 0;
Alan Stern74675a52009-04-30 10:08:18 -0400821 tbuf = kmalloc(256, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 if (!tbuf)
823 return -ENOMEM;
824
Daniel Mack0cce2ed2009-07-10 11:04:58 +0200825 err = usb_get_langid(dev, tbuf);
826 if (err < 0)
827 goto errout;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 err = usb_string_sub(dev, dev->string_langid, index, tbuf);
830 if (err < 0)
831 goto errout;
832
833 size--; /* leave room for trailing NULL char in output buffer */
Alan Stern74675a52009-04-30 10:08:18 -0400834 err = utf16s_to_utf8s((wchar_t *) &tbuf[2], (err - 2) / 2,
835 UTF16_LITTLE_ENDIAN, buf, size);
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200836 buf[err] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 if (tbuf[1] != USB_DT_STRING)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800839 dev_dbg(&dev->dev,
840 "wrong descriptor type %02x for string %d (\"%s\")\n",
841 tbuf[1], index, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 errout:
844 kfree(tbuf);
845 return err;
846}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600847EXPORT_SYMBOL_GPL(usb_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200849/* one UTF-8-encoded 16-bit character has at most three bytes */
850#define MAX_USB_STRING_SIZE (127 * 3 + 1)
851
Alan Stern4f62efe2005-10-24 16:24:14 -0400852/**
853 * usb_cache_string - read a string descriptor and cache it for later use
854 * @udev: the device whose string descriptor is being read
855 * @index: the descriptor index
856 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200857 * Return: A pointer to a kmalloc'ed buffer containing the descriptor string,
858 * or %NULL if the index is 0 or the string could not be read.
Alan Stern4f62efe2005-10-24 16:24:14 -0400859 */
860char *usb_cache_string(struct usb_device *udev, int index)
861{
862 char *buf;
863 char *smallbuf = NULL;
864 int len;
865
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800866 if (index <= 0)
867 return NULL;
868
Oliver Neukumacbe2fe2010-01-12 12:32:50 +0100869 buf = kmalloc(MAX_USB_STRING_SIZE, GFP_NOIO);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800870 if (buf) {
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200871 len = usb_string(udev, index, buf, MAX_USB_STRING_SIZE);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800872 if (len > 0) {
Oliver Neukumacbe2fe2010-01-12 12:32:50 +0100873 smallbuf = kmalloc(++len, GFP_NOIO);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800874 if (!smallbuf)
Alan Stern4f62efe2005-10-24 16:24:14 -0400875 return buf;
876 memcpy(smallbuf, buf, len);
877 }
878 kfree(buf);
879 }
880 return smallbuf;
881}
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883/*
884 * usb_get_device_descriptor - (re)reads the device descriptor (usbcore)
885 * @dev: the device whose device descriptor is being updated
886 * @size: how much of the descriptor to read
887 * Context: !in_interrupt ()
888 *
889 * Updates the copy of the device descriptor stored in the device structure,
Laurent Pinchart6ab16a92006-11-07 10:16:25 +0100890 * which dedicates space for this purpose.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 *
892 * Not exported, only for use by the core. If drivers really want to read
893 * the device descriptor directly, they can call usb_get_descriptor() with
894 * type = USB_DT_DEVICE and index = 0.
895 *
896 * This call is synchronous, and may not be used in an interrupt context.
897 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200898 * Return: The number of bytes received on success, or else the status code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 * returned by the underlying usb_control_msg() call.
900 */
901int usb_get_device_descriptor(struct usb_device *dev, unsigned int size)
902{
903 struct usb_device_descriptor *desc;
904 int ret;
905
906 if (size > sizeof(*desc))
907 return -EINVAL;
908 desc = kmalloc(sizeof(*desc), GFP_NOIO);
909 if (!desc)
910 return -ENOMEM;
911
912 ret = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, size);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800913 if (ret >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 memcpy(&dev->descriptor, desc, size);
915 kfree(desc);
916 return ret;
917}
918
919/**
920 * usb_get_status - issues a GET_STATUS call
921 * @dev: the device whose status is being checked
922 * @type: USB_RECIP_*; for device, interface, or endpoint
923 * @target: zero (for device), else interface or endpoint number
924 * @data: pointer to two bytes of bitmap data
925 * Context: !in_interrupt ()
926 *
927 * Returns device, interface, or endpoint status. Normally only of
928 * interest to see if the device is self powered, or has enabled the
929 * remote wakeup facility; or whether a bulk or interrupt endpoint
930 * is halted ("stalled").
931 *
932 * Bits in these status bitmaps are set using the SET_FEATURE request,
933 * and cleared using the CLEAR_FEATURE request. The usb_clear_halt()
934 * function should be used to clear halt ("stall") status.
935 *
936 * This call is synchronous, and may not be used in an interrupt context.
937 *
Alan Stern15b73362013-07-30 15:35:40 -0400938 * Returns 0 and the status value in *@data (in host byte order) on success,
939 * or else the status code from the underlying usb_control_msg() call.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 */
941int usb_get_status(struct usb_device *dev, int type, int target, void *data)
942{
943 int ret;
Alan Stern15b73362013-07-30 15:35:40 -0400944 __le16 *status = kmalloc(sizeof(*status), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 if (!status)
947 return -ENOMEM;
948
949 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
950 USB_REQ_GET_STATUS, USB_DIR_IN | type, 0, target, status,
951 sizeof(*status), USB_CTRL_GET_TIMEOUT);
952
Alan Stern15b73362013-07-30 15:35:40 -0400953 if (ret == 2) {
954 *(u16 *) data = le16_to_cpu(*status);
955 ret = 0;
956 } else if (ret >= 0) {
957 ret = -EIO;
958 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 kfree(status);
960 return ret;
961}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600962EXPORT_SYMBOL_GPL(usb_get_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964/**
965 * usb_clear_halt - tells device to clear endpoint halt/stall condition
966 * @dev: device whose endpoint is halted
967 * @pipe: endpoint "pipe" being cleared
968 * Context: !in_interrupt ()
969 *
970 * This is used to clear halt conditions for bulk and interrupt endpoints,
971 * as reported by URB completion status. Endpoints that are halted are
972 * sometimes referred to as being "stalled". Such endpoints are unable
973 * to transmit or receive data until the halt status is cleared. Any URBs
974 * queued for such an endpoint should normally be unlinked by the driver
975 * before clearing the halt condition, as described in sections 5.7.5
976 * and 5.8.5 of the USB 2.0 spec.
977 *
978 * Note that control and isochronous endpoints don't halt, although control
979 * endpoints report "protocol stall" (for unsupported requests) using the
980 * same status code used to report a true stall.
981 *
982 * This call is synchronous, and may not be used in an interrupt context.
983 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200984 * Return: Zero on success, or else the status code returned by the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 * underlying usb_control_msg() call.
986 */
987int usb_clear_halt(struct usb_device *dev, int pipe)
988{
989 int result;
990 int endp = usb_pipeendpoint(pipe);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800991
992 if (usb_pipein(pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 endp |= USB_DIR_IN;
994
995 /* we don't care if it wasn't halted first. in fact some devices
996 * (like some ibmcam model 1 units) seem to expect hosts to make
997 * this request for iso endpoints, which can't halt!
998 */
999 result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1000 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT,
1001 USB_ENDPOINT_HALT, endp, NULL, 0,
1002 USB_CTRL_SET_TIMEOUT);
1003
1004 /* don't un-halt or force to DATA0 except on success */
1005 if (result < 0)
1006 return result;
1007
1008 /* NOTE: seems like Microsoft and Apple don't bother verifying
1009 * the clear "took", so some devices could lock up if you check...
1010 * such as the Hagiwara FlashGate DUAL. So we won't bother.
1011 *
1012 * NOTE: make sure the logic here doesn't diverge much from
1013 * the copy in usb-storage, for as long as we need two copies.
1014 */
1015
David Vrabel3444b262009-04-08 17:36:28 +00001016 usb_reset_endpoint(dev, endp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 return 0;
1019}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001020EXPORT_SYMBOL_GPL(usb_clear_halt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Alan Stern3b23dd62008-12-05 14:10:34 -05001022static int create_intf_ep_devs(struct usb_interface *intf)
1023{
1024 struct usb_device *udev = interface_to_usbdev(intf);
1025 struct usb_host_interface *alt = intf->cur_altsetting;
1026 int i;
1027
1028 if (intf->ep_devs_created || intf->unregistering)
1029 return 0;
1030
1031 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
1032 (void) usb_create_ep_devs(&intf->dev, &alt->endpoint[i], udev);
1033 intf->ep_devs_created = 1;
1034 return 0;
1035}
1036
1037static void remove_intf_ep_devs(struct usb_interface *intf)
1038{
1039 struct usb_host_interface *alt = intf->cur_altsetting;
1040 int i;
1041
1042 if (!intf->ep_devs_created)
1043 return;
1044
1045 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
1046 usb_remove_ep_devs(&alt->endpoint[i]);
1047 intf->ep_devs_created = 0;
1048}
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050/**
1051 * usb_disable_endpoint -- Disable an endpoint by address
1052 * @dev: the device whose endpoint is being disabled
1053 * @epaddr: the endpoint's address. Endpoint number for output,
1054 * endpoint number + USB_DIR_IN for input
Alan Sternddeac4e2009-01-15 17:03:33 -05001055 * @reset_hardware: flag to erase any endpoint state stored in the
1056 * controller hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 *
Alan Sternddeac4e2009-01-15 17:03:33 -05001058 * Disables the endpoint for URB submission and nukes all pending URBs.
1059 * If @reset_hardware is set then also deallocates hcd/hardware state
1060 * for the endpoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 */
Alan Sternddeac4e2009-01-15 17:03:33 -05001062void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr,
1063 bool reset_hardware)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
1065 unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK;
1066 struct usb_host_endpoint *ep;
1067
1068 if (!dev)
1069 return;
1070
1071 if (usb_endpoint_out(epaddr)) {
1072 ep = dev->ep_out[epnum];
Alan Sternddeac4e2009-01-15 17:03:33 -05001073 if (reset_hardware)
1074 dev->ep_out[epnum] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 } else {
1076 ep = dev->ep_in[epnum];
Alan Sternddeac4e2009-01-15 17:03:33 -05001077 if (reset_hardware)
1078 dev->ep_in[epnum] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 }
Alan Sternbdd016b2007-07-30 17:05:22 -04001080 if (ep) {
1081 ep->enabled = 0;
Alan Stern95cf82f2007-09-10 11:33:05 -04001082 usb_hcd_flush_endpoint(dev, ep);
Alan Sternddeac4e2009-01-15 17:03:33 -05001083 if (reset_hardware)
1084 usb_hcd_disable_endpoint(dev, ep);
Alan Sternbdd016b2007-07-30 17:05:22 -04001085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086}
1087
1088/**
David Vrabel3444b262009-04-08 17:36:28 +00001089 * usb_reset_endpoint - Reset an endpoint's state.
1090 * @dev: the device whose endpoint is to be reset
1091 * @epaddr: the endpoint's address. Endpoint number for output,
1092 * endpoint number + USB_DIR_IN for input
1093 *
1094 * Resets any host-side endpoint state such as the toggle bit,
1095 * sequence number or current window.
1096 */
1097void usb_reset_endpoint(struct usb_device *dev, unsigned int epaddr)
1098{
1099 unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK;
1100 struct usb_host_endpoint *ep;
1101
1102 if (usb_endpoint_out(epaddr))
1103 ep = dev->ep_out[epnum];
1104 else
1105 ep = dev->ep_in[epnum];
1106 if (ep)
1107 usb_hcd_reset_endpoint(dev, ep);
1108}
1109EXPORT_SYMBOL_GPL(usb_reset_endpoint);
1110
1111
1112/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 * usb_disable_interface -- Disable all endpoints for an interface
1114 * @dev: the device whose interface is being disabled
1115 * @intf: pointer to the interface descriptor
Alan Sternddeac4e2009-01-15 17:03:33 -05001116 * @reset_hardware: flag to erase any endpoint state stored in the
1117 * controller hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 *
1119 * Disables all the endpoints for the interface's current altsetting.
1120 */
Alan Sternddeac4e2009-01-15 17:03:33 -05001121void usb_disable_interface(struct usb_device *dev, struct usb_interface *intf,
1122 bool reset_hardware)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
1124 struct usb_host_interface *alt = intf->cur_altsetting;
1125 int i;
1126
1127 for (i = 0; i < alt->desc.bNumEndpoints; ++i) {
1128 usb_disable_endpoint(dev,
Alan Sternddeac4e2009-01-15 17:03:33 -05001129 alt->endpoint[i].desc.bEndpointAddress,
1130 reset_hardware);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 }
1132}
1133
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001134/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 * usb_disable_device - Disable all the endpoints for a USB device
1136 * @dev: the device whose endpoints are being disabled
1137 * @skip_ep0: 0 to disable endpoint 0, 1 to skip it.
1138 *
1139 * Disables all the device's endpoints, potentially including endpoint 0.
1140 * Deallocates hcd/hardware state for the endpoints (nuking all or most
1141 * pending urbs) and usbcore state for the interfaces, so that usbcore
1142 * must usb_set_configuration() before any interfaces could be used.
1143 */
1144void usb_disable_device(struct usb_device *dev, int skip_ep0)
1145{
1146 int i;
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001147 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 /* getting rid of interfaces will disconnect
1150 * any drivers bound to them (a key side effect)
1151 */
1152 if (dev->actconfig) {
Alan Sternca5c4852011-07-06 17:03:45 -04001153 /*
1154 * FIXME: In order to avoid self-deadlock involving the
1155 * bandwidth_mutex, we have to mark all the interfaces
1156 * before unregistering any of them.
1157 */
1158 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++)
1159 dev->actconfig->interface[i]->unregistering = 1;
1160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
1162 struct usb_interface *interface;
1163
Alan Stern86d30742005-07-29 12:17:16 -07001164 /* remove this interface if it has been registered */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 interface = dev->actconfig->interface[i];
Daniel Ritzd305ef52005-09-22 00:47:24 -07001166 if (!device_is_registered(&interface->dev))
Alan Stern86d30742005-07-29 12:17:16 -07001167 continue;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001168 dev_dbg(&dev->dev, "unregistering interface %s\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001169 dev_name(&interface->dev));
Alan Stern3b23dd62008-12-05 14:10:34 -05001170 remove_intf_ep_devs(interface);
Alan Stern1a211752008-07-30 11:31:50 -04001171 device_del(&interface->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 }
1173
1174 /* Now that the interfaces are unbound, nobody should
1175 * try to access them.
1176 */
1177 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001178 put_device(&dev->actconfig->interface[i]->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 dev->actconfig->interface[i] = NULL;
1180 }
Sarah Sharpf468f7b2013-10-08 08:28:43 -07001181
1182 if (dev->usb2_hw_lpm_enabled == 1)
1183 usb_set_usb2_hardware_lpm(dev, 0);
Sarah Sharp24971912012-07-05 14:09:30 -07001184 usb_unlocked_disable_lpm(dev);
Sarah Sharpf74631e2012-06-25 12:08:08 -07001185 usb_disable_ltm(dev);
Sarah Sharpf468f7b2013-10-08 08:28:43 -07001186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 dev->actconfig = NULL;
1188 if (dev->state == USB_STATE_CONFIGURED)
1189 usb_set_device_state(dev, USB_STATE_ADDRESS);
1190 }
Alan Stern80f0cf32010-09-30 15:16:23 -04001191
1192 dev_dbg(&dev->dev, "%s nuking %s URBs\n", __func__,
1193 skip_ep0 ? "non-ep0" : "all");
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001194 if (hcd->driver->check_bandwidth) {
1195 /* First pass: Cancel URBs, leave endpoint pointers intact. */
1196 for (i = skip_ep0; i < 16; ++i) {
1197 usb_disable_endpoint(dev, i, false);
1198 usb_disable_endpoint(dev, i + USB_DIR_IN, false);
1199 }
1200 /* Remove endpoints from the host controller internal state */
Alan Stern8963c482012-04-17 15:22:39 -04001201 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001202 usb_hcd_alloc_bandwidth(dev, NULL, NULL, NULL);
Alan Stern8963c482012-04-17 15:22:39 -04001203 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001204 /* Second pass: remove endpoint pointers */
1205 }
Alan Stern80f0cf32010-09-30 15:16:23 -04001206 for (i = skip_ep0; i < 16; ++i) {
1207 usb_disable_endpoint(dev, i, true);
1208 usb_disable_endpoint(dev, i + USB_DIR_IN, true);
1209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210}
1211
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001212/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 * usb_enable_endpoint - Enable an endpoint for USB communications
1214 * @dev: the device whose interface is being enabled
1215 * @ep: the endpoint
David Vrabel3444b262009-04-08 17:36:28 +00001216 * @reset_ep: flag to reset the endpoint state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 *
David Vrabel3444b262009-04-08 17:36:28 +00001218 * Resets the endpoint state if asked, and sets dev->ep_{in,out} pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 * For control endpoints, both the input and output sides are handled.
1220 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001221void usb_enable_endpoint(struct usb_device *dev, struct usb_host_endpoint *ep,
David Vrabel3444b262009-04-08 17:36:28 +00001222 bool reset_ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223{
Alan Sternbdd016b2007-07-30 17:05:22 -04001224 int epnum = usb_endpoint_num(&ep->desc);
1225 int is_out = usb_endpoint_dir_out(&ep->desc);
1226 int is_control = usb_endpoint_xfer_control(&ep->desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
David Vrabel3444b262009-04-08 17:36:28 +00001228 if (reset_ep)
1229 usb_hcd_reset_endpoint(dev, ep);
1230 if (is_out || is_control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 dev->ep_out[epnum] = ep;
David Vrabel3444b262009-04-08 17:36:28 +00001232 if (!is_out || is_control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 dev->ep_in[epnum] = ep;
Alan Sternbdd016b2007-07-30 17:05:22 -04001234 ep->enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001237/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 * usb_enable_interface - Enable all the endpoints for an interface
1239 * @dev: the device whose interface is being enabled
1240 * @intf: pointer to the interface descriptor
David Vrabel3444b262009-04-08 17:36:28 +00001241 * @reset_eps: flag to reset the endpoints' state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 *
1243 * Enables all the endpoints for the interface's current altsetting.
1244 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001245void usb_enable_interface(struct usb_device *dev,
David Vrabel3444b262009-04-08 17:36:28 +00001246 struct usb_interface *intf, bool reset_eps)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
1248 struct usb_host_interface *alt = intf->cur_altsetting;
1249 int i;
1250
1251 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
David Vrabel3444b262009-04-08 17:36:28 +00001252 usb_enable_endpoint(dev, &alt->endpoint[i], reset_eps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253}
1254
1255/**
1256 * usb_set_interface - Makes a particular alternate setting be current
1257 * @dev: the device whose interface is being updated
1258 * @interface: the interface being updated
1259 * @alternate: the setting being chosen.
1260 * Context: !in_interrupt ()
1261 *
1262 * This is used to enable data transfers on interfaces that may not
1263 * be enabled by default. Not all devices support such configurability.
1264 * Only the driver bound to an interface may change its setting.
1265 *
1266 * Within any given configuration, each interface may have several
1267 * alternative settings. These are often used to control levels of
1268 * bandwidth consumption. For example, the default setting for a high
1269 * speed interrupt endpoint may not send more than 64 bytes per microframe,
1270 * while interrupt transfers of up to 3KBytes per microframe are legal.
1271 * Also, isochronous endpoints may never be part of an
1272 * interface's default setting. To access such bandwidth, alternate
1273 * interface settings must be made current.
1274 *
1275 * Note that in the Linux USB subsystem, bandwidth associated with
1276 * an endpoint in a given alternate setting is not reserved until an URB
1277 * is submitted that needs that bandwidth. Some other operating systems
1278 * allocate bandwidth early, when a configuration is chosen.
1279 *
1280 * This call is synchronous, and may not be used in an interrupt context.
1281 * Also, drivers must not change altsettings while urbs are scheduled for
1282 * endpoints in that interface; all such urbs must first be completed
1283 * (perhaps forced by unlinking).
1284 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02001285 * Return: Zero on success, or else the status code returned by the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 * underlying usb_control_msg() call.
1287 */
1288int usb_set_interface(struct usb_device *dev, int interface, int alternate)
1289{
1290 struct usb_interface *iface;
1291 struct usb_host_interface *alt;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001292 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
Hans de Goede7a7b5622013-11-08 16:37:26 +01001293 int i, ret, manual = 0;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001294 unsigned int epaddr;
1295 unsigned int pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 if (dev->state == USB_STATE_SUSPENDED)
1298 return -EHOSTUNREACH;
1299
1300 iface = usb_ifnum_to_if(dev, interface);
1301 if (!iface) {
1302 dev_dbg(&dev->dev, "selecting invalid interface %d\n",
1303 interface);
1304 return -EINVAL;
1305 }
Alan Sterne534c5b2011-07-01 16:43:02 -04001306 if (iface->unregistering)
1307 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 alt = usb_altnum_to_altsetting(iface, alternate);
1310 if (!alt) {
Thadeu Lima de Souza Cascardo385f6902010-01-17 19:24:03 -02001311 dev_warn(&dev->dev, "selecting invalid altsetting %d\n",
Greg Kroah-Hartman3b6004f2008-08-14 09:37:34 -07001312 alternate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 return -EINVAL;
1314 }
1315
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001316 /* Make sure we have enough bandwidth for this alternate interface.
1317 * Remove the current alt setting and add the new alt setting.
1318 */
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001319 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp83060952012-05-02 14:25:52 -07001320 /* Disable LPM, and re-enable it once the new alt setting is installed,
1321 * so that the xHCI driver can recalculate the U1/U2 timeouts.
1322 */
1323 if (usb_disable_lpm(dev)) {
1324 dev_err(&iface->dev, "%s Failed to disable LPM\n.", __func__);
1325 mutex_unlock(hcd->bandwidth_mutex);
1326 return -ENOMEM;
1327 }
Hans de Goede7a7b5622013-11-08 16:37:26 +01001328 /* Changing alt-setting also frees any allocated streams */
1329 for (i = 0; i < iface->cur_altsetting->desc.bNumEndpoints; i++)
1330 iface->cur_altsetting->endpoint[i].streams = 0;
1331
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001332 ret = usb_hcd_alloc_bandwidth(dev, NULL, iface->cur_altsetting, alt);
1333 if (ret < 0) {
1334 dev_info(&dev->dev, "Not enough bandwidth for altsetting %d\n",
1335 alternate);
Sarah Sharp83060952012-05-02 14:25:52 -07001336 usb_enable_lpm(dev);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001337 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001338 return ret;
1339 }
1340
Alan Stern392e1d92008-03-11 10:20:12 -04001341 if (dev->quirks & USB_QUIRK_NO_SET_INTF)
1342 ret = -EPIPE;
1343 else
1344 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
1346 alternate, interface, NULL, 0, 5000);
1347
1348 /* 9.4.10 says devices don't need this and are free to STALL the
1349 * request if the interface only has one alternate setting.
1350 */
1351 if (ret == -EPIPE && iface->num_altsetting == 1) {
1352 dev_dbg(&dev->dev,
1353 "manual set_interface for iface %d, alt %d\n",
1354 interface, alternate);
1355 manual = 1;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001356 } else if (ret < 0) {
1357 /* Re-instate the old alt setting */
1358 usb_hcd_alloc_bandwidth(dev, NULL, alt, iface->cur_altsetting);
Sarah Sharp83060952012-05-02 14:25:52 -07001359 usb_enable_lpm(dev);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001360 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 return ret;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001362 }
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001363 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 /* FIXME drivers shouldn't need to replicate/bugfix the logic here
1366 * when they implement async or easily-killable versions of this or
1367 * other "should-be-internal" functions (like clear_halt).
1368 * should hcd+usbcore postprocess control requests?
1369 */
1370
1371 /* prevent submissions using previous endpoint settings */
Alan Stern3b23dd62008-12-05 14:10:34 -05001372 if (iface->cur_altsetting != alt) {
1373 remove_intf_ep_devs(iface);
Alan Stern0e6c8e82005-10-24 15:33:03 -04001374 usb_remove_sysfs_intf_files(iface);
Alan Stern3b23dd62008-12-05 14:10:34 -05001375 }
Alan Sternddeac4e2009-01-15 17:03:33 -05001376 usb_disable_interface(dev, iface, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 iface->cur_altsetting = alt;
1379
Sarah Sharp83060952012-05-02 14:25:52 -07001380 /* Now that the interface is installed, re-enable LPM. */
1381 usb_unlocked_enable_lpm(dev);
1382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 /* If the interface only has one altsetting and the device didn't
David Brownella81e7ec2005-04-18 17:39:25 -07001384 * accept the request, we attempt to carry out the equivalent action
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 * by manually clearing the HALT feature for each endpoint in the
1386 * new altsetting.
1387 */
1388 if (manual) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 for (i = 0; i < alt->desc.bNumEndpoints; i++) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001390 epaddr = alt->endpoint[i].desc.bEndpointAddress;
1391 pipe = __create_pipe(dev,
1392 USB_ENDPOINT_NUMBER_MASK & epaddr) |
1393 (usb_endpoint_out(epaddr) ?
1394 USB_DIR_OUT : USB_DIR_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396 usb_clear_halt(dev, pipe);
1397 }
1398 }
1399
1400 /* 9.1.1.5: reset toggles for all endpoints in the new altsetting
1401 *
1402 * Note:
1403 * Despite EP0 is always present in all interfaces/AS, the list of
1404 * endpoints from the descriptor does not contain EP0. Due to its
1405 * omnipresence one might expect EP0 being considered "affected" by
1406 * any SetInterface request and hence assume toggles need to be reset.
1407 * However, EP0 toggles are re-synced for every individual transfer
1408 * during the SETUP stage - hence EP0 toggles are "don't care" here.
1409 * (Likewise, EP0 never "halts" on well designed devices.)
1410 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001411 usb_enable_interface(dev, iface, true);
Alan Stern3b23dd62008-12-05 14:10:34 -05001412 if (device_is_registered(&iface->dev)) {
Alan Stern0e6c8e82005-10-24 15:33:03 -04001413 usb_create_sysfs_intf_files(iface);
Alan Stern3b23dd62008-12-05 14:10:34 -05001414 create_intf_ep_devs(iface);
1415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 return 0;
1417}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001418EXPORT_SYMBOL_GPL(usb_set_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
1420/**
1421 * usb_reset_configuration - lightweight device reset
1422 * @dev: the device whose configuration is being reset
1423 *
1424 * This issues a standard SET_CONFIGURATION request to the device using
1425 * the current configuration. The effect is to reset most USB-related
1426 * state in the device, including interface altsettings (reset to zero),
David Vrabel3444b262009-04-08 17:36:28 +00001427 * endpoint halts (cleared), and endpoint state (only for bulk and interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 * endpoints). Other usbcore state is unchanged, including bindings of
1429 * usb device drivers to interfaces.
1430 *
1431 * Because this affects multiple interfaces, avoid using this with composite
1432 * (multi-interface) devices. Instead, the driver for each interface may
David Brownella81e7ec2005-04-18 17:39:25 -07001433 * use usb_set_interface() on the interfaces it claims. Be careful though;
1434 * some devices don't support the SET_INTERFACE request, and others won't
David Vrabel3444b262009-04-08 17:36:28 +00001435 * reset all the interface state (notably endpoint state). Resetting the whole
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 * configuration would affect other drivers' interfaces.
1437 *
1438 * The caller must own the device lock.
1439 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02001440 * Return: Zero on success, else a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 */
1442int usb_reset_configuration(struct usb_device *dev)
1443{
1444 int i, retval;
1445 struct usb_host_config *config;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001446 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
1448 if (dev->state == USB_STATE_SUSPENDED)
1449 return -EHOSTUNREACH;
1450
1451 /* caller must have locked the device and must own
1452 * the usb bus readlock (so driver bindings are stable);
1453 * calls during probe() are fine
1454 */
1455
1456 for (i = 1; i < 16; ++i) {
Alan Sternddeac4e2009-01-15 17:03:33 -05001457 usb_disable_endpoint(dev, i, true);
1458 usb_disable_endpoint(dev, i + USB_DIR_IN, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 }
1460
1461 config = dev->actconfig;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001462 retval = 0;
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001463 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp83060952012-05-02 14:25:52 -07001464 /* Disable LPM, and re-enable it once the configuration is reset, so
1465 * that the xHCI driver can recalculate the U1/U2 timeouts.
1466 */
1467 if (usb_disable_lpm(dev)) {
1468 dev_err(&dev->dev, "%s Failed to disable LPM\n.", __func__);
1469 mutex_unlock(hcd->bandwidth_mutex);
1470 return -ENOMEM;
1471 }
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001472 /* Make sure we have enough bandwidth for each alternate setting 0 */
1473 for (i = 0; i < config->desc.bNumInterfaces; i++) {
1474 struct usb_interface *intf = config->interface[i];
1475 struct usb_host_interface *alt;
1476
1477 alt = usb_altnum_to_altsetting(intf, 0);
1478 if (!alt)
1479 alt = &intf->altsetting[0];
1480 if (alt != intf->cur_altsetting)
1481 retval = usb_hcd_alloc_bandwidth(dev, NULL,
1482 intf->cur_altsetting, alt);
1483 if (retval < 0)
1484 break;
1485 }
1486 /* If not, reinstate the old alternate settings */
1487 if (retval < 0) {
1488reset_old_alts:
Roel Kluine4a3d942010-02-18 02:36:23 +01001489 for (i--; i >= 0; i--) {
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001490 struct usb_interface *intf = config->interface[i];
1491 struct usb_host_interface *alt;
1492
1493 alt = usb_altnum_to_altsetting(intf, 0);
1494 if (!alt)
1495 alt = &intf->altsetting[0];
1496 if (alt != intf->cur_altsetting)
1497 usb_hcd_alloc_bandwidth(dev, NULL,
1498 alt, intf->cur_altsetting);
1499 }
Sarah Sharp83060952012-05-02 14:25:52 -07001500 usb_enable_lpm(dev);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001501 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001502 return retval;
1503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1505 USB_REQ_SET_CONFIGURATION, 0,
1506 config->desc.bConfigurationValue, 0,
1507 NULL, 0, USB_CTRL_SET_TIMEOUT);
Alan Stern0e6c8e82005-10-24 15:33:03 -04001508 if (retval < 0)
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001509 goto reset_old_alts;
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001510 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 /* re-init hc/hcd interface/endpoint state */
1513 for (i = 0; i < config->desc.bNumInterfaces; i++) {
1514 struct usb_interface *intf = config->interface[i];
1515 struct usb_host_interface *alt;
1516
1517 alt = usb_altnum_to_altsetting(intf, 0);
1518
1519 /* No altsetting 0? We'll assume the first altsetting.
1520 * We could use a GetInterface call, but if a device is
1521 * so non-compliant that it doesn't have altsetting 0
1522 * then I wouldn't trust its reply anyway.
1523 */
1524 if (!alt)
1525 alt = &intf->altsetting[0];
1526
Alan Stern3b23dd62008-12-05 14:10:34 -05001527 if (alt != intf->cur_altsetting) {
1528 remove_intf_ep_devs(intf);
1529 usb_remove_sysfs_intf_files(intf);
1530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 intf->cur_altsetting = alt;
Alan Stern2caf7fc2008-12-31 11:31:33 -05001532 usb_enable_interface(dev, intf, true);
Alan Stern3b23dd62008-12-05 14:10:34 -05001533 if (device_is_registered(&intf->dev)) {
Alan Stern0e6c8e82005-10-24 15:33:03 -04001534 usb_create_sysfs_intf_files(intf);
Alan Stern3b23dd62008-12-05 14:10:34 -05001535 create_intf_ep_devs(intf);
1536 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 }
Sarah Sharp83060952012-05-02 14:25:52 -07001538 /* Now that the interfaces are installed, re-enable LPM. */
1539 usb_unlocked_enable_lpm(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 return 0;
1541}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001542EXPORT_SYMBOL_GPL(usb_reset_configuration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Greg Kroah-Hartmanb0e396e2007-08-02 22:44:27 -06001544static void usb_release_interface(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545{
1546 struct usb_interface *intf = to_usb_interface(dev);
1547 struct usb_interface_cache *intfc =
1548 altsetting_to_usb_interface_cache(intf->altsetting);
1549
1550 kref_put(&intfc->ref, usb_release_interface_cache);
Alan Stern524134d2015-01-21 14:02:43 -05001551 usb_put_dev(interface_to_usbdev(intf));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 kfree(intf);
1553}
1554
Stefan Kochb3910ce2015-08-25 21:10:08 +02001555/*
1556 * usb_deauthorize_interface - deauthorize an USB interface
1557 *
1558 * @intf: USB interface structure
1559 */
1560void usb_deauthorize_interface(struct usb_interface *intf)
1561{
1562 struct device *dev = &intf->dev;
1563
1564 device_lock(dev->parent);
1565
1566 if (intf->authorized) {
1567 device_lock(dev);
1568 intf->authorized = 0;
1569 device_unlock(dev);
1570
1571 usb_forced_unbind_intf(intf);
1572 }
1573
1574 device_unlock(dev->parent);
1575}
1576
1577/*
1578 * usb_authorize_interface - authorize an USB interface
1579 *
1580 * @intf: USB interface structure
1581 */
1582void usb_authorize_interface(struct usb_interface *intf)
1583{
1584 struct device *dev = &intf->dev;
1585
1586 if (!intf->authorized) {
1587 device_lock(dev);
1588 intf->authorized = 1; /* authorize interface */
1589 device_unlock(dev);
1590 }
1591}
1592
Kay Sievers7eff2e72007-08-14 15:15:12 +02001593static int usb_if_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001594{
1595 struct usb_device *usb_dev;
1596 struct usb_interface *intf;
1597 struct usb_host_interface *alt;
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001598
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001599 intf = to_usb_interface(dev);
1600 usb_dev = interface_to_usbdev(intf);
1601 alt = intf->cur_altsetting;
1602
Kay Sievers7eff2e72007-08-14 15:15:12 +02001603 if (add_uevent_var(env, "INTERFACE=%d/%d/%d",
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001604 alt->desc.bInterfaceClass,
1605 alt->desc.bInterfaceSubClass,
1606 alt->desc.bInterfaceProtocol))
1607 return -ENOMEM;
1608
Kay Sievers7eff2e72007-08-14 15:15:12 +02001609 if (add_uevent_var(env,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001610 "MODALIAS=usb:"
Bjørn Mork81df2d52012-05-18 21:27:43 +02001611 "v%04Xp%04Xd%04Xdc%02Xdsc%02Xdp%02Xic%02Xisc%02Xip%02Xin%02X",
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001612 le16_to_cpu(usb_dev->descriptor.idVendor),
1613 le16_to_cpu(usb_dev->descriptor.idProduct),
1614 le16_to_cpu(usb_dev->descriptor.bcdDevice),
1615 usb_dev->descriptor.bDeviceClass,
1616 usb_dev->descriptor.bDeviceSubClass,
1617 usb_dev->descriptor.bDeviceProtocol,
1618 alt->desc.bInterfaceClass,
1619 alt->desc.bInterfaceSubClass,
Bjørn Mork81df2d52012-05-18 21:27:43 +02001620 alt->desc.bInterfaceProtocol,
1621 alt->desc.bInterfaceNumber))
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001622 return -ENOMEM;
1623
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001624 return 0;
1625}
1626
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001627struct device_type usb_if_device_type = {
1628 .name = "usb_interface",
1629 .release = usb_release_interface,
1630 .uevent = usb_if_uevent,
1631};
1632
Craig W. Nadler165fe972007-06-15 23:14:35 -04001633static struct usb_interface_assoc_descriptor *find_iad(struct usb_device *dev,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001634 struct usb_host_config *config,
1635 u8 inum)
Craig W. Nadler165fe972007-06-15 23:14:35 -04001636{
1637 struct usb_interface_assoc_descriptor *retval = NULL;
1638 struct usb_interface_assoc_descriptor *intf_assoc;
1639 int first_intf;
1640 int last_intf;
1641 int i;
1642
1643 for (i = 0; (i < USB_MAXIADS && config->intf_assoc[i]); i++) {
1644 intf_assoc = config->intf_assoc[i];
1645 if (intf_assoc->bInterfaceCount == 0)
1646 continue;
1647
1648 first_intf = intf_assoc->bFirstInterface;
1649 last_intf = first_intf + (intf_assoc->bInterfaceCount - 1);
1650 if (inum >= first_intf && inum <= last_intf) {
1651 if (!retval)
1652 retval = intf_assoc;
1653 else
1654 dev_err(&dev->dev, "Interface #%d referenced"
1655 " by multiple IADs\n", inum);
1656 }
1657 }
1658
1659 return retval;
1660}
1661
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001662
1663/*
1664 * Internal function to queue a device reset
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001665 * See usb_queue_reset_device() for more details
1666 */
Felipe Balbi09e81f32009-12-04 15:47:44 +02001667static void __usb_queue_reset_device(struct work_struct *ws)
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001668{
1669 int rc;
1670 struct usb_interface *iface =
1671 container_of(ws, struct usb_interface, reset_ws);
1672 struct usb_device *udev = interface_to_usbdev(iface);
1673
1674 rc = usb_lock_device_for_reset(udev, iface);
1675 if (rc >= 0) {
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001676 usb_reset_device(udev);
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001677 usb_unlock_device(udev);
1678 }
Alan Stern524134d2015-01-21 14:02:43 -05001679 usb_put_intf(iface); /* Undo _get_ in usb_queue_reset_device() */
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001680}
1681
1682
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683/*
1684 * usb_set_configuration - Makes a particular device setting be current
1685 * @dev: the device whose configuration is being updated
1686 * @configuration: the configuration being chosen.
1687 * Context: !in_interrupt(), caller owns the device lock
1688 *
1689 * This is used to enable non-default device modes. Not all devices
1690 * use this kind of configurability; many devices only have one
1691 * configuration.
1692 *
Alan Stern3f141e22007-02-08 16:40:43 -05001693 * @configuration is the value of the configuration to be installed.
1694 * According to the USB spec (e.g. section 9.1.1.5), configuration values
1695 * must be non-zero; a value of zero indicates that the device in
1696 * unconfigured. However some devices erroneously use 0 as one of their
1697 * configuration values. To help manage such devices, this routine will
1698 * accept @configuration = -1 as indicating the device should be put in
1699 * an unconfigured state.
1700 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 * USB device configurations may affect Linux interoperability,
1702 * power consumption and the functionality available. For example,
1703 * the default configuration is limited to using 100mA of bus power,
1704 * so that when certain device functionality requires more power,
1705 * and the device is bus powered, that functionality should be in some
1706 * non-default device configuration. Other device modes may also be
1707 * reflected as configuration options, such as whether two ISDN
1708 * channels are available independently; and choosing between open
1709 * standard device protocols (like CDC) or proprietary ones.
1710 *
Inaky Perez-Gonzalez16bbab22007-07-31 20:34:01 -07001711 * Note that a non-authorized device (dev->authorized == 0) will only
1712 * be put in unconfigured mode.
1713 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 * Note that USB has an additional level of device configurability,
1715 * associated with interfaces. That configurability is accessed using
1716 * usb_set_interface().
1717 *
1718 * This call is synchronous. The calling context must be able to sleep,
1719 * must own the device lock, and must not hold the driver model's USB
Ming Lei6d243e52008-06-17 23:24:08 +08001720 * bus mutex; usb interface driver probe() methods cannot use this routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 *
1722 * Returns zero on success, or else the status code returned by the
Steven Cole093cf722005-05-03 19:07:24 -06001723 * underlying call that failed. On successful completion, each interface
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 * in the original device configuration has been destroyed, and each one
1725 * in the new configuration has been probed by all relevant usb device
1726 * drivers currently known to the kernel.
1727 */
1728int usb_set_configuration(struct usb_device *dev, int configuration)
1729{
1730 int i, ret;
1731 struct usb_host_config *cp = NULL;
1732 struct usb_interface **new_interfaces = NULL;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001733 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 int n, nintf;
1735
Inaky Perez-Gonzalez16bbab22007-07-31 20:34:01 -07001736 if (dev->authorized == 0 || configuration == -1)
Alan Stern3f141e22007-02-08 16:40:43 -05001737 configuration = 0;
1738 else {
1739 for (i = 0; i < dev->descriptor.bNumConfigurations; i++) {
1740 if (dev->config[i].desc.bConfigurationValue ==
1741 configuration) {
1742 cp = &dev->config[i];
1743 break;
1744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 }
1746 }
1747 if ((!cp && configuration != 0))
1748 return -EINVAL;
1749
1750 /* The USB spec says configuration 0 means unconfigured.
1751 * But if a device includes a configuration numbered 0,
1752 * we will accept it as a correctly configured state.
Alan Stern3f141e22007-02-08 16:40:43 -05001753 * Use -1 if you really want to unconfigure the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 */
1755 if (cp && configuration == 0)
1756 dev_warn(&dev->dev, "config 0 descriptor??\n");
1757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 /* Allocate memory for new interfaces before doing anything else,
1759 * so that if we run out then nothing will have changed. */
1760 n = nintf = 0;
1761 if (cp) {
1762 nintf = cp->desc.bNumInterfaces;
1763 new_interfaces = kmalloc(nintf * sizeof(*new_interfaces),
Oliver Neukumacbe2fe2010-01-12 12:32:50 +01001764 GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 if (!new_interfaces) {
Joe Perches898eb712007-10-18 03:06:30 -07001766 dev_err(&dev->dev, "Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 return -ENOMEM;
1768 }
1769
1770 for (; n < nintf; ++n) {
Alan Stern0a1ef3b2005-10-24 15:38:24 -04001771 new_interfaces[n] = kzalloc(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 sizeof(struct usb_interface),
Oliver Neukumacbe2fe2010-01-12 12:32:50 +01001773 GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 if (!new_interfaces[n]) {
Joe Perches898eb712007-10-18 03:06:30 -07001775 dev_err(&dev->dev, "Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 ret = -ENOMEM;
1777free_interfaces:
1778 while (--n >= 0)
1779 kfree(new_interfaces[n]);
1780 kfree(new_interfaces);
1781 return ret;
1782 }
1783 }
Alan Stern6ad07122006-06-01 13:59:16 -04001784
Sebastian Andrzej Siewior8d8479d2012-12-18 15:25:46 +01001785 i = dev->bus_mA - usb_get_max_power(dev, cp);
Alan Stern6ad07122006-06-01 13:59:16 -04001786 if (i < 0)
1787 dev_warn(&dev->dev, "new config #%d exceeds power "
1788 "limit by %dmA\n",
1789 configuration, -i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 }
1791
Alan Stern01d883d2006-08-30 15:47:18 -04001792 /* Wake up the device so we can send it the Set-Config request */
Alan Stern94fcda12006-11-20 11:38:46 -05001793 ret = usb_autoresume_device(dev);
Alan Stern01d883d2006-08-30 15:47:18 -04001794 if (ret)
1795 goto free_interfaces;
1796
Thadeu Lima de Souza Cascardo07919712010-08-28 03:06:29 -03001797 /* if it's already configured, clear out old state first.
1798 * getting rid of old interfaces means unbinding their drivers.
1799 */
1800 if (dev->state != USB_STATE_ADDRESS)
1801 usb_disable_device(dev, 1); /* Skip ep0 */
1802
1803 /* Get rid of pending async Set-Config requests for this device */
1804 cancel_async_set_config(dev);
1805
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001806 /* Make sure we have bandwidth (and available HCD resources) for this
1807 * configuration. Remove endpoints from the schedule if we're dropping
1808 * this configuration to set configuration 0. After this point, the
1809 * host controller will not allow submissions to dropped endpoints. If
1810 * this call fails, the device state is unchanged.
1811 */
Alan Stern8963c482012-04-17 15:22:39 -04001812 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp83060952012-05-02 14:25:52 -07001813 /* Disable LPM, and re-enable it once the new configuration is
1814 * installed, so that the xHCI driver can recalculate the U1/U2
1815 * timeouts.
1816 */
Sarah Sharp9cf65992012-07-03 23:22:38 -07001817 if (dev->actconfig && usb_disable_lpm(dev)) {
Sarah Sharp83060952012-05-02 14:25:52 -07001818 dev_err(&dev->dev, "%s Failed to disable LPM\n.", __func__);
1819 mutex_unlock(hcd->bandwidth_mutex);
Sachin Kamatc058f7a2012-11-21 11:01:19 +05301820 ret = -ENOMEM;
1821 goto free_interfaces;
Sarah Sharp83060952012-05-02 14:25:52 -07001822 }
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001823 ret = usb_hcd_alloc_bandwidth(dev, cp, NULL, NULL);
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001824 if (ret < 0) {
Sarah Sharp9cf65992012-07-03 23:22:38 -07001825 if (dev->actconfig)
1826 usb_enable_lpm(dev);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001827 mutex_unlock(hcd->bandwidth_mutex);
Thadeu Lima de Souza Cascardo07919712010-08-28 03:06:29 -03001828 usb_autosuspend_device(dev);
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001829 goto free_interfaces;
1830 }
1831
Alan Stern36caff52012-11-07 10:31:30 -05001832 /*
1833 * Initialize the new interface structures and the
Alan Stern6ad07122006-06-01 13:59:16 -04001834 * hc/hcd/usbcore interface/endpoint state.
1835 */
1836 for (i = 0; i < nintf; ++i) {
1837 struct usb_interface_cache *intfc;
1838 struct usb_interface *intf;
1839 struct usb_host_interface *alt;
1840
1841 cp->interface[i] = intf = new_interfaces[i];
1842 intfc = cp->intf_cache[i];
1843 intf->altsetting = intfc->altsetting;
1844 intf->num_altsetting = intfc->num_altsetting;
Stefan Koch6b2bd3c2015-08-25 21:10:06 +02001845 intf->authorized = !!HCD_INTF_AUTHORIZED(hcd);
Alan Stern6ad07122006-06-01 13:59:16 -04001846 kref_get(&intfc->ref);
1847
1848 alt = usb_altnum_to_altsetting(intf, 0);
1849
1850 /* No altsetting 0? We'll assume the first altsetting.
1851 * We could use a GetInterface call, but if a device is
1852 * so non-compliant that it doesn't have altsetting 0
1853 * then I wouldn't trust its reply anyway.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 */
Alan Stern6ad07122006-06-01 13:59:16 -04001855 if (!alt)
1856 alt = &intf->altsetting[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
Daniel Mackb3a3dd02012-06-12 20:23:52 +02001858 intf->intf_assoc =
1859 find_iad(dev, cp, alt->desc.bInterfaceNumber);
Alan Stern6ad07122006-06-01 13:59:16 -04001860 intf->cur_altsetting = alt;
Alan Stern2caf7fc2008-12-31 11:31:33 -05001861 usb_enable_interface(dev, intf, true);
Alan Stern6ad07122006-06-01 13:59:16 -04001862 intf->dev.parent = &dev->dev;
1863 intf->dev.driver = NULL;
1864 intf->dev.bus = &usb_bus_type;
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001865 intf->dev.type = &usb_if_device_type;
Alan Stern2e5f10e2008-04-30 15:37:19 -04001866 intf->dev.groups = usb_interface_groups;
Alan Stern6ad07122006-06-01 13:59:16 -04001867 intf->dev.dma_mask = dev->dev.dma_mask;
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001868 INIT_WORK(&intf->reset_ws, __usb_queue_reset_device);
Alan Stern0026e002010-09-21 15:01:53 -04001869 intf->minor = -1;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001870 device_initialize(&intf->dev);
Ming Lei63defa72010-11-15 15:56:54 -05001871 pm_runtime_no_callbacks(&intf->dev);
Kay Sievers0031a062008-05-02 06:02:41 +02001872 dev_set_name(&intf->dev, "%d-%s:%d.%d",
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001873 dev->bus->busnum, dev->devpath,
1874 configuration, alt->desc.bInterfaceNumber);
Alan Stern524134d2015-01-21 14:02:43 -05001875 usb_get_dev(dev);
Alan Stern6ad07122006-06-01 13:59:16 -04001876 }
1877 kfree(new_interfaces);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Alan Stern36caff52012-11-07 10:31:30 -05001879 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1880 USB_REQ_SET_CONFIGURATION, 0, configuration, 0,
1881 NULL, 0, USB_CTRL_SET_TIMEOUT);
1882 if (ret < 0 && cp) {
1883 /*
1884 * All the old state is gone, so what else can we do?
1885 * The device is probably useless now anyway.
1886 */
1887 usb_hcd_alloc_bandwidth(dev, NULL, NULL, NULL);
1888 for (i = 0; i < nintf; ++i) {
1889 usb_disable_interface(dev, cp->interface[i], true);
1890 put_device(&cp->interface[i]->dev);
1891 cp->interface[i] = NULL;
1892 }
1893 cp = NULL;
1894 }
1895
1896 dev->actconfig = cp;
1897 mutex_unlock(hcd->bandwidth_mutex);
1898
1899 if (!cp) {
1900 usb_set_device_state(dev, USB_STATE_ADDRESS);
1901
1902 /* Leave LPM disabled while the device is unconfigured. */
1903 usb_autosuspend_device(dev);
1904 return ret;
1905 }
1906 usb_set_device_state(dev, USB_STATE_CONFIGURED);
1907
Alan Stern1662e3a2009-03-18 14:28:53 -04001908 if (cp->string == NULL &&
1909 !(dev->quirks & USB_QUIRK_CONFIG_INTF_STRINGS))
Alan Stern6ad07122006-06-01 13:59:16 -04001910 cp->string = usb_cache_string(dev, cp->desc.iConfiguration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Sarah Sharp83060952012-05-02 14:25:52 -07001912 /* Now that the interfaces are installed, re-enable LPM. */
1913 usb_unlocked_enable_lpm(dev);
Sarah Sharpf74631e2012-06-25 12:08:08 -07001914 /* Enable LTM if it was turned off by usb_disable_device. */
1915 usb_enable_ltm(dev);
Sarah Sharp83060952012-05-02 14:25:52 -07001916
Alan Stern6ad07122006-06-01 13:59:16 -04001917 /* Now that all the interfaces are set up, register them
1918 * to trigger binding of drivers to interfaces. probe()
1919 * routines may install different altsettings and may
1920 * claim() any interfaces not yet bound. Many class drivers
1921 * need that: CDC, audio, video, etc.
1922 */
1923 for (i = 0; i < nintf; ++i) {
1924 struct usb_interface *intf = cp->interface[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001926 dev_dbg(&dev->dev,
Alan Stern6ad07122006-06-01 13:59:16 -04001927 "adding %s (config #%d, interface %d)\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001928 dev_name(&intf->dev), configuration,
Alan Stern6ad07122006-06-01 13:59:16 -04001929 intf->cur_altsetting->desc.bInterfaceNumber);
Rafael J. Wysocki927bc912010-02-08 19:18:16 +01001930 device_enable_async_suspend(&intf->dev);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001931 ret = device_add(&intf->dev);
Alan Stern6ad07122006-06-01 13:59:16 -04001932 if (ret != 0) {
1933 dev_err(&dev->dev, "device_add(%s) --> %d\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001934 dev_name(&intf->dev), ret);
Alan Stern6ad07122006-06-01 13:59:16 -04001935 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 }
Alan Stern3b23dd62008-12-05 14:10:34 -05001937 create_intf_ep_devs(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 }
1939
Alan Stern94fcda12006-11-20 11:38:46 -05001940 usb_autosuspend_device(dev);
Alan Stern86d30742005-07-29 12:17:16 -07001941 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942}
Valentina Maneab7945b72014-01-23 23:12:29 +02001943EXPORT_SYMBOL_GPL(usb_set_configuration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Alan Sterndf718962008-12-19 10:27:56 -05001945static LIST_HEAD(set_config_list);
1946static DEFINE_SPINLOCK(set_config_lock);
1947
Alan Stern088dc272006-08-21 12:08:19 -04001948struct set_config_request {
1949 struct usb_device *udev;
1950 int config;
1951 struct work_struct work;
Alan Sterndf718962008-12-19 10:27:56 -05001952 struct list_head node;
Alan Stern088dc272006-08-21 12:08:19 -04001953};
1954
1955/* Worker routine for usb_driver_set_configuration() */
David Howellsc4028952006-11-22 14:57:56 +00001956static void driver_set_config_work(struct work_struct *work)
Alan Stern088dc272006-08-21 12:08:19 -04001957{
David Howellsc4028952006-11-22 14:57:56 +00001958 struct set_config_request *req =
1959 container_of(work, struct set_config_request, work);
Alan Sterndf718962008-12-19 10:27:56 -05001960 struct usb_device *udev = req->udev;
Alan Stern088dc272006-08-21 12:08:19 -04001961
Alan Sterndf718962008-12-19 10:27:56 -05001962 usb_lock_device(udev);
1963 spin_lock(&set_config_lock);
1964 list_del(&req->node);
1965 spin_unlock(&set_config_lock);
1966
1967 if (req->config >= -1) /* Is req still valid? */
1968 usb_set_configuration(udev, req->config);
1969 usb_unlock_device(udev);
1970 usb_put_dev(udev);
Alan Stern088dc272006-08-21 12:08:19 -04001971 kfree(req);
1972}
1973
Alan Sterndf718962008-12-19 10:27:56 -05001974/* Cancel pending Set-Config requests for a device whose configuration
1975 * was just changed
1976 */
1977static void cancel_async_set_config(struct usb_device *udev)
1978{
1979 struct set_config_request *req;
1980
1981 spin_lock(&set_config_lock);
1982 list_for_each_entry(req, &set_config_list, node) {
1983 if (req->udev == udev)
1984 req->config = -999; /* Mark as cancelled */
1985 }
1986 spin_unlock(&set_config_lock);
1987}
1988
Alan Stern088dc272006-08-21 12:08:19 -04001989/**
1990 * usb_driver_set_configuration - Provide a way for drivers to change device configurations
1991 * @udev: the device whose configuration is being updated
1992 * @config: the configuration being chosen.
1993 * Context: In process context, must be able to sleep
1994 *
1995 * Device interface drivers are not allowed to change device configurations.
1996 * This is because changing configurations will destroy the interface the
1997 * driver is bound to and create new ones; it would be like a floppy-disk
1998 * driver telling the computer to replace the floppy-disk drive with a
1999 * tape drive!
2000 *
2001 * Still, in certain specialized circumstances the need may arise. This
2002 * routine gets around the normal restrictions by using a work thread to
2003 * submit the change-config request.
2004 *
Yacine Belkadi626f0902013-08-02 20:10:04 +02002005 * Return: 0 if the request was successfully queued, error code otherwise.
Alan Stern088dc272006-08-21 12:08:19 -04002006 * The caller has no way to know whether the queued request will eventually
2007 * succeed.
2008 */
2009int usb_driver_set_configuration(struct usb_device *udev, int config)
2010{
2011 struct set_config_request *req;
2012
2013 req = kmalloc(sizeof(*req), GFP_KERNEL);
2014 if (!req)
2015 return -ENOMEM;
2016 req->udev = udev;
2017 req->config = config;
David Howellsc4028952006-11-22 14:57:56 +00002018 INIT_WORK(&req->work, driver_set_config_work);
Alan Stern088dc272006-08-21 12:08:19 -04002019
Alan Sterndf718962008-12-19 10:27:56 -05002020 spin_lock(&set_config_lock);
2021 list_add(&req->node, &set_config_list);
2022 spin_unlock(&set_config_lock);
2023
Alan Stern088dc272006-08-21 12:08:19 -04002024 usb_get_dev(udev);
Alan Stern1737bf2c2006-12-15 16:04:52 -05002025 schedule_work(&req->work);
Alan Stern088dc272006-08-21 12:08:19 -04002026 return 0;
2027}
2028EXPORT_SYMBOL_GPL(usb_driver_set_configuration);