> -----Original Message----- > From: Peter Maydell <peter.maydell@linaro.org> > Sent: Friday, December 13, 2024 1:33 PM > To: Jason Gunthorpe <jgg@nvidia.com> > Cc: Daniel P. Berrangé <berrange@redhat.com>; Shameerali Kolothum > Thodi <shameerali.kolothum.thodi@huawei.com>; qemu-arm@nongnu.org; > qemu-devel@nongnu.org; eric.auger@redhat.com; nicolinc@nvidia.com; > ddutile@redhat.com; Linuxarm <linuxarm@huawei.com>; Wangzhou (B) > <wangzhou1@hisilicon.com>; jiangkunkun <jiangkunkun@huawei.com>; > Jonathan Cameron <jonathan.cameron@huawei.com>; > zhangfei.gao@linaro.org > Subject: Re: [RFC PATCH 0/5] hw/arm/virt: Add support for user-creatable > nested SMMUv3 > > On Fri, 13 Dec 2024 at 12:46, Jason Gunthorpe <jgg@nvidia.com> wrote: > > > > On Fri, Dec 13, 2024 at 12:00:43PM +0000, Daniel P. Berrangé wrote: > > > On Fri, Nov 08, 2024 at 12:52:37PM +0000, Shameer Kolothum via wrote: > > > > Hi, > > > > > > > > This series adds initial support for a user-creatable "arm-smmuv3- > nested" > > > > device to Qemu. At present the Qemu ARM SMMUv3 emulation is per > machine > > > > and cannot support multiple SMMUv3s. > > > > > > > > In order to support vfio-pci dev assignment with vSMMUv3, the > physical > > > > SMMUv3 has to be configured in nested mode. Having a pluggable > > > > "arm-smmuv3-nested" device enables us to have multiple vSMMUv3 > for Guests > > > > running on a host with multiple physical SMMUv3s. A few benefits of > doing > > > > this are, > > > > > > I'm not very familiar with arm, but from this description I'm not > > > really seeing how "nesting" is involved here. You're only talking > > > about the host and 1 L1 guest, no L2 guest. > > > > nesting is the term the iommu side is using to refer to the 2 > > dimensional paging, ie a guest page table on top of a hypervisor page > > table. > > Isn't that more usually called "two stage" paging? Calling > that "nesting" seems like it is going to be massively confusing... Yes. This will be renamed in future revisions as arm-smmuv3-accel. > > Also, how does it relate to what this series seems to be > doing, where we provide the guest with two separate SMMUs? > (Are those two SMMUs "nested" in the sense that one is sitting > behind the other?) I don't think it requires two SMMUs in Guest. The nested or "two stage" means the stage 1 page table is owned by Guest and stage 2 by host. And this is achieved by IOMMUFD provided IOCTLs. There is a precurser to this series where the support for hw accelerated 2 stage support is added in Qemu SMMUv3 code. Please see the complete branch here, https://github.com/hisilicon/qemu/commits/private-smmuv3-nested-dev-rfc-v1/ And patches prior to this commit adds that support: 4ccdbe3: ("cover-letter: Add HW accelerated nesting support for arm SMMUv3") Nicolin is soon going to send out those for review. Or I can include those in this series so that it gives a complete picture. Nicolin? Hope this clarifies any confusion. Thanks, Shameer
On Mon, Dec 16, 2024 at 10:01:29AM +0000, Shameerali Kolothum Thodi wrote: > And patches prior to this commit adds that support: > 4ccdbe3: ("cover-letter: Add HW accelerated nesting support for arm > SMMUv3") > > Nicolin is soon going to send out those for review. Or I can include > those in this series so that it gives a complete picture. Nicolin? Just found that I forgot to reply this one...sorry I asked Don/Eric to take over that vSMMU series: https://lore.kernel.org/qemu-devel/Zy0jiPItu8A3wNTL@Asurada-Nvidia/ (The majority of my effort has been still on the kernel side: previously vIOMMU/vDEVICE, and now vEVENTQ/MSI/vCMDQ..) Don/Eric, is there any update from your side? I think it's also a good time to align with each other so we can take our next step in the new year :) Thanks Nicolin
Hi Nicolin, On 1/9/25 5:45 AM, Nicolin Chen wrote: > On Mon, Dec 16, 2024 at 10:01:29AM +0000, Shameerali Kolothum Thodi wrote: >> And patches prior to this commit adds that support: >> 4ccdbe3: ("cover-letter: Add HW accelerated nesting support for arm >> SMMUv3") >> >> Nicolin is soon going to send out those for review. Or I can include >> those in this series so that it gives a complete picture. Nicolin? > Just found that I forgot to reply this one...sorry > > I asked Don/Eric to take over that vSMMU series: > https://lore.kernel.org/qemu-devel/Zy0jiPItu8A3wNTL@Asurada-Nvidia/ > (The majority of my effort has been still on the kernel side: > previously vIOMMU/vDEVICE, and now vEVENTQ/MSI/vCMDQ..) > > Don/Eric, is there any update from your side? To be honest we have not much progressed so far. On my end I can dedicate some cycles now. I currently try to understand how and what subset I can respin and which test setup can be used. I will come back to you next week. Eric > > I think it's also a good time to align with each other so we > can take our next step in the new year :) > > Thanks > Nicolin >
On Fri, Jan 31, 2025 at 05:54:56PM +0100, Eric Auger wrote: > On 1/9/25 5:45 AM, Nicolin Chen wrote: > > On Mon, Dec 16, 2024 at 10:01:29AM +0000, Shameerali Kolothum Thodi wrote: > >> And patches prior to this commit adds that support: > >> 4ccdbe3: ("cover-letter: Add HW accelerated nesting support for arm > >> SMMUv3") > >> > >> Nicolin is soon going to send out those for review. Or I can include > >> those in this series so that it gives a complete picture. Nicolin? > > Just found that I forgot to reply this one...sorry > > > > I asked Don/Eric to take over that vSMMU series: > > https://lore.kernel.org/qemu-devel/Zy0jiPItu8A3wNTL@Asurada-Nvidia/ > > (The majority of my effort has been still on the kernel side: > > previously vIOMMU/vDEVICE, and now vEVENTQ/MSI/vCMDQ..) > > > > Don/Eric, is there any update from your side? > To be honest we have not much progressed so far. On my end I can > dedicate some cycles now. I currently try to understand how and what > subset I can respin and which test setup can be used. I will come back > to you next week. In summary, we will have the following series: 1) HWPT uAPI patches in backends/iommufd.c (Zhenzhong or Shameer) https://lore.kernel.org/qemu-devel/SJ0PR11MB6744943702EB5798EC9B3B9992E02@SJ0PR11MB6744.namprd11.prod.outlook.com/ 2) vIOMMU uAPI patches in backends/iommufd.c (I will rebase/send) 3) vSMMUv3 patches for HW-acc/nesting (Hoping Don/you could take over) 4) Shameer's work on "-device" in ARM virt.c 5) vEVENTQ for fault injection (if time is right, squash into 2/3) Perhaps, 3/4 would come in a different order, or maybe 4 could split into a few patches changing "-device" (sending before 3) and then a few other patches adding multi-vSMMU support (sending after 3). My latest QEMU branch for reference: https://github.com/nicolinc/qemu/commits/wip/for_iommufd_veventq-v6 It hasn't integrated Shameer's and Nathan's work though.. For testing, use this kernel branch: https://github.com/nicolinc/iommufd/commits/iommufd_veventq-v6-with-rmr I think we'd need to build a shared branch by integrating the latest series in the list above. Thanks Nicolin
Hi Nicolin, Shameer, On 2/3/25 7:50 PM, Nicolin Chen wrote: > On Fri, Jan 31, 2025 at 05:54:56PM +0100, Eric Auger wrote: >> On 1/9/25 5:45 AM, Nicolin Chen wrote: >>> On Mon, Dec 16, 2024 at 10:01:29AM +0000, Shameerali Kolothum Thodi wrote: >>>> And patches prior to this commit adds that support: >>>> 4ccdbe3: ("cover-letter: Add HW accelerated nesting support for arm >>>> SMMUv3") >>>> >>>> Nicolin is soon going to send out those for review. Or I can include >>>> those in this series so that it gives a complete picture. Nicolin? >>> Just found that I forgot to reply this one...sorry >>> >>> I asked Don/Eric to take over that vSMMU series: >>> https://lore.kernel.org/qemu-devel/Zy0jiPItu8A3wNTL@Asurada-Nvidia/ >>> (The majority of my effort has been still on the kernel side: >>> previously vIOMMU/vDEVICE, and now vEVENTQ/MSI/vCMDQ..) >>> >>> Don/Eric, is there any update from your side? >> To be honest we have not much progressed so far. On my end I can >> dedicate some cycles now. I currently try to understand how and what >> subset I can respin and which test setup can be used. I will come back >> to you next week. > In summary, we will have the following series: > 1) HWPT uAPI patches in backends/iommufd.c (Zhenzhong or Shameer) > https://lore.kernel.org/qemu-devel/SJ0PR11MB6744943702EB5798EC9B3B9992E02@SJ0PR11MB6744.namprd11.prod.outlook.com/ > 2) vIOMMU uAPI patches in backends/iommufd.c (I will rebase/send) for 1 and 2, are you taking about the "Add VIOMMU infrastructure support " series in Shameer's branch: private-smmuv3-nested-dev-rfc-v1. Sorry I may instead refer to NVidia or Intel's branch but I am not sure about the last ones. > 3) vSMMUv3 patches for HW-acc/nesting (Hoping Don/you could take over) We can start sending it upstream assuming we have a decent test environment. However in https://lore.kernel.org/all/329445b2f68a47269292aefb34584375@huawei.com/ Shameer suggested he may include it in his SMMU multi instance series. What do you both prefer? Eric > 4) Shameer's work on "-device" in ARM virt.c > 5) vEVENTQ for fault injection (if time is right, squash into 2/3) > > Perhaps, 3/4 would come in a different order, or maybe 4 could split > into a few patches changing "-device" (sending before 3) and then a > few other patches adding multi-vSMMU support (sending after 3). > > My latest QEMU branch for reference: > https://github.com/nicolinc/qemu/commits/wip/for_iommufd_veventq-v6 > It hasn't integrated Shameer's and Nathan's work though.. > For testing, use this kernel branch: > https://github.com/nicolinc/iommufd/commits/iommufd_veventq-v6-with-rmr > > I think we'd need to build a shared branch by integrating the latest > series in the list above. > > Thanks > Nicolin >
On Tue, Feb 04, 2025 at 06:49:15PM +0100, Eric Auger wrote: > > In summary, we will have the following series: > > 1) HWPT uAPI patches in backends/iommufd.c (Zhenzhong or Shameer) > > https://lore.kernel.org/qemu-devel/SJ0PR11MB6744943702EB5798EC9B3B9992E02@SJ0PR11MB6744.namprd11.prod.outlook.com/ > > 2) vIOMMU uAPI patches in backends/iommufd.c (I will rebase/send) > for 1 and 2, are you taking about the "Add VIOMMU infrastructure support > " series in Shameer's branch: private-smmuv3-nested-dev-rfc-v1. > Sorry I may instead refer to NVidia or Intel's branch but I am not sure > about the last ones. That "vIOMMU infrastructure" is for 2, yes. For 1, it's inside the Intel's series: "cover-letter: intel_iommu: Enable stage-1 translation for passthrough device" So, we need to extract them out and make it separately.. > > 3) vSMMUv3 patches for HW-acc/nesting (Hoping Don/you could take over) > We can start sending it upstream assuming we have a decent test environment. > > However in > https://lore.kernel.org/all/329445b2f68a47269292aefb34584375@huawei.com/ > > Shameer suggested he may include it in his SMMU multi instance series. > What do you both prefer? Sure, I think it's good to include those patches, though I believe we need to build a new shared branch as Shameer's branch might not reflect the latest kernel uAPI header. Here is a new branch on top of latest master tree (v9.2.50): https://github.com/nicolinc/qemu/commits/wip/for_shameer_02042025 I took HWPT patches from Zhenzhong's series and rebased all related changes from my tree. I did some sanity and it should work with RMR. Shameer, would you please try this branch and then integrate your series on top of the following series? cover-letter: Add HW accelerated nesting support for arm SMMUv3 cover-letter: Add vIOMMU-based nesting infrastructure support cover-letter: Add HWPT-based nesting infrastructure support Basically, just replace my old multi-instance series with yours, to create a shared branch for all of us. Eric, perhaps you can start to look at the these series. Even the first two iommufd series are a bit of rough integrations :) Thanks Nicolin
Hi Nicolin, > -----Original Message----- > From: Nicolin Chen <nicolinc@nvidia.com> > Sent: Wednesday, February 5, 2025 12:09 AM > To: Shameerali Kolothum Thodi > <shameerali.kolothum.thodi@huawei.com>; Eric Auger > <eric.auger@redhat.com> > Cc: ddutile@redhat.com; Peter Maydell <peter.maydell@linaro.org>; Jason > Gunthorpe <jgg@nvidia.com>; Daniel P. Berrangé <berrange@redhat.com>; > qemu-arm@nongnu.org; qemu-devel@nongnu.org; Linuxarm > <linuxarm@huawei.com>; Wangzhou (B) <wangzhou1@hisilicon.com>; > jiangkunkun <jiangkunkun@huawei.com>; Jonathan Cameron > <jonathan.cameron@huawei.com>; zhangfei.gao@linaro.org > Subject: Re: [RFC PATCH 0/5] hw/arm/virt: Add support for user-creatable > nested SMMUv3 > > On Tue, Feb 04, 2025 at 06:49:15PM +0100, Eric Auger wrote: > > > In summary, we will have the following series: > > > 1) HWPT uAPI patches in backends/iommufd.c (Zhenzhong or Shameer) > > > https://lore.kernel.org/qemu- > devel/SJ0PR11MB6744943702EB5798EC9B3B9992E02@SJ0PR11MB6744.nam > prd11.prod.outlook.com/ > > > 2) vIOMMU uAPI patches in backends/iommufd.c (I will rebase/send) > > > for 1 and 2, are you taking about the "Add VIOMMU infrastructure > support > > " series in Shameer's branch: private-smmuv3-nested-dev-rfc-v1. > > Sorry I may instead refer to NVidia or Intel's branch but I am not sure > > about the last ones. > > That "vIOMMU infrastructure" is for 2, yes. > > For 1, it's inside the Intel's series: > "cover-letter: intel_iommu: Enable stage-1 translation for passthrough > device" > > So, we need to extract them out and make it separately.. > > > > 3) vSMMUv3 patches for HW-acc/nesting (Hoping Don/you could take > over) > > We can start sending it upstream assuming we have a decent test > environment. > > > > However in > > > https://lore.kernel.org/all/329445b2f68a47269292aefb34584375@huawei.c > om/ > > > > Shameer suggested he may include it in his SMMU multi instance series. > > What do you both prefer? > > Sure, I think it's good to include those patches, One of the feedback I received on my series was to rename "arm-smmuv3-nested" to "arm-smmuv3-accel" and possibly rename function names to include "accel' as well and move those functions to a separate "smmuv3-accel.c" file. I suppose that applies to the " Add HW accelerated nesting support for arm SMMUv3" series as well. Is that fine with you? Thanks, Shameer
On Thu, Feb 06, 2025 at 10:34:15AM +0000, Shameerali Kolothum Thodi wrote: > > -----Original Message----- > > From: Nicolin Chen <nicolinc@nvidia.com> > > On Tue, Feb 04, 2025 at 06:49:15PM +0100, Eric Auger wrote: > > > However in > > > > > > Shameer suggested he may include it in his SMMU multi instance series. > > > What do you both prefer? > > > > Sure, I think it's good to include those patches, > > One of the feedback I received on my series was to rename "arm-smmuv3-nested" > to "arm-smmuv3-accel" and possibly rename function names to include "accel' as well > and move those functions to a separate "smmuv3-accel.c" file. I suppose that applies to > the " Add HW accelerated nesting support for arm SMMUv3" series as well. > > Is that fine with you? Oh, no problem. If you want to rename the whole thing, please feel free. I do see the naming conflict between the "nested" stage and the "nested" HW feature, which are both supported by the vSMMU now. Thanks Nicolin
Hi Nicolin, > -----Original Message----- > From: Nicolin Chen <nicolinc@nvidia.com> > Sent: Thursday, February 6, 2025 6:58 PM > To: Shameerali Kolothum Thodi <shameerali.kolothum.thodi@huawei.com> > Cc: Eric Auger <eric.auger@redhat.com>; ddutile@redhat.com; Peter > Maydell <peter.maydell@linaro.org>; Jason Gunthorpe <jgg@nvidia.com>; > Daniel P. Berrangé <berrange@redhat.com>; qemu-arm@nongnu.org; > qemu-devel@nongnu.org; Linuxarm <linuxarm@huawei.com>; Wangzhou > (B) <wangzhou1@hisilicon.com>; jiangkunkun <jiangkunkun@huawei.com>; > Jonathan Cameron <jonathan.cameron@huawei.com>; > zhangfei.gao@linaro.org > Subject: Re: [RFC PATCH 0/5] hw/arm/virt: Add support for user-creatable > nested SMMUv3 > [..] > > One of the feedback I received on my series was to rename "arm-smmuv3- > nested" > > to "arm-smmuv3-accel" and possibly rename function names to include > "accel' as well > > and move those functions to a separate "smmuv3-accel.c" file. I suppose > that applies to > > the " Add HW accelerated nesting support for arm SMMUv3" series as > well. > > > > Is that fine with you? > > Oh, no problem. If you want to rename the whole thing, please feel > free. I do see the naming conflict between the "nested" stage and > the "nested" HW feature, which are both supported by the vSMMU now. I am working on the above now and have quick question to you😊. Looking at the smmu_dev_attach_viommu() fn here[0], it appears to do the following: 1. Alloc a s2_hwpt if not allocated already and attach it. 2. Allocate abort and bypass hwpt 3. Attach bypass hwpt. I didn't get why we are doing the step 3 here. To me it looks like, when we attach the s2_hwpt(ie, the nested parent domain attach), the kernel will do, arm_smmu_attach_dev() arm_smmu_make_s2_domain_ste() It appears through step 3, we achieve the same thing again. Or it is possible I missed something obvious here. Please let me know. Thanks, Shameer [0] https://github.com/nicolinc/qemu/blob/wip/for_shameer_02042025/hw/arm/smmu-common.c#L910C13-L910C35
On Mon, Mar 03, 2025 at 03:21:57PM +0000, Shameerali Kolothum Thodi wrote: > I am working on the above now and have quick question to you😊. > > Looking at the smmu_dev_attach_viommu() fn here[0], > it appears to do the following: > > 1. Alloc a s2_hwpt if not allocated already and attach it. > 2. Allocate abort and bypass hwpt > 3. Attach bypass hwpt. > > I didn't get why we are doing the step 3 here. To me it looks like, > when we attach the s2_hwpt(ie, the nested parent domain attach), > the kernel will do, > > arm_smmu_attach_dev() > arm_smmu_make_s2_domain_ste() > > It appears through step 3, we achieve the same thing again. > > Or it is possible I missed something obvious here. Because a device cannot attach to a vIOMMU object directly, but only via a proxy hwpt_nested. So, this bypass hwpt gives us the port to associate the device to the vIOMMU, before a vDEVICE or a "translate" hwpt_nested is allocated. Currently it's the same because an S2 parent hwpt holds a VMID, so we could just attach the device to the S2 hwpt for the same STE configuration as attaching the device to the proxy bypass hwpt. Yet, this will change in the future after letting vIOMMU objects hold their own VMIDs to share a common S2 parent hwpt that won't have a VMID, i.e. arm_smmu_make_s2_domain_ste() will need the vIOMMU object to get the VMID for STE. I should have added a few lines of comments there :) Thanks Nicolin
> -----Original Message----- > From: Nicolin Chen <nicolinc@nvidia.com> > Sent: Monday, March 3, 2025 5:05 PM > To: Shameerali Kolothum Thodi <shameerali.kolothum.thodi@huawei.com> > Cc: Eric Auger <eric.auger@redhat.com>; ddutile@redhat.com; Peter > Maydell <peter.maydell@linaro.org>; Jason Gunthorpe <jgg@nvidia.com>; > Daniel P. Berrangé <berrange@redhat.com>; qemu-arm@nongnu.org; > qemu-devel@nongnu.org; Linuxarm <linuxarm@huawei.com>; Wangzhou > (B) <wangzhou1@hisilicon.com>; jiangkunkun <jiangkunkun@huawei.com>; > Jonathan Cameron <jonathan.cameron@huawei.com>; > zhangfei.gao@linaro.org > Subject: Re: [RFC PATCH 0/5] hw/arm/virt: Add support for user-creatable > nested SMMUv3 > > On Mon, Mar 03, 2025 at 03:21:57PM +0000, Shameerali Kolothum Thodi > wrote: > > I am working on the above now and have quick question to you😊. > > > > Looking at the smmu_dev_attach_viommu() fn here[0], > > it appears to do the following: > > > > 1. Alloc a s2_hwpt if not allocated already and attach it. > > 2. Allocate abort and bypass hwpt > > 3. Attach bypass hwpt. > > > > I didn't get why we are doing the step 3 here. To me it looks like, > > when we attach the s2_hwpt(ie, the nested parent domain attach), > > the kernel will do, > > > > arm_smmu_attach_dev() > > arm_smmu_make_s2_domain_ste() > > > > It appears through step 3, we achieve the same thing again. > > > > Or it is possible I missed something obvious here. > > Because a device cannot attach to a vIOMMU object directly, but > only via a proxy hwpt_nested. So, this bypass hwpt gives us the > port to associate the device to the vIOMMU, before a vDEVICE or > a "translate" hwpt_nested is allocated. > > Currently it's the same because an S2 parent hwpt holds a VMID, > so we could just attach the device to the S2 hwpt for the same > STE configuration as attaching the device to the proxy bypass > hwpt. Yet, this will change in the future after letting vIOMMU > objects hold their own VMIDs to share a common S2 parent hwpt > that won't have a VMID, i.e. arm_smmu_make_s2_domain_ste() will > need the vIOMMU object to get the VMID for STE. > > I should have added a few lines of comments there :) Ok. Thanks for the explanation. I will keep it then and add few comments to make it clear. Do you have an initial implementation of the above with vIOMMU object holding the VMIDs to share? Actually I do have a dependency on that for my KVM pinned VMID series[0] where it was suggested that the VMID should associated with a vIOMMU object rather than the IOMMUFD context I used in there. And Jason mentioned about the work involved to do that here[1]. Appreciate if you could share if any progress is made on that so that I can try to rebase that KVM Pinned series on top of that and give it a try. Thanks, Shameer [0] https://lore.kernel.org/linux-iommu/20240208151837.35068-1-shameerali.kolothum.thodi@huawei.com/ [1] https://lore.kernel.org/linux-arm-kernel/20241129150628.GG1253388@nvidia.com/
Hi Nicolin, On 2/5/25 1:08 AM, Nicolin Chen wrote: > On Tue, Feb 04, 2025 at 06:49:15PM +0100, Eric Auger wrote: >>> In summary, we will have the following series: >>> 1) HWPT uAPI patches in backends/iommufd.c (Zhenzhong or Shameer) >>> https://lore.kernel.org/qemu-devel/SJ0PR11MB6744943702EB5798EC9B3B9992E02@SJ0PR11MB6744.namprd11.prod.outlook.com/ >>> 2) vIOMMU uAPI patches in backends/iommufd.c (I will rebase/send) >> for 1 and 2, are you taking about the "Add VIOMMU infrastructure support >> " series in Shameer's branch: private-smmuv3-nested-dev-rfc-v1. >> Sorry I may instead refer to NVidia or Intel's branch but I am not sure >> about the last ones. > That "vIOMMU infrastructure" is for 2, yes. > > For 1, it's inside the Intel's series: > "cover-letter: intel_iommu: Enable stage-1 translation for passthrough device" > > So, we need to extract them out and make it separately.. OK > >>> 3) vSMMUv3 patches for HW-acc/nesting (Hoping Don/you could take over) >> We can start sending it upstream assuming we have a decent test environment. >> >> However in >> https://lore.kernel.org/all/329445b2f68a47269292aefb34584375@huawei.com/ >> >> Shameer suggested he may include it in his SMMU multi instance series. >> What do you both prefer? > Sure, I think it's good to include those patches, though I believe > we need to build a new shared branch as Shameer's branch might not > reflect the latest kernel uAPI header. > > Here is a new branch on top of latest master tree (v9.2.50): > https://github.com/nicolinc/qemu/commits/wip/for_shameer_02042025 > > I took HWPT patches from Zhenzhong's series and rebased all related > changes from my tree. I did some sanity and it should work with RMR. > > Shameer, would you please try this branch and then integrate your > series on top of the following series? > cover-letter: Add HW accelerated nesting support for arm SMMUv3 > cover-letter: Add vIOMMU-based nesting infrastructure support > cover-letter: Add HWPT-based nesting infrastructure support > Basically, just replace my old multi-instance series with yours, to > create a shared branch for all of us. > > Eric, perhaps you can start to look at the these series. Even the > first two iommufd series are a bit of rough integrations :) OK I am starting this week Eric > > Thanks > Nicolin >
> -----Original Message----- > From: Nicolin Chen <nicolinc@nvidia.com> > Sent: Wednesday, February 5, 2025 12:09 AM > To: Shameerali Kolothum Thodi > <shameerali.kolothum.thodi@huawei.com>; Eric Auger > <eric.auger@redhat.com> > Cc: ddutile@redhat.com; Peter Maydell <peter.maydell@linaro.org>; Jason > Gunthorpe <jgg@nvidia.com>; Daniel P. Berrangé <berrange@redhat.com>; > qemu-arm@nongnu.org; qemu-devel@nongnu.org; Linuxarm > <linuxarm@huawei.com>; Wangzhou (B) <wangzhou1@hisilicon.com>; > jiangkunkun <jiangkunkun@huawei.com>; Jonathan Cameron > <jonathan.cameron@huawei.com>; zhangfei.gao@linaro.org > Subject: Re: [RFC PATCH 0/5] hw/arm/virt: Add support for user-creatable > nested SMMUv3 > > On Tue, Feb 04, 2025 at 06:49:15PM +0100, Eric Auger wrote: > > > In summary, we will have the following series: > > > 1) HWPT uAPI patches in backends/iommufd.c (Zhenzhong or Shameer) > > > https://lore.kernel.org/qemu- > devel/SJ0PR11MB6744943702EB5798EC9B3B9992E02@SJ0PR11MB6744.nam > prd11.prod.outlook.com/ > > > 2) vIOMMU uAPI patches in backends/iommufd.c (I will rebase/send) > > > for 1 and 2, are you taking about the "Add VIOMMU infrastructure > support > > " series in Shameer's branch: private-smmuv3-nested-dev-rfc-v1. > > Sorry I may instead refer to NVidia or Intel's branch but I am not sure > > about the last ones. > > That "vIOMMU infrastructure" is for 2, yes. > > For 1, it's inside the Intel's series: > "cover-letter: intel_iommu: Enable stage-1 translation for passthrough > device" > > So, we need to extract them out and make it separately.. > > > > 3) vSMMUv3 patches for HW-acc/nesting (Hoping Don/you could take > over) > > We can start sending it upstream assuming we have a decent test > environment. > > > > However in > > > https://lore.kernel.org/all/329445b2f68a47269292aefb34584375@huawei.c > om/ > > > > Shameer suggested he may include it in his SMMU multi instance series. > > What do you both prefer? > > Sure, I think it's good to include those patches, though I believe > we need to build a new shared branch as Shameer's branch might not > reflect the latest kernel uAPI header. > > Here is a new branch on top of latest master tree (v9.2.50): > https://github.com/nicolinc/qemu/commits/wip/for_shameer_02042025 > > I took HWPT patches from Zhenzhong's series and rebased all related > changes from my tree. I did some sanity and it should work with RMR. > > Shameer, would you please try this branch and then integrate your > series on top of the following series? > cover-letter: Add HW accelerated nesting support for arm SMMUv3 > cover-letter: Add vIOMMU-based nesting infrastructure support > cover-letter: Add HWPT-based nesting infrastructure support > Basically, just replace my old multi-instance series with yours, to > create a shared branch for all of us. Ok. I will take a look at that and rebase. Thanks, Shameer
Nicolin, Hi! On 1/8/25 11:45 PM, Nicolin Chen wrote: > On Mon, Dec 16, 2024 at 10:01:29AM +0000, Shameerali Kolothum Thodi wrote: >> And patches prior to this commit adds that support: >> 4ccdbe3: ("cover-letter: Add HW accelerated nesting support for arm >> SMMUv3") >> >> Nicolin is soon going to send out those for review. Or I can include >> those in this series so that it gives a complete picture. Nicolin? > > Just found that I forgot to reply this one...sorry > > I asked Don/Eric to take over that vSMMU series: > https://lore.kernel.org/qemu-devel/Zy0jiPItu8A3wNTL@Asurada-Nvidia/ > (The majority of my effort has been still on the kernel side: > previously vIOMMU/vDEVICE, and now vEVENTQ/MSI/vCMDQ..) > > Don/Eric, is there any update from your side? > Apologies for delayed response, been at customer site, and haven't been keeping up w/biz email. Eric is probably waiting for me to get back and chat as well. Will look to reply early next week. - Don > I think it's also a good time to align with each other so we > can take our next step in the new year :) > > Thanks > Nicolin >
Hi Don, On Fri, Jan 10, 2025 at 11:05:24PM -0500, Donald Dutile wrote: > On 1/8/25 11:45 PM, Nicolin Chen wrote: > > On Mon, Dec 16, 2024 at 10:01:29AM +0000, Shameerali Kolothum Thodi wrote: > > > And patches prior to this commit adds that support: > > > 4ccdbe3: ("cover-letter: Add HW accelerated nesting support for arm > > > SMMUv3") > > > > > > Nicolin is soon going to send out those for review. Or I can include > > > those in this series so that it gives a complete picture. Nicolin? > > > > Just found that I forgot to reply this one...sorry > > > > I asked Don/Eric to take over that vSMMU series: > > https://lore.kernel.org/qemu-devel/Zy0jiPItu8A3wNTL@Asurada-Nvidia/ > > (The majority of my effort has been still on the kernel side: > > previously vIOMMU/vDEVICE, and now vEVENTQ/MSI/vCMDQ..) > > > > Don/Eric, is there any update from your side? > > > Apologies for delayed response, been at customer site, and haven't been keeping up w/biz email. > Eric is probably waiting for me to get back and chat as well. > Will look to reply early next week. I wonder if we can make some progress in Feb? If so, we can start to wrap up the iommufd uAPI patches for HWPT, which was a part of intel's series but never got sent since their emulated series is seemingly still pending? One detail for the uAPI patches is to decide how vIOMMU code will interact with those backend APIs.. Hopefully, you and Eric should have something in mind :) Thanks Nicolin
> -----Original Message----- > From: Nicolin Chen <nicolinc@nvidia.com> > Sent: Thursday, January 23, 2025 4:10 AM > To: Donald Dutile <ddutile@redhat.com> > Cc: Shameerali Kolothum Thodi > <shameerali.kolothum.thodi@huawei.com>; eric.auger@redhat.com; Peter > Maydell <peter.maydell@linaro.org>; Jason Gunthorpe <jgg@nvidia.com>; > Daniel P. Berrangé <berrange@redhat.com>; qemu-arm@nongnu.org; > qemu-devel@nongnu.org; Linuxarm <linuxarm@huawei.com>; Wangzhou > (B) <wangzhou1@hisilicon.com>; jiangkunkun <jiangkunkun@huawei.com>; > Jonathan Cameron <jonathan.cameron@huawei.com>; > zhangfei.gao@linaro.org > Subject: Re: [RFC PATCH 0/5] hw/arm/virt: Add support for user-creatable > nested SMMUv3 > > Hi Don, > > On Fri, Jan 10, 2025 at 11:05:24PM -0500, Donald Dutile wrote: > > On 1/8/25 11:45 PM, Nicolin Chen wrote: > > > On Mon, Dec 16, 2024 at 10:01:29AM +0000, Shameerali Kolothum Thodi > wrote: > > > > And patches prior to this commit adds that support: > > > > 4ccdbe3: ("cover-letter: Add HW accelerated nesting support for arm > > > > SMMUv3") > > > > > > > > Nicolin is soon going to send out those for review. Or I can include > > > > those in this series so that it gives a complete picture. Nicolin? > > > > > > Just found that I forgot to reply this one...sorry > > > > > > I asked Don/Eric to take over that vSMMU series: > > > https://lore.kernel.org/qemu-devel/Zy0jiPItu8A3wNTL@Asurada-Nvidia/ > > > (The majority of my effort has been still on the kernel side: > > > previously vIOMMU/vDEVICE, and now vEVENTQ/MSI/vCMDQ..) > > > > > > Don/Eric, is there any update from your side? > > > > > Apologies for delayed response, been at customer site, and haven't been > keeping up w/biz email. > > Eric is probably waiting for me to get back and chat as well. > > Will look to reply early next week. > > I wonder if we can make some progress in Feb? If so, we can start > to wrap up the iommufd uAPI patches for HWPT, which was a part of > intel's series but never got sent since their emulated series is > seemingly still pending? I think these are the 5 patches that we require from Intel pass-through series, vfio/iommufd: Implement [at|de]tach_hwpt handlers vfio/iommufd: Implement HostIOMMUDeviceClass::realize_late() handler HostIOMMUDevice: Introduce realize_late callback vfio/iommufd: Add properties and handlers to TYPE_HOST_IOMMU_DEVICE_IOMMUFD backends/iommufd: Add helpers for invalidating user-managed HWPT See the commits from here, https://github.com/hisilicon/qemu/commit/bbdc65af38fa5723f1bd9b026e292730901f57b5 [CC Zhenzhong] Hi Zhenzhong, Just wondering what your plans are for the above patches. If it make sense and you are fine with it, I think it is a good idea one of us can pick up those from that series and sent out separately so that it can get some review and take it forward. Thanks, Shameer
Hi Shameer, >-----Original Message----- >From: Shameerali Kolothum Thodi <shameerali.kolothum.thodi@huawei.com> >Subject: RE: [RFC PATCH 0/5] hw/arm/virt: Add support for user-creatable nested >SMMUv3 > > > >> -----Original Message----- >> From: Nicolin Chen <nicolinc@nvidia.com> >> Sent: Thursday, January 23, 2025 4:10 AM >> To: Donald Dutile <ddutile@redhat.com> >> Cc: Shameerali Kolothum Thodi >> <shameerali.kolothum.thodi@huawei.com>; eric.auger@redhat.com; Peter >> Maydell <peter.maydell@linaro.org>; Jason Gunthorpe <jgg@nvidia.com>; >> Daniel P. Berrangé <berrange@redhat.com>; qemu-arm@nongnu.org; >> qemu-devel@nongnu.org; Linuxarm <linuxarm@huawei.com>; Wangzhou >> (B) <wangzhou1@hisilicon.com>; jiangkunkun <jiangkunkun@huawei.com>; >> Jonathan Cameron <jonathan.cameron@huawei.com>; >> zhangfei.gao@linaro.org >> Subject: Re: [RFC PATCH 0/5] hw/arm/virt: Add support for user-creatable >> nested SMMUv3 >> >> Hi Don, >> >> On Fri, Jan 10, 2025 at 11:05:24PM -0500, Donald Dutile wrote: >> > On 1/8/25 11:45 PM, Nicolin Chen wrote: >> > > On Mon, Dec 16, 2024 at 10:01:29AM +0000, Shameerali Kolothum Thodi >> wrote: >> > > > And patches prior to this commit adds that support: >> > > > 4ccdbe3: ("cover-letter: Add HW accelerated nesting support for arm >> > > > SMMUv3") >> > > > >> > > > Nicolin is soon going to send out those for review. Or I can include >> > > > those in this series so that it gives a complete picture. Nicolin? >> > > >> > > Just found that I forgot to reply this one...sorry >> > > >> > > I asked Don/Eric to take over that vSMMU series: >> > > https://lore.kernel.org/qemu-devel/Zy0jiPItu8A3wNTL@Asurada-Nvidia/ >> > > (The majority of my effort has been still on the kernel side: >> > > previously vIOMMU/vDEVICE, and now vEVENTQ/MSI/vCMDQ..) >> > > >> > > Don/Eric, is there any update from your side? >> > > >> > Apologies for delayed response, been at customer site, and haven't been >> keeping up w/biz email. >> > Eric is probably waiting for me to get back and chat as well. >> > Will look to reply early next week. >> >> I wonder if we can make some progress in Feb? If so, we can start >> to wrap up the iommufd uAPI patches for HWPT, which was a part of >> intel's series but never got sent since their emulated series is >> seemingly still pending? > >I think these are the 5 patches that we require from Intel pass-through series, > >vfio/iommufd: Implement [at|de]tach_hwpt handlers >vfio/iommufd: Implement HostIOMMUDeviceClass::realize_late() handler >HostIOMMUDevice: Introduce realize_late callback >vfio/iommufd: Add properties and handlers to >TYPE_HOST_IOMMU_DEVICE_IOMMUFD >backends/iommufd: Add helpers for invalidating user-managed HWPT > >See the commits from here, >https://github.com/hisilicon/qemu/commit/bbdc65af38fa5723f1bd9b026e29273 >0901f57b5 > >[CC Zhenzhong] > >Hi Zhenzhong, > >Just wondering what your plans are for the above patches. If it make sense and >you >are fine with it, I think it is a good idea one of us can pick up those from that >series >and sent out separately so that it can get some review and take it forward. Emulated series is merged, I plan to send Intel pass-through series after Chinese festival vacation, but at least half a month later. So feel free to pick those patches you need and send for comments. Thanks Zhenzhong
Hi Shameer, Nicolin, >-----Original Message----- >From: Duan, Zhenzhong >Subject: RE: [RFC PATCH 0/5] hw/arm/virt: Add support for user-creatable nested >SMMUv3 > >Hi Shameer, > >>-----Original Message----- >>From: Shameerali Kolothum Thodi <shameerali.kolothum.thodi@huawei.com> >>Subject: RE: [RFC PATCH 0/5] hw/arm/virt: Add support for user-creatable >nested >>SMMUv3 >> >> >> >>> -----Original Message----- >>> From: Nicolin Chen <nicolinc@nvidia.com> >>> Sent: Thursday, January 23, 2025 4:10 AM >>> To: Donald Dutile <ddutile@redhat.com> >>> Cc: Shameerali Kolothum Thodi >>> <shameerali.kolothum.thodi@huawei.com>; eric.auger@redhat.com; Peter >>> Maydell <peter.maydell@linaro.org>; Jason Gunthorpe <jgg@nvidia.com>; >>> Daniel P. Berrangé <berrange@redhat.com>; qemu-arm@nongnu.org; >>> qemu-devel@nongnu.org; Linuxarm <linuxarm@huawei.com>; Wangzhou >>> (B) <wangzhou1@hisilicon.com>; jiangkunkun <jiangkunkun@huawei.com>; >>> Jonathan Cameron <jonathan.cameron@huawei.com>; >>> zhangfei.gao@linaro.org >>> Subject: Re: [RFC PATCH 0/5] hw/arm/virt: Add support for user-creatable >>> nested SMMUv3 >>> >>> Hi Don, >>> >>> On Fri, Jan 10, 2025 at 11:05:24PM -0500, Donald Dutile wrote: >>> > On 1/8/25 11:45 PM, Nicolin Chen wrote: >>> > > On Mon, Dec 16, 2024 at 10:01:29AM +0000, Shameerali Kolothum Thodi >>> wrote: >>> > > > And patches prior to this commit adds that support: >>> > > > 4ccdbe3: ("cover-letter: Add HW accelerated nesting support for arm >>> > > > SMMUv3") >>> > > > >>> > > > Nicolin is soon going to send out those for review. Or I can include >>> > > > those in this series so that it gives a complete picture. Nicolin? >>> > > >>> > > Just found that I forgot to reply this one...sorry >>> > > >>> > > I asked Don/Eric to take over that vSMMU series: >>> > > https://lore.kernel.org/qemu-devel/Zy0jiPItu8A3wNTL@Asurada-Nvidia/ >>> > > (The majority of my effort has been still on the kernel side: >>> > > previously vIOMMU/vDEVICE, and now vEVENTQ/MSI/vCMDQ..) >>> > > >>> > > Don/Eric, is there any update from your side? >>> > > >>> > Apologies for delayed response, been at customer site, and haven't been >>> keeping up w/biz email. >>> > Eric is probably waiting for me to get back and chat as well. >>> > Will look to reply early next week. >>> >>> I wonder if we can make some progress in Feb? If so, we can start >>> to wrap up the iommufd uAPI patches for HWPT, which was a part of >>> intel's series but never got sent since their emulated series is >>> seemingly still pending? >> >>I think these are the 5 patches that we require from Intel pass-through series, >> >>vfio/iommufd: Implement [at|de]tach_hwpt handlers >>vfio/iommufd: Implement HostIOMMUDeviceClass::realize_late() handler >>HostIOMMUDevice: Introduce realize_late callback >>vfio/iommufd: Add properties and handlers to >>TYPE_HOST_IOMMU_DEVICE_IOMMUFD >>backends/iommufd: Add helpers for invalidating user-managed HWPT >> >>See the commits from here, >>https://github.com/hisilicon/qemu/commit/bbdc65af38fa5723f1bd9b026e2927 >3 >>0901f57b5 >> >>[CC Zhenzhong] >> >>Hi Zhenzhong, >> >>Just wondering what your plans are for the above patches. If it make sense and >>you >>are fine with it, I think it is a good idea one of us can pick up those from that >>series >>and sent out separately so that it can get some review and take it forward. > >Emulated series is merged, I plan to send Intel pass-through series after >Chinese festival vacation, but at least half a month later. So feel free to >pick those patches you need and send for comments. I plan to send vtd nesting series out this week and want to ask about status of "1) HWPT uAPI patches in backends/iommufd.c" series. If you had sent it out, I will do a rebase and bypass them to avoid duplicate review effort in community. Or I can send them in vtd nesting series if you not yet. Thanks Zhenzhong
Hi Zhenzhong, > -----Original Message----- > From: Duan, Zhenzhong <zhenzhong.duan@intel.com> > Sent: Monday, February 17, 2025 9:17 AM > To: Shameerali Kolothum Thodi > <shameerali.kolothum.thodi@huawei.com>; Nicolin Chen > <nicolinc@nvidia.com>; Donald Dutile <ddutile@redhat.com> > Cc: eric.auger@redhat.com; Peter Maydell <peter.maydell@linaro.org>; > Jason Gunthorpe <jgg@nvidia.com>; Daniel P. Berrangé > <berrange@redhat.com>; qemu-arm@nongnu.org; qemu- > devel@nongnu.org; Linuxarm <linuxarm@huawei.com>; Wangzhou (B) > <wangzhou1@hisilicon.com>; jiangkunkun <jiangkunkun@huawei.com>; > Jonathan Cameron <jonathan.cameron@huawei.com>; > zhangfei.gao@linaro.org; Peng, Chao P <chao.p.peng@intel.com> > Subject: RE: [RFC PATCH 0/5] hw/arm/virt: Add support for user-creatable > nested SMMUv3 > > Hi Shameer, Nicolin, > [...] > >>Hi Zhenzhong, > >> > >>Just wondering what your plans are for the above patches. If it make > sense and > >>you > >>are fine with it, I think it is a good idea one of us can pick up those from > that > >>series > >>and sent out separately so that it can get some review and take it > forward. > > > >Emulated series is merged, I plan to send Intel pass-through series after > >Chinese festival vacation, but at least half a month later. So feel free to > >pick those patches you need and send for comments. > > I plan to send vtd nesting series out this week and want to ask about status > of "1) HWPT uAPI patches in backends/iommufd.c" series. > > If you had sent it out, I will do a rebase and bypass them to avoid duplicate > review effort in community. Or I can send them in vtd nesting series if you > not yet. No. It is not send out yet. Please include it in your vtd nesting series. Thanks. I am currently working on refactoring the SMMUv3 accel series and the "Add HW accelerated nesting support for arm SMMUv3" series from Nicolin. Thanks, Shameer.
Hi Shammeer, On 2/18/25 7:52 AM, Shameerali Kolothum Thodi wrote: > Hi Zhenzhong, > >> -----Original Message----- >> From: Duan, Zhenzhong <zhenzhong.duan@intel.com> >> Sent: Monday, February 17, 2025 9:17 AM >> To: Shameerali Kolothum Thodi >> <shameerali.kolothum.thodi@huawei.com>; Nicolin Chen >> <nicolinc@nvidia.com>; Donald Dutile <ddutile@redhat.com> >> Cc: eric.auger@redhat.com; Peter Maydell <peter.maydell@linaro.org>; >> Jason Gunthorpe <jgg@nvidia.com>; Daniel P. Berrangé >> <berrange@redhat.com>; qemu-arm@nongnu.org; qemu- >> devel@nongnu.org; Linuxarm <linuxarm@huawei.com>; Wangzhou (B) >> <wangzhou1@hisilicon.com>; jiangkunkun <jiangkunkun@huawei.com>; >> Jonathan Cameron <jonathan.cameron@huawei.com>; >> zhangfei.gao@linaro.org; Peng, Chao P <chao.p.peng@intel.com> >> Subject: RE: [RFC PATCH 0/5] hw/arm/virt: Add support for user-creatable >> nested SMMUv3 >> >> Hi Shameer, Nicolin, >> > [...] > >>>> Hi Zhenzhong, >>>> >>>> Just wondering what your plans are for the above patches. If it make >> sense and >>>> you >>>> are fine with it, I think it is a good idea one of us can pick up those from >> that >>>> series >>>> and sent out separately so that it can get some review and take it >> forward. >>> Emulated series is merged, I plan to send Intel pass-through series after >>> Chinese festival vacation, but at least half a month later. So feel free to >>> pick those patches you need and send for comments. >> I plan to send vtd nesting series out this week and want to ask about status >> of "1) HWPT uAPI patches in backends/iommufd.c" series. >> >> If you had sent it out, I will do a rebase and bypass them to avoid duplicate >> review effort in community. Or I can send them in vtd nesting series if you >> not yet. > No. It is not send out yet. Please include it in your vtd nesting series. Thanks. > > I am currently working on refactoring the SMMUv3 accel series and the > "Add HW accelerated nesting support for arm SMMUv3" series so will you send "Add HW accelerated nesting support for arm SMMUv3" or do you want me to do it? Thanks Eric > from Nicolin. > > Thanks, > Shameer. > >
> -----Original Message----- > From: Eric Auger <eric.auger@redhat.com> > Sent: Thursday, March 6, 2025 6:00 PM > To: Shameerali Kolothum Thodi > <shameerali.kolothum.thodi@huawei.com>; Duan, Zhenzhong > <zhenzhong.duan@intel.com>; Nicolin Chen <nicolinc@nvidia.com>; > Donald Dutile <ddutile@redhat.com> > Cc: Peter Maydell <peter.maydell@linaro.org>; Jason Gunthorpe > <jgg@nvidia.com>; Daniel P. Berrangé <berrange@redhat.com>; qemu- > arm@nongnu.org; qemu-devel@nongnu.org; Linuxarm > <linuxarm@huawei.com>; Wangzhou (B) <wangzhou1@hisilicon.com>; > jiangkunkun <jiangkunkun@huawei.com>; Jonathan Cameron > <jonathan.cameron@huawei.com>; zhangfei.gao@linaro.org; Peng, Chao P > <chao.p.peng@intel.com> > Subject: Re: [RFC PATCH 0/5] hw/arm/virt: Add support for user-creatable > nested SMMUv3 > > Hi Shammeer, > Hi Eric, > > > > I am currently working on refactoring the SMMUv3 accel series and the > > "Add HW accelerated nesting support for arm SMMUv3" series > so will you send "Add HW accelerated nesting support for arm SMMUv3" or > do you want me to do it? Thanks Eric Yes. I am on it. Hopefully I will be able to send out everything next week. Thanks, Shameer
Hi Shameer, On 3/6/25 7:27 PM, Shameerali Kolothum Thodi wrote: > >> -----Original Message----- >> From: Eric Auger <eric.auger@redhat.com> >> Sent: Thursday, March 6, 2025 6:00 PM >> To: Shameerali Kolothum Thodi >> <shameerali.kolothum.thodi@huawei.com>; Duan, Zhenzhong >> <zhenzhong.duan@intel.com>; Nicolin Chen <nicolinc@nvidia.com>; >> Donald Dutile <ddutile@redhat.com> >> Cc: Peter Maydell <peter.maydell@linaro.org>; Jason Gunthorpe >> <jgg@nvidia.com>; Daniel P. Berrangé <berrange@redhat.com>; qemu- >> arm@nongnu.org; qemu-devel@nongnu.org; Linuxarm >> <linuxarm@huawei.com>; Wangzhou (B) <wangzhou1@hisilicon.com>; >> jiangkunkun <jiangkunkun@huawei.com>; Jonathan Cameron >> <jonathan.cameron@huawei.com>; zhangfei.gao@linaro.org; Peng, Chao P >> <chao.p.peng@intel.com> >> Subject: Re: [RFC PATCH 0/5] hw/arm/virt: Add support for user-creatable >> nested SMMUv3 >> >> Hi Shammeer, >> > Hi Eric, > >>> I am currently working on refactoring the SMMUv3 accel series and the >>> "Add HW accelerated nesting support for arm SMMUv3" series >> so will you send "Add HW accelerated nesting support for arm SMMUv3" or >> do you want me to do it? Thanks Eric > Yes. I am on it. Hopefully I will be able to send out everything next week. Sure. No pressure. I will continue reviewing Zhenzhong's series then. Looking forward to seeing your respin. Eric > > Thanks, > Shameer
On Thu, Jan 23, 2025 at 08:28:34AM +0000, Shameerali Kolothum Thodi wrote: > > -----Original Message----- > > From: Nicolin Chen <nicolinc@nvidia.com> > > I wonder if we can make some progress in Feb? If so, we can start > > to wrap up the iommufd uAPI patches for HWPT, which was a part of > > intel's series but never got sent since their emulated series is > > seemingly still pending? > > I think these are the 5 patches that we require from Intel pass-through series, > > vfio/iommufd: Implement [at|de]tach_hwpt handlers > vfio/iommufd: Implement HostIOMMUDeviceClass::realize_late() handler > HostIOMMUDevice: Introduce realize_late callback > vfio/iommufd: Add properties and handlers to TYPE_HOST_IOMMU_DEVICE_IOMMUFD > backends/iommufd: Add helpers for invalidating user-managed HWPT > Hi Zhenzhong, > > Just wondering what your plans are for the above patches. If it make sense and you > are fine with it, I think it is a good idea one of us can pick up those from that series > and sent out separately so that it can get some review and take it forward. +1 These uAPI/backend patches can be sent in a smaller series to get reviewed prior to the intel/arm series. It can merge with either of the intel/arm series that runs faster at the end of the day :) Nicolin
© 2016 - 2025 Red Hat, Inc.