blob: 9720e699f4729737cbdd90946f234e567fc0d874 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/byteorder.h>
18
19#include "hcd.h" /* for usbcore internals */
20#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
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800149 /* dbg("usb_control_msg"); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 ret = usb_internal_control_msg(dev, pipe, dr, data, size, timeout);
152
153 kfree(dr);
154
155 return ret;
156}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600157EXPORT_SYMBOL_GPL(usb_control_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159/**
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700160 * usb_interrupt_msg - Builds an interrupt urb, sends it off and waits for completion
161 * @usb_dev: pointer to the usb device to send the message to
162 * @pipe: endpoint "pipe" to send the message to
163 * @data: pointer to the data to send
164 * @len: length in bytes of the data to send
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800165 * @actual_length: pointer to a location to put the actual length transferred
166 * in bytes
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700167 * @timeout: time in msecs to wait for the message to complete before
168 * timing out (if 0 the wait is forever)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800169 *
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700170 * Context: !in_interrupt ()
171 *
172 * This function sends a simple interrupt message to a specified endpoint and
173 * waits for the message to complete, or timeout.
174 *
175 * If successful, it returns 0, otherwise a negative error number. The number
176 * of actual bytes transferred will be stored in the actual_length paramater.
177 *
178 * Don't use this function from within an interrupt context, like a bottom half
179 * handler. If you need an asynchronous message, or need to send a message
180 * from within interrupt context, use usb_submit_urb() If a thread in your
181 * driver uses this call, make sure your disconnect() method can wait for it to
182 * complete. Since you don't have a handle on the URB used, you can't cancel
183 * the request.
184 */
185int usb_interrupt_msg(struct usb_device *usb_dev, unsigned int pipe,
186 void *data, int len, int *actual_length, int timeout)
187{
188 return usb_bulk_msg(usb_dev, pipe, data, len, actual_length, timeout);
189}
190EXPORT_SYMBOL_GPL(usb_interrupt_msg);
191
192/**
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800193 * usb_bulk_msg - Builds a bulk urb, sends it off and waits for completion
194 * @usb_dev: pointer to the usb device to send the message to
195 * @pipe: endpoint "pipe" to send the message to
196 * @data: pointer to the data to send
197 * @len: length in bytes of the data to send
198 * @actual_length: pointer to a location to put the actual length transferred
199 * in bytes
200 * @timeout: time in msecs to wait for the message to complete before
201 * timing out (if 0 the wait is forever)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800203 * Context: !in_interrupt ()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800205 * This function sends a simple bulk message to a specified endpoint
206 * and waits for the message to complete, or timeout.
Alan Sternd09d36a2005-09-26 16:22:45 -0400207 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800208 * If successful, it returns 0, otherwise a negative error number. The number
209 * of actual bytes transferred will be stored in the actual_length paramater.
210 *
211 * Don't use this function from within an interrupt context, like a bottom half
212 * handler. If you need an asynchronous message, or need to send a message
213 * from within interrupt context, use usb_submit_urb() If a thread in your
214 * driver uses this call, make sure your disconnect() method can wait for it to
215 * complete. Since you don't have a handle on the URB used, you can't cancel
216 * the request.
217 *
218 * Because there is no usb_interrupt_msg() and no USBDEVFS_INTERRUPT ioctl,
219 * users are forced to abuse this routine by using it to submit URBs for
220 * interrupt endpoints. We will take the liberty of creating an interrupt URB
221 * (with the default interval) if the target is an interrupt endpoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800223int usb_bulk_msg(struct usb_device *usb_dev, unsigned int pipe,
224 void *data, int len, int *actual_length, int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 struct urb *urb;
Alan Sternd09d36a2005-09-26 16:22:45 -0400227 struct usb_host_endpoint *ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Alan Sternd09d36a2005-09-26 16:22:45 -0400229 ep = (usb_pipein(pipe) ? usb_dev->ep_in : usb_dev->ep_out)
230 [usb_pipeendpoint(pipe)];
231 if (!ep || len < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return -EINVAL;
233
Alan Sternd09d36a2005-09-26 16:22:45 -0400234 urb = usb_alloc_urb(0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 if (!urb)
236 return -ENOMEM;
237
Alan Sternd09d36a2005-09-26 16:22:45 -0400238 if ((ep->desc.bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
239 USB_ENDPOINT_XFER_INT) {
240 pipe = (pipe & ~(3 << 30)) | (PIPE_INTERRUPT << 30);
241 usb_fill_int_urb(urb, usb_dev, pipe, data, len,
Alan Stern8d062b92007-04-23 17:30:32 -0400242 usb_api_blocking_completion, NULL,
243 ep->desc.bInterval);
Alan Sternd09d36a2005-09-26 16:22:45 -0400244 } else
245 usb_fill_bulk_urb(urb, usb_dev, pipe, data, len,
246 usb_api_blocking_completion, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 return usb_start_wait_urb(urb, timeout, actual_length);
249}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600250EXPORT_SYMBOL_GPL(usb_bulk_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252/*-------------------------------------------------------------------*/
253
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800254static void sg_clean(struct usb_sg_request *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 if (io->urbs) {
257 while (io->entries--)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800258 usb_free_urb(io->urbs [io->entries]);
259 kfree(io->urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 io->urbs = NULL;
261 }
262 if (io->dev->dev.dma_mask != NULL)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800263 usb_buffer_unmap_sg(io->dev, usb_pipein(io->pipe),
264 io->sg, io->nents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 io->dev = NULL;
266}
267
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800268static void sg_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800270 struct usb_sg_request *io = urb->context;
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700271 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800273 spin_lock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 /* In 2.5 we require hcds' endpoint queues not to progress after fault
276 * reports, until the completion callback (this!) returns. That lets
277 * device driver code (like this routine) unlink queued urbs first,
278 * if it needs to, since the HC won't work on them at all. So it's
279 * not possible for page N+1 to overwrite page N, and so on.
280 *
281 * That's only for "hard" faults; "soft" faults (unlinks) sometimes
282 * complete before the HCD can get requests away from hardware,
283 * though never during cleanup after a hard fault.
284 */
285 if (io->status
286 && (io->status != -ECONNRESET
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700287 || status != -ECONNRESET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 && urb->actual_length) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800289 dev_err(io->dev->bus->controller,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 "dev %s ep%d%s scatterlist error %d/%d\n",
291 io->dev->devpath,
Alan Stern5e60a162007-07-30 17:07:21 -0400292 usb_endpoint_num(&urb->ep->desc),
293 usb_urb_dir_in(urb) ? "in" : "out",
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700294 status, io->status);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800295 /* BUG (); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
297
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700298 if (io->status == 0 && status && status != -ECONNRESET) {
299 int i, found, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700301 io->status = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 /* the previous urbs, and this one, completed already.
304 * unlink pending urbs so they won't rx/tx bad data.
305 * careful: unlink can sometimes be synchronous...
306 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800307 spin_unlock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 for (i = 0, found = 0; i < io->entries; i++) {
309 if (!io->urbs [i] || !io->urbs [i]->dev)
310 continue;
311 if (found) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800312 retval = usb_unlink_urb(io->urbs [i]);
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700313 if (retval != -EINPROGRESS &&
314 retval != -ENODEV &&
315 retval != -EBUSY)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800316 dev_err(&io->dev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 "%s, unlink --> %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800318 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 } else if (urb == io->urbs [i])
320 found = 1;
321 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800322 spin_lock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
324 urb->dev = NULL;
325
326 /* on the last completion, signal usb_sg_wait() */
327 io->bytes += urb->actual_length;
328 io->count--;
329 if (!io->count)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800330 complete(&io->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800332 spin_unlock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
335
336/**
337 * usb_sg_init - initializes scatterlist-based bulk/interrupt I/O request
338 * @io: request block being initialized. until usb_sg_wait() returns,
339 * treat this as a pointer to an opaque block of memory,
340 * @dev: the usb device that will send or receive the data
341 * @pipe: endpoint "pipe" used to transfer the data
342 * @period: polling rate for interrupt endpoints, in frames or
343 * (for high speed endpoints) microframes; ignored for bulk
344 * @sg: scatterlist entries
345 * @nents: how many entries in the scatterlist
346 * @length: how many bytes to send from the scatterlist, or zero to
347 * send every byte identified in the list.
348 * @mem_flags: SLAB_* flags affecting memory allocations in this call
349 *
350 * Returns zero for success, else a negative errno value. This initializes a
351 * scatter/gather request, allocating resources such as I/O mappings and urb
352 * memory (except maybe memory used by USB controller drivers).
353 *
354 * The request must be issued using usb_sg_wait(), which waits for the I/O to
355 * complete (or to be canceled) and then cleans up all resources allocated by
356 * usb_sg_init().
357 *
358 * The request may be canceled with usb_sg_cancel(), either before or after
359 * usb_sg_wait() is called.
360 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800361int usb_sg_init(struct usb_sg_request *io, struct usb_device *dev,
362 unsigned pipe, unsigned period, struct scatterlist *sg,
363 int nents, size_t length, gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800365 int i;
366 int urb_flags;
367 int dma;
Sarah Sharpe04748e2009-04-27 19:59:01 -0700368 int use_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 if (!io || !dev || !sg
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800371 || usb_pipecontrol(pipe)
372 || usb_pipeisoc(pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 || nents <= 0)
374 return -EINVAL;
375
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800376 spin_lock_init(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 io->dev = dev;
378 io->pipe = pipe;
379 io->sg = sg;
380 io->nents = nents;
381
382 /* not all host controllers use DMA (like the mainstream pci ones);
383 * they can use PIO (sl811) or be software over another transport.
384 */
385 dma = (dev->dev.dma_mask != NULL);
386 if (dma)
Alan Stern5e60a162007-07-30 17:07:21 -0400387 io->entries = usb_buffer_map_sg(dev, usb_pipein(pipe),
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800388 sg, nents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 else
390 io->entries = nents;
391
392 /* initialize all the urbs we'll use */
393 if (io->entries <= 0)
394 return io->entries;
395
Sarah Sharpe04748e2009-04-27 19:59:01 -0700396 /* If we're running on an xHCI host controller, queue the whole scatter
397 * gather list with one call to urb_enqueue(). This is only for bulk,
398 * as that endpoint type does not care how the data gets broken up
399 * across frames.
400 */
401 if (usb_pipebulk(pipe) &&
402 bus_to_hcd(dev->bus)->driver->flags & HCD_USB3) {
403 io->urbs = kmalloc(sizeof *io->urbs, mem_flags);
404 use_sg = true;
405 } else {
406 io->urbs = kmalloc(io->entries * sizeof *io->urbs, mem_flags);
407 use_sg = false;
408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 if (!io->urbs)
410 goto nomem;
411
Yoshihiro Shimodae2722522008-04-21 13:48:22 +0900412 urb_flags = URB_NO_INTERRUPT;
413 if (dma)
414 urb_flags |= URB_NO_TRANSFER_DMA_MAP;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800415 if (usb_pipein(pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 urb_flags |= URB_SHORT_NOT_OK;
417
Sarah Sharpe04748e2009-04-27 19:59:01 -0700418 if (use_sg) {
419 io->urbs[0] = usb_alloc_urb(0, mem_flags);
420 if (!io->urbs[0]) {
421 io->entries = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 goto nomem;
423 }
424
Sarah Sharpe04748e2009-04-27 19:59:01 -0700425 io->urbs[0]->dev = NULL;
426 io->urbs[0]->pipe = pipe;
427 io->urbs[0]->interval = period;
428 io->urbs[0]->transfer_flags = urb_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Sarah Sharpe04748e2009-04-27 19:59:01 -0700430 io->urbs[0]->complete = sg_complete;
431 io->urbs[0]->context = io;
432 /* A length of zero means transfer the whole sg list */
433 io->urbs[0]->transfer_buffer_length = length;
434 if (length == 0) {
435 for_each_sg(sg, sg, io->entries, i) {
436 io->urbs[0]->transfer_buffer_length +=
437 sg_dma_len(sg);
438 }
439 }
440 io->urbs[0]->sg = io;
441 io->urbs[0]->num_sgs = io->entries;
442 io->entries = 1;
443 } else {
444 for_each_sg(sg, sg, io->entries, i) {
445 unsigned len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Sarah Sharpe04748e2009-04-27 19:59:01 -0700447 io->urbs[i] = usb_alloc_urb(0, mem_flags);
448 if (!io->urbs[i]) {
449 io->entries = i;
450 goto nomem;
451 }
452
453 io->urbs[i]->dev = NULL;
454 io->urbs[i]->pipe = pipe;
455 io->urbs[i]->interval = period;
456 io->urbs[i]->transfer_flags = urb_flags;
457
458 io->urbs[i]->complete = sg_complete;
459 io->urbs[i]->context = io;
460
461 /*
462 * Some systems need to revert to PIO when DMA is
463 * temporarily unavailable. For their sakes, both
464 * transfer_buffer and transfer_dma are set when
465 * possible. However this can only work on systems
466 * without:
467 *
468 * - HIGHMEM, since DMA buffers located in high memory
469 * are not directly addressable by the CPU for PIO;
470 *
471 * - IOMMU, since dma_map_sg() is allowed to use an
472 * IOMMU to make virtually discontiguous buffers be
473 * "dma-contiguous" so that PIO and DMA need diferent
474 * numbers of URBs.
475 *
476 * So when HIGHMEM or IOMMU are in use, transfer_buffer
477 * is NULL to prevent stale pointers and to help spot
478 * bugs.
479 */
480 if (dma) {
481 io->urbs[i]->transfer_dma = sg_dma_address(sg);
482 len = sg_dma_len(sg);
Joerg Roedel966396d2007-10-24 12:49:48 +0200483#if defined(CONFIG_HIGHMEM) || defined(CONFIG_GART_IOMMU)
Sarah Sharpe04748e2009-04-27 19:59:01 -0700484 io->urbs[i]->transfer_buffer = NULL;
Tony Lindgren35d07fd2007-03-31 18:15:43 -0700485#else
Sarah Sharpe04748e2009-04-27 19:59:01 -0700486 io->urbs[i]->transfer_buffer = sg_virt(sg);
Tony Lindgren35d07fd2007-03-31 18:15:43 -0700487#endif
Sarah Sharpe04748e2009-04-27 19:59:01 -0700488 } else {
489 /* hc may use _only_ transfer_buffer */
490 io->urbs[i]->transfer_buffer = sg_virt(sg);
491 len = sg->length;
492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Sarah Sharpe04748e2009-04-27 19:59:01 -0700494 if (length) {
495 len = min_t(unsigned, len, length);
496 length -= len;
497 if (length == 0)
498 io->entries = i + 1;
499 }
500 io->urbs[i]->transfer_buffer_length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 }
Sarah Sharpe04748e2009-04-27 19:59:01 -0700502 io->urbs[--i]->transfer_flags &= ~URB_NO_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 /* transaction state */
Alan Stern580da342008-08-05 13:05:17 -0400506 io->count = io->entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 io->status = 0;
508 io->bytes = 0;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800509 init_completion(&io->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return 0;
511
512nomem:
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800513 sg_clean(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 return -ENOMEM;
515}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600516EXPORT_SYMBOL_GPL(usb_sg_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518/**
519 * usb_sg_wait - synchronously execute scatter/gather request
520 * @io: request block handle, as initialized with usb_sg_init().
521 * some fields become accessible when this call returns.
522 * Context: !in_interrupt ()
523 *
524 * This function blocks until the specified I/O operation completes. It
525 * leverages the grouping of the related I/O requests to get good transfer
526 * rates, by queueing the requests. At higher speeds, such queuing can
527 * significantly improve USB throughput.
528 *
529 * There are three kinds of completion for this function.
530 * (1) success, where io->status is zero. The number of io->bytes
531 * transferred is as requested.
532 * (2) error, where io->status is a negative errno value. The number
533 * of io->bytes transferred before the error is usually less
534 * than requested, and can be nonzero.
Steven Cole093cf722005-05-03 19:07:24 -0600535 * (3) cancellation, a type of error with status -ECONNRESET that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 * is initiated by usb_sg_cancel().
537 *
538 * When this function returns, all memory allocated through usb_sg_init() or
539 * this call will have been freed. The request block parameter may still be
540 * passed to usb_sg_cancel(), or it may be freed. It could also be
541 * reinitialized and then reused.
542 *
543 * Data Transfer Rates:
544 *
545 * Bulk transfers are valid for full or high speed endpoints.
546 * The best full speed data rate is 19 packets of 64 bytes each
547 * per frame, or 1216 bytes per millisecond.
548 * The best high speed data rate is 13 packets of 512 bytes each
549 * per microframe, or 52 KBytes per millisecond.
550 *
551 * The reason to use interrupt transfers through this API would most likely
552 * be to reserve high speed bandwidth, where up to 24 KBytes per millisecond
553 * could be transferred. That capability is less useful for low or full
554 * speed interrupt endpoints, which allow at most one packet per millisecond,
555 * of at most 8 or 64 bytes (respectively).
Sarah Sharp79abb1a2009-04-27 19:58:26 -0700556 *
557 * It is not necessary to call this function to reserve bandwidth for devices
558 * under an xHCI host controller, as the bandwidth is reserved when the
559 * configuration or interface alt setting is selected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800561void usb_sg_wait(struct usb_sg_request *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800563 int i;
564 int entries = io->entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 /* queue the urbs. */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800567 spin_lock_irq(&io->lock);
Alan Stern8ccef0d2007-06-21 16:26:46 -0400568 i = 0;
569 while (i < entries && !io->status) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800570 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800572 io->urbs[i]->dev = io->dev;
573 retval = usb_submit_urb(io->urbs [i], GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 /* after we submit, let completions or cancelations fire;
576 * we handshake using io->status.
577 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800578 spin_unlock_irq(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 switch (retval) {
580 /* maybe we retrying will recover */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800581 case -ENXIO: /* hc didn't queue this one */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 case -EAGAIN:
583 case -ENOMEM:
584 io->urbs[i]->dev = NULL;
585 retval = 0;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800586 yield();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 break;
588
589 /* no error? continue immediately.
590 *
591 * NOTE: to work better with UHCI (4K I/O buffer may
592 * need 3K of TDs) it may be good to limit how many
593 * URBs are queued at once; N milliseconds?
594 */
595 case 0:
Alan Stern8ccef0d2007-06-21 16:26:46 -0400596 ++i;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800597 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 break;
599
600 /* fail any uncompleted urbs */
601 default:
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800602 io->urbs[i]->dev = NULL;
603 io->urbs[i]->status = retval;
604 dev_dbg(&io->dev->dev, "%s, submit --> %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800605 __func__, retval);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800606 usb_sg_cancel(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800608 spin_lock_irq(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (retval && (io->status == 0 || io->status == -ECONNRESET))
610 io->status = retval;
611 }
612 io->count -= entries - i;
613 if (io->count == 0)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800614 complete(&io->complete);
615 spin_unlock_irq(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 /* OK, yes, this could be packaged as non-blocking.
618 * So could the submit loop above ... but it's easier to
619 * solve neither problem than to solve both!
620 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800621 wait_for_completion(&io->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800623 sg_clean(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600625EXPORT_SYMBOL_GPL(usb_sg_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627/**
628 * usb_sg_cancel - stop scatter/gather i/o issued by usb_sg_wait()
629 * @io: request block, initialized with usb_sg_init()
630 *
631 * This stops a request after it has been started by usb_sg_wait().
632 * It can also prevents one initialized by usb_sg_init() from starting,
633 * so that call just frees resources allocated to the request.
634 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800635void usb_sg_cancel(struct usb_sg_request *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800637 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800639 spin_lock_irqsave(&io->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 /* shut everything down, if it didn't already */
642 if (!io->status) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800643 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 io->status = -ECONNRESET;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800646 spin_unlock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 for (i = 0; i < io->entries; i++) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800648 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 if (!io->urbs [i]->dev)
651 continue;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800652 retval = usb_unlink_urb(io->urbs [i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (retval != -EINPROGRESS && retval != -EBUSY)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800654 dev_warn(&io->dev->dev, "%s, unlink --> %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800655 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800657 spin_lock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800659 spin_unlock_irqrestore(&io->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600661EXPORT_SYMBOL_GPL(usb_sg_cancel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663/*-------------------------------------------------------------------*/
664
665/**
666 * usb_get_descriptor - issues a generic GET_DESCRIPTOR request
667 * @dev: the device whose descriptor is being retrieved
668 * @type: the descriptor type (USB_DT_*)
669 * @index: the number of the descriptor
670 * @buf: where to put the descriptor
671 * @size: how big is "buf"?
672 * Context: !in_interrupt ()
673 *
674 * Gets a USB descriptor. Convenience functions exist to simplify
675 * getting some types of descriptors. Use
676 * usb_get_string() or usb_string() for USB_DT_STRING.
677 * Device (USB_DT_DEVICE) and configuration descriptors (USB_DT_CONFIG)
678 * are part of the device structure.
679 * In addition to a number of USB-standard descriptors, some
680 * devices also use class-specific or vendor-specific descriptors.
681 *
682 * This call is synchronous, and may not be used in an interrupt context.
683 *
684 * Returns the number of bytes received on success, or else the status code
685 * returned by the underlying usb_control_msg() call.
686 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800687int usb_get_descriptor(struct usb_device *dev, unsigned char type,
688 unsigned char index, void *buf, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690 int i;
691 int result;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800692
693 memset(buf, 0, size); /* Make sure we parse really received data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695 for (i = 0; i < 3; ++i) {
Alan Sternc39772d2007-08-20 10:45:28 -0400696 /* retry on length 0 or error; some devices are flakey */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
698 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
699 (type << 8) + index, 0, buf, size,
700 USB_CTRL_GET_TIMEOUT);
Alan Sternc39772d2007-08-20 10:45:28 -0400701 if (result <= 0 && result != -ETIMEDOUT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 continue;
703 if (result > 1 && ((u8 *)buf)[1] != type) {
Alan Stern67f5a4b2009-02-20 16:33:08 -0500704 result = -ENODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 continue;
706 }
707 break;
708 }
709 return result;
710}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600711EXPORT_SYMBOL_GPL(usb_get_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713/**
714 * usb_get_string - gets a string descriptor
715 * @dev: the device whose string descriptor is being retrieved
716 * @langid: code for language chosen (from string descriptor zero)
717 * @index: the number of the descriptor
718 * @buf: where to put the string
719 * @size: how big is "buf"?
720 * Context: !in_interrupt ()
721 *
722 * Retrieves a string, encoded using UTF-16LE (Unicode, 16 bits per character,
723 * in little-endian byte order).
724 * The usb_string() function will often be a convenient way to turn
725 * these strings into kernel-printable form.
726 *
727 * Strings may be referenced in device, configuration, interface, or other
728 * descriptors, and could also be used in vendor-specific ways.
729 *
730 * This call is synchronous, and may not be used in an interrupt context.
731 *
732 * Returns the number of bytes received on success, or else the status code
733 * returned by the underlying usb_control_msg() call.
734 */
Adrian Bunke266a122005-11-08 21:05:43 +0100735static int usb_get_string(struct usb_device *dev, unsigned short langid,
736 unsigned char index, void *buf, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
738 int i;
739 int result;
740
741 for (i = 0; i < 3; ++i) {
742 /* retry on length 0 or stall; some devices are flakey */
743 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
744 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
745 (USB_DT_STRING << 8) + index, langid, buf, size,
746 USB_CTRL_GET_TIMEOUT);
Alan Stern67f5a4b2009-02-20 16:33:08 -0500747 if (result == 0 || result == -EPIPE)
748 continue;
749 if (result > 1 && ((u8 *) buf)[1] != USB_DT_STRING) {
750 result = -ENODATA;
751 continue;
752 }
753 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
755 return result;
756}
757
758static void usb_try_string_workarounds(unsigned char *buf, int *length)
759{
760 int newlength, oldlength = *length;
761
762 for (newlength = 2; newlength + 1 < oldlength; newlength += 2)
763 if (!isprint(buf[newlength]) || buf[newlength + 1])
764 break;
765
766 if (newlength > 2) {
767 buf[0] = newlength;
768 *length = newlength;
769 }
770}
771
772static int usb_string_sub(struct usb_device *dev, unsigned int langid,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800773 unsigned int index, unsigned char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
775 int rc;
776
777 /* Try to read the string descriptor by asking for the maximum
778 * possible number of bytes */
Oliver Neukum7ceec1f2007-01-26 14:26:21 +0100779 if (dev->quirks & USB_QUIRK_STRING_FETCH_255)
780 rc = -EIO;
781 else
782 rc = usb_get_string(dev, langid, index, buf, 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 /* If that failed try to read the descriptor length, then
785 * ask for just that many bytes */
786 if (rc < 2) {
787 rc = usb_get_string(dev, langid, index, buf, 2);
788 if (rc == 2)
789 rc = usb_get_string(dev, langid, index, buf, buf[0]);
790 }
791
792 if (rc >= 2) {
793 if (!buf[0] && !buf[1])
794 usb_try_string_workarounds(buf, &rc);
795
796 /* There might be extra junk at the end of the descriptor */
797 if (buf[0] < rc)
798 rc = buf[0];
799
800 rc = rc - (rc & 1); /* force a multiple of two */
801 }
802
803 if (rc < 2)
804 rc = (rc < 0 ? rc : -EINVAL);
805
806 return rc;
807}
808
Daniel Mack0cce2ed2009-07-10 11:04:58 +0200809static int usb_get_langid(struct usb_device *dev, unsigned char *tbuf)
810{
811 int err;
812
813 if (dev->have_langid)
814 return 0;
815
816 if (dev->string_langid < 0)
817 return -EPIPE;
818
819 err = usb_string_sub(dev, 0, 0, tbuf);
820
821 /* If the string was reported but is malformed, default to english
822 * (0x0409) */
823 if (err == -ENODATA || (err > 0 && err < 4)) {
824 dev->string_langid = 0x0409;
825 dev->have_langid = 1;
826 dev_err(&dev->dev,
827 "string descriptor 0 malformed (err = %d), "
828 "defaulting to 0x%04x\n",
829 err, dev->string_langid);
830 return 0;
831 }
832
833 /* In case of all other errors, we assume the device is not able to
834 * deal with strings at all. Set string_langid to -1 in order to
835 * prevent any string to be retrieved from the device */
836 if (err < 0) {
837 dev_err(&dev->dev, "string descriptor 0 read error: %d\n",
838 err);
839 dev->string_langid = -1;
840 return -EPIPE;
841 }
842
843 /* always use the first langid listed */
844 dev->string_langid = tbuf[2] | (tbuf[3] << 8);
845 dev->have_langid = 1;
846 dev_dbg(&dev->dev, "default language 0x%04x\n",
847 dev->string_langid);
848 return 0;
849}
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851/**
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200852 * usb_string - returns UTF-8 version of a string descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 * @dev: the device whose string descriptor is being retrieved
854 * @index: the number of the descriptor
855 * @buf: where to put the string
856 * @size: how big is "buf"?
857 * Context: !in_interrupt ()
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800858 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 * This converts the UTF-16LE encoded strings returned by devices, from
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200860 * usb_get_string_descriptor(), to null-terminated UTF-8 encoded ones
861 * that are more usable in most kernel contexts. Note that this function
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 * chooses strings in the first language supported by the device.
863 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 * This call is synchronous, and may not be used in an interrupt context.
865 *
866 * Returns length of the string (>= 0) or usb_control_msg status (< 0).
867 */
868int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
869{
870 unsigned char *tbuf;
871 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 if (dev->state == USB_STATE_SUSPENDED)
874 return -EHOSTUNREACH;
875 if (size <= 0 || !buf || !index)
876 return -EINVAL;
877 buf[0] = 0;
Alan Stern74675a52009-04-30 10:08:18 -0400878 tbuf = kmalloc(256, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (!tbuf)
880 return -ENOMEM;
881
Daniel Mack0cce2ed2009-07-10 11:04:58 +0200882 err = usb_get_langid(dev, tbuf);
883 if (err < 0)
884 goto errout;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 err = usb_string_sub(dev, dev->string_langid, index, tbuf);
887 if (err < 0)
888 goto errout;
889
890 size--; /* leave room for trailing NULL char in output buffer */
Alan Stern74675a52009-04-30 10:08:18 -0400891 err = utf16s_to_utf8s((wchar_t *) &tbuf[2], (err - 2) / 2,
892 UTF16_LITTLE_ENDIAN, buf, size);
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200893 buf[err] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 if (tbuf[1] != USB_DT_STRING)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800896 dev_dbg(&dev->dev,
897 "wrong descriptor type %02x for string %d (\"%s\")\n",
898 tbuf[1], index, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 errout:
901 kfree(tbuf);
902 return err;
903}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600904EXPORT_SYMBOL_GPL(usb_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200906/* one UTF-8-encoded 16-bit character has at most three bytes */
907#define MAX_USB_STRING_SIZE (127 * 3 + 1)
908
Alan Stern4f62efe2005-10-24 16:24:14 -0400909/**
910 * usb_cache_string - read a string descriptor and cache it for later use
911 * @udev: the device whose string descriptor is being read
912 * @index: the descriptor index
913 *
914 * Returns a pointer to a kmalloc'ed buffer containing the descriptor string,
915 * or NULL if the index is 0 or the string could not be read.
916 */
917char *usb_cache_string(struct usb_device *udev, int index)
918{
919 char *buf;
920 char *smallbuf = NULL;
921 int len;
922
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800923 if (index <= 0)
924 return NULL;
925
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200926 buf = kmalloc(MAX_USB_STRING_SIZE, GFP_KERNEL);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800927 if (buf) {
Clemens Ladischa853a3d2009-04-24 10:12:18 +0200928 len = usb_string(udev, index, buf, MAX_USB_STRING_SIZE);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800929 if (len > 0) {
930 smallbuf = kmalloc(++len, GFP_KERNEL);
931 if (!smallbuf)
Alan Stern4f62efe2005-10-24 16:24:14 -0400932 return buf;
933 memcpy(smallbuf, buf, len);
934 }
935 kfree(buf);
936 }
937 return smallbuf;
938}
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940/*
941 * usb_get_device_descriptor - (re)reads the device descriptor (usbcore)
942 * @dev: the device whose device descriptor is being updated
943 * @size: how much of the descriptor to read
944 * Context: !in_interrupt ()
945 *
946 * Updates the copy of the device descriptor stored in the device structure,
Laurent Pinchart6ab16a92006-11-07 10:16:25 +0100947 * which dedicates space for this purpose.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 *
949 * Not exported, only for use by the core. If drivers really want to read
950 * the device descriptor directly, they can call usb_get_descriptor() with
951 * type = USB_DT_DEVICE and index = 0.
952 *
953 * This call is synchronous, and may not be used in an interrupt context.
954 *
955 * Returns the number of bytes received on success, or else the status code
956 * returned by the underlying usb_control_msg() call.
957 */
958int usb_get_device_descriptor(struct usb_device *dev, unsigned int size)
959{
960 struct usb_device_descriptor *desc;
961 int ret;
962
963 if (size > sizeof(*desc))
964 return -EINVAL;
965 desc = kmalloc(sizeof(*desc), GFP_NOIO);
966 if (!desc)
967 return -ENOMEM;
968
969 ret = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, size);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800970 if (ret >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 memcpy(&dev->descriptor, desc, size);
972 kfree(desc);
973 return ret;
974}
975
976/**
977 * usb_get_status - issues a GET_STATUS call
978 * @dev: the device whose status is being checked
979 * @type: USB_RECIP_*; for device, interface, or endpoint
980 * @target: zero (for device), else interface or endpoint number
981 * @data: pointer to two bytes of bitmap data
982 * Context: !in_interrupt ()
983 *
984 * Returns device, interface, or endpoint status. Normally only of
985 * interest to see if the device is self powered, or has enabled the
986 * remote wakeup facility; or whether a bulk or interrupt endpoint
987 * is halted ("stalled").
988 *
989 * Bits in these status bitmaps are set using the SET_FEATURE request,
990 * and cleared using the CLEAR_FEATURE request. The usb_clear_halt()
991 * function should be used to clear halt ("stall") status.
992 *
993 * This call is synchronous, and may not be used in an interrupt context.
994 *
995 * Returns the number of bytes received on success, or else the status code
996 * returned by the underlying usb_control_msg() call.
997 */
998int usb_get_status(struct usb_device *dev, int type, int target, void *data)
999{
1000 int ret;
1001 u16 *status = kmalloc(sizeof(*status), GFP_KERNEL);
1002
1003 if (!status)
1004 return -ENOMEM;
1005
1006 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
1007 USB_REQ_GET_STATUS, USB_DIR_IN | type, 0, target, status,
1008 sizeof(*status), USB_CTRL_GET_TIMEOUT);
1009
1010 *(u16 *)data = *status;
1011 kfree(status);
1012 return ret;
1013}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001014EXPORT_SYMBOL_GPL(usb_get_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016/**
1017 * usb_clear_halt - tells device to clear endpoint halt/stall condition
1018 * @dev: device whose endpoint is halted
1019 * @pipe: endpoint "pipe" being cleared
1020 * Context: !in_interrupt ()
1021 *
1022 * This is used to clear halt conditions for bulk and interrupt endpoints,
1023 * as reported by URB completion status. Endpoints that are halted are
1024 * sometimes referred to as being "stalled". Such endpoints are unable
1025 * to transmit or receive data until the halt status is cleared. Any URBs
1026 * queued for such an endpoint should normally be unlinked by the driver
1027 * before clearing the halt condition, as described in sections 5.7.5
1028 * and 5.8.5 of the USB 2.0 spec.
1029 *
1030 * Note that control and isochronous endpoints don't halt, although control
1031 * endpoints report "protocol stall" (for unsupported requests) using the
1032 * same status code used to report a true stall.
1033 *
1034 * This call is synchronous, and may not be used in an interrupt context.
1035 *
1036 * Returns zero on success, or else the status code returned by the
1037 * underlying usb_control_msg() call.
1038 */
1039int usb_clear_halt(struct usb_device *dev, int pipe)
1040{
1041 int result;
1042 int endp = usb_pipeendpoint(pipe);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001043
1044 if (usb_pipein(pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 endp |= USB_DIR_IN;
1046
1047 /* we don't care if it wasn't halted first. in fact some devices
1048 * (like some ibmcam model 1 units) seem to expect hosts to make
1049 * this request for iso endpoints, which can't halt!
1050 */
1051 result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1052 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT,
1053 USB_ENDPOINT_HALT, endp, NULL, 0,
1054 USB_CTRL_SET_TIMEOUT);
1055
1056 /* don't un-halt or force to DATA0 except on success */
1057 if (result < 0)
1058 return result;
1059
1060 /* NOTE: seems like Microsoft and Apple don't bother verifying
1061 * the clear "took", so some devices could lock up if you check...
1062 * such as the Hagiwara FlashGate DUAL. So we won't bother.
1063 *
1064 * NOTE: make sure the logic here doesn't diverge much from
1065 * the copy in usb-storage, for as long as we need two copies.
1066 */
1067
David Vrabel3444b262009-04-08 17:36:28 +00001068 usb_reset_endpoint(dev, endp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 return 0;
1071}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001072EXPORT_SYMBOL_GPL(usb_clear_halt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Alan Stern3b23dd62008-12-05 14:10:34 -05001074static int create_intf_ep_devs(struct usb_interface *intf)
1075{
1076 struct usb_device *udev = interface_to_usbdev(intf);
1077 struct usb_host_interface *alt = intf->cur_altsetting;
1078 int i;
1079
1080 if (intf->ep_devs_created || intf->unregistering)
1081 return 0;
1082
1083 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
1084 (void) usb_create_ep_devs(&intf->dev, &alt->endpoint[i], udev);
1085 intf->ep_devs_created = 1;
1086 return 0;
1087}
1088
1089static void remove_intf_ep_devs(struct usb_interface *intf)
1090{
1091 struct usb_host_interface *alt = intf->cur_altsetting;
1092 int i;
1093
1094 if (!intf->ep_devs_created)
1095 return;
1096
1097 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
1098 usb_remove_ep_devs(&alt->endpoint[i]);
1099 intf->ep_devs_created = 0;
1100}
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102/**
1103 * usb_disable_endpoint -- Disable an endpoint by address
1104 * @dev: the device whose endpoint is being disabled
1105 * @epaddr: the endpoint's address. Endpoint number for output,
1106 * endpoint number + USB_DIR_IN for input
Alan Sternddeac4e2009-01-15 17:03:33 -05001107 * @reset_hardware: flag to erase any endpoint state stored in the
1108 * controller hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 *
Alan Sternddeac4e2009-01-15 17:03:33 -05001110 * Disables the endpoint for URB submission and nukes all pending URBs.
1111 * If @reset_hardware is set then also deallocates hcd/hardware state
1112 * for the endpoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 */
Alan Sternddeac4e2009-01-15 17:03:33 -05001114void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr,
1115 bool reset_hardware)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116{
1117 unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK;
1118 struct usb_host_endpoint *ep;
1119
1120 if (!dev)
1121 return;
1122
1123 if (usb_endpoint_out(epaddr)) {
1124 ep = dev->ep_out[epnum];
Alan Sternddeac4e2009-01-15 17:03:33 -05001125 if (reset_hardware)
1126 dev->ep_out[epnum] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 } else {
1128 ep = dev->ep_in[epnum];
Alan Sternddeac4e2009-01-15 17:03:33 -05001129 if (reset_hardware)
1130 dev->ep_in[epnum] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 }
Alan Sternbdd016b2007-07-30 17:05:22 -04001132 if (ep) {
1133 ep->enabled = 0;
Alan Stern95cf82f2007-09-10 11:33:05 -04001134 usb_hcd_flush_endpoint(dev, ep);
Alan Sternddeac4e2009-01-15 17:03:33 -05001135 if (reset_hardware)
1136 usb_hcd_disable_endpoint(dev, ep);
Alan Sternbdd016b2007-07-30 17:05:22 -04001137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138}
1139
1140/**
David Vrabel3444b262009-04-08 17:36:28 +00001141 * usb_reset_endpoint - Reset an endpoint's state.
1142 * @dev: the device whose endpoint is to be reset
1143 * @epaddr: the endpoint's address. Endpoint number for output,
1144 * endpoint number + USB_DIR_IN for input
1145 *
1146 * Resets any host-side endpoint state such as the toggle bit,
1147 * sequence number or current window.
1148 */
1149void usb_reset_endpoint(struct usb_device *dev, unsigned int epaddr)
1150{
1151 unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK;
1152 struct usb_host_endpoint *ep;
1153
1154 if (usb_endpoint_out(epaddr))
1155 ep = dev->ep_out[epnum];
1156 else
1157 ep = dev->ep_in[epnum];
1158 if (ep)
1159 usb_hcd_reset_endpoint(dev, ep);
1160}
1161EXPORT_SYMBOL_GPL(usb_reset_endpoint);
1162
1163
1164/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 * usb_disable_interface -- Disable all endpoints for an interface
1166 * @dev: the device whose interface is being disabled
1167 * @intf: pointer to the interface descriptor
Alan Sternddeac4e2009-01-15 17:03:33 -05001168 * @reset_hardware: flag to erase any endpoint state stored in the
1169 * controller hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 *
1171 * Disables all the endpoints for the interface's current altsetting.
1172 */
Alan Sternddeac4e2009-01-15 17:03:33 -05001173void usb_disable_interface(struct usb_device *dev, struct usb_interface *intf,
1174 bool reset_hardware)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175{
1176 struct usb_host_interface *alt = intf->cur_altsetting;
1177 int i;
1178
1179 for (i = 0; i < alt->desc.bNumEndpoints; ++i) {
1180 usb_disable_endpoint(dev,
Alan Sternddeac4e2009-01-15 17:03:33 -05001181 alt->endpoint[i].desc.bEndpointAddress,
1182 reset_hardware);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 }
1184}
1185
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001186/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 * usb_disable_device - Disable all the endpoints for a USB device
1188 * @dev: the device whose endpoints are being disabled
1189 * @skip_ep0: 0 to disable endpoint 0, 1 to skip it.
1190 *
1191 * Disables all the device's endpoints, potentially including endpoint 0.
1192 * Deallocates hcd/hardware state for the endpoints (nuking all or most
1193 * pending urbs) and usbcore state for the interfaces, so that usbcore
1194 * must usb_set_configuration() before any interfaces could be used.
1195 */
1196void usb_disable_device(struct usb_device *dev, int skip_ep0)
1197{
1198 int i;
1199
Harvey Harrison441b62c2008-03-03 16:08:34 -08001200 dev_dbg(&dev->dev, "%s nuking %s URBs\n", __func__,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001201 skip_ep0 ? "non-ep0" : "all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 for (i = skip_ep0; i < 16; ++i) {
Alan Sternddeac4e2009-01-15 17:03:33 -05001203 usb_disable_endpoint(dev, i, true);
1204 usb_disable_endpoint(dev, i + USB_DIR_IN, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207 /* getting rid of interfaces will disconnect
1208 * any drivers bound to them (a key side effect)
1209 */
1210 if (dev->actconfig) {
1211 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
1212 struct usb_interface *interface;
1213
Alan Stern86d30742005-07-29 12:17:16 -07001214 /* remove this interface if it has been registered */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 interface = dev->actconfig->interface[i];
Daniel Ritzd305ef52005-09-22 00:47:24 -07001216 if (!device_is_registered(&interface->dev))
Alan Stern86d30742005-07-29 12:17:16 -07001217 continue;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001218 dev_dbg(&dev->dev, "unregistering interface %s\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001219 dev_name(&interface->dev));
Alan Stern352d0262008-10-29 15:16:58 -04001220 interface->unregistering = 1;
Alan Stern3b23dd62008-12-05 14:10:34 -05001221 remove_intf_ep_devs(interface);
Alan Stern1a211752008-07-30 11:31:50 -04001222 device_del(&interface->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224
1225 /* Now that the interfaces are unbound, nobody should
1226 * try to access them.
1227 */
1228 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001229 put_device(&dev->actconfig->interface[i]->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 dev->actconfig->interface[i] = NULL;
1231 }
1232 dev->actconfig = NULL;
1233 if (dev->state == USB_STATE_CONFIGURED)
1234 usb_set_device_state(dev, USB_STATE_ADDRESS);
1235 }
1236}
1237
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001238/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 * usb_enable_endpoint - Enable an endpoint for USB communications
1240 * @dev: the device whose interface is being enabled
1241 * @ep: the endpoint
David Vrabel3444b262009-04-08 17:36:28 +00001242 * @reset_ep: flag to reset the endpoint state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 *
David Vrabel3444b262009-04-08 17:36:28 +00001244 * Resets the endpoint state if asked, and sets dev->ep_{in,out} pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 * For control endpoints, both the input and output sides are handled.
1246 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001247void usb_enable_endpoint(struct usb_device *dev, struct usb_host_endpoint *ep,
David Vrabel3444b262009-04-08 17:36:28 +00001248 bool reset_ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249{
Alan Sternbdd016b2007-07-30 17:05:22 -04001250 int epnum = usb_endpoint_num(&ep->desc);
1251 int is_out = usb_endpoint_dir_out(&ep->desc);
1252 int is_control = usb_endpoint_xfer_control(&ep->desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
David Vrabel3444b262009-04-08 17:36:28 +00001254 if (reset_ep)
1255 usb_hcd_reset_endpoint(dev, ep);
1256 if (is_out || is_control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 dev->ep_out[epnum] = ep;
David Vrabel3444b262009-04-08 17:36:28 +00001258 if (!is_out || is_control)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 dev->ep_in[epnum] = ep;
Alan Sternbdd016b2007-07-30 17:05:22 -04001260 ep->enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261}
1262
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001263/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 * usb_enable_interface - Enable all the endpoints for an interface
1265 * @dev: the device whose interface is being enabled
1266 * @intf: pointer to the interface descriptor
David Vrabel3444b262009-04-08 17:36:28 +00001267 * @reset_eps: flag to reset the endpoints' state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 *
1269 * Enables all the endpoints for the interface's current altsetting.
1270 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001271void usb_enable_interface(struct usb_device *dev,
David Vrabel3444b262009-04-08 17:36:28 +00001272 struct usb_interface *intf, bool reset_eps)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273{
1274 struct usb_host_interface *alt = intf->cur_altsetting;
1275 int i;
1276
1277 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
David Vrabel3444b262009-04-08 17:36:28 +00001278 usb_enable_endpoint(dev, &alt->endpoint[i], reset_eps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279}
1280
1281/**
1282 * usb_set_interface - Makes a particular alternate setting be current
1283 * @dev: the device whose interface is being updated
1284 * @interface: the interface being updated
1285 * @alternate: the setting being chosen.
1286 * Context: !in_interrupt ()
1287 *
1288 * This is used to enable data transfers on interfaces that may not
1289 * be enabled by default. Not all devices support such configurability.
1290 * Only the driver bound to an interface may change its setting.
1291 *
1292 * Within any given configuration, each interface may have several
1293 * alternative settings. These are often used to control levels of
1294 * bandwidth consumption. For example, the default setting for a high
1295 * speed interrupt endpoint may not send more than 64 bytes per microframe,
1296 * while interrupt transfers of up to 3KBytes per microframe are legal.
1297 * Also, isochronous endpoints may never be part of an
1298 * interface's default setting. To access such bandwidth, alternate
1299 * interface settings must be made current.
1300 *
1301 * Note that in the Linux USB subsystem, bandwidth associated with
1302 * an endpoint in a given alternate setting is not reserved until an URB
1303 * is submitted that needs that bandwidth. Some other operating systems
1304 * allocate bandwidth early, when a configuration is chosen.
1305 *
1306 * This call is synchronous, and may not be used in an interrupt context.
1307 * Also, drivers must not change altsettings while urbs are scheduled for
1308 * endpoints in that interface; all such urbs must first be completed
1309 * (perhaps forced by unlinking).
1310 *
1311 * Returns zero on success, or else the status code returned by the
1312 * underlying usb_control_msg() call.
1313 */
1314int usb_set_interface(struct usb_device *dev, int interface, int alternate)
1315{
1316 struct usb_interface *iface;
1317 struct usb_host_interface *alt;
1318 int ret;
1319 int manual = 0;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001320 unsigned int epaddr;
1321 unsigned int pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 if (dev->state == USB_STATE_SUSPENDED)
1324 return -EHOSTUNREACH;
1325
1326 iface = usb_ifnum_to_if(dev, interface);
1327 if (!iface) {
1328 dev_dbg(&dev->dev, "selecting invalid interface %d\n",
1329 interface);
1330 return -EINVAL;
1331 }
1332
1333 alt = usb_altnum_to_altsetting(iface, alternate);
1334 if (!alt) {
Greg Kroah-Hartman3b6004f2008-08-14 09:37:34 -07001335 dev_warn(&dev->dev, "selecting invalid altsetting %d",
1336 alternate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 return -EINVAL;
1338 }
1339
Alan Stern392e1d92008-03-11 10:20:12 -04001340 if (dev->quirks & USB_QUIRK_NO_SET_INTF)
1341 ret = -EPIPE;
1342 else
1343 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
1345 alternate, interface, NULL, 0, 5000);
1346
1347 /* 9.4.10 says devices don't need this and are free to STALL the
1348 * request if the interface only has one alternate setting.
1349 */
1350 if (ret == -EPIPE && iface->num_altsetting == 1) {
1351 dev_dbg(&dev->dev,
1352 "manual set_interface for iface %d, alt %d\n",
1353 interface, alternate);
1354 manual = 1;
1355 } else if (ret < 0)
1356 return ret;
1357
1358 /* FIXME drivers shouldn't need to replicate/bugfix the logic here
1359 * when they implement async or easily-killable versions of this or
1360 * other "should-be-internal" functions (like clear_halt).
1361 * should hcd+usbcore postprocess control requests?
1362 */
1363
1364 /* prevent submissions using previous endpoint settings */
Alan Stern3b23dd62008-12-05 14:10:34 -05001365 if (iface->cur_altsetting != alt) {
1366 remove_intf_ep_devs(iface);
Alan Stern0e6c8e82005-10-24 15:33:03 -04001367 usb_remove_sysfs_intf_files(iface);
Alan Stern3b23dd62008-12-05 14:10:34 -05001368 }
Alan Sternddeac4e2009-01-15 17:03:33 -05001369 usb_disable_interface(dev, iface, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 iface->cur_altsetting = alt;
1372
1373 /* If the interface only has one altsetting and the device didn't
David Brownella81e7ec2005-04-18 17:39:25 -07001374 * accept the request, we attempt to carry out the equivalent action
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 * by manually clearing the HALT feature for each endpoint in the
1376 * new altsetting.
1377 */
1378 if (manual) {
1379 int i;
1380
1381 for (i = 0; i < alt->desc.bNumEndpoints; i++) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001382 epaddr = alt->endpoint[i].desc.bEndpointAddress;
1383 pipe = __create_pipe(dev,
1384 USB_ENDPOINT_NUMBER_MASK & epaddr) |
1385 (usb_endpoint_out(epaddr) ?
1386 USB_DIR_OUT : USB_DIR_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388 usb_clear_halt(dev, pipe);
1389 }
1390 }
1391
1392 /* 9.1.1.5: reset toggles for all endpoints in the new altsetting
1393 *
1394 * Note:
1395 * Despite EP0 is always present in all interfaces/AS, the list of
1396 * endpoints from the descriptor does not contain EP0. Due to its
1397 * omnipresence one might expect EP0 being considered "affected" by
1398 * any SetInterface request and hence assume toggles need to be reset.
1399 * However, EP0 toggles are re-synced for every individual transfer
1400 * during the SETUP stage - hence EP0 toggles are "don't care" here.
1401 * (Likewise, EP0 never "halts" on well designed devices.)
1402 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001403 usb_enable_interface(dev, iface, true);
Alan Stern3b23dd62008-12-05 14:10:34 -05001404 if (device_is_registered(&iface->dev)) {
Alan Stern0e6c8e82005-10-24 15:33:03 -04001405 usb_create_sysfs_intf_files(iface);
Alan Stern3b23dd62008-12-05 14:10:34 -05001406 create_intf_ep_devs(iface);
1407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 return 0;
1409}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001410EXPORT_SYMBOL_GPL(usb_set_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
1412/**
1413 * usb_reset_configuration - lightweight device reset
1414 * @dev: the device whose configuration is being reset
1415 *
1416 * This issues a standard SET_CONFIGURATION request to the device using
1417 * the current configuration. The effect is to reset most USB-related
1418 * state in the device, including interface altsettings (reset to zero),
David Vrabel3444b262009-04-08 17:36:28 +00001419 * endpoint halts (cleared), and endpoint state (only for bulk and interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 * endpoints). Other usbcore state is unchanged, including bindings of
1421 * usb device drivers to interfaces.
1422 *
1423 * Because this affects multiple interfaces, avoid using this with composite
1424 * (multi-interface) devices. Instead, the driver for each interface may
David Brownella81e7ec2005-04-18 17:39:25 -07001425 * use usb_set_interface() on the interfaces it claims. Be careful though;
1426 * some devices don't support the SET_INTERFACE request, and others won't
David Vrabel3444b262009-04-08 17:36:28 +00001427 * reset all the interface state (notably endpoint state). Resetting the whole
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 * configuration would affect other drivers' interfaces.
1429 *
1430 * The caller must own the device lock.
1431 *
1432 * Returns zero on success, else a negative error code.
1433 */
1434int usb_reset_configuration(struct usb_device *dev)
1435{
1436 int i, retval;
1437 struct usb_host_config *config;
1438
1439 if (dev->state == USB_STATE_SUSPENDED)
1440 return -EHOSTUNREACH;
1441
1442 /* caller must have locked the device and must own
1443 * the usb bus readlock (so driver bindings are stable);
1444 * calls during probe() are fine
1445 */
1446
1447 for (i = 1; i < 16; ++i) {
Alan Sternddeac4e2009-01-15 17:03:33 -05001448 usb_disable_endpoint(dev, i, true);
1449 usb_disable_endpoint(dev, i + USB_DIR_IN, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 }
1451
1452 config = dev->actconfig;
1453 retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1454 USB_REQ_SET_CONFIGURATION, 0,
1455 config->desc.bConfigurationValue, 0,
1456 NULL, 0, USB_CTRL_SET_TIMEOUT);
Alan Stern0e6c8e82005-10-24 15:33:03 -04001457 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 /* re-init hc/hcd interface/endpoint state */
1461 for (i = 0; i < config->desc.bNumInterfaces; i++) {
1462 struct usb_interface *intf = config->interface[i];
1463 struct usb_host_interface *alt;
1464
1465 alt = usb_altnum_to_altsetting(intf, 0);
1466
1467 /* No altsetting 0? We'll assume the first altsetting.
1468 * We could use a GetInterface call, but if a device is
1469 * so non-compliant that it doesn't have altsetting 0
1470 * then I wouldn't trust its reply anyway.
1471 */
1472 if (!alt)
1473 alt = &intf->altsetting[0];
1474
Alan Stern3b23dd62008-12-05 14:10:34 -05001475 if (alt != intf->cur_altsetting) {
1476 remove_intf_ep_devs(intf);
1477 usb_remove_sysfs_intf_files(intf);
1478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 intf->cur_altsetting = alt;
Alan Stern2caf7fc2008-12-31 11:31:33 -05001480 usb_enable_interface(dev, intf, true);
Alan Stern3b23dd62008-12-05 14:10:34 -05001481 if (device_is_registered(&intf->dev)) {
Alan Stern0e6c8e82005-10-24 15:33:03 -04001482 usb_create_sysfs_intf_files(intf);
Alan Stern3b23dd62008-12-05 14:10:34 -05001483 create_intf_ep_devs(intf);
1484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 }
1486 return 0;
1487}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001488EXPORT_SYMBOL_GPL(usb_reset_configuration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Greg Kroah-Hartmanb0e396e2007-08-02 22:44:27 -06001490static void usb_release_interface(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
1492 struct usb_interface *intf = to_usb_interface(dev);
1493 struct usb_interface_cache *intfc =
1494 altsetting_to_usb_interface_cache(intf->altsetting);
1495
1496 kref_put(&intfc->ref, usb_release_interface_cache);
1497 kfree(intf);
1498}
1499
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001500#ifdef CONFIG_HOTPLUG
Kay Sievers7eff2e72007-08-14 15:15:12 +02001501static int usb_if_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001502{
1503 struct usb_device *usb_dev;
1504 struct usb_interface *intf;
1505 struct usb_host_interface *alt;
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001506
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001507 intf = to_usb_interface(dev);
1508 usb_dev = interface_to_usbdev(intf);
1509 alt = intf->cur_altsetting;
1510
Kay Sievers7eff2e72007-08-14 15:15:12 +02001511 if (add_uevent_var(env, "INTERFACE=%d/%d/%d",
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001512 alt->desc.bInterfaceClass,
1513 alt->desc.bInterfaceSubClass,
1514 alt->desc.bInterfaceProtocol))
1515 return -ENOMEM;
1516
Kay Sievers7eff2e72007-08-14 15:15:12 +02001517 if (add_uevent_var(env,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001518 "MODALIAS=usb:"
1519 "v%04Xp%04Xd%04Xdc%02Xdsc%02Xdp%02Xic%02Xisc%02Xip%02X",
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001520 le16_to_cpu(usb_dev->descriptor.idVendor),
1521 le16_to_cpu(usb_dev->descriptor.idProduct),
1522 le16_to_cpu(usb_dev->descriptor.bcdDevice),
1523 usb_dev->descriptor.bDeviceClass,
1524 usb_dev->descriptor.bDeviceSubClass,
1525 usb_dev->descriptor.bDeviceProtocol,
1526 alt->desc.bInterfaceClass,
1527 alt->desc.bInterfaceSubClass,
1528 alt->desc.bInterfaceProtocol))
1529 return -ENOMEM;
1530
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001531 return 0;
1532}
1533
1534#else
1535
Kay Sievers7eff2e72007-08-14 15:15:12 +02001536static int usb_if_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001537{
1538 return -ENODEV;
1539}
1540#endif /* CONFIG_HOTPLUG */
1541
1542struct device_type usb_if_device_type = {
1543 .name = "usb_interface",
1544 .release = usb_release_interface,
1545 .uevent = usb_if_uevent,
1546};
1547
Craig W. Nadler165fe972007-06-15 23:14:35 -04001548static struct usb_interface_assoc_descriptor *find_iad(struct usb_device *dev,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001549 struct usb_host_config *config,
1550 u8 inum)
Craig W. Nadler165fe972007-06-15 23:14:35 -04001551{
1552 struct usb_interface_assoc_descriptor *retval = NULL;
1553 struct usb_interface_assoc_descriptor *intf_assoc;
1554 int first_intf;
1555 int last_intf;
1556 int i;
1557
1558 for (i = 0; (i < USB_MAXIADS && config->intf_assoc[i]); i++) {
1559 intf_assoc = config->intf_assoc[i];
1560 if (intf_assoc->bInterfaceCount == 0)
1561 continue;
1562
1563 first_intf = intf_assoc->bFirstInterface;
1564 last_intf = first_intf + (intf_assoc->bInterfaceCount - 1);
1565 if (inum >= first_intf && inum <= last_intf) {
1566 if (!retval)
1567 retval = intf_assoc;
1568 else
1569 dev_err(&dev->dev, "Interface #%d referenced"
1570 " by multiple IADs\n", inum);
1571 }
1572 }
1573
1574 return retval;
1575}
1576
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001577
1578/*
1579 * Internal function to queue a device reset
1580 *
1581 * This is initialized into the workstruct in 'struct
1582 * usb_device->reset_ws' that is launched by
1583 * message.c:usb_set_configuration() when initializing each 'struct
1584 * usb_interface'.
1585 *
1586 * It is safe to get the USB device without reference counts because
1587 * the life cycle of @iface is bound to the life cycle of @udev. Then,
1588 * this function will be ran only if @iface is alive (and before
1589 * freeing it any scheduled instances of it will have been cancelled).
1590 *
1591 * We need to set a flag (usb_dev->reset_running) because when we call
1592 * the reset, the interfaces might be unbound. The current interface
1593 * cannot try to remove the queued work as it would cause a deadlock
1594 * (you cannot remove your work from within your executing
1595 * workqueue). This flag lets it know, so that
1596 * usb_cancel_queued_reset() doesn't try to do it.
1597 *
1598 * See usb_queue_reset_device() for more details
1599 */
1600void __usb_queue_reset_device(struct work_struct *ws)
1601{
1602 int rc;
1603 struct usb_interface *iface =
1604 container_of(ws, struct usb_interface, reset_ws);
1605 struct usb_device *udev = interface_to_usbdev(iface);
1606
1607 rc = usb_lock_device_for_reset(udev, iface);
1608 if (rc >= 0) {
1609 iface->reset_running = 1;
1610 usb_reset_device(udev);
1611 iface->reset_running = 0;
1612 usb_unlock_device(udev);
1613 }
1614}
1615
1616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617/*
1618 * usb_set_configuration - Makes a particular device setting be current
1619 * @dev: the device whose configuration is being updated
1620 * @configuration: the configuration being chosen.
1621 * Context: !in_interrupt(), caller owns the device lock
1622 *
1623 * This is used to enable non-default device modes. Not all devices
1624 * use this kind of configurability; many devices only have one
1625 * configuration.
1626 *
Alan Stern3f141e22007-02-08 16:40:43 -05001627 * @configuration is the value of the configuration to be installed.
1628 * According to the USB spec (e.g. section 9.1.1.5), configuration values
1629 * must be non-zero; a value of zero indicates that the device in
1630 * unconfigured. However some devices erroneously use 0 as one of their
1631 * configuration values. To help manage such devices, this routine will
1632 * accept @configuration = -1 as indicating the device should be put in
1633 * an unconfigured state.
1634 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 * USB device configurations may affect Linux interoperability,
1636 * power consumption and the functionality available. For example,
1637 * the default configuration is limited to using 100mA of bus power,
1638 * so that when certain device functionality requires more power,
1639 * and the device is bus powered, that functionality should be in some
1640 * non-default device configuration. Other device modes may also be
1641 * reflected as configuration options, such as whether two ISDN
1642 * channels are available independently; and choosing between open
1643 * standard device protocols (like CDC) or proprietary ones.
1644 *
Inaky Perez-Gonzalez16bbab22007-07-31 20:34:01 -07001645 * Note that a non-authorized device (dev->authorized == 0) will only
1646 * be put in unconfigured mode.
1647 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 * Note that USB has an additional level of device configurability,
1649 * associated with interfaces. That configurability is accessed using
1650 * usb_set_interface().
1651 *
1652 * This call is synchronous. The calling context must be able to sleep,
1653 * must own the device lock, and must not hold the driver model's USB
Ming Lei6d243e52008-06-17 23:24:08 +08001654 * bus mutex; usb interface driver probe() methods cannot use this routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 *
1656 * Returns zero on success, or else the status code returned by the
Steven Cole093cf722005-05-03 19:07:24 -06001657 * underlying call that failed. On successful completion, each interface
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 * in the original device configuration has been destroyed, and each one
1659 * in the new configuration has been probed by all relevant usb device
1660 * drivers currently known to the kernel.
1661 */
1662int usb_set_configuration(struct usb_device *dev, int configuration)
1663{
1664 int i, ret;
1665 struct usb_host_config *cp = NULL;
1666 struct usb_interface **new_interfaces = NULL;
1667 int n, nintf;
1668
Inaky Perez-Gonzalez16bbab22007-07-31 20:34:01 -07001669 if (dev->authorized == 0 || configuration == -1)
Alan Stern3f141e22007-02-08 16:40:43 -05001670 configuration = 0;
1671 else {
1672 for (i = 0; i < dev->descriptor.bNumConfigurations; i++) {
1673 if (dev->config[i].desc.bConfigurationValue ==
1674 configuration) {
1675 cp = &dev->config[i];
1676 break;
1677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 }
1679 }
1680 if ((!cp && configuration != 0))
1681 return -EINVAL;
1682
1683 /* The USB spec says configuration 0 means unconfigured.
1684 * But if a device includes a configuration numbered 0,
1685 * we will accept it as a correctly configured state.
Alan Stern3f141e22007-02-08 16:40:43 -05001686 * Use -1 if you really want to unconfigure the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 */
1688 if (cp && configuration == 0)
1689 dev_warn(&dev->dev, "config 0 descriptor??\n");
1690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 /* Allocate memory for new interfaces before doing anything else,
1692 * so that if we run out then nothing will have changed. */
1693 n = nintf = 0;
1694 if (cp) {
1695 nintf = cp->desc.bNumInterfaces;
1696 new_interfaces = kmalloc(nintf * sizeof(*new_interfaces),
1697 GFP_KERNEL);
1698 if (!new_interfaces) {
Joe Perches898eb712007-10-18 03:06:30 -07001699 dev_err(&dev->dev, "Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 return -ENOMEM;
1701 }
1702
1703 for (; n < nintf; ++n) {
Alan Stern0a1ef3b2005-10-24 15:38:24 -04001704 new_interfaces[n] = kzalloc(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 sizeof(struct usb_interface),
1706 GFP_KERNEL);
1707 if (!new_interfaces[n]) {
Joe Perches898eb712007-10-18 03:06:30 -07001708 dev_err(&dev->dev, "Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 ret = -ENOMEM;
1710free_interfaces:
1711 while (--n >= 0)
1712 kfree(new_interfaces[n]);
1713 kfree(new_interfaces);
1714 return ret;
1715 }
1716 }
Alan Stern6ad07122006-06-01 13:59:16 -04001717
1718 i = dev->bus_mA - cp->desc.bMaxPower * 2;
1719 if (i < 0)
1720 dev_warn(&dev->dev, "new config #%d exceeds power "
1721 "limit by %dmA\n",
1722 configuration, -i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 }
1724
Alan Stern01d883d2006-08-30 15:47:18 -04001725 /* Wake up the device so we can send it the Set-Config request */
Alan Stern94fcda12006-11-20 11:38:46 -05001726 ret = usb_autoresume_device(dev);
Alan Stern01d883d2006-08-30 15:47:18 -04001727 if (ret)
1728 goto free_interfaces;
1729
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001730 /* Make sure we have bandwidth (and available HCD resources) for this
1731 * configuration. Remove endpoints from the schedule if we're dropping
1732 * this configuration to set configuration 0. After this point, the
1733 * host controller will not allow submissions to dropped endpoints. If
1734 * this call fails, the device state is unchanged.
1735 */
1736 if (cp)
1737 ret = usb_hcd_check_bandwidth(dev, cp, NULL);
1738 else
1739 ret = usb_hcd_check_bandwidth(dev, NULL, NULL);
1740 if (ret < 0) {
1741 usb_autosuspend_device(dev);
1742 goto free_interfaces;
1743 }
1744
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 /* if it's already configured, clear out old state first.
1746 * getting rid of old interfaces means unbinding their drivers.
1747 */
1748 if (dev->state != USB_STATE_ADDRESS)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001749 usb_disable_device(dev, 1); /* Skip ep0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Alan Sterndf718962008-12-19 10:27:56 -05001751 /* Get rid of pending async Set-Config requests for this device */
1752 cancel_async_set_config(dev);
1753
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001754 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1755 USB_REQ_SET_CONFIGURATION, 0, configuration, 0,
1756 NULL, 0, USB_CTRL_SET_TIMEOUT);
1757 if (ret < 0) {
Alan Stern6ad07122006-06-01 13:59:16 -04001758 /* All the old state is gone, so what else can we do?
1759 * The device is probably useless now anyway.
1760 */
1761 cp = NULL;
1762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
1764 dev->actconfig = cp;
Alan Stern6ad07122006-06-01 13:59:16 -04001765 if (!cp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 usb_set_device_state(dev, USB_STATE_ADDRESS);
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001767 usb_hcd_check_bandwidth(dev, NULL, NULL);
Alan Stern94fcda12006-11-20 11:38:46 -05001768 usb_autosuspend_device(dev);
Alan Stern6ad07122006-06-01 13:59:16 -04001769 goto free_interfaces;
1770 }
1771 usb_set_device_state(dev, USB_STATE_CONFIGURED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Alan Stern6ad07122006-06-01 13:59:16 -04001773 /* Initialize the new interface structures and the
1774 * hc/hcd/usbcore interface/endpoint state.
1775 */
1776 for (i = 0; i < nintf; ++i) {
1777 struct usb_interface_cache *intfc;
1778 struct usb_interface *intf;
1779 struct usb_host_interface *alt;
1780
1781 cp->interface[i] = intf = new_interfaces[i];
1782 intfc = cp->intf_cache[i];
1783 intf->altsetting = intfc->altsetting;
1784 intf->num_altsetting = intfc->num_altsetting;
Craig W. Nadler165fe972007-06-15 23:14:35 -04001785 intf->intf_assoc = find_iad(dev, cp, i);
Alan Stern6ad07122006-06-01 13:59:16 -04001786 kref_get(&intfc->ref);
1787
1788 alt = usb_altnum_to_altsetting(intf, 0);
1789
1790 /* No altsetting 0? We'll assume the first altsetting.
1791 * We could use a GetInterface call, but if a device is
1792 * so non-compliant that it doesn't have altsetting 0
1793 * then I wouldn't trust its reply anyway.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 */
Alan Stern6ad07122006-06-01 13:59:16 -04001795 if (!alt)
1796 alt = &intf->altsetting[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Alan Stern6ad07122006-06-01 13:59:16 -04001798 intf->cur_altsetting = alt;
Alan Stern2caf7fc2008-12-31 11:31:33 -05001799 usb_enable_interface(dev, intf, true);
Alan Stern6ad07122006-06-01 13:59:16 -04001800 intf->dev.parent = &dev->dev;
1801 intf->dev.driver = NULL;
1802 intf->dev.bus = &usb_bus_type;
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001803 intf->dev.type = &usb_if_device_type;
Alan Stern2e5f10e2008-04-30 15:37:19 -04001804 intf->dev.groups = usb_interface_groups;
Alan Stern6ad07122006-06-01 13:59:16 -04001805 intf->dev.dma_mask = dev->dev.dma_mask;
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001806 INIT_WORK(&intf->reset_ws, __usb_queue_reset_device);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001807 device_initialize(&intf->dev);
Alan Stern6ad07122006-06-01 13:59:16 -04001808 mark_quiesced(intf);
Kay Sievers0031a062008-05-02 06:02:41 +02001809 dev_set_name(&intf->dev, "%d-%s:%d.%d",
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001810 dev->bus->busnum, dev->devpath,
1811 configuration, alt->desc.bInterfaceNumber);
Alan Stern6ad07122006-06-01 13:59:16 -04001812 }
1813 kfree(new_interfaces);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
Alan Stern1662e3a2009-03-18 14:28:53 -04001815 if (cp->string == NULL &&
1816 !(dev->quirks & USB_QUIRK_CONFIG_INTF_STRINGS))
Alan Stern6ad07122006-06-01 13:59:16 -04001817 cp->string = usb_cache_string(dev, cp->desc.iConfiguration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
Alan Stern6ad07122006-06-01 13:59:16 -04001819 /* Now that all the interfaces are set up, register them
1820 * to trigger binding of drivers to interfaces. probe()
1821 * routines may install different altsettings and may
1822 * claim() any interfaces not yet bound. Many class drivers
1823 * need that: CDC, audio, video, etc.
1824 */
1825 for (i = 0; i < nintf; ++i) {
1826 struct usb_interface *intf = cp->interface[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001828 dev_dbg(&dev->dev,
Alan Stern6ad07122006-06-01 13:59:16 -04001829 "adding %s (config #%d, interface %d)\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001830 dev_name(&intf->dev), configuration,
Alan Stern6ad07122006-06-01 13:59:16 -04001831 intf->cur_altsetting->desc.bInterfaceNumber);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001832 ret = device_add(&intf->dev);
Alan Stern6ad07122006-06-01 13:59:16 -04001833 if (ret != 0) {
1834 dev_err(&dev->dev, "device_add(%s) --> %d\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001835 dev_name(&intf->dev), ret);
Alan Stern6ad07122006-06-01 13:59:16 -04001836 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 }
Alan Stern3b23dd62008-12-05 14:10:34 -05001838 create_intf_ep_devs(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 }
1840
Alan Stern94fcda12006-11-20 11:38:46 -05001841 usb_autosuspend_device(dev);
Alan Stern86d30742005-07-29 12:17:16 -07001842 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843}
1844
Alan Sterndf718962008-12-19 10:27:56 -05001845static LIST_HEAD(set_config_list);
1846static DEFINE_SPINLOCK(set_config_lock);
1847
Alan Stern088dc272006-08-21 12:08:19 -04001848struct set_config_request {
1849 struct usb_device *udev;
1850 int config;
1851 struct work_struct work;
Alan Sterndf718962008-12-19 10:27:56 -05001852 struct list_head node;
Alan Stern088dc272006-08-21 12:08:19 -04001853};
1854
1855/* Worker routine for usb_driver_set_configuration() */
David Howellsc4028952006-11-22 14:57:56 +00001856static void driver_set_config_work(struct work_struct *work)
Alan Stern088dc272006-08-21 12:08:19 -04001857{
David Howellsc4028952006-11-22 14:57:56 +00001858 struct set_config_request *req =
1859 container_of(work, struct set_config_request, work);
Alan Sterndf718962008-12-19 10:27:56 -05001860 struct usb_device *udev = req->udev;
Alan Stern088dc272006-08-21 12:08:19 -04001861
Alan Sterndf718962008-12-19 10:27:56 -05001862 usb_lock_device(udev);
1863 spin_lock(&set_config_lock);
1864 list_del(&req->node);
1865 spin_unlock(&set_config_lock);
1866
1867 if (req->config >= -1) /* Is req still valid? */
1868 usb_set_configuration(udev, req->config);
1869 usb_unlock_device(udev);
1870 usb_put_dev(udev);
Alan Stern088dc272006-08-21 12:08:19 -04001871 kfree(req);
1872}
1873
Alan Sterndf718962008-12-19 10:27:56 -05001874/* Cancel pending Set-Config requests for a device whose configuration
1875 * was just changed
1876 */
1877static void cancel_async_set_config(struct usb_device *udev)
1878{
1879 struct set_config_request *req;
1880
1881 spin_lock(&set_config_lock);
1882 list_for_each_entry(req, &set_config_list, node) {
1883 if (req->udev == udev)
1884 req->config = -999; /* Mark as cancelled */
1885 }
1886 spin_unlock(&set_config_lock);
1887}
1888
Alan Stern088dc272006-08-21 12:08:19 -04001889/**
1890 * usb_driver_set_configuration - Provide a way for drivers to change device configurations
1891 * @udev: the device whose configuration is being updated
1892 * @config: the configuration being chosen.
1893 * Context: In process context, must be able to sleep
1894 *
1895 * Device interface drivers are not allowed to change device configurations.
1896 * This is because changing configurations will destroy the interface the
1897 * driver is bound to and create new ones; it would be like a floppy-disk
1898 * driver telling the computer to replace the floppy-disk drive with a
1899 * tape drive!
1900 *
1901 * Still, in certain specialized circumstances the need may arise. This
1902 * routine gets around the normal restrictions by using a work thread to
1903 * submit the change-config request.
1904 *
1905 * Returns 0 if the request was succesfully queued, error code otherwise.
1906 * The caller has no way to know whether the queued request will eventually
1907 * succeed.
1908 */
1909int usb_driver_set_configuration(struct usb_device *udev, int config)
1910{
1911 struct set_config_request *req;
1912
1913 req = kmalloc(sizeof(*req), GFP_KERNEL);
1914 if (!req)
1915 return -ENOMEM;
1916 req->udev = udev;
1917 req->config = config;
David Howellsc4028952006-11-22 14:57:56 +00001918 INIT_WORK(&req->work, driver_set_config_work);
Alan Stern088dc272006-08-21 12:08:19 -04001919
Alan Sterndf718962008-12-19 10:27:56 -05001920 spin_lock(&set_config_lock);
1921 list_add(&req->node, &set_config_list);
1922 spin_unlock(&set_config_lock);
1923
Alan Stern088dc272006-08-21 12:08:19 -04001924 usb_get_dev(udev);
Alan Stern1737bf22006-12-15 16:04:52 -05001925 schedule_work(&req->work);
Alan Stern088dc272006-08-21 12:08:19 -04001926 return 0;
1927}
1928EXPORT_SYMBOL_GPL(usb_driver_set_configuration);