message.c 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833
  1. /*
  2. * message.c - synchronous message handling
  3. */
  4. #include <linux/pci.h> /* for scatterlist macros */
  5. #include <linux/usb.h>
  6. #include <linux/module.h>
  7. #include <linux/slab.h>
  8. #include <linux/init.h>
  9. #include <linux/mm.h>
  10. #include <linux/timer.h>
  11. #include <linux/ctype.h>
  12. #include <linux/device.h>
  13. #include <linux/scatterlist.h>
  14. #include <linux/usb/quirks.h>
  15. #include <asm/byteorder.h>
  16. #include "hcd.h" /* for usbcore internals */
  17. #include "usb.h"
  18. static void cancel_async_set_config(struct usb_device *udev);
  19. struct api_context {
  20. struct completion done;
  21. int status;
  22. };
  23. static void usb_api_blocking_completion(struct urb *urb)
  24. {
  25. struct api_context *ctx = urb->context;
  26. ctx->status = urb->status;
  27. complete(&ctx->done);
  28. }
  29. /*
  30. * Starts urb and waits for completion or timeout. Note that this call
  31. * is NOT interruptible. Many device driver i/o requests should be
  32. * interruptible and therefore these drivers should implement their
  33. * own interruptible routines.
  34. */
  35. static int usb_start_wait_urb(struct urb *urb, int timeout, int *actual_length)
  36. {
  37. struct api_context ctx;
  38. unsigned long expire;
  39. int retval;
  40. init_completion(&ctx.done);
  41. urb->context = &ctx;
  42. urb->actual_length = 0;
  43. retval = usb_submit_urb(urb, GFP_NOIO);
  44. if (unlikely(retval))
  45. goto out;
  46. expire = timeout ? msecs_to_jiffies(timeout) : MAX_SCHEDULE_TIMEOUT;
  47. if (!wait_for_completion_timeout(&ctx.done, expire)) {
  48. usb_kill_urb(urb);
  49. retval = (ctx.status == -ENOENT ? -ETIMEDOUT : ctx.status);
  50. dev_dbg(&urb->dev->dev,
  51. "%s timed out on ep%d%s len=%u/%u\n",
  52. current->comm,
  53. usb_endpoint_num(&urb->ep->desc),
  54. usb_urb_dir_in(urb) ? "in" : "out",
  55. urb->actual_length,
  56. urb->transfer_buffer_length);
  57. } else
  58. retval = ctx.status;
  59. out:
  60. if (actual_length)
  61. *actual_length = urb->actual_length;
  62. usb_free_urb(urb);
  63. return retval;
  64. }
  65. /*-------------------------------------------------------------------*/
  66. /* returns status (negative) or length (positive) */
  67. static int usb_internal_control_msg(struct usb_device *usb_dev,
  68. unsigned int pipe,
  69. struct usb_ctrlrequest *cmd,
  70. void *data, int len, int timeout)
  71. {
  72. struct urb *urb;
  73. int retv;
  74. int length;
  75. urb = usb_alloc_urb(0, GFP_NOIO);
  76. if (!urb)
  77. return -ENOMEM;
  78. usb_fill_control_urb(urb, usb_dev, pipe, (unsigned char *)cmd, data,
  79. len, usb_api_blocking_completion, NULL);
  80. retv = usb_start_wait_urb(urb, timeout, &length);
  81. if (retv < 0)
  82. return retv;
  83. else
  84. return length;
  85. }
  86. /**
  87. * usb_control_msg - Builds a control urb, sends it off and waits for completion
  88. * @dev: pointer to the usb device to send the message to
  89. * @pipe: endpoint "pipe" to send the message to
  90. * @request: USB message request value
  91. * @requesttype: USB message request type value
  92. * @value: USB message value
  93. * @index: USB message index value
  94. * @data: pointer to the data to send
  95. * @size: length in bytes of the data to send
  96. * @timeout: time in msecs to wait for the message to complete before timing
  97. * out (if 0 the wait is forever)
  98. *
  99. * Context: !in_interrupt ()
  100. *
  101. * This function sends a simple control message to a specified endpoint and
  102. * waits for the message to complete, or timeout.
  103. *
  104. * If successful, it returns the number of bytes transferred, otherwise a
  105. * negative error number.
  106. *
  107. * Don't use this function from within an interrupt context, like a bottom half
  108. * handler. If you need an asynchronous message, or need to send a message
  109. * from within interrupt context, use usb_submit_urb().
  110. * If a thread in your driver uses this call, make sure your disconnect()
  111. * method can wait for it to complete. Since you don't have a handle on the
  112. * URB used, you can't cancel the request.
  113. */
  114. int usb_control_msg(struct usb_device *dev, unsigned int pipe, __u8 request,
  115. __u8 requesttype, __u16 value, __u16 index, void *data,
  116. __u16 size, int timeout)
  117. {
  118. struct usb_ctrlrequest *dr;
  119. int ret;
  120. dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_NOIO);
  121. if (!dr)
  122. return -ENOMEM;
  123. dr->bRequestType = requesttype;
  124. dr->bRequest = request;
  125. dr->wValue = cpu_to_le16(value);
  126. dr->wIndex = cpu_to_le16(index);
  127. dr->wLength = cpu_to_le16(size);
  128. /* dbg("usb_control_msg"); */
  129. ret = usb_internal_control_msg(dev, pipe, dr, data, size, timeout);
  130. kfree(dr);
  131. return ret;
  132. }
  133. EXPORT_SYMBOL_GPL(usb_control_msg);
  134. /**
  135. * usb_interrupt_msg - Builds an interrupt urb, sends it off and waits for completion
  136. * @usb_dev: pointer to the usb device to send the message to
  137. * @pipe: endpoint "pipe" to send the message to
  138. * @data: pointer to the data to send
  139. * @len: length in bytes of the data to send
  140. * @actual_length: pointer to a location to put the actual length transferred
  141. * in bytes
  142. * @timeout: time in msecs to wait for the message to complete before
  143. * timing out (if 0 the wait is forever)
  144. *
  145. * Context: !in_interrupt ()
  146. *
  147. * This function sends a simple interrupt message to a specified endpoint and
  148. * waits for the message to complete, or timeout.
  149. *
  150. * If successful, it returns 0, otherwise a negative error number. The number
  151. * of actual bytes transferred will be stored in the actual_length paramater.
  152. *
  153. * Don't use this function from within an interrupt context, like a bottom half
  154. * handler. If you need an asynchronous message, or need to send a message
  155. * from within interrupt context, use usb_submit_urb() If a thread in your
  156. * driver uses this call, make sure your disconnect() method can wait for it to
  157. * complete. Since you don't have a handle on the URB used, you can't cancel
  158. * the request.
  159. */
  160. int usb_interrupt_msg(struct usb_device *usb_dev, unsigned int pipe,
  161. void *data, int len, int *actual_length, int timeout)
  162. {
  163. return usb_bulk_msg(usb_dev, pipe, data, len, actual_length, timeout);
  164. }
  165. EXPORT_SYMBOL_GPL(usb_interrupt_msg);
  166. /**
  167. * usb_bulk_msg - Builds a bulk urb, sends it off and waits for completion
  168. * @usb_dev: pointer to the usb device to send the message to
  169. * @pipe: endpoint "pipe" to send the message to
  170. * @data: pointer to the data to send
  171. * @len: length in bytes of the data to send
  172. * @actual_length: pointer to a location to put the actual length transferred
  173. * in bytes
  174. * @timeout: time in msecs to wait for the message to complete before
  175. * timing out (if 0 the wait is forever)
  176. *
  177. * Context: !in_interrupt ()
  178. *
  179. * This function sends a simple bulk message to a specified endpoint
  180. * and waits for the message to complete, or timeout.
  181. *
  182. * If successful, it returns 0, otherwise a negative error number. The number
  183. * of actual bytes transferred will be stored in the actual_length paramater.
  184. *
  185. * Don't use this function from within an interrupt context, like a bottom half
  186. * handler. If you need an asynchronous message, or need to send a message
  187. * from within interrupt context, use usb_submit_urb() If a thread in your
  188. * driver uses this call, make sure your disconnect() method can wait for it to
  189. * complete. Since you don't have a handle on the URB used, you can't cancel
  190. * the request.
  191. *
  192. * Because there is no usb_interrupt_msg() and no USBDEVFS_INTERRUPT ioctl,
  193. * users are forced to abuse this routine by using it to submit URBs for
  194. * interrupt endpoints. We will take the liberty of creating an interrupt URB
  195. * (with the default interval) if the target is an interrupt endpoint.
  196. */
  197. int usb_bulk_msg(struct usb_device *usb_dev, unsigned int pipe,
  198. void *data, int len, int *actual_length, int timeout)
  199. {
  200. struct urb *urb;
  201. struct usb_host_endpoint *ep;
  202. ep = (usb_pipein(pipe) ? usb_dev->ep_in : usb_dev->ep_out)
  203. [usb_pipeendpoint(pipe)];
  204. if (!ep || len < 0)
  205. return -EINVAL;
  206. urb = usb_alloc_urb(0, GFP_KERNEL);
  207. if (!urb)
  208. return -ENOMEM;
  209. if ((ep->desc.bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
  210. USB_ENDPOINT_XFER_INT) {
  211. pipe = (pipe & ~(3 << 30)) | (PIPE_INTERRUPT << 30);
  212. usb_fill_int_urb(urb, usb_dev, pipe, data, len,
  213. usb_api_blocking_completion, NULL,
  214. ep->desc.bInterval);
  215. } else
  216. usb_fill_bulk_urb(urb, usb_dev, pipe, data, len,
  217. usb_api_blocking_completion, NULL);
  218. return usb_start_wait_urb(urb, timeout, actual_length);
  219. }
  220. EXPORT_SYMBOL_GPL(usb_bulk_msg);
  221. /*-------------------------------------------------------------------*/
  222. static void sg_clean(struct usb_sg_request *io)
  223. {
  224. if (io->urbs) {
  225. while (io->entries--)
  226. usb_free_urb(io->urbs [io->entries]);
  227. kfree(io->urbs);
  228. io->urbs = NULL;
  229. }
  230. if (io->dev->dev.dma_mask != NULL)
  231. usb_buffer_unmap_sg(io->dev, usb_pipein(io->pipe),
  232. io->sg, io->nents);
  233. io->dev = NULL;
  234. }
  235. static void sg_complete(struct urb *urb)
  236. {
  237. struct usb_sg_request *io = urb->context;
  238. int status = urb->status;
  239. spin_lock(&io->lock);
  240. /* In 2.5 we require hcds' endpoint queues not to progress after fault
  241. * reports, until the completion callback (this!) returns. That lets
  242. * device driver code (like this routine) unlink queued urbs first,
  243. * if it needs to, since the HC won't work on them at all. So it's
  244. * not possible for page N+1 to overwrite page N, and so on.
  245. *
  246. * That's only for "hard" faults; "soft" faults (unlinks) sometimes
  247. * complete before the HCD can get requests away from hardware,
  248. * though never during cleanup after a hard fault.
  249. */
  250. if (io->status
  251. && (io->status != -ECONNRESET
  252. || status != -ECONNRESET)
  253. && urb->actual_length) {
  254. dev_err(io->dev->bus->controller,
  255. "dev %s ep%d%s scatterlist error %d/%d\n",
  256. io->dev->devpath,
  257. usb_endpoint_num(&urb->ep->desc),
  258. usb_urb_dir_in(urb) ? "in" : "out",
  259. status, io->status);
  260. /* BUG (); */
  261. }
  262. if (io->status == 0 && status && status != -ECONNRESET) {
  263. int i, found, retval;
  264. io->status = status;
  265. /* the previous urbs, and this one, completed already.
  266. * unlink pending urbs so they won't rx/tx bad data.
  267. * careful: unlink can sometimes be synchronous...
  268. */
  269. spin_unlock(&io->lock);
  270. for (i = 0, found = 0; i < io->entries; i++) {
  271. if (!io->urbs [i] || !io->urbs [i]->dev)
  272. continue;
  273. if (found) {
  274. retval = usb_unlink_urb(io->urbs [i]);
  275. if (retval != -EINPROGRESS &&
  276. retval != -ENODEV &&
  277. retval != -EBUSY)
  278. dev_err(&io->dev->dev,
  279. "%s, unlink --> %d\n",
  280. __func__, retval);
  281. } else if (urb == io->urbs [i])
  282. found = 1;
  283. }
  284. spin_lock(&io->lock);
  285. }
  286. urb->dev = NULL;
  287. /* on the last completion, signal usb_sg_wait() */
  288. io->bytes += urb->actual_length;
  289. io->count--;
  290. if (!io->count)
  291. complete(&io->complete);
  292. spin_unlock(&io->lock);
  293. }
  294. /**
  295. * usb_sg_init - initializes scatterlist-based bulk/interrupt I/O request
  296. * @io: request block being initialized. until usb_sg_wait() returns,
  297. * treat this as a pointer to an opaque block of memory,
  298. * @dev: the usb device that will send or receive the data
  299. * @pipe: endpoint "pipe" used to transfer the data
  300. * @period: polling rate for interrupt endpoints, in frames or
  301. * (for high speed endpoints) microframes; ignored for bulk
  302. * @sg: scatterlist entries
  303. * @nents: how many entries in the scatterlist
  304. * @length: how many bytes to send from the scatterlist, or zero to
  305. * send every byte identified in the list.
  306. * @mem_flags: SLAB_* flags affecting memory allocations in this call
  307. *
  308. * Returns zero for success, else a negative errno value. This initializes a
  309. * scatter/gather request, allocating resources such as I/O mappings and urb
  310. * memory (except maybe memory used by USB controller drivers).
  311. *
  312. * The request must be issued using usb_sg_wait(), which waits for the I/O to
  313. * complete (or to be canceled) and then cleans up all resources allocated by
  314. * usb_sg_init().
  315. *
  316. * The request may be canceled with usb_sg_cancel(), either before or after
  317. * usb_sg_wait() is called.
  318. */
  319. int usb_sg_init(struct usb_sg_request *io, struct usb_device *dev,
  320. unsigned pipe, unsigned period, struct scatterlist *sg,
  321. int nents, size_t length, gfp_t mem_flags)
  322. {
  323. int i;
  324. int urb_flags;
  325. int dma;
  326. if (!io || !dev || !sg
  327. || usb_pipecontrol(pipe)
  328. || usb_pipeisoc(pipe)
  329. || nents <= 0)
  330. return -EINVAL;
  331. spin_lock_init(&io->lock);
  332. io->dev = dev;
  333. io->pipe = pipe;
  334. io->sg = sg;
  335. io->nents = nents;
  336. /* not all host controllers use DMA (like the mainstream pci ones);
  337. * they can use PIO (sl811) or be software over another transport.
  338. */
  339. dma = (dev->dev.dma_mask != NULL);
  340. if (dma)
  341. io->entries = usb_buffer_map_sg(dev, usb_pipein(pipe),
  342. sg, nents);
  343. else
  344. io->entries = nents;
  345. /* initialize all the urbs we'll use */
  346. if (io->entries <= 0)
  347. return io->entries;
  348. io->urbs = kmalloc(io->entries * sizeof *io->urbs, mem_flags);
  349. if (!io->urbs)
  350. goto nomem;
  351. urb_flags = URB_NO_INTERRUPT;
  352. if (dma)
  353. urb_flags |= URB_NO_TRANSFER_DMA_MAP;
  354. if (usb_pipein(pipe))
  355. urb_flags |= URB_SHORT_NOT_OK;
  356. for_each_sg(sg, sg, io->entries, i) {
  357. unsigned len;
  358. io->urbs[i] = usb_alloc_urb(0, mem_flags);
  359. if (!io->urbs[i]) {
  360. io->entries = i;
  361. goto nomem;
  362. }
  363. io->urbs[i]->dev = NULL;
  364. io->urbs[i]->pipe = pipe;
  365. io->urbs[i]->interval = period;
  366. io->urbs[i]->transfer_flags = urb_flags;
  367. io->urbs[i]->complete = sg_complete;
  368. io->urbs[i]->context = io;
  369. /*
  370. * Some systems need to revert to PIO when DMA is temporarily
  371. * unavailable. For their sakes, both transfer_buffer and
  372. * transfer_dma are set when possible. However this can only
  373. * work on systems without:
  374. *
  375. * - HIGHMEM, since DMA buffers located in high memory are
  376. * not directly addressable by the CPU for PIO;
  377. *
  378. * - IOMMU, since dma_map_sg() is allowed to use an IOMMU to
  379. * make virtually discontiguous buffers be "dma-contiguous"
  380. * so that PIO and DMA need diferent numbers of URBs.
  381. *
  382. * So when HIGHMEM or IOMMU are in use, transfer_buffer is NULL
  383. * to prevent stale pointers and to help spot bugs.
  384. */
  385. if (dma) {
  386. io->urbs[i]->transfer_dma = sg_dma_address(sg);
  387. len = sg_dma_len(sg);
  388. #if defined(CONFIG_HIGHMEM) || defined(CONFIG_GART_IOMMU)
  389. io->urbs[i]->transfer_buffer = NULL;
  390. #else
  391. io->urbs[i]->transfer_buffer = sg_virt(sg);
  392. #endif
  393. } else {
  394. /* hc may use _only_ transfer_buffer */
  395. io->urbs[i]->transfer_buffer = sg_virt(sg);
  396. len = sg->length;
  397. }
  398. if (length) {
  399. len = min_t(unsigned, len, length);
  400. length -= len;
  401. if (length == 0)
  402. io->entries = i + 1;
  403. }
  404. io->urbs[i]->transfer_buffer_length = len;
  405. }
  406. io->urbs[--i]->transfer_flags &= ~URB_NO_INTERRUPT;
  407. /* transaction state */
  408. io->count = io->entries;
  409. io->status = 0;
  410. io->bytes = 0;
  411. init_completion(&io->complete);
  412. return 0;
  413. nomem:
  414. sg_clean(io);
  415. return -ENOMEM;
  416. }
  417. EXPORT_SYMBOL_GPL(usb_sg_init);
  418. /**
  419. * usb_sg_wait - synchronously execute scatter/gather request
  420. * @io: request block handle, as initialized with usb_sg_init().
  421. * some fields become accessible when this call returns.
  422. * Context: !in_interrupt ()
  423. *
  424. * This function blocks until the specified I/O operation completes. It
  425. * leverages the grouping of the related I/O requests to get good transfer
  426. * rates, by queueing the requests. At higher speeds, such queuing can
  427. * significantly improve USB throughput.
  428. *
  429. * There are three kinds of completion for this function.
  430. * (1) success, where io->status is zero. The number of io->bytes
  431. * transferred is as requested.
  432. * (2) error, where io->status is a negative errno value. The number
  433. * of io->bytes transferred before the error is usually less
  434. * than requested, and can be nonzero.
  435. * (3) cancellation, a type of error with status -ECONNRESET that
  436. * is initiated by usb_sg_cancel().
  437. *
  438. * When this function returns, all memory allocated through usb_sg_init() or
  439. * this call will have been freed. The request block parameter may still be
  440. * passed to usb_sg_cancel(), or it may be freed. It could also be
  441. * reinitialized and then reused.
  442. *
  443. * Data Transfer Rates:
  444. *
  445. * Bulk transfers are valid for full or high speed endpoints.
  446. * The best full speed data rate is 19 packets of 64 bytes each
  447. * per frame, or 1216 bytes per millisecond.
  448. * The best high speed data rate is 13 packets of 512 bytes each
  449. * per microframe, or 52 KBytes per millisecond.
  450. *
  451. * The reason to use interrupt transfers through this API would most likely
  452. * be to reserve high speed bandwidth, where up to 24 KBytes per millisecond
  453. * could be transferred. That capability is less useful for low or full
  454. * speed interrupt endpoints, which allow at most one packet per millisecond,
  455. * of at most 8 or 64 bytes (respectively).
  456. */
  457. void usb_sg_wait(struct usb_sg_request *io)
  458. {
  459. int i;
  460. int entries = io->entries;
  461. /* queue the urbs. */
  462. spin_lock_irq(&io->lock);
  463. i = 0;
  464. while (i < entries && !io->status) {
  465. int retval;
  466. io->urbs[i]->dev = io->dev;
  467. retval = usb_submit_urb(io->urbs [i], GFP_ATOMIC);
  468. /* after we submit, let completions or cancelations fire;
  469. * we handshake using io->status.
  470. */
  471. spin_unlock_irq(&io->lock);
  472. switch (retval) {
  473. /* maybe we retrying will recover */
  474. case -ENXIO: /* hc didn't queue this one */
  475. case -EAGAIN:
  476. case -ENOMEM:
  477. io->urbs[i]->dev = NULL;
  478. retval = 0;
  479. yield();
  480. break;
  481. /* no error? continue immediately.
  482. *
  483. * NOTE: to work better with UHCI (4K I/O buffer may
  484. * need 3K of TDs) it may be good to limit how many
  485. * URBs are queued at once; N milliseconds?
  486. */
  487. case 0:
  488. ++i;
  489. cpu_relax();
  490. break;
  491. /* fail any uncompleted urbs */
  492. default:
  493. io->urbs[i]->dev = NULL;
  494. io->urbs[i]->status = retval;
  495. dev_dbg(&io->dev->dev, "%s, submit --> %d\n",
  496. __func__, retval);
  497. usb_sg_cancel(io);
  498. }
  499. spin_lock_irq(&io->lock);
  500. if (retval && (io->status == 0 || io->status == -ECONNRESET))
  501. io->status = retval;
  502. }
  503. io->count -= entries - i;
  504. if (io->count == 0)
  505. complete(&io->complete);
  506. spin_unlock_irq(&io->lock);
  507. /* OK, yes, this could be packaged as non-blocking.
  508. * So could the submit loop above ... but it's easier to
  509. * solve neither problem than to solve both!
  510. */
  511. wait_for_completion(&io->complete);
  512. sg_clean(io);
  513. }
  514. EXPORT_SYMBOL_GPL(usb_sg_wait);
  515. /**
  516. * usb_sg_cancel - stop scatter/gather i/o issued by usb_sg_wait()
  517. * @io: request block, initialized with usb_sg_init()
  518. *
  519. * This stops a request after it has been started by usb_sg_wait().
  520. * It can also prevents one initialized by usb_sg_init() from starting,
  521. * so that call just frees resources allocated to the request.
  522. */
  523. void usb_sg_cancel(struct usb_sg_request *io)
  524. {
  525. unsigned long flags;
  526. spin_lock_irqsave(&io->lock, flags);
  527. /* shut everything down, if it didn't already */
  528. if (!io->status) {
  529. int i;
  530. io->status = -ECONNRESET;
  531. spin_unlock(&io->lock);
  532. for (i = 0; i < io->entries; i++) {
  533. int retval;
  534. if (!io->urbs [i]->dev)
  535. continue;
  536. retval = usb_unlink_urb(io->urbs [i]);
  537. if (retval != -EINPROGRESS && retval != -EBUSY)
  538. dev_warn(&io->dev->dev, "%s, unlink --> %d\n",
  539. __func__, retval);
  540. }
  541. spin_lock(&io->lock);
  542. }
  543. spin_unlock_irqrestore(&io->lock, flags);
  544. }
  545. EXPORT_SYMBOL_GPL(usb_sg_cancel);
  546. /*-------------------------------------------------------------------*/
  547. /**
  548. * usb_get_descriptor - issues a generic GET_DESCRIPTOR request
  549. * @dev: the device whose descriptor is being retrieved
  550. * @type: the descriptor type (USB_DT_*)
  551. * @index: the number of the descriptor
  552. * @buf: where to put the descriptor
  553. * @size: how big is "buf"?
  554. * Context: !in_interrupt ()
  555. *
  556. * Gets a USB descriptor. Convenience functions exist to simplify
  557. * getting some types of descriptors. Use
  558. * usb_get_string() or usb_string() for USB_DT_STRING.
  559. * Device (USB_DT_DEVICE) and configuration descriptors (USB_DT_CONFIG)
  560. * are part of the device structure.
  561. * In addition to a number of USB-standard descriptors, some
  562. * devices also use class-specific or vendor-specific descriptors.
  563. *
  564. * This call is synchronous, and may not be used in an interrupt context.
  565. *
  566. * Returns the number of bytes received on success, or else the status code
  567. * returned by the underlying usb_control_msg() call.
  568. */
  569. int usb_get_descriptor(struct usb_device *dev, unsigned char type,
  570. unsigned char index, void *buf, int size)
  571. {
  572. int i;
  573. int result;
  574. memset(buf, 0, size); /* Make sure we parse really received data */
  575. for (i = 0; i < 3; ++i) {
  576. /* retry on length 0 or error; some devices are flakey */
  577. result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
  578. USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
  579. (type << 8) + index, 0, buf, size,
  580. USB_CTRL_GET_TIMEOUT);
  581. if (result <= 0 && result != -ETIMEDOUT)
  582. continue;
  583. if (result > 1 && ((u8 *)buf)[1] != type) {
  584. result = -ENODATA;
  585. continue;
  586. }
  587. break;
  588. }
  589. return result;
  590. }
  591. EXPORT_SYMBOL_GPL(usb_get_descriptor);
  592. /**
  593. * usb_get_string - gets a string descriptor
  594. * @dev: the device whose string descriptor is being retrieved
  595. * @langid: code for language chosen (from string descriptor zero)
  596. * @index: the number of the descriptor
  597. * @buf: where to put the string
  598. * @size: how big is "buf"?
  599. * Context: !in_interrupt ()
  600. *
  601. * Retrieves a string, encoded using UTF-16LE (Unicode, 16 bits per character,
  602. * in little-endian byte order).
  603. * The usb_string() function will often be a convenient way to turn
  604. * these strings into kernel-printable form.
  605. *
  606. * Strings may be referenced in device, configuration, interface, or other
  607. * descriptors, and could also be used in vendor-specific ways.
  608. *
  609. * This call is synchronous, and may not be used in an interrupt context.
  610. *
  611. * Returns the number of bytes received on success, or else the status code
  612. * returned by the underlying usb_control_msg() call.
  613. */
  614. static int usb_get_string(struct usb_device *dev, unsigned short langid,
  615. unsigned char index, void *buf, int size)
  616. {
  617. int i;
  618. int result;
  619. for (i = 0; i < 3; ++i) {
  620. /* retry on length 0 or stall; some devices are flakey */
  621. result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
  622. USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
  623. (USB_DT_STRING << 8) + index, langid, buf, size,
  624. USB_CTRL_GET_TIMEOUT);
  625. if (result == 0 || result == -EPIPE)
  626. continue;
  627. if (result > 1 && ((u8 *) buf)[1] != USB_DT_STRING) {
  628. result = -ENODATA;
  629. continue;
  630. }
  631. break;
  632. }
  633. return result;
  634. }
  635. static void usb_try_string_workarounds(unsigned char *buf, int *length)
  636. {
  637. int newlength, oldlength = *length;
  638. for (newlength = 2; newlength + 1 < oldlength; newlength += 2)
  639. if (!isprint(buf[newlength]) || buf[newlength + 1])
  640. break;
  641. if (newlength > 2) {
  642. buf[0] = newlength;
  643. *length = newlength;
  644. }
  645. }
  646. static int usb_string_sub(struct usb_device *dev, unsigned int langid,
  647. unsigned int index, unsigned char *buf)
  648. {
  649. int rc;
  650. /* Try to read the string descriptor by asking for the maximum
  651. * possible number of bytes */
  652. if (dev->quirks & USB_QUIRK_STRING_FETCH_255)
  653. rc = -EIO;
  654. else
  655. rc = usb_get_string(dev, langid, index, buf, 255);
  656. /* If that failed try to read the descriptor length, then
  657. * ask for just that many bytes */
  658. if (rc < 2) {
  659. rc = usb_get_string(dev, langid, index, buf, 2);
  660. if (rc == 2)
  661. rc = usb_get_string(dev, langid, index, buf, buf[0]);
  662. }
  663. if (rc >= 2) {
  664. if (!buf[0] && !buf[1])
  665. usb_try_string_workarounds(buf, &rc);
  666. /* There might be extra junk at the end of the descriptor */
  667. if (buf[0] < rc)
  668. rc = buf[0];
  669. rc = rc - (rc & 1); /* force a multiple of two */
  670. }
  671. if (rc < 2)
  672. rc = (rc < 0 ? rc : -EINVAL);
  673. return rc;
  674. }
  675. /**
  676. * usb_string - returns ISO 8859-1 version of a string descriptor
  677. * @dev: the device whose string descriptor is being retrieved
  678. * @index: the number of the descriptor
  679. * @buf: where to put the string
  680. * @size: how big is "buf"?
  681. * Context: !in_interrupt ()
  682. *
  683. * This converts the UTF-16LE encoded strings returned by devices, from
  684. * usb_get_string_descriptor(), to null-terminated ISO-8859-1 encoded ones
  685. * that are more usable in most kernel contexts. Note that all characters
  686. * in the chosen descriptor that can't be encoded using ISO-8859-1
  687. * are converted to the question mark ("?") character, and this function
  688. * chooses strings in the first language supported by the device.
  689. *
  690. * The ASCII (or, redundantly, "US-ASCII") character set is the seven-bit
  691. * subset of ISO 8859-1. ISO-8859-1 is the eight-bit subset of Unicode,
  692. * and is appropriate for use many uses of English and several other
  693. * Western European languages. (But it doesn't include the "Euro" symbol.)
  694. *
  695. * This call is synchronous, and may not be used in an interrupt context.
  696. *
  697. * Returns length of the string (>= 0) or usb_control_msg status (< 0).
  698. */
  699. int usb_string(struct usb_device *dev, int index, char *buf, size_t size)
  700. {
  701. unsigned char *tbuf;
  702. int err;
  703. unsigned int u, idx;
  704. if (dev->state == USB_STATE_SUSPENDED)
  705. return -EHOSTUNREACH;
  706. if (size <= 0 || !buf || !index)
  707. return -EINVAL;
  708. buf[0] = 0;
  709. tbuf = kmalloc(256, GFP_NOIO);
  710. if (!tbuf)
  711. return -ENOMEM;
  712. /* get langid for strings if it's not yet known */
  713. if (!dev->have_langid) {
  714. err = usb_string_sub(dev, 0, 0, tbuf);
  715. if (err < 0) {
  716. dev_err(&dev->dev,
  717. "string descriptor 0 read error: %d\n",
  718. err);
  719. } else if (err < 4) {
  720. dev_err(&dev->dev, "string descriptor 0 too short\n");
  721. } else {
  722. dev->string_langid = tbuf[2] | (tbuf[3] << 8);
  723. /* always use the first langid listed */
  724. dev_dbg(&dev->dev, "default language 0x%04x\n",
  725. dev->string_langid);
  726. }
  727. dev->have_langid = 1;
  728. }
  729. err = usb_string_sub(dev, dev->string_langid, index, tbuf);
  730. if (err < 0)
  731. goto errout;
  732. size--; /* leave room for trailing NULL char in output buffer */
  733. for (idx = 0, u = 2; u < err; u += 2) {
  734. if (idx >= size)
  735. break;
  736. if (tbuf[u+1]) /* high byte */
  737. buf[idx++] = '?'; /* non ISO-8859-1 character */
  738. else
  739. buf[idx++] = tbuf[u];
  740. }
  741. buf[idx] = 0;
  742. err = idx;
  743. if (tbuf[1] != USB_DT_STRING)
  744. dev_dbg(&dev->dev,
  745. "wrong descriptor type %02x for string %d (\"%s\")\n",
  746. tbuf[1], index, buf);
  747. errout:
  748. kfree(tbuf);
  749. return err;
  750. }
  751. EXPORT_SYMBOL_GPL(usb_string);
  752. /**
  753. * usb_cache_string - read a string descriptor and cache it for later use
  754. * @udev: the device whose string descriptor is being read
  755. * @index: the descriptor index
  756. *
  757. * Returns a pointer to a kmalloc'ed buffer containing the descriptor string,
  758. * or NULL if the index is 0 or the string could not be read.
  759. */
  760. char *usb_cache_string(struct usb_device *udev, int index)
  761. {
  762. char *buf;
  763. char *smallbuf = NULL;
  764. int len;
  765. if (index <= 0)
  766. return NULL;
  767. buf = kmalloc(256, GFP_KERNEL);
  768. if (buf) {
  769. len = usb_string(udev, index, buf, 256);
  770. if (len > 0) {
  771. smallbuf = kmalloc(++len, GFP_KERNEL);
  772. if (!smallbuf)
  773. return buf;
  774. memcpy(smallbuf, buf, len);
  775. }
  776. kfree(buf);
  777. }
  778. return smallbuf;
  779. }
  780. /*
  781. * usb_get_device_descriptor - (re)reads the device descriptor (usbcore)
  782. * @dev: the device whose device descriptor is being updated
  783. * @size: how much of the descriptor to read
  784. * Context: !in_interrupt ()
  785. *
  786. * Updates the copy of the device descriptor stored in the device structure,
  787. * which dedicates space for this purpose.
  788. *
  789. * Not exported, only for use by the core. If drivers really want to read
  790. * the device descriptor directly, they can call usb_get_descriptor() with
  791. * type = USB_DT_DEVICE and index = 0.
  792. *
  793. * This call is synchronous, and may not be used in an interrupt context.
  794. *
  795. * Returns the number of bytes received on success, or else the status code
  796. * returned by the underlying usb_control_msg() call.
  797. */
  798. int usb_get_device_descriptor(struct usb_device *dev, unsigned int size)
  799. {
  800. struct usb_device_descriptor *desc;
  801. int ret;
  802. if (size > sizeof(*desc))
  803. return -EINVAL;
  804. desc = kmalloc(sizeof(*desc), GFP_NOIO);
  805. if (!desc)
  806. return -ENOMEM;
  807. ret = usb_get_descriptor(dev, USB_DT_DEVICE, 0, desc, size);
  808. if (ret >= 0)
  809. memcpy(&dev->descriptor, desc, size);
  810. kfree(desc);
  811. return ret;
  812. }
  813. /**
  814. * usb_get_status - issues a GET_STATUS call
  815. * @dev: the device whose status is being checked
  816. * @type: USB_RECIP_*; for device, interface, or endpoint
  817. * @target: zero (for device), else interface or endpoint number
  818. * @data: pointer to two bytes of bitmap data
  819. * Context: !in_interrupt ()
  820. *
  821. * Returns device, interface, or endpoint status. Normally only of
  822. * interest to see if the device is self powered, or has enabled the
  823. * remote wakeup facility; or whether a bulk or interrupt endpoint
  824. * is halted ("stalled").
  825. *
  826. * Bits in these status bitmaps are set using the SET_FEATURE request,
  827. * and cleared using the CLEAR_FEATURE request. The usb_clear_halt()
  828. * function should be used to clear halt ("stall") status.
  829. *
  830. * This call is synchronous, and may not be used in an interrupt context.
  831. *
  832. * Returns the number of bytes received on success, or else the status code
  833. * returned by the underlying usb_control_msg() call.
  834. */
  835. int usb_get_status(struct usb_device *dev, int type, int target, void *data)
  836. {
  837. int ret;
  838. u16 *status = kmalloc(sizeof(*status), GFP_KERNEL);
  839. if (!status)
  840. return -ENOMEM;
  841. ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
  842. USB_REQ_GET_STATUS, USB_DIR_IN | type, 0, target, status,
  843. sizeof(*status), USB_CTRL_GET_TIMEOUT);
  844. *(u16 *)data = *status;
  845. kfree(status);
  846. return ret;
  847. }
  848. EXPORT_SYMBOL_GPL(usb_get_status);
  849. /**
  850. * usb_clear_halt - tells device to clear endpoint halt/stall condition
  851. * @dev: device whose endpoint is halted
  852. * @pipe: endpoint "pipe" being cleared
  853. * Context: !in_interrupt ()
  854. *
  855. * This is used to clear halt conditions for bulk and interrupt endpoints,
  856. * as reported by URB completion status. Endpoints that are halted are
  857. * sometimes referred to as being "stalled". Such endpoints are unable
  858. * to transmit or receive data until the halt status is cleared. Any URBs
  859. * queued for such an endpoint should normally be unlinked by the driver
  860. * before clearing the halt condition, as described in sections 5.7.5
  861. * and 5.8.5 of the USB 2.0 spec.
  862. *
  863. * Note that control and isochronous endpoints don't halt, although control
  864. * endpoints report "protocol stall" (for unsupported requests) using the
  865. * same status code used to report a true stall.
  866. *
  867. * This call is synchronous, and may not be used in an interrupt context.
  868. *
  869. * Returns zero on success, or else the status code returned by the
  870. * underlying usb_control_msg() call.
  871. */
  872. int usb_clear_halt(struct usb_device *dev, int pipe)
  873. {
  874. int result;
  875. int endp = usb_pipeendpoint(pipe);
  876. if (usb_pipein(pipe))
  877. endp |= USB_DIR_IN;
  878. /* we don't care if it wasn't halted first. in fact some devices
  879. * (like some ibmcam model 1 units) seem to expect hosts to make
  880. * this request for iso endpoints, which can't halt!
  881. */
  882. result = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
  883. USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT,
  884. USB_ENDPOINT_HALT, endp, NULL, 0,
  885. USB_CTRL_SET_TIMEOUT);
  886. /* don't un-halt or force to DATA0 except on success */
  887. if (result < 0)
  888. return result;
  889. /* NOTE: seems like Microsoft and Apple don't bother verifying
  890. * the clear "took", so some devices could lock up if you check...
  891. * such as the Hagiwara FlashGate DUAL. So we won't bother.
  892. *
  893. * NOTE: make sure the logic here doesn't diverge much from
  894. * the copy in usb-storage, for as long as we need two copies.
  895. */
  896. /* toggle was reset by the clear */
  897. usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), 0);
  898. return 0;
  899. }
  900. EXPORT_SYMBOL_GPL(usb_clear_halt);
  901. static int create_intf_ep_devs(struct usb_interface *intf)
  902. {
  903. struct usb_device *udev = interface_to_usbdev(intf);
  904. struct usb_host_interface *alt = intf->cur_altsetting;
  905. int i;
  906. if (intf->ep_devs_created || intf->unregistering)
  907. return 0;
  908. for (i = 0; i < alt->desc.bNumEndpoints; ++i)
  909. (void) usb_create_ep_devs(&intf->dev, &alt->endpoint[i], udev);
  910. intf->ep_devs_created = 1;
  911. return 0;
  912. }
  913. static void remove_intf_ep_devs(struct usb_interface *intf)
  914. {
  915. struct usb_host_interface *alt = intf->cur_altsetting;
  916. int i;
  917. if (!intf->ep_devs_created)
  918. return;
  919. for (i = 0; i < alt->desc.bNumEndpoints; ++i)
  920. usb_remove_ep_devs(&alt->endpoint[i]);
  921. intf->ep_devs_created = 0;
  922. }
  923. /**
  924. * usb_disable_endpoint -- Disable an endpoint by address
  925. * @dev: the device whose endpoint is being disabled
  926. * @epaddr: the endpoint's address. Endpoint number for output,
  927. * endpoint number + USB_DIR_IN for input
  928. * @reset_hardware: flag to erase any endpoint state stored in the
  929. * controller hardware
  930. *
  931. * Disables the endpoint for URB submission and nukes all pending URBs.
  932. * If @reset_hardware is set then also deallocates hcd/hardware state
  933. * for the endpoint.
  934. */
  935. void usb_disable_endpoint(struct usb_device *dev, unsigned int epaddr,
  936. bool reset_hardware)
  937. {
  938. unsigned int epnum = epaddr & USB_ENDPOINT_NUMBER_MASK;
  939. struct usb_host_endpoint *ep;
  940. if (!dev)
  941. return;
  942. if (usb_endpoint_out(epaddr)) {
  943. ep = dev->ep_out[epnum];
  944. if (reset_hardware)
  945. dev->ep_out[epnum] = NULL;
  946. } else {
  947. ep = dev->ep_in[epnum];
  948. if (reset_hardware)
  949. dev->ep_in[epnum] = NULL;
  950. }
  951. if (ep) {
  952. ep->enabled = 0;
  953. usb_hcd_flush_endpoint(dev, ep);
  954. if (reset_hardware)
  955. usb_hcd_disable_endpoint(dev, ep);
  956. }
  957. }
  958. /**
  959. * usb_disable_interface -- Disable all endpoints for an interface
  960. * @dev: the device whose interface is being disabled
  961. * @intf: pointer to the interface descriptor
  962. * @reset_hardware: flag to erase any endpoint state stored in the
  963. * controller hardware
  964. *
  965. * Disables all the endpoints for the interface's current altsetting.
  966. */
  967. void usb_disable_interface(struct usb_device *dev, struct usb_interface *intf,
  968. bool reset_hardware)
  969. {
  970. struct usb_host_interface *alt = intf->cur_altsetting;
  971. int i;
  972. for (i = 0; i < alt->desc.bNumEndpoints; ++i) {
  973. usb_disable_endpoint(dev,
  974. alt->endpoint[i].desc.bEndpointAddress,
  975. reset_hardware);
  976. }
  977. }
  978. /**
  979. * usb_disable_device - Disable all the endpoints for a USB device
  980. * @dev: the device whose endpoints are being disabled
  981. * @skip_ep0: 0 to disable endpoint 0, 1 to skip it.
  982. *
  983. * Disables all the device's endpoints, potentially including endpoint 0.
  984. * Deallocates hcd/hardware state for the endpoints (nuking all or most
  985. * pending urbs) and usbcore state for the interfaces, so that usbcore
  986. * must usb_set_configuration() before any interfaces could be used.
  987. */
  988. void usb_disable_device(struct usb_device *dev, int skip_ep0)
  989. {
  990. int i;
  991. dev_dbg(&dev->dev, "%s nuking %s URBs\n", __func__,
  992. skip_ep0 ? "non-ep0" : "all");
  993. for (i = skip_ep0; i < 16; ++i) {
  994. usb_disable_endpoint(dev, i, true);
  995. usb_disable_endpoint(dev, i + USB_DIR_IN, true);
  996. }
  997. dev->toggle[0] = dev->toggle[1] = 0;
  998. /* getting rid of interfaces will disconnect
  999. * any drivers bound to them (a key side effect)
  1000. */
  1001. if (dev->actconfig) {
  1002. for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
  1003. struct usb_interface *interface;
  1004. /* remove this interface if it has been registered */
  1005. interface = dev->actconfig->interface[i];
  1006. if (!device_is_registered(&interface->dev))
  1007. continue;
  1008. dev_dbg(&dev->dev, "unregistering interface %s\n",
  1009. dev_name(&interface->dev));
  1010. interface->unregistering = 1;
  1011. remove_intf_ep_devs(interface);
  1012. device_del(&interface->dev);
  1013. }
  1014. /* Now that the interfaces are unbound, nobody should
  1015. * try to access them.
  1016. */
  1017. for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
  1018. put_device(&dev->actconfig->interface[i]->dev);
  1019. dev->actconfig->interface[i] = NULL;
  1020. }
  1021. dev->actconfig = NULL;
  1022. if (dev->state == USB_STATE_CONFIGURED)
  1023. usb_set_device_state(dev, USB_STATE_ADDRESS);
  1024. }
  1025. }
  1026. /**
  1027. * usb_enable_endpoint - Enable an endpoint for USB communications
  1028. * @dev: the device whose interface is being enabled
  1029. * @ep: the endpoint
  1030. * @reset_toggle: flag to set the endpoint's toggle back to 0
  1031. *
  1032. * Resets the endpoint toggle if asked, and sets dev->ep_{in,out} pointers.
  1033. * For control endpoints, both the input and output sides are handled.
  1034. */
  1035. void usb_enable_endpoint(struct usb_device *dev, struct usb_host_endpoint *ep,
  1036. bool reset_toggle)
  1037. {
  1038. int epnum = usb_endpoint_num(&ep->desc);
  1039. int is_out = usb_endpoint_dir_out(&ep->desc);
  1040. int is_control = usb_endpoint_xfer_control(&ep->desc);
  1041. if (is_out || is_control) {
  1042. if (reset_toggle)
  1043. usb_settoggle(dev, epnum, 1, 0);
  1044. dev->ep_out[epnum] = ep;
  1045. }
  1046. if (!is_out || is_control) {
  1047. if (reset_toggle)
  1048. usb_settoggle(dev, epnum, 0, 0);
  1049. dev->ep_in[epnum] = ep;
  1050. }
  1051. ep->enabled = 1;
  1052. }
  1053. /**
  1054. * usb_enable_interface - Enable all the endpoints for an interface
  1055. * @dev: the device whose interface is being enabled
  1056. * @intf: pointer to the interface descriptor
  1057. * @reset_toggles: flag to set the endpoints' toggles back to 0
  1058. *
  1059. * Enables all the endpoints for the interface's current altsetting.
  1060. */
  1061. void usb_enable_interface(struct usb_device *dev,
  1062. struct usb_interface *intf, bool reset_toggles)
  1063. {
  1064. struct usb_host_interface *alt = intf->cur_altsetting;
  1065. int i;
  1066. for (i = 0; i < alt->desc.bNumEndpoints; ++i)
  1067. usb_enable_endpoint(dev, &alt->endpoint[i], reset_toggles);
  1068. }
  1069. /**
  1070. * usb_set_interface - Makes a particular alternate setting be current
  1071. * @dev: the device whose interface is being updated
  1072. * @interface: the interface being updated
  1073. * @alternate: the setting being chosen.
  1074. * Context: !in_interrupt ()
  1075. *
  1076. * This is used to enable data transfers on interfaces that may not
  1077. * be enabled by default. Not all devices support such configurability.
  1078. * Only the driver bound to an interface may change its setting.
  1079. *
  1080. * Within any given configuration, each interface may have several
  1081. * alternative settings. These are often used to control levels of
  1082. * bandwidth consumption. For example, the default setting for a high
  1083. * speed interrupt endpoint may not send more than 64 bytes per microframe,
  1084. * while interrupt transfers of up to 3KBytes per microframe are legal.
  1085. * Also, isochronous endpoints may never be part of an
  1086. * interface's default setting. To access such bandwidth, alternate
  1087. * interface settings must be made current.
  1088. *
  1089. * Note that in the Linux USB subsystem, bandwidth associated with
  1090. * an endpoint in a given alternate setting is not reserved until an URB
  1091. * is submitted that needs that bandwidth. Some other operating systems
  1092. * allocate bandwidth early, when a configuration is chosen.
  1093. *
  1094. * This call is synchronous, and may not be used in an interrupt context.
  1095. * Also, drivers must not change altsettings while urbs are scheduled for
  1096. * endpoints in that interface; all such urbs must first be completed
  1097. * (perhaps forced by unlinking).
  1098. *
  1099. * Returns zero on success, or else the status code returned by the
  1100. * underlying usb_control_msg() call.
  1101. */
  1102. int usb_set_interface(struct usb_device *dev, int interface, int alternate)
  1103. {
  1104. struct usb_interface *iface;
  1105. struct usb_host_interface *alt;
  1106. int ret;
  1107. int manual = 0;
  1108. unsigned int epaddr;
  1109. unsigned int pipe;
  1110. if (dev->state == USB_STATE_SUSPENDED)
  1111. return -EHOSTUNREACH;
  1112. iface = usb_ifnum_to_if(dev, interface);
  1113. if (!iface) {
  1114. dev_dbg(&dev->dev, "selecting invalid interface %d\n",
  1115. interface);
  1116. return -EINVAL;
  1117. }
  1118. alt = usb_altnum_to_altsetting(iface, alternate);
  1119. if (!alt) {
  1120. dev_warn(&dev->dev, "selecting invalid altsetting %d",
  1121. alternate);
  1122. return -EINVAL;
  1123. }
  1124. if (dev->quirks & USB_QUIRK_NO_SET_INTF)
  1125. ret = -EPIPE;
  1126. else
  1127. ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
  1128. USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE,
  1129. alternate, interface, NULL, 0, 5000);
  1130. /* 9.4.10 says devices don't need this and are free to STALL the
  1131. * request if the interface only has one alternate setting.
  1132. */
  1133. if (ret == -EPIPE && iface->num_altsetting == 1) {
  1134. dev_dbg(&dev->dev,
  1135. "manual set_interface for iface %d, alt %d\n",
  1136. interface, alternate);
  1137. manual = 1;
  1138. } else if (ret < 0)
  1139. return ret;
  1140. /* FIXME drivers shouldn't need to replicate/bugfix the logic here
  1141. * when they implement async or easily-killable versions of this or
  1142. * other "should-be-internal" functions (like clear_halt).
  1143. * should hcd+usbcore postprocess control requests?
  1144. */
  1145. /* prevent submissions using previous endpoint settings */
  1146. if (iface->cur_altsetting != alt) {
  1147. remove_intf_ep_devs(iface);
  1148. usb_remove_sysfs_intf_files(iface);
  1149. }
  1150. usb_disable_interface(dev, iface, true);
  1151. iface->cur_altsetting = alt;
  1152. /* If the interface only has one altsetting and the device didn't
  1153. * accept the request, we attempt to carry out the equivalent action
  1154. * by manually clearing the HALT feature for each endpoint in the
  1155. * new altsetting.
  1156. */
  1157. if (manual) {
  1158. int i;
  1159. for (i = 0; i < alt->desc.bNumEndpoints; i++) {
  1160. epaddr = alt->endpoint[i].desc.bEndpointAddress;
  1161. pipe = __create_pipe(dev,
  1162. USB_ENDPOINT_NUMBER_MASK & epaddr) |
  1163. (usb_endpoint_out(epaddr) ?
  1164. USB_DIR_OUT : USB_DIR_IN);
  1165. usb_clear_halt(dev, pipe);
  1166. }
  1167. }
  1168. /* 9.1.1.5: reset toggles for all endpoints in the new altsetting
  1169. *
  1170. * Note:
  1171. * Despite EP0 is always present in all interfaces/AS, the list of
  1172. * endpoints from the descriptor does not contain EP0. Due to its
  1173. * omnipresence one might expect EP0 being considered "affected" by
  1174. * any SetInterface request and hence assume toggles need to be reset.
  1175. * However, EP0 toggles are re-synced for every individual transfer
  1176. * during the SETUP stage - hence EP0 toggles are "don't care" here.
  1177. * (Likewise, EP0 never "halts" on well designed devices.)
  1178. */
  1179. usb_enable_interface(dev, iface, true);
  1180. if (device_is_registered(&iface->dev)) {
  1181. usb_create_sysfs_intf_files(iface);
  1182. create_intf_ep_devs(iface);
  1183. }
  1184. return 0;
  1185. }
  1186. EXPORT_SYMBOL_GPL(usb_set_interface);
  1187. /**
  1188. * usb_reset_configuration - lightweight device reset
  1189. * @dev: the device whose configuration is being reset
  1190. *
  1191. * This issues a standard SET_CONFIGURATION request to the device using
  1192. * the current configuration. The effect is to reset most USB-related
  1193. * state in the device, including interface altsettings (reset to zero),
  1194. * endpoint halts (cleared), and data toggle (only for bulk and interrupt
  1195. * endpoints). Other usbcore state is unchanged, including bindings of
  1196. * usb device drivers to interfaces.
  1197. *
  1198. * Because this affects multiple interfaces, avoid using this with composite
  1199. * (multi-interface) devices. Instead, the driver for each interface may
  1200. * use usb_set_interface() on the interfaces it claims. Be careful though;
  1201. * some devices don't support the SET_INTERFACE request, and others won't
  1202. * reset all the interface state (notably data toggles). Resetting the whole
  1203. * configuration would affect other drivers' interfaces.
  1204. *
  1205. * The caller must own the device lock.
  1206. *
  1207. * Returns zero on success, else a negative error code.
  1208. */
  1209. int usb_reset_configuration(struct usb_device *dev)
  1210. {
  1211. int i, retval;
  1212. struct usb_host_config *config;
  1213. if (dev->state == USB_STATE_SUSPENDED)
  1214. return -EHOSTUNREACH;
  1215. /* caller must have locked the device and must own
  1216. * the usb bus readlock (so driver bindings are stable);
  1217. * calls during probe() are fine
  1218. */
  1219. for (i = 1; i < 16; ++i) {
  1220. usb_disable_endpoint(dev, i, true);
  1221. usb_disable_endpoint(dev, i + USB_DIR_IN, true);
  1222. }
  1223. config = dev->actconfig;
  1224. retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
  1225. USB_REQ_SET_CONFIGURATION, 0,
  1226. config->desc.bConfigurationValue, 0,
  1227. NULL, 0, USB_CTRL_SET_TIMEOUT);
  1228. if (retval < 0)
  1229. return retval;
  1230. dev->toggle[0] = dev->toggle[1] = 0;
  1231. /* re-init hc/hcd interface/endpoint state */
  1232. for (i = 0; i < config->desc.bNumInterfaces; i++) {
  1233. struct usb_interface *intf = config->interface[i];
  1234. struct usb_host_interface *alt;
  1235. alt = usb_altnum_to_altsetting(intf, 0);
  1236. /* No altsetting 0? We'll assume the first altsetting.
  1237. * We could use a GetInterface call, but if a device is
  1238. * so non-compliant that it doesn't have altsetting 0
  1239. * then I wouldn't trust its reply anyway.
  1240. */
  1241. if (!alt)
  1242. alt = &intf->altsetting[0];
  1243. if (alt != intf->cur_altsetting) {
  1244. remove_intf_ep_devs(intf);
  1245. usb_remove_sysfs_intf_files(intf);
  1246. }
  1247. intf->cur_altsetting = alt;
  1248. usb_enable_interface(dev, intf, true);
  1249. if (device_is_registered(&intf->dev)) {
  1250. usb_create_sysfs_intf_files(intf);
  1251. create_intf_ep_devs(intf);
  1252. }
  1253. }
  1254. return 0;
  1255. }
  1256. EXPORT_SYMBOL_GPL(usb_reset_configuration);
  1257. static void usb_release_interface(struct device *dev)
  1258. {
  1259. struct usb_interface *intf = to_usb_interface(dev);
  1260. struct usb_interface_cache *intfc =
  1261. altsetting_to_usb_interface_cache(intf->altsetting);
  1262. kref_put(&intfc->ref, usb_release_interface_cache);
  1263. kfree(intf);
  1264. }
  1265. #ifdef CONFIG_HOTPLUG
  1266. static int usb_if_uevent(struct device *dev, struct kobj_uevent_env *env)
  1267. {
  1268. struct usb_device *usb_dev;
  1269. struct usb_interface *intf;
  1270. struct usb_host_interface *alt;
  1271. intf = to_usb_interface(dev);
  1272. usb_dev = interface_to_usbdev(intf);
  1273. alt = intf->cur_altsetting;
  1274. if (add_uevent_var(env, "INTERFACE=%d/%d/%d",
  1275. alt->desc.bInterfaceClass,
  1276. alt->desc.bInterfaceSubClass,
  1277. alt->desc.bInterfaceProtocol))
  1278. return -ENOMEM;
  1279. if (add_uevent_var(env,
  1280. "MODALIAS=usb:"
  1281. "v%04Xp%04Xd%04Xdc%02Xdsc%02Xdp%02Xic%02Xisc%02Xip%02X",
  1282. le16_to_cpu(usb_dev->descriptor.idVendor),
  1283. le16_to_cpu(usb_dev->descriptor.idProduct),
  1284. le16_to_cpu(usb_dev->descriptor.bcdDevice),
  1285. usb_dev->descriptor.bDeviceClass,
  1286. usb_dev->descriptor.bDeviceSubClass,
  1287. usb_dev->descriptor.bDeviceProtocol,
  1288. alt->desc.bInterfaceClass,
  1289. alt->desc.bInterfaceSubClass,
  1290. alt->desc.bInterfaceProtocol))
  1291. return -ENOMEM;
  1292. return 0;
  1293. }
  1294. #else
  1295. static int usb_if_uevent(struct device *dev, struct kobj_uevent_env *env)
  1296. {
  1297. return -ENODEV;
  1298. }
  1299. #endif /* CONFIG_HOTPLUG */
  1300. struct device_type usb_if_device_type = {
  1301. .name = "usb_interface",
  1302. .release = usb_release_interface,
  1303. .uevent = usb_if_uevent,
  1304. };
  1305. static struct usb_interface_assoc_descriptor *find_iad(struct usb_device *dev,
  1306. struct usb_host_config *config,
  1307. u8 inum)
  1308. {
  1309. struct usb_interface_assoc_descriptor *retval = NULL;
  1310. struct usb_interface_assoc_descriptor *intf_assoc;
  1311. int first_intf;
  1312. int last_intf;
  1313. int i;
  1314. for (i = 0; (i < USB_MAXIADS && config->intf_assoc[i]); i++) {
  1315. intf_assoc = config->intf_assoc[i];
  1316. if (intf_assoc->bInterfaceCount == 0)
  1317. continue;
  1318. first_intf = intf_assoc->bFirstInterface;
  1319. last_intf = first_intf + (intf_assoc->bInterfaceCount - 1);
  1320. if (inum >= first_intf && inum <= last_intf) {
  1321. if (!retval)
  1322. retval = intf_assoc;
  1323. else
  1324. dev_err(&dev->dev, "Interface #%d referenced"
  1325. " by multiple IADs\n", inum);
  1326. }
  1327. }
  1328. return retval;
  1329. }
  1330. /*
  1331. * Internal function to queue a device reset
  1332. *
  1333. * This is initialized into the workstruct in 'struct
  1334. * usb_device->reset_ws' that is launched by
  1335. * message.c:usb_set_configuration() when initializing each 'struct
  1336. * usb_interface'.
  1337. *
  1338. * It is safe to get the USB device without reference counts because
  1339. * the life cycle of @iface is bound to the life cycle of @udev. Then,
  1340. * this function will be ran only if @iface is alive (and before
  1341. * freeing it any scheduled instances of it will have been cancelled).
  1342. *
  1343. * We need to set a flag (usb_dev->reset_running) because when we call
  1344. * the reset, the interfaces might be unbound. The current interface
  1345. * cannot try to remove the queued work as it would cause a deadlock
  1346. * (you cannot remove your work from within your executing
  1347. * workqueue). This flag lets it know, so that
  1348. * usb_cancel_queued_reset() doesn't try to do it.
  1349. *
  1350. * See usb_queue_reset_device() for more details
  1351. */
  1352. void __usb_queue_reset_device(struct work_struct *ws)
  1353. {
  1354. int rc;
  1355. struct usb_interface *iface =
  1356. container_of(ws, struct usb_interface, reset_ws);
  1357. struct usb_device *udev = interface_to_usbdev(iface);
  1358. rc = usb_lock_device_for_reset(udev, iface);
  1359. if (rc >= 0) {
  1360. iface->reset_running = 1;
  1361. usb_reset_device(udev);
  1362. iface->reset_running = 0;
  1363. usb_unlock_device(udev);
  1364. }
  1365. }
  1366. /*
  1367. * usb_set_configuration - Makes a particular device setting be current
  1368. * @dev: the device whose configuration is being updated
  1369. * @configuration: the configuration being chosen.
  1370. * Context: !in_interrupt(), caller owns the device lock
  1371. *
  1372. * This is used to enable non-default device modes. Not all devices
  1373. * use this kind of configurability; many devices only have one
  1374. * configuration.
  1375. *
  1376. * @configuration is the value of the configuration to be installed.
  1377. * According to the USB spec (e.g. section 9.1.1.5), configuration values
  1378. * must be non-zero; a value of zero indicates that the device in
  1379. * unconfigured. However some devices erroneously use 0 as one of their
  1380. * configuration values. To help manage such devices, this routine will
  1381. * accept @configuration = -1 as indicating the device should be put in
  1382. * an unconfigured state.
  1383. *
  1384. * USB device configurations may affect Linux interoperability,
  1385. * power consumption and the functionality available. For example,
  1386. * the default configuration is limited to using 100mA of bus power,
  1387. * so that when certain device functionality requires more power,
  1388. * and the device is bus powered, that functionality should be in some
  1389. * non-default device configuration. Other device modes may also be
  1390. * reflected as configuration options, such as whether two ISDN
  1391. * channels are available independently; and choosing between open
  1392. * standard device protocols (like CDC) or proprietary ones.
  1393. *
  1394. * Note that a non-authorized device (dev->authorized == 0) will only
  1395. * be put in unconfigured mode.
  1396. *
  1397. * Note that USB has an additional level of device configurability,
  1398. * associated with interfaces. That configurability is accessed using
  1399. * usb_set_interface().
  1400. *
  1401. * This call is synchronous. The calling context must be able to sleep,
  1402. * must own the device lock, and must not hold the driver model's USB
  1403. * bus mutex; usb interface driver probe() methods cannot use this routine.
  1404. *
  1405. * Returns zero on success, or else the status code returned by the
  1406. * underlying call that failed. On successful completion, each interface
  1407. * in the original device configuration has been destroyed, and each one
  1408. * in the new configuration has been probed by all relevant usb device
  1409. * drivers currently known to the kernel.
  1410. */
  1411. int usb_set_configuration(struct usb_device *dev, int configuration)
  1412. {
  1413. int i, ret;
  1414. struct usb_host_config *cp = NULL;
  1415. struct usb_interface **new_interfaces = NULL;
  1416. int n, nintf;
  1417. if (dev->authorized == 0 || configuration == -1)
  1418. configuration = 0;
  1419. else {
  1420. for (i = 0; i < dev->descriptor.bNumConfigurations; i++) {
  1421. if (dev->config[i].desc.bConfigurationValue ==
  1422. configuration) {
  1423. cp = &dev->config[i];
  1424. break;
  1425. }
  1426. }
  1427. }
  1428. if ((!cp && configuration != 0))
  1429. return -EINVAL;
  1430. /* The USB spec says configuration 0 means unconfigured.
  1431. * But if a device includes a configuration numbered 0,
  1432. * we will accept it as a correctly configured state.
  1433. * Use -1 if you really want to unconfigure the device.
  1434. */
  1435. if (cp && configuration == 0)
  1436. dev_warn(&dev->dev, "config 0 descriptor??\n");
  1437. /* Allocate memory for new interfaces before doing anything else,
  1438. * so that if we run out then nothing will have changed. */
  1439. n = nintf = 0;
  1440. if (cp) {
  1441. nintf = cp->desc.bNumInterfaces;
  1442. new_interfaces = kmalloc(nintf * sizeof(*new_interfaces),
  1443. GFP_KERNEL);
  1444. if (!new_interfaces) {
  1445. dev_err(&dev->dev, "Out of memory\n");
  1446. return -ENOMEM;
  1447. }
  1448. for (; n < nintf; ++n) {
  1449. new_interfaces[n] = kzalloc(
  1450. sizeof(struct usb_interface),
  1451. GFP_KERNEL);
  1452. if (!new_interfaces[n]) {
  1453. dev_err(&dev->dev, "Out of memory\n");
  1454. ret = -ENOMEM;
  1455. free_interfaces:
  1456. while (--n >= 0)
  1457. kfree(new_interfaces[n]);
  1458. kfree(new_interfaces);
  1459. return ret;
  1460. }
  1461. }
  1462. i = dev->bus_mA - cp->desc.bMaxPower * 2;
  1463. if (i < 0)
  1464. dev_warn(&dev->dev, "new config #%d exceeds power "
  1465. "limit by %dmA\n",
  1466. configuration, -i);
  1467. }
  1468. /* Wake up the device so we can send it the Set-Config request */
  1469. ret = usb_autoresume_device(dev);
  1470. if (ret)
  1471. goto free_interfaces;
  1472. /* if it's already configured, clear out old state first.
  1473. * getting rid of old interfaces means unbinding their drivers.
  1474. */
  1475. if (dev->state != USB_STATE_ADDRESS)
  1476. usb_disable_device(dev, 1); /* Skip ep0 */
  1477. /* Get rid of pending async Set-Config requests for this device */
  1478. cancel_async_set_config(dev);
  1479. ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
  1480. USB_REQ_SET_CONFIGURATION, 0, configuration, 0,
  1481. NULL, 0, USB_CTRL_SET_TIMEOUT);
  1482. if (ret < 0) {
  1483. /* All the old state is gone, so what else can we do?
  1484. * The device is probably useless now anyway.
  1485. */
  1486. cp = NULL;
  1487. }
  1488. dev->actconfig = cp;
  1489. if (!cp) {
  1490. usb_set_device_state(dev, USB_STATE_ADDRESS);
  1491. usb_autosuspend_device(dev);
  1492. goto free_interfaces;
  1493. }
  1494. usb_set_device_state(dev, USB_STATE_CONFIGURED);
  1495. /* Initialize the new interface structures and the
  1496. * hc/hcd/usbcore interface/endpoint state.
  1497. */
  1498. for (i = 0; i < nintf; ++i) {
  1499. struct usb_interface_cache *intfc;
  1500. struct usb_interface *intf;
  1501. struct usb_host_interface *alt;
  1502. cp->interface[i] = intf = new_interfaces[i];
  1503. intfc = cp->intf_cache[i];
  1504. intf->altsetting = intfc->altsetting;
  1505. intf->num_altsetting = intfc->num_altsetting;
  1506. intf->intf_assoc = find_iad(dev, cp, i);
  1507. kref_get(&intfc->ref);
  1508. alt = usb_altnum_to_altsetting(intf, 0);
  1509. /* No altsetting 0? We'll assume the first altsetting.
  1510. * We could use a GetInterface call, but if a device is
  1511. * so non-compliant that it doesn't have altsetting 0
  1512. * then I wouldn't trust its reply anyway.
  1513. */
  1514. if (!alt)
  1515. alt = &intf->altsetting[0];
  1516. intf->cur_altsetting = alt;
  1517. usb_enable_interface(dev, intf, true);
  1518. intf->dev.parent = &dev->dev;
  1519. intf->dev.driver = NULL;
  1520. intf->dev.bus = &usb_bus_type;
  1521. intf->dev.type = &usb_if_device_type;
  1522. intf->dev.groups = usb_interface_groups;
  1523. intf->dev.dma_mask = dev->dev.dma_mask;
  1524. INIT_WORK(&intf->reset_ws, __usb_queue_reset_device);
  1525. device_initialize(&intf->dev);
  1526. mark_quiesced(intf);
  1527. dev_set_name(&intf->dev, "%d-%s:%d.%d",
  1528. dev->bus->busnum, dev->devpath,
  1529. configuration, alt->desc.bInterfaceNumber);
  1530. }
  1531. kfree(new_interfaces);
  1532. if (cp->string == NULL &&
  1533. !(dev->quirks & USB_QUIRK_CONFIG_INTF_STRINGS))
  1534. cp->string = usb_cache_string(dev, cp->desc.iConfiguration);
  1535. /* Now that all the interfaces are set up, register them
  1536. * to trigger binding of drivers to interfaces. probe()
  1537. * routines may install different altsettings and may
  1538. * claim() any interfaces not yet bound. Many class drivers
  1539. * need that: CDC, audio, video, etc.
  1540. */
  1541. for (i = 0; i < nintf; ++i) {
  1542. struct usb_interface *intf = cp->interface[i];
  1543. dev_dbg(&dev->dev,
  1544. "adding %s (config #%d, interface %d)\n",
  1545. dev_name(&intf->dev), configuration,
  1546. intf->cur_altsetting->desc.bInterfaceNumber);
  1547. ret = device_add(&intf->dev);
  1548. if (ret != 0) {
  1549. dev_err(&dev->dev, "device_add(%s) --> %d\n",
  1550. dev_name(&intf->dev), ret);
  1551. continue;
  1552. }
  1553. create_intf_ep_devs(intf);
  1554. }
  1555. usb_autosuspend_device(dev);
  1556. return 0;
  1557. }
  1558. static LIST_HEAD(set_config_list);
  1559. static DEFINE_SPINLOCK(set_config_lock);
  1560. struct set_config_request {
  1561. struct usb_device *udev;
  1562. int config;
  1563. struct work_struct work;
  1564. struct list_head node;
  1565. };
  1566. /* Worker routine for usb_driver_set_configuration() */
  1567. static void driver_set_config_work(struct work_struct *work)
  1568. {
  1569. struct set_config_request *req =
  1570. container_of(work, struct set_config_request, work);
  1571. struct usb_device *udev = req->udev;
  1572. usb_lock_device(udev);
  1573. spin_lock(&set_config_lock);
  1574. list_del(&req->node);
  1575. spin_unlock(&set_config_lock);
  1576. if (req->config >= -1) /* Is req still valid? */
  1577. usb_set_configuration(udev, req->config);
  1578. usb_unlock_device(udev);
  1579. usb_put_dev(udev);
  1580. kfree(req);
  1581. }
  1582. /* Cancel pending Set-Config requests for a device whose configuration
  1583. * was just changed
  1584. */
  1585. static void cancel_async_set_config(struct usb_device *udev)
  1586. {
  1587. struct set_config_request *req;
  1588. spin_lock(&set_config_lock);
  1589. list_for_each_entry(req, &set_config_list, node) {
  1590. if (req->udev == udev)
  1591. req->config = -999; /* Mark as cancelled */
  1592. }
  1593. spin_unlock(&set_config_lock);
  1594. }
  1595. /**
  1596. * usb_driver_set_configuration - Provide a way for drivers to change device configurations
  1597. * @udev: the device whose configuration is being updated
  1598. * @config: the configuration being chosen.
  1599. * Context: In process context, must be able to sleep
  1600. *
  1601. * Device interface drivers are not allowed to change device configurations.
  1602. * This is because changing configurations will destroy the interface the
  1603. * driver is bound to and create new ones; it would be like a floppy-disk
  1604. * driver telling the computer to replace the floppy-disk drive with a
  1605. * tape drive!
  1606. *
  1607. * Still, in certain specialized circumstances the need may arise. This
  1608. * routine gets around the normal restrictions by using a work thread to
  1609. * submit the change-config request.
  1610. *
  1611. * Returns 0 if the request was succesfully queued, error code otherwise.
  1612. * The caller has no way to know whether the queued request will eventually
  1613. * succeed.
  1614. */
  1615. int usb_driver_set_configuration(struct usb_device *udev, int config)
  1616. {
  1617. struct set_config_request *req;
  1618. req = kmalloc(sizeof(*req), GFP_KERNEL);
  1619. if (!req)
  1620. return -ENOMEM;
  1621. req->udev = udev;
  1622. req->config = config;
  1623. INIT_WORK(&req->work, driver_set_config_work);
  1624. spin_lock(&set_config_lock);
  1625. list_add(&req->node, &set_config_list);
  1626. spin_unlock(&set_config_lock);
  1627. usb_get_dev(udev);
  1628. schedule_work(&req->work);
  1629. return 0;
  1630. }
  1631. EXPORT_SYMBOL_GPL(usb_driver_set_configuration);