blob: 1f66dd83aa9b95695dd35534c776543d75227da4 [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 */
Alan Stern0ba169af2010-05-05 15:26:17 -0400382 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 *
937 * Returns the number of bytes received on success, or else the status code
938 * returned by the underlying usb_control_msg() call.
939 */
940int usb_get_status(struct usb_device *dev, int type, int target, void *data)
941{
942 int ret;
943 u16 *status = kmalloc(sizeof(*status), GFP_KERNEL);
944
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
952 *(u16 *)data = *status;
953 kfree(status);
954 return ret;
955}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600956EXPORT_SYMBOL_GPL(usb_get_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958/**
959 * usb_clear_halt - tells device to clear endpoint halt/stall condition
960 * @dev: device whose endpoint is halted
961 * @pipe: endpoint "pipe" being cleared
962 * Context: !in_interrupt ()
963 *
964 * This is used to clear halt conditions for bulk and interrupt endpoints,
965 * as reported by URB completion status. Endpoints that are halted are
966 * sometimes referred to as being "stalled". Such endpoints are unable
967 * to transmit or receive data until the halt status is cleared. Any URBs
968 * queued for such an endpoint should normally be unlinked by the driver
969 * before clearing the halt condition, as described in sections 5.7.5
970 * and 5.8.5 of the USB 2.0 spec.
971 *
972 * Note that control and isochronous endpoints don't halt, although control
973 * endpoints report "protocol stall" (for unsupported requests) using the
974 * same status code used to report a true stall.
975 *
976 * This call is synchronous, and may not be used in an interrupt context.
977 *
978 * Returns zero on success, or else the status code returned by the
979 * underlying usb_control_msg() call.
980 */
981int usb_clear_halt(struct usb_device *dev, int pipe)
982{
983 int result;
984 int endp = usb_pipeendpoint(pipe);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800985
986 if (usb_pipein(pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 endp |= USB_DIR_IN;
988
989 /* we don't care if it wasn't halted first. in fact some devices
990 * (like some ibmcam model 1 units) seem to expect hosts to make
991 * this request for iso endpoints, which can't halt!
992 */
993 result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
994 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT,
995 USB_ENDPOINT_HALT, endp, NULL, 0,
996 USB_CTRL_SET_TIMEOUT);
997
998 /* don't un-halt or force to DATA0 except on success */
999 if (result < 0)
1000 return result;
1001
1002 /* NOTE: seems like Microsoft and Apple don't bother verifying
1003 * the clear "took", so some devices could lock up if you check...
1004 * such as the Hagiwara FlashGate DUAL. So we won't bother.
1005 *
1006 * NOTE: make sure the logic here doesn't diverge much from
1007 * the copy in usb-storage, for as long as we need two copies.
1008 */
1009
David Vrabel3444b262009-04-08 17:36:28 +00001010 usb_reset_endpoint(dev, endp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012 return 0;
1013}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001014EXPORT_SYMBOL_GPL(usb_clear_halt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Alan Stern3b23dd62008-12-05 14:10:34 -05001016static int create_intf_ep_devs(struct usb_interface *intf)
1017{
1018 struct usb_device *udev = interface_to_usbdev(intf);
1019 struct usb_host_interface *alt = intf->cur_altsetting;
1020 int i;
1021
1022 if (intf->ep_devs_created || intf->unregistering)
1023 return 0;
1024
1025 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
1026 (void) usb_create_ep_devs(&intf->dev, &alt->endpoint[i], udev);
1027 intf->ep_devs_created = 1;
1028 return 0;
1029}
1030
1031static void remove_intf_ep_devs(struct usb_interface *intf)
1032{
1033 struct usb_host_interface *alt = intf->cur_altsetting;
1034 int i;
1035
1036 if (!intf->ep_devs_created)
1037 return;
1038
1039 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
1040 usb_remove_ep_devs(&alt->endpoint[i]);
1041 intf->ep_devs_created = 0;
1042}
1043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044/**
1045 * usb_disable_endpoint -- Disable an endpoint by address
1046 * @dev: the device whose endpoint is being disabled
1047 * @epaddr: the endpoint's address. Endpoint number for output,
1048 * endpoint number + USB_DIR_IN for input
Alan Sternddeac4e72009-01-15 17:03:33 -05001049 * @reset_hardware: flag to erase any endpoint state stored in the
1050 * controller hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 *
Alan Sternddeac4e72009-01-15 17:03:33 -05001052 * Disables the endpoint for URB submission and nukes all pending URBs.
1053 * If @reset_hardware is set then also deallocates hcd/hardware state
1054 * for the endpoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 */
Alan Sternddeac4e72009-01-15 17:03:33 -05001056void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr,
1057 bool reset_hardware)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
1059 unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK;
1060 struct usb_host_endpoint *ep;
1061
1062 if (!dev)
1063 return;
1064
1065 if (usb_endpoint_out(epaddr)) {
1066 ep = dev->ep_out[epnum];
Alan Sternddeac4e72009-01-15 17:03:33 -05001067 if (reset_hardware)
1068 dev->ep_out[epnum] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 } else {
1070 ep = dev->ep_in[epnum];
Alan Sternddeac4e72009-01-15 17:03:33 -05001071 if (reset_hardware)
1072 dev->ep_in[epnum] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 }
Alan Sternbdd016b2007-07-30 17:05:22 -04001074 if (ep) {
1075 ep->enabled = 0;
Alan Stern95cf82f2007-09-10 11:33:05 -04001076 usb_hcd_flush_endpoint(dev, ep);
Alan Sternddeac4e72009-01-15 17:03:33 -05001077 if (reset_hardware)
1078 usb_hcd_disable_endpoint(dev, ep);
Alan Sternbdd016b2007-07-30 17:05:22 -04001079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
1082/**
David Vrabel3444b262009-04-08 17:36:28 +00001083 * usb_reset_endpoint - Reset an endpoint's state.
1084 * @dev: the device whose endpoint is to be reset
1085 * @epaddr: the endpoint's address. Endpoint number for output,
1086 * endpoint number + USB_DIR_IN for input
1087 *
1088 * Resets any host-side endpoint state such as the toggle bit,
1089 * sequence number or current window.
1090 */
1091void usb_reset_endpoint(struct usb_device *dev, unsigned int epaddr)
1092{
1093 unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK;
1094 struct usb_host_endpoint *ep;
1095
1096 if (usb_endpoint_out(epaddr))
1097 ep = dev->ep_out[epnum];
1098 else
1099 ep = dev->ep_in[epnum];
1100 if (ep)
1101 usb_hcd_reset_endpoint(dev, ep);
1102}
1103EXPORT_SYMBOL_GPL(usb_reset_endpoint);
1104
1105
1106/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 * usb_disable_interface -- Disable all endpoints for an interface
1108 * @dev: the device whose interface is being disabled
1109 * @intf: pointer to the interface descriptor
Alan Sternddeac4e72009-01-15 17:03:33 -05001110 * @reset_hardware: flag to erase any endpoint state stored in the
1111 * controller hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 *
1113 * Disables all the endpoints for the interface's current altsetting.
1114 */
Alan Sternddeac4e72009-01-15 17:03:33 -05001115void usb_disable_interface(struct usb_device *dev, struct usb_interface *intf,
1116 bool reset_hardware)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
1118 struct usb_host_interface *alt = intf->cur_altsetting;
1119 int i;
1120
1121 for (i = 0; i < alt->desc.bNumEndpoints; ++i) {
1122 usb_disable_endpoint(dev,
Alan Sternddeac4e72009-01-15 17:03:33 -05001123 alt->endpoint[i].desc.bEndpointAddress,
1124 reset_hardware);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
1126}
1127
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001128/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 * usb_disable_device - Disable all the endpoints for a USB device
1130 * @dev: the device whose endpoints are being disabled
1131 * @skip_ep0: 0 to disable endpoint 0, 1 to skip it.
1132 *
1133 * Disables all the device's endpoints, potentially including endpoint 0.
1134 * Deallocates hcd/hardware state for the endpoints (nuking all or most
1135 * pending urbs) and usbcore state for the interfaces, so that usbcore
1136 * must usb_set_configuration() before any interfaces could be used.
1137 */
1138void usb_disable_device(struct usb_device *dev, int skip_ep0)
1139{
1140 int i;
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001141 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 /* getting rid of interfaces will disconnect
1144 * any drivers bound to them (a key side effect)
1145 */
1146 if (dev->actconfig) {
Alan Sternca5c4852011-07-06 17:03:45 -04001147 /*
1148 * FIXME: In order to avoid self-deadlock involving the
1149 * bandwidth_mutex, we have to mark all the interfaces
1150 * before unregistering any of them.
1151 */
1152 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++)
1153 dev->actconfig->interface[i]->unregistering = 1;
1154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
1156 struct usb_interface *interface;
1157
Alan Stern86d30742005-07-29 12:17:16 -07001158 /* remove this interface if it has been registered */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 interface = dev->actconfig->interface[i];
Daniel Ritzd305ef52005-09-22 00:47:24 -07001160 if (!device_is_registered(&interface->dev))
Alan Stern86d30742005-07-29 12:17:16 -07001161 continue;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001162 dev_dbg(&dev->dev, "unregistering interface %s\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001163 dev_name(&interface->dev));
Alan Stern3b23dd62008-12-05 14:10:34 -05001164 remove_intf_ep_devs(interface);
Alan Stern1a211752008-07-30 11:31:50 -04001165 device_del(&interface->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 }
1167
1168 /* Now that the interfaces are unbound, nobody should
1169 * try to access them.
1170 */
1171 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001172 put_device(&dev->actconfig->interface[i]->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 dev->actconfig->interface[i] = NULL;
1174 }
Sarah Sharp24971912012-07-05 14:09:30 -07001175 usb_unlocked_disable_lpm(dev);
Sarah Sharpf74631e2012-06-25 12:08:08 -07001176 usb_disable_ltm(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 dev->actconfig = NULL;
1178 if (dev->state == USB_STATE_CONFIGURED)
1179 usb_set_device_state(dev, USB_STATE_ADDRESS);
1180 }
Alan Stern80f0cf32010-09-30 15:16:23 -04001181
1182 dev_dbg(&dev->dev, "%s nuking %s URBs\n", __func__,
1183 skip_ep0 ? "non-ep0" : "all");
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001184 if (hcd->driver->check_bandwidth) {
1185 /* First pass: Cancel URBs, leave endpoint pointers intact. */
1186 for (i = skip_ep0; i < 16; ++i) {
1187 usb_disable_endpoint(dev, i, false);
1188 usb_disable_endpoint(dev, i + USB_DIR_IN, false);
1189 }
1190 /* Remove endpoints from the host controller internal state */
Alan Stern8963c482012-04-17 15:22:39 -04001191 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001192 usb_hcd_alloc_bandwidth(dev, NULL, NULL, NULL);
Alan Stern8963c482012-04-17 15:22:39 -04001193 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharpfccf4e82011-06-05 23:22:22 -07001194 /* Second pass: remove endpoint pointers */
1195 }
Alan Stern80f0cf32010-09-30 15:16:23 -04001196 for (i = skip_ep0; i < 16; ++i) {
1197 usb_disable_endpoint(dev, i, true);
1198 usb_disable_endpoint(dev, i + USB_DIR_IN, true);
1199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
1201
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001202/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 * usb_enable_endpoint - Enable an endpoint for USB communications
1204 * @dev: the device whose interface is being enabled
1205 * @ep: the endpoint
David Vrabel3444b262009-04-08 17:36:28 +00001206 * @reset_ep: flag to reset the endpoint state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 *
David Vrabel3444b262009-04-08 17:36:28 +00001208 * Resets the endpoint state if asked, and sets dev->ep_{in,out} pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 * For control endpoints, both the input and output sides are handled.
1210 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001211void usb_enable_endpoint(struct usb_device *dev, struct usb_host_endpoint *ep,
David Vrabel3444b262009-04-08 17:36:28 +00001212 bool reset_ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
Alan Sternbdd016b2007-07-30 17:05:22 -04001214 int epnum = usb_endpoint_num(&ep->desc);
1215 int is_out = usb_endpoint_dir_out(&ep->desc);
1216 int is_control = usb_endpoint_xfer_control(&ep->desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
David Vrabel3444b262009-04-08 17:36:28 +00001218 if (reset_ep)
1219 usb_hcd_reset_endpoint(dev, ep);
1220 if (is_out || is_control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 dev->ep_out[epnum] = ep;
David Vrabel3444b262009-04-08 17:36:28 +00001222 if (!is_out || is_control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 dev->ep_in[epnum] = ep;
Alan Sternbdd016b2007-07-30 17:05:22 -04001224 ep->enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225}
1226
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001227/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 * usb_enable_interface - Enable all the endpoints for an interface
1229 * @dev: the device whose interface is being enabled
1230 * @intf: pointer to the interface descriptor
David Vrabel3444b262009-04-08 17:36:28 +00001231 * @reset_eps: flag to reset the endpoints' state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 *
1233 * Enables all the endpoints for the interface's current altsetting.
1234 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001235void usb_enable_interface(struct usb_device *dev,
David Vrabel3444b262009-04-08 17:36:28 +00001236 struct usb_interface *intf, bool reset_eps)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237{
1238 struct usb_host_interface *alt = intf->cur_altsetting;
1239 int i;
1240
1241 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
David Vrabel3444b262009-04-08 17:36:28 +00001242 usb_enable_endpoint(dev, &alt->endpoint[i], reset_eps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243}
1244
1245/**
1246 * usb_set_interface - Makes a particular alternate setting be current
1247 * @dev: the device whose interface is being updated
1248 * @interface: the interface being updated
1249 * @alternate: the setting being chosen.
1250 * Context: !in_interrupt ()
1251 *
1252 * This is used to enable data transfers on interfaces that may not
1253 * be enabled by default. Not all devices support such configurability.
1254 * Only the driver bound to an interface may change its setting.
1255 *
1256 * Within any given configuration, each interface may have several
1257 * alternative settings. These are often used to control levels of
1258 * bandwidth consumption. For example, the default setting for a high
1259 * speed interrupt endpoint may not send more than 64 bytes per microframe,
1260 * while interrupt transfers of up to 3KBytes per microframe are legal.
1261 * Also, isochronous endpoints may never be part of an
1262 * interface's default setting. To access such bandwidth, alternate
1263 * interface settings must be made current.
1264 *
1265 * Note that in the Linux USB subsystem, bandwidth associated with
1266 * an endpoint in a given alternate setting is not reserved until an URB
1267 * is submitted that needs that bandwidth. Some other operating systems
1268 * allocate bandwidth early, when a configuration is chosen.
1269 *
1270 * This call is synchronous, and may not be used in an interrupt context.
1271 * Also, drivers must not change altsettings while urbs are scheduled for
1272 * endpoints in that interface; all such urbs must first be completed
1273 * (perhaps forced by unlinking).
1274 *
1275 * Returns zero on success, or else the status code returned by the
1276 * underlying usb_control_msg() call.
1277 */
1278int usb_set_interface(struct usb_device *dev, int interface, int alternate)
1279{
1280 struct usb_interface *iface;
1281 struct usb_host_interface *alt;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001282 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 int ret;
1284 int manual = 0;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001285 unsigned int epaddr;
1286 unsigned int pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288 if (dev->state == USB_STATE_SUSPENDED)
1289 return -EHOSTUNREACH;
1290
1291 iface = usb_ifnum_to_if(dev, interface);
1292 if (!iface) {
1293 dev_dbg(&dev->dev, "selecting invalid interface %d\n",
1294 interface);
1295 return -EINVAL;
1296 }
Alan Sterne534c5b2011-07-01 16:43:02 -04001297 if (iface->unregistering)
1298 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 alt = usb_altnum_to_altsetting(iface, alternate);
1301 if (!alt) {
Thadeu Lima de Souza Cascardo385f6902010-01-17 19:24:03 -02001302 dev_warn(&dev->dev, "selecting invalid altsetting %d\n",
Greg Kroah-Hartman3b6004f2008-08-14 09:37:34 -07001303 alternate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 return -EINVAL;
1305 }
1306
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001307 /* Make sure we have enough bandwidth for this alternate interface.
1308 * Remove the current alt setting and add the new alt setting.
1309 */
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001310 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp83060952012-05-02 14:25:52 -07001311 /* Disable LPM, and re-enable it once the new alt setting is installed,
1312 * so that the xHCI driver can recalculate the U1/U2 timeouts.
1313 */
1314 if (usb_disable_lpm(dev)) {
1315 dev_err(&iface->dev, "%s Failed to disable LPM\n.", __func__);
1316 mutex_unlock(hcd->bandwidth_mutex);
1317 return -ENOMEM;
1318 }
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001319 ret = usb_hcd_alloc_bandwidth(dev, NULL, iface->cur_altsetting, alt);
1320 if (ret < 0) {
1321 dev_info(&dev->dev, "Not enough bandwidth for altsetting %d\n",
1322 alternate);
Sarah Sharp83060952012-05-02 14:25:52 -07001323 usb_enable_lpm(dev);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001324 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001325 return ret;
1326 }
1327
Alan Stern392e1d92008-03-11 10:20:12 -04001328 if (dev->quirks & USB_QUIRK_NO_SET_INTF)
1329 ret = -EPIPE;
1330 else
1331 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
1333 alternate, interface, NULL, 0, 5000);
1334
1335 /* 9.4.10 says devices don't need this and are free to STALL the
1336 * request if the interface only has one alternate setting.
1337 */
1338 if (ret == -EPIPE && iface->num_altsetting == 1) {
1339 dev_dbg(&dev->dev,
1340 "manual set_interface for iface %d, alt %d\n",
1341 interface, alternate);
1342 manual = 1;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001343 } else if (ret < 0) {
1344 /* Re-instate the old alt setting */
1345 usb_hcd_alloc_bandwidth(dev, NULL, alt, iface->cur_altsetting);
Sarah Sharp83060952012-05-02 14:25:52 -07001346 usb_enable_lpm(dev);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001347 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 return ret;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001349 }
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001350 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
1352 /* FIXME drivers shouldn't need to replicate/bugfix the logic here
1353 * when they implement async or easily-killable versions of this or
1354 * other "should-be-internal" functions (like clear_halt).
1355 * should hcd+usbcore postprocess control requests?
1356 */
1357
1358 /* prevent submissions using previous endpoint settings */
Alan Stern3b23dd62008-12-05 14:10:34 -05001359 if (iface->cur_altsetting != alt) {
1360 remove_intf_ep_devs(iface);
Alan Stern0e6c8e82005-10-24 15:33:03 -04001361 usb_remove_sysfs_intf_files(iface);
Alan Stern3b23dd62008-12-05 14:10:34 -05001362 }
Alan Sternddeac4e72009-01-15 17:03:33 -05001363 usb_disable_interface(dev, iface, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 iface->cur_altsetting = alt;
1366
Sarah Sharp83060952012-05-02 14:25:52 -07001367 /* Now that the interface is installed, re-enable LPM. */
1368 usb_unlocked_enable_lpm(dev);
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 /* If the interface only has one altsetting and the device didn't
David Brownella81e7ec2005-04-18 17:39:25 -07001371 * accept the request, we attempt to carry out the equivalent action
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 * by manually clearing the HALT feature for each endpoint in the
1373 * new altsetting.
1374 */
1375 if (manual) {
1376 int i;
1377
1378 for (i = 0; i < alt->desc.bNumEndpoints; i++) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001379 epaddr = alt->endpoint[i].desc.bEndpointAddress;
1380 pipe = __create_pipe(dev,
1381 USB_ENDPOINT_NUMBER_MASK & epaddr) |
1382 (usb_endpoint_out(epaddr) ?
1383 USB_DIR_OUT : USB_DIR_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
1385 usb_clear_halt(dev, pipe);
1386 }
1387 }
1388
1389 /* 9.1.1.5: reset toggles for all endpoints in the new altsetting
1390 *
1391 * Note:
1392 * Despite EP0 is always present in all interfaces/AS, the list of
1393 * endpoints from the descriptor does not contain EP0. Due to its
1394 * omnipresence one might expect EP0 being considered "affected" by
1395 * any SetInterface request and hence assume toggles need to be reset.
1396 * However, EP0 toggles are re-synced for every individual transfer
1397 * during the SETUP stage - hence EP0 toggles are "don't care" here.
1398 * (Likewise, EP0 never "halts" on well designed devices.)
1399 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001400 usb_enable_interface(dev, iface, true);
Alan Stern3b23dd62008-12-05 14:10:34 -05001401 if (device_is_registered(&iface->dev)) {
Alan Stern0e6c8e82005-10-24 15:33:03 -04001402 usb_create_sysfs_intf_files(iface);
Alan Stern3b23dd62008-12-05 14:10:34 -05001403 create_intf_ep_devs(iface);
1404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 return 0;
1406}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001407EXPORT_SYMBOL_GPL(usb_set_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
1409/**
1410 * usb_reset_configuration - lightweight device reset
1411 * @dev: the device whose configuration is being reset
1412 *
1413 * This issues a standard SET_CONFIGURATION request to the device using
1414 * the current configuration. The effect is to reset most USB-related
1415 * state in the device, including interface altsettings (reset to zero),
David Vrabel3444b262009-04-08 17:36:28 +00001416 * endpoint halts (cleared), and endpoint state (only for bulk and interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 * endpoints). Other usbcore state is unchanged, including bindings of
1418 * usb device drivers to interfaces.
1419 *
1420 * Because this affects multiple interfaces, avoid using this with composite
1421 * (multi-interface) devices. Instead, the driver for each interface may
David Brownella81e7ec2005-04-18 17:39:25 -07001422 * use usb_set_interface() on the interfaces it claims. Be careful though;
1423 * some devices don't support the SET_INTERFACE request, and others won't
David Vrabel3444b262009-04-08 17:36:28 +00001424 * reset all the interface state (notably endpoint state). Resetting the whole
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 * configuration would affect other drivers' interfaces.
1426 *
1427 * The caller must own the device lock.
1428 *
1429 * Returns zero on success, else a negative error code.
1430 */
1431int usb_reset_configuration(struct usb_device *dev)
1432{
1433 int i, retval;
1434 struct usb_host_config *config;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001435 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
1437 if (dev->state == USB_STATE_SUSPENDED)
1438 return -EHOSTUNREACH;
1439
1440 /* caller must have locked the device and must own
1441 * the usb bus readlock (so driver bindings are stable);
1442 * calls during probe() are fine
1443 */
1444
1445 for (i = 1; i < 16; ++i) {
Alan Sternddeac4e72009-01-15 17:03:33 -05001446 usb_disable_endpoint(dev, i, true);
1447 usb_disable_endpoint(dev, i + USB_DIR_IN, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 }
1449
1450 config = dev->actconfig;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001451 retval = 0;
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001452 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp83060952012-05-02 14:25:52 -07001453 /* Disable LPM, and re-enable it once the configuration is reset, so
1454 * that the xHCI driver can recalculate the U1/U2 timeouts.
1455 */
1456 if (usb_disable_lpm(dev)) {
1457 dev_err(&dev->dev, "%s Failed to disable LPM\n.", __func__);
1458 mutex_unlock(hcd->bandwidth_mutex);
1459 return -ENOMEM;
1460 }
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001461 /* Make sure we have enough bandwidth for each alternate setting 0 */
1462 for (i = 0; i < config->desc.bNumInterfaces; i++) {
1463 struct usb_interface *intf = config->interface[i];
1464 struct usb_host_interface *alt;
1465
1466 alt = usb_altnum_to_altsetting(intf, 0);
1467 if (!alt)
1468 alt = &intf->altsetting[0];
1469 if (alt != intf->cur_altsetting)
1470 retval = usb_hcd_alloc_bandwidth(dev, NULL,
1471 intf->cur_altsetting, alt);
1472 if (retval < 0)
1473 break;
1474 }
1475 /* If not, reinstate the old alternate settings */
1476 if (retval < 0) {
1477reset_old_alts:
Roel Kluine4a3d942010-02-18 02:36:23 +01001478 for (i--; i >= 0; i--) {
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001479 struct usb_interface *intf = config->interface[i];
1480 struct usb_host_interface *alt;
1481
1482 alt = usb_altnum_to_altsetting(intf, 0);
1483 if (!alt)
1484 alt = &intf->altsetting[0];
1485 if (alt != intf->cur_altsetting)
1486 usb_hcd_alloc_bandwidth(dev, NULL,
1487 alt, intf->cur_altsetting);
1488 }
Sarah Sharp83060952012-05-02 14:25:52 -07001489 usb_enable_lpm(dev);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001490 mutex_unlock(hcd->bandwidth_mutex);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001491 return retval;
1492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1494 USB_REQ_SET_CONFIGURATION, 0,
1495 config->desc.bConfigurationValue, 0,
1496 NULL, 0, USB_CTRL_SET_TIMEOUT);
Alan Stern0e6c8e82005-10-24 15:33:03 -04001497 if (retval < 0)
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001498 goto reset_old_alts;
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001499 mutex_unlock(hcd->bandwidth_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 /* re-init hc/hcd interface/endpoint state */
1502 for (i = 0; i < config->desc.bNumInterfaces; i++) {
1503 struct usb_interface *intf = config->interface[i];
1504 struct usb_host_interface *alt;
1505
1506 alt = usb_altnum_to_altsetting(intf, 0);
1507
1508 /* No altsetting 0? We'll assume the first altsetting.
1509 * We could use a GetInterface call, but if a device is
1510 * so non-compliant that it doesn't have altsetting 0
1511 * then I wouldn't trust its reply anyway.
1512 */
1513 if (!alt)
1514 alt = &intf->altsetting[0];
1515
Alan Stern3b23dd62008-12-05 14:10:34 -05001516 if (alt != intf->cur_altsetting) {
1517 remove_intf_ep_devs(intf);
1518 usb_remove_sysfs_intf_files(intf);
1519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 intf->cur_altsetting = alt;
Alan Stern2caf7fc2008-12-31 11:31:33 -05001521 usb_enable_interface(dev, intf, true);
Alan Stern3b23dd62008-12-05 14:10:34 -05001522 if (device_is_registered(&intf->dev)) {
Alan Stern0e6c8e82005-10-24 15:33:03 -04001523 usb_create_sysfs_intf_files(intf);
Alan Stern3b23dd62008-12-05 14:10:34 -05001524 create_intf_ep_devs(intf);
1525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 }
Sarah Sharp83060952012-05-02 14:25:52 -07001527 /* Now that the interfaces are installed, re-enable LPM. */
1528 usb_unlocked_enable_lpm(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 return 0;
1530}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001531EXPORT_SYMBOL_GPL(usb_reset_configuration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Greg Kroah-Hartmanb0e396e2007-08-02 22:44:27 -06001533static void usb_release_interface(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534{
1535 struct usb_interface *intf = to_usb_interface(dev);
1536 struct usb_interface_cache *intfc =
1537 altsetting_to_usb_interface_cache(intf->altsetting);
1538
1539 kref_put(&intfc->ref, usb_release_interface_cache);
1540 kfree(intf);
1541}
1542
Kay Sievers7eff2e72007-08-14 15:15:12 +02001543static int usb_if_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001544{
1545 struct usb_device *usb_dev;
1546 struct usb_interface *intf;
1547 struct usb_host_interface *alt;
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001548
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001549 intf = to_usb_interface(dev);
1550 usb_dev = interface_to_usbdev(intf);
1551 alt = intf->cur_altsetting;
1552
Kay Sievers7eff2e72007-08-14 15:15:12 +02001553 if (add_uevent_var(env, "INTERFACE=%d/%d/%d",
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001554 alt->desc.bInterfaceClass,
1555 alt->desc.bInterfaceSubClass,
1556 alt->desc.bInterfaceProtocol))
1557 return -ENOMEM;
1558
Kay Sievers7eff2e72007-08-14 15:15:12 +02001559 if (add_uevent_var(env,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001560 "MODALIAS=usb:"
Bjørn Mork81df2d52012-05-18 21:27:43 +02001561 "v%04Xp%04Xd%04Xdc%02Xdsc%02Xdp%02Xic%02Xisc%02Xip%02Xin%02X",
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001562 le16_to_cpu(usb_dev->descriptor.idVendor),
1563 le16_to_cpu(usb_dev->descriptor.idProduct),
1564 le16_to_cpu(usb_dev->descriptor.bcdDevice),
1565 usb_dev->descriptor.bDeviceClass,
1566 usb_dev->descriptor.bDeviceSubClass,
1567 usb_dev->descriptor.bDeviceProtocol,
1568 alt->desc.bInterfaceClass,
1569 alt->desc.bInterfaceSubClass,
Bjørn Mork81df2d52012-05-18 21:27:43 +02001570 alt->desc.bInterfaceProtocol,
1571 alt->desc.bInterfaceNumber))
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001572 return -ENOMEM;
1573
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001574 return 0;
1575}
1576
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001577struct device_type usb_if_device_type = {
1578 .name = "usb_interface",
1579 .release = usb_release_interface,
1580 .uevent = usb_if_uevent,
1581};
1582
Craig W. Nadler165fe972007-06-15 23:14:35 -04001583static struct usb_interface_assoc_descriptor *find_iad(struct usb_device *dev,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001584 struct usb_host_config *config,
1585 u8 inum)
Craig W. Nadler165fe972007-06-15 23:14:35 -04001586{
1587 struct usb_interface_assoc_descriptor *retval = NULL;
1588 struct usb_interface_assoc_descriptor *intf_assoc;
1589 int first_intf;
1590 int last_intf;
1591 int i;
1592
1593 for (i = 0; (i < USB_MAXIADS && config->intf_assoc[i]); i++) {
1594 intf_assoc = config->intf_assoc[i];
1595 if (intf_assoc->bInterfaceCount == 0)
1596 continue;
1597
1598 first_intf = intf_assoc->bFirstInterface;
1599 last_intf = first_intf + (intf_assoc->bInterfaceCount - 1);
1600 if (inum >= first_intf && inum <= last_intf) {
1601 if (!retval)
1602 retval = intf_assoc;
1603 else
1604 dev_err(&dev->dev, "Interface #%d referenced"
1605 " by multiple IADs\n", inum);
1606 }
1607 }
1608
1609 return retval;
1610}
1611
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001612
1613/*
1614 * Internal function to queue a device reset
1615 *
1616 * This is initialized into the workstruct in 'struct
1617 * usb_device->reset_ws' that is launched by
1618 * message.c:usb_set_configuration() when initializing each 'struct
1619 * usb_interface'.
1620 *
1621 * It is safe to get the USB device without reference counts because
1622 * the life cycle of @iface is bound to the life cycle of @udev. Then,
1623 * this function will be ran only if @iface is alive (and before
1624 * freeing it any scheduled instances of it will have been cancelled).
1625 *
1626 * We need to set a flag (usb_dev->reset_running) because when we call
1627 * the reset, the interfaces might be unbound. The current interface
1628 * cannot try to remove the queued work as it would cause a deadlock
1629 * (you cannot remove your work from within your executing
1630 * workqueue). This flag lets it know, so that
1631 * usb_cancel_queued_reset() doesn't try to do it.
1632 *
1633 * See usb_queue_reset_device() for more details
1634 */
Felipe Balbi09e81f32009-12-04 15:47:44 +02001635static void __usb_queue_reset_device(struct work_struct *ws)
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001636{
1637 int rc;
1638 struct usb_interface *iface =
1639 container_of(ws, struct usb_interface, reset_ws);
1640 struct usb_device *udev = interface_to_usbdev(iface);
1641
1642 rc = usb_lock_device_for_reset(udev, iface);
1643 if (rc >= 0) {
1644 iface->reset_running = 1;
1645 usb_reset_device(udev);
1646 iface->reset_running = 0;
1647 usb_unlock_device(udev);
1648 }
1649}
1650
1651
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652/*
1653 * usb_set_configuration - Makes a particular device setting be current
1654 * @dev: the device whose configuration is being updated
1655 * @configuration: the configuration being chosen.
1656 * Context: !in_interrupt(), caller owns the device lock
1657 *
1658 * This is used to enable non-default device modes. Not all devices
1659 * use this kind of configurability; many devices only have one
1660 * configuration.
1661 *
Alan Stern3f141e22007-02-08 16:40:43 -05001662 * @configuration is the value of the configuration to be installed.
1663 * According to the USB spec (e.g. section 9.1.1.5), configuration values
1664 * must be non-zero; a value of zero indicates that the device in
1665 * unconfigured. However some devices erroneously use 0 as one of their
1666 * configuration values. To help manage such devices, this routine will
1667 * accept @configuration = -1 as indicating the device should be put in
1668 * an unconfigured state.
1669 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 * USB device configurations may affect Linux interoperability,
1671 * power consumption and the functionality available. For example,
1672 * the default configuration is limited to using 100mA of bus power,
1673 * so that when certain device functionality requires more power,
1674 * and the device is bus powered, that functionality should be in some
1675 * non-default device configuration. Other device modes may also be
1676 * reflected as configuration options, such as whether two ISDN
1677 * channels are available independently; and choosing between open
1678 * standard device protocols (like CDC) or proprietary ones.
1679 *
Inaky Perez-Gonzalez16bbab22007-07-31 20:34:01 -07001680 * Note that a non-authorized device (dev->authorized == 0) will only
1681 * be put in unconfigured mode.
1682 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 * Note that USB has an additional level of device configurability,
1684 * associated with interfaces. That configurability is accessed using
1685 * usb_set_interface().
1686 *
1687 * This call is synchronous. The calling context must be able to sleep,
1688 * must own the device lock, and must not hold the driver model's USB
Ming Lei6d243e52008-06-17 23:24:08 +08001689 * bus mutex; usb interface driver probe() methods cannot use this routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 *
1691 * Returns zero on success, or else the status code returned by the
Steven Cole093cf722005-05-03 19:07:24 -06001692 * underlying call that failed. On successful completion, each interface
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 * in the original device configuration has been destroyed, and each one
1694 * in the new configuration has been probed by all relevant usb device
1695 * drivers currently known to the kernel.
1696 */
1697int usb_set_configuration(struct usb_device *dev, int configuration)
1698{
1699 int i, ret;
1700 struct usb_host_config *cp = NULL;
1701 struct usb_interface **new_interfaces = NULL;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001702 struct usb_hcd *hcd = bus_to_hcd(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 int n, nintf;
1704
Inaky Perez-Gonzalez16bbab22007-07-31 20:34:01 -07001705 if (dev->authorized == 0 || configuration == -1)
Alan Stern3f141e22007-02-08 16:40:43 -05001706 configuration = 0;
1707 else {
1708 for (i = 0; i < dev->descriptor.bNumConfigurations; i++) {
1709 if (dev->config[i].desc.bConfigurationValue ==
1710 configuration) {
1711 cp = &dev->config[i];
1712 break;
1713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 }
1715 }
1716 if ((!cp && configuration != 0))
1717 return -EINVAL;
1718
1719 /* The USB spec says configuration 0 means unconfigured.
1720 * But if a device includes a configuration numbered 0,
1721 * we will accept it as a correctly configured state.
Alan Stern3f141e22007-02-08 16:40:43 -05001722 * Use -1 if you really want to unconfigure the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 */
1724 if (cp && configuration == 0)
1725 dev_warn(&dev->dev, "config 0 descriptor??\n");
1726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 /* Allocate memory for new interfaces before doing anything else,
1728 * so that if we run out then nothing will have changed. */
1729 n = nintf = 0;
1730 if (cp) {
1731 nintf = cp->desc.bNumInterfaces;
1732 new_interfaces = kmalloc(nintf * sizeof(*new_interfaces),
Oliver Neukumacbe2fe2010-01-12 12:32:50 +01001733 GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 if (!new_interfaces) {
Joe Perches898eb712007-10-18 03:06:30 -07001735 dev_err(&dev->dev, "Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 return -ENOMEM;
1737 }
1738
1739 for (; n < nintf; ++n) {
Alan Stern0a1ef3b2005-10-24 15:38:24 -04001740 new_interfaces[n] = kzalloc(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 sizeof(struct usb_interface),
Oliver Neukumacbe2fe2010-01-12 12:32:50 +01001742 GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 if (!new_interfaces[n]) {
Joe Perches898eb712007-10-18 03:06:30 -07001744 dev_err(&dev->dev, "Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 ret = -ENOMEM;
1746free_interfaces:
1747 while (--n >= 0)
1748 kfree(new_interfaces[n]);
1749 kfree(new_interfaces);
1750 return ret;
1751 }
1752 }
Alan Stern6ad07122006-06-01 13:59:16 -04001753
Sebastian Andrzej Siewior8d8479d2012-12-18 15:25:46 +01001754 i = dev->bus_mA - usb_get_max_power(dev, cp);
Alan Stern6ad07122006-06-01 13:59:16 -04001755 if (i < 0)
1756 dev_warn(&dev->dev, "new config #%d exceeds power "
1757 "limit by %dmA\n",
1758 configuration, -i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 }
1760
Alan Stern01d883d2006-08-30 15:47:18 -04001761 /* Wake up the device so we can send it the Set-Config request */
Alan Stern94fcda12006-11-20 11:38:46 -05001762 ret = usb_autoresume_device(dev);
Alan Stern01d883d2006-08-30 15:47:18 -04001763 if (ret)
1764 goto free_interfaces;
1765
Thadeu Lima de Souza Cascardo07919712010-08-28 03:06:29 -03001766 /* if it's already configured, clear out old state first.
1767 * getting rid of old interfaces means unbinding their drivers.
1768 */
1769 if (dev->state != USB_STATE_ADDRESS)
1770 usb_disable_device(dev, 1); /* Skip ep0 */
1771
1772 /* Get rid of pending async Set-Config requests for this device */
1773 cancel_async_set_config(dev);
1774
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001775 /* Make sure we have bandwidth (and available HCD resources) for this
1776 * configuration. Remove endpoints from the schedule if we're dropping
1777 * this configuration to set configuration 0. After this point, the
1778 * host controller will not allow submissions to dropped endpoints. If
1779 * this call fails, the device state is unchanged.
1780 */
Alan Stern8963c482012-04-17 15:22:39 -04001781 mutex_lock(hcd->bandwidth_mutex);
Sarah Sharp83060952012-05-02 14:25:52 -07001782 /* Disable LPM, and re-enable it once the new configuration is
1783 * installed, so that the xHCI driver can recalculate the U1/U2
1784 * timeouts.
1785 */
Sarah Sharp9cf65992012-07-03 23:22:38 -07001786 if (dev->actconfig && usb_disable_lpm(dev)) {
Sarah Sharp83060952012-05-02 14:25:52 -07001787 dev_err(&dev->dev, "%s Failed to disable LPM\n.", __func__);
1788 mutex_unlock(hcd->bandwidth_mutex);
Sachin Kamatc058f7a2012-11-21 11:01:19 +05301789 ret = -ENOMEM;
1790 goto free_interfaces;
Sarah Sharp83060952012-05-02 14:25:52 -07001791 }
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001792 ret = usb_hcd_alloc_bandwidth(dev, cp, NULL, NULL);
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001793 if (ret < 0) {
Sarah Sharp9cf65992012-07-03 23:22:38 -07001794 if (dev->actconfig)
1795 usb_enable_lpm(dev);
Sarah Sharpd673bfc2010-10-15 08:55:24 -07001796 mutex_unlock(hcd->bandwidth_mutex);
Thadeu Lima de Souza Cascardo07919712010-08-28 03:06:29 -03001797 usb_autosuspend_device(dev);
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001798 goto free_interfaces;
1799 }
1800
Alan Stern36caff52012-11-07 10:31:30 -05001801 /*
1802 * Initialize the new interface structures and the
Alan Stern6ad07122006-06-01 13:59:16 -04001803 * hc/hcd/usbcore interface/endpoint state.
1804 */
1805 for (i = 0; i < nintf; ++i) {
1806 struct usb_interface_cache *intfc;
1807 struct usb_interface *intf;
1808 struct usb_host_interface *alt;
1809
1810 cp->interface[i] = intf = new_interfaces[i];
1811 intfc = cp->intf_cache[i];
1812 intf->altsetting = intfc->altsetting;
1813 intf->num_altsetting = intfc->num_altsetting;
1814 kref_get(&intfc->ref);
1815
1816 alt = usb_altnum_to_altsetting(intf, 0);
1817
1818 /* No altsetting 0? We'll assume the first altsetting.
1819 * We could use a GetInterface call, but if a device is
1820 * so non-compliant that it doesn't have altsetting 0
1821 * then I wouldn't trust its reply anyway.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 */
Alan Stern6ad07122006-06-01 13:59:16 -04001823 if (!alt)
1824 alt = &intf->altsetting[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
Daniel Mackb3a3dd02012-06-12 20:23:52 +02001826 intf->intf_assoc =
1827 find_iad(dev, cp, alt->desc.bInterfaceNumber);
Alan Stern6ad07122006-06-01 13:59:16 -04001828 intf->cur_altsetting = alt;
Alan Stern2caf7fc2008-12-31 11:31:33 -05001829 usb_enable_interface(dev, intf, true);
Alan Stern6ad07122006-06-01 13:59:16 -04001830 intf->dev.parent = &dev->dev;
1831 intf->dev.driver = NULL;
1832 intf->dev.bus = &usb_bus_type;
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001833 intf->dev.type = &usb_if_device_type;
Alan Stern2e5f10e2008-04-30 15:37:19 -04001834 intf->dev.groups = usb_interface_groups;
Alan Stern6ad07122006-06-01 13:59:16 -04001835 intf->dev.dma_mask = dev->dev.dma_mask;
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001836 INIT_WORK(&intf->reset_ws, __usb_queue_reset_device);
Alan Stern0026e002010-09-21 15:01:53 -04001837 intf->minor = -1;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001838 device_initialize(&intf->dev);
Ming Lei63defa72010-11-15 15:56:54 -05001839 pm_runtime_no_callbacks(&intf->dev);
Kay Sievers0031a062008-05-02 06:02:41 +02001840 dev_set_name(&intf->dev, "%d-%s:%d.%d",
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001841 dev->bus->busnum, dev->devpath,
1842 configuration, alt->desc.bInterfaceNumber);
Alan Stern6ad07122006-06-01 13:59:16 -04001843 }
1844 kfree(new_interfaces);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Alan Stern36caff52012-11-07 10:31:30 -05001846 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1847 USB_REQ_SET_CONFIGURATION, 0, configuration, 0,
1848 NULL, 0, USB_CTRL_SET_TIMEOUT);
1849 if (ret < 0 && cp) {
1850 /*
1851 * All the old state is gone, so what else can we do?
1852 * The device is probably useless now anyway.
1853 */
1854 usb_hcd_alloc_bandwidth(dev, NULL, NULL, NULL);
1855 for (i = 0; i < nintf; ++i) {
1856 usb_disable_interface(dev, cp->interface[i], true);
1857 put_device(&cp->interface[i]->dev);
1858 cp->interface[i] = NULL;
1859 }
1860 cp = NULL;
1861 }
1862
1863 dev->actconfig = cp;
1864 mutex_unlock(hcd->bandwidth_mutex);
1865
1866 if (!cp) {
1867 usb_set_device_state(dev, USB_STATE_ADDRESS);
1868
1869 /* Leave LPM disabled while the device is unconfigured. */
1870 usb_autosuspend_device(dev);
1871 return ret;
1872 }
1873 usb_set_device_state(dev, USB_STATE_CONFIGURED);
1874
Alan Stern1662e3a2009-03-18 14:28:53 -04001875 if (cp->string == NULL &&
1876 !(dev->quirks & USB_QUIRK_CONFIG_INTF_STRINGS))
Alan Stern6ad07122006-06-01 13:59:16 -04001877 cp->string = usb_cache_string(dev, cp->desc.iConfiguration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Sarah Sharp83060952012-05-02 14:25:52 -07001879 /* Now that the interfaces are installed, re-enable LPM. */
1880 usb_unlocked_enable_lpm(dev);
Sarah Sharpf74631e2012-06-25 12:08:08 -07001881 /* Enable LTM if it was turned off by usb_disable_device. */
1882 usb_enable_ltm(dev);
Sarah Sharp83060952012-05-02 14:25:52 -07001883
Alan Stern6ad07122006-06-01 13:59:16 -04001884 /* Now that all the interfaces are set up, register them
1885 * to trigger binding of drivers to interfaces. probe()
1886 * routines may install different altsettings and may
1887 * claim() any interfaces not yet bound. Many class drivers
1888 * need that: CDC, audio, video, etc.
1889 */
1890 for (i = 0; i < nintf; ++i) {
1891 struct usb_interface *intf = cp->interface[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001893 dev_dbg(&dev->dev,
Alan Stern6ad07122006-06-01 13:59:16 -04001894 "adding %s (config #%d, interface %d)\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001895 dev_name(&intf->dev), configuration,
Alan Stern6ad07122006-06-01 13:59:16 -04001896 intf->cur_altsetting->desc.bInterfaceNumber);
Rafael J. Wysocki927bc912010-02-08 19:18:16 +01001897 device_enable_async_suspend(&intf->dev);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001898 ret = device_add(&intf->dev);
Alan Stern6ad07122006-06-01 13:59:16 -04001899 if (ret != 0) {
1900 dev_err(&dev->dev, "device_add(%s) --> %d\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001901 dev_name(&intf->dev), ret);
Alan Stern6ad07122006-06-01 13:59:16 -04001902 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 }
Alan Stern3b23dd62008-12-05 14:10:34 -05001904 create_intf_ep_devs(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 }
1906
Alan Stern94fcda12006-11-20 11:38:46 -05001907 usb_autosuspend_device(dev);
Alan Stern86d30742005-07-29 12:17:16 -07001908 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909}
1910
Alan Sterndf718962008-12-19 10:27:56 -05001911static LIST_HEAD(set_config_list);
1912static DEFINE_SPINLOCK(set_config_lock);
1913
Alan Stern088dc272006-08-21 12:08:19 -04001914struct set_config_request {
1915 struct usb_device *udev;
1916 int config;
1917 struct work_struct work;
Alan Sterndf718962008-12-19 10:27:56 -05001918 struct list_head node;
Alan Stern088dc272006-08-21 12:08:19 -04001919};
1920
1921/* Worker routine for usb_driver_set_configuration() */
David Howellsc4028952006-11-22 14:57:56 +00001922static void driver_set_config_work(struct work_struct *work)
Alan Stern088dc272006-08-21 12:08:19 -04001923{
David Howellsc4028952006-11-22 14:57:56 +00001924 struct set_config_request *req =
1925 container_of(work, struct set_config_request, work);
Alan Sterndf718962008-12-19 10:27:56 -05001926 struct usb_device *udev = req->udev;
Alan Stern088dc272006-08-21 12:08:19 -04001927
Alan Sterndf718962008-12-19 10:27:56 -05001928 usb_lock_device(udev);
1929 spin_lock(&set_config_lock);
1930 list_del(&req->node);
1931 spin_unlock(&set_config_lock);
1932
1933 if (req->config >= -1) /* Is req still valid? */
1934 usb_set_configuration(udev, req->config);
1935 usb_unlock_device(udev);
1936 usb_put_dev(udev);
Alan Stern088dc272006-08-21 12:08:19 -04001937 kfree(req);
1938}
1939
Alan Sterndf718962008-12-19 10:27:56 -05001940/* Cancel pending Set-Config requests for a device whose configuration
1941 * was just changed
1942 */
1943static void cancel_async_set_config(struct usb_device *udev)
1944{
1945 struct set_config_request *req;
1946
1947 spin_lock(&set_config_lock);
1948 list_for_each_entry(req, &set_config_list, node) {
1949 if (req->udev == udev)
1950 req->config = -999; /* Mark as cancelled */
1951 }
1952 spin_unlock(&set_config_lock);
1953}
1954
Alan Stern088dc272006-08-21 12:08:19 -04001955/**
1956 * usb_driver_set_configuration - Provide a way for drivers to change device configurations
1957 * @udev: the device whose configuration is being updated
1958 * @config: the configuration being chosen.
1959 * Context: In process context, must be able to sleep
1960 *
1961 * Device interface drivers are not allowed to change device configurations.
1962 * This is because changing configurations will destroy the interface the
1963 * driver is bound to and create new ones; it would be like a floppy-disk
1964 * driver telling the computer to replace the floppy-disk drive with a
1965 * tape drive!
1966 *
1967 * Still, in certain specialized circumstances the need may arise. This
1968 * routine gets around the normal restrictions by using a work thread to
1969 * submit the change-config request.
1970 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001971 * Returns 0 if the request was successfully queued, error code otherwise.
Alan Stern088dc272006-08-21 12:08:19 -04001972 * The caller has no way to know whether the queued request will eventually
1973 * succeed.
1974 */
1975int usb_driver_set_configuration(struct usb_device *udev, int config)
1976{
1977 struct set_config_request *req;
1978
1979 req = kmalloc(sizeof(*req), GFP_KERNEL);
1980 if (!req)
1981 return -ENOMEM;
1982 req->udev = udev;
1983 req->config = config;
David Howellsc4028952006-11-22 14:57:56 +00001984 INIT_WORK(&req->work, driver_set_config_work);
Alan Stern088dc272006-08-21 12:08:19 -04001985
Alan Sterndf718962008-12-19 10:27:56 -05001986 spin_lock(&set_config_lock);
1987 list_add(&req->node, &set_config_list);
1988 spin_unlock(&set_config_lock);
1989
Alan Stern088dc272006-08-21 12:08:19 -04001990 usb_get_dev(udev);
Alan Stern1737bf22006-12-15 16:04:52 -05001991 schedule_work(&req->work);
Alan Stern088dc272006-08-21 12:08:19 -04001992 return 0;
1993}
1994EXPORT_SYMBOL_GPL(usb_driver_set_configuration);