linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC PATCH] vfio/pci: map prefetchble bars as writecombine
@ 2018-07-13  4:56 Srinath Mannam
  2018-07-17 15:22 ` Alex Williamson
  0 siblings, 1 reply; 11+ messages in thread
From: Srinath Mannam @ 2018-07-13  4:56 UTC (permalink / raw)
  To: Alex Williamson
  Cc: ray.jui, vikram.prakash, scott.branden, kvm,
	bcm-kernel-feedback-list, linux-kernel, Srinath Mannam

By default all BARs map with VMA access permissions
as pgprot_noncached.

In ARM64 pgprot_noncached is MT_DEVICE_nGnRnE which
is strongly ordered and allows aligned access.
This type of mapping works for NON-PREFETCHABLE bars
containing EP controller registers.
But it restricts PREFETCHABLE bars from doing
unaligned access.

In CMB NVMe drives PREFETCHABLE bars are required to
map as MT_NORMAL_NC to do unaligned access.

Signed-off-by: Srinath Mannam <srinath.mannam@broadcom.com>
Reviewed-by: Ray Jui <ray.jui@broadcom.com>
Reviewed-by: Vikram Prakash <vikram.prakash@broadcom.com>
---
 drivers/vfio/pci/vfio_pci.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/vfio/pci/vfio_pci.c b/drivers/vfio/pci/vfio_pci.c
index b423a30..eff6b65 100644
--- a/drivers/vfio/pci/vfio_pci.c
+++ b/drivers/vfio/pci/vfio_pci.c
@@ -1142,7 +1142,10 @@ static int vfio_pci_mmap(void *device_data, struct vm_area_struct *vma)
 	}
 
 	vma->vm_private_data = vdev;
-	vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
+	if (pci_resource_flags(pdev, index) & IORESOURCE_PREFETCH)
+		vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
+	else
+		vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
 	vma->vm_pgoff = (pci_resource_start(pdev, index) >> PAGE_SHIFT) + pgoff;
 
 	return remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
-- 
2.7.4


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

end of thread, other threads:[~2018-08-01 19:39 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-13  4:56 [RFC PATCH] vfio/pci: map prefetchble bars as writecombine Srinath Mannam
2018-07-17 15:22 ` Alex Williamson
2018-07-18 18:35   ` Srinath Mannam
2018-07-18 21:25     ` Alex Williamson
2018-07-19 14:47       ` Srinath Mannam
2018-07-19 15:12         ` Alex Williamson
2018-07-19 16:19           ` Srinath Mannam
2018-07-20 20:27             ` Alex Williamson
2018-07-23  8:33               ` Srinath Mannam
2018-08-01 17:58                 ` Srinath Mannam
2018-08-01 19:38                   ` Alex Williamson

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