pci.h 9.0 KB

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