All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] uio: Fix bus error that access memory mapped by physical
@ 2021-06-23  6:52 wubian
  2021-06-23  7:14 ` Greg KH
  0 siblings, 1 reply; 9+ messages in thread
From: wubian @ 2021-06-23  6:52 UTC (permalink / raw)
  To: gregkh; +Cc: linux-kernel, wubian

On the arm64, register the uio driver and map a physical space
on the pci device to user space, then use memset write data to
the address space, a bus error will occur. This error is due to
the dc instruction(cache operation) used in the assembly of memset,
uio mapping physical memory will call pgprot_noncached() to set
non-cached and non-buffered, while pgprot_writecombine() has fewer
restrictions. It does not prohibit write buffer, so replacing
pgprot_noncached() with pgprot_writecombine() can solve this problem.

Signed-off-by: wubian <wubian@uniontech.com>
---
 drivers/uio/uio.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/uio/uio.c b/drivers/uio/uio.c
index ea96e319c8a0..09b04b20fa30 100644
--- a/drivers/uio/uio.c
+++ b/drivers/uio/uio.c
@@ -739,7 +739,11 @@ static int uio_mmap_physical(struct vm_area_struct *vma)
 
 	vma->vm_ops = &uio_physical_vm_ops;
 	if (idev->info->mem[mi].memtype == UIO_MEM_PHYS)
+#if defined(CONFIG_ARM64)
+		vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
+#else
 		vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
+#endif
 
 	/*
 	 * We cannot use the vm_iomap_memory() helper here,
-- 
2.20.1




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

end of thread, other threads:[~2021-06-24  9:50 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-23  6:52 [PATCH] uio: Fix bus error that access memory mapped by physical wubian
2021-06-23  7:14 ` Greg KH
2021-06-23  8:49   ` wubian
2021-06-23  9:25     ` Greg KH
2021-06-23 12:32       ` wubian
2021-06-24  8:26         ` Will Deacon
2021-06-24  8:26           ` Will Deacon
2021-06-24  9:48           ` wubian
2021-06-24  9:48             ` wubian

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.