linux-arch.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Subash Patel <subashrp-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: Marek Szyprowski <m.szyprowski-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
Cc: linux-arch-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Russell King - ARM Linux
	<linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org>,
	Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org>,
	Benjamin Herrenschmidt
	<benh-XVmvHMARGAS8U2dJNN8I7kB+6BGkLq7r@public.gmane.org>,
	Kyungmin Park
	<kyungmin.park-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>,
	linaro-mm-sig-cunTk1MwBs8s++Sfvej+rw@public.gmane.org,
	linux-mm-Bw31MaZKKs3YtjvyW6yDsg@public.gmane.org,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org,
	Krishna Reddy <vdumpa-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>,
	Andrzej Pietrasiewicz
	<andrzej.p-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>,
	KyongHo Cho <pullip.cho-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>,
	Chunsang Jeong
	<chunsang.jeong-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Subject: Re: [PATCHv8 00/10] ARM: DMA-mapping framework redesign
Date: Wed, 18 Apr 2012 12:44:39 +0530	[thread overview]
Message-ID: <4F8E69DF.9030003@gmail.com> (raw)
In-Reply-To: <1334055852-19500-1-git-send-email-m.szyprowski-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>

Hello Marek,

I have tested below patch series for vanilla 3.4-rc2 (without videobuf2 
support for dmabuf patches) with and without IOMMU support on origen 
board. These patches are good now. You can add:

Tested-By: Subash Patel <subash.ramaswamy-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> for whole series.

Regards,
Subash

On 04/10/2012 04:34 PM, Marek Szyprowski wrote:
> Hello,
>
> Linux v3.4-rc2, which include dma-mapping preparation patches, has been
> released two days ago, now it's time for the next spin of ARM
> dma-mapping redesign patches. This version includes various fixes posted
> separately to v7, mainly related to incorrect io address space bitmap
> setup and a major issue with broken mmap for memory which comes from
> dma_declare_coherent(). The patches have been also rebased onto Linux
> v3.4-rc2 which comes with dma_map_ops related changes.
>
> The code has been tested on Samsung Exynos4 'UniversalC210' and NURI
> boards with IOMMU driver posted by KyongHo Cho, I will put separate
> branch which shows how to integrate this driver with this patchset.
>
> The patches are also available on my git repository at:
> git://git.linaro.org/people/mszyprowski/linux-dma-mapping.git 3.4-rc2-arm-dma-v8
>
>
> History of the development:
>
> v1: (initial version of the DMA-mapping redesign patches):
> http://www.spinics.net/lists/linux-mm/msg21241.html
>
> v2:
> http://lists.linaro.org/pipermail/linaro-mm-sig/2011-September/000571.html
> http://lists.linaro.org/pipermail/linaro-mm-sig/2011-September/000577.html
>
> v3:
> http://www.spinics.net/lists/linux-mm/msg25490.html
>
> v4 and v5:
> http://www.spinics.net/lists/arm-kernel/msg151147.html
> http://www.spinics.net/lists/arm-kernel/msg154889.html
>
> v6:
> http://www.spinics.net/lists/linux-mm/msg29903.html
>
> v7:
> http://www.spinics.net/lists/arm-kernel/msg162149.html
>
> Best regards
> Marek Szyprowski
> Samsung Poland R&D Center
>
>
> Patch summary:
>
> Marek Szyprowski (10):
>    common: add dma_mmap_from_coherent() function
>    ARM: dma-mapping: use pr_* instread of printk
>    ARM: dma-mapping: introduce ARM_DMA_ERROR constant
>    ARM: dma-mapping: remove offset parameter to prepare for generic
>      dma_ops
>    ARM: dma-mapping: use asm-generic/dma-mapping-common.h
>    ARM: dma-mapping: implement dma sg methods on top of any generic dma
>      ops
>    ARM: dma-mapping: move all dma bounce code to separate dma ops
>      structure
>    ARM: dma-mapping: remove redundant code and cleanup
>    ARM: dma-mapping: use alloc, mmap, free from dma_ops
>    ARM: dma-mapping: add support for IOMMU mapper
>
>   arch/arm/Kconfig                   |    9 +
>   arch/arm/common/dmabounce.c        |   84 +++-
>   arch/arm/include/asm/device.h      |    4 +
>   arch/arm/include/asm/dma-iommu.h   |   34 ++
>   arch/arm/include/asm/dma-mapping.h |  407 ++++-----------
>   arch/arm/mm/dma-mapping.c          | 1019 ++++++++++++++++++++++++++++++------
>   arch/arm/mm/vmregion.h             |    2 +-
>   drivers/base/dma-coherent.c        |   42 ++
>   include/asm-generic/dma-coherent.h |    4 +-
>   9 files changed, 1138 insertions(+), 467 deletions(-)
>   create mode 100644 arch/arm/include/asm/dma-iommu.h
>

