blob: 3922fa915ed20cfd0eeb1171ec2949eedf34e424 [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) {
Alan Stern67f5a4b2009-02-20 16:33:08 -0500656 result = -ENODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 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);
Alan Stern67f5a4b2009-02-20 16:33:08 -0500699 if (result == 0 || result == -EPIPE)
700 continue;
701 if (result > 1 && ((u8 *) buf)[1] != USB_DT_STRING) {
702 result = -ENODATA;
703 continue;
704 }
705 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
707 return result;
708}
709
710static void usb_try_string_workarounds(unsigned char *buf, int *length)
711{
712 int newlength, oldlength = *length;
713
714 for (newlength = 2; newlength + 1 < oldlength; newlength += 2)
715 if (!isprint(buf[newlength]) || buf[newlength + 1])
716 break;
717
718 if (newlength > 2) {
719 buf[0] = newlength;
720 *length = newlength;
721 }
722}
723
724static int usb_string_sub(struct usb_device *dev, unsigned int langid,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800725 unsigned int index, unsigned char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
727 int rc;
728
729 /* Try to read the string descriptor by asking for the maximum
730 * possible number of bytes */
Oliver Neukum7ceec1f2007-01-26 14:26:21 +0100731 if (dev->quirks & USB_QUIRK_STRING_FETCH_255)
732 rc = -EIO;
733 else
734 rc = usb_get_string(dev, langid, index, buf, 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 /* If that failed try to read the descriptor length, then
737 * ask for just that many bytes */
738 if (rc < 2) {
739 rc = usb_get_string(dev, langid, index, buf, 2);
740 if (rc == 2)
741 rc = usb_get_string(dev, langid, index, buf, buf[0]);
742 }
743
744 if (rc >= 2) {
745 if (!buf[0] && !buf[1])
746 usb_try_string_workarounds(buf, &rc);
747
748 /* There might be extra junk at the end of the descriptor */
749 if (buf[0] < rc)
750 rc = buf[0];
751
752 rc = rc - (rc & 1); /* force a multiple of two */
753 }
754
755 if (rc < 2)
756 rc = (rc < 0 ? rc : -EINVAL);
757
758 return rc;
759}
760
761/**
762 * usb_string - returns ISO 8859-1 version of a string descriptor
763 * @dev: the device whose string descriptor is being retrieved
764 * @index: the number of the descriptor
765 * @buf: where to put the string
766 * @size: how big is "buf"?
767 * Context: !in_interrupt ()
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800768 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 * This converts the UTF-16LE encoded strings returned by devices, from
770 * usb_get_string_descriptor(), to null-terminated ISO-8859-1 encoded ones
771 * that are more usable in most kernel contexts. Note that all characters
772 * in the chosen descriptor that can't be encoded using ISO-8859-1
773 * are converted to the question mark ("?") character, and this function
774 * chooses strings in the first language supported by the device.
775 *
776 * The ASCII (or, redundantly, "US-ASCII") character set is the seven-bit
777 * subset of ISO 8859-1. ISO-8859-1 is the eight-bit subset of Unicode,
778 * and is appropriate for use many uses of English and several other
779 * Western European languages. (But it doesn't include the "Euro" symbol.)
780 *
781 * This call is synchronous, and may not be used in an interrupt context.
782 *
783 * Returns length of the string (>= 0) or usb_control_msg status (< 0).
784 */
785int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
786{
787 unsigned char *tbuf;
788 int err;
789 unsigned int u, idx;
790
791 if (dev->state == USB_STATE_SUSPENDED)
792 return -EHOSTUNREACH;
793 if (size <= 0 || !buf || !index)
794 return -EINVAL;
795 buf[0] = 0;
Alan Sterneb764c42008-03-03 15:16:04 -0500796 tbuf = kmalloc(256, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (!tbuf)
798 return -ENOMEM;
799
800 /* get langid for strings if it's not yet known */
801 if (!dev->have_langid) {
802 err = usb_string_sub(dev, 0, 0, tbuf);
803 if (err < 0) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800804 dev_err(&dev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 "string descriptor 0 read error: %d\n",
806 err);
807 goto errout;
808 } else if (err < 4) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800809 dev_err(&dev->dev, "string descriptor 0 too short\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 err = -EINVAL;
811 goto errout;
812 } else {
Alan Sternce361582006-11-20 11:12:22 -0500813 dev->have_langid = 1;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800814 dev->string_langid = tbuf[2] | (tbuf[3] << 8);
815 /* always use the first langid listed */
816 dev_dbg(&dev->dev, "default language 0x%04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 dev->string_langid);
818 }
819 }
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 err = usb_string_sub(dev, dev->string_langid, index, tbuf);
822 if (err < 0)
823 goto errout;
824
825 size--; /* leave room for trailing NULL char in output buffer */
826 for (idx = 0, u = 2; u < err; u += 2) {
827 if (idx >= size)
828 break;
829 if (tbuf[u+1]) /* high byte */
830 buf[idx++] = '?'; /* non ISO-8859-1 character */
831 else
832 buf[idx++] = tbuf[u];
833 }
834 buf[idx] = 0;
835 err = idx;
836
837 if (tbuf[1] != USB_DT_STRING)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800838 dev_dbg(&dev->dev,
839 "wrong descriptor type %02x for string %d (\"%s\")\n",
840 tbuf[1], index, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 errout:
843 kfree(tbuf);
844 return err;
845}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600846EXPORT_SYMBOL_GPL(usb_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Alan Stern4f62efe2005-10-24 16:24:14 -0400848/**
849 * usb_cache_string - read a string descriptor and cache it for later use
850 * @udev: the device whose string descriptor is being read
851 * @index: the descriptor index
852 *
853 * Returns a pointer to a kmalloc'ed buffer containing the descriptor string,
854 * or NULL if the index is 0 or the string could not be read.
855 */
856char *usb_cache_string(struct usb_device *udev, int index)
857{
858 char *buf;
859 char *smallbuf = NULL;
860 int len;
861
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800862 if (index <= 0)
863 return NULL;
864
865 buf = kmalloc(256, GFP_KERNEL);
866 if (buf) {
867 len = usb_string(udev, index, buf, 256);
868 if (len > 0) {
869 smallbuf = kmalloc(++len, GFP_KERNEL);
870 if (!smallbuf)
Alan Stern4f62efe2005-10-24 16:24:14 -0400871 return buf;
872 memcpy(smallbuf, buf, len);
873 }
874 kfree(buf);
875 }
876 return smallbuf;
877}
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879/*
880 * usb_get_device_descriptor - (re)reads the device descriptor (usbcore)
881 * @dev: the device whose device descriptor is being updated
882 * @size: how much of the descriptor to read
883 * Context: !in_interrupt ()
884 *
885 * Updates the copy of the device descriptor stored in the device structure,
Laurent Pinchart6ab16a92006-11-07 10:16:25 +0100886 * which dedicates space for this purpose.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 *
888 * Not exported, only for use by the core. If drivers really want to read
889 * the device descriptor directly, they can call usb_get_descriptor() with
890 * type = USB_DT_DEVICE and index = 0.
891 *
892 * This call is synchronous, and may not be used in an interrupt context.
893 *
894 * Returns the number of bytes received on success, or else the status code
895 * returned by the underlying usb_control_msg() call.
896 */
897int usb_get_device_descriptor(struct usb_device *dev, unsigned int size)
898{
899 struct usb_device_descriptor *desc;
900 int ret;
901
902 if (size > sizeof(*desc))
903 return -EINVAL;
904 desc = kmalloc(sizeof(*desc), GFP_NOIO);
905 if (!desc)
906 return -ENOMEM;
907
908 ret = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, size);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800909 if (ret >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 memcpy(&dev->descriptor, desc, size);
911 kfree(desc);
912 return ret;
913}
914
915/**
916 * usb_get_status - issues a GET_STATUS call
917 * @dev: the device whose status is being checked
918 * @type: USB_RECIP_*; for device, interface, or endpoint
919 * @target: zero (for device), else interface or endpoint number
920 * @data: pointer to two bytes of bitmap data
921 * Context: !in_interrupt ()
922 *
923 * Returns device, interface, or endpoint status. Normally only of
924 * interest to see if the device is self powered, or has enabled the
925 * remote wakeup facility; or whether a bulk or interrupt endpoint
926 * is halted ("stalled").
927 *
928 * Bits in these status bitmaps are set using the SET_FEATURE request,
929 * and cleared using the CLEAR_FEATURE request. The usb_clear_halt()
930 * function should be used to clear halt ("stall") status.
931 *
932 * This call is synchronous, and may not be used in an interrupt context.
933 *
934 * Returns the number of bytes received on success, or else the status code
935 * returned by the underlying usb_control_msg() call.
936 */
937int usb_get_status(struct usb_device *dev, int type, int target, void *data)
938{
939 int ret;
940 u16 *status = kmalloc(sizeof(*status), GFP_KERNEL);
941
942 if (!status)
943 return -ENOMEM;
944
945 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
946 USB_REQ_GET_STATUS, USB_DIR_IN | type, 0, target, status,
947 sizeof(*status), USB_CTRL_GET_TIMEOUT);
948
949 *(u16 *)data = *status;
950 kfree(status);
951 return ret;
952}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600953EXPORT_SYMBOL_GPL(usb_get_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955/**
956 * usb_clear_halt - tells device to clear endpoint halt/stall condition
957 * @dev: device whose endpoint is halted
958 * @pipe: endpoint "pipe" being cleared
959 * Context: !in_interrupt ()
960 *
961 * This is used to clear halt conditions for bulk and interrupt endpoints,
962 * as reported by URB completion status. Endpoints that are halted are
963 * sometimes referred to as being "stalled". Such endpoints are unable
964 * to transmit or receive data until the halt status is cleared. Any URBs
965 * queued for such an endpoint should normally be unlinked by the driver
966 * before clearing the halt condition, as described in sections 5.7.5
967 * and 5.8.5 of the USB 2.0 spec.
968 *
969 * Note that control and isochronous endpoints don't halt, although control
970 * endpoints report "protocol stall" (for unsupported requests) using the
971 * same status code used to report a true stall.
972 *
973 * This call is synchronous, and may not be used in an interrupt context.
974 *
975 * Returns zero on success, or else the status code returned by the
976 * underlying usb_control_msg() call.
977 */
978int usb_clear_halt(struct usb_device *dev, int pipe)
979{
980 int result;
981 int endp = usb_pipeendpoint(pipe);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -0800982
983 if (usb_pipein(pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 endp |= USB_DIR_IN;
985
986 /* we don't care if it wasn't halted first. in fact some devices
987 * (like some ibmcam model 1 units) seem to expect hosts to make
988 * this request for iso endpoints, which can't halt!
989 */
990 result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
991 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT,
992 USB_ENDPOINT_HALT, endp, NULL, 0,
993 USB_CTRL_SET_TIMEOUT);
994
995 /* don't un-halt or force to DATA0 except on success */
996 if (result < 0)
997 return result;
998
999 /* NOTE: seems like Microsoft and Apple don't bother verifying
1000 * the clear "took", so some devices could lock up if you check...
1001 * such as the Hagiwara FlashGate DUAL. So we won't bother.
1002 *
1003 * NOTE: make sure the logic here doesn't diverge much from
1004 * the copy in usb-storage, for as long as we need two copies.
1005 */
1006
1007 /* toggle was reset by the clear */
1008 usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), 0);
1009
1010 return 0;
1011}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001012EXPORT_SYMBOL_GPL(usb_clear_halt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Alan Stern3b23dd62008-12-05 14:10:34 -05001014static int create_intf_ep_devs(struct usb_interface *intf)
1015{
1016 struct usb_device *udev = interface_to_usbdev(intf);
1017 struct usb_host_interface *alt = intf->cur_altsetting;
1018 int i;
1019
1020 if (intf->ep_devs_created || intf->unregistering)
1021 return 0;
1022
1023 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
1024 (void) usb_create_ep_devs(&intf->dev, &alt->endpoint[i], udev);
1025 intf->ep_devs_created = 1;
1026 return 0;
1027}
1028
1029static void remove_intf_ep_devs(struct usb_interface *intf)
1030{
1031 struct usb_host_interface *alt = intf->cur_altsetting;
1032 int i;
1033
1034 if (!intf->ep_devs_created)
1035 return;
1036
1037 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
1038 usb_remove_ep_devs(&alt->endpoint[i]);
1039 intf->ep_devs_created = 0;
1040}
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042/**
1043 * usb_disable_endpoint -- Disable an endpoint by address
1044 * @dev: the device whose endpoint is being disabled
1045 * @epaddr: the endpoint's address. Endpoint number for output,
1046 * endpoint number + USB_DIR_IN for input
Alan Sternddeac4e72009-01-15 17:03:33 -05001047 * @reset_hardware: flag to erase any endpoint state stored in the
1048 * controller hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 *
Alan Sternddeac4e72009-01-15 17:03:33 -05001050 * Disables the endpoint for URB submission and nukes all pending URBs.
1051 * If @reset_hardware is set then also deallocates hcd/hardware state
1052 * for the endpoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 */
Alan Sternddeac4e72009-01-15 17:03:33 -05001054void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr,
1055 bool reset_hardware)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
1057 unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK;
1058 struct usb_host_endpoint *ep;
1059
1060 if (!dev)
1061 return;
1062
1063 if (usb_endpoint_out(epaddr)) {
1064 ep = dev->ep_out[epnum];
Alan Sternddeac4e72009-01-15 17:03:33 -05001065 if (reset_hardware)
1066 dev->ep_out[epnum] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 } else {
1068 ep = dev->ep_in[epnum];
Alan Sternddeac4e72009-01-15 17:03:33 -05001069 if (reset_hardware)
1070 dev->ep_in[epnum] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 }
Alan Sternbdd016b2007-07-30 17:05:22 -04001072 if (ep) {
1073 ep->enabled = 0;
Alan Stern95cf82f2007-09-10 11:33:05 -04001074 usb_hcd_flush_endpoint(dev, ep);
Alan Sternddeac4e72009-01-15 17:03:33 -05001075 if (reset_hardware)
1076 usb_hcd_disable_endpoint(dev, ep);
Alan Sternbdd016b2007-07-30 17:05:22 -04001077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078}
1079
1080/**
1081 * usb_disable_interface -- Disable all endpoints for an interface
1082 * @dev: the device whose interface is being disabled
1083 * @intf: pointer to the interface descriptor
Alan Sternddeac4e72009-01-15 17:03:33 -05001084 * @reset_hardware: flag to erase any endpoint state stored in the
1085 * controller hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 *
1087 * Disables all the endpoints for the interface's current altsetting.
1088 */
Alan Sternddeac4e72009-01-15 17:03:33 -05001089void usb_disable_interface(struct usb_device *dev, struct usb_interface *intf,
1090 bool reset_hardware)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
1092 struct usb_host_interface *alt = intf->cur_altsetting;
1093 int i;
1094
1095 for (i = 0; i < alt->desc.bNumEndpoints; ++i) {
1096 usb_disable_endpoint(dev,
Alan Sternddeac4e72009-01-15 17:03:33 -05001097 alt->endpoint[i].desc.bEndpointAddress,
1098 reset_hardware);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 }
1100}
1101
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001102/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 * usb_disable_device - Disable all the endpoints for a USB device
1104 * @dev: the device whose endpoints are being disabled
1105 * @skip_ep0: 0 to disable endpoint 0, 1 to skip it.
1106 *
1107 * Disables all the device's endpoints, potentially including endpoint 0.
1108 * Deallocates hcd/hardware state for the endpoints (nuking all or most
1109 * pending urbs) and usbcore state for the interfaces, so that usbcore
1110 * must usb_set_configuration() before any interfaces could be used.
1111 */
1112void usb_disable_device(struct usb_device *dev, int skip_ep0)
1113{
1114 int i;
1115
Harvey Harrison441b62c2008-03-03 16:08:34 -08001116 dev_dbg(&dev->dev, "%s nuking %s URBs\n", __func__,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001117 skip_ep0 ? "non-ep0" : "all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 for (i = skip_ep0; i < 16; ++i) {
Alan Sternddeac4e72009-01-15 17:03:33 -05001119 usb_disable_endpoint(dev, i, true);
1120 usb_disable_endpoint(dev, i + USB_DIR_IN, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 }
1122 dev->toggle[0] = dev->toggle[1] = 0;
1123
1124 /* getting rid of interfaces will disconnect
1125 * any drivers bound to them (a key side effect)
1126 */
1127 if (dev->actconfig) {
1128 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
1129 struct usb_interface *interface;
1130
Alan Stern86d30742005-07-29 12:17:16 -07001131 /* remove this interface if it has been registered */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 interface = dev->actconfig->interface[i];
Daniel Ritzd305ef52005-09-22 00:47:24 -07001133 if (!device_is_registered(&interface->dev))
Alan Stern86d30742005-07-29 12:17:16 -07001134 continue;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001135 dev_dbg(&dev->dev, "unregistering interface %s\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001136 dev_name(&interface->dev));
Alan Stern352d0262008-10-29 15:16:58 -04001137 interface->unregistering = 1;
Alan Stern3b23dd62008-12-05 14:10:34 -05001138 remove_intf_ep_devs(interface);
Alan Stern1a211752008-07-30 11:31:50 -04001139 device_del(&interface->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 }
1141
1142 /* Now that the interfaces are unbound, nobody should
1143 * try to access them.
1144 */
1145 for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001146 put_device(&dev->actconfig->interface[i]->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 dev->actconfig->interface[i] = NULL;
1148 }
1149 dev->actconfig = NULL;
1150 if (dev->state == USB_STATE_CONFIGURED)
1151 usb_set_device_state(dev, USB_STATE_ADDRESS);
1152 }
1153}
1154
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001155/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 * usb_enable_endpoint - Enable an endpoint for USB communications
1157 * @dev: the device whose interface is being enabled
1158 * @ep: the endpoint
Alan Stern2caf7fc2008-12-31 11:31:33 -05001159 * @reset_toggle: flag to set the endpoint's toggle back to 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 *
Alan Stern2caf7fc2008-12-31 11:31:33 -05001161 * Resets the endpoint toggle if asked, and sets dev->ep_{in,out} pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 * For control endpoints, both the input and output sides are handled.
1163 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001164void usb_enable_endpoint(struct usb_device *dev, struct usb_host_endpoint *ep,
1165 bool reset_toggle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166{
Alan Sternbdd016b2007-07-30 17:05:22 -04001167 int epnum = usb_endpoint_num(&ep->desc);
1168 int is_out = usb_endpoint_dir_out(&ep->desc);
1169 int is_control = usb_endpoint_xfer_control(&ep->desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Alan Sternbdd016b2007-07-30 17:05:22 -04001171 if (is_out || is_control) {
Alan Stern2caf7fc2008-12-31 11:31:33 -05001172 if (reset_toggle)
1173 usb_settoggle(dev, epnum, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 dev->ep_out[epnum] = ep;
1175 }
Alan Sternbdd016b2007-07-30 17:05:22 -04001176 if (!is_out || is_control) {
Alan Stern2caf7fc2008-12-31 11:31:33 -05001177 if (reset_toggle)
1178 usb_settoggle(dev, epnum, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 dev->ep_in[epnum] = ep;
1180 }
Alan Sternbdd016b2007-07-30 17:05:22 -04001181 ep->enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182}
1183
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001184/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 * usb_enable_interface - Enable all the endpoints for an interface
1186 * @dev: the device whose interface is being enabled
1187 * @intf: pointer to the interface descriptor
Alan Stern2caf7fc2008-12-31 11:31:33 -05001188 * @reset_toggles: flag to set the endpoints' toggles back to 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 *
1190 * Enables all the endpoints for the interface's current altsetting.
1191 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001192void usb_enable_interface(struct usb_device *dev,
1193 struct usb_interface *intf, bool reset_toggles)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
1195 struct usb_host_interface *alt = intf->cur_altsetting;
1196 int i;
1197
1198 for (i = 0; i < alt->desc.bNumEndpoints; ++i)
Alan Stern2caf7fc2008-12-31 11:31:33 -05001199 usb_enable_endpoint(dev, &alt->endpoint[i], reset_toggles);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
1201
1202/**
1203 * usb_set_interface - Makes a particular alternate setting be current
1204 * @dev: the device whose interface is being updated
1205 * @interface: the interface being updated
1206 * @alternate: the setting being chosen.
1207 * Context: !in_interrupt ()
1208 *
1209 * This is used to enable data transfers on interfaces that may not
1210 * be enabled by default. Not all devices support such configurability.
1211 * Only the driver bound to an interface may change its setting.
1212 *
1213 * Within any given configuration, each interface may have several
1214 * alternative settings. These are often used to control levels of
1215 * bandwidth consumption. For example, the default setting for a high
1216 * speed interrupt endpoint may not send more than 64 bytes per microframe,
1217 * while interrupt transfers of up to 3KBytes per microframe are legal.
1218 * Also, isochronous endpoints may never be part of an
1219 * interface's default setting. To access such bandwidth, alternate
1220 * interface settings must be made current.
1221 *
1222 * Note that in the Linux USB subsystem, bandwidth associated with
1223 * an endpoint in a given alternate setting is not reserved until an URB
1224 * is submitted that needs that bandwidth. Some other operating systems
1225 * allocate bandwidth early, when a configuration is chosen.
1226 *
1227 * This call is synchronous, and may not be used in an interrupt context.
1228 * Also, drivers must not change altsettings while urbs are scheduled for
1229 * endpoints in that interface; all such urbs must first be completed
1230 * (perhaps forced by unlinking).
1231 *
1232 * Returns zero on success, or else the status code returned by the
1233 * underlying usb_control_msg() call.
1234 */
1235int usb_set_interface(struct usb_device *dev, int interface, int alternate)
1236{
1237 struct usb_interface *iface;
1238 struct usb_host_interface *alt;
1239 int ret;
1240 int manual = 0;
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001241 unsigned int epaddr;
1242 unsigned int pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
1244 if (dev->state == USB_STATE_SUSPENDED)
1245 return -EHOSTUNREACH;
1246
1247 iface = usb_ifnum_to_if(dev, interface);
1248 if (!iface) {
1249 dev_dbg(&dev->dev, "selecting invalid interface %d\n",
1250 interface);
1251 return -EINVAL;
1252 }
1253
1254 alt = usb_altnum_to_altsetting(iface, alternate);
1255 if (!alt) {
Greg Kroah-Hartman3b6004f2008-08-14 09:37:34 -07001256 dev_warn(&dev->dev, "selecting invalid altsetting %d",
1257 alternate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 return -EINVAL;
1259 }
1260
Alan Stern392e1d92008-03-11 10:20:12 -04001261 if (dev->quirks & USB_QUIRK_NO_SET_INTF)
1262 ret = -EPIPE;
1263 else
1264 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
1266 alternate, interface, NULL, 0, 5000);
1267
1268 /* 9.4.10 says devices don't need this and are free to STALL the
1269 * request if the interface only has one alternate setting.
1270 */
1271 if (ret == -EPIPE && iface->num_altsetting == 1) {
1272 dev_dbg(&dev->dev,
1273 "manual set_interface for iface %d, alt %d\n",
1274 interface, alternate);
1275 manual = 1;
1276 } else if (ret < 0)
1277 return ret;
1278
1279 /* FIXME drivers shouldn't need to replicate/bugfix the logic here
1280 * when they implement async or easily-killable versions of this or
1281 * other "should-be-internal" functions (like clear_halt).
1282 * should hcd+usbcore postprocess control requests?
1283 */
1284
1285 /* prevent submissions using previous endpoint settings */
Alan Stern3b23dd62008-12-05 14:10:34 -05001286 if (iface->cur_altsetting != alt) {
1287 remove_intf_ep_devs(iface);
Alan Stern0e6c8e82005-10-24 15:33:03 -04001288 usb_remove_sysfs_intf_files(iface);
Alan Stern3b23dd62008-12-05 14:10:34 -05001289 }
Alan Sternddeac4e72009-01-15 17:03:33 -05001290 usb_disable_interface(dev, iface, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 iface->cur_altsetting = alt;
1293
1294 /* If the interface only has one altsetting and the device didn't
David Brownella81e7ec2005-04-18 17:39:25 -07001295 * accept the request, we attempt to carry out the equivalent action
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 * by manually clearing the HALT feature for each endpoint in the
1297 * new altsetting.
1298 */
1299 if (manual) {
1300 int i;
1301
1302 for (i = 0; i < alt->desc.bNumEndpoints; i++) {
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001303 epaddr = alt->endpoint[i].desc.bEndpointAddress;
1304 pipe = __create_pipe(dev,
1305 USB_ENDPOINT_NUMBER_MASK & epaddr) |
1306 (usb_endpoint_out(epaddr) ?
1307 USB_DIR_OUT : USB_DIR_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 usb_clear_halt(dev, pipe);
1310 }
1311 }
1312
1313 /* 9.1.1.5: reset toggles for all endpoints in the new altsetting
1314 *
1315 * Note:
1316 * Despite EP0 is always present in all interfaces/AS, the list of
1317 * endpoints from the descriptor does not contain EP0. Due to its
1318 * omnipresence one might expect EP0 being considered "affected" by
1319 * any SetInterface request and hence assume toggles need to be reset.
1320 * However, EP0 toggles are re-synced for every individual transfer
1321 * during the SETUP stage - hence EP0 toggles are "don't care" here.
1322 * (Likewise, EP0 never "halts" on well designed devices.)
1323 */
Alan Stern2caf7fc2008-12-31 11:31:33 -05001324 usb_enable_interface(dev, iface, true);
Alan Stern3b23dd62008-12-05 14:10:34 -05001325 if (device_is_registered(&iface->dev)) {
Alan Stern0e6c8e82005-10-24 15:33:03 -04001326 usb_create_sysfs_intf_files(iface);
Alan Stern3b23dd62008-12-05 14:10:34 -05001327 create_intf_ep_devs(iface);
1328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 return 0;
1330}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001331EXPORT_SYMBOL_GPL(usb_set_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333/**
1334 * usb_reset_configuration - lightweight device reset
1335 * @dev: the device whose configuration is being reset
1336 *
1337 * This issues a standard SET_CONFIGURATION request to the device using
1338 * the current configuration. The effect is to reset most USB-related
1339 * state in the device, including interface altsettings (reset to zero),
1340 * endpoint halts (cleared), and data toggle (only for bulk and interrupt
1341 * endpoints). Other usbcore state is unchanged, including bindings of
1342 * usb device drivers to interfaces.
1343 *
1344 * Because this affects multiple interfaces, avoid using this with composite
1345 * (multi-interface) devices. Instead, the driver for each interface may
David Brownella81e7ec2005-04-18 17:39:25 -07001346 * use usb_set_interface() on the interfaces it claims. Be careful though;
1347 * some devices don't support the SET_INTERFACE request, and others won't
1348 * reset all the interface state (notably data toggles). Resetting the whole
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 * configuration would affect other drivers' interfaces.
1350 *
1351 * The caller must own the device lock.
1352 *
1353 * Returns zero on success, else a negative error code.
1354 */
1355int usb_reset_configuration(struct usb_device *dev)
1356{
1357 int i, retval;
1358 struct usb_host_config *config;
1359
1360 if (dev->state == USB_STATE_SUSPENDED)
1361 return -EHOSTUNREACH;
1362
1363 /* caller must have locked the device and must own
1364 * the usb bus readlock (so driver bindings are stable);
1365 * calls during probe() are fine
1366 */
1367
1368 for (i = 1; i < 16; ++i) {
Alan Sternddeac4e72009-01-15 17:03:33 -05001369 usb_disable_endpoint(dev, i, true);
1370 usb_disable_endpoint(dev, i + USB_DIR_IN, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 }
1372
1373 config = dev->actconfig;
1374 retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1375 USB_REQ_SET_CONFIGURATION, 0,
1376 config->desc.bConfigurationValue, 0,
1377 NULL, 0, USB_CTRL_SET_TIMEOUT);
Alan Stern0e6c8e82005-10-24 15:33:03 -04001378 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 dev->toggle[0] = dev->toggle[1] = 0;
1382
1383 /* re-init hc/hcd interface/endpoint state */
1384 for (i = 0; i < config->desc.bNumInterfaces; i++) {
1385 struct usb_interface *intf = config->interface[i];
1386 struct usb_host_interface *alt;
1387
1388 alt = usb_altnum_to_altsetting(intf, 0);
1389
1390 /* No altsetting 0? We'll assume the first altsetting.
1391 * We could use a GetInterface call, but if a device is
1392 * so non-compliant that it doesn't have altsetting 0
1393 * then I wouldn't trust its reply anyway.
1394 */
1395 if (!alt)
1396 alt = &intf->altsetting[0];
1397
Alan Stern3b23dd62008-12-05 14:10:34 -05001398 if (alt != intf->cur_altsetting) {
1399 remove_intf_ep_devs(intf);
1400 usb_remove_sysfs_intf_files(intf);
1401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 intf->cur_altsetting = alt;
Alan Stern2caf7fc2008-12-31 11:31:33 -05001403 usb_enable_interface(dev, intf, true);
Alan Stern3b23dd62008-12-05 14:10:34 -05001404 if (device_is_registered(&intf->dev)) {
Alan Stern0e6c8e82005-10-24 15:33:03 -04001405 usb_create_sysfs_intf_files(intf);
Alan Stern3b23dd62008-12-05 14:10:34 -05001406 create_intf_ep_devs(intf);
1407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
1409 return 0;
1410}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001411EXPORT_SYMBOL_GPL(usb_reset_configuration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Greg Kroah-Hartmanb0e396e2007-08-02 22:44:27 -06001413static void usb_release_interface(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
1415 struct usb_interface *intf = to_usb_interface(dev);
1416 struct usb_interface_cache *intfc =
1417 altsetting_to_usb_interface_cache(intf->altsetting);
1418
1419 kref_put(&intfc->ref, usb_release_interface_cache);
1420 kfree(intf);
1421}
1422
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001423#ifdef CONFIG_HOTPLUG
Kay Sievers7eff2e72007-08-14 15:15:12 +02001424static int usb_if_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001425{
1426 struct usb_device *usb_dev;
1427 struct usb_interface *intf;
1428 struct usb_host_interface *alt;
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001429
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001430 intf = to_usb_interface(dev);
1431 usb_dev = interface_to_usbdev(intf);
1432 alt = intf->cur_altsetting;
1433
Kay Sievers7eff2e72007-08-14 15:15:12 +02001434 if (add_uevent_var(env, "INTERFACE=%d/%d/%d",
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001435 alt->desc.bInterfaceClass,
1436 alt->desc.bInterfaceSubClass,
1437 alt->desc.bInterfaceProtocol))
1438 return -ENOMEM;
1439
Kay Sievers7eff2e72007-08-14 15:15:12 +02001440 if (add_uevent_var(env,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001441 "MODALIAS=usb:"
1442 "v%04Xp%04Xd%04Xdc%02Xdsc%02Xdp%02Xic%02Xisc%02Xip%02X",
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001443 le16_to_cpu(usb_dev->descriptor.idVendor),
1444 le16_to_cpu(usb_dev->descriptor.idProduct),
1445 le16_to_cpu(usb_dev->descriptor.bcdDevice),
1446 usb_dev->descriptor.bDeviceClass,
1447 usb_dev->descriptor.bDeviceSubClass,
1448 usb_dev->descriptor.bDeviceProtocol,
1449 alt->desc.bInterfaceClass,
1450 alt->desc.bInterfaceSubClass,
1451 alt->desc.bInterfaceProtocol))
1452 return -ENOMEM;
1453
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001454 return 0;
1455}
1456
1457#else
1458
Kay Sievers7eff2e72007-08-14 15:15:12 +02001459static int usb_if_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001460{
1461 return -ENODEV;
1462}
1463#endif /* CONFIG_HOTPLUG */
1464
1465struct device_type usb_if_device_type = {
1466 .name = "usb_interface",
1467 .release = usb_release_interface,
1468 .uevent = usb_if_uevent,
1469};
1470
Craig W. Nadler165fe972007-06-15 23:14:35 -04001471static struct usb_interface_assoc_descriptor *find_iad(struct usb_device *dev,
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001472 struct usb_host_config *config,
1473 u8 inum)
Craig W. Nadler165fe972007-06-15 23:14:35 -04001474{
1475 struct usb_interface_assoc_descriptor *retval = NULL;
1476 struct usb_interface_assoc_descriptor *intf_assoc;
1477 int first_intf;
1478 int last_intf;
1479 int i;
1480
1481 for (i = 0; (i < USB_MAXIADS && config->intf_assoc[i]); i++) {
1482 intf_assoc = config->intf_assoc[i];
1483 if (intf_assoc->bInterfaceCount == 0)
1484 continue;
1485
1486 first_intf = intf_assoc->bFirstInterface;
1487 last_intf = first_intf + (intf_assoc->bInterfaceCount - 1);
1488 if (inum >= first_intf && inum <= last_intf) {
1489 if (!retval)
1490 retval = intf_assoc;
1491 else
1492 dev_err(&dev->dev, "Interface #%d referenced"
1493 " by multiple IADs\n", inum);
1494 }
1495 }
1496
1497 return retval;
1498}
1499
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001500
1501/*
1502 * Internal function to queue a device reset
1503 *
1504 * This is initialized into the workstruct in 'struct
1505 * usb_device->reset_ws' that is launched by
1506 * message.c:usb_set_configuration() when initializing each 'struct
1507 * usb_interface'.
1508 *
1509 * It is safe to get the USB device without reference counts because
1510 * the life cycle of @iface is bound to the life cycle of @udev. Then,
1511 * this function will be ran only if @iface is alive (and before
1512 * freeing it any scheduled instances of it will have been cancelled).
1513 *
1514 * We need to set a flag (usb_dev->reset_running) because when we call
1515 * the reset, the interfaces might be unbound. The current interface
1516 * cannot try to remove the queued work as it would cause a deadlock
1517 * (you cannot remove your work from within your executing
1518 * workqueue). This flag lets it know, so that
1519 * usb_cancel_queued_reset() doesn't try to do it.
1520 *
1521 * See usb_queue_reset_device() for more details
1522 */
1523void __usb_queue_reset_device(struct work_struct *ws)
1524{
1525 int rc;
1526 struct usb_interface *iface =
1527 container_of(ws, struct usb_interface, reset_ws);
1528 struct usb_device *udev = interface_to_usbdev(iface);
1529
1530 rc = usb_lock_device_for_reset(udev, iface);
1531 if (rc >= 0) {
1532 iface->reset_running = 1;
1533 usb_reset_device(udev);
1534 iface->reset_running = 0;
1535 usb_unlock_device(udev);
1536 }
1537}
1538
1539
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540/*
1541 * usb_set_configuration - Makes a particular device setting be current
1542 * @dev: the device whose configuration is being updated
1543 * @configuration: the configuration being chosen.
1544 * Context: !in_interrupt(), caller owns the device lock
1545 *
1546 * This is used to enable non-default device modes. Not all devices
1547 * use this kind of configurability; many devices only have one
1548 * configuration.
1549 *
Alan Stern3f141e22007-02-08 16:40:43 -05001550 * @configuration is the value of the configuration to be installed.
1551 * According to the USB spec (e.g. section 9.1.1.5), configuration values
1552 * must be non-zero; a value of zero indicates that the device in
1553 * unconfigured. However some devices erroneously use 0 as one of their
1554 * configuration values. To help manage such devices, this routine will
1555 * accept @configuration = -1 as indicating the device should be put in
1556 * an unconfigured state.
1557 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 * USB device configurations may affect Linux interoperability,
1559 * power consumption and the functionality available. For example,
1560 * the default configuration is limited to using 100mA of bus power,
1561 * so that when certain device functionality requires more power,
1562 * and the device is bus powered, that functionality should be in some
1563 * non-default device configuration. Other device modes may also be
1564 * reflected as configuration options, such as whether two ISDN
1565 * channels are available independently; and choosing between open
1566 * standard device protocols (like CDC) or proprietary ones.
1567 *
Inaky Perez-Gonzalez16bbab22007-07-31 20:34:01 -07001568 * Note that a non-authorized device (dev->authorized == 0) will only
1569 * be put in unconfigured mode.
1570 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 * Note that USB has an additional level of device configurability,
1572 * associated with interfaces. That configurability is accessed using
1573 * usb_set_interface().
1574 *
1575 * This call is synchronous. The calling context must be able to sleep,
1576 * must own the device lock, and must not hold the driver model's USB
Ming Lei6d243e52008-06-17 23:24:08 +08001577 * bus mutex; usb interface driver probe() methods cannot use this routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 *
1579 * Returns zero on success, or else the status code returned by the
Steven Cole093cf722005-05-03 19:07:24 -06001580 * underlying call that failed. On successful completion, each interface
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 * in the original device configuration has been destroyed, and each one
1582 * in the new configuration has been probed by all relevant usb device
1583 * drivers currently known to the kernel.
1584 */
1585int usb_set_configuration(struct usb_device *dev, int configuration)
1586{
1587 int i, ret;
1588 struct usb_host_config *cp = NULL;
1589 struct usb_interface **new_interfaces = NULL;
1590 int n, nintf;
1591
Inaky Perez-Gonzalez16bbab22007-07-31 20:34:01 -07001592 if (dev->authorized == 0 || configuration == -1)
Alan Stern3f141e22007-02-08 16:40:43 -05001593 configuration = 0;
1594 else {
1595 for (i = 0; i < dev->descriptor.bNumConfigurations; i++) {
1596 if (dev->config[i].desc.bConfigurationValue ==
1597 configuration) {
1598 cp = &dev->config[i];
1599 break;
1600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 }
1602 }
1603 if ((!cp && configuration != 0))
1604 return -EINVAL;
1605
1606 /* The USB spec says configuration 0 means unconfigured.
1607 * But if a device includes a configuration numbered 0,
1608 * we will accept it as a correctly configured state.
Alan Stern3f141e22007-02-08 16:40:43 -05001609 * Use -1 if you really want to unconfigure the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 */
1611 if (cp && configuration == 0)
1612 dev_warn(&dev->dev, "config 0 descriptor??\n");
1613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 /* Allocate memory for new interfaces before doing anything else,
1615 * so that if we run out then nothing will have changed. */
1616 n = nintf = 0;
1617 if (cp) {
1618 nintf = cp->desc.bNumInterfaces;
1619 new_interfaces = kmalloc(nintf * sizeof(*new_interfaces),
1620 GFP_KERNEL);
1621 if (!new_interfaces) {
Joe Perches898eb712007-10-18 03:06:30 -07001622 dev_err(&dev->dev, "Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 return -ENOMEM;
1624 }
1625
1626 for (; n < nintf; ++n) {
Alan Stern0a1ef3b2005-10-24 15:38:24 -04001627 new_interfaces[n] = kzalloc(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 sizeof(struct usb_interface),
1629 GFP_KERNEL);
1630 if (!new_interfaces[n]) {
Joe Perches898eb712007-10-18 03:06:30 -07001631 dev_err(&dev->dev, "Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 ret = -ENOMEM;
1633free_interfaces:
1634 while (--n >= 0)
1635 kfree(new_interfaces[n]);
1636 kfree(new_interfaces);
1637 return ret;
1638 }
1639 }
Alan Stern6ad07122006-06-01 13:59:16 -04001640
1641 i = dev->bus_mA - cp->desc.bMaxPower * 2;
1642 if (i < 0)
1643 dev_warn(&dev->dev, "new config #%d exceeds power "
1644 "limit by %dmA\n",
1645 configuration, -i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 }
1647
Alan Stern01d883d2006-08-30 15:47:18 -04001648 /* Wake up the device so we can send it the Set-Config request */
Alan Stern94fcda12006-11-20 11:38:46 -05001649 ret = usb_autoresume_device(dev);
Alan Stern01d883d2006-08-30 15:47:18 -04001650 if (ret)
1651 goto free_interfaces;
1652
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 /* if it's already configured, clear out old state first.
1654 * getting rid of old interfaces means unbinding their drivers.
1655 */
1656 if (dev->state != USB_STATE_ADDRESS)
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001657 usb_disable_device(dev, 1); /* Skip ep0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Alan Sterndf718962008-12-19 10:27:56 -05001659 /* Get rid of pending async Set-Config requests for this device */
1660 cancel_async_set_config(dev);
1661
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001662 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
1663 USB_REQ_SET_CONFIGURATION, 0, configuration, 0,
1664 NULL, 0, USB_CTRL_SET_TIMEOUT);
1665 if (ret < 0) {
Alan Stern6ad07122006-06-01 13:59:16 -04001666 /* All the old state is gone, so what else can we do?
1667 * The device is probably useless now anyway.
1668 */
1669 cp = NULL;
1670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
1672 dev->actconfig = cp;
Alan Stern6ad07122006-06-01 13:59:16 -04001673 if (!cp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 usb_set_device_state(dev, USB_STATE_ADDRESS);
Alan Stern94fcda12006-11-20 11:38:46 -05001675 usb_autosuspend_device(dev);
Alan Stern6ad07122006-06-01 13:59:16 -04001676 goto free_interfaces;
1677 }
1678 usb_set_device_state(dev, USB_STATE_CONFIGURED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Alan Stern6ad07122006-06-01 13:59:16 -04001680 /* Initialize the new interface structures and the
1681 * hc/hcd/usbcore interface/endpoint state.
1682 */
1683 for (i = 0; i < nintf; ++i) {
1684 struct usb_interface_cache *intfc;
1685 struct usb_interface *intf;
1686 struct usb_host_interface *alt;
1687
1688 cp->interface[i] = intf = new_interfaces[i];
1689 intfc = cp->intf_cache[i];
1690 intf->altsetting = intfc->altsetting;
1691 intf->num_altsetting = intfc->num_altsetting;
Craig W. Nadler165fe972007-06-15 23:14:35 -04001692 intf->intf_assoc = find_iad(dev, cp, i);
Alan Stern6ad07122006-06-01 13:59:16 -04001693 kref_get(&intfc->ref);
1694
1695 alt = usb_altnum_to_altsetting(intf, 0);
1696
1697 /* No altsetting 0? We'll assume the first altsetting.
1698 * We could use a GetInterface call, but if a device is
1699 * so non-compliant that it doesn't have altsetting 0
1700 * then I wouldn't trust its reply anyway.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 */
Alan Stern6ad07122006-06-01 13:59:16 -04001702 if (!alt)
1703 alt = &intf->altsetting[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Alan Stern6ad07122006-06-01 13:59:16 -04001705 intf->cur_altsetting = alt;
Alan Stern2caf7fc2008-12-31 11:31:33 -05001706 usb_enable_interface(dev, intf, true);
Alan Stern6ad07122006-06-01 13:59:16 -04001707 intf->dev.parent = &dev->dev;
1708 intf->dev.driver = NULL;
1709 intf->dev.bus = &usb_bus_type;
Kay Sievers9f8b17e2007-03-13 15:59:31 +01001710 intf->dev.type = &usb_if_device_type;
Alan Stern2e5f10e2008-04-30 15:37:19 -04001711 intf->dev.groups = usb_interface_groups;
Alan Stern6ad07122006-06-01 13:59:16 -04001712 intf->dev.dma_mask = dev->dev.dma_mask;
Inaky Perez-Gonzalezdc023dc2008-11-13 10:31:35 -08001713 INIT_WORK(&intf->reset_ws, __usb_queue_reset_device);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001714 device_initialize(&intf->dev);
Alan Stern6ad07122006-06-01 13:59:16 -04001715 mark_quiesced(intf);
Kay Sievers0031a062008-05-02 06:02:41 +02001716 dev_set_name(&intf->dev, "%d-%s:%d.%d",
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001717 dev->bus->busnum, dev->devpath,
1718 configuration, alt->desc.bInterfaceNumber);
Alan Stern6ad07122006-06-01 13:59:16 -04001719 }
1720 kfree(new_interfaces);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Alan Stern1662e3a2009-03-18 14:28:53 -04001722 if (cp->string == NULL &&
1723 !(dev->quirks & USB_QUIRK_CONFIG_INTF_STRINGS))
Alan Stern6ad07122006-06-01 13:59:16 -04001724 cp->string = usb_cache_string(dev, cp->desc.iConfiguration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Alan Stern6ad07122006-06-01 13:59:16 -04001726 /* Now that all the interfaces are set up, register them
1727 * to trigger binding of drivers to interfaces. probe()
1728 * routines may install different altsettings and may
1729 * claim() any interfaces not yet bound. Many class drivers
1730 * need that: CDC, audio, video, etc.
1731 */
1732 for (i = 0; i < nintf; ++i) {
1733 struct usb_interface *intf = cp->interface[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001735 dev_dbg(&dev->dev,
Alan Stern6ad07122006-06-01 13:59:16 -04001736 "adding %s (config #%d, interface %d)\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001737 dev_name(&intf->dev), configuration,
Alan Stern6ad07122006-06-01 13:59:16 -04001738 intf->cur_altsetting->desc.bInterfaceNumber);
Greg Kroah-Hartman3e35bf32008-01-30 15:21:33 -08001739 ret = device_add(&intf->dev);
Alan Stern6ad07122006-06-01 13:59:16 -04001740 if (ret != 0) {
1741 dev_err(&dev->dev, "device_add(%s) --> %d\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001742 dev_name(&intf->dev), ret);
Alan Stern6ad07122006-06-01 13:59:16 -04001743 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 }
Alan Stern3b23dd62008-12-05 14:10:34 -05001745 create_intf_ep_devs(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 }
1747
Alan Stern94fcda12006-11-20 11:38:46 -05001748 usb_autosuspend_device(dev);
Alan Stern86d30742005-07-29 12:17:16 -07001749 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750}
1751
Alan Sterndf718962008-12-19 10:27:56 -05001752static LIST_HEAD(set_config_list);
1753static DEFINE_SPINLOCK(set_config_lock);
1754
Alan Stern088dc272006-08-21 12:08:19 -04001755struct set_config_request {
1756 struct usb_device *udev;
1757 int config;
1758 struct work_struct work;
Alan Sterndf718962008-12-19 10:27:56 -05001759 struct list_head node;
Alan Stern088dc272006-08-21 12:08:19 -04001760};
1761
1762/* Worker routine for usb_driver_set_configuration() */
David Howellsc4028952006-11-22 14:57:56 +00001763static void driver_set_config_work(struct work_struct *work)
Alan Stern088dc272006-08-21 12:08:19 -04001764{
David Howellsc4028952006-11-22 14:57:56 +00001765 struct set_config_request *req =
1766 container_of(work, struct set_config_request, work);
Alan Sterndf718962008-12-19 10:27:56 -05001767 struct usb_device *udev = req->udev;
Alan Stern088dc272006-08-21 12:08:19 -04001768
Alan Sterndf718962008-12-19 10:27:56 -05001769 usb_lock_device(udev);
1770 spin_lock(&set_config_lock);
1771 list_del(&req->node);
1772 spin_unlock(&set_config_lock);
1773
1774 if (req->config >= -1) /* Is req still valid? */
1775 usb_set_configuration(udev, req->config);
1776 usb_unlock_device(udev);
1777 usb_put_dev(udev);
Alan Stern088dc272006-08-21 12:08:19 -04001778 kfree(req);
1779}
1780
Alan Sterndf718962008-12-19 10:27:56 -05001781/* Cancel pending Set-Config requests for a device whose configuration
1782 * was just changed
1783 */
1784static void cancel_async_set_config(struct usb_device *udev)
1785{
1786 struct set_config_request *req;
1787
1788 spin_lock(&set_config_lock);
1789 list_for_each_entry(req, &set_config_list, node) {
1790 if (req->udev == udev)
1791 req->config = -999; /* Mark as cancelled */
1792 }
1793 spin_unlock(&set_config_lock);
1794}
1795
Alan Stern088dc272006-08-21 12:08:19 -04001796/**
1797 * usb_driver_set_configuration - Provide a way for drivers to change device configurations
1798 * @udev: the device whose configuration is being updated
1799 * @config: the configuration being chosen.
1800 * Context: In process context, must be able to sleep
1801 *
1802 * Device interface drivers are not allowed to change device configurations.
1803 * This is because changing configurations will destroy the interface the
1804 * driver is bound to and create new ones; it would be like a floppy-disk
1805 * driver telling the computer to replace the floppy-disk drive with a
1806 * tape drive!
1807 *
1808 * Still, in certain specialized circumstances the need may arise. This
1809 * routine gets around the normal restrictions by using a work thread to
1810 * submit the change-config request.
1811 *
1812 * Returns 0 if the request was succesfully queued, error code otherwise.
1813 * The caller has no way to know whether the queued request will eventually
1814 * succeed.
1815 */
1816int usb_driver_set_configuration(struct usb_device *udev, int config)
1817{
1818 struct set_config_request *req;
1819
1820 req = kmalloc(sizeof(*req), GFP_KERNEL);
1821 if (!req)
1822 return -ENOMEM;
1823 req->udev = udev;
1824 req->config = config;
David Howellsc4028952006-11-22 14:57:56 +00001825 INIT_WORK(&req->work, driver_set_config_work);
Alan Stern088dc272006-08-21 12:08:19 -04001826
Alan Sterndf718962008-12-19 10:27:56 -05001827 spin_lock(&set_config_lock);
1828 list_add(&req->node, &set_config_list);
1829 spin_unlock(&set_config_lock);
1830
Alan Stern088dc272006-08-21 12:08:19 -04001831 usb_get_dev(udev);
Alan Stern1737bf22006-12-15 16:04:52 -05001832 schedule_work(&req->work);
Alan Stern088dc272006-08-21 12:08:19 -04001833 return 0;
1834}
1835EXPORT_SYMBOL_GPL(usb_driver_set_configuration);