blob: f92fe4c6174ad163bf250786e77949c9e2d9230e [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"
15#include "exynos_drm_crtc.h"
16#include "exynos_drm_drv.h"
17#include "exynos_drm_encoder.h"
18
19struct exynos_plane {
20 struct drm_plane base;
21 struct exynos_drm_overlay overlay;
22 bool enabled;
23};
24
Eunchul Kimba3849d2012-03-16 18:47:15 +090025static const uint32_t formats[] = {
26 DRM_FORMAT_XRGB8888,
Seung-Woo Kim6b1c7622012-04-05 11:21:09 +090027 DRM_FORMAT_ARGB8888,
28 DRM_FORMAT_NV12,
29 DRM_FORMAT_NV12M,
30 DRM_FORMAT_NV12MT,
Eunchul Kimba3849d2012-03-16 18:47:15 +090031};
32
Joonyoung Shim864ee9e2011-12-08 17:54:07 +090033static int
34exynos_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
35 struct drm_framebuffer *fb, int crtc_x, int crtc_y,
36 unsigned int crtc_w, unsigned int crtc_h,
37 uint32_t src_x, uint32_t src_y,
38 uint32_t src_w, uint32_t src_h)
39{
40 struct exynos_plane *exynos_plane =
41 container_of(plane, struct exynos_plane, base);
42 struct exynos_drm_overlay *overlay = &exynos_plane->overlay;
43 struct exynos_drm_crtc_pos pos;
44 unsigned int x = src_x >> 16;
45 unsigned int y = src_y >> 16;
46 int ret;
47
48 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
49
50 memset(&pos, 0, sizeof(struct exynos_drm_crtc_pos));
51 pos.crtc_x = crtc_x;
52 pos.crtc_y = crtc_y;
53 pos.crtc_w = crtc_w;
54 pos.crtc_h = crtc_h;
55
56 pos.fb_x = x;
57 pos.fb_y = y;
58
59 /* TODO: scale feature */
60 ret = exynos_drm_overlay_update(overlay, fb, &crtc->mode, &pos);
61 if (ret < 0)
62 return ret;
63
64 exynos_drm_fn_encoder(crtc, overlay,
65 exynos_drm_encoder_crtc_mode_set);
66 exynos_drm_fn_encoder(crtc, &overlay->zpos,
67 exynos_drm_encoder_crtc_plane_commit);
68
69 exynos_plane->enabled = true;
70
71 return 0;
72}
73
74static int exynos_disable_plane(struct drm_plane *plane)
75{
76 struct exynos_plane *exynos_plane =
77 container_of(plane, struct exynos_plane, base);
78 struct exynos_drm_overlay *overlay = &exynos_plane->overlay;
79
80 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
81
82 if (!exynos_plane->enabled)
83 return 0;
84
85 exynos_drm_fn_encoder(plane->crtc, &overlay->zpos,
86 exynos_drm_encoder_crtc_disable);
87
88 exynos_plane->enabled = false;
89 exynos_plane->overlay.zpos = DEFAULT_ZPOS;
90
91 return 0;
92}
93
94static void exynos_plane_destroy(struct drm_plane *plane)
95{
96 struct exynos_plane *exynos_plane =
97 container_of(plane, struct exynos_plane, base);
98
99 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
100
101 exynos_disable_plane(plane);
102 drm_plane_cleanup(plane);
103 kfree(exynos_plane);
104}
105
106static struct drm_plane_funcs exynos_plane_funcs = {
107 .update_plane = exynos_update_plane,
108 .disable_plane = exynos_disable_plane,
109 .destroy = exynos_plane_destroy,
110};
111
112int exynos_plane_init(struct drm_device *dev, unsigned int nr)
113{
114 struct exynos_plane *exynos_plane;
115 uint32_t possible_crtcs;
116
117 exynos_plane = kzalloc(sizeof(struct exynos_plane), GFP_KERNEL);
118 if (!exynos_plane)
119 return -ENOMEM;
120
121 /* all CRTCs are available */
122 possible_crtcs = (1 << MAX_CRTC) - 1;
123
124 exynos_plane->overlay.zpos = DEFAULT_ZPOS;
125
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900126 return drm_plane_init(dev, &exynos_plane->base, possible_crtcs,
Eunchul Kimba3849d2012-03-16 18:47:15 +0900127 &exynos_plane_funcs, formats, ARRAY_SIZE(formats),
128 false);
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900129}
130
131int exynos_plane_set_zpos_ioctl(struct drm_device *dev, void *data,
132 struct drm_file *file_priv)
133{
134 struct drm_exynos_plane_set_zpos *zpos_req = data;
135 struct drm_mode_object *obj;
136 struct drm_plane *plane;
137 struct exynos_plane *exynos_plane;
138 int ret = 0;
139
140 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
141
142 if (!drm_core_check_feature(dev, DRIVER_MODESET))
143 return -EINVAL;
144
145 if (zpos_req->zpos < 0 || zpos_req->zpos >= MAX_PLANE) {
146 if (zpos_req->zpos != DEFAULT_ZPOS) {
147 DRM_ERROR("zpos not within limits\n");
148 return -EINVAL;
149 }
150 }
151
152 mutex_lock(&dev->mode_config.mutex);
153
154 obj = drm_mode_object_find(dev, zpos_req->plane_id,
155 DRM_MODE_OBJECT_PLANE);
156 if (!obj) {
157 DRM_DEBUG_KMS("Unknown plane ID %d\n",
158 zpos_req->plane_id);
159 ret = -EINVAL;
160 goto out;
161 }
162
163 plane = obj_to_plane(obj);
164 exynos_plane = container_of(plane, struct exynos_plane, base);
165
166 exynos_plane->overlay.zpos = zpos_req->zpos;
167
168out:
169 mutex_unlock(&dev->mode_config.mutex);
170 return ret;
171}