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 <linux/virtio.h>
27 #include <linux/virtio_config.h>
29 #include <drm/drm_file.h>
31 #include "virtgpu_drv.h"
33 static void virtio_gpu_config_changed_work_func(struct work_struct
*work
)
35 struct virtio_gpu_device
*vgdev
=
36 container_of(work
, struct virtio_gpu_device
,
38 u32 events_read
, events_clear
= 0;
40 /* read the config space */
41 virtio_cread(vgdev
->vdev
, struct virtio_gpu_config
,
42 events_read
, &events_read
);
43 if (events_read
& VIRTIO_GPU_EVENT_DISPLAY
) {
45 virtio_gpu_cmd_get_edids(vgdev
);
46 virtio_gpu_cmd_get_display_info(vgdev
);
47 drm_helper_hpd_irq_event(vgdev
->ddev
);
48 events_clear
|= VIRTIO_GPU_EVENT_DISPLAY
;
50 virtio_cwrite(vgdev
->vdev
, struct virtio_gpu_config
,
51 events_clear
, &events_clear
);
54 static int virtio_gpu_context_create(struct virtio_gpu_device
*vgdev
,
55 uint32_t nlen
, const char *name
)
57 int handle
= ida_alloc(&vgdev
->ctx_id_ida
, GFP_KERNEL
);
62 virtio_gpu_cmd_context_create(vgdev
, handle
, nlen
, name
);
66 static void virtio_gpu_context_destroy(struct virtio_gpu_device
*vgdev
,
69 virtio_gpu_cmd_context_destroy(vgdev
, ctx_id
);
70 ida_free(&vgdev
->ctx_id_ida
, ctx_id
- 1);
73 static void virtio_gpu_init_vq(struct virtio_gpu_queue
*vgvq
,
74 void (*work_func
)(struct work_struct
*work
))
76 spin_lock_init(&vgvq
->qlock
);
77 init_waitqueue_head(&vgvq
->ack_queue
);
78 INIT_WORK(&vgvq
->dequeue_work
, work_func
);
81 static void virtio_gpu_get_capsets(struct virtio_gpu_device
*vgdev
,
86 vgdev
->capsets
= kcalloc(num_capsets
,
87 sizeof(struct virtio_gpu_drv_capset
),
89 if (!vgdev
->capsets
) {
90 DRM_ERROR("failed to allocate cap sets\n");
93 for (i
= 0; i
< num_capsets
; i
++) {
94 virtio_gpu_cmd_get_capset_info(vgdev
, i
);
95 ret
= wait_event_timeout(vgdev
->resp_wq
,
96 vgdev
->capsets
[i
].id
> 0, 5 * HZ
);
98 DRM_ERROR("timed out waiting for cap set %d\n", i
);
99 kfree(vgdev
->capsets
);
100 vgdev
->capsets
= NULL
;
103 DRM_INFO("cap set %d: id %d, max-version %d, max-size %d\n",
104 i
, vgdev
->capsets
[i
].id
,
105 vgdev
->capsets
[i
].max_version
,
106 vgdev
->capsets
[i
].max_size
);
108 vgdev
->num_capsets
= num_capsets
;
111 int virtio_gpu_init(struct drm_device
*dev
)
113 static vq_callback_t
*callbacks
[] = {
114 virtio_gpu_ctrl_ack
, virtio_gpu_cursor_ack
116 static const char * const names
[] = { "control", "cursor" };
118 struct virtio_gpu_device
*vgdev
;
119 /* this will expand later */
120 struct virtqueue
*vqs
[2];
121 u32 num_scanouts
, num_capsets
;
124 if (!virtio_has_feature(dev_to_virtio(dev
->dev
), VIRTIO_F_VERSION_1
))
127 vgdev
= kzalloc(sizeof(struct virtio_gpu_device
), GFP_KERNEL
);
132 dev
->dev_private
= vgdev
;
133 vgdev
->vdev
= dev_to_virtio(dev
->dev
);
134 vgdev
->dev
= dev
->dev
;
136 spin_lock_init(&vgdev
->display_info_lock
);
137 ida_init(&vgdev
->ctx_id_ida
);
138 ida_init(&vgdev
->resource_ida
);
139 init_waitqueue_head(&vgdev
->resp_wq
);
140 virtio_gpu_init_vq(&vgdev
->ctrlq
, virtio_gpu_dequeue_ctrl_func
);
141 virtio_gpu_init_vq(&vgdev
->cursorq
, virtio_gpu_dequeue_cursor_func
);
143 vgdev
->fence_drv
.context
= dma_fence_context_alloc(1);
144 spin_lock_init(&vgdev
->fence_drv
.lock
);
145 INIT_LIST_HEAD(&vgdev
->fence_drv
.fences
);
146 INIT_LIST_HEAD(&vgdev
->cap_cache
);
147 INIT_WORK(&vgdev
->config_changed_work
,
148 virtio_gpu_config_changed_work_func
);
150 INIT_WORK(&vgdev
->obj_free_work
,
151 virtio_gpu_array_put_free_work
);
152 INIT_LIST_HEAD(&vgdev
->obj_free_list
);
153 spin_lock_init(&vgdev
->obj_free_lock
);
155 #ifdef __LITTLE_ENDIAN
156 if (virtio_has_feature(vgdev
->vdev
, VIRTIO_GPU_F_VIRGL
))
157 vgdev
->has_virgl_3d
= true;
159 if (virtio_has_feature(vgdev
->vdev
, VIRTIO_GPU_F_EDID
)) {
160 vgdev
->has_edid
= true;
163 DRM_INFO("features: %cvirgl %cedid\n",
164 vgdev
->has_virgl_3d
? '+' : '-',
165 vgdev
->has_edid
? '+' : '-');
167 ret
= virtio_find_vqs(vgdev
->vdev
, 2, vqs
, callbacks
, names
, NULL
);
169 DRM_ERROR("failed to find virt queues\n");
172 vgdev
->ctrlq
.vq
= vqs
[0];
173 vgdev
->cursorq
.vq
= vqs
[1];
174 ret
= virtio_gpu_alloc_vbufs(vgdev
);
176 DRM_ERROR("failed to alloc vbufs\n");
180 /* get display info */
181 virtio_cread(vgdev
->vdev
, struct virtio_gpu_config
,
182 num_scanouts
, &num_scanouts
);
183 vgdev
->num_scanouts
= min_t(uint32_t, num_scanouts
,
184 VIRTIO_GPU_MAX_SCANOUTS
);
185 if (!vgdev
->num_scanouts
) {
186 DRM_ERROR("num_scanouts is zero\n");
190 DRM_INFO("number of scanouts: %d\n", num_scanouts
);
192 virtio_cread(vgdev
->vdev
, struct virtio_gpu_config
,
193 num_capsets
, &num_capsets
);
194 DRM_INFO("number of cap sets: %d\n", num_capsets
);
196 virtio_gpu_modeset_init(vgdev
);
198 virtio_device_ready(vgdev
->vdev
);
199 vgdev
->vqs_ready
= true;
202 virtio_gpu_get_capsets(vgdev
, num_capsets
);
204 virtio_gpu_cmd_get_edids(vgdev
);
205 virtio_gpu_cmd_get_display_info(vgdev
);
206 wait_event_timeout(vgdev
->resp_wq
, !vgdev
->display_info_pending
,
211 virtio_gpu_free_vbufs(vgdev
);
213 vgdev
->vdev
->config
->del_vqs(vgdev
->vdev
);
219 static void virtio_gpu_cleanup_cap_cache(struct virtio_gpu_device
*vgdev
)
221 struct virtio_gpu_drv_cap_cache
*cache_ent
, *tmp
;
223 list_for_each_entry_safe(cache_ent
, tmp
, &vgdev
->cap_cache
, head
) {
224 kfree(cache_ent
->caps_cache
);
229 void virtio_gpu_deinit(struct drm_device
*dev
)
231 struct virtio_gpu_device
*vgdev
= dev
->dev_private
;
233 flush_work(&vgdev
->obj_free_work
);
234 vgdev
->vqs_ready
= false;
235 flush_work(&vgdev
->ctrlq
.dequeue_work
);
236 flush_work(&vgdev
->cursorq
.dequeue_work
);
237 flush_work(&vgdev
->config_changed_work
);
238 vgdev
->vdev
->config
->reset(vgdev
->vdev
);
239 vgdev
->vdev
->config
->del_vqs(vgdev
->vdev
);
241 virtio_gpu_modeset_fini(vgdev
);
242 virtio_gpu_free_vbufs(vgdev
);
243 virtio_gpu_cleanup_cap_cache(vgdev
);
244 kfree(vgdev
->capsets
);
248 int virtio_gpu_driver_open(struct drm_device
*dev
, struct drm_file
*file
)
250 struct virtio_gpu_device
*vgdev
= dev
->dev_private
;
251 struct virtio_gpu_fpriv
*vfpriv
;
253 char dbgname
[TASK_COMM_LEN
];
255 /* can't create contexts without 3d renderer */
256 if (!vgdev
->has_virgl_3d
)
259 /* allocate a virt GPU context for this opener */
260 vfpriv
= kzalloc(sizeof(*vfpriv
), GFP_KERNEL
);
264 get_task_comm(dbgname
, current
);
265 id
= virtio_gpu_context_create(vgdev
, strlen(dbgname
), dbgname
);
272 file
->driver_priv
= vfpriv
;
276 void virtio_gpu_driver_postclose(struct drm_device
*dev
, struct drm_file
*file
)
278 struct virtio_gpu_device
*vgdev
= dev
->dev_private
;
279 struct virtio_gpu_fpriv
*vfpriv
;
281 if (!vgdev
->has_virgl_3d
)
284 vfpriv
= file
->driver_priv
;
286 virtio_gpu_context_destroy(vgdev
, vfpriv
->ctx_id
);
288 file
->driver_priv
= NULL
;