]> Git Repo - linux.git/blob - drivers/gpu/drm/virtio/virtgpu_gem.c
Linux 6.14-rc3
[linux.git] / drivers / gpu / drm / virtio / virtgpu_gem.c
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
31 static 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         ret = virtio_gpu_object_create(vgdev, params, &obj, NULL);
43         if (ret < 0)
44                 return ret;
45
46         ret = drm_gem_handle_create(file, &obj->base.base, &handle);
47         if (ret) {
48                 drm_gem_object_release(&obj->base.base);
49                 return ret;
50         }
51
52         *obj_p = &obj->base.base;
53
54         /* drop reference from allocate - handle holds it now */
55         drm_gem_object_put(&obj->base.base);
56
57         *handle_p = handle;
58         return 0;
59 }
60
61 int virtio_gpu_mode_dumb_create(struct drm_file *file_priv,
62                                 struct drm_device *dev,
63                                 struct drm_mode_create_dumb *args)
64 {
65         struct drm_gem_object *gobj;
66         struct virtio_gpu_object_params params = { 0 };
67         struct virtio_gpu_device *vgdev = dev->dev_private;
68         int ret;
69         uint32_t pitch;
70
71         if (args->bpp != 32)
72                 return -EINVAL;
73
74         pitch = args->width * 4;
75         args->size = pitch * args->height;
76         args->size = ALIGN(args->size, PAGE_SIZE);
77
78         params.format = virtio_gpu_translate_format(DRM_FORMAT_HOST_XRGB8888);
79         params.width = args->width;
80         params.height = args->height;
81         params.size = args->size;
82         params.dumb = true;
83
84         if (vgdev->has_resource_blob && !vgdev->has_virgl_3d) {
85                 params.blob_mem = VIRTGPU_BLOB_MEM_GUEST;
86                 params.blob_flags = VIRTGPU_BLOB_FLAG_USE_SHAREABLE;
87                 params.blob = true;
88         }
89
90         ret = virtio_gpu_gem_create(file_priv, dev, &params, &gobj,
91                                     &args->handle);
92         if (ret)
93                 goto fail;
94
95         args->pitch = pitch;
96         return ret;
97
98 fail:
99         return ret;
100 }
101
102 int virtio_gpu_gem_object_open(struct drm_gem_object *obj,
103                                struct drm_file *file)
104 {
105         struct virtio_gpu_device *vgdev = obj->dev->dev_private;
106         struct virtio_gpu_fpriv *vfpriv = file->driver_priv;
107         struct virtio_gpu_object_array *objs;
108
109         if (!vgdev->has_virgl_3d)
110                 goto out_notify;
111
112         /* the context might still be missing when the first ioctl is
113          * DRM_IOCTL_MODE_CREATE_DUMB or DRM_IOCTL_PRIME_FD_TO_HANDLE
114          */
115         if (!vgdev->has_context_init)
116                 virtio_gpu_create_context(obj->dev, file);
117
118         objs = virtio_gpu_array_alloc(1);
119         if (!objs)
120                 return -ENOMEM;
121         virtio_gpu_array_add_obj(objs, obj);
122
123         if (vfpriv->ctx_id)
124                 virtio_gpu_cmd_context_attach_resource(vgdev, vfpriv->ctx_id, objs);
125
126 out_notify:
127         virtio_gpu_notify(vgdev);
128         return 0;
129 }
130
131 void virtio_gpu_gem_object_close(struct drm_gem_object *obj,
132                                  struct drm_file *file)
133 {
134         struct virtio_gpu_device *vgdev = obj->dev->dev_private;
135         struct virtio_gpu_fpriv *vfpriv = file->driver_priv;
136         struct virtio_gpu_object_array *objs;
137
138         if (!vgdev->has_virgl_3d)
139                 return;
140
141         objs = virtio_gpu_array_alloc(1);
142         if (!objs)
143                 return;
144         virtio_gpu_array_add_obj(objs, obj);
145
146         virtio_gpu_cmd_context_detach_resource(vgdev, vfpriv->ctx_id,
147                                                objs);
148         virtio_gpu_notify(vgdev);
149 }
150
151 struct virtio_gpu_object_array *virtio_gpu_array_alloc(u32 nents)
152 {
153         struct virtio_gpu_object_array *objs;
154
155         objs = kmalloc(struct_size(objs, objs, nents), GFP_KERNEL);
156         if (!objs)
157                 return NULL;
158
159         objs->nents = 0;
160         objs->total = nents;
161         return objs;
162 }
163
164 static void virtio_gpu_array_free(struct virtio_gpu_object_array *objs)
165 {
166         kfree(objs);
167 }
168
169 struct virtio_gpu_object_array*
170 virtio_gpu_array_from_handles(struct drm_file *drm_file, u32 *handles, u32 nents)
171 {
172         struct virtio_gpu_object_array *objs;
173         u32 i;
174
175         objs = virtio_gpu_array_alloc(nents);
176         if (!objs)
177                 return NULL;
178
179         for (i = 0; i < nents; i++) {
180                 objs->objs[i] = drm_gem_object_lookup(drm_file, handles[i]);
181                 if (!objs->objs[i]) {
182                         objs->nents = i;
183                         virtio_gpu_array_put_free(objs);
184                         return NULL;
185                 }
186         }
187         objs->nents = i;
188         return objs;
189 }
190
191 void virtio_gpu_array_add_obj(struct virtio_gpu_object_array *objs,
192                               struct drm_gem_object *obj)
193 {
194         if (WARN_ON_ONCE(objs->nents == objs->total))
195                 return;
196
197         drm_gem_object_get(obj);
198         objs->objs[objs->nents] = obj;
199         objs->nents++;
200 }
201
202 int virtio_gpu_array_lock_resv(struct virtio_gpu_object_array *objs)
203 {
204         unsigned int i;
205         int ret;
206
207         if (objs->nents == 1) {
208                 ret = dma_resv_lock_interruptible(objs->objs[0]->resv, NULL);
209         } else {
210                 ret = drm_gem_lock_reservations(objs->objs, objs->nents,
211                                                 &objs->ticket);
212         }
213         if (ret)
214                 return ret;
215
216         for (i = 0; i < objs->nents; ++i) {
217                 ret = dma_resv_reserve_fences(objs->objs[i]->resv, 1);
218                 if (ret) {
219                         virtio_gpu_array_unlock_resv(objs);
220                         return ret;
221                 }
222         }
223         return ret;
224 }
225
226 void virtio_gpu_array_unlock_resv(struct virtio_gpu_object_array *objs)
227 {
228         if (objs->nents == 1) {
229                 dma_resv_unlock(objs->objs[0]->resv);
230         } else {
231                 drm_gem_unlock_reservations(objs->objs, objs->nents,
232                                             &objs->ticket);
233         }
234 }
235
236 void virtio_gpu_array_add_fence(struct virtio_gpu_object_array *objs,
237                                 struct dma_fence *fence)
238 {
239         int i;
240
241         for (i = 0; i < objs->nents; i++)
242                 dma_resv_add_fence(objs->objs[i]->resv, fence,
243                                    DMA_RESV_USAGE_WRITE);
244 }
245
246 void virtio_gpu_array_put_free(struct virtio_gpu_object_array *objs)
247 {
248         u32 i;
249
250         if (!objs)
251                 return;
252
253         for (i = 0; i < objs->nents; i++)
254                 drm_gem_object_put(objs->objs[i]);
255         virtio_gpu_array_free(objs);
256 }
257
258 void virtio_gpu_array_put_free_delayed(struct virtio_gpu_device *vgdev,
259                                        struct virtio_gpu_object_array *objs)
260 {
261         spin_lock(&vgdev->obj_free_lock);
262         list_add_tail(&objs->next, &vgdev->obj_free_list);
263         spin_unlock(&vgdev->obj_free_lock);
264         schedule_work(&vgdev->obj_free_work);
265 }
266
267 void virtio_gpu_array_put_free_work(struct work_struct *work)
268 {
269         struct virtio_gpu_device *vgdev =
270                 container_of(work, struct virtio_gpu_device, obj_free_work);
271         struct virtio_gpu_object_array *objs;
272
273         spin_lock(&vgdev->obj_free_lock);
274         while (!list_empty(&vgdev->obj_free_list)) {
275                 objs = list_first_entry(&vgdev->obj_free_list,
276                                         struct virtio_gpu_object_array, next);
277                 list_del(&objs->next);
278                 spin_unlock(&vgdev->obj_free_lock);
279                 virtio_gpu_array_put_free(objs);
280                 spin_lock(&vgdev->obj_free_lock);
281         }
282         spin_unlock(&vgdev->obj_free_lock);
283 }
This page took 0.049356 seconds and 4 git commands to generate.