Linux 4.9.243
[linux/fpc-iii.git] / drivers / gpu / drm / virtio / virtgpu_kms.c
blobba7855da7c7f6ada8edd6fcab9b6369204238128
1 /*
2 * Copyright (C) 2015 Red Hat, Inc.
3 * All Rights Reserved.
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 <linux/virtio.h>
27 #include <linux/virtio_config.h>
28 #include <drm/drmP.h>
29 #include "virtgpu_drv.h"
31 static int virtio_gpu_fbdev = 1;
33 MODULE_PARM_DESC(fbdev, "Disable/Enable framebuffer device & console");
34 module_param_named(fbdev, virtio_gpu_fbdev, int, 0400);
36 static void virtio_gpu_config_changed_work_func(struct work_struct *work)
38 struct virtio_gpu_device *vgdev =
39 container_of(work, struct virtio_gpu_device,
40 config_changed_work);
41 u32 events_read, events_clear = 0;
43 /* read the config space */
44 virtio_cread(vgdev->vdev, struct virtio_gpu_config,
45 events_read, &events_read);
46 if (events_read & VIRTIO_GPU_EVENT_DISPLAY) {
47 virtio_gpu_cmd_get_display_info(vgdev);
48 drm_helper_hpd_irq_event(vgdev->ddev);
49 events_clear |= VIRTIO_GPU_EVENT_DISPLAY;
51 virtio_cwrite(vgdev->vdev, struct virtio_gpu_config,
52 events_clear, &events_clear);
55 static void virtio_gpu_ctx_id_get(struct virtio_gpu_device *vgdev,
56 uint32_t *resid)
58 int handle;
60 idr_preload(GFP_KERNEL);
61 spin_lock(&vgdev->ctx_id_idr_lock);
62 handle = idr_alloc(&vgdev->ctx_id_idr, NULL, 1, 0, 0);
63 spin_unlock(&vgdev->ctx_id_idr_lock);
64 idr_preload_end();
65 *resid = handle;
68 static void virtio_gpu_ctx_id_put(struct virtio_gpu_device *vgdev, uint32_t id)
70 spin_lock(&vgdev->ctx_id_idr_lock);
71 idr_remove(&vgdev->ctx_id_idr, id);
72 spin_unlock(&vgdev->ctx_id_idr_lock);
75 static void virtio_gpu_context_create(struct virtio_gpu_device *vgdev,
76 uint32_t nlen, const char *name,
77 uint32_t *ctx_id)
79 virtio_gpu_ctx_id_get(vgdev, ctx_id);
80 virtio_gpu_cmd_context_create(vgdev, *ctx_id, nlen, name);
83 static void virtio_gpu_context_destroy(struct virtio_gpu_device *vgdev,
84 uint32_t ctx_id)
86 virtio_gpu_cmd_context_destroy(vgdev, ctx_id);
87 virtio_gpu_ctx_id_put(vgdev, ctx_id);
90 static void virtio_gpu_init_vq(struct virtio_gpu_queue *vgvq,
91 void (*work_func)(struct work_struct *work))
93 spin_lock_init(&vgvq->qlock);
94 init_waitqueue_head(&vgvq->ack_queue);
95 INIT_WORK(&vgvq->dequeue_work, work_func);
98 static void virtio_gpu_get_capsets(struct virtio_gpu_device *vgdev,
99 int num_capsets)
101 int i, ret;
103 vgdev->capsets = kcalloc(num_capsets,
104 sizeof(struct virtio_gpu_drv_capset),
105 GFP_KERNEL);
106 if (!vgdev->capsets) {
107 DRM_ERROR("failed to allocate cap sets\n");
108 return;
110 for (i = 0; i < num_capsets; i++) {
111 virtio_gpu_cmd_get_capset_info(vgdev, i);
112 ret = wait_event_timeout(vgdev->resp_wq,
113 vgdev->capsets[i].id > 0, 5 * HZ);
114 if (ret == 0) {
115 DRM_ERROR("timed out waiting for cap set %d\n", i);
116 spin_lock(&vgdev->display_info_lock);
117 kfree(vgdev->capsets);
118 vgdev->capsets = NULL;
119 spin_unlock(&vgdev->display_info_lock);
120 return;
122 DRM_INFO("cap set %d: id %d, max-version %d, max-size %d\n",
123 i, vgdev->capsets[i].id,
124 vgdev->capsets[i].max_version,
125 vgdev->capsets[i].max_size);
127 vgdev->num_capsets = num_capsets;
130 int virtio_gpu_driver_load(struct drm_device *dev, unsigned long flags)
132 static vq_callback_t *callbacks[] = {
133 virtio_gpu_ctrl_ack, virtio_gpu_cursor_ack
135 static const char * const names[] = { "control", "cursor" };
137 struct virtio_gpu_device *vgdev;
138 /* this will expand later */
139 struct virtqueue *vqs[2];
140 u32 num_scanouts, num_capsets;
141 int ret;
143 if (!virtio_has_feature(dev->virtdev, VIRTIO_F_VERSION_1))
144 return -ENODEV;
146 vgdev = kzalloc(sizeof(struct virtio_gpu_device), GFP_KERNEL);
147 if (!vgdev)
148 return -ENOMEM;
150 vgdev->ddev = dev;
151 dev->dev_private = vgdev;
152 vgdev->vdev = dev->virtdev;
153 vgdev->dev = dev->dev;
155 spin_lock_init(&vgdev->display_info_lock);
156 spin_lock_init(&vgdev->ctx_id_idr_lock);
157 idr_init(&vgdev->ctx_id_idr);
158 spin_lock_init(&vgdev->resource_idr_lock);
159 idr_init(&vgdev->resource_idr);
160 init_waitqueue_head(&vgdev->resp_wq);
161 virtio_gpu_init_vq(&vgdev->ctrlq, virtio_gpu_dequeue_ctrl_func);
162 virtio_gpu_init_vq(&vgdev->cursorq, virtio_gpu_dequeue_cursor_func);
164 vgdev->fence_drv.context = fence_context_alloc(1);
165 spin_lock_init(&vgdev->fence_drv.lock);
166 INIT_LIST_HEAD(&vgdev->fence_drv.fences);
167 INIT_LIST_HEAD(&vgdev->cap_cache);
168 INIT_WORK(&vgdev->config_changed_work,
169 virtio_gpu_config_changed_work_func);
171 if (virtio_has_feature(vgdev->vdev, VIRTIO_GPU_F_VIRGL))
172 vgdev->has_virgl_3d = true;
173 DRM_INFO("virgl 3d acceleration %s\n",
174 vgdev->has_virgl_3d ? "enabled" : "not available");
176 ret = vgdev->vdev->config->find_vqs(vgdev->vdev, 2, vqs,
177 callbacks, names);
178 if (ret) {
179 DRM_ERROR("failed to find virt queues\n");
180 goto err_vqs;
182 vgdev->ctrlq.vq = vqs[0];
183 vgdev->cursorq.vq = vqs[1];
184 ret = virtio_gpu_alloc_vbufs(vgdev);
185 if (ret) {
186 DRM_ERROR("failed to alloc vbufs\n");
187 goto err_vbufs;
190 ret = virtio_gpu_ttm_init(vgdev);
191 if (ret) {
192 DRM_ERROR("failed to init ttm %d\n", ret);
193 goto err_ttm;
196 /* get display info */
197 virtio_cread(vgdev->vdev, struct virtio_gpu_config,
198 num_scanouts, &num_scanouts);
199 vgdev->num_scanouts = min_t(uint32_t, num_scanouts,
200 VIRTIO_GPU_MAX_SCANOUTS);
201 if (!vgdev->num_scanouts) {
202 DRM_ERROR("num_scanouts is zero\n");
203 ret = -EINVAL;
204 goto err_scanouts;
206 DRM_INFO("number of scanouts: %d\n", num_scanouts);
208 virtio_cread(vgdev->vdev, struct virtio_gpu_config,
209 num_capsets, &num_capsets);
210 DRM_INFO("number of cap sets: %d\n", num_capsets);
212 ret = virtio_gpu_modeset_init(vgdev);
213 if (ret)
214 goto err_modeset;
216 virtio_device_ready(vgdev->vdev);
217 vgdev->vqs_ready = true;
219 if (num_capsets)
220 virtio_gpu_get_capsets(vgdev, num_capsets);
221 virtio_gpu_cmd_get_display_info(vgdev);
222 wait_event_timeout(vgdev->resp_wq, !vgdev->display_info_pending,
223 5 * HZ);
224 if (virtio_gpu_fbdev)
225 virtio_gpu_fbdev_init(vgdev);
227 return 0;
229 err_modeset:
230 err_scanouts:
231 virtio_gpu_ttm_fini(vgdev);
232 err_ttm:
233 virtio_gpu_free_vbufs(vgdev);
234 err_vbufs:
235 vgdev->vdev->config->del_vqs(vgdev->vdev);
236 err_vqs:
237 kfree(vgdev);
238 return ret;
241 static void virtio_gpu_cleanup_cap_cache(struct virtio_gpu_device *vgdev)
243 struct virtio_gpu_drv_cap_cache *cache_ent, *tmp;
245 list_for_each_entry_safe(cache_ent, tmp, &vgdev->cap_cache, head) {
246 kfree(cache_ent->caps_cache);
247 kfree(cache_ent);
251 int virtio_gpu_driver_unload(struct drm_device *dev)
253 struct virtio_gpu_device *vgdev = dev->dev_private;
255 vgdev->vqs_ready = false;
256 flush_work(&vgdev->ctrlq.dequeue_work);
257 flush_work(&vgdev->cursorq.dequeue_work);
258 flush_work(&vgdev->config_changed_work);
259 vgdev->vdev->config->del_vqs(vgdev->vdev);
261 virtio_gpu_modeset_fini(vgdev);
262 virtio_gpu_ttm_fini(vgdev);
263 virtio_gpu_free_vbufs(vgdev);
264 virtio_gpu_cleanup_cap_cache(vgdev);
265 kfree(vgdev->capsets);
266 kfree(vgdev);
267 return 0;
270 int virtio_gpu_driver_open(struct drm_device *dev, struct drm_file *file)
272 struct virtio_gpu_device *vgdev = dev->dev_private;
273 struct virtio_gpu_fpriv *vfpriv;
274 uint32_t id;
275 char dbgname[64], tmpname[TASK_COMM_LEN];
277 /* can't create contexts without 3d renderer */
278 if (!vgdev->has_virgl_3d)
279 return 0;
281 get_task_comm(tmpname, current);
282 snprintf(dbgname, sizeof(dbgname), "%s", tmpname);
283 dbgname[63] = 0;
284 /* allocate a virt GPU context for this opener */
285 vfpriv = kzalloc(sizeof(*vfpriv), GFP_KERNEL);
286 if (!vfpriv)
287 return -ENOMEM;
289 virtio_gpu_context_create(vgdev, strlen(dbgname), dbgname, &id);
291 vfpriv->ctx_id = id;
292 file->driver_priv = vfpriv;
293 return 0;
296 void virtio_gpu_driver_postclose(struct drm_device *dev, struct drm_file *file)
298 struct virtio_gpu_device *vgdev = dev->dev_private;
299 struct virtio_gpu_fpriv *vfpriv;
301 if (!vgdev->has_virgl_3d)
302 return;
304 vfpriv = file->driver_priv;
306 virtio_gpu_context_destroy(vgdev, vfpriv->ctx_id);
307 kfree(vfpriv);
308 file->driver_priv = NULL;