pci.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:10k
源码类别:

Linux/Unix编程

开发平台:

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. static inline void pcibios_set_master(struct pci_dev *dev)
  21. {
  22. /* No special bus mastering setup handling */
  23. }
  24. static 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/types.h>
  33. #include <linux/slab.h>
  34. #include <asm/scatterlist.h>
  35. #include <linux/string.h>
  36. #include <asm/io.h>
  37. #if (defined(CONFIG_DDB5074) || defined(CONFIG_DDB5476))
  38. #undef PCIBIOS_MIN_IO
  39. #undef PCIBIOS_MIN_MEM
  40. #define PCIBIOS_MIN_IO 0x0100000
  41. #define PCIBIOS_MIN_MEM 0x1000000
  42. #endif
  43. struct pci_dev;
  44. /*
  45.  * The PCI address space does equal the physical memory address space.  The
  46.  * networking and block device layers use this boolean for bounce buffer
  47.  * decisions.
  48.  */
  49. #define PCI_DMA_BUS_IS_PHYS (1)
  50. /*
  51.  * Allocate and map kernel buffer using consistent mode DMA for a device.
  52.  * hwdev should be valid struct pci_dev pointer for PCI devices,
  53.  * NULL for PCI-like buses (ISA, EISA).
  54.  * Returns non-NULL cpu-view pointer to the buffer if successful and
  55.  * sets *dma_addrp to the pci side dma address as well, else *dma_addrp
  56.  * is undefined.
  57.  */
  58. extern void *pci_alloc_consistent(struct pci_dev *hwdev, size_t size,
  59.   dma_addr_t *dma_handle);
  60. /*
  61.  * Free and unmap a consistent DMA buffer.
  62.  * cpu_addr is what was returned from pci_alloc_consistent,
  63.  * size must be the same as what as passed into pci_alloc_consistent,
  64.  * and likewise dma_addr must be the same as what *dma_addrp was set to.
  65.  *
  66.  * References to the memory and mappings associated with cpu_addr/dma_addr
  67.  * past this call are illegal.
  68.  */
  69. extern void pci_free_consistent(struct pci_dev *hwdev, size_t size,
  70. void *vaddr, dma_addr_t dma_handle);
  71. /*
  72.  * Map a single buffer of the indicated size for DMA in streaming mode.
  73.  * The 32-bit bus address to use is returned.
  74.  *
  75.  * Once the device is given the dma address, the device owns this memory
  76.  * until either pci_unmap_single or pci_dma_sync_single is performed.
  77.  */
  78. static inline dma_addr_t pci_map_single(struct pci_dev *hwdev, void *ptr,
  79. size_t size, int direction)
  80. {
  81. unsigned long addr = (unsigned long) ptr;
  82. if (direction == PCI_DMA_NONE)
  83. out_of_line_bug();
  84. dma_cache_wback_inv(addr, size);
  85. return bus_to_baddr(hwdev->bus->number, __pa(ptr));
  86. }
  87. /*
  88.  * Unmap a single streaming mode DMA translation.  The dma_addr and size
  89.  * must match what was provided for in a previous pci_map_single call.  All
  90.  * other usages are undefined.
  91.  *
  92.  * After this call, reads by the cpu to the buffer are guarenteed to see
  93.  * whatever the device wrote there.
  94.  */
  95. static inline void pci_unmap_single(struct pci_dev *hwdev, dma_addr_t dma_addr,
  96.     size_t size, int direction)
  97. {
  98. if (direction == PCI_DMA_NONE)
  99. out_of_line_bug();
  100. if (direction != PCI_DMA_TODEVICE) {
  101. unsigned long addr;
  102. addr = baddr_to_bus(hwdev, dma_addr) + PAGE_OFFSET;
  103. dma_cache_wback_inv(addr, size);
  104. }
  105. }
  106. /*
  107.  * pci_{map,unmap}_single_page maps a kernel page to a dma_addr_t. identical
  108.  * to pci_map_single, but takes a struct page instead of a virtual address
  109.  */
  110. static inline dma_addr_t pci_map_page(struct pci_dev *hwdev, struct page *page,
  111.       unsigned long offset, size_t size,
  112.                                       int direction)
  113. {
  114. unsigned long addr;
  115. if (direction == PCI_DMA_NONE)
  116. out_of_line_bug();
  117. addr = (unsigned long) page_address(page) + offset;
  118. dma_cache_wback_inv(addr, size);
  119. return bus_to_baddr(hwdev, page_to_phys(page) + offset);
  120. }
  121. static inline void pci_unmap_page(struct pci_dev *hwdev, dma_addr_t dma_address,
  122.   size_t size, int direction)
  123. {
  124. if (direction == PCI_DMA_NONE)
  125. out_of_line_bug();
  126. if (direction != PCI_DMA_TODEVICE) {
  127. unsigned long addr;
  128. addr = baddr_to_bus(hwdev, dma_address) + PAGE_OFFSET;
  129. dma_cache_wback_inv(addr, size);
  130. }
  131. }
  132. /* pci_unmap_{page,single} is a nop so... */
  133. #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
  134. #define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
  135. #define pci_unmap_addr(PTR, ADDR_NAME) (0)
  136. #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
  137. #define pci_unmap_len(PTR, LEN_NAME) (0)
  138. #define pci_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
  139. /*
  140.  * Map a set of buffers described by scatterlist in streaming
  141.  * mode for DMA.  This is the scather-gather version of the
  142.  * above pci_map_single interface.  Here the scatter gather list
  143.  * elements are each tagged with the appropriate dma address
  144.  * and length.  They are obtained via sg_dma_{address,length}(SG).
  145.  *
  146.  * NOTE: An implementation may be able to use a smaller number of
  147.  *       DMA address/length pairs than there are SG table elements.
  148.  *       (for example via virtual mapping capabilities)
  149.  *       The routine returns the number of addr/length pairs actually
  150.  *       used, at most nents.
  151.  *
  152.  * Device ownership issues as mentioned above for pci_map_single are
  153.  * the same here.
  154.  */
  155. static inline int pci_map_sg(struct pci_dev *hwdev, struct scatterlist *sg,
  156.      int nents, int direction)
  157. {
  158. int i;
  159. if (direction == PCI_DMA_NONE)
  160. out_of_line_bug();
  161. for (i = 0; i < nents; i++, sg++) {
  162. if (sg->address && sg->page)
  163. out_of_line_bug();
  164. else if (!sg->address && !sg->page)
  165. out_of_line_bug();
  166. if (sg->address) {
  167. dma_cache_wback_inv((unsigned long)sg->address,
  168.                     sg->length);
  169. sg->dma_address = bus_to_baddr(hwdev, __pa(sg->address));
  170. } else
  171. sg->dma_address = page_to_bus(sg->page) +
  172.                   sg->offset;
  173. }
  174. return nents;
  175. }
  176. /*
  177.  * Unmap a set of streaming mode DMA translations.
  178.  * Again, cpu read rules concerning calls here are the same as for
  179.  * pci_unmap_single() above.
  180.  */
  181. static inline void pci_unmap_sg(struct pci_dev *hwdev, struct scatterlist *sg,
  182. int nents, int direction)
  183. {
  184. int i;
  185. if (direction == PCI_DMA_NONE)
  186. out_of_line_bug();
  187. if (direction == PCI_DMA_TODEVICE)
  188. return;
  189. for (i = 0; i < nents; i++, sg++) {
  190. if (sg->address && sg->page)
  191. out_of_line_bug();
  192. else if (!sg->address && !sg->page)
  193. out_of_line_bug();
  194. if (!sg->address)
  195. continue;
  196. dma_cache_wback_inv((unsigned long)sg->address, sg->length);
  197. }
  198. }
  199. /*
  200.  * Make physical memory consistent for a single
  201.  * streaming mode DMA translation after a transfer.
  202.  *
  203.  * If you perform a pci_map_single() but wish to interrogate the
  204.  * buffer using the cpu, yet do not wish to teardown the PCI dma
  205.  * mapping, you must call this function before doing so.  At the
  206.  * next point you give the PCI dma address back to the card, the
  207.  * device again owns the buffer.
  208.  */
  209. static inline void pci_dma_sync_single(struct pci_dev *hwdev,
  210.        dma_addr_t dma_handle,
  211.        size_t size, int direction)
  212. {
  213. unsigned long addr;
  214. if (direction == PCI_DMA_NONE)
  215. out_of_line_bug();
  216. addr = baddr_to_bus(hwdev, dma_handle) + PAGE_OFFSET;
  217. dma_cache_wback_inv(addr, size);
  218. }
  219. /*
  220.  * Make physical memory consistent for a set of streaming
  221.  * mode DMA translations after a transfer.
  222.  *
  223.  * The same as pci_dma_sync_single but for a scatter-gather list,
  224.  * same rules and usage.
  225.  */
  226. static inline void pci_dma_sync_sg(struct pci_dev *hwdev,
  227.    struct scatterlist *sg,
  228.    int nelems, int direction)
  229. {
  230. #ifdef CONFIG_NONCOHERENT_IO
  231. int i;
  232. #endif
  233. if (direction == PCI_DMA_NONE)
  234. out_of_line_bug();
  235. /* Make sure that gcc doesn't leave the empty loop body.  */
  236. #ifdef CONFIG_NONCOHERENT_IO
  237. for (i = 0; i < nelems; i++, sg++)
  238. dma_cache_wback_inv((unsigned long)sg->address, sg->length);
  239. #endif
  240. }
  241. /*
  242.  * Return whether the given PCI device DMA address mask can
  243.  * be supported properly.  For example, if your device can
  244.  * only drive the low 24-bits during PCI bus mastering, then
  245.  * you would pass 0x00ffffff as the mask to this function.
  246.  */
  247. static inline int pci_dma_supported(struct pci_dev *hwdev, u64 mask)
  248. {
  249. /*
  250.  * we fall back to GFP_DMA when the mask isn't all 1s,
  251.  * so we can't guarantee allocations that must be
  252.  * within a tighter range than GFP_DMA..
  253.  */
  254. #ifdef CONFIG_ISA
  255. if (mask < 0x00ffffff)
  256. return 0;
  257. #endif
  258. return 1;
  259. }
  260. /* This is always fine. */
  261. #define pci_dac_dma_supported(pci_dev, mask) (1)
  262. static inline dma64_addr_t pci_dac_page_to_dma(struct pci_dev *pdev,
  263. struct page *page, unsigned long offset, int direction)
  264. {
  265. dma64_addr_t addr = page_to_phys(page) + offset;
  266. return (dma64_addr_t) bus_to_baddr(hwdev->bus->number, addr);
  267. }
  268. static inline struct page *pci_dac_dma_to_page(struct pci_dev *pdev,
  269. dma64_addr_t dma_addr)
  270. {
  271. unsigned long poff = baddr_to_bus(hwdev, dma_addr) >> PAGE_SHIFT;
  272. return mem_map + poff;
  273. }
  274. static inline unsigned long pci_dac_dma_to_offset(struct pci_dev *pdev,
  275. dma64_addr_t dma_addr)
  276. {
  277. return dma_addr & ~PAGE_MASK;
  278. }
  279. static inline void pci_dac_dma_sync_single(struct pci_dev *pdev,
  280. dma64_addr_t dma_addr, size_t len, int direction)
  281. {
  282. unsigned long addr;
  283. if (direction == PCI_DMA_NONE)
  284. BUG();
  285. addr = baddr_to_bus(hwdev->bus->number, dma_addr) + PAGE_OFFSET;
  286. dma_cache_wback_inv(addr, len);
  287. }
  288. /*
  289.  * Return the index of the PCI controller for device.
  290.  */
  291. #define pci_controller_num(pdev) (0)
  292. /*
  293.  * These macros should be used after a pci_map_sg call has been done
  294.  * to get bus addresses of each of the SG entries and their lengths.
  295.  * You should only work with the number of sg entries pci_map_sg
  296.  * returns, or alternatively stop on the first sg_dma_len(sg) which
  297.  * is 0.
  298.  */
  299. #define sg_dma_address(sg) ((sg)->dma_address)
  300. #define sg_dma_len(sg) ((sg)->length)
  301. #endif /* __KERNEL__ */
  302. #endif /* _ASM_PCI_H */