blob: a51f8cbcfe26d9d4d5d52d2037ed94292533c41e [file] [log] [blame]
Russell King96f60e32012-08-15 13:59:49 +01001/*
2 * Copyright (C) 2012 Russell King
3 * Rewritten from the dovefb driver, and Armada510 manuals.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9#include <linux/clk.h>
Russell Kingd8c96082014-04-22 11:10:15 +010010#include <linux/component.h>
11#include <linux/of_device.h>
12#include <linux/platform_device.h>
Russell King96f60e32012-08-15 13:59:49 +010013#include <drm/drmP.h>
14#include <drm/drm_crtc_helper.h>
Daniel Vetter3cb9ae42014-10-29 10:03:57 +010015#include <drm/drm_plane_helper.h>
Russell King96f60e32012-08-15 13:59:49 +010016#include "armada_crtc.h"
17#include "armada_drm.h"
18#include "armada_fb.h"
19#include "armada_gem.h"
20#include "armada_hw.h"
21
22struct armada_frame_work {
Russell King4b5dda82015-08-06 16:37:18 +010023 struct armada_plane_work work;
Russell King96f60e32012-08-15 13:59:49 +010024 struct drm_pending_vblank_event *event;
25 struct armada_regs regs[4];
26 struct drm_framebuffer *old_fb;
27};
28
29enum csc_mode {
30 CSC_AUTO = 0,
31 CSC_YUV_CCIR601 = 1,
32 CSC_YUV_CCIR709 = 2,
33 CSC_RGB_COMPUTER = 1,
34 CSC_RGB_STUDIO = 2,
35};
36
Russell King1c914ce2015-07-15 18:11:24 +010037static const uint32_t armada_primary_formats[] = {
38 DRM_FORMAT_UYVY,
39 DRM_FORMAT_YUYV,
40 DRM_FORMAT_VYUY,
41 DRM_FORMAT_YVYU,
42 DRM_FORMAT_ARGB8888,
43 DRM_FORMAT_ABGR8888,
44 DRM_FORMAT_XRGB8888,
45 DRM_FORMAT_XBGR8888,
46 DRM_FORMAT_RGB888,
47 DRM_FORMAT_BGR888,
48 DRM_FORMAT_ARGB1555,
49 DRM_FORMAT_ABGR1555,
50 DRM_FORMAT_RGB565,
51 DRM_FORMAT_BGR565,
52};
53
Russell King96f60e32012-08-15 13:59:49 +010054/*
55 * A note about interlacing. Let's consider HDMI 1920x1080i.
56 * The timing parameters we have from X are:
57 * Hact HsyA HsyI Htot Vact VsyA VsyI Vtot
58 * 1920 2448 2492 2640 1080 1084 1094 1125
59 * Which get translated to:
60 * Hact HsyA HsyI Htot Vact VsyA VsyI Vtot
61 * 1920 2448 2492 2640 540 542 547 562
62 *
63 * This is how it is defined by CEA-861-D - line and pixel numbers are
64 * referenced to the rising edge of VSYNC and HSYNC. Total clocks per
65 * line: 2640. The odd frame, the first active line is at line 21, and
66 * the even frame, the first active line is 584.
67 *
68 * LN: 560 561 562 563 567 568 569
69 * DE: ~~~|____________________________//__________________________
70 * HSYNC: ____|~|_____|~|_____|~|_____|~|_//__|~|_____|~|_____|~|_____
71 * VSYNC: _________________________|~~~~~~//~~~~~~~~~~~~~~~|__________
72 * 22 blanking lines. VSYNC at 1320 (referenced to the HSYNC rising edge).
73 *
74 * LN: 1123 1124 1125 1 5 6 7
75 * DE: ~~~|____________________________//__________________________
76 * HSYNC: ____|~|_____|~|_____|~|_____|~|_//__|~|_____|~|_____|~|_____
77 * VSYNC: ____________________|~~~~~~~~~~~//~~~~~~~~~~|_______________
78 * 23 blanking lines
79 *
80 * The Armada LCD Controller line and pixel numbers are, like X timings,
81 * referenced to the top left of the active frame.
82 *
83 * So, translating these to our LCD controller:
84 * Odd frame, 563 total lines, VSYNC at line 543-548, pixel 1128.
85 * Even frame, 562 total lines, VSYNC at line 542-547, pixel 2448.
86 * Note: Vsync front porch remains constant!
87 *
88 * if (odd_frame) {
89 * vtotal = mode->crtc_vtotal + 1;
90 * vbackporch = mode->crtc_vsync_start - mode->crtc_vdisplay + 1;
91 * vhorizpos = mode->crtc_hsync_start - mode->crtc_htotal / 2
92 * } else {
93 * vtotal = mode->crtc_vtotal;
94 * vbackporch = mode->crtc_vsync_start - mode->crtc_vdisplay;
95 * vhorizpos = mode->crtc_hsync_start;
96 * }
97 * vfrontporch = mode->crtc_vtotal - mode->crtc_vsync_end;
98 *
99 * So, we need to reprogram these registers on each vsync event:
100 * LCD_SPU_V_PORCH, LCD_SPU_ADV_REG, LCD_SPUT_V_H_TOTAL
101 *
102 * Note: we do not use the frame done interrupts because these appear
103 * to happen too early, and lead to jitter on the display (presumably
104 * they occur at the end of the last active line, before the vsync back
105 * porch, which we're reprogramming.)
106 */
107
108void
109armada_drm_crtc_update_regs(struct armada_crtc *dcrtc, struct armada_regs *regs)
110{
111 while (regs->offset != ~0) {
112 void __iomem *reg = dcrtc->base + regs->offset;
113 uint32_t val;
114
115 val = regs->mask;
116 if (val != 0)
117 val &= readl_relaxed(reg);
118 writel_relaxed(val | regs->val, reg);
119 ++regs;
120 }
121}
122
123#define dpms_blanked(dpms) ((dpms) != DRM_MODE_DPMS_ON)
124
125static void armada_drm_crtc_update(struct armada_crtc *dcrtc)
126{
127 uint32_t dumb_ctrl;
128
129 dumb_ctrl = dcrtc->cfg_dumb_ctrl;
130
131 if (!dpms_blanked(dcrtc->dpms))
132 dumb_ctrl |= CFG_DUMB_ENA;
133
134 /*
135 * When the dumb interface isn't in DUMB24_RGB888_0 mode, it might
136 * be using SPI or GPIO. If we set this to DUMB_BLANK, we will
137 * force LCD_D[23:0] to output blank color, overriding the GPIO or
138 * SPI usage. So leave it as-is unless in DUMB24_RGB888_0 mode.
139 */
140 if (dpms_blanked(dcrtc->dpms) &&
141 (dumb_ctrl & DUMB_MASK) == DUMB24_RGB888_0) {
142 dumb_ctrl &= ~DUMB_MASK;
143 dumb_ctrl |= DUMB_BLANK;
144 }
145
146 /*
147 * The documentation doesn't indicate what the normal state of
148 * the sync signals are. Sebastian Hesselbart kindly probed
149 * these signals on his board to determine their state.
150 *
151 * The non-inverted state of the sync signals is active high.
152 * Setting these bits makes the appropriate signal active low.
153 */
154 if (dcrtc->crtc.mode.flags & DRM_MODE_FLAG_NCSYNC)
155 dumb_ctrl |= CFG_INV_CSYNC;
156 if (dcrtc->crtc.mode.flags & DRM_MODE_FLAG_NHSYNC)
157 dumb_ctrl |= CFG_INV_HSYNC;
158 if (dcrtc->crtc.mode.flags & DRM_MODE_FLAG_NVSYNC)
159 dumb_ctrl |= CFG_INV_VSYNC;
160
161 if (dcrtc->dumb_ctrl != dumb_ctrl) {
162 dcrtc->dumb_ctrl = dumb_ctrl;
163 writel_relaxed(dumb_ctrl, dcrtc->base + LCD_SPU_DUMB_CTRL);
164 }
165}
166
167static unsigned armada_drm_crtc_calc_fb(struct drm_framebuffer *fb,
168 int x, int y, struct armada_regs *regs, bool interlaced)
169{
170 struct armada_gem_object *obj = drm_fb_obj(fb);
171 unsigned pitch = fb->pitches[0];
172 unsigned offset = y * pitch + x * fb->bits_per_pixel / 8;
173 uint32_t addr_odd, addr_even;
174 unsigned i = 0;
175
176 DRM_DEBUG_DRIVER("pitch %u x %d y %d bpp %d\n",
177 pitch, x, y, fb->bits_per_pixel);
178
179 addr_odd = addr_even = obj->dev_addr + offset;
180
181 if (interlaced) {
182 addr_even += pitch;
183 pitch *= 2;
184 }
185
186 /* write offset, base, and pitch */
187 armada_reg_queue_set(regs, i, addr_odd, LCD_CFG_GRA_START_ADDR0);
188 armada_reg_queue_set(regs, i, addr_even, LCD_CFG_GRA_START_ADDR1);
189 armada_reg_queue_mod(regs, i, pitch, 0xffff, LCD_CFG_GRA_PITCH);
190
191 return i;
192}
193
Russell King4b5dda82015-08-06 16:37:18 +0100194static void armada_drm_plane_work_run(struct armada_crtc *dcrtc,
195 struct armada_plane *plane)
196{
197 struct armada_plane_work *work = xchg(&plane->work, NULL);
198
199 /* Handle any pending frame work. */
200 if (work) {
201 work->fn(dcrtc, plane, work);
Gustavo Padovanaccbaf62016-06-06 11:41:40 -0300202 drm_crtc_vblank_put(&dcrtc->crtc);
Russell King4b5dda82015-08-06 16:37:18 +0100203 }
Russell King7cb410c2015-08-07 13:34:26 +0100204
205 wake_up(&plane->frame_wait);
Russell King4b5dda82015-08-06 16:37:18 +0100206}
207
208int armada_drm_plane_work_queue(struct armada_crtc *dcrtc,
209 struct armada_plane *plane, struct armada_plane_work *work)
210{
211 int ret;
212
Gustavo Padovanaccbaf62016-06-06 11:41:40 -0300213 ret = drm_crtc_vblank_get(&dcrtc->crtc);
Russell King4b5dda82015-08-06 16:37:18 +0100214 if (ret) {
215 DRM_ERROR("failed to acquire vblank counter\n");
216 return ret;
217 }
218
219 ret = cmpxchg(&plane->work, NULL, work) ? -EBUSY : 0;
220 if (ret)
Gustavo Padovanaccbaf62016-06-06 11:41:40 -0300221 drm_crtc_vblank_put(&dcrtc->crtc);
Russell King4b5dda82015-08-06 16:37:18 +0100222
223 return ret;
224}
225
226int armada_drm_plane_work_wait(struct armada_plane *plane, long timeout)
227{
228 return wait_event_timeout(plane->frame_wait, !plane->work, timeout);
229}
230
Russell King4a8506d2015-08-07 09:33:05 +0100231struct armada_plane_work *armada_drm_plane_work_cancel(
232 struct armada_crtc *dcrtc, struct armada_plane *plane)
Russell King7c8f7e12015-06-29 17:52:16 +0100233{
Russell King4a8506d2015-08-07 09:33:05 +0100234 struct armada_plane_work *work = xchg(&plane->work, NULL);
Russell King7c8f7e12015-06-29 17:52:16 +0100235
Russell King4a8506d2015-08-07 09:33:05 +0100236 if (work)
Gustavo Padovanaccbaf62016-06-06 11:41:40 -0300237 drm_crtc_vblank_put(&dcrtc->crtc);
Russell King7c8f7e12015-06-29 17:52:16 +0100238
Russell King4a8506d2015-08-07 09:33:05 +0100239 return work;
Russell King7c8f7e12015-06-29 17:52:16 +0100240}
241
Russell King96f60e32012-08-15 13:59:49 +0100242static int armada_drm_crtc_queue_frame_work(struct armada_crtc *dcrtc,
243 struct armada_frame_work *work)
244{
Russell King4b5dda82015-08-06 16:37:18 +0100245 struct armada_plane *plane = drm_to_armada_plane(dcrtc->crtc.primary);
Russell King96f60e32012-08-15 13:59:49 +0100246
Russell King4b5dda82015-08-06 16:37:18 +0100247 return armada_drm_plane_work_queue(dcrtc, plane, &work->work);
Russell King96f60e32012-08-15 13:59:49 +0100248}
249
Russell King709ffd82015-07-15 18:09:38 +0100250static void armada_drm_crtc_complete_frame_work(struct armada_crtc *dcrtc,
Russell King4b5dda82015-08-06 16:37:18 +0100251 struct armada_plane *plane, struct armada_plane_work *work)
Russell King96f60e32012-08-15 13:59:49 +0100252{
Russell King4b5dda82015-08-06 16:37:18 +0100253 struct armada_frame_work *fwork = container_of(work, struct armada_frame_work, work);
Russell King96f60e32012-08-15 13:59:49 +0100254 struct drm_device *dev = dcrtc->crtc.dev;
Russell King709ffd82015-07-15 18:09:38 +0100255 unsigned long flags;
Russell King96f60e32012-08-15 13:59:49 +0100256
Russell King709ffd82015-07-15 18:09:38 +0100257 spin_lock_irqsave(&dcrtc->irq_lock, flags);
Russell King4b5dda82015-08-06 16:37:18 +0100258 armada_drm_crtc_update_regs(dcrtc, fwork->regs);
Russell King709ffd82015-07-15 18:09:38 +0100259 spin_unlock_irqrestore(&dcrtc->irq_lock, flags);
Russell King96f60e32012-08-15 13:59:49 +0100260
Russell King4b5dda82015-08-06 16:37:18 +0100261 if (fwork->event) {
Russell King709ffd82015-07-15 18:09:38 +0100262 spin_lock_irqsave(&dev->event_lock, flags);
Gustavo Padovandd54b802016-06-06 11:41:33 -0300263 drm_crtc_send_vblank_event(&dcrtc->crtc, fwork->event);
Russell King709ffd82015-07-15 18:09:38 +0100264 spin_unlock_irqrestore(&dev->event_lock, flags);
265 }
Russell King96f60e32012-08-15 13:59:49 +0100266
Russell King96f60e32012-08-15 13:59:49 +0100267 /* Finally, queue the process-half of the cleanup. */
Russell King4b5dda82015-08-06 16:37:18 +0100268 __armada_drm_queue_unref_work(dcrtc->crtc.dev, fwork->old_fb);
269 kfree(fwork);
Russell King96f60e32012-08-15 13:59:49 +0100270}
271
272static void armada_drm_crtc_finish_fb(struct armada_crtc *dcrtc,
273 struct drm_framebuffer *fb, bool force)
274{
275 struct armada_frame_work *work;
276
277 if (!fb)
278 return;
279
280 if (force) {
281 /* Display is disabled, so just drop the old fb */
282 drm_framebuffer_unreference(fb);
283 return;
284 }
285
286 work = kmalloc(sizeof(*work), GFP_KERNEL);
287 if (work) {
288 int i = 0;
Russell King4b5dda82015-08-06 16:37:18 +0100289 work->work.fn = armada_drm_crtc_complete_frame_work;
Russell King96f60e32012-08-15 13:59:49 +0100290 work->event = NULL;
291 work->old_fb = fb;
292 armada_reg_queue_end(work->regs, i);
293
294 if (armada_drm_crtc_queue_frame_work(dcrtc, work) == 0)
295 return;
296
297 kfree(work);
298 }
299
300 /*
301 * Oops - just drop the reference immediately and hope for
302 * the best. The worst that will happen is the buffer gets
303 * reused before it has finished being displayed.
304 */
305 drm_framebuffer_unreference(fb);
306}
307
308static void armada_drm_vblank_off(struct armada_crtc *dcrtc)
309{
Russell King4b5dda82015-08-06 16:37:18 +0100310 struct armada_plane *plane = drm_to_armada_plane(dcrtc->crtc.primary);
Russell King96f60e32012-08-15 13:59:49 +0100311
312 /*
313 * Tell the DRM core that vblank IRQs aren't going to happen for
314 * a while. This cleans up any pending vblank events for us.
315 */
Russell King178e5612014-10-11 23:57:04 +0100316 drm_crtc_vblank_off(&dcrtc->crtc);
Russell King4b5dda82015-08-06 16:37:18 +0100317 armada_drm_plane_work_run(dcrtc, plane);
Russell King96f60e32012-08-15 13:59:49 +0100318}
319
320void armada_drm_crtc_gamma_set(struct drm_crtc *crtc, u16 r, u16 g, u16 b,
321 int idx)
322{
323}
324
325void armada_drm_crtc_gamma_get(struct drm_crtc *crtc, u16 *r, u16 *g, u16 *b,
326 int idx)
327{
328}
329
330/* The mode_config.mutex will be held for this call */
331static void armada_drm_crtc_dpms(struct drm_crtc *crtc, int dpms)
332{
333 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
334
Russell Kingea908ba2016-10-04 22:19:57 +0100335 if (dpms_blanked(dcrtc->dpms) != dpms_blanked(dpms)) {
Russell King96f60e32012-08-15 13:59:49 +0100336 if (dpms_blanked(dpms))
337 armada_drm_vblank_off(dcrtc);
Russell Kingea908ba2016-10-04 22:19:57 +0100338 else if (!IS_ERR(dcrtc->clk))
339 WARN_ON(clk_prepare_enable(dcrtc->clk));
340 dcrtc->dpms = dpms;
341 armada_drm_crtc_update(dcrtc);
342 if (!dpms_blanked(dpms))
Russell King178e5612014-10-11 23:57:04 +0100343 drm_crtc_vblank_on(&dcrtc->crtc);
Russell Kingea908ba2016-10-04 22:19:57 +0100344 else if (!IS_ERR(dcrtc->clk))
345 clk_disable_unprepare(dcrtc->clk);
346 } else if (dcrtc->dpms != dpms) {
347 dcrtc->dpms = dpms;
Russell King96f60e32012-08-15 13:59:49 +0100348 }
349}
350
351/*
352 * Prepare for a mode set. Turn off overlay to ensure that we don't end
353 * up with the overlay size being bigger than the active screen size.
354 * We rely upon X refreshing this state after the mode set has completed.
355 *
356 * The mode_config.mutex will be held for this call
357 */
358static void armada_drm_crtc_prepare(struct drm_crtc *crtc)
359{
360 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
361 struct drm_plane *plane;
362
363 /*
364 * If we have an overlay plane associated with this CRTC, disable
365 * it before the modeset to avoid its coordinates being outside
Russell Kingf8e14062015-06-29 17:52:42 +0100366 * the new mode parameters.
Russell King96f60e32012-08-15 13:59:49 +0100367 */
368 plane = dcrtc->plane;
Russell Kingf8e14062015-06-29 17:52:42 +0100369 if (plane)
370 drm_plane_force_disable(plane);
Russell King96f60e32012-08-15 13:59:49 +0100371}
372
373/* The mode_config.mutex will be held for this call */
374static void armada_drm_crtc_commit(struct drm_crtc *crtc)
375{
376 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
377
378 if (dcrtc->dpms != DRM_MODE_DPMS_ON) {
379 dcrtc->dpms = DRM_MODE_DPMS_ON;
380 armada_drm_crtc_update(dcrtc);
381 }
382}
383
384/* The mode_config.mutex will be held for this call */
385static bool armada_drm_crtc_mode_fixup(struct drm_crtc *crtc,
386 const struct drm_display_mode *mode, struct drm_display_mode *adj)
387{
Russell King96f60e32012-08-15 13:59:49 +0100388 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
389 int ret;
390
391 /* We can't do interlaced modes if we don't have the SPU_ADV_REG */
Russell King42e62ba2014-04-22 15:24:03 +0100392 if (!dcrtc->variant->has_spu_adv_reg &&
Russell King96f60e32012-08-15 13:59:49 +0100393 adj->flags & DRM_MODE_FLAG_INTERLACE)
394 return false;
395
396 /* Check whether the display mode is possible */
Russell King42e62ba2014-04-22 15:24:03 +0100397 ret = dcrtc->variant->compute_clock(dcrtc, adj, NULL);
Russell King96f60e32012-08-15 13:59:49 +0100398 if (ret)
399 return false;
400
401 return true;
402}
403
Russell Kinge5d9ddf2014-04-26 15:19:38 +0100404static void armada_drm_crtc_irq(struct armada_crtc *dcrtc, u32 stat)
Russell King96f60e32012-08-15 13:59:49 +0100405{
Russell King96f60e32012-08-15 13:59:49 +0100406 void __iomem *base = dcrtc->base;
Russell King4a8506d2015-08-07 09:33:05 +0100407 struct drm_plane *ovl_plane;
Russell King96f60e32012-08-15 13:59:49 +0100408
409 if (stat & DMA_FF_UNDERFLOW)
410 DRM_ERROR("video underflow on crtc %u\n", dcrtc->num);
411 if (stat & GRA_FF_UNDERFLOW)
412 DRM_ERROR("graphics underflow on crtc %u\n", dcrtc->num);
413
414 if (stat & VSYNC_IRQ)
Gustavo Padovan0ac28c52016-07-04 21:04:48 -0300415 drm_crtc_handle_vblank(&dcrtc->crtc);
Russell King96f60e32012-08-15 13:59:49 +0100416
417 spin_lock(&dcrtc->irq_lock);
Russell King4a8506d2015-08-07 09:33:05 +0100418 ovl_plane = dcrtc->plane;
419 if (ovl_plane) {
420 struct armada_plane *plane = drm_to_armada_plane(ovl_plane);
421 armada_drm_plane_work_run(dcrtc, plane);
Russell King4a8506d2015-08-07 09:33:05 +0100422 }
Russell King96f60e32012-08-15 13:59:49 +0100423
424 if (stat & GRA_FRAME_IRQ && dcrtc->interlaced) {
425 int i = stat & GRA_FRAME_IRQ0 ? 0 : 1;
426 uint32_t val;
427
428 writel_relaxed(dcrtc->v[i].spu_v_porch, base + LCD_SPU_V_PORCH);
429 writel_relaxed(dcrtc->v[i].spu_v_h_total,
430 base + LCD_SPUT_V_H_TOTAL);
431
432 val = readl_relaxed(base + LCD_SPU_ADV_REG);
433 val &= ~(ADV_VSYNC_L_OFF | ADV_VSYNC_H_OFF | ADV_VSYNCOFFEN);
434 val |= dcrtc->v[i].spu_adv_reg;
Russell King662af0d2013-05-19 10:55:17 +0100435 writel_relaxed(val, base + LCD_SPU_ADV_REG);
Russell King96f60e32012-08-15 13:59:49 +0100436 }
Russell King662af0d2013-05-19 10:55:17 +0100437
438 if (stat & DUMB_FRAMEDONE && dcrtc->cursor_update) {
439 writel_relaxed(dcrtc->cursor_hw_pos,
440 base + LCD_SPU_HWC_OVSA_HPXL_VLN);
441 writel_relaxed(dcrtc->cursor_hw_sz,
442 base + LCD_SPU_HWC_HPXL_VLN);
443 armada_updatel(CFG_HWC_ENA,
444 CFG_HWC_ENA | CFG_HWC_1BITMOD | CFG_HWC_1BITENA,
445 base + LCD_SPU_DMA_CTRL0);
446 dcrtc->cursor_update = false;
447 armada_drm_crtc_disable_irq(dcrtc, DUMB_FRAMEDONE_ENA);
448 }
449
Russell King96f60e32012-08-15 13:59:49 +0100450 spin_unlock(&dcrtc->irq_lock);
451
452 if (stat & GRA_FRAME_IRQ) {
Russell King4b5dda82015-08-06 16:37:18 +0100453 struct armada_plane *plane = drm_to_armada_plane(dcrtc->crtc.primary);
454 armada_drm_plane_work_run(dcrtc, plane);
Russell King96f60e32012-08-15 13:59:49 +0100455 }
456}
457
Russell Kinge5d9ddf2014-04-26 15:19:38 +0100458static irqreturn_t armada_drm_irq(int irq, void *arg)
459{
460 struct armada_crtc *dcrtc = arg;
461 u32 v, stat = readl_relaxed(dcrtc->base + LCD_SPU_IRQ_ISR);
462
463 /*
464 * This is rediculous - rather than writing bits to clear, we
465 * have to set the actual status register value. This is racy.
466 */
467 writel_relaxed(0, dcrtc->base + LCD_SPU_IRQ_ISR);
468
469 /* Mask out those interrupts we haven't enabled */
470 v = stat & dcrtc->irq_ena;
471
472 if (v & (VSYNC_IRQ|GRA_FRAME_IRQ|DUMB_FRAMEDONE)) {
473 armada_drm_crtc_irq(dcrtc, stat);
474 return IRQ_HANDLED;
475 }
476 return IRQ_NONE;
477}
478
Russell King96f60e32012-08-15 13:59:49 +0100479/* These are locked by dev->vbl_lock */
480void armada_drm_crtc_disable_irq(struct armada_crtc *dcrtc, u32 mask)
481{
482 if (dcrtc->irq_ena & mask) {
483 dcrtc->irq_ena &= ~mask;
484 writel(dcrtc->irq_ena, dcrtc->base + LCD_SPU_IRQ_ENA);
485 }
486}
487
488void armada_drm_crtc_enable_irq(struct armada_crtc *dcrtc, u32 mask)
489{
490 if ((dcrtc->irq_ena & mask) != mask) {
491 dcrtc->irq_ena |= mask;
492 writel(dcrtc->irq_ena, dcrtc->base + LCD_SPU_IRQ_ENA);
493 if (readl_relaxed(dcrtc->base + LCD_SPU_IRQ_ISR) & mask)
494 writel(0, dcrtc->base + LCD_SPU_IRQ_ISR);
495 }
496}
497
498static uint32_t armada_drm_crtc_calculate_csc(struct armada_crtc *dcrtc)
499{
500 struct drm_display_mode *adj = &dcrtc->crtc.mode;
501 uint32_t val = 0;
502
503 if (dcrtc->csc_yuv_mode == CSC_YUV_CCIR709)
504 val |= CFG_CSC_YUV_CCIR709;
505 if (dcrtc->csc_rgb_mode == CSC_RGB_STUDIO)
506 val |= CFG_CSC_RGB_STUDIO;
507
508 /*
509 * In auto mode, set the colorimetry, based upon the HDMI spec.
510 * 1280x720p, 1920x1080p and 1920x1080i use ITU709, others use
511 * ITU601. It may be more appropriate to set this depending on
512 * the source - but what if the graphic frame is YUV and the
513 * video frame is RGB?
514 */
515 if ((adj->hdisplay == 1280 && adj->vdisplay == 720 &&
516 !(adj->flags & DRM_MODE_FLAG_INTERLACE)) ||
517 (adj->hdisplay == 1920 && adj->vdisplay == 1080)) {
518 if (dcrtc->csc_yuv_mode == CSC_AUTO)
519 val |= CFG_CSC_YUV_CCIR709;
520 }
521
522 /*
523 * We assume we're connected to a TV-like device, so the YUV->RGB
524 * conversion should produce a limited range. We should set this
525 * depending on the connectors attached to this CRTC, and what
526 * kind of device they report being connected.
527 */
528 if (dcrtc->csc_rgb_mode == CSC_AUTO)
529 val |= CFG_CSC_RGB_STUDIO;
530
531 return val;
532}
533
534/* The mode_config.mutex will be held for this call */
535static int armada_drm_crtc_mode_set(struct drm_crtc *crtc,
536 struct drm_display_mode *mode, struct drm_display_mode *adj,
537 int x, int y, struct drm_framebuffer *old_fb)
538{
Russell King96f60e32012-08-15 13:59:49 +0100539 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
540 struct armada_regs regs[17];
541 uint32_t lm, rm, tm, bm, val, sclk;
542 unsigned long flags;
543 unsigned i;
544 bool interlaced;
545
Matt Roperf4510a22014-04-01 15:22:40 -0700546 drm_framebuffer_reference(crtc->primary->fb);
Russell King96f60e32012-08-15 13:59:49 +0100547
548 interlaced = !!(adj->flags & DRM_MODE_FLAG_INTERLACE);
549
Matt Roperf4510a22014-04-01 15:22:40 -0700550 i = armada_drm_crtc_calc_fb(dcrtc->crtc.primary->fb,
551 x, y, regs, interlaced);
Russell King96f60e32012-08-15 13:59:49 +0100552
553 rm = adj->crtc_hsync_start - adj->crtc_hdisplay;
554 lm = adj->crtc_htotal - adj->crtc_hsync_end;
555 bm = adj->crtc_vsync_start - adj->crtc_vdisplay;
556 tm = adj->crtc_vtotal - adj->crtc_vsync_end;
557
558 DRM_DEBUG_DRIVER("H: %d %d %d %d lm %d rm %d\n",
559 adj->crtc_hdisplay,
560 adj->crtc_hsync_start,
561 adj->crtc_hsync_end,
562 adj->crtc_htotal, lm, rm);
563 DRM_DEBUG_DRIVER("V: %d %d %d %d tm %d bm %d\n",
564 adj->crtc_vdisplay,
565 adj->crtc_vsync_start,
566 adj->crtc_vsync_end,
567 adj->crtc_vtotal, tm, bm);
568
569 /* Wait for pending flips to complete */
Russell King4b5dda82015-08-06 16:37:18 +0100570 armada_drm_plane_work_wait(drm_to_armada_plane(dcrtc->crtc.primary),
571 MAX_SCHEDULE_TIMEOUT);
Russell King96f60e32012-08-15 13:59:49 +0100572
Russell King178e5612014-10-11 23:57:04 +0100573 drm_crtc_vblank_off(crtc);
Russell King96f60e32012-08-15 13:59:49 +0100574
Russell King96f60e32012-08-15 13:59:49 +0100575 val = dcrtc->dumb_ctrl & ~CFG_DUMB_ENA;
576 if (val != dcrtc->dumb_ctrl) {
577 dcrtc->dumb_ctrl = val;
578 writel_relaxed(val, dcrtc->base + LCD_SPU_DUMB_CTRL);
579 }
580
Russell Kinge0ac5e92015-06-29 18:01:38 +0100581 /*
582 * If we are blanked, we would have disabled the clock. Re-enable
583 * it so that compute_clock() does the right thing.
584 */
585 if (!IS_ERR(dcrtc->clk) && dpms_blanked(dcrtc->dpms))
586 WARN_ON(clk_prepare_enable(dcrtc->clk));
587
Russell King96f60e32012-08-15 13:59:49 +0100588 /* Now compute the divider for real */
Russell King42e62ba2014-04-22 15:24:03 +0100589 dcrtc->variant->compute_clock(dcrtc, adj, &sclk);
Russell King96f60e32012-08-15 13:59:49 +0100590
591 /* Ensure graphic fifo is enabled */
592 armada_reg_queue_mod(regs, i, 0, CFG_PDWN64x66, LCD_SPU_SRAM_PARA1);
593 armada_reg_queue_set(regs, i, sclk, LCD_CFG_SCLK_DIV);
594
595 if (interlaced ^ dcrtc->interlaced) {
596 if (adj->flags & DRM_MODE_FLAG_INTERLACE)
Gustavo Padovanaccbaf62016-06-06 11:41:40 -0300597 drm_crtc_vblank_get(&dcrtc->crtc);
Russell King96f60e32012-08-15 13:59:49 +0100598 else
Gustavo Padovanaccbaf62016-06-06 11:41:40 -0300599 drm_crtc_vblank_put(&dcrtc->crtc);
Russell King96f60e32012-08-15 13:59:49 +0100600 dcrtc->interlaced = interlaced;
601 }
602
603 spin_lock_irqsave(&dcrtc->irq_lock, flags);
604
605 /* Even interlaced/progressive frame */
606 dcrtc->v[1].spu_v_h_total = adj->crtc_vtotal << 16 |
607 adj->crtc_htotal;
608 dcrtc->v[1].spu_v_porch = tm << 16 | bm;
609 val = adj->crtc_hsync_start;
Russell King662af0d2013-05-19 10:55:17 +0100610 dcrtc->v[1].spu_adv_reg = val << 20 | val | ADV_VSYNCOFFEN |
Russell King42e62ba2014-04-22 15:24:03 +0100611 dcrtc->variant->spu_adv_reg;
Russell King96f60e32012-08-15 13:59:49 +0100612
613 if (interlaced) {
614 /* Odd interlaced frame */
615 dcrtc->v[0].spu_v_h_total = dcrtc->v[1].spu_v_h_total +
616 (1 << 16);
617 dcrtc->v[0].spu_v_porch = dcrtc->v[1].spu_v_porch + 1;
618 val = adj->crtc_hsync_start - adj->crtc_htotal / 2;
Russell King662af0d2013-05-19 10:55:17 +0100619 dcrtc->v[0].spu_adv_reg = val << 20 | val | ADV_VSYNCOFFEN |
Russell King42e62ba2014-04-22 15:24:03 +0100620 dcrtc->variant->spu_adv_reg;
Russell King96f60e32012-08-15 13:59:49 +0100621 } else {
622 dcrtc->v[0] = dcrtc->v[1];
623 }
624
625 val = adj->crtc_vdisplay << 16 | adj->crtc_hdisplay;
626
627 armada_reg_queue_set(regs, i, val, LCD_SPU_V_H_ACTIVE);
628 armada_reg_queue_set(regs, i, val, LCD_SPU_GRA_HPXL_VLN);
629 armada_reg_queue_set(regs, i, val, LCD_SPU_GZM_HPXL_VLN);
630 armada_reg_queue_set(regs, i, (lm << 16) | rm, LCD_SPU_H_PORCH);
631 armada_reg_queue_set(regs, i, dcrtc->v[0].spu_v_porch, LCD_SPU_V_PORCH);
632 armada_reg_queue_set(regs, i, dcrtc->v[0].spu_v_h_total,
633 LCD_SPUT_V_H_TOTAL);
634
Russell King42e62ba2014-04-22 15:24:03 +0100635 if (dcrtc->variant->has_spu_adv_reg) {
Russell King96f60e32012-08-15 13:59:49 +0100636 armada_reg_queue_mod(regs, i, dcrtc->v[0].spu_adv_reg,
637 ADV_VSYNC_L_OFF | ADV_VSYNC_H_OFF |
638 ADV_VSYNCOFFEN, LCD_SPU_ADV_REG);
Russell King662af0d2013-05-19 10:55:17 +0100639 }
Russell King96f60e32012-08-15 13:59:49 +0100640
641 val = CFG_GRA_ENA | CFG_GRA_HSMOOTH;
Matt Roperf4510a22014-04-01 15:22:40 -0700642 val |= CFG_GRA_FMT(drm_fb_to_armada_fb(dcrtc->crtc.primary->fb)->fmt);
643 val |= CFG_GRA_MOD(drm_fb_to_armada_fb(dcrtc->crtc.primary->fb)->mod);
Russell King96f60e32012-08-15 13:59:49 +0100644
Matt Roperf4510a22014-04-01 15:22:40 -0700645 if (drm_fb_to_armada_fb(dcrtc->crtc.primary->fb)->fmt > CFG_420)
Russell King96f60e32012-08-15 13:59:49 +0100646 val |= CFG_PALETTE_ENA;
647
648 if (interlaced)
649 val |= CFG_GRA_FTOGGLE;
650
651 armada_reg_queue_mod(regs, i, val, CFG_GRAFORMAT |
652 CFG_GRA_MOD(CFG_SWAPRB | CFG_SWAPUV |
653 CFG_SWAPYU | CFG_YUV2RGB) |
654 CFG_PALETTE_ENA | CFG_GRA_FTOGGLE,
655 LCD_SPU_DMA_CTRL0);
656
657 val = adj->flags & DRM_MODE_FLAG_NVSYNC ? CFG_VSYNC_INV : 0;
658 armada_reg_queue_mod(regs, i, val, CFG_VSYNC_INV, LCD_SPU_DMA_CTRL1);
659
660 val = dcrtc->spu_iopad_ctrl | armada_drm_crtc_calculate_csc(dcrtc);
661 armada_reg_queue_set(regs, i, val, LCD_SPU_IOPAD_CONTROL);
662 armada_reg_queue_end(regs, i);
663
664 armada_drm_crtc_update_regs(dcrtc, regs);
665 spin_unlock_irqrestore(&dcrtc->irq_lock, flags);
666
667 armada_drm_crtc_update(dcrtc);
668
Russell King178e5612014-10-11 23:57:04 +0100669 drm_crtc_vblank_on(crtc);
Russell King96f60e32012-08-15 13:59:49 +0100670 armada_drm_crtc_finish_fb(dcrtc, old_fb, dpms_blanked(dcrtc->dpms));
671
672 return 0;
673}
674
675/* The mode_config.mutex will be held for this call */
676static int armada_drm_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
677 struct drm_framebuffer *old_fb)
678{
679 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
680 struct armada_regs regs[4];
681 unsigned i;
682
Matt Roperf4510a22014-04-01 15:22:40 -0700683 i = armada_drm_crtc_calc_fb(crtc->primary->fb, crtc->x, crtc->y, regs,
Russell King96f60e32012-08-15 13:59:49 +0100684 dcrtc->interlaced);
685 armada_reg_queue_end(regs, i);
686
687 /* Wait for pending flips to complete */
Russell King4b5dda82015-08-06 16:37:18 +0100688 armada_drm_plane_work_wait(drm_to_armada_plane(dcrtc->crtc.primary),
689 MAX_SCHEDULE_TIMEOUT);
Russell King96f60e32012-08-15 13:59:49 +0100690
691 /* Take a reference to the new fb as we're using it */
Matt Roperf4510a22014-04-01 15:22:40 -0700692 drm_framebuffer_reference(crtc->primary->fb);
Russell King96f60e32012-08-15 13:59:49 +0100693
694 /* Update the base in the CRTC */
695 armada_drm_crtc_update_regs(dcrtc, regs);
696
697 /* Drop our previously held reference */
698 armada_drm_crtc_finish_fb(dcrtc, old_fb, dpms_blanked(dcrtc->dpms));
699
700 return 0;
701}
702
Russell King58326802015-07-15 18:11:25 +0100703void armada_drm_crtc_plane_disable(struct armada_crtc *dcrtc,
704 struct drm_plane *plane)
705{
Russell King9099ea12015-07-15 18:11:25 +0100706 u32 sram_para1, dma_ctrl0_mask;
Russell King58326802015-07-15 18:11:25 +0100707
708 /*
709 * Drop our reference on any framebuffer attached to this plane.
710 * We don't need to NULL this out as drm_plane_force_disable(),
711 * and __setplane_internal() will do so for an overlay plane, and
712 * __drm_helper_disable_unused_functions() will do so for the
713 * primary plane.
714 */
715 if (plane->fb)
716 drm_framebuffer_unreference(plane->fb);
717
718 /* Power down the Y/U/V FIFOs */
719 sram_para1 = CFG_PDWN16x66 | CFG_PDWN32x66;
720
721 /* Power down most RAMs and FIFOs if this is the primary plane */
Russell King9099ea12015-07-15 18:11:25 +0100722 if (plane->type == DRM_PLANE_TYPE_PRIMARY) {
Russell King58326802015-07-15 18:11:25 +0100723 sram_para1 |= CFG_PDWN256x32 | CFG_PDWN256x24 | CFG_PDWN256x8 |
724 CFG_PDWN32x32 | CFG_PDWN64x66;
Russell King9099ea12015-07-15 18:11:25 +0100725 dma_ctrl0_mask = CFG_GRA_ENA;
726 } else {
727 dma_ctrl0_mask = CFG_DMA_ENA;
728 }
729
730 spin_lock_irq(&dcrtc->irq_lock);
731 armada_updatel(0, dma_ctrl0_mask, dcrtc->base + LCD_SPU_DMA_CTRL0);
732 spin_unlock_irq(&dcrtc->irq_lock);
Russell King58326802015-07-15 18:11:25 +0100733
734 armada_updatel(sram_para1, 0, dcrtc->base + LCD_SPU_SRAM_PARA1);
735}
736
Russell King96f60e32012-08-15 13:59:49 +0100737/* The mode_config.mutex will be held for this call */
738static void armada_drm_crtc_disable(struct drm_crtc *crtc)
739{
740 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
741
742 armada_drm_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
Russell King58326802015-07-15 18:11:25 +0100743 armada_drm_crtc_plane_disable(dcrtc, crtc->primary);
Russell King96f60e32012-08-15 13:59:49 +0100744}
745
746static const struct drm_crtc_helper_funcs armada_crtc_helper_funcs = {
747 .dpms = armada_drm_crtc_dpms,
748 .prepare = armada_drm_crtc_prepare,
749 .commit = armada_drm_crtc_commit,
750 .mode_fixup = armada_drm_crtc_mode_fixup,
751 .mode_set = armada_drm_crtc_mode_set,
752 .mode_set_base = armada_drm_crtc_mode_set_base,
Russell King96f60e32012-08-15 13:59:49 +0100753 .disable = armada_drm_crtc_disable,
754};
755
Russell King662af0d2013-05-19 10:55:17 +0100756static void armada_load_cursor_argb(void __iomem *base, uint32_t *pix,
757 unsigned stride, unsigned width, unsigned height)
758{
759 uint32_t addr;
760 unsigned y;
761
762 addr = SRAM_HWC32_RAM1;
763 for (y = 0; y < height; y++) {
764 uint32_t *p = &pix[y * stride];
765 unsigned x;
766
767 for (x = 0; x < width; x++, p++) {
768 uint32_t val = *p;
769
770 val = (val & 0xff00ff00) |
771 (val & 0x000000ff) << 16 |
772 (val & 0x00ff0000) >> 16;
773
774 writel_relaxed(val,
775 base + LCD_SPU_SRAM_WRDAT);
776 writel_relaxed(addr | SRAM_WRITE,
777 base + LCD_SPU_SRAM_CTRL);
Russell Kingc39b0692014-04-07 12:00:17 +0100778 readl_relaxed(base + LCD_SPU_HWC_OVSA_HPXL_VLN);
Russell King662af0d2013-05-19 10:55:17 +0100779 addr += 1;
780 if ((addr & 0x00ff) == 0)
781 addr += 0xf00;
782 if ((addr & 0x30ff) == 0)
783 addr = SRAM_HWC32_RAM2;
784 }
785 }
786}
787
788static void armada_drm_crtc_cursor_tran(void __iomem *base)
789{
790 unsigned addr;
791
792 for (addr = 0; addr < 256; addr++) {
793 /* write the default value */
794 writel_relaxed(0x55555555, base + LCD_SPU_SRAM_WRDAT);
795 writel_relaxed(addr | SRAM_WRITE | SRAM_HWC32_TRAN,
796 base + LCD_SPU_SRAM_CTRL);
797 }
798}
799
800static int armada_drm_crtc_cursor_update(struct armada_crtc *dcrtc, bool reload)
801{
802 uint32_t xoff, xscr, w = dcrtc->cursor_w, s;
803 uint32_t yoff, yscr, h = dcrtc->cursor_h;
804 uint32_t para1;
805
806 /*
807 * Calculate the visible width and height of the cursor,
808 * screen position, and the position in the cursor bitmap.
809 */
810 if (dcrtc->cursor_x < 0) {
811 xoff = -dcrtc->cursor_x;
812 xscr = 0;
813 w -= min(xoff, w);
814 } else if (dcrtc->cursor_x + w > dcrtc->crtc.mode.hdisplay) {
815 xoff = 0;
816 xscr = dcrtc->cursor_x;
817 w = max_t(int, dcrtc->crtc.mode.hdisplay - dcrtc->cursor_x, 0);
818 } else {
819 xoff = 0;
820 xscr = dcrtc->cursor_x;
821 }
822
823 if (dcrtc->cursor_y < 0) {
824 yoff = -dcrtc->cursor_y;
825 yscr = 0;
826 h -= min(yoff, h);
827 } else if (dcrtc->cursor_y + h > dcrtc->crtc.mode.vdisplay) {
828 yoff = 0;
829 yscr = dcrtc->cursor_y;
830 h = max_t(int, dcrtc->crtc.mode.vdisplay - dcrtc->cursor_y, 0);
831 } else {
832 yoff = 0;
833 yscr = dcrtc->cursor_y;
834 }
835
836 /* On interlaced modes, the vertical cursor size must be halved */
837 s = dcrtc->cursor_w;
838 if (dcrtc->interlaced) {
839 s *= 2;
840 yscr /= 2;
841 h /= 2;
842 }
843
844 if (!dcrtc->cursor_obj || !h || !w) {
845 spin_lock_irq(&dcrtc->irq_lock);
846 armada_drm_crtc_disable_irq(dcrtc, DUMB_FRAMEDONE_ENA);
847 dcrtc->cursor_update = false;
848 armada_updatel(0, CFG_HWC_ENA, dcrtc->base + LCD_SPU_DMA_CTRL0);
849 spin_unlock_irq(&dcrtc->irq_lock);
850 return 0;
851 }
852
853 para1 = readl_relaxed(dcrtc->base + LCD_SPU_SRAM_PARA1);
854 armada_updatel(CFG_CSB_256x32, CFG_CSB_256x32 | CFG_PDWN256x32,
855 dcrtc->base + LCD_SPU_SRAM_PARA1);
856
857 /*
858 * Initialize the transparency if the SRAM was powered down.
859 * We must also reload the cursor data as well.
860 */
861 if (!(para1 & CFG_CSB_256x32)) {
862 armada_drm_crtc_cursor_tran(dcrtc->base);
863 reload = true;
864 }
865
866 if (dcrtc->cursor_hw_sz != (h << 16 | w)) {
867 spin_lock_irq(&dcrtc->irq_lock);
868 armada_drm_crtc_disable_irq(dcrtc, DUMB_FRAMEDONE_ENA);
869 dcrtc->cursor_update = false;
870 armada_updatel(0, CFG_HWC_ENA, dcrtc->base + LCD_SPU_DMA_CTRL0);
871 spin_unlock_irq(&dcrtc->irq_lock);
872 reload = true;
873 }
874 if (reload) {
875 struct armada_gem_object *obj = dcrtc->cursor_obj;
876 uint32_t *pix;
877 /* Set the top-left corner of the cursor image */
878 pix = obj->addr;
879 pix += yoff * s + xoff;
880 armada_load_cursor_argb(dcrtc->base, pix, s, w, h);
881 }
882
883 /* Reload the cursor position, size and enable in the IRQ handler */
884 spin_lock_irq(&dcrtc->irq_lock);
885 dcrtc->cursor_hw_pos = yscr << 16 | xscr;
886 dcrtc->cursor_hw_sz = h << 16 | w;
887 dcrtc->cursor_update = true;
888 armada_drm_crtc_enable_irq(dcrtc, DUMB_FRAMEDONE_ENA);
889 spin_unlock_irq(&dcrtc->irq_lock);
890
891 return 0;
892}
893
894static void cursor_update(void *data)
895{
896 armada_drm_crtc_cursor_update(data, true);
897}
898
899static int armada_drm_crtc_cursor_set(struct drm_crtc *crtc,
900 struct drm_file *file, uint32_t handle, uint32_t w, uint32_t h)
901{
Russell King662af0d2013-05-19 10:55:17 +0100902 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
Russell King662af0d2013-05-19 10:55:17 +0100903 struct armada_gem_object *obj = NULL;
904 int ret;
905
906 /* If no cursor support, replicate drm's return value */
Russell King42e62ba2014-04-22 15:24:03 +0100907 if (!dcrtc->variant->has_spu_adv_reg)
Russell King662af0d2013-05-19 10:55:17 +0100908 return -ENXIO;
909
910 if (handle && w > 0 && h > 0) {
911 /* maximum size is 64x32 or 32x64 */
912 if (w > 64 || h > 64 || (w > 32 && h > 32))
913 return -ENOMEM;
914
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100915 obj = armada_gem_object_lookup(file, handle);
Russell King662af0d2013-05-19 10:55:17 +0100916 if (!obj)
917 return -ENOENT;
918
919 /* Must be a kernel-mapped object */
920 if (!obj->addr) {
921 drm_gem_object_unreference_unlocked(&obj->obj);
922 return -EINVAL;
923 }
924
925 if (obj->obj.size < w * h * 4) {
926 DRM_ERROR("buffer is too small\n");
927 drm_gem_object_unreference_unlocked(&obj->obj);
928 return -ENOMEM;
929 }
930 }
931
Russell King662af0d2013-05-19 10:55:17 +0100932 if (dcrtc->cursor_obj) {
933 dcrtc->cursor_obj->update = NULL;
934 dcrtc->cursor_obj->update_data = NULL;
Daniel Vetter4bd3fd42015-11-23 10:32:45 +0100935 drm_gem_object_unreference_unlocked(&dcrtc->cursor_obj->obj);
Russell King662af0d2013-05-19 10:55:17 +0100936 }
937 dcrtc->cursor_obj = obj;
938 dcrtc->cursor_w = w;
939 dcrtc->cursor_h = h;
940 ret = armada_drm_crtc_cursor_update(dcrtc, true);
941 if (obj) {
942 obj->update_data = dcrtc;
943 obj->update = cursor_update;
944 }
Russell King662af0d2013-05-19 10:55:17 +0100945
946 return ret;
947}
948
949static int armada_drm_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
950{
Russell King662af0d2013-05-19 10:55:17 +0100951 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
Russell King662af0d2013-05-19 10:55:17 +0100952 int ret;
953
954 /* If no cursor support, replicate drm's return value */
Russell King42e62ba2014-04-22 15:24:03 +0100955 if (!dcrtc->variant->has_spu_adv_reg)
Russell King662af0d2013-05-19 10:55:17 +0100956 return -EFAULT;
957
Russell King662af0d2013-05-19 10:55:17 +0100958 dcrtc->cursor_x = x;
959 dcrtc->cursor_y = y;
960 ret = armada_drm_crtc_cursor_update(dcrtc, false);
Russell King662af0d2013-05-19 10:55:17 +0100961
962 return ret;
963}
964
Russell King96f60e32012-08-15 13:59:49 +0100965static void armada_drm_crtc_destroy(struct drm_crtc *crtc)
966{
967 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
968 struct armada_private *priv = crtc->dev->dev_private;
969
Russell King662af0d2013-05-19 10:55:17 +0100970 if (dcrtc->cursor_obj)
Daniel Vetter7a6f7132015-11-23 10:32:34 +0100971 drm_gem_object_unreference_unlocked(&dcrtc->cursor_obj->obj);
Russell King662af0d2013-05-19 10:55:17 +0100972
Russell King96f60e32012-08-15 13:59:49 +0100973 priv->dcrtc[dcrtc->num] = NULL;
974 drm_crtc_cleanup(&dcrtc->crtc);
975
976 if (!IS_ERR(dcrtc->clk))
977 clk_disable_unprepare(dcrtc->clk);
978
Russell Kinge5d9ddf2014-04-26 15:19:38 +0100979 writel_relaxed(0, dcrtc->base + LCD_SPU_IRQ_ENA);
980
Russell King9611cb92014-06-15 11:21:23 +0100981 of_node_put(dcrtc->crtc.port);
982
Russell King96f60e32012-08-15 13:59:49 +0100983 kfree(dcrtc);
984}
985
986/*
987 * The mode_config lock is held here, to prevent races between this
988 * and a mode_set.
989 */
990static int armada_drm_crtc_page_flip(struct drm_crtc *crtc,
Dave Airlie5e4e3ba2013-10-22 09:38:18 +0100991 struct drm_framebuffer *fb, struct drm_pending_vblank_event *event, uint32_t page_flip_flags)
Russell King96f60e32012-08-15 13:59:49 +0100992{
993 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
994 struct armada_frame_work *work;
Russell King96f60e32012-08-15 13:59:49 +0100995 unsigned i;
996 int ret;
997
998 /* We don't support changing the pixel format */
Matt Roperf4510a22014-04-01 15:22:40 -0700999 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Russell King96f60e32012-08-15 13:59:49 +01001000 return -EINVAL;
1001
1002 work = kmalloc(sizeof(*work), GFP_KERNEL);
1003 if (!work)
1004 return -ENOMEM;
1005
Russell King4b5dda82015-08-06 16:37:18 +01001006 work->work.fn = armada_drm_crtc_complete_frame_work;
Russell King96f60e32012-08-15 13:59:49 +01001007 work->event = event;
Matt Roperf4510a22014-04-01 15:22:40 -07001008 work->old_fb = dcrtc->crtc.primary->fb;
Russell King96f60e32012-08-15 13:59:49 +01001009
1010 i = armada_drm_crtc_calc_fb(fb, crtc->x, crtc->y, work->regs,
1011 dcrtc->interlaced);
1012 armada_reg_queue_end(work->regs, i);
1013
1014 /*
Russell Kingc5488302014-10-11 23:53:35 +01001015 * Ensure that we hold a reference on the new framebuffer.
1016 * This has to match the behaviour in mode_set.
Russell King96f60e32012-08-15 13:59:49 +01001017 */
Russell Kingc5488302014-10-11 23:53:35 +01001018 drm_framebuffer_reference(fb);
Russell King96f60e32012-08-15 13:59:49 +01001019
1020 ret = armada_drm_crtc_queue_frame_work(dcrtc, work);
1021 if (ret) {
Russell Kingc5488302014-10-11 23:53:35 +01001022 /* Undo our reference above */
1023 drm_framebuffer_unreference(fb);
Russell King96f60e32012-08-15 13:59:49 +01001024 kfree(work);
1025 return ret;
1026 }
1027
1028 /*
1029 * Don't take a reference on the new framebuffer;
1030 * drm_mode_page_flip_ioctl() has already grabbed a reference and
1031 * will _not_ drop that reference on successful return from this
1032 * function. Simply mark this new framebuffer as the current one.
1033 */
Matt Roperf4510a22014-04-01 15:22:40 -07001034 dcrtc->crtc.primary->fb = fb;
Russell King96f60e32012-08-15 13:59:49 +01001035
1036 /*
1037 * Finally, if the display is blanked, we won't receive an
1038 * interrupt, so complete it now.
1039 */
Russell King4b5dda82015-08-06 16:37:18 +01001040 if (dpms_blanked(dcrtc->dpms))
1041 armada_drm_plane_work_run(dcrtc, drm_to_armada_plane(dcrtc->crtc.primary));
Russell King96f60e32012-08-15 13:59:49 +01001042
1043 return 0;
1044}
1045
1046static int
1047armada_drm_crtc_set_property(struct drm_crtc *crtc,
1048 struct drm_property *property, uint64_t val)
1049{
1050 struct armada_private *priv = crtc->dev->dev_private;
1051 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
1052 bool update_csc = false;
1053
1054 if (property == priv->csc_yuv_prop) {
1055 dcrtc->csc_yuv_mode = val;
1056 update_csc = true;
1057 } else if (property == priv->csc_rgb_prop) {
1058 dcrtc->csc_rgb_mode = val;
1059 update_csc = true;
1060 }
1061
1062 if (update_csc) {
1063 uint32_t val;
1064
1065 val = dcrtc->spu_iopad_ctrl |
1066 armada_drm_crtc_calculate_csc(dcrtc);
1067 writel_relaxed(val, dcrtc->base + LCD_SPU_IOPAD_CONTROL);
1068 }
1069
1070 return 0;
1071}
1072
Ville Syrjäläa02fb902015-12-15 12:20:59 +01001073static const struct drm_crtc_funcs armada_crtc_funcs = {
Russell King662af0d2013-05-19 10:55:17 +01001074 .cursor_set = armada_drm_crtc_cursor_set,
1075 .cursor_move = armada_drm_crtc_cursor_move,
Russell King96f60e32012-08-15 13:59:49 +01001076 .destroy = armada_drm_crtc_destroy,
1077 .set_config = drm_crtc_helper_set_config,
1078 .page_flip = armada_drm_crtc_page_flip,
1079 .set_property = armada_drm_crtc_set_property,
1080};
1081
Russell Kingde323012015-07-15 18:11:24 +01001082static const struct drm_plane_funcs armada_primary_plane_funcs = {
1083 .update_plane = drm_primary_helper_update,
1084 .disable_plane = drm_primary_helper_disable,
1085 .destroy = drm_primary_helper_destroy,
1086};
1087
Russell King5740d272015-07-15 18:11:25 +01001088int armada_drm_plane_init(struct armada_plane *plane)
1089{
1090 init_waitqueue_head(&plane->frame_wait);
1091
1092 return 0;
1093}
1094
Russell King96f60e32012-08-15 13:59:49 +01001095static struct drm_prop_enum_list armada_drm_csc_yuv_enum_list[] = {
1096 { CSC_AUTO, "Auto" },
1097 { CSC_YUV_CCIR601, "CCIR601" },
1098 { CSC_YUV_CCIR709, "CCIR709" },
1099};
1100
1101static struct drm_prop_enum_list armada_drm_csc_rgb_enum_list[] = {
1102 { CSC_AUTO, "Auto" },
1103 { CSC_RGB_COMPUTER, "Computer system" },
1104 { CSC_RGB_STUDIO, "Studio" },
1105};
1106
1107static int armada_drm_crtc_create_properties(struct drm_device *dev)
1108{
1109 struct armada_private *priv = dev->dev_private;
1110
1111 if (priv->csc_yuv_prop)
1112 return 0;
1113
1114 priv->csc_yuv_prop = drm_property_create_enum(dev, 0,
1115 "CSC_YUV", armada_drm_csc_yuv_enum_list,
1116 ARRAY_SIZE(armada_drm_csc_yuv_enum_list));
1117 priv->csc_rgb_prop = drm_property_create_enum(dev, 0,
1118 "CSC_RGB", armada_drm_csc_rgb_enum_list,
1119 ARRAY_SIZE(armada_drm_csc_rgb_enum_list));
1120
1121 if (!priv->csc_yuv_prop || !priv->csc_rgb_prop)
1122 return -ENOMEM;
1123
1124 return 0;
1125}
1126
Russell King0fb29702015-06-06 21:46:53 +01001127static int armada_drm_crtc_create(struct drm_device *drm, struct device *dev,
Russell King9611cb92014-06-15 11:21:23 +01001128 struct resource *res, int irq, const struct armada_variant *variant,
1129 struct device_node *port)
Russell King96f60e32012-08-15 13:59:49 +01001130{
Russell Kingd8c96082014-04-22 11:10:15 +01001131 struct armada_private *priv = drm->dev_private;
Russell King96f60e32012-08-15 13:59:49 +01001132 struct armada_crtc *dcrtc;
Russell Kingde323012015-07-15 18:11:24 +01001133 struct armada_plane *primary;
Russell King96f60e32012-08-15 13:59:49 +01001134 void __iomem *base;
1135 int ret;
1136
Russell Kingd8c96082014-04-22 11:10:15 +01001137 ret = armada_drm_crtc_create_properties(drm);
Russell King96f60e32012-08-15 13:59:49 +01001138 if (ret)
1139 return ret;
1140
Linus Torvaldsa7d7a142014-08-07 17:36:12 -07001141 base = devm_ioremap_resource(dev, res);
Jingoo Hanc9d53c02014-06-11 14:00:05 +09001142 if (IS_ERR(base))
1143 return PTR_ERR(base);
Russell King96f60e32012-08-15 13:59:49 +01001144
1145 dcrtc = kzalloc(sizeof(*dcrtc), GFP_KERNEL);
1146 if (!dcrtc) {
1147 DRM_ERROR("failed to allocate Armada crtc\n");
1148 return -ENOMEM;
1149 }
1150
Russell Kingd8c96082014-04-22 11:10:15 +01001151 if (dev != drm->dev)
1152 dev_set_drvdata(dev, dcrtc);
1153
Russell King42e62ba2014-04-22 15:24:03 +01001154 dcrtc->variant = variant;
Russell King96f60e32012-08-15 13:59:49 +01001155 dcrtc->base = base;
Russell Kingd8c96082014-04-22 11:10:15 +01001156 dcrtc->num = drm->mode_config.num_crtc;
Russell King96f60e32012-08-15 13:59:49 +01001157 dcrtc->clk = ERR_PTR(-EINVAL);
1158 dcrtc->csc_yuv_mode = CSC_AUTO;
1159 dcrtc->csc_rgb_mode = CSC_AUTO;
1160 dcrtc->cfg_dumb_ctrl = DUMB24_RGB888_0;
1161 dcrtc->spu_iopad_ctrl = CFG_VSCALE_LN_EN | CFG_IOPAD_DUMB24;
1162 spin_lock_init(&dcrtc->irq_lock);
1163 dcrtc->irq_ena = CLEAN_SPU_IRQ_ISR;
Russell King96f60e32012-08-15 13:59:49 +01001164
1165 /* Initialize some registers which we don't otherwise set */
1166 writel_relaxed(0x00000001, dcrtc->base + LCD_CFG_SCLK_DIV);
1167 writel_relaxed(0x00000000, dcrtc->base + LCD_SPU_BLANKCOLOR);
1168 writel_relaxed(dcrtc->spu_iopad_ctrl,
1169 dcrtc->base + LCD_SPU_IOPAD_CONTROL);
1170 writel_relaxed(0x00000000, dcrtc->base + LCD_SPU_SRAM_PARA0);
1171 writel_relaxed(CFG_PDWN256x32 | CFG_PDWN256x24 | CFG_PDWN256x8 |
1172 CFG_PDWN32x32 | CFG_PDWN16x66 | CFG_PDWN32x66 |
1173 CFG_PDWN64x66, dcrtc->base + LCD_SPU_SRAM_PARA1);
1174 writel_relaxed(0x2032ff81, dcrtc->base + LCD_SPU_DMA_CTRL1);
1175 writel_relaxed(0x00000000, dcrtc->base + LCD_SPU_GRA_OVSA_HPXL_VLN);
Russell Kinge5d9ddf2014-04-26 15:19:38 +01001176 writel_relaxed(dcrtc->irq_ena, dcrtc->base + LCD_SPU_IRQ_ENA);
1177 writel_relaxed(0, dcrtc->base + LCD_SPU_IRQ_ISR);
Russell King96f60e32012-08-15 13:59:49 +01001178
Russell Kinge5d9ddf2014-04-26 15:19:38 +01001179 ret = devm_request_irq(dev, irq, armada_drm_irq, 0, "armada_drm_crtc",
1180 dcrtc);
1181 if (ret < 0) {
1182 kfree(dcrtc);
1183 return ret;
1184 }
Russell King96f60e32012-08-15 13:59:49 +01001185
Russell King42e62ba2014-04-22 15:24:03 +01001186 if (dcrtc->variant->init) {
Russell Kingd8c96082014-04-22 11:10:15 +01001187 ret = dcrtc->variant->init(dcrtc, dev);
Russell King96f60e32012-08-15 13:59:49 +01001188 if (ret) {
1189 kfree(dcrtc);
1190 return ret;
1191 }
1192 }
1193
1194 /* Ensure AXI pipeline is enabled */
1195 armada_updatel(CFG_ARBFAST_ENA, 0, dcrtc->base + LCD_SPU_DMA_CTRL0);
1196
1197 priv->dcrtc[dcrtc->num] = dcrtc;
1198
Russell King9611cb92014-06-15 11:21:23 +01001199 dcrtc->crtc.port = port;
Russell King1c914ce2015-07-15 18:11:24 +01001200
Russell Kingde323012015-07-15 18:11:24 +01001201 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
Russell King1c914ce2015-07-15 18:11:24 +01001202 if (!primary)
1203 return -ENOMEM;
1204
Russell King5740d272015-07-15 18:11:25 +01001205 ret = armada_drm_plane_init(primary);
1206 if (ret) {
1207 kfree(primary);
1208 return ret;
1209 }
1210
Russell Kingde323012015-07-15 18:11:24 +01001211 ret = drm_universal_plane_init(drm, &primary->base, 0,
1212 &armada_primary_plane_funcs,
1213 armada_primary_formats,
1214 ARRAY_SIZE(armada_primary_formats),
Ville Syrjäläb0b3b792015-12-09 16:19:55 +02001215 DRM_PLANE_TYPE_PRIMARY, NULL);
Russell Kingde323012015-07-15 18:11:24 +01001216 if (ret) {
1217 kfree(primary);
1218 return ret;
1219 }
1220
1221 ret = drm_crtc_init_with_planes(drm, &dcrtc->crtc, &primary->base, NULL,
Ville Syrjäläf9882872015-12-09 16:19:31 +02001222 &armada_crtc_funcs, NULL);
Russell King1c914ce2015-07-15 18:11:24 +01001223 if (ret)
1224 goto err_crtc_init;
1225
Russell King96f60e32012-08-15 13:59:49 +01001226 drm_crtc_helper_add(&dcrtc->crtc, &armada_crtc_helper_funcs);
1227
1228 drm_object_attach_property(&dcrtc->crtc.base, priv->csc_yuv_prop,
1229 dcrtc->csc_yuv_mode);
1230 drm_object_attach_property(&dcrtc->crtc.base, priv->csc_rgb_prop,
1231 dcrtc->csc_rgb_mode);
1232
Russell Kingd8c96082014-04-22 11:10:15 +01001233 return armada_overlay_plane_create(drm, 1 << dcrtc->num);
Russell King1c914ce2015-07-15 18:11:24 +01001234
1235err_crtc_init:
Russell Kingde323012015-07-15 18:11:24 +01001236 primary->base.funcs->destroy(&primary->base);
Russell King1c914ce2015-07-15 18:11:24 +01001237 return ret;
Russell King96f60e32012-08-15 13:59:49 +01001238}
Russell Kingd8c96082014-04-22 11:10:15 +01001239
1240static int
1241armada_lcd_bind(struct device *dev, struct device *master, void *data)
1242{
1243 struct platform_device *pdev = to_platform_device(dev);
1244 struct drm_device *drm = data;
1245 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1246 int irq = platform_get_irq(pdev, 0);
1247 const struct armada_variant *variant;
Russell King9611cb92014-06-15 11:21:23 +01001248 struct device_node *port = NULL;
Russell Kingd8c96082014-04-22 11:10:15 +01001249
1250 if (irq < 0)
1251 return irq;
1252
1253 if (!dev->of_node) {
1254 const struct platform_device_id *id;
1255
1256 id = platform_get_device_id(pdev);
1257 if (!id)
1258 return -ENXIO;
1259
1260 variant = (const struct armada_variant *)id->driver_data;
1261 } else {
1262 const struct of_device_id *match;
Russell King9611cb92014-06-15 11:21:23 +01001263 struct device_node *np, *parent = dev->of_node;
Russell Kingd8c96082014-04-22 11:10:15 +01001264
1265 match = of_match_device(dev->driver->of_match_table, dev);
1266 if (!match)
1267 return -ENXIO;
1268
Russell King9611cb92014-06-15 11:21:23 +01001269 np = of_get_child_by_name(parent, "ports");
1270 if (np)
1271 parent = np;
1272 port = of_get_child_by_name(parent, "port");
1273 of_node_put(np);
1274 if (!port) {
1275 dev_err(dev, "no port node found in %s\n",
1276 parent->full_name);
1277 return -ENXIO;
1278 }
1279
Russell Kingd8c96082014-04-22 11:10:15 +01001280 variant = match->data;
1281 }
1282
Russell King9611cb92014-06-15 11:21:23 +01001283 return armada_drm_crtc_create(drm, dev, res, irq, variant, port);
Russell Kingd8c96082014-04-22 11:10:15 +01001284}
1285
1286static void
1287armada_lcd_unbind(struct device *dev, struct device *master, void *data)
1288{
1289 struct armada_crtc *dcrtc = dev_get_drvdata(dev);
1290
1291 armada_drm_crtc_destroy(&dcrtc->crtc);
1292}
1293
1294static const struct component_ops armada_lcd_ops = {
1295 .bind = armada_lcd_bind,
1296 .unbind = armada_lcd_unbind,
1297};
1298
1299static int armada_lcd_probe(struct platform_device *pdev)
1300{
1301 return component_add(&pdev->dev, &armada_lcd_ops);
1302}
1303
1304static int armada_lcd_remove(struct platform_device *pdev)
1305{
1306 component_del(&pdev->dev, &armada_lcd_ops);
1307 return 0;
1308}
1309
1310static struct of_device_id armada_lcd_of_match[] = {
1311 {
1312 .compatible = "marvell,dove-lcd",
1313 .data = &armada510_ops,
1314 },
1315 {}
1316};
1317MODULE_DEVICE_TABLE(of, armada_lcd_of_match);
1318
1319static const struct platform_device_id armada_lcd_platform_ids[] = {
1320 {
1321 .name = "armada-lcd",
1322 .driver_data = (unsigned long)&armada510_ops,
1323 }, {
1324 .name = "armada-510-lcd",
1325 .driver_data = (unsigned long)&armada510_ops,
1326 },
1327 { },
1328};
1329MODULE_DEVICE_TABLE(platform, armada_lcd_platform_ids);
1330
1331struct platform_driver armada_lcd_platform_driver = {
1332 .probe = armada_lcd_probe,
1333 .remove = armada_lcd_remove,
1334 .driver = {
1335 .name = "armada-lcd",
1336 .owner = THIS_MODULE,
1337 .of_match_table = armada_lcd_of_match,
1338 },
1339 .id_table = armada_lcd_platform_ids,
1340};