Message ID | 171450753489.10851.3056035705169121613.stgit@linux.ibm.com (mailing list archive) |
---|---|
Headers | show |
Series | powerpc: pSeries: vfio: iommu: Re-enable support for SPAPR TCE VFIO | expand |
On Tue, Apr 30, 2024 at 03:05:34PM -0500, Shivaprasad G Bhat wrote: > RFC v1 was posted here [1]. As I was testing more and fixing the > issues, I realized its clean to have the table_group_ops implemented > the way it is done on PowerNV and stop 'borrowing' the DMA windows > for pSeries. > > This patch-set implements the iommu table_group_ops for pSeries for > VFIO SPAPR TCE sub-driver thereby enabling the VFIO support on POWER > pSeries machines. Wait, did they previously not have any support? Again, this TCE stuff needs to go away, not grow. I can grudgingly accept fixing it where it used to work, but not enabling more HW that never worked before! :( Jason
On 2/5/24 00:09, Jason Gunthorpe wrote: > On Tue, Apr 30, 2024 at 03:05:34PM -0500, Shivaprasad G Bhat wrote: >> RFC v1 was posted here [1]. As I was testing more and fixing the >> issues, I realized its clean to have the table_group_ops implemented >> the way it is done on PowerNV and stop 'borrowing' the DMA windows >> for pSeries. >> >> This patch-set implements the iommu table_group_ops for pSeries for >> VFIO SPAPR TCE sub-driver thereby enabling the VFIO support on POWER >> pSeries machines. > > Wait, did they previously not have any support? > > Again, this TCE stuff needs to go away, not grow. I can grudgingly > accept fixing it where it used to work, but not enabling more HW that > never worked before! :( This used to work when I tried last time 2+ years ago, not a new stuff. Thanks,
On 5/2/24 06:59, Alexey Kardashevskiy wrote: > > > On 2/5/24 00:09, Jason Gunthorpe wrote: >> On Tue, Apr 30, 2024 at 03:05:34PM -0500, Shivaprasad G Bhat wrote: >>> RFC v1 was posted here [1]. As I was testing more and fixing the >>> issues, I realized its clean to have the table_group_ops implemented >>> the way it is done on PowerNV and stop 'borrowing' the DMA windows >>> for pSeries. >>> >>> This patch-set implements the iommu table_group_ops for pSeries for >>> VFIO SPAPR TCE sub-driver thereby enabling the VFIO support on POWER >>> pSeries machines. >> >> Wait, did they previously not have any support? > > >> Again, this TCE stuff needs to go away, not grow. I can grudgingly >> accept fixing it where it used to work, but not enabling more HW that >> never worked before! :( > > > This used to work when I tried last time 2+ years ago, not a new > stuff. Thanks, > Thanks Alexey for pitching in. Hi Jason, As Alexey implied, this used to work in the past. The support for pSeries VFIO exists for a long time, and the support for VFIO_SPAPR_TCE_v2_IOMMU also was added with 9d67c9433509 ("powerpc/iommu: Add "borrowing" iommu_table_group_ops") The commit 090bad39b237a ("powerpc/powernv: Add indirect levels to it_userspace") broke the userspace view for pSeries, which the Patch 6 here tries to bring back. We found more issues with 9d67c9433509 and I felt its better to stop "borrowing" the DMA windows as that would be cleaner which is what is done in Patch 6. In this process we discovered few bugs in upstream as well, which we have been trying to fix and have posted few of fixes earlier like, d2d00e15808 powerpc: iommu: Bring back table group release_ownership() call 83b3836bf83 iommu: Allow ops->default_domain to work when !CONFIG_IOMMU_DMA So, this patch series tries to fix some more issues(patch 2, 4, 6) coupled with some code refactoring(1, 3, 5 & 6) to stop "borrowing" DMA windows. We have legacy workloads using VFIO in userspace/kvm guests running on downstream distro kernels. We want these workloads to be able to continue running on our arch. Going forward we are planning to have the IOMMUFD support for PPC64, I firmly believe the refactoring in this patch series is a step in that direction. Thanks, Shivaprasad
On Sat, May 04, 2024 at 12:33:53AM +0530, Shivaprasad G Bhat wrote: > We have legacy workloads using VFIO in userspace/kvm guests running > on downstream distro kernels. We want these workloads to be able to > continue running on our arch. It has been broken since 2018, I don't find this reasoning entirely reasonable :\ > I firmly believe the refactoring in this patch series is a step in > that direction. But fine, as long as we are going to fix it. PPC really needs this to be resolved to keep working. Jason
Hi Jason, On 5/6/24 23:13, Jason Gunthorpe wrote: > On Sat, May 04, 2024 at 12:33:53AM +0530, Shivaprasad G Bhat wrote: >> We have legacy workloads using VFIO in userspace/kvm guests running >> on downstream distro kernels. We want these workloads to be able to >> continue running on our arch. > It has been broken since 2018, I don't find this reasoning entirely > reasonable :\ Though upstream has been broken since 2018 for pSeries, the breaking patches got trickled into downstream distro kernels only in the last few years. The legacy workloads that were running on PowerNV with these downstream distros are now broken on the pSeries logical partitions without the fixes in this series. >> I firmly believe the refactoring in this patch series is a step in >> that direction. > But fine, as long as we are going to fix it. PPC really needs this to > be resolved to keep working. Thanks, We are working on it. Regards, Shivaprasad > > Jason
On 5/6/24 12:43 PM, Jason Gunthorpe wrote: > On Sat, May 04, 2024 at 12:33:53AM +0530, Shivaprasad G Bhat wrote: >> We have legacy workloads using VFIO in userspace/kvm guests running >> on downstream distro kernels. We want these workloads to be able to >> continue running on our arch. > > It has been broken since 2018, I don't find this reasoning entirely > reasonable :\ > Raptor is currently working on an automated test runner setup to exercise the VFIO subsystem on PowerNV and (to a lesser extent) pSeries, so breakages like this going forward will hopefully be caught much more quickly. >> I firmly believe the refactoring in this patch series is a step in >> that direction. > > But fine, as long as we are going to fix it. PPC really needs this to > be resolved to keep working. > Agreed. Modernizing/de-cluttering PPC's IOMMU code in general is another task that we're working towards. As mentioned previously on the list, we're working towards a more standard IOMMU driver for PPC that can be used with dma_iommu, which I think will be a good step towards cleaning this up. Initially PowerNV is going to be our target, but to the extent that it is possible and useful, pSeries support could be brought in later. > Jason Thanks, Shawn