WARNING: multiple messages have this Message-ID (diff)
From: Subash Patel <subashrp@gmail.com>
To: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: linux-arm-kernel@lists.infradead.org,
	linaro-mm-sig@lists.linaro.org, linux-mm@kvack.org,
	linux-arch@vger.kernel.org, iommu@lists.linux-foundation.org,
	Kyungmin Park <kyungmin.park@samsung.com>,
	Arnd Bergmann <arnd@arndb.de>, Joerg Roedel <joro@8bytes.org>,
	Russell King - ARM Linux <linux@arm.linux.org.uk>,
	Chunsang Jeong <chunsang.jeong@linaro.org>,
	Krishna Reddy <vdumpa@nvidia.com>,
	KyongHo Cho <pullip.cho@samsung.com>,
	Andrzej Pietrasiewicz <andrzej.p@samsung.com>,
	Benjamin Herrenschmidt <benh@kernel.crashing.org>,
	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>,
	Hiroshi Doyu <hdoyu@nvidia.com>
Subject: Re: [PATCHv8 00/10] ARM: DMA-mapping framework redesign
Date: Wed, 18 Apr 2012 12:44:39 +0530	[thread overview]
Message-ID: <4F8E69DF.9030003@gmail.com> (raw)
Message-ID: <20120418071439.KUhLvFwbMBnxuwT6_OenUo_lHnvlIIT7e4hO72w7_Eo@z> (raw)
In-Reply-To: <1334055852-19500-1-git-send-email-m.szyprowski@samsung.com>

Hello Marek,

I have tested below patch series for vanilla 3.4-rc2 (without videobuf2 
support for dmabuf patches) with and without IOMMU support on origen 
board. These patches are good now. You can add:

Tested-By: Subash Patel <subash.ramaswamy@linaro.org> for whole series.

Regards,
Subash

