blob: e50674bccb0929f34dce70c702bb839096ec9036 [file] [log] [blame]
Dave Airliedc5698e2013-09-09 10:02:56 +10001/*
2 * Copyright (C) 2015 Red Hat, Inc.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial
15 * portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26#include "virtgpu_drv.h"
27#include <drm/drm_plane_helper.h>
28#include <drm/drm_atomic_helper.h>
29
30static const uint32_t virtio_gpu_formats[] = {
31 DRM_FORMAT_XRGB8888,
32 DRM_FORMAT_ARGB8888,
33 DRM_FORMAT_BGRX8888,
34 DRM_FORMAT_BGRA8888,
35 DRM_FORMAT_RGBX8888,
36 DRM_FORMAT_RGBA8888,
37 DRM_FORMAT_XBGR8888,
38 DRM_FORMAT_ABGR8888,
39};
40
41static void virtio_gpu_plane_destroy(struct drm_plane *plane)
42{
43 kfree(plane);
44}
45
46static const struct drm_plane_funcs virtio_gpu_plane_funcs = {
47 .update_plane = drm_atomic_helper_update_plane,
48 .disable_plane = drm_atomic_helper_disable_plane,
49 .destroy = virtio_gpu_plane_destroy,
50 .reset = drm_atomic_helper_plane_reset,
51 .atomic_duplicate_state = drm_atomic_helper_plane_duplicate_state,
52 .atomic_destroy_state = drm_atomic_helper_plane_destroy_state,
53};
54
55static int virtio_gpu_plane_atomic_check(struct drm_plane *plane,
56 struct drm_plane_state *state)
57{
58 return 0;
59}
60
61static void virtio_gpu_plane_atomic_update(struct drm_plane *plane,
62 struct drm_plane_state *old_state)
63{
64 struct drm_device *dev = plane->dev;
65 struct virtio_gpu_device *vgdev = dev->dev_private;
Gerd Hoffmannd1e372c2016-05-30 14:03:26 +020066 struct virtio_gpu_output *output = NULL;
Dave Airliedc5698e2013-09-09 10:02:56 +100067 struct virtio_gpu_framebuffer *vgfb;
68 struct virtio_gpu_object *bo;
69 uint32_t handle;
70
Gerd Hoffmannd1e372c2016-05-30 14:03:26 +020071 if (plane->state->crtc)
72 output = drm_crtc_to_virtio_gpu_output(plane->state->crtc);
73 if (old_state->crtc)
74 output = drm_crtc_to_virtio_gpu_output(old_state->crtc);
75 WARN_ON(!output);
76
Rob Herring11c94ac2016-01-13 15:52:07 -060077 if (plane->state->fb) {
78 vgfb = to_virtio_gpu_framebuffer(plane->state->fb);
Dave Airliedc5698e2013-09-09 10:02:56 +100079 bo = gem_to_virtio_gpu_obj(vgfb->obj);
80 handle = bo->hw_res_handle;
Rob Herring4109e7f72016-01-13 15:52:09 -060081 if (bo->dumb) {
82 virtio_gpu_cmd_transfer_to_host_2d
83 (vgdev, handle, 0,
84 cpu_to_le32(plane->state->crtc_w),
85 cpu_to_le32(plane->state->crtc_h),
86 plane->state->crtc_x, plane->state->crtc_y, NULL);
87 }
Dave Airliedc5698e2013-09-09 10:02:56 +100088 } else {
89 handle = 0;
90 }
91
92 DRM_DEBUG("handle 0x%x, crtc %dx%d+%d+%d\n", handle,
93 plane->state->crtc_w, plane->state->crtc_h,
94 plane->state->crtc_x, plane->state->crtc_y);
95 virtio_gpu_cmd_set_scanout(vgdev, output->index, handle,
96 plane->state->crtc_w,
97 plane->state->crtc_h,
98 plane->state->crtc_x,
99 plane->state->crtc_y);
Rob Herringbd17d1c2016-01-13 15:52:08 -0600100 virtio_gpu_cmd_resource_flush(vgdev, handle,
101 plane->state->crtc_x,
102 plane->state->crtc_y,
103 plane->state->crtc_w,
104 plane->state->crtc_h);
Dave Airliedc5698e2013-09-09 10:02:56 +1000105}
106
107
108static const struct drm_plane_helper_funcs virtio_gpu_plane_helper_funcs = {
109 .atomic_check = virtio_gpu_plane_atomic_check,
110 .atomic_update = virtio_gpu_plane_atomic_update,
111};
112
113struct drm_plane *virtio_gpu_plane_init(struct virtio_gpu_device *vgdev,
114 int index)
115{
116 struct drm_device *dev = vgdev->ddev;
117 struct drm_plane *plane;
118 int ret;
119
120 plane = kzalloc(sizeof(*plane), GFP_KERNEL);
121 if (!plane)
122 return ERR_PTR(-ENOMEM);
123
124 ret = drm_universal_plane_init(dev, plane, 1 << index,
125 &virtio_gpu_plane_funcs,
126 virtio_gpu_formats,
127 ARRAY_SIZE(virtio_gpu_formats),
Ville Syrjäläb0b3b792015-12-09 16:19:55 +0200128 DRM_PLANE_TYPE_PRIMARY, NULL);
Dave Airliedc5698e2013-09-09 10:02:56 +1000129 if (ret)
130 goto err_plane_init;
131
132 drm_plane_helper_add(plane, &virtio_gpu_plane_helper_funcs);
133 return plane;
134
135err_plane_init:
136 kfree(plane);
137 return ERR_PTR(ret);
138}