public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Arnd Bergmann <arnd@arndb.de>
To: linux-arm-kernel@lists.infradead.org,
	FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Cc: "Russell King - ARM Linux" <linux@arm.linux.org.uk>,
	linux-arm-msm@vger.kernel.org, dwalker@codeaurora.org,
	stepanm@codeaurora.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/2] arm: msm: Add System MMU support.
Date: Thu, 29 Jul 2010 10:12:05 +0200	[thread overview]
Message-ID: <201007291012.05986.arnd@arndb.de> (raw)
In-Reply-To: <20100728212156.GA6729@n2100.arm.linux.org.uk>

On Wednesday 28 July 2010 23:21:56 Russell King - ARM Linux wrote:
> On Wed, Jul 28, 2010 at 07:50:20PM +0200, Arnd Bergmann wrote:
> > The DMA API is extremely flexible, it works just fine with all the
> > IOMMUs that I've seen so far. Please take a look at
> > include/asm-generic/dma-mapping-common.h and its users to see how
> > to use multiple IOMMUs depending on the device.
> 
> We don't yet use those DMA API interface extensions because we haven't
> had the need.  If someone who has the need wants to put the effort in
> though...

Right, it shouldn't be hard now that the groundwork for that is done.
Also, it's only really needed if you have IOMMUs of different types in the
same system. If msm doesn't have any swiotlb or dmabounce devices,
it could always use the same implementation for all devices.

> One of the problems with it though is the abstraction of the sync*
> operations is the wrong way around for stuff like dmabounce - we want
> to be passed the base address of the buffer (so we can look this up),
> plus offset and length.  We don't want to know just the region which
> is affected.

Yes, but that is an unrelated (dmabounce specific) problem that seems to
be fixed by an existing patch.

The driver posted by Stepan doesn't even support the dma_sync_single_*
style operations, and I don't think it can run into that specific problem.
Are there even (hardware) IOMMUs that are connected to noncoherent
buses? AFAICT, anything that needs to flush a dcache range in dma_sync_*
has a trivial mapping between bus and phys addresses.

	Arnd

  parent reply	other threads:[~2010-07-29  8:12 UTC|newest]

Thread overview: 48+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-07-27 22:41 [PATCH 1/2] arm: msm: Add System MMU support Stepan Moskovchenko
2010-07-27 22:43 ` Daniel Walker
2010-07-28  8:39 ` Arnd Bergmann
2010-07-28 17:39   ` stepanm
2010-07-28 17:50     ` Arnd Bergmann
2010-07-28 21:21       ` Russell King - ARM Linux
2010-07-29  4:15         ` FUJITA Tomonori
2010-07-29  8:12         ` Arnd Bergmann [this message]
2010-07-29 11:47           ` Russell King - ARM Linux
2010-07-30  6:14             ` FUJITA Tomonori
2010-07-29  0:58       ` stepanm
2010-07-29  3:35         ` FUJITA Tomonori
2010-07-29  8:26           ` Arnd Bergmann
2010-07-29  8:35             ` FUJITA Tomonori
2010-07-29  8:40             ` Roedel, Joerg
2010-07-29  8:46               ` FUJITA Tomonori
2010-07-29  9:06                 ` Roedel, Joerg
2010-07-29  9:14                   ` FUJITA Tomonori
2010-07-29  9:25                     ` Roedel, Joerg
2010-07-29  9:28                     ` Roedel, Joerg
2010-07-29  9:44                       ` FUJITA Tomonori
2010-07-29 10:01                         ` Roedel, Joerg
2010-07-29 11:25                           ` Arnd Bergmann
2010-07-29 12:12                             ` Roedel, Joerg
2010-07-29 13:01                               ` Arnd Bergmann
2010-07-30  5:19                   ` stepanm
2010-07-30  8:01                     ` Arnd Bergmann
2010-07-30 16:25                       ` stepanm
2010-07-30 21:59                         ` Arnd Bergmann
2010-07-30 22:58                           ` stepanm
2010-07-31  9:37                             ` Arnd Bergmann
2010-08-02  7:58                     ` Roedel, Joerg
2010-08-02 20:29                       ` Zach Pfeffer
2010-08-03  9:23                         ` Roedel, Joerg
2010-08-03 18:43                           ` Stepan Moskovchenko
2010-08-04  9:52                             ` Roedel, Joerg
2010-07-31  3:15             ` Benjamin Herrenschmidt
2010-08-02  7:48               ` Roedel, Joerg
2010-08-02  8:03                 ` Benjamin Herrenschmidt
2010-08-02  8:10                   ` Roedel, Joerg
2010-08-02  8:30                   ` FUJITA Tomonori
2010-08-02  9:03                     ` Russell King - ARM Linux
2010-08-02  9:20                       ` FUJITA Tomonori
2010-08-02 10:04                         ` Russell King - ARM Linux
2010-08-02 15:26                           ` FUJITA Tomonori
2010-08-02  9:45                     ` Roedel, Joerg
2010-08-02  8:35                   ` Roedel, Joerg
2010-07-31  2:30           ` Benjamin Herrenschmidt

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=201007291012.05986.arnd@arndb.de \
    --to=arnd@arndb.de \
    --cc=dwalker@codeaurora.org \
    --cc=fujita.tomonori@lab.ntt.co.jp \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=stepanm@codeaurora.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