* Re: Different type iommus integrated in a SoC [not found] <2021052710373173260118@rock-chips.com> @ 2021-06-03 12:05 ` Robin Murphy 2021-06-03 12:24 ` Peter Geis 2021-06-04 15:44 ` joro 0 siblings, 2 replies; 4+ messages in thread From: Robin Murphy @ 2021-06-03 12:05 UTC (permalink / raw) To: xxm@rock-chips.com, hch, joro, will; +Cc: iommu, linux-rockchip On 2021-05-27 03:37, xxm@rock-chips.com wrote: > Hi all, > > I have a SoC integrate with two different types of iommus, one is ARM SMMU, serves the PCIe/SATA/USB, > the others are vendor specific iommus, serves display device and multimedia device. > > In the current linux kernel, the iommu framework seems only support one type iommu at runtime, if enable both types iommu, only one type can work. > Is there any way to support this kind of SoC? Hooray! I've been forecasting this for years, but the cases we regularly hit with internal FPGA prototyping (nor the secret unused MMU-400 I found on RK3288) have never really been a strong enough argument to stand behind. Based on what I remember from looking into this a few years ago, converting *most* of the API to per-device ops (now via dev->iommu) is trivial; the main challenge will be getting the per-device data bootstrapped in iommu_probe_device(), which would probably need to rely on the fwspec and/or list of registered IOMMU instances. The other notable thing which will need to change is the domain allocation interface, but in practice I think everyone who calls iommu_domain_alloc() today is in fact doing so for a specific device, so I don't think it's as big a problem as it might first appear. Robin. _______________________________________________ Linux-rockchip mailing list Linux-rockchip@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-rockchip ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Different type iommus integrated in a SoC 2021-06-03 12:05 ` Different type iommus integrated in a SoC Robin Murphy @ 2021-06-03 12:24 ` Peter Geis 2021-06-03 12:49 ` Robin Murphy 2021-06-04 15:44 ` joro 1 sibling, 1 reply; 4+ messages in thread From: Peter Geis @ 2021-06-03 12:24 UTC (permalink / raw) To: Robin Murphy; +Cc: xxm@rock-chips.com, hch, joro, will, iommu, linux-rockchip On Thu, Jun 3, 2021 at 8:07 AM Robin Murphy <robin.murphy@arm.com> wrote: > > On 2021-05-27 03:37, xxm@rock-chips.com wrote: > > Hi all, > > > > I have a SoC integrate with two different types of iommus, one is ARM SMMU, serves the PCIe/SATA/USB, > > the others are vendor specific iommus, serves display device and multimedia device. > > > > In the current linux kernel, the iommu framework seems only support one type iommu at runtime, if enable both types iommu, only one type can work. > > Is there any way to support this kind of SoC? > > Hooray! I've been forecasting this for years, but the cases we regularly > hit with internal FPGA prototyping (nor the secret unused MMU-400 I > found on RK3288) have never really been a strong enough argument to > stand behind. > > Based on what I remember from looking into this a few years ago, > converting *most* of the API to per-device ops (now via dev->iommu) is > trivial; the main challenge will be getting the per-device data > bootstrapped in iommu_probe_device(), which would probably need to rely > on the fwspec and/or list of registered IOMMU instances. > > The other notable thing which will need to change is the domain > allocation interface, but in practice I think everyone who calls > iommu_domain_alloc() today is in fact doing so for a specific device, so > I don't think it's as big a problem as it might first appear. > > Robin. > Good Morning Robin, I think the Tegra group would also be interested in this work. AFAIK they have the smmu and the tegra gart and have been trying to figure out the runtime handover from the bootloader to the kernel without smashing everything and starting over. Thanks, Peter Geis _______________________________________________ Linux-rockchip mailing list Linux-rockchip@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-rockchip ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Different type iommus integrated in a SoC 2021-06-03 12:24 ` Peter Geis @ 2021-06-03 12:49 ` Robin Murphy 0 siblings, 0 replies; 4+ messages in thread From: Robin Murphy @ 2021-06-03 12:49 UTC (permalink / raw) To: Peter Geis; +Cc: xxm@rock-chips.com, hch, joro, will, iommu, linux-rockchip On 2021-06-03 13:24, Peter Geis wrote: > On Thu, Jun 3, 2021 at 8:07 AM Robin Murphy <robin.murphy@arm.com> wrote: >> >> On 2021-05-27 03:37, xxm@rock-chips.com wrote: >>> Hi all, >>> >>> I have a SoC integrate with two different types of iommus, one is ARM SMMU, serves the PCIe/SATA/USB, >>> the others are vendor specific iommus, serves display device and multimedia device. >>> >>> In the current linux kernel, the iommu framework seems only support one type iommu at runtime, if enable both types iommu, only one type can work. >>> Is there any way to support this kind of SoC? >> >> Hooray! I've been forecasting this for years, but the cases we regularly >> hit with internal FPGA prototyping (nor the secret unused MMU-400 I >> found on RK3288) have never really been a strong enough argument to >> stand behind. >> >> Based on what I remember from looking into this a few years ago, >> converting *most* of the API to per-device ops (now via dev->iommu) is >> trivial; the main challenge will be getting the per-device data >> bootstrapped in iommu_probe_device(), which would probably need to rely >> on the fwspec and/or list of registered IOMMU instances. >> >> The other notable thing which will need to change is the domain >> allocation interface, but in practice I think everyone who calls >> iommu_domain_alloc() today is in fact doing so for a specific device, so >> I don't think it's as big a problem as it might first appear. >> >> Robin. >> > > Good Morning Robin, > > I think the Tegra group would also be interested in this work. > AFAIK they have the smmu and the tegra gart and have been trying to > figure out the runtime handover from the bootloader to the kernel > without smashing everything and starting over. No, handoff of live DMA from the bootlader is an entirely unrelated issue, and there are already several patchsets in flight to address various parts of that. My understanding of Tegras is that they *either* use tegra-gart, tegra-smmu, or arm-smmu depending on the SoC generation, but they aren't mixed within any single SoC. Robin. _______________________________________________ Linux-rockchip mailing list Linux-rockchip@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-rockchip ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Different type iommus integrated in a SoC 2021-06-03 12:05 ` Different type iommus integrated in a SoC Robin Murphy 2021-06-03 12:24 ` Peter Geis @ 2021-06-04 15:44 ` joro 1 sibling, 0 replies; 4+ messages in thread From: joro @ 2021-06-04 15:44 UTC (permalink / raw) To: Robin Murphy; +Cc: xxm@rock-chips.com, hch, will, iommu, linux-rockchip On Thu, Jun 03, 2021 at 01:05:43PM +0100, Robin Murphy wrote: > Hooray! I've been forecasting this for years, but the cases we regularly hit > with internal FPGA prototyping (nor the secret unused MMU-400 I found on > RK3288) have never really been a strong enough argument to stand behind. > > Based on what I remember from looking into this a few years ago, converting > *most* of the API to per-device ops (now via dev->iommu) is trivial; the > main challenge will be getting the per-device data bootstrapped in > iommu_probe_device(), which would probably need to rely on the fwspec and/or > list of registered IOMMU instances. > > The other notable thing which will need to change is the domain allocation > interface, but in practice I think everyone who calls iommu_domain_alloc() > today is in fact doing so for a specific device, so I don't think it's as > big a problem as it might first appear. Yeah, I think for that we have to give up on the promise that a domain can be assigned to _any_ device. But this promise doesn't even hold true now when there are several IOMMU of the same type but with different feature sets in a system. So I happily review patches enabling the Multi-IOMMU SOCs :) Regards, Joerg _______________________________________________ Linux-rockchip mailing list Linux-rockchip@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-rockchip ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-06-04 15:44 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <2021052710373173260118@rock-chips.com>
2021-06-03 12:05 ` Different type iommus integrated in a SoC Robin Murphy
2021-06-03 12:24 ` Peter Geis
2021-06-03 12:49 ` Robin Murphy
2021-06-04 15:44 ` joro
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox