pci.h 4.1 KB

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