aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/videobuf-dma-contig.c
diff options
context:
space:
mode:
authorJiri Slaby <jslaby@suse.cz>2011-02-28 06:37:02 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2011-03-22 06:51:54 -0300
commit35d9f510b67b10338161aba6229d4f55b4000f5b (patch)
tree03ba6e05f3df46be11fa9c45f14ccfa89be9f8f9 /drivers/media/video/videobuf-dma-contig.c
parent4093a5c4a3f59cba1a085bbf87b6ffdddc5a443d (diff)
downloadkernel_samsung_smdk4412-35d9f510b67b10338161aba6229d4f55b4000f5b.tar.gz
kernel_samsung_smdk4412-35d9f510b67b10338161aba6229d4f55b4000f5b.tar.bz2
kernel_samsung_smdk4412-35d9f510b67b10338161aba6229d4f55b4000f5b.zip
[media] V4L: videobuf, don't use dma addr as physical
mem->dma_handle is a dma address obtained by dma_alloc_coherent which needn't be a physical address in presence of IOMMU, as a hardware IOMMU can (and most likely) will return a bus address where physical != bus address. So ensure we are remapping (remap_pfn_range) the right page in __videobuf_mmap_mapper by using virt_to_phys(mem->vaddr) and not mem->dma_handle. While at it, use PFN_DOWN instead of explicit shift. [mchehab@redhat.com: Fix compilation breakage due to the lack of a comma] Signed-off-by: Jiri Slaby <jslaby@suse.cz> Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/videobuf-dma-contig.c')
-rw-r--r--drivers/media/video/videobuf-dma-contig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/videobuf-dma-contig.c b/drivers/media/video/videobuf-dma-contig.c
index c9691115f2d..c4742fc1552 100644
--- a/drivers/media/video/videobuf-dma-contig.c
+++ b/drivers/media/video/videobuf-dma-contig.c
@@ -300,7 +300,7 @@ static int __videobuf_mmap_mapper(struct videobuf_queue *q,
vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
retval = remap_pfn_range(vma, vma->vm_start,
- mem->dma_handle >> PAGE_SHIFT,
+ PFN_DOWN(virt_to_phys(mem->vaddr)),
size, vma->vm_page_prot);
if (retval) {
dev_err(q->dev, "mmap: remap failed with error %d. ", retval);