Loading...
1/*
2 * drivers/gpu/drm/omapdrm/omap_crtc.c
3 *
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
20#include <drm/drm_atomic.h>
21#include <drm/drm_atomic_helper.h>
22#include <drm/drm_crtc.h>
23#include <drm/drm_crtc_helper.h>
24#include <drm/drm_mode.h>
25#include <drm/drm_plane_helper.h>
26
27#include "omap_drv.h"
28
29#define to_omap_crtc(x) container_of(x, struct omap_crtc, base)
30
31struct omap_crtc {
32 struct drm_crtc base;
33
34 const char *name;
35 enum omap_channel channel;
36
37 struct omap_video_timings timings;
38
39 struct omap_drm_irq vblank_irq;
40 struct omap_drm_irq error_irq;
41
42 bool ignore_digit_sync_lost;
43
44 bool pending;
45 wait_queue_head_t pending_wait;
46};
47
48/* -----------------------------------------------------------------------------
49 * Helper Functions
50 */
51
52uint32_t pipe2vbl(struct drm_crtc *crtc)
53{
54 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
55
56 return dispc_mgr_get_vsync_irq(omap_crtc->channel);
57}
58
59struct omap_video_timings *omap_crtc_timings(struct drm_crtc *crtc)
60{
61 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
62 return &omap_crtc->timings;
63}
64
65enum omap_channel omap_crtc_channel(struct drm_crtc *crtc)
66{
67 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
68 return omap_crtc->channel;
69}
70
71int omap_crtc_wait_pending(struct drm_crtc *crtc)
72{
73 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
74
75 /*
76 * Timeout is set to a "sufficiently" high value, which should cover
77 * a single frame refresh even on slower displays.
78 */
79 return wait_event_timeout(omap_crtc->pending_wait,
80 !omap_crtc->pending,
81 msecs_to_jiffies(250));
82}
83
84/* -----------------------------------------------------------------------------
85 * DSS Manager Functions
86 */
87
88/*
89 * Manager-ops, callbacks from output when they need to configure
90 * the upstream part of the video pipe.
91 *
92 * Most of these we can ignore until we add support for command-mode
93 * panels.. for video-mode the crtc-helpers already do an adequate
94 * job of sequencing the setup of the video pipe in the proper order
95 */
96
97/* ovl-mgr-id -> crtc */
98static struct omap_crtc *omap_crtcs[8];
99static struct omap_dss_device *omap_crtc_output[8];
100
101/* we can probably ignore these until we support command-mode panels: */
102static int omap_crtc_dss_connect(enum omap_channel channel,
103 struct omap_dss_device *dst)
104{
105 if (omap_crtc_output[channel])
106 return -EINVAL;
107
108 if ((dispc_mgr_get_supported_outputs(channel) & dst->id) == 0)
109 return -EINVAL;
110
111 omap_crtc_output[channel] = dst;
112 dst->dispc_channel_connected = true;
113
114 return 0;
115}
116
117static void omap_crtc_dss_disconnect(enum omap_channel channel,
118 struct omap_dss_device *dst)
119{
120 omap_crtc_output[channel] = NULL;
121 dst->dispc_channel_connected = false;
122}
123
124static void omap_crtc_dss_start_update(enum omap_channel channel)
125{
126}
127
128/* Called only from the encoder enable/disable and suspend/resume handlers. */
129static 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 (omap_crtc_output[channel]->output_type == OMAP_DISPLAY_TYPE_HDMI) {
139 dispc_mgr_enable(channel, enable);
140 return;
141 }
142
143 if (dispc_mgr_is_enabled(channel) == enable)
144 return;
145
146 if (omap_crtc->channel == OMAP_DSS_CHANNEL_DIGIT) {
147 /*
148 * Digit output produces some sync lost interrupts during the
149 * first frame when enabling, so we need to ignore those.
150 */
151 omap_crtc->ignore_digit_sync_lost = true;
152 }
153
154 framedone_irq = dispc_mgr_get_framedone_irq(channel);
155 vsync_irq = dispc_mgr_get_vsync_irq(channel);
156
157 if (enable) {
158 wait = omap_irq_wait_init(dev, vsync_irq, 1);
159 } else {
160 /*
161 * When we disable the digit output, we need to wait for
162 * FRAMEDONE to know that DISPC has finished with the output.
163 *
164 * OMAP2/3 does not have FRAMEDONE irq for digit output, and in
165 * that case we need to use vsync interrupt, and wait for both
166 * even and odd frames.
167 */
168
169 if (framedone_irq)
170 wait = omap_irq_wait_init(dev, framedone_irq, 1);
171 else
172 wait = omap_irq_wait_init(dev, vsync_irq, 2);
173 }
174
175 dispc_mgr_enable(channel, enable);
176
177 ret = omap_irq_wait(dev, wait, msecs_to_jiffies(100));
178 if (ret) {
179 dev_err(dev->dev, "%s: timeout waiting for %s\n",
180 omap_crtc->name, enable ? "enable" : "disable");
181 }
182
183 if (omap_crtc->channel == OMAP_DSS_CHANNEL_DIGIT) {
184 omap_crtc->ignore_digit_sync_lost = false;
185 /* make sure the irq handler sees the value above */
186 mb();
187 }
188}
189
190
191static int omap_crtc_dss_enable(enum omap_channel channel)
192{
193 struct omap_crtc *omap_crtc = omap_crtcs[channel];
194 struct omap_overlay_manager_info info;
195
196 memset(&info, 0, sizeof(info));
197 info.default_color = 0x00000000;
198 info.trans_key = 0x00000000;
199 info.trans_key_type = OMAP_DSS_COLOR_KEY_GFX_DST;
200 info.trans_enabled = false;
201
202 dispc_mgr_setup(omap_crtc->channel, &info);
203 dispc_mgr_set_timings(omap_crtc->channel,
204 &omap_crtc->timings);
205 omap_crtc_set_enabled(&omap_crtc->base, true);
206
207 return 0;
208}
209
210static void omap_crtc_dss_disable(enum omap_channel channel)
211{
212 struct omap_crtc *omap_crtc = omap_crtcs[channel];
213
214 omap_crtc_set_enabled(&omap_crtc->base, false);
215}
216
217static void omap_crtc_dss_set_timings(enum omap_channel channel,
218 const struct omap_video_timings *timings)
219{
220 struct omap_crtc *omap_crtc = omap_crtcs[channel];
221 DBG("%s", omap_crtc->name);
222 omap_crtc->timings = *timings;
223}
224
225static void omap_crtc_dss_set_lcd_config(enum omap_channel channel,
226 const struct dss_lcd_mgr_config *config)
227{
228 struct omap_crtc *omap_crtc = omap_crtcs[channel];
229 DBG("%s", omap_crtc->name);
230 dispc_mgr_set_lcd_config(omap_crtc->channel, config);
231}
232
233static int omap_crtc_dss_register_framedone(
234 enum omap_channel channel,
235 void (*handler)(void *), void *data)
236{
237 return 0;
238}
239
240static void omap_crtc_dss_unregister_framedone(
241 enum omap_channel channel,
242 void (*handler)(void *), void *data)
243{
244}
245
246static const struct dss_mgr_ops mgr_ops = {
247 .connect = omap_crtc_dss_connect,
248 .disconnect = omap_crtc_dss_disconnect,
249 .start_update = omap_crtc_dss_start_update,
250 .enable = omap_crtc_dss_enable,
251 .disable = omap_crtc_dss_disable,
252 .set_timings = omap_crtc_dss_set_timings,
253 .set_lcd_config = omap_crtc_dss_set_lcd_config,
254 .register_framedone_handler = omap_crtc_dss_register_framedone,
255 .unregister_framedone_handler = omap_crtc_dss_unregister_framedone,
256};
257
258/* -----------------------------------------------------------------------------
259 * Setup, Flush and Page Flip
260 */
261
262static void omap_crtc_complete_page_flip(struct drm_crtc *crtc)
263{
264 struct drm_pending_vblank_event *event;
265 struct drm_device *dev = crtc->dev;
266 unsigned long flags;
267
268 event = crtc->state->event;
269
270 if (!event)
271 return;
272
273 spin_lock_irqsave(&dev->event_lock, flags);
274 drm_crtc_send_vblank_event(crtc, event);
275 spin_unlock_irqrestore(&dev->event_lock, flags);
276}
277
278static void omap_crtc_error_irq(struct omap_drm_irq *irq, uint32_t irqstatus)
279{
280 struct omap_crtc *omap_crtc =
281 container_of(irq, struct omap_crtc, error_irq);
282
283 if (omap_crtc->ignore_digit_sync_lost) {
284 irqstatus &= ~DISPC_IRQ_SYNC_LOST_DIGIT;
285 if (!irqstatus)
286 return;
287 }
288
289 DRM_ERROR_RATELIMITED("%s: errors: %08x\n", omap_crtc->name, irqstatus);
290}
291
292static void omap_crtc_vblank_irq(struct omap_drm_irq *irq, uint32_t irqstatus)
293{
294 struct omap_crtc *omap_crtc =
295 container_of(irq, struct omap_crtc, vblank_irq);
296 struct drm_device *dev = omap_crtc->base.dev;
297
298 if (dispc_mgr_go_busy(omap_crtc->channel))
299 return;
300
301 DBG("%s: apply done", omap_crtc->name);
302
303 __omap_irq_unregister(dev, &omap_crtc->vblank_irq);
304
305 rmb();
306 WARN_ON(!omap_crtc->pending);
307 omap_crtc->pending = false;
308 wmb();
309
310 /* wake up userspace */
311 omap_crtc_complete_page_flip(&omap_crtc->base);
312
313 /* wake up omap_atomic_complete */
314 wake_up(&omap_crtc->pending_wait);
315}
316
317/* -----------------------------------------------------------------------------
318 * CRTC Functions
319 */
320
321static void omap_crtc_destroy(struct drm_crtc *crtc)
322{
323 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
324
325 DBG("%s", omap_crtc->name);
326
327 WARN_ON(omap_crtc->vblank_irq.registered);
328 omap_irq_unregister(crtc->dev, &omap_crtc->error_irq);
329
330 drm_crtc_cleanup(crtc);
331
332 kfree(omap_crtc);
333}
334
335static void omap_crtc_enable(struct drm_crtc *crtc)
336{
337 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
338
339 DBG("%s", omap_crtc->name);
340
341 rmb();
342 WARN_ON(omap_crtc->pending);
343 omap_crtc->pending = true;
344 wmb();
345
346 omap_irq_register(crtc->dev, &omap_crtc->vblank_irq);
347
348 drm_crtc_vblank_on(crtc);
349}
350
351static void omap_crtc_disable(struct drm_crtc *crtc)
352{
353 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
354
355 DBG("%s", omap_crtc->name);
356
357 drm_crtc_vblank_off(crtc);
358}
359
360static void omap_crtc_mode_set_nofb(struct drm_crtc *crtc)
361{
362 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
363 struct drm_display_mode *mode = &crtc->state->adjusted_mode;
364
365 DBG("%s: set mode: %d:\"%s\" %d %d %d %d %d %d %d %d %d %d 0x%x 0x%x",
366 omap_crtc->name, mode->base.id, mode->name,
367 mode->vrefresh, mode->clock,
368 mode->hdisplay, mode->hsync_start, mode->hsync_end, mode->htotal,
369 mode->vdisplay, mode->vsync_start, mode->vsync_end, mode->vtotal,
370 mode->type, mode->flags);
371
372 copy_timings_drm_to_omap(&omap_crtc->timings, mode);
373}
374
375static void omap_crtc_atomic_begin(struct drm_crtc *crtc,
376 struct drm_crtc_state *old_crtc_state)
377{
378}
379
380static void omap_crtc_atomic_flush(struct drm_crtc *crtc,
381 struct drm_crtc_state *old_crtc_state)
382{
383 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
384
385 WARN_ON(omap_crtc->vblank_irq.registered);
386
387 if (dispc_mgr_is_enabled(omap_crtc->channel)) {
388
389 DBG("%s: GO", omap_crtc->name);
390
391 rmb();
392 WARN_ON(omap_crtc->pending);
393 omap_crtc->pending = true;
394 wmb();
395
396 dispc_mgr_go(omap_crtc->channel);
397 omap_irq_register(crtc->dev, &omap_crtc->vblank_irq);
398 }
399}
400
401static bool omap_crtc_is_plane_prop(struct drm_device *dev,
402 struct drm_property *property)
403{
404 struct omap_drm_private *priv = dev->dev_private;
405
406 return property == priv->zorder_prop ||
407 property == dev->mode_config.rotation_property;
408}
409
410static int omap_crtc_atomic_set_property(struct drm_crtc *crtc,
411 struct drm_crtc_state *state,
412 struct drm_property *property,
413 uint64_t val)
414{
415 struct drm_device *dev = crtc->dev;
416
417 if (omap_crtc_is_plane_prop(dev, property)) {
418 struct drm_plane_state *plane_state;
419 struct drm_plane *plane = crtc->primary;
420
421 /*
422 * Delegate property set to the primary plane. Get the plane
423 * state and set the property directly.
424 */
425
426 plane_state = drm_atomic_get_plane_state(state->state, plane);
427 if (IS_ERR(plane_state))
428 return PTR_ERR(plane_state);
429
430 return drm_atomic_plane_set_property(plane, plane_state,
431 property, val);
432 }
433
434 return -EINVAL;
435}
436
437static int omap_crtc_atomic_get_property(struct drm_crtc *crtc,
438 const struct drm_crtc_state *state,
439 struct drm_property *property,
440 uint64_t *val)
441{
442 struct drm_device *dev = crtc->dev;
443
444 if (omap_crtc_is_plane_prop(dev, property)) {
445 /*
446 * Delegate property get to the primary plane. The
447 * drm_atomic_plane_get_property() function isn't exported, but
448 * can be called through drm_object_property_get_value() as that
449 * will call drm_atomic_get_property() for atomic drivers.
450 */
451 return drm_object_property_get_value(&crtc->primary->base,
452 property, val);
453 }
454
455 return -EINVAL;
456}
457
458static const struct drm_crtc_funcs omap_crtc_funcs = {
459 .reset = drm_atomic_helper_crtc_reset,
460 .set_config = drm_atomic_helper_set_config,
461 .destroy = omap_crtc_destroy,
462 .page_flip = drm_atomic_helper_page_flip,
463 .set_property = drm_atomic_helper_crtc_set_property,
464 .atomic_duplicate_state = drm_atomic_helper_crtc_duplicate_state,
465 .atomic_destroy_state = drm_atomic_helper_crtc_destroy_state,
466 .atomic_set_property = omap_crtc_atomic_set_property,
467 .atomic_get_property = omap_crtc_atomic_get_property,
468};
469
470static const struct drm_crtc_helper_funcs omap_crtc_helper_funcs = {
471 .mode_set_nofb = omap_crtc_mode_set_nofb,
472 .disable = omap_crtc_disable,
473 .enable = omap_crtc_enable,
474 .atomic_begin = omap_crtc_atomic_begin,
475 .atomic_flush = omap_crtc_atomic_flush,
476};
477
478/* -----------------------------------------------------------------------------
479 * Init and Cleanup
480 */
481
482static const char *channel_names[] = {
483 [OMAP_DSS_CHANNEL_LCD] = "lcd",
484 [OMAP_DSS_CHANNEL_DIGIT] = "tv",
485 [OMAP_DSS_CHANNEL_LCD2] = "lcd2",
486 [OMAP_DSS_CHANNEL_LCD3] = "lcd3",
487};
488
489void omap_crtc_pre_init(void)
490{
491 dss_install_mgr_ops(&mgr_ops);
492}
493
494void omap_crtc_pre_uninit(void)
495{
496 dss_uninstall_mgr_ops();
497}
498
499/* initialize crtc */
500struct drm_crtc *omap_crtc_init(struct drm_device *dev,
501 struct drm_plane *plane, enum omap_channel channel, int id)
502{
503 struct drm_crtc *crtc = NULL;
504 struct omap_crtc *omap_crtc;
505 int ret;
506
507 DBG("%s", channel_names[channel]);
508
509 omap_crtc = kzalloc(sizeof(*omap_crtc), GFP_KERNEL);
510 if (!omap_crtc)
511 return NULL;
512
513 crtc = &omap_crtc->base;
514
515 init_waitqueue_head(&omap_crtc->pending_wait);
516
517 omap_crtc->channel = channel;
518 omap_crtc->name = channel_names[channel];
519
520 omap_crtc->vblank_irq.irqmask = pipe2vbl(crtc);
521 omap_crtc->vblank_irq.irq = omap_crtc_vblank_irq;
522
523 omap_crtc->error_irq.irqmask =
524 dispc_mgr_get_sync_lost_irq(channel);
525 omap_crtc->error_irq.irq = omap_crtc_error_irq;
526 omap_irq_register(dev, &omap_crtc->error_irq);
527
528 ret = drm_crtc_init_with_planes(dev, crtc, plane, NULL,
529 &omap_crtc_funcs, NULL);
530 if (ret < 0) {
531 kfree(omap_crtc);
532 return NULL;
533 }
534
535 drm_crtc_helper_add(crtc, &omap_crtc_helper_funcs);
536
537 omap_plane_install_properties(crtc->primary, &crtc->base);
538
539 omap_crtcs[channel] = omap_crtc;
540
541 return crtc;
542}
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
4 * Author: Rob Clark <rob@ti.com>
5 */
6
7#include <linux/math64.h>
8
9#include <drm/drm_atomic.h>
10#include <drm/drm_atomic_helper.h>
11#include <drm/drm_crtc.h>
12#include <drm/drm_mode.h>
13#include <drm/drm_plane_helper.h>
14#include <drm/drm_vblank.h>
15
16#include "omap_drv.h"
17
18#define to_omap_crtc_state(x) container_of(x, struct omap_crtc_state, base)
19
20struct omap_crtc_state {
21 /* Must be first. */
22 struct drm_crtc_state base;
23 /* Shadow values for legacy userspace support. */
24 unsigned int rotation;
25 unsigned int zpos;
26 bool manually_updated;
27};
28
29#define to_omap_crtc(x) container_of(x, struct omap_crtc, base)
30
31struct omap_crtc {
32 struct drm_crtc base;
33
34 const char *name;
35 struct omap_drm_pipeline *pipe;
36 enum omap_channel channel;
37
38 struct videomode vm;
39
40 bool ignore_digit_sync_lost;
41
42 bool enabled;
43 bool pending;
44 wait_queue_head_t pending_wait;
45 struct drm_pending_vblank_event *event;
46 struct delayed_work update_work;
47
48 void (*framedone_handler)(void *);
49 void *framedone_handler_data;
50};
51
52/* -----------------------------------------------------------------------------
53 * Helper Functions
54 */
55
56struct videomode *omap_crtc_timings(struct drm_crtc *crtc)
57{
58 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
59 return &omap_crtc->vm;
60}
61
62enum omap_channel omap_crtc_channel(struct drm_crtc *crtc)
63{
64 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
65 return omap_crtc->channel;
66}
67
68static bool omap_crtc_is_pending(struct drm_crtc *crtc)
69{
70 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
71 unsigned long flags;
72 bool pending;
73
74 spin_lock_irqsave(&crtc->dev->event_lock, flags);
75 pending = omap_crtc->pending;
76 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
77
78 return pending;
79}
80
81int omap_crtc_wait_pending(struct drm_crtc *crtc)
82{
83 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
84
85 /*
86 * Timeout is set to a "sufficiently" high value, which should cover
87 * a single frame refresh even on slower displays.
88 */
89 return wait_event_timeout(omap_crtc->pending_wait,
90 !omap_crtc_is_pending(crtc),
91 msecs_to_jiffies(250));
92}
93
94/* -----------------------------------------------------------------------------
95 * DSS Manager Functions
96 */
97
98/*
99 * Manager-ops, callbacks from output when they need to configure
100 * the upstream part of the video pipe.
101 */
102
103void omap_crtc_dss_start_update(struct omap_drm_private *priv,
104 enum omap_channel channel)
105{
106 dispc_mgr_enable(priv->dispc, channel, true);
107}
108
109/* Called only from the encoder enable/disable and suspend/resume handlers. */
110void omap_crtc_set_enabled(struct drm_crtc *crtc, bool enable)
111{
112 struct omap_crtc_state *omap_state = to_omap_crtc_state(crtc->state);
113 struct drm_device *dev = crtc->dev;
114 struct omap_drm_private *priv = dev->dev_private;
115 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
116 enum omap_channel channel = omap_crtc->channel;
117 struct omap_irq_wait *wait;
118 u32 framedone_irq, vsync_irq;
119 int ret;
120
121 if (WARN_ON(omap_crtc->enabled == enable))
122 return;
123
124 if (omap_state->manually_updated) {
125 omap_irq_enable_framedone(crtc, enable);
126 omap_crtc->enabled = enable;
127 return;
128 }
129
130 if (omap_crtc->pipe->output->type == OMAP_DISPLAY_TYPE_HDMI) {
131 dispc_mgr_enable(priv->dispc, channel, enable);
132 omap_crtc->enabled = enable;
133 return;
134 }
135
136 if (omap_crtc->channel == OMAP_DSS_CHANNEL_DIGIT) {
137 /*
138 * Digit output produces some sync lost interrupts during the
139 * first frame when enabling, so we need to ignore those.
140 */
141 omap_crtc->ignore_digit_sync_lost = true;
142 }
143
144 framedone_irq = dispc_mgr_get_framedone_irq(priv->dispc,
145 channel);
146 vsync_irq = dispc_mgr_get_vsync_irq(priv->dispc, channel);
147
148 if (enable) {
149 wait = omap_irq_wait_init(dev, vsync_irq, 1);
150 } else {
151 /*
152 * When we disable the digit output, we need to wait for
153 * FRAMEDONE to know that DISPC has finished with the output.
154 *
155 * OMAP2/3 does not have FRAMEDONE irq for digit output, and in
156 * that case we need to use vsync interrupt, and wait for both
157 * even and odd frames.
158 */
159
160 if (framedone_irq)
161 wait = omap_irq_wait_init(dev, framedone_irq, 1);
162 else
163 wait = omap_irq_wait_init(dev, vsync_irq, 2);
164 }
165
166 dispc_mgr_enable(priv->dispc, channel, enable);
167 omap_crtc->enabled = enable;
168
169 ret = omap_irq_wait(dev, wait, msecs_to_jiffies(100));
170 if (ret) {
171 dev_err(dev->dev, "%s: timeout waiting for %s\n",
172 omap_crtc->name, enable ? "enable" : "disable");
173 }
174
175 if (omap_crtc->channel == OMAP_DSS_CHANNEL_DIGIT) {
176 omap_crtc->ignore_digit_sync_lost = false;
177 /* make sure the irq handler sees the value above */
178 mb();
179 }
180}
181
182
183int omap_crtc_dss_enable(struct omap_drm_private *priv, enum omap_channel channel)
184{
185 struct drm_crtc *crtc = priv->channels[channel]->crtc;
186 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
187
188 dispc_mgr_set_timings(priv->dispc, omap_crtc->channel,
189 &omap_crtc->vm);
190 omap_crtc_set_enabled(&omap_crtc->base, true);
191
192 return 0;
193}
194
195void omap_crtc_dss_disable(struct omap_drm_private *priv, enum omap_channel channel)
196{
197 struct drm_crtc *crtc = priv->channels[channel]->crtc;
198 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
199
200 omap_crtc_set_enabled(&omap_crtc->base, false);
201}
202
203void omap_crtc_dss_set_timings(struct omap_drm_private *priv,
204 enum omap_channel channel,
205 const struct videomode *vm)
206{
207 struct drm_crtc *crtc = priv->channels[channel]->crtc;
208 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
209
210 DBG("%s", omap_crtc->name);
211 omap_crtc->vm = *vm;
212}
213
214void omap_crtc_dss_set_lcd_config(struct omap_drm_private *priv,
215 enum omap_channel channel,
216 const struct dss_lcd_mgr_config *config)
217{
218 struct drm_crtc *crtc = priv->channels[channel]->crtc;
219 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
220
221 DBG("%s", omap_crtc->name);
222 dispc_mgr_set_lcd_config(priv->dispc, omap_crtc->channel,
223 config);
224}
225
226int omap_crtc_dss_register_framedone(
227 struct omap_drm_private *priv, enum omap_channel channel,
228 void (*handler)(void *), void *data)
229{
230 struct drm_crtc *crtc = priv->channels[channel]->crtc;
231 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
232 struct drm_device *dev = omap_crtc->base.dev;
233
234 if (omap_crtc->framedone_handler)
235 return -EBUSY;
236
237 dev_dbg(dev->dev, "register framedone %s", omap_crtc->name);
238
239 omap_crtc->framedone_handler = handler;
240 omap_crtc->framedone_handler_data = data;
241
242 return 0;
243}
244
245void omap_crtc_dss_unregister_framedone(
246 struct omap_drm_private *priv, enum omap_channel channel,
247 void (*handler)(void *), void *data)
248{
249 struct drm_crtc *crtc = priv->channels[channel]->crtc;
250 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
251 struct drm_device *dev = omap_crtc->base.dev;
252
253 dev_dbg(dev->dev, "unregister framedone %s", omap_crtc->name);
254
255 WARN_ON(omap_crtc->framedone_handler != handler);
256 WARN_ON(omap_crtc->framedone_handler_data != data);
257
258 omap_crtc->framedone_handler = NULL;
259 omap_crtc->framedone_handler_data = NULL;
260}
261
262/* -----------------------------------------------------------------------------
263 * Setup, Flush and Page Flip
264 */
265
266void omap_crtc_error_irq(struct drm_crtc *crtc, u32 irqstatus)
267{
268 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
269
270 if (omap_crtc->ignore_digit_sync_lost) {
271 irqstatus &= ~DISPC_IRQ_SYNC_LOST_DIGIT;
272 if (!irqstatus)
273 return;
274 }
275
276 DRM_ERROR_RATELIMITED("%s: errors: %08x\n", omap_crtc->name, irqstatus);
277}
278
279void omap_crtc_vblank_irq(struct drm_crtc *crtc)
280{
281 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
282 struct drm_device *dev = omap_crtc->base.dev;
283 struct omap_drm_private *priv = dev->dev_private;
284 bool pending;
285
286 spin_lock(&crtc->dev->event_lock);
287 /*
288 * If the dispc is busy we're racing the flush operation. Try again on
289 * the next vblank interrupt.
290 */
291 if (dispc_mgr_go_busy(priv->dispc, omap_crtc->channel)) {
292 spin_unlock(&crtc->dev->event_lock);
293 return;
294 }
295
296 /* Send the vblank event if one has been requested. */
297 if (omap_crtc->event) {
298 drm_crtc_send_vblank_event(crtc, omap_crtc->event);
299 omap_crtc->event = NULL;
300 }
301
302 pending = omap_crtc->pending;
303 omap_crtc->pending = false;
304 spin_unlock(&crtc->dev->event_lock);
305
306 if (pending)
307 drm_crtc_vblank_put(crtc);
308
309 /* Wake up omap_atomic_complete. */
310 wake_up(&omap_crtc->pending_wait);
311
312 DBG("%s: apply done", omap_crtc->name);
313}
314
315void omap_crtc_framedone_irq(struct drm_crtc *crtc, uint32_t irqstatus)
316{
317 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
318
319 if (!omap_crtc->framedone_handler)
320 return;
321
322 omap_crtc->framedone_handler(omap_crtc->framedone_handler_data);
323
324 spin_lock(&crtc->dev->event_lock);
325 /* Send the vblank event if one has been requested. */
326 if (omap_crtc->event) {
327 drm_crtc_send_vblank_event(crtc, omap_crtc->event);
328 omap_crtc->event = NULL;
329 }
330 omap_crtc->pending = false;
331 spin_unlock(&crtc->dev->event_lock);
332
333 /* Wake up omap_atomic_complete. */
334 wake_up(&omap_crtc->pending_wait);
335}
336
337void omap_crtc_flush(struct drm_crtc *crtc)
338{
339 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
340 struct omap_crtc_state *omap_state = to_omap_crtc_state(crtc->state);
341
342 if (!omap_state->manually_updated)
343 return;
344
345 if (!delayed_work_pending(&omap_crtc->update_work))
346 schedule_delayed_work(&omap_crtc->update_work, 0);
347}
348
349static void omap_crtc_manual_display_update(struct work_struct *data)
350{
351 struct omap_crtc *omap_crtc =
352 container_of(data, struct omap_crtc, update_work.work);
353 struct omap_dss_device *dssdev = omap_crtc->pipe->output;
354 struct drm_device *dev = omap_crtc->base.dev;
355 int ret;
356
357 if (!dssdev || !dssdev->dsi_ops || !dssdev->dsi_ops->update)
358 return;
359
360 ret = dssdev->dsi_ops->update(dssdev);
361 if (ret < 0) {
362 spin_lock_irq(&dev->event_lock);
363 omap_crtc->pending = false;
364 spin_unlock_irq(&dev->event_lock);
365 wake_up(&omap_crtc->pending_wait);
366 }
367}
368
369static s16 omap_crtc_s31_32_to_s2_8(s64 coef)
370{
371 u64 sign_bit = 1ULL << 63;
372 u64 cbits = (u64)coef;
373
374 s16 ret = clamp_val(((cbits & ~sign_bit) >> 24), 0, 0x1ff);
375
376 if (cbits & sign_bit)
377 ret = -ret;
378
379 return ret;
380}
381
382static void omap_crtc_cpr_coefs_from_ctm(const struct drm_color_ctm *ctm,
383 struct omap_dss_cpr_coefs *cpr)
384{
385 cpr->rr = omap_crtc_s31_32_to_s2_8(ctm->matrix[0]);
386 cpr->rg = omap_crtc_s31_32_to_s2_8(ctm->matrix[1]);
387 cpr->rb = omap_crtc_s31_32_to_s2_8(ctm->matrix[2]);
388 cpr->gr = omap_crtc_s31_32_to_s2_8(ctm->matrix[3]);
389 cpr->gg = omap_crtc_s31_32_to_s2_8(ctm->matrix[4]);
390 cpr->gb = omap_crtc_s31_32_to_s2_8(ctm->matrix[5]);
391 cpr->br = omap_crtc_s31_32_to_s2_8(ctm->matrix[6]);
392 cpr->bg = omap_crtc_s31_32_to_s2_8(ctm->matrix[7]);
393 cpr->bb = omap_crtc_s31_32_to_s2_8(ctm->matrix[8]);
394}
395
396static void omap_crtc_write_crtc_properties(struct drm_crtc *crtc)
397{
398 struct omap_drm_private *priv = crtc->dev->dev_private;
399 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
400 struct omap_overlay_manager_info info;
401
402 memset(&info, 0, sizeof(info));
403
404 info.default_color = 0x000000;
405 info.trans_enabled = false;
406 info.partial_alpha_enabled = false;
407
408 if (crtc->state->ctm) {
409 struct drm_color_ctm *ctm = crtc->state->ctm->data;
410
411 info.cpr_enable = true;
412 omap_crtc_cpr_coefs_from_ctm(ctm, &info.cpr_coefs);
413 } else {
414 info.cpr_enable = false;
415 }
416
417 dispc_mgr_setup(priv->dispc, omap_crtc->channel, &info);
418}
419
420/* -----------------------------------------------------------------------------
421 * CRTC Functions
422 */
423
424static void omap_crtc_destroy(struct drm_crtc *crtc)
425{
426 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
427
428 DBG("%s", omap_crtc->name);
429
430 drm_crtc_cleanup(crtc);
431
432 kfree(omap_crtc);
433}
434
435static void omap_crtc_arm_event(struct drm_crtc *crtc)
436{
437 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
438
439 WARN_ON(omap_crtc->pending);
440 omap_crtc->pending = true;
441
442 if (crtc->state->event) {
443 omap_crtc->event = crtc->state->event;
444 crtc->state->event = NULL;
445 }
446}
447
448static void omap_crtc_atomic_enable(struct drm_crtc *crtc,
449 struct drm_atomic_state *state)
450{
451 struct omap_drm_private *priv = crtc->dev->dev_private;
452 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
453 struct omap_crtc_state *omap_state = to_omap_crtc_state(crtc->state);
454 int ret;
455
456 DBG("%s", omap_crtc->name);
457
458 dispc_runtime_get(priv->dispc);
459
460 /* manual updated display will not trigger vsync irq */
461 if (omap_state->manually_updated)
462 return;
463
464 drm_crtc_vblank_on(crtc);
465
466 ret = drm_crtc_vblank_get(crtc);
467 WARN_ON(ret != 0);
468
469 spin_lock_irq(&crtc->dev->event_lock);
470 omap_crtc_arm_event(crtc);
471 spin_unlock_irq(&crtc->dev->event_lock);
472}
473
474static void omap_crtc_atomic_disable(struct drm_crtc *crtc,
475 struct drm_atomic_state *state)
476{
477 struct omap_drm_private *priv = crtc->dev->dev_private;
478 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
479 struct drm_device *dev = crtc->dev;
480
481 DBG("%s", omap_crtc->name);
482
483 spin_lock_irq(&crtc->dev->event_lock);
484 if (crtc->state->event) {
485 drm_crtc_send_vblank_event(crtc, crtc->state->event);
486 crtc->state->event = NULL;
487 }
488 spin_unlock_irq(&crtc->dev->event_lock);
489
490 cancel_delayed_work(&omap_crtc->update_work);
491
492 if (!omap_crtc_wait_pending(crtc))
493 dev_warn(dev->dev, "manual display update did not finish!");
494
495 drm_crtc_vblank_off(crtc);
496
497 dispc_runtime_put(priv->dispc);
498}
499
500static enum drm_mode_status omap_crtc_mode_valid(struct drm_crtc *crtc,
501 const struct drm_display_mode *mode)
502{
503 struct omap_drm_private *priv = crtc->dev->dev_private;
504 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
505 struct videomode vm = {0};
506 int r;
507
508 drm_display_mode_to_videomode(mode, &vm);
509
510 /*
511 * DSI might not call this, since the supplied mode is not a
512 * valid DISPC mode. DSI will calculate and configure the
513 * proper DISPC mode later.
514 */
515 if (omap_crtc->pipe->output->type != OMAP_DISPLAY_TYPE_DSI) {
516 r = dispc_mgr_check_timings(priv->dispc,
517 omap_crtc->channel,
518 &vm);
519 if (r)
520 return r;
521 }
522
523 /* Check for bandwidth limit */
524 if (priv->max_bandwidth) {
525 /*
526 * Estimation for the bandwidth need of a given mode with one
527 * full screen plane:
528 * bandwidth = resolution * 32bpp * (pclk / (vtotal * htotal))
529 * ^^ Refresh rate ^^
530 *
531 * The interlaced mode is taken into account by using the
532 * pixelclock in the calculation.
533 *
534 * The equation is rearranged for 64bit arithmetic.
535 */
536 uint64_t bandwidth = mode->clock * 1000;
537 unsigned int bpp = 4;
538
539 bandwidth = bandwidth * mode->hdisplay * mode->vdisplay * bpp;
540 bandwidth = div_u64(bandwidth, mode->htotal * mode->vtotal);
541
542 /*
543 * Reject modes which would need more bandwidth if used with one
544 * full resolution plane (most common use case).
545 */
546 if (priv->max_bandwidth < bandwidth)
547 return MODE_BAD;
548 }
549
550 return MODE_OK;
551}
552
553static void omap_crtc_mode_set_nofb(struct drm_crtc *crtc)
554{
555 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
556 struct drm_display_mode *mode = &crtc->state->adjusted_mode;
557
558 DBG("%s: set mode: " DRM_MODE_FMT,
559 omap_crtc->name, DRM_MODE_ARG(mode));
560
561 drm_display_mode_to_videomode(mode, &omap_crtc->vm);
562}
563
564static bool omap_crtc_is_manually_updated(struct drm_crtc *crtc)
565{
566 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
567 struct omap_dss_device *dssdev = omap_crtc->pipe->output;
568
569 if (!dssdev || !dssdev->dsi_ops || !dssdev->dsi_ops->is_video_mode)
570 return false;
571
572 if (dssdev->dsi_ops->is_video_mode(dssdev))
573 return false;
574
575 DBG("detected manually updated display!");
576 return true;
577}
578
579static int omap_crtc_atomic_check(struct drm_crtc *crtc,
580 struct drm_atomic_state *state)
581{
582 struct drm_crtc_state *crtc_state = drm_atomic_get_new_crtc_state(state,
583 crtc);
584 struct drm_plane_state *pri_state;
585
586 if (crtc_state->color_mgmt_changed && crtc_state->degamma_lut) {
587 unsigned int length = crtc_state->degamma_lut->length /
588 sizeof(struct drm_color_lut);
589
590 if (length < 2)
591 return -EINVAL;
592 }
593
594 pri_state = drm_atomic_get_new_plane_state(state,
595 crtc->primary);
596 if (pri_state) {
597 struct omap_crtc_state *omap_crtc_state =
598 to_omap_crtc_state(crtc_state);
599
600 /* Mirror new values for zpos and rotation in omap_crtc_state */
601 omap_crtc_state->zpos = pri_state->zpos;
602 omap_crtc_state->rotation = pri_state->rotation;
603
604 /* Check if this CRTC is for a manually updated display */
605 omap_crtc_state->manually_updated = omap_crtc_is_manually_updated(crtc);
606 }
607
608 return 0;
609}
610
611static void omap_crtc_atomic_begin(struct drm_crtc *crtc,
612 struct drm_atomic_state *state)
613{
614}
615
616static void omap_crtc_atomic_flush(struct drm_crtc *crtc,
617 struct drm_atomic_state *state)
618{
619 struct omap_drm_private *priv = crtc->dev->dev_private;
620 struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
621 struct omap_crtc_state *omap_crtc_state = to_omap_crtc_state(crtc->state);
622 int ret;
623
624 if (crtc->state->color_mgmt_changed) {
625 struct drm_color_lut *lut = NULL;
626 unsigned int length = 0;
627
628 if (crtc->state->degamma_lut) {
629 lut = (struct drm_color_lut *)
630 crtc->state->degamma_lut->data;
631 length = crtc->state->degamma_lut->length /
632 sizeof(*lut);
633 }
634 dispc_mgr_set_gamma(priv->dispc, omap_crtc->channel,
635 lut, length);
636 }
637
638 omap_crtc_write_crtc_properties(crtc);
639
640 /* Only flush the CRTC if it is currently enabled. */
641 if (!omap_crtc->enabled)
642 return;
643
644 DBG("%s: GO", omap_crtc->name);
645
646 if (omap_crtc_state->manually_updated) {
647 /* send new image for page flips and modeset changes */
648 spin_lock_irq(&crtc->dev->event_lock);
649 omap_crtc_flush(crtc);
650 omap_crtc_arm_event(crtc);
651 spin_unlock_irq(&crtc->dev->event_lock);
652 return;
653 }
654
655 ret = drm_crtc_vblank_get(crtc);
656 WARN_ON(ret != 0);
657
658 spin_lock_irq(&crtc->dev->event_lock);
659 dispc_mgr_go(priv->dispc, omap_crtc->channel);
660 omap_crtc_arm_event(crtc);
661 spin_unlock_irq(&crtc->dev->event_lock);
662}
663
664static int omap_crtc_atomic_set_property(struct drm_crtc *crtc,
665 struct drm_crtc_state *state,
666 struct drm_property *property,
667 u64 val)
668{
669 struct omap_drm_private *priv = crtc->dev->dev_private;
670 struct drm_plane_state *plane_state;
671
672 /*
673 * Delegate property set to the primary plane. Get the plane state and
674 * set the property directly, the shadow copy will be assigned in the
675 * omap_crtc_atomic_check callback. This way updates to plane state will
676 * always be mirrored in the crtc state correctly.
677 */
678 plane_state = drm_atomic_get_plane_state(state->state, crtc->primary);
679 if (IS_ERR(plane_state))
680 return PTR_ERR(plane_state);
681
682 if (property == crtc->primary->rotation_property)
683 plane_state->rotation = val;
684 else if (property == priv->zorder_prop)
685 plane_state->zpos = val;
686 else
687 return -EINVAL;
688
689 return 0;
690}
691
692static int omap_crtc_atomic_get_property(struct drm_crtc *crtc,
693 const struct drm_crtc_state *state,
694 struct drm_property *property,
695 u64 *val)
696{
697 struct omap_drm_private *priv = crtc->dev->dev_private;
698 struct omap_crtc_state *omap_state = to_omap_crtc_state(state);
699
700 if (property == crtc->primary->rotation_property)
701 *val = omap_state->rotation;
702 else if (property == priv->zorder_prop)
703 *val = omap_state->zpos;
704 else
705 return -EINVAL;
706
707 return 0;
708}
709
710static void omap_crtc_reset(struct drm_crtc *crtc)
711{
712 struct omap_crtc_state *state;
713
714 if (crtc->state)
715 __drm_atomic_helper_crtc_destroy_state(crtc->state);
716
717 kfree(crtc->state);
718
719 state = kzalloc(sizeof(*state), GFP_KERNEL);
720 if (state)
721 __drm_atomic_helper_crtc_reset(crtc, &state->base);
722}
723
724static struct drm_crtc_state *
725omap_crtc_duplicate_state(struct drm_crtc *crtc)
726{
727 struct omap_crtc_state *state, *current_state;
728
729 if (WARN_ON(!crtc->state))
730 return NULL;
731
732 current_state = to_omap_crtc_state(crtc->state);
733
734 state = kmalloc(sizeof(*state), GFP_KERNEL);
735 if (!state)
736 return NULL;
737
738 __drm_atomic_helper_crtc_duplicate_state(crtc, &state->base);
739
740 state->zpos = current_state->zpos;
741 state->rotation = current_state->rotation;
742 state->manually_updated = current_state->manually_updated;
743
744 return &state->base;
745}
746
747static const struct drm_crtc_funcs omap_crtc_funcs = {
748 .reset = omap_crtc_reset,
749 .set_config = drm_atomic_helper_set_config,
750 .destroy = omap_crtc_destroy,
751 .page_flip = drm_atomic_helper_page_flip,
752 .atomic_duplicate_state = omap_crtc_duplicate_state,
753 .atomic_destroy_state = drm_atomic_helper_crtc_destroy_state,
754 .atomic_set_property = omap_crtc_atomic_set_property,
755 .atomic_get_property = omap_crtc_atomic_get_property,
756 .enable_vblank = omap_irq_enable_vblank,
757 .disable_vblank = omap_irq_disable_vblank,
758};
759
760static const struct drm_crtc_helper_funcs omap_crtc_helper_funcs = {
761 .mode_set_nofb = omap_crtc_mode_set_nofb,
762 .atomic_check = omap_crtc_atomic_check,
763 .atomic_begin = omap_crtc_atomic_begin,
764 .atomic_flush = omap_crtc_atomic_flush,
765 .atomic_enable = omap_crtc_atomic_enable,
766 .atomic_disable = omap_crtc_atomic_disable,
767 .mode_valid = omap_crtc_mode_valid,
768};
769
770/* -----------------------------------------------------------------------------
771 * Init and Cleanup
772 */
773
774static const char *channel_names[] = {
775 [OMAP_DSS_CHANNEL_LCD] = "lcd",
776 [OMAP_DSS_CHANNEL_DIGIT] = "tv",
777 [OMAP_DSS_CHANNEL_LCD2] = "lcd2",
778 [OMAP_DSS_CHANNEL_LCD3] = "lcd3",
779};
780
781/* initialize crtc */
782struct drm_crtc *omap_crtc_init(struct drm_device *dev,
783 struct omap_drm_pipeline *pipe,
784 struct drm_plane *plane)
785{
786 struct omap_drm_private *priv = dev->dev_private;
787 struct drm_crtc *crtc = NULL;
788 struct omap_crtc *omap_crtc;
789 enum omap_channel channel;
790 int ret;
791
792 channel = pipe->output->dispc_channel;
793
794 DBG("%s", channel_names[channel]);
795
796 omap_crtc = kzalloc(sizeof(*omap_crtc), GFP_KERNEL);
797 if (!omap_crtc)
798 return ERR_PTR(-ENOMEM);
799
800 crtc = &omap_crtc->base;
801
802 init_waitqueue_head(&omap_crtc->pending_wait);
803
804 omap_crtc->pipe = pipe;
805 omap_crtc->channel = channel;
806 omap_crtc->name = channel_names[channel];
807
808 /*
809 * We want to refresh manually updated displays from dirty callback,
810 * which is called quite often (e.g. for each drawn line). This will
811 * be used to do the display update asynchronously to avoid blocking
812 * the rendering process and merges multiple dirty calls into one
813 * update if they arrive very fast. We also call this function for
814 * atomic display updates (e.g. for page flips), which means we do
815 * not need extra locking. Atomic updates should be synchronous, but
816 * need to wait for the framedone interrupt anyways.
817 */
818 INIT_DELAYED_WORK(&omap_crtc->update_work,
819 omap_crtc_manual_display_update);
820
821 ret = drm_crtc_init_with_planes(dev, crtc, plane, NULL,
822 &omap_crtc_funcs, NULL);
823 if (ret < 0) {
824 dev_err(dev->dev, "%s(): could not init crtc for: %s\n",
825 __func__, pipe->output->name);
826 kfree(omap_crtc);
827 return ERR_PTR(ret);
828 }
829
830 drm_crtc_helper_add(crtc, &omap_crtc_helper_funcs);
831
832 /* The dispc API adapts to what ever size, but the HW supports
833 * 256 element gamma table for LCDs and 1024 element table for
834 * OMAP_DSS_CHANNEL_DIGIT. X server assumes 256 element gamma
835 * tables so lets use that. Size of HW gamma table can be
836 * extracted with dispc_mgr_gamma_size(). If it returns 0
837 * gamma table is not supported.
838 */
839 if (dispc_mgr_gamma_size(priv->dispc, channel)) {
840 unsigned int gamma_lut_size = 256;
841
842 drm_crtc_enable_color_mgmt(crtc, gamma_lut_size, true, 0);
843 drm_mode_crtc_set_gamma_size(crtc, gamma_lut_size);
844 }
845
846 omap_plane_install_properties(crtc->primary, &crtc->base);
847
848 return crtc;
849}