Linux IOMMU Development
 help / color / mirror / Atom feed
From: Vasant Hegde <vasant.hegde@amd.com>
To: Jason Gunthorpe <jgg@ziepe.ca>
Cc: Baolu Lu <baolu.lu@linux.intel.com>,
	"Tian, Kevin" <kevin.tian@intel.com>,
	"iommu@lists.linux.dev" <iommu@lists.linux.dev>,
	"joro@8bytes.org" <joro@8bytes.org>,
	"will@kernel.org" <will@kernel.org>,
	"robin.murphy@arm.com" <robin.murphy@arm.com>,
	"suravee.suthikulpanit@amd.com" <suravee.suthikulpanit@amd.com>,
	"Liu, Yi L" <yi.l.liu@intel.com>,
	Alex Williamson <alex.williamson@redhat.com>
Subject: Re: [PATCH RFCv2] iommu: Add domain type and flag to domain_alloc_paging()
Date: Mon, 19 Aug 2024 13:57:11 +0530	[thread overview]
Message-ID: <de10a9ac-be2c-4db2-8870-86aca57fb48e@amd.com> (raw)
In-Reply-To: <20240816183700.GR3468552@ziepe.ca>

Jason,


On 8/17/2024 12:07 AM, Jason Gunthorpe wrote:
> On Fri, Aug 16, 2024 at 01:47:52PM +0530, Vasant Hegde wrote:
>> Jason,
>>
>>
>> On 8/15/2024 7:17 PM, Jason Gunthorpe wrote:
>>> On Thu, Aug 15, 2024 at 12:59:13PM +0800, Baolu Lu wrote:
>>>> I suppose that this also includes converting paging domain to user
>>>> domain allocation in VFIO (ideally vhost-vdpa as well), right?
>>>
>>> Another thought is to add a flag to iommu_paging_domain_alloc()..
>>>
>>> Maybe like the below. The small duplication with
>>> __iommu_domain_alloc() would go away when iommu_domain_alloc() finally
>>> goes, then we'd be able to directly call iommu_paging_domain_alloc().
>>
>> This will work. But we have to define NO_PASID flag and pass it from vfio.
> 
> flags = 0 means NO_PASID
> 
> I didn't show it but the dma api domain's allocation path would have
> to specify IOMMU_HWPT_ALLOC_PASID to make it work.


That's fine. Then in your patch we have to prioritize domain_alloc_user() over
domain_alloc_paging. Change will look something like below (paste the code path
that's changing).


2037 struct iommu_domain *iommu_paging_domain_alloc_flags(struct device *dev,
2038                                                      unsigned int flags)
2039 {
2040         const struct iommu_ops *ops = dev_iommu_ops(dev);
2041         struct iommu_domain *domain;
2042
2043         if (!dev_has_iommu(dev))
2044                 return ERR_PTR(-ENODEV);
2045
2046         if (ops->domain_alloc_user)
2047                 domain = ops->domain_alloc_user(dev, flags, NULL, NULL);
2048         else if (ops->domain_alloc_paging && !flags)
2049                 domain = ops->domain_alloc_paging(dev);


-Vasant

  reply	other threads:[~2024-08-19  8:27 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-01 14:45 [PATCH RFCv2] iommu: Add domain type and flag to domain_alloc_paging() Vasant Hegde
2024-08-02  0:44 ` Baolu Lu
2024-08-02  5:53   ` Vasant Hegde
2024-08-06 12:34     ` Jason Gunthorpe
2024-08-06 14:41       ` Vasant Hegde
2024-08-06 17:32         ` Jason Gunthorpe
2024-08-07  5:49           ` Baolu Lu
2024-08-07  9:32             ` Vasant Hegde
2024-08-07 12:33             ` Jason Gunthorpe
2024-08-07  9:30           ` Vasant Hegde
2024-08-07 13:59             ` Jason Gunthorpe
2024-08-07 16:52               ` Vasant Hegde
2024-08-07 18:29                 ` Jason Gunthorpe
2024-08-08  1:16                   ` Jason Gunthorpe
2024-08-08 13:08                     ` Jason Gunthorpe
2024-08-09  6:43                       ` Vasant Hegde
2024-08-09 13:44                         ` Jason Gunthorpe
2024-08-12  9:21                           ` Vasant Hegde
2024-08-13 16:22                             ` Jason Gunthorpe
2024-08-14 10:54                               ` Vasant Hegde
2024-08-09  5:36                   ` Vasant Hegde
2024-08-12 12:07                   ` Yi Liu
2024-08-13  9:40                   ` Tian, Kevin
2024-08-13 16:20                     ` Jason Gunthorpe
2024-08-14  2:38                       ` Tian, Kevin
2024-08-14 22:40                         ` Jason Gunthorpe
2024-08-15  3:28                           ` Vasant Hegde
2024-08-15  4:58                             ` Yi Liu
2024-08-15 13:06                               ` Jason Gunthorpe
2024-08-16 11:59                                 ` Yi Liu
2024-08-15  4:59                             ` Baolu Lu
2024-08-15 13:47                               ` Jason Gunthorpe
2024-08-16  8:17                                 ` Vasant Hegde
2024-08-16 12:01                                   ` Yi Liu
2024-08-16 18:37                                   ` Jason Gunthorpe
2024-08-19  8:27                                     ` Vasant Hegde [this message]
2024-08-19 17:52                                       ` Jason Gunthorpe
2024-08-20  8:18                                         ` Vasant Hegde
2024-08-15 13:05                             ` Jason Gunthorpe
2024-08-12 12:01               ` Yi Liu

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=de10a9ac-be2c-4db2-8870-86aca57fb48e@amd.com \
    --to=vasant.hegde@amd.com \
    --cc=alex.williamson@redhat.com \
    --cc=baolu.lu@linux.intel.com \
    --cc=iommu@lists.linux.dev \
    --cc=jgg@ziepe.ca \
    --cc=joro@8bytes.org \
    --cc=kevin.tian@intel.com \
    --cc=robin.murphy@arm.com \
    --cc=suravee.suthikulpanit@amd.com \
    --cc=will@kernel.org \
    --cc=yi.l.liu@intel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox