Loading...
1/*
2 * Copyright (C) 2015 Red Hat, Inc.
3 * All Rights Reserved.
4 *
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:
12 *
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.
16 *
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.
24 */
25
26#include <drm/drm_file.h>
27#include <drm/drm_fourcc.h>
28
29#include "virtgpu_drv.h"
30
31static int virtio_gpu_gem_create(struct drm_file *file,
32 struct drm_device *dev,
33 struct virtio_gpu_object_params *params,
34 struct drm_gem_object **obj_p,
35 uint32_t *handle_p)
36{
37 struct virtio_gpu_device *vgdev = dev->dev_private;
38 struct virtio_gpu_object *obj;
39 int ret;
40 u32 handle;
41
42 if (vgdev->has_virgl_3d)
43 virtio_gpu_create_context(dev, file);
44
45 ret = virtio_gpu_object_create(vgdev, params, &obj, NULL);
46 if (ret < 0)
47 return ret;
48
49 ret = drm_gem_handle_create(file, &obj->base.base, &handle);
50 if (ret) {
51 drm_gem_object_release(&obj->base.base);
52 return ret;
53 }
54
55 *obj_p = &obj->base.base;
56
57 /* drop reference from allocate - handle holds it now */
58 drm_gem_object_put(&obj->base.base);
59
60 *handle_p = handle;
61 return 0;
62}
63
64int virtio_gpu_mode_dumb_create(struct drm_file *file_priv,
65 struct drm_device *dev,
66 struct drm_mode_create_dumb *args)
67{
68 struct drm_gem_object *gobj;
69 struct virtio_gpu_object_params params = { 0 };
70 int ret;
71 uint32_t pitch;
72
73 if (args->bpp != 32)
74 return -EINVAL;
75
76 pitch = args->width * 4;
77 args->size = pitch * args->height;
78 args->size = ALIGN(args->size, PAGE_SIZE);
79
80 params.format = virtio_gpu_translate_format(DRM_FORMAT_HOST_XRGB8888);
81 params.width = args->width;
82 params.height = args->height;
83 params.size = args->size;
84 params.dumb = true;
85 ret = virtio_gpu_gem_create(file_priv, dev, ¶ms, &gobj,
86 &args->handle);
87 if (ret)
88 goto fail;
89
90 args->pitch = pitch;
91 return ret;
92
93fail:
94 return ret;
95}
96
97int virtio_gpu_mode_dumb_mmap(struct drm_file *file_priv,
98 struct drm_device *dev,
99 uint32_t handle, uint64_t *offset_p)
100{
101 struct drm_gem_object *gobj;
102
103 BUG_ON(!offset_p);
104 gobj = drm_gem_object_lookup(file_priv, handle);
105 if (gobj == NULL)
106 return -ENOENT;
107 *offset_p = drm_vma_node_offset_addr(&gobj->vma_node);
108 drm_gem_object_put(gobj);
109 return 0;
110}
111
112int virtio_gpu_gem_object_open(struct drm_gem_object *obj,
113 struct drm_file *file)
114{
115 struct virtio_gpu_device *vgdev = obj->dev->dev_private;
116 struct virtio_gpu_fpriv *vfpriv = file->driver_priv;
117 struct virtio_gpu_object_array *objs;
118
119 if (!vgdev->has_virgl_3d)
120 goto out_notify;
121
122 objs = virtio_gpu_array_alloc(1);
123 if (!objs)
124 return -ENOMEM;
125 virtio_gpu_array_add_obj(objs, obj);
126
127 virtio_gpu_cmd_context_attach_resource(vgdev, vfpriv->ctx_id,
128 objs);
129out_notify:
130 virtio_gpu_notify(vgdev);
131 return 0;
132}
133
134void virtio_gpu_gem_object_close(struct drm_gem_object *obj,
135 struct drm_file *file)
136{
137 struct virtio_gpu_device *vgdev = obj->dev->dev_private;
138 struct virtio_gpu_fpriv *vfpriv = file->driver_priv;
139 struct virtio_gpu_object_array *objs;
140
141 if (!vgdev->has_virgl_3d)
142 return;
143
144 objs = virtio_gpu_array_alloc(1);
145 if (!objs)
146 return;
147 virtio_gpu_array_add_obj(objs, obj);
148
149 virtio_gpu_cmd_context_detach_resource(vgdev, vfpriv->ctx_id,
150 objs);
151 virtio_gpu_notify(vgdev);
152}
153
154struct virtio_gpu_object_array *virtio_gpu_array_alloc(u32 nents)
155{
156 struct virtio_gpu_object_array *objs;
157 size_t size = sizeof(*objs) + sizeof(objs->objs[0]) * nents;
158
159 objs = kmalloc(size, GFP_KERNEL);
160 if (!objs)
161 return NULL;
162
163 objs->nents = 0;
164 objs->total = nents;
165 return objs;
166}
167
168static void virtio_gpu_array_free(struct virtio_gpu_object_array *objs)
169{
170 kfree(objs);
171}
172
173struct virtio_gpu_object_array*
174virtio_gpu_array_from_handles(struct drm_file *drm_file, u32 *handles, u32 nents)
175{
176 struct virtio_gpu_object_array *objs;
177 u32 i;
178
179 objs = virtio_gpu_array_alloc(nents);
180 if (!objs)
181 return NULL;
182
183 for (i = 0; i < nents; i++) {
184 objs->objs[i] = drm_gem_object_lookup(drm_file, handles[i]);
185 if (!objs->objs[i]) {
186 objs->nents = i;
187 virtio_gpu_array_put_free(objs);
188 return NULL;
189 }
190 }
191 objs->nents = i;
192 return objs;
193}
194
195void virtio_gpu_array_add_obj(struct virtio_gpu_object_array *objs,
196 struct drm_gem_object *obj)
197{
198 if (WARN_ON_ONCE(objs->nents == objs->total))
199 return;
200
201 drm_gem_object_get(obj);
202 objs->objs[objs->nents] = obj;
203 objs->nents++;
204}
205
206int virtio_gpu_array_lock_resv(struct virtio_gpu_object_array *objs)
207{
208 int ret;
209
210 if (objs->nents == 1) {
211 ret = dma_resv_lock_interruptible(objs->objs[0]->resv, NULL);
212 } else {
213 ret = drm_gem_lock_reservations(objs->objs, objs->nents,
214 &objs->ticket);
215 }
216 return ret;
217}
218
219void virtio_gpu_array_unlock_resv(struct virtio_gpu_object_array *objs)
220{
221 if (objs->nents == 1) {
222 dma_resv_unlock(objs->objs[0]->resv);
223 } else {
224 drm_gem_unlock_reservations(objs->objs, objs->nents,
225 &objs->ticket);
226 }
227}
228
229void virtio_gpu_array_add_fence(struct virtio_gpu_object_array *objs,
230 struct dma_fence *fence)
231{
232 int i;
233
234 for (i = 0; i < objs->nents; i++)
235 dma_resv_add_excl_fence(objs->objs[i]->resv, fence);
236}
237
238void virtio_gpu_array_put_free(struct virtio_gpu_object_array *objs)
239{
240 u32 i;
241
242 for (i = 0; i < objs->nents; i++)
243 drm_gem_object_put(objs->objs[i]);
244 virtio_gpu_array_free(objs);
245}
246
247void virtio_gpu_array_put_free_delayed(struct virtio_gpu_device *vgdev,
248 struct virtio_gpu_object_array *objs)
249{
250 spin_lock(&vgdev->obj_free_lock);
251 list_add_tail(&objs->next, &vgdev->obj_free_list);
252 spin_unlock(&vgdev->obj_free_lock);
253 schedule_work(&vgdev->obj_free_work);
254}
255
256void virtio_gpu_array_put_free_work(struct work_struct *work)
257{
258 struct virtio_gpu_device *vgdev =
259 container_of(work, struct virtio_gpu_device, obj_free_work);
260 struct virtio_gpu_object_array *objs;
261
262 spin_lock(&vgdev->obj_free_lock);
263 while (!list_empty(&vgdev->obj_free_list)) {
264 objs = list_first_entry(&vgdev->obj_free_list,
265 struct virtio_gpu_object_array, next);
266 list_del(&objs->next);
267 spin_unlock(&vgdev->obj_free_lock);
268 virtio_gpu_array_put_free(objs);
269 spin_lock(&vgdev->obj_free_lock);
270 }
271 spin_unlock(&vgdev->obj_free_lock);
272}
1/*
2 * Copyright (C) 2015 Red Hat, Inc.
3 * All Rights Reserved.
4 *
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:
12 *
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.
16 *
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.
24 */
25
26#include <drm/drmP.h>
27#include "virtgpu_drv.h"
28
29void virtio_gpu_gem_free_object(struct drm_gem_object *gem_obj)
30{
31 struct virtio_gpu_object *obj = gem_to_virtio_gpu_obj(gem_obj);
32
33 if (obj)
34 virtio_gpu_object_unref(&obj);
35}
36
37struct virtio_gpu_object *virtio_gpu_alloc_object(struct drm_device *dev,
38 size_t size, bool kernel,
39 bool pinned)
40{
41 struct virtio_gpu_device *vgdev = dev->dev_private;
42 struct virtio_gpu_object *obj;
43 int ret;
44
45 ret = virtio_gpu_object_create(vgdev, size, kernel, pinned, &obj);
46 if (ret)
47 return ERR_PTR(ret);
48
49 return obj;
50}
51
52int virtio_gpu_gem_create(struct drm_file *file,
53 struct drm_device *dev,
54 uint64_t size,
55 struct drm_gem_object **obj_p,
56 uint32_t *handle_p)
57{
58 struct virtio_gpu_object *obj;
59 int ret;
60 u32 handle;
61
62 obj = virtio_gpu_alloc_object(dev, size, false, false);
63 if (IS_ERR(obj))
64 return PTR_ERR(obj);
65
66 ret = drm_gem_handle_create(file, &obj->gem_base, &handle);
67 if (ret) {
68 drm_gem_object_release(&obj->gem_base);
69 return ret;
70 }
71
72 *obj_p = &obj->gem_base;
73
74 /* drop reference from allocate - handle holds it now */
75 drm_gem_object_unreference_unlocked(&obj->gem_base);
76
77 *handle_p = handle;
78 return 0;
79}
80
81int virtio_gpu_mode_dumb_create(struct drm_file *file_priv,
82 struct drm_device *dev,
83 struct drm_mode_create_dumb *args)
84{
85 struct virtio_gpu_device *vgdev = dev->dev_private;
86 struct drm_gem_object *gobj;
87 struct virtio_gpu_object *obj;
88 int ret;
89 uint32_t pitch;
90 uint32_t resid;
91
92 pitch = args->width * ((args->bpp + 1) / 8);
93 args->size = pitch * args->height;
94 args->size = ALIGN(args->size, PAGE_SIZE);
95
96 ret = virtio_gpu_gem_create(file_priv, dev, args->size, &gobj,
97 &args->handle);
98 if (ret)
99 goto fail;
100
101 virtio_gpu_resource_id_get(vgdev, &resid);
102 virtio_gpu_cmd_create_resource(vgdev, resid,
103 2, args->width, args->height);
104
105 /* attach the object to the resource */
106 obj = gem_to_virtio_gpu_obj(gobj);
107 ret = virtio_gpu_object_attach(vgdev, obj, resid, NULL);
108 if (ret)
109 goto fail;
110
111 obj->dumb = true;
112 args->pitch = pitch;
113 return ret;
114
115fail:
116 return ret;
117}
118
119int virtio_gpu_mode_dumb_destroy(struct drm_file *file_priv,
120 struct drm_device *dev,
121 uint32_t handle)
122{
123 return drm_gem_handle_delete(file_priv, handle);
124}
125
126int virtio_gpu_mode_dumb_mmap(struct drm_file *file_priv,
127 struct drm_device *dev,
128 uint32_t handle, uint64_t *offset_p)
129{
130 struct drm_gem_object *gobj;
131 struct virtio_gpu_object *obj;
132 BUG_ON(!offset_p);
133 gobj = drm_gem_object_lookup(file_priv, handle);
134 if (gobj == NULL)
135 return -ENOENT;
136 obj = gem_to_virtio_gpu_obj(gobj);
137 *offset_p = virtio_gpu_object_mmap_offset(obj);
138 drm_gem_object_unreference_unlocked(gobj);
139 return 0;
140}
141
142int virtio_gpu_gem_object_open(struct drm_gem_object *obj,
143 struct drm_file *file)
144{
145 struct virtio_gpu_device *vgdev = obj->dev->dev_private;
146 struct virtio_gpu_fpriv *vfpriv = file->driver_priv;
147 struct virtio_gpu_object *qobj = gem_to_virtio_gpu_obj(obj);
148 int r;
149
150 if (!vgdev->has_virgl_3d)
151 return 0;
152
153 r = virtio_gpu_object_reserve(qobj, false);
154 if (r)
155 return r;
156
157 virtio_gpu_cmd_context_attach_resource(vgdev, vfpriv->ctx_id,
158 qobj->hw_res_handle);
159 virtio_gpu_object_unreserve(qobj);
160 return 0;
161}
162
163void virtio_gpu_gem_object_close(struct drm_gem_object *obj,
164 struct drm_file *file)
165{
166 struct virtio_gpu_device *vgdev = obj->dev->dev_private;
167 struct virtio_gpu_fpriv *vfpriv = file->driver_priv;
168 struct virtio_gpu_object *qobj = gem_to_virtio_gpu_obj(obj);
169 int r;
170
171 if (!vgdev->has_virgl_3d)
172 return;
173
174 r = virtio_gpu_object_reserve(qobj, false);
175 if (r)
176 return;
177
178 virtio_gpu_cmd_context_detach_resource(vgdev, vfpriv->ctx_id,
179 qobj->hw_res_handle);
180 virtio_gpu_object_unreserve(qobj);
181}