blob: 6549a975b0c5e7afc63a55d76e838fefa6d14489 [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>
9#include <linux/init.h>
10#include <linux/mm.h>
11#include <linux/timer.h>
12#include <linux/ctype.h>
Clemens Ladischa853a3d2009-04-24 10:12:18 +020013#include <linux/nls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/device.h>
Ralf Baechle11763602007-10-23 20:42:11 +020015#include <linux/scatterlist.h>
Oliver Neukum7ceec1f2007-01-26 14:26:21 +010016#include <linux/usb/quirks.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +020017#include <linux/usb/hcd.h> /* for usbcore internals */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/byteorder.h>
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "usb.h"
21
Alan Sterndf718962008-12-19 10:27:56 -050022static void cancel_async_set_config(struct usb_device *udev);
23
Alan Stern67f5dde2007-07-24 18:23:23 -040024struct api_context {
25 struct completion done;
26 int status;
27};
28
David Howells7d12e782006-10-05 14:55:46 +010029static void usb_api_blocking_completion(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
Alan Stern67f5dde2007-07-24 18:23:23 -040031 struct api_context *ctx = urb->context;
32
33 ctx->status = urb->status;
34 complete(&ctx->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035}
36
37
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020038/*
39 * Starts urb and waits for completion or timeout. Note that this call
40 * is NOT interruptible. Many device driver i/o requests should be
41 * interruptible and therefore these drivers should implement their
42 * own interruptible routines.
43 */
44static int usb_start_wait_urb(struct urb *urb, int timeout, int *actual_length)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -080045{
Alan Stern67f5dde2007-07-24 18:23:23 -040046 struct api_context ctx;
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020047 unsigned long expire;
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -070048 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Alan Stern67f5dde2007-07-24 18:23:23 -040050 init_completion(&ctx.done);
51 urb->context = &ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 urb->actual_length = 0;
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -070053 retval = usb_submit_urb(urb, GFP_NOIO);
54 if (unlikely(retval))
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020055 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020057 expire = timeout ? msecs_to_jiffies(timeout) : MAX_SCHEDULE_TIMEOUT;
Alan Stern67f5dde2007-07-24 18:23:23 -040058 if (!wait_for_completion_timeout(&ctx.done, expire)) {
59 usb_kill_urb(urb);
60 retval = (ctx.status == -ENOENT ? -ETIMEDOUT : ctx.status);
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020061
62 dev_dbg(&urb->dev->dev,
Roel Kluin71d27182009-03-13 12:19:18 +010063 "%s timed out on ep%d%s len=%u/%u\n",
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020064 current->comm,
Alan Stern5e60a162007-07-30 17:07:21 -040065 usb_endpoint_num(&urb->ep->desc),
66 usb_urb_dir_in(urb) ? "in" : "out",
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020067 urb->actual_length,
68 urb->transfer_buffer_length);
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020069 } else
Alan Stern67f5dde2007-07-24 18:23:23 -040070 retval = ctx.status;
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020071out:
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 if (actual_length)
73 *actual_length = urb->actual_length;
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 usb_free_urb(urb);
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -070076 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
79/*-------------------------------------------------------------------*/
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -080080/* returns status (negative) or length (positive) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static int usb_internal_control_msg(struct usb_device *usb_dev,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -080082 unsigned int pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 struct usb_ctrlrequest *cmd,
84 void *data, int len, int timeout)
85{
86 struct urb *urb;
87 int retv;
88 int length;
89
90 urb = usb_alloc_urb(0, GFP_NOIO);
91 if (!urb)
92 return -ENOMEM;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -080093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 usb_fill_control_urb(urb, usb_dev, pipe, (unsigned char *)cmd, data,
95 len, usb_api_blocking_completion, NULL);
96
97 retv = usb_start_wait_urb(urb, timeout, &length);
98 if (retv < 0)
99 return retv;
100 else
101 return length;
102}
103
104/**
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800105 * usb_control_msg - Builds a control urb, sends it off and waits for completion
106 * @dev: pointer to the usb device to send the message to
107 * @pipe: endpoint "pipe" to send the message to
108 * @request: USB message request value
109 * @requesttype: USB message request type value
110 * @value: USB message value
111 * @index: USB message index value
112 * @data: pointer to the data to send
113 * @size: length in bytes of the data to send
114 * @timeout: time in msecs to wait for the message to complete before timing
115 * out (if 0 the wait is forever)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800117 * Context: !in_interrupt ()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800119 * This function sends a simple control message to a specified endpoint and
120 * waits for the message to complete, or timeout.
121 *
122 * If successful, it returns the number of bytes transferred, otherwise a
123 * negative error number.
124 *
125 * Don't use this function from within an interrupt context, like a bottom half
126 * handler. If you need an asynchronous message, or need to send a message
127 * from within interrupt context, use usb_submit_urb().
128 * If a thread in your driver uses this call, make sure your disconnect()
129 * method can wait for it to complete. Since you don't have a handle on the
130 * URB used, you can't cancel the request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800132int usb_control_msg(struct usb_device *dev, unsigned int pipe, __u8 request,
133 __u8 requesttype, __u16 value, __u16 index, void *data,
134 __u16 size, int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800136 struct usb_ctrlrequest *dr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 int ret;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800138
139 dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 if (!dr)
141 return -ENOMEM;
142
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800143 dr->bRequestType = requesttype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 dr->bRequest = request;
Harvey Harrisonda2bbdc2008-10-29 14:25:51 -0700145 dr->wValue = cpu_to_le16(value);
146 dr->wIndex = cpu_to_le16(index);
147 dr->wLength = cpu_to_le16(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 ret = usb_internal_control_msg(dev, pipe, dr, data, size, timeout);
150
151 kfree(dr);
152
153 return ret;
154}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600155EXPORT_SYMBOL_GPL(usb_control_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157/**
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700158 * usb_interrupt_msg - Builds an interrupt urb, sends it off and waits for completion
159 * @usb_dev: pointer to the usb device to send the message to
160 * @pipe: endpoint "pipe" to send the message to
161 * @data: pointer to the data to send
162 * @len: length in bytes of the data to send
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800163 * @actual_length: pointer to a location to put the actual length transferred
164 * in bytes
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700165 * @timeout: time in msecs to wait for the message to complete before
166 * timing out (if 0 the wait is forever)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800167 *
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700168 * Context: !in_interrupt ()
169 *
170 * This function sends a simple interrupt message to a specified endpoint and
171 * waits for the message to complete, or timeout.
172 *
173 * If successful, it returns 0, otherwise a negative error number. The number
174 * of actual bytes transferred will be stored in the actual_length paramater.
175 *
176 * Don't use this function from within an interrupt context, like a bottom half
177 * handler. If you need an asynchronous message, or need to send a message
178 * from within interrupt context, use usb_submit_urb() If a thread in your
179 * driver uses this call, make sure your disconnect() method can wait for it to
180 * complete. Since you don't have a handle on the URB used, you can't cancel
181 * the request.
182 */
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 * If successful, it returns 0, otherwise a negative error number. The number
207 * of actual bytes transferred will be stored in the actual_length paramater.
208 *
209 * Don't use this function from within an interrupt context, like a bottom half
210 * handler. If you need an asynchronous message, or need to send a message
211 * from within interrupt context, use usb_submit_urb() If a thread in your
212 * driver uses this call, make sure your disconnect() method can wait for it to
213 * complete. Since you don't have a handle on the URB used, you can't cancel
214 * the request.
215 *
216 * Because there is no usb_interrupt_msg() and no USBDEVFS_INTERRUPT ioctl,
217 * users are forced to abuse this routine by using it to submit URBs for
218 * interrupt endpoints. We will take the liberty of creating an interrupt URB
219 * (with the default interval) if the target is an interrupt endpoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800221int usb_bulk_msg(struct usb_device *usb_dev, unsigned int pipe,
222 void *data, int len, int *actual_length, int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 struct urb *urb;
Alan Sternd09d36a2005-09-26 16:22:45 -0400225 struct usb_host_endpoint *ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Matthew Wilcoxfe54b052010-04-30 13:11:29 -0600227 ep = usb_pipe_endpoint(usb_dev, pipe);
Alan Sternd09d36a2005-09-26 16:22:45 -0400228 if (!ep || len < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return -EINVAL;
230
Alan Sternd09d36a2005-09-26 16:22:45 -0400231 urb = usb_alloc_urb(0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (!urb)
233 return -ENOMEM;
234
Alan Sternd09d36a2005-09-26 16:22:45 -0400235 if ((ep->desc.bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
236 USB_ENDPOINT_XFER_INT) {
237 pipe = (pipe & ~(3 << 30)) | (PIPE_INTERRUPT << 30);
238 usb_fill_int_urb(urb, usb_dev, pipe, data, len,
Alan Stern8d062b92007-04-23 17:30:32 -0400239 usb_api_blocking_completion, NULL,
240 ep->desc.bInterval);
Alan Sternd09d36a2005-09-26 16:22:45 -0400241 } else
242 usb_fill_bulk_urb(urb, usb_dev, pipe, data, len,
243 usb_api_blocking_completion, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 return usb_start_wait_urb(urb, timeout, actual_length);
246}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600247EXPORT_SYMBOL_GPL(usb_bulk_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249/*-------------------------------------------------------------------*/
250
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800251static void sg_clean(struct usb_sg_request *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
253 if (io->urbs) {
254 while (io->entries--)
TĂ¼lin İzer085528e2013-05-17 10:32:35 +0300255 usb_free_urb(io->urbs[io->entries]);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800256 kfree(io->urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 io->urbs = NULL;
258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 io->dev = NULL;
260}
261
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800262static void sg_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800264 struct usb_sg_request *io = urb->context;
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700265 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800267 spin_lock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 /* In 2.5 we require hcds' endpoint queues not to progress after fault
270 * reports, until the completion callback (this!) returns. That lets
271 * device driver code (like this routine) unlink queued urbs first,
272 * if it needs to, since the HC won't work on them at all. So it's
273 * not possible for page N+1 to overwrite page N, and so on.
274 *
275 * That's only for "hard" faults; "soft" faults (unlinks) sometimes
276 * complete before the HCD can get requests away from hardware,
277 * though never during cleanup after a hard fault.
278 */
279 if (io->status
280 && (io->status != -ECONNRESET
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700281 || status != -ECONNRESET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 && urb->actual_length) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800283 dev_err(io->dev->bus->controller,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 "dev %s ep%d%s scatterlist error %d/%d\n",
285 io->dev->devpath,
Alan Stern5e60a162007-07-30 17:07:21 -0400286 usb_endpoint_num(&urb->ep->desc),
287 usb_urb_dir_in(urb) ? "in" : "out",
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700288 status, io->status);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800289 /* BUG (); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
291
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700292 if (io->status == 0 && status && status != -ECONNRESET) {
293 int i, found, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700295 io->status = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 /* the previous urbs, and this one, completed already.
298 * unlink pending urbs so they won't rx/tx bad data.
299 * careful: unlink can sometimes be synchronous...
300 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800301 spin_unlock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 for (i = 0, found = 0; i < io->entries; i++) {
TĂ¼lin İzer085528e2013-05-17 10:32:35 +0300303 if (!io->urbs[i] || !io->urbs[i]->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 continue;
305 if (found) {
TĂ¼lin İzer085528e2013-05-17 10:32:35 +0300306 retval = usb_unlink_urb(io->urbs[i]);
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700307 if (retval != -EINPROGRESS &&
308 retval != -ENODEV &&
Alan Sternbcf39852012-03-22 11:00:21 -0400309 retval != -EBUSY &&
310 retval != -EIDRM)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800311 dev_err(&io->dev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 "%s, unlink --> %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800313 __func__, retval);
TĂ¼lin İzer085528e2013-05-17 10:32:35 +0300314 } else if (urb == io->urbs[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 found = 1;
316 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800317 spin_lock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 /* on the last completion, signal usb_sg_wait() */
321 io->bytes += urb->actual_length;
322 io->count--;
323 if (!io->count)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800324 complete(&io->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800326 spin_unlock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
329
330/**
331 * usb_sg_init - initializes scatterlist-based bulk/interrupt I/O request
332 * @io: request block being initialized. until usb_sg_wait() returns,
333 * treat this as a pointer to an opaque block of memory,
334 * @dev: the usb device that will send or receive the data
335 * @pipe: endpoint "pipe" used to transfer the data
336 * @period: polling rate for interrupt endpoints, in frames or
337 * (for high speed endpoints) microframes; ignored for bulk
338 * @sg: scatterlist entries
339 * @nents: how many entries in the scatterlist
340 * @length: how many bytes to send from the scatterlist, or zero to
341 * send every byte identified in the list.
342 * @mem_flags: SLAB_* flags affecting memory allocations in this call
343 *
344 * Returns zero for success, else a negative errno value. This initializes a
345 * scatter/gather request, allocating resources such as I/O mappings and urb
346 * memory (except maybe memory used by USB controller drivers).
347 *
348 * The request must be issued using usb_sg_wait(), which waits for the I/O to
349 * complete (or to be canceled) and then cleans up all resources allocated by
350 * usb_sg_init().
351 *
352 * The request may be canceled with usb_sg_cancel(), either before or after
353 * usb_sg_wait() is called.
354 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800355int usb_sg_init(struct usb_sg_request *io, struct usb_device *dev,
356 unsigned pipe, unsigned period, struct scatterlist *sg,
357 int nents, size_t length, gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800359 int i;
360 int urb_flags;
Sarah Sharpe04748e2009-04-27 19:59:01 -0700361 int use_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 if (!io || !dev || !sg
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800364 || usb_pipecontrol(pipe)
365 || usb_pipeisoc(pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 || nents <= 0)
367 return -EINVAL;
368
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800369 spin_lock_init(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 io->dev = dev;
371 io->pipe = pipe;
Alan Stern0ba169af2010-05-05 15:26:17 -0400372
373 if (dev->bus->sg_tablesize > 0) {
374 use_sg = true;
375 io->entries = 1;
376 } else {
377 use_sg = false;
378 io->entries = nents;
379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 /* initialize all the urbs we'll use */
TĂ¼lin İzera1fefaa2013-05-17 10:33:05 +0300382 io->urbs = kmalloc(io->entries * sizeof(*io->urbs), mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 if (!io->urbs)
384 goto nomem;
385
Alan Stern0ba169af2010-05-05 15:26:17 -0400386 urb_flags = URB_NO_INTERRUPT;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800387 if (usb_pipein(pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 urb_flags |= URB_SHORT_NOT_OK;
389
Alan Stern0ba169af2010-05-05 15:26:17 -0400390 for_each_sg(sg, sg, io->entries, i) {
391 struct urb *urb;
392 unsigned len;
393
394 urb = usb_alloc_urb(0, mem_flags);
395 if (!urb) {
396 io->entries = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 goto nomem;
398 }
Alan Stern0ba169af2010-05-05 15:26:17 -0400399 io->urbs[i] = urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Alan Stern0ba169af2010-05-05 15:26:17 -0400401 urb->dev = NULL;
402 urb->pipe = pipe;
403 urb->interval = period;
404 urb->transfer_flags = urb_flags;
405 urb->complete = sg_complete;
406 urb->context = io;
407 urb->sg = sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Alan Stern0ba169af2010-05-05 15:26:17 -0400409 if (use_sg) {
410 /* There is no single transfer buffer */
411 urb->transfer_buffer = NULL;
412 urb->num_sgs = nents;
Alan Sternff9c8952010-04-02 13:27:28 -0400413
Alan Stern0ba169af2010-05-05 15:26:17 -0400414 /* A length of zero means transfer the whole sg list */
415 len = length;
416 if (len == 0) {
Alan Stern64d65872010-06-18 10:16:33 -0400417 struct scatterlist *sg2;
418 int j;
419
420 for_each_sg(sg, sg2, nents, j)
421 len += sg2->length;
Sarah Sharpe04748e2009-04-27 19:59:01 -0700422 }
Alan Stern0ba169af2010-05-05 15:26:17 -0400423 } else {
Sarah Sharpe04748e2009-04-27 19:59:01 -0700424 /*
Alan Sternff9c8952010-04-02 13:27:28 -0400425 * Some systems can't use DMA; they use PIO instead.
426 * For their sakes, transfer_buffer is set whenever
427 * possible.
Sarah Sharpe04748e2009-04-27 19:59:01 -0700428 */
Alan Sternff9c8952010-04-02 13:27:28 -0400429 if (!PageHighMem(sg_page(sg)))
Alan Stern0ba169af2010-05-05 15:26:17 -0400430 urb->transfer_buffer = sg_virt(sg);
Pete Zaitcev81bf46f2009-06-11 08:40:39 -0600431 else
Alan Stern0ba169af2010-05-05 15:26:17 -0400432 urb->transfer_buffer = NULL;
Pete Zaitcev81bf46f2009-06-11 08:40:39 -0600433
Alan Sternff9c8952010-04-02 13:27:28 -0400434 len = sg->length;
Sarah Sharpe04748e2009-04-27 19:59:01 -0700435 if (length) {
Dan Carpenteredb2b252011-09-27 09:25:19 +0300436 len = min_t(size_t, len, length);
Sarah Sharpe04748e2009-04-27 19:59:01 -0700437 length -= len;
438 if (length == 0)
439 io->entries = i + 1;
440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
Alan Stern0ba169af2010-05-05 15:26:17 -0400442 urb->transfer_buffer_length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
Alan Stern0ba169af2010-05-05 15:26:17 -0400444 io->urbs[--i]->transfer_flags &= ~URB_NO_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 /* transaction state */
Alan Stern580da342008-08-05 13:05:17 -0400447 io->count = io->entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 io->status = 0;
449 io->bytes = 0;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800450 init_completion(&io->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return 0;
452
453nomem:
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800454 sg_clean(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return -ENOMEM;
456}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600457EXPORT_SYMBOL_GPL(usb_sg_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459/**
460 * usb_sg_wait - synchronously execute scatter/gather request
461 * @io: request block handle, as initialized with usb_sg_init().
462 * some fields become accessible when this call returns.
463 * Context: !in_interrupt ()
464 *
465 * This function blocks until the specified I/O operation completes. It
466 * leverages the grouping of the related I/O requests to get good transfer
467 * rates, by queueing the requests. At higher speeds, such queuing can
468 * significantly improve USB throughput.
469 *
470 * There are three kinds of completion for this function.
471 * (1) success, where io->status is zero. The number of io->bytes
472 * transferred is as requested.
473 * (2) error, where io->status is a negative errno value. The number
474 * of io->bytes transferred before the error is usually less
475 * than requested, and can be nonzero.
Steven Cole093cf722005-05-03 19:07:24 -0600476 * (3) cancellation, a type of error with status -ECONNRESET that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 * is initiated by usb_sg_cancel().
478 *
479 * When this function returns, all memory allocated through usb_sg_init() or
480 * this call will have been freed. The request block parameter may still be
481 * passed to usb_sg_cancel(), or it may be freed. It could also be
482 * reinitialized and then reused.
483 *
484 * Data Transfer Rates:
485 *
486 * Bulk transfers are valid for full or high speed endpoints.
487 * The best full speed data rate is 19 packets of 64 bytes each
488 * per frame, or 1216 bytes per millisecond.
489 * The best high speed data rate is 13 packets of 512 bytes each
490 * per microframe, or 52 KBytes per millisecond.
491 *
492 * The reason to use interrupt transfers through this API would most likely
493 * be to reserve high speed bandwidth, where up to 24 KBytes per millisecond
494 * could be transferred. That capability is less useful for low or full
495 * speed interrupt endpoints, which allow at most one packet per millisecond,
496 * of at most 8 or 64 bytes (respectively).
Sarah Sharp79abb1a2009-04-27 19:58:26 -0700497 *
498 * It is not necessary to call this function to reserve bandwidth for devices
499 * under an xHCI host controller, as the bandwidth is reserved when the
500 * configuration or interface alt setting is selected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800502void usb_sg_wait(struct usb_sg_request *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800504 int i;
505 int entries = io->entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 /* queue the urbs. */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800508 spin_lock_irq(&io->lock);
Alan Stern8ccef0d2007-06-21 16:26:46 -0400509 i = 0;
510 while (i < entries && !io->status) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800511 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800513 io->urbs[i]->dev = io->dev;
TĂ¼lin İzer085528e2013-05-17 10:32:35 +0300514 retval = usb_submit_urb(io->urbs[i], GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 /* after we submit, let completions or cancelations fire;
517 * we handshake using io->status.
518 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800519 spin_unlock_irq(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 switch (retval) {
521 /* maybe we retrying will recover */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800522 case -ENXIO: /* hc didn't queue this one */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 case -EAGAIN:
524 case -ENOMEM:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 retval = 0;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800526 yield();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 break;
528
529 /* no error? continue immediately.
530 *
531 * NOTE: to work better with UHCI (4K I/O buffer may
532 * need 3K of TDs) it may be good to limit how many
533 * URBs are queued at once; N milliseconds?
534 */
535 case 0:
Alan Stern8ccef0d2007-06-21 16:26:46 -0400536 ++i;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800537 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 break;
539
540 /* fail any uncompleted urbs */
541 default:
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800542 io->urbs[i]->status = retval;
543 dev_dbg(&io->dev->dev, "%s, submit --> %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800544 __func__, retval);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800545 usb_sg_cancel(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800547 spin_lock_irq(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (retval && (io->status == 0 || io->status == -ECONNRESET))
549 io->status = retval;
550 }
551 io->count -= entries - i;
552 if (io->count == 0)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800553 complete(&io->complete);
554 spin_unlock_irq(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 /* OK, yes, this could be packaged as non-blocking.
557 * So could the submit loop above ... but it's easier to
558 * solve neither problem than to solve both!
559 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800560 wait_for_completion(&io->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800562 sg_clean(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600564EXPORT_SYMBOL_GPL(usb_sg_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566/**
567 * usb_sg_cancel - stop scatter/gather i/o issued by usb_sg_wait()
568 * @io: request block, initialized with usb_sg_init()
569 *
570 * This stops a request after it has been started by usb_sg_wait().
571 * It can also prevents one initialized by usb_sg_init() from starting,
572 * so that call just frees resources allocated to the request.
573 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800574void usb_sg_cancel(struct usb_sg_request *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800576 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800578 spin_lock_irqsave(&io->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 /* shut everything down, if it didn't already */
581 if (!io->status) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800582 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 io->status = -ECONNRESET;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800585 spin_unlock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 for (i = 0; i < io->entries; i++) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800587 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
TĂ¼lin İzer085528e2013-05-17 10:32:35 +0300589 if (!io->urbs[i]->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 continue;
TĂ¼lin İzer085528e2013-05-17 10:32:35 +0300591 retval = usb_unlink_urb(io->urbs[i]);
Alan Sternbcf39852012-03-22 11:00:21 -0400592 if (retval != -EINPROGRESS
593 && retval != -ENODEV
594 && retval != -EBUSY
595 && retval != -EIDRM)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800596 dev_warn(&io->dev->dev, "%s, unlink --> %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800597 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800599 spin_lock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800601 spin_unlock_irqrestore(&io->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600603EXPORT_SYMBOL_GPL(usb_sg_cancel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605/*-------------------------------------------------------------------*/
606
607/**
608 * usb_get_descriptor - issues a generic GET_DESCRIPTOR request
609 * @dev: the device whose descriptor is being retrieved
610 * @type: the descriptor type (USB_DT_*)
611 * @index: the number of the descriptor
612 * @buf: where to put the descriptor
613 * @size: how big is "buf"?
614 * Context: !in_interrupt ()
615 *
616 * Gets a USB descriptor. Convenience functions exist to simplify
617 * getting some types of descriptors. Use
618 * usb_get_string() or usb_string() for USB_DT_STRING.
619 * Device (USB_DT_DEVICE) and configuration descriptors (USB_DT_CONFIG)
620 * are part of the device structure.
621 * In addition to a number of USB-standard descriptors, some
622 * devices also use class-specific or vendor-specific descriptors.
623 *
624 * This call is synchronous, and may not be used in an interrupt context.
625 *
626 * Returns the number of bytes received on success, or else the status code
627 * returned by the underlying usb_control_msg() call.
628 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800629int usb_get_descriptor(struct usb_device *dev, unsigned char type,
630 unsigned char index, void *buf, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
632 int i;
633 int result;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800634
635 memset(buf, 0, size); /* Make sure we parse really received data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 for (i = 0; i < 3; ++i) {
Alan Sternc39772d2007-08-20 10:45:28 -0400638 /* retry on length 0 or error; some devices are flakey */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
640 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
641 (type << 8) + index, 0, buf, size,
642 USB_CTRL_GET_TIMEOUT);
Alan Sternc39772d2007-08-20 10:45:28 -0400643 if (result <= 0 && result != -ETIMEDOUT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 continue;
645 if (result > 1 && ((u8 *)buf)[1] != type) {
Alan Stern67f5a4b2009-02-20 16:33:08 -0500646 result = -ENODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 continue;
648 }
649 break;
650 }
651 return result;
652}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600653EXPORT_SYMBOL_GPL(usb_get_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655/**
656 * usb_get_string - gets a string descriptor
657 * @dev: the device whose string descriptor is being retrieved
658 * @langid: code for language chosen (from string descriptor zero)
659 * @index: the number of the descriptor
660 * @buf: where to put the string
661 * @size: how big is "buf"?
662 * Context: !in_interrupt ()
663 *
664 * Retrieves a string, encoded using UTF-16LE (Unicode, 16 bits per character,
665 * in little-endian byte order).
666 * The usb_string() function will often be a convenient way to turn
667 * these strings into kernel-printable form.
668 *
669 * Strings may be referenced in device, configuration, interface, or other
670 * descriptors, and could also be used in vendor-specific ways.
671 *
672 * This call is synchronous, and may not be used in an interrupt context.
673 *
674 * Returns the number of bytes received on success, or else the status code
675 * returned by the underlying usb_control_msg() call.
676 */
Adrian Bunke266a122005-11-08 21:05:43 +0100677static int usb_get_string(struct usb_device *dev, unsigned short langid,
678 unsigned char index, void *buf, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680 int i;
681 int result;
682
683 for (i = 0; i < 3; ++i) {
684 /* retry on length 0 or stall; some devices are flakey */
685 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
686 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
687 (USB_DT_STRING << 8) + index, langid, buf, size,
688 USB_CTRL_GET_TIMEOUT);
Alan Stern67f5a4b2009-02-20 16:33:08 -0500689 if (result == 0 || result == -EPIPE)
690 continue;
691 if (result > 1 && ((u8 *) buf)[1] != USB_DT_STRING) {
692 result = -ENODATA;
693 continue;
694 }
695 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 }
697 return result;
698}
699
700static void usb_try_string_workarounds(unsigned char *buf, int *length)
701{
702 int newlength, oldlength = *length;
703
704 for (newlength = 2; newlength + 1 < oldlength; newlength += 2)
705 if (!isprint(buf[newlength]) || buf[newlength + 1])
706 break;
707
708 if (newlength > 2) {
709 buf[0] = newlength;
710 *length = newlength;
711 }
712}
713
714static int usb_string_sub(struct usb_device *dev, unsigned int langid,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800715 unsigned int index, unsigned char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
717 int rc;
718
719 /* Try to read the string descriptor by asking for the maximum
720 * possible number of bytes */
Oliver Neukum7ceec1f2007-01-26 14:26:21 +0100721 if (dev->quirks & USB_QUIRK_STRING_FETCH_255)
722 rc = -EIO;
723 else
724 rc = usb_get_string(dev, langid, index, buf, 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726 /* If that failed try to read the descriptor length, then
727 * ask for just that many bytes */
728 if (rc < 2) {
729 rc = usb_get_string(dev, langid, index, buf, 2);
730 if (rc == 2)
731 rc = usb_get_string(dev, langid, index, buf, buf[0]);
732 }
733
734 if (rc >= 2) {
735 if (!buf[0] && !buf[1])
736 usb_try_string_workarounds(buf, &rc);
737
738 /* There might be extra junk at the end of the descriptor */
739 if (buf[0] < rc)
740 rc = buf[0];
741
742 rc = rc - (rc & 1); /* force a multiple of two */
743 }
744
745 if (rc < 2)
746 rc = (rc < 0 ? rc : -EINVAL);
747
748 return rc;
749}
750
Daniel Mack0cce2ed2009-07-10 11:04:58 +0200751static int usb_get_langid(struct usb_device *dev, unsigned char *tbuf)
752{
753 int err;
754
755 if (dev->have_langid)
756 return 0;
757
758 if (dev->string_langid < 0)
759 return -EPIPE;
760
761 err = usb_string_sub(dev, 0, 0, tbuf);
762
763 /* If the string was reported but is malformed, default to english
764 * (0x0409) */
765 if (err == -ENODATA || (err > 0 && err < 4)) {
766 dev->string_langid = 0x0409;
767 dev->have_langid = 1;
768 dev_err(&dev->dev,
769 "string descriptor 0 malformed (err = %d), "
770 "defaulting to 0x%04x\n",
771 err, dev->string_langid);
772 return 0;
773 }
774
775 /* In case of all other errors, we assume the device is not able to
776 * deal with strings at all. Set string_langid to -1 in order to
777 * prevent any string to be retrieved from the device */
778 if (err < 0) {
779 dev_err(&dev->dev, "string descriptor 0 read error: %d\n",
780 err);
781 dev->string_langid = -1;
782 return -EPIPE;
783 }
784
785 /* always use the first langid listed */
786 dev->string_langid = tbuf[2] | (tbuf[3] << 8);
787 dev->have_langid = 1;
788 dev_dbg(&dev->dev, "default language 0x%04x\n",
789 dev->string_langid);
790 return 0;
791}
792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793/**
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200794 * usb_string - returns UTF-8 version of a string descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 * @dev: the device whose string descriptor is being retrieved
796 * @index: the number of the descriptor
797 * @buf: where to put the string
798 * @size: how big is "buf"?
799 * Context: !in_interrupt ()
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800800 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 * This converts the UTF-16LE encoded strings returned by devices, from
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200802 * usb_get_string_descriptor(), to null-terminated UTF-8 encoded ones
803 * that are more usable in most kernel contexts. Note that this function
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 * chooses strings in the first language supported by the device.
805 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 * This call is synchronous, and may not be used in an interrupt context.
807 *
808 * Returns length of the string (>= 0) or usb_control_msg status (< 0).
809 */
810int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
811{
812 unsigned char *tbuf;
813 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 if (dev->state == USB_STATE_SUSPENDED)
816 return -EHOSTUNREACH;
817 if (size <= 0 || !buf || !index)
818 return -EINVAL;
819 buf[0] = 0;
Alan Stern74675a52009-04-30 10:08:18 -0400820 tbuf = kmalloc(256, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 if (!tbuf)
822 return -ENOMEM;
823
Daniel Mack0cce2ed2009-07-10 11:04:58 +0200824 err = usb_get_langid(dev, tbuf);
825 if (err < 0)
826 goto errout;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 err = usb_string_sub(dev, dev->string_langid, index, tbuf);
829 if (err < 0)
830 goto errout;
831
832 size--; /* leave room for trailing NULL char in output buffer */
Alan Stern74675a52009-04-30 10:08:18 -0400833 err = utf16s_to_utf8s((wchar_t *) &tbuf[2], (err - 2) / 2,
834 UTF16_LITTLE_ENDIAN, buf, size);
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200835 buf[err] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 if (tbuf[1] != USB_DT_STRING)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800838 dev_dbg(&dev->dev,
839 "wrong descriptor type %02x for string %d (\"%s\")\n",
840 tbuf[1], index, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 errout:
843 kfree(tbuf);
844 return err;
845}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600846EXPORT_SYMBOL_GPL(usb_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200848/* one UTF-8-encoded 16-bit character has at most three bytes */
849#define MAX_USB_STRING_SIZE (127 * 3 + 1)
850
Alan Stern4f62efe2005-10-24 16:24:14 -0400851/**
852 * usb_cache_string - read a string descriptor and cache it for later use
853 * @udev: the device whose string descriptor is being read
854 * @index: the descriptor index
855 *
856 * Returns a pointer to a kmalloc'ed buffer containing the descriptor string,
857 * or NULL if the index is 0 or the string could not be read.
858 */
859char *usb_cache_string(struct usb_device *udev, int index)
860{
861 char *buf;
862 char *smallbuf = NULL;
863 int len;
864
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800865 if (index <= 0)
866 return NULL;
867
Oliver Neukumacbe2fe2010-01-12 12:32:50 +0100868 buf = kmalloc(MAX_USB_STRING_SIZE, GFP_NOIO);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800869 if (buf) {
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200870 len = usb_string(udev, index, buf, MAX_USB_STRING_SIZE);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800871 if (len > 0) {
Oliver Neukumacbe2fe2010-01-12 12:32:50 +0100872 smallbuf = kmalloc(++len, GFP_NOIO);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800873 if (!smallbuf)
Alan Stern4f62efe2005-10-24 16:24:14 -0400874 return buf;
875 memcpy(smallbuf, buf, len);
876 }
877 kfree(buf);
878 }
879 return smallbuf;
880}
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882/*
883 * usb_get_device_descriptor - (re)reads the device descriptor (usbcore)
884 * @dev: the device whose device descriptor is being updated
885 * @size: how much of the descriptor to read
886 * Context: !in_interrupt ()
887 *
888 * Updates the copy of the device descriptor stored in the device structure,
Laurent Pinchart6ab16a92006-11-07 10:16:25 +0100889 * which dedicates space for this purpose.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 *
891 * Not exported, only for use by the core. If drivers really want to read
892 * the device descriptor directly, they can call usb_get_descriptor() with
893 * type = USB_DT_DEVICE and index = 0.
894 *
895 * This call is synchronous, and may not be used in an interrupt context.
896 *
897 * Returns the number of bytes received on success, or else the status code
898 * returned by the underlying usb_control_msg() call.
899 */
900int usb_get_device_descriptor(struct usb_device *dev, unsigned int size)
901{
902 struct usb_device_descriptor *desc;
903 int ret;
904
905 if (size > sizeof(*desc))
906 return -EINVAL;
907 desc = kmalloc(sizeof(*desc), GFP_NOIO);
908 if (!desc)
909 return -ENOMEM;
910
911 ret = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, size);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800912 if (ret >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 memcpy(&dev->descriptor, desc, size);
914 kfree(desc);
915 return ret;
916}
917
918/**
919 * usb_get_status - issues a GET_STATUS call
920 * @dev: the device whose status is being checked
921 * @type: USB_RECIP_*; for device, interface, or endpoint
922 * @target: zero (for device), else interface or endpoint number
923 * @data: pointer to two bytes of bitmap data
924 * Context: !in_interrupt ()
925 *
926 * Returns device, interface, or endpoint status. Normally only of
927 * interest to see if the device is self powered, or has enabled the
928 * remote wakeup facility; or whether a bulk or interrupt endpoint
929 * is halted ("stalled").
930 *
931 * Bits in these status bitmaps are set using the SET_FEATURE request,
932 * and cleared using the CLEAR_FEATURE request. The usb_clear_halt()
933 * function should be used to clear halt ("stall") status.
934 *
935 * This call is synchronous, and may not be used in an interrupt context.
936 *
Alan Stern15b73362013-07-30 15:35:40 -0400937 * Returns 0 and the status value in *@data (in host byte order) on success,
938 * or else the status code from the underlying usb_control_msg() call.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 */
940int usb_get_status(struct usb_device *dev, int type, int target, void *data)
941{
942 int ret;
Alan Stern15b73362013-07-30 15:35:40 -0400943 __le16 *status = kmalloc(sizeof(*status), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 if (!status)
946 return -ENOMEM;
947
948 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
949 USB_REQ_GET_STATUS, USB_DIR_IN | type, 0, target, status,
950 sizeof(*status), USB_CTRL_GET_TIMEOUT);
951
Alan Stern15b73362013-07-30 15:35:40 -0400952 if (ret == 2) {
953 *(u16 *) data = le16_to_cpu(*status);
954 ret = 0;
955 } else if (ret >= 0) {
956 ret = -EIO;
957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 kfree(status);
959 return ret;
960}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600961EXPORT_SYMBOL_GPL(usb_get_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963/**
964 * usb_clear_halt - tells device to clear endpoint halt/stall condition
965 * @dev: device whose endpoint is halted
966 * @pipe: endpoint "pipe" being cleared
967 * Context: !in_interrupt ()
968 *
969 * This is used to clear halt conditions for bulk and interrupt endpoints,
970 * as reported by URB completion status. Endpoints that are halted are
971 * sometimes referred to as being "stalled". Such endpoints are unable
972 * to transmit or receive data until the halt status is cleared. Any URBs
973 * queued for such an endpoint should normally be unlinked by the driver
974 * before clearing the halt condition, as described in sections 5.7.5
975 * and 5.8.5 of the USB 2.0 spec.
976 *
977 * Note that control and isochronous endpoints don't halt, although control
978 * endpoints report "protocol stall" (for unsupported requests) using the
979 * same status code used to report a true stall.
980 *
981 * This call is synchronous, and may not be used in an interrupt context.
982 *
983 * Returns zero on success, or else the status code returned by the
984 * underlying usb_control_msg() call.
985 */
986int usb_clear_halt(struct usb_device *dev, int pipe)
987{
988 int result;
989 int endp = usb_pipeendpoint(pipe);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800990
991 if (usb_pipein(pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 endp |= USB_DIR_IN;
993
994 /* we don't care if it wasn't halted first. in fact some devices
995 * (like some ibmcam model 1 units) seem to expect hosts to make
996 * this request for iso endpoints, which can't halt!
997 */
998 result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
999 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT,
1000 USB_ENDPOINT_HALT, endp, NULL, 0,
1001 USB_CTRL_SET_TIMEOUT);
1002
1003 /* don't un-halt or force to DATA0 except on success */
1004 if (result < 0)
1005 return result;
1006
1007 /* NOTE: seems like Microsoft and Apple don't bother verifying
1008 * the clear "took", so some devices could lock up if you check...
1009 * such as the Hagiwara FlashGate DUAL. So we won't bother.
1010 *
1011 * NOTE: make sure the logic here doesn't diverge much from
1012 * the copy in usb-storage, for as long as we need two copies.
1013 */
1014
David Vrabel3444b262009-04-08 17:36:28 +00001015 usb_reset_endpoint(dev, endp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
1017 return 0;
1018}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001019EXPORT_SYMBOL_GPL(usb_clear_halt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Alan Stern3b23dd62008-12-05 14:10:34 -05001021static int create_intf_ep_devs(struct usb_interface *intf)
1022{
1023 struct usb_device *udev = interface_to_usbdev(intf);
1024 struct usb_host_interface *alt = intf->cur_altsetting;
1025 int i;
1026
1027 if (intf->ep_devs_created || intf->unregistering)
1028 return 0;
1029
1030 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
1031 (void) usb_create_ep_devs(&intf->dev, &alt->endpoint[i], udev);
1032 intf->ep_devs_created = 1;
1033 return 0;
1034}
1035
1036static void remove_intf_ep_devs(struct usb_interface *intf)
1037{
1038 struct usb_host_interface *alt = intf->cur_altsetting;
1039 int i;
1040
1041 if (!intf->ep_devs_created)
1042 return;
1043
1044 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
1045 usb_remove_ep_devs(&alt->endpoint[i]);
1046 intf->ep_devs_created = 0;
1047}
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049/**
1050 * usb_disable_endpoint -- Disable an endpoint by address
1051 * @dev: the device whose endpoint is being disabled
1052 * @epaddr: the endpoint's address. Endpoint number for output,
1053 * endpoint number + USB_DIR_IN for input
Alan Sternddeac4e2009-01-15 17:03:33 -05001054 * @reset_hardware: flag to erase any endpoint state stored in the
1055 * controller hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 *
Alan Sternddeac4e2009-01-15 17:03:33 -05001057 * Disables the endpoint for URB submission and nukes all pending URBs.
1058 * If @reset_hardware is set then also deallocates hcd/hardware state
1059 * for the endpoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 */
Alan Sternddeac4e2009-01-15 17:03:33 -05001061void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr,
1062 bool reset_hardware)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063{
1064 unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK;
1065 struct usb_host_endpoint *ep;
1066
1067 if (!dev)
1068 return;
1069
1070 if (usb_endpoint_out(epaddr)) {
1071 ep = dev->ep_out[epnum];
Alan Sternddeac4e2009-01-15 17:03:33 -05001072 if (reset_hardware)
1073 dev->ep_out[epnum] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 } else {
1075 ep = dev->ep_in[epnum];
Alan Sternddeac4e2009-01-15 17:03:33 -05001076 if (reset_hardware)
1077 dev->ep_in[epnum] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 }
Alan Sternbdd016b2007-07-30 17:05:22 -04001079 if (ep) {
1080 ep->enabled = 0;
Alan Stern95cf82f2007-09-10 11:33:05 -04001081 usb_hcd_flush_endpoint(dev, ep);
Alan Sternddeac4e2009-01-15 17:03:33 -05001082 if (reset_hardware)
1083 usb_hcd_disable_endpoint(dev, ep);
Alan Sternbdd016b2007-07-30 17:05:22 -04001084 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085}
1086
1087/**
David Vrabel3444b262009-04-08 17:36:28 +00001088 * usb_reset_endpoint - Reset an endpoint's state.
1089 * @dev: the device whose endpoint is to be reset
1090 * @epaddr: the endpoint's address. Endpoint number for output,
1091 * endpoint number + USB_DIR_IN for input
1092 *
1093 * Resets any host-side endpoint state such as the toggle bit,
1094 * sequence number or current window.
1095 */
1096void usb_reset_endpoint(struct usb_device *dev, unsigned int epaddr)
1097{
1098 unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK;
1099 struct usb_host_endpoint *ep;
1100
1101 if (usb_endpoint_out(epaddr))
1102 ep = dev->ep_out[epnum];
1103 else
1104 ep = dev->ep_in[epnum];
1105 if (ep)
1106 usb_hcd_reset_endpoint(dev, ep);
1107}
1108EXPORT_SYMBOL_GPL(usb_reset_endpoint);
1109
1110
1111/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 * usb_disable_interface -- Disable all endpoints for an interface
1113 * @dev: the device whose interface is being disabled
1114 * @intf: pointer to the interface descriptor
Alan Sternddeac4e2009-01-15 17:03:33 -05001115 * @reset_hardware: flag to erase any endpoint state stored in the
1116 * controller hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 *
1118 * Disables all the endpoints for the interface's current altsetting.
1119 */
Alan Sternddeac4e2009-01-15 17:03:33 -05001120void usb_disable_interface(struct usb_device *dev, struct usb_interface *intf,
1121 bool reset_hardware)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
1123 struct usb_host_interface *alt = intf->cur_altsetting;
1124 int i;
1125
1126 for (i = 0; i < alt->desc.bNumEndpoints; ++i) {
1127 usb_disable_endpoint(dev,
Alan Sternddeac4e2009-01-15 17:03:33 -05001128 alt->endpoint[i].desc.bEndpointAddress,
1129 reset_hardware);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
1131}
1132
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001133/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 * usb_disable_device - Disable all the endpoints for a USB device
1135 * @dev: the device whose endpoints are being disabled
1136 * @skip_ep0: 0 to disable endpoint 0, 1 to skip it.
1137 *
1138 * Disables all the device's endpoints, potentially including endpoint 0.
1139 * Deallocates hcd/hardware state for the endpoints (nuking all or most
1140 * pending urbs) and usbcore state for the interfaces, so that usbcore
1141 * must usb_set_configuration() before any interfaces could be used.
1142 */
1143void usb_disable_device(struct usb_device *dev, int skip_ep0)
1144{
1145 int i;
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001146 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 /* getting rid of interfaces will disconnect
1149 * any drivers bound to them (a key side effect)
1150 */
1151 if (dev->actconfig) {
Alan Sternca5c4852011-07-06 17:03:45 -04001152 /*
1153 * FIXME: In order to avoid self-deadlock involving the
1154 * bandwidth_mutex, we have to mark all the interfaces
1155 * before unregistering any of them.
1156 */
1157 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++)
1158 dev->actconfig->interface[i]->unregistering = 1;
1159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
1161 struct usb_interface *interface;
1162
Alan Stern86d30742005-07-29 12:17:16 -07001163 /* remove this interface if it has been registered */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 interface = dev->actconfig->interface[i];
Daniel Ritzd305ef52005-09-22 00:47:24 -07001165 if (!device_is_registered(&interface->dev))
Alan Stern86d30742005-07-29 12:17:16 -07001166 continue;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001167 dev_dbg(&dev->dev, "unregistering interface %s\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001168 dev_name(&interface->dev));
Alan Stern3b23dd62008-12-05 14:10:34 -05001169 remove_intf_ep_devs(interface);
Alan Stern1a211752008-07-30 11:31:50 -04001170 device_del(&interface->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 }
1172
1173 /* Now that the interfaces are unbound, nobody should
1174 * try to access them.
1175 */
1176 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001177 put_device(&dev->actconfig->interface[i]->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 dev->actconfig->interface[i] = NULL;
1179 }
Sarah Sharp24971912012-07-05 14:09:30 -07001180 usb_unlocked_disable_lpm(dev);
Sarah Sharpf74631e2012-06-25 12:08:08 -07001181 usb_disable_ltm(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 dev->actconfig = NULL;
1183 if (dev->state == USB_STATE_CONFIGURED)
1184 usb_set_device_state(dev, USB_STATE_ADDRESS);
1185 }
Alan Stern80f0cf32010-09-30 15:16:23 -04001186
1187 dev_dbg(&dev->dev, "%s nuking %s URBs\n", __func__,
1188 skip_ep0 ? "non-ep0" : "all");
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001189 if (hcd->driver->check_bandwidth) {
1190 /* First pass: Cancel URBs, leave endpoint pointers intact. */
1191 for (i = skip_ep0; i < 16; ++i) {
1192 usb_disable_endpoint(dev, i, false);
1193 usb_disable_endpoint(dev, i + USB_DIR_IN, false);
1194 }
1195 /* Remove endpoints from the host controller internal state */
Alan Stern8963c482012-04-17 15:22:39 -04001196 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001197 usb_hcd_alloc_bandwidth(dev, NULL, NULL, NULL);
Alan Stern8963c482012-04-17 15:22:39 -04001198 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001199 /* Second pass: remove endpoint pointers */
1200 }
Alan Stern80f0cf32010-09-30 15:16:23 -04001201 for (i = skip_ep0; i < 16; ++i) {
1202 usb_disable_endpoint(dev, i, true);
1203 usb_disable_endpoint(dev, i + USB_DIR_IN, true);
1204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001207/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 * usb_enable_endpoint - Enable an endpoint for USB communications
1209 * @dev: the device whose interface is being enabled
1210 * @ep: the endpoint
David Vrabel3444b262009-04-08 17:36:28 +00001211 * @reset_ep: flag to reset the endpoint state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 *
David Vrabel3444b262009-04-08 17:36:28 +00001213 * Resets the endpoint state if asked, and sets dev->ep_{in,out} pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 * For control endpoints, both the input and output sides are handled.
1215 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001216void usb_enable_endpoint(struct usb_device *dev, struct usb_host_endpoint *ep,
David Vrabel3444b262009-04-08 17:36:28 +00001217 bool reset_ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218{
Alan Sternbdd016b2007-07-30 17:05:22 -04001219 int epnum = usb_endpoint_num(&ep->desc);
1220 int is_out = usb_endpoint_dir_out(&ep->desc);
1221 int is_control = usb_endpoint_xfer_control(&ep->desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
David Vrabel3444b262009-04-08 17:36:28 +00001223 if (reset_ep)
1224 usb_hcd_reset_endpoint(dev, ep);
1225 if (is_out || is_control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 dev->ep_out[epnum] = ep;
David Vrabel3444b262009-04-08 17:36:28 +00001227 if (!is_out || is_control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 dev->ep_in[epnum] = ep;
Alan Sternbdd016b2007-07-30 17:05:22 -04001229 ep->enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230}
1231
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001232/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 * usb_enable_interface - Enable all the endpoints for an interface
1234 * @dev: the device whose interface is being enabled
1235 * @intf: pointer to the interface descriptor
David Vrabel3444b262009-04-08 17:36:28 +00001236 * @reset_eps: flag to reset the endpoints' state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 *
1238 * Enables all the endpoints for the interface's current altsetting.
1239 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001240void usb_enable_interface(struct usb_device *dev,
David Vrabel3444b262009-04-08 17:36:28 +00001241 struct usb_interface *intf, bool reset_eps)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
1243 struct usb_host_interface *alt = intf->cur_altsetting;
1244 int i;
1245
1246 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
David Vrabel3444b262009-04-08 17:36:28 +00001247 usb_enable_endpoint(dev, &alt->endpoint[i], reset_eps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248}
1249
1250/**
1251 * usb_set_interface - Makes a particular alternate setting be current
1252 * @dev: the device whose interface is being updated
1253 * @interface: the interface being updated
1254 * @alternate: the setting being chosen.
1255 * Context: !in_interrupt ()
1256 *
1257 * This is used to enable data transfers on interfaces that may not
1258 * be enabled by default. Not all devices support such configurability.
1259 * Only the driver bound to an interface may change its setting.
1260 *
1261 * Within any given configuration, each interface may have several
1262 * alternative settings. These are often used to control levels of
1263 * bandwidth consumption. For example, the default setting for a high
1264 * speed interrupt endpoint may not send more than 64 bytes per microframe,
1265 * while interrupt transfers of up to 3KBytes per microframe are legal.
1266 * Also, isochronous endpoints may never be part of an
1267 * interface's default setting. To access such bandwidth, alternate
1268 * interface settings must be made current.
1269 *
1270 * Note that in the Linux USB subsystem, bandwidth associated with
1271 * an endpoint in a given alternate setting is not reserved until an URB
1272 * is submitted that needs that bandwidth. Some other operating systems
1273 * allocate bandwidth early, when a configuration is chosen.
1274 *
1275 * This call is synchronous, and may not be used in an interrupt context.
1276 * Also, drivers must not change altsettings while urbs are scheduled for
1277 * endpoints in that interface; all such urbs must first be completed
1278 * (perhaps forced by unlinking).
1279 *
1280 * Returns zero on success, or else the status code returned by the
1281 * underlying usb_control_msg() call.
1282 */
1283int usb_set_interface(struct usb_device *dev, int interface, int alternate)
1284{
1285 struct usb_interface *iface;
1286 struct usb_host_interface *alt;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001287 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 int ret;
1289 int manual = 0;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001290 unsigned int epaddr;
1291 unsigned int pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
1293 if (dev->state == USB_STATE_SUSPENDED)
1294 return -EHOSTUNREACH;
1295
1296 iface = usb_ifnum_to_if(dev, interface);
1297 if (!iface) {
1298 dev_dbg(&dev->dev, "selecting invalid interface %d\n",
1299 interface);
1300 return -EINVAL;
1301 }
Alan Sterne534c5b2011-07-01 16:43:02 -04001302 if (iface->unregistering)
1303 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 alt = usb_altnum_to_altsetting(iface, alternate);
1306 if (!alt) {
Thadeu Lima de Souza Cascardo385f6902010-01-17 19:24:03 -02001307 dev_warn(&dev->dev, "selecting invalid altsetting %d\n",
Greg Kroah-Hartman3b6004f2008-08-14 09:37:34 -07001308 alternate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 return -EINVAL;
1310 }
1311
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001312 /* Make sure we have enough bandwidth for this alternate interface.
1313 * Remove the current alt setting and add the new alt setting.
1314 */
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001315 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp83060952012-05-02 14:25:52 -07001316 /* Disable LPM, and re-enable it once the new alt setting is installed,
1317 * so that the xHCI driver can recalculate the U1/U2 timeouts.
1318 */
1319 if (usb_disable_lpm(dev)) {
1320 dev_err(&iface->dev, "%s Failed to disable LPM\n.", __func__);
1321 mutex_unlock(hcd->bandwidth_mutex);
1322 return -ENOMEM;
1323 }
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001324 ret = usb_hcd_alloc_bandwidth(dev, NULL, iface->cur_altsetting, alt);
1325 if (ret < 0) {
1326 dev_info(&dev->dev, "Not enough bandwidth for altsetting %d\n",
1327 alternate);
Sarah Sharp83060952012-05-02 14:25:52 -07001328 usb_enable_lpm(dev);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001329 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001330 return ret;
1331 }
1332
Alan Stern392e1d92008-03-11 10:20:12 -04001333 if (dev->quirks & USB_QUIRK_NO_SET_INTF)
1334 ret = -EPIPE;
1335 else
1336 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
1338 alternate, interface, NULL, 0, 5000);
1339
1340 /* 9.4.10 says devices don't need this and are free to STALL the
1341 * request if the interface only has one alternate setting.
1342 */
1343 if (ret == -EPIPE && iface->num_altsetting == 1) {
1344 dev_dbg(&dev->dev,
1345 "manual set_interface for iface %d, alt %d\n",
1346 interface, alternate);
1347 manual = 1;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001348 } else if (ret < 0) {
1349 /* Re-instate the old alt setting */
1350 usb_hcd_alloc_bandwidth(dev, NULL, alt, iface->cur_altsetting);
Sarah Sharp83060952012-05-02 14:25:52 -07001351 usb_enable_lpm(dev);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001352 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 return ret;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001354 }
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001355 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357 /* FIXME drivers shouldn't need to replicate/bugfix the logic here
1358 * when they implement async or easily-killable versions of this or
1359 * other "should-be-internal" functions (like clear_halt).
1360 * should hcd+usbcore postprocess control requests?
1361 */
1362
1363 /* prevent submissions using previous endpoint settings */
Alan Stern3b23dd62008-12-05 14:10:34 -05001364 if (iface->cur_altsetting != alt) {
1365 remove_intf_ep_devs(iface);
Alan Stern0e6c8e82005-10-24 15:33:03 -04001366 usb_remove_sysfs_intf_files(iface);
Alan Stern3b23dd62008-12-05 14:10:34 -05001367 }
Alan Sternddeac4e2009-01-15 17:03:33 -05001368 usb_disable_interface(dev, iface, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 iface->cur_altsetting = alt;
1371
Sarah Sharp83060952012-05-02 14:25:52 -07001372 /* Now that the interface is installed, re-enable LPM. */
1373 usb_unlocked_enable_lpm(dev);
1374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 /* If the interface only has one altsetting and the device didn't
David Brownella81e7ec2005-04-18 17:39:25 -07001376 * accept the request, we attempt to carry out the equivalent action
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 * by manually clearing the HALT feature for each endpoint in the
1378 * new altsetting.
1379 */
1380 if (manual) {
1381 int i;
1382
1383 for (i = 0; i < alt->desc.bNumEndpoints; i++) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001384 epaddr = alt->endpoint[i].desc.bEndpointAddress;
1385 pipe = __create_pipe(dev,
1386 USB_ENDPOINT_NUMBER_MASK & epaddr) |
1387 (usb_endpoint_out(epaddr) ?
1388 USB_DIR_OUT : USB_DIR_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390 usb_clear_halt(dev, pipe);
1391 }
1392 }
1393
1394 /* 9.1.1.5: reset toggles for all endpoints in the new altsetting
1395 *
1396 * Note:
1397 * Despite EP0 is always present in all interfaces/AS, the list of
1398 * endpoints from the descriptor does not contain EP0. Due to its
1399 * omnipresence one might expect EP0 being considered "affected" by
1400 * any SetInterface request and hence assume toggles need to be reset.
1401 * However, EP0 toggles are re-synced for every individual transfer
1402 * during the SETUP stage - hence EP0 toggles are "don't care" here.
1403 * (Likewise, EP0 never "halts" on well designed devices.)
1404 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001405 usb_enable_interface(dev, iface, true);
Alan Stern3b23dd62008-12-05 14:10:34 -05001406 if (device_is_registered(&iface->dev)) {
Alan Stern0e6c8e82005-10-24 15:33:03 -04001407 usb_create_sysfs_intf_files(iface);
Alan Stern3b23dd62008-12-05 14:10:34 -05001408 create_intf_ep_devs(iface);
1409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 return 0;
1411}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001412EXPORT_SYMBOL_GPL(usb_set_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
1414/**
1415 * usb_reset_configuration - lightweight device reset
1416 * @dev: the device whose configuration is being reset
1417 *
1418 * This issues a standard SET_CONFIGURATION request to the device using
1419 * the current configuration. The effect is to reset most USB-related
1420 * state in the device, including interface altsettings (reset to zero),
David Vrabel3444b262009-04-08 17:36:28 +00001421 * endpoint halts (cleared), and endpoint state (only for bulk and interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 * endpoints). Other usbcore state is unchanged, including bindings of
1423 * usb device drivers to interfaces.
1424 *
1425 * Because this affects multiple interfaces, avoid using this with composite
1426 * (multi-interface) devices. Instead, the driver for each interface may
David Brownella81e7ec2005-04-18 17:39:25 -07001427 * use usb_set_interface() on the interfaces it claims. Be careful though;
1428 * some devices don't support the SET_INTERFACE request, and others won't
David Vrabel3444b262009-04-08 17:36:28 +00001429 * reset all the interface state (notably endpoint state). Resetting the whole
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 * configuration would affect other drivers' interfaces.
1431 *
1432 * The caller must own the device lock.
1433 *
1434 * Returns zero on success, else a negative error code.
1435 */
1436int usb_reset_configuration(struct usb_device *dev)
1437{
1438 int i, retval;
1439 struct usb_host_config *config;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001440 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442 if (dev->state == USB_STATE_SUSPENDED)
1443 return -EHOSTUNREACH;
1444
1445 /* caller must have locked the device and must own
1446 * the usb bus readlock (so driver bindings are stable);
1447 * calls during probe() are fine
1448 */
1449
1450 for (i = 1; i < 16; ++i) {
Alan Sternddeac4e2009-01-15 17:03:33 -05001451 usb_disable_endpoint(dev, i, true);
1452 usb_disable_endpoint(dev, i + USB_DIR_IN, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 }
1454
1455 config = dev->actconfig;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001456 retval = 0;
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001457 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp83060952012-05-02 14:25:52 -07001458 /* Disable LPM, and re-enable it once the configuration is reset, so
1459 * that the xHCI driver can recalculate the U1/U2 timeouts.
1460 */
1461 if (usb_disable_lpm(dev)) {
1462 dev_err(&dev->dev, "%s Failed to disable LPM\n.", __func__);
1463 mutex_unlock(hcd->bandwidth_mutex);
1464 return -ENOMEM;
1465 }
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001466 /* Make sure we have enough bandwidth for each alternate setting 0 */
1467 for (i = 0; i < config->desc.bNumInterfaces; i++) {
1468 struct usb_interface *intf = config->interface[i];
1469 struct usb_host_interface *alt;
1470
1471 alt = usb_altnum_to_altsetting(intf, 0);
1472 if (!alt)
1473 alt = &intf->altsetting[0];
1474 if (alt != intf->cur_altsetting)
1475 retval = usb_hcd_alloc_bandwidth(dev, NULL,
1476 intf->cur_altsetting, alt);
1477 if (retval < 0)
1478 break;
1479 }
1480 /* If not, reinstate the old alternate settings */
1481 if (retval < 0) {
1482reset_old_alts:
Roel Kluine4a3d942010-02-18 02:36:23 +01001483 for (i--; i >= 0; i--) {
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001484 struct usb_interface *intf = config->interface[i];
1485 struct usb_host_interface *alt;
1486
1487 alt = usb_altnum_to_altsetting(intf, 0);
1488 if (!alt)
1489 alt = &intf->altsetting[0];
1490 if (alt != intf->cur_altsetting)
1491 usb_hcd_alloc_bandwidth(dev, NULL,
1492 alt, intf->cur_altsetting);
1493 }
Sarah Sharp83060952012-05-02 14:25:52 -07001494 usb_enable_lpm(dev);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001495 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001496 return retval;
1497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1499 USB_REQ_SET_CONFIGURATION, 0,
1500 config->desc.bConfigurationValue, 0,
1501 NULL, 0, USB_CTRL_SET_TIMEOUT);
Alan Stern0e6c8e82005-10-24 15:33:03 -04001502 if (retval < 0)
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001503 goto reset_old_alts;
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001504 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 /* re-init hc/hcd interface/endpoint state */
1507 for (i = 0; i < config->desc.bNumInterfaces; i++) {
1508 struct usb_interface *intf = config->interface[i];
1509 struct usb_host_interface *alt;
1510
1511 alt = usb_altnum_to_altsetting(intf, 0);
1512
1513 /* No altsetting 0? We'll assume the first altsetting.
1514 * We could use a GetInterface call, but if a device is
1515 * so non-compliant that it doesn't have altsetting 0
1516 * then I wouldn't trust its reply anyway.
1517 */
1518 if (!alt)
1519 alt = &intf->altsetting[0];
1520
Alan Stern3b23dd62008-12-05 14:10:34 -05001521 if (alt != intf->cur_altsetting) {
1522 remove_intf_ep_devs(intf);
1523 usb_remove_sysfs_intf_files(intf);
1524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 intf->cur_altsetting = alt;
Alan Stern2caf7fc2008-12-31 11:31:33 -05001526 usb_enable_interface(dev, intf, true);
Alan Stern3b23dd62008-12-05 14:10:34 -05001527 if (device_is_registered(&intf->dev)) {
Alan Stern0e6c8e82005-10-24 15:33:03 -04001528 usb_create_sysfs_intf_files(intf);
Alan Stern3b23dd62008-12-05 14:10:34 -05001529 create_intf_ep_devs(intf);
1530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 }
Sarah Sharp83060952012-05-02 14:25:52 -07001532 /* Now that the interfaces are installed, re-enable LPM. */
1533 usb_unlocked_enable_lpm(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 return 0;
1535}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001536EXPORT_SYMBOL_GPL(usb_reset_configuration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Greg Kroah-Hartmanb0e396e2007-08-02 22:44:27 -06001538static void usb_release_interface(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539{
1540 struct usb_interface *intf = to_usb_interface(dev);
1541 struct usb_interface_cache *intfc =
1542 altsetting_to_usb_interface_cache(intf->altsetting);
1543
1544 kref_put(&intfc->ref, usb_release_interface_cache);
1545 kfree(intf);
1546}
1547
Kay Sievers7eff2e72007-08-14 15:15:12 +02001548static int usb_if_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001549{
1550 struct usb_device *usb_dev;
1551 struct usb_interface *intf;
1552 struct usb_host_interface *alt;
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001553
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001554 intf = to_usb_interface(dev);
1555 usb_dev = interface_to_usbdev(intf);
1556 alt = intf->cur_altsetting;
1557
Kay Sievers7eff2e72007-08-14 15:15:12 +02001558 if (add_uevent_var(env, "INTERFACE=%d/%d/%d",
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001559 alt->desc.bInterfaceClass,
1560 alt->desc.bInterfaceSubClass,
1561 alt->desc.bInterfaceProtocol))
1562 return -ENOMEM;
1563
Kay Sievers7eff2e72007-08-14 15:15:12 +02001564 if (add_uevent_var(env,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001565 "MODALIAS=usb:"
Bjørn Mork81df2d52012-05-18 21:27:43 +02001566 "v%04Xp%04Xd%04Xdc%02Xdsc%02Xdp%02Xic%02Xisc%02Xip%02Xin%02X",
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001567 le16_to_cpu(usb_dev->descriptor.idVendor),
1568 le16_to_cpu(usb_dev->descriptor.idProduct),
1569 le16_to_cpu(usb_dev->descriptor.bcdDevice),
1570 usb_dev->descriptor.bDeviceClass,
1571 usb_dev->descriptor.bDeviceSubClass,
1572 usb_dev->descriptor.bDeviceProtocol,
1573 alt->desc.bInterfaceClass,
1574 alt->desc.bInterfaceSubClass,
Bjørn Mork81df2d52012-05-18 21:27:43 +02001575 alt->desc.bInterfaceProtocol,
1576 alt->desc.bInterfaceNumber))
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001577 return -ENOMEM;
1578
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001579 return 0;
1580}
1581
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001582struct device_type usb_if_device_type = {
1583 .name = "usb_interface",
1584 .release = usb_release_interface,
1585 .uevent = usb_if_uevent,
1586};
1587
Craig W. Nadler165fe972007-06-15 23:14:35 -04001588static struct usb_interface_assoc_descriptor *find_iad(struct usb_device *dev,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001589 struct usb_host_config *config,
1590 u8 inum)
Craig W. Nadler165fe972007-06-15 23:14:35 -04001591{
1592 struct usb_interface_assoc_descriptor *retval = NULL;
1593 struct usb_interface_assoc_descriptor *intf_assoc;
1594 int first_intf;
1595 int last_intf;
1596 int i;
1597
1598 for (i = 0; (i < USB_MAXIADS && config->intf_assoc[i]); i++) {
1599 intf_assoc = config->intf_assoc[i];
1600 if (intf_assoc->bInterfaceCount == 0)
1601 continue;
1602
1603 first_intf = intf_assoc->bFirstInterface;
1604 last_intf = first_intf + (intf_assoc->bInterfaceCount - 1);
1605 if (inum >= first_intf && inum <= last_intf) {
1606 if (!retval)
1607 retval = intf_assoc;
1608 else
1609 dev_err(&dev->dev, "Interface #%d referenced"
1610 " by multiple IADs\n", inum);
1611 }
1612 }
1613
1614 return retval;
1615}
1616
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001617
1618/*
1619 * Internal function to queue a device reset
1620 *
1621 * This is initialized into the workstruct in 'struct
1622 * usb_device->reset_ws' that is launched by
1623 * message.c:usb_set_configuration() when initializing each 'struct
1624 * usb_interface'.
1625 *
1626 * It is safe to get the USB device without reference counts because
1627 * the life cycle of @iface is bound to the life cycle of @udev. Then,
1628 * this function will be ran only if @iface is alive (and before
1629 * freeing it any scheduled instances of it will have been cancelled).
1630 *
1631 * We need to set a flag (usb_dev->reset_running) because when we call
1632 * the reset, the interfaces might be unbound. The current interface
1633 * cannot try to remove the queued work as it would cause a deadlock
1634 * (you cannot remove your work from within your executing
1635 * workqueue). This flag lets it know, so that
1636 * usb_cancel_queued_reset() doesn't try to do it.
1637 *
1638 * See usb_queue_reset_device() for more details
1639 */
Felipe Balbi09e81f32009-12-04 15:47:44 +02001640static void __usb_queue_reset_device(struct work_struct *ws)
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001641{
1642 int rc;
1643 struct usb_interface *iface =
1644 container_of(ws, struct usb_interface, reset_ws);
1645 struct usb_device *udev = interface_to_usbdev(iface);
1646
1647 rc = usb_lock_device_for_reset(udev, iface);
1648 if (rc >= 0) {
1649 iface->reset_running = 1;
1650 usb_reset_device(udev);
1651 iface->reset_running = 0;
1652 usb_unlock_device(udev);
1653 }
1654}
1655
1656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657/*
1658 * usb_set_configuration - Makes a particular device setting be current
1659 * @dev: the device whose configuration is being updated
1660 * @configuration: the configuration being chosen.
1661 * Context: !in_interrupt(), caller owns the device lock
1662 *
1663 * This is used to enable non-default device modes. Not all devices
1664 * use this kind of configurability; many devices only have one
1665 * configuration.
1666 *
Alan Stern3f141e22007-02-08 16:40:43 -05001667 * @configuration is the value of the configuration to be installed.
1668 * According to the USB spec (e.g. section 9.1.1.5), configuration values
1669 * must be non-zero; a value of zero indicates that the device in
1670 * unconfigured. However some devices erroneously use 0 as one of their
1671 * configuration values. To help manage such devices, this routine will
1672 * accept @configuration = -1 as indicating the device should be put in
1673 * an unconfigured state.
1674 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 * USB device configurations may affect Linux interoperability,
1676 * power consumption and the functionality available. For example,
1677 * the default configuration is limited to using 100mA of bus power,
1678 * so that when certain device functionality requires more power,
1679 * and the device is bus powered, that functionality should be in some
1680 * non-default device configuration. Other device modes may also be
1681 * reflected as configuration options, such as whether two ISDN
1682 * channels are available independently; and choosing between open
1683 * standard device protocols (like CDC) or proprietary ones.
1684 *
Inaky Perez-Gonzalez16bbab22007-07-31 20:34:01 -07001685 * Note that a non-authorized device (dev->authorized == 0) will only
1686 * be put in unconfigured mode.
1687 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 * Note that USB has an additional level of device configurability,
1689 * associated with interfaces. That configurability is accessed using
1690 * usb_set_interface().
1691 *
1692 * This call is synchronous. The calling context must be able to sleep,
1693 * must own the device lock, and must not hold the driver model's USB
Ming Lei6d243e52008-06-17 23:24:08 +08001694 * bus mutex; usb interface driver probe() methods cannot use this routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 *
1696 * Returns zero on success, or else the status code returned by the
Steven Cole093cf722005-05-03 19:07:24 -06001697 * underlying call that failed. On successful completion, each interface
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 * in the original device configuration has been destroyed, and each one
1699 * in the new configuration has been probed by all relevant usb device
1700 * drivers currently known to the kernel.
1701 */
1702int usb_set_configuration(struct usb_device *dev, int configuration)
1703{
1704 int i, ret;
1705 struct usb_host_config *cp = NULL;
1706 struct usb_interface **new_interfaces = NULL;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001707 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 int n, nintf;
1709
Inaky Perez-Gonzalez16bbab22007-07-31 20:34:01 -07001710 if (dev->authorized == 0 || configuration == -1)
Alan Stern3f141e22007-02-08 16:40:43 -05001711 configuration = 0;
1712 else {
1713 for (i = 0; i < dev->descriptor.bNumConfigurations; i++) {
1714 if (dev->config[i].desc.bConfigurationValue ==
1715 configuration) {
1716 cp = &dev->config[i];
1717 break;
1718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 }
1720 }
1721 if ((!cp && configuration != 0))
1722 return -EINVAL;
1723
1724 /* The USB spec says configuration 0 means unconfigured.
1725 * But if a device includes a configuration numbered 0,
1726 * we will accept it as a correctly configured state.
Alan Stern3f141e22007-02-08 16:40:43 -05001727 * Use -1 if you really want to unconfigure the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 */
1729 if (cp && configuration == 0)
1730 dev_warn(&dev->dev, "config 0 descriptor??\n");
1731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 /* Allocate memory for new interfaces before doing anything else,
1733 * so that if we run out then nothing will have changed. */
1734 n = nintf = 0;
1735 if (cp) {
1736 nintf = cp->desc.bNumInterfaces;
1737 new_interfaces = kmalloc(nintf * sizeof(*new_interfaces),
Oliver Neukumacbe2fe2010-01-12 12:32:50 +01001738 GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 if (!new_interfaces) {
Joe Perches898eb712007-10-18 03:06:30 -07001740 dev_err(&dev->dev, "Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 return -ENOMEM;
1742 }
1743
1744 for (; n < nintf; ++n) {
Alan Stern0a1ef3b2005-10-24 15:38:24 -04001745 new_interfaces[n] = kzalloc(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 sizeof(struct usb_interface),
Oliver Neukumacbe2fe2010-01-12 12:32:50 +01001747 GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 if (!new_interfaces[n]) {
Joe Perches898eb712007-10-18 03:06:30 -07001749 dev_err(&dev->dev, "Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 ret = -ENOMEM;
1751free_interfaces:
1752 while (--n >= 0)
1753 kfree(new_interfaces[n]);
1754 kfree(new_interfaces);
1755 return ret;
1756 }
1757 }
Alan Stern6ad07122006-06-01 13:59:16 -04001758
Sebastian Andrzej Siewior8d8479d2012-12-18 15:25:46 +01001759 i = dev->bus_mA - usb_get_max_power(dev, cp);
Alan Stern6ad07122006-06-01 13:59:16 -04001760 if (i < 0)
1761 dev_warn(&dev->dev, "new config #%d exceeds power "
1762 "limit by %dmA\n",
1763 configuration, -i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 }
1765
Alan Stern01d883d2006-08-30 15:47:18 -04001766 /* Wake up the device so we can send it the Set-Config request */
Alan Stern94fcda12006-11-20 11:38:46 -05001767 ret = usb_autoresume_device(dev);
Alan Stern01d883d2006-08-30 15:47:18 -04001768 if (ret)
1769 goto free_interfaces;
1770
Thadeu Lima de Souza Cascardo07919712010-08-28 03:06:29 -03001771 /* if it's already configured, clear out old state first.
1772 * getting rid of old interfaces means unbinding their drivers.
1773 */
1774 if (dev->state != USB_STATE_ADDRESS)
1775 usb_disable_device(dev, 1); /* Skip ep0 */
1776
1777 /* Get rid of pending async Set-Config requests for this device */
1778 cancel_async_set_config(dev);
1779
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001780 /* Make sure we have bandwidth (and available HCD resources) for this
1781 * configuration. Remove endpoints from the schedule if we're dropping
1782 * this configuration to set configuration 0. After this point, the
1783 * host controller will not allow submissions to dropped endpoints. If
1784 * this call fails, the device state is unchanged.
1785 */
Alan Stern8963c482012-04-17 15:22:39 -04001786 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp83060952012-05-02 14:25:52 -07001787 /* Disable LPM, and re-enable it once the new configuration is
1788 * installed, so that the xHCI driver can recalculate the U1/U2
1789 * timeouts.
1790 */
Sarah Sharp9cf65992012-07-03 23:22:38 -07001791 if (dev->actconfig && usb_disable_lpm(dev)) {
Sarah Sharp83060952012-05-02 14:25:52 -07001792 dev_err(&dev->dev, "%s Failed to disable LPM\n.", __func__);
1793 mutex_unlock(hcd->bandwidth_mutex);
Sachin Kamatc058f7a2012-11-21 11:01:19 +05301794 ret = -ENOMEM;
1795 goto free_interfaces;
Sarah Sharp83060952012-05-02 14:25:52 -07001796 }
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001797 ret = usb_hcd_alloc_bandwidth(dev, cp, NULL, NULL);
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001798 if (ret < 0) {
Sarah Sharp9cf65992012-07-03 23:22:38 -07001799 if (dev->actconfig)
1800 usb_enable_lpm(dev);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001801 mutex_unlock(hcd->bandwidth_mutex);
Thadeu Lima de Souza Cascardo07919712010-08-28 03:06:29 -03001802 usb_autosuspend_device(dev);
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001803 goto free_interfaces;
1804 }
1805
Alan Stern36caff52012-11-07 10:31:30 -05001806 /*
1807 * Initialize the new interface structures and the
Alan Stern6ad07122006-06-01 13:59:16 -04001808 * hc/hcd/usbcore interface/endpoint state.
1809 */
1810 for (i = 0; i < nintf; ++i) {
1811 struct usb_interface_cache *intfc;
1812 struct usb_interface *intf;
1813 struct usb_host_interface *alt;
1814
1815 cp->interface[i] = intf = new_interfaces[i];
1816 intfc = cp->intf_cache[i];
1817 intf->altsetting = intfc->altsetting;
1818 intf->num_altsetting = intfc->num_altsetting;
1819 kref_get(&intfc->ref);
1820
1821 alt = usb_altnum_to_altsetting(intf, 0);
1822
1823 /* No altsetting 0? We'll assume the first altsetting.
1824 * We could use a GetInterface call, but if a device is
1825 * so non-compliant that it doesn't have altsetting 0
1826 * then I wouldn't trust its reply anyway.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 */
Alan Stern6ad07122006-06-01 13:59:16 -04001828 if (!alt)
1829 alt = &intf->altsetting[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Daniel Mackb3a3dd02012-06-12 20:23:52 +02001831 intf->intf_assoc =
1832 find_iad(dev, cp, alt->desc.bInterfaceNumber);
Alan Stern6ad07122006-06-01 13:59:16 -04001833 intf->cur_altsetting = alt;
Alan Stern2caf7fc2008-12-31 11:31:33 -05001834 usb_enable_interface(dev, intf, true);
Alan Stern6ad07122006-06-01 13:59:16 -04001835 intf->dev.parent = &dev->dev;
1836 intf->dev.driver = NULL;
1837 intf->dev.bus = &usb_bus_type;
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001838 intf->dev.type = &usb_if_device_type;
Alan Stern2e5f10e2008-04-30 15:37:19 -04001839 intf->dev.groups = usb_interface_groups;
Alan Stern6ad07122006-06-01 13:59:16 -04001840 intf->dev.dma_mask = dev->dev.dma_mask;
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001841 INIT_WORK(&intf->reset_ws, __usb_queue_reset_device);
Alan Stern0026e002010-09-21 15:01:53 -04001842 intf->minor = -1;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001843 device_initialize(&intf->dev);
Ming Lei63defa72010-11-15 15:56:54 -05001844 pm_runtime_no_callbacks(&intf->dev);
Kay Sievers0031a062008-05-02 06:02:41 +02001845 dev_set_name(&intf->dev, "%d-%s:%d.%d",
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001846 dev->bus->busnum, dev->devpath,
1847 configuration, alt->desc.bInterfaceNumber);
Alan Stern6ad07122006-06-01 13:59:16 -04001848 }
1849 kfree(new_interfaces);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Alan Stern36caff52012-11-07 10:31:30 -05001851 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1852 USB_REQ_SET_CONFIGURATION, 0, configuration, 0,
1853 NULL, 0, USB_CTRL_SET_TIMEOUT);
1854 if (ret < 0 && cp) {
1855 /*
1856 * All the old state is gone, so what else can we do?
1857 * The device is probably useless now anyway.
1858 */
1859 usb_hcd_alloc_bandwidth(dev, NULL, NULL, NULL);
1860 for (i = 0; i < nintf; ++i) {
1861 usb_disable_interface(dev, cp->interface[i], true);
1862 put_device(&cp->interface[i]->dev);
1863 cp->interface[i] = NULL;
1864 }
1865 cp = NULL;
1866 }
1867
1868 dev->actconfig = cp;
1869 mutex_unlock(hcd->bandwidth_mutex);
1870
1871 if (!cp) {
1872 usb_set_device_state(dev, USB_STATE_ADDRESS);
1873
1874 /* Leave LPM disabled while the device is unconfigured. */
1875 usb_autosuspend_device(dev);
1876 return ret;
1877 }
1878 usb_set_device_state(dev, USB_STATE_CONFIGURED);
1879
Alan Stern1662e3a2009-03-18 14:28:53 -04001880 if (cp->string == NULL &&
1881 !(dev->quirks & USB_QUIRK_CONFIG_INTF_STRINGS))
Alan Stern6ad07122006-06-01 13:59:16 -04001882 cp->string = usb_cache_string(dev, cp->desc.iConfiguration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
Sarah Sharp83060952012-05-02 14:25:52 -07001884 /* Now that the interfaces are installed, re-enable LPM. */
1885 usb_unlocked_enable_lpm(dev);
Sarah Sharpf74631e2012-06-25 12:08:08 -07001886 /* Enable LTM if it was turned off by usb_disable_device. */
1887 usb_enable_ltm(dev);
Sarah Sharp83060952012-05-02 14:25:52 -07001888
Alan Stern6ad07122006-06-01 13:59:16 -04001889 /* Now that all the interfaces are set up, register them
1890 * to trigger binding of drivers to interfaces. probe()
1891 * routines may install different altsettings and may
1892 * claim() any interfaces not yet bound. Many class drivers
1893 * need that: CDC, audio, video, etc.
1894 */
1895 for (i = 0; i < nintf; ++i) {
1896 struct usb_interface *intf = cp->interface[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001898 dev_dbg(&dev->dev,
Alan Stern6ad07122006-06-01 13:59:16 -04001899 "adding %s (config #%d, interface %d)\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001900 dev_name(&intf->dev), configuration,
Alan Stern6ad07122006-06-01 13:59:16 -04001901 intf->cur_altsetting->desc.bInterfaceNumber);
Rafael J. Wysocki927bc912010-02-08 19:18:16 +01001902 device_enable_async_suspend(&intf->dev);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001903 ret = device_add(&intf->dev);
Alan Stern6ad07122006-06-01 13:59:16 -04001904 if (ret != 0) {
1905 dev_err(&dev->dev, "device_add(%s) --> %d\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001906 dev_name(&intf->dev), ret);
Alan Stern6ad07122006-06-01 13:59:16 -04001907 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 }
Alan Stern3b23dd62008-12-05 14:10:34 -05001909 create_intf_ep_devs(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 }
1911
Alan Stern94fcda12006-11-20 11:38:46 -05001912 usb_autosuspend_device(dev);
Alan Stern86d30742005-07-29 12:17:16 -07001913 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914}
1915
Alan Sterndf718962008-12-19 10:27:56 -05001916static LIST_HEAD(set_config_list);
1917static DEFINE_SPINLOCK(set_config_lock);
1918
Alan Stern088dc272006-08-21 12:08:19 -04001919struct set_config_request {
1920 struct usb_device *udev;
1921 int config;
1922 struct work_struct work;
Alan Sterndf718962008-12-19 10:27:56 -05001923 struct list_head node;
Alan Stern088dc272006-08-21 12:08:19 -04001924};
1925
1926/* Worker routine for usb_driver_set_configuration() */
David Howellsc4028952006-11-22 14:57:56 +00001927static void driver_set_config_work(struct work_struct *work)
Alan Stern088dc272006-08-21 12:08:19 -04001928{
David Howellsc4028952006-11-22 14:57:56 +00001929 struct set_config_request *req =
1930 container_of(work, struct set_config_request, work);
Alan Sterndf718962008-12-19 10:27:56 -05001931 struct usb_device *udev = req->udev;
Alan Stern088dc272006-08-21 12:08:19 -04001932
Alan Sterndf718962008-12-19 10:27:56 -05001933 usb_lock_device(udev);
1934 spin_lock(&set_config_lock);
1935 list_del(&req->node);
1936 spin_unlock(&set_config_lock);
1937
1938 if (req->config >= -1) /* Is req still valid? */
1939 usb_set_configuration(udev, req->config);
1940 usb_unlock_device(udev);
1941 usb_put_dev(udev);
Alan Stern088dc272006-08-21 12:08:19 -04001942 kfree(req);
1943}
1944
Alan Sterndf718962008-12-19 10:27:56 -05001945/* Cancel pending Set-Config requests for a device whose configuration
1946 * was just changed
1947 */
1948static void cancel_async_set_config(struct usb_device *udev)
1949{
1950 struct set_config_request *req;
1951
1952 spin_lock(&set_config_lock);
1953 list_for_each_entry(req, &set_config_list, node) {
1954 if (req->udev == udev)
1955 req->config = -999; /* Mark as cancelled */
1956 }
1957 spin_unlock(&set_config_lock);
1958}
1959
Alan Stern088dc272006-08-21 12:08:19 -04001960/**
1961 * usb_driver_set_configuration - Provide a way for drivers to change device configurations
1962 * @udev: the device whose configuration is being updated
1963 * @config: the configuration being chosen.
1964 * Context: In process context, must be able to sleep
1965 *
1966 * Device interface drivers are not allowed to change device configurations.
1967 * This is because changing configurations will destroy the interface the
1968 * driver is bound to and create new ones; it would be like a floppy-disk
1969 * driver telling the computer to replace the floppy-disk drive with a
1970 * tape drive!
1971 *
1972 * Still, in certain specialized circumstances the need may arise. This
1973 * routine gets around the normal restrictions by using a work thread to
1974 * submit the change-config request.
1975 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001976 * Returns 0 if the request was successfully queued, error code otherwise.
Alan Stern088dc272006-08-21 12:08:19 -04001977 * The caller has no way to know whether the queued request will eventually
1978 * succeed.
1979 */
1980int usb_driver_set_configuration(struct usb_device *udev, int config)
1981{
1982 struct set_config_request *req;
1983
1984 req = kmalloc(sizeof(*req), GFP_KERNEL);
1985 if (!req)
1986 return -ENOMEM;
1987 req->udev = udev;
1988 req->config = config;
David Howellsc4028952006-11-22 14:57:56 +00001989 INIT_WORK(&req->work, driver_set_config_work);
Alan Stern088dc272006-08-21 12:08:19 -04001990
Alan Sterndf718962008-12-19 10:27:56 -05001991 spin_lock(&set_config_lock);
1992 list_add(&req->node, &set_config_list);
1993 spin_unlock(&set_config_lock);
1994
Alan Stern088dc272006-08-21 12:08:19 -04001995 usb_get_dev(udev);
Alan Stern1737bf2c2006-12-15 16:04:52 -05001996 schedule_work(&req->work);
Alan Stern088dc272006-08-21 12:08:19 -04001997 return 0;
1998}
1999EXPORT_SYMBOL_GPL(usb_driver_set_configuration);