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

嵌入式Linux

开发平台:

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. #if defined(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. #elif defined(CONFIG_ARCH_S3C2410)
  57. extern dma_addr_t s3c2410_map_single(struct pci_dev *, void *, size_t, int);
  58. if (hwdev != NULL)
  59.         return s3c2410_map_single(hwdev, ptr, size, direction);
  60. #endif
  61. consistent_sync(ptr, size, direction);
  62. return virt_to_bus(ptr);
  63. }
  64. /* Unmap a single streaming mode DMA translation.  The dma_addr and size
  65.  * must match what was provided for in a previous pci_map_single call.  All
  66.  * other usages are undefined.
  67.  *
  68.  * After this call, reads by the cpu to the buffer are guarenteed to see
  69.  * whatever the device wrote there.
  70.  */
  71. static inline void
  72. pci_unmap_single(struct pci_dev *hwdev, dma_addr_t dma_addr, size_t size, int direction)
  73. {
  74. #if defined(CONFIG_SA1111)
  75. extern void sa1111_unmap_single(struct pci_dev *, dma_addr_t, size_t, int);
  76. if (hwdev != NULL)
  77. sa1111_unmap_single(hwdev, dma_addr, size, direction);
  78. #elif defined(CONFIG_ARCH_S3C2410)
  79. extern void s3c2410_unmap_single(struct pci_dev *, dma_addr_t, size_t, int);
  80. if (hwdev != NULL)
  81. s3c2410_unmap_single(hwdev, dma_addr, size, direction);
  82. #endif
  83. /* nothing to do */
  84. }
  85. /* Whether pci_unmap_{single,page} is a nop depends upon the
  86.  * configuration.
  87.  */
  88. #if defined(CONFIG_SA1111) || defined(CONFIG_ARCH_S3C2410)
  89. #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
  90. dma_addr_t ADDR_NAME;
  91. #define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
  92. __u32 LEN_NAME;
  93. #define pci_unmap_addr(PTR, ADDR_NAME)
  94. ((PTR)->ADDR_NAME)
  95. #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL)
  96. (((PTR)->ADDR_NAME) = (VAL))
  97. #define pci_unmap_len(PTR, LEN_NAME)
  98. ((PTR)->LEN_NAME)
  99. #define pci_unmap_len_set(PTR, LEN_NAME, VAL)
  100. (((PTR)->LEN_NAME) = (VAL))
  101. #else /* !(CONFIG_SA1111 || CONFIG_ARCH_S3C2410) */
  102. #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
  103. #define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
  104. #define pci_unmap_addr(PTR, ADDR_NAME) (0)
  105. #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
  106. #define pci_unmap_len(PTR, LEN_NAME) (0)
  107. #define pci_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
  108. #endif /* CONFIG_SA1111 */
  109. /* Map a set of buffers described by scatterlist in streaming
  110.  * mode for DMA.  This is the scather-gather version of the
  111.  * above pci_map_single interface.  Here the scatter gather list
  112.  * elements are each tagged with the appropriate dma address
  113.  * and length.  They are obtained via sg_dma_{address,length}(SG).
  114.  *
  115.  * NOTE: An implementation may be able to use a smaller number of
  116.  *       DMA address/length pairs than there are SG table elements.
  117.  *       (for example via virtual mapping capabilities)
  118.  *       The routine returns the number of addr/length pairs actually
  119.  *       used, at most nents.
  120.  *
  121.  * Device ownership issues as mentioned above for pci_map_single are
  122.  * the same here.
  123.  */
  124. static inline int
  125. pci_map_sg(struct pci_dev *hwdev, struct scatterlist *sg, int nents, int direction)
  126. {
  127. int i;
  128. for (i = 0; i < nents; i++, sg++) {
  129. consistent_sync(sg->address, sg->length, direction);
  130. sg->dma_address = virt_to_bus(sg->address);
  131. }
  132. return nents;
  133. }
  134. /* Unmap a set of streaming mode DMA translations.
  135.  * Again, cpu read rules concerning calls here are the same as for
  136.  * pci_unmap_single() above.
  137.  */
  138. static inline void
  139. pci_unmap_sg(struct pci_dev *hwdev, struct scatterlist *sg, int nents, int direction)
  140. {
  141. /* nothing to do */
  142. }
  143. /* Make physical memory consistent for a single
  144.  * streaming mode DMA translation after a transfer.
  145.  *
  146.  * If you perform a pci_map_single() but wish to interrogate the
  147.  * buffer using the cpu, yet do not wish to teardown the PCI dma
  148.  * mapping, you must call this function before doing so.  At the
  149.  * next point you give the PCI dma address back to the card, the
  150.  * device again owns the buffer.
  151.  */
  152. static inline void
  153. pci_dma_sync_single(struct pci_dev *hwdev, dma_addr_t dma_handle, size_t size, int direction)
  154. {
  155. consistent_sync(bus_to_virt(dma_handle), size, direction);
  156. }
  157. /* Make physical memory consistent for a set of streaming
  158.  * mode DMA translations after a transfer.
  159.  *
  160.  * The same as pci_dma_sync_single but for a scatter-gather list,
  161.  * same rules and usage.
  162.  */
  163. static inline void
  164. pci_dma_sync_sg(struct pci_dev *hwdev, struct scatterlist *sg, int nelems, int direction)
  165. {
  166. int i;
  167. for (i = 0; i < nelems; i++, sg++)
  168. consistent_sync(sg->address, sg->length, direction);
  169. }
  170. /* Return whether the given PCI device DMA address mask can
  171.  * be supported properly.  For example, if your device can
  172.  * only drive the low 24-bits during PCI bus mastering, then
  173.  * you would pass 0x00ffffff as the mask to this function.
  174.  */
  175. static inline int pci_dma_supported(struct pci_dev *hwdev, u64 mask)
  176. {
  177. return 1;
  178. }
  179. /* This isn't fine. */
  180. #define pci_dac_dma_supported(pci_dev, mask) (0)
  181. /* Return the index of the PCI controller for device PDEV. */
  182. #define pci_controller_num(PDEV) (0)
  183. #endif /* __KERNEL__ */
  184.  
  185. #endif