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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __ALPHA_PCI_H
  2. #define __ALPHA_PCI_H
  3. #ifdef __KERNEL__
  4. #include <linux/spinlock.h>
  5. #include <asm/scatterlist.h>
  6. #include <asm/machvec.h>
  7. /*
  8.  * The following structure is used to manage multiple PCI busses.
  9.  */
  10. struct pci_dev;
  11. struct pci_bus;
  12. struct resource;
  13. struct pci_iommu_arena;
  14. struct page;
  15. /* A controller.  Used to manage multiple PCI busses.  */
  16. struct pci_controller {
  17. struct pci_controller *next;
  18.         struct pci_bus *bus;
  19. struct resource *io_space;
  20. struct resource *mem_space;
  21. /* The following are for reporting to userland.  The invariant is
  22.    that if we report a BWX-capable dense memory, we do not report
  23.    a sparse memory at all, even if it exists.  */
  24. unsigned long sparse_mem_base;
  25. unsigned long dense_mem_base;
  26. unsigned long sparse_io_base;
  27. unsigned long dense_io_base;
  28. /* This one's for the kernel only.  It's in KSEG somewhere.  */
  29. unsigned long config_space_base;
  30. unsigned int index;
  31. unsigned int first_busno;
  32. unsigned int last_busno;
  33. struct pci_iommu_arena *sg_pci;
  34. struct pci_iommu_arena *sg_isa;
  35. };
  36. /* Override the logic in pci_scan_bus for skipping already-configured
  37.    bus numbers.  */
  38. #define pcibios_assign_all_busses() 1
  39. #define PCIBIOS_MIN_IO alpha_mv.min_io_address
  40. #define PCIBIOS_MIN_MEM alpha_mv.min_mem_address
  41. extern void pcibios_set_master(struct pci_dev *dev);
  42. extern inline void pcibios_penalize_isa_irq(int irq)
  43. {
  44. /* We don't do dynamic PCI IRQ allocation */
  45. }
  46. /* IOMMU controls.  */
  47. /* The PCI address space does not equal the physical memory address space.
  48.    The networking and block device layers use this boolean for bounce buffer
  49.    decisions.  */
  50. #define PCI_DMA_BUS_IS_PHYS  0
  51. /* Allocate and map kernel buffer using consistant mode DMA for PCI
  52.    device.  Returns non-NULL cpu-view pointer to the buffer if
  53.    successful and sets *DMA_ADDRP to the pci side dma address as well,
  54.    else DMA_ADDRP is undefined.  */
  55. extern void *pci_alloc_consistent(struct pci_dev *, size_t, dma_addr_t *);
  56. /* Free and unmap a consistant DMA buffer.  CPU_ADDR and DMA_ADDR must
  57.    be values that were returned from pci_alloc_consistant.  SIZE must
  58.    be the same as what as passed into pci_alloc_consistant.
  59.    References to the memory and mappings assosciated with CPU_ADDR or
  60.    DMA_ADDR past this call are illegal.  */
  61. extern void pci_free_consistent(struct pci_dev *, size_t, void *, dma_addr_t);
  62. /* Map a single buffer of the indicate size for PCI DMA in streaming
  63.    mode.  The 32-bit PCI bus mastering address to use is returned.
  64.    Once the device is given the dma address, the device owns this memory
  65.    until either pci_unmap_single or pci_dma_sync_single is performed.  */
  66. extern dma_addr_t pci_map_single(struct pci_dev *, void *, size_t, int);
  67. /* Likewise, but for a page instead of an address.  */
  68. extern dma_addr_t pci_map_page(struct pci_dev *, struct page *,
  69.        unsigned long, size_t, int);
  70. /* Unmap a single streaming mode DMA translation.  The DMA_ADDR and
  71.    SIZE must match what was provided for in a previous pci_map_single
  72.    call.  All other usages are undefined.  After this call, reads by
  73.    the cpu to the buffer are guarenteed to see whatever the device
  74.    wrote there.  */
  75. extern void pci_unmap_single(struct pci_dev *, dma_addr_t, size_t, int);
  76. extern void pci_unmap_page(struct pci_dev *, dma_addr_t, size_t, int);
  77. /* pci_unmap_{single,page} is not a nop, thus... */
  78. #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
  79. dma_addr_t ADDR_NAME;
  80. #define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
  81. __u32 LEN_NAME;
  82. #define pci_unmap_addr(PTR, ADDR_NAME)
  83. ((PTR)->ADDR_NAME)
  84. #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL)
  85. (((PTR)->ADDR_NAME) = (VAL))
  86. #define pci_unmap_len(PTR, LEN_NAME)
  87. ((PTR)->LEN_NAME)
  88. #define pci_unmap_len_set(PTR, LEN_NAME, VAL)
  89. (((PTR)->LEN_NAME) = (VAL))
  90. /* Map a set of buffers described by scatterlist in streaming mode for
  91.    PCI DMA.  This is the scather-gather version of the above
  92.    pci_map_single interface.  Here the scatter gather list elements
  93.    are each tagged with the appropriate PCI dma address and length.
  94.    They are obtained via sg_dma_{address,length}(SG).
  95.    NOTE: An implementation may be able to use a smaller number of DMA
  96.    address/length pairs than there are SG table elements.  (for
  97.    example via virtual mapping capabilities) The routine returns the
  98.    number of addr/length pairs actually used, at most nents.
  99.    Device ownership issues as mentioned above for pci_map_single are
  100.    the same here.  */
  101. extern int pci_map_sg(struct pci_dev *, struct scatterlist *, int, int);
  102. /* Unmap a set of streaming mode DMA translations.  Again, cpu read
  103.    rules concerning calls here are the same as for pci_unmap_single()
  104.    above.  */
  105. extern void pci_unmap_sg(struct pci_dev *, struct scatterlist *, int, int);
  106. /* Make physical memory consistant for a single streaming mode DMA
  107.    translation after a transfer.
  108.    If you perform a pci_map_single() but wish to interrogate the
  109.    buffer using the cpu, yet do not wish to teardown the PCI dma
  110.    mapping, you must call this function before doing so.  At the next
  111.    point you give the PCI dma address back to the card, the device
  112.    again owns the buffer.  */
  113. static inline void
  114. pci_dma_sync_single(struct pci_dev *dev, dma_addr_t dma_addr, long size,
  115.     int direction)
  116. {
  117. /* Nothing to do.  */
  118. }
  119. /* Make physical memory consistant for a set of streaming mode DMA
  120.    translations after a transfer.  The same as pci_dma_sync_single but
  121.    for a scatter-gather list, same rules and usage.  */
  122. static inline void
  123. pci_dma_sync_sg(struct pci_dev *dev, struct scatterlist *sg, int nents,
  124.         int direction)
  125. {
  126. /* Nothing to do.  */
  127. }
  128. /* Return whether the given PCI device DMA address mask can
  129.    be supported properly.  For example, if your device can
  130.    only drive the low 24-bits during PCI bus mastering, then
  131.    you would pass 0x00ffffff as the mask to this function.  */
  132. extern int pci_dma_supported(struct pci_dev *hwdev, u64 mask);
  133. /* True if the machine supports DAC addressing, and DEV can
  134.    make use of it given MASK.  */
  135. extern int pci_dac_dma_supported(struct pci_dev *hwdev, u64 mask);
  136. /* Convert to/from DAC dma address and struct page.  */
  137. extern dma64_addr_t pci_dac_page_to_dma(struct pci_dev *, struct page *, unsigned long, int);
  138. extern struct page *pci_dac_dma_to_page(struct pci_dev *, dma64_addr_t);
  139. extern unsigned long pci_dac_dma_to_offset(struct pci_dev *, dma64_addr_t);
  140. static __inline__ void
  141. pci_dac_dma_sync_single(struct pci_dev *pdev, dma64_addr_t dma_addr, size_t len, int direction)
  142. {
  143. /* Nothing to do. */
  144. }
  145. /* Return the index of the PCI controller for device PDEV. */
  146. extern int pci_controller_num(struct pci_dev *pdev);
  147. #endif /* __KERNEL__ */
  148. /* Values for the `which' argument to sys_pciconfig_iobase.  */
  149. #define IOBASE_HOSE 0
  150. #define IOBASE_SPARSE_MEM 1
  151. #define IOBASE_DENSE_MEM 2
  152. #define IOBASE_SPARSE_IO 3
  153. #define IOBASE_DENSE_IO 4
  154. #define IOBASE_ROOT_BUS 5
  155. #define IOBASE_FROM_HOSE 0x10000
  156. #endif /* __ALPHA_PCI_H */