2 * DMA region bookkeeping routines
4 * Copyright (C) 2002 Maas Digital LLC
6 * This code is licensed under the GPL. See the file COPYING in the root
7 * directory of the kernel sources for details.
11 #include <linux/module.h>
12 #include <linux/pci.h>
13 #include <linux/vmalloc.h>
14 #include <linux/scatterlist.h>
20 void dma_prog_region_init(struct dma_prog_region *prog)
28 int dma_prog_region_alloc(struct dma_prog_region *prog, unsigned long n_bytes,
31 /* round up to page size */
32 n_bytes = PAGE_ALIGN(n_bytes);
34 prog->n_pages = n_bytes >> PAGE_SHIFT;
36 prog->kvirt = pci_alloc_consistent(dev, n_bytes, &prog->bus_addr);
39 "dma_prog_region_alloc: pci_alloc_consistent() failed\n");
40 dma_prog_region_free(prog);
49 void dma_prog_region_free(struct dma_prog_region *prog)
52 pci_free_consistent(prog->dev, prog->n_pages << PAGE_SHIFT,
53 prog->kvirt, prog->bus_addr);
65 * dma_region_init - clear out all fields but do not allocate anything
67 void dma_region_init(struct dma_region *dma)
77 * dma_region_alloc - allocate the buffer and map it to the IOMMU
79 int dma_region_alloc(struct dma_region *dma, unsigned long n_bytes,
80 struct pci_dev *dev, int direction)
84 /* round up to page size */
85 n_bytes = PAGE_ALIGN(n_bytes);
87 dma->n_pages = n_bytes >> PAGE_SHIFT;
89 dma->kvirt = vmalloc_32(n_bytes);
91 printk(KERN_ERR "dma_region_alloc: vmalloc_32() failed\n");
95 /* Clear the ram out, no junk to the user */
96 memset(dma->kvirt, 0, n_bytes);
98 /* allocate scatter/gather list */
99 dma->sglist = vmalloc(dma->n_pages * sizeof(*dma->sglist));
101 printk(KERN_ERR "dma_region_alloc: vmalloc(sglist) failed\n");
105 sg_init_table(dma->sglist, dma->n_pages);
107 /* fill scatter/gather list with pages */
108 for (i = 0; i < dma->n_pages; i++) {
110 (unsigned long)dma->kvirt + (i << PAGE_SHIFT);
112 sg_set_page(&dma->sglist[i], vmalloc_to_page((void *)va),
116 /* map sglist to the IOMMU */
118 pci_map_sg(dev, dma->sglist, dma->n_pages, direction);
120 if (dma->n_dma_pages == 0) {
121 printk(KERN_ERR "dma_region_alloc: pci_map_sg() failed\n");
126 dma->direction = direction;
131 dma_region_free(dma);
136 * dma_region_free - unmap and free the buffer
138 void dma_region_free(struct dma_region *dma)
140 if (dma->n_dma_pages) {
141 pci_unmap_sg(dma->dev, dma->sglist, dma->n_pages,
143 dma->n_dma_pages = 0;
155 /* find the scatterlist index and remaining offset corresponding to a
156 given offset from the beginning of the buffer */
157 static inline int dma_region_find(struct dma_region *dma, unsigned long offset,
158 unsigned int start, unsigned long *rem)
161 unsigned long off = offset;
163 for (i = start; i < dma->n_dma_pages; i++) {
164 if (off < sg_dma_len(&dma->sglist[i])) {
169 off -= sg_dma_len(&dma->sglist[i]);
172 BUG_ON(i >= dma->n_dma_pages);
178 * dma_region_offset_to_bus - get bus address of an offset within a DMA region
180 * Returns the DMA bus address of the byte with the given @offset relative to
181 * the beginning of the @dma.
183 dma_addr_t dma_region_offset_to_bus(struct dma_region * dma,
184 unsigned long offset)
186 unsigned long rem = 0;
188 struct scatterlist *sg =
189 &dma->sglist[dma_region_find(dma, offset, 0, &rem)];
190 return sg_dma_address(sg) + rem;
194 * dma_region_sync_for_cpu - sync the CPU's view of the buffer
196 void dma_region_sync_for_cpu(struct dma_region *dma, unsigned long offset,
200 unsigned long rem = 0;
205 first = dma_region_find(dma, offset, 0, &rem);
206 last = dma_region_find(dma, rem + len - 1, first, &rem);
208 pci_dma_sync_sg_for_cpu(dma->dev, &dma->sglist[first], last - first + 1,
213 * dma_region_sync_for_device - sync the IO bus' view of the buffer
215 void dma_region_sync_for_device(struct dma_region *dma, unsigned long offset,
219 unsigned long rem = 0;
224 first = dma_region_find(dma, offset, 0, &rem);
225 last = dma_region_find(dma, rem + len - 1, first, &rem);
227 pci_dma_sync_sg_for_device(dma->dev, &dma->sglist[first],
228 last - first + 1, dma->direction);
233 static int dma_region_pagefault(struct vm_area_struct *vma,
234 struct vm_fault *vmf)
236 struct dma_region *dma = (struct dma_region *)vma->vm_private_data;
239 return VM_FAULT_SIGBUS;
241 if (vmf->pgoff >= dma->n_pages)
242 return VM_FAULT_SIGBUS;
244 vmf->page = vmalloc_to_page(dma->kvirt + (vmf->pgoff << PAGE_SHIFT));
249 static const struct vm_operations_struct dma_region_vm_ops = {
250 .fault = dma_region_pagefault,
254 * dma_region_mmap - map the buffer into a user space process
256 int dma_region_mmap(struct dma_region *dma, struct file *file,
257 struct vm_area_struct *vma)
264 /* must be page-aligned (XXX: comment is wrong, we could allow pgoff) */
265 if (vma->vm_pgoff != 0)
268 /* check the length */
269 size = vma->vm_end - vma->vm_start;
270 if (size > (dma->n_pages << PAGE_SHIFT))
273 vma->vm_ops = &dma_region_vm_ops;
274 vma->vm_private_data = dma;
276 vma->vm_flags |= VM_RESERVED | VM_ALWAYSDUMP;
281 #else /* CONFIG_MMU */
283 int dma_region_mmap(struct dma_region *dma, struct file *file,
284 struct vm_area_struct *vma)
289 #endif /* CONFIG_MMU */