blob: 5eeae89c138d9037be4214cf841177a04db59442 [file] [log] [blame]
Dave Airlief64122c2013-02-25 14:47:55 +10001/*
2 * Copyright 2013 Red Hat Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * Authors: Dave Airlie
23 * Alon Levy
24 */
25
Randy Dunlapc5416d662013-12-20 10:58:15 -080026#include <linux/crc32.h>
Masahiro Yamadaedaf4922017-04-24 13:50:30 +090027#include <drm/drm_crtc_helper.h>
Daniel Vetter3cb9ae42014-10-29 10:03:57 +010028#include <drm/drm_plane_helper.h>
Gabriel Krisman Bertazi1277eed2017-02-27 17:43:19 -030029#include <drm/drm_atomic_helper.h>
Gabriel Krisman Bertazi10a0bd82017-02-27 17:43:24 -030030#include <drm/drm_atomic.h>
Dave Airlief64122c2013-02-25 14:47:55 +100031
Masahiro Yamadaedaf4922017-04-24 13:50:30 +090032#include "qxl_drv.h"
33#include "qxl_object.h"
34
Dave Airlie07f8d9b2013-07-02 06:37:13 +010035static bool qxl_head_enabled(struct qxl_head *head)
36{
37 return head->width && head->height;
38}
39
Christophe Fergeaue4a76442016-11-08 10:12:03 +010040static void qxl_alloc_client_monitors_config(struct qxl_device *qdev, unsigned count)
Dave Airlief64122c2013-02-25 14:47:55 +100041{
42 if (qdev->client_monitors_config &&
43 count > qdev->client_monitors_config->count) {
44 kfree(qdev->client_monitors_config);
Dave Airlie62c8ba72013-04-16 13:36:00 +100045 qdev->client_monitors_config = NULL;
Dave Airlief64122c2013-02-25 14:47:55 +100046 }
47 if (!qdev->client_monitors_config) {
48 qdev->client_monitors_config = kzalloc(
49 sizeof(struct qxl_monitors_config) +
50 sizeof(struct qxl_head) * count, GFP_KERNEL);
51 if (!qdev->client_monitors_config) {
52 qxl_io_log(qdev,
53 "%s: allocation failure for %u heads\n",
54 __func__, count);
55 return;
56 }
57 }
58 qdev->client_monitors_config->count = count;
59}
60
Christophe Fergeau9e3b3172016-11-08 10:12:08 +010061enum {
62 MONITORS_CONFIG_MODIFIED,
63 MONITORS_CONFIG_UNCHANGED,
64 MONITORS_CONFIG_BAD_CRC,
65};
66
Dave Airlief64122c2013-02-25 14:47:55 +100067static int qxl_display_copy_rom_client_monitors_config(struct qxl_device *qdev)
68{
69 int i;
70 int num_monitors;
71 uint32_t crc;
Christophe Fergeau9e3b3172016-11-08 10:12:08 +010072 int status = MONITORS_CONFIG_UNCHANGED;
Dave Airlief64122c2013-02-25 14:47:55 +100073
Dave Airlief64122c2013-02-25 14:47:55 +100074 num_monitors = qdev->rom->client_monitors_config.count;
75 crc = crc32(0, (const uint8_t *)&qdev->rom->client_monitors_config,
76 sizeof(qdev->rom->client_monitors_config));
77 if (crc != qdev->rom->client_monitors_config_crc) {
Frediano Ziglio72ec5652015-06-03 12:09:16 +010078 qxl_io_log(qdev, "crc mismatch: have %X (%zd) != %X\n", crc,
Dave Airlief64122c2013-02-25 14:47:55 +100079 sizeof(qdev->rom->client_monitors_config),
80 qdev->rom->client_monitors_config_crc);
Christophe Fergeau9e3b3172016-11-08 10:12:08 +010081 return MONITORS_CONFIG_BAD_CRC;
Dave Airlief64122c2013-02-25 14:47:55 +100082 }
Gerd Hoffmannc50fad82017-03-01 11:12:33 +010083 if (!num_monitors) {
84 DRM_DEBUG_KMS("no client monitors configured\n");
85 return status;
86 }
Dave Airlief64122c2013-02-25 14:47:55 +100087 if (num_monitors > qdev->monitors_config->max_allowed) {
Dave Airlie5b8788c2013-07-01 14:14:38 +100088 DRM_DEBUG_KMS("client monitors list will be truncated: %d < %d\n",
89 qdev->monitors_config->max_allowed, num_monitors);
Dave Airlief64122c2013-02-25 14:47:55 +100090 num_monitors = qdev->monitors_config->max_allowed;
91 } else {
92 num_monitors = qdev->rom->client_monitors_config.count;
93 }
Christophe Fergeau9e3b3172016-11-08 10:12:08 +010094 if (qdev->client_monitors_config
95 && (num_monitors != qdev->client_monitors_config->count)) {
96 status = MONITORS_CONFIG_MODIFIED;
97 }
Dave Airlief64122c2013-02-25 14:47:55 +100098 qxl_alloc_client_monitors_config(qdev, num_monitors);
99 /* we copy max from the client but it isn't used */
100 qdev->client_monitors_config->max_allowed =
101 qdev->monitors_config->max_allowed;
102 for (i = 0 ; i < qdev->client_monitors_config->count ; ++i) {
103 struct qxl_urect *c_rect =
104 &qdev->rom->client_monitors_config.heads[i];
105 struct qxl_head *client_head =
106 &qdev->client_monitors_config->heads[i];
Christophe Fergeau9e3b3172016-11-08 10:12:08 +0100107 if (client_head->x != c_rect->left) {
108 client_head->x = c_rect->left;
109 status = MONITORS_CONFIG_MODIFIED;
110 }
111 if (client_head->y != c_rect->top) {
112 client_head->y = c_rect->top;
113 status = MONITORS_CONFIG_MODIFIED;
114 }
115 if (client_head->width != c_rect->right - c_rect->left) {
116 client_head->width = c_rect->right - c_rect->left;
117 status = MONITORS_CONFIG_MODIFIED;
118 }
119 if (client_head->height != c_rect->bottom - c_rect->top) {
120 client_head->height = c_rect->bottom - c_rect->top;
121 status = MONITORS_CONFIG_MODIFIED;
122 }
123 if (client_head->surface_id != 0) {
124 client_head->surface_id = 0;
125 status = MONITORS_CONFIG_MODIFIED;
126 }
127 if (client_head->id != i) {
128 client_head->id = i;
129 status = MONITORS_CONFIG_MODIFIED;
130 }
131 if (client_head->flags != 0) {
132 client_head->flags = 0;
133 status = MONITORS_CONFIG_MODIFIED;
134 }
Dave Airlie07f8d9b2013-07-02 06:37:13 +0100135 DRM_DEBUG_KMS("read %dx%d+%d+%d\n", client_head->width, client_head->height,
136 client_head->x, client_head->y);
Dave Airlief64122c2013-02-25 14:47:55 +1000137 }
Christophe Fergeau9e3b3172016-11-08 10:12:08 +0100138
139 return status;
Dave Airlief64122c2013-02-25 14:47:55 +1000140}
141
Dave Airlie7dea0942014-10-28 11:28:44 +1000142static void qxl_update_offset_props(struct qxl_device *qdev)
143{
Gabriel Krisman Bertazicbdded72017-01-26 23:05:48 -0200144 struct drm_device *dev = &qdev->ddev;
Dave Airlie7dea0942014-10-28 11:28:44 +1000145 struct drm_connector *connector;
146 struct qxl_output *output;
147 struct qxl_head *head;
148
149 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
150 output = drm_connector_to_qxl_output(connector);
151
152 head = &qdev->client_monitors_config->heads[output->index];
153
154 drm_object_property_set_value(&connector->base,
155 dev->mode_config.suggested_x_property, head->x);
156 drm_object_property_set_value(&connector->base,
157 dev->mode_config.suggested_y_property, head->y);
158 }
159}
160
Dave Airlief64122c2013-02-25 14:47:55 +1000161void qxl_display_read_client_monitors_config(struct qxl_device *qdev)
162{
Gabriel Krisman Bertazicbdded72017-01-26 23:05:48 -0200163 struct drm_device *dev = &qdev->ddev;
Gerd Hoffmann90621552017-03-01 11:12:32 +0100164 int status, retries;
Christophe Fergeau9e3b3172016-11-08 10:12:08 +0100165
Gerd Hoffmann90621552017-03-01 11:12:32 +0100166 for (retries = 0; retries < 10; retries++) {
Christophe Fergeau9e3b3172016-11-08 10:12:08 +0100167 status = qxl_display_copy_rom_client_monitors_config(qdev);
Gerd Hoffmann90621552017-03-01 11:12:32 +0100168 if (status != MONITORS_CONFIG_BAD_CRC)
169 break;
170 udelay(5);
171 }
172 if (status == MONITORS_CONFIG_BAD_CRC) {
173 qxl_io_log(qdev, "config: bad crc\n");
174 DRM_DEBUG_KMS("ignoring client monitors config: bad crc");
175 return;
Christophe Fergeau9e3b3172016-11-08 10:12:08 +0100176 }
177 if (status == MONITORS_CONFIG_UNCHANGED) {
Gerd Hoffmann90621552017-03-01 11:12:32 +0100178 qxl_io_log(qdev, "config: unchanged\n");
179 DRM_DEBUG_KMS("ignoring client monitors config: unchanged");
Christophe Fergeau9e3b3172016-11-08 10:12:08 +0100180 return;
Dave Airlief64122c2013-02-25 14:47:55 +1000181 }
Marc-André Lureau4fdb0862013-10-18 16:11:29 +0200182
Dave Airlie7dea0942014-10-28 11:28:44 +1000183 drm_modeset_lock_all(dev);
184 qxl_update_offset_props(qdev);
185 drm_modeset_unlock_all(dev);
Gabriel Krisman Bertazicbdded72017-01-26 23:05:48 -0200186 if (!drm_helper_hpd_irq_event(dev)) {
Marc-André Lureau4fdb0862013-10-18 16:11:29 +0200187 /* notify that the monitor configuration changed, to
188 adjust at the arbitrary resolution */
Gabriel Krisman Bertazicbdded72017-01-26 23:05:48 -0200189 drm_kms_helper_hotplug_event(dev);
Marc-André Lureau4fdb0862013-10-18 16:11:29 +0200190 }
Dave Airlief64122c2013-02-25 14:47:55 +1000191}
192
Marc-André Lureaub0807422013-10-18 16:11:31 +0200193static int qxl_add_monitors_config_modes(struct drm_connector *connector,
194 unsigned *pwidth,
195 unsigned *pheight)
Dave Airlief64122c2013-02-25 14:47:55 +1000196{
197 struct drm_device *dev = connector->dev;
198 struct qxl_device *qdev = dev->dev_private;
199 struct qxl_output *output = drm_connector_to_qxl_output(connector);
200 int h = output->index;
201 struct drm_display_mode *mode = NULL;
202 struct qxl_head *head;
203
Gerd Hoffmann2d856f942017-03-01 11:12:34 +0100204 if (!qdev->monitors_config)
205 return 0;
206 if (h >= qdev->monitors_config->max_allowed)
207 return 0;
Dave Airlie07f8d9b2013-07-02 06:37:13 +0100208 if (!qdev->client_monitors_config)
Dave Airlief64122c2013-02-25 14:47:55 +1000209 return 0;
Gerd Hoffmann2d856f942017-03-01 11:12:34 +0100210 if (h >= qdev->client_monitors_config->count)
211 return 0;
212
Dave Airlie07f8d9b2013-07-02 06:37:13 +0100213 head = &qdev->client_monitors_config->heads[h];
Gerd Hoffmann2d856f942017-03-01 11:12:34 +0100214 DRM_DEBUG_KMS("head %d is %dx%d\n", h, head->width, head->height);
Dave Airlief64122c2013-02-25 14:47:55 +1000215
216 mode = drm_cvt_mode(dev, head->width, head->height, 60, false, false,
217 false);
218 mode->type |= DRM_MODE_TYPE_PREFERRED;
Christophe Fergeauff996e72016-11-08 10:12:09 +0100219 mode->hdisplay = head->width;
220 mode->vdisplay = head->height;
221 drm_mode_set_name(mode);
Marc-André Lureaub0807422013-10-18 16:11:31 +0200222 *pwidth = head->width;
223 *pheight = head->height;
Dave Airlief64122c2013-02-25 14:47:55 +1000224 drm_mode_probed_add(connector, mode);
Jonathon Jongsmabd3e1c72015-08-20 14:04:32 -0500225 /* remember the last custom size for mode validation */
226 qdev->monitors_config_width = mode->hdisplay;
227 qdev->monitors_config_height = mode->vdisplay;
Dave Airlief64122c2013-02-25 14:47:55 +1000228 return 1;
229}
230
Jonathon Jongsmabd3e1c72015-08-20 14:04:32 -0500231static struct mode_size {
232 int w;
233 int h;
234} common_modes[] = {
235 { 640, 480},
236 { 720, 480},
237 { 800, 600},
238 { 848, 480},
239 {1024, 768},
240 {1152, 768},
241 {1280, 720},
242 {1280, 800},
243 {1280, 854},
244 {1280, 960},
245 {1280, 1024},
246 {1440, 900},
247 {1400, 1050},
248 {1680, 1050},
249 {1600, 1200},
250 {1920, 1080},
251 {1920, 1200}
252};
253
Marc-André Lureaub0807422013-10-18 16:11:31 +0200254static int qxl_add_common_modes(struct drm_connector *connector,
255 unsigned pwidth,
256 unsigned pheight)
Dave Airlief64122c2013-02-25 14:47:55 +1000257{
258 struct drm_device *dev = connector->dev;
259 struct drm_display_mode *mode = NULL;
260 int i;
Dave Airlief64122c2013-02-25 14:47:55 +1000261 for (i = 0; i < ARRAY_SIZE(common_modes); i++) {
Dave Airlief64122c2013-02-25 14:47:55 +1000262 mode = drm_cvt_mode(dev, common_modes[i].w, common_modes[i].h,
263 60, false, false, false);
Marc-André Lureaub0807422013-10-18 16:11:31 +0200264 if (common_modes[i].w == pwidth && common_modes[i].h == pheight)
Dave Airlief64122c2013-02-25 14:47:55 +1000265 mode->type |= DRM_MODE_TYPE_PREFERRED;
266 drm_mode_probed_add(connector, mode);
267 }
268 return i - 1;
269}
270
Gabriel Krisman Bertazic2ff6632017-02-27 17:43:20 -0300271static void qxl_crtc_atomic_flush(struct drm_crtc *crtc,
272 struct drm_crtc_state *old_crtc_state)
273{
274 struct drm_device *dev = crtc->dev;
275 struct drm_pending_vblank_event *event;
276 unsigned long flags;
277
278 if (crtc->state && crtc->state->event) {
279 event = crtc->state->event;
280 crtc->state->event = NULL;
281
282 spin_lock_irqsave(&dev->event_lock, flags);
283 drm_crtc_send_vblank_event(crtc, event);
284 spin_unlock_irqrestore(&dev->event_lock, flags);
285 }
286}
287
Dave Airlief64122c2013-02-25 14:47:55 +1000288static void qxl_crtc_destroy(struct drm_crtc *crtc)
289{
290 struct qxl_crtc *qxl_crtc = to_qxl_crtc(crtc);
291
292 drm_crtc_cleanup(crtc);
293 kfree(qxl_crtc);
294}
295
Dave Airlief64122c2013-02-25 14:47:55 +1000296static const struct drm_crtc_funcs qxl_crtc_funcs = {
Gabriel Krisman Bertazibc8a00d2017-02-27 17:43:26 -0300297 .set_config = drm_atomic_helper_set_config,
Dave Airlief64122c2013-02-25 14:47:55 +1000298 .destroy = qxl_crtc_destroy,
Gabriel Krisman Bertazi9973c872017-02-27 17:43:27 -0300299 .page_flip = drm_atomic_helper_page_flip,
Gabriel Krisman Bertazi9ade8b92017-02-27 17:43:23 -0300300 .reset = drm_atomic_helper_crtc_reset,
301 .atomic_duplicate_state = drm_atomic_helper_crtc_duplicate_state,
302 .atomic_destroy_state = drm_atomic_helper_crtc_destroy_state,
Dave Airlief64122c2013-02-25 14:47:55 +1000303};
304
Noralf Trønnes6819c3c2016-04-28 17:18:36 +0200305void qxl_user_framebuffer_destroy(struct drm_framebuffer *fb)
Dave Airlief64122c2013-02-25 14:47:55 +1000306{
307 struct qxl_framebuffer *qxl_fb = to_qxl_framebuffer(fb);
308
Markus Elfringdc3583c2016-07-22 14:14:54 +0200309 drm_gem_object_unreference_unlocked(qxl_fb->obj);
Dave Airlief64122c2013-02-25 14:47:55 +1000310 drm_framebuffer_cleanup(fb);
311 kfree(qxl_fb);
312}
313
Dave Airlie6d01f1f2013-04-16 13:24:25 +1000314static int qxl_framebuffer_surface_dirty(struct drm_framebuffer *fb,
315 struct drm_file *file_priv,
316 unsigned flags, unsigned color,
317 struct drm_clip_rect *clips,
318 unsigned num_clips)
Dave Airlief64122c2013-02-25 14:47:55 +1000319{
320 /* TODO: vmwgfx where this was cribbed from had locking. Why? */
321 struct qxl_framebuffer *qxl_fb = to_qxl_framebuffer(fb);
322 struct qxl_device *qdev = qxl_fb->base.dev->dev_private;
323 struct drm_clip_rect norect;
324 struct qxl_bo *qobj;
325 int inc = 1;
326
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200327 drm_modeset_lock_all(fb->dev);
328
Dave Airlief64122c2013-02-25 14:47:55 +1000329 qobj = gem_to_qxl_bo(qxl_fb->obj);
Dave Airlieb2b44652013-05-13 12:48:40 +1000330 /* if we aren't primary surface ignore this */
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200331 if (!qobj->is_primary) {
332 drm_modeset_unlock_all(fb->dev);
Dave Airlieb2b44652013-05-13 12:48:40 +1000333 return 0;
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200334 }
Dave Airlieb2b44652013-05-13 12:48:40 +1000335
Dave Airlief64122c2013-02-25 14:47:55 +1000336 if (!num_clips) {
337 num_clips = 1;
338 clips = &norect;
339 norect.x1 = norect.y1 = 0;
340 norect.x2 = fb->width;
341 norect.y2 = fb->height;
342 } else if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY) {
343 num_clips /= 2;
344 inc = 2; /* skip source rects */
345 }
346
347 qxl_draw_dirty_fb(qdev, qxl_fb, qobj, flags, color,
348 clips, num_clips, inc);
Ville Syrjälä73e9efd2013-12-04 14:13:58 +0200349
350 drm_modeset_unlock_all(fb->dev);
351
Dave Airlief64122c2013-02-25 14:47:55 +1000352 return 0;
353}
354
355static const struct drm_framebuffer_funcs qxl_fb_funcs = {
356 .destroy = qxl_user_framebuffer_destroy,
357 .dirty = qxl_framebuffer_surface_dirty,
358/* TODO?
359 * .create_handle = qxl_user_framebuffer_create_handle, */
360};
361
362int
363qxl_framebuffer_init(struct drm_device *dev,
364 struct qxl_framebuffer *qfb,
Ville Syrjälä1eb83452015-11-11 19:11:29 +0200365 const struct drm_mode_fb_cmd2 *mode_cmd,
Noralf Trønnes6819c3c2016-04-28 17:18:36 +0200366 struct drm_gem_object *obj,
367 const struct drm_framebuffer_funcs *funcs)
Dave Airlief64122c2013-02-25 14:47:55 +1000368{
369 int ret;
370
371 qfb->obj = obj;
Ville Syrjälä53609432016-11-18 21:52:51 +0200372 drm_helper_mode_fill_fb_struct(dev, &qfb->base, mode_cmd);
Noralf Trønnes6819c3c2016-04-28 17:18:36 +0200373 ret = drm_framebuffer_init(dev, &qfb->base, funcs);
Dave Airlief64122c2013-02-25 14:47:55 +1000374 if (ret) {
375 qfb->obj = NULL;
376 return ret;
377 }
Dave Airlief64122c2013-02-25 14:47:55 +1000378 return 0;
379}
380
Dave Airlief64122c2013-02-25 14:47:55 +1000381static bool qxl_crtc_mode_fixup(struct drm_crtc *crtc,
382 const struct drm_display_mode *mode,
383 struct drm_display_mode *adjusted_mode)
384{
385 struct drm_device *dev = crtc->dev;
386 struct qxl_device *qdev = dev->dev_private;
387
388 qxl_io_log(qdev, "%s: (%d,%d) => (%d,%d)\n",
389 __func__,
390 mode->hdisplay, mode->vdisplay,
391 adjusted_mode->hdisplay,
392 adjusted_mode->vdisplay);
393 return true;
394}
395
Christophe Fergeaue4a76442016-11-08 10:12:03 +0100396static void
Dave Airlief64122c2013-02-25 14:47:55 +1000397qxl_send_monitors_config(struct qxl_device *qdev)
398{
399 int i;
400
401 BUG_ON(!qdev->ram_header->monitors_config);
402
403 if (qdev->monitors_config->count == 0) {
404 qxl_io_log(qdev, "%s: 0 monitors??\n", __func__);
405 return;
406 }
407 for (i = 0 ; i < qdev->monitors_config->count ; ++i) {
408 struct qxl_head *head = &qdev->monitors_config->heads[i];
409
Dave Airlie07f8d9b2013-07-02 06:37:13 +0100410 if (head->y > 8192 || head->x > 8192 ||
Dave Airlief64122c2013-02-25 14:47:55 +1000411 head->width > 8192 || head->height > 8192) {
412 DRM_ERROR("head %d wrong: %dx%d+%d+%d\n",
413 i, head->width, head->height,
414 head->x, head->y);
415 return;
416 }
417 }
418 qxl_io_monitors_config(qdev);
419}
420
Dave Airlie07f8d9b2013-07-02 06:37:13 +0100421static void qxl_monitors_config_set(struct qxl_device *qdev,
422 int index,
423 unsigned x, unsigned y,
424 unsigned width, unsigned height,
425 unsigned surf_id)
Dave Airlief64122c2013-02-25 14:47:55 +1000426{
Dave Airlie07f8d9b2013-07-02 06:37:13 +0100427 DRM_DEBUG_KMS("%d:%dx%d+%d+%d\n", index, width, height, x, y);
428 qdev->monitors_config->heads[index].x = x;
429 qdev->monitors_config->heads[index].y = y;
430 qdev->monitors_config->heads[index].width = width;
431 qdev->monitors_config->heads[index].height = height;
432 qdev->monitors_config->heads[index].surface_id = surf_id;
433
Dave Airlief64122c2013-02-25 14:47:55 +1000434}
435
Gerd Hoffmann45dfe572017-06-20 13:39:15 +0200436static void qxl_mode_set_nofb(struct drm_crtc *crtc)
Gabriel Krisman Bertazi3538e802017-02-27 17:43:21 -0300437{
438 struct qxl_device *qdev = crtc->dev->dev_private;
439 struct qxl_crtc *qcrtc = to_qxl_crtc(crtc);
440 struct drm_display_mode *mode = &crtc->mode;
441
442 DRM_DEBUG("Mode set (%d,%d)\n",
443 mode->hdisplay, mode->vdisplay);
444
445 qxl_monitors_config_set(qdev, qcrtc->index, 0, 0,
446 mode->hdisplay, mode->vdisplay, 0);
447
448}
449
Laurent Pinchart0b20a0f2017-06-30 12:36:44 +0300450static void qxl_crtc_atomic_enable(struct drm_crtc *crtc,
451 struct drm_crtc_state *old_state)
Dave Airlief64122c2013-02-25 14:47:55 +1000452{
453 DRM_DEBUG("\n");
454}
455
Laurent Pinchart64581712017-06-30 12:36:45 +0300456static void qxl_crtc_atomic_disable(struct drm_crtc *crtc,
457 struct drm_crtc_state *old_state)
Dave Airlie07f8d9b2013-07-02 06:37:13 +0100458{
459 struct qxl_crtc *qcrtc = to_qxl_crtc(crtc);
Gabriel Krisman Bertazi37235452017-02-27 17:43:22 -0300460 struct qxl_device *qdev = crtc->dev->dev_private;
Dave Airlie07f8d9b2013-07-02 06:37:13 +0100461
462 qxl_monitors_config_set(qdev, qcrtc->index, 0, 0, 0, 0, 0);
463
464 qxl_send_monitors_config(qdev);
465}
466
Dave Airlief64122c2013-02-25 14:47:55 +1000467static const struct drm_crtc_helper_funcs qxl_crtc_helper_funcs = {
Dave Airlief64122c2013-02-25 14:47:55 +1000468 .mode_fixup = qxl_crtc_mode_fixup,
Gabriel Krisman Bertazi3538e802017-02-27 17:43:21 -0300469 .mode_set_nofb = qxl_mode_set_nofb,
Gabriel Krisman Bertazic2ff6632017-02-27 17:43:20 -0300470 .atomic_flush = qxl_crtc_atomic_flush,
Laurent Pinchart0b20a0f2017-06-30 12:36:44 +0300471 .atomic_enable = qxl_crtc_atomic_enable,
Laurent Pinchart64581712017-06-30 12:36:45 +0300472 .atomic_disable = qxl_crtc_atomic_disable,
Dave Airlief64122c2013-02-25 14:47:55 +1000473};
474
Gerd Hoffmann45dfe572017-06-20 13:39:15 +0200475static int qxl_primary_atomic_check(struct drm_plane *plane,
476 struct drm_plane_state *state)
Gabriel Krisman Bertazic2ff6632017-02-27 17:43:20 -0300477{
478 struct qxl_device *qdev = plane->dev->dev_private;
479 struct qxl_framebuffer *qfb;
480 struct qxl_bo *bo;
481
482 if (!state->crtc || !state->fb)
483 return 0;
484
485 qfb = to_qxl_framebuffer(state->fb);
486 bo = gem_to_qxl_bo(qfb->obj);
487
488 if (bo->surf.stride * bo->surf.height > qdev->vram_size) {
489 DRM_ERROR("Mode doesn't fit in vram size (vgamem)");
490 return -EINVAL;
491 }
492
493 return 0;
494}
495
496static void qxl_primary_atomic_update(struct drm_plane *plane,
497 struct drm_plane_state *old_state)
498{
499 struct qxl_device *qdev = plane->dev->dev_private;
500 struct qxl_framebuffer *qfb =
501 to_qxl_framebuffer(plane->state->fb);
502 struct qxl_framebuffer *qfb_old;
503 struct qxl_bo *bo = gem_to_qxl_bo(qfb->obj);
504 struct qxl_bo *bo_old;
505 struct drm_clip_rect norect = {
506 .x1 = 0,
507 .y1 = 0,
508 .x2 = qfb->base.width,
509 .y2 = qfb->base.height
510 };
511
512 if (!old_state->fb) {
513 qxl_io_log(qdev,
514 "create primary fb: %dx%d,%d,%d\n",
515 bo->surf.width, bo->surf.height,
516 bo->surf.stride, bo->surf.format);
517
518 qxl_io_create_primary(qdev, 0, bo);
519 bo->is_primary = true;
520 return;
521
522 } else {
523 qfb_old = to_qxl_framebuffer(old_state->fb);
524 bo_old = gem_to_qxl_bo(qfb_old->obj);
525 bo_old->is_primary = false;
526 }
527
528 bo->is_primary = true;
529 qxl_draw_dirty_fb(qdev, qfb, bo, 0, 0, &norect, 1, 1);
530}
531
532static void qxl_primary_atomic_disable(struct drm_plane *plane,
533 struct drm_plane_state *old_state)
534{
535 struct qxl_device *qdev = plane->dev->dev_private;
536
537 if (old_state->fb)
538 { struct qxl_framebuffer *qfb =
539 to_qxl_framebuffer(old_state->fb);
540 struct qxl_bo *bo = gem_to_qxl_bo(qfb->obj);
541
542 qxl_io_destroy_primary(qdev);
543 bo->is_primary = false;
544 }
545}
546
Gerd Hoffmann45dfe572017-06-20 13:39:15 +0200547static int qxl_plane_atomic_check(struct drm_plane *plane,
548 struct drm_plane_state *state)
Gabriel Krisman Bertazi1277eed2017-02-27 17:43:19 -0300549{
550 return 0;
551}
552
553static void qxl_cursor_atomic_update(struct drm_plane *plane,
554 struct drm_plane_state *old_state)
555{
556 struct drm_device *dev = plane->dev;
557 struct qxl_device *qdev = dev->dev_private;
558 struct drm_framebuffer *fb = plane->state->fb;
559 struct qxl_release *release;
560 struct qxl_cursor_cmd *cmd;
561 struct qxl_cursor *cursor;
562 struct drm_gem_object *obj;
563 struct qxl_bo *cursor_bo, *user_bo = NULL;
564 int ret;
565 void *user_ptr;
566 int size = 64*64*4;
567
568 ret = qxl_alloc_release_reserved(qdev, sizeof(*cmd),
569 QXL_RELEASE_CURSOR_CMD,
570 &release, NULL);
Dan Carpenteree5cb7c2017-03-14 10:54:10 +0300571 if (ret)
572 return;
Gabriel Krisman Bertazi1277eed2017-02-27 17:43:19 -0300573
Gabriel Krisman Bertazi1277eed2017-02-27 17:43:19 -0300574 if (fb != old_state->fb) {
575 obj = to_qxl_framebuffer(fb)->obj;
576 user_bo = gem_to_qxl_bo(obj);
577
578 /* pinning is done in the prepare/cleanup framevbuffer */
579 ret = qxl_bo_kmap(user_bo, &user_ptr);
580 if (ret)
581 goto out_free_release;
582
583 ret = qxl_alloc_bo_reserved(qdev, release,
584 sizeof(struct qxl_cursor) + size,
585 &cursor_bo);
586 if (ret)
587 goto out_kunmap;
588
589 ret = qxl_release_reserve_list(release, true);
590 if (ret)
591 goto out_free_bo;
592
593 ret = qxl_bo_kmap(cursor_bo, (void **)&cursor);
594 if (ret)
595 goto out_backoff;
596
597 cursor->header.unique = 0;
598 cursor->header.type = SPICE_CURSOR_TYPE_ALPHA;
599 cursor->header.width = 64;
600 cursor->header.height = 64;
601 cursor->header.hot_spot_x = fb->hot_x;
602 cursor->header.hot_spot_y = fb->hot_y;
603 cursor->data_size = size;
604 cursor->chunk.next_chunk = 0;
605 cursor->chunk.prev_chunk = 0;
606 cursor->chunk.data_size = size;
607 memcpy(cursor->chunk.data, user_ptr, size);
608 qxl_bo_kunmap(cursor_bo);
609 qxl_bo_kunmap(user_bo);
610
Gabriel Krisman Bertazi429030b2017-05-19 14:58:19 -0300611 cmd = (struct qxl_cursor_cmd *) qxl_release_map(qdev, release);
Gabriel Krisman Bertazi1277eed2017-02-27 17:43:19 -0300612 cmd->u.set.visible = 1;
613 cmd->u.set.shape = qxl_bo_physical_address(qdev,
614 cursor_bo, 0);
615 cmd->type = QXL_CURSOR_SET;
616 } else {
617
618 ret = qxl_release_reserve_list(release, true);
619 if (ret)
620 goto out_free_release;
621
Gabriel Krisman Bertazi429030b2017-05-19 14:58:19 -0300622 cmd = (struct qxl_cursor_cmd *) qxl_release_map(qdev, release);
Gabriel Krisman Bertazi1277eed2017-02-27 17:43:19 -0300623 cmd->type = QXL_CURSOR_MOVE;
624 }
625
626 cmd->u.position.x = plane->state->crtc_x + fb->hot_x;
627 cmd->u.position.y = plane->state->crtc_y + fb->hot_y;
628
629 qxl_release_unmap(qdev, release, &cmd->release_info);
630 qxl_push_cursor_ring_release(qdev, release, QXL_CMD_CURSOR, false);
631 qxl_release_fence_buffer_objects(release);
632
633 return;
634
635out_backoff:
636 qxl_release_backoff_reserve_list(release);
637out_free_bo:
638 qxl_bo_unref(&cursor_bo);
639out_kunmap:
640 qxl_bo_kunmap(user_bo);
641out_free_release:
642 qxl_release_free(qdev, release);
643 return;
644
645}
646
Gerd Hoffmann45dfe572017-06-20 13:39:15 +0200647static void qxl_cursor_atomic_disable(struct drm_plane *plane,
648 struct drm_plane_state *old_state)
Gabriel Krisman Bertazi1277eed2017-02-27 17:43:19 -0300649{
650 struct qxl_device *qdev = plane->dev->dev_private;
651 struct qxl_release *release;
652 struct qxl_cursor_cmd *cmd;
653 int ret;
654
655 ret = qxl_alloc_release_reserved(qdev, sizeof(*cmd),
656 QXL_RELEASE_CURSOR_CMD,
657 &release, NULL);
658 if (ret)
659 return;
660
661 ret = qxl_release_reserve_list(release, true);
662 if (ret) {
663 qxl_release_free(qdev, release);
664 return;
665 }
666
667 cmd = (struct qxl_cursor_cmd *)qxl_release_map(qdev, release);
668 cmd->type = QXL_CURSOR_HIDE;
669 qxl_release_unmap(qdev, release, &cmd->release_info);
670
671 qxl_push_cursor_ring_release(qdev, release, QXL_CMD_CURSOR, false);
672 qxl_release_fence_buffer_objects(release);
673}
674
Gerd Hoffmann45dfe572017-06-20 13:39:15 +0200675static int qxl_plane_prepare_fb(struct drm_plane *plane,
676 struct drm_plane_state *new_state)
Gabriel Krisman Bertazi1277eed2017-02-27 17:43:19 -0300677{
678 struct drm_gem_object *obj;
679 struct qxl_bo *user_bo;
680 int ret;
681
682 if (!new_state->fb)
683 return 0;
684
685 obj = to_qxl_framebuffer(new_state->fb)->obj;
686 user_bo = gem_to_qxl_bo(obj);
687
688 ret = qxl_bo_pin(user_bo, QXL_GEM_DOMAIN_CPU, NULL);
689 if (ret)
690 return ret;
691
692 return 0;
693}
694
695static void qxl_plane_cleanup_fb(struct drm_plane *plane,
696 struct drm_plane_state *old_state)
697{
698 struct drm_gem_object *obj;
699 struct qxl_bo *user_bo;
700
701 if (!plane->state->fb) {
702 /* we never executed prepare_fb, so there's nothing to
703 * unpin.
704 */
705 return;
706 }
707
708 obj = to_qxl_framebuffer(plane->state->fb)->obj;
709 user_bo = gem_to_qxl_bo(obj);
710 qxl_bo_unpin(user_bo);
711}
712
713static const uint32_t qxl_cursor_plane_formats[] = {
714 DRM_FORMAT_ARGB8888,
715};
716
717static const struct drm_plane_helper_funcs qxl_cursor_helper_funcs = {
718 .atomic_check = qxl_plane_atomic_check,
719 .atomic_update = qxl_cursor_atomic_update,
720 .atomic_disable = qxl_cursor_atomic_disable,
721 .prepare_fb = qxl_plane_prepare_fb,
722 .cleanup_fb = qxl_plane_cleanup_fb,
723};
724
725static const struct drm_plane_funcs qxl_cursor_plane_funcs = {
Gabriel Krisman Bertazi472e6d42017-02-27 17:43:25 -0300726 .update_plane = drm_atomic_helper_update_plane,
727 .disable_plane = drm_atomic_helper_disable_plane,
Gabriel Krisman Bertazi1277eed2017-02-27 17:43:19 -0300728 .destroy = drm_primary_helper_destroy,
Gabriel Krisman Bertazi9ade8b92017-02-27 17:43:23 -0300729 .reset = drm_atomic_helper_plane_reset,
730 .atomic_duplicate_state = drm_atomic_helper_plane_duplicate_state,
731 .atomic_destroy_state = drm_atomic_helper_plane_destroy_state,
Gabriel Krisman Bertazi1277eed2017-02-27 17:43:19 -0300732};
733
Gabriel Krisman Bertazid3e7e422017-02-27 17:43:18 -0300734static const uint32_t qxl_primary_plane_formats[] = {
735 DRM_FORMAT_XRGB8888,
736 DRM_FORMAT_ARGB8888,
737};
738
Gabriel Krisman Bertazic2ff6632017-02-27 17:43:20 -0300739static const struct drm_plane_helper_funcs primary_helper_funcs = {
740 .atomic_check = qxl_primary_atomic_check,
741 .atomic_update = qxl_primary_atomic_update,
742 .atomic_disable = qxl_primary_atomic_disable,
743 .prepare_fb = qxl_plane_prepare_fb,
744 .cleanup_fb = qxl_plane_cleanup_fb,
745};
746
Gabriel Krisman Bertazid3e7e422017-02-27 17:43:18 -0300747static const struct drm_plane_funcs qxl_primary_plane_funcs = {
Gabriel Krisman Bertazi472e6d42017-02-27 17:43:25 -0300748 .update_plane = drm_atomic_helper_update_plane,
749 .disable_plane = drm_atomic_helper_disable_plane,
Gabriel Krisman Bertazid3e7e422017-02-27 17:43:18 -0300750 .destroy = drm_primary_helper_destroy,
Gabriel Krisman Bertazi9ade8b92017-02-27 17:43:23 -0300751 .reset = drm_atomic_helper_plane_reset,
752 .atomic_duplicate_state = drm_atomic_helper_plane_duplicate_state,
753 .atomic_destroy_state = drm_atomic_helper_plane_destroy_state,
Gabriel Krisman Bertazid3e7e422017-02-27 17:43:18 -0300754};
755
756static struct drm_plane *qxl_create_plane(struct qxl_device *qdev,
757 unsigned int possible_crtcs,
758 enum drm_plane_type type)
759{
760 const struct drm_plane_helper_funcs *helper_funcs = NULL;
761 struct drm_plane *plane;
762 const struct drm_plane_funcs *funcs;
763 const uint32_t *formats;
764 int num_formats;
765 int err;
766
767 if (type == DRM_PLANE_TYPE_PRIMARY) {
768 funcs = &qxl_primary_plane_funcs;
769 formats = qxl_primary_plane_formats;
770 num_formats = ARRAY_SIZE(qxl_primary_plane_formats);
Gabriel Krisman Bertazic2ff6632017-02-27 17:43:20 -0300771 helper_funcs = &primary_helper_funcs;
Gabriel Krisman Bertazi1277eed2017-02-27 17:43:19 -0300772 } else if (type == DRM_PLANE_TYPE_CURSOR) {
773 funcs = &qxl_cursor_plane_funcs;
774 formats = qxl_cursor_plane_formats;
775 helper_funcs = &qxl_cursor_helper_funcs;
776 num_formats = ARRAY_SIZE(qxl_cursor_plane_formats);
Gabriel Krisman Bertazid3e7e422017-02-27 17:43:18 -0300777 } else {
778 return ERR_PTR(-EINVAL);
779 }
780
781 plane = kzalloc(sizeof(*plane), GFP_KERNEL);
782 if (!plane)
783 return ERR_PTR(-ENOMEM);
784
785 err = drm_universal_plane_init(&qdev->ddev, plane, possible_crtcs,
786 funcs, formats, num_formats,
787 type, NULL);
788 if (err)
789 goto free_plane;
790
791 drm_plane_helper_add(plane, helper_funcs);
792
793 return plane;
794
795free_plane:
796 kfree(plane);
797 return ERR_PTR(-EINVAL);
798}
799
Dave Airlie07f8d9b2013-07-02 06:37:13 +0100800static int qdev_crtc_init(struct drm_device *dev, int crtc_id)
Dave Airlief64122c2013-02-25 14:47:55 +1000801{
802 struct qxl_crtc *qxl_crtc;
Gabriel Krisman Bertazi1277eed2017-02-27 17:43:19 -0300803 struct drm_plane *primary, *cursor;
Gabriel Krisman Bertazid3e7e422017-02-27 17:43:18 -0300804 struct qxl_device *qdev = dev->dev_private;
805 int r;
Dave Airlief64122c2013-02-25 14:47:55 +1000806
807 qxl_crtc = kzalloc(sizeof(struct qxl_crtc), GFP_KERNEL);
808 if (!qxl_crtc)
809 return -ENOMEM;
810
Gabriel Krisman Bertazid3e7e422017-02-27 17:43:18 -0300811 primary = qxl_create_plane(qdev, 1 << crtc_id, DRM_PLANE_TYPE_PRIMARY);
812 if (IS_ERR(primary)) {
813 r = -ENOMEM;
814 goto free_mem;
815 }
816
Gabriel Krisman Bertazi1277eed2017-02-27 17:43:19 -0300817 cursor = qxl_create_plane(qdev, 1 << crtc_id, DRM_PLANE_TYPE_CURSOR);
818 if (IS_ERR(cursor)) {
819 r = -ENOMEM;
820 goto clean_primary;
821 }
822
823 r = drm_crtc_init_with_planes(dev, &qxl_crtc->base, primary, cursor,
Gabriel Krisman Bertazid3e7e422017-02-27 17:43:18 -0300824 &qxl_crtc_funcs, NULL);
825 if (r)
Gabriel Krisman Bertazi1277eed2017-02-27 17:43:19 -0300826 goto clean_cursor;
Gabriel Krisman Bertazid3e7e422017-02-27 17:43:18 -0300827
Dave Airlie07f8d9b2013-07-02 06:37:13 +0100828 qxl_crtc->index = crtc_id;
Dave Airlief64122c2013-02-25 14:47:55 +1000829 drm_crtc_helper_add(&qxl_crtc->base, &qxl_crtc_helper_funcs);
830 return 0;
Gabriel Krisman Bertazid3e7e422017-02-27 17:43:18 -0300831
Gabriel Krisman Bertazi1277eed2017-02-27 17:43:19 -0300832clean_cursor:
833 drm_plane_cleanup(cursor);
834 kfree(cursor);
Gabriel Krisman Bertazid3e7e422017-02-27 17:43:18 -0300835clean_primary:
836 drm_plane_cleanup(primary);
837 kfree(primary);
838free_mem:
839 kfree(qxl_crtc);
840 return r;
Dave Airlief64122c2013-02-25 14:47:55 +1000841}
842
843static void qxl_enc_dpms(struct drm_encoder *encoder, int mode)
844{
845 DRM_DEBUG("\n");
846}
847
Dave Airlief64122c2013-02-25 14:47:55 +1000848static void qxl_enc_prepare(struct drm_encoder *encoder)
849{
850 DRM_DEBUG("\n");
851}
852
853static void qxl_write_monitors_config_for_encoder(struct qxl_device *qdev,
854 struct drm_encoder *encoder)
855{
856 int i;
Dave Airlie07f8d9b2013-07-02 06:37:13 +0100857 struct qxl_output *output = drm_encoder_to_qxl_output(encoder);
Dave Airlief64122c2013-02-25 14:47:55 +1000858 struct qxl_head *head;
859 struct drm_display_mode *mode;
860
861 BUG_ON(!encoder);
862 /* TODO: ugly, do better */
Dave Airlie07f8d9b2013-07-02 06:37:13 +0100863 i = output->index;
Dave Airlief64122c2013-02-25 14:47:55 +1000864 if (!qdev->monitors_config ||
865 qdev->monitors_config->max_allowed <= i) {
866 DRM_ERROR(
867 "head number too large or missing monitors config: %p, %d",
868 qdev->monitors_config,
869 qdev->monitors_config ?
870 qdev->monitors_config->max_allowed : -1);
871 return;
872 }
873 if (!encoder->crtc) {
874 DRM_ERROR("missing crtc on encoder %p\n", encoder);
875 return;
876 }
877 if (i != 0)
878 DRM_DEBUG("missing for multiple monitors: no head holes\n");
879 head = &qdev->monitors_config->heads[i];
880 head->id = i;
Dave Airlief64122c2013-02-25 14:47:55 +1000881 if (encoder->crtc->enabled) {
882 mode = &encoder->crtc->mode;
883 head->width = mode->hdisplay;
884 head->height = mode->vdisplay;
885 head->x = encoder->crtc->x;
886 head->y = encoder->crtc->y;
887 if (qdev->monitors_config->count < i + 1)
888 qdev->monitors_config->count = i + 1;
889 } else {
890 head->width = 0;
891 head->height = 0;
892 head->x = 0;
893 head->y = 0;
894 }
Dave Airlie07f8d9b2013-07-02 06:37:13 +0100895 DRM_DEBUG_KMS("setting head %d to +%d+%d %dx%d out of %d\n",
896 i, head->x, head->y, head->width, head->height, qdev->monitors_config->count);
Dave Airlief64122c2013-02-25 14:47:55 +1000897 head->flags = 0;
898 /* TODO - somewhere else to call this for multiple monitors
899 * (config_commit?) */
900 qxl_send_monitors_config(qdev);
901}
902
903static void qxl_enc_commit(struct drm_encoder *encoder)
904{
905 struct qxl_device *qdev = encoder->dev->dev_private;
906
907 qxl_write_monitors_config_for_encoder(qdev, encoder);
908 DRM_DEBUG("\n");
909}
910
911static void qxl_enc_mode_set(struct drm_encoder *encoder,
912 struct drm_display_mode *mode,
913 struct drm_display_mode *adjusted_mode)
914{
915 DRM_DEBUG("\n");
916}
917
918static int qxl_conn_get_modes(struct drm_connector *connector)
919{
Marc-André Lureaub0807422013-10-18 16:11:31 +0200920 unsigned pwidth = 1024;
921 unsigned pheight = 768;
Gerd Hoffmann2d856f942017-03-01 11:12:34 +0100922 int ret = 0;
Dave Airlief64122c2013-02-25 14:47:55 +1000923
Gerd Hoffmann2d856f942017-03-01 11:12:34 +0100924 ret = qxl_add_monitors_config_modes(connector, &pwidth, &pheight);
925 if (ret < 0)
926 return ret;
Marc-André Lureaub0807422013-10-18 16:11:31 +0200927 ret += qxl_add_common_modes(connector, pwidth, pheight);
Dave Airlief64122c2013-02-25 14:47:55 +1000928 return ret;
929}
930
931static int qxl_conn_mode_valid(struct drm_connector *connector,
932 struct drm_display_mode *mode)
933{
Jonathon Jongsmabd3e1c72015-08-20 14:04:32 -0500934 struct drm_device *ddev = connector->dev;
935 struct qxl_device *qdev = ddev->dev_private;
936 int i;
937
Dave Airlief64122c2013-02-25 14:47:55 +1000938 /* TODO: is this called for user defined modes? (xrandr --add-mode)
939 * TODO: check that the mode fits in the framebuffer */
Jonathon Jongsmabd3e1c72015-08-20 14:04:32 -0500940
941 if(qdev->monitors_config_width == mode->hdisplay &&
942 qdev->monitors_config_height == mode->vdisplay)
943 return MODE_OK;
944
945 for (i = 0; i < ARRAY_SIZE(common_modes); i++) {
946 if (common_modes[i].w == mode->hdisplay && common_modes[i].h == mode->vdisplay)
947 return MODE_OK;
948 }
949 return MODE_BAD;
Dave Airlief64122c2013-02-25 14:47:55 +1000950}
951
Dave Airlie6d01f1f2013-04-16 13:24:25 +1000952static struct drm_encoder *qxl_best_encoder(struct drm_connector *connector)
Dave Airlief64122c2013-02-25 14:47:55 +1000953{
954 struct qxl_output *qxl_output =
955 drm_connector_to_qxl_output(connector);
956
957 DRM_DEBUG("\n");
958 return &qxl_output->enc;
959}
960
961
962static const struct drm_encoder_helper_funcs qxl_enc_helper_funcs = {
963 .dpms = qxl_enc_dpms,
Dave Airlief64122c2013-02-25 14:47:55 +1000964 .prepare = qxl_enc_prepare,
965 .mode_set = qxl_enc_mode_set,
966 .commit = qxl_enc_commit,
967};
968
969static const struct drm_connector_helper_funcs qxl_connector_helper_funcs = {
970 .get_modes = qxl_conn_get_modes,
971 .mode_valid = qxl_conn_mode_valid,
972 .best_encoder = qxl_best_encoder,
973};
974
Dave Airlief64122c2013-02-25 14:47:55 +1000975static enum drm_connector_status qxl_conn_detect(
976 struct drm_connector *connector,
977 bool force)
978{
979 struct qxl_output *output =
980 drm_connector_to_qxl_output(connector);
981 struct drm_device *ddev = connector->dev;
982 struct qxl_device *qdev = ddev->dev_private;
Dave Airlie69e5d3f2015-09-14 10:28:34 +1000983 bool connected = false;
Dave Airlief64122c2013-02-25 14:47:55 +1000984
985 /* The first monitor is always connected */
Dave Airlie69e5d3f2015-09-14 10:28:34 +1000986 if (!qdev->client_monitors_config) {
987 if (output->index == 0)
988 connected = true;
989 } else
990 connected = qdev->client_monitors_config->count > output->index &&
991 qxl_head_enabled(&qdev->client_monitors_config->heads[output->index]);
Dave Airlief64122c2013-02-25 14:47:55 +1000992
Marc-André Lureau5cab51c2013-10-18 16:11:33 +0200993 DRM_DEBUG("#%d connected: %d\n", output->index, connected);
994 if (!connected)
995 qxl_monitors_config_set(qdev, output->index, 0, 0, 0, 0, 0);
996
Dave Airlief64122c2013-02-25 14:47:55 +1000997 return connected ? connector_status_connected
998 : connector_status_disconnected;
999}
1000
1001static int qxl_conn_set_property(struct drm_connector *connector,
1002 struct drm_property *property,
1003 uint64_t value)
1004{
1005 DRM_DEBUG("\n");
1006 return 0;
1007}
1008
1009static void qxl_conn_destroy(struct drm_connector *connector)
1010{
1011 struct qxl_output *qxl_output =
1012 drm_connector_to_qxl_output(connector);
1013
Thomas Wood34ea3d32014-05-29 16:57:41 +01001014 drm_connector_unregister(connector);
Dave Airlief64122c2013-02-25 14:47:55 +10001015 drm_connector_cleanup(connector);
1016 kfree(qxl_output);
1017}
1018
1019static const struct drm_connector_funcs qxl_connector_funcs = {
1020 .dpms = drm_helper_connector_dpms,
Dave Airlief64122c2013-02-25 14:47:55 +10001021 .detect = qxl_conn_detect,
Ville Syrjälä6af3e652015-12-03 23:14:14 +02001022 .fill_modes = drm_helper_probe_single_connector_modes,
Dave Airlief64122c2013-02-25 14:47:55 +10001023 .set_property = qxl_conn_set_property,
1024 .destroy = qxl_conn_destroy,
Gabriel Krisman Bertazi9ade8b92017-02-27 17:43:23 -03001025 .reset = drm_atomic_helper_connector_reset,
1026 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
1027 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Dave Airlief64122c2013-02-25 14:47:55 +10001028};
1029
1030static void qxl_enc_destroy(struct drm_encoder *encoder)
1031{
1032 drm_encoder_cleanup(encoder);
1033}
1034
1035static const struct drm_encoder_funcs qxl_enc_funcs = {
1036 .destroy = qxl_enc_destroy,
1037};
1038
Dave Airlie4695b032013-10-11 11:05:00 +10001039static int qxl_mode_create_hotplug_mode_update_property(struct qxl_device *qdev)
1040{
1041 if (qdev->hotplug_mode_update_property)
1042 return 0;
1043
1044 qdev->hotplug_mode_update_property =
Gabriel Krisman Bertazicbdded72017-01-26 23:05:48 -02001045 drm_property_create_range(&qdev->ddev, DRM_MODE_PROP_IMMUTABLE,
Dave Airlie4695b032013-10-11 11:05:00 +10001046 "hotplug_mode_update", 0, 1);
1047
1048 return 0;
1049}
1050
Dave Airlie6d01f1f2013-04-16 13:24:25 +10001051static int qdev_output_init(struct drm_device *dev, int num_output)
Dave Airlief64122c2013-02-25 14:47:55 +10001052{
Dave Airlie4695b032013-10-11 11:05:00 +10001053 struct qxl_device *qdev = dev->dev_private;
Dave Airlief64122c2013-02-25 14:47:55 +10001054 struct qxl_output *qxl_output;
1055 struct drm_connector *connector;
1056 struct drm_encoder *encoder;
1057
1058 qxl_output = kzalloc(sizeof(struct qxl_output), GFP_KERNEL);
1059 if (!qxl_output)
1060 return -ENOMEM;
1061
1062 qxl_output->index = num_output;
1063
1064 connector = &qxl_output->base;
1065 encoder = &qxl_output->enc;
1066 drm_connector_init(dev, &qxl_output->base,
1067 &qxl_connector_funcs, DRM_MODE_CONNECTOR_VIRTUAL);
1068
1069 drm_encoder_init(dev, &qxl_output->enc, &qxl_enc_funcs,
Ville Syrjälä13a3d912015-12-09 16:20:18 +02001070 DRM_MODE_ENCODER_VIRTUAL, NULL);
Dave Airlief64122c2013-02-25 14:47:55 +10001071
Dave Airlie5ff91e42013-07-05 10:20:33 +10001072 /* we get HPD via client monitors config */
1073 connector->polled = DRM_CONNECTOR_POLL_HPD;
Dave Airlief64122c2013-02-25 14:47:55 +10001074 encoder->possible_crtcs = 1 << num_output;
1075 drm_mode_connector_attach_encoder(&qxl_output->base,
1076 &qxl_output->enc);
1077 drm_encoder_helper_add(encoder, &qxl_enc_helper_funcs);
1078 drm_connector_helper_add(connector, &qxl_connector_helper_funcs);
1079
Dave Airlie4695b032013-10-11 11:05:00 +10001080 drm_object_attach_property(&connector->base,
1081 qdev->hotplug_mode_update_property, 0);
Dave Airlie7dea0942014-10-28 11:28:44 +10001082 drm_object_attach_property(&connector->base,
1083 dev->mode_config.suggested_x_property, 0);
1084 drm_object_attach_property(&connector->base,
1085 dev->mode_config.suggested_y_property, 0);
Dave Airlief64122c2013-02-25 14:47:55 +10001086 return 0;
1087}
1088
1089static struct drm_framebuffer *
1090qxl_user_framebuffer_create(struct drm_device *dev,
1091 struct drm_file *file_priv,
Ville Syrjälä1eb83452015-11-11 19:11:29 +02001092 const struct drm_mode_fb_cmd2 *mode_cmd)
Dave Airlief64122c2013-02-25 14:47:55 +10001093{
1094 struct drm_gem_object *obj;
1095 struct qxl_framebuffer *qxl_fb;
Dave Airlief64122c2013-02-25 14:47:55 +10001096 int ret;
1097
Chris Wilsona8ad0bd2016-05-09 11:04:54 +01001098 obj = drm_gem_object_lookup(file_priv, mode_cmd->handles[0]);
1099 if (!obj)
1100 return NULL;
Dave Airlief64122c2013-02-25 14:47:55 +10001101
1102 qxl_fb = kzalloc(sizeof(*qxl_fb), GFP_KERNEL);
1103 if (qxl_fb == NULL)
1104 return NULL;
1105
Noralf Trønnes6819c3c2016-04-28 17:18:36 +02001106 ret = qxl_framebuffer_init(dev, qxl_fb, mode_cmd, obj, &qxl_fb_funcs);
Dave Airlief64122c2013-02-25 14:47:55 +10001107 if (ret) {
1108 kfree(qxl_fb);
1109 drm_gem_object_unreference_unlocked(obj);
1110 return NULL;
1111 }
1112
Dave Airlief64122c2013-02-25 14:47:55 +10001113 return &qxl_fb->base;
1114}
1115
1116static const struct drm_mode_config_funcs qxl_mode_funcs = {
1117 .fb_create = qxl_user_framebuffer_create,
Gabriel Krisman Bertazi472e6d42017-02-27 17:43:25 -03001118 .atomic_check = drm_atomic_helper_check,
1119 .atomic_commit = drm_atomic_helper_commit,
Dave Airlief64122c2013-02-25 14:47:55 +10001120};
1121
Dave Airlie2bd6ce82013-07-04 14:46:46 +10001122int qxl_create_monitors_object(struct qxl_device *qdev)
Dave Airlief64122c2013-02-25 14:47:55 +10001123{
Dave Airlief64122c2013-02-25 14:47:55 +10001124 int ret;
1125 struct drm_gem_object *gobj;
Dave Airlie07f8d9b2013-07-02 06:37:13 +01001126 int max_allowed = qxl_num_crtc;
Dave Airlief64122c2013-02-25 14:47:55 +10001127 int monitors_config_size = sizeof(struct qxl_monitors_config) +
Dave Airlie2bd6ce82013-07-04 14:46:46 +10001128 max_allowed * sizeof(struct qxl_head);
Dave Airlief64122c2013-02-25 14:47:55 +10001129
Dave Airlief64122c2013-02-25 14:47:55 +10001130 ret = qxl_gem_object_create(qdev, monitors_config_size, 0,
1131 QXL_GEM_DOMAIN_VRAM,
1132 false, false, NULL, &gobj);
1133 if (ret) {
1134 DRM_ERROR("%s: failed to create gem ret=%d\n", __func__, ret);
1135 return -ENOMEM;
1136 }
1137 qdev->monitors_config_bo = gem_to_qxl_bo(gobj);
Dave Airlie2bd6ce82013-07-04 14:46:46 +10001138
Gabriel Krisman Bertazi715a11f2017-02-27 17:43:16 -03001139 ret = qxl_bo_pin(qdev->monitors_config_bo, QXL_GEM_DOMAIN_VRAM, NULL);
Dave Airlie2bd6ce82013-07-04 14:46:46 +10001140 if (ret)
1141 return ret;
1142
Dave Airlief64122c2013-02-25 14:47:55 +10001143 qxl_bo_kmap(qdev->monitors_config_bo, NULL);
Dave Airlie2bd6ce82013-07-04 14:46:46 +10001144
Dave Airlief64122c2013-02-25 14:47:55 +10001145 qdev->monitors_config = qdev->monitors_config_bo->kptr;
1146 qdev->ram_header->monitors_config =
1147 qxl_bo_physical_address(qdev, qdev->monitors_config_bo, 0);
1148
1149 memset(qdev->monitors_config, 0, monitors_config_size);
1150 qdev->monitors_config->max_allowed = max_allowed;
Dave Airlie2bd6ce82013-07-04 14:46:46 +10001151 return 0;
1152}
1153
1154int qxl_destroy_monitors_object(struct qxl_device *qdev)
1155{
1156 int ret;
1157
1158 qdev->monitors_config = NULL;
1159 qdev->ram_header->monitors_config = 0;
1160
1161 qxl_bo_kunmap(qdev->monitors_config_bo);
Gabriel Krisman Bertazi715a11f2017-02-27 17:43:16 -03001162 ret = qxl_bo_unpin(qdev->monitors_config_bo);
Dave Airlie2bd6ce82013-07-04 14:46:46 +10001163 if (ret)
1164 return ret;
1165
Dave Airlie2bd6ce82013-07-04 14:46:46 +10001166 qxl_bo_unref(&qdev->monitors_config_bo);
1167 return 0;
1168}
1169
1170int qxl_modeset_init(struct qxl_device *qdev)
1171{
1172 int i;
1173 int ret;
1174
Gabriel Krisman Bertazicbdded72017-01-26 23:05:48 -02001175 drm_mode_config_init(&qdev->ddev);
Dave Airlie2bd6ce82013-07-04 14:46:46 +10001176
1177 ret = qxl_create_monitors_object(qdev);
1178 if (ret)
1179 return ret;
Dave Airlief64122c2013-02-25 14:47:55 +10001180
Gabriel Krisman Bertazicbdded72017-01-26 23:05:48 -02001181 qdev->ddev.mode_config.funcs = (void *)&qxl_mode_funcs;
Dave Airlief64122c2013-02-25 14:47:55 +10001182
1183 /* modes will be validated against the framebuffer size */
Gabriel Krisman Bertazi1277eed2017-02-27 17:43:19 -03001184 qdev->ddev.mode_config.min_width = 0;
1185 qdev->ddev.mode_config.min_height = 0;
Gabriel Krisman Bertazicbdded72017-01-26 23:05:48 -02001186 qdev->ddev.mode_config.max_width = 8192;
1187 qdev->ddev.mode_config.max_height = 8192;
Dave Airlief64122c2013-02-25 14:47:55 +10001188
Gabriel Krisman Bertazicbdded72017-01-26 23:05:48 -02001189 qdev->ddev.mode_config.fb_base = qdev->vram_base;
Dave Airlie4695b032013-10-11 11:05:00 +10001190
Gabriel Krisman Bertazicbdded72017-01-26 23:05:48 -02001191 drm_mode_create_suggested_offset_properties(&qdev->ddev);
Dave Airlie4695b032013-10-11 11:05:00 +10001192 qxl_mode_create_hotplug_mode_update_property(qdev);
1193
Dave Airlie07f8d9b2013-07-02 06:37:13 +01001194 for (i = 0 ; i < qxl_num_crtc; ++i) {
Gabriel Krisman Bertazicbdded72017-01-26 23:05:48 -02001195 qdev_crtc_init(&qdev->ddev, i);
1196 qdev_output_init(&qdev->ddev, i);
Dave Airlief64122c2013-02-25 14:47:55 +10001197 }
1198
Gerd Hoffmannc50fad82017-03-01 11:12:33 +01001199 qxl_display_read_client_monitors_config(qdev);
Dave Airlief64122c2013-02-25 14:47:55 +10001200 qdev->mode_info.mode_config_initialized = true;
1201
Gabriel Krisman Bertazi9ade8b92017-02-27 17:43:23 -03001202 drm_mode_config_reset(&qdev->ddev);
1203
Dave Airlief64122c2013-02-25 14:47:55 +10001204 /* primary surface must be created by this point, to allow
1205 * issuing command queue commands and having them read by
1206 * spice server. */
1207 qxl_fbdev_init(qdev);
1208 return 0;
1209}
1210
1211void qxl_modeset_fini(struct qxl_device *qdev)
1212{
1213 qxl_fbdev_fini(qdev);
Dave Airlie2bd6ce82013-07-04 14:46:46 +10001214
1215 qxl_destroy_monitors_object(qdev);
Dave Airlief64122c2013-02-25 14:47:55 +10001216 if (qdev->mode_info.mode_config_initialized) {
Gabriel Krisman Bertazicbdded72017-01-26 23:05:48 -02001217 drm_mode_config_cleanup(&qdev->ddev);
Dave Airlief64122c2013-02-25 14:47:55 +10001218 qdev->mode_info.mode_config_initialized = false;
1219 }
1220}