1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
|
// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (C) 2012 Red Hat
* Copyright (c) 2015 - 2020 DisplayLink (UK) Ltd.
*
* This file is subject to the terms and conditions of the GNU General Public
* License v2. See the file COPYING in the main directory of this archive for
* more details.
*/
#include <linux/sched.h>
#include <linux/version.h>
#if KERNEL_VERSION(5, 18, 0) <= LINUX_VERSION_CODE || defined(EL8) || defined(EL9)
#elif KERNEL_VERSION(5, 11, 0) <= LINUX_VERSION_CODE
#include <linux/dma-buf-map.h>
#endif
#if KERNEL_VERSION(5, 16, 0) <= LINUX_VERSION_CODE || defined(EL8) || defined(EL9)
#include <drm/drm_prime.h>
#include <drm/drm_file.h>
#elif KERNEL_VERSION(5, 5, 0) <= LINUX_VERSION_CODE
#else
#include <drm/drmP.h>
#endif
#include "evdi_drm_drv.h"
#include "evdi_params.h"
#include <linux/shmem_fs.h>
#include <linux/dma-buf.h>
#include <drm/drm_cache.h>
#include <linux/vmalloc.h>
#if KERNEL_VERSION(6, 13, 0) <= LINUX_VERSION_CODE
MODULE_IMPORT_NS("DMA_BUF");
#elif KERNEL_VERSION(5, 16, 0) <= LINUX_VERSION_CODE || defined(EL9)
MODULE_IMPORT_NS(DMA_BUF);
#endif
#if KERNEL_VERSION(5, 11, 0) <= LINUX_VERSION_CODE || defined(EL8)
static int evdi_prime_pin(struct drm_gem_object *obj);
static void evdi_prime_unpin(struct drm_gem_object *obj);
static const struct vm_operations_struct evdi_gem_vm_ops = {
.fault = evdi_gem_fault,
.open = drm_gem_vm_open,
.close = drm_gem_vm_close,
};
static struct drm_gem_object_funcs gem_obj_funcs = {
.free = evdi_gem_free_object,
.pin = evdi_prime_pin,
.unpin = evdi_prime_unpin,
.vm_ops = &evdi_gem_vm_ops,
.export = drm_gem_prime_export,
.get_sg_table = evdi_prime_get_sg_table,
};
#endif
static bool evdi_was_called_by_mutter(void)
{
char task_comm[TASK_COMM_LEN] = { 0 };
get_task_comm(task_comm, current);
return strcmp(task_comm, "gnome-shell") == 0;
}
static bool evdi_drm_gem_object_use_import_attach(struct drm_gem_object *obj)
{
if (!obj || !obj->import_attach || !obj->import_attach->dmabuf->owner)
return false;
return strcmp(obj->import_attach->dmabuf->owner->name, "amdgpu") != 0;
}
uint32_t evdi_gem_object_handle_lookup(struct drm_file *filp,
struct drm_gem_object *obj)
{
uint32_t it_handle = 0;
struct drm_gem_object *it_obj = NULL;
spin_lock(&filp->table_lock);
idr_for_each_entry(&filp->object_idr, it_obj, it_handle) {
if (it_obj == obj)
break;
}
spin_unlock(&filp->table_lock);
if (!it_obj)
it_handle = 0;
return it_handle;
}
struct evdi_gem_object *evdi_gem_alloc_object(struct drm_device *dev,
size_t size)
{
struct evdi_gem_object *obj;
obj = kzalloc(sizeof(*obj), GFP_KERNEL);
if (obj == NULL)
return NULL;
if (drm_gem_object_init(dev, &obj->base, size) != 0) {
kfree(obj);
return NULL;
}
#if KERNEL_VERSION(5, 11, 0) <= LINUX_VERSION_CODE || defined(EL8)
obj->base.funcs = &gem_obj_funcs;
#endif
obj->allow_sw_cursor_rect_updates = false;
mutex_init(&obj->pages_lock);
return obj;
}
static int
evdi_gem_create(struct drm_file *file,
struct drm_device *dev, uint64_t size, uint32_t *handle_p)
{
struct evdi_gem_object *obj;
int ret;
u32 handle;
size = roundup(size, PAGE_SIZE);
obj = evdi_gem_alloc_object(dev, size);
if (obj == NULL)
return -ENOMEM;
obj->allow_sw_cursor_rect_updates = evdi_was_called_by_mutter();
ret = drm_gem_handle_create(file, &obj->base, &handle);
if (ret) {
drm_gem_object_release(&obj->base);
kfree(obj);
return ret;
}
#if KERNEL_VERSION(5, 9, 0) <= LINUX_VERSION_CODE || defined(EL8)
drm_gem_object_put(&obj->base);
#else
drm_gem_object_put_unlocked(&obj->base);
#endif
*handle_p = handle;
return 0;
}
static int evdi_align_pitch(int width, int cpp)
{
int aligned = width;
int pitch_mask = 0;
switch (cpp) {
case 1:
pitch_mask = 255;
break;
case 2:
pitch_mask = 127;
break;
case 3:
case 4:
pitch_mask = 63;
break;
}
aligned += pitch_mask;
aligned &= ~pitch_mask;
return aligned * cpp;
}
int evdi_dumb_create(struct drm_file *file,
struct drm_device *dev, struct drm_mode_create_dumb *args)
{
args->pitch = evdi_align_pitch(args->width, DIV_ROUND_UP(args->bpp, 8));
args->size = args->pitch * args->height;
return evdi_gem_create(file, dev, args->size, &args->handle);
}
int evdi_drm_gem_mmap(struct file *filp, struct vm_area_struct *vma)
{
int ret;
ret = drm_gem_mmap(filp, vma);
if (ret)
return ret;
/* Some VMA modifier function patches present in 6.3 were reverted in EL8 kernels */
#if KERNEL_VERSION(6, 3, 0) <= LINUX_VERSION_CODE || defined(EL9)
vm_flags_mod(vma, VM_MIXEDMAP, VM_PFNMAP);
#else
vma->vm_flags &= ~VM_PFNMAP;
vma->vm_flags |= VM_MIXEDMAP;
#endif
return ret;
}
#if KERNEL_VERSION(4, 17, 0) <= LINUX_VERSION_CODE
vm_fault_t evdi_gem_fault(struct vm_fault *vmf)
{
struct vm_area_struct *vma = vmf->vma;
#else
int evdi_gem_fault(struct vm_fault *vmf)
{
struct vm_area_struct *vma = vmf->vma;
#endif
struct evdi_gem_object *obj = to_evdi_bo(vma->vm_private_data);
struct page *page;
pgoff_t page_offset;
loff_t num_pages = obj->base.size >> PAGE_SHIFT;
int ret = 0;
page_offset = (vmf->address - vma->vm_start) >> PAGE_SHIFT;
if (!obj->pages || page_offset >= (unsigned long)num_pages)
return VM_FAULT_SIGBUS;
page = obj->pages[page_offset];
ret = vm_insert_page(vma, vmf->address, page);
switch (ret) {
case -EAGAIN:
case 0:
case -ERESTARTSYS:
case -EBUSY:
return VM_FAULT_NOPAGE;
case -ENOMEM:
return VM_FAULT_OOM;
default:
return VM_FAULT_SIGBUS;
}
return VM_FAULT_SIGBUS;
}
static int evdi_gem_get_pages(struct evdi_gem_object *obj,
__always_unused gfp_t gfpmask)
{
struct page **pages;
if (obj->pages)
return 0;
pages = drm_gem_get_pages(&obj->base);
if (IS_ERR(pages))
return PTR_ERR(pages);
obj->pages = pages;
#if defined(CONFIG_X86)
drm_clflush_pages(obj->pages, DIV_ROUND_UP(obj->base.size, PAGE_SIZE));
#endif
return 0;
}
static void evdi_gem_put_pages(struct evdi_gem_object *obj)
{
if (obj->base.import_attach) {
kvfree(obj->pages);
obj->pages = NULL;
return;
}
drm_gem_put_pages(&obj->base, obj->pages, false, false);
obj->pages = NULL;
}
static int evdi_pin_pages(struct evdi_gem_object *obj)
{
int ret = 0;
mutex_lock(&obj->pages_lock);
if (obj->pages_pin_count++ == 0) {
ret = evdi_gem_get_pages(obj, GFP_KERNEL);
if (ret)
obj->pages_pin_count--;
}
mutex_unlock(&obj->pages_lock);
return ret;
}
static void evdi_unpin_pages(struct evdi_gem_object *obj)
{
mutex_lock(&obj->pages_lock);
if (--obj->pages_pin_count == 0)
evdi_gem_put_pages(obj);
mutex_unlock(&obj->pages_lock);
}
int evdi_gem_vmap(struct evdi_gem_object *obj)
{
int page_count = DIV_ROUND_UP(obj->base.size, PAGE_SIZE);
int ret;
if (evdi_drm_gem_object_use_import_attach(&obj->base)) {
#if KERNEL_VERSION(5, 18, 0) <= LINUX_VERSION_CODE || defined(EL8) || defined(EL9)
struct iosys_map map = IOSYS_MAP_INIT_VADDR(NULL);
#elif KERNEL_VERSION(5, 11, 0) <= LINUX_VERSION_CODE
struct dma_buf_map map = DMA_BUF_MAP_INIT_VADDR(NULL);
#endif
#if KERNEL_VERSION(5, 11, 0) <= LINUX_VERSION_CODE || defined(EL8)
ret = dma_buf_vmap(obj->base.import_attach->dmabuf, &map);
if (ret)
return -ENOMEM;
obj->vmapping = map.vaddr;
obj->vmap_is_iomem = map.is_iomem;
#else
obj->vmapping = dma_buf_vmap(obj->base.import_attach->dmabuf);
if (!obj->vmapping)
return -ENOMEM;
#endif
return 0;
}
ret = evdi_pin_pages(obj);
if (ret)
return ret;
obj->vmapping = vmap(obj->pages, page_count, 0, PAGE_KERNEL);
if (!obj->vmapping)
return -ENOMEM;
return 0;
}
void evdi_gem_vunmap(struct evdi_gem_object *obj)
{
if (evdi_drm_gem_object_use_import_attach(&obj->base)) {
#if KERNEL_VERSION(5, 18, 0) <= LINUX_VERSION_CODE || defined(EL8) || defined(EL9)
struct iosys_map map = IOSYS_MAP_INIT_VADDR(NULL);
if (obj->vmap_is_iomem)
iosys_map_set_vaddr_iomem(&map, obj->vmapping);
else
iosys_map_set_vaddr(&map, obj->vmapping);
dma_buf_vunmap(obj->base.import_attach->dmabuf, &map);
#elif KERNEL_VERSION(5, 11, 0) <= LINUX_VERSION_CODE
struct dma_buf_map map;
if (obj->vmap_is_iomem)
dma_buf_map_set_vaddr_iomem(&map, obj->vmapping);
else
dma_buf_map_set_vaddr(&map, obj->vmapping);
dma_buf_vunmap(obj->base.import_attach->dmabuf, &map);
#else
dma_buf_vunmap(obj->base.import_attach->dmabuf, obj->vmapping);
#endif
obj->vmapping = NULL;
return;
}
if (obj->vmapping) {
vunmap(obj->vmapping);
obj->vmapping = NULL;
}
evdi_unpin_pages(obj);
}
void evdi_gem_free_object(struct drm_gem_object *gem_obj)
{
struct evdi_gem_object *obj = to_evdi_bo(gem_obj);
if (obj->vmapping)
evdi_gem_vunmap(obj);
if (gem_obj->import_attach)
drm_prime_gem_destroy(gem_obj, obj->sg);
if (obj->pages)
evdi_gem_put_pages(obj);
if (gem_obj->dev->vma_offset_manager)
drm_gem_free_mmap_offset(gem_obj);
mutex_destroy(&obj->pages_lock);
drm_gem_object_release(&obj->base);
kfree(obj);
}
/*
* the dumb interface doesn't work with the GEM straight MMAP
* interface, it expects to do MMAP on the drm fd, like normal
*/
int evdi_gem_mmap(struct drm_file *file,
struct drm_device *dev, uint32_t handle, uint64_t *offset)
{
struct evdi_gem_object *gobj;
struct drm_gem_object *obj;
int ret = 0;
mutex_lock(&dev->struct_mutex);
obj = drm_gem_object_lookup(file, handle);
if (obj == NULL) {
ret = -ENOENT;
goto unlock;
}
gobj = to_evdi_bo(obj);
ret = evdi_pin_pages(gobj);
if (ret)
goto out;
/* Don't allow imported objects to be mapped */
if (obj->import_attach) {
EVDI_WARN("Don't allow imported objects to be mapped: owner: %s", obj->import_attach->dmabuf->owner->name);
ret = -EINVAL;
goto out;
}
ret = drm_gem_create_mmap_offset(obj);
if (ret)
goto out;
*offset = drm_vma_node_offset_addr(&gobj->base.vma_node);
out:
drm_gem_object_put(&gobj->base);
unlock:
mutex_unlock(&dev->struct_mutex);
return ret;
}
struct drm_gem_object *
evdi_prime_import_sg_table(struct drm_device *dev,
struct dma_buf_attachment *attach,
struct sg_table *sg)
{
struct evdi_gem_object *obj;
int npages;
bool called_by_mutter;
called_by_mutter = evdi_was_called_by_mutter();
obj = evdi_gem_alloc_object(dev, attach->dmabuf->size);
if (IS_ERR(obj))
return ERR_CAST(obj);
npages = DIV_ROUND_UP(attach->dmabuf->size, PAGE_SIZE);
DRM_DEBUG_PRIME("Importing %d pages\n", npages);
obj->pages = kvmalloc_array(npages, sizeof(struct page *), GFP_KERNEL);
if (!obj->pages) {
evdi_gem_free_object(&obj->base);
return ERR_PTR(-ENOMEM);
}
#if KERNEL_VERSION(5, 12, 0) <= LINUX_VERSION_CODE || defined(EL8)
drm_prime_sg_to_page_array(sg, obj->pages, npages);
#else
drm_prime_sg_to_page_addr_arrays(sg, obj->pages, NULL, npages);
#endif
obj->sg = sg;
obj->allow_sw_cursor_rect_updates = called_by_mutter;
return &obj->base;
}
#if KERNEL_VERSION(5, 11, 0) <= LINUX_VERSION_CODE || defined(EL8)
static int evdi_prime_pin(struct drm_gem_object *obj)
{
struct evdi_gem_object *bo = to_evdi_bo(obj);
return evdi_pin_pages(bo);
}
static void evdi_prime_unpin(struct drm_gem_object *obj)
{
struct evdi_gem_object *bo = to_evdi_bo(obj);
evdi_unpin_pages(bo);
}
#endif
struct sg_table *evdi_prime_get_sg_table(struct drm_gem_object *obj)
{
struct evdi_gem_object *bo = to_evdi_bo(obj);
#if KERNEL_VERSION(5, 10, 0) <= LINUX_VERSION_CODE || defined(EL8)
return drm_prime_pages_to_sg(obj->dev, bo->pages, bo->base.size >> PAGE_SHIFT);
#else
return drm_prime_pages_to_sg(bo->pages, bo->base.size >> PAGE_SHIFT);
#endif
}
|