2 * Copyright (C) 2015 Red Hat, Inc.
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial
15 * portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 #include <drm/ttm/ttm_execbuf_util.h>
28 #include "virtgpu_drv.h"
30 static int virtio_gpu_resource_id_get(struct virtio_gpu_device *vgdev,
34 int handle = ida_alloc(&vgdev->resource_ida, GFP_KERNEL);
42 * FIXME: dirty hack to avoid re-using IDs, virglrenderer
43 * can't deal with that. Needs fixing in virglrenderer, also
44 * should figure a better way to handle that in the guest.
53 static void virtio_gpu_resource_id_put(struct virtio_gpu_device *vgdev, uint32_t id)
56 ida_free(&vgdev->resource_ida, id - 1);
60 static void virtio_gpu_ttm_bo_destroy(struct ttm_buffer_object *tbo)
62 struct virtio_gpu_object *bo;
63 struct virtio_gpu_device *vgdev;
65 bo = container_of(tbo, struct virtio_gpu_object, tbo);
66 vgdev = (struct virtio_gpu_device *)bo->gem_base.dev->dev_private;
69 virtio_gpu_cmd_unref_resource(vgdev, bo->hw_res_handle);
71 virtio_gpu_object_free_sg_table(bo);
73 virtio_gpu_object_kunmap(bo);
74 drm_gem_object_release(&bo->gem_base);
75 virtio_gpu_resource_id_put(vgdev, bo->hw_res_handle);
79 static void virtio_gpu_init_ttm_placement(struct virtio_gpu_object *vgbo)
83 vgbo->placement.placement = &vgbo->placement_code;
84 vgbo->placement.busy_placement = &vgbo->placement_code;
85 vgbo->placement_code.fpfn = 0;
86 vgbo->placement_code.lpfn = 0;
87 vgbo->placement_code.flags =
88 TTM_PL_MASK_CACHING | TTM_PL_FLAG_TT |
90 vgbo->placement.num_placement = c;
91 vgbo->placement.num_busy_placement = c;
95 int virtio_gpu_object_create(struct virtio_gpu_device *vgdev,
96 struct virtio_gpu_object_params *params,
97 struct virtio_gpu_object **bo_ptr,
98 struct virtio_gpu_fence *fence)
100 struct virtio_gpu_object *bo;
106 acc_size = ttm_bo_dma_acc_size(&vgdev->mman.bdev, params->size,
107 sizeof(struct virtio_gpu_object));
109 bo = kzalloc(sizeof(struct virtio_gpu_object), GFP_KERNEL);
112 ret = virtio_gpu_resource_id_get(vgdev, &bo->hw_res_handle);
117 params->size = roundup(params->size, PAGE_SIZE);
118 ret = drm_gem_object_init(vgdev->ddev, &bo->gem_base, params->size);
120 virtio_gpu_resource_id_put(vgdev, bo->hw_res_handle);
124 bo->dumb = params->dumb;
127 virtio_gpu_cmd_resource_create_3d(vgdev, bo, params, fence);
129 virtio_gpu_cmd_create_resource(vgdev, bo, params, fence);
132 virtio_gpu_init_ttm_placement(bo);
133 ret = ttm_bo_init(&vgdev->mman.bdev, &bo->tbo, params->size,
134 ttm_bo_type_device, &bo->placement, 0,
135 true, acc_size, NULL, NULL,
136 &virtio_gpu_ttm_bo_destroy);
137 /* ttm_bo_init failure will call the destroy */
142 struct virtio_gpu_fence_driver *drv = &vgdev->fence_drv;
143 struct list_head validate_list;
144 struct ttm_validate_buffer mainbuf;
145 struct ww_acquire_ctx ticket;
146 unsigned long irq_flags;
149 INIT_LIST_HEAD(&validate_list);
150 memset(&mainbuf, 0, sizeof(struct ttm_validate_buffer));
152 /* use a gem reference since unref list undoes them */
153 drm_gem_object_get(&bo->gem_base);
154 mainbuf.bo = &bo->tbo;
155 list_add(&mainbuf.head, &validate_list);
157 ret = virtio_gpu_object_list_validate(&ticket, &validate_list);
159 spin_lock_irqsave(&drv->lock, irq_flags);
160 signaled = virtio_fence_signaled(&fence->f);
162 /* virtio create command still in flight */
163 ttm_eu_fence_buffer_objects(&ticket, &validate_list,
165 spin_unlock_irqrestore(&drv->lock, irq_flags);
167 /* virtio create command finished */
168 ttm_eu_backoff_reservation(&ticket, &validate_list);
170 virtio_gpu_unref_list(&validate_list);
177 void virtio_gpu_object_kunmap(struct virtio_gpu_object *bo)
180 ttm_bo_kunmap(&bo->kmap);
183 int virtio_gpu_object_kmap(struct virtio_gpu_object *bo)
190 r = ttm_bo_kmap(&bo->tbo, 0, bo->tbo.num_pages, &bo->kmap);
193 bo->vmap = ttm_kmap_obj_virtual(&bo->kmap, &is_iomem);
197 int virtio_gpu_object_get_sg_table(struct virtio_gpu_device *qdev,
198 struct virtio_gpu_object *bo)
201 struct page **pages = bo->tbo.ttm->pages;
202 int nr_pages = bo->tbo.num_pages;
203 struct ttm_operation_ctx ctx = {
204 .interruptible = false,
213 if (bo->tbo.ttm->state == tt_unpopulated)
214 bo->tbo.ttm->bdev->driver->ttm_tt_populate(bo->tbo.ttm, &ctx);
215 bo->pages = kmalloc(sizeof(struct sg_table), GFP_KERNEL);
219 max_segment = virtio_max_dma_size(qdev->vdev);
220 max_segment &= PAGE_MASK;
221 if (max_segment > SCATTERLIST_MAX_SEGMENT)
222 max_segment = SCATTERLIST_MAX_SEGMENT;
223 ret = __sg_alloc_table_from_pages(bo->pages, pages, nr_pages, 0,
224 nr_pages << PAGE_SHIFT,
225 max_segment, GFP_KERNEL);
235 void virtio_gpu_object_free_sg_table(struct virtio_gpu_object *bo)
237 sg_free_table(bo->pages);
242 int virtio_gpu_object_wait(struct virtio_gpu_object *bo, bool no_wait)
246 r = ttm_bo_reserve(&bo->tbo, true, no_wait, NULL);
247 if (unlikely(r != 0))
249 r = ttm_bo_wait(&bo->tbo, true, no_wait);
250 ttm_bo_unreserve(&bo->tbo);