blob: e3d406875afddc3d0f942ece780d0cfdc928d101 [file] [log] [blame]
Tomi Valkeineneed07e02009-08-07 13:43:20 +03001/*
2 * linux/drivers/video/omap2/dss/overlay.c
3 *
4 * Copyright (C) 2009 Nokia Corporation
5 * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
6 *
7 * Some code and ideas taken from drivers/video/omap/ driver
8 * by Imre Deak.
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License version 2 as published by
12 * the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * more details.
18 *
19 * You should have received a copy of the GNU General Public License along with
20 * this program. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23#define DSS_SUBSYS_NAME "OVERLAY"
24
25#include <linux/kernel.h>
26#include <linux/module.h>
27#include <linux/err.h>
28#include <linux/sysfs.h>
Tomi Valkeineneed07e02009-08-07 13:43:20 +030029#include <linux/platform_device.h>
30#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Tomi Valkeineneed07e02009-08-07 13:43:20 +030032
Tomi Valkeinena0b38cc2011-05-11 14:05:07 +030033#include <video/omapdss.h>
Tomi Valkeineneed07e02009-08-07 13:43:20 +030034
35#include "dss.h"
Archit Tanejaa0acb552010-09-15 19:20:00 +053036#include "dss_features.h"
Tomi Valkeineneed07e02009-08-07 13:43:20 +030037
38static int num_overlays;
Tomi Valkeinen58452342011-11-05 10:39:59 +020039static struct omap_overlay *overlays;
Tomi Valkeineneed07e02009-08-07 13:43:20 +030040
Tomi Valkeineneed07e02009-08-07 13:43:20 +030041int omap_dss_get_num_overlays(void)
42{
43 return num_overlays;
44}
45EXPORT_SYMBOL(omap_dss_get_num_overlays);
46
47struct omap_overlay *omap_dss_get_overlay(int num)
48{
Tomi Valkeinen58452342011-11-05 10:39:59 +020049 if (num >= num_overlays)
50 return NULL;
Tomi Valkeineneed07e02009-08-07 13:43:20 +030051
Tomi Valkeinen58452342011-11-05 10:39:59 +020052 return &overlays[num];
Tomi Valkeineneed07e02009-08-07 13:43:20 +030053}
54EXPORT_SYMBOL(omap_dss_get_overlay);
55
Tomi Valkeineneed07e02009-08-07 13:43:20 +030056void dss_init_overlays(struct platform_device *pdev)
57{
58 int i, r;
59
Tomi Valkeinen58452342011-11-05 10:39:59 +020060 num_overlays = dss_feat_get_num_ovls();
Tomi Valkeineneed07e02009-08-07 13:43:20 +030061
Tomi Valkeinen58452342011-11-05 10:39:59 +020062 overlays = kzalloc(sizeof(struct omap_overlay) * num_overlays,
63 GFP_KERNEL);
Tomi Valkeineneed07e02009-08-07 13:43:20 +030064
Tomi Valkeinen58452342011-11-05 10:39:59 +020065 BUG_ON(overlays == NULL);
Tomi Valkeineneed07e02009-08-07 13:43:20 +030066
Tomi Valkeinen58452342011-11-05 10:39:59 +020067 for (i = 0; i < num_overlays; ++i) {
68 struct omap_overlay *ovl = &overlays[i];
Tomi Valkeineneed07e02009-08-07 13:43:20 +030069
70 switch (i) {
71 case 0:
72 ovl->name = "gfx";
73 ovl->id = OMAP_DSS_GFX;
Tomi Valkeineneed07e02009-08-07 13:43:20 +030074 break;
75 case 1:
76 ovl->name = "vid1";
77 ovl->id = OMAP_DSS_VIDEO1;
Tomi Valkeineneed07e02009-08-07 13:43:20 +030078 break;
79 case 2:
80 ovl->name = "vid2";
81 ovl->id = OMAP_DSS_VIDEO2;
Tomi Valkeineneed07e02009-08-07 13:43:20 +030082 break;
Archit Tanejab8c095b2011-09-13 18:20:33 +053083 case 3:
84 ovl->name = "vid3";
85 ovl->id = OMAP_DSS_VIDEO3;
Archit Tanejab8c095b2011-09-13 18:20:33 +053086 break;
Tomi Valkeineneed07e02009-08-07 13:43:20 +030087 }
88
Tomi Valkeinenaaa874a2011-11-15 16:37:53 +020089 ovl->is_enabled = &dss_ovl_is_enabled;
90 ovl->enable = &dss_ovl_enable;
91 ovl->disable = &dss_ovl_disable;
Tomi Valkeinenf77b3072011-11-15 12:11:11 +020092 ovl->set_manager = &dss_ovl_set_manager;
93 ovl->unset_manager = &dss_ovl_unset_manager;
94 ovl->set_overlay_info = &dss_ovl_set_info;
95 ovl->get_overlay_info = &dss_ovl_get_info;
Tomi Valkeinen550a8f62011-11-04 13:00:10 +020096 ovl->wait_for_go = &dss_mgr_wait_for_go_ovl;
Tomi Valkeineneed07e02009-08-07 13:43:20 +030097
Tomi Valkeinen67019db2011-08-15 15:18:15 +030098 ovl->caps = dss_feat_get_overlay_caps(ovl->id);
Archit Tanejaa0acb552010-09-15 19:20:00 +053099 ovl->supported_modes =
100 dss_feat_get_supported_color_modes(ovl->id);
101
Tomi Valkeinen91691512012-08-06 14:40:00 +0300102 r = dss_overlay_kobj_init(ovl, pdev);
Tomi Valkeinen58452342011-11-05 10:39:59 +0200103 if (r)
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300104 DSSERR("failed to create sysfs file\n");
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300105 }
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300106}
107
108/* connect overlays to the new device, if not already connected. if force
109 * selected, connect always. */
110void dss_recheck_connections(struct omap_dss_device *dssdev, bool force)
111{
112 int i;
113 struct omap_overlay_manager *lcd_mgr;
114 struct omap_overlay_manager *tv_mgr;
Sumit Semwal18faa1b2010-12-02 11:27:14 +0000115 struct omap_overlay_manager *lcd2_mgr = NULL;
Chandrabhanu Mahapatrae86d4562012-06-29 10:43:13 +0530116 struct omap_overlay_manager *lcd3_mgr = NULL;
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300117 struct omap_overlay_manager *mgr = NULL;
118
Tomi Valkeinen0df8ad72012-06-25 11:20:13 +0300119 lcd_mgr = omap_dss_get_overlay_manager(OMAP_DSS_CHANNEL_LCD);
120 tv_mgr = omap_dss_get_overlay_manager(OMAP_DSS_CHANNEL_DIGIT);
Chandrabhanu Mahapatrae86d4562012-06-29 10:43:13 +0530121 if (dss_has_feature(FEAT_MGR_LCD3))
122 lcd3_mgr = omap_dss_get_overlay_manager(OMAP_DSS_CHANNEL_LCD3);
Sumit Semwal18faa1b2010-12-02 11:27:14 +0000123 if (dss_has_feature(FEAT_MGR_LCD2))
Tomi Valkeinen0df8ad72012-06-25 11:20:13 +0300124 lcd2_mgr = omap_dss_get_overlay_manager(OMAP_DSS_CHANNEL_LCD2);
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300125
Chandrabhanu Mahapatrae86d4562012-06-29 10:43:13 +0530126 if (dssdev->channel == OMAP_DSS_CHANNEL_LCD3) {
127 if (!lcd3_mgr->device || force) {
128 if (lcd3_mgr->device)
129 lcd3_mgr->unset_device(lcd3_mgr);
130 lcd3_mgr->set_device(lcd3_mgr, dssdev);
131 mgr = lcd3_mgr;
132 }
133 } else if (dssdev->channel == OMAP_DSS_CHANNEL_LCD2) {
Sumit Semwal18faa1b2010-12-02 11:27:14 +0000134 if (!lcd2_mgr->device || force) {
135 if (lcd2_mgr->device)
136 lcd2_mgr->unset_device(lcd2_mgr);
137 lcd2_mgr->set_device(lcd2_mgr, dssdev);
138 mgr = lcd2_mgr;
139 }
Mythri P Kb1196012011-03-08 17:15:54 +0530140 } else if (dssdev->type != OMAP_DISPLAY_TYPE_VENC
141 && dssdev->type != OMAP_DISPLAY_TYPE_HDMI) {
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300142 if (!lcd_mgr->device || force) {
143 if (lcd_mgr->device)
144 lcd_mgr->unset_device(lcd_mgr);
145 lcd_mgr->set_device(lcd_mgr, dssdev);
146 mgr = lcd_mgr;
147 }
148 }
149
Mythri P Kb1196012011-03-08 17:15:54 +0530150 if (dssdev->type == OMAP_DISPLAY_TYPE_VENC
151 || dssdev->type == OMAP_DISPLAY_TYPE_HDMI) {
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300152 if (!tv_mgr->device || force) {
153 if (tv_mgr->device)
154 tv_mgr->unset_device(tv_mgr);
155 tv_mgr->set_device(tv_mgr, dssdev);
156 mgr = tv_mgr;
157 }
158 }
159
160 if (mgr) {
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300161 dispc_runtime_get();
162
Archit Tanejaa0acb552010-09-15 19:20:00 +0530163 for (i = 0; i < dss_feat_get_num_ovls(); i++) {
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300164 struct omap_overlay *ovl;
165 ovl = omap_dss_get_overlay(i);
166 if (!ovl->manager || force) {
167 if (ovl->manager)
Tomi Valkeinenf77b3072011-11-15 12:11:11 +0200168 ovl->unset_manager(ovl);
169 ovl->set_manager(ovl, mgr);
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300170 }
171 }
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300172
173 dispc_runtime_put();
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300174 }
175}
176
177void dss_uninit_overlays(struct platform_device *pdev)
178{
Tomi Valkeinen58452342011-11-05 10:39:59 +0200179 int i;
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300180
Tomi Valkeinen58452342011-11-05 10:39:59 +0200181 for (i = 0; i < num_overlays; ++i) {
182 struct omap_overlay *ovl = &overlays[i];
Tomi Valkeinen91691512012-08-06 14:40:00 +0300183 dss_overlay_kobj_uninit(ovl);
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300184 }
185
Tomi Valkeinen58452342011-11-05 10:39:59 +0200186 kfree(overlays);
187 overlays = NULL;
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300188 num_overlays = 0;
189}
190
Tomi Valkeinen54540d42011-12-13 13:18:52 +0200191int dss_ovl_simple_check(struct omap_overlay *ovl,
192 const struct omap_overlay_info *info)
193{
194 if (info->paddr == 0) {
195 DSSERR("check_overlay: paddr cannot be 0\n");
196 return -EINVAL;
197 }
198
199 if ((ovl->caps & OMAP_DSS_OVL_CAP_SCALE) == 0) {
200 if (info->out_width != 0 && info->width != info->out_width) {
201 DSSERR("check_overlay: overlay %d doesn't support "
202 "scaling\n", ovl->id);
203 return -EINVAL;
204 }
205
206 if (info->out_height != 0 && info->height != info->out_height) {
207 DSSERR("check_overlay: overlay %d doesn't support "
208 "scaling\n", ovl->id);
209 return -EINVAL;
210 }
211 }
212
213 if ((ovl->supported_modes & info->color_mode) == 0) {
214 DSSERR("check_overlay: overlay %d doesn't support mode %d\n",
215 ovl->id, info->color_mode);
216 return -EINVAL;
217 }
218
219 if (info->zorder >= omap_dss_get_num_overlays()) {
220 DSSERR("check_overlay: zorder %d too high\n", info->zorder);
221 return -EINVAL;
222 }
223
Chandrabhanu Mahapatra65e006f2012-05-11 19:19:55 +0530224 if (dss_feat_rotation_type_supported(info->rotation_type) == 0) {
225 DSSERR("check_overlay: rotation type %d not supported\n",
226 info->rotation_type);
227 return -EINVAL;
228 }
229
Tomi Valkeinen54540d42011-12-13 13:18:52 +0200230 return 0;
231}
232
Archit Taneja228b2132012-04-27 01:22:28 +0530233int dss_ovl_check(struct omap_overlay *ovl, struct omap_overlay_info *info,
234 const struct omap_video_timings *mgr_timings)
Tomi Valkeinen6ac48d12011-12-08 10:32:37 +0200235{
236 u16 outw, outh;
237 u16 dw, dh;
238
Archit Taneja228b2132012-04-27 01:22:28 +0530239 dw = mgr_timings->x_res;
240 dh = mgr_timings->y_res;
Tomi Valkeinen6ac48d12011-12-08 10:32:37 +0200241
242 if ((ovl->caps & OMAP_DSS_OVL_CAP_SCALE) == 0) {
243 outw = info->width;
244 outh = info->height;
245 } else {
246 if (info->out_width == 0)
247 outw = info->width;
248 else
249 outw = info->out_width;
250
251 if (info->out_height == 0)
252 outh = info->height;
253 else
254 outh = info->out_height;
255 }
256
257 if (dw < info->pos_x + outw) {
258 DSSERR("overlay %d horizontally not inside the display area "
259 "(%d + %d >= %d)\n",
260 ovl->id, info->pos_x, outw, dw);
261 return -EINVAL;
262 }
263
264 if (dh < info->pos_y + outh) {
265 DSSERR("overlay %d vertically not inside the display area "
266 "(%d + %d >= %d)\n",
267 ovl->id, info->pos_y, outh, dh);
268 return -EINVAL;
269 }
270
271 return 0;
272}
Archit Taneja6c6f5102012-06-25 14:58:48 +0530273
274/*
275 * Checks if replication logic should be used. Only use when overlay is in
276 * RGB12U or RGB16 mode, and video port width interface is 18bpp or 24bpp
277 */
278bool dss_ovl_use_replication(struct dss_lcd_mgr_config config,
279 enum omap_color_mode mode)
280{
281 if (mode != OMAP_DSS_COLOR_RGB12U && mode != OMAP_DSS_COLOR_RGB16)
282 return false;
283
284 return config.video_port_width > 16;
285}