linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 1/1] PCI/ATS: For VF PCIe device use PF PASID Capability
@ 2020-01-29 19:14 sathyanarayanan.kuppuswamy
  2020-02-05 18:11 ` Bjorn Helgaas
  0 siblings, 1 reply; 2+ messages in thread
From: sathyanarayanan.kuppuswamy @ 2020-01-29 19:14 UTC (permalink / raw)
  To: bhelgaas; +Cc: linux-pci, linux-kernel, ashok.raj, sathyanarayanan.kuppuswamy

From: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>

Per PCIe r5.0, sec 9.3.7.14, if a PF implements the PASID Capability,
the PF PASID configuration is shared by its VFs. VFs must not implement
their own PASID Capability. But, commit 751035b8dc06 ("PCI/ATS: Cache
PASID Capability offset") when adding support for PASID Capability
offset caching, modified the pci_max_pasids() and pci_pasid_features()
APIs to use PASID Capability offset of VF device instead of using
PASID Capability offset of associated PF device. This change leads to
IOMMU bind failures when pci_max_pasids() and pci_pasid_features()
functions are invoked by PCIe VF devices.

So modify pci_max_pasids() and pci_pasid_features() functions to use
correct PASID Capability offset.

Fixes: 751035b8dc06 ("PCI/ATS: Cache PASID Capability offset")
Signed-off-by: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
---
 drivers/pci/ats.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/pci/ats.c b/drivers/pci/ats.c
index 982b46f0a54d..b6f064c885c3 100644
--- a/drivers/pci/ats.c
+++ b/drivers/pci/ats.c
@@ -424,11 +424,12 @@ void pci_restore_pasid_state(struct pci_dev *pdev)
 int pci_pasid_features(struct pci_dev *pdev)
 {
 	u16 supported;
-	int pasid = pdev->pasid_cap;
+	int pasid;
 
 	if (pdev->is_virtfn)
 		pdev = pci_physfn(pdev);
 
+	pasid = pdev->pasid_cap;
 	if (!pasid)
 		return -EINVAL;
 
@@ -451,11 +452,12 @@ int pci_pasid_features(struct pci_dev *pdev)
 int pci_max_pasids(struct pci_dev *pdev)
 {
 	u16 supported;
-	int pasid = pdev->pasid_cap;
+	int pasid;
 
 	if (pdev->is_virtfn)
 		pdev = pci_physfn(pdev);
 
+	pasid = pdev->pasid_cap;
 	if (!pasid)
 		return -EINVAL;
 
-- 
2.21.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v1 1/1] PCI/ATS: For VF PCIe device use PF PASID Capability
  2020-01-29 19:14 [PATCH v1 1/1] PCI/ATS: For VF PCIe device use PF PASID Capability sathyanarayanan.kuppuswamy
@ 2020-02-05 18:11 ` Bjorn Helgaas
  0 siblings, 0 replies; 2+ messages in thread
From: Bjorn Helgaas @ 2020-02-05 18:11 UTC (permalink / raw)
  To: sathyanarayanan.kuppuswamy; +Cc: linux-pci, linux-kernel, ashok.raj

On Wed, Jan 29, 2020 at 11:14:00AM -0800, sathyanarayanan.kuppuswamy@linux.intel.com wrote:
> From: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
> 
> Per PCIe r5.0, sec 9.3.7.14, if a PF implements the PASID Capability,
> the PF PASID configuration is shared by its VFs. VFs must not implement
> their own PASID Capability. But, commit 751035b8dc06 ("PCI/ATS: Cache
> PASID Capability offset") when adding support for PASID Capability
> offset caching, modified the pci_max_pasids() and pci_pasid_features()
> APIs to use PASID Capability offset of VF device instead of using
> PASID Capability offset of associated PF device. This change leads to
> IOMMU bind failures when pci_max_pasids() and pci_pasid_features()
> functions are invoked by PCIe VF devices.
> 
> So modify pci_max_pasids() and pci_pasid_features() functions to use
> correct PASID Capability offset.
> 
> Fixes: 751035b8dc06 ("PCI/ATS: Cache PASID Capability offset")
> Signed-off-by: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>

Applied to for-linus for v5.6, thanks!  I also added a stable tag
since 751035b8dc06 appeared in v5.5.

> ---
>  drivers/pci/ats.c | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/pci/ats.c b/drivers/pci/ats.c
> index 982b46f0a54d..b6f064c885c3 100644
> --- a/drivers/pci/ats.c
> +++ b/drivers/pci/ats.c
> @@ -424,11 +424,12 @@ void pci_restore_pasid_state(struct pci_dev *pdev)
>  int pci_pasid_features(struct pci_dev *pdev)
>  {
>  	u16 supported;
> -	int pasid = pdev->pasid_cap;
> +	int pasid;
>  
>  	if (pdev->is_virtfn)
>  		pdev = pci_physfn(pdev);
>  
> +	pasid = pdev->pasid_cap;
>  	if (!pasid)
>  		return -EINVAL;
>  
> @@ -451,11 +452,12 @@ int pci_pasid_features(struct pci_dev *pdev)
>  int pci_max_pasids(struct pci_dev *pdev)
>  {
>  	u16 supported;
> -	int pasid = pdev->pasid_cap;
> +	int pasid;
>  
>  	if (pdev->is_virtfn)
>  		pdev = pci_physfn(pdev);
>  
> +	pasid = pdev->pasid_cap;
>  	if (!pasid)
>  		return -EINVAL;
>  
> -- 
> 2.21.0
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-02-05 18:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-29 19:14 [PATCH v1 1/1] PCI/ATS: For VF PCIe device use PF PASID Capability sathyanarayanan.kuppuswamy
2020-02-05 18:11 ` Bjorn Helgaas

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).