* Re: [PATCH] PCI/ATS: Allow to enable ATS on VFs even if it is not enabled on PF [not found] <Y+ksmNWJdWNkGAU9@unreal> @ 2023-02-15 20:57 ` Bjorn Helgaas 2023-02-16 7:26 ` Leon Romanovsky ` (2 more replies) 0 siblings, 3 replies; 10+ messages in thread From: Bjorn Helgaas @ 2023-02-15 20:57 UTC (permalink / raw) To: Leon Romanovsky Cc: Ganapatrao Kulkarni, linux-kernel, linux-pci, bhelgaas, jean-philippe, darren, scott, Will Deacon, Robin Murphy, Joerg Roedel, linux-arm-kernel, iommu [+cc Will, Robin, Joerg for arm-smmu-v3 page size question] On Sun, Feb 12, 2023 at 08:14:48PM +0200, Leon Romanovsky wrote: > On Wed, Feb 08, 2023 at 10:43:21AM -0800, Ganapatrao Kulkarni wrote: > > As per PCIe specification(section 10.5), If a VF implements an > > ATS capability, its associated PF must implement an ATS capability. > > The ATS Capabilities in VFs and their associated PFs are permitted to > > be enabled independently. > > Also, it states that the Smallest Translation Unit (STU) for VFs must be > > hardwired to Zero and the associated PF's value applies to VFs STU. > > > > The current code allows to enable ATS on VFs only if it is already > > enabled on associated PF, which is not necessary as per the specification. > > > > It is only required to have valid STU programmed on PF to enable > > ATS on VFs. Adding code to write the first VFs STU to a PF's STU > > when PFs ATS is not enabled. > > Can you please add here quotes from the spec and its version? I don't see > anything like this in my version of PCIe specification. See PCIe r6.0, sec 10.5.1. > > Signed-off-by: Ganapatrao Kulkarni <gankulkarni@os.amperecomputing.com> > > --- > > drivers/pci/ats.c | 15 +++++++++++---- > > 1 file changed, 11 insertions(+), 4 deletions(-) > > > > diff --git a/drivers/pci/ats.c b/drivers/pci/ats.c > > index f9cc2e10b676..a97ec67201d1 100644 > > --- a/drivers/pci/ats.c > > +++ b/drivers/pci/ats.c > > @@ -67,13 +67,20 @@ int pci_enable_ats(struct pci_dev *dev, int ps) > > if (ps < PCI_ATS_MIN_STU) > > return -EINVAL; > > > > - /* > > - * Note that enabling ATS on a VF fails unless it's already enabled > > - * with the same STU on the PF. > > - */ > > ctrl = PCI_ATS_CTRL_ENABLE; > > if (dev->is_virtfn) { > > pdev = pci_physfn(dev); > > + > > + if (!pdev->ats_enabled && > > + (pdev->ats_stu < PCI_ATS_MIN_STU)) { > > + u16 ctrl2; > > + > > + /* Associated PF's STU value applies to VFs. */ > > + pdev->ats_stu = ps; > > + ctrl2 = PCI_ATS_CTRL_STU(pdev->ats_stu - PCI_ATS_MIN_STU); > > + pci_write_config_word(pdev, pdev->ats_cap + PCI_ATS_CTRL, ctrl2); > > + } For reference, it is this way because of edc90fee916b ("PCI: Allocate ATS struct during enumeration"). The rationale was that since the PF STU applies to all VFs, we should require that the PF STU be programmed before enabling ATS on any of the VFs. This patch relaxes that so the PF STU would be set either by (a) enabling ATS on the PF or (b) enabling ATS on the first VF. This looks racy because theoretically drivers for VF A and VF B could independently call pci_enable_ats() with different IOMMU page sizes, and we don't know which will get there first. Most callers supply a compile-time constant (PAGE_SHIFT or VTD_PAGE_SHIFT), so it won't matter. arm_smmu_enable_ats() is fancier, but I *assume* it would still supply the same IOMMU page size for all VFs of a given PF. But it's still kind of ugly to call pci_enable_ats(dev_A) and have it muck with the configuration of dev_B. Maybe we should configure the PF STU (without enabling ATS) at enumeration-time in pci_ats_init()? Is there some way to get the IOMMU page size at that time? > > if (pdev->ats_stu != ps) > > return -EINVAL; > > } else { > > -- > > 2.39.1 > > _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] PCI/ATS: Allow to enable ATS on VFs even if it is not enabled on PF 2023-02-15 20:57 ` [PATCH] PCI/ATS: Allow to enable ATS on VFs even if it is not enabled on PF Bjorn Helgaas @ 2023-02-16 7:26 ` Leon Romanovsky 2023-02-16 7:46 ` Leon Romanovsky 2023-02-16 10:23 ` Joerg Roedel 2023-02-16 11:12 ` Jean-Philippe Brucker 2 siblings, 1 reply; 10+ messages in thread From: Leon Romanovsky @ 2023-02-16 7:26 UTC (permalink / raw) To: Bjorn Helgaas Cc: Ganapatrao Kulkarni, linux-kernel, linux-pci, bhelgaas, jean-philippe, darren, scott, Will Deacon, Robin Murphy, Joerg Roedel, linux-arm-kernel, iommu On Wed, Feb 15, 2023 at 02:57:26PM -0600, Bjorn Helgaas wrote: > [+cc Will, Robin, Joerg for arm-smmu-v3 page size question] > > On Sun, Feb 12, 2023 at 08:14:48PM +0200, Leon Romanovsky wrote: > > On Wed, Feb 08, 2023 at 10:43:21AM -0800, Ganapatrao Kulkarni wrote: > > > As per PCIe specification(section 10.5), If a VF implements an > > > ATS capability, its associated PF must implement an ATS capability. > > > The ATS Capabilities in VFs and their associated PFs are permitted to > > > be enabled independently. > > > Also, it states that the Smallest Translation Unit (STU) for VFs must be > > > hardwired to Zero and the associated PF's value applies to VFs STU. > > > > > > The current code allows to enable ATS on VFs only if it is already > > > enabled on associated PF, which is not necessary as per the specification. > > > > > > It is only required to have valid STU programmed on PF to enable > > > ATS on VFs. Adding code to write the first VFs STU to a PF's STU > > > when PFs ATS is not enabled. > > > > Can you please add here quotes from the spec and its version? I don't see > > anything like this in my version of PCIe specification. > > See PCIe r6.0, sec 10.5.1. Awesome, I have old versions. Thanks _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] PCI/ATS: Allow to enable ATS on VFs even if it is not enabled on PF 2023-02-16 7:26 ` Leon Romanovsky @ 2023-02-16 7:46 ` Leon Romanovsky 2023-02-16 10:47 ` Jean-Philippe Brucker 0 siblings, 1 reply; 10+ messages in thread From: Leon Romanovsky @ 2023-02-16 7:46 UTC (permalink / raw) To: Bjorn Helgaas Cc: Ganapatrao Kulkarni, linux-kernel, linux-pci, bhelgaas, jean-philippe, darren, scott, Will Deacon, Robin Murphy, Joerg Roedel, linux-arm-kernel, iommu On Thu, Feb 16, 2023 at 09:26:15AM +0200, Leon Romanovsky wrote: > On Wed, Feb 15, 2023 at 02:57:26PM -0600, Bjorn Helgaas wrote: > > [+cc Will, Robin, Joerg for arm-smmu-v3 page size question] > > > > On Sun, Feb 12, 2023 at 08:14:48PM +0200, Leon Romanovsky wrote: > > > On Wed, Feb 08, 2023 at 10:43:21AM -0800, Ganapatrao Kulkarni wrote: > > > > As per PCIe specification(section 10.5), If a VF implements an > > > > ATS capability, its associated PF must implement an ATS capability. > > > > The ATS Capabilities in VFs and their associated PFs are permitted to > > > > be enabled independently. > > > > Also, it states that the Smallest Translation Unit (STU) for VFs must be > > > > hardwired to Zero and the associated PF's value applies to VFs STU. > > > > > > > > The current code allows to enable ATS on VFs only if it is already > > > > enabled on associated PF, which is not necessary as per the specification. > > > > > > > > It is only required to have valid STU programmed on PF to enable > > > > ATS on VFs. Adding code to write the first VFs STU to a PF's STU > > > > when PFs ATS is not enabled. > > > > > > Can you please add here quotes from the spec and its version? I don't see > > > anything like this in my version of PCIe specification. > > > > See PCIe r6.0, sec 10.5.1. > > Awesome, I have old versions. OK, where should I read about this sentence? "It is only required to have valid STU programmed on PF to enable ATS on VFs. Adding code to write the first VFs STU to a PF's STU when PFs ATS is not enabled." From spec: "Smallest Translation Unit (STU) - This value indicates to the Function the minimum number of 4096-byte blocks that is indicated in a Translation Completions or Invalidate Requests. This is a power of 2 multiplier and the number of blocks is 2STU. A value of 0 0000b indicates one block and a value of 1 1111b indicates 231 blocks (or 8 TB total) For VFs, this field must be hardwired to Zero. The associated PF's value applies. Default value is 0 0000b" And enable bit doesn't have any sentence about STU. Thanks _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] PCI/ATS: Allow to enable ATS on VFs even if it is not enabled on PF 2023-02-16 7:46 ` Leon Romanovsky @ 2023-02-16 10:47 ` Jean-Philippe Brucker 0 siblings, 0 replies; 10+ messages in thread From: Jean-Philippe Brucker @ 2023-02-16 10:47 UTC (permalink / raw) To: Leon Romanovsky Cc: Bjorn Helgaas, Ganapatrao Kulkarni, linux-kernel, linux-pci, bhelgaas, darren, scott, Will Deacon, Robin Murphy, Joerg Roedel, linux-arm-kernel, iommu On Thu, Feb 16, 2023 at 09:46:51AM +0200, Leon Romanovsky wrote: > On Thu, Feb 16, 2023 at 09:26:15AM +0200, Leon Romanovsky wrote: > > On Wed, Feb 15, 2023 at 02:57:26PM -0600, Bjorn Helgaas wrote: > > > [+cc Will, Robin, Joerg for arm-smmu-v3 page size question] > > > > > > On Sun, Feb 12, 2023 at 08:14:48PM +0200, Leon Romanovsky wrote: > > > > On Wed, Feb 08, 2023 at 10:43:21AM -0800, Ganapatrao Kulkarni wrote: > > > > > As per PCIe specification(section 10.5), If a VF implements an > > > > > ATS capability, its associated PF must implement an ATS capability. > > > > > The ATS Capabilities in VFs and their associated PFs are permitted to > > > > > be enabled independently. > > > > > Also, it states that the Smallest Translation Unit (STU) for VFs must be > > > > > hardwired to Zero and the associated PF's value applies to VFs STU. > > > > > > > > > > The current code allows to enable ATS on VFs only if it is already > > > > > enabled on associated PF, which is not necessary as per the specification. > > > > > > > > > > It is only required to have valid STU programmed on PF to enable > > > > > ATS on VFs. Adding code to write the first VFs STU to a PF's STU > > > > > when PFs ATS is not enabled. > > > > > > > > Can you please add here quotes from the spec and its version? I don't see > > > > anything like this in my version of PCIe specification. In PCIe r6.0, 10.5.1 ATS Extended Capability: "The ATS Capabilities in VFs and their associated PFs are permitted to be enabled independently." > For VFs, this field must be hardwired to Zero. The associated PF's value applies. > Default value is 0 0000b" And this sentence indicates that the PF's STU should be configured appropriately in order to use ATS in the VF. So a driver is permitted to enable the VF ATS capability without enabling the PF ATS cap, though the STU value of the PF cap still applies. But the first sentence is weak ("permitted" instead of "required"), so as Joerg said, some device implementations may still require to enable the PF cap in order to enable the VF cap. Maybe we could have a list of vendor:device IDs which allow enabling the VF cap independently? Thanks, Jean _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] PCI/ATS: Allow to enable ATS on VFs even if it is not enabled on PF 2023-02-15 20:57 ` [PATCH] PCI/ATS: Allow to enable ATS on VFs even if it is not enabled on PF Bjorn Helgaas 2023-02-16 7:26 ` Leon Romanovsky @ 2023-02-16 10:23 ` Joerg Roedel 2023-02-16 11:12 ` Jean-Philippe Brucker 2 siblings, 0 replies; 10+ messages in thread From: Joerg Roedel @ 2023-02-16 10:23 UTC (permalink / raw) To: Bjorn Helgaas Cc: Leon Romanovsky, Ganapatrao Kulkarni, linux-kernel, linux-pci, bhelgaas, jean-philippe, darren, scott, Will Deacon, Robin Murphy, linux-arm-kernel, iommu On Wed, Feb 15, 2023 at 02:57:26PM -0600, Bjorn Helgaas wrote: > [+cc Will, Robin, Joerg for arm-smmu-v3 page size question] > > On Sun, Feb 12, 2023 at 08:14:48PM +0200, Leon Romanovsky wrote: > > On Wed, Feb 08, 2023 at 10:43:21AM -0800, Ganapatrao Kulkarni wrote: > > > As per PCIe specification(section 10.5), If a VF implements an > > > ATS capability, its associated PF must implement an ATS capability. > > > The ATS Capabilities in VFs and their associated PFs are permitted to > > > be enabled independently. Well, the spec is one thing, existing hardware the other. Have you checked the history of the PF-before-VF requirement before making that change? It is possible that early PASID-capable hardware actually required PF-before-VF enablement of ATS. Regards, Joerg _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] PCI/ATS: Allow to enable ATS on VFs even if it is not enabled on PF 2023-02-15 20:57 ` [PATCH] PCI/ATS: Allow to enable ATS on VFs even if it is not enabled on PF Bjorn Helgaas 2023-02-16 7:26 ` Leon Romanovsky 2023-02-16 10:23 ` Joerg Roedel @ 2023-02-16 11:12 ` Jean-Philippe Brucker 2023-02-16 11:36 ` Ganapatrao Kulkarni 2023-02-21 15:46 ` Bjorn Helgaas 2 siblings, 2 replies; 10+ messages in thread From: Jean-Philippe Brucker @ 2023-02-16 11:12 UTC (permalink / raw) To: Bjorn Helgaas Cc: Leon Romanovsky, Ganapatrao Kulkarni, linux-kernel, linux-pci, bhelgaas, darren, scott, Will Deacon, Robin Murphy, Joerg Roedel, linux-arm-kernel, iommu On Wed, Feb 15, 2023 at 02:57:26PM -0600, Bjorn Helgaas wrote: > [+cc Will, Robin, Joerg for arm-smmu-v3 page size question] > > On Sun, Feb 12, 2023 at 08:14:48PM +0200, Leon Romanovsky wrote: > > On Wed, Feb 08, 2023 at 10:43:21AM -0800, Ganapatrao Kulkarni wrote: > > > As per PCIe specification(section 10.5), If a VF implements an > > > ATS capability, its associated PF must implement an ATS capability. > > > The ATS Capabilities in VFs and their associated PFs are permitted to > > > be enabled independently. > > > Also, it states that the Smallest Translation Unit (STU) for VFs must be > > > hardwired to Zero and the associated PF's value applies to VFs STU. > > > > > > The current code allows to enable ATS on VFs only if it is already > > > enabled on associated PF, which is not necessary as per the specification. > > > > > > It is only required to have valid STU programmed on PF to enable > > > ATS on VFs. Adding code to write the first VFs STU to a PF's STU > > > when PFs ATS is not enabled. > > > > Can you please add here quotes from the spec and its version? I don't see > > anything like this in my version of PCIe specification. > > See PCIe r6.0, sec 10.5.1. > > > > Signed-off-by: Ganapatrao Kulkarni <gankulkarni@os.amperecomputing.com> > > > --- > > > drivers/pci/ats.c | 15 +++++++++++---- > > > 1 file changed, 11 insertions(+), 4 deletions(-) > > > > > > diff --git a/drivers/pci/ats.c b/drivers/pci/ats.c > > > index f9cc2e10b676..a97ec67201d1 100644 > > > --- a/drivers/pci/ats.c > > > +++ b/drivers/pci/ats.c > > > @@ -67,13 +67,20 @@ int pci_enable_ats(struct pci_dev *dev, int ps) > > > if (ps < PCI_ATS_MIN_STU) > > > return -EINVAL; > > > > > > - /* > > > - * Note that enabling ATS on a VF fails unless it's already enabled > > > - * with the same STU on the PF. > > > - */ > > > ctrl = PCI_ATS_CTRL_ENABLE; > > > if (dev->is_virtfn) { > > > pdev = pci_physfn(dev); > > > + > > > + if (!pdev->ats_enabled && > > > + (pdev->ats_stu < PCI_ATS_MIN_STU)) { > > > + u16 ctrl2; > > > + > > > + /* Associated PF's STU value applies to VFs. */ > > > + pdev->ats_stu = ps; > > > + ctrl2 = PCI_ATS_CTRL_STU(pdev->ats_stu - PCI_ATS_MIN_STU); > > > + pci_write_config_word(pdev, pdev->ats_cap + PCI_ATS_CTRL, ctrl2); > > > + } > > For reference, it is this way because of edc90fee916b ("PCI: Allocate > ATS struct during enumeration"). The rationale was that since the PF > STU applies to all VFs, we should require that the PF STU be > programmed before enabling ATS on any of the VFs. > > This patch relaxes that so the PF STU would be set either by (a) > enabling ATS on the PF or (b) enabling ATS on the first VF. > > This looks racy because theoretically drivers for VF A and VF B could > independently call pci_enable_ats() with different IOMMU page sizes, > and we don't know which will get there first. > > Most callers supply a compile-time constant (PAGE_SHIFT or > VTD_PAGE_SHIFT), so it won't matter. arm_smmu_enable_ats() is > fancier, but I *assume* it would still supply the same IOMMU page size > for all VFs of a given PF. > > But it's still kind of ugly to call pci_enable_ats(dev_A) and have it > muck with the configuration of dev_B. Maybe we should configure the > PF STU (without enabling ATS) at enumeration-time in pci_ats_init()? > Is there some way to get the IOMMU page size at that time? Not really, on Arm the supported page sizes are discovered when probing the SMMU registers, which may happen later than enumeration, during module loading. What this patch is trying to solve is: * want the PF to bypass SMMU translation, and the VF to undergo SMMU translation (in order to assign it to a VM) * SMMU forbids enabling ATS for a configuration that bypasses translation. So the PF ATS capability must be left disabled. For this situation I wonder if we could do: the SMMU driver, seeing that the PF is configured to bypass, calls a new function "pci_configure_ats()" instead of pci_enable_ats(), which would only set the STU but leave the cap disabled. Then when setting up translation for the VF, the SMMU driver calls pci_enable_ats() as usual, which sees the PF's STU set appropriately and succeeds. Thanks, Jean _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] PCI/ATS: Allow to enable ATS on VFs even if it is not enabled on PF 2023-02-16 11:12 ` Jean-Philippe Brucker @ 2023-02-16 11:36 ` Ganapatrao Kulkarni 2023-02-21 9:13 ` Ganapatrao Kulkarni 2023-02-21 15:46 ` Bjorn Helgaas 1 sibling, 1 reply; 10+ messages in thread From: Ganapatrao Kulkarni @ 2023-02-16 11:36 UTC (permalink / raw) To: Jean-Philippe Brucker, Bjorn Helgaas Cc: Leon Romanovsky, linux-kernel, linux-pci, bhelgaas, darren, scott, Will Deacon, Robin Murphy, Joerg Roedel, linux-arm-kernel, iommu On 16-02-2023 04:42 pm, Jean-Philippe Brucker wrote: > On Wed, Feb 15, 2023 at 02:57:26PM -0600, Bjorn Helgaas wrote: >> [+cc Will, Robin, Joerg for arm-smmu-v3 page size question] >> >> On Sun, Feb 12, 2023 at 08:14:48PM +0200, Leon Romanovsky wrote: >>> On Wed, Feb 08, 2023 at 10:43:21AM -0800, Ganapatrao Kulkarni wrote: >>>> As per PCIe specification(section 10.5), If a VF implements an >>>> ATS capability, its associated PF must implement an ATS capability. >>>> The ATS Capabilities in VFs and their associated PFs are permitted to >>>> be enabled independently. >>>> Also, it states that the Smallest Translation Unit (STU) for VFs must be >>>> hardwired to Zero and the associated PF's value applies to VFs STU. >>>> >>>> The current code allows to enable ATS on VFs only if it is already >>>> enabled on associated PF, which is not necessary as per the specification. >>>> >>>> It is only required to have valid STU programmed on PF to enable >>>> ATS on VFs. Adding code to write the first VFs STU to a PF's STU >>>> when PFs ATS is not enabled. >>> >>> Can you please add here quotes from the spec and its version? I don't see >>> anything like this in my version of PCIe specification. >> >> See PCIe r6.0, sec 10.5.1. >> >>>> Signed-off-by: Ganapatrao Kulkarni <gankulkarni@os.amperecomputing.com> >>>> --- >>>> drivers/pci/ats.c | 15 +++++++++++---- >>>> 1 file changed, 11 insertions(+), 4 deletions(-) >>>> >>>> diff --git a/drivers/pci/ats.c b/drivers/pci/ats.c >>>> index f9cc2e10b676..a97ec67201d1 100644 >>>> --- a/drivers/pci/ats.c >>>> +++ b/drivers/pci/ats.c >>>> @@ -67,13 +67,20 @@ int pci_enable_ats(struct pci_dev *dev, int ps) >>>> if (ps < PCI_ATS_MIN_STU) >>>> return -EINVAL; >>>> >>>> - /* >>>> - * Note that enabling ATS on a VF fails unless it's already enabled >>>> - * with the same STU on the PF. >>>> - */ >>>> ctrl = PCI_ATS_CTRL_ENABLE; >>>> if (dev->is_virtfn) { >>>> pdev = pci_physfn(dev); >>>> + >>>> + if (!pdev->ats_enabled && >>>> + (pdev->ats_stu < PCI_ATS_MIN_STU)) { >>>> + u16 ctrl2; >>>> + >>>> + /* Associated PF's STU value applies to VFs. */ >>>> + pdev->ats_stu = ps; >>>> + ctrl2 = PCI_ATS_CTRL_STU(pdev->ats_stu - PCI_ATS_MIN_STU); >>>> + pci_write_config_word(pdev, pdev->ats_cap + PCI_ATS_CTRL, ctrl2); >>>> + } >> >> For reference, it is this way because of edc90fee916b ("PCI: Allocate >> ATS struct during enumeration"). The rationale was that since the PF >> STU applies to all VFs, we should require that the PF STU be >> programmed before enabling ATS on any of the VFs. >> >> This patch relaxes that so the PF STU would be set either by (a) >> enabling ATS on the PF or (b) enabling ATS on the first VF. >> >> This looks racy because theoretically drivers for VF A and VF B could >> independently call pci_enable_ats() with different IOMMU page sizes, >> and we don't know which will get there first. >> >> Most callers supply a compile-time constant (PAGE_SHIFT or >> VTD_PAGE_SHIFT), so it won't matter. arm_smmu_enable_ats() is >> fancier, but I *assume* it would still supply the same IOMMU page size >> for all VFs of a given PF. >> >> But it's still kind of ugly to call pci_enable_ats(dev_A) and have it >> muck with the configuration of dev_B. Maybe we should configure the >> PF STU (without enabling ATS) at enumeration-time in pci_ats_init()? >> Is there some way to get the IOMMU page size at that time? > > Not really, on Arm the supported page sizes are discovered when probing > the SMMU registers, which may happen later than enumeration, during module > loading. > > What this patch is trying to solve is: > * want the PF to bypass SMMU translation, and the VF to undergo SMMU > translation (in order to assign it to a VM) > * SMMU forbids enabling ATS for a configuration that bypasses translation. > So the PF ATS capability must be left disabled. > > For this situation I wonder if we could do: the SMMU driver, seeing that > the PF is configured to bypass, calls a new function "pci_configure_ats()" IMO, This seems to be feasible solution for this situation, which addresses SMMU-ATS expectation in bypass and we could avoid PCI VFs race. pci_configure_ats() can be called to program/configure STU of a PF in smmu-bypass mode. > instead of pci_enable_ats(), which would only set the STU but leave the > cap disabled. Then when setting up translation for the VF, the SMMU driver > calls pci_enable_ats() as usual, which sees the PF's STU set appropriately > and succeeds. > > Thanks, > Jean Thanks, Ganapat _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] PCI/ATS: Allow to enable ATS on VFs even if it is not enabled on PF 2023-02-16 11:36 ` Ganapatrao Kulkarni @ 2023-02-21 9:13 ` Ganapatrao Kulkarni 0 siblings, 0 replies; 10+ messages in thread From: Ganapatrao Kulkarni @ 2023-02-21 9:13 UTC (permalink / raw) To: Jean-Philippe Brucker, Bjorn Helgaas Cc: Leon Romanovsky, linux-kernel, linux-pci, bhelgaas, darren, scott, Will Deacon, Robin Murphy, Joerg Roedel, linux-arm-kernel, iommu Hi Bjorn, On 16-02-2023 05:06 pm, Ganapatrao Kulkarni wrote: > > > On 16-02-2023 04:42 pm, Jean-Philippe Brucker wrote: >> On Wed, Feb 15, 2023 at 02:57:26PM -0600, Bjorn Helgaas wrote: >>> [+cc Will, Robin, Joerg for arm-smmu-v3 page size question] >>> >>> On Sun, Feb 12, 2023 at 08:14:48PM +0200, Leon Romanovsky wrote: >>>> On Wed, Feb 08, 2023 at 10:43:21AM -0800, Ganapatrao Kulkarni wrote: >>>>> As per PCIe specification(section 10.5), If a VF implements an >>>>> ATS capability, its associated PF must implement an ATS capability. >>>>> The ATS Capabilities in VFs and their associated PFs are permitted to >>>>> be enabled independently. >>>>> Also, it states that the Smallest Translation Unit (STU) for VFs >>>>> must be >>>>> hardwired to Zero and the associated PF's value applies to VFs STU. >>>>> >>>>> The current code allows to enable ATS on VFs only if it is already >>>>> enabled on associated PF, which is not necessary as per the >>>>> specification. >>>>> >>>>> It is only required to have valid STU programmed on PF to enable >>>>> ATS on VFs. Adding code to write the first VFs STU to a PF's STU >>>>> when PFs ATS is not enabled. >>>> >>>> Can you please add here quotes from the spec and its version? I >>>> don't see >>>> anything like this in my version of PCIe specification. >>> >>> See PCIe r6.0, sec 10.5.1. >>> >>>>> Signed-off-by: Ganapatrao Kulkarni >>>>> <gankulkarni@os.amperecomputing.com> >>>>> --- >>>>> drivers/pci/ats.c | 15 +++++++++++---- >>>>> 1 file changed, 11 insertions(+), 4 deletions(-) >>>>> >>>>> diff --git a/drivers/pci/ats.c b/drivers/pci/ats.c >>>>> index f9cc2e10b676..a97ec67201d1 100644 >>>>> --- a/drivers/pci/ats.c >>>>> +++ b/drivers/pci/ats.c >>>>> @@ -67,13 +67,20 @@ int pci_enable_ats(struct pci_dev *dev, int ps) >>>>> if (ps < PCI_ATS_MIN_STU) >>>>> return -EINVAL; >>>>> - /* >>>>> - * Note that enabling ATS on a VF fails unless it's already >>>>> enabled >>>>> - * with the same STU on the PF. >>>>> - */ >>>>> ctrl = PCI_ATS_CTRL_ENABLE; >>>>> if (dev->is_virtfn) { >>>>> pdev = pci_physfn(dev); >>>>> + >>>>> + if (!pdev->ats_enabled && >>>>> + (pdev->ats_stu < PCI_ATS_MIN_STU)) { >>>>> + u16 ctrl2; >>>>> + >>>>> + /* Associated PF's STU value applies to VFs. */ >>>>> + pdev->ats_stu = ps; >>>>> + ctrl2 = PCI_ATS_CTRL_STU(pdev->ats_stu - >>>>> PCI_ATS_MIN_STU); >>>>> + pci_write_config_word(pdev, pdev->ats_cap + >>>>> PCI_ATS_CTRL, ctrl2); >>>>> + } >>> >>> For reference, it is this way because of edc90fee916b ("PCI: Allocate >>> ATS struct during enumeration"). The rationale was that since the PF >>> STU applies to all VFs, we should require that the PF STU be >>> programmed before enabling ATS on any of the VFs. >>> >>> This patch relaxes that so the PF STU would be set either by (a) >>> enabling ATS on the PF or (b) enabling ATS on the first VF. >>> >>> This looks racy because theoretically drivers for VF A and VF B could >>> independently call pci_enable_ats() with different IOMMU page sizes, >>> and we don't know which will get there first. >>> >>> Most callers supply a compile-time constant (PAGE_SHIFT or >>> VTD_PAGE_SHIFT), so it won't matter. arm_smmu_enable_ats() is >>> fancier, but I *assume* it would still supply the same IOMMU page size >>> for all VFs of a given PF. >>> >>> But it's still kind of ugly to call pci_enable_ats(dev_A) and have it >>> muck with the configuration of dev_B. Maybe we should configure the >>> PF STU (without enabling ATS) at enumeration-time in pci_ats_init()? >>> Is there some way to get the IOMMU page size at that time? >> >> Not really, on Arm the supported page sizes are discovered when probing >> the SMMU registers, which may happen later than enumeration, during >> module >> loading. >> >> What this patch is trying to solve is: >> * want the PF to bypass SMMU translation, and the VF to undergo SMMU >> translation (in order to assign it to a VM) >> * SMMU forbids enabling ATS for a configuration that bypasses >> translation. >> So the PF ATS capability must be left disabled. >> >> For this situation I wonder if we could do: the SMMU driver, seeing that >> the PF is configured to bypass, calls a new function >> "pci_configure_ats()" > > IMO, This seems to be feasible solution for this situation, which > addresses SMMU-ATS expectation in bypass and we could avoid PCI VFs > race. pci_configure_ats() can be called to program/configure STU of a PF > in smmu-bypass mode. > Can we add pci_configure_ats/pci_configure_ats_stu helper? >> instead of pci_enable_ats(), which would only set the STU but leave the >> cap disabled. Then when setting up translation for the VF, the SMMU >> driver >> calls pci_enable_ats() as usual, which sees the PF's STU set >> appropriately >> and succeeds. >> >> Thanks, >> Jean > > Thanks, > Ganapat Thanks, Ganapat _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] PCI/ATS: Allow to enable ATS on VFs even if it is not enabled on PF 2023-02-16 11:12 ` Jean-Philippe Brucker 2023-02-16 11:36 ` Ganapatrao Kulkarni @ 2023-02-21 15:46 ` Bjorn Helgaas 2023-02-23 15:45 ` Jean-Philippe Brucker 1 sibling, 1 reply; 10+ messages in thread From: Bjorn Helgaas @ 2023-02-21 15:46 UTC (permalink / raw) To: Jean-Philippe Brucker Cc: Leon Romanovsky, Ganapatrao Kulkarni, linux-kernel, linux-pci, bhelgaas, darren, scott, Will Deacon, Robin Murphy, Joerg Roedel, linux-arm-kernel, iommu On Thu, Feb 16, 2023 at 11:12:24AM +0000, Jean-Philippe Brucker wrote: > On Wed, Feb 15, 2023 at 02:57:26PM -0600, Bjorn Helgaas wrote: > > On Sun, Feb 12, 2023 at 08:14:48PM +0200, Leon Romanovsky wrote: > > > On Wed, Feb 08, 2023 at 10:43:21AM -0800, Ganapatrao Kulkarni wrote: > > > > As per PCIe specification(section 10.5), If a VF implements an > > > > ATS capability, its associated PF must implement an ATS capability. > > > > The ATS Capabilities in VFs and their associated PFs are permitted to > > > > be enabled independently. > > > > Also, it states that the Smallest Translation Unit (STU) for VFs must be > > > > hardwired to Zero and the associated PF's value applies to VFs STU. > > > > > > > > The current code allows to enable ATS on VFs only if it is already > > > > enabled on associated PF, which is not necessary as per the specification. > > > > > > > > It is only required to have valid STU programmed on PF to enable > > > > ATS on VFs. Adding code to write the first VFs STU to a PF's STU > > > > when PFs ATS is not enabled. > > > > > > Can you please add here quotes from the spec and its version? I don't see > > > anything like this in my version of PCIe specification. > > > > See PCIe r6.0, sec 10.5.1. > > > > > > Signed-off-by: Ganapatrao Kulkarni <gankulkarni@os.amperecomputing.com> > > > > --- > > > > drivers/pci/ats.c | 15 +++++++++++---- > > > > 1 file changed, 11 insertions(+), 4 deletions(-) > > > > > > > > diff --git a/drivers/pci/ats.c b/drivers/pci/ats.c > > > > index f9cc2e10b676..a97ec67201d1 100644 > > > > --- a/drivers/pci/ats.c > > > > +++ b/drivers/pci/ats.c > > > > @@ -67,13 +67,20 @@ int pci_enable_ats(struct pci_dev *dev, int ps) > > > > if (ps < PCI_ATS_MIN_STU) > > > > return -EINVAL; > > > > > > > > - /* > > > > - * Note that enabling ATS on a VF fails unless it's already enabled > > > > - * with the same STU on the PF. > > > > - */ > > > > ctrl = PCI_ATS_CTRL_ENABLE; > > > > if (dev->is_virtfn) { > > > > pdev = pci_physfn(dev); > > > > + > > > > + if (!pdev->ats_enabled && > > > > + (pdev->ats_stu < PCI_ATS_MIN_STU)) { > > > > + u16 ctrl2; > > > > + > > > > + /* Associated PF's STU value applies to VFs. */ > > > > + pdev->ats_stu = ps; > > > > + ctrl2 = PCI_ATS_CTRL_STU(pdev->ats_stu - PCI_ATS_MIN_STU); > > > > + pci_write_config_word(pdev, pdev->ats_cap + PCI_ATS_CTRL, ctrl2); > > > > + } > > > > For reference, it is this way because of edc90fee916b ("PCI: Allocate > > ATS struct during enumeration"). The rationale was that since the PF > > STU applies to all VFs, we should require that the PF STU be > > programmed before enabling ATS on any of the VFs. > > > > This patch relaxes that so the PF STU would be set either by (a) > > enabling ATS on the PF or (b) enabling ATS on the first VF. > > > > This looks racy because theoretically drivers for VF A and VF B could > > independently call pci_enable_ats() with different IOMMU page sizes, > > and we don't know which will get there first. > > > > Most callers supply a compile-time constant (PAGE_SHIFT or > > VTD_PAGE_SHIFT), so it won't matter. arm_smmu_enable_ats() is > > fancier, but I *assume* it would still supply the same IOMMU page size > > for all VFs of a given PF. > > > > But it's still kind of ugly to call pci_enable_ats(dev_A) and have it > > muck with the configuration of dev_B. Maybe we should configure the > > PF STU (without enabling ATS) at enumeration-time in pci_ats_init()? > > Is there some way to get the IOMMU page size at that time? > > Not really, on Arm the supported page sizes are discovered when probing > the SMMU registers, which may happen later than enumeration, during module > loading. > > What this patch is trying to solve is: > * want the PF to bypass SMMU translation, and the VF to undergo SMMU > translation (in order to assign it to a VM) > * SMMU forbids enabling ATS for a configuration that bypasses translation. > So the PF ATS capability must be left disabled. > > For this situation I wonder if we could do: the SMMU driver, seeing that > the PF is configured to bypass, calls a new function "pci_configure_ats()" > instead of pci_enable_ats(), which would only set the STU but leave the > cap disabled. Then when setting up translation for the VF, the SMMU driver > calls pci_enable_ats() as usual, which sees the PF's STU set appropriately > and succeeds. Seems reasonable. It's weird to me that the SMMU is between PCI and memory, but the driver seems to insert itself in the middle after PCI enumeration. And maybe even after some PCI device driver binding? But I guess if you arrange for the SMMU driver to configure the PF before the VF driver gets started, that's all we need from a PCI perspective. Bjorn _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] PCI/ATS: Allow to enable ATS on VFs even if it is not enabled on PF 2023-02-21 15:46 ` Bjorn Helgaas @ 2023-02-23 15:45 ` Jean-Philippe Brucker 0 siblings, 0 replies; 10+ messages in thread From: Jean-Philippe Brucker @ 2023-02-23 15:45 UTC (permalink / raw) To: Bjorn Helgaas Cc: Leon Romanovsky, Ganapatrao Kulkarni, linux-kernel, linux-pci, bhelgaas, darren, scott, Will Deacon, Robin Murphy, Joerg Roedel, linux-arm-kernel, iommu On Tue, Feb 21, 2023 at 09:46:24AM -0600, Bjorn Helgaas wrote: > It's weird to me that the SMMU is between PCI and memory, but the > driver seems to insert itself in the middle after PCI enumeration. > And maybe even after some PCI device driver binding? No this shouldn't happen, because device drivers expect DMA to be operational in their probe() function, so at that point the IOMMU must be configured. The core and IOMMU subsystems enforce probe dependency between the SMMU and the PCI device, using links described by ACPI or device tree. Thanks, Jean _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2023-02-23 15:46 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <Y+ksmNWJdWNkGAU9@unreal>
2023-02-15 20:57 ` [PATCH] PCI/ATS: Allow to enable ATS on VFs even if it is not enabled on PF Bjorn Helgaas
2023-02-16 7:26 ` Leon Romanovsky
2023-02-16 7:46 ` Leon Romanovsky
2023-02-16 10:47 ` Jean-Philippe Brucker
2023-02-16 10:23 ` Joerg Roedel
2023-02-16 11:12 ` Jean-Philippe Brucker
2023-02-16 11:36 ` Ganapatrao Kulkarni
2023-02-21 9:13 ` Ganapatrao Kulkarni
2023-02-21 15:46 ` Bjorn Helgaas
2023-02-23 15:45 ` Jean-Philippe Brucker
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).