pci.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:6k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef ASMARM_PCI_H
  2. #define ASMARM_PCI_H
  3. #ifdef __KERNEL__
  4. #include <asm/arch/hardware.h>
  5. static inline void pcibios_set_master(struct pci_dev *dev)
  6. {
  7. /* No special bus mastering setup handling */
  8. }
  9. static inline void pcibios_penalize_isa_irq(int irq)
  10. {
  11. /* We don't do dynamic PCI IRQ allocation */
  12. }
  13. #include <asm/scatterlist.h>
  14. #include <asm/io.h>
  15. struct pci_dev;
  16. /* Allocate and map kernel buffer using consistent mode DMA for a device.
  17.  * hwdev should be valid struct pci_dev pointer for PCI devices,
  18.  * NULL for PCI-like buses (ISA, EISA).
  19.  * Returns non-NULL cpu-view pointer to the buffer if successful and
  20.  * sets *dma_addrp to the pci side dma address as well, else *dma_addrp
  21.  * is undefined.
  22.  */
  23. extern void *pci_alloc_consistent(struct pci_dev *hwdev, size_t size, dma_addr_t *handle);
  24. /* Free and unmap a consistent DMA buffer.
  25.  * cpu_addr is what was returned from pci_alloc_consistent,
  26.  * size must be the same as what as passed into pci_alloc_consistent,
  27.  * and likewise dma_addr must be the same as what *dma_addrp was set to.
  28.  *
  29.  * References to the memory and mappings associated with cpu_addr/dma_addr
  30.  * past this call are illegal.
  31.  */
  32. static inline void
  33. pci_free_consistent(struct pci_dev *hwdev, size_t size, void *vaddr,
  34.     dma_addr_t dma_handle)
  35. {
  36. consistent_free(vaddr, size, dma_handle);
  37. }
  38. /* Map a single buffer of the indicated size for DMA in streaming mode.
  39.  * The 32-bit bus address to use is returned.
  40.  *
  41.  * Once the device is given the dma address, the device owns this memory
  42.  * until either pci_unmap_single or pci_dma_sync_single is performed.
  43.  */
  44. static inline dma_addr_t
  45. pci_map_single(struct pci_dev *hwdev, void *ptr, size_t size, int direction)
  46. {
  47. #ifdef CONFIG_SA1111
  48. extern dma_addr_t sa1111_map_single(struct pci_dev *, void *, size_t, int);
  49. /*
  50.  * for SA1111 these functions are "magic" and relocate buffers.  We
  51.  * only need to do these if hwdev is non-null; otherwise we expect
  52.  * the buffer to already be suitable for DMA.
  53.  */
  54. if (hwdev != NULL)
  55. return sa1111_map_single(hwdev, ptr, size, direction);
  56. #endif
  57. consistent_sync(ptr, size, direction);
  58. return virt_to_bus(ptr);
  59. }
  60. /* Unmap a single streaming mode DMA translation.  The dma_addr and size
  61.  * must match what was provided for in a previous pci_map_single call.  All
  62.  * other usages are undefined.
  63.  *
  64.  * After this call, reads by the cpu to the buffer are guarenteed to see
  65.  * whatever the device wrote there.
  66.  */
  67. static inline void
  68. pci_unmap_single(struct pci_dev *hwdev, dma_addr_t dma_addr, size_t size, int direction)
  69. {
  70. #ifdef CONFIG_SA1111
  71. extern void sa1111_unmap_single(struct pci_dev *, dma_addr_t, size_t, int);
  72. if (hwdev != NULL)
  73. sa1111_unmap_single(hwdev, dma_addr, size, direction);
  74. #endif
  75. /* nothing to do */
  76. }
  77. /* Whether pci_unmap_{single,page} is a nop depends upon the
  78.  * configuration.
  79.  */
  80. #ifdef CONFIG_SA1111
  81. #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
  82. dma_addr_t ADDR_NAME;
  83. #define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
  84. __u32 LEN_NAME;
  85. #define pci_unmap_addr(PTR, ADDR_NAME)
  86. ((PTR)->ADDR_NAME)
  87. #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL)
  88. (((PTR)->ADDR_NAME) = (VAL))
  89. #define pci_unmap_len(PTR, LEN_NAME)
  90. ((PTR)->LEN_NAME)
  91. #define pci_unmap_len_set(PTR, LEN_NAME, VAL)
  92. (((PTR)->LEN_NAME) = (VAL))
  93. #else /* !(CONFIG_SA1111) */
  94. #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
  95. #define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
  96. #define pci_unmap_addr(PTR, ADDR_NAME) (0)
  97. #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
  98. #define pci_unmap_len(PTR, LEN_NAME) (0)
  99. #define pci_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
  100. #endif /* CONFIG_SA1111 */
  101. /* Map a set of buffers described by scatterlist in streaming
  102.  * mode for DMA.  This is the scather-gather version of the
  103.  * above pci_map_single interface.  Here the scatter gather list
  104.  * elements are each tagged with the appropriate dma address
  105.  * and length.  They are obtained via sg_dma_{address,length}(SG).
  106.  *
  107.  * NOTE: An implementation may be able to use a smaller number of
  108.  *       DMA address/length pairs than there are SG table elements.
  109.  *       (for example via virtual mapping capabilities)
  110.  *       The routine returns the number of addr/length pairs actually
  111.  *       used, at most nents.
  112.  *
  113.  * Device ownership issues as mentioned above for pci_map_single are
  114.  * the same here.
  115.  */
  116. static inline int
  117. pci_map_sg(struct pci_dev *hwdev, struct scatterlist *sg, int nents, int direction)
  118. {
  119. int i;
  120. for (i = 0; i < nents; i++, sg++) {
  121. consistent_sync(sg->address, sg->length, direction);
  122. sg->dma_address = virt_to_bus(sg->address);
  123. }
  124. return nents;
  125. }
  126. /* Unmap a set of streaming mode DMA translations.
  127.  * Again, cpu read rules concerning calls here are the same as for
  128.  * pci_unmap_single() above.
  129.  */
  130. static inline void
  131. pci_unmap_sg(struct pci_dev *hwdev, struct scatterlist *sg, int nents, int direction)
  132. {
  133. /* nothing to do */
  134. }
  135. /* Make physical memory consistent for a single
  136.  * streaming mode DMA translation after a transfer.
  137.  *
  138.  * If you perform a pci_map_single() but wish to interrogate the
  139.  * buffer using the cpu, yet do not wish to teardown the PCI dma
  140.  * mapping, you must call this function before doing so.  At the
  141.  * next point you give the PCI dma address back to the card, the
  142.  * device again owns the buffer.
  143.  */
  144. static inline void
  145. pci_dma_sync_single(struct pci_dev *hwdev, dma_addr_t dma_handle, size_t size, int direction)
  146. {
  147. consistent_sync(bus_to_virt(dma_handle), size, direction);
  148. }
  149. /* Make physical memory consistent for a set of streaming
  150.  * mode DMA translations after a transfer.
  151.  *
  152.  * The same as pci_dma_sync_single but for a scatter-gather list,
  153.  * same rules and usage.
  154.  */
  155. static inline void
  156. pci_dma_sync_sg(struct pci_dev *hwdev, struct scatterlist *sg, int nelems, int direction)
  157. {
  158. int i;
  159. for (i = 0; i < nelems; i++, sg++)
  160. consistent_sync(sg->address, sg->length, direction);
  161. }
  162. /* Return whether the given PCI device DMA address mask can
  163.  * be supported properly.  For example, if your device can
  164.  * only drive the low 24-bits during PCI bus mastering, then
  165.  * you would pass 0x00ffffff as the mask to this function.
  166.  */
  167. static inline int pci_dma_supported(struct pci_dev *hwdev, u64 mask)
  168. {
  169. return 1;
  170. }
  171. /* This isn't fine. */
  172. #define pci_dac_dma_supported(pci_dev, mask) (0)
  173. /* Return the index of the PCI controller for device PDEV. */
  174. #define pci_controller_num(PDEV) (0)
  175. #endif /* __KERNEL__ */
  176.  
  177. #endif