blob: 3a5e68a06af3a8e0f25ccf09c8ee1fb86cf8917c [file] [log] [blame]
Rob Clarkcd5351f2011-11-12 12:09:40 -06001/*
Rob Clark8bb0daf2013-02-11 12:43:09 -05002 * drivers/gpu/drm/omapdrm/omap_crtc.c
Rob Clarkcd5351f2011-11-12 12:09:40 -06003 *
4 * Copyright (C) 2011 Texas Instruments
5 * Author: Rob Clark <rob@ti.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
Laurent Pincharta42133a2015-01-17 19:09:26 +020020#include <linux/completion.h>
21
Laurent Pinchart69a12262015-03-05 21:38:16 +020022#include <drm/drm_atomic.h>
23#include <drm/drm_atomic_helper.h>
Laurent Pinchart2d278f52015-03-05 21:31:37 +020024#include <drm/drm_crtc.h>
25#include <drm/drm_crtc_helper.h>
Andy Grossb9ed9f02012-10-16 00:17:40 -050026#include <drm/drm_mode.h>
Daniel Vetter3cb9ae42014-10-29 10:03:57 +010027#include <drm/drm_plane_helper.h>
Laurent Pinchart2d278f52015-03-05 21:31:37 +020028
29#include "omap_drv.h"
Rob Clarkcd5351f2011-11-12 12:09:40 -060030
31#define to_omap_crtc(x) container_of(x, struct omap_crtc, base)
32
33struct omap_crtc {
34 struct drm_crtc base;
Rob Clarkf5f94542012-12-04 13:59:12 -060035
Rob Clarkbb5c2d92012-01-16 12:51:16 -060036 const char *name;
Rob Clarkf5f94542012-12-04 13:59:12 -060037 enum omap_channel channel;
Tomi Valkeinenc7aef122014-04-03 16:30:03 +030038 struct drm_encoder *current_encoder;
Rob Clarkf5f94542012-12-04 13:59:12 -060039
40 /*
41 * Temporary: eventually this will go away, but it is needed
42 * for now to keep the output's happy. (They only need
43 * mgr->id.) Eventually this will be replaced w/ something
44 * more common-panel-framework-y
45 */
Tomi Valkeinen04b1fc02013-05-14 10:55:19 +030046 struct omap_overlay_manager *mgr;
Rob Clarkf5f94542012-12-04 13:59:12 -060047
48 struct omap_video_timings timings;
Rob Clarkf5f94542012-12-04 13:59:12 -060049
Laurent Pincharta42133a2015-01-17 19:09:26 +020050 struct omap_drm_irq vblank_irq;
Rob Clarkf5f94542012-12-04 13:59:12 -060051 struct omap_drm_irq error_irq;
52
Laurent Pinchartfa16d262015-03-06 16:01:53 +020053 /* pending event */
54 struct drm_pending_vblank_event *event;
Laurent Pinchartc397cfd2015-01-25 22:42:30 +020055 wait_queue_head_t flip_wait;
Rob Clarkf5f94542012-12-04 13:59:12 -060056
Laurent Pincharta42133a2015-01-17 19:09:26 +020057 struct completion completion;
58
Tomi Valkeinena36af732015-02-26 15:20:24 +020059 bool ignore_digit_sync_lost;
Rob Clarkcd5351f2011-11-12 12:09:40 -060060};
61
Laurent Pinchart971fb3e2015-01-18 01:12:59 +020062/* -----------------------------------------------------------------------------
63 * Helper Functions
64 */
65
Archit Taneja0d8f3712013-03-26 19:15:19 +053066uint32_t pipe2vbl(struct drm_crtc *crtc)
67{
68 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
69
70 return dispc_mgr_get_vsync_irq(omap_crtc->channel);
71}
72
Laurent Pinchart971fb3e2015-01-18 01:12:59 +020073const struct omap_video_timings *omap_crtc_timings(struct drm_crtc *crtc)
74{
75 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
76 return &omap_crtc->timings;
77}
78
79enum omap_channel omap_crtc_channel(struct drm_crtc *crtc)
80{
81 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
82 return omap_crtc->channel;
83}
84
85/* -----------------------------------------------------------------------------
86 * DSS Manager Functions
87 */
88
Rob Clarkf5f94542012-12-04 13:59:12 -060089/*
90 * Manager-ops, callbacks from output when they need to configure
91 * the upstream part of the video pipe.
92 *
93 * Most of these we can ignore until we add support for command-mode
94 * panels.. for video-mode the crtc-helpers already do an adequate
95 * job of sequencing the setup of the video pipe in the proper order
96 */
97
Tomi Valkeinen04b1fc02013-05-14 10:55:19 +030098/* ovl-mgr-id -> crtc */
99static struct omap_crtc *omap_crtcs[8];
100
Rob Clarkf5f94542012-12-04 13:59:12 -0600101/* we can probably ignore these until we support command-mode panels: */
Laurent Pinchart4343f0f2015-03-05 22:01:02 +0200102static int omap_crtc_dss_connect(struct omap_overlay_manager *mgr,
Tomi Valkeinen1f68d9c2013-04-19 15:09:34 +0300103 struct omap_dss_device *dst)
Tomi Valkeinena7e71e72013-05-08 16:23:32 +0300104{
105 if (mgr->output)
106 return -EINVAL;
107
108 if ((mgr->supported_outputs & dst->id) == 0)
109 return -EINVAL;
110
111 dst->manager = mgr;
112 mgr->output = dst;
113
114 return 0;
115}
116
Laurent Pinchart4343f0f2015-03-05 22:01:02 +0200117static void omap_crtc_dss_disconnect(struct omap_overlay_manager *mgr,
Tomi Valkeinen1f68d9c2013-04-19 15:09:34 +0300118 struct omap_dss_device *dst)
Tomi Valkeinena7e71e72013-05-08 16:23:32 +0300119{
120 mgr->output->manager = NULL;
121 mgr->output = NULL;
122}
123
Laurent Pinchart4343f0f2015-03-05 22:01:02 +0200124static void omap_crtc_dss_start_update(struct omap_overlay_manager *mgr)
Rob Clarkf5f94542012-12-04 13:59:12 -0600125{
126}
127
Laurent Pinchart6cca4812015-04-15 18:55:27 +0300128/* Called only from omap_crtc_encoder_setup and suspend/resume handlers. */
Laurent Pinchart8472b572015-01-15 00:45:17 +0200129static void omap_crtc_set_enabled(struct drm_crtc *crtc, bool enable)
130{
131 struct drm_device *dev = crtc->dev;
132 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
133 enum omap_channel channel = omap_crtc->channel;
134 struct omap_irq_wait *wait;
135 u32 framedone_irq, vsync_irq;
136 int ret;
137
138 if (dispc_mgr_is_enabled(channel) == enable)
139 return;
140
Tomi Valkeinenef422282015-02-26 15:20:25 +0200141 if (omap_crtc->channel == OMAP_DSS_CHANNEL_DIGIT) {
142 /*
143 * Digit output produces some sync lost interrupts during the
144 * first frame when enabling, so we need to ignore those.
145 */
146 omap_crtc->ignore_digit_sync_lost = true;
147 }
Laurent Pinchart8472b572015-01-15 00:45:17 +0200148
149 framedone_irq = dispc_mgr_get_framedone_irq(channel);
150 vsync_irq = dispc_mgr_get_vsync_irq(channel);
151
152 if (enable) {
153 wait = omap_irq_wait_init(dev, vsync_irq, 1);
154 } else {
155 /*
156 * When we disable the digit output, we need to wait for
157 * FRAMEDONE to know that DISPC has finished with the output.
158 *
159 * OMAP2/3 does not have FRAMEDONE irq for digit output, and in
160 * that case we need to use vsync interrupt, and wait for both
161 * even and odd frames.
162 */
163
164 if (framedone_irq)
165 wait = omap_irq_wait_init(dev, framedone_irq, 1);
166 else
167 wait = omap_irq_wait_init(dev, vsync_irq, 2);
168 }
169
170 dispc_mgr_enable(channel, enable);
171
172 ret = omap_irq_wait(dev, wait, msecs_to_jiffies(100));
173 if (ret) {
174 dev_err(dev->dev, "%s: timeout waiting for %s\n",
175 omap_crtc->name, enable ? "enable" : "disable");
176 }
177
Tomi Valkeinenef422282015-02-26 15:20:25 +0200178 if (omap_crtc->channel == OMAP_DSS_CHANNEL_DIGIT) {
179 omap_crtc->ignore_digit_sync_lost = false;
180 /* make sure the irq handler sees the value above */
181 mb();
182 }
Laurent Pinchart8472b572015-01-15 00:45:17 +0200183}
184
Tomi Valkeinen506096a2014-04-03 13:11:54 +0300185
Laurent Pinchart4343f0f2015-03-05 22:01:02 +0200186static int omap_crtc_dss_enable(struct omap_overlay_manager *mgr)
Rob Clarkf5f94542012-12-04 13:59:12 -0600187{
Tomi Valkeinen506096a2014-04-03 13:11:54 +0300188 struct omap_crtc *omap_crtc = omap_crtcs[mgr->id];
Laurent Pinchartdee82602015-03-06 19:00:18 +0200189 struct omap_overlay_manager_info info;
Tomi Valkeinen506096a2014-04-03 13:11:54 +0300190
Laurent Pinchartdee82602015-03-06 19:00:18 +0200191 memset(&info, 0, sizeof(info));
192 info.default_color = 0x00000000;
193 info.trans_key = 0x00000000;
194 info.trans_key_type = OMAP_DSS_COLOR_KEY_GFX_DST;
195 info.trans_enabled = false;
196
197 dispc_mgr_setup(omap_crtc->channel, &info);
Tomi Valkeinen506096a2014-04-03 13:11:54 +0300198 dispc_mgr_set_timings(omap_crtc->channel,
199 &omap_crtc->timings);
Laurent Pinchart8472b572015-01-15 00:45:17 +0200200 omap_crtc_set_enabled(&omap_crtc->base, true);
Tomi Valkeinen506096a2014-04-03 13:11:54 +0300201
Rob Clarkf5f94542012-12-04 13:59:12 -0600202 return 0;
203}
204
Laurent Pinchart4343f0f2015-03-05 22:01:02 +0200205static void omap_crtc_dss_disable(struct omap_overlay_manager *mgr)
Rob Clarkf5f94542012-12-04 13:59:12 -0600206{
Tomi Valkeinen506096a2014-04-03 13:11:54 +0300207 struct omap_crtc *omap_crtc = omap_crtcs[mgr->id];
208
Laurent Pinchart8472b572015-01-15 00:45:17 +0200209 omap_crtc_set_enabled(&omap_crtc->base, false);
Rob Clarkf5f94542012-12-04 13:59:12 -0600210}
211
Laurent Pinchart4343f0f2015-03-05 22:01:02 +0200212static void omap_crtc_dss_set_timings(struct omap_overlay_manager *mgr,
Rob Clarkf5f94542012-12-04 13:59:12 -0600213 const struct omap_video_timings *timings)
214{
Tomi Valkeinen04b1fc02013-05-14 10:55:19 +0300215 struct omap_crtc *omap_crtc = omap_crtcs[mgr->id];
Rob Clarkf5f94542012-12-04 13:59:12 -0600216 DBG("%s", omap_crtc->name);
217 omap_crtc->timings = *timings;
Rob Clarkf5f94542012-12-04 13:59:12 -0600218}
219
Laurent Pinchart4343f0f2015-03-05 22:01:02 +0200220static void omap_crtc_dss_set_lcd_config(struct omap_overlay_manager *mgr,
Rob Clarkf5f94542012-12-04 13:59:12 -0600221 const struct dss_lcd_mgr_config *config)
222{
Tomi Valkeinen04b1fc02013-05-14 10:55:19 +0300223 struct omap_crtc *omap_crtc = omap_crtcs[mgr->id];
Rob Clarkf5f94542012-12-04 13:59:12 -0600224 DBG("%s", omap_crtc->name);
225 dispc_mgr_set_lcd_config(omap_crtc->channel, config);
226}
227
Laurent Pinchart4343f0f2015-03-05 22:01:02 +0200228static int omap_crtc_dss_register_framedone(
Rob Clarkf5f94542012-12-04 13:59:12 -0600229 struct omap_overlay_manager *mgr,
230 void (*handler)(void *), void *data)
231{
232 return 0;
233}
234
Laurent Pinchart4343f0f2015-03-05 22:01:02 +0200235static void omap_crtc_dss_unregister_framedone(
Rob Clarkf5f94542012-12-04 13:59:12 -0600236 struct omap_overlay_manager *mgr,
237 void (*handler)(void *), void *data)
238{
239}
240
241static const struct dss_mgr_ops mgr_ops = {
Laurent Pinchart4343f0f2015-03-05 22:01:02 +0200242 .connect = omap_crtc_dss_connect,
243 .disconnect = omap_crtc_dss_disconnect,
244 .start_update = omap_crtc_dss_start_update,
245 .enable = omap_crtc_dss_enable,
246 .disable = omap_crtc_dss_disable,
247 .set_timings = omap_crtc_dss_set_timings,
248 .set_lcd_config = omap_crtc_dss_set_lcd_config,
249 .register_framedone_handler = omap_crtc_dss_register_framedone,
250 .unregister_framedone_handler = omap_crtc_dss_unregister_framedone,
Rob Clarkf5f94542012-12-04 13:59:12 -0600251};
252
Laurent Pinchart971fb3e2015-01-18 01:12:59 +0200253/* -----------------------------------------------------------------------------
Laurent Pinchart1d5e5ea2015-01-18 16:57:36 +0200254 * Setup, Flush and Page Flip
Laurent Pinchart971fb3e2015-01-18 01:12:59 +0200255 */
256
Laurent Pinchartfa16d262015-03-06 16:01:53 +0200257static void omap_crtc_complete_page_flip(struct drm_crtc *crtc)
Laurent Pinchart15d02e92015-01-25 22:42:30 +0200258{
259 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
Laurent Pinchartfa16d262015-03-06 16:01:53 +0200260 struct drm_pending_vblank_event *event;
Laurent Pinchart15d02e92015-01-25 22:42:30 +0200261 struct drm_device *dev = crtc->dev;
Laurent Pinchartfa16d262015-03-06 16:01:53 +0200262 unsigned long flags;
Laurent Pinchart15d02e92015-01-25 22:42:30 +0200263
Laurent Pinchartfa16d262015-03-06 16:01:53 +0200264 spin_lock_irqsave(&dev->event_lock, flags);
265
266 event = omap_crtc->event;
267 omap_crtc->event = NULL;
268
269 if (event) {
Laurent Pinchart1cfe19a2015-04-16 22:35:20 +0300270 list_del(&event->base.link);
271
272 /*
273 * Queue the event for delivery if it's still linked to a file
274 * handle, otherwise just destroy it.
275 */
276 if (event->base.file_priv)
277 drm_crtc_send_vblank_event(crtc, event);
278 else
279 event->base.destroy(&event->base);
280
Laurent Pinchartfa16d262015-03-06 16:01:53 +0200281 wake_up(&omap_crtc->flip_wait);
282 drm_crtc_vblank_put(crtc);
Laurent Pinchart15d02e92015-01-25 22:42:30 +0200283 }
284
Laurent Pinchartfa16d262015-03-06 16:01:53 +0200285 spin_unlock_irqrestore(&dev->event_lock, flags);
Laurent Pinchartc397cfd2015-01-25 22:42:30 +0200286}
287
288static bool omap_crtc_page_flip_pending(struct drm_crtc *crtc)
289{
290 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
291 struct drm_device *dev = crtc->dev;
292 unsigned long flags;
293 bool pending;
294
295 spin_lock_irqsave(&dev->event_lock, flags);
Laurent Pinchartfa16d262015-03-06 16:01:53 +0200296 pending = omap_crtc->event != NULL;
Laurent Pinchartc397cfd2015-01-25 22:42:30 +0200297 spin_unlock_irqrestore(&dev->event_lock, flags);
298
299 return pending;
300}
301
302static void omap_crtc_wait_page_flip(struct drm_crtc *crtc)
303{
304 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
Laurent Pinchartc397cfd2015-01-25 22:42:30 +0200305
306 if (wait_event_timeout(omap_crtc->flip_wait,
307 !omap_crtc_page_flip_pending(crtc),
308 msecs_to_jiffies(50)))
309 return;
310
311 dev_warn(crtc->dev->dev, "page flip timeout!\n");
312
Laurent Pinchartfa16d262015-03-06 16:01:53 +0200313 omap_crtc_complete_page_flip(crtc);
Laurent Pinchart15d02e92015-01-25 22:42:30 +0200314}
315
Laurent Pinchart971fb3e2015-01-18 01:12:59 +0200316static void omap_crtc_error_irq(struct omap_drm_irq *irq, uint32_t irqstatus)
317{
318 struct omap_crtc *omap_crtc =
319 container_of(irq, struct omap_crtc, error_irq);
Tomi Valkeinena36af732015-02-26 15:20:24 +0200320
321 if (omap_crtc->ignore_digit_sync_lost) {
322 irqstatus &= ~DISPC_IRQ_SYNC_LOST_DIGIT;
323 if (!irqstatus)
324 return;
325 }
326
Tomi Valkeinen3b143fc2014-11-19 12:50:13 +0200327 DRM_ERROR_RATELIMITED("%s: errors: %08x\n", omap_crtc->name, irqstatus);
Laurent Pinchart971fb3e2015-01-18 01:12:59 +0200328}
329
Laurent Pincharta42133a2015-01-17 19:09:26 +0200330static void omap_crtc_vblank_irq(struct omap_drm_irq *irq, uint32_t irqstatus)
Laurent Pinchart971fb3e2015-01-18 01:12:59 +0200331{
332 struct omap_crtc *omap_crtc =
Laurent Pincharta42133a2015-01-17 19:09:26 +0200333 container_of(irq, struct omap_crtc, vblank_irq);
334 struct drm_device *dev = omap_crtc->base.dev;
Laurent Pinchart971fb3e2015-01-18 01:12:59 +0200335
Laurent Pincharta42133a2015-01-17 19:09:26 +0200336 if (dispc_mgr_go_busy(omap_crtc->channel))
337 return;
338
339 DBG("%s: apply done", omap_crtc->name);
340 __omap_irq_unregister(dev, &omap_crtc->vblank_irq);
341
Laurent Pincharta42133a2015-01-17 19:09:26 +0200342 /* wakeup userspace */
Laurent Pinchartfa16d262015-03-06 16:01:53 +0200343 omap_crtc_complete_page_flip(&omap_crtc->base);
Laurent Pincharta42133a2015-01-17 19:09:26 +0200344
345 complete(&omap_crtc->completion);
Laurent Pinchart971fb3e2015-01-18 01:12:59 +0200346}
347
Laurent Pinchartbec10a22015-04-15 21:47:34 +0300348static int omap_crtc_flush(struct drm_crtc *crtc)
Laurent Pinchart971fb3e2015-01-18 01:12:59 +0200349{
350 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
Laurent Pincharta42133a2015-01-17 19:09:26 +0200351
352 DBG("%s: GO", omap_crtc->name);
Laurent Pinchart971fb3e2015-01-18 01:12:59 +0200353
Laurent Pincharta42133a2015-01-17 19:09:26 +0200354 WARN_ON(omap_crtc->vblank_irq.registered);
Laurent Pinchart971fb3e2015-01-18 01:12:59 +0200355
Laurent Pincharta42133a2015-01-17 19:09:26 +0200356 if (dispc_mgr_is_enabled(omap_crtc->channel)) {
357 dispc_mgr_go(omap_crtc->channel);
358 omap_irq_register(crtc->dev, &omap_crtc->vblank_irq);
Laurent Pinchart971fb3e2015-01-18 01:12:59 +0200359
Laurent Pincharta42133a2015-01-17 19:09:26 +0200360 WARN_ON(!wait_for_completion_timeout(&omap_crtc->completion,
361 msecs_to_jiffies(100)));
362 reinit_completion(&omap_crtc->completion);
363 }
364
Laurent Pincharta42133a2015-01-17 19:09:26 +0200365 return 0;
366}
367
Laurent Pinchart6cca4812015-04-15 18:55:27 +0300368static void omap_crtc_encoder_setup(struct drm_crtc *crtc, bool enable)
Laurent Pincharta42133a2015-01-17 19:09:26 +0200369{
370 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
Laurent Pinchart971fb3e2015-01-18 01:12:59 +0200371 struct omap_drm_private *priv = crtc->dev->dev_private;
372 struct drm_encoder *encoder = NULL;
373 unsigned int i;
374
Laurent Pinchart6cca4812015-04-15 18:55:27 +0300375 DBG("%s: enable=%d", omap_crtc->name, enable);
Laurent Pinchart971fb3e2015-01-18 01:12:59 +0200376
377 for (i = 0; i < priv->num_encoders; i++) {
378 if (priv->encoders[i]->crtc == crtc) {
379 encoder = priv->encoders[i];
380 break;
381 }
382 }
383
384 if (omap_crtc->current_encoder && encoder != omap_crtc->current_encoder)
385 omap_encoder_set_enabled(omap_crtc->current_encoder, false);
386
387 omap_crtc->current_encoder = encoder;
388
Laurent Pinchart6cca4812015-04-15 18:55:27 +0300389 if (encoder) {
390 omap_encoder_set_enabled(encoder, false);
391 if (enable) {
Laurent Pinchart971fb3e2015-01-18 01:12:59 +0200392 omap_encoder_update(encoder, omap_crtc->mgr,
Laurent Pinchart6cca4812015-04-15 18:55:27 +0300393 &omap_crtc->timings);
Laurent Pinchart971fb3e2015-01-18 01:12:59 +0200394 omap_encoder_set_enabled(encoder, true);
395 }
396 }
Laurent Pinchart971fb3e2015-01-18 01:12:59 +0200397}
398
399/* -----------------------------------------------------------------------------
400 * CRTC Functions
Rob Clarkf5f94542012-12-04 13:59:12 -0600401 */
402
Rob Clarkcd5351f2011-11-12 12:09:40 -0600403static void omap_crtc_destroy(struct drm_crtc *crtc)
404{
405 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
Rob Clarkf5f94542012-12-04 13:59:12 -0600406
407 DBG("%s", omap_crtc->name);
408
Laurent Pincharta42133a2015-01-17 19:09:26 +0200409 WARN_ON(omap_crtc->vblank_irq.registered);
Rob Clarkf5f94542012-12-04 13:59:12 -0600410 omap_irq_unregister(crtc->dev, &omap_crtc->error_irq);
411
Rob Clarkcd5351f2011-11-12 12:09:40 -0600412 drm_crtc_cleanup(crtc);
Rob Clarkf5f94542012-12-04 13:59:12 -0600413
Rob Clarkcd5351f2011-11-12 12:09:40 -0600414 kfree(omap_crtc);
415}
416
Rob Clarkcd5351f2011-11-12 12:09:40 -0600417static bool omap_crtc_mode_fixup(struct drm_crtc *crtc,
Laurent Pincharte811f5a2012-07-17 17:56:50 +0200418 const struct drm_display_mode *mode,
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600419 struct drm_display_mode *adjusted_mode)
Rob Clarkcd5351f2011-11-12 12:09:40 -0600420{
Rob Clarkcd5351f2011-11-12 12:09:40 -0600421 return true;
422}
423
Laurent Pinchartf1d57fb2015-03-05 22:13:22 +0200424static void omap_crtc_enable(struct drm_crtc *crtc)
425{
426 struct omap_drm_private *priv = crtc->dev->dev_private;
427 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
428 unsigned int i;
429
430 DBG("%s", omap_crtc->name);
431
Laurent Pinchartf1d57fb2015-03-05 22:13:22 +0200432 /* Enable all planes associated with the CRTC. */
433 for (i = 0; i < priv->num_planes; i++) {
434 struct drm_plane *plane = priv->planes[i];
435
436 if (plane->crtc == crtc)
Laurent Pinchartedc72552015-03-06 19:18:56 +0200437 WARN_ON(omap_plane_setup(plane));
Laurent Pinchartf1d57fb2015-03-05 22:13:22 +0200438 }
439
Laurent Pinchart6cca4812015-04-15 18:55:27 +0300440 omap_crtc_encoder_setup(crtc, true);
Laurent Pinchartf1d57fb2015-03-05 22:13:22 +0200441 omap_crtc_flush(crtc);
442
Laurent Pinchartf1d57fb2015-03-05 22:13:22 +0200443 drm_crtc_vblank_on(crtc);
Laurent Pinchartf1d57fb2015-03-05 22:13:22 +0200444}
445
446static void omap_crtc_disable(struct drm_crtc *crtc)
447{
448 struct omap_drm_private *priv = crtc->dev->dev_private;
449 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
450 unsigned int i;
451
452 DBG("%s", omap_crtc->name);
453
Laurent Pinchartf1d57fb2015-03-05 22:13:22 +0200454 omap_crtc_wait_page_flip(crtc);
Laurent Pinchartf1d57fb2015-03-05 22:13:22 +0200455 drm_crtc_vblank_off(crtc);
Laurent Pinchartf1d57fb2015-03-05 22:13:22 +0200456
457 /* Disable all planes associated with the CRTC. */
458 for (i = 0; i < priv->num_planes; i++) {
459 struct drm_plane *plane = priv->planes[i];
460
461 if (plane->crtc == crtc)
Laurent Pinchartedc72552015-03-06 19:18:56 +0200462 WARN_ON(omap_plane_setup(plane));
Laurent Pinchartf1d57fb2015-03-05 22:13:22 +0200463 }
464
Laurent Pinchart6cca4812015-04-15 18:55:27 +0300465 omap_crtc_encoder_setup(crtc, false);
Laurent Pinchartf1d57fb2015-03-05 22:13:22 +0200466 omap_crtc_flush(crtc);
467}
468
Laurent Pinchartf7a73b62015-03-05 13:45:14 +0200469static void omap_crtc_mode_set_nofb(struct drm_crtc *crtc)
Rob Clarkcd5351f2011-11-12 12:09:40 -0600470{
471 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
Laurent Pinchartf7a73b62015-03-05 13:45:14 +0200472 struct drm_display_mode *mode = &crtc->state->adjusted_mode;
Rob Clarkf5f94542012-12-04 13:59:12 -0600473
474 DBG("%s: set mode: %d:\"%s\" %d %d %d %d %d %d %d %d %d %d 0x%x 0x%x",
Laurent Pinchartf7a73b62015-03-05 13:45:14 +0200475 omap_crtc->name, mode->base.id, mode->name,
476 mode->vrefresh, mode->clock,
477 mode->hdisplay, mode->hsync_start, mode->hsync_end, mode->htotal,
478 mode->vdisplay, mode->vsync_start, mode->vsync_end, mode->vtotal,
479 mode->type, mode->flags);
Rob Clarkf5f94542012-12-04 13:59:12 -0600480
481 copy_timings_drm_to_omap(&omap_crtc->timings, mode);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600482}
483
Laurent Pinchartde8e4102015-03-05 13:39:56 +0200484static void omap_crtc_atomic_begin(struct drm_crtc *crtc)
485{
Laurent Pinchartfa16d262015-03-06 16:01:53 +0200486 struct drm_pending_vblank_event *event = crtc->state->event;
487 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
488 struct drm_device *dev = crtc->dev;
489 unsigned long flags;
490
Laurent Pinchartfa16d262015-03-06 16:01:53 +0200491 if (event) {
492 WARN_ON(omap_crtc->event);
493 WARN_ON(drm_crtc_vblank_get(crtc) != 0);
494
495 spin_lock_irqsave(&dev->event_lock, flags);
496 omap_crtc->event = event;
497 spin_unlock_irqrestore(&dev->event_lock, flags);
498 }
Laurent Pinchartde8e4102015-03-05 13:39:56 +0200499}
500
501static void omap_crtc_atomic_flush(struct drm_crtc *crtc)
502{
503 omap_crtc_flush(crtc);
504
Laurent Pinchartafc34932015-03-06 18:35:16 +0200505 crtc->invert_dimensions = !!(crtc->primary->state->rotation &
506 (BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270)));
Laurent Pinchartde8e4102015-03-05 13:39:56 +0200507}
508
Laurent Pinchartafc34932015-03-06 18:35:16 +0200509static int omap_crtc_atomic_set_property(struct drm_crtc *crtc,
510 struct drm_crtc_state *state,
511 struct drm_property *property,
512 uint64_t val)
Rob Clark3c810c62012-08-15 15:18:01 -0500513{
Laurent Pinchartafc34932015-03-06 18:35:16 +0200514 struct drm_plane_state *plane_state;
515 struct drm_plane *plane = crtc->primary;
Rob Clark1e0fdfc2012-09-04 11:36:20 -0500516
Laurent Pinchartafc34932015-03-06 18:35:16 +0200517 /*
518 * Delegate property set to the primary plane. Get the plane state and
519 * set the property directly.
520 */
521
522 plane_state = drm_atomic_get_plane_state(state->state, plane);
523 if (!plane_state)
524 return -EINVAL;
525
526 return drm_atomic_plane_set_property(plane, plane_state, property, val);
527}
528
529static int omap_crtc_atomic_get_property(struct drm_crtc *crtc,
530 const struct drm_crtc_state *state,
531 struct drm_property *property,
532 uint64_t *val)
533{
534 /*
535 * Delegate property get to the primary plane. The
536 * drm_atomic_plane_get_property() function isn't exported, but can be
537 * called through drm_object_property_get_value() as that will call
538 * drm_atomic_get_property() for atomic drivers.
539 */
540 return drm_object_property_get_value(&crtc->primary->base, property,
541 val);
Rob Clark3c810c62012-08-15 15:18:01 -0500542}
543
Rob Clarkcd5351f2011-11-12 12:09:40 -0600544static const struct drm_crtc_funcs omap_crtc_funcs = {
Laurent Pinchart69a12262015-03-05 21:38:16 +0200545 .reset = drm_atomic_helper_crtc_reset,
Laurent Pinchart9416c9d2015-03-05 21:54:54 +0200546 .set_config = drm_atomic_helper_set_config,
Rob Clarkcd5351f2011-11-12 12:09:40 -0600547 .destroy = omap_crtc_destroy,
Laurent Pinchartfa16d262015-03-06 16:01:53 +0200548 .page_flip = drm_atomic_helper_page_flip,
Laurent Pinchartafc34932015-03-06 18:35:16 +0200549 .set_property = drm_atomic_helper_crtc_set_property,
Laurent Pinchart69a12262015-03-05 21:38:16 +0200550 .atomic_duplicate_state = drm_atomic_helper_crtc_duplicate_state,
551 .atomic_destroy_state = drm_atomic_helper_crtc_destroy_state,
Laurent Pinchartafc34932015-03-06 18:35:16 +0200552 .atomic_set_property = omap_crtc_atomic_set_property,
553 .atomic_get_property = omap_crtc_atomic_get_property,
Rob Clarkcd5351f2011-11-12 12:09:40 -0600554};
555
556static const struct drm_crtc_helper_funcs omap_crtc_helper_funcs = {
Rob Clarkcd5351f2011-11-12 12:09:40 -0600557 .mode_fixup = omap_crtc_mode_fixup,
Laurent Pinchartf7a73b62015-03-05 13:45:14 +0200558 .mode_set_nofb = omap_crtc_mode_set_nofb,
Laurent Pinchartf1d57fb2015-03-05 22:13:22 +0200559 .disable = omap_crtc_disable,
560 .enable = omap_crtc_enable,
Laurent Pinchartde8e4102015-03-05 13:39:56 +0200561 .atomic_begin = omap_crtc_atomic_begin,
562 .atomic_flush = omap_crtc_atomic_flush,
Rob Clarkcd5351f2011-11-12 12:09:40 -0600563};
564
Laurent Pinchart971fb3e2015-01-18 01:12:59 +0200565/* -----------------------------------------------------------------------------
566 * Init and Cleanup
567 */
Tomi Valkeinene2f8fd72014-04-02 14:31:57 +0300568
Rob Clarkf5f94542012-12-04 13:59:12 -0600569static const char *channel_names[] = {
Laurent Pinchart222025e2015-01-11 00:02:07 +0200570 [OMAP_DSS_CHANNEL_LCD] = "lcd",
571 [OMAP_DSS_CHANNEL_DIGIT] = "tv",
572 [OMAP_DSS_CHANNEL_LCD2] = "lcd2",
573 [OMAP_DSS_CHANNEL_LCD3] = "lcd3",
Rob Clarkf5f94542012-12-04 13:59:12 -0600574};
575
Tomi Valkeinen04b1fc02013-05-14 10:55:19 +0300576void omap_crtc_pre_init(void)
577{
578 dss_install_mgr_ops(&mgr_ops);
579}
580
Archit Taneja3a01ab22014-01-02 14:49:51 +0530581void omap_crtc_pre_uninit(void)
582{
583 dss_uninstall_mgr_ops();
584}
585
Rob Clarkcd5351f2011-11-12 12:09:40 -0600586/* initialize crtc */
587struct drm_crtc *omap_crtc_init(struct drm_device *dev,
Rob Clarkf5f94542012-12-04 13:59:12 -0600588 struct drm_plane *plane, enum omap_channel channel, int id)
Rob Clarkcd5351f2011-11-12 12:09:40 -0600589{
590 struct drm_crtc *crtc = NULL;
Rob Clarkf5f94542012-12-04 13:59:12 -0600591 struct omap_crtc *omap_crtc;
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200592 int ret;
Rob Clarkcd5351f2011-11-12 12:09:40 -0600593
Rob Clarkf5f94542012-12-04 13:59:12 -0600594 DBG("%s", channel_names[channel]);
595
596 omap_crtc = kzalloc(sizeof(*omap_crtc), GFP_KERNEL);
Joe Perches78110bb2013-02-11 09:41:29 -0800597 if (!omap_crtc)
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200598 return NULL;
Rob Clarkcd5351f2011-11-12 12:09:40 -0600599
Rob Clarkcd5351f2011-11-12 12:09:40 -0600600 crtc = &omap_crtc->base;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600601
Laurent Pinchartc397cfd2015-01-25 22:42:30 +0200602 init_waitqueue_head(&omap_crtc->flip_wait);
Laurent Pincharta42133a2015-01-17 19:09:26 +0200603 init_completion(&omap_crtc->completion);
Rob Clarkf5f94542012-12-04 13:59:12 -0600604
Archit Taneja0d8f3712013-03-26 19:15:19 +0530605 omap_crtc->channel = channel;
Archit Taneja0d8f3712013-03-26 19:15:19 +0530606 omap_crtc->name = channel_names[channel];
Archit Taneja0d8f3712013-03-26 19:15:19 +0530607
Laurent Pincharta42133a2015-01-17 19:09:26 +0200608 omap_crtc->vblank_irq.irqmask = pipe2vbl(crtc);
609 omap_crtc->vblank_irq.irq = omap_crtc_vblank_irq;
Rob Clarkf5f94542012-12-04 13:59:12 -0600610
611 omap_crtc->error_irq.irqmask =
612 dispc_mgr_get_sync_lost_irq(channel);
613 omap_crtc->error_irq.irq = omap_crtc_error_irq;
614 omap_irq_register(dev, &omap_crtc->error_irq);
615
Rob Clarkf5f94542012-12-04 13:59:12 -0600616 /* temporary: */
Tomi Valkeinen04b1fc02013-05-14 10:55:19 +0300617 omap_crtc->mgr = omap_dss_get_overlay_manager(channel);
Rob Clarkf5f94542012-12-04 13:59:12 -0600618
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200619 ret = drm_crtc_init_with_planes(dev, crtc, plane, NULL,
620 &omap_crtc_funcs);
621 if (ret < 0) {
622 kfree(omap_crtc);
623 return NULL;
624 }
625
Rob Clarkcd5351f2011-11-12 12:09:40 -0600626 drm_crtc_helper_add(crtc, &omap_crtc_helper_funcs);
627
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200628 omap_plane_install_properties(crtc->primary, &crtc->base);
Rob Clark3c810c62012-08-15 15:18:01 -0500629
Tomi Valkeinen04b1fc02013-05-14 10:55:19 +0300630 omap_crtcs[channel] = omap_crtc;
631
Rob Clarkcd5351f2011-11-12 12:09:40 -0600632 return crtc;
Rob Clarkcd5351f2011-11-12 12:09:40 -0600633}