linuxkpi: Add io_mapping_map_user() and remap_pfn_range()

The code comes from the i915 DRM driver.

In Linux commits b739f125e4ebd73d10ed30a856574e13649119ed and
b12d691ea5e01db42ccf3b4207e57cb3ce7cfe91 (Linux 5.13), the i915 DRM
driver dropped specific implementations to use Linux generic functions.
Therefore I moved the FreeBSD code from that i915 driver to linuxkpi.

However, these commits were later reverted (also in Linux 5.13) so the
i915 driver doesn't use these functions. But perhaps it will help in the
future.

To sum up, the code comes from the i915 DRM driver but it doesn't use it
(i.e. it continues to use its internal implementation).

Reviewed by:	manu
Approved by:	manu
Differential Revision:	https://reviews.freebsd.org/D38088
This commit is contained in:
Jean-Sébastien Pédron 2023-01-14 13:22:19 +01:00
parent 4fee6659c4
commit b99bc86232
No known key found for this signature in database
GPG Key ID: 39E99761A5FD94CC
3 changed files with 75 additions and 1 deletions

View File

@ -37,6 +37,7 @@
#include <linux/types.h>
#include <linux/io.h>
#include <linux/mm.h>
#include <linux/slab.h>
struct io_mapping {
@ -100,6 +101,17 @@ io_mapping_map_wc(struct io_mapping *mapping, unsigned long offset,
return ((char *)mapping->mem + offset);
}
int lkpi_io_mapping_map_user(struct io_mapping *iomap,
struct vm_area_struct *vma, unsigned long addr, unsigned long pfn,
unsigned long size);
static inline int
io_mapping_map_user(struct io_mapping *iomap, struct vm_area_struct *vma,
unsigned long addr, unsigned long pfn, unsigned long size)
{
return (lkpi_io_mapping_map_user(iomap, vma, addr, pfn, size));
}
static inline void
io_mapping_unmap(void *vaddr)
{

View File

@ -218,11 +218,15 @@ apply_to_page_range(struct mm_struct *mm, unsigned long address,
int zap_vma_ptes(struct vm_area_struct *vma, unsigned long address,
unsigned long size);
int lkpi_remap_pfn_range(struct vm_area_struct *vma,
unsigned long start_addr, unsigned long start_pfn, unsigned long size,
pgprot_t prot);
static inline int
remap_pfn_range(struct vm_area_struct *vma, unsigned long addr,
unsigned long pfn, unsigned long size, pgprot_t prot)
{
return (-ENOTSUP);
return (lkpi_remap_pfn_range(vma, addr, pfn, size, prot));
}
static inline unsigned long

View File

@ -67,6 +67,7 @@ __FBSDID("$FreeBSD$");
#include <linux/kernel.h>
#include <linux/idr.h>
#include <linux/io.h>
#include <linux/io-mapping.h>
#ifdef __i386__
DEFINE_IDR(mtrr_idr);
@ -334,6 +335,63 @@ lkpi_vmf_insert_pfn_prot_locked(struct vm_area_struct *vma, unsigned long addr,
return (VM_FAULT_NOPAGE);
}
int
lkpi_remap_pfn_range(struct vm_area_struct *vma, unsigned long start_addr,
unsigned long start_pfn, unsigned long size, pgprot_t prot)
{
vm_object_t vm_obj;
unsigned long addr, pfn;
int err = 0;
vm_obj = vma->vm_obj;
VM_OBJECT_WLOCK(vm_obj);
for (addr = start_addr, pfn = start_pfn;
addr < start_addr + size;
addr += PAGE_SIZE) {
vm_fault_t ret;
retry:
ret = lkpi_vmf_insert_pfn_prot_locked(vma, addr, pfn, prot);
if ((ret & VM_FAULT_OOM) != 0) {
VM_OBJECT_WUNLOCK(vm_obj);
vm_wait(NULL);
VM_OBJECT_WLOCK(vm_obj);
goto retry;
}
if ((ret & VM_FAULT_ERROR) != 0) {
err = -EFAULT;
break;
}
pfn++;
}
VM_OBJECT_WUNLOCK(vm_obj);
if (unlikely(err)) {
zap_vma_ptes(vma, start_addr,
(pfn - start_pfn) << PAGE_SHIFT);
return (err);
}
return (0);
}
int
lkpi_io_mapping_map_user(struct io_mapping *iomap,
struct vm_area_struct *vma, unsigned long addr,
unsigned long pfn, unsigned long size)
{
pgprot_t prot;
int ret;
prot = cachemode2protval(iomap->attr);
ret = lkpi_remap_pfn_range(vma, addr, pfn, size, prot);
return (ret);
}
/*
* Although FreeBSD version of unmap_mapping_range has semantics and types of
* parameters compatible with Linux version, the values passed in are different