]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/ttm: Allow the driver to provide the ttm struct vm_operations_struct
authorThomas Hellstrom <thellstrom@vmware.com>
Fri, 12 Oct 2018 15:16:39 +0000 (17:16 +0200)
committerThomas Hellstrom <thellstrom@vmware.com>
Tue, 18 Jun 2019 13:19:34 +0000 (15:19 +0200)
Add a pointer to the struct vm_operations_struct in the bo_device, and
assign that pointer to the default value currently used.

The driver can then optionally modify that pointer and the new value
can be used for each new vma created.

Cc: "Christian König" <christian.koenig@amd.com>
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
drivers/gpu/drm/ttm/ttm_bo.c
drivers/gpu/drm/ttm/ttm_bo_vm.c
include/drm/ttm/ttm_bo_driver.h

index c7de667d482a41fe07681ddb9c44edc1491fc9b4..6953dd264172c3e5f3bd5aa5a44415252ee157ce 100644 (file)
@@ -1739,6 +1739,7 @@ int ttm_bo_device_init(struct ttm_bo_device *bdev,
        mutex_lock(&ttm_global_mutex);
        list_add_tail(&bdev->device_list, &glob->device_list);
        mutex_unlock(&ttm_global_mutex);
+       bdev->vm_ops = &ttm_bo_vm_ops;
 
        return 0;
 out_no_sys:
index 6dacff49c1cc5a4944dc856365602f7b60b8de64..196e13a0adada17d07cbd6c1ddc58c16b7d48ecf 100644 (file)
@@ -395,7 +395,7 @@ static int ttm_bo_vm_access(struct vm_area_struct *vma, unsigned long addr,
        return ret;
 }
 
-static const struct vm_operations_struct ttm_bo_vm_ops = {
+const struct vm_operations_struct ttm_bo_vm_ops = {
        .fault = ttm_bo_vm_fault,
        .open = ttm_bo_vm_open,
        .close = ttm_bo_vm_close,
@@ -448,7 +448,7 @@ int ttm_bo_mmap(struct file *filp, struct vm_area_struct *vma,
        if (unlikely(ret != 0))
                goto out_unref;
 
-       vma->vm_ops = &ttm_bo_vm_ops;
+       vma->vm_ops = bdev->vm_ops;
 
        /*
         * Note: We're transferring the bo reference to
@@ -480,7 +480,7 @@ int ttm_fbdev_mmap(struct vm_area_struct *vma, struct ttm_buffer_object *bo)
 
        ttm_bo_get(bo);
 
-       vma->vm_ops = &ttm_bo_vm_ops;
+       vma->vm_ops = bo->bdev->vm_ops;
        vma->vm_private_data = bo;
        vma->vm_flags |= VM_MIXEDMAP;
        vma->vm_flags |= VM_IO | VM_DONTEXPAND;
index c9b8ba492f2479549938b47622bad1144fdc1221..a2d810a2504d3dd2775e6524d47ecbc51cfe4e1b 100644 (file)
@@ -442,6 +442,9 @@ extern struct ttm_bo_global {
  * @driver: Pointer to a struct ttm_bo_driver struct setup by the driver.
  * @man: An array of mem_type_managers.
  * @vma_manager: Address space manager
+ * @vm_ops: Pointer to the struct vm_operations_struct used for this
+ * device's VM operations. The driver may override this before the first
+ * mmap() call.
  * lru_lock: Spinlock that protects the buffer+device lru lists and
  * ddestroy lists.
  * @dev_mapping: A pointer to the struct address_space representing the
@@ -460,6 +463,7 @@ struct ttm_bo_device {
        struct ttm_bo_global *glob;
        struct ttm_bo_driver *driver;
        struct ttm_mem_type_manager man[TTM_NUM_MEM_TYPES];
+       const struct vm_operations_struct *vm_ops;
 
        /*
         * Protected by internal locks.
@@ -488,6 +492,8 @@ struct ttm_bo_device {
        bool no_retry;
 };
 
+extern const struct vm_operations_struct ttm_bo_vm_ops;
+
 /**
  * struct ttm_lru_bulk_move_pos
  *