blob: de51667dd64dd80edef5fde62dc9442ce222aed1 [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>
13#include <linux/device.h>
Ralf Baechle11763602007-10-23 20:42:11 +020014#include <linux/scatterlist.h>
Oliver Neukum7ceec1f2007-01-26 14:26:21 +010015#include <linux/usb/quirks.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/byteorder.h>
17
18#include "hcd.h" /* for usbcore internals */
19#include "usb.h"
20
Alan Sterndf718962008-12-19 10:27:56 -050021static void cancel_async_set_config(struct usb_device *udev);
22
Alan Stern67f5dde2007-07-24 18:23:23 -040023struct api_context {
24 struct completion done;
25 int status;
26};
27
David Howells7d12e782006-10-05 14:55:46 +010028static void usb_api_blocking_completion(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029{
Alan Stern67f5dde2007-07-24 18:23:23 -040030 struct api_context *ctx = urb->context;
31
32 ctx->status = urb->status;
33 complete(&ctx->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034}
35
36
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020037/*
38 * Starts urb and waits for completion or timeout. Note that this call
39 * is NOT interruptible. Many device driver i/o requests should be
40 * interruptible and therefore these drivers should implement their
41 * own interruptible routines.
42 */
43static int usb_start_wait_urb(struct urb *urb, int timeout, int *actual_length)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -080044{
Alan Stern67f5dde2007-07-24 18:23:23 -040045 struct api_context ctx;
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020046 unsigned long expire;
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -070047 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Alan Stern67f5dde2007-07-24 18:23:23 -040049 init_completion(&ctx.done);
50 urb->context = &ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 urb->actual_length = 0;
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -070052 retval = usb_submit_urb(urb, GFP_NOIO);
53 if (unlikely(retval))
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020054 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020056 expire = timeout ? msecs_to_jiffies(timeout) : MAX_SCHEDULE_TIMEOUT;
Alan Stern67f5dde2007-07-24 18:23:23 -040057 if (!wait_for_completion_timeout(&ctx.done, expire)) {
58 usb_kill_urb(urb);
59 retval = (ctx.status == -ENOENT ? -ETIMEDOUT : ctx.status);
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020060
61 dev_dbg(&urb->dev->dev,
62 "%s timed out on ep%d%s len=%d/%d\n",
63 current->comm,
Alan Stern5e60a162007-07-30 17:07:21 -040064 usb_endpoint_num(&urb->ep->desc),
65 usb_urb_dir_in(urb) ? "in" : "out",
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020066 urb->actual_length,
67 urb->transfer_buffer_length);
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020068 } else
Alan Stern67f5dde2007-07-24 18:23:23 -040069 retval = ctx.status;
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020070out:
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 if (actual_length)
72 *actual_length = urb->actual_length;
Franck Bui-Huuecdc0a52006-07-12 10:09:41 +020073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 usb_free_urb(urb);
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -070075 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77
78/*-------------------------------------------------------------------*/
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -080079/* returns status (negative) or length (positive) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080static int usb_internal_control_msg(struct usb_device *usb_dev,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -080081 unsigned int pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 struct usb_ctrlrequest *cmd,
83 void *data, int len, int timeout)
84{
85 struct urb *urb;
86 int retv;
87 int length;
88
89 urb = usb_alloc_urb(0, GFP_NOIO);
90 if (!urb)
91 return -ENOMEM;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -080092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 usb_fill_control_urb(urb, usb_dev, pipe, (unsigned char *)cmd, data,
94 len, usb_api_blocking_completion, NULL);
95
96 retv = usb_start_wait_urb(urb, timeout, &length);
97 if (retv < 0)
98 return retv;
99 else
100 return length;
101}
102
103/**
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800104 * usb_control_msg - Builds a control urb, sends it off and waits for completion
105 * @dev: pointer to the usb device to send the message to
106 * @pipe: endpoint "pipe" to send the message to
107 * @request: USB message request value
108 * @requesttype: USB message request type value
109 * @value: USB message value
110 * @index: USB message index value
111 * @data: pointer to the data to send
112 * @size: length in bytes of the data to send
113 * @timeout: time in msecs to wait for the message to complete before timing
114 * out (if 0 the wait is forever)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800116 * Context: !in_interrupt ()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800118 * This function sends a simple control message to a specified endpoint and
119 * waits for the message to complete, or timeout.
120 *
121 * If successful, it returns the number of bytes transferred, otherwise a
122 * negative error number.
123 *
124 * Don't use this function from within an interrupt context, like a bottom half
125 * handler. If you need an asynchronous message, or need to send a message
126 * from within interrupt context, use usb_submit_urb().
127 * If a thread in your driver uses this call, make sure your disconnect()
128 * method can wait for it to complete. Since you don't have a handle on the
129 * URB used, you can't cancel the request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800131int usb_control_msg(struct usb_device *dev, unsigned int pipe, __u8 request,
132 __u8 requesttype, __u16 value, __u16 index, void *data,
133 __u16 size, int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800135 struct usb_ctrlrequest *dr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 int ret;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800137
138 dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (!dr)
140 return -ENOMEM;
141
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800142 dr->bRequestType = requesttype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 dr->bRequest = request;
Harvey Harrisonda2bbdc2008-10-29 14:25:51 -0700144 dr->wValue = cpu_to_le16(value);
145 dr->wIndex = cpu_to_le16(index);
146 dr->wLength = cpu_to_le16(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800148 /* dbg("usb_control_msg"); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 ret = usb_internal_control_msg(dev, pipe, dr, data, size, timeout);
151
152 kfree(dr);
153
154 return ret;
155}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600156EXPORT_SYMBOL_GPL(usb_control_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158/**
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700159 * usb_interrupt_msg - Builds an interrupt urb, sends it off and waits for completion
160 * @usb_dev: pointer to the usb device to send the message to
161 * @pipe: endpoint "pipe" to send the message to
162 * @data: pointer to the data to send
163 * @len: length in bytes of the data to send
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800164 * @actual_length: pointer to a location to put the actual length transferred
165 * in bytes
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700166 * @timeout: time in msecs to wait for the message to complete before
167 * timing out (if 0 the wait is forever)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800168 *
Greg Kroah-Hartman782a7a62006-05-19 13:20:20 -0700169 * Context: !in_interrupt ()
170 *
171 * This function sends a simple interrupt message to a specified endpoint and
172 * waits for the message to complete, or timeout.
173 *
174 * If successful, it returns 0, otherwise a negative error number. The number
175 * of actual bytes transferred will be stored in the actual_length paramater.
176 *
177 * Don't use this function from within an interrupt context, like a bottom half
178 * handler. If you need an asynchronous message, or need to send a message
179 * from within interrupt context, use usb_submit_urb() If a thread in your
180 * driver uses this call, make sure your disconnect() method can wait for it to
181 * complete. Since you don't have a handle on the URB used, you can't cancel
182 * the request.
183 */
184int usb_interrupt_msg(struct usb_device *usb_dev, unsigned int pipe,
185 void *data, int len, int *actual_length, int timeout)
186{
187 return usb_bulk_msg(usb_dev, pipe, data, len, actual_length, timeout);
188}
189EXPORT_SYMBOL_GPL(usb_interrupt_msg);
190
191/**
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800192 * usb_bulk_msg - Builds a bulk urb, sends it off and waits for completion
193 * @usb_dev: pointer to the usb device to send the message to
194 * @pipe: endpoint "pipe" to send the message to
195 * @data: pointer to the data to send
196 * @len: length in bytes of the data to send
197 * @actual_length: pointer to a location to put the actual length transferred
198 * in bytes
199 * @timeout: time in msecs to wait for the message to complete before
200 * timing out (if 0 the wait is forever)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800202 * Context: !in_interrupt ()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800204 * This function sends a simple bulk message to a specified endpoint
205 * and waits for the message to complete, or timeout.
Alan Sternd09d36a2005-09-26 16:22:45 -0400206 *
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800207 * If successful, it returns 0, otherwise a negative error number. The number
208 * of actual bytes transferred will be stored in the actual_length paramater.
209 *
210 * Don't use this function from within an interrupt context, like a bottom half
211 * handler. If you need an asynchronous message, or need to send a message
212 * from within interrupt context, use usb_submit_urb() If a thread in your
213 * driver uses this call, make sure your disconnect() method can wait for it to
214 * complete. Since you don't have a handle on the URB used, you can't cancel
215 * the request.
216 *
217 * Because there is no usb_interrupt_msg() and no USBDEVFS_INTERRUPT ioctl,
218 * users are forced to abuse this routine by using it to submit URBs for
219 * interrupt endpoints. We will take the liberty of creating an interrupt URB
220 * (with the default interval) if the target is an interrupt endpoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800222int usb_bulk_msg(struct usb_device *usb_dev, unsigned int pipe,
223 void *data, int len, int *actual_length, int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
225 struct urb *urb;
Alan Sternd09d36a2005-09-26 16:22:45 -0400226 struct usb_host_endpoint *ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Alan Sternd09d36a2005-09-26 16:22:45 -0400228 ep = (usb_pipein(pipe) ? usb_dev->ep_in : usb_dev->ep_out)
229 [usb_pipeendpoint(pipe)];
230 if (!ep || len < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 return -EINVAL;
232
Alan Sternd09d36a2005-09-26 16:22:45 -0400233 urb = usb_alloc_urb(0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (!urb)
235 return -ENOMEM;
236
Alan Sternd09d36a2005-09-26 16:22:45 -0400237 if ((ep->desc.bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
238 USB_ENDPOINT_XFER_INT) {
239 pipe = (pipe & ~(3 << 30)) | (PIPE_INTERRUPT << 30);
240 usb_fill_int_urb(urb, usb_dev, pipe, data, len,
Alan Stern8d062b92007-04-23 17:30:32 -0400241 usb_api_blocking_completion, NULL,
242 ep->desc.bInterval);
Alan Sternd09d36a2005-09-26 16:22:45 -0400243 } else
244 usb_fill_bulk_urb(urb, usb_dev, pipe, data, len,
245 usb_api_blocking_completion, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 return usb_start_wait_urb(urb, timeout, actual_length);
248}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600249EXPORT_SYMBOL_GPL(usb_bulk_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251/*-------------------------------------------------------------------*/
252
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800253static void sg_clean(struct usb_sg_request *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 if (io->urbs) {
256 while (io->entries--)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800257 usb_free_urb(io->urbs [io->entries]);
258 kfree(io->urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 io->urbs = NULL;
260 }
261 if (io->dev->dev.dma_mask != NULL)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800262 usb_buffer_unmap_sg(io->dev, usb_pipein(io->pipe),
263 io->sg, io->nents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 io->dev = NULL;
265}
266
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800267static void sg_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800269 struct usb_sg_request *io = urb->context;
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700270 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800272 spin_lock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 /* In 2.5 we require hcds' endpoint queues not to progress after fault
275 * reports, until the completion callback (this!) returns. That lets
276 * device driver code (like this routine) unlink queued urbs first,
277 * if it needs to, since the HC won't work on them at all. So it's
278 * not possible for page N+1 to overwrite page N, and so on.
279 *
280 * That's only for "hard" faults; "soft" faults (unlinks) sometimes
281 * complete before the HCD can get requests away from hardware,
282 * though never during cleanup after a hard fault.
283 */
284 if (io->status
285 && (io->status != -ECONNRESET
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700286 || status != -ECONNRESET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 && urb->actual_length) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800288 dev_err(io->dev->bus->controller,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 "dev %s ep%d%s scatterlist error %d/%d\n",
290 io->dev->devpath,
Alan Stern5e60a162007-07-30 17:07:21 -0400291 usb_endpoint_num(&urb->ep->desc),
292 usb_urb_dir_in(urb) ? "in" : "out",
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700293 status, io->status);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800294 /* BUG (); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
296
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700297 if (io->status == 0 && status && status != -ECONNRESET) {
298 int i, found, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700300 io->status = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 /* the previous urbs, and this one, completed already.
303 * unlink pending urbs so they won't rx/tx bad data.
304 * careful: unlink can sometimes be synchronous...
305 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800306 spin_unlock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 for (i = 0, found = 0; i < io->entries; i++) {
308 if (!io->urbs [i] || !io->urbs [i]->dev)
309 continue;
310 if (found) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800311 retval = usb_unlink_urb(io->urbs [i]);
Greg Kroah-Hartman3fc3e822007-07-18 10:58:02 -0700312 if (retval != -EINPROGRESS &&
313 retval != -ENODEV &&
314 retval != -EBUSY)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800315 dev_err(&io->dev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 "%s, unlink --> %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800317 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 } else if (urb == io->urbs [i])
319 found = 1;
320 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800321 spin_lock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
323 urb->dev = NULL;
324
325 /* on the last completion, signal usb_sg_wait() */
326 io->bytes += urb->actual_length;
327 io->count--;
328 if (!io->count)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800329 complete(&io->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800331 spin_unlock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
334
335/**
336 * usb_sg_init - initializes scatterlist-based bulk/interrupt I/O request
337 * @io: request block being initialized. until usb_sg_wait() returns,
338 * treat this as a pointer to an opaque block of memory,
339 * @dev: the usb device that will send or receive the data
340 * @pipe: endpoint "pipe" used to transfer the data
341 * @period: polling rate for interrupt endpoints, in frames or
342 * (for high speed endpoints) microframes; ignored for bulk
343 * @sg: scatterlist entries
344 * @nents: how many entries in the scatterlist
345 * @length: how many bytes to send from the scatterlist, or zero to
346 * send every byte identified in the list.
347 * @mem_flags: SLAB_* flags affecting memory allocations in this call
348 *
349 * Returns zero for success, else a negative errno value. This initializes a
350 * scatter/gather request, allocating resources such as I/O mappings and urb
351 * memory (except maybe memory used by USB controller drivers).
352 *
353 * The request must be issued using usb_sg_wait(), which waits for the I/O to
354 * complete (or to be canceled) and then cleans up all resources allocated by
355 * usb_sg_init().
356 *
357 * The request may be canceled with usb_sg_cancel(), either before or after
358 * usb_sg_wait() is called.
359 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800360int usb_sg_init(struct usb_sg_request *io, struct usb_device *dev,
361 unsigned pipe, unsigned period, struct scatterlist *sg,
362 int nents, size_t length, gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800364 int i;
365 int urb_flags;
366 int dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 if (!io || !dev || !sg
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800369 || usb_pipecontrol(pipe)
370 || usb_pipeisoc(pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 || nents <= 0)
372 return -EINVAL;
373
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800374 spin_lock_init(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 io->dev = dev;
376 io->pipe = pipe;
377 io->sg = sg;
378 io->nents = nents;
379
380 /* not all host controllers use DMA (like the mainstream pci ones);
381 * they can use PIO (sl811) or be software over another transport.
382 */
383 dma = (dev->dev.dma_mask != NULL);
384 if (dma)
Alan Stern5e60a162007-07-30 17:07:21 -0400385 io->entries = usb_buffer_map_sg(dev, usb_pipein(pipe),
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800386 sg, nents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 else
388 io->entries = nents;
389
390 /* initialize all the urbs we'll use */
391 if (io->entries <= 0)
392 return io->entries;
393
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800394 io->urbs = kmalloc(io->entries * sizeof *io->urbs, mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (!io->urbs)
396 goto nomem;
397
Yoshihiro Shimodae2722522008-04-21 13:48:22 +0900398 urb_flags = URB_NO_INTERRUPT;
399 if (dma)
400 urb_flags |= URB_NO_TRANSFER_DMA_MAP;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800401 if (usb_pipein(pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 urb_flags |= URB_SHORT_NOT_OK;
403
Alan Stern7c3e28b2008-06-16 12:11:39 -0400404 for_each_sg(sg, sg, io->entries, i) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800405 unsigned len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800407 io->urbs[i] = usb_alloc_urb(0, mem_flags);
408 if (!io->urbs[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 io->entries = i;
410 goto nomem;
411 }
412
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800413 io->urbs[i]->dev = NULL;
414 io->urbs[i]->pipe = pipe;
415 io->urbs[i]->interval = period;
416 io->urbs[i]->transfer_flags = urb_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800418 io->urbs[i]->complete = sg_complete;
419 io->urbs[i]->context = io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Tony Lindgren35d07fd2007-03-31 18:15:43 -0700421 /*
422 * Some systems need to revert to PIO when DMA is temporarily
423 * unavailable. For their sakes, both transfer_buffer and
424 * transfer_dma are set when possible. However this can only
David Brownella12b8db2007-07-22 15:13:13 -0700425 * work on systems without:
426 *
427 * - HIGHMEM, since DMA buffers located in high memory are
428 * not directly addressable by the CPU for PIO;
429 *
430 * - IOMMU, since dma_map_sg() is allowed to use an IOMMU to
431 * make virtually discontiguous buffers be "dma-contiguous"
432 * so that PIO and DMA need diferent numbers of URBs.
433 *
434 * So when HIGHMEM or IOMMU are in use, transfer_buffer is NULL
Tony Lindgren35d07fd2007-03-31 18:15:43 -0700435 * to prevent stale pointers and to help spot bugs.
436 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if (dma) {
Alan Stern7c3e28b2008-06-16 12:11:39 -0400438 io->urbs[i]->transfer_dma = sg_dma_address(sg);
439 len = sg_dma_len(sg);
Joerg Roedel966396d2007-10-24 12:49:48 +0200440#if defined(CONFIG_HIGHMEM) || defined(CONFIG_GART_IOMMU)
Tony Lindgren35d07fd2007-03-31 18:15:43 -0700441 io->urbs[i]->transfer_buffer = NULL;
442#else
Alan Stern7c3e28b2008-06-16 12:11:39 -0400443 io->urbs[i]->transfer_buffer = sg_virt(sg);
Tony Lindgren35d07fd2007-03-31 18:15:43 -0700444#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 } else {
446 /* hc may use _only_ transfer_buffer */
Alan Stern7c3e28b2008-06-16 12:11:39 -0400447 io->urbs[i]->transfer_buffer = sg_virt(sg);
448 len = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450
451 if (length) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800452 len = min_t(unsigned, len, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 length -= len;
454 if (length == 0)
455 io->entries = i + 1;
456 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800457 io->urbs[i]->transfer_buffer_length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800459 io->urbs[--i]->transfer_flags &= ~URB_NO_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 /* transaction state */
Alan Stern580da342008-08-05 13:05:17 -0400462 io->count = io->entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 io->status = 0;
464 io->bytes = 0;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800465 init_completion(&io->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 return 0;
467
468nomem:
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800469 sg_clean(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return -ENOMEM;
471}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600472EXPORT_SYMBOL_GPL(usb_sg_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474/**
475 * usb_sg_wait - synchronously execute scatter/gather request
476 * @io: request block handle, as initialized with usb_sg_init().
477 * some fields become accessible when this call returns.
478 * Context: !in_interrupt ()
479 *
480 * This function blocks until the specified I/O operation completes. It
481 * leverages the grouping of the related I/O requests to get good transfer
482 * rates, by queueing the requests. At higher speeds, such queuing can
483 * significantly improve USB throughput.
484 *
485 * There are three kinds of completion for this function.
486 * (1) success, where io->status is zero. The number of io->bytes
487 * transferred is as requested.
488 * (2) error, where io->status is a negative errno value. The number
489 * of io->bytes transferred before the error is usually less
490 * than requested, and can be nonzero.
Steven Cole093cf722005-05-03 19:07:24 -0600491 * (3) cancellation, a type of error with status -ECONNRESET that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 * is initiated by usb_sg_cancel().
493 *
494 * When this function returns, all memory allocated through usb_sg_init() or
495 * this call will have been freed. The request block parameter may still be
496 * passed to usb_sg_cancel(), or it may be freed. It could also be
497 * reinitialized and then reused.
498 *
499 * Data Transfer Rates:
500 *
501 * Bulk transfers are valid for full or high speed endpoints.
502 * The best full speed data rate is 19 packets of 64 bytes each
503 * per frame, or 1216 bytes per millisecond.
504 * The best high speed data rate is 13 packets of 512 bytes each
505 * per microframe, or 52 KBytes per millisecond.
506 *
507 * The reason to use interrupt transfers through this API would most likely
508 * be to reserve high speed bandwidth, where up to 24 KBytes per millisecond
509 * could be transferred. That capability is less useful for low or full
510 * speed interrupt endpoints, which allow at most one packet per millisecond,
511 * of at most 8 or 64 bytes (respectively).
512 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800513void usb_sg_wait(struct usb_sg_request *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800515 int i;
516 int entries = io->entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 /* queue the urbs. */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800519 spin_lock_irq(&io->lock);
Alan Stern8ccef0d2007-06-21 16:26:46 -0400520 i = 0;
521 while (i < entries && !io->status) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800522 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800524 io->urbs[i]->dev = io->dev;
525 retval = usb_submit_urb(io->urbs [i], GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 /* after we submit, let completions or cancelations fire;
528 * we handshake using io->status.
529 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800530 spin_unlock_irq(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 switch (retval) {
532 /* maybe we retrying will recover */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800533 case -ENXIO: /* hc didn't queue this one */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 case -EAGAIN:
535 case -ENOMEM:
536 io->urbs[i]->dev = NULL;
537 retval = 0;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800538 yield();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 break;
540
541 /* no error? continue immediately.
542 *
543 * NOTE: to work better with UHCI (4K I/O buffer may
544 * need 3K of TDs) it may be good to limit how many
545 * URBs are queued at once; N milliseconds?
546 */
547 case 0:
Alan Stern8ccef0d2007-06-21 16:26:46 -0400548 ++i;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800549 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 break;
551
552 /* fail any uncompleted urbs */
553 default:
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800554 io->urbs[i]->dev = NULL;
555 io->urbs[i]->status = retval;
556 dev_dbg(&io->dev->dev, "%s, submit --> %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800557 __func__, retval);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800558 usb_sg_cancel(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800560 spin_lock_irq(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if (retval && (io->status == 0 || io->status == -ECONNRESET))
562 io->status = retval;
563 }
564 io->count -= entries - i;
565 if (io->count == 0)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800566 complete(&io->complete);
567 spin_unlock_irq(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 /* OK, yes, this could be packaged as non-blocking.
570 * So could the submit loop above ... but it's easier to
571 * solve neither problem than to solve both!
572 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800573 wait_for_completion(&io->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800575 sg_clean(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600577EXPORT_SYMBOL_GPL(usb_sg_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579/**
580 * usb_sg_cancel - stop scatter/gather i/o issued by usb_sg_wait()
581 * @io: request block, initialized with usb_sg_init()
582 *
583 * This stops a request after it has been started by usb_sg_wait().
584 * It can also prevents one initialized by usb_sg_init() from starting,
585 * so that call just frees resources allocated to the request.
586 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800587void usb_sg_cancel(struct usb_sg_request *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800589 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800591 spin_lock_irqsave(&io->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 /* shut everything down, if it didn't already */
594 if (!io->status) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800595 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 io->status = -ECONNRESET;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800598 spin_unlock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 for (i = 0; i < io->entries; i++) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800600 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 if (!io->urbs [i]->dev)
603 continue;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800604 retval = usb_unlink_urb(io->urbs [i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 if (retval != -EINPROGRESS && retval != -EBUSY)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800606 dev_warn(&io->dev->dev, "%s, unlink --> %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800607 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800609 spin_lock(&io->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800611 spin_unlock_irqrestore(&io->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600613EXPORT_SYMBOL_GPL(usb_sg_cancel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615/*-------------------------------------------------------------------*/
616
617/**
618 * usb_get_descriptor - issues a generic GET_DESCRIPTOR request
619 * @dev: the device whose descriptor is being retrieved
620 * @type: the descriptor type (USB_DT_*)
621 * @index: the number of the descriptor
622 * @buf: where to put the descriptor
623 * @size: how big is "buf"?
624 * Context: !in_interrupt ()
625 *
626 * Gets a USB descriptor. Convenience functions exist to simplify
627 * getting some types of descriptors. Use
628 * usb_get_string() or usb_string() for USB_DT_STRING.
629 * Device (USB_DT_DEVICE) and configuration descriptors (USB_DT_CONFIG)
630 * are part of the device structure.
631 * In addition to a number of USB-standard descriptors, some
632 * devices also use class-specific or vendor-specific descriptors.
633 *
634 * This call is synchronous, and may not be used in an interrupt context.
635 *
636 * Returns the number of bytes received on success, or else the status code
637 * returned by the underlying usb_control_msg() call.
638 */
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800639int usb_get_descriptor(struct usb_device *dev, unsigned char type,
640 unsigned char index, void *buf, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
642 int i;
643 int result;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800644
645 memset(buf, 0, size); /* Make sure we parse really received data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 for (i = 0; i < 3; ++i) {
Alan Sternc39772d2007-08-20 10:45:28 -0400648 /* retry on length 0 or error; some devices are flakey */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
650 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
651 (type << 8) + index, 0, buf, size,
652 USB_CTRL_GET_TIMEOUT);
Alan Sternc39772d2007-08-20 10:45:28 -0400653 if (result <= 0 && result != -ETIMEDOUT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 continue;
655 if (result > 1 && ((u8 *)buf)[1] != type) {
656 result = -EPROTO;
657 continue;
658 }
659 break;
660 }
661 return result;
662}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600663EXPORT_SYMBOL_GPL(usb_get_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665/**
666 * usb_get_string - gets a string descriptor
667 * @dev: the device whose string descriptor is being retrieved
668 * @langid: code for language chosen (from string descriptor zero)
669 * @index: the number of the descriptor
670 * @buf: where to put the string
671 * @size: how big is "buf"?
672 * Context: !in_interrupt ()
673 *
674 * Retrieves a string, encoded using UTF-16LE (Unicode, 16 bits per character,
675 * in little-endian byte order).
676 * The usb_string() function will often be a convenient way to turn
677 * these strings into kernel-printable form.
678 *
679 * Strings may be referenced in device, configuration, interface, or other
680 * descriptors, and could also be used in vendor-specific ways.
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 */
Adrian Bunke266a122005-11-08 21:05:43 +0100687static int usb_get_string(struct usb_device *dev, unsigned short langid,
688 unsigned char index, void *buf, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690 int i;
691 int result;
692
693 for (i = 0; i < 3; ++i) {
694 /* retry on length 0 or stall; some devices are flakey */
695 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
696 USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
697 (USB_DT_STRING << 8) + index, langid, buf, size,
698 USB_CTRL_GET_TIMEOUT);
699 if (!(result == 0 || result == -EPIPE))
700 break;
701 }
702 return result;
703}
704
705static void usb_try_string_workarounds(unsigned char *buf, int *length)
706{
707 int newlength, oldlength = *length;
708
709 for (newlength = 2; newlength + 1 < oldlength; newlength += 2)
710 if (!isprint(buf[newlength]) || buf[newlength + 1])
711 break;
712
713 if (newlength > 2) {
714 buf[0] = newlength;
715 *length = newlength;
716 }
717}
718
719static int usb_string_sub(struct usb_device *dev, unsigned int langid,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800720 unsigned int index, unsigned char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
722 int rc;
723
724 /* Try to read the string descriptor by asking for the maximum
725 * possible number of bytes */
Oliver Neukum7ceec1f2007-01-26 14:26:21 +0100726 if (dev->quirks & USB_QUIRK_STRING_FETCH_255)
727 rc = -EIO;
728 else
729 rc = usb_get_string(dev, langid, index, buf, 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 /* If that failed try to read the descriptor length, then
732 * ask for just that many bytes */
733 if (rc < 2) {
734 rc = usb_get_string(dev, langid, index, buf, 2);
735 if (rc == 2)
736 rc = usb_get_string(dev, langid, index, buf, buf[0]);
737 }
738
739 if (rc >= 2) {
740 if (!buf[0] && !buf[1])
741 usb_try_string_workarounds(buf, &rc);
742
743 /* There might be extra junk at the end of the descriptor */
744 if (buf[0] < rc)
745 rc = buf[0];
746
747 rc = rc - (rc & 1); /* force a multiple of two */
748 }
749
750 if (rc < 2)
751 rc = (rc < 0 ? rc : -EINVAL);
752
753 return rc;
754}
755
756/**
757 * usb_string - returns ISO 8859-1 version of a string descriptor
758 * @dev: the device whose string descriptor is being retrieved
759 * @index: the number of the descriptor
760 * @buf: where to put the string
761 * @size: how big is "buf"?
762 * Context: !in_interrupt ()
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800763 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 * This converts the UTF-16LE encoded strings returned by devices, from
765 * usb_get_string_descriptor(), to null-terminated ISO-8859-1 encoded ones
766 * that are more usable in most kernel contexts. Note that all characters
767 * in the chosen descriptor that can't be encoded using ISO-8859-1
768 * are converted to the question mark ("?") character, and this function
769 * chooses strings in the first language supported by the device.
770 *
771 * The ASCII (or, redundantly, "US-ASCII") character set is the seven-bit
772 * subset of ISO 8859-1. ISO-8859-1 is the eight-bit subset of Unicode,
773 * and is appropriate for use many uses of English and several other
774 * Western European languages. (But it doesn't include the "Euro" symbol.)
775 *
776 * This call is synchronous, and may not be used in an interrupt context.
777 *
778 * Returns length of the string (>= 0) or usb_control_msg status (< 0).
779 */
780int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
781{
782 unsigned char *tbuf;
783 int err;
784 unsigned int u, idx;
785
786 if (dev->state == USB_STATE_SUSPENDED)
787 return -EHOSTUNREACH;
788 if (size <= 0 || !buf || !index)
789 return -EINVAL;
790 buf[0] = 0;
Alan Sterneb764c42008-03-03 15:16:04 -0500791 tbuf = kmalloc(256, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (!tbuf)
793 return -ENOMEM;
794
795 /* get langid for strings if it's not yet known */
796 if (!dev->have_langid) {
797 err = usb_string_sub(dev, 0, 0, tbuf);
798 if (err < 0) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800799 dev_err(&dev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 "string descriptor 0 read error: %d\n",
801 err);
802 goto errout;
803 } else if (err < 4) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800804 dev_err(&dev->dev, "string descriptor 0 too short\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 err = -EINVAL;
806 goto errout;
807 } else {
Alan Sternce361582006-11-20 11:12:22 -0500808 dev->have_langid = 1;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800809 dev->string_langid = tbuf[2] | (tbuf[3] << 8);
810 /* always use the first langid listed */
811 dev_dbg(&dev->dev, "default language 0x%04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 dev->string_langid);
813 }
814 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 err = usb_string_sub(dev, dev->string_langid, index, tbuf);
817 if (err < 0)
818 goto errout;
819
820 size--; /* leave room for trailing NULL char in output buffer */
821 for (idx = 0, u = 2; u < err; u += 2) {
822 if (idx >= size)
823 break;
824 if (tbuf[u+1]) /* high byte */
825 buf[idx++] = '?'; /* non ISO-8859-1 character */
826 else
827 buf[idx++] = tbuf[u];
828 }
829 buf[idx] = 0;
830 err = idx;
831
832 if (tbuf[1] != USB_DT_STRING)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800833 dev_dbg(&dev->dev,
834 "wrong descriptor type %02x for string %d (\"%s\")\n",
835 tbuf[1], index, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 errout:
838 kfree(tbuf);
839 return err;
840}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600841EXPORT_SYMBOL_GPL(usb_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Alan Stern4f62efe2005-10-24 16:24:14 -0400843/**
844 * usb_cache_string - read a string descriptor and cache it for later use
845 * @udev: the device whose string descriptor is being read
846 * @index: the descriptor index
847 *
848 * Returns a pointer to a kmalloc'ed buffer containing the descriptor string,
849 * or NULL if the index is 0 or the string could not be read.
850 */
851char *usb_cache_string(struct usb_device *udev, int index)
852{
853 char *buf;
854 char *smallbuf = NULL;
855 int len;
856
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800857 if (index <= 0)
858 return NULL;
859
860 buf = kmalloc(256, GFP_KERNEL);
861 if (buf) {
862 len = usb_string(udev, index, buf, 256);
863 if (len > 0) {
864 smallbuf = kmalloc(++len, GFP_KERNEL);
865 if (!smallbuf)
Alan Stern4f62efe2005-10-24 16:24:14 -0400866 return buf;
867 memcpy(smallbuf, buf, len);
868 }
869 kfree(buf);
870 }
871 return smallbuf;
872}
873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874/*
875 * usb_get_device_descriptor - (re)reads the device descriptor (usbcore)
876 * @dev: the device whose device descriptor is being updated
877 * @size: how much of the descriptor to read
878 * Context: !in_interrupt ()
879 *
880 * Updates the copy of the device descriptor stored in the device structure,
Laurent Pinchart6ab16a92006-11-07 10:16:25 +0100881 * which dedicates space for this purpose.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 *
883 * Not exported, only for use by the core. If drivers really want to read
884 * the device descriptor directly, they can call usb_get_descriptor() with
885 * type = USB_DT_DEVICE and index = 0.
886 *
887 * This call is synchronous, and may not be used in an interrupt context.
888 *
889 * Returns the number of bytes received on success, or else the status code
890 * returned by the underlying usb_control_msg() call.
891 */
892int usb_get_device_descriptor(struct usb_device *dev, unsigned int size)
893{
894 struct usb_device_descriptor *desc;
895 int ret;
896
897 if (size > sizeof(*desc))
898 return -EINVAL;
899 desc = kmalloc(sizeof(*desc), GFP_NOIO);
900 if (!desc)
901 return -ENOMEM;
902
903 ret = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, size);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800904 if (ret >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 memcpy(&dev->descriptor, desc, size);
906 kfree(desc);
907 return ret;
908}
909
910/**
911 * usb_get_status - issues a GET_STATUS call
912 * @dev: the device whose status is being checked
913 * @type: USB_RECIP_*; for device, interface, or endpoint
914 * @target: zero (for device), else interface or endpoint number
915 * @data: pointer to two bytes of bitmap data
916 * Context: !in_interrupt ()
917 *
918 * Returns device, interface, or endpoint status. Normally only of
919 * interest to see if the device is self powered, or has enabled the
920 * remote wakeup facility; or whether a bulk or interrupt endpoint
921 * is halted ("stalled").
922 *
923 * Bits in these status bitmaps are set using the SET_FEATURE request,
924 * and cleared using the CLEAR_FEATURE request. The usb_clear_halt()
925 * function should be used to clear halt ("stall") status.
926 *
927 * This call is synchronous, and may not be used in an interrupt context.
928 *
929 * Returns the number of bytes received on success, or else the status code
930 * returned by the underlying usb_control_msg() call.
931 */
932int usb_get_status(struct usb_device *dev, int type, int target, void *data)
933{
934 int ret;
935 u16 *status = kmalloc(sizeof(*status), GFP_KERNEL);
936
937 if (!status)
938 return -ENOMEM;
939
940 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
941 USB_REQ_GET_STATUS, USB_DIR_IN | type, 0, target, status,
942 sizeof(*status), USB_CTRL_GET_TIMEOUT);
943
944 *(u16 *)data = *status;
945 kfree(status);
946 return ret;
947}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600948EXPORT_SYMBOL_GPL(usb_get_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
950/**
951 * usb_clear_halt - tells device to clear endpoint halt/stall condition
952 * @dev: device whose endpoint is halted
953 * @pipe: endpoint "pipe" being cleared
954 * Context: !in_interrupt ()
955 *
956 * This is used to clear halt conditions for bulk and interrupt endpoints,
957 * as reported by URB completion status. Endpoints that are halted are
958 * sometimes referred to as being "stalled". Such endpoints are unable
959 * to transmit or receive data until the halt status is cleared. Any URBs
960 * queued for such an endpoint should normally be unlinked by the driver
961 * before clearing the halt condition, as described in sections 5.7.5
962 * and 5.8.5 of the USB 2.0 spec.
963 *
964 * Note that control and isochronous endpoints don't halt, although control
965 * endpoints report "protocol stall" (for unsupported requests) using the
966 * same status code used to report a true stall.
967 *
968 * This call is synchronous, and may not be used in an interrupt context.
969 *
970 * Returns zero on success, or else the status code returned by the
971 * underlying usb_control_msg() call.
972 */
973int usb_clear_halt(struct usb_device *dev, int pipe)
974{
975 int result;
976 int endp = usb_pipeendpoint(pipe);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800977
978 if (usb_pipein(pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 endp |= USB_DIR_IN;
980
981 /* we don't care if it wasn't halted first. in fact some devices
982 * (like some ibmcam model 1 units) seem to expect hosts to make
983 * this request for iso endpoints, which can't halt!
984 */
985 result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
986 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT,
987 USB_ENDPOINT_HALT, endp, NULL, 0,
988 USB_CTRL_SET_TIMEOUT);
989
990 /* don't un-halt or force to DATA0 except on success */
991 if (result < 0)
992 return result;
993
994 /* NOTE: seems like Microsoft and Apple don't bother verifying
995 * the clear "took", so some devices could lock up if you check...
996 * such as the Hagiwara FlashGate DUAL. So we won't bother.
997 *
998 * NOTE: make sure the logic here doesn't diverge much from
999 * the copy in usb-storage, for as long as we need two copies.
1000 */
1001
1002 /* toggle was reset by the clear */
1003 usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), 0);
1004
1005 return 0;
1006}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001007EXPORT_SYMBOL_GPL(usb_clear_halt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Alan Stern3b23dd62008-12-05 14:10:34 -05001009static int create_intf_ep_devs(struct usb_interface *intf)
1010{
1011 struct usb_device *udev = interface_to_usbdev(intf);
1012 struct usb_host_interface *alt = intf->cur_altsetting;
1013 int i;
1014
1015 if (intf->ep_devs_created || intf->unregistering)
1016 return 0;
1017
1018 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
1019 (void) usb_create_ep_devs(&intf->dev, &alt->endpoint[i], udev);
1020 intf->ep_devs_created = 1;
1021 return 0;
1022}
1023
1024static void remove_intf_ep_devs(struct usb_interface *intf)
1025{
1026 struct usb_host_interface *alt = intf->cur_altsetting;
1027 int i;
1028
1029 if (!intf->ep_devs_created)
1030 return;
1031
1032 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
1033 usb_remove_ep_devs(&alt->endpoint[i]);
1034 intf->ep_devs_created = 0;
1035}
1036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037/**
1038 * usb_disable_endpoint -- Disable an endpoint by address
1039 * @dev: the device whose endpoint is being disabled
1040 * @epaddr: the endpoint's address. Endpoint number for output,
1041 * endpoint number + USB_DIR_IN for input
1042 *
1043 * Deallocates hcd/hardware state for this endpoint ... and nukes all
1044 * pending urbs.
1045 *
1046 * If the HCD hasn't registered a disable() function, this sets the
1047 * endpoint's maxpacket size to 0 to prevent further submissions.
1048 */
1049void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr)
1050{
1051 unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK;
1052 struct usb_host_endpoint *ep;
1053
1054 if (!dev)
1055 return;
1056
1057 if (usb_endpoint_out(epaddr)) {
1058 ep = dev->ep_out[epnum];
1059 dev->ep_out[epnum] = NULL;
1060 } else {
1061 ep = dev->ep_in[epnum];
1062 dev->ep_in[epnum] = NULL;
1063 }
Alan Sternbdd016b2007-07-30 17:05:22 -04001064 if (ep) {
1065 ep->enabled = 0;
Alan Stern95cf82f2007-09-10 11:33:05 -04001066 usb_hcd_flush_endpoint(dev, ep);
1067 usb_hcd_disable_endpoint(dev, ep);
Alan Sternbdd016b2007-07-30 17:05:22 -04001068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069}
1070
1071/**
1072 * usb_disable_interface -- Disable all endpoints for an interface
1073 * @dev: the device whose interface is being disabled
1074 * @intf: pointer to the interface descriptor
1075 *
1076 * Disables all the endpoints for the interface's current altsetting.
1077 */
1078void usb_disable_interface(struct usb_device *dev, struct usb_interface *intf)
1079{
1080 struct usb_host_interface *alt = intf->cur_altsetting;
1081 int i;
1082
1083 for (i = 0; i < alt->desc.bNumEndpoints; ++i) {
1084 usb_disable_endpoint(dev,
1085 alt->endpoint[i].desc.bEndpointAddress);
1086 }
1087}
1088
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001089/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 * usb_disable_device - Disable all the endpoints for a USB device
1091 * @dev: the device whose endpoints are being disabled
1092 * @skip_ep0: 0 to disable endpoint 0, 1 to skip it.
1093 *
1094 * Disables all the device's endpoints, potentially including endpoint 0.
1095 * Deallocates hcd/hardware state for the endpoints (nuking all or most
1096 * pending urbs) and usbcore state for the interfaces, so that usbcore
1097 * must usb_set_configuration() before any interfaces could be used.
1098 */
1099void usb_disable_device(struct usb_device *dev, int skip_ep0)
1100{
1101 int i;
1102
Harvey Harrison441b62c2008-03-03 16:08:34 -08001103 dev_dbg(&dev->dev, "%s nuking %s URBs\n", __func__,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001104 skip_ep0 ? "non-ep0" : "all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 for (i = skip_ep0; i < 16; ++i) {
1106 usb_disable_endpoint(dev, i);
1107 usb_disable_endpoint(dev, i + USB_DIR_IN);
1108 }
1109 dev->toggle[0] = dev->toggle[1] = 0;
1110
1111 /* getting rid of interfaces will disconnect
1112 * any drivers bound to them (a key side effect)
1113 */
1114 if (dev->actconfig) {
1115 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
1116 struct usb_interface *interface;
1117
Alan Stern86d30742005-07-29 12:17:16 -07001118 /* remove this interface if it has been registered */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 interface = dev->actconfig->interface[i];
Daniel Ritzd305ef52005-09-22 00:47:24 -07001120 if (!device_is_registered(&interface->dev))
Alan Stern86d30742005-07-29 12:17:16 -07001121 continue;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001122 dev_dbg(&dev->dev, "unregistering interface %s\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001123 dev_name(&interface->dev));
Alan Stern352d0262008-10-29 15:16:58 -04001124 interface->unregistering = 1;
Alan Stern3b23dd62008-12-05 14:10:34 -05001125 remove_intf_ep_devs(interface);
Alan Stern1a211752008-07-30 11:31:50 -04001126 device_del(&interface->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 }
1128
1129 /* Now that the interfaces are unbound, nobody should
1130 * try to access them.
1131 */
1132 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001133 put_device(&dev->actconfig->interface[i]->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 dev->actconfig->interface[i] = NULL;
1135 }
1136 dev->actconfig = NULL;
1137 if (dev->state == USB_STATE_CONFIGURED)
1138 usb_set_device_state(dev, USB_STATE_ADDRESS);
1139 }
1140}
1141
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001142/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 * usb_enable_endpoint - Enable an endpoint for USB communications
1144 * @dev: the device whose interface is being enabled
1145 * @ep: the endpoint
Alan Stern2caf7fc2008-12-31 11:31:33 -05001146 * @reset_toggle: flag to set the endpoint's toggle back to 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 *
Alan Stern2caf7fc2008-12-31 11:31:33 -05001148 * Resets the endpoint toggle if asked, and sets dev->ep_{in,out} pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 * For control endpoints, both the input and output sides are handled.
1150 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001151void usb_enable_endpoint(struct usb_device *dev, struct usb_host_endpoint *ep,
1152 bool reset_toggle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
Alan Sternbdd016b2007-07-30 17:05:22 -04001154 int epnum = usb_endpoint_num(&ep->desc);
1155 int is_out = usb_endpoint_dir_out(&ep->desc);
1156 int is_control = usb_endpoint_xfer_control(&ep->desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Alan Sternbdd016b2007-07-30 17:05:22 -04001158 if (is_out || is_control) {
Alan Stern2caf7fc2008-12-31 11:31:33 -05001159 if (reset_toggle)
1160 usb_settoggle(dev, epnum, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 dev->ep_out[epnum] = ep;
1162 }
Alan Sternbdd016b2007-07-30 17:05:22 -04001163 if (!is_out || is_control) {
Alan Stern2caf7fc2008-12-31 11:31:33 -05001164 if (reset_toggle)
1165 usb_settoggle(dev, epnum, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 dev->ep_in[epnum] = ep;
1167 }
Alan Sternbdd016b2007-07-30 17:05:22 -04001168 ep->enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169}
1170
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001171/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 * usb_enable_interface - Enable all the endpoints for an interface
1173 * @dev: the device whose interface is being enabled
1174 * @intf: pointer to the interface descriptor
Alan Stern2caf7fc2008-12-31 11:31:33 -05001175 * @reset_toggles: flag to set the endpoints' toggles back to 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 *
1177 * Enables all the endpoints for the interface's current altsetting.
1178 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001179void usb_enable_interface(struct usb_device *dev,
1180 struct usb_interface *intf, bool reset_toggles)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181{
1182 struct usb_host_interface *alt = intf->cur_altsetting;
1183 int i;
1184
1185 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
Alan Stern2caf7fc2008-12-31 11:31:33 -05001186 usb_enable_endpoint(dev, &alt->endpoint[i], reset_toggles);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187}
1188
1189/**
1190 * usb_set_interface - Makes a particular alternate setting be current
1191 * @dev: the device whose interface is being updated
1192 * @interface: the interface being updated
1193 * @alternate: the setting being chosen.
1194 * Context: !in_interrupt ()
1195 *
1196 * This is used to enable data transfers on interfaces that may not
1197 * be enabled by default. Not all devices support such configurability.
1198 * Only the driver bound to an interface may change its setting.
1199 *
1200 * Within any given configuration, each interface may have several
1201 * alternative settings. These are often used to control levels of
1202 * bandwidth consumption. For example, the default setting for a high
1203 * speed interrupt endpoint may not send more than 64 bytes per microframe,
1204 * while interrupt transfers of up to 3KBytes per microframe are legal.
1205 * Also, isochronous endpoints may never be part of an
1206 * interface's default setting. To access such bandwidth, alternate
1207 * interface settings must be made current.
1208 *
1209 * Note that in the Linux USB subsystem, bandwidth associated with
1210 * an endpoint in a given alternate setting is not reserved until an URB
1211 * is submitted that needs that bandwidth. Some other operating systems
1212 * allocate bandwidth early, when a configuration is chosen.
1213 *
1214 * This call is synchronous, and may not be used in an interrupt context.
1215 * Also, drivers must not change altsettings while urbs are scheduled for
1216 * endpoints in that interface; all such urbs must first be completed
1217 * (perhaps forced by unlinking).
1218 *
1219 * Returns zero on success, or else the status code returned by the
1220 * underlying usb_control_msg() call.
1221 */
1222int usb_set_interface(struct usb_device *dev, int interface, int alternate)
1223{
1224 struct usb_interface *iface;
1225 struct usb_host_interface *alt;
1226 int ret;
1227 int manual = 0;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001228 unsigned int epaddr;
1229 unsigned int pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 if (dev->state == USB_STATE_SUSPENDED)
1232 return -EHOSTUNREACH;
1233
1234 iface = usb_ifnum_to_if(dev, interface);
1235 if (!iface) {
1236 dev_dbg(&dev->dev, "selecting invalid interface %d\n",
1237 interface);
1238 return -EINVAL;
1239 }
1240
1241 alt = usb_altnum_to_altsetting(iface, alternate);
1242 if (!alt) {
Greg Kroah-Hartman3b6004f2008-08-14 09:37:34 -07001243 dev_warn(&dev->dev, "selecting invalid altsetting %d",
1244 alternate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 return -EINVAL;
1246 }
1247
Alan Stern392e1d92008-03-11 10:20:12 -04001248 if (dev->quirks & USB_QUIRK_NO_SET_INTF)
1249 ret = -EPIPE;
1250 else
1251 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
1253 alternate, interface, NULL, 0, 5000);
1254
1255 /* 9.4.10 says devices don't need this and are free to STALL the
1256 * request if the interface only has one alternate setting.
1257 */
1258 if (ret == -EPIPE && iface->num_altsetting == 1) {
1259 dev_dbg(&dev->dev,
1260 "manual set_interface for iface %d, alt %d\n",
1261 interface, alternate);
1262 manual = 1;
1263 } else if (ret < 0)
1264 return ret;
1265
1266 /* FIXME drivers shouldn't need to replicate/bugfix the logic here
1267 * when they implement async or easily-killable versions of this or
1268 * other "should-be-internal" functions (like clear_halt).
1269 * should hcd+usbcore postprocess control requests?
1270 */
1271
1272 /* prevent submissions using previous endpoint settings */
Alan Stern3b23dd62008-12-05 14:10:34 -05001273 if (iface->cur_altsetting != alt) {
1274 remove_intf_ep_devs(iface);
Alan Stern0e6c8e82005-10-24 15:33:03 -04001275 usb_remove_sysfs_intf_files(iface);
Alan Stern3b23dd62008-12-05 14:10:34 -05001276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 usb_disable_interface(dev, iface);
1278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 iface->cur_altsetting = alt;
1280
1281 /* If the interface only has one altsetting and the device didn't
David Brownella81e7ec2005-04-18 17:39:25 -07001282 * accept the request, we attempt to carry out the equivalent action
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 * by manually clearing the HALT feature for each endpoint in the
1284 * new altsetting.
1285 */
1286 if (manual) {
1287 int i;
1288
1289 for (i = 0; i < alt->desc.bNumEndpoints; i++) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001290 epaddr = alt->endpoint[i].desc.bEndpointAddress;
1291 pipe = __create_pipe(dev,
1292 USB_ENDPOINT_NUMBER_MASK & epaddr) |
1293 (usb_endpoint_out(epaddr) ?
1294 USB_DIR_OUT : USB_DIR_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 usb_clear_halt(dev, pipe);
1297 }
1298 }
1299
1300 /* 9.1.1.5: reset toggles for all endpoints in the new altsetting
1301 *
1302 * Note:
1303 * Despite EP0 is always present in all interfaces/AS, the list of
1304 * endpoints from the descriptor does not contain EP0. Due to its
1305 * omnipresence one might expect EP0 being considered "affected" by
1306 * any SetInterface request and hence assume toggles need to be reset.
1307 * However, EP0 toggles are re-synced for every individual transfer
1308 * during the SETUP stage - hence EP0 toggles are "don't care" here.
1309 * (Likewise, EP0 never "halts" on well designed devices.)
1310 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001311 usb_enable_interface(dev, iface, true);
Alan Stern3b23dd62008-12-05 14:10:34 -05001312 if (device_is_registered(&iface->dev)) {
Alan Stern0e6c8e82005-10-24 15:33:03 -04001313 usb_create_sysfs_intf_files(iface);
Alan Stern3b23dd62008-12-05 14:10:34 -05001314 create_intf_ep_devs(iface);
1315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 return 0;
1317}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001318EXPORT_SYMBOL_GPL(usb_set_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
1320/**
1321 * usb_reset_configuration - lightweight device reset
1322 * @dev: the device whose configuration is being reset
1323 *
1324 * This issues a standard SET_CONFIGURATION request to the device using
1325 * the current configuration. The effect is to reset most USB-related
1326 * state in the device, including interface altsettings (reset to zero),
1327 * endpoint halts (cleared), and data toggle (only for bulk and interrupt
1328 * endpoints). Other usbcore state is unchanged, including bindings of
1329 * usb device drivers to interfaces.
1330 *
1331 * Because this affects multiple interfaces, avoid using this with composite
1332 * (multi-interface) devices. Instead, the driver for each interface may
David Brownella81e7ec2005-04-18 17:39:25 -07001333 * use usb_set_interface() on the interfaces it claims. Be careful though;
1334 * some devices don't support the SET_INTERFACE request, and others won't
1335 * reset all the interface state (notably data toggles). Resetting the whole
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 * configuration would affect other drivers' interfaces.
1337 *
1338 * The caller must own the device lock.
1339 *
1340 * Returns zero on success, else a negative error code.
1341 */
1342int usb_reset_configuration(struct usb_device *dev)
1343{
1344 int i, retval;
1345 struct usb_host_config *config;
1346
1347 if (dev->state == USB_STATE_SUSPENDED)
1348 return -EHOSTUNREACH;
1349
1350 /* caller must have locked the device and must own
1351 * the usb bus readlock (so driver bindings are stable);
1352 * calls during probe() are fine
1353 */
1354
1355 for (i = 1; i < 16; ++i) {
1356 usb_disable_endpoint(dev, i);
1357 usb_disable_endpoint(dev, i + USB_DIR_IN);
1358 }
1359
1360 config = dev->actconfig;
1361 retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1362 USB_REQ_SET_CONFIGURATION, 0,
1363 config->desc.bConfigurationValue, 0,
1364 NULL, 0, USB_CTRL_SET_TIMEOUT);
Alan Stern0e6c8e82005-10-24 15:33:03 -04001365 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368 dev->toggle[0] = dev->toggle[1] = 0;
1369
1370 /* re-init hc/hcd interface/endpoint state */
1371 for (i = 0; i < config->desc.bNumInterfaces; i++) {
1372 struct usb_interface *intf = config->interface[i];
1373 struct usb_host_interface *alt;
1374
1375 alt = usb_altnum_to_altsetting(intf, 0);
1376
1377 /* No altsetting 0? We'll assume the first altsetting.
1378 * We could use a GetInterface call, but if a device is
1379 * so non-compliant that it doesn't have altsetting 0
1380 * then I wouldn't trust its reply anyway.
1381 */
1382 if (!alt)
1383 alt = &intf->altsetting[0];
1384
Alan Stern3b23dd62008-12-05 14:10:34 -05001385 if (alt != intf->cur_altsetting) {
1386 remove_intf_ep_devs(intf);
1387 usb_remove_sysfs_intf_files(intf);
1388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 intf->cur_altsetting = alt;
Alan Stern2caf7fc2008-12-31 11:31:33 -05001390 usb_enable_interface(dev, intf, true);
Alan Stern3b23dd62008-12-05 14:10:34 -05001391 if (device_is_registered(&intf->dev)) {
Alan Stern0e6c8e82005-10-24 15:33:03 -04001392 usb_create_sysfs_intf_files(intf);
Alan Stern3b23dd62008-12-05 14:10:34 -05001393 create_intf_ep_devs(intf);
1394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 }
1396 return 0;
1397}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001398EXPORT_SYMBOL_GPL(usb_reset_configuration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Greg Kroah-Hartmanb0e396e2007-08-02 22:44:27 -06001400static void usb_release_interface(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401{
1402 struct usb_interface *intf = to_usb_interface(dev);
1403 struct usb_interface_cache *intfc =
1404 altsetting_to_usb_interface_cache(intf->altsetting);
1405
1406 kref_put(&intfc->ref, usb_release_interface_cache);
1407 kfree(intf);
1408}
1409
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001410#ifdef CONFIG_HOTPLUG
Kay Sievers7eff2e72007-08-14 15:15:12 +02001411static int usb_if_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001412{
1413 struct usb_device *usb_dev;
1414 struct usb_interface *intf;
1415 struct usb_host_interface *alt;
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001416
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001417 intf = to_usb_interface(dev);
1418 usb_dev = interface_to_usbdev(intf);
1419 alt = intf->cur_altsetting;
1420
Kay Sievers7eff2e72007-08-14 15:15:12 +02001421 if (add_uevent_var(env, "INTERFACE=%d/%d/%d",
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001422 alt->desc.bInterfaceClass,
1423 alt->desc.bInterfaceSubClass,
1424 alt->desc.bInterfaceProtocol))
1425 return -ENOMEM;
1426
Kay Sievers7eff2e72007-08-14 15:15:12 +02001427 if (add_uevent_var(env,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001428 "MODALIAS=usb:"
1429 "v%04Xp%04Xd%04Xdc%02Xdsc%02Xdp%02Xic%02Xisc%02Xip%02X",
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001430 le16_to_cpu(usb_dev->descriptor.idVendor),
1431 le16_to_cpu(usb_dev->descriptor.idProduct),
1432 le16_to_cpu(usb_dev->descriptor.bcdDevice),
1433 usb_dev->descriptor.bDeviceClass,
1434 usb_dev->descriptor.bDeviceSubClass,
1435 usb_dev->descriptor.bDeviceProtocol,
1436 alt->desc.bInterfaceClass,
1437 alt->desc.bInterfaceSubClass,
1438 alt->desc.bInterfaceProtocol))
1439 return -ENOMEM;
1440
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001441 return 0;
1442}
1443
1444#else
1445
Kay Sievers7eff2e72007-08-14 15:15:12 +02001446static int usb_if_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001447{
1448 return -ENODEV;
1449}
1450#endif /* CONFIG_HOTPLUG */
1451
1452struct device_type usb_if_device_type = {
1453 .name = "usb_interface",
1454 .release = usb_release_interface,
1455 .uevent = usb_if_uevent,
1456};
1457
Craig W. Nadler165fe972007-06-15 23:14:35 -04001458static struct usb_interface_assoc_descriptor *find_iad(struct usb_device *dev,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001459 struct usb_host_config *config,
1460 u8 inum)
Craig W. Nadler165fe972007-06-15 23:14:35 -04001461{
1462 struct usb_interface_assoc_descriptor *retval = NULL;
1463 struct usb_interface_assoc_descriptor *intf_assoc;
1464 int first_intf;
1465 int last_intf;
1466 int i;
1467
1468 for (i = 0; (i < USB_MAXIADS && config->intf_assoc[i]); i++) {
1469 intf_assoc = config->intf_assoc[i];
1470 if (intf_assoc->bInterfaceCount == 0)
1471 continue;
1472
1473 first_intf = intf_assoc->bFirstInterface;
1474 last_intf = first_intf + (intf_assoc->bInterfaceCount - 1);
1475 if (inum >= first_intf && inum <= last_intf) {
1476 if (!retval)
1477 retval = intf_assoc;
1478 else
1479 dev_err(&dev->dev, "Interface #%d referenced"
1480 " by multiple IADs\n", inum);
1481 }
1482 }
1483
1484 return retval;
1485}
1486
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001487
1488/*
1489 * Internal function to queue a device reset
1490 *
1491 * This is initialized into the workstruct in 'struct
1492 * usb_device->reset_ws' that is launched by
1493 * message.c:usb_set_configuration() when initializing each 'struct
1494 * usb_interface'.
1495 *
1496 * It is safe to get the USB device without reference counts because
1497 * the life cycle of @iface is bound to the life cycle of @udev. Then,
1498 * this function will be ran only if @iface is alive (and before
1499 * freeing it any scheduled instances of it will have been cancelled).
1500 *
1501 * We need to set a flag (usb_dev->reset_running) because when we call
1502 * the reset, the interfaces might be unbound. The current interface
1503 * cannot try to remove the queued work as it would cause a deadlock
1504 * (you cannot remove your work from within your executing
1505 * workqueue). This flag lets it know, so that
1506 * usb_cancel_queued_reset() doesn't try to do it.
1507 *
1508 * See usb_queue_reset_device() for more details
1509 */
1510void __usb_queue_reset_device(struct work_struct *ws)
1511{
1512 int rc;
1513 struct usb_interface *iface =
1514 container_of(ws, struct usb_interface, reset_ws);
1515 struct usb_device *udev = interface_to_usbdev(iface);
1516
1517 rc = usb_lock_device_for_reset(udev, iface);
1518 if (rc >= 0) {
1519 iface->reset_running = 1;
1520 usb_reset_device(udev);
1521 iface->reset_running = 0;
1522 usb_unlock_device(udev);
1523 }
1524}
1525
1526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527/*
1528 * usb_set_configuration - Makes a particular device setting be current
1529 * @dev: the device whose configuration is being updated
1530 * @configuration: the configuration being chosen.
1531 * Context: !in_interrupt(), caller owns the device lock
1532 *
1533 * This is used to enable non-default device modes. Not all devices
1534 * use this kind of configurability; many devices only have one
1535 * configuration.
1536 *
Alan Stern3f141e22007-02-08 16:40:43 -05001537 * @configuration is the value of the configuration to be installed.
1538 * According to the USB spec (e.g. section 9.1.1.5), configuration values
1539 * must be non-zero; a value of zero indicates that the device in
1540 * unconfigured. However some devices erroneously use 0 as one of their
1541 * configuration values. To help manage such devices, this routine will
1542 * accept @configuration = -1 as indicating the device should be put in
1543 * an unconfigured state.
1544 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 * USB device configurations may affect Linux interoperability,
1546 * power consumption and the functionality available. For example,
1547 * the default configuration is limited to using 100mA of bus power,
1548 * so that when certain device functionality requires more power,
1549 * and the device is bus powered, that functionality should be in some
1550 * non-default device configuration. Other device modes may also be
1551 * reflected as configuration options, such as whether two ISDN
1552 * channels are available independently; and choosing between open
1553 * standard device protocols (like CDC) or proprietary ones.
1554 *
Inaky Perez-Gonzalez16bbab22007-07-31 20:34:01 -07001555 * Note that a non-authorized device (dev->authorized == 0) will only
1556 * be put in unconfigured mode.
1557 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 * Note that USB has an additional level of device configurability,
1559 * associated with interfaces. That configurability is accessed using
1560 * usb_set_interface().
1561 *
1562 * This call is synchronous. The calling context must be able to sleep,
1563 * must own the device lock, and must not hold the driver model's USB
Ming Lei6d243e52008-06-17 23:24:08 +08001564 * bus mutex; usb interface driver probe() methods cannot use this routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 *
1566 * Returns zero on success, or else the status code returned by the
Steven Cole093cf722005-05-03 19:07:24 -06001567 * underlying call that failed. On successful completion, each interface
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 * in the original device configuration has been destroyed, and each one
1569 * in the new configuration has been probed by all relevant usb device
1570 * drivers currently known to the kernel.
1571 */
1572int usb_set_configuration(struct usb_device *dev, int configuration)
1573{
1574 int i, ret;
1575 struct usb_host_config *cp = NULL;
1576 struct usb_interface **new_interfaces = NULL;
1577 int n, nintf;
1578
Inaky Perez-Gonzalez16bbab22007-07-31 20:34:01 -07001579 if (dev->authorized == 0 || configuration == -1)
Alan Stern3f141e22007-02-08 16:40:43 -05001580 configuration = 0;
1581 else {
1582 for (i = 0; i < dev->descriptor.bNumConfigurations; i++) {
1583 if (dev->config[i].desc.bConfigurationValue ==
1584 configuration) {
1585 cp = &dev->config[i];
1586 break;
1587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 }
1589 }
1590 if ((!cp && configuration != 0))
1591 return -EINVAL;
1592
1593 /* The USB spec says configuration 0 means unconfigured.
1594 * But if a device includes a configuration numbered 0,
1595 * we will accept it as a correctly configured state.
Alan Stern3f141e22007-02-08 16:40:43 -05001596 * Use -1 if you really want to unconfigure the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 */
1598 if (cp && configuration == 0)
1599 dev_warn(&dev->dev, "config 0 descriptor??\n");
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 /* Allocate memory for new interfaces before doing anything else,
1602 * so that if we run out then nothing will have changed. */
1603 n = nintf = 0;
1604 if (cp) {
1605 nintf = cp->desc.bNumInterfaces;
1606 new_interfaces = kmalloc(nintf * sizeof(*new_interfaces),
1607 GFP_KERNEL);
1608 if (!new_interfaces) {
Joe Perches898eb712007-10-18 03:06:30 -07001609 dev_err(&dev->dev, "Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 return -ENOMEM;
1611 }
1612
1613 for (; n < nintf; ++n) {
Alan Stern0a1ef3b2005-10-24 15:38:24 -04001614 new_interfaces[n] = kzalloc(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 sizeof(struct usb_interface),
1616 GFP_KERNEL);
1617 if (!new_interfaces[n]) {
Joe Perches898eb712007-10-18 03:06:30 -07001618 dev_err(&dev->dev, "Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 ret = -ENOMEM;
1620free_interfaces:
1621 while (--n >= 0)
1622 kfree(new_interfaces[n]);
1623 kfree(new_interfaces);
1624 return ret;
1625 }
1626 }
Alan Stern6ad07122006-06-01 13:59:16 -04001627
1628 i = dev->bus_mA - cp->desc.bMaxPower * 2;
1629 if (i < 0)
1630 dev_warn(&dev->dev, "new config #%d exceeds power "
1631 "limit by %dmA\n",
1632 configuration, -i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 }
1634
Alan Stern01d883d2006-08-30 15:47:18 -04001635 /* Wake up the device so we can send it the Set-Config request */
Alan Stern94fcda12006-11-20 11:38:46 -05001636 ret = usb_autoresume_device(dev);
Alan Stern01d883d2006-08-30 15:47:18 -04001637 if (ret)
1638 goto free_interfaces;
1639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 /* if it's already configured, clear out old state first.
1641 * getting rid of old interfaces means unbinding their drivers.
1642 */
1643 if (dev->state != USB_STATE_ADDRESS)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001644 usb_disable_device(dev, 1); /* Skip ep0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Alan Sterndf718962008-12-19 10:27:56 -05001646 /* Get rid of pending async Set-Config requests for this device */
1647 cancel_async_set_config(dev);
1648
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001649 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1650 USB_REQ_SET_CONFIGURATION, 0, configuration, 0,
1651 NULL, 0, USB_CTRL_SET_TIMEOUT);
1652 if (ret < 0) {
Alan Stern6ad07122006-06-01 13:59:16 -04001653 /* All the old state is gone, so what else can we do?
1654 * The device is probably useless now anyway.
1655 */
1656 cp = NULL;
1657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
1659 dev->actconfig = cp;
Alan Stern6ad07122006-06-01 13:59:16 -04001660 if (!cp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 usb_set_device_state(dev, USB_STATE_ADDRESS);
Alan Stern94fcda12006-11-20 11:38:46 -05001662 usb_autosuspend_device(dev);
Alan Stern6ad07122006-06-01 13:59:16 -04001663 goto free_interfaces;
1664 }
1665 usb_set_device_state(dev, USB_STATE_CONFIGURED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
Alan Stern6ad07122006-06-01 13:59:16 -04001667 /* Initialize the new interface structures and the
1668 * hc/hcd/usbcore interface/endpoint state.
1669 */
1670 for (i = 0; i < nintf; ++i) {
1671 struct usb_interface_cache *intfc;
1672 struct usb_interface *intf;
1673 struct usb_host_interface *alt;
1674
1675 cp->interface[i] = intf = new_interfaces[i];
1676 intfc = cp->intf_cache[i];
1677 intf->altsetting = intfc->altsetting;
1678 intf->num_altsetting = intfc->num_altsetting;
Craig W. Nadler165fe972007-06-15 23:14:35 -04001679 intf->intf_assoc = find_iad(dev, cp, i);
Alan Stern6ad07122006-06-01 13:59:16 -04001680 kref_get(&intfc->ref);
1681
1682 alt = usb_altnum_to_altsetting(intf, 0);
1683
1684 /* No altsetting 0? We'll assume the first altsetting.
1685 * We could use a GetInterface call, but if a device is
1686 * so non-compliant that it doesn't have altsetting 0
1687 * then I wouldn't trust its reply anyway.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 */
Alan Stern6ad07122006-06-01 13:59:16 -04001689 if (!alt)
1690 alt = &intf->altsetting[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
Alan Stern6ad07122006-06-01 13:59:16 -04001692 intf->cur_altsetting = alt;
Alan Stern2caf7fc2008-12-31 11:31:33 -05001693 usb_enable_interface(dev, intf, true);
Alan Stern6ad07122006-06-01 13:59:16 -04001694 intf->dev.parent = &dev->dev;
1695 intf->dev.driver = NULL;
1696 intf->dev.bus = &usb_bus_type;
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001697 intf->dev.type = &usb_if_device_type;
Alan Stern2e5f10e2008-04-30 15:37:19 -04001698 intf->dev.groups = usb_interface_groups;
Alan Stern6ad07122006-06-01 13:59:16 -04001699 intf->dev.dma_mask = dev->dev.dma_mask;
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001700 INIT_WORK(&intf->reset_ws, __usb_queue_reset_device);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001701 device_initialize(&intf->dev);
Alan Stern6ad07122006-06-01 13:59:16 -04001702 mark_quiesced(intf);
Kay Sievers0031a062008-05-02 06:02:41 +02001703 dev_set_name(&intf->dev, "%d-%s:%d.%d",
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001704 dev->bus->busnum, dev->devpath,
1705 configuration, alt->desc.bInterfaceNumber);
Alan Stern6ad07122006-06-01 13:59:16 -04001706 }
1707 kfree(new_interfaces);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Alan Stern6ad07122006-06-01 13:59:16 -04001709 if (cp->string == NULL)
1710 cp->string = usb_cache_string(dev, cp->desc.iConfiguration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Alan Stern6ad07122006-06-01 13:59:16 -04001712 /* Now that all the interfaces are set up, register them
1713 * to trigger binding of drivers to interfaces. probe()
1714 * routines may install different altsettings and may
1715 * claim() any interfaces not yet bound. Many class drivers
1716 * need that: CDC, audio, video, etc.
1717 */
1718 for (i = 0; i < nintf; ++i) {
1719 struct usb_interface *intf = cp->interface[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001721 dev_dbg(&dev->dev,
Alan Stern6ad07122006-06-01 13:59:16 -04001722 "adding %s (config #%d, interface %d)\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001723 dev_name(&intf->dev), configuration,
Alan Stern6ad07122006-06-01 13:59:16 -04001724 intf->cur_altsetting->desc.bInterfaceNumber);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001725 ret = device_add(&intf->dev);
Alan Stern6ad07122006-06-01 13:59:16 -04001726 if (ret != 0) {
1727 dev_err(&dev->dev, "device_add(%s) --> %d\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001728 dev_name(&intf->dev), ret);
Alan Stern6ad07122006-06-01 13:59:16 -04001729 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 }
Alan Stern3b23dd62008-12-05 14:10:34 -05001731 create_intf_ep_devs(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 }
1733
Alan Stern94fcda12006-11-20 11:38:46 -05001734 usb_autosuspend_device(dev);
Alan Stern86d30742005-07-29 12:17:16 -07001735 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736}
1737
Alan Sterndf718962008-12-19 10:27:56 -05001738static LIST_HEAD(set_config_list);
1739static DEFINE_SPINLOCK(set_config_lock);
1740
Alan Stern088dc272006-08-21 12:08:19 -04001741struct set_config_request {
1742 struct usb_device *udev;
1743 int config;
1744 struct work_struct work;
Alan Sterndf718962008-12-19 10:27:56 -05001745 struct list_head node;
Alan Stern088dc272006-08-21 12:08:19 -04001746};
1747
1748/* Worker routine for usb_driver_set_configuration() */
David Howellsc4028952006-11-22 14:57:56 +00001749static void driver_set_config_work(struct work_struct *work)
Alan Stern088dc272006-08-21 12:08:19 -04001750{
David Howellsc4028952006-11-22 14:57:56 +00001751 struct set_config_request *req =
1752 container_of(work, struct set_config_request, work);
Alan Sterndf718962008-12-19 10:27:56 -05001753 struct usb_device *udev = req->udev;
Alan Stern088dc272006-08-21 12:08:19 -04001754
Alan Sterndf718962008-12-19 10:27:56 -05001755 usb_lock_device(udev);
1756 spin_lock(&set_config_lock);
1757 list_del(&req->node);
1758 spin_unlock(&set_config_lock);
1759
1760 if (req->config >= -1) /* Is req still valid? */
1761 usb_set_configuration(udev, req->config);
1762 usb_unlock_device(udev);
1763 usb_put_dev(udev);
Alan Stern088dc272006-08-21 12:08:19 -04001764 kfree(req);
1765}
1766
Alan Sterndf718962008-12-19 10:27:56 -05001767/* Cancel pending Set-Config requests for a device whose configuration
1768 * was just changed
1769 */
1770static void cancel_async_set_config(struct usb_device *udev)
1771{
1772 struct set_config_request *req;
1773
1774 spin_lock(&set_config_lock);
1775 list_for_each_entry(req, &set_config_list, node) {
1776 if (req->udev == udev)
1777 req->config = -999; /* Mark as cancelled */
1778 }
1779 spin_unlock(&set_config_lock);
1780}
1781
Alan Stern088dc272006-08-21 12:08:19 -04001782/**
1783 * usb_driver_set_configuration - Provide a way for drivers to change device configurations
1784 * @udev: the device whose configuration is being updated
1785 * @config: the configuration being chosen.
1786 * Context: In process context, must be able to sleep
1787 *
1788 * Device interface drivers are not allowed to change device configurations.
1789 * This is because changing configurations will destroy the interface the
1790 * driver is bound to and create new ones; it would be like a floppy-disk
1791 * driver telling the computer to replace the floppy-disk drive with a
1792 * tape drive!
1793 *
1794 * Still, in certain specialized circumstances the need may arise. This
1795 * routine gets around the normal restrictions by using a work thread to
1796 * submit the change-config request.
1797 *
1798 * Returns 0 if the request was succesfully queued, error code otherwise.
1799 * The caller has no way to know whether the queued request will eventually
1800 * succeed.
1801 */
1802int usb_driver_set_configuration(struct usb_device *udev, int config)
1803{
1804 struct set_config_request *req;
1805
1806 req = kmalloc(sizeof(*req), GFP_KERNEL);
1807 if (!req)
1808 return -ENOMEM;
1809 req->udev = udev;
1810 req->config = config;
David Howellsc4028952006-11-22 14:57:56 +00001811 INIT_WORK(&req->work, driver_set_config_work);
Alan Stern088dc272006-08-21 12:08:19 -04001812
Alan Sterndf718962008-12-19 10:27:56 -05001813 spin_lock(&set_config_lock);
1814 list_add(&req->node, &set_config_list);
1815 spin_unlock(&set_config_lock);
1816
Alan Stern088dc272006-08-21 12:08:19 -04001817 usb_get_dev(udev);
Alan Stern1737bf2c2006-12-15 16:04:52 -05001818 schedule_work(&req->work);
Alan Stern088dc272006-08-21 12:08:19 -04001819 return 0;
1820}
1821EXPORT_SYMBOL_GPL(usb_driver_set_configuration);