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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __i386_PCI_H
  2. #define __i386_PCI_H
  3. #include <linux/config.h>
  4. #ifdef __KERNEL__
  5. /* Can be used to override the logic in pci_scan_bus for skipping
  6.    already-configured bus numbers - to be used for buggy BIOSes
  7.    or architectures with incomplete PCI setup by the loader */
  8. #ifdef CONFIG_PCI
  9. extern unsigned int pcibios_assign_all_busses(void);
  10. #else
  11. #define pcibios_assign_all_busses() 0
  12. #endif
  13. extern unsigned long pci_mem_start;
  14. #define PCIBIOS_MIN_IO 0x1000
  15. #define PCIBIOS_MIN_MEM (pci_mem_start)
  16. void pcibios_set_master(struct pci_dev *dev);
  17. void pcibios_penalize_isa_irq(int irq);
  18. struct irq_routing_table *pcibios_get_irq_routing_table(void);
  19. int pcibios_set_irq_routing(struct pci_dev *dev, int pin, int irq);
  20. /* Dynamic DMA mapping stuff.
  21.  * i386 has everything mapped statically.
  22.  */
  23. #include <linux/types.h>
  24. #include <linux/slab.h>
  25. #include <asm/scatterlist.h>
  26. #include <linux/string.h>
  27. #include <asm/io.h>
  28. struct pci_dev;
  29. /* The PCI address space does equal the physical memory
  30.  * address space.  The networking and block device layers use
  31.  * this boolean for bounce buffer decisions.
  32.  */
  33. #define PCI_DMA_BUS_IS_PHYS (1)
  34. /* Allocate and map kernel buffer using consistent mode DMA for a device.
  35.  * hwdev should be valid struct pci_dev pointer for PCI devices,
  36.  * NULL for PCI-like buses (ISA, EISA).
  37.  * Returns non-NULL cpu-view pointer to the buffer if successful and
  38.  * sets *dma_addrp to the pci side dma address as well, else *dma_addrp
  39.  * is undefined.
  40.  */
  41. extern void *pci_alloc_consistent(struct pci_dev *hwdev, size_t size,
  42.   dma_addr_t *dma_handle);
  43. /* Free and unmap a consistent DMA buffer.
  44.  * cpu_addr is what was returned from pci_alloc_consistent,
  45.  * size must be the same as what as passed into pci_alloc_consistent,
  46.  * and likewise dma_addr must be the same as what *dma_addrp was set to.
  47.  *
  48.  * References to the memory and mappings associated with cpu_addr/dma_addr
  49.  * past this call are illegal.
  50.  */
  51. extern void pci_free_consistent(struct pci_dev *hwdev, size_t size,
  52. void *vaddr, dma_addr_t dma_handle);
  53. /* Map a single buffer of the indicated size for DMA in streaming mode.
  54.  * The 32-bit bus address to use is returned.
  55.  *
  56.  * Once the device is given the dma address, the device owns this memory
  57.  * until either pci_unmap_single or pci_dma_sync_single is performed.
  58.  */
  59. static inline dma_addr_t pci_map_single(struct pci_dev *hwdev, void *ptr,
  60. size_t size, int direction)
  61. {
  62. if (direction == PCI_DMA_NONE)
  63. out_of_line_bug();
  64. flush_write_buffers();
  65. return virt_to_bus(ptr);
  66. }
  67. /* Unmap a single streaming mode DMA translation.  The dma_addr and size
  68.  * must match what was provided for in a previous pci_map_single call.  All
  69.  * other usages are undefined.
  70.  *
  71.  * After this call, reads by the cpu to the buffer are guarenteed to see
  72.  * whatever the device wrote there.
  73.  */
  74. static inline void pci_unmap_single(struct pci_dev *hwdev, dma_addr_t dma_addr,
  75.     size_t size, int direction)
  76. {
  77. if (direction == PCI_DMA_NONE)
  78. out_of_line_bug();
  79. /* Nothing to do */
  80. }
  81. /*
  82.  * pci_{map,unmap}_single_page maps a kernel page to a dma_addr_t. identical
  83.  * to pci_map_single, but takes a struct page instead of a virtual address
  84.  */
  85. static inline dma_addr_t pci_map_page(struct pci_dev *hwdev, struct page *page,
  86.       unsigned long offset, size_t size, int direction)
  87. {
  88. if (direction == PCI_DMA_NONE)
  89. out_of_line_bug();
  90. return (dma_addr_t)(page - mem_map) * PAGE_SIZE + offset;
  91. }
  92. static inline void pci_unmap_page(struct pci_dev *hwdev, dma_addr_t dma_address,
  93.   size_t size, int direction)
  94. {
  95. if (direction == PCI_DMA_NONE)
  96. out_of_line_bug();
  97. /* Nothing to do */
  98. }
  99. /* pci_unmap_{page,single} is a nop so... */
  100. #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
  101. #define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
  102. #define pci_unmap_addr(PTR, ADDR_NAME) (0)
  103. #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
  104. #define pci_unmap_len(PTR, LEN_NAME) (0)
  105. #define pci_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
  106. /* Map a set of buffers described by scatterlist in streaming
  107.  * mode for DMA.  This is the scather-gather version of the
  108.  * above pci_map_single interface.  Here the scatter gather list
  109.  * elements are each tagged with the appropriate dma address
  110.  * and length.  They are obtained via sg_dma_{address,length}(SG).
  111.  *
  112.  * NOTE: An implementation may be able to use a smaller number of
  113.  *       DMA address/length pairs than there are SG table elements.
  114.  *       (for example via virtual mapping capabilities)
  115.  *       The routine returns the number of addr/length pairs actually
  116.  *       used, at most nents.
  117.  *
  118.  * Device ownership issues as mentioned above for pci_map_single are
  119.  * the same here.
  120.  */
  121. static inline int pci_map_sg(struct pci_dev *hwdev, struct scatterlist *sg,
  122.      int nents, int direction)
  123. {
  124. int i;
  125. if (direction == PCI_DMA_NONE)
  126. out_of_line_bug();
  127.  
  128.   /*
  129.    * temporary 2.4 hack
  130.    */
  131.   for (i = 0; i < nents; i++ ) {
  132.   if (sg[i].address && sg[i].page)
  133.   out_of_line_bug();
  134.   else if (!sg[i].address && !sg[i].page)
  135.   out_of_line_bug();
  136.  
  137.   if (sg[i].address)
  138.   sg[i].dma_address = virt_to_bus(sg[i].address);
  139.   else
  140.   sg[i].dma_address = page_to_bus(sg[i].page) + sg[i].offset;
  141.   }
  142.  
  143. flush_write_buffers();
  144. return nents;
  145. }
  146. /* Unmap a set of streaming mode DMA translations.
  147.  * Again, cpu read rules concerning calls here are the same as for
  148.  * pci_unmap_single() above.
  149.  */
  150. static inline void pci_unmap_sg(struct pci_dev *hwdev, struct scatterlist *sg,
  151. int nents, int direction)
  152. {
  153. if (direction == PCI_DMA_NONE)
  154. out_of_line_bug();
  155. /* Nothing to do */
  156. }
  157. /* Make physical memory consistent for a single
  158.  * streaming mode DMA translation after a transfer.
  159.  *
  160.  * If you perform a pci_map_single() but wish to interrogate the
  161.  * buffer using the cpu, yet do not wish to teardown the PCI dma
  162.  * mapping, you must call this function before doing so.  At the
  163.  * next point you give the PCI dma address back to the card, the
  164.  * device again owns the buffer.
  165.  */
  166. static inline void pci_dma_sync_single(struct pci_dev *hwdev,
  167.        dma_addr_t dma_handle,
  168.        size_t size, int direction)
  169. {
  170. if (direction == PCI_DMA_NONE)
  171. out_of_line_bug();
  172. flush_write_buffers();
  173. }
  174. /* Make physical memory consistent for a set of streaming
  175.  * mode DMA translations after a transfer.
  176.  *
  177.  * The same as pci_dma_sync_single but for a scatter-gather list,
  178.  * same rules and usage.
  179.  */
  180. static inline void pci_dma_sync_sg(struct pci_dev *hwdev,
  181.    struct scatterlist *sg,
  182.    int nelems, int direction)
  183. {
  184. if (direction == PCI_DMA_NONE)
  185. out_of_line_bug();
  186. flush_write_buffers();
  187. }
  188. /* Return whether the given PCI device DMA address mask can
  189.  * be supported properly.  For example, if your device can
  190.  * only drive the low 24-bits during PCI bus mastering, then
  191.  * you would pass 0x00ffffff as the mask to this function.
  192.  */
  193. static inline int pci_dma_supported(struct pci_dev *hwdev, u64 mask)
  194. {
  195.         /*
  196.          * we fall back to GFP_DMA when the mask isn't all 1s,
  197.          * so we can't guarantee allocations that must be
  198.          * within a tighter range than GFP_DMA..
  199.          */
  200.         if(mask < 0x00ffffff)
  201.                 return 0;
  202. return 1;
  203. }
  204. /* This is always fine. */
  205. #define pci_dac_dma_supported(pci_dev, mask) (1)
  206. static __inline__ dma64_addr_t
  207. pci_dac_page_to_dma(struct pci_dev *pdev, struct page *page, unsigned long offset, int direction)
  208. {
  209. return ((dma64_addr_t) page_to_bus(page) +
  210. (dma64_addr_t) offset);
  211. }
  212. static __inline__ struct page *
  213. pci_dac_dma_to_page(struct pci_dev *pdev, dma64_addr_t dma_addr)
  214. {
  215. unsigned long poff = (dma_addr >> PAGE_SHIFT);
  216. return mem_map + poff;
  217. }
  218. static __inline__ unsigned long
  219. pci_dac_dma_to_offset(struct pci_dev *pdev, dma64_addr_t dma_addr)
  220. {
  221. return (dma_addr & ~PAGE_MASK);
  222. }
  223. static __inline__ void
  224. pci_dac_dma_sync_single(struct pci_dev *pdev, dma64_addr_t dma_addr, size_t len, int direction)
  225. {
  226. flush_write_buffers();
  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.
  232.  */
  233. #define sg_dma_address(sg) ((sg)->dma_address)
  234. #define sg_dma_len(sg) ((sg)->length)
  235. /* Return the index of the PCI controller for device. */
  236. static inline int pci_controller_num(struct pci_dev *dev)
  237. {
  238. return 0;
  239. }
  240. #define HAVE_PCI_MMAP
  241. extern int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
  242.        enum pci_mmap_state mmap_state, int write_combine);
  243. #endif /* __KERNEL__ */
  244. #endif /* __i386_PCI_H */