All of lore.kernel.org
 help / color / mirror / Atom feed
From: Joerg Roedel <joro@8bytes.org>
To: Shaik Ameer Basha <shaik.ameer@samsung.com>
Cc: linux-samsung-soc@vger.kernel.org, devicetree@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	iommu@lists.linux-foundation.org, linux-kernel@vger.kernel.org,
	arnd@arndb.de, t.figa@samsung.com, kgene.kim@samsung.com,
	pullip.cho@samsung.com, a.motakis@virtualopensystems.com,
	grundler@chromium.org, s.nawrocki@samsung.com,
	prathyush.k@samsung.com, rahul.sharma@samsung.com,
	sachin.kamat@linaro.org, supash.ramaswamy@linaro.org,
	varun.sethi@freescale.com, joshi@samsung.com,
	tomasz.figa@gmail.com
Subject: Re: [PATCH v13 00/19] iommu/exynos: Fixes and Enhancements of System MMU driver with DT
Date: Tue, 13 May 2014 19:20:38 +0200	[thread overview]
Message-ID: <20140513172038.GC23770@8bytes.org> (raw)
In-Reply-To: <1399875304-19948-1-git-send-email-shaik.ameer@samsung.com>

On Mon, May 12, 2014 at 11:44:45AM +0530, Shaik Ameer Basha wrote:
> Cho KyongHo (18):
>   iommu/exynos: fix build errors
>   iommu/exynos: change error handling when page table update is failed
>   iommu/exynos: allocate lv2 page table from own slab
>   iommu/exynos: fix L2TLB invalidation
>   iommu/exynos: remove prefetch buffer setting
>   iommu/exynos: add missing cache flush for removed page table entries
>   iommu/exynos: always enable runtime PM
>   iommu/exynos: remove dbgname from drvdata of a System MMU
>   iommu/exynos: use managed device helper functions
>   iommu/exynos: gating clocks of master H/W
>   iommu/exynos: remove custom fault handler
>   iommu/exynos: change rwlock to spinlock
>   iommu/exynos: use exynos-iommu specific typedef
>   iommu/exynos: enhanced error messages
>   documentation: iommu: add binding document of Exynos System MMU
>   iommu/exynos: support for device tree
>   iommu/exynos: turn on useful configuration options
>   iommu/exynos: apply workaround of caching fault page table entries
> 
>  .../devicetree/bindings/iommu/samsung,sysmmu.txt   |   65 ++
>  drivers/iommu/exynos-iommu.c                       | 1035 ++++++++++++--------
>  2 files changed, 677 insertions(+), 423 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/iommu/samsung,sysmmu.txt

Applied, thanks. Please send another patch to update the documentation
as requested by Arnd.


	Joerg

WARNING: multiple messages have this Message-ID (diff)
From: joro@8bytes.org (Joerg Roedel)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v13 00/19] iommu/exynos: Fixes and Enhancements of System MMU driver with DT
Date: Tue, 13 May 2014 19:20:38 +0200	[thread overview]
Message-ID: <20140513172038.GC23770@8bytes.org> (raw)
In-Reply-To: <1399875304-19948-1-git-send-email-shaik.ameer@samsung.com>

On Mon, May 12, 2014 at 11:44:45AM +0530, Shaik Ameer Basha wrote:
> Cho KyongHo (18):
>   iommu/exynos: fix build errors
>   iommu/exynos: change error handling when page table update is failed
>   iommu/exynos: allocate lv2 page table from own slab
>   iommu/exynos: fix L2TLB invalidation
>   iommu/exynos: remove prefetch buffer setting
>   iommu/exynos: add missing cache flush for removed page table entries
>   iommu/exynos: always enable runtime PM
>   iommu/exynos: remove dbgname from drvdata of a System MMU
>   iommu/exynos: use managed device helper functions
>   iommu/exynos: gating clocks of master H/W
>   iommu/exynos: remove custom fault handler
>   iommu/exynos: change rwlock to spinlock
>   iommu/exynos: use exynos-iommu specific typedef
>   iommu/exynos: enhanced error messages
>   documentation: iommu: add binding document of Exynos System MMU
>   iommu/exynos: support for device tree
>   iommu/exynos: turn on useful configuration options
>   iommu/exynos: apply workaround of caching fault page table entries
> 
>  .../devicetree/bindings/iommu/samsung,sysmmu.txt   |   65 ++
>  drivers/iommu/exynos-iommu.c                       | 1035 ++++++++++++--------
>  2 files changed, 677 insertions(+), 423 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/iommu/samsung,sysmmu.txt

Applied, thanks. Please send another patch to update the documentation
as requested by Arnd.


	Joerg

  parent reply	other threads:[~2014-05-13 17:20 UTC|newest]

