]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/armada/armada_crtc.c
drm: armada: use vblank hooks in struct drm_crtc_funcs
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / armada / armada_crtc.c
CommitLineData
96f60e37
RK
1/*
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>
d8c96083
RK
10#include <linux/component.h>
11#include <linux/of_device.h>
12#include <linux/platform_device.h>
96f60e37
RK
13#include <drm/drmP.h>
14#include <drm/drm_crtc_helper.h>
3cb9ae4f 15#include <drm/drm_plane_helper.h>
96f60e37
RK
16#include "armada_crtc.h"
17#include "armada_drm.h"
18#include "armada_fb.h"
19#include "armada_gem.h"
20#include "armada_hw.h"
c8a220c6 21#include "armada_trace.h"
96f60e37
RK
22
23struct armada_frame_work {
4b5dda82 24 struct armada_plane_work work;
96f60e37
RK
25 struct drm_pending_vblank_event *event;
26 struct armada_regs regs[4];
27 struct drm_framebuffer *old_fb;
28};
29
30enum csc_mode {
31 CSC_AUTO = 0,
32 CSC_YUV_CCIR601 = 1,
33 CSC_YUV_CCIR709 = 2,
34 CSC_RGB_COMPUTER = 1,
35 CSC_RGB_STUDIO = 2,
36};
37
1c914cec
RK
38static const uint32_t armada_primary_formats[] = {
39 DRM_FORMAT_UYVY,
40 DRM_FORMAT_YUYV,
41 DRM_FORMAT_VYUY,
42 DRM_FORMAT_YVYU,
43 DRM_FORMAT_ARGB8888,
44 DRM_FORMAT_ABGR8888,
45 DRM_FORMAT_XRGB8888,
46 DRM_FORMAT_XBGR8888,
47 DRM_FORMAT_RGB888,
48 DRM_FORMAT_BGR888,
49 DRM_FORMAT_ARGB1555,
50 DRM_FORMAT_ABGR1555,
51 DRM_FORMAT_RGB565,
52 DRM_FORMAT_BGR565,
53};
54
96f60e37
RK
55/*
56 * A note about interlacing. Let's consider HDMI 1920x1080i.
57 * The timing parameters we have from X are:
58 * Hact HsyA HsyI Htot Vact VsyA VsyI Vtot
59 * 1920 2448 2492 2640 1080 1084 1094 1125
60 * Which get translated to:
61 * Hact HsyA HsyI Htot Vact VsyA VsyI Vtot
62 * 1920 2448 2492 2640 540 542 547 562
63 *
64 * This is how it is defined by CEA-861-D - line and pixel numbers are
65 * referenced to the rising edge of VSYNC and HSYNC. Total clocks per
66 * line: 2640. The odd frame, the first active line is at line 21, and
67 * the even frame, the first active line is 584.
68 *
69 * LN: 560 561 562 563 567 568 569
70 * DE: ~~~|____________________________//__________________________
71 * HSYNC: ____|~|_____|~|_____|~|_____|~|_//__|~|_____|~|_____|~|_____
72 * VSYNC: _________________________|~~~~~~//~~~~~~~~~~~~~~~|__________
73 * 22 blanking lines. VSYNC at 1320 (referenced to the HSYNC rising edge).
74 *
75 * LN: 1123 1124 1125 1 5 6 7
76 * DE: ~~~|____________________________//__________________________
77 * HSYNC: ____|~|_____|~|_____|~|_____|~|_//__|~|_____|~|_____|~|_____
78 * VSYNC: ____________________|~~~~~~~~~~~//~~~~~~~~~~|_______________
79 * 23 blanking lines
80 *
81 * The Armada LCD Controller line and pixel numbers are, like X timings,
82 * referenced to the top left of the active frame.
83 *
84 * So, translating these to our LCD controller:
85 * Odd frame, 563 total lines, VSYNC at line 543-548, pixel 1128.
86 * Even frame, 562 total lines, VSYNC at line 542-547, pixel 2448.
87 * Note: Vsync front porch remains constant!
88 *
89 * if (odd_frame) {
90 * vtotal = mode->crtc_vtotal + 1;
91 * vbackporch = mode->crtc_vsync_start - mode->crtc_vdisplay + 1;
92 * vhorizpos = mode->crtc_hsync_start - mode->crtc_htotal / 2
93 * } else {
94 * vtotal = mode->crtc_vtotal;
95 * vbackporch = mode->crtc_vsync_start - mode->crtc_vdisplay;
96 * vhorizpos = mode->crtc_hsync_start;
97 * }
98 * vfrontporch = mode->crtc_vtotal - mode->crtc_vsync_end;
99 *
100 * So, we need to reprogram these registers on each vsync event:
101 * LCD_SPU_V_PORCH, LCD_SPU_ADV_REG, LCD_SPUT_V_H_TOTAL
102 *
103 * Note: we do not use the frame done interrupts because these appear
104 * to happen too early, and lead to jitter on the display (presumably
105 * they occur at the end of the last active line, before the vsync back
106 * porch, which we're reprogramming.)
107 */
108
109void
110armada_drm_crtc_update_regs(struct armada_crtc *dcrtc, struct armada_regs *regs)
111{
112 while (regs->offset != ~0) {
113 void __iomem *reg = dcrtc->base + regs->offset;
114 uint32_t val;
115
116 val = regs->mask;
117 if (val != 0)
118 val &= readl_relaxed(reg);
119 writel_relaxed(val | regs->val, reg);
120 ++regs;
121 }
122}
123
124#define dpms_blanked(dpms) ((dpms) != DRM_MODE_DPMS_ON)
125
126static void armada_drm_crtc_update(struct armada_crtc *dcrtc)
127{
128 uint32_t dumb_ctrl;
129
130 dumb_ctrl = dcrtc->cfg_dumb_ctrl;
131
132 if (!dpms_blanked(dcrtc->dpms))
133 dumb_ctrl |= CFG_DUMB_ENA;
134
135 /*
136 * When the dumb interface isn't in DUMB24_RGB888_0 mode, it might
137 * be using SPI or GPIO. If we set this to DUMB_BLANK, we will
138 * force LCD_D[23:0] to output blank color, overriding the GPIO or
139 * SPI usage. So leave it as-is unless in DUMB24_RGB888_0 mode.
140 */
141 if (dpms_blanked(dcrtc->dpms) &&
142 (dumb_ctrl & DUMB_MASK) == DUMB24_RGB888_0) {
143 dumb_ctrl &= ~DUMB_MASK;
144 dumb_ctrl |= DUMB_BLANK;
145 }
146
147 /*
148 * The documentation doesn't indicate what the normal state of
149 * the sync signals are. Sebastian Hesselbart kindly probed
150 * these signals on his board to determine their state.
151 *
152 * The non-inverted state of the sync signals is active high.
153 * Setting these bits makes the appropriate signal active low.
154 */
155 if (dcrtc->crtc.mode.flags & DRM_MODE_FLAG_NCSYNC)
156 dumb_ctrl |= CFG_INV_CSYNC;
157 if (dcrtc->crtc.mode.flags & DRM_MODE_FLAG_NHSYNC)
158 dumb_ctrl |= CFG_INV_HSYNC;
159 if (dcrtc->crtc.mode.flags & DRM_MODE_FLAG_NVSYNC)
160 dumb_ctrl |= CFG_INV_VSYNC;
161
162 if (dcrtc->dumb_ctrl != dumb_ctrl) {
163 dcrtc->dumb_ctrl = dumb_ctrl;
164 writel_relaxed(dumb_ctrl, dcrtc->base + LCD_SPU_DUMB_CTRL);
165 }
166}
167
f0b24871
RK
168void armada_drm_plane_calc_addrs(u32 *addrs, struct drm_framebuffer *fb,
169 int x, int y)
170{
171 u32 addr = drm_fb_obj(fb)->dev_addr;
bcb0b461 172 int num_planes = fb->format->num_planes;
f0b24871
RK
173 int i;
174
175 if (num_planes > 3)
176 num_planes = 3;
177
178 for (i = 0; i < num_planes; i++)
179 addrs[i] = addr + fb->offsets[i] + y * fb->pitches[i] +
353c8598 180 x * fb->format->cpp[i];
f0b24871
RK
181 for (; i < 3; i++)
182 addrs[i] = 0;
183}
184
96f60e37
RK
185static unsigned armada_drm_crtc_calc_fb(struct drm_framebuffer *fb,
186 int x, int y, struct armada_regs *regs, bool interlaced)
187{
96f60e37 188 unsigned pitch = fb->pitches[0];
f0b24871 189 u32 addrs[3], addr_odd, addr_even;
96f60e37
RK
190 unsigned i = 0;
191
192 DRM_DEBUG_DRIVER("pitch %u x %d y %d bpp %d\n",
272725c7 193 pitch, x, y, fb->format->cpp[0] * 8);
96f60e37 194
f0b24871
RK
195 armada_drm_plane_calc_addrs(addrs, fb, x, y);
196
197 addr_odd = addr_even = addrs[0];
96f60e37
RK
198
199 if (interlaced) {
200 addr_even += pitch;
201 pitch *= 2;
202 }
203
204 /* write offset, base, and pitch */
205 armada_reg_queue_set(regs, i, addr_odd, LCD_CFG_GRA_START_ADDR0);
206 armada_reg_queue_set(regs, i, addr_even, LCD_CFG_GRA_START_ADDR1);
207 armada_reg_queue_mod(regs, i, pitch, 0xffff, LCD_CFG_GRA_PITCH);
208
209 return i;
210}
211
4b5dda82 212static void armada_drm_plane_work_run(struct armada_crtc *dcrtc,
ec6fb159 213 struct drm_plane *plane)
4b5dda82 214{
ec6fb159
RK
215 struct armada_plane *dplane = drm_to_armada_plane(plane);
216 struct armada_plane_work *work = xchg(&dplane->work, NULL);
4b5dda82
RK
217
218 /* Handle any pending frame work. */
219 if (work) {
ec6fb159 220 work->fn(dcrtc, dplane, work);
accbaf6e 221 drm_crtc_vblank_put(&dcrtc->crtc);
4b5dda82 222 }
7cb410cd 223
ec6fb159 224 wake_up(&dplane->frame_wait);
4b5dda82
RK
225}
226
227int armada_drm_plane_work_queue(struct armada_crtc *dcrtc,
228 struct armada_plane *plane, struct armada_plane_work *work)
229{
230 int ret;
231
accbaf6e 232 ret = drm_crtc_vblank_get(&dcrtc->crtc);
4b5dda82
RK
233 if (ret) {
234 DRM_ERROR("failed to acquire vblank counter\n");
235 return ret;
236 }
237
238 ret = cmpxchg(&plane->work, NULL, work) ? -EBUSY : 0;
239 if (ret)
accbaf6e 240 drm_crtc_vblank_put(&dcrtc->crtc);
4b5dda82
RK
241
242 return ret;
243}
244
245int armada_drm_plane_work_wait(struct armada_plane *plane, long timeout)
246{
247 return wait_event_timeout(plane->frame_wait, !plane->work, timeout);
248}
249
4a8506d2
RK
250struct armada_plane_work *armada_drm_plane_work_cancel(
251 struct armada_crtc *dcrtc, struct armada_plane *plane)
7c8f7e1a 252{
4a8506d2 253 struct armada_plane_work *work = xchg(&plane->work, NULL);
7c8f7e1a 254
4a8506d2 255 if (work)
accbaf6e 256 drm_crtc_vblank_put(&dcrtc->crtc);
7c8f7e1a 257
4a8506d2 258 return work;
7c8f7e1a
RK
259}
260
96f60e37
RK
261static int armada_drm_crtc_queue_frame_work(struct armada_crtc *dcrtc,
262 struct armada_frame_work *work)
263{
4b5dda82 264 struct armada_plane *plane = drm_to_armada_plane(dcrtc->crtc.primary);
96f60e37 265
4b5dda82 266 return armada_drm_plane_work_queue(dcrtc, plane, &work->work);
96f60e37
RK
267}
268
709ffd82 269static void armada_drm_crtc_complete_frame_work(struct armada_crtc *dcrtc,
4b5dda82 270 struct armada_plane *plane, struct armada_plane_work *work)
96f60e37 271{
4b5dda82 272 struct armada_frame_work *fwork = container_of(work, struct armada_frame_work, work);
96f60e37 273 struct drm_device *dev = dcrtc->crtc.dev;
709ffd82 274 unsigned long flags;
96f60e37 275
709ffd82 276 spin_lock_irqsave(&dcrtc->irq_lock, flags);
4b5dda82 277 armada_drm_crtc_update_regs(dcrtc, fwork->regs);
709ffd82 278 spin_unlock_irqrestore(&dcrtc->irq_lock, flags);
96f60e37 279
4b5dda82 280 if (fwork->event) {
709ffd82 281 spin_lock_irqsave(&dev->event_lock, flags);
dd54b806 282 drm_crtc_send_vblank_event(&dcrtc->crtc, fwork->event);
709ffd82
RK
283 spin_unlock_irqrestore(&dev->event_lock, flags);
284 }
96f60e37 285
96f60e37 286 /* Finally, queue the process-half of the cleanup. */
4b5dda82
RK
287 __armada_drm_queue_unref_work(dcrtc->crtc.dev, fwork->old_fb);
288 kfree(fwork);
96f60e37
RK
289}
290
291static void armada_drm_crtc_finish_fb(struct armada_crtc *dcrtc,
292 struct drm_framebuffer *fb, bool force)
293{
294 struct armada_frame_work *work;
295
296 if (!fb)
297 return;
298
299 if (force) {
300 /* Display is disabled, so just drop the old fb */
301 drm_framebuffer_unreference(fb);
302 return;
303 }
304
305 work = kmalloc(sizeof(*work), GFP_KERNEL);
306 if (work) {
307 int i = 0;
4b5dda82 308 work->work.fn = armada_drm_crtc_complete_frame_work;
96f60e37
RK
309 work->event = NULL;
310 work->old_fb = fb;
311 armada_reg_queue_end(work->regs, i);
312
313 if (armada_drm_crtc_queue_frame_work(dcrtc, work) == 0)
314 return;
315
316 kfree(work);
317 }
318
319 /*
320 * Oops - just drop the reference immediately and hope for
321 * the best. The worst that will happen is the buffer gets
322 * reused before it has finished being displayed.
323 */
324 drm_framebuffer_unreference(fb);
325}
326
327static void armada_drm_vblank_off(struct armada_crtc *dcrtc)
328{
96f60e37
RK
329 /*
330 * Tell the DRM core that vblank IRQs aren't going to happen for
331 * a while. This cleans up any pending vblank events for us.
332 */
178e561f 333 drm_crtc_vblank_off(&dcrtc->crtc);
ec6fb159 334 armada_drm_plane_work_run(dcrtc, dcrtc->crtc.primary);
96f60e37
RK
335}
336
337void armada_drm_crtc_gamma_set(struct drm_crtc *crtc, u16 r, u16 g, u16 b,
338 int idx)
339{
340}
341
342void armada_drm_crtc_gamma_get(struct drm_crtc *crtc, u16 *r, u16 *g, u16 *b,
343 int idx)
344{
345}
346
347/* The mode_config.mutex will be held for this call */
348static void armada_drm_crtc_dpms(struct drm_crtc *crtc, int dpms)
349{
350 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
351
ea908ba8 352 if (dpms_blanked(dcrtc->dpms) != dpms_blanked(dpms)) {
96f60e37
RK
353 if (dpms_blanked(dpms))
354 armada_drm_vblank_off(dcrtc);
ea908ba8
RK
355 else if (!IS_ERR(dcrtc->clk))
356 WARN_ON(clk_prepare_enable(dcrtc->clk));
357 dcrtc->dpms = dpms;
358 armada_drm_crtc_update(dcrtc);
359 if (!dpms_blanked(dpms))
178e561f 360 drm_crtc_vblank_on(&dcrtc->crtc);
ea908ba8
RK
361 else if (!IS_ERR(dcrtc->clk))
362 clk_disable_unprepare(dcrtc->clk);
363 } else if (dcrtc->dpms != dpms) {
364 dcrtc->dpms = dpms;
96f60e37
RK
365 }
366}
367
368/*
369 * Prepare for a mode set. Turn off overlay to ensure that we don't end
370 * up with the overlay size being bigger than the active screen size.
371 * We rely upon X refreshing this state after the mode set has completed.
372 *
373 * The mode_config.mutex will be held for this call
374 */
375static void armada_drm_crtc_prepare(struct drm_crtc *crtc)
376{
377 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
378 struct drm_plane *plane;
379
380 /*
381 * If we have an overlay plane associated with this CRTC, disable
382 * it before the modeset to avoid its coordinates being outside
f8e14069 383 * the new mode parameters.
96f60e37
RK
384 */
385 plane = dcrtc->plane;
f8e14069
RK
386 if (plane)
387 drm_plane_force_disable(plane);
96f60e37
RK
388}
389
390/* The mode_config.mutex will be held for this call */
391static void armada_drm_crtc_commit(struct drm_crtc *crtc)
392{
393 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
394
395 if (dcrtc->dpms != DRM_MODE_DPMS_ON) {
396 dcrtc->dpms = DRM_MODE_DPMS_ON;
397 armada_drm_crtc_update(dcrtc);
398 }
399}
400
401/* The mode_config.mutex will be held for this call */
402static bool armada_drm_crtc_mode_fixup(struct drm_crtc *crtc,
403 const struct drm_display_mode *mode, struct drm_display_mode *adj)
404{
96f60e37
RK
405 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
406 int ret;
407
408 /* We can't do interlaced modes if we don't have the SPU_ADV_REG */
42e62ba7 409 if (!dcrtc->variant->has_spu_adv_reg &&
96f60e37
RK
410 adj->flags & DRM_MODE_FLAG_INTERLACE)
411 return false;
412
413 /* Check whether the display mode is possible */
42e62ba7 414 ret = dcrtc->variant->compute_clock(dcrtc, adj, NULL);
96f60e37
RK
415 if (ret)
416 return false;
417
418 return true;
419}
420
5922a7d0
SG
421/* These are locked by dev->vbl_lock */
422static void armada_drm_crtc_disable_irq(struct armada_crtc *dcrtc, u32 mask)
423{
424 if (dcrtc->irq_ena & mask) {
425 dcrtc->irq_ena &= ~mask;
426 writel(dcrtc->irq_ena, dcrtc->base + LCD_SPU_IRQ_ENA);
427 }
428}
429
430static void armada_drm_crtc_enable_irq(struct armada_crtc *dcrtc, u32 mask)
431{
432 if ((dcrtc->irq_ena & mask) != mask) {
433 dcrtc->irq_ena |= mask;
434 writel(dcrtc->irq_ena, dcrtc->base + LCD_SPU_IRQ_ENA);
435 if (readl_relaxed(dcrtc->base + LCD_SPU_IRQ_ISR) & mask)
436 writel(0, dcrtc->base + LCD_SPU_IRQ_ISR);
437 }
438}
439
e5d9ddfb 440static void armada_drm_crtc_irq(struct armada_crtc *dcrtc, u32 stat)
96f60e37 441{
96f60e37 442 void __iomem *base = dcrtc->base;
4a8506d2 443 struct drm_plane *ovl_plane;
96f60e37
RK
444
445 if (stat & DMA_FF_UNDERFLOW)
446 DRM_ERROR("video underflow on crtc %u\n", dcrtc->num);
447 if (stat & GRA_FF_UNDERFLOW)
448 DRM_ERROR("graphics underflow on crtc %u\n", dcrtc->num);
449
450 if (stat & VSYNC_IRQ)
0ac28c57 451 drm_crtc_handle_vblank(&dcrtc->crtc);
96f60e37
RK
452
453 spin_lock(&dcrtc->irq_lock);
4a8506d2 454 ovl_plane = dcrtc->plane;
ec6fb159
RK
455 if (ovl_plane)
456 armada_drm_plane_work_run(dcrtc, ovl_plane);
96f60e37
RK
457
458 if (stat & GRA_FRAME_IRQ && dcrtc->interlaced) {
459 int i = stat & GRA_FRAME_IRQ0 ? 0 : 1;
460 uint32_t val;
461
462 writel_relaxed(dcrtc->v[i].spu_v_porch, base + LCD_SPU_V_PORCH);
463 writel_relaxed(dcrtc->v[i].spu_v_h_total,
464 base + LCD_SPUT_V_H_TOTAL);
465
466 val = readl_relaxed(base + LCD_SPU_ADV_REG);
467 val &= ~(ADV_VSYNC_L_OFF | ADV_VSYNC_H_OFF | ADV_VSYNCOFFEN);
468 val |= dcrtc->v[i].spu_adv_reg;
662af0d8 469 writel_relaxed(val, base + LCD_SPU_ADV_REG);
96f60e37 470 }
662af0d8
RK
471
472 if (stat & DUMB_FRAMEDONE && dcrtc->cursor_update) {
473 writel_relaxed(dcrtc->cursor_hw_pos,
474 base + LCD_SPU_HWC_OVSA_HPXL_VLN);
475 writel_relaxed(dcrtc->cursor_hw_sz,
476 base + LCD_SPU_HWC_HPXL_VLN);
477 armada_updatel(CFG_HWC_ENA,
478 CFG_HWC_ENA | CFG_HWC_1BITMOD | CFG_HWC_1BITENA,
479 base + LCD_SPU_DMA_CTRL0);
480 dcrtc->cursor_update = false;
481 armada_drm_crtc_disable_irq(dcrtc, DUMB_FRAMEDONE_ENA);
482 }
483
96f60e37
RK
484 spin_unlock(&dcrtc->irq_lock);
485
ec6fb159
RK
486 if (stat & GRA_FRAME_IRQ)
487 armada_drm_plane_work_run(dcrtc, dcrtc->crtc.primary);
96f60e37
RK
488}
489
e5d9ddfb
RK
490static irqreturn_t armada_drm_irq(int irq, void *arg)
491{
492 struct armada_crtc *dcrtc = arg;
493 u32 v, stat = readl_relaxed(dcrtc->base + LCD_SPU_IRQ_ISR);
494
495 /*
496 * This is rediculous - rather than writing bits to clear, we
497 * have to set the actual status register value. This is racy.
498 */
499 writel_relaxed(0, dcrtc->base + LCD_SPU_IRQ_ISR);
500
c8a220c6
RK
501 trace_armada_drm_irq(&dcrtc->crtc, stat);
502
e5d9ddfb
RK
503 /* Mask out those interrupts we haven't enabled */
504 v = stat & dcrtc->irq_ena;
505
506 if (v & (VSYNC_IRQ|GRA_FRAME_IRQ|DUMB_FRAMEDONE)) {
507 armada_drm_crtc_irq(dcrtc, stat);
508 return IRQ_HANDLED;
509 }
510 return IRQ_NONE;
511}
512
96f60e37
RK
513static uint32_t armada_drm_crtc_calculate_csc(struct armada_crtc *dcrtc)
514{
515 struct drm_display_mode *adj = &dcrtc->crtc.mode;
516 uint32_t val = 0;
517
518 if (dcrtc->csc_yuv_mode == CSC_YUV_CCIR709)
519 val |= CFG_CSC_YUV_CCIR709;
520 if (dcrtc->csc_rgb_mode == CSC_RGB_STUDIO)
521 val |= CFG_CSC_RGB_STUDIO;
522
523 /*
524 * In auto mode, set the colorimetry, based upon the HDMI spec.
525 * 1280x720p, 1920x1080p and 1920x1080i use ITU709, others use
526 * ITU601. It may be more appropriate to set this depending on
527 * the source - but what if the graphic frame is YUV and the
528 * video frame is RGB?
529 */
530 if ((adj->hdisplay == 1280 && adj->vdisplay == 720 &&
531 !(adj->flags & DRM_MODE_FLAG_INTERLACE)) ||
532 (adj->hdisplay == 1920 && adj->vdisplay == 1080)) {
533 if (dcrtc->csc_yuv_mode == CSC_AUTO)
534 val |= CFG_CSC_YUV_CCIR709;
535 }
536
537 /*
538 * We assume we're connected to a TV-like device, so the YUV->RGB
539 * conversion should produce a limited range. We should set this
540 * depending on the connectors attached to this CRTC, and what
541 * kind of device they report being connected.
542 */
543 if (dcrtc->csc_rgb_mode == CSC_AUTO)
544 val |= CFG_CSC_RGB_STUDIO;
545
546 return val;
547}
548
37af35c7
RK
549static void armada_drm_primary_set(struct drm_crtc *crtc,
550 struct drm_plane *plane, int x, int y)
551{
552 struct armada_plane_state *state = &drm_to_armada_plane(plane)->state;
553 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
2925db08 554 struct armada_regs regs[8];
37af35c7
RK
555 bool interlaced = dcrtc->interlaced;
556 unsigned i;
2925db08 557 u32 ctrl0;
37af35c7
RK
558
559 i = armada_drm_crtc_calc_fb(plane->fb, x, y, regs, interlaced);
560
2925db08 561 armada_reg_queue_set(regs, i, state->dst_yx, LCD_SPU_GRA_OVSA_HPXL_VLN);
37af35c7
RK
562 armada_reg_queue_set(regs, i, state->src_hw, LCD_SPU_GRA_HPXL_VLN);
563 armada_reg_queue_set(regs, i, state->dst_hw, LCD_SPU_GZM_HPXL_VLN);
564
565 ctrl0 = state->ctrl0;
566 if (interlaced)
567 ctrl0 |= CFG_GRA_FTOGGLE;
568
569 armada_reg_queue_mod(regs, i, ctrl0, CFG_GRAFORMAT |
570 CFG_GRA_MOD(CFG_SWAPRB | CFG_SWAPUV |
571 CFG_SWAPYU | CFG_YUV2RGB) |
572 CFG_PALETTE_ENA | CFG_GRA_FTOGGLE,
573 LCD_SPU_DMA_CTRL0);
574 armada_reg_queue_end(regs, i);
575 armada_drm_crtc_update_regs(dcrtc, regs);
576}
577
96f60e37
RK
578/* The mode_config.mutex will be held for this call */
579static int armada_drm_crtc_mode_set(struct drm_crtc *crtc,
580 struct drm_display_mode *mode, struct drm_display_mode *adj,
581 int x, int y, struct drm_framebuffer *old_fb)
582{
96f60e37
RK
583 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
584 struct armada_regs regs[17];
585 uint32_t lm, rm, tm, bm, val, sclk;
586 unsigned long flags;
587 unsigned i;
588 bool interlaced;
589
f4510a27 590 drm_framebuffer_reference(crtc->primary->fb);
96f60e37
RK
591
592 interlaced = !!(adj->flags & DRM_MODE_FLAG_INTERLACE);
593
8be523db
RK
594 val = CFG_GRA_ENA | CFG_GRA_HSMOOTH;
595 val |= CFG_GRA_FMT(drm_fb_to_armada_fb(dcrtc->crtc.primary->fb)->fmt);
596 val |= CFG_GRA_MOD(drm_fb_to_armada_fb(dcrtc->crtc.primary->fb)->mod);
597
598 if (drm_fb_to_armada_fb(dcrtc->crtc.primary->fb)->fmt > CFG_420)
599 val |= CFG_PALETTE_ENA;
600
601 drm_to_armada_plane(crtc->primary)->state.ctrl0 = val;
602 drm_to_armada_plane(crtc->primary)->state.src_hw =
603 drm_to_armada_plane(crtc->primary)->state.dst_hw =
37af35c7 604 adj->crtc_vdisplay << 16 | adj->crtc_hdisplay;
8be523db 605 drm_to_armada_plane(crtc->primary)->state.dst_yx = 0;
96f60e37 606
37af35c7 607 i = 0;
96f60e37
RK
608 rm = adj->crtc_hsync_start - adj->crtc_hdisplay;
609 lm = adj->crtc_htotal - adj->crtc_hsync_end;
610 bm = adj->crtc_vsync_start - adj->crtc_vdisplay;
611 tm = adj->crtc_vtotal - adj->crtc_vsync_end;
612
613 DRM_DEBUG_DRIVER("H: %d %d %d %d lm %d rm %d\n",
614 adj->crtc_hdisplay,
615 adj->crtc_hsync_start,
616 adj->crtc_hsync_end,
617 adj->crtc_htotal, lm, rm);
618 DRM_DEBUG_DRIVER("V: %d %d %d %d tm %d bm %d\n",
619 adj->crtc_vdisplay,
620 adj->crtc_vsync_start,
621 adj->crtc_vsync_end,
622 adj->crtc_vtotal, tm, bm);
623
624 /* Wait for pending flips to complete */
4b5dda82
RK
625 armada_drm_plane_work_wait(drm_to_armada_plane(dcrtc->crtc.primary),
626 MAX_SCHEDULE_TIMEOUT);
96f60e37 627
178e561f 628 drm_crtc_vblank_off(crtc);
96f60e37 629
96f60e37
RK
630 val = dcrtc->dumb_ctrl & ~CFG_DUMB_ENA;
631 if (val != dcrtc->dumb_ctrl) {
632 dcrtc->dumb_ctrl = val;
633 writel_relaxed(val, dcrtc->base + LCD_SPU_DUMB_CTRL);
634 }
635
e0ac5e9b
RK
636 /*
637 * If we are blanked, we would have disabled the clock. Re-enable
638 * it so that compute_clock() does the right thing.
639 */
640 if (!IS_ERR(dcrtc->clk) && dpms_blanked(dcrtc->dpms))
641 WARN_ON(clk_prepare_enable(dcrtc->clk));
642
96f60e37 643 /* Now compute the divider for real */
42e62ba7 644 dcrtc->variant->compute_clock(dcrtc, adj, &sclk);
96f60e37
RK
645
646 /* Ensure graphic fifo is enabled */
647 armada_reg_queue_mod(regs, i, 0, CFG_PDWN64x66, LCD_SPU_SRAM_PARA1);
648 armada_reg_queue_set(regs, i, sclk, LCD_CFG_SCLK_DIV);
649
650 if (interlaced ^ dcrtc->interlaced) {
651 if (adj->flags & DRM_MODE_FLAG_INTERLACE)
accbaf6e 652 drm_crtc_vblank_get(&dcrtc->crtc);
96f60e37 653 else
accbaf6e 654 drm_crtc_vblank_put(&dcrtc->crtc);
96f60e37
RK
655 dcrtc->interlaced = interlaced;
656 }
657
658 spin_lock_irqsave(&dcrtc->irq_lock, flags);
659
660 /* Even interlaced/progressive frame */
661 dcrtc->v[1].spu_v_h_total = adj->crtc_vtotal << 16 |
662 adj->crtc_htotal;
663 dcrtc->v[1].spu_v_porch = tm << 16 | bm;
664 val = adj->crtc_hsync_start;
662af0d8 665 dcrtc->v[1].spu_adv_reg = val << 20 | val | ADV_VSYNCOFFEN |
42e62ba7 666 dcrtc->variant->spu_adv_reg;
96f60e37
RK
667
668 if (interlaced) {
669 /* Odd interlaced frame */
670 dcrtc->v[0].spu_v_h_total = dcrtc->v[1].spu_v_h_total +
671 (1 << 16);
672 dcrtc->v[0].spu_v_porch = dcrtc->v[1].spu_v_porch + 1;
673 val = adj->crtc_hsync_start - adj->crtc_htotal / 2;
662af0d8 674 dcrtc->v[0].spu_adv_reg = val << 20 | val | ADV_VSYNCOFFEN |
42e62ba7 675 dcrtc->variant->spu_adv_reg;
96f60e37
RK
676 } else {
677 dcrtc->v[0] = dcrtc->v[1];
678 }
679
680 val = adj->crtc_vdisplay << 16 | adj->crtc_hdisplay;
681
682 armada_reg_queue_set(regs, i, val, LCD_SPU_V_H_ACTIVE);
96f60e37
RK
683 armada_reg_queue_set(regs, i, (lm << 16) | rm, LCD_SPU_H_PORCH);
684 armada_reg_queue_set(regs, i, dcrtc->v[0].spu_v_porch, LCD_SPU_V_PORCH);
685 armada_reg_queue_set(regs, i, dcrtc->v[0].spu_v_h_total,
686 LCD_SPUT_V_H_TOTAL);
687
42e62ba7 688 if (dcrtc->variant->has_spu_adv_reg) {
96f60e37
RK
689 armada_reg_queue_mod(regs, i, dcrtc->v[0].spu_adv_reg,
690 ADV_VSYNC_L_OFF | ADV_VSYNC_H_OFF |
691 ADV_VSYNCOFFEN, LCD_SPU_ADV_REG);
662af0d8 692 }
96f60e37 693
96f60e37
RK
694 val = adj->flags & DRM_MODE_FLAG_NVSYNC ? CFG_VSYNC_INV : 0;
695 armada_reg_queue_mod(regs, i, val, CFG_VSYNC_INV, LCD_SPU_DMA_CTRL1);
696
697 val = dcrtc->spu_iopad_ctrl | armada_drm_crtc_calculate_csc(dcrtc);
698 armada_reg_queue_set(regs, i, val, LCD_SPU_IOPAD_CONTROL);
699 armada_reg_queue_end(regs, i);
700
701 armada_drm_crtc_update_regs(dcrtc, regs);
37af35c7
RK
702
703 armada_drm_primary_set(crtc, crtc->primary, x, y);
96f60e37
RK
704 spin_unlock_irqrestore(&dcrtc->irq_lock, flags);
705
706 armada_drm_crtc_update(dcrtc);
707
178e561f 708 drm_crtc_vblank_on(crtc);
96f60e37
RK
709 armada_drm_crtc_finish_fb(dcrtc, old_fb, dpms_blanked(dcrtc->dpms));
710
711 return 0;
712}
713
714/* The mode_config.mutex will be held for this call */
715static int armada_drm_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
716 struct drm_framebuffer *old_fb)
717{
718 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
719 struct armada_regs regs[4];
720 unsigned i;
721
f4510a27 722 i = armada_drm_crtc_calc_fb(crtc->primary->fb, crtc->x, crtc->y, regs,
96f60e37
RK
723 dcrtc->interlaced);
724 armada_reg_queue_end(regs, i);
725
726 /* Wait for pending flips to complete */
4b5dda82
RK
727 armada_drm_plane_work_wait(drm_to_armada_plane(dcrtc->crtc.primary),
728 MAX_SCHEDULE_TIMEOUT);
96f60e37
RK
729
730 /* Take a reference to the new fb as we're using it */
f4510a27 731 drm_framebuffer_reference(crtc->primary->fb);
96f60e37
RK
732
733 /* Update the base in the CRTC */
734 armada_drm_crtc_update_regs(dcrtc, regs);
735
736 /* Drop our previously held reference */
737 armada_drm_crtc_finish_fb(dcrtc, old_fb, dpms_blanked(dcrtc->dpms));
738
739 return 0;
740}
741
58326803
RK
742void armada_drm_crtc_plane_disable(struct armada_crtc *dcrtc,
743 struct drm_plane *plane)
744{
9099ea19 745 u32 sram_para1, dma_ctrl0_mask;
58326803
RK
746
747 /*
748 * Drop our reference on any framebuffer attached to this plane.
749 * We don't need to NULL this out as drm_plane_force_disable(),
750 * and __setplane_internal() will do so for an overlay plane, and
751 * __drm_helper_disable_unused_functions() will do so for the
752 * primary plane.
753 */
754 if (plane->fb)
755 drm_framebuffer_unreference(plane->fb);
756
757 /* Power down the Y/U/V FIFOs */
758 sram_para1 = CFG_PDWN16x66 | CFG_PDWN32x66;
759
760 /* Power down most RAMs and FIFOs if this is the primary plane */
9099ea19 761 if (plane->type == DRM_PLANE_TYPE_PRIMARY) {
58326803
RK
762 sram_para1 |= CFG_PDWN256x32 | CFG_PDWN256x24 | CFG_PDWN256x8 |
763 CFG_PDWN32x32 | CFG_PDWN64x66;
9099ea19
RK
764 dma_ctrl0_mask = CFG_GRA_ENA;
765 } else {
766 dma_ctrl0_mask = CFG_DMA_ENA;
767 }
768
769 spin_lock_irq(&dcrtc->irq_lock);
770 armada_updatel(0, dma_ctrl0_mask, dcrtc->base + LCD_SPU_DMA_CTRL0);
771 spin_unlock_irq(&dcrtc->irq_lock);
58326803
RK
772
773 armada_updatel(sram_para1, 0, dcrtc->base + LCD_SPU_SRAM_PARA1);
774}
775
96f60e37
RK
776/* The mode_config.mutex will be held for this call */
777static void armada_drm_crtc_disable(struct drm_crtc *crtc)
778{
779 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
780
781 armada_drm_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
58326803 782 armada_drm_crtc_plane_disable(dcrtc, crtc->primary);
96f60e37
RK
783}
784
785static const struct drm_crtc_helper_funcs armada_crtc_helper_funcs = {
786 .dpms = armada_drm_crtc_dpms,
787 .prepare = armada_drm_crtc_prepare,
788 .commit = armada_drm_crtc_commit,
789 .mode_fixup = armada_drm_crtc_mode_fixup,
790 .mode_set = armada_drm_crtc_mode_set,
791 .mode_set_base = armada_drm_crtc_mode_set_base,
96f60e37
RK
792 .disable = armada_drm_crtc_disable,
793};
794
662af0d8
RK
795static void armada_load_cursor_argb(void __iomem *base, uint32_t *pix,
796 unsigned stride, unsigned width, unsigned height)
797{
798 uint32_t addr;
799 unsigned y;
800
801 addr = SRAM_HWC32_RAM1;
802 for (y = 0; y < height; y++) {
803 uint32_t *p = &pix[y * stride];
804 unsigned x;
805
806 for (x = 0; x < width; x++, p++) {
807 uint32_t val = *p;
808
809 val = (val & 0xff00ff00) |
810 (val & 0x000000ff) << 16 |
811 (val & 0x00ff0000) >> 16;
812
813 writel_relaxed(val,
814 base + LCD_SPU_SRAM_WRDAT);
815 writel_relaxed(addr | SRAM_WRITE,
816 base + LCD_SPU_SRAM_CTRL);
c39b0695 817 readl_relaxed(base + LCD_SPU_HWC_OVSA_HPXL_VLN);
662af0d8
RK
818 addr += 1;
819 if ((addr & 0x00ff) == 0)
820 addr += 0xf00;
821 if ((addr & 0x30ff) == 0)
822 addr = SRAM_HWC32_RAM2;
823 }
824 }
825}
826
827static void armada_drm_crtc_cursor_tran(void __iomem *base)
828{
829 unsigned addr;
830
831 for (addr = 0; addr < 256; addr++) {
832 /* write the default value */
833 writel_relaxed(0x55555555, base + LCD_SPU_SRAM_WRDAT);
834 writel_relaxed(addr | SRAM_WRITE | SRAM_HWC32_TRAN,
835 base + LCD_SPU_SRAM_CTRL);
836 }
837}
838
839static int armada_drm_crtc_cursor_update(struct armada_crtc *dcrtc, bool reload)
840{
841 uint32_t xoff, xscr, w = dcrtc->cursor_w, s;
842 uint32_t yoff, yscr, h = dcrtc->cursor_h;
843 uint32_t para1;
844
845 /*
846 * Calculate the visible width and height of the cursor,
847 * screen position, and the position in the cursor bitmap.
848 */
849 if (dcrtc->cursor_x < 0) {
850 xoff = -dcrtc->cursor_x;
851 xscr = 0;
852 w -= min(xoff, w);
853 } else if (dcrtc->cursor_x + w > dcrtc->crtc.mode.hdisplay) {
854 xoff = 0;
855 xscr = dcrtc->cursor_x;
856 w = max_t(int, dcrtc->crtc.mode.hdisplay - dcrtc->cursor_x, 0);
857 } else {
858 xoff = 0;
859 xscr = dcrtc->cursor_x;
860 }
861
862 if (dcrtc->cursor_y < 0) {
863 yoff = -dcrtc->cursor_y;
864 yscr = 0;
865 h -= min(yoff, h);
866 } else if (dcrtc->cursor_y + h > dcrtc->crtc.mode.vdisplay) {
867 yoff = 0;
868 yscr = dcrtc->cursor_y;
869 h = max_t(int, dcrtc->crtc.mode.vdisplay - dcrtc->cursor_y, 0);
870 } else {
871 yoff = 0;
872 yscr = dcrtc->cursor_y;
873 }
874
875 /* On interlaced modes, the vertical cursor size must be halved */
876 s = dcrtc->cursor_w;
877 if (dcrtc->interlaced) {
878 s *= 2;
879 yscr /= 2;
880 h /= 2;
881 }
882
883 if (!dcrtc->cursor_obj || !h || !w) {
884 spin_lock_irq(&dcrtc->irq_lock);
885 armada_drm_crtc_disable_irq(dcrtc, DUMB_FRAMEDONE_ENA);
886 dcrtc->cursor_update = false;
887 armada_updatel(0, CFG_HWC_ENA, dcrtc->base + LCD_SPU_DMA_CTRL0);
888 spin_unlock_irq(&dcrtc->irq_lock);
889 return 0;
890 }
891
892 para1 = readl_relaxed(dcrtc->base + LCD_SPU_SRAM_PARA1);
893 armada_updatel(CFG_CSB_256x32, CFG_CSB_256x32 | CFG_PDWN256x32,
894 dcrtc->base + LCD_SPU_SRAM_PARA1);
895
896 /*
897 * Initialize the transparency if the SRAM was powered down.
898 * We must also reload the cursor data as well.
899 */
900 if (!(para1 & CFG_CSB_256x32)) {
901 armada_drm_crtc_cursor_tran(dcrtc->base);
902 reload = true;
903 }
904
905 if (dcrtc->cursor_hw_sz != (h << 16 | w)) {
906 spin_lock_irq(&dcrtc->irq_lock);
907 armada_drm_crtc_disable_irq(dcrtc, DUMB_FRAMEDONE_ENA);
908 dcrtc->cursor_update = false;
909 armada_updatel(0, CFG_HWC_ENA, dcrtc->base + LCD_SPU_DMA_CTRL0);
910 spin_unlock_irq(&dcrtc->irq_lock);
911 reload = true;
912 }
913 if (reload) {
914 struct armada_gem_object *obj = dcrtc->cursor_obj;
915 uint32_t *pix;
916 /* Set the top-left corner of the cursor image */
917 pix = obj->addr;
918 pix += yoff * s + xoff;
919 armada_load_cursor_argb(dcrtc->base, pix, s, w, h);
920 }
921
922 /* Reload the cursor position, size and enable in the IRQ handler */
923 spin_lock_irq(&dcrtc->irq_lock);
924 dcrtc->cursor_hw_pos = yscr << 16 | xscr;
925 dcrtc->cursor_hw_sz = h << 16 | w;
926 dcrtc->cursor_update = true;
927 armada_drm_crtc_enable_irq(dcrtc, DUMB_FRAMEDONE_ENA);
928 spin_unlock_irq(&dcrtc->irq_lock);
929
930 return 0;
931}
932
933static void cursor_update(void *data)
934{
935 armada_drm_crtc_cursor_update(data, true);
936}
937
938static int armada_drm_crtc_cursor_set(struct drm_crtc *crtc,
939 struct drm_file *file, uint32_t handle, uint32_t w, uint32_t h)
940{
662af0d8 941 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
662af0d8
RK
942 struct armada_gem_object *obj = NULL;
943 int ret;
944
945 /* If no cursor support, replicate drm's return value */
42e62ba7 946 if (!dcrtc->variant->has_spu_adv_reg)
662af0d8
RK
947 return -ENXIO;
948
949 if (handle && w > 0 && h > 0) {
950 /* maximum size is 64x32 or 32x64 */
951 if (w > 64 || h > 64 || (w > 32 && h > 32))
952 return -ENOMEM;
953
a8ad0bd8 954 obj = armada_gem_object_lookup(file, handle);
662af0d8
RK
955 if (!obj)
956 return -ENOENT;
957
958 /* Must be a kernel-mapped object */
959 if (!obj->addr) {
960 drm_gem_object_unreference_unlocked(&obj->obj);
961 return -EINVAL;
962 }
963
964 if (obj->obj.size < w * h * 4) {
965 DRM_ERROR("buffer is too small\n");
966 drm_gem_object_unreference_unlocked(&obj->obj);
967 return -ENOMEM;
968 }
969 }
970
662af0d8
RK
971 if (dcrtc->cursor_obj) {
972 dcrtc->cursor_obj->update = NULL;
973 dcrtc->cursor_obj->update_data = NULL;
4bd3fd44 974 drm_gem_object_unreference_unlocked(&dcrtc->cursor_obj->obj);
662af0d8
RK
975 }
976 dcrtc->cursor_obj = obj;
977 dcrtc->cursor_w = w;
978 dcrtc->cursor_h = h;
979 ret = armada_drm_crtc_cursor_update(dcrtc, true);
980 if (obj) {
981 obj->update_data = dcrtc;
982 obj->update = cursor_update;
983 }
662af0d8
RK
984
985 return ret;
986}
987
988static int armada_drm_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
989{
662af0d8 990 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
662af0d8
RK
991 int ret;
992
993 /* If no cursor support, replicate drm's return value */
42e62ba7 994 if (!dcrtc->variant->has_spu_adv_reg)
662af0d8
RK
995 return -EFAULT;
996
662af0d8
RK
997 dcrtc->cursor_x = x;
998 dcrtc->cursor_y = y;
999 ret = armada_drm_crtc_cursor_update(dcrtc, false);
662af0d8
RK
1000
1001 return ret;
1002}
1003
96f60e37
RK
1004static void armada_drm_crtc_destroy(struct drm_crtc *crtc)
1005{
1006 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
1007 struct armada_private *priv = crtc->dev->dev_private;
1008
662af0d8 1009 if (dcrtc->cursor_obj)
7a6f7133 1010 drm_gem_object_unreference_unlocked(&dcrtc->cursor_obj->obj);
662af0d8 1011
96f60e37
RK
1012 priv->dcrtc[dcrtc->num] = NULL;
1013 drm_crtc_cleanup(&dcrtc->crtc);
1014
1015 if (!IS_ERR(dcrtc->clk))
1016 clk_disable_unprepare(dcrtc->clk);
1017
e5d9ddfb
RK
1018 writel_relaxed(0, dcrtc->base + LCD_SPU_IRQ_ENA);
1019
9611cb93
RK
1020 of_node_put(dcrtc->crtc.port);
1021
96f60e37
RK
1022 kfree(dcrtc);
1023}
1024
1025/*
1026 * The mode_config lock is held here, to prevent races between this
1027 * and a mode_set.
1028 */
1029static int armada_drm_crtc_page_flip(struct drm_crtc *crtc,
5e4e3ba9 1030 struct drm_framebuffer *fb, struct drm_pending_vblank_event *event, uint32_t page_flip_flags)
96f60e37
RK
1031{
1032 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
1033 struct armada_frame_work *work;
96f60e37
RK
1034 unsigned i;
1035 int ret;
1036
1037 /* We don't support changing the pixel format */
dbd4d576 1038 if (fb->format != crtc->primary->fb->format)
96f60e37
RK
1039 return -EINVAL;
1040
1041 work = kmalloc(sizeof(*work), GFP_KERNEL);
1042 if (!work)
1043 return -ENOMEM;
1044
4b5dda82 1045 work->work.fn = armada_drm_crtc_complete_frame_work;
96f60e37 1046 work->event = event;
f4510a27 1047 work->old_fb = dcrtc->crtc.primary->fb;
96f60e37
RK
1048
1049 i = armada_drm_crtc_calc_fb(fb, crtc->x, crtc->y, work->regs,
1050 dcrtc->interlaced);
1051 armada_reg_queue_end(work->regs, i);
1052
1053 /*
c5488307
RK
1054 * Ensure that we hold a reference on the new framebuffer.
1055 * This has to match the behaviour in mode_set.
96f60e37 1056 */
c5488307 1057 drm_framebuffer_reference(fb);
96f60e37
RK
1058
1059 ret = armada_drm_crtc_queue_frame_work(dcrtc, work);
1060 if (ret) {
c5488307
RK
1061 /* Undo our reference above */
1062 drm_framebuffer_unreference(fb);
96f60e37
RK
1063 kfree(work);
1064 return ret;
1065 }
1066
1067 /*
1068 * Don't take a reference on the new framebuffer;
1069 * drm_mode_page_flip_ioctl() has already grabbed a reference and
1070 * will _not_ drop that reference on successful return from this
1071 * function. Simply mark this new framebuffer as the current one.
1072 */
f4510a27 1073 dcrtc->crtc.primary->fb = fb;
96f60e37
RK
1074
1075 /*
1076 * Finally, if the display is blanked, we won't receive an
1077 * interrupt, so complete it now.
1078 */
4b5dda82 1079 if (dpms_blanked(dcrtc->dpms))
ec6fb159 1080 armada_drm_plane_work_run(dcrtc, dcrtc->crtc.primary);
96f60e37
RK
1081
1082 return 0;
1083}
1084
1085static int
1086armada_drm_crtc_set_property(struct drm_crtc *crtc,
1087 struct drm_property *property, uint64_t val)
1088{
1089 struct armada_private *priv = crtc->dev->dev_private;
1090 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
1091 bool update_csc = false;
1092
1093 if (property == priv->csc_yuv_prop) {
1094 dcrtc->csc_yuv_mode = val;
1095 update_csc = true;
1096 } else if (property == priv->csc_rgb_prop) {
1097 dcrtc->csc_rgb_mode = val;
1098 update_csc = true;
1099 }
1100
1101 if (update_csc) {
1102 uint32_t val;
1103
1104 val = dcrtc->spu_iopad_ctrl |
1105 armada_drm_crtc_calculate_csc(dcrtc);
1106 writel_relaxed(val, dcrtc->base + LCD_SPU_IOPAD_CONTROL);
1107 }
1108
1109 return 0;
1110}
1111
5922a7d0
SG
1112/* These are called under the vbl_lock. */
1113static int armada_drm_crtc_enable_vblank(struct drm_crtc *crtc)
1114{
1115 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
1116
1117 armada_drm_crtc_enable_irq(dcrtc, VSYNC_IRQ_ENA);
1118 return 0;
1119}
1120
1121static void armada_drm_crtc_disable_vblank(struct drm_crtc *crtc)
1122{
1123 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
1124
1125 armada_drm_crtc_disable_irq(dcrtc, VSYNC_IRQ_ENA);
1126}
1127
a02fb90a 1128static const struct drm_crtc_funcs armada_crtc_funcs = {
662af0d8
RK
1129 .cursor_set = armada_drm_crtc_cursor_set,
1130 .cursor_move = armada_drm_crtc_cursor_move,
96f60e37
RK
1131 .destroy = armada_drm_crtc_destroy,
1132 .set_config = drm_crtc_helper_set_config,
1133 .page_flip = armada_drm_crtc_page_flip,
1134 .set_property = armada_drm_crtc_set_property,
5922a7d0
SG
1135 .enable_vblank = armada_drm_crtc_enable_vblank,
1136 .disable_vblank = armada_drm_crtc_disable_vblank,
96f60e37
RK
1137};
1138
de32301b
RK
1139static const struct drm_plane_funcs armada_primary_plane_funcs = {
1140 .update_plane = drm_primary_helper_update,
1141 .disable_plane = drm_primary_helper_disable,
1142 .destroy = drm_primary_helper_destroy,
1143};
1144
5740d27f
RK
1145int armada_drm_plane_init(struct armada_plane *plane)
1146{
1147 init_waitqueue_head(&plane->frame_wait);
1148
1149 return 0;
1150}
1151
96f60e37
RK
1152static struct drm_prop_enum_list armada_drm_csc_yuv_enum_list[] = {
1153 { CSC_AUTO, "Auto" },
1154 { CSC_YUV_CCIR601, "CCIR601" },
1155 { CSC_YUV_CCIR709, "CCIR709" },
1156};
1157
1158static struct drm_prop_enum_list armada_drm_csc_rgb_enum_list[] = {
1159 { CSC_AUTO, "Auto" },
1160 { CSC_RGB_COMPUTER, "Computer system" },
1161 { CSC_RGB_STUDIO, "Studio" },
1162};
1163
1164static int armada_drm_crtc_create_properties(struct drm_device *dev)
1165{
1166 struct armada_private *priv = dev->dev_private;
1167
1168 if (priv->csc_yuv_prop)
1169 return 0;
1170
1171 priv->csc_yuv_prop = drm_property_create_enum(dev, 0,
1172 "CSC_YUV", armada_drm_csc_yuv_enum_list,
1173 ARRAY_SIZE(armada_drm_csc_yuv_enum_list));
1174 priv->csc_rgb_prop = drm_property_create_enum(dev, 0,
1175 "CSC_RGB", armada_drm_csc_rgb_enum_list,
1176 ARRAY_SIZE(armada_drm_csc_rgb_enum_list));
1177
1178 if (!priv->csc_yuv_prop || !priv->csc_rgb_prop)
1179 return -ENOMEM;
1180
1181 return 0;
1182}
1183
0fb2970b 1184static int armada_drm_crtc_create(struct drm_device *drm, struct device *dev,
9611cb93
RK
1185 struct resource *res, int irq, const struct armada_variant *variant,
1186 struct device_node *port)
96f60e37 1187{
d8c96083 1188 struct armada_private *priv = drm->dev_private;
96f60e37 1189 struct armada_crtc *dcrtc;
de32301b 1190 struct armada_plane *primary;
96f60e37
RK
1191 void __iomem *base;
1192 int ret;
1193
d8c96083 1194 ret = armada_drm_crtc_create_properties(drm);
96f60e37
RK
1195 if (ret)
1196 return ret;
1197
a7d7a143 1198 base = devm_ioremap_resource(dev, res);
c9d53c0f
JH
1199 if (IS_ERR(base))
1200 return PTR_ERR(base);
96f60e37
RK
1201
1202 dcrtc = kzalloc(sizeof(*dcrtc), GFP_KERNEL);
1203 if (!dcrtc) {
1204 DRM_ERROR("failed to allocate Armada crtc\n");
1205 return -ENOMEM;
1206 }
1207
d8c96083
RK
1208 if (dev != drm->dev)
1209 dev_set_drvdata(dev, dcrtc);
1210
42e62ba7 1211 dcrtc->variant = variant;
96f60e37 1212 dcrtc->base = base;
d8c96083 1213 dcrtc->num = drm->mode_config.num_crtc;
96f60e37
RK
1214 dcrtc->clk = ERR_PTR(-EINVAL);
1215 dcrtc->csc_yuv_mode = CSC_AUTO;
1216 dcrtc->csc_rgb_mode = CSC_AUTO;
1217 dcrtc->cfg_dumb_ctrl = DUMB24_RGB888_0;
1218 dcrtc->spu_iopad_ctrl = CFG_VSCALE_LN_EN | CFG_IOPAD_DUMB24;
1219 spin_lock_init(&dcrtc->irq_lock);
1220 dcrtc->irq_ena = CLEAN_SPU_IRQ_ISR;
96f60e37
RK
1221
1222 /* Initialize some registers which we don't otherwise set */
1223 writel_relaxed(0x00000001, dcrtc->base + LCD_CFG_SCLK_DIV);
1224 writel_relaxed(0x00000000, dcrtc->base + LCD_SPU_BLANKCOLOR);
1225 writel_relaxed(dcrtc->spu_iopad_ctrl,
1226 dcrtc->base + LCD_SPU_IOPAD_CONTROL);
1227 writel_relaxed(0x00000000, dcrtc->base + LCD_SPU_SRAM_PARA0);
1228 writel_relaxed(CFG_PDWN256x32 | CFG_PDWN256x24 | CFG_PDWN256x8 |
1229 CFG_PDWN32x32 | CFG_PDWN16x66 | CFG_PDWN32x66 |
1230 CFG_PDWN64x66, dcrtc->base + LCD_SPU_SRAM_PARA1);
1231 writel_relaxed(0x2032ff81, dcrtc->base + LCD_SPU_DMA_CTRL1);
e5d9ddfb
RK
1232 writel_relaxed(dcrtc->irq_ena, dcrtc->base + LCD_SPU_IRQ_ENA);
1233 writel_relaxed(0, dcrtc->base + LCD_SPU_IRQ_ISR);
1234
1235 ret = devm_request_irq(dev, irq, armada_drm_irq, 0, "armada_drm_crtc",
1236 dcrtc);
1237 if (ret < 0) {
1238 kfree(dcrtc);
1239 return ret;
1240 }
96f60e37 1241
42e62ba7 1242 if (dcrtc->variant->init) {
d8c96083 1243 ret = dcrtc->variant->init(dcrtc, dev);
96f60e37
RK
1244 if (ret) {
1245 kfree(dcrtc);
1246 return ret;
1247 }
1248 }
1249
1250 /* Ensure AXI pipeline is enabled */
1251 armada_updatel(CFG_ARBFAST_ENA, 0, dcrtc->base + LCD_SPU_DMA_CTRL0);
1252
1253 priv->dcrtc[dcrtc->num] = dcrtc;
1254
9611cb93 1255 dcrtc->crtc.port = port;
1c914cec 1256
de32301b 1257 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
1c914cec
RK
1258 if (!primary)
1259 return -ENOMEM;
1260
5740d27f
RK
1261 ret = armada_drm_plane_init(primary);
1262 if (ret) {
1263 kfree(primary);
1264 return ret;
1265 }
1266
de32301b
RK
1267 ret = drm_universal_plane_init(drm, &primary->base, 0,
1268 &armada_primary_plane_funcs,
1269 armada_primary_formats,
1270 ARRAY_SIZE(armada_primary_formats),
b0b3b795 1271 DRM_PLANE_TYPE_PRIMARY, NULL);
de32301b
RK
1272 if (ret) {
1273 kfree(primary);
1274 return ret;
1275 }
1276
1277 ret = drm_crtc_init_with_planes(drm, &dcrtc->crtc, &primary->base, NULL,
f9882876 1278 &armada_crtc_funcs, NULL);
1c914cec
RK
1279 if (ret)
1280 goto err_crtc_init;
1281
96f60e37
RK
1282 drm_crtc_helper_add(&dcrtc->crtc, &armada_crtc_helper_funcs);
1283
1284 drm_object_attach_property(&dcrtc->crtc.base, priv->csc_yuv_prop,
1285 dcrtc->csc_yuv_mode);
1286 drm_object_attach_property(&dcrtc->crtc.base, priv->csc_rgb_prop,
1287 dcrtc->csc_rgb_mode);
1288
d8c96083 1289 return armada_overlay_plane_create(drm, 1 << dcrtc->num);
1c914cec
RK
1290
1291err_crtc_init:
de32301b 1292 primary->base.funcs->destroy(&primary->base);
1c914cec 1293 return ret;
d8c96083
RK
1294}
1295
1296static int
1297armada_lcd_bind(struct device *dev, struct device *master, void *data)
1298{
1299 struct platform_device *pdev = to_platform_device(dev);
1300 struct drm_device *drm = data;
1301 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1302 int irq = platform_get_irq(pdev, 0);
1303 const struct armada_variant *variant;
9611cb93 1304 struct device_node *port = NULL;
d8c96083
RK
1305
1306 if (irq < 0)
1307 return irq;
1308
1309 if (!dev->of_node) {
1310 const struct platform_device_id *id;
1311
1312 id = platform_get_device_id(pdev);
1313 if (!id)
1314 return -ENXIO;
1315
1316 variant = (const struct armada_variant *)id->driver_data;
1317 } else {
1318 const struct of_device_id *match;
9611cb93 1319 struct device_node *np, *parent = dev->of_node;
d8c96083
RK
1320
1321 match = of_match_device(dev->driver->of_match_table, dev);
1322 if (!match)
1323 return -ENXIO;
1324
9611cb93
RK
1325 np = of_get_child_by_name(parent, "ports");
1326 if (np)
1327 parent = np;
1328 port = of_get_child_by_name(parent, "port");
1329 of_node_put(np);
1330 if (!port) {
1331 dev_err(dev, "no port node found in %s\n",
1332 parent->full_name);
1333 return -ENXIO;
1334 }
1335
d8c96083
RK
1336 variant = match->data;
1337 }
1338
9611cb93 1339 return armada_drm_crtc_create(drm, dev, res, irq, variant, port);
d8c96083
RK
1340}
1341
1342static void
1343armada_lcd_unbind(struct device *dev, struct device *master, void *data)
1344{
1345 struct armada_crtc *dcrtc = dev_get_drvdata(dev);
1346
1347 armada_drm_crtc_destroy(&dcrtc->crtc);
96f60e37 1348}
d8c96083
RK
1349
1350static const struct component_ops armada_lcd_ops = {
1351 .bind = armada_lcd_bind,
1352 .unbind = armada_lcd_unbind,
1353};
1354
1355static int armada_lcd_probe(struct platform_device *pdev)
1356{
1357 return component_add(&pdev->dev, &armada_lcd_ops);
1358}
1359
1360static int armada_lcd_remove(struct platform_device *pdev)
1361{
1362 component_del(&pdev->dev, &armada_lcd_ops);
1363 return 0;
96f60e37 1364}
d8c96083
RK
1365
1366static struct of_device_id armada_lcd_of_match[] = {
1367 {
1368 .compatible = "marvell,dove-lcd",
1369 .data = &armada510_ops,
1370 },
1371 {}
1372};
1373MODULE_DEVICE_TABLE(of, armada_lcd_of_match);
1374
1375static const struct platform_device_id armada_lcd_platform_ids[] = {
1376 {
1377 .name = "armada-lcd",
1378 .driver_data = (unsigned long)&armada510_ops,
1379 }, {
1380 .name = "armada-510-lcd",
1381 .driver_data = (unsigned long)&armada510_ops,
1382 },
1383 { },
1384};
1385MODULE_DEVICE_TABLE(platform, armada_lcd_platform_ids);
1386
1387struct platform_driver armada_lcd_platform_driver = {
1388 .probe = armada_lcd_probe,
1389 .remove = armada_lcd_remove,
1390 .driver = {
1391 .name = "armada-lcd",
1392 .owner = THIS_MODULE,
1393 .of_match_table = armada_lcd_of_match,
1394 },
1395 .id_table = armada_lcd_platform_ids,
1396};