RDMA/rdmavt: Add driver mmap callback

Add a reserved range and a driver callback to allow the driver to
have custom mmaps.

Generated mmap offsets are cookies and are not related to the size of
the mmap.  Advance the mmap offset by the minimum, PAGE_SIZE, rather
than the size of the mmap.

Signed-off-by: Dean Luick <dean.luick@cornelisnetworks.com>
Signed-off-by: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
Link: https://patch.msgid.link/177308909972.1279894.15543003811821875042.stgit@awdrv-04.cornelisnetworks.com
Signed-off-by: Leon Romanovsky <leon@kernel.org>
This commit is contained in:
Dean Luick 2026-03-09 16:44:59 -04:00 committed by Leon Romanovsky
parent 0fed679e08
commit 6be4ca0ab3
2 changed files with 20 additions and 5 deletions

View File

@ -9,6 +9,11 @@
#include <rdma/uverbs_ioctl.h>
#include "mmap.h"
/* number of reserved mmaps for the driver */
#define MMAP_RESERVED 256
/* start point for dynamic offsets */
#define MMAP_OFFSET_START (MMAP_RESERVED * PAGE_SIZE)
/**
* rvt_mmap_init - init link list and lock for mem map
* @rdi: rvt dev struct
@ -17,7 +22,7 @@ void rvt_mmap_init(struct rvt_dev_info *rdi)
{
INIT_LIST_HEAD(&rdi->pending_mmaps);
spin_lock_init(&rdi->pending_lock);
rdi->mmap_offset = PAGE_SIZE;
rdi->mmap_offset = MMAP_OFFSET_START;
spin_lock_init(&rdi->mmap_offset_lock);
}
@ -73,6 +78,13 @@ int rvt_mmap(struct ib_ucontext *context, struct vm_area_struct *vma)
struct rvt_mmap_info *ip, *pp;
int ret = -EINVAL;
/* call driver if in reserved range */
if (offset < MMAP_OFFSET_START) {
if (rdi->driver_f.mmap)
return rdi->driver_f.mmap(context, vma);
return -EINVAL;
}
/*
* Search the device's list of objects waiting for a mmap call.
* Normally, this list is very short since a call to create a
@ -129,9 +141,9 @@ struct rvt_mmap_info *rvt_create_mmap_info(struct rvt_dev_info *rdi, u32 size,
spin_lock_irq(&rdi->mmap_offset_lock);
if (rdi->mmap_offset == 0)
rdi->mmap_offset = ALIGN(PAGE_SIZE, SHMLBA);
rdi->mmap_offset = MMAP_OFFSET_START;
ip->offset = rdi->mmap_offset;
rdi->mmap_offset += ALIGN(size, SHMLBA);
rdi->mmap_offset += PAGE_SIZE;
spin_unlock_irq(&rdi->mmap_offset_lock);
INIT_LIST_HEAD(&ip->pending_mmaps);
@ -159,9 +171,9 @@ void rvt_update_mmap_info(struct rvt_dev_info *rdi, struct rvt_mmap_info *ip,
spin_lock_irq(&rdi->mmap_offset_lock);
if (rdi->mmap_offset == 0)
rdi->mmap_offset = PAGE_SIZE;
rdi->mmap_offset = MMAP_OFFSET_START;
ip->offset = rdi->mmap_offset;
rdi->mmap_offset += size;
rdi->mmap_offset += PAGE_SIZE;
spin_unlock_irq(&rdi->mmap_offset_lock);
ip->size = size;

View File

@ -366,6 +366,9 @@ struct rvt_driver_provided {
/* deallocate a ucontext */
void (*dealloc_ucontext)(struct ib_ucontext *context);
/* driver mmap */
int (*mmap)(struct ib_ucontext *context, struct vm_area_struct *vma);
};
struct rvt_dev_info {