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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __SPARC_PCI_H
  2. #define __SPARC_PCI_H
  3. #ifdef __KERNEL__
  4. /* Can be used to override the logic in pci_scan_bus for skipping
  5.  * already-configured bus numbers - to be used for buggy BIOSes
  6.  * or architectures with incomplete PCI setup by the loader.
  7.  */
  8. #define pcibios_assign_all_busses() 0
  9. #define PCIBIOS_MIN_IO 0UL
  10. #define PCIBIOS_MIN_MEM 0UL
  11. #define PCI_IRQ_NONE 0xffffffff
  12. extern inline void pcibios_set_master(struct pci_dev *dev)
  13. {
  14. /* No special bus mastering setup handling */
  15. }
  16. extern inline void pcibios_penalize_isa_irq(int irq)
  17. {
  18. /* We don't do dynamic PCI IRQ allocation */
  19. }
  20. /* Dynamic DMA mapping stuff.
  21.  */
  22. /* The PCI address space does not equal the physical memory
  23.  * address space.  The networking and block device layers use
  24.  * this boolean for bounce buffer decisions.
  25.  */
  26. #define PCI_DMA_BUS_IS_PHYS     (0)
  27. #include <asm/scatterlist.h>
  28. struct pci_dev;
  29. /* Allocate and map kernel buffer using consistent mode DMA for a device.
  30.  * hwdev should be valid struct pci_dev pointer for PCI devices.
  31.  */
  32. extern void *pci_alloc_consistent(struct pci_dev *hwdev, size_t size, dma_addr_t *dma_handle);
  33. /* Free and unmap a consistent DMA buffer.
  34.  * cpu_addr is what was returned from pci_alloc_consistent,
  35.  * size must be the same as what as passed into pci_alloc_consistent,
  36.  * and likewise dma_addr must be the same as what *dma_addrp was set to.
  37.  *
  38.  * References to the memory and mappings assosciated with cpu_addr/dma_addr
  39.  * past this call are illegal.
  40.  */
  41. extern void pci_free_consistent(struct pci_dev *hwdev, size_t size, void *vaddr, dma_addr_t dma_handle);
  42. /* Map a single buffer of the indicated size for DMA in streaming mode.
  43.  * The 32-bit bus address to use is returned.
  44.  *
  45.  * Once the device is given the dma address, the device owns this memory
  46.  * until either pci_unmap_single or pci_dma_sync_single is performed.
  47.  */
  48. extern dma_addr_t pci_map_single(struct pci_dev *hwdev, void *ptr, size_t size, int direction);
  49. /* Unmap a single streaming mode DMA translation.  The dma_addr and size
  50.  * must match what was provided for in a previous pci_map_single call.  All
  51.  * other usages are undefined.
  52.  *
  53.  * After this call, reads by the cpu to the buffer are guarenteed to see
  54.  * whatever the device wrote there.
  55.  */
  56. extern void pci_unmap_single(struct pci_dev *hwdev, dma_addr_t dma_addr, size_t size, int direction);
  57. /* pci_unmap_{single,page} is not a nop, thus... */
  58. #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
  59. dma_addr_t ADDR_NAME;
  60. #define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
  61. __u32 LEN_NAME;
  62. #define pci_unmap_addr(PTR, ADDR_NAME)
  63. ((PTR)->ADDR_NAME)
  64. #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL)
  65. (((PTR)->ADDR_NAME) = (VAL))
  66. #define pci_unmap_len(PTR, LEN_NAME)
  67. ((PTR)->LEN_NAME)
  68. #define pci_unmap_len_set(PTR, LEN_NAME, VAL)
  69. (((PTR)->LEN_NAME) = (VAL))
  70. /* Map a set of buffers described by scatterlist in streaming
  71.  * mode for DMA.  This is the scather-gather version of the
  72.  * above pci_map_single interface.  Here the scatter gather list
  73.  * elements are each tagged with the appropriate dma address
  74.  * and length.  They are obtained via sg_dma_{address,length}(SG).
  75.  *
  76.  * NOTE: An implementation may be able to use a smaller number of
  77.  *       DMA address/length pairs than there are SG table elements.
  78.  *       (for example via virtual mapping capabilities)
  79.  *       The routine returns the number of addr/length pairs actually
  80.  *       used, at most nents.
  81.  *
  82.  * Device ownership issues as mentioned above for pci_map_single are
  83.  * the same here.
  84.  */
  85. extern int pci_map_sg(struct pci_dev *hwdev, struct scatterlist *sg, int nents, int direction);
  86. /* Unmap a set of streaming mode DMA translations.
  87.  * Again, cpu read rules concerning calls here are the same as for
  88.  * pci_unmap_single() above.
  89.  */
  90. extern void pci_unmap_sg(struct pci_dev *hwdev, struct scatterlist *sg, int nhwents, int direction);
  91. /* Make physical memory consistent for a single
  92.  * streaming mode DMA translation after a transfer.
  93.  *
  94.  * If you perform a pci_map_single() but wish to interrogate the
  95.  * buffer using the cpu, yet do not wish to teardown the PCI dma
  96.  * mapping, you must call this function before doing so.  At the
  97.  * next point you give the PCI dma address back to the card, the
  98.  * device again owns the buffer.
  99.  */
  100. extern void pci_dma_sync_single(struct pci_dev *hwdev, dma_addr_t dma_handle, size_t size, int direction);
  101. /* Make physical memory consistent for a set of streaming
  102.  * mode DMA translations after a transfer.
  103.  *
  104.  * The same as pci_dma_sync_single but for a scatter-gather list,
  105.  * same rules and usage.
  106.  */
  107. extern void pci_dma_sync_sg(struct pci_dev *hwdev, struct scatterlist *sg, int nelems, int direction);
  108. /* Return whether the given PCI device DMA address mask can
  109.  * be supported properly.  For example, if your device can
  110.  * only drive the low 24-bits during PCI bus mastering, then
  111.  * you would pass 0x00ffffff as the mask to this function.
  112.  */
  113. extern inline int pci_dma_supported(struct pci_dev *hwdev, u64 mask)
  114. {
  115. return 1;
  116. }
  117. #define pci_dac_dma_supported(dev, mask) (0)
  118. /* Return the index of the PCI controller for device PDEV. */
  119. #define pci_controller_num(PDEV) (0)
  120. #endif /* __KERNEL__ */
  121. #endif /* __SPARC_PCI_H */