linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] [media] dma-mapping: enable no mmu support in dma_common_mmap
@ 2013-03-05 23:40 Scott Jiang
  2013-03-13 15:54 ` Marek Szyprowski
  0 siblings, 1 reply; 2+ messages in thread
From: Scott Jiang @ 2013-03-05 23:40 UTC (permalink / raw)
  To: Marek Szyprowski, linux-media; +Cc: Scott Jiang

No MMU systems also make use of this function to do mmap.

Signed-off-by: Scott Jiang <scott.jiang.linux@gmail.com>
---
 drivers/base/dma-mapping.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/drivers/base/dma-mapping.c b/drivers/base/dma-mapping.c
index 0ce39a3..ae655b2 100644
--- a/drivers/base/dma-mapping.c
+++ b/drivers/base/dma-mapping.c
@@ -245,7 +245,6 @@ int dma_common_mmap(struct device *dev, struct vm_area_struct *vma,
 		    void *cpu_addr, dma_addr_t dma_addr, size_t size)
 {
 	int ret = -ENXIO;
-#ifdef CONFIG_MMU
 	unsigned long user_count = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
 	unsigned long count = PAGE_ALIGN(size) >> PAGE_SHIFT;
 	unsigned long pfn = page_to_pfn(virt_to_page(cpu_addr));
@@ -262,7 +261,6 @@ int dma_common_mmap(struct device *dev, struct vm_area_struct *vma,
 				      user_count << PAGE_SHIFT,
 				      vma->vm_page_prot);
 	}
-#endif	/* CONFIG_MMU */
 
 	return ret;
 }
-- 
1.7.0.4



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] [media] dma-mapping: enable no mmu support in dma_common_mmap
  2013-03-05 23:40 [PATCH] [media] dma-mapping: enable no mmu support in dma_common_mmap Scott Jiang
@ 2013-03-13 15:54 ` Marek Szyprowski
  0 siblings, 0 replies; 2+ messages in thread
From: Marek Szyprowski @ 2013-03-13 15:54 UTC (permalink / raw)
  To: Scott Jiang; +Cc: linux-media

Hello,

On 3/6/2013 12:40 AM, Scott Jiang wrote:
> No MMU systems also make use of this function to do mmap.
>
> Signed-off-by: Scott Jiang <scott.jiang.linux@gmail.com>
> ---
>   drivers/base/dma-mapping.c |    2 --
>   1 files changed, 0 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/base/dma-mapping.c b/drivers/base/dma-mapping.c
> index 0ce39a3..ae655b2 100644
> --- a/drivers/base/dma-mapping.c
> +++ b/drivers/base/dma-mapping.c
> @@ -245,7 +245,6 @@ int dma_common_mmap(struct device *dev, struct vm_area_struct *vma,
>   		    void *cpu_addr, dma_addr_t dma_addr, size_t size)
>   {
>   	int ret = -ENXIO;
> -#ifdef CONFIG_MMU
>   	unsigned long user_count = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
>   	unsigned long count = PAGE_ALIGN(size) >> PAGE_SHIFT;
>   	unsigned long pfn = page_to_pfn(virt_to_page(cpu_addr));
> @@ -262,7 +261,6 @@ int dma_common_mmap(struct device *dev, struct vm_area_struct *vma,
>   				      user_count << PAGE_SHIFT,
>   				      vma->vm_page_prot);
>   	}
> -#endif	/* CONFIG_MMU */
>   
>   	return ret;
>   }

I really have no experience with NO-MMU kernels, could you explain a bit 
more how this
is useful for handling mmap on such systems? How remap_pfn_range() is 
handled on no-mmu
systems?

I've thought that mmap on no-mmu systems is silently replaced by a call to
get_unmapped_area(), but it looks that there is still a call to mmap 
function.

Best regards
-- 
Marek Szyprowski
Samsung Poland R&D Center



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-03-13 15:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-05 23:40 [PATCH] [media] dma-mapping: enable no mmu support in dma_common_mmap Scott Jiang
2013-03-13 15:54 ` Marek Szyprowski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).