blob: 232e323d93c862845bc7149a2757fd7a8bd7b6df [file] [log] [blame]
Joonyoung Shim864ee9e2011-12-08 17:54:07 +09001/*
2 * Copyright (C) 2011 Samsung Electronics Co.Ltd
3 * Authors: Joonyoung Shim <jy0922.shim@samsung.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
9 *
10 */
11
12#include "drmP.h"
13
14#include "exynos_drm.h"
Joonyoung Shim864ee9e2011-12-08 17:54:07 +090015#include "exynos_drm_drv.h"
16#include "exynos_drm_encoder.h"
Joonyoung Shim4070d212012-06-27 14:27:05 +090017#include "exynos_drm_fb.h"
18#include "exynos_drm_gem.h"
Joonyoung Shim864ee9e2011-12-08 17:54:07 +090019
Joonyoung Shimfdc575e2012-06-27 14:27:03 +090020#define to_exynos_plane(x) container_of(x, struct exynos_plane, base)
21
Joonyoung Shim864ee9e2011-12-08 17:54:07 +090022struct exynos_plane {
23 struct drm_plane base;
24 struct exynos_drm_overlay overlay;
25 bool enabled;
26};
27
Eunchul Kimba3849d2012-03-16 18:47:15 +090028static const uint32_t formats[] = {
29 DRM_FORMAT_XRGB8888,
Seung-Woo Kim6b1c7622012-04-05 11:21:09 +090030 DRM_FORMAT_ARGB8888,
31 DRM_FORMAT_NV12,
32 DRM_FORMAT_NV12M,
33 DRM_FORMAT_NV12MT,
Eunchul Kimba3849d2012-03-16 18:47:15 +090034};
35
Joonyoung Shim4070d212012-06-27 14:27:05 +090036int exynos_plane_mode_set(struct drm_plane *plane, struct drm_crtc *crtc,
37 struct drm_framebuffer *fb, int crtc_x, int crtc_y,
38 unsigned int crtc_w, unsigned int crtc_h,
39 uint32_t src_x, uint32_t src_y,
40 uint32_t src_w, uint32_t src_h)
41{
42 struct exynos_plane *exynos_plane = to_exynos_plane(plane);
43 struct exynos_drm_overlay *overlay = &exynos_plane->overlay;
44 unsigned int actual_w;
45 unsigned int actual_h;
46 int nr;
47 int i;
48
49 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
50
51 nr = exynos_drm_format_num_buffers(fb->pixel_format);
52 for (i = 0; i < nr; i++) {
53 struct exynos_drm_gem_buf *buffer = exynos_drm_fb_buffer(fb, i);
54
55 if (!buffer) {
56 DRM_LOG_KMS("buffer is null\n");
57 return -EFAULT;
58 }
59
60 overlay->dma_addr[i] = buffer->dma_addr;
61 overlay->vaddr[i] = buffer->kvaddr;
62
63 DRM_DEBUG_KMS("buffer: %d, vaddr = 0x%lx, dma_addr = 0x%lx\n",
64 i, (unsigned long)overlay->vaddr[i],
65 (unsigned long)overlay->dma_addr[i]);
66 }
67
68 actual_w = min((unsigned)(crtc->mode.hdisplay - crtc_x), crtc_w);
69 actual_h = min((unsigned)(crtc->mode.vdisplay - crtc_y), crtc_h);
70
71 /* set drm framebuffer data. */
72 overlay->fb_x = src_x;
73 overlay->fb_y = src_y;
74 overlay->fb_width = fb->width;
75 overlay->fb_height = fb->height;
76 overlay->src_width = src_w;
77 overlay->src_height = src_h;
78 overlay->bpp = fb->bits_per_pixel;
79 overlay->pitch = fb->pitches[0];
80 overlay->pixel_format = fb->pixel_format;
81
82 /* set overlay range to be displayed. */
83 overlay->crtc_x = crtc_x;
84 overlay->crtc_y = crtc_y;
85 overlay->crtc_width = actual_w;
86 overlay->crtc_height = actual_h;
87
88 /* set drm mode data. */
89 overlay->mode_width = crtc->mode.hdisplay;
90 overlay->mode_height = crtc->mode.vdisplay;
91 overlay->refresh = crtc->mode.vrefresh;
92 overlay->scan_flag = crtc->mode.flags;
93
94 DRM_DEBUG_KMS("overlay : offset_x/y(%d,%d), width/height(%d,%d)",
95 overlay->crtc_x, overlay->crtc_y,
96 overlay->crtc_width, overlay->crtc_height);
97
98 exynos_drm_fn_encoder(crtc, overlay, exynos_drm_encoder_plane_mode_set);
99
100 return 0;
101}
102
103void exynos_plane_commit(struct drm_plane *plane)
104{
105 struct exynos_plane *exynos_plane = to_exynos_plane(plane);
106 struct exynos_drm_overlay *overlay = &exynos_plane->overlay;
107
108 exynos_drm_fn_encoder(plane->crtc, &overlay->zpos,
109 exynos_drm_encoder_plane_commit);
110
111 exynos_plane->enabled = true;
112}
113
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900114static int
115exynos_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
116 struct drm_framebuffer *fb, int crtc_x, int crtc_y,
117 unsigned int crtc_w, unsigned int crtc_h,
118 uint32_t src_x, uint32_t src_y,
119 uint32_t src_w, uint32_t src_h)
120{
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900121 int ret;
122
123 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
124
Joonyoung Shim4070d212012-06-27 14:27:05 +0900125 ret = exynos_plane_mode_set(plane, crtc, fb, crtc_x, crtc_y,
126 crtc_w, crtc_h, src_x >> 16, src_y >> 16,
127 src_w >> 16, src_h >> 16);
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900128 if (ret < 0)
129 return ret;
130
Joonyoung Shim4070d212012-06-27 14:27:05 +0900131 plane->crtc = crtc;
132 plane->fb = crtc->fb;
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900133
Joonyoung Shim4070d212012-06-27 14:27:05 +0900134 exynos_plane_commit(plane);
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900135
136 return 0;
137}
138
139static int exynos_disable_plane(struct drm_plane *plane)
140{
Joonyoung Shimfdc575e2012-06-27 14:27:03 +0900141 struct exynos_plane *exynos_plane = to_exynos_plane(plane);
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900142 struct exynos_drm_overlay *overlay = &exynos_plane->overlay;
143
144 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
145
146 if (!exynos_plane->enabled)
147 return 0;
148
149 exynos_drm_fn_encoder(plane->crtc, &overlay->zpos,
Joonyoung Shim4070d212012-06-27 14:27:05 +0900150 exynos_drm_encoder_plane_disable);
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900151
152 exynos_plane->enabled = false;
153 exynos_plane->overlay.zpos = DEFAULT_ZPOS;
154
155 return 0;
156}
157
158static void exynos_plane_destroy(struct drm_plane *plane)
159{
Joonyoung Shimfdc575e2012-06-27 14:27:03 +0900160 struct exynos_plane *exynos_plane = to_exynos_plane(plane);
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900161
162 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
163
164 exynos_disable_plane(plane);
165 drm_plane_cleanup(plane);
166 kfree(exynos_plane);
167}
168
169static struct drm_plane_funcs exynos_plane_funcs = {
170 .update_plane = exynos_update_plane,
171 .disable_plane = exynos_disable_plane,
172 .destroy = exynos_plane_destroy,
173};
174
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900175struct drm_plane *exynos_plane_init(struct drm_device *dev,
176 unsigned int possible_crtcs, bool priv)
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900177{
178 struct exynos_plane *exynos_plane;
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900179 int err;
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900180
181 exynos_plane = kzalloc(sizeof(struct exynos_plane), GFP_KERNEL);
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900182 if (!exynos_plane) {
183 DRM_ERROR("failed to allocate plane\n");
184 return NULL;
185 }
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900186
187 exynos_plane->overlay.zpos = DEFAULT_ZPOS;
188
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900189 err = drm_plane_init(dev, &exynos_plane->base, possible_crtcs,
Eunchul Kimba3849d2012-03-16 18:47:15 +0900190 &exynos_plane_funcs, formats, ARRAY_SIZE(formats),
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900191 priv);
192 if (err) {
193 DRM_ERROR("failed to initialize plane\n");
194 kfree(exynos_plane);
195 return NULL;
196 }
197
198 return &exynos_plane->base;
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900199}
200
201int exynos_plane_set_zpos_ioctl(struct drm_device *dev, void *data,
202 struct drm_file *file_priv)
203{
204 struct drm_exynos_plane_set_zpos *zpos_req = data;
205 struct drm_mode_object *obj;
206 struct drm_plane *plane;
207 struct exynos_plane *exynos_plane;
208 int ret = 0;
209
210 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
211
212 if (!drm_core_check_feature(dev, DRIVER_MODESET))
213 return -EINVAL;
214
215 if (zpos_req->zpos < 0 || zpos_req->zpos >= MAX_PLANE) {
216 if (zpos_req->zpos != DEFAULT_ZPOS) {
217 DRM_ERROR("zpos not within limits\n");
218 return -EINVAL;
219 }
220 }
221
222 mutex_lock(&dev->mode_config.mutex);
223
224 obj = drm_mode_object_find(dev, zpos_req->plane_id,
225 DRM_MODE_OBJECT_PLANE);
226 if (!obj) {
227 DRM_DEBUG_KMS("Unknown plane ID %d\n",
228 zpos_req->plane_id);
229 ret = -EINVAL;
230 goto out;
231 }
232
233 plane = obj_to_plane(obj);
Joonyoung Shimfdc575e2012-06-27 14:27:03 +0900234 exynos_plane = to_exynos_plane(plane);
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900235
236 exynos_plane->overlay.zpos = zpos_req->zpos;
237
238out:
239 mutex_unlock(&dev->mode_config.mutex);
240 return ret;
241}