From: Joerg Roedel <joerg.roedel@amd.com>
To: Stuart Yoder <b08248@gmail.com>
Cc: Alex Williamson <alex.williamson@redhat.com>,
Alexey Kardashevskiy <aik@au1.ibm.com>, <aafabbri@cisco.com>,
<kvm@vger.kernel.org>, <pmac@au1.ibm.com>,
<qemu-devel@nongnu.org>, <konrad.wilk@oracle.com>,
<agraf@suse.de>, <dwg@au1.ibm.com>, <chrisw@sous-sol.org>,
<B08248@freescale.com>, <iommu@lists.linux-foundation.org>,
<avi@redhat.com>, <linux-pci@vger.kernel.org>,
<B07421@freescale.com>, <benve@cisco.com>,
<benh@kernel.crashing.org>,
David Gibson <david@gibson.dropbear.id.au>
Subject: Re: vfio / iommu domain attributes
Date: Wed, 7 Dec 2011 17:38:42 +0100 [thread overview]
Message-ID: <20111207163842.GC29680@amd.com> (raw)
In-Reply-To: <CALRxmdDS4qas9fyHXeDVw2e_yMCTqzMi6VXUF-q+eYwgMwg7tw@mail.gmail.com>
On Wed, Dec 07, 2011 at 09:54:39AM -0600, Stuart Yoder wrote:
> Alex, Alexey I'm wondering if you've had any new thoughts on this over
> the last week.
>
> For Freescale, our iommu domain attributes would look something like:
> -domain iova base address
> -domain iova window size
I agree with that.
> -domain enable/disable
> -number of subwindows
> -operation mapping table index
> -stash destination CPU
> -stash target (cache– L1, L2, L3)
Why does the user of the IOMMU-API need to have control over these
things?
> These are all things that need to be set by the creator of the domain.
>
> Since the domain attributes are going to be so different for each platform does
> it make sense to define a new iommu_ops call back that just takes a void pointer
> that can be implemented in a platform specific way? For example:
>
> struct iommu_ops {
> [cut]
> int (*domain_set_attrs)(struct iommu_domain *domain,
> void *attrs);
> int (*domain_get_attrs)(struct iommu_domain *domain,
> void *attrs);
> }
A void pointer is certainly the worst choice for an interface. I think
it is better to have at least a set of common attributes. Somthing like
this:
iommu_domain_set_attr(struct iommu_domain *domain, enum attr_type, void *data)
iommu_domain_get_attr(struct iommu_domain *domain, enum attr_type, void *data)
The iova base/size options make sense for more IOMMUs than just
Freescale. For example it would allow to manage GART-like IOMMUs with
the IOMMU-API too.
Joerg
--
AMD Operating System Research Center
Advanced Micro Devices GmbH Einsteinring 24 85609 Dornach
General Managers: Alberto Bozzo, Andrew Bowd
Registration: Dornach, Landkr. Muenchen; Registerger. Muenchen, HRB Nr. 43632
WARNING: multiple messages have this Message-ID (diff)
From: Joerg Roedel <joerg.roedel@amd.com>
To: Stuart Yoder <b08248@gmail.com>
Cc: chrisw@sous-sol.org, Alexey Kardashevskiy <aik@au1.ibm.com>,
kvm@vger.kernel.org, pmac@au1.ibm.com, linux-pci@vger.kernel.org,
konrad.wilk@oracle.com, qemu-devel@nongnu.org,
iommu@lists.linux-foundation.org, agraf@suse.de,
aafabbri@cisco.com, B08248@freescale.com,
Alex Williamson <alex.williamson@redhat.com>,
avi@redhat.com, David Gibson <david@gibson.dropbear.id.au>,
dwg@au1.ibm.com, B07421@freescale.com, benve@cisco.com
Subject: Re: [Qemu-devel] vfio / iommu domain attributes
Date: Wed, 7 Dec 2011 17:38:42 +0100 [thread overview]
Message-ID: <20111207163842.GC29680@amd.com> (raw)
In-Reply-To: <CALRxmdDS4qas9fyHXeDVw2e_yMCTqzMi6VXUF-q+eYwgMwg7tw@mail.gmail.com>
On Wed, Dec 07, 2011 at 09:54:39AM -0600, Stuart Yoder wrote:
> Alex, Alexey I'm wondering if you've had any new thoughts on this over
> the last week.
>
> For Freescale, our iommu domain attributes would look something like:
> -domain iova base address
> -domain iova window size
I agree with that.
> -domain enable/disable
> -number of subwindows
> -operation mapping table index
> -stash destination CPU
> -stash target (cache– L1, L2, L3)
Why does the user of the IOMMU-API need to have control over these
things?
> These are all things that need to be set by the creator of the domain.
>
> Since the domain attributes are going to be so different for each platform does
> it make sense to define a new iommu_ops call back that just takes a void pointer
> that can be implemented in a platform specific way? For example:
>
> struct iommu_ops {
> [cut]
> int (*domain_set_attrs)(struct iommu_domain *domain,
> void *attrs);
> int (*domain_get_attrs)(struct iommu_domain *domain,
> void *attrs);
> }
A void pointer is certainly the worst choice for an interface. I think
it is better to have at least a set of common attributes. Somthing like
this:
iommu_domain_set_attr(struct iommu_domain *domain, enum attr_type, void *data)
iommu_domain_get_attr(struct iommu_domain *domain, enum attr_type, void *data)
The iova base/size options make sense for more IOMMUs than just
Freescale. For example it would allow to manage GART-like IOMMUs with
the IOMMU-API too.
Joerg
--
AMD Operating System Research Center
Advanced Micro Devices GmbH Einsteinring 24 85609 Dornach
General Managers: Alberto Bozzo, Andrew Bowd
Registration: Dornach, Landkr. Muenchen; Registerger. Muenchen, HRB Nr. 43632
next prev parent reply other threads:[~2011-12-07 16:39 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-07 15:54 vfio / iommu domain attributes Stuart Yoder
2011-12-07 15:54 ` [Qemu-devel] " Stuart Yoder
2011-12-07 16:38 ` Joerg Roedel [this message]
2011-12-07 16:38 ` Joerg Roedel
2011-12-07 18:59 ` Scott Wood
2011-12-07 19:11 ` Stuart Yoder
2011-12-07 19:11 ` [Qemu-devel] " Stuart Yoder
2011-12-07 19:11 ` Stuart Yoder
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=20111207163842.GC29680@amd.com \
--to=joerg.roedel@amd.com \
--cc=B07421@freescale.com \
--cc=B08248@freescale.com \
--cc=aafabbri@cisco.com \
--cc=agraf@suse.de \
--cc=aik@au1.ibm.com \
--cc=alex.williamson@redhat.com \
--cc=avi@redhat.com \
--cc=b08248@gmail.com \
--cc=benh@kernel.crashing.org \
--cc=benve@cisco.com \
--cc=chrisw@sous-sol.org \
--cc=david@gibson.dropbear.id.au \
--cc=dwg@au1.ibm.com \
--cc=iommu@lists.linux-foundation.org \
--cc=konrad.wilk@oracle.com \
--cc=kvm@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=pmac@au1.ibm.com \
--cc=qemu-devel@nongnu.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 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.