blob: 007fc5d3eb5419f6bc858c2d6ab95ad3acd37926 [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 {
23 struct drm_pending_vblank_event *event;
24 struct armada_regs regs[4];
25 struct drm_framebuffer *old_fb;
26};
27
28enum csc_mode {
29 CSC_AUTO = 0,
30 CSC_YUV_CCIR601 = 1,
31 CSC_YUV_CCIR709 = 2,
32 CSC_RGB_COMPUTER = 1,
33 CSC_RGB_STUDIO = 2,
34};
35
Russell King1c914ce2015-07-15 18:11:24 +010036static const uint32_t armada_primary_formats[] = {
37 DRM_FORMAT_UYVY,
38 DRM_FORMAT_YUYV,
39 DRM_FORMAT_VYUY,
40 DRM_FORMAT_YVYU,
41 DRM_FORMAT_ARGB8888,
42 DRM_FORMAT_ABGR8888,
43 DRM_FORMAT_XRGB8888,
44 DRM_FORMAT_XBGR8888,
45 DRM_FORMAT_RGB888,
46 DRM_FORMAT_BGR888,
47 DRM_FORMAT_ARGB1555,
48 DRM_FORMAT_ABGR1555,
49 DRM_FORMAT_RGB565,
50 DRM_FORMAT_BGR565,
51};
52
Russell King96f60e32012-08-15 13:59:49 +010053/*
54 * A note about interlacing. Let's consider HDMI 1920x1080i.
55 * The timing parameters we have from X are:
56 * Hact HsyA HsyI Htot Vact VsyA VsyI Vtot
57 * 1920 2448 2492 2640 1080 1084 1094 1125
58 * Which get translated to:
59 * Hact HsyA HsyI Htot Vact VsyA VsyI Vtot
60 * 1920 2448 2492 2640 540 542 547 562
61 *
62 * This is how it is defined by CEA-861-D - line and pixel numbers are
63 * referenced to the rising edge of VSYNC and HSYNC. Total clocks per
64 * line: 2640. The odd frame, the first active line is at line 21, and
65 * the even frame, the first active line is 584.
66 *
67 * LN: 560 561 562 563 567 568 569
68 * DE: ~~~|____________________________//__________________________
69 * HSYNC: ____|~|_____|~|_____|~|_____|~|_//__|~|_____|~|_____|~|_____
70 * VSYNC: _________________________|~~~~~~//~~~~~~~~~~~~~~~|__________
71 * 22 blanking lines. VSYNC at 1320 (referenced to the HSYNC rising edge).
72 *
73 * LN: 1123 1124 1125 1 5 6 7
74 * DE: ~~~|____________________________//__________________________
75 * HSYNC: ____|~|_____|~|_____|~|_____|~|_//__|~|_____|~|_____|~|_____
76 * VSYNC: ____________________|~~~~~~~~~~~//~~~~~~~~~~|_______________
77 * 23 blanking lines
78 *
79 * The Armada LCD Controller line and pixel numbers are, like X timings,
80 * referenced to the top left of the active frame.
81 *
82 * So, translating these to our LCD controller:
83 * Odd frame, 563 total lines, VSYNC at line 543-548, pixel 1128.
84 * Even frame, 562 total lines, VSYNC at line 542-547, pixel 2448.
85 * Note: Vsync front porch remains constant!
86 *
87 * if (odd_frame) {
88 * vtotal = mode->crtc_vtotal + 1;
89 * vbackporch = mode->crtc_vsync_start - mode->crtc_vdisplay + 1;
90 * vhorizpos = mode->crtc_hsync_start - mode->crtc_htotal / 2
91 * } else {
92 * vtotal = mode->crtc_vtotal;
93 * vbackporch = mode->crtc_vsync_start - mode->crtc_vdisplay;
94 * vhorizpos = mode->crtc_hsync_start;
95 * }
96 * vfrontporch = mode->crtc_vtotal - mode->crtc_vsync_end;
97 *
98 * So, we need to reprogram these registers on each vsync event:
99 * LCD_SPU_V_PORCH, LCD_SPU_ADV_REG, LCD_SPUT_V_H_TOTAL
100 *
101 * Note: we do not use the frame done interrupts because these appear
102 * to happen too early, and lead to jitter on the display (presumably
103 * they occur at the end of the last active line, before the vsync back
104 * porch, which we're reprogramming.)
105 */
106
107void
108armada_drm_crtc_update_regs(struct armada_crtc *dcrtc, struct armada_regs *regs)
109{
110 while (regs->offset != ~0) {
111 void __iomem *reg = dcrtc->base + regs->offset;
112 uint32_t val;
113
114 val = regs->mask;
115 if (val != 0)
116 val &= readl_relaxed(reg);
117 writel_relaxed(val | regs->val, reg);
118 ++regs;
119 }
120}
121
122#define dpms_blanked(dpms) ((dpms) != DRM_MODE_DPMS_ON)
123
124static void armada_drm_crtc_update(struct armada_crtc *dcrtc)
125{
126 uint32_t dumb_ctrl;
127
128 dumb_ctrl = dcrtc->cfg_dumb_ctrl;
129
130 if (!dpms_blanked(dcrtc->dpms))
131 dumb_ctrl |= CFG_DUMB_ENA;
132
133 /*
134 * When the dumb interface isn't in DUMB24_RGB888_0 mode, it might
135 * be using SPI or GPIO. If we set this to DUMB_BLANK, we will
136 * force LCD_D[23:0] to output blank color, overriding the GPIO or
137 * SPI usage. So leave it as-is unless in DUMB24_RGB888_0 mode.
138 */
139 if (dpms_blanked(dcrtc->dpms) &&
140 (dumb_ctrl & DUMB_MASK) == DUMB24_RGB888_0) {
141 dumb_ctrl &= ~DUMB_MASK;
142 dumb_ctrl |= DUMB_BLANK;
143 }
144
145 /*
146 * The documentation doesn't indicate what the normal state of
147 * the sync signals are. Sebastian Hesselbart kindly probed
148 * these signals on his board to determine their state.
149 *
150 * The non-inverted state of the sync signals is active high.
151 * Setting these bits makes the appropriate signal active low.
152 */
153 if (dcrtc->crtc.mode.flags & DRM_MODE_FLAG_NCSYNC)
154 dumb_ctrl |= CFG_INV_CSYNC;
155 if (dcrtc->crtc.mode.flags & DRM_MODE_FLAG_NHSYNC)
156 dumb_ctrl |= CFG_INV_HSYNC;
157 if (dcrtc->crtc.mode.flags & DRM_MODE_FLAG_NVSYNC)
158 dumb_ctrl |= CFG_INV_VSYNC;
159
160 if (dcrtc->dumb_ctrl != dumb_ctrl) {
161 dcrtc->dumb_ctrl = dumb_ctrl;
162 writel_relaxed(dumb_ctrl, dcrtc->base + LCD_SPU_DUMB_CTRL);
163 }
164}
165
166static unsigned armada_drm_crtc_calc_fb(struct drm_framebuffer *fb,
167 int x, int y, struct armada_regs *regs, bool interlaced)
168{
169 struct armada_gem_object *obj = drm_fb_obj(fb);
170 unsigned pitch = fb->pitches[0];
171 unsigned offset = y * pitch + x * fb->bits_per_pixel / 8;
172 uint32_t addr_odd, addr_even;
173 unsigned i = 0;
174
175 DRM_DEBUG_DRIVER("pitch %u x %d y %d bpp %d\n",
176 pitch, x, y, fb->bits_per_pixel);
177
178 addr_odd = addr_even = obj->dev_addr + offset;
179
180 if (interlaced) {
181 addr_even += pitch;
182 pitch *= 2;
183 }
184
185 /* write offset, base, and pitch */
186 armada_reg_queue_set(regs, i, addr_odd, LCD_CFG_GRA_START_ADDR0);
187 armada_reg_queue_set(regs, i, addr_even, LCD_CFG_GRA_START_ADDR1);
188 armada_reg_queue_mod(regs, i, pitch, 0xffff, LCD_CFG_GRA_PITCH);
189
190 return i;
191}
192
Russell King7c8f7e12015-06-29 17:52:16 +0100193void armada_drm_vbl_event_add(struct armada_crtc *dcrtc,
194 struct armada_vbl_event *evt)
195{
196 unsigned long flags;
197 bool not_on_list;
198
199 WARN_ON(drm_vblank_get(dcrtc->crtc.dev, dcrtc->num));
200
201 spin_lock_irqsave(&dcrtc->irq_lock, flags);
202 not_on_list = list_empty(&evt->node);
203 if (not_on_list)
204 list_add_tail(&evt->node, &dcrtc->vbl_list);
205 spin_unlock_irqrestore(&dcrtc->irq_lock, flags);
206
207 if (!not_on_list)
208 drm_vblank_put(dcrtc->crtc.dev, dcrtc->num);
209}
210
211void armada_drm_vbl_event_remove(struct armada_crtc *dcrtc,
212 struct armada_vbl_event *evt)
213{
214 if (!list_empty(&evt->node)) {
215 list_del_init(&evt->node);
216 drm_vblank_put(dcrtc->crtc.dev, dcrtc->num);
217 }
218}
219
220static void armada_drm_vbl_event_run(struct armada_crtc *dcrtc)
221{
222 struct armada_vbl_event *e, *n;
223
224 list_for_each_entry_safe(e, n, &dcrtc->vbl_list, node) {
225 list_del_init(&e->node);
226 drm_vblank_put(dcrtc->crtc.dev, dcrtc->num);
227 e->fn(dcrtc, e->data);
228 }
229}
230
Russell King96f60e32012-08-15 13:59:49 +0100231static int armada_drm_crtc_queue_frame_work(struct armada_crtc *dcrtc,
232 struct armada_frame_work *work)
233{
234 struct drm_device *dev = dcrtc->crtc.dev;
Russell King96f60e32012-08-15 13:59:49 +0100235 int ret;
236
237 ret = drm_vblank_get(dev, dcrtc->num);
238 if (ret) {
239 DRM_ERROR("failed to acquire vblank counter\n");
240 return ret;
241 }
242
Russell King709ffd82015-07-15 18:09:38 +0100243 if (cmpxchg(&dcrtc->frame_work, NULL, work)) {
Russell King96f60e32012-08-15 13:59:49 +0100244 drm_vblank_put(dev, dcrtc->num);
Russell King709ffd82015-07-15 18:09:38 +0100245 ret = -EBUSY;
246 }
Russell King96f60e32012-08-15 13:59:49 +0100247
248 return ret;
249}
250
Russell King709ffd82015-07-15 18:09:38 +0100251static void armada_drm_crtc_complete_frame_work(struct armada_crtc *dcrtc,
252 struct armada_frame_work *work)
Russell King96f60e32012-08-15 13:59:49 +0100253{
254 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 King96f60e32012-08-15 13:59:49 +0100258 armada_drm_crtc_update_regs(dcrtc, work->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 King709ffd82015-07-15 18:09:38 +0100261 if (work->event) {
262 spin_lock_irqsave(&dev->event_lock, flags);
Russell King96f60e32012-08-15 13:59:49 +0100263 drm_send_vblank_event(dev, dcrtc->num, work->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
267 drm_vblank_put(dev, dcrtc->num);
268
269 /* Finally, queue the process-half of the cleanup. */
270 __armada_drm_queue_unref_work(dcrtc->crtc.dev, work->old_fb);
271 kfree(work);
272}
273
274static void armada_drm_crtc_finish_fb(struct armada_crtc *dcrtc,
275 struct drm_framebuffer *fb, bool force)
276{
277 struct armada_frame_work *work;
278
279 if (!fb)
280 return;
281
282 if (force) {
283 /* Display is disabled, so just drop the old fb */
284 drm_framebuffer_unreference(fb);
285 return;
286 }
287
288 work = kmalloc(sizeof(*work), GFP_KERNEL);
289 if (work) {
290 int i = 0;
291 work->event = NULL;
292 work->old_fb = fb;
293 armada_reg_queue_end(work->regs, i);
294
295 if (armada_drm_crtc_queue_frame_work(dcrtc, work) == 0)
296 return;
297
298 kfree(work);
299 }
300
301 /*
302 * Oops - just drop the reference immediately and hope for
303 * the best. The worst that will happen is the buffer gets
304 * reused before it has finished being displayed.
305 */
306 drm_framebuffer_unreference(fb);
307}
308
309static void armada_drm_vblank_off(struct armada_crtc *dcrtc)
310{
Russell King709ffd82015-07-15 18:09:38 +0100311 struct armada_frame_work *work;
Russell King96f60e32012-08-15 13:59:49 +0100312
313 /*
314 * Tell the DRM core that vblank IRQs aren't going to happen for
315 * a while. This cleans up any pending vblank events for us.
316 */
Russell King178e5612014-10-11 23:57:04 +0100317 drm_crtc_vblank_off(&dcrtc->crtc);
Russell King96f60e32012-08-15 13:59:49 +0100318
319 /* Handle any pending flip event. */
Russell King709ffd82015-07-15 18:09:38 +0100320 work = xchg(&dcrtc->frame_work, NULL);
321 if (work)
322 armada_drm_crtc_complete_frame_work(dcrtc, work);
Russell King96f60e32012-08-15 13:59:49 +0100323}
324
325void armada_drm_crtc_gamma_set(struct drm_crtc *crtc, u16 r, u16 g, u16 b,
326 int idx)
327{
328}
329
330void armada_drm_crtc_gamma_get(struct drm_crtc *crtc, u16 *r, u16 *g, u16 *b,
331 int idx)
332{
333}
334
335/* The mode_config.mutex will be held for this call */
336static void armada_drm_crtc_dpms(struct drm_crtc *crtc, int dpms)
337{
338 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
339
340 if (dcrtc->dpms != dpms) {
341 dcrtc->dpms = dpms;
Russell Kinge0ac5e92015-06-29 18:01:38 +0100342 if (!IS_ERR(dcrtc->clk) && !dpms_blanked(dpms))
343 WARN_ON(clk_prepare_enable(dcrtc->clk));
Russell King96f60e32012-08-15 13:59:49 +0100344 armada_drm_crtc_update(dcrtc);
Russell Kinge0ac5e92015-06-29 18:01:38 +0100345 if (!IS_ERR(dcrtc->clk) && dpms_blanked(dpms))
346 clk_disable_unprepare(dcrtc->clk);
Russell King96f60e32012-08-15 13:59:49 +0100347 if (dpms_blanked(dpms))
348 armada_drm_vblank_off(dcrtc);
Russell King178e5612014-10-11 23:57:04 +0100349 else
350 drm_crtc_vblank_on(&dcrtc->crtc);
Russell King96f60e32012-08-15 13:59:49 +0100351 }
352}
353
354/*
355 * Prepare for a mode set. Turn off overlay to ensure that we don't end
356 * up with the overlay size being bigger than the active screen size.
357 * We rely upon X refreshing this state after the mode set has completed.
358 *
359 * The mode_config.mutex will be held for this call
360 */
361static void armada_drm_crtc_prepare(struct drm_crtc *crtc)
362{
363 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
364 struct drm_plane *plane;
365
366 /*
367 * If we have an overlay plane associated with this CRTC, disable
368 * it before the modeset to avoid its coordinates being outside
Russell Kingf8e14062015-06-29 17:52:42 +0100369 * the new mode parameters.
Russell King96f60e32012-08-15 13:59:49 +0100370 */
371 plane = dcrtc->plane;
Russell Kingf8e14062015-06-29 17:52:42 +0100372 if (plane)
373 drm_plane_force_disable(plane);
Russell King96f60e32012-08-15 13:59:49 +0100374}
375
376/* The mode_config.mutex will be held for this call */
377static void armada_drm_crtc_commit(struct drm_crtc *crtc)
378{
379 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
380
381 if (dcrtc->dpms != DRM_MODE_DPMS_ON) {
382 dcrtc->dpms = DRM_MODE_DPMS_ON;
383 armada_drm_crtc_update(dcrtc);
384 }
385}
386
387/* The mode_config.mutex will be held for this call */
388static bool armada_drm_crtc_mode_fixup(struct drm_crtc *crtc,
389 const struct drm_display_mode *mode, struct drm_display_mode *adj)
390{
Russell King96f60e32012-08-15 13:59:49 +0100391 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
392 int ret;
393
394 /* We can't do interlaced modes if we don't have the SPU_ADV_REG */
Russell King42e62ba2014-04-22 15:24:03 +0100395 if (!dcrtc->variant->has_spu_adv_reg &&
Russell King96f60e32012-08-15 13:59:49 +0100396 adj->flags & DRM_MODE_FLAG_INTERLACE)
397 return false;
398
399 /* Check whether the display mode is possible */
Russell King42e62ba2014-04-22 15:24:03 +0100400 ret = dcrtc->variant->compute_clock(dcrtc, adj, NULL);
Russell King96f60e32012-08-15 13:59:49 +0100401 if (ret)
402 return false;
403
404 return true;
405}
406
Russell Kinge5d9ddf2014-04-26 15:19:38 +0100407static void armada_drm_crtc_irq(struct armada_crtc *dcrtc, u32 stat)
Russell King96f60e32012-08-15 13:59:49 +0100408{
Russell King96f60e32012-08-15 13:59:49 +0100409 void __iomem *base = dcrtc->base;
410
411 if (stat & DMA_FF_UNDERFLOW)
412 DRM_ERROR("video underflow on crtc %u\n", dcrtc->num);
413 if (stat & GRA_FF_UNDERFLOW)
414 DRM_ERROR("graphics underflow on crtc %u\n", dcrtc->num);
415
416 if (stat & VSYNC_IRQ)
417 drm_handle_vblank(dcrtc->crtc.dev, dcrtc->num);
418
419 spin_lock(&dcrtc->irq_lock);
Russell King7c8f7e12015-06-29 17:52:16 +0100420 armada_drm_vbl_event_run(dcrtc);
Russell King96f60e32012-08-15 13:59:49 +0100421
422 if (stat & GRA_FRAME_IRQ && dcrtc->interlaced) {
423 int i = stat & GRA_FRAME_IRQ0 ? 0 : 1;
424 uint32_t val;
425
426 writel_relaxed(dcrtc->v[i].spu_v_porch, base + LCD_SPU_V_PORCH);
427 writel_relaxed(dcrtc->v[i].spu_v_h_total,
428 base + LCD_SPUT_V_H_TOTAL);
429
430 val = readl_relaxed(base + LCD_SPU_ADV_REG);
431 val &= ~(ADV_VSYNC_L_OFF | ADV_VSYNC_H_OFF | ADV_VSYNCOFFEN);
432 val |= dcrtc->v[i].spu_adv_reg;
Russell King662af0d2013-05-19 10:55:17 +0100433 writel_relaxed(val, base + LCD_SPU_ADV_REG);
Russell King96f60e32012-08-15 13:59:49 +0100434 }
Russell King662af0d2013-05-19 10:55:17 +0100435
436 if (stat & DUMB_FRAMEDONE && dcrtc->cursor_update) {
437 writel_relaxed(dcrtc->cursor_hw_pos,
438 base + LCD_SPU_HWC_OVSA_HPXL_VLN);
439 writel_relaxed(dcrtc->cursor_hw_sz,
440 base + LCD_SPU_HWC_HPXL_VLN);
441 armada_updatel(CFG_HWC_ENA,
442 CFG_HWC_ENA | CFG_HWC_1BITMOD | CFG_HWC_1BITENA,
443 base + LCD_SPU_DMA_CTRL0);
444 dcrtc->cursor_update = false;
445 armada_drm_crtc_disable_irq(dcrtc, DUMB_FRAMEDONE_ENA);
446 }
447
Russell King96f60e32012-08-15 13:59:49 +0100448 spin_unlock(&dcrtc->irq_lock);
449
450 if (stat & GRA_FRAME_IRQ) {
Russell King709ffd82015-07-15 18:09:38 +0100451 struct armada_frame_work *work = xchg(&dcrtc->frame_work, NULL);
Russell King96f60e32012-08-15 13:59:49 +0100452
Russell King709ffd82015-07-15 18:09:38 +0100453 if (work)
454 armada_drm_crtc_complete_frame_work(dcrtc, work);
Russell King96f60e32012-08-15 13:59:49 +0100455
456 wake_up(&dcrtc->frame_wait);
457 }
458}
459
Russell Kinge5d9ddf2014-04-26 15:19:38 +0100460static irqreturn_t armada_drm_irq(int irq, void *arg)
461{
462 struct armada_crtc *dcrtc = arg;
463 u32 v, stat = readl_relaxed(dcrtc->base + LCD_SPU_IRQ_ISR);
464
465 /*
466 * This is rediculous - rather than writing bits to clear, we
467 * have to set the actual status register value. This is racy.
468 */
469 writel_relaxed(0, dcrtc->base + LCD_SPU_IRQ_ISR);
470
471 /* Mask out those interrupts we haven't enabled */
472 v = stat & dcrtc->irq_ena;
473
474 if (v & (VSYNC_IRQ|GRA_FRAME_IRQ|DUMB_FRAMEDONE)) {
475 armada_drm_crtc_irq(dcrtc, stat);
476 return IRQ_HANDLED;
477 }
478 return IRQ_NONE;
479}
480
Russell King96f60e32012-08-15 13:59:49 +0100481/* These are locked by dev->vbl_lock */
482void armada_drm_crtc_disable_irq(struct armada_crtc *dcrtc, u32 mask)
483{
484 if (dcrtc->irq_ena & mask) {
485 dcrtc->irq_ena &= ~mask;
486 writel(dcrtc->irq_ena, dcrtc->base + LCD_SPU_IRQ_ENA);
487 }
488}
489
490void armada_drm_crtc_enable_irq(struct armada_crtc *dcrtc, u32 mask)
491{
492 if ((dcrtc->irq_ena & mask) != mask) {
493 dcrtc->irq_ena |= mask;
494 writel(dcrtc->irq_ena, dcrtc->base + LCD_SPU_IRQ_ENA);
495 if (readl_relaxed(dcrtc->base + LCD_SPU_IRQ_ISR) & mask)
496 writel(0, dcrtc->base + LCD_SPU_IRQ_ISR);
497 }
498}
499
500static uint32_t armada_drm_crtc_calculate_csc(struct armada_crtc *dcrtc)
501{
502 struct drm_display_mode *adj = &dcrtc->crtc.mode;
503 uint32_t val = 0;
504
505 if (dcrtc->csc_yuv_mode == CSC_YUV_CCIR709)
506 val |= CFG_CSC_YUV_CCIR709;
507 if (dcrtc->csc_rgb_mode == CSC_RGB_STUDIO)
508 val |= CFG_CSC_RGB_STUDIO;
509
510 /*
511 * In auto mode, set the colorimetry, based upon the HDMI spec.
512 * 1280x720p, 1920x1080p and 1920x1080i use ITU709, others use
513 * ITU601. It may be more appropriate to set this depending on
514 * the source - but what if the graphic frame is YUV and the
515 * video frame is RGB?
516 */
517 if ((adj->hdisplay == 1280 && adj->vdisplay == 720 &&
518 !(adj->flags & DRM_MODE_FLAG_INTERLACE)) ||
519 (adj->hdisplay == 1920 && adj->vdisplay == 1080)) {
520 if (dcrtc->csc_yuv_mode == CSC_AUTO)
521 val |= CFG_CSC_YUV_CCIR709;
522 }
523
524 /*
525 * We assume we're connected to a TV-like device, so the YUV->RGB
526 * conversion should produce a limited range. We should set this
527 * depending on the connectors attached to this CRTC, and what
528 * kind of device they report being connected.
529 */
530 if (dcrtc->csc_rgb_mode == CSC_AUTO)
531 val |= CFG_CSC_RGB_STUDIO;
532
533 return val;
534}
535
536/* The mode_config.mutex will be held for this call */
537static int armada_drm_crtc_mode_set(struct drm_crtc *crtc,
538 struct drm_display_mode *mode, struct drm_display_mode *adj,
539 int x, int y, struct drm_framebuffer *old_fb)
540{
Russell King96f60e32012-08-15 13:59:49 +0100541 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
542 struct armada_regs regs[17];
543 uint32_t lm, rm, tm, bm, val, sclk;
544 unsigned long flags;
545 unsigned i;
546 bool interlaced;
547
Matt Roperf4510a22014-04-01 15:22:40 -0700548 drm_framebuffer_reference(crtc->primary->fb);
Russell King96f60e32012-08-15 13:59:49 +0100549
550 interlaced = !!(adj->flags & DRM_MODE_FLAG_INTERLACE);
551
Matt Roperf4510a22014-04-01 15:22:40 -0700552 i = armada_drm_crtc_calc_fb(dcrtc->crtc.primary->fb,
553 x, y, regs, interlaced);
Russell King96f60e32012-08-15 13:59:49 +0100554
555 rm = adj->crtc_hsync_start - adj->crtc_hdisplay;
556 lm = adj->crtc_htotal - adj->crtc_hsync_end;
557 bm = adj->crtc_vsync_start - adj->crtc_vdisplay;
558 tm = adj->crtc_vtotal - adj->crtc_vsync_end;
559
560 DRM_DEBUG_DRIVER("H: %d %d %d %d lm %d rm %d\n",
561 adj->crtc_hdisplay,
562 adj->crtc_hsync_start,
563 adj->crtc_hsync_end,
564 adj->crtc_htotal, lm, rm);
565 DRM_DEBUG_DRIVER("V: %d %d %d %d tm %d bm %d\n",
566 adj->crtc_vdisplay,
567 adj->crtc_vsync_start,
568 adj->crtc_vsync_end,
569 adj->crtc_vtotal, tm, bm);
570
571 /* Wait for pending flips to complete */
572 wait_event(dcrtc->frame_wait, !dcrtc->frame_work);
573
Russell King178e5612014-10-11 23:57:04 +0100574 drm_crtc_vblank_off(crtc);
Russell King96f60e32012-08-15 13:59:49 +0100575
Russell King96f60e32012-08-15 13:59:49 +0100576 val = dcrtc->dumb_ctrl & ~CFG_DUMB_ENA;
577 if (val != dcrtc->dumb_ctrl) {
578 dcrtc->dumb_ctrl = val;
579 writel_relaxed(val, dcrtc->base + LCD_SPU_DUMB_CTRL);
580 }
581
Russell Kinge0ac5e92015-06-29 18:01:38 +0100582 /*
583 * If we are blanked, we would have disabled the clock. Re-enable
584 * it so that compute_clock() does the right thing.
585 */
586 if (!IS_ERR(dcrtc->clk) && dpms_blanked(dcrtc->dpms))
587 WARN_ON(clk_prepare_enable(dcrtc->clk));
588
Russell King96f60e32012-08-15 13:59:49 +0100589 /* Now compute the divider for real */
Russell King42e62ba2014-04-22 15:24:03 +0100590 dcrtc->variant->compute_clock(dcrtc, adj, &sclk);
Russell King96f60e32012-08-15 13:59:49 +0100591
592 /* Ensure graphic fifo is enabled */
593 armada_reg_queue_mod(regs, i, 0, CFG_PDWN64x66, LCD_SPU_SRAM_PARA1);
594 armada_reg_queue_set(regs, i, sclk, LCD_CFG_SCLK_DIV);
595
596 if (interlaced ^ dcrtc->interlaced) {
597 if (adj->flags & DRM_MODE_FLAG_INTERLACE)
598 drm_vblank_get(dcrtc->crtc.dev, dcrtc->num);
599 else
600 drm_vblank_put(dcrtc->crtc.dev, dcrtc->num);
601 dcrtc->interlaced = interlaced;
602 }
603
604 spin_lock_irqsave(&dcrtc->irq_lock, flags);
605
606 /* Even interlaced/progressive frame */
607 dcrtc->v[1].spu_v_h_total = adj->crtc_vtotal << 16 |
608 adj->crtc_htotal;
609 dcrtc->v[1].spu_v_porch = tm << 16 | bm;
610 val = adj->crtc_hsync_start;
Russell King662af0d2013-05-19 10:55:17 +0100611 dcrtc->v[1].spu_adv_reg = val << 20 | val | ADV_VSYNCOFFEN |
Russell King42e62ba2014-04-22 15:24:03 +0100612 dcrtc->variant->spu_adv_reg;
Russell King96f60e32012-08-15 13:59:49 +0100613
614 if (interlaced) {
615 /* Odd interlaced frame */
616 dcrtc->v[0].spu_v_h_total = dcrtc->v[1].spu_v_h_total +
617 (1 << 16);
618 dcrtc->v[0].spu_v_porch = dcrtc->v[1].spu_v_porch + 1;
619 val = adj->crtc_hsync_start - adj->crtc_htotal / 2;
Russell King662af0d2013-05-19 10:55:17 +0100620 dcrtc->v[0].spu_adv_reg = val << 20 | val | ADV_VSYNCOFFEN |
Russell King42e62ba2014-04-22 15:24:03 +0100621 dcrtc->variant->spu_adv_reg;
Russell King96f60e32012-08-15 13:59:49 +0100622 } else {
623 dcrtc->v[0] = dcrtc->v[1];
624 }
625
626 val = adj->crtc_vdisplay << 16 | adj->crtc_hdisplay;
627
628 armada_reg_queue_set(regs, i, val, LCD_SPU_V_H_ACTIVE);
629 armada_reg_queue_set(regs, i, val, LCD_SPU_GRA_HPXL_VLN);
630 armada_reg_queue_set(regs, i, val, LCD_SPU_GZM_HPXL_VLN);
631 armada_reg_queue_set(regs, i, (lm << 16) | rm, LCD_SPU_H_PORCH);
632 armada_reg_queue_set(regs, i, dcrtc->v[0].spu_v_porch, LCD_SPU_V_PORCH);
633 armada_reg_queue_set(regs, i, dcrtc->v[0].spu_v_h_total,
634 LCD_SPUT_V_H_TOTAL);
635
Russell King42e62ba2014-04-22 15:24:03 +0100636 if (dcrtc->variant->has_spu_adv_reg) {
Russell King96f60e32012-08-15 13:59:49 +0100637 armada_reg_queue_mod(regs, i, dcrtc->v[0].spu_adv_reg,
638 ADV_VSYNC_L_OFF | ADV_VSYNC_H_OFF |
639 ADV_VSYNCOFFEN, LCD_SPU_ADV_REG);
Russell King662af0d2013-05-19 10:55:17 +0100640 }
Russell King96f60e32012-08-15 13:59:49 +0100641
642 val = CFG_GRA_ENA | CFG_GRA_HSMOOTH;
Matt Roperf4510a22014-04-01 15:22:40 -0700643 val |= CFG_GRA_FMT(drm_fb_to_armada_fb(dcrtc->crtc.primary->fb)->fmt);
644 val |= CFG_GRA_MOD(drm_fb_to_armada_fb(dcrtc->crtc.primary->fb)->mod);
Russell King96f60e32012-08-15 13:59:49 +0100645
Matt Roperf4510a22014-04-01 15:22:40 -0700646 if (drm_fb_to_armada_fb(dcrtc->crtc.primary->fb)->fmt > CFG_420)
Russell King96f60e32012-08-15 13:59:49 +0100647 val |= CFG_PALETTE_ENA;
648
649 if (interlaced)
650 val |= CFG_GRA_FTOGGLE;
651
652 armada_reg_queue_mod(regs, i, val, CFG_GRAFORMAT |
653 CFG_GRA_MOD(CFG_SWAPRB | CFG_SWAPUV |
654 CFG_SWAPYU | CFG_YUV2RGB) |
655 CFG_PALETTE_ENA | CFG_GRA_FTOGGLE,
656 LCD_SPU_DMA_CTRL0);
657
658 val = adj->flags & DRM_MODE_FLAG_NVSYNC ? CFG_VSYNC_INV : 0;
659 armada_reg_queue_mod(regs, i, val, CFG_VSYNC_INV, LCD_SPU_DMA_CTRL1);
660
661 val = dcrtc->spu_iopad_ctrl | armada_drm_crtc_calculate_csc(dcrtc);
662 armada_reg_queue_set(regs, i, val, LCD_SPU_IOPAD_CONTROL);
663 armada_reg_queue_end(regs, i);
664
665 armada_drm_crtc_update_regs(dcrtc, regs);
666 spin_unlock_irqrestore(&dcrtc->irq_lock, flags);
667
668 armada_drm_crtc_update(dcrtc);
669
Russell King178e5612014-10-11 23:57:04 +0100670 drm_crtc_vblank_on(crtc);
Russell King96f60e32012-08-15 13:59:49 +0100671 armada_drm_crtc_finish_fb(dcrtc, old_fb, dpms_blanked(dcrtc->dpms));
672
673 return 0;
674}
675
676/* The mode_config.mutex will be held for this call */
677static int armada_drm_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
678 struct drm_framebuffer *old_fb)
679{
680 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
681 struct armada_regs regs[4];
682 unsigned i;
683
Matt Roperf4510a22014-04-01 15:22:40 -0700684 i = armada_drm_crtc_calc_fb(crtc->primary->fb, crtc->x, crtc->y, regs,
Russell King96f60e32012-08-15 13:59:49 +0100685 dcrtc->interlaced);
686 armada_reg_queue_end(regs, i);
687
688 /* Wait for pending flips to complete */
689 wait_event(dcrtc->frame_wait, !dcrtc->frame_work);
690
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{
706 u32 sram_para1;
707
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 */
722 if (plane->type == DRM_PLANE_TYPE_PRIMARY)
723 sram_para1 |= CFG_PDWN256x32 | CFG_PDWN256x24 | CFG_PDWN256x8 |
724 CFG_PDWN32x32 | CFG_PDWN64x66;
725
726 armada_updatel(sram_para1, 0, dcrtc->base + LCD_SPU_SRAM_PARA1);
727}
728
Russell King96f60e32012-08-15 13:59:49 +0100729/* The mode_config.mutex will be held for this call */
730static void armada_drm_crtc_disable(struct drm_crtc *crtc)
731{
732 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
733
734 armada_drm_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
Russell King58326802015-07-15 18:11:25 +0100735 armada_drm_crtc_plane_disable(dcrtc, crtc->primary);
Russell King96f60e32012-08-15 13:59:49 +0100736}
737
738static const struct drm_crtc_helper_funcs armada_crtc_helper_funcs = {
739 .dpms = armada_drm_crtc_dpms,
740 .prepare = armada_drm_crtc_prepare,
741 .commit = armada_drm_crtc_commit,
742 .mode_fixup = armada_drm_crtc_mode_fixup,
743 .mode_set = armada_drm_crtc_mode_set,
744 .mode_set_base = armada_drm_crtc_mode_set_base,
Russell King96f60e32012-08-15 13:59:49 +0100745 .disable = armada_drm_crtc_disable,
746};
747
Russell King662af0d2013-05-19 10:55:17 +0100748static void armada_load_cursor_argb(void __iomem *base, uint32_t *pix,
749 unsigned stride, unsigned width, unsigned height)
750{
751 uint32_t addr;
752 unsigned y;
753
754 addr = SRAM_HWC32_RAM1;
755 for (y = 0; y < height; y++) {
756 uint32_t *p = &pix[y * stride];
757 unsigned x;
758
759 for (x = 0; x < width; x++, p++) {
760 uint32_t val = *p;
761
762 val = (val & 0xff00ff00) |
763 (val & 0x000000ff) << 16 |
764 (val & 0x00ff0000) >> 16;
765
766 writel_relaxed(val,
767 base + LCD_SPU_SRAM_WRDAT);
768 writel_relaxed(addr | SRAM_WRITE,
769 base + LCD_SPU_SRAM_CTRL);
Russell Kingc39b0692014-04-07 12:00:17 +0100770 readl_relaxed(base + LCD_SPU_HWC_OVSA_HPXL_VLN);
Russell King662af0d2013-05-19 10:55:17 +0100771 addr += 1;
772 if ((addr & 0x00ff) == 0)
773 addr += 0xf00;
774 if ((addr & 0x30ff) == 0)
775 addr = SRAM_HWC32_RAM2;
776 }
777 }
778}
779
780static void armada_drm_crtc_cursor_tran(void __iomem *base)
781{
782 unsigned addr;
783
784 for (addr = 0; addr < 256; addr++) {
785 /* write the default value */
786 writel_relaxed(0x55555555, base + LCD_SPU_SRAM_WRDAT);
787 writel_relaxed(addr | SRAM_WRITE | SRAM_HWC32_TRAN,
788 base + LCD_SPU_SRAM_CTRL);
789 }
790}
791
792static int armada_drm_crtc_cursor_update(struct armada_crtc *dcrtc, bool reload)
793{
794 uint32_t xoff, xscr, w = dcrtc->cursor_w, s;
795 uint32_t yoff, yscr, h = dcrtc->cursor_h;
796 uint32_t para1;
797
798 /*
799 * Calculate the visible width and height of the cursor,
800 * screen position, and the position in the cursor bitmap.
801 */
802 if (dcrtc->cursor_x < 0) {
803 xoff = -dcrtc->cursor_x;
804 xscr = 0;
805 w -= min(xoff, w);
806 } else if (dcrtc->cursor_x + w > dcrtc->crtc.mode.hdisplay) {
807 xoff = 0;
808 xscr = dcrtc->cursor_x;
809 w = max_t(int, dcrtc->crtc.mode.hdisplay - dcrtc->cursor_x, 0);
810 } else {
811 xoff = 0;
812 xscr = dcrtc->cursor_x;
813 }
814
815 if (dcrtc->cursor_y < 0) {
816 yoff = -dcrtc->cursor_y;
817 yscr = 0;
818 h -= min(yoff, h);
819 } else if (dcrtc->cursor_y + h > dcrtc->crtc.mode.vdisplay) {
820 yoff = 0;
821 yscr = dcrtc->cursor_y;
822 h = max_t(int, dcrtc->crtc.mode.vdisplay - dcrtc->cursor_y, 0);
823 } else {
824 yoff = 0;
825 yscr = dcrtc->cursor_y;
826 }
827
828 /* On interlaced modes, the vertical cursor size must be halved */
829 s = dcrtc->cursor_w;
830 if (dcrtc->interlaced) {
831 s *= 2;
832 yscr /= 2;
833 h /= 2;
834 }
835
836 if (!dcrtc->cursor_obj || !h || !w) {
837 spin_lock_irq(&dcrtc->irq_lock);
838 armada_drm_crtc_disable_irq(dcrtc, DUMB_FRAMEDONE_ENA);
839 dcrtc->cursor_update = false;
840 armada_updatel(0, CFG_HWC_ENA, dcrtc->base + LCD_SPU_DMA_CTRL0);
841 spin_unlock_irq(&dcrtc->irq_lock);
842 return 0;
843 }
844
845 para1 = readl_relaxed(dcrtc->base + LCD_SPU_SRAM_PARA1);
846 armada_updatel(CFG_CSB_256x32, CFG_CSB_256x32 | CFG_PDWN256x32,
847 dcrtc->base + LCD_SPU_SRAM_PARA1);
848
849 /*
850 * Initialize the transparency if the SRAM was powered down.
851 * We must also reload the cursor data as well.
852 */
853 if (!(para1 & CFG_CSB_256x32)) {
854 armada_drm_crtc_cursor_tran(dcrtc->base);
855 reload = true;
856 }
857
858 if (dcrtc->cursor_hw_sz != (h << 16 | w)) {
859 spin_lock_irq(&dcrtc->irq_lock);
860 armada_drm_crtc_disable_irq(dcrtc, DUMB_FRAMEDONE_ENA);
861 dcrtc->cursor_update = false;
862 armada_updatel(0, CFG_HWC_ENA, dcrtc->base + LCD_SPU_DMA_CTRL0);
863 spin_unlock_irq(&dcrtc->irq_lock);
864 reload = true;
865 }
866 if (reload) {
867 struct armada_gem_object *obj = dcrtc->cursor_obj;
868 uint32_t *pix;
869 /* Set the top-left corner of the cursor image */
870 pix = obj->addr;
871 pix += yoff * s + xoff;
872 armada_load_cursor_argb(dcrtc->base, pix, s, w, h);
873 }
874
875 /* Reload the cursor position, size and enable in the IRQ handler */
876 spin_lock_irq(&dcrtc->irq_lock);
877 dcrtc->cursor_hw_pos = yscr << 16 | xscr;
878 dcrtc->cursor_hw_sz = h << 16 | w;
879 dcrtc->cursor_update = true;
880 armada_drm_crtc_enable_irq(dcrtc, DUMB_FRAMEDONE_ENA);
881 spin_unlock_irq(&dcrtc->irq_lock);
882
883 return 0;
884}
885
886static void cursor_update(void *data)
887{
888 armada_drm_crtc_cursor_update(data, true);
889}
890
891static int armada_drm_crtc_cursor_set(struct drm_crtc *crtc,
892 struct drm_file *file, uint32_t handle, uint32_t w, uint32_t h)
893{
894 struct drm_device *dev = crtc->dev;
895 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
Russell King662af0d2013-05-19 10:55:17 +0100896 struct armada_gem_object *obj = NULL;
897 int ret;
898
899 /* If no cursor support, replicate drm's return value */
Russell King42e62ba2014-04-22 15:24:03 +0100900 if (!dcrtc->variant->has_spu_adv_reg)
Russell King662af0d2013-05-19 10:55:17 +0100901 return -ENXIO;
902
903 if (handle && w > 0 && h > 0) {
904 /* maximum size is 64x32 or 32x64 */
905 if (w > 64 || h > 64 || (w > 32 && h > 32))
906 return -ENOMEM;
907
908 obj = armada_gem_object_lookup(dev, file, handle);
909 if (!obj)
910 return -ENOENT;
911
912 /* Must be a kernel-mapped object */
913 if (!obj->addr) {
914 drm_gem_object_unreference_unlocked(&obj->obj);
915 return -EINVAL;
916 }
917
918 if (obj->obj.size < w * h * 4) {
919 DRM_ERROR("buffer is too small\n");
920 drm_gem_object_unreference_unlocked(&obj->obj);
921 return -ENOMEM;
922 }
923 }
924
925 mutex_lock(&dev->struct_mutex);
926 if (dcrtc->cursor_obj) {
927 dcrtc->cursor_obj->update = NULL;
928 dcrtc->cursor_obj->update_data = NULL;
929 drm_gem_object_unreference(&dcrtc->cursor_obj->obj);
930 }
931 dcrtc->cursor_obj = obj;
932 dcrtc->cursor_w = w;
933 dcrtc->cursor_h = h;
934 ret = armada_drm_crtc_cursor_update(dcrtc, true);
935 if (obj) {
936 obj->update_data = dcrtc;
937 obj->update = cursor_update;
938 }
939 mutex_unlock(&dev->struct_mutex);
940
941 return ret;
942}
943
944static int armada_drm_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
945{
946 struct drm_device *dev = crtc->dev;
947 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
Russell King662af0d2013-05-19 10:55:17 +0100948 int ret;
949
950 /* If no cursor support, replicate drm's return value */
Russell King42e62ba2014-04-22 15:24:03 +0100951 if (!dcrtc->variant->has_spu_adv_reg)
Russell King662af0d2013-05-19 10:55:17 +0100952 return -EFAULT;
953
954 mutex_lock(&dev->struct_mutex);
955 dcrtc->cursor_x = x;
956 dcrtc->cursor_y = y;
957 ret = armada_drm_crtc_cursor_update(dcrtc, false);
958 mutex_unlock(&dev->struct_mutex);
959
960 return ret;
961}
962
Russell King96f60e32012-08-15 13:59:49 +0100963static void armada_drm_crtc_destroy(struct drm_crtc *crtc)
964{
965 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
966 struct armada_private *priv = crtc->dev->dev_private;
967
Russell King662af0d2013-05-19 10:55:17 +0100968 if (dcrtc->cursor_obj)
969 drm_gem_object_unreference(&dcrtc->cursor_obj->obj);
970
Russell King96f60e32012-08-15 13:59:49 +0100971 priv->dcrtc[dcrtc->num] = NULL;
972 drm_crtc_cleanup(&dcrtc->crtc);
973
974 if (!IS_ERR(dcrtc->clk))
975 clk_disable_unprepare(dcrtc->clk);
976
Russell Kinge5d9ddf2014-04-26 15:19:38 +0100977 writel_relaxed(0, dcrtc->base + LCD_SPU_IRQ_ENA);
978
Russell King9611cb92014-06-15 11:21:23 +0100979 of_node_put(dcrtc->crtc.port);
980
Russell King96f60e32012-08-15 13:59:49 +0100981 kfree(dcrtc);
982}
983
984/*
985 * The mode_config lock is held here, to prevent races between this
986 * and a mode_set.
987 */
988static int armada_drm_crtc_page_flip(struct drm_crtc *crtc,
Dave Airlie5e4e3ba2013-10-22 09:38:18 +0100989 struct drm_framebuffer *fb, struct drm_pending_vblank_event *event, uint32_t page_flip_flags)
Russell King96f60e32012-08-15 13:59:49 +0100990{
991 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
992 struct armada_frame_work *work;
Russell King96f60e32012-08-15 13:59:49 +0100993 unsigned i;
994 int ret;
995
996 /* We don't support changing the pixel format */
Matt Roperf4510a22014-04-01 15:22:40 -0700997 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Russell King96f60e32012-08-15 13:59:49 +0100998 return -EINVAL;
999
1000 work = kmalloc(sizeof(*work), GFP_KERNEL);
1001 if (!work)
1002 return -ENOMEM;
1003
1004 work->event = event;
Matt Roperf4510a22014-04-01 15:22:40 -07001005 work->old_fb = dcrtc->crtc.primary->fb;
Russell King96f60e32012-08-15 13:59:49 +01001006
1007 i = armada_drm_crtc_calc_fb(fb, crtc->x, crtc->y, work->regs,
1008 dcrtc->interlaced);
1009 armada_reg_queue_end(work->regs, i);
1010
1011 /*
Russell Kingc5488302014-10-11 23:53:35 +01001012 * Ensure that we hold a reference on the new framebuffer.
1013 * This has to match the behaviour in mode_set.
Russell King96f60e32012-08-15 13:59:49 +01001014 */
Russell Kingc5488302014-10-11 23:53:35 +01001015 drm_framebuffer_reference(fb);
Russell King96f60e32012-08-15 13:59:49 +01001016
1017 ret = armada_drm_crtc_queue_frame_work(dcrtc, work);
1018 if (ret) {
Russell Kingc5488302014-10-11 23:53:35 +01001019 /* Undo our reference above */
1020 drm_framebuffer_unreference(fb);
Russell King96f60e32012-08-15 13:59:49 +01001021 kfree(work);
1022 return ret;
1023 }
1024
1025 /*
1026 * Don't take a reference on the new framebuffer;
1027 * drm_mode_page_flip_ioctl() has already grabbed a reference and
1028 * will _not_ drop that reference on successful return from this
1029 * function. Simply mark this new framebuffer as the current one.
1030 */
Matt Roperf4510a22014-04-01 15:22:40 -07001031 dcrtc->crtc.primary->fb = fb;
Russell King96f60e32012-08-15 13:59:49 +01001032
1033 /*
1034 * Finally, if the display is blanked, we won't receive an
1035 * interrupt, so complete it now.
1036 */
1037 if (dpms_blanked(dcrtc->dpms)) {
Russell King709ffd82015-07-15 18:09:38 +01001038 struct armada_frame_work *work = xchg(&dcrtc->frame_work, NULL);
1039
1040 if (work)
1041 armada_drm_crtc_complete_frame_work(dcrtc, work);
Russell King96f60e32012-08-15 13:59:49 +01001042 }
1043
1044 return 0;
1045}
1046
1047static int
1048armada_drm_crtc_set_property(struct drm_crtc *crtc,
1049 struct drm_property *property, uint64_t val)
1050{
1051 struct armada_private *priv = crtc->dev->dev_private;
1052 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
1053 bool update_csc = false;
1054
1055 if (property == priv->csc_yuv_prop) {
1056 dcrtc->csc_yuv_mode = val;
1057 update_csc = true;
1058 } else if (property == priv->csc_rgb_prop) {
1059 dcrtc->csc_rgb_mode = val;
1060 update_csc = true;
1061 }
1062
1063 if (update_csc) {
1064 uint32_t val;
1065
1066 val = dcrtc->spu_iopad_ctrl |
1067 armada_drm_crtc_calculate_csc(dcrtc);
1068 writel_relaxed(val, dcrtc->base + LCD_SPU_IOPAD_CONTROL);
1069 }
1070
1071 return 0;
1072}
1073
1074static struct drm_crtc_funcs armada_crtc_funcs = {
Russell King662af0d2013-05-19 10:55:17 +01001075 .cursor_set = armada_drm_crtc_cursor_set,
1076 .cursor_move = armada_drm_crtc_cursor_move,
Russell King96f60e32012-08-15 13:59:49 +01001077 .destroy = armada_drm_crtc_destroy,
1078 .set_config = drm_crtc_helper_set_config,
1079 .page_flip = armada_drm_crtc_page_flip,
1080 .set_property = armada_drm_crtc_set_property,
1081};
1082
Russell Kingde323012015-07-15 18:11:24 +01001083static const struct drm_plane_funcs armada_primary_plane_funcs = {
1084 .update_plane = drm_primary_helper_update,
1085 .disable_plane = drm_primary_helper_disable,
1086 .destroy = drm_primary_helper_destroy,
1087};
1088
Russell King96f60e32012-08-15 13:59:49 +01001089static struct drm_prop_enum_list armada_drm_csc_yuv_enum_list[] = {
1090 { CSC_AUTO, "Auto" },
1091 { CSC_YUV_CCIR601, "CCIR601" },
1092 { CSC_YUV_CCIR709, "CCIR709" },
1093};
1094
1095static struct drm_prop_enum_list armada_drm_csc_rgb_enum_list[] = {
1096 { CSC_AUTO, "Auto" },
1097 { CSC_RGB_COMPUTER, "Computer system" },
1098 { CSC_RGB_STUDIO, "Studio" },
1099};
1100
1101static int armada_drm_crtc_create_properties(struct drm_device *dev)
1102{
1103 struct armada_private *priv = dev->dev_private;
1104
1105 if (priv->csc_yuv_prop)
1106 return 0;
1107
1108 priv->csc_yuv_prop = drm_property_create_enum(dev, 0,
1109 "CSC_YUV", armada_drm_csc_yuv_enum_list,
1110 ARRAY_SIZE(armada_drm_csc_yuv_enum_list));
1111 priv->csc_rgb_prop = drm_property_create_enum(dev, 0,
1112 "CSC_RGB", armada_drm_csc_rgb_enum_list,
1113 ARRAY_SIZE(armada_drm_csc_rgb_enum_list));
1114
1115 if (!priv->csc_yuv_prop || !priv->csc_rgb_prop)
1116 return -ENOMEM;
1117
1118 return 0;
1119}
1120
Russell King0fb29702015-06-06 21:46:53 +01001121static int armada_drm_crtc_create(struct drm_device *drm, struct device *dev,
Russell King9611cb92014-06-15 11:21:23 +01001122 struct resource *res, int irq, const struct armada_variant *variant,
1123 struct device_node *port)
Russell King96f60e32012-08-15 13:59:49 +01001124{
Russell Kingd8c96082014-04-22 11:10:15 +01001125 struct armada_private *priv = drm->dev_private;
Russell King96f60e32012-08-15 13:59:49 +01001126 struct armada_crtc *dcrtc;
Russell Kingde323012015-07-15 18:11:24 +01001127 struct armada_plane *primary;
Russell King96f60e32012-08-15 13:59:49 +01001128 void __iomem *base;
1129 int ret;
1130
Russell Kingd8c96082014-04-22 11:10:15 +01001131 ret = armada_drm_crtc_create_properties(drm);
Russell King96f60e32012-08-15 13:59:49 +01001132 if (ret)
1133 return ret;
1134
Linus Torvaldsa7d7a142014-08-07 17:36:12 -07001135 base = devm_ioremap_resource(dev, res);
Jingoo Hanc9d53c02014-06-11 14:00:05 +09001136 if (IS_ERR(base))
1137 return PTR_ERR(base);
Russell King96f60e32012-08-15 13:59:49 +01001138
1139 dcrtc = kzalloc(sizeof(*dcrtc), GFP_KERNEL);
1140 if (!dcrtc) {
1141 DRM_ERROR("failed to allocate Armada crtc\n");
1142 return -ENOMEM;
1143 }
1144
Russell Kingd8c96082014-04-22 11:10:15 +01001145 if (dev != drm->dev)
1146 dev_set_drvdata(dev, dcrtc);
1147
Russell King42e62ba2014-04-22 15:24:03 +01001148 dcrtc->variant = variant;
Russell King96f60e32012-08-15 13:59:49 +01001149 dcrtc->base = base;
Russell Kingd8c96082014-04-22 11:10:15 +01001150 dcrtc->num = drm->mode_config.num_crtc;
Russell King96f60e32012-08-15 13:59:49 +01001151 dcrtc->clk = ERR_PTR(-EINVAL);
1152 dcrtc->csc_yuv_mode = CSC_AUTO;
1153 dcrtc->csc_rgb_mode = CSC_AUTO;
1154 dcrtc->cfg_dumb_ctrl = DUMB24_RGB888_0;
1155 dcrtc->spu_iopad_ctrl = CFG_VSCALE_LN_EN | CFG_IOPAD_DUMB24;
1156 spin_lock_init(&dcrtc->irq_lock);
1157 dcrtc->irq_ena = CLEAN_SPU_IRQ_ISR;
1158 INIT_LIST_HEAD(&dcrtc->vbl_list);
1159 init_waitqueue_head(&dcrtc->frame_wait);
1160
1161 /* Initialize some registers which we don't otherwise set */
1162 writel_relaxed(0x00000001, dcrtc->base + LCD_CFG_SCLK_DIV);
1163 writel_relaxed(0x00000000, dcrtc->base + LCD_SPU_BLANKCOLOR);
1164 writel_relaxed(dcrtc->spu_iopad_ctrl,
1165 dcrtc->base + LCD_SPU_IOPAD_CONTROL);
1166 writel_relaxed(0x00000000, dcrtc->base + LCD_SPU_SRAM_PARA0);
1167 writel_relaxed(CFG_PDWN256x32 | CFG_PDWN256x24 | CFG_PDWN256x8 |
1168 CFG_PDWN32x32 | CFG_PDWN16x66 | CFG_PDWN32x66 |
1169 CFG_PDWN64x66, dcrtc->base + LCD_SPU_SRAM_PARA1);
1170 writel_relaxed(0x2032ff81, dcrtc->base + LCD_SPU_DMA_CTRL1);
1171 writel_relaxed(0x00000000, dcrtc->base + LCD_SPU_GRA_OVSA_HPXL_VLN);
Russell Kinge5d9ddf2014-04-26 15:19:38 +01001172 writel_relaxed(dcrtc->irq_ena, dcrtc->base + LCD_SPU_IRQ_ENA);
1173 writel_relaxed(0, dcrtc->base + LCD_SPU_IRQ_ISR);
Russell King96f60e32012-08-15 13:59:49 +01001174
Russell Kinge5d9ddf2014-04-26 15:19:38 +01001175 ret = devm_request_irq(dev, irq, armada_drm_irq, 0, "armada_drm_crtc",
1176 dcrtc);
1177 if (ret < 0) {
1178 kfree(dcrtc);
1179 return ret;
1180 }
Russell King96f60e32012-08-15 13:59:49 +01001181
Russell King42e62ba2014-04-22 15:24:03 +01001182 if (dcrtc->variant->init) {
Russell Kingd8c96082014-04-22 11:10:15 +01001183 ret = dcrtc->variant->init(dcrtc, dev);
Russell King96f60e32012-08-15 13:59:49 +01001184 if (ret) {
1185 kfree(dcrtc);
1186 return ret;
1187 }
1188 }
1189
1190 /* Ensure AXI pipeline is enabled */
1191 armada_updatel(CFG_ARBFAST_ENA, 0, dcrtc->base + LCD_SPU_DMA_CTRL0);
1192
1193 priv->dcrtc[dcrtc->num] = dcrtc;
1194
Russell King9611cb92014-06-15 11:21:23 +01001195 dcrtc->crtc.port = port;
Russell King1c914ce2015-07-15 18:11:24 +01001196
Russell Kingde323012015-07-15 18:11:24 +01001197 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
Russell King1c914ce2015-07-15 18:11:24 +01001198 if (!primary)
1199 return -ENOMEM;
1200
Russell Kingde323012015-07-15 18:11:24 +01001201 ret = drm_universal_plane_init(drm, &primary->base, 0,
1202 &armada_primary_plane_funcs,
1203 armada_primary_formats,
1204 ARRAY_SIZE(armada_primary_formats),
1205 DRM_PLANE_TYPE_PRIMARY);
1206 if (ret) {
1207 kfree(primary);
1208 return ret;
1209 }
1210
1211 ret = drm_crtc_init_with_planes(drm, &dcrtc->crtc, &primary->base, NULL,
Russell King1c914ce2015-07-15 18:11:24 +01001212 &armada_crtc_funcs);
1213 if (ret)
1214 goto err_crtc_init;
1215
Russell King96f60e32012-08-15 13:59:49 +01001216 drm_crtc_helper_add(&dcrtc->crtc, &armada_crtc_helper_funcs);
1217
1218 drm_object_attach_property(&dcrtc->crtc.base, priv->csc_yuv_prop,
1219 dcrtc->csc_yuv_mode);
1220 drm_object_attach_property(&dcrtc->crtc.base, priv->csc_rgb_prop,
1221 dcrtc->csc_rgb_mode);
1222
Russell Kingd8c96082014-04-22 11:10:15 +01001223 return armada_overlay_plane_create(drm, 1 << dcrtc->num);
Russell King1c914ce2015-07-15 18:11:24 +01001224
1225err_crtc_init:
Russell Kingde323012015-07-15 18:11:24 +01001226 primary->base.funcs->destroy(&primary->base);
Russell King1c914ce2015-07-15 18:11:24 +01001227 return ret;
Russell King96f60e32012-08-15 13:59:49 +01001228}
Russell Kingd8c96082014-04-22 11:10:15 +01001229
1230static int
1231armada_lcd_bind(struct device *dev, struct device *master, void *data)
1232{
1233 struct platform_device *pdev = to_platform_device(dev);
1234 struct drm_device *drm = data;
1235 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1236 int irq = platform_get_irq(pdev, 0);
1237 const struct armada_variant *variant;
Russell King9611cb92014-06-15 11:21:23 +01001238 struct device_node *port = NULL;
Russell Kingd8c96082014-04-22 11:10:15 +01001239
1240 if (irq < 0)
1241 return irq;
1242
1243 if (!dev->of_node) {
1244 const struct platform_device_id *id;
1245
1246 id = platform_get_device_id(pdev);
1247 if (!id)
1248 return -ENXIO;
1249
1250 variant = (const struct armada_variant *)id->driver_data;
1251 } else {
1252 const struct of_device_id *match;
Russell King9611cb92014-06-15 11:21:23 +01001253 struct device_node *np, *parent = dev->of_node;
Russell Kingd8c96082014-04-22 11:10:15 +01001254
1255 match = of_match_device(dev->driver->of_match_table, dev);
1256 if (!match)
1257 return -ENXIO;
1258
Russell King9611cb92014-06-15 11:21:23 +01001259 np = of_get_child_by_name(parent, "ports");
1260 if (np)
1261 parent = np;
1262 port = of_get_child_by_name(parent, "port");
1263 of_node_put(np);
1264 if (!port) {
1265 dev_err(dev, "no port node found in %s\n",
1266 parent->full_name);
1267 return -ENXIO;
1268 }
1269
Russell Kingd8c96082014-04-22 11:10:15 +01001270 variant = match->data;
1271 }
1272
Russell King9611cb92014-06-15 11:21:23 +01001273 return armada_drm_crtc_create(drm, dev, res, irq, variant, port);
Russell Kingd8c96082014-04-22 11:10:15 +01001274}
1275
1276static void
1277armada_lcd_unbind(struct device *dev, struct device *master, void *data)
1278{
1279 struct armada_crtc *dcrtc = dev_get_drvdata(dev);
1280
1281 armada_drm_crtc_destroy(&dcrtc->crtc);
1282}
1283
1284static const struct component_ops armada_lcd_ops = {
1285 .bind = armada_lcd_bind,
1286 .unbind = armada_lcd_unbind,
1287};
1288
1289static int armada_lcd_probe(struct platform_device *pdev)
1290{
1291 return component_add(&pdev->dev, &armada_lcd_ops);
1292}
1293
1294static int armada_lcd_remove(struct platform_device *pdev)
1295{
1296 component_del(&pdev->dev, &armada_lcd_ops);
1297 return 0;
1298}
1299
1300static struct of_device_id armada_lcd_of_match[] = {
1301 {
1302 .compatible = "marvell,dove-lcd",
1303 .data = &armada510_ops,
1304 },
1305 {}
1306};
1307MODULE_DEVICE_TABLE(of, armada_lcd_of_match);
1308
1309static const struct platform_device_id armada_lcd_platform_ids[] = {
1310 {
1311 .name = "armada-lcd",
1312 .driver_data = (unsigned long)&armada510_ops,
1313 }, {
1314 .name = "armada-510-lcd",
1315 .driver_data = (unsigned long)&armada510_ops,
1316 },
1317 { },
1318};
1319MODULE_DEVICE_TABLE(platform, armada_lcd_platform_ids);
1320
1321struct platform_driver armada_lcd_platform_driver = {
1322 .probe = armada_lcd_probe,
1323 .remove = armada_lcd_remove,
1324 .driver = {
1325 .name = "armada-lcd",
1326 .owner = THIS_MODULE,
1327 .of_match_table = armada_lcd_of_match,
1328 },
1329 .id_table = armada_lcd_platform_ids,
1330};