pci.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. #ifndef __x8664_PCI_H
  2. #define __x8664_PCI_H
  3. #include <asm/io.h>
  4. #ifdef __KERNEL__
  5. #include <linux/mm.h> /* for struct page */
  6. /* Can be used to override the logic in pci_scan_bus for skipping
  7. already-configured bus numbers - to be used for buggy BIOSes
  8. or architectures with incomplete PCI setup by the loader */
  9. #ifdef CONFIG_PCI
  10. extern unsigned int pcibios_assign_all_busses(void);
  11. #else
  12. #define pcibios_assign_all_busses() 0
  13. #endif
  14. #define pcibios_scan_all_fns(a, b) 0
  15. extern unsigned long pci_mem_start;
  16. #define PCIBIOS_MIN_IO 0x1000
  17. #define PCIBIOS_MIN_MEM (pci_mem_start)
  18. #define PCIBIOS_MIN_CARDBUS_IO 0x4000
  19. void pcibios_config_init(void);
  20. struct pci_bus * pcibios_scan_root(int bus);
  21. extern int (*pci_config_read)(int seg, int bus, int dev, int fn, int reg, int len, u32 *value);
  22. extern int (*pci_config_write)(int seg, int bus, int dev, int fn, int reg, int len, u32 value);
  23. void pcibios_set_master(struct pci_dev *dev);
  24. void pcibios_penalize_isa_irq(int irq, int active);
  25. struct irq_routing_table *pcibios_get_irq_routing_table(void);
  26. int pcibios_set_irq_routing(struct pci_dev *dev, int pin, int irq);
  27. #include <linux/types.h>
  28. #include <linux/slab.h>
  29. #include <asm/scatterlist.h>
  30. #include <linux/string.h>
  31. #include <asm/page.h>
  32. extern void pci_iommu_alloc(void);
  33. extern int iommu_setup(char *opt);
  34. /* The PCI address space does equal the physical memory
  35. * address space. The networking and block device layers use
  36. * this boolean for bounce buffer decisions
  37. *
  38. * On AMD64 it mostly equals, but we set it to zero if a hardware
  39. * IOMMU (gart) of sotware IOMMU (swiotlb) is available.
  40. */
  41. #define PCI_DMA_BUS_IS_PHYS (dma_ops->is_phys)
  42. #if defined(CONFIG_IOMMU) || defined(CONFIG_CALGARY_IOMMU)
  43. /*
  44. * x86-64 always supports DAC, but sometimes it is useful to force
  45. * devices through the IOMMU to get automatic sg list merging.
  46. * Optional right now.
  47. */
  48. extern int iommu_sac_force;
  49. #define pci_dac_dma_supported(pci_dev, mask) (!iommu_sac_force)
  50. #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) \
  51. dma_addr_t ADDR_NAME;
  52. #define DECLARE_PCI_UNMAP_LEN(LEN_NAME) \
  53. __u32 LEN_NAME;
  54. #define pci_unmap_addr(PTR, ADDR_NAME) \
  55. ((PTR)->ADDR_NAME)
  56. #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) \
  57. (((PTR)->ADDR_NAME) = (VAL))
  58. #define pci_unmap_len(PTR, LEN_NAME) \
  59. ((PTR)->LEN_NAME)
  60. #define pci_unmap_len_set(PTR, LEN_NAME, VAL) \
  61. (((PTR)->LEN_NAME) = (VAL))
  62. #else
  63. /* No IOMMU */
  64. #define pci_dac_dma_supported(pci_dev, mask) 1
  65. #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
  66. #define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
  67. #define pci_unmap_addr(PTR, ADDR_NAME) (0)
  68. #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
  69. #define pci_unmap_len(PTR, LEN_NAME) (0)
  70. #define pci_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
  71. #endif
  72. #include <asm-generic/pci-dma-compat.h>
  73. static inline dma64_addr_t
  74. pci_dac_page_to_dma(struct pci_dev *pdev, struct page *page, unsigned long offset, int direction)
  75. {
  76. return ((dma64_addr_t) page_to_phys(page) +
  77. (dma64_addr_t) offset);
  78. }
  79. static inline struct page *
  80. pci_dac_dma_to_page(struct pci_dev *pdev, dma64_addr_t dma_addr)
  81. {
  82. return virt_to_page(__va(dma_addr));
  83. }
  84. static inline unsigned long
  85. pci_dac_dma_to_offset(struct pci_dev *pdev, dma64_addr_t dma_addr)
  86. {
  87. return (dma_addr & ~PAGE_MASK);
  88. }
  89. static inline void
  90. pci_dac_dma_sync_single_for_cpu(struct pci_dev *pdev, dma64_addr_t dma_addr, size_t len, int direction)
  91. {
  92. }
  93. static inline void
  94. pci_dac_dma_sync_single_for_device(struct pci_dev *pdev, dma64_addr_t dma_addr, size_t len, int direction)
  95. {
  96. flush_write_buffers();
  97. }
  98. #ifdef CONFIG_PCI
  99. static inline void pci_dma_burst_advice(struct pci_dev *pdev,
  100. enum pci_dma_burst_strategy *strat,
  101. unsigned long *strategy_parameter)
  102. {
  103. *strat = PCI_DMA_BURST_INFINITY;
  104. *strategy_parameter = ~0UL;
  105. }
  106. #endif
  107. #define HAVE_PCI_MMAP
  108. extern int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
  109. enum pci_mmap_state mmap_state, int write_combine);
  110. static inline void pcibios_add_platform_entries(struct pci_dev *dev)
  111. {
  112. }
  113. #endif /* __KERNEL__ */
  114. /* generic pci stuff */
  115. #ifdef CONFIG_PCI
  116. #include <asm-generic/pci.h>
  117. #endif
  118. #endif /* __x8664_PCI_H */