message.c 60 KB

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