DMA
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:9k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. Support functions for the SA11x0 internal DMA channels
  2. ======================================================
  3. Nicolas Pitre <nico@cam.org>
  4. Last updated: 2001/07/15
  5. The DMA controller consists of six independent DMA channels. Each channel
  6. can be configured to service any of the serial controllers. Two channels
  7. are required to service a full-duplex serial controller. The DMA
  8. controller is intended to relieve the processor of the interrupt overhead
  9. in servicing these ports with programmed I/ O.
  10. If desired, any or all peripherals (except the UDC) may be serviced with
  11. programmed I/ O instead of DMA. Each peripheral is capable of requesting
  12. processor service through its own interrupt lines or through a DMA
  13. request.
  14. A set of functions is provided to support drivers working with DMA buffers
  15. through a generic interface for (wishfully) all DMA usages.  Those
  16. functions will take care of buffer queueing and splitting, DMA register
  17. management, interrupt handling, etc.
  18. SA11x0 DMA API
  19. --------------
  20. Here is the description for the DMA API.
  21. int sa1100_request_dma( dmach_t *channel, const char *device_id,
  22. dma_device_t device );
  23. This function will search for a free DMA channel and returns the channel
  24. number in '*channel'.  'device_id' should point to a string identifying
  25. the DMA usage or device (mainly for /proc).  'device' is the SA11x0
  26. peripheral's ports.  Note that reading from a port and writing to the
  27. same port are actually considered as two different streams requiring
  28. two DMA channels with their own device type.  All possible dma_device_t
  29. are defined in include/asm-arm/arch-sa1100/dma.h.  If no channel is
  30. available, or if the desired device is already in use by another DMA
  31. channel, then an error code is returned.  This function must be called
  32. before any other DMA calls.
  33. int sa1100_dma_queue_buffer( dmach_t channel, void *buf_id,
  34.                              dma_addr_t data, int size );
  35. This function enqueue the specified buffer for DMA processing.  The buffer
  36. will be transmitted or filled with incoming data depending on the channel
  37. configuration made through sa1100_dma_set_device().  If the queue is
  38. empty, DMA starts immediately on the given buffer.
  39. Arguments are:
  40. dmach_t channel: the channel number.
  41. void *buf_id: a buffer identification known by the caller.
  42. dma_addr_t data: the buffer's physical address.
  43. int size: the buffer size in bytes.
  44. Note here the dma_addr_t which is not the same as the virtual address as
  45. returned by kmalloc() and friends.  The DMA controller must be given a
  46. physical address to a buffer which is not cached bye the CPU data cache.
  47. To get such address, the DMA mapping functions (see
  48. Documentation/DMA-mapping.txt) are recommended.  The only relevant
  49. functions are pci_alloc_consistent(), pci_map_single() and their unmap
  50. counterparts.  The PCI dev argument is NULL of course.
  51. There is no restriction on the buffer size.  The DMA code will split it up
  52. internally to acommodate the DMA controller as needed.  If the buffer
  53. can't be enqueued the appropriate error code is returned.
  54. int sa1100_dma_set_callback( dmach_t channel, dma_callback_t cb );
  55. As soon as the DMa completes with a buffer, a callback function is used to
  56. notify the driver which would have registered one.  The callback function
  57. is prototyped as:
  58. void dma_callback( void *buf_id, int size );
  59. The 'buf_id' argument is the buffer identifier as passed to
  60. sa1100_dma_queue_buffer().  The 'size' argument is the number of bytes the
  61. DMA processed (should be the same as the buffer size).
  62. Note that this callback function is called while in interrupt context.
  63. So it has to be small and efficient while posponing more complex
  64. processing to a bottom-half function or similar.  All
  65. restrictions for interrupt handlers still apply.
  66. int sa1100_dma_get_current( dmach_t channel, void **buf_id,
  67.                             dma_addr_t *addr );
  68. This returns the buffer ID and the DMA address pointer within the buffer
  69. currently being processed.  If no such buffer is currently processed, an
  70. error code is returned.  This is useful for mmap()'ed buffers like in
  71. audio drivers.
  72. int sa1100_dma_stop( dmach_t channel );
  73. This call stops any DMA transfer on the given channel.
  74. int sa1100_dma_resume( dmach_t channel );
  75. This call resumes a DMA transfer which would have been stopped through
  76. sa1100_dma_stop().
  77. int sa1100_dma_flush_all( dmach_t channel );
  78. This completely flushes all queued buffers and on-going DMA transfers on a
  79. given channel.  The next enqueued buffer following this call will be
  80. processed right away.
  81. int sa1100_dma_set_spin( dmach_t channel, dma_addr_t addr, int size );
  82. Because there is at least one device out there that uses its receive
  83. signal for its transmit clock reference, we need a mecanism to make the
  84. DMA "spin" on a certain buffer for when there is no more actual buffer to
  85. process.  The 'addr' argument is the physical memory address to use, and
  86. the 'size' argument determines the spin DMA chunk.  This size can't be
  87. larger than 8191 (if so, it is clamped to 4096).  When the size is 0,
  88. the spin function is turned off.
  89. When activated, DMA will "spin" until there is any buffer in the queue.
  90. The current DMA chunk will terminate before a newly queued buffer is
  91. processed.  The spin buffer will only be reused when there is no more
  92. acctual buffer to process.
  93. It is important not to choose a too small 'size' value since it will
  94. greatly increase the interrupt load required to restart the spin.  Since
  95. this feature will typically be used on transmit DMAs, and because a buffer
  96. full of zeros is probably the best thing to spin out, the 'addr' argument
  97. may well be used with FLUSH_BASE_PHYS for which no allocation nor memory
  98. bus request are needed.
  99. The spinning DMA is affected by sa1100_dma_stop() and sa1100_dma_resume()
  100. but not bu sa1100_dma_flush_all().
  101. void sa1100_free_dma( dmach_t channel );
  102. This clears all activities on a given DMA channel and releases it for
  103. future requests.
  104. Buffer allocation
  105. -----------------
  106. Like mentionned above, it is the driver's responsibility to allocate, free
  107. and keep track of buffer space with dma_addr_t type addresses. However the
  108. driver must not change the state of any buffer after it has been sent to
  109. sa1100-dma_queue_buffer().  When that function has been called, the buffer
  110. becomes the DMA's ownership until one of these events occur:
  111. - The callback function is called by the DMA code with a buffer ID to
  112.   indicate that DMA processing terminated on that buffer.  Then the
  113.   driver owns the buffer again.
  114. - The sa1100-dma_flush_all() function is called by the driver at which
  115.   point *all* queued buffers are owned by the driver again.
  116. - The sa1100-free_dma() does the same as sa1100-dma_flush_all().
  117. This doesn't mean that you can't change the content of a queued buffer in
  118. conjonction with the usage of pci_map_consistent() and
  119. sa1100_dma_get_current()... but then you must be sure you know what you're
  120. doing (this doesn't work with pci_map_single()).
  121. Examples
  122. --------
  123. A real example of audio ring buffers is implemented in the
  124. drivers/sound/sa1100-audio.c driver.  The SA1110 USB client and the
  125. SA11x0 FIR drivers are also using this interface to implement packetized
  126. DMA.
  127. A transmit DMA for network packets could look like this (largely simplified):
  128. struct sk_buff *tx_ring_skb[RING_SIZE];
  129. dma_addr_t      tx_ring_dma[RING_SIZE];
  130. int cur_tx;
  131. ...
  132. transmit function:
  133. tx_ring_skb[cur_tx] = skb;
  134. tx_ring_dma[cur_tx] = pci_map_single(NULL, skb->data, skb->len,
  135.                                      PCI_DMA_TODEVICE);
  136. sa1100_dma_queue_buffer(channel, (void*)cur_tx,
  137.                         tx_ring_dma[cur_tx], skb->len);
  138. cur_tx++; cur_tx %= RING_SIZE;
  139. ...
  140. and the callback function:
  141. void tx_done_callback( void *buf_id, int size ) {
  142. int done_tx = (int) buf_id;
  143. struct sk_buff *skb = tx_ring_skb[done_tx];
  144. pci_unmap_single(NULL, tx_ring_dma[done_tx], skb->len,
  145.                  PCI_DMA_TODEVICE);
  146. stats.tx_packets++;
  147. stats.tx_bytes += size;
  148. dev_kfree_skb_irq(skb);
  149. tx_ring_skb[done_tx] = NULL;
  150. }
  151. For drivers expecting variable length packets i.e. USB client, it is
  152. necessary to register the appropriate IRQ to be notified when the receiver
  153. is idle, the packet is complete, etc.  We could use one buffer at a time
  154. with its ID being the virtual address of the buffer.
  155. Then the sequence:
  156. /* be sure DMA won't continue under our feet */
  157. sa1100_dma_stop(channel);
  158. /* get the actual DMA length */
  159. sa1100_get_current(channel, &data, &dma_ptr);
  160. /* acquire ownership for the buffer */
  161. sa1100_dma_flush_all(channel);
  162. /* unmap the DMA buffer (actually doing cache coherency on ARM) */
  163. pci_unmap_single (NULL, dma_addr, MAX_PKT_SIZE, PCI_DMA_FROMDEVICE);
  164. /* get remaining bytes from the fifo */
  165. ptr = data + dma_ptr - dma_addr;
  166. while (fifo_not_empty)
  167. *ptr++ = get_byte_from_fifo;
  168. /* feed another free buffer for the next packet */
  169. dma_addr2 = pci_map_single(NULL, data2, MAX_PKT_SIZE,
  170. PCI_DMA_FROMDEVICE);
  171. sa1100_dma_queue_buffer(channel, data2, dma_addr2, MAX_PKT_SIZE);
  172. /* process the current packet */
  173. ...
  174. might do the trick.  This looks a bit ugly but that's a starting point for
  175. improvements.
  176. TODO
  177. ----
  178. - Create kernel-doc comments in the source to document the API and
  179.   let the documentation be generated automatically.