swiotlb.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:13k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Dynamic DMA mapping support.
  3.  *
  4.  * This implementation is for IA-64 platforms that do not support
  5.  * I/O TLBs (aka DMA address translation hardware).
  6.  * Copyright (C) 2000 Asit Mallick <Asit.K.Mallick@intel.com>
  7.  * Copyright (C) 2000 Goutham Rao <goutham.rao@intel.com>
  8.  *
  9.  * 00/12/13 davidm Rename to swiotlb.c and add mark_clean() to avoid
  10.  * unnecessary i-cache flushing.
  11.  */
  12. #include <linux/mm.h>
  13. #include <linux/module.h>
  14. #include <linux/pci.h>
  15. #include <linux/spinlock.h>
  16. #include <linux/string.h>
  17. #include <linux/types.h>
  18. #include <asm/io.h>
  19. #include <asm/pci.h>
  20. #include <asm/dma.h>
  21. #include <linux/init.h>
  22. #include <linux/bootmem.h>
  23. #define ALIGN(val, align) ((unsigned long)
  24. (((unsigned long) (val) + ((align) - 1)) & ~((align) - 1)))
  25. #define SG_ENT_VIRT_ADDRESS(sg) ((sg)->address ? (sg)->address
  26.  : page_address((sg)->page) + (sg)->offset)
  27. #define SG_ENT_PHYS_ADDRESS(SG) virt_to_phys(SG_ENT_VIRT_ADDRESS(SG))
  28. /*
  29.  * log of the size of each IO TLB slab.  The number of slabs is command line controllable.
  30.  */
  31. #define IO_TLB_SHIFT 11
  32. /*
  33.  * Used to do a quick range check in swiotlb_unmap_single and swiotlb_sync_single, to see
  34.  * if the memory was in fact allocated by this API.
  35.  */
  36. static char *io_tlb_start, *io_tlb_end;
  37. /*
  38.  * The number of IO TLB blocks (in groups of 64) betweeen io_tlb_start and io_tlb_end.
  39.  * This is command line adjustable via setup_io_tlb_npages.
  40.  */
  41. static unsigned long io_tlb_nslabs = 1024;
  42. /*
  43.  * This is a free list describing the number of free entries available from each index
  44.  */
  45. static unsigned int *io_tlb_list;
  46. static unsigned int io_tlb_index;
  47. /*
  48.  * We need to save away the original address corresponding to a mapped entry for the sync
  49.  * operations.
  50.  */
  51. static unsigned char **io_tlb_orig_addr;
  52. /*
  53.  * Protect the above data structures in the map and unmap calls
  54.  */
  55. static spinlock_t io_tlb_lock = SPIN_LOCK_UNLOCKED;
  56. static int __init
  57. setup_io_tlb_npages (char *str)
  58. {
  59. io_tlb_nslabs = simple_strtoul(str, NULL, 0) << (PAGE_SHIFT - IO_TLB_SHIFT);
  60. return 1;
  61. }
  62. __setup("swiotlb=", setup_io_tlb_npages);
  63. /*
  64.  * Statically reserve bounce buffer space and initialize bounce buffer data structures for
  65.  * the software IO TLB used to implement the PCI DMA API.
  66.  */
  67. void
  68. swiotlb_init (void)
  69. {
  70. int i;
  71. /*
  72.  * Get IO TLB memory from the low pages
  73.  */
  74. io_tlb_start = alloc_bootmem_low_pages(io_tlb_nslabs * (1 << IO_TLB_SHIFT));
  75. if (!io_tlb_start)
  76. BUG();
  77. io_tlb_end = io_tlb_start + io_tlb_nslabs * (1 << IO_TLB_SHIFT);
  78. /*
  79.  * Allocate and initialize the free list array.  This array is used
  80.  * to find contiguous free memory regions of size 2^IO_TLB_SHIFT between
  81.  * io_tlb_start and io_tlb_end.
  82.  */
  83. io_tlb_list = alloc_bootmem(io_tlb_nslabs * sizeof(int));
  84. for (i = 0; i < io_tlb_nslabs; i++)
  85. io_tlb_list[i] = io_tlb_nslabs - i;
  86. io_tlb_index = 0;
  87. io_tlb_orig_addr = alloc_bootmem(io_tlb_nslabs * sizeof(char *));
  88. printk("Placing software IO TLB between 0x%p - 0x%pn",
  89.        (void *) io_tlb_start, (void *) io_tlb_end);
  90. }
  91. /*
  92.  * Allocates bounce buffer and returns its kernel virtual address.
  93.  */
  94. static void *
  95. map_single (struct pci_dev *hwdev, char *buffer, size_t size, int direction)
  96. {
  97. unsigned long flags;
  98. char *dma_addr;
  99. unsigned int nslots, stride, index, wrap;
  100. int i;
  101. /*
  102.  * For mappings greater than a page size, we limit the stride (and hence alignment)
  103.  * to a page size.
  104.  */
  105. nslots = ALIGN(size, 1 << IO_TLB_SHIFT) >> IO_TLB_SHIFT;
  106. if (size > (1 << PAGE_SHIFT))
  107. stride = (1 << (PAGE_SHIFT - IO_TLB_SHIFT));
  108. else
  109. stride = nslots;
  110. if (!nslots)
  111. BUG();
  112. /*
  113.  * Find suitable number of IO TLB entries size that will fit this request and
  114.  * allocate a buffer from that IO TLB pool.
  115.  */
  116. spin_lock_irqsave(&io_tlb_lock, flags);
  117. {
  118. wrap = index = ALIGN(io_tlb_index, stride);
  119. if (index >= io_tlb_nslabs)
  120. wrap = index = 0;
  121. do {
  122. /*
  123.  * If we find a slot that indicates we have 'nslots' number of
  124.  * contiguous buffers, we allocate the buffers from that slot and
  125.  * mark the entries as '0' indicating unavailable.
  126.  */
  127. if (io_tlb_list[index] >= nslots) {
  128. int count = 0;
  129. for (i = index; i < index + nslots; i++)
  130. io_tlb_list[i] = 0;
  131. for (i = index - 1; (i >= 0) && io_tlb_list[i]; i--)
  132. io_tlb_list[i] = ++count;
  133. dma_addr = io_tlb_start + (index << IO_TLB_SHIFT);
  134. /*
  135.  * Update the indices to avoid searching in the next round.
  136.  */
  137. io_tlb_index = ((index + nslots) < io_tlb_nslabs
  138. ? (index + nslots) : 0);
  139. goto found;
  140. }
  141. index += stride;
  142. if (index >= io_tlb_nslabs)
  143. index = 0;
  144. } while (index != wrap);
  145. /*
  146.  * XXX What is a suitable recovery mechanism here?  We cannot
  147.  * sleep because we are called from with in interrupts!
  148.  */
  149. panic("map_single: could not allocate software IO TLB (%ld bytes)", size);
  150. }
  151.   found:
  152. spin_unlock_irqrestore(&io_tlb_lock, flags);
  153. /*
  154.  * Save away the mapping from the original address to the DMA address.  This is
  155.  * needed when we sync the memory.  Then we sync the buffer if needed.
  156.  */
  157. io_tlb_orig_addr[index] = buffer;
  158. if (direction == PCI_DMA_TODEVICE || direction == PCI_DMA_BIDIRECTIONAL)
  159. memcpy(dma_addr, buffer, size);
  160. return dma_addr;
  161. }
  162. /*
  163.  * dma_addr is the kernel virtual address of the bounce buffer to unmap.
  164.  */
  165. static void
  166. unmap_single (struct pci_dev *hwdev, char *dma_addr, size_t size, int direction)
  167. {
  168. unsigned long flags;
  169. int i, nslots = ALIGN(size, 1 << IO_TLB_SHIFT) >> IO_TLB_SHIFT;
  170. int index = (dma_addr - io_tlb_start) >> IO_TLB_SHIFT;
  171. char *buffer = io_tlb_orig_addr[index];
  172. /*
  173.  * First, sync the memory before unmapping the entry
  174.  */
  175. if ((direction == PCI_DMA_FROMDEVICE) || (direction == PCI_DMA_BIDIRECTIONAL))
  176. /*
  177.  * bounce... copy the data back into the original buffer * and delete the
  178.  * bounce buffer.
  179.  */
  180. memcpy(buffer, dma_addr, size);
  181. /*
  182.  * Return the buffer to the free list by setting the corresponding entries to
  183.  * indicate the number of contigous entries available.  While returning the
  184.  * entries to the free list, we merge the entries with slots below and above the
  185.  * pool being returned.
  186.  */
  187. spin_lock_irqsave(&io_tlb_lock, flags);
  188. {
  189. int count = ((index + nslots) < io_tlb_nslabs ? io_tlb_list[index + nslots] : 0);
  190. /*
  191.  * Step 1: return the slots to the free list, merging the slots with
  192.  * superceeding slots
  193.  */
  194. for (i = index + nslots - 1; i >= index; i--)
  195. io_tlb_list[i] = ++count;
  196. /*
  197.  * Step 2: merge the returned slots with the preceeding slots, if
  198.  * available (non zero)
  199.  */
  200. for (i = index - 1; (i >= 0) && io_tlb_list[i]; i--)
  201. io_tlb_list[i] = ++count;
  202. }
  203. spin_unlock_irqrestore(&io_tlb_lock, flags);
  204. }
  205. static void
  206. sync_single (struct pci_dev *hwdev, char *dma_addr, size_t size, int direction)
  207. {
  208. int index = (dma_addr - io_tlb_start) >> IO_TLB_SHIFT;
  209. char *buffer = io_tlb_orig_addr[index];
  210. /*
  211.  * bounce... copy the data back into/from the original buffer
  212.  * XXX How do you handle PCI_DMA_BIDIRECTIONAL here ?
  213.  */
  214. if (direction == PCI_DMA_FROMDEVICE)
  215. memcpy(buffer, dma_addr, size);
  216. else if (direction == PCI_DMA_TODEVICE)
  217. memcpy(dma_addr, buffer, size);
  218. else
  219. BUG();
  220. }
  221. void *
  222. swiotlb_alloc_consistent (struct pci_dev *hwdev, size_t size, dma_addr_t *dma_handle)
  223. {
  224. unsigned long pci_addr;
  225. int gfp = GFP_ATOMIC;
  226. void *ret;
  227. if (!hwdev || hwdev->dma_mask <= 0xffffffff)
  228. gfp |= GFP_DMA; /* XXX fix me: should change this to GFP_32BIT or ZONE_32BIT */
  229. ret = (void *)__get_free_pages(gfp, get_order(size));
  230. if (!ret)
  231. return NULL;
  232. memset(ret, 0, size);
  233. pci_addr = virt_to_phys(ret);
  234. if (hwdev && (pci_addr & ~hwdev->dma_mask) != 0)
  235. panic("swiotlb_alloc_consistent: allocated memory is out of range for PCI device");
  236. *dma_handle = pci_addr;
  237. return ret;
  238. }
  239. void
  240. swiotlb_free_consistent (struct pci_dev *hwdev, size_t size, void *vaddr, dma_addr_t dma_handle)
  241. {
  242. free_pages((unsigned long) vaddr, get_order(size));
  243. }
  244. /*
  245.  * Map a single buffer of the indicated size for DMA in streaming mode.  The PCI address
  246.  * to use is returned.
  247.  *
  248.  * Once the device is given the dma address, the device owns this memory until either
  249.  * swiotlb_unmap_single or swiotlb_dma_sync_single is performed.
  250.  */
  251. dma_addr_t
  252. swiotlb_map_single (struct pci_dev *hwdev, void *ptr, size_t size, int direction)
  253. {
  254. unsigned long pci_addr = virt_to_phys(ptr);
  255. if (direction == PCI_DMA_NONE)
  256. BUG();
  257. /*
  258.  * Check if the PCI device can DMA to ptr... if so, just return ptr
  259.  */
  260. if ((pci_addr & ~hwdev->dma_mask) == 0)
  261. /*
  262.  * Device is bit capable of DMA'ing to the buffer... just return the PCI
  263.  * address of ptr
  264.  */
  265. return pci_addr;
  266. /*
  267.  * get a bounce buffer:
  268.  */
  269. pci_addr = virt_to_phys(map_single(hwdev, ptr, size, direction));
  270. /*
  271.  * Ensure that the address returned is DMA'ble:
  272.  */
  273. if ((pci_addr & ~hwdev->dma_mask) != 0)
  274. panic("map_single: bounce buffer is not DMA'ble");
  275. return pci_addr;
  276. }
  277. /*
  278.  * Since DMA is i-cache coherent, any (complete) pages that were written via
  279.  * DMA can be marked as "clean" so that update_mmu_cache() doesn't have to
  280.  * flush them when they get mapped into an executable vm-area.
  281.  */
  282. static void
  283. mark_clean (void *addr, size_t size)
  284. {
  285. unsigned long pg_addr, end;
  286. pg_addr = PAGE_ALIGN((unsigned long) addr);
  287. end = (unsigned long) addr + size;
  288. while (pg_addr + PAGE_SIZE <= end) {
  289. struct page *page = virt_to_page(pg_addr);
  290. set_bit(PG_arch_1, &page->flags);
  291. pg_addr += PAGE_SIZE;
  292. }
  293. }
  294. /*
  295.  * Unmap a single streaming mode DMA translation.  The dma_addr and size must match what
  296.  * was provided for in a previous swiotlb_map_single call.  All other usages are
  297.  * undefined.
  298.  *
  299.  * After this call, reads by the cpu to the buffer are guarenteed to see whatever the
  300.  * device wrote there.
  301.  */
  302. void
  303. swiotlb_unmap_single (struct pci_dev *hwdev, dma_addr_t pci_addr, size_t size, int direction)
  304. {
  305. char *dma_addr = phys_to_virt(pci_addr);
  306. if (direction == PCI_DMA_NONE)
  307. BUG();
  308. if (dma_addr >= io_tlb_start && dma_addr < io_tlb_end)
  309. unmap_single(hwdev, dma_addr, size, direction);
  310. else if (direction == PCI_DMA_FROMDEVICE)
  311. mark_clean(dma_addr, size);
  312. }
  313. /*
  314.  * Make physical memory consistent for a single streaming mode DMA translation after a
  315.  * transfer.
  316.  *
  317.  * If you perform a swiotlb_map_single() but wish to interrogate the buffer using the cpu,
  318.  * yet do not wish to teardown the PCI dma mapping, you must call this function before
  319.  * doing so.  At the next point you give the PCI dma address back to the card, the device
  320.  * again owns the buffer.
  321.  */
  322. void
  323. swiotlb_sync_single (struct pci_dev *hwdev, dma_addr_t pci_addr, size_t size, int direction)
  324. {
  325. char *dma_addr = phys_to_virt(pci_addr);
  326. if (direction == PCI_DMA_NONE)
  327. BUG();
  328. if (dma_addr >= io_tlb_start && dma_addr < io_tlb_end)
  329. sync_single(hwdev, dma_addr, size, direction);
  330. else if (direction == PCI_DMA_FROMDEVICE)
  331. mark_clean(dma_addr, size);
  332. }
  333. /*
  334.  * Map a set of buffers described by scatterlist in streaming mode for DMA.  This is the
  335.  * scather-gather version of the above swiotlb_map_single interface.  Here the scatter
  336.  * gather list elements are each tagged with the appropriate dma address and length.  They
  337.  * are obtained via sg_dma_{address,length}(SG).
  338.  *
  339.  * NOTE: An implementation may be able to use a smaller number of
  340.  *       DMA address/length pairs than there are SG table elements.
  341.  *       (for example via virtual mapping capabilities)
  342.  *       The routine returns the number of addr/length pairs actually
  343.  *       used, at most nents.
  344.  *
  345.  * Device ownership issues as mentioned above for swiotlb_map_single are the same here.
  346.  */
  347. int
  348. swiotlb_map_sg (struct pci_dev *hwdev, struct scatterlist *sg, int nelems, int direction)
  349. {
  350. void *addr;
  351. int i;
  352. if (direction == PCI_DMA_NONE)
  353. BUG();
  354. for (i = 0; i < nelems; i++, sg++) {
  355. sg->orig_address = SG_ENT_VIRT_ADDRESS(sg);
  356. if ((SG_ENT_PHYS_ADDRESS(sg) & ~hwdev->dma_mask) != 0) {
  357. addr = map_single(hwdev, sg->address, sg->length, direction);
  358. if (sg->address)
  359. sg->address = addr;
  360. else
  361. sg->page = virt_to_page(addr);
  362. }
  363. }
  364. return nelems;
  365. }
  366. /*
  367.  * Unmap a set of streaming mode DMA translations.  Again, cpu read rules concerning calls
  368.  * here are the same as for swiotlb_unmap_single() above.
  369.  */
  370. void
  371. swiotlb_unmap_sg (struct pci_dev *hwdev, struct scatterlist *sg, int nelems, int direction)
  372. {
  373. int i;
  374. if (direction == PCI_DMA_NONE)
  375. BUG();
  376. for (i = 0; i < nelems; i++, sg++)
  377. if (sg->orig_address != SG_ENT_VIRT_ADDRESS(sg)) {
  378. unmap_single(hwdev, SG_ENT_VIRT_ADDRESS(sg), sg->length, direction);
  379. if (sg->address)
  380. sg->address = sg->orig_address;
  381. else
  382. sg->page = virt_to_page(sg->orig_address);
  383. } else if (direction == PCI_DMA_FROMDEVICE)
  384. mark_clean(sg->address, sg->length);
  385. }
  386. /*
  387.  * Make physical memory consistent for a set of streaming mode DMA translations after a
  388.  * transfer.
  389.  *
  390.  * The same as swiotlb_dma_sync_single but for a scatter-gather list, same rules and
  391.  * usage.
  392.  */
  393. void
  394. swiotlb_sync_sg (struct pci_dev *hwdev, struct scatterlist *sg, int nelems, int direction)
  395. {
  396. int i;
  397. if (direction == PCI_DMA_NONE)
  398. BUG();
  399. for (i = 0; i < nelems; i++, sg++)
  400. if (sg->orig_address != SG_ENT_VIRT_ADDRESS(sg))
  401. sync_single(hwdev, SG_ENT_VIRT_ADDRESS(sg), sg->length, direction);
  402. }
  403. unsigned long
  404. swiotlb_dma_address (struct scatterlist *sg)
  405. {
  406. return SG_ENT_PHYS_ADDRESS(sg);
  407. }
  408. EXPORT_SYMBOL(swiotlb_init);
  409. EXPORT_SYMBOL(swiotlb_map_single);
  410. EXPORT_SYMBOL(swiotlb_unmap_single);
  411. EXPORT_SYMBOL(swiotlb_map_sg);
  412. EXPORT_SYMBOL(swiotlb_unmap_sg);
  413. EXPORT_SYMBOL(swiotlb_sync_single);
  414. EXPORT_SYMBOL(swiotlb_sync_sg);
  415. EXPORT_SYMBOL(swiotlb_dma_address);
  416. EXPORT_SYMBOL(swiotlb_alloc_consistent);
  417. EXPORT_SYMBOL(swiotlb_free_consistent);