2 * Copyright 2013 Red Hat Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
22 * Authors: Dave Airlie
27 #include <linux/crc32.h>
30 #include "qxl_object.h"
31 #include "drm_crtc_helper.h"
32 #include <drm/drm_plane_helper.h>
34 static bool qxl_head_enabled(struct qxl_head
*head
)
36 return head
->width
&& head
->height
;
39 void qxl_alloc_client_monitors_config(struct qxl_device
*qdev
, unsigned count
)
41 if (qdev
->client_monitors_config
&&
42 count
> qdev
->client_monitors_config
->count
) {
43 kfree(qdev
->client_monitors_config
);
44 qdev
->client_monitors_config
= NULL
;
46 if (!qdev
->client_monitors_config
) {
47 qdev
->client_monitors_config
= kzalloc(
48 sizeof(struct qxl_monitors_config
) +
49 sizeof(struct qxl_head
) * count
, GFP_KERNEL
);
50 if (!qdev
->client_monitors_config
) {
52 "%s: allocation failure for %u heads\n",
57 qdev
->client_monitors_config
->count
= count
;
60 static int qxl_display_copy_rom_client_monitors_config(struct qxl_device
*qdev
)
66 num_monitors
= qdev
->rom
->client_monitors_config
.count
;
67 crc
= crc32(0, (const uint8_t *)&qdev
->rom
->client_monitors_config
,
68 sizeof(qdev
->rom
->client_monitors_config
));
69 if (crc
!= qdev
->rom
->client_monitors_config_crc
) {
70 qxl_io_log(qdev
, "crc mismatch: have %X (%d) != %X\n", crc
,
71 sizeof(qdev
->rom
->client_monitors_config
),
72 qdev
->rom
->client_monitors_config_crc
);
75 if (num_monitors
> qdev
->monitors_config
->max_allowed
) {
76 DRM_DEBUG_KMS("client monitors list will be truncated: %d < %d\n",
77 qdev
->monitors_config
->max_allowed
, num_monitors
);
78 num_monitors
= qdev
->monitors_config
->max_allowed
;
80 num_monitors
= qdev
->rom
->client_monitors_config
.count
;
82 qxl_alloc_client_monitors_config(qdev
, num_monitors
);
83 /* we copy max from the client but it isn't used */
84 qdev
->client_monitors_config
->max_allowed
=
85 qdev
->monitors_config
->max_allowed
;
86 for (i
= 0 ; i
< qdev
->client_monitors_config
->count
; ++i
) {
87 struct qxl_urect
*c_rect
=
88 &qdev
->rom
->client_monitors_config
.heads
[i
];
89 struct qxl_head
*client_head
=
90 &qdev
->client_monitors_config
->heads
[i
];
91 client_head
->x
= c_rect
->left
;
92 client_head
->y
= c_rect
->top
;
93 client_head
->width
= c_rect
->right
- c_rect
->left
;
94 client_head
->height
= c_rect
->bottom
- c_rect
->top
;
95 client_head
->surface_id
= 0;
97 client_head
->flags
= 0;
98 DRM_DEBUG_KMS("read %dx%d+%d+%d\n", client_head
->width
, client_head
->height
,
99 client_head
->x
, client_head
->y
);
104 static void qxl_update_offset_props(struct qxl_device
*qdev
)
106 struct drm_device
*dev
= qdev
->ddev
;
107 struct drm_connector
*connector
;
108 struct qxl_output
*output
;
109 struct qxl_head
*head
;
111 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
112 output
= drm_connector_to_qxl_output(connector
);
114 head
= &qdev
->client_monitors_config
->heads
[output
->index
];
116 drm_object_property_set_value(&connector
->base
,
117 dev
->mode_config
.suggested_x_property
, head
->x
);
118 drm_object_property_set_value(&connector
->base
,
119 dev
->mode_config
.suggested_y_property
, head
->y
);
123 void qxl_display_read_client_monitors_config(struct qxl_device
*qdev
)
126 struct drm_device
*dev
= qdev
->ddev
;
127 while (qxl_display_copy_rom_client_monitors_config(qdev
)) {
128 qxl_io_log(qdev
, "failed crc check for client_monitors_config,"
132 drm_modeset_lock_all(dev
);
133 qxl_update_offset_props(qdev
);
134 drm_modeset_unlock_all(dev
);
135 if (!drm_helper_hpd_irq_event(qdev
->ddev
)) {
136 /* notify that the monitor configuration changed, to
137 adjust at the arbitrary resolution */
138 drm_kms_helper_hotplug_event(qdev
->ddev
);
142 static int qxl_add_monitors_config_modes(struct drm_connector
*connector
,
146 struct drm_device
*dev
= connector
->dev
;
147 struct qxl_device
*qdev
= dev
->dev_private
;
148 struct qxl_output
*output
= drm_connector_to_qxl_output(connector
);
149 int h
= output
->index
;
150 struct drm_display_mode
*mode
= NULL
;
151 struct qxl_head
*head
;
153 if (!qdev
->client_monitors_config
)
155 head
= &qdev
->client_monitors_config
->heads
[h
];
157 mode
= drm_cvt_mode(dev
, head
->width
, head
->height
, 60, false, false,
159 mode
->type
|= DRM_MODE_TYPE_PREFERRED
;
160 *pwidth
= head
->width
;
161 *pheight
= head
->height
;
162 drm_mode_probed_add(connector
, mode
);
166 static int qxl_add_common_modes(struct drm_connector
*connector
,
170 struct drm_device
*dev
= connector
->dev
;
171 struct drm_display_mode
*mode
= NULL
;
196 for (i
= 0; i
< ARRAY_SIZE(common_modes
); i
++) {
197 mode
= drm_cvt_mode(dev
, common_modes
[i
].w
, common_modes
[i
].h
,
198 60, false, false, false);
199 if (common_modes
[i
].w
== pwidth
&& common_modes
[i
].h
== pheight
)
200 mode
->type
|= DRM_MODE_TYPE_PREFERRED
;
201 drm_mode_probed_add(connector
, mode
);
206 static void qxl_crtc_destroy(struct drm_crtc
*crtc
)
208 struct qxl_crtc
*qxl_crtc
= to_qxl_crtc(crtc
);
210 drm_crtc_cleanup(crtc
);
214 static int qxl_crtc_page_flip(struct drm_crtc
*crtc
,
215 struct drm_framebuffer
*fb
,
216 struct drm_pending_vblank_event
*event
,
217 uint32_t page_flip_flags
)
219 struct drm_device
*dev
= crtc
->dev
;
220 struct qxl_device
*qdev
= dev
->dev_private
;
221 struct qxl_crtc
*qcrtc
= to_qxl_crtc(crtc
);
222 struct qxl_framebuffer
*qfb_src
= to_qxl_framebuffer(fb
);
223 struct qxl_framebuffer
*qfb_old
= to_qxl_framebuffer(crtc
->primary
->fb
);
224 struct qxl_bo
*bo_old
= gem_to_qxl_bo(qfb_old
->obj
);
225 struct qxl_bo
*bo
= gem_to_qxl_bo(qfb_src
->obj
);
227 struct drm_clip_rect norect
= {
234 int one_clip_rect
= 1;
237 crtc
->primary
->fb
= fb
;
238 bo_old
->is_primary
= false;
239 bo
->is_primary
= true;
241 ret
= qxl_bo_reserve(bo
, false);
245 qxl_draw_dirty_fb(qdev
, qfb_src
, bo
, 0, 0,
246 &norect
, one_clip_rect
, inc
);
248 drm_vblank_get(dev
, qcrtc
->index
);
251 spin_lock_irqsave(&dev
->event_lock
, flags
);
252 drm_send_vblank_event(dev
, qcrtc
->index
, event
);
253 spin_unlock_irqrestore(&dev
->event_lock
, flags
);
255 drm_vblank_put(dev
, qcrtc
->index
);
257 qxl_bo_unreserve(bo
);
263 qxl_hide_cursor(struct qxl_device
*qdev
)
265 struct qxl_release
*release
;
266 struct qxl_cursor_cmd
*cmd
;
269 ret
= qxl_alloc_release_reserved(qdev
, sizeof(*cmd
), QXL_RELEASE_CURSOR_CMD
,
274 ret
= qxl_release_reserve_list(release
, true);
276 qxl_release_free(qdev
, release
);
280 cmd
= (struct qxl_cursor_cmd
*)qxl_release_map(qdev
, release
);
281 cmd
->type
= QXL_CURSOR_HIDE
;
282 qxl_release_unmap(qdev
, release
, &cmd
->release_info
);
284 qxl_push_cursor_ring_release(qdev
, release
, QXL_CMD_CURSOR
, false);
285 qxl_release_fence_buffer_objects(release
);
289 static int qxl_crtc_cursor_set2(struct drm_crtc
*crtc
,
290 struct drm_file
*file_priv
,
293 uint32_t height
, int32_t hot_x
, int32_t hot_y
)
295 struct drm_device
*dev
= crtc
->dev
;
296 struct qxl_device
*qdev
= dev
->dev_private
;
297 struct qxl_crtc
*qcrtc
= to_qxl_crtc(crtc
);
298 struct drm_gem_object
*obj
;
299 struct qxl_cursor
*cursor
;
300 struct qxl_cursor_cmd
*cmd
;
301 struct qxl_bo
*cursor_bo
, *user_bo
;
302 struct qxl_release
*release
;
308 return qxl_hide_cursor(qdev
);
310 obj
= drm_gem_object_lookup(crtc
->dev
, file_priv
, handle
);
312 DRM_ERROR("cannot find cursor object\n");
316 user_bo
= gem_to_qxl_bo(obj
);
318 ret
= qxl_bo_reserve(user_bo
, false);
322 ret
= qxl_bo_pin(user_bo
, QXL_GEM_DOMAIN_CPU
, NULL
);
323 qxl_bo_unreserve(user_bo
);
327 ret
= qxl_bo_kmap(user_bo
, &user_ptr
);
331 ret
= qxl_alloc_release_reserved(qdev
, sizeof(*cmd
),
332 QXL_RELEASE_CURSOR_CMD
,
337 ret
= qxl_alloc_bo_reserved(qdev
, release
, sizeof(struct qxl_cursor
) + size
,
340 goto out_free_release
;
342 ret
= qxl_release_reserve_list(release
, false);
346 ret
= qxl_bo_kmap(cursor_bo
, (void **)&cursor
);
350 cursor
->header
.unique
= 0;
351 cursor
->header
.type
= SPICE_CURSOR_TYPE_ALPHA
;
352 cursor
->header
.width
= 64;
353 cursor
->header
.height
= 64;
354 cursor
->header
.hot_spot_x
= hot_x
;
355 cursor
->header
.hot_spot_y
= hot_y
;
356 cursor
->data_size
= size
;
357 cursor
->chunk
.next_chunk
= 0;
358 cursor
->chunk
.prev_chunk
= 0;
359 cursor
->chunk
.data_size
= size
;
361 memcpy(cursor
->chunk
.data
, user_ptr
, size
);
363 qxl_bo_kunmap(cursor_bo
);
365 qxl_bo_kunmap(user_bo
);
367 cmd
= (struct qxl_cursor_cmd
*)qxl_release_map(qdev
, release
);
368 cmd
->type
= QXL_CURSOR_SET
;
369 cmd
->u
.set
.position
.x
= qcrtc
->cur_x
;
370 cmd
->u
.set
.position
.y
= qcrtc
->cur_y
;
372 cmd
->u
.set
.shape
= qxl_bo_physical_address(qdev
, cursor_bo
, 0);
374 cmd
->u
.set
.visible
= 1;
375 qxl_release_unmap(qdev
, release
, &cmd
->release_info
);
377 qxl_push_cursor_ring_release(qdev
, release
, QXL_CMD_CURSOR
, false);
378 qxl_release_fence_buffer_objects(release
);
380 /* finish with the userspace bo */
381 ret
= qxl_bo_reserve(user_bo
, false);
383 qxl_bo_unpin(user_bo
);
384 qxl_bo_unreserve(user_bo
);
386 drm_gem_object_unreference_unlocked(obj
);
388 qxl_bo_unref(&cursor_bo
);
393 qxl_release_backoff_reserve_list(release
);
395 qxl_bo_unref(&cursor_bo
);
397 qxl_release_free(qdev
, release
);
399 qxl_bo_kunmap(user_bo
);
401 qxl_bo_unpin(user_bo
);
403 drm_gem_object_unreference_unlocked(obj
);
407 static int qxl_crtc_cursor_move(struct drm_crtc
*crtc
,
410 struct drm_device
*dev
= crtc
->dev
;
411 struct qxl_device
*qdev
= dev
->dev_private
;
412 struct qxl_crtc
*qcrtc
= to_qxl_crtc(crtc
);
413 struct qxl_release
*release
;
414 struct qxl_cursor_cmd
*cmd
;
417 ret
= qxl_alloc_release_reserved(qdev
, sizeof(*cmd
), QXL_RELEASE_CURSOR_CMD
,
422 ret
= qxl_release_reserve_list(release
, true);
424 qxl_release_free(qdev
, release
);
431 cmd
= (struct qxl_cursor_cmd
*)qxl_release_map(qdev
, release
);
432 cmd
->type
= QXL_CURSOR_MOVE
;
433 cmd
->u
.position
.x
= qcrtc
->cur_x
;
434 cmd
->u
.position
.y
= qcrtc
->cur_y
;
435 qxl_release_unmap(qdev
, release
, &cmd
->release_info
);
437 qxl_push_cursor_ring_release(qdev
, release
, QXL_CMD_CURSOR
, false);
438 qxl_release_fence_buffer_objects(release
);
444 static const struct drm_crtc_funcs qxl_crtc_funcs
= {
445 .cursor_set2
= qxl_crtc_cursor_set2
,
446 .cursor_move
= qxl_crtc_cursor_move
,
447 .set_config
= drm_crtc_helper_set_config
,
448 .destroy
= qxl_crtc_destroy
,
449 .page_flip
= qxl_crtc_page_flip
,
452 static void qxl_user_framebuffer_destroy(struct drm_framebuffer
*fb
)
454 struct qxl_framebuffer
*qxl_fb
= to_qxl_framebuffer(fb
);
457 drm_gem_object_unreference_unlocked(qxl_fb
->obj
);
458 drm_framebuffer_cleanup(fb
);
462 static int qxl_framebuffer_surface_dirty(struct drm_framebuffer
*fb
,
463 struct drm_file
*file_priv
,
464 unsigned flags
, unsigned color
,
465 struct drm_clip_rect
*clips
,
468 /* TODO: vmwgfx where this was cribbed from had locking. Why? */
469 struct qxl_framebuffer
*qxl_fb
= to_qxl_framebuffer(fb
);
470 struct qxl_device
*qdev
= qxl_fb
->base
.dev
->dev_private
;
471 struct drm_clip_rect norect
;
475 drm_modeset_lock_all(fb
->dev
);
477 qobj
= gem_to_qxl_bo(qxl_fb
->obj
);
478 /* if we aren't primary surface ignore this */
479 if (!qobj
->is_primary
) {
480 drm_modeset_unlock_all(fb
->dev
);
487 norect
.x1
= norect
.y1
= 0;
488 norect
.x2
= fb
->width
;
489 norect
.y2
= fb
->height
;
490 } else if (flags
& DRM_MODE_FB_DIRTY_ANNOTATE_COPY
) {
492 inc
= 2; /* skip source rects */
495 qxl_draw_dirty_fb(qdev
, qxl_fb
, qobj
, flags
, color
,
496 clips
, num_clips
, inc
);
498 drm_modeset_unlock_all(fb
->dev
);
503 static const struct drm_framebuffer_funcs qxl_fb_funcs
= {
504 .destroy
= qxl_user_framebuffer_destroy
,
505 .dirty
= qxl_framebuffer_surface_dirty
,
507 * .create_handle = qxl_user_framebuffer_create_handle, */
511 qxl_framebuffer_init(struct drm_device
*dev
,
512 struct qxl_framebuffer
*qfb
,
513 struct drm_mode_fb_cmd2
*mode_cmd
,
514 struct drm_gem_object
*obj
)
519 ret
= drm_framebuffer_init(dev
, &qfb
->base
, &qxl_fb_funcs
);
524 drm_helper_mode_fill_fb_struct(&qfb
->base
, mode_cmd
);
528 static void qxl_crtc_dpms(struct drm_crtc
*crtc
, int mode
)
532 static bool qxl_crtc_mode_fixup(struct drm_crtc
*crtc
,
533 const struct drm_display_mode
*mode
,
534 struct drm_display_mode
*adjusted_mode
)
536 struct drm_device
*dev
= crtc
->dev
;
537 struct qxl_device
*qdev
= dev
->dev_private
;
539 qxl_io_log(qdev
, "%s: (%d,%d) => (%d,%d)\n",
541 mode
->hdisplay
, mode
->vdisplay
,
542 adjusted_mode
->hdisplay
,
543 adjusted_mode
->vdisplay
);
548 qxl_send_monitors_config(struct qxl_device
*qdev
)
552 BUG_ON(!qdev
->ram_header
->monitors_config
);
554 if (qdev
->monitors_config
->count
== 0) {
555 qxl_io_log(qdev
, "%s: 0 monitors??\n", __func__
);
558 for (i
= 0 ; i
< qdev
->monitors_config
->count
; ++i
) {
559 struct qxl_head
*head
= &qdev
->monitors_config
->heads
[i
];
561 if (head
->y
> 8192 || head
->x
> 8192 ||
562 head
->width
> 8192 || head
->height
> 8192) {
563 DRM_ERROR("head %d wrong: %dx%d+%d+%d\n",
564 i
, head
->width
, head
->height
,
569 qxl_io_monitors_config(qdev
);
572 static void qxl_monitors_config_set(struct qxl_device
*qdev
,
574 unsigned x
, unsigned y
,
575 unsigned width
, unsigned height
,
578 DRM_DEBUG_KMS("%d:%dx%d+%d+%d\n", index
, width
, height
, x
, y
);
579 qdev
->monitors_config
->heads
[index
].x
= x
;
580 qdev
->monitors_config
->heads
[index
].y
= y
;
581 qdev
->monitors_config
->heads
[index
].width
= width
;
582 qdev
->monitors_config
->heads
[index
].height
= height
;
583 qdev
->monitors_config
->heads
[index
].surface_id
= surf_id
;
587 static int qxl_crtc_mode_set(struct drm_crtc
*crtc
,
588 struct drm_display_mode
*mode
,
589 struct drm_display_mode
*adjusted_mode
,
591 struct drm_framebuffer
*old_fb
)
593 struct drm_device
*dev
= crtc
->dev
;
594 struct qxl_device
*qdev
= dev
->dev_private
;
595 struct qxl_framebuffer
*qfb
;
596 struct qxl_bo
*bo
, *old_bo
= NULL
;
597 struct qxl_crtc
*qcrtc
= to_qxl_crtc(crtc
);
598 bool recreate_primary
= false;
601 if (!crtc
->primary
->fb
) {
602 DRM_DEBUG_KMS("No FB bound\n");
607 qfb
= to_qxl_framebuffer(old_fb
);
608 old_bo
= gem_to_qxl_bo(qfb
->obj
);
610 qfb
= to_qxl_framebuffer(crtc
->primary
->fb
);
611 bo
= gem_to_qxl_bo(qfb
->obj
);
612 DRM_DEBUG("+%d+%d (%d,%d) => (%d,%d)\n",
614 mode
->hdisplay
, mode
->vdisplay
,
615 adjusted_mode
->hdisplay
,
616 adjusted_mode
->vdisplay
);
618 if (qcrtc
->index
== 0)
619 recreate_primary
= true;
621 if (bo
->surf
.stride
* bo
->surf
.height
> qdev
->vram_size
) {
622 DRM_ERROR("Mode doesn't fit in vram size (vgamem)");
626 ret
= qxl_bo_reserve(bo
, false);
629 ret
= qxl_bo_pin(bo
, bo
->type
, NULL
);
631 qxl_bo_unreserve(bo
);
634 qxl_bo_unreserve(bo
);
635 if (recreate_primary
) {
636 qxl_io_destroy_primary(qdev
);
638 "recreate primary: %dx%d,%d,%d\n",
639 bo
->surf
.width
, bo
->surf
.height
,
640 bo
->surf
.stride
, bo
->surf
.format
);
641 qxl_io_create_primary(qdev
, 0, bo
);
642 bo
->is_primary
= true;
645 if (bo
->is_primary
) {
646 DRM_DEBUG_KMS("setting surface_id to 0 for primary surface %d on crtc %d\n", bo
->surface_id
, qcrtc
->index
);
649 surf_id
= bo
->surface_id
;
652 if (old_bo
&& old_bo
!= bo
) {
653 old_bo
->is_primary
= false;
654 ret
= qxl_bo_reserve(old_bo
, false);
655 qxl_bo_unpin(old_bo
);
656 qxl_bo_unreserve(old_bo
);
659 qxl_monitors_config_set(qdev
, qcrtc
->index
, x
, y
,
661 mode
->vdisplay
, surf_id
);
665 static void qxl_crtc_prepare(struct drm_crtc
*crtc
)
667 DRM_DEBUG("current: %dx%d+%d+%d (%d).\n",
668 crtc
->mode
.hdisplay
, crtc
->mode
.vdisplay
,
669 crtc
->x
, crtc
->y
, crtc
->enabled
);
672 static void qxl_crtc_commit(struct drm_crtc
*crtc
)
677 static void qxl_crtc_disable(struct drm_crtc
*crtc
)
679 struct qxl_crtc
*qcrtc
= to_qxl_crtc(crtc
);
680 struct drm_device
*dev
= crtc
->dev
;
681 struct qxl_device
*qdev
= dev
->dev_private
;
682 if (crtc
->primary
->fb
) {
683 struct qxl_framebuffer
*qfb
= to_qxl_framebuffer(crtc
->primary
->fb
);
684 struct qxl_bo
*bo
= gem_to_qxl_bo(qfb
->obj
);
686 ret
= qxl_bo_reserve(bo
, false);
688 qxl_bo_unreserve(bo
);
689 crtc
->primary
->fb
= NULL
;
692 qxl_monitors_config_set(qdev
, qcrtc
->index
, 0, 0, 0, 0, 0);
694 qxl_send_monitors_config(qdev
);
697 static const struct drm_crtc_helper_funcs qxl_crtc_helper_funcs
= {
698 .dpms
= qxl_crtc_dpms
,
699 .disable
= qxl_crtc_disable
,
700 .mode_fixup
= qxl_crtc_mode_fixup
,
701 .mode_set
= qxl_crtc_mode_set
,
702 .prepare
= qxl_crtc_prepare
,
703 .commit
= qxl_crtc_commit
,
706 static int qdev_crtc_init(struct drm_device
*dev
, int crtc_id
)
708 struct qxl_crtc
*qxl_crtc
;
710 qxl_crtc
= kzalloc(sizeof(struct qxl_crtc
), GFP_KERNEL
);
714 drm_crtc_init(dev
, &qxl_crtc
->base
, &qxl_crtc_funcs
);
715 qxl_crtc
->index
= crtc_id
;
716 drm_mode_crtc_set_gamma_size(&qxl_crtc
->base
, 256);
717 drm_crtc_helper_add(&qxl_crtc
->base
, &qxl_crtc_helper_funcs
);
721 static void qxl_enc_dpms(struct drm_encoder
*encoder
, int mode
)
726 static bool qxl_enc_mode_fixup(struct drm_encoder
*encoder
,
727 const struct drm_display_mode
*mode
,
728 struct drm_display_mode
*adjusted_mode
)
734 static void qxl_enc_prepare(struct drm_encoder
*encoder
)
739 static void qxl_write_monitors_config_for_encoder(struct qxl_device
*qdev
,
740 struct drm_encoder
*encoder
)
743 struct qxl_output
*output
= drm_encoder_to_qxl_output(encoder
);
744 struct qxl_head
*head
;
745 struct drm_display_mode
*mode
;
748 /* TODO: ugly, do better */
750 if (!qdev
->monitors_config
||
751 qdev
->monitors_config
->max_allowed
<= i
) {
753 "head number too large or missing monitors config: %p, %d",
754 qdev
->monitors_config
,
755 qdev
->monitors_config
?
756 qdev
->monitors_config
->max_allowed
: -1);
759 if (!encoder
->crtc
) {
760 DRM_ERROR("missing crtc on encoder %p\n", encoder
);
764 DRM_DEBUG("missing for multiple monitors: no head holes\n");
765 head
= &qdev
->monitors_config
->heads
[i
];
767 if (encoder
->crtc
->enabled
) {
768 mode
= &encoder
->crtc
->mode
;
769 head
->width
= mode
->hdisplay
;
770 head
->height
= mode
->vdisplay
;
771 head
->x
= encoder
->crtc
->x
;
772 head
->y
= encoder
->crtc
->y
;
773 if (qdev
->monitors_config
->count
< i
+ 1)
774 qdev
->monitors_config
->count
= i
+ 1;
781 DRM_DEBUG_KMS("setting head %d to +%d+%d %dx%d out of %d\n",
782 i
, head
->x
, head
->y
, head
->width
, head
->height
, qdev
->monitors_config
->count
);
784 /* TODO - somewhere else to call this for multiple monitors
785 * (config_commit?) */
786 qxl_send_monitors_config(qdev
);
789 static void qxl_enc_commit(struct drm_encoder
*encoder
)
791 struct qxl_device
*qdev
= encoder
->dev
->dev_private
;
793 qxl_write_monitors_config_for_encoder(qdev
, encoder
);
797 static void qxl_enc_mode_set(struct drm_encoder
*encoder
,
798 struct drm_display_mode
*mode
,
799 struct drm_display_mode
*adjusted_mode
)
804 static int qxl_conn_get_modes(struct drm_connector
*connector
)
807 struct qxl_device
*qdev
= connector
->dev
->dev_private
;
808 unsigned pwidth
= 1024;
809 unsigned pheight
= 768;
811 DRM_DEBUG_KMS("monitors_config=%p\n", qdev
->monitors_config
);
812 /* TODO: what should we do here? only show the configured modes for the
813 * device, or allow the full list, or both? */
814 if (qdev
->monitors_config
&& qdev
->monitors_config
->count
) {
815 ret
= qxl_add_monitors_config_modes(connector
, &pwidth
, &pheight
);
819 ret
+= qxl_add_common_modes(connector
, pwidth
, pheight
);
823 static int qxl_conn_mode_valid(struct drm_connector
*connector
,
824 struct drm_display_mode
*mode
)
826 /* TODO: is this called for user defined modes? (xrandr --add-mode)
827 * TODO: check that the mode fits in the framebuffer */
828 DRM_DEBUG("%s: %dx%d status=%d\n", mode
->name
, mode
->hdisplay
,
829 mode
->vdisplay
, mode
->status
);
833 static struct drm_encoder
*qxl_best_encoder(struct drm_connector
*connector
)
835 struct qxl_output
*qxl_output
=
836 drm_connector_to_qxl_output(connector
);
839 return &qxl_output
->enc
;
843 static const struct drm_encoder_helper_funcs qxl_enc_helper_funcs
= {
844 .dpms
= qxl_enc_dpms
,
845 .mode_fixup
= qxl_enc_mode_fixup
,
846 .prepare
= qxl_enc_prepare
,
847 .mode_set
= qxl_enc_mode_set
,
848 .commit
= qxl_enc_commit
,
851 static const struct drm_connector_helper_funcs qxl_connector_helper_funcs
= {
852 .get_modes
= qxl_conn_get_modes
,
853 .mode_valid
= qxl_conn_mode_valid
,
854 .best_encoder
= qxl_best_encoder
,
857 static void qxl_conn_save(struct drm_connector
*connector
)
862 static void qxl_conn_restore(struct drm_connector
*connector
)
867 static enum drm_connector_status
qxl_conn_detect(
868 struct drm_connector
*connector
,
871 struct qxl_output
*output
=
872 drm_connector_to_qxl_output(connector
);
873 struct drm_device
*ddev
= connector
->dev
;
874 struct qxl_device
*qdev
= ddev
->dev_private
;
877 /* The first monitor is always connected */
878 connected
= (output
->index
== 0) ||
879 (qdev
->client_monitors_config
&&
880 qdev
->client_monitors_config
->count
> output
->index
&&
881 qxl_head_enabled(&qdev
->client_monitors_config
->heads
[output
->index
]));
883 DRM_DEBUG("#%d connected: %d\n", output
->index
, connected
);
885 qxl_monitors_config_set(qdev
, output
->index
, 0, 0, 0, 0, 0);
887 return connected
? connector_status_connected
888 : connector_status_disconnected
;
891 static int qxl_conn_set_property(struct drm_connector
*connector
,
892 struct drm_property
*property
,
899 static void qxl_conn_destroy(struct drm_connector
*connector
)
901 struct qxl_output
*qxl_output
=
902 drm_connector_to_qxl_output(connector
);
904 drm_connector_unregister(connector
);
905 drm_connector_cleanup(connector
);
909 static const struct drm_connector_funcs qxl_connector_funcs
= {
910 .dpms
= drm_helper_connector_dpms
,
911 .save
= qxl_conn_save
,
912 .restore
= qxl_conn_restore
,
913 .detect
= qxl_conn_detect
,
914 .fill_modes
= drm_helper_probe_single_connector_modes_nomerge
,
915 .set_property
= qxl_conn_set_property
,
916 .destroy
= qxl_conn_destroy
,
919 static void qxl_enc_destroy(struct drm_encoder
*encoder
)
921 drm_encoder_cleanup(encoder
);
924 static const struct drm_encoder_funcs qxl_enc_funcs
= {
925 .destroy
= qxl_enc_destroy
,
928 static int qxl_mode_create_hotplug_mode_update_property(struct qxl_device
*qdev
)
930 if (qdev
->hotplug_mode_update_property
)
933 qdev
->hotplug_mode_update_property
=
934 drm_property_create_range(qdev
->ddev
, DRM_MODE_PROP_IMMUTABLE
,
935 "hotplug_mode_update", 0, 1);
940 static int qdev_output_init(struct drm_device
*dev
, int num_output
)
942 struct qxl_device
*qdev
= dev
->dev_private
;
943 struct qxl_output
*qxl_output
;
944 struct drm_connector
*connector
;
945 struct drm_encoder
*encoder
;
947 qxl_output
= kzalloc(sizeof(struct qxl_output
), GFP_KERNEL
);
951 qxl_output
->index
= num_output
;
953 connector
= &qxl_output
->base
;
954 encoder
= &qxl_output
->enc
;
955 drm_connector_init(dev
, &qxl_output
->base
,
956 &qxl_connector_funcs
, DRM_MODE_CONNECTOR_VIRTUAL
);
958 drm_encoder_init(dev
, &qxl_output
->enc
, &qxl_enc_funcs
,
959 DRM_MODE_ENCODER_VIRTUAL
);
961 /* we get HPD via client monitors config */
962 connector
->polled
= DRM_CONNECTOR_POLL_HPD
;
963 encoder
->possible_crtcs
= 1 << num_output
;
964 drm_mode_connector_attach_encoder(&qxl_output
->base
,
966 drm_encoder_helper_add(encoder
, &qxl_enc_helper_funcs
);
967 drm_connector_helper_add(connector
, &qxl_connector_helper_funcs
);
969 drm_object_attach_property(&connector
->base
,
970 qdev
->hotplug_mode_update_property
, 0);
971 drm_object_attach_property(&connector
->base
,
972 dev
->mode_config
.suggested_x_property
, 0);
973 drm_object_attach_property(&connector
->base
,
974 dev
->mode_config
.suggested_y_property
, 0);
975 drm_connector_register(connector
);
979 static struct drm_framebuffer
*
980 qxl_user_framebuffer_create(struct drm_device
*dev
,
981 struct drm_file
*file_priv
,
982 struct drm_mode_fb_cmd2
*mode_cmd
)
984 struct drm_gem_object
*obj
;
985 struct qxl_framebuffer
*qxl_fb
;
988 obj
= drm_gem_object_lookup(dev
, file_priv
, mode_cmd
->handles
[0]);
990 qxl_fb
= kzalloc(sizeof(*qxl_fb
), GFP_KERNEL
);
994 ret
= qxl_framebuffer_init(dev
, qxl_fb
, mode_cmd
, obj
);
997 drm_gem_object_unreference_unlocked(obj
);
1001 return &qxl_fb
->base
;
1004 static const struct drm_mode_config_funcs qxl_mode_funcs
= {
1005 .fb_create
= qxl_user_framebuffer_create
,
1008 int qxl_create_monitors_object(struct qxl_device
*qdev
)
1011 struct drm_gem_object
*gobj
;
1012 int max_allowed
= qxl_num_crtc
;
1013 int monitors_config_size
= sizeof(struct qxl_monitors_config
) +
1014 max_allowed
* sizeof(struct qxl_head
);
1016 ret
= qxl_gem_object_create(qdev
, monitors_config_size
, 0,
1017 QXL_GEM_DOMAIN_VRAM
,
1018 false, false, NULL
, &gobj
);
1020 DRM_ERROR("%s: failed to create gem ret=%d\n", __func__
, ret
);
1023 qdev
->monitors_config_bo
= gem_to_qxl_bo(gobj
);
1025 ret
= qxl_bo_reserve(qdev
->monitors_config_bo
, false);
1029 ret
= qxl_bo_pin(qdev
->monitors_config_bo
, QXL_GEM_DOMAIN_VRAM
, NULL
);
1031 qxl_bo_unreserve(qdev
->monitors_config_bo
);
1035 qxl_bo_unreserve(qdev
->monitors_config_bo
);
1037 qxl_bo_kmap(qdev
->monitors_config_bo
, NULL
);
1039 qdev
->monitors_config
= qdev
->monitors_config_bo
->kptr
;
1040 qdev
->ram_header
->monitors_config
=
1041 qxl_bo_physical_address(qdev
, qdev
->monitors_config_bo
, 0);
1043 memset(qdev
->monitors_config
, 0, monitors_config_size
);
1044 qdev
->monitors_config
->max_allowed
= max_allowed
;
1048 int qxl_destroy_monitors_object(struct qxl_device
*qdev
)
1052 qdev
->monitors_config
= NULL
;
1053 qdev
->ram_header
->monitors_config
= 0;
1055 qxl_bo_kunmap(qdev
->monitors_config_bo
);
1056 ret
= qxl_bo_reserve(qdev
->monitors_config_bo
, false);
1060 qxl_bo_unpin(qdev
->monitors_config_bo
);
1061 qxl_bo_unreserve(qdev
->monitors_config_bo
);
1063 qxl_bo_unref(&qdev
->monitors_config_bo
);
1067 int qxl_modeset_init(struct qxl_device
*qdev
)
1072 drm_mode_config_init(qdev
->ddev
);
1074 ret
= qxl_create_monitors_object(qdev
);
1078 qdev
->ddev
->mode_config
.funcs
= (void *)&qxl_mode_funcs
;
1080 /* modes will be validated against the framebuffer size */
1081 qdev
->ddev
->mode_config
.min_width
= 320;
1082 qdev
->ddev
->mode_config
.min_height
= 200;
1083 qdev
->ddev
->mode_config
.max_width
= 8192;
1084 qdev
->ddev
->mode_config
.max_height
= 8192;
1086 qdev
->ddev
->mode_config
.fb_base
= qdev
->vram_base
;
1088 drm_mode_create_suggested_offset_properties(qdev
->ddev
);
1089 qxl_mode_create_hotplug_mode_update_property(qdev
);
1091 for (i
= 0 ; i
< qxl_num_crtc
; ++i
) {
1092 qdev_crtc_init(qdev
->ddev
, i
);
1093 qdev_output_init(qdev
->ddev
, i
);
1096 qdev
->mode_info
.mode_config_initialized
= true;
1098 /* primary surface must be created by this point, to allow
1099 * issuing command queue commands and having them read by
1101 qxl_fbdev_init(qdev
);
1105 void qxl_modeset_fini(struct qxl_device
*qdev
)
1107 qxl_fbdev_fini(qdev
);
1109 qxl_destroy_monitors_object(qdev
);
1110 if (qdev
->mode_info
.mode_config_initialized
) {
1111 drm_mode_config_cleanup(qdev
->ddev
);
1112 qdev
->mode_info
.mode_config_initialized
= false;