Re: [PATCH 2/3] omap3: change ISP's IOMMU da_start address

2011-03-08 Thread Sakari Ailus
David Cohen wrote:
 ISP doesn't consider 0x0 as a valid address, so it should explicitly
 exclude first page from allowed 'da' range.
 
 Signed-off-by: David Cohen daco...@gmail.com
 ---
  arch/arm/mach-omap2/omap-iommu.c |2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)
 
 diff --git a/arch/arm/mach-omap2/omap-iommu.c 
 b/arch/arm/mach-omap2/omap-iommu.c
 index 3fc5dc7..3bea489 100644
 --- a/arch/arm/mach-omap2/omap-iommu.c
 +++ b/arch/arm/mach-omap2/omap-iommu.c
 @@ -33,7 +33,7 @@ static struct iommu_device omap3_devices[] = {
   .name = isp,
   .nr_tlb_entries = 8,
   .clk_name = cam_ick,
 - .da_start = 0x0,
 + .da_start = 0x1000,

The NULL address is still valid for the MMU. Can the IOVMF_DA_ANON
mapping be specified by the API to be always non-NULL?

This way it would be possible to combine IOVMF_DA_FIXED and
IOVMF_DA_ANON mappings in the same IOMMU while still being able to rely
that IOVMF_DA_ANON mappings would always be non-NULL.

Regards,

-- 
Sakari Ailus
sakari.ai...@maxwell.research.nokia.com
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 2/3] omap3: change ISP's IOMMU da_start address

2011-03-08 Thread David Cohen
Hi Sakari,

On Tue, Mar 8, 2011 at 4:06 PM, Sakari Ailus
sakari.ai...@maxwell.research.nokia.com wrote:
 David Cohen wrote:
 ISP doesn't consider 0x0 as a valid address, so it should explicitly
 exclude first page from allowed 'da' range.

 Signed-off-by: David Cohen daco...@gmail.com
 ---
  arch/arm/mach-omap2/omap-iommu.c |    2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)

 diff --git a/arch/arm/mach-omap2/omap-iommu.c 
 b/arch/arm/mach-omap2/omap-iommu.c
 index 3fc5dc7..3bea489 100644
 --- a/arch/arm/mach-omap2/omap-iommu.c
 +++ b/arch/arm/mach-omap2/omap-iommu.c
 @@ -33,7 +33,7 @@ static struct iommu_device omap3_devices[] = {
                       .name = isp,
                       .nr_tlb_entries = 8,
                       .clk_name = cam_ick,
 -                     .da_start = 0x0,
 +                     .da_start = 0x1000,

 The NULL address is still valid for the MMU. Can the IOVMF_DA_ANON
 mapping be specified by the API to be always non-NULL?

The patch 1/3 does that :)


 This way it would be possible to combine IOVMF_DA_FIXED and
 IOVMF_DA_ANON mappings in the same IOMMU while still being able to rely
 that IOVMF_DA_ANON mappings would always be non-NULL.

Indeed the IOMMU driver supports it. The flag is set by iovm area and
each IOMMU instance supports a mix of mappings with fixed da or not.
By changing the OMAP3 isp IOMMU pdata's da_start to 0x1000, we're
explicitly saying that iovm areas with fixed 'da' or not will never
map first page to OMAP3 ISP driver, what is the behavior it expects.
Without this patch, thanks to patch 1/3 the IOMMU driver will not map
address 0x0 to OMAP3 ISP anyway. But then ISP will be passing wrong
information that it would be fine to map first page. :)

Kind regards,

David Cohen


 Regards,

 --
 Sakari Ailus
 sakari.ai...@maxwell.research.nokia.com

--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html