On 04/10/2012 04:34 PM, Marek Szyprowski wrote:
> Hello,
>
> Linux v3.4-rc2, which include dma-mapping preparation patches, has been
> released two days ago, now it's time for the next spin of ARM
> dma-mapping redesign patches. This version includes various fixes posted
> separately to v7, mainly related to incorrect io address space bitmap
> setup and a major issue with broken mmap for memory which comes from
> dma_declare_coherent(). The patches have been also rebased onto Linux
> v3.4-rc2 which comes with dma_map_ops related changes.
>
> The code has been tested on Samsung Exynos4 'UniversalC210' and NURI
> boards with IOMMU driver posted by KyongHo Cho, I will put separate
> branch which shows how to integrate this driver with this patchset.
>
> The patches are also available on my git repository at:
> git://git.linaro.org/people/mszyprowski/linux-dma-mapping.git 3.4-rc2-arm-dma-v8
>
>
> History of the development:
>
> v1: (initial version of the DMA-mapping redesign patches):
> http://www.spinics.net/lists/linux-mm/msg21241.html
>
> v2:
> http://lists.linaro.org/pipermail/linaro-mm-sig/2011-September/000571.html
> http://lists.linaro.org/pipermail/linaro-mm-sig/2011-September/000577.html
>
> v3:
> http://www.spinics.net/lists/linux-mm/msg25490.html
>
> v4 and v5:
> http://www.spinics.net/lists/arm-kernel/msg151147.html
> http://www.spinics.net/lists/arm-kernel/msg154889.html
>
> v6:
> http://www.spinics.net/lists/linux-mm/msg29903.html
>
> v7:
> http://www.spinics.net/lists/arm-kernel/msg162149.html
>
> Best regards
> Marek Szyprowski
> Samsung Poland R&D Center
>
>
> Patch summary:
>
> Marek Szyprowski (10):
>    common: add dma_mmap_from_coherent() function
>    ARM: dma-mapping: use pr_* instread of printk
>    ARM: dma-mapping: introduce ARM_DMA_ERROR constant
>    ARM: dma-mapping: remove offset parameter to prepare for generic
>      dma_ops
>    ARM: dma-mapping: use asm-generic/dma-mapping-common.h
>    ARM: dma-mapping: implement dma sg methods on top of any generic dma
>      ops
>    ARM: dma-mapping: move all dma bounce code to separate dma ops
>      structure
>    ARM: dma-mapping: remove redundant code and cleanup
>    ARM: dma-mapping: use alloc, mmap, free from dma_ops
>    ARM: dma-mapping: add support for IOMMU mapper
>
>   arch/arm/Kconfig                   |    9 +
>   arch/arm/common/dmabounce.c        |   84 +++-
>   arch/arm/include/asm/device.h      |    4 +
>   arch/arm/include/asm/dma-iommu.h   |   34 ++
>   arch/arm/include/asm/dma-mapping.h |  407 ++++-----------
>   arch/arm/mm/dma-mapping.c          | 1019 ++++++++++++++++++++++++++++++------
>   arch/arm/mm/vmregion.h             |    2 +-
>   drivers/base/dma-coherent.c        |   42 ++
>   include/asm-generic/dma-coherent.h |    4 +-
>   9 files changed, 1138 insertions(+), 467 deletions(-)
>   create mode 100644 arch/arm/include/asm/dma-iommu.h
>

  parent reply	other threads:[~2012-04-18  7:14 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-04-10 11:04 [PATCHv8 00/10] ARM: DMA-mapping framework redesign Marek Szyprowski
2012-04-10 11:04 ` Marek Szyprowski
2012-04-10 11:04 ` [PATCHv8 01/10] common: add dma_mmap_from_coherent() function Marek Szyprowski
2012-04-10 11:04 ` [PATCHv8 02/10] ARM: dma-mapping: use pr_* instread of printk Marek Szyprowski
2012-04-10 11:04   ` Marek Szyprowski
2012-04-10 11:41   ` Arnd Bergmann
2012-04-10 11:04 ` [PATCHv8 03/10] ARM: dma-mapping: introduce ARM_DMA_ERROR constant Marek Szyprowski
2012-04-10 11:31   ` Arnd Bergmann
2012-04-10 11:31     ` Arnd Bergmann
2012-04-10 12:53     ` Marek Szyprowski
2012-04-10 11:04 ` [PATCHv8 04/10] ARM: dma-mapping: remove offset parameter to prepare for generic dma_ops Marek Szyprowski
2012-04-10 11:04   ` Marek Szyprowski
2012-04-10 11:43   ` Arnd Bergmann
2012-04-10 11:43     ` Arnd Bergmann
2012-04-11 12:05     ` Marek Szyprowski
2012-04-11 12:18       ` Arnd Bergmann
2012-04-11 13:05         ` Marek Szyprowski
2012-04-11 13:05           ` Marek Szyprowski
2012-04-10 11:04 ` [PATCHv8 05/10] ARM: dma-mapping: use asm-generic/dma-mapping-common.h Marek Szyprowski
2012-04-10 11:47   ` Arnd Bergmann
2012-04-10 11:47     ` Arnd Bergmann
2012-04-11 12:07     ` Marek Szyprowski
2012-04-10 11:04 ` [PATCHv8 06/10] ARM: dma-mapping: implement dma sg methods on top of any generic dma ops Marek Szyprowski
2012-04-10 11:04 ` [PATCHv8 07/10] ARM: dma-mapping: move all dma bounce code to separate dma ops structure Marek Szyprowski
     [not found]   ` <1334055852-19500-8-git-send-email-m.szyprowski-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2012-04-10 12:24     ` Arnd Bergmann
2012-04-10 12:24       ` Arnd Bergmann
     [not found]       ` <201204101224.24959.arnd-r2nGTMty4D4@public.gmane.org>
2012-04-10 12:51         ` Marek Szyprowski
2012-04-10 12:51           ` Marek Szyprowski
2012-04-10 13:17           ` Arnd Bergmann
     [not found] ` <1334055852-19500-1-git-send-email-m.szyprowski-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2012-04-10 11:04   ` [PATCHv8 08/10] ARM: dma-mapping: remove redundant code and cleanup Marek Szyprowski
2012-04-10 11:04     ` Marek Szyprowski
2012-04-10 12:22     ` Arnd Bergmann
2012-04-10 12:22       ` Arnd Bergmann
2012-04-18  7:14   ` Subash Patel [this message]
2012-04-18  7:14     ` [PATCHv8 00/10] ARM: DMA-mapping framework redesign Subash Patel
2012-04-10 11:04 ` [PATCHv8 09/10] ARM: dma-mapping: use alloc, mmap, free from dma_ops Marek Szyprowski
     [not found]   ` <1334055852-19500-10-git-send-email-m.szyprowski-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2012-04-10 12:21     ` Arnd Bergmann
2012-04-10 12:21       ` Arnd Bergmann
2012-04-10 11:04 ` [PATCHv8 10/10] ARM: dma-mapping: add support for IOMMU mapper Marek Szyprowski
2012-04-10 11:58   ` Arnd Bergmann
2012-04-10 11:58     ` Arnd Bergmann
     [not found]     ` <201204101158.29590.arnd-r2nGTMty4D4@public.gmane.org>
2012-04-10 12:57       ` Marek Szyprowski
2012-04-10 12:57         ` Marek Szyprowski
2012-04-12  9:49     ` Marek Szyprowski

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4F8E69DF.9030003@gmail.com \
    --to=subashrp-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
    --cc=andrzej.p-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org \
    --cc=arnd-r2nGTMty4D4@public.gmane.org \
    --cc=benh-XVmvHMARGAS8U2dJNN8I7kB+6BGkLq7r@public.gmane.org \
    --cc=chunsang.jeong-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
    --cc=iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org \
    --cc=kyungmin.park-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org \
    --cc=linaro-mm-sig-cunTk1MwBs8s++Sfvej+rw@public.gmane.org \
    --cc=linux-arch-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org \
    --cc=linux-mm-Bw31MaZKKs3YtjvyW6yDsg@public.gmane.org \
    --cc=m.szyprowski-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org \
    --cc=pullip.cho-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org \
    --cc=vdumpa-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).