ip27-pci-dma.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Dynamic DMA mapping support.
  3.  *
  4.  * On the Origin there is dynamic DMA address translation for all PCI DMA.
  5.  * However we don't use this facility yet but rely on the 2gb direct
  6.  * mapped DMA window for PCI64.  So consistent alloc/free are merely page
  7.  * allocation/freeing.  The rest of the dynamic DMA mapping interface is
  8.  * implemented in <asm/pci.h>.  So this code will fail with more than
  9.  * 2gb of memory.
  10.  */
  11. #include <linux/types.h>
  12. #include <linux/mm.h>
  13. #include <linux/string.h>
  14. #include <linux/pci.h>
  15. #include <asm/io.h>
  16. /* Pure 2^n version of get_order */
  17. extern __inline__ int __get_order(unsigned long size)
  18. {
  19. int order;
  20. size = (size-1) >> (PAGE_SHIFT-1);
  21. order = -1;
  22. do {
  23. size >>= 1;
  24. order++;
  25. } while (size);
  26. return order;
  27. }
  28. void *pci_alloc_consistent(struct pci_dev *hwdev, size_t size,
  29.    dma_addr_t *dma_handle)
  30. {
  31. void *ret;
  32. int gfp = GFP_ATOMIC;
  33. int order = __get_order(size);
  34. if (hwdev == NULL || hwdev->dma_mask != 0xffffffff)
  35. gfp |= GFP_DMA;
  36. ret = (void *)__get_free_pages(gfp, order);
  37. if (ret != NULL) {
  38. memset(ret, 0, size);
  39. *dma_handle = (bus_to_baddr[hwdev->bus->number] | __pa(ret));
  40. }
  41. return ret;
  42. }
  43. void pci_free_consistent(struct pci_dev *hwdev, size_t size,
  44.  void *vaddr, dma_addr_t dma_handle)
  45. {
  46. free_pages((unsigned long)vaddr, __get_order(size));
  47. }
  48. /*
  49.  * Map a single buffer of the indicated size for DMA in streaming mode.
  50.  * The 32-bit bus address to use is returned.
  51.  *
  52.  * Once the device is given the dma address, the device owns this memory
  53.  * until either pci_unmap_single or pci_dma_sync_single is performed.
  54.  */
  55. dma_addr_t pci_map_single(struct pci_dev *hwdev, void *ptr, size_t size,
  56.                           int direction)
  57. {
  58. if (direction == PCI_DMA_NONE)
  59. BUG();
  60. return (bus_to_baddr[hwdev->bus->number] | __pa(ptr));
  61. }
  62. /*
  63.  * Unmap a single streaming mode DMA translation.  The dma_addr and size
  64.  * must match what was provided for in a previous pci_map_single call.  All
  65.  * other usages are undefined.
  66.  *
  67.  * After this call, reads by the cpu to the buffer are guarenteed to see
  68.  * whatever the device wrote there.
  69.  */
  70. void pci_unmap_single(struct pci_dev *hwdev, dma_addr_t dma_addr,
  71.                      size_t size, int direction)
  72. {
  73. if (direction == PCI_DMA_NONE)
  74. BUG();
  75. /* Nothing to do */
  76. }
  77. /*
  78.  * Map a set of buffers described by scatterlist in streaming
  79.  * mode for DMA.  This is the scather-gather version of the
  80.  * above pci_map_single interface.  Here the scatter gather list
  81.  * elements are each tagged with the appropriate dma address
  82.  * and length.  They are obtained via sg_dma_{address,length}(SG).
  83.  *
  84.  * NOTE: An implementation may be able to use a smaller number of
  85.  *       DMA address/length pairs than there are SG table elements.
  86.  *       (for example via virtual mapping capabilities)
  87.  *       The routine returns the number of addr/length pairs actually
  88.  *       used, at most nents.
  89.  *
  90.  * Device ownership issues as mentioned above for pci_map_single are
  91.  * the same here.
  92.  */
  93. int pci_map_sg(struct pci_dev *hwdev, struct scatterlist *sg, int nents,
  94.                int direction)
  95. {
  96. int i;
  97. if (direction == PCI_DMA_NONE)
  98. BUG();
  99. /* Make sure that gcc doesn't leave the empty loop body.  */
  100. for (i = 0; i < nents; i++, sg++) {
  101. sg->address = (char *)(bus_to_baddr[hwdev->bus->number] | __pa(sg->address));
  102. }
  103. return nents;
  104. }
  105. /*
  106.  * Unmap a set of streaming mode DMA translations.
  107.  * Again, cpu read rules concerning calls here are the same as for
  108.  * pci_unmap_single() above.
  109.  */
  110. void pci_unmap_sg(struct pci_dev *hwdev, struct scatterlist *sg, int nents,
  111.                   int direction)
  112. {
  113. if (direction == PCI_DMA_NONE)
  114. BUG();
  115. /* Nothing to do */
  116. }
  117. /*
  118.  * Make physical memory consistent for a single
  119.  * streaming mode DMA translation after a transfer.
  120.  *
  121.  * If you perform a pci_map_single() but wish to interrogate the
  122.  * buffer using the cpu, yet do not wish to teardown the PCI dma
  123.  * mapping, you must call this function before doing so.  At the
  124.  * next point you give the PCI dma address back to the card, the
  125.  * device again owns the buffer.
  126.  */
  127. void pci_dma_sync_single(struct pci_dev *hwdev, dma_addr_t dma_handle,
  128.                          size_t size, int direction)
  129. {
  130. if (direction == PCI_DMA_NONE)
  131. BUG();
  132. }
  133. /*
  134.  * Make physical memory consistent for a set of streaming
  135.  * mode DMA translations after a transfer.
  136.  *
  137.  * The same as pci_dma_sync_single but for a scatter-gather list,
  138.  * same rules and usage.
  139.  */
  140. void pci_dma_sync_sg(struct pci_dev *hwdev, struct scatterlist *sg,
  141.                      int nelems, int direction)
  142. {
  143. if (direction == PCI_DMA_NONE)
  144. BUG();
  145. }