pci.h 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. #ifndef __ALPHA_PCI_H
  2. #define __ALPHA_PCI_H
  3. #ifdef __KERNEL__
  4. #include <linux/spinlock.h>
  5. #include <linux/dma-mapping.h>
  6. #include <asm/scatterlist.h>
  7. #include <asm/machvec.h>
  8. /*
  9. * The following structure is used to manage multiple PCI busses.
  10. */
  11. struct pci_dev;
  12. struct pci_bus;
  13. struct resource;
  14. struct pci_iommu_arena;
  15. struct page;
  16. /* A controller. Used to manage multiple PCI busses. */
  17. struct pci_controller {
  18. struct pci_controller *next;
  19. struct pci_bus *bus;
  20. struct resource *io_space;
  21. struct resource *mem_space;
  22. /* The following are for reporting to userland. The invariant is
  23. that if we report a BWX-capable dense memory, we do not report
  24. a sparse memory at all, even if it exists. */
  25. unsigned long sparse_mem_base;
  26. unsigned long dense_mem_base;
  27. unsigned long sparse_io_base;
  28. unsigned long dense_io_base;
  29. /* This one's for the kernel only. It's in KSEG somewhere. */
  30. unsigned long config_space_base;
  31. unsigned int index;
  32. /* For compatibility with current (as of July 2003) pciutils
  33. and XFree86. Eventually will be removed. */
  34. unsigned int need_domain_info;
  35. struct pci_iommu_arena *sg_pci;
  36. struct pci_iommu_arena *sg_isa;
  37. void *sysdata;
  38. };
  39. /* Override the logic in pci_scan_bus for skipping already-configured
  40. bus numbers. */
  41. #define pcibios_assign_all_busses() 1
  42. #define pcibios_scan_all_fns(a, b) 0
  43. #define PCIBIOS_MIN_IO alpha_mv.min_io_address
  44. #define PCIBIOS_MIN_MEM alpha_mv.min_mem_address
  45. extern void pcibios_set_master(struct pci_dev *dev);
  46. extern inline void pcibios_penalize_isa_irq(int irq, int active)
  47. {
  48. /* We don't do dynamic PCI IRQ allocation */
  49. }
  50. /* IOMMU controls. */
  51. /* The PCI address space does not equal the physical memory address space.
  52. The networking and block device layers use this boolean for bounce buffer
  53. decisions. */
  54. #define PCI_DMA_BUS_IS_PHYS 0
  55. /* Allocate and map kernel buffer using consistent mode DMA for PCI
  56. device. Returns non-NULL cpu-view pointer to the buffer if
  57. successful and sets *DMA_ADDRP to the pci side dma address as well,
  58. else DMA_ADDRP is undefined. */
  59. extern void *__pci_alloc_consistent(struct pci_dev *, size_t,
  60. dma_addr_t *, gfp_t);
  61. static inline void *
  62. pci_alloc_consistent(struct pci_dev *dev, size_t size, dma_addr_t *dma)
  63. {
  64. return __pci_alloc_consistent(dev, size, dma, GFP_ATOMIC);
  65. }
  66. /* Free and unmap a consistent DMA buffer. CPU_ADDR and DMA_ADDR must
  67. be values that were returned from pci_alloc_consistent. SIZE must
  68. be the same as what as passed into pci_alloc_consistent.
  69. References to the memory and mappings associated with CPU_ADDR or
  70. DMA_ADDR past this call are illegal. */
  71. extern void pci_free_consistent(struct pci_dev *, size_t, void *, dma_addr_t);
  72. /* Map a single buffer of the indicate size for PCI DMA in streaming mode.
  73. The 32-bit PCI bus mastering address to use is returned. Once the device
  74. is given the dma address, the device owns this memory until either
  75. pci_unmap_single or pci_dma_sync_single_for_cpu is performed. */
  76. extern dma_addr_t pci_map_single(struct pci_dev *, void *, size_t, int);
  77. /* Likewise, but for a page instead of an address. */
  78. extern dma_addr_t pci_map_page(struct pci_dev *, struct page *,
  79. unsigned long, size_t, int);
  80. /* Test for pci_map_single or pci_map_page having generated an error. */
  81. static inline int
  82. pci_dma_mapping_error(dma_addr_t dma_addr)
  83. {
  84. return dma_addr == 0;
  85. }
  86. /* Unmap a single streaming mode DMA translation. The DMA_ADDR and
  87. SIZE must match what was provided for in a previous pci_map_single
  88. call. All other usages are undefined. After this call, reads by
  89. the cpu to the buffer are guaranteed to see whatever the device
  90. wrote there. */
  91. extern void pci_unmap_single(struct pci_dev *, dma_addr_t, size_t, int);
  92. extern void pci_unmap_page(struct pci_dev *, dma_addr_t, size_t, int);
  93. /* pci_unmap_{single,page} is not a nop, thus... */
  94. #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) \
  95. dma_addr_t ADDR_NAME;
  96. #define DECLARE_PCI_UNMAP_LEN(LEN_NAME) \
  97. __u32 LEN_NAME;
  98. #define pci_unmap_addr(PTR, ADDR_NAME) \
  99. ((PTR)->ADDR_NAME)
  100. #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) \
  101. (((PTR)->ADDR_NAME) = (VAL))
  102. #define pci_unmap_len(PTR, LEN_NAME) \
  103. ((PTR)->LEN_NAME)
  104. #define pci_unmap_len_set(PTR, LEN_NAME, VAL) \
  105. (((PTR)->LEN_NAME) = (VAL))
  106. /* Map a set of buffers described by scatterlist in streaming mode for
  107. PCI DMA. This is the scatter-gather version of the above
  108. pci_map_single interface. Here the scatter gather list elements
  109. are each tagged with the appropriate PCI dma address and length.
  110. They are obtained via sg_dma_{address,length}(SG).
  111. NOTE: An implementation may be able to use a smaller number of DMA
  112. address/length pairs than there are SG table elements. (for
  113. example via virtual mapping capabilities) The routine returns the
  114. number of addr/length pairs actually used, at most nents.
  115. Device ownership issues as mentioned above for pci_map_single are
  116. the same here. */
  117. extern int pci_map_sg(struct pci_dev *, struct scatterlist *, int, int);
  118. /* Unmap a set of streaming mode DMA translations. Again, cpu read
  119. rules concerning calls here are the same as for pci_unmap_single()
  120. above. */
  121. extern void pci_unmap_sg(struct pci_dev *, struct scatterlist *, int, int);
  122. /* Make physical memory consistent for a single streaming mode DMA
  123. translation after a transfer and device currently has ownership
  124. of the buffer.
  125. If you perform a pci_map_single() but wish to interrogate the
  126. buffer using the cpu, yet do not wish to teardown the PCI dma
  127. mapping, you must call this function before doing so. At the next
  128. point you give the PCI dma address back to the card, you must first
  129. perform a pci_dma_sync_for_device, and then the device again owns
  130. the buffer. */
  131. static inline void
  132. pci_dma_sync_single_for_cpu(struct pci_dev *dev, dma_addr_t dma_addr,
  133. long size, int direction)
  134. {
  135. /* Nothing to do. */
  136. }
  137. static inline void
  138. pci_dma_sync_single_for_device(struct pci_dev *dev, dma_addr_t dma_addr,
  139. size_t size, int direction)
  140. {
  141. /* Nothing to do. */
  142. }
  143. /* Make physical memory consistent for a set of streaming mode DMA
  144. translations after a transfer. The same as pci_dma_sync_single_*
  145. but for a scatter-gather list, same rules and usage. */
  146. static inline void
  147. pci_dma_sync_sg_for_cpu(struct pci_dev *dev, struct scatterlist *sg,
  148. int nents, int direction)
  149. {
  150. /* Nothing to do. */
  151. }
  152. static inline void
  153. pci_dma_sync_sg_for_device(struct pci_dev *dev, struct scatterlist *sg,
  154. int nents, int direction)
  155. {
  156. /* Nothing to do. */
  157. }
  158. /* Return whether the given PCI device DMA address mask can
  159. be supported properly. For example, if your device can
  160. only drive the low 24-bits during PCI bus mastering, then
  161. you would pass 0x00ffffff as the mask to this function. */
  162. extern int pci_dma_supported(struct pci_dev *hwdev, u64 mask);
  163. #ifdef CONFIG_PCI
  164. static inline void pci_dma_burst_advice(struct pci_dev *pdev,
  165. enum pci_dma_burst_strategy *strat,
  166. unsigned long *strategy_parameter)
  167. {
  168. unsigned long cacheline_size;
  169. u8 byte;
  170. pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &byte);
  171. if (byte == 0)
  172. cacheline_size = 1024;
  173. else
  174. cacheline_size = (int) byte * 4;
  175. *strat = PCI_DMA_BURST_BOUNDARY;
  176. *strategy_parameter = cacheline_size;
  177. }
  178. #endif
  179. /* TODO: integrate with include/asm-generic/pci.h ? */
  180. static inline int pci_get_legacy_ide_irq(struct pci_dev *dev, int channel)
  181. {
  182. return channel ? 15 : 14;
  183. }
  184. extern void pcibios_resource_to_bus(struct pci_dev *, struct pci_bus_region *,
  185. struct resource *);
  186. extern void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
  187. struct pci_bus_region *region);
  188. static inline struct resource *
  189. pcibios_select_root(struct pci_dev *pdev, struct resource *res)
  190. {
  191. struct resource *root = NULL;
  192. if (res->flags & IORESOURCE_IO)
  193. root = &ioport_resource;
  194. if (res->flags & IORESOURCE_MEM)
  195. root = &iomem_resource;
  196. return root;
  197. }
  198. #define pci_domain_nr(bus) ((struct pci_controller *)(bus)->sysdata)->index
  199. static inline int pci_proc_domain(struct pci_bus *bus)
  200. {
  201. struct pci_controller *hose = bus->sysdata;
  202. return hose->need_domain_info;
  203. }
  204. struct pci_dev *alpha_gendev_to_pci(struct device *dev);
  205. #endif /* __KERNEL__ */
  206. /* Values for the `which' argument to sys_pciconfig_iobase. */
  207. #define IOBASE_HOSE 0
  208. #define IOBASE_SPARSE_MEM 1
  209. #define IOBASE_DENSE_MEM 2
  210. #define IOBASE_SPARSE_IO 3
  211. #define IOBASE_DENSE_IO 4
  212. #define IOBASE_ROOT_BUS 5
  213. #define IOBASE_FROM_HOSE 0x10000
  214. extern struct pci_dev *isa_bridge;
  215. #endif /* __ALPHA_PCI_H */