urb.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492
  1. #include <linux/module.h>
  2. #include <linux/string.h>
  3. #include <linux/bitops.h>
  4. #include <linux/slab.h>
  5. #include <linux/init.h>
  6. #include <linux/usb.h>
  7. #include "hcd.h"
  8. #define to_urb(d) container_of(d, struct urb, kref)
  9. static void urb_destroy(struct kref *kref)
  10. {
  11. struct urb *urb = to_urb(kref);
  12. kfree(urb);
  13. }
  14. /**
  15. * usb_init_urb - initializes a urb so that it can be used by a USB driver
  16. * @urb: pointer to the urb to initialize
  17. *
  18. * Initializes a urb so that the USB subsystem can use it properly.
  19. *
  20. * If a urb is created with a call to usb_alloc_urb() it is not
  21. * necessary to call this function. Only use this if you allocate the
  22. * space for a struct urb on your own. If you call this function, be
  23. * careful when freeing the memory for your urb that it is no longer in
  24. * use by the USB core.
  25. *
  26. * Only use this function if you _really_ understand what you are doing.
  27. */
  28. void usb_init_urb(struct urb *urb)
  29. {
  30. if (urb) {
  31. memset(urb, 0, sizeof(*urb));
  32. kref_init(&urb->kref);
  33. spin_lock_init(&urb->lock);
  34. }
  35. }
  36. /**
  37. * usb_alloc_urb - creates a new urb for a USB driver to use
  38. * @iso_packets: number of iso packets for this urb
  39. * @mem_flags: the type of memory to allocate, see kmalloc() for a list of
  40. * valid options for this.
  41. *
  42. * Creates an urb for the USB driver to use, initializes a few internal
  43. * structures, incrementes the usage counter, and returns a pointer to it.
  44. *
  45. * If no memory is available, NULL is returned.
  46. *
  47. * If the driver want to use this urb for interrupt, control, or bulk
  48. * endpoints, pass '0' as the number of iso packets.
  49. *
  50. * The driver must call usb_free_urb() when it is finished with the urb.
  51. */
  52. struct urb *usb_alloc_urb(int iso_packets, gfp_t mem_flags)
  53. {
  54. struct urb *urb;
  55. urb = (struct urb *)kmalloc(sizeof(struct urb) +
  56. iso_packets * sizeof(struct usb_iso_packet_descriptor),
  57. mem_flags);
  58. if (!urb) {
  59. err("alloc_urb: kmalloc failed");
  60. return NULL;
  61. }
  62. usb_init_urb(urb);
  63. return urb;
  64. }
  65. /**
  66. * usb_free_urb - frees the memory used by a urb when all users of it are finished
  67. * @urb: pointer to the urb to free, may be NULL
  68. *
  69. * Must be called when a user of a urb is finished with it. When the last user
  70. * of the urb calls this function, the memory of the urb is freed.
  71. *
  72. * Note: The transfer buffer associated with the urb is not freed, that must be
  73. * done elsewhere.
  74. */
  75. void usb_free_urb(struct urb *urb)
  76. {
  77. if (urb)
  78. kref_put(&urb->kref, urb_destroy);
  79. }
  80. /**
  81. * usb_get_urb - increments the reference count of the urb
  82. * @urb: pointer to the urb to modify, may be NULL
  83. *
  84. * This must be called whenever a urb is transferred from a device driver to a
  85. * host controller driver. This allows proper reference counting to happen
  86. * for urbs.
  87. *
  88. * A pointer to the urb with the incremented reference counter is returned.
  89. */
  90. struct urb * usb_get_urb(struct urb *urb)
  91. {
  92. if (urb)
  93. kref_get(&urb->kref);
  94. return urb;
  95. }
  96. /*-------------------------------------------------------------------*/
  97. /**
  98. * usb_submit_urb - issue an asynchronous transfer request for an endpoint
  99. * @urb: pointer to the urb describing the request
  100. * @mem_flags: the type of memory to allocate, see kmalloc() for a list
  101. * of valid options for this.
  102. *
  103. * This submits a transfer request, and transfers control of the URB
  104. * describing that request to the USB subsystem. Request completion will
  105. * be indicated later, asynchronously, by calling the completion handler.
  106. * The three types of completion are success, error, and unlink
  107. * (a software-induced fault, also called "request cancellation").
  108. *
  109. * URBs may be submitted in interrupt context.
  110. *
  111. * The caller must have correctly initialized the URB before submitting
  112. * it. Functions such as usb_fill_bulk_urb() and usb_fill_control_urb() are
  113. * available to ensure that most fields are correctly initialized, for
  114. * the particular kind of transfer, although they will not initialize
  115. * any transfer flags.
  116. *
  117. * Successful submissions return 0; otherwise this routine returns a
  118. * negative error number. If the submission is successful, the complete()
  119. * callback from the URB will be called exactly once, when the USB core and
  120. * Host Controller Driver (HCD) are finished with the URB. When the completion
  121. * function is called, control of the URB is returned to the device
  122. * driver which issued the request. The completion handler may then
  123. * immediately free or reuse that URB.
  124. *
  125. * With few exceptions, USB device drivers should never access URB fields
  126. * provided by usbcore or the HCD until its complete() is called.
  127. * The exceptions relate to periodic transfer scheduling. For both
  128. * interrupt and isochronous urbs, as part of successful URB submission
  129. * urb->interval is modified to reflect the actual transfer period used
  130. * (normally some power of two units). And for isochronous urbs,
  131. * urb->start_frame is modified to reflect when the URB's transfers were
  132. * scheduled to start. Not all isochronous transfer scheduling policies
  133. * will work, but most host controller drivers should easily handle ISO
  134. * queues going from now until 10-200 msec into the future.
  135. *
  136. * For control endpoints, the synchronous usb_control_msg() call is
  137. * often used (in non-interrupt context) instead of this call.
  138. * That is often used through convenience wrappers, for the requests
  139. * that are standardized in the USB 2.0 specification. For bulk
  140. * endpoints, a synchronous usb_bulk_msg() call is available.
  141. *
  142. * Request Queuing:
  143. *
  144. * URBs may be submitted to endpoints before previous ones complete, to
  145. * minimize the impact of interrupt latencies and system overhead on data
  146. * throughput. With that queuing policy, an endpoint's queue would never
  147. * be empty. This is required for continuous isochronous data streams,
  148. * and may also be required for some kinds of interrupt transfers. Such
  149. * queuing also maximizes bandwidth utilization by letting USB controllers
  150. * start work on later requests before driver software has finished the
  151. * completion processing for earlier (successful) requests.
  152. *
  153. * As of Linux 2.6, all USB endpoint transfer queues support depths greater
  154. * than one. This was previously a HCD-specific behavior, except for ISO
  155. * transfers. Non-isochronous endpoint queues are inactive during cleanup
  156. * after faults (transfer errors or cancellation).
  157. *
  158. * Reserved Bandwidth Transfers:
  159. *
  160. * Periodic transfers (interrupt or isochronous) are performed repeatedly,
  161. * using the interval specified in the urb. Submitting the first urb to
  162. * the endpoint reserves the bandwidth necessary to make those transfers.
  163. * If the USB subsystem can't allocate sufficient bandwidth to perform
  164. * the periodic request, submitting such a periodic request should fail.
  165. *
  166. * Device drivers must explicitly request that repetition, by ensuring that
  167. * some URB is always on the endpoint's queue (except possibly for short
  168. * periods during completion callacks). When there is no longer an urb
  169. * queued, the endpoint's bandwidth reservation is canceled. This means
  170. * drivers can use their completion handlers to ensure they keep bandwidth
  171. * they need, by reinitializing and resubmitting the just-completed urb
  172. * until the driver longer needs that periodic bandwidth.
  173. *
  174. * Memory Flags:
  175. *
  176. * The general rules for how to decide which mem_flags to use
  177. * are the same as for kmalloc. There are four
  178. * different possible values; GFP_KERNEL, GFP_NOFS, GFP_NOIO and
  179. * GFP_ATOMIC.
  180. *
  181. * GFP_NOFS is not ever used, as it has not been implemented yet.
  182. *
  183. * GFP_ATOMIC is used when
  184. * (a) you are inside a completion handler, an interrupt, bottom half,
  185. * tasklet or timer, or
  186. * (b) you are holding a spinlock or rwlock (does not apply to
  187. * semaphores), or
  188. * (c) current->state != TASK_RUNNING, this is the case only after
  189. * you've changed it.
  190. *
  191. * GFP_NOIO is used in the block io path and error handling of storage
  192. * devices.
  193. *
  194. * All other situations use GFP_KERNEL.
  195. *
  196. * Some more specific rules for mem_flags can be inferred, such as
  197. * (1) start_xmit, timeout, and receive methods of network drivers must
  198. * use GFP_ATOMIC (they are called with a spinlock held);
  199. * (2) queuecommand methods of scsi drivers must use GFP_ATOMIC (also
  200. * called with a spinlock held);
  201. * (3) If you use a kernel thread with a network driver you must use
  202. * GFP_NOIO, unless (b) or (c) apply;
  203. * (4) after you have done a down() you can use GFP_KERNEL, unless (b) or (c)
  204. * apply or your are in a storage driver's block io path;
  205. * (5) USB probe and disconnect can use GFP_KERNEL unless (b) or (c) apply; and
  206. * (6) changing firmware on a running storage or net device uses
  207. * GFP_NOIO, unless b) or c) apply
  208. *
  209. */
  210. int usb_submit_urb(struct urb *urb, gfp_t mem_flags)
  211. {
  212. int pipe, temp, max;
  213. struct usb_device *dev;
  214. struct usb_operations *op;
  215. int is_out;
  216. if (!urb || urb->hcpriv || !urb->complete)
  217. return -EINVAL;
  218. if (!(dev = urb->dev) ||
  219. (dev->state < USB_STATE_DEFAULT) ||
  220. (!dev->bus) || (dev->devnum <= 0))
  221. return -ENODEV;
  222. if (dev->bus->controller->power.power_state.event != PM_EVENT_ON
  223. || dev->state == USB_STATE_SUSPENDED)
  224. return -EHOSTUNREACH;
  225. if (!(op = dev->bus->op) || !op->submit_urb)
  226. return -ENODEV;
  227. urb->status = -EINPROGRESS;
  228. urb->actual_length = 0;
  229. urb->bandwidth = 0;
  230. /* Lots of sanity checks, so HCDs can rely on clean data
  231. * and don't need to duplicate tests
  232. */
  233. pipe = urb->pipe;
  234. temp = usb_pipetype (pipe);
  235. is_out = usb_pipeout (pipe);
  236. if (!usb_pipecontrol (pipe) && dev->state < USB_STATE_CONFIGURED)
  237. return -ENODEV;
  238. /* FIXME there should be a sharable lock protecting us against
  239. * config/altsetting changes and disconnects, kicking in here.
  240. * (here == before maxpacket, and eventually endpoint type,
  241. * checks get made.)
  242. */
  243. max = usb_maxpacket (dev, pipe, is_out);
  244. if (max <= 0) {
  245. dev_dbg(&dev->dev,
  246. "bogus endpoint ep%d%s in %s (bad maxpacket %d)\n",
  247. usb_pipeendpoint (pipe), is_out ? "out" : "in",
  248. __FUNCTION__, max);
  249. return -EMSGSIZE;
  250. }
  251. /* periodic transfers limit size per frame/uframe,
  252. * but drivers only control those sizes for ISO.
  253. * while we're checking, initialize return status.
  254. */
  255. if (temp == PIPE_ISOCHRONOUS) {
  256. int n, len;
  257. /* "high bandwidth" mode, 1-3 packets/uframe? */
  258. if (dev->speed == USB_SPEED_HIGH) {
  259. int mult = 1 + ((max >> 11) & 0x03);
  260. max &= 0x07ff;
  261. max *= mult;
  262. }
  263. if (urb->number_of_packets <= 0)
  264. return -EINVAL;
  265. for (n = 0; n < urb->number_of_packets; n++) {
  266. len = urb->iso_frame_desc [n].length;
  267. if (len < 0 || len > max)
  268. return -EMSGSIZE;
  269. urb->iso_frame_desc [n].status = -EXDEV;
  270. urb->iso_frame_desc [n].actual_length = 0;
  271. }
  272. }
  273. /* the I/O buffer must be mapped/unmapped, except when length=0 */
  274. if (urb->transfer_buffer_length < 0)
  275. return -EMSGSIZE;
  276. #ifdef DEBUG
  277. /* stuff that drivers shouldn't do, but which shouldn't
  278. * cause problems in HCDs if they get it wrong.
  279. */
  280. {
  281. unsigned int orig_flags = urb->transfer_flags;
  282. unsigned int allowed;
  283. /* enforce simple/standard policy */
  284. allowed = (URB_NO_TRANSFER_DMA_MAP | URB_NO_SETUP_DMA_MAP |
  285. URB_NO_INTERRUPT);
  286. switch (temp) {
  287. case PIPE_BULK:
  288. if (is_out)
  289. allowed |= URB_ZERO_PACKET;
  290. /* FALLTHROUGH */
  291. case PIPE_CONTROL:
  292. allowed |= URB_NO_FSBR; /* only affects UHCI */
  293. /* FALLTHROUGH */
  294. default: /* all non-iso endpoints */
  295. if (!is_out)
  296. allowed |= URB_SHORT_NOT_OK;
  297. break;
  298. case PIPE_ISOCHRONOUS:
  299. allowed |= URB_ISO_ASAP;
  300. break;
  301. }
  302. urb->transfer_flags &= allowed;
  303. /* fail if submitter gave bogus flags */
  304. if (urb->transfer_flags != orig_flags) {
  305. err ("BOGUS urb flags, %x --> %x",
  306. orig_flags, urb->transfer_flags);
  307. return -EINVAL;
  308. }
  309. }
  310. #endif
  311. /*
  312. * Force periodic transfer intervals to be legal values that are
  313. * a power of two (so HCDs don't need to).
  314. *
  315. * FIXME want bus->{intr,iso}_sched_horizon values here. Each HC
  316. * supports different values... this uses EHCI/UHCI defaults (and
  317. * EHCI can use smaller non-default values).
  318. */
  319. switch (temp) {
  320. case PIPE_ISOCHRONOUS:
  321. case PIPE_INTERRUPT:
  322. /* too small? */
  323. if (urb->interval <= 0)
  324. return -EINVAL;
  325. /* too big? */
  326. switch (dev->speed) {
  327. case USB_SPEED_HIGH: /* units are microframes */
  328. // NOTE usb handles 2^15
  329. if (urb->interval > (1024 * 8))
  330. urb->interval = 1024 * 8;
  331. temp = 1024 * 8;
  332. break;
  333. case USB_SPEED_FULL: /* units are frames/msec */
  334. case USB_SPEED_LOW:
  335. if (temp == PIPE_INTERRUPT) {
  336. if (urb->interval > 255)
  337. return -EINVAL;
  338. // NOTE ohci only handles up to 32
  339. temp = 128;
  340. } else {
  341. if (urb->interval > 1024)
  342. urb->interval = 1024;
  343. // NOTE usb and ohci handle up to 2^15
  344. temp = 1024;
  345. }
  346. break;
  347. default:
  348. return -EINVAL;
  349. }
  350. /* power of two? */
  351. while (temp > urb->interval)
  352. temp >>= 1;
  353. urb->interval = temp;
  354. }
  355. return op->submit_urb (urb, mem_flags);
  356. }
  357. /*-------------------------------------------------------------------*/
  358. /**
  359. * usb_unlink_urb - abort/cancel a transfer request for an endpoint
  360. * @urb: pointer to urb describing a previously submitted request,
  361. * may be NULL
  362. *
  363. * This routine cancels an in-progress request. URBs complete only
  364. * once per submission, and may be canceled only once per submission.
  365. * Successful cancellation means the requests's completion handler will
  366. * be called with a status code indicating that the request has been
  367. * canceled (rather than any other code) and will quickly be removed
  368. * from host controller data structures.
  369. *
  370. * This request is always asynchronous.
  371. * Success is indicated by returning -EINPROGRESS,
  372. * at which time the URB will normally have been unlinked but not yet
  373. * given back to the device driver. When it is called, the completion
  374. * function will see urb->status == -ECONNRESET. Failure is indicated
  375. * by any other return value. Unlinking will fail when the URB is not
  376. * currently "linked" (i.e., it was never submitted, or it was unlinked
  377. * before, or the hardware is already finished with it), even if the
  378. * completion handler has not yet run.
  379. *
  380. * Unlinking and Endpoint Queues:
  381. *
  382. * Host Controller Drivers (HCDs) place all the URBs for a particular
  383. * endpoint in a queue. Normally the queue advances as the controller
  384. * hardware processes each request. But when an URB terminates with an
  385. * error its queue stops, at least until that URB's completion routine
  386. * returns. It is guaranteed that the queue will not restart until all
  387. * its unlinked URBs have been fully retired, with their completion
  388. * routines run, even if that's not until some time after the original
  389. * completion handler returns. Normally the same behavior and guarantees
  390. * apply when an URB terminates because it was unlinked; however if an
  391. * URB is unlinked before the hardware has started to execute it, then
  392. * its queue is not guaranteed to stop until all the preceding URBs have
  393. * completed.
  394. *
  395. * This means that USB device drivers can safely build deep queues for
  396. * large or complex transfers, and clean them up reliably after any sort
  397. * of aborted transfer by unlinking all pending URBs at the first fault.
  398. *
  399. * Note that an URB terminating early because a short packet was received
  400. * will count as an error if and only if the URB_SHORT_NOT_OK flag is set.
  401. * Also, that all unlinks performed in any URB completion handler must
  402. * be asynchronous.
  403. *
  404. * Queues for isochronous endpoints are treated differently, because they
  405. * advance at fixed rates. Such queues do not stop when an URB is unlinked.
  406. * An unlinked URB may leave a gap in the stream of packets. It is undefined
  407. * whether such gaps can be filled in.
  408. *
  409. * When a control URB terminates with an error, it is likely that the
  410. * status stage of the transfer will not take place, even if it is merely
  411. * a soft error resulting from a short-packet with URB_SHORT_NOT_OK set.
  412. */
  413. int usb_unlink_urb(struct urb *urb)
  414. {
  415. if (!urb)
  416. return -EINVAL;
  417. if (!(urb->dev && urb->dev->bus && urb->dev->bus->op))
  418. return -ENODEV;
  419. return urb->dev->bus->op->unlink_urb(urb, -ECONNRESET);
  420. }
  421. /**
  422. * usb_kill_urb - cancel a transfer request and wait for it to finish
  423. * @urb: pointer to URB describing a previously submitted request,
  424. * may be NULL
  425. *
  426. * This routine cancels an in-progress request. It is guaranteed that
  427. * upon return all completion handlers will have finished and the URB
  428. * will be totally idle and available for reuse. These features make
  429. * this an ideal way to stop I/O in a disconnect() callback or close()
  430. * function. If the request has not already finished or been unlinked
  431. * the completion handler will see urb->status == -ENOENT.
  432. *
  433. * While the routine is running, attempts to resubmit the URB will fail
  434. * with error -EPERM. Thus even if the URB's completion handler always
  435. * tries to resubmit, it will not succeed and the URB will become idle.
  436. *
  437. * This routine may not be used in an interrupt context (such as a bottom
  438. * half or a completion handler), or when holding a spinlock, or in other
  439. * situations where the caller can't schedule().
  440. */
  441. void usb_kill_urb(struct urb *urb)
  442. {
  443. might_sleep();
  444. if (!(urb && urb->dev && urb->dev->bus && urb->dev->bus->op))
  445. return;
  446. spin_lock_irq(&urb->lock);
  447. ++urb->reject;
  448. spin_unlock_irq(&urb->lock);
  449. urb->dev->bus->op->unlink_urb(urb, -ENOENT);
  450. wait_event(usb_kill_urb_queue, atomic_read(&urb->use_count) == 0);
  451. spin_lock_irq(&urb->lock);
  452. --urb->reject;
  453. spin_unlock_irq(&urb->lock);
  454. }
  455. EXPORT_SYMBOL(usb_init_urb);
  456. EXPORT_SYMBOL(usb_alloc_urb);
  457. EXPORT_SYMBOL(usb_free_urb);
  458. EXPORT_SYMBOL(usb_get_urb);
  459. EXPORT_SYMBOL(usb_submit_urb);
  460. EXPORT_SYMBOL(usb_unlink_urb);
  461. EXPORT_SYMBOL(usb_kill_urb);