message.c 59 KB

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