linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: thierry.reding@gmail.com (Thierry Reding)
To: linux-arm-kernel@lists.infradead.org
Subject: [RFC] Describing arbitrary bus mastering relationships in DT
Date: Fri, 2 May 2014 15:23:29 +0200	[thread overview]
Message-ID: <20140502132327.GA14612@ulmo> (raw)
In-Reply-To: <4369315.NLgjZW6qVF@wuerfel>

On Fri, May 02, 2014 at 02:32:08PM +0200, Arnd Bergmann wrote:
> On Friday 02 May 2014 13:05:58 Thierry Reding wrote:
> > 
> > Let me see if I understood the above proposal by trying to translate it
> > into a simple example for a specific use-case. On Tegra for example we
> > have various units that can either access system memory directly or use
> > the IOMMU to translate accesses for them. One such unit would be the
> > display controller that scans out a framebuffer from memory.
> 
> Can you explain how the decision is made whether the IOMMU gets used
> or not? In all cases I've seen so far, I think we can hardwire this
> in DT, and only expose one or the other. Are both ways used
> concurrently?

It should be possible to hardcode this in DT for Tegra. As I understand
it, both interfaces can't be used at the same time. Once translation has
been enabled for one client, all accesses generated by that client will
be translated.

Hiroshi, please correct me if I'm wrong.

> >         dc at 0,54200000 {
> >                 ...
> > 
> >                 slave {
> >                         /*
> >                          * 2 is the memory controller client ID of the
> >                          * display controller.
> >                          */
> >                         iommu = <&iommu 2>;
> > 
> >                         ...
> >                 };
> >         };
> > 
> > Admittedly this is probably a lot more trivial than what you're looking
> > for. There's no need for virtualization here, the IOMMU is simply used
> > to isolate memory accesses by devices. Still it's a use-case that needs
> > to be supported and one that at least Tegra and Exynos have an immediate
> > need for.
> > 
> > So the above isn't much different from the proposed bindings, except
> > that the iommu property is now nested within a slave node. I guess this
> > gives us a lot more flexibility to extend the description of a slave as
> > needed to represent more complex scenarios.
> 
> This looks rather complicated to parse automatically in the generic
> DT code when we try to decide which dma_map_ops to use. We'd have
> to look for 'slave' nodes in each device we instatiate and then see
> if they use an iommu or not.

But we need to do that now anyway in order to find an iommu property,
don't we? Adding one extra level here shouldn't be all that bad if it
gives us more flexibility or uniformity with more complicated setups.

To some degree this also depends on how we want to handle IOMMUs. If
they should remain transparently handled via dma_map_ops, then it makes
sense to set this up at device instantiation time. But how can we handle
this in situations where one device needs to master on two IOMMUs at the
same time? Or if the device needs physically contiguous memory for
purposes other than device I/O. Using dma_map_ops we can't control which
allocations get mapped via the IOMMU and which don't.

> > Also, are slaves/slave-names and slave subnodes mutually exclusive? It
> > sounds like slaves/slave-names would be a specialization of the slave
> > subnode concept for the trivial cases. Would the following be an
> > equivalent description of the above example?
> > 
> >         dc at 0,54200000 {
> >                 ...
> > 
> >                 slaves = <&iommu 2>;
> >         };
> > 
> > I don't see how it could be exactly equivalent since it misses context
> > regarding the type of slave that's being interacted with. Perhaps that
> > could be solved by making that knowledge driver-specific (i.e. the
> > driver for the Tegra display controller will know that it can only be
> > the master on an IOMMU and therefore derive the slave type). Or the
> > slave's type could be derived from the slave-names property.
> 
> I'd rather have a device-specific property that tells the driver
> about things the iommu driver doesn't need to know but the master
> does. In most cases, we should be fine without a name attached to the
> slave.

For the easy cases where we either have no IOMMU or a single IOMMU per
device, that should work fine. This only becomes problematic when there
are more than one, since you need to distinguish between possibly more
than one type.

As I understand it, Dave's proposal is for generic bus masters, which
may be an IOMMU but could also be something completely different. So in
those cases we need extra meta information so that we can look up the
proper type of object.

FWIW, I do prefer a device-specific property as well. Though I also
think we should agree on common names (like "iommu") as part of the
binding definition. And then, even for devices that can use multiple
IOMMUs they can be differentiated using iommu-names for example. If
another type of master interface is required, then a different set of
property names can be used.

Thierry
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20140502/4e772132/attachment.sig>

  reply	other threads:[~2014-05-02 13:23 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-01 17:32 [RFC] Describing arbitrary bus mastering relationships in DT Dave Martin
2014-05-02 11:05 ` Thierry Reding
2014-05-02 12:32   ` Arnd Bergmann
2014-05-02 13:23     ` Thierry Reding [this message]
2014-05-02 15:19       ` Arnd Bergmann
2014-05-02 17:43         ` Dave Martin
2014-05-05 15:14           ` Arnd Bergmann
2014-05-09 10:33             ` Dave Martin
2014-05-09 11:15               ` Arnd Bergmann
2014-05-09 14:59               ` Grant Grundler
2014-05-02 18:55         ` Stephen Warren
2014-05-02 19:02           ` Arnd Bergmann
2014-05-09 10:45             ` Dave Martin
2014-05-02 18:50       ` Stephen Warren
2014-05-02 19:06         ` Arnd Bergmann
2014-05-09 10:56           ` Dave Martin
2014-05-12 16:19             ` Stephen Warren
2014-05-12 18:10               ` Arnd Bergmann
2014-05-12 18:29                 ` Stephen Warren
2014-05-12 19:53                   ` Arnd Bergmann
2014-05-12 20:02                   ` Grant Grundler
2014-05-02 16:19   ` Dave Martin
2014-05-02 16:14 ` Arnd Bergmann
2014-05-02 17:31   ` Dave Martin
2014-05-02 18:17     ` Jason Gunthorpe
2014-05-09 14:16       ` Dave Martin
2014-05-09 17:10         ` Jason Gunthorpe
2014-05-02 20:36     ` Arnd Bergmann
2014-05-09 13:26       ` Dave Martin

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=20140502132327.GA14612@ulmo \
    --to=thierry.reding@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.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).