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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  */
  6. #ifndef _ASM_PCI_H
  7. #define _ASM_PCI_H
  8. #include <linux/config.h>
  9. #ifdef __KERNEL__
  10. /* Can be used to override the logic in pci_scan_bus for skipping
  11.    already-configured bus numbers - to be used for buggy BIOSes
  12.    or architectures with incomplete PCI setup by the loader */
  13. #ifdef CONFIG_PCI
  14. extern unsigned int pcibios_assign_all_busses(void);
  15. #else
  16. #define pcibios_assign_all_busses() 0
  17. #endif
  18. #define PCIBIOS_MIN_IO 0x1000
  19. #define PCIBIOS_MIN_MEM 0x10000000
  20. extern inline void pcibios_set_master(struct pci_dev *dev)
  21. {
  22. /* No special bus mastering setup handling */
  23. }
  24. extern inline void pcibios_penalize_isa_irq(int irq)
  25. {
  26. /* We don't do dynamic PCI IRQ allocation */
  27. }
  28. /*
  29.  * Dynamic DMA mapping stuff.
  30.  * MIPS has everything mapped statically.
  31.  */
  32. #include <linux/config.h>
  33. #include <linux/types.h>
  34. #include <linux/slab.h>
  35. #include <asm/scatterlist.h>
  36. #include <linux/string.h>
  37. #include <asm/io.h>
  38. struct pci_dev;
  39. /*
  40.  * Allocate and map kernel buffer using consistent mode DMA for a device.
  41.  * hwdev should be valid struct pci_dev pointer for PCI devices,
  42.  * NULL for PCI-like buses (ISA, EISA).
  43.  * Returns non-NULL cpu-view pointer to the buffer if successful and
  44.  * sets *dma_addrp to the pci side dma address as well, else *dma_addrp
  45.  * is undefined.
  46.  */
  47. extern void *pci_alloc_consistent(struct pci_dev *hwdev, size_t size,
  48.   dma_addr_t *dma_handle);
  49. /*
  50.  * Free and unmap a consistent DMA buffer.
  51.  * cpu_addr is what was returned from pci_alloc_consistent,
  52.  * size must be the same as what as passed into pci_alloc_consistent,
  53.  * and likewise dma_addr must be the same as what *dma_addrp was set to.
  54.  *
  55.  * References to the memory and mappings associated with cpu_addr/dma_addr
  56.  * past this call are illegal.
  57.  */
  58. extern void pci_free_consistent(struct pci_dev *hwdev, size_t size,
  59. void *vaddr, dma_addr_t dma_handle);
  60. #ifdef CONFIG_MAPPED_PCI_IO
  61. extern dma_addr_t pci_map_single(struct pci_dev *hwdev, void *ptr, size_t size,
  62.                                  int direction);
  63. extern void pci_unmap_single(struct pci_dev *hwdev, dma_addr_t dma_addr,
  64.                              size_t size, int direction);
  65. extern int pci_map_sg(struct pci_dev *hwdev, struct scatterlist *sg, int nents,
  66.                       int direction);
  67. extern void pci_unmap_sg(struct pci_dev *hwdev, struct scatterlist *sg,
  68.                          int nents, int direction);
  69. extern void pci_dma_sync_single(struct pci_dev *hwdev, dma_addr_t dma_handle,
  70.                                 size_t size, int direction);
  71. extern void pci_dma_sync_sg(struct pci_dev *hwdev, struct scatterlist *sg,
  72.                             int nelems, int direction);
  73. /* pci_unmap_{single,page} is not a nop, thus... */
  74. #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
  75. dma_addr_t ADDR_NAME;
  76. #define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
  77. __u32 LEN_NAME;
  78. #define pci_unmap_addr(PTR, ADDR_NAME)
  79. ((PTR)->ADDR_NAME)
  80. #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL)
  81. (((PTR)->ADDR_NAME) = (VAL))
  82. #define pci_unmap_len(PTR, LEN_NAME)
  83. ((PTR)->LEN_NAME)
  84. #define pci_unmap_len_set(PTR, LEN_NAME, VAL)
  85. (((PTR)->LEN_NAME) = (VAL))
  86. #else /* CONFIG_MAPPED_PCI_IO  */
  87. /*
  88.  * Map a single buffer of the indicated size for DMA in streaming mode.
  89.  * The 32-bit bus address to use is returned.
  90.  *
  91.  * Once the device is given the dma address, the device owns this memory
  92.  * until either pci_unmap_single or pci_dma_sync_single is performed.
  93.  */
  94. static inline dma_addr_t pci_map_single(struct pci_dev *hwdev, void *ptr,
  95. size_t size, int direction)
  96. {
  97. if (direction == PCI_DMA_NONE)
  98. BUG();
  99. #ifndef CONFIG_COHERENT_IO
  100. dma_cache_wback_inv((unsigned long)ptr, size);
  101. #endif
  102. return virt_to_bus(ptr);
  103. }
  104. /*
  105.  * Unmap a single streaming mode DMA translation.  The dma_addr and size
  106.  * must match what was provided for in a previous pci_map_single call.  All
  107.  * other usages are undefined.
  108.  *
  109.  * After this call, reads by the cpu to the buffer are guarenteed to see
  110.  * whatever the device wrote there.
  111.  */
  112. static inline void pci_unmap_single(struct pci_dev *hwdev, dma_addr_t dma_addr,
  113.     size_t size, int direction)
  114. {
  115. if (direction == PCI_DMA_NONE)
  116. BUG();
  117. /* Nothing to do */
  118. }
  119. /* pci_unmap_{page,single} is a nop so... */
  120. #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
  121. #define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
  122. #define pci_unmap_addr(PTR, ADDR_NAME) (0)
  123. #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
  124. #define pci_unmap_len(PTR, LEN_NAME) (0)
  125. #define pci_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
  126. /*
  127.  * Map a set of buffers described by scatterlist in streaming
  128.  * mode for DMA.  This is the scather-gather version of the
  129.  * above pci_map_single interface.  Here the scatter gather list
  130.  * elements are each tagged with the appropriate dma address
  131.  * and length.  They are obtained via sg_dma_{address,length}(SG).
  132.  *
  133.  * NOTE: An implementation may be able to use a smaller number of
  134.  *       DMA address/length pairs than there are SG table elements.
  135.  *       (for example via virtual mapping capabilities)
  136.  *       The routine returns the number of addr/length pairs actually
  137.  *       used, at most nents.
  138.  *
  139.  * Device ownership issues as mentioned above for pci_map_single are
  140.  * the same here.
  141.  */
  142. static inline int pci_map_sg(struct pci_dev *hwdev, struct scatterlist *sg,
  143.      int nents, int direction)
  144. {
  145. int i;
  146. if (direction == PCI_DMA_NONE)
  147. BUG();
  148. /* Make sure that gcc doesn't leave the empty loop body.  */
  149. for (i = 0; i < nents; i++, sg++) {
  150. #ifndef CONFIG_COHERENT_IO
  151. dma_cache_wback_inv((unsigned long)sg->address, sg->length);
  152. #endif
  153. sg->address = (char *)(bus_to_baddr[hwdev->bus->number] | __pa(sg->address));
  154. }
  155. return nents;
  156. }
  157. /*
  158.  * Unmap a set of streaming mode DMA translations.
  159.  * Again, cpu read rules concerning calls here are the same as for
  160.  * pci_unmap_single() above.
  161.  */
  162. static inline void pci_unmap_sg(struct pci_dev *hwdev, struct scatterlist *sg,
  163. int nents, int direction)
  164. {
  165. if (direction == PCI_DMA_NONE)
  166. BUG();
  167. /* Nothing to do */
  168. }
  169. /*
  170.  * Make physical memory consistent for a single
  171.  * streaming mode DMA translation after a transfer.
  172.  *
  173.  * If you perform a pci_map_single() but wish to interrogate the
  174.  * buffer using the cpu, yet do not wish to teardown the PCI dma
  175.  * mapping, you must call this function before doing so.  At the
  176.  * next point you give the PCI dma address back to the card, the
  177.  * device again owns the buffer.
  178.  */
  179. static inline void pci_dma_sync_single(struct pci_dev *hwdev,
  180.        dma_addr_t dma_handle,
  181.        size_t size, int direction)
  182. {
  183. if (direction == PCI_DMA_NONE)
  184. BUG();
  185. #ifndef CONFIG_COHERENT_IO
  186. dma_cache_wback_inv((unsigned long)__va(dma_handle - bus_to_baddr[hwdev->bus->number]), size);
  187. #endif
  188. }
  189. /*
  190.  * Make physical memory consistent for a set of streaming
  191.  * mode DMA translations after a transfer.
  192.  *
  193.  * The same as pci_dma_sync_single but for a scatter-gather list,
  194.  * same rules and usage.
  195.  */
  196. static inline void pci_dma_sync_sg(struct pci_dev *hwdev,
  197.    struct scatterlist *sg,
  198.    int nelems, int direction)
  199. {
  200. #ifndef CONFIG_COHERENT_IO
  201. int i;
  202. #endif
  203. if (direction == PCI_DMA_NONE)
  204. BUG();
  205. /*  Make sure that gcc doesn't leave the empty loop body.  */
  206. #ifndef CONFIG_COHERENT_IO
  207. for (i = 0; i < nelems; i++, sg++)
  208. dma_cache_wback_inv((unsigned long)sg->address, sg->length);
  209. #endif
  210. }
  211. #endif /* CONFIG_MAPPED_PCI_IO  */
  212. static inline int pci_dma_supported(struct pci_dev *hwdev, u64 mask)
  213. {
  214. /*
  215.  * we fall back to GFP_DMA when the mask isn't all 1s,
  216.  * so we can't guarantee allocations that must be
  217.  * within a tighter range than GFP_DMA..
  218.  */
  219. if (mask < 0x00ffffff)
  220. return 0;
  221. return 1;
  222. }
  223. /*
  224.  * Return the index of the PCI controller for device.
  225.  */
  226. #define pci_controller_num(pdev) (0)
  227. /*
  228.  * These macros should be used after a pci_map_sg call has been done
  229.  * to get bus addresses of each of the SG entries and their lengths.
  230.  * You should only work with the number of sg entries pci_map_sg
  231.  * returns, or alternatively stop on the first sg_dma_len(sg) which
  232.  * is 0.
  233.  */
  234. #define sg_dma_address(sg) ((unsigned long)((sg)->address))
  235. #define sg_dma_len(sg) ((sg)->length)
  236. #endif /* __KERNEL__ */
  237. #endif /* _ASM_PCI_H */