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

嵌入式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. #if (defined(CONFIG_DDB5074) || defined(CONFIG_DDB5476))
  39. #undef PCIBIOS_MIN_IO
  40. #undef PCIBIOS_MIN_MEM
  41. #define PCIBIOS_MIN_IO 0x0100000
  42. #define PCIBIOS_MIN_MEM 0x1000000
  43. #endif
  44. struct pci_dev;
  45. /*
  46.  * Allocate and map kernel buffer using consistent mode DMA for a device.
  47.  * hwdev should be valid struct pci_dev pointer for PCI devices,
  48.  * NULL for PCI-like buses (ISA, EISA).
  49.  * Returns non-NULL cpu-view pointer to the buffer if successful and
  50.  * sets *dma_addrp to the pci side dma address as well, else *dma_addrp
  51.  * is undefined.
  52.  */
  53. extern void *pci_alloc_consistent(struct pci_dev *hwdev, size_t size,
  54.   dma_addr_t *dma_handle);
  55. /*
  56.  * Free and unmap a consistent DMA buffer.
  57.  * cpu_addr is what was returned from pci_alloc_consistent,
  58.  * size must be the same as what as passed into pci_alloc_consistent,
  59.  * and likewise dma_addr must be the same as what *dma_addrp was set to.
  60.  *
  61.  * References to the memory and mappings associated with cpu_addr/dma_addr
  62.  * past this call are illegal.
  63.  */
  64. extern void pci_free_consistent(struct pci_dev *hwdev, size_t size,
  65. void *vaddr, dma_addr_t dma_handle);
  66. /*
  67.  * Map a single buffer of the indicated size for DMA in streaming mode.
  68.  * The 32-bit bus address to use is returned.
  69.  *
  70.  * Once the device is given the dma address, the device owns this memory
  71.  * until either pci_unmap_single or pci_dma_sync_single is performed.
  72.  */
  73. extern inline dma_addr_t pci_map_single(struct pci_dev *hwdev, void *ptr,
  74. size_t size, int direction)
  75. {
  76. if (direction == PCI_DMA_NONE)
  77. BUG();
  78. #ifndef CONFIG_COHERENT_IO
  79. dma_cache_wback_inv((unsigned long)ptr, size);
  80. #endif
  81. return virt_to_bus(ptr);
  82. }
  83. /*
  84.  * Unmap a single streaming mode DMA translation.  The dma_addr and size
  85.  * must match what was provided for in a previous pci_map_single call.  All
  86.  * other usages are undefined.
  87.  *
  88.  * After this call, reads by the cpu to the buffer are guarenteed to see
  89.  * whatever the device wrote there.
  90.  */
  91. extern inline void pci_unmap_single(struct pci_dev *hwdev, dma_addr_t dma_addr,
  92.     size_t size, int direction)
  93. {
  94. if (direction == PCI_DMA_NONE)
  95. BUG();
  96. /* Nothing to do */
  97. }
  98. /* pci_unmap_{page,single} is a nop so... */
  99. #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
  100. #define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
  101. #define pci_unmap_addr(PTR, ADDR_NAME) (0)
  102. #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
  103. #define pci_unmap_len(PTR, LEN_NAME) (0)
  104. #define pci_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
  105. /*
  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. extern inline int pci_map_sg(struct pci_dev *hwdev, struct scatterlist *sg,
  122.      int nents, int direction)
  123. {
  124. #ifndef CONFIG_COHERENT_IO
  125. int i;
  126. #endif
  127. if (direction == PCI_DMA_NONE)
  128. BUG();
  129. #ifndef CONFIG_COHERENT_IO
  130. /* Make sure that gcc doesn't leave the empty loop body.  */
  131. for (i = 0; i < nents; i++, sg++)
  132. dma_cache_wback_inv((unsigned long)sg->address, sg->length);
  133. #endif
  134. return nents;
  135. }
  136. /*
  137.  * Unmap a set of streaming mode DMA translations.
  138.  * Again, cpu read rules concerning calls here are the same as for
  139.  * pci_unmap_single() above.
  140.  */
  141. extern inline void pci_unmap_sg(struct pci_dev *hwdev, struct scatterlist *sg,
  142. int nents, int direction)
  143. {
  144. if (direction == PCI_DMA_NONE)
  145. BUG();
  146. /* Nothing to do */
  147. }
  148. /*
  149.  * Make physical memory consistent for a single
  150.  * streaming mode DMA translation after a transfer.
  151.  *
  152.  * If you perform a pci_map_single() but wish to interrogate the
  153.  * buffer using the cpu, yet do not wish to teardown the PCI dma
  154.  * mapping, you must call this function before doing so.  At the
  155.  * next point you give the PCI dma address back to the card, the
  156.  * device again owns the buffer.
  157.  */
  158. extern inline void pci_dma_sync_single(struct pci_dev *hwdev,
  159.        dma_addr_t dma_handle,
  160.        size_t size, int direction)
  161. {
  162. if (direction == PCI_DMA_NONE)
  163. BUG();
  164. #ifndef CONFIG_COHERENT_IO
  165. dma_cache_wback_inv((unsigned long)bus_to_virt(dma_handle), size);
  166. #endif
  167. }
  168. /*
  169.  * Make physical memory consistent for a set of streaming
  170.  * mode DMA translations after a transfer.
  171.  *
  172.  * The same as pci_dma_sync_single but for a scatter-gather list,
  173.  * same rules and usage.
  174.  */
  175. extern inline void pci_dma_sync_sg(struct pci_dev *hwdev,
  176.    struct scatterlist *sg,
  177.    int nelems, int direction)
  178. {
  179. #ifndef CONFIG_COHERENT_IO
  180. int i;
  181. #endif
  182. if (direction == PCI_DMA_NONE)
  183. BUG();
  184. /* Make sure that gcc doesn't leave the empty loop body.  */
  185. #ifndef CONFIG_COHERENT_IO
  186. for (i = 0; i < nelems; i++, sg++)
  187. dma_cache_wback_inv((unsigned long)sg->address, sg->length);
  188. #endif
  189. }
  190. /* Return whether the given PCI device DMA address mask can
  191.  * be supported properly.  For example, if your device can
  192.  * only drive the low 24-bits during PCI bus mastering, then
  193.  * you would pass 0x00ffffff as the mask to this function.
  194.  */
  195. extern inline int pci_dma_supported(struct pci_dev *hwdev, u64 mask)
  196. {
  197. /*
  198.  * we fall back to GFP_DMA when the mask isn't all 1s,
  199.  * so we can't guarantee allocations that must be
  200.  * within a tighter range than GFP_DMA..
  201.  */
  202. if (mask < 0x1fffffff)
  203. return 0;
  204. return 1;
  205. }
  206. /* Return the index of the PCI controller for device. */
  207. #define pci_controller_num(pdev) (0)
  208. /*
  209.  * These macros should be used after a pci_map_sg call has been done
  210.  * to get bus addresses of each of the SG entries and their lengths.
  211.  * You should only work with the number of sg entries pci_map_sg
  212.  * returns, or alternatively stop on the first sg_dma_len(sg) which
  213.  * is 0.
  214.  */
  215. #define sg_dma_address(sg) (virt_to_bus((sg)->address))
  216. #define sg_dma_len(sg) ((sg)->length)
  217. #endif /* __KERNEL__ */
  218. #endif /* _ASM_PCI_H */