Thread overview: 70+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-12  6:14 [PATCH v13 00/19] iommu/exynos: Fixes and Enhancements of System MMU driver with DT Shaik Ameer Basha
2014-05-12  6:14 ` Shaik Ameer Basha
2014-05-12  6:14 ` Shaik Ameer Basha
     [not found] ` <1399875304-19948-1-git-send-email-shaik.ameer-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2014-05-12  6:14   ` [PATCH v13 01/19] iommu/exynos: fix build errors Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14   ` [PATCH v13 02/19] iommu/exynos: change error handling when page table update is failed Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14   ` [PATCH v13 03/19] iommu/exynos: allocate lv2 page table from own slab Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14   ` [PATCH v13 04/19] iommu/exynos: fix L2TLB invalidation Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14   ` [PATCH v13 05/19] iommu/exynos: remove prefetch buffer setting Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14   ` [PATCH v13 06/19] iommu/exynos: add missing cache flush for removed page table entries Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14   ` [PATCH v13 07/19] iommu/exynos: always enable runtime PM Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14   ` [PATCH v13 08/19] iommu/exynos: remove dbgname from drvdata of a System MMU Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14   ` [PATCH v13 09/19] iommu/exynos: use managed device helper functions Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14   ` [PATCH v13 10/19] iommu/exynos: gating clocks of master H/W Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14   ` [PATCH v13 11/19] iommu/exynos: remove custom fault handler Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14   ` [PATCH v13 12/19] iommu/exynos: change rwlock to spinlock Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14   ` [PATCH v13 13/19] iommu/exynos: use exynos-iommu specific typedef Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14   ` [PATCH v13 14/19] iommu/exynos: add devices attached to the System MMU to an IOMMU group Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:14     ` Shaik Ameer Basha
2014-05-12  6:15   ` [PATCH v13 15/19] iommu/exynos: enhanced error messages Shaik Ameer Basha
2014-05-12  6:15     ` Shaik Ameer Basha
2014-05-12  6:15     ` Shaik Ameer Basha
2014-05-12  6:15   ` [PATCH v13 16/19] documentation: iommu: add binding document of Exynos System MMU Shaik Ameer Basha
2014-05-12  6:15     ` Shaik Ameer Basha
2014-05-12  6:15     ` Shaik Ameer Basha
2014-05-12  6:15   ` [PATCH v13 17/19] iommu/exynos: support for device tree Shaik Ameer Basha
2014-05-12  6:15     ` Shaik Ameer Basha
2014-05-12  6:15     ` Shaik Ameer Basha
2014-05-12  6:15   ` [PATCH v13 18/19] iommu/exynos: turn on useful configuration options Shaik Ameer Basha
2014-05-12  6:15     ` Shaik Ameer Basha
2014-05-12  6:15     ` Shaik Ameer Basha
2014-05-12  6:15   ` [PATCH v13 19/19] iommu/exynos: apply workaround of caching fault page table entries Shaik Ameer Basha
2014-05-12  6:15     ` Shaik Ameer Basha
2014-05-12  6:15     ` Shaik Ameer Basha
2014-05-12 10:07   ` [PATCH v13 00/19] iommu/exynos: Fixes and Enhancements of System MMU driver with DT Arnd Bergmann
2014-05-12 10:07     ` Arnd Bergmann
2014-05-12 10:07     ` Arnd Bergmann
2014-05-13 13:32     ` Shaik Ameer Basha
2014-05-13 13:32       ` Shaik Ameer Basha
2014-05-13 13:32       ` Shaik Ameer Basha
2014-05-13 17:20 ` Joerg Roedel [this message]
2014-05-13 17:20   ` Joerg Roedel
2014-05-14  5:57   ` Shaik Ameer Basha
2014-05-14  5:57     ` Shaik Ameer Basha

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=20140513172038.GC23770@8bytes.org \
    --to=joro@8bytes.org \
    --cc=a.motakis@virtualopensystems.com \
    --cc=arnd@arndb.de \
    --cc=devicetree@vger.kernel.org \
    --cc=grundler@chromium.org \
    --cc=iommu@lists.linux-foundation.org \
    --cc=joshi@samsung.com \
    --cc=kgene.kim@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=prathyush.k@samsung.com \
    --cc=pullip.cho@samsung.com \
    --cc=rahul.sharma@samsung.com \
    --cc=s.nawrocki@samsung.com \
    --cc=sachin.kamat@linaro.org \
    --cc=shaik.ameer@samsung.com \
    --cc=supash.ramaswamy@linaro.org \
    --cc=t.figa@samsung.com \
    --cc=tomasz.figa@gmail.com \
    --cc=varun.sethi@freescale.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.