blob: ceec930696dce198162a9143285f654d8e712a06 [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"
Russell Kingc8a220c2016-05-17 13:51:08 +010021#include "armada_trace.h"
Russell King96f60e32012-08-15 13:59:49 +010022
23struct armada_frame_work {
Russell King4b5dda82015-08-06 16:37:18 +010024 struct armada_plane_work work;
Russell King96f60e32012-08-15 13:59:49 +010025 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
Russell King1c914ce2015-07-15 18:11:24 +010038static 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
Russell King96f60e32012-08-15 13:59:49 +010055/*
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
Russell Kingf0b24872016-08-16 22:09:11 +0100168void 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;
172 u32 pixel_format = fb->pixel_format;
173 int num_planes = drm_format_num_planes(pixel_format);
174 int i;
175
176 if (num_planes > 3)
177 num_planes = 3;
178
179 for (i = 0; i < num_planes; i++)
180 addrs[i] = addr + fb->offsets[i] + y * fb->pitches[i] +
181 x * drm_format_plane_cpp(pixel_format, i);
182 for (; i < 3; i++)
183 addrs[i] = 0;
184}
185
Russell King96f60e32012-08-15 13:59:49 +0100186static unsigned armada_drm_crtc_calc_fb(struct drm_framebuffer *fb,
187 int x, int y, struct armada_regs *regs, bool interlaced)
188{
Russell King96f60e32012-08-15 13:59:49 +0100189 unsigned pitch = fb->pitches[0];
Russell Kingf0b24872016-08-16 22:09:11 +0100190 u32 addrs[3], addr_odd, addr_even;
Russell King96f60e32012-08-15 13:59:49 +0100191 unsigned i = 0;
192
193 DRM_DEBUG_DRIVER("pitch %u x %d y %d bpp %d\n",
194 pitch, x, y, fb->bits_per_pixel);
195
Russell Kingf0b24872016-08-16 22:09:11 +0100196 armada_drm_plane_calc_addrs(addrs, fb, x, y);
197
198 addr_odd = addr_even = addrs[0];
Russell King96f60e32012-08-15 13:59:49 +0100199
200 if (interlaced) {
201 addr_even += pitch;
202 pitch *= 2;
203 }
204
205 /* write offset, base, and pitch */
206 armada_reg_queue_set(regs, i, addr_odd, LCD_CFG_GRA_START_ADDR0);
207 armada_reg_queue_set(regs, i, addr_even, LCD_CFG_GRA_START_ADDR1);
208 armada_reg_queue_mod(regs, i, pitch, 0xffff, LCD_CFG_GRA_PITCH);
209
210 return i;
211}
212
Russell King4b5dda82015-08-06 16:37:18 +0100213static void armada_drm_plane_work_run(struct armada_crtc *dcrtc,
Russell Kingec6fb152016-07-25 15:16:11 +0100214 struct drm_plane *plane)
Russell King4b5dda82015-08-06 16:37:18 +0100215{
Russell Kingec6fb152016-07-25 15:16:11 +0100216 struct armada_plane *dplane = drm_to_armada_plane(plane);
217 struct armada_plane_work *work = xchg(&dplane->work, NULL);
Russell King4b5dda82015-08-06 16:37:18 +0100218
219 /* Handle any pending frame work. */
220 if (work) {
Russell Kingec6fb152016-07-25 15:16:11 +0100221 work->fn(dcrtc, dplane, work);
Gustavo Padovanaccbaf62016-06-06 11:41:40 -0300222 drm_crtc_vblank_put(&dcrtc->crtc);
Russell King4b5dda82015-08-06 16:37:18 +0100223 }
Russell King7cb410c2015-08-07 13:34:26 +0100224
Russell Kingec6fb152016-07-25 15:16:11 +0100225 wake_up(&dplane->frame_wait);
Russell King4b5dda82015-08-06 16:37:18 +0100226}
227
228int armada_drm_plane_work_queue(struct armada_crtc *dcrtc,
229 struct armada_plane *plane, struct armada_plane_work *work)
230{
231 int ret;
232
Gustavo Padovanaccbaf62016-06-06 11:41:40 -0300233 ret = drm_crtc_vblank_get(&dcrtc->crtc);
Russell King4b5dda82015-08-06 16:37:18 +0100234 if (ret) {
235 DRM_ERROR("failed to acquire vblank counter\n");
236 return ret;
237 }
238
239 ret = cmpxchg(&plane->work, NULL, work) ? -EBUSY : 0;
240 if (ret)
Gustavo Padovanaccbaf62016-06-06 11:41:40 -0300241 drm_crtc_vblank_put(&dcrtc->crtc);
Russell King4b5dda82015-08-06 16:37:18 +0100242
243 return ret;
244}
245
246int armada_drm_plane_work_wait(struct armada_plane *plane, long timeout)
247{
248 return wait_event_timeout(plane->frame_wait, !plane->work, timeout);
249}
250
Russell King4a8506d2015-08-07 09:33:05 +0100251struct armada_plane_work *armada_drm_plane_work_cancel(
252 struct armada_crtc *dcrtc, struct armada_plane *plane)
Russell King7c8f7e12015-06-29 17:52:16 +0100253{
Russell King4a8506d2015-08-07 09:33:05 +0100254 struct armada_plane_work *work = xchg(&plane->work, NULL);
Russell King7c8f7e12015-06-29 17:52:16 +0100255
Russell King4a8506d2015-08-07 09:33:05 +0100256 if (work)
Gustavo Padovanaccbaf62016-06-06 11:41:40 -0300257 drm_crtc_vblank_put(&dcrtc->crtc);
Russell King7c8f7e12015-06-29 17:52:16 +0100258
Russell King4a8506d2015-08-07 09:33:05 +0100259 return work;
Russell King7c8f7e12015-06-29 17:52:16 +0100260}
261
Russell King96f60e32012-08-15 13:59:49 +0100262static int armada_drm_crtc_queue_frame_work(struct armada_crtc *dcrtc,
263 struct armada_frame_work *work)
264{
Russell King4b5dda82015-08-06 16:37:18 +0100265 struct armada_plane *plane = drm_to_armada_plane(dcrtc->crtc.primary);
Russell King96f60e32012-08-15 13:59:49 +0100266
Russell King4b5dda82015-08-06 16:37:18 +0100267 return armada_drm_plane_work_queue(dcrtc, plane, &work->work);
Russell King96f60e32012-08-15 13:59:49 +0100268}
269
Russell King709ffd82015-07-15 18:09:38 +0100270static void armada_drm_crtc_complete_frame_work(struct armada_crtc *dcrtc,
Russell King4b5dda82015-08-06 16:37:18 +0100271 struct armada_plane *plane, struct armada_plane_work *work)
Russell King96f60e32012-08-15 13:59:49 +0100272{
Russell King4b5dda82015-08-06 16:37:18 +0100273 struct armada_frame_work *fwork = container_of(work, struct armada_frame_work, work);
Russell King96f60e32012-08-15 13:59:49 +0100274 struct drm_device *dev = dcrtc->crtc.dev;
Russell King709ffd82015-07-15 18:09:38 +0100275 unsigned long flags;
Russell King96f60e32012-08-15 13:59:49 +0100276
Russell King709ffd82015-07-15 18:09:38 +0100277 spin_lock_irqsave(&dcrtc->irq_lock, flags);
Russell King4b5dda82015-08-06 16:37:18 +0100278 armada_drm_crtc_update_regs(dcrtc, fwork->regs);
Russell King709ffd82015-07-15 18:09:38 +0100279 spin_unlock_irqrestore(&dcrtc->irq_lock, flags);
Russell King96f60e32012-08-15 13:59:49 +0100280
Russell King4b5dda82015-08-06 16:37:18 +0100281 if (fwork->event) {
Russell King709ffd82015-07-15 18:09:38 +0100282 spin_lock_irqsave(&dev->event_lock, flags);
Gustavo Padovandd54b802016-06-06 11:41:33 -0300283 drm_crtc_send_vblank_event(&dcrtc->crtc, fwork->event);
Russell King709ffd82015-07-15 18:09:38 +0100284 spin_unlock_irqrestore(&dev->event_lock, flags);
285 }
Russell King96f60e32012-08-15 13:59:49 +0100286
Russell King96f60e32012-08-15 13:59:49 +0100287 /* Finally, queue the process-half of the cleanup. */
Russell King4b5dda82015-08-06 16:37:18 +0100288 __armada_drm_queue_unref_work(dcrtc->crtc.dev, fwork->old_fb);
289 kfree(fwork);
Russell King96f60e32012-08-15 13:59:49 +0100290}
291
292static void armada_drm_crtc_finish_fb(struct armada_crtc *dcrtc,
293 struct drm_framebuffer *fb, bool force)
294{
295 struct armada_frame_work *work;
296
297 if (!fb)
298 return;
299
300 if (force) {
301 /* Display is disabled, so just drop the old fb */
302 drm_framebuffer_unreference(fb);
303 return;
304 }
305
306 work = kmalloc(sizeof(*work), GFP_KERNEL);
307 if (work) {
308 int i = 0;
Russell King4b5dda82015-08-06 16:37:18 +0100309 work->work.fn = armada_drm_crtc_complete_frame_work;
Russell King96f60e32012-08-15 13:59:49 +0100310 work->event = NULL;
311 work->old_fb = fb;
312 armada_reg_queue_end(work->regs, i);
313
314 if (armada_drm_crtc_queue_frame_work(dcrtc, work) == 0)
315 return;
316
317 kfree(work);
318 }
319
320 /*
321 * Oops - just drop the reference immediately and hope for
322 * the best. The worst that will happen is the buffer gets
323 * reused before it has finished being displayed.
324 */
325 drm_framebuffer_unreference(fb);
326}
327
328static void armada_drm_vblank_off(struct armada_crtc *dcrtc)
329{
Russell King96f60e32012-08-15 13:59:49 +0100330 /*
331 * Tell the DRM core that vblank IRQs aren't going to happen for
332 * a while. This cleans up any pending vblank events for us.
333 */
Russell King178e5612014-10-11 23:57:04 +0100334 drm_crtc_vblank_off(&dcrtc->crtc);
Russell Kingec6fb152016-07-25 15:16:11 +0100335 armada_drm_plane_work_run(dcrtc, dcrtc->crtc.primary);
Russell King96f60e32012-08-15 13:59:49 +0100336}
337
338void armada_drm_crtc_gamma_set(struct drm_crtc *crtc, u16 r, u16 g, u16 b,
339 int idx)
340{
341}
342
343void armada_drm_crtc_gamma_get(struct drm_crtc *crtc, u16 *r, u16 *g, u16 *b,
344 int idx)
345{
346}
347
348/* The mode_config.mutex will be held for this call */
349static void armada_drm_crtc_dpms(struct drm_crtc *crtc, int dpms)
350{
351 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
352
353 if (dcrtc->dpms != dpms) {
354 dcrtc->dpms = dpms;
Russell Kinge0ac5e92015-06-29 18:01:38 +0100355 if (!IS_ERR(dcrtc->clk) && !dpms_blanked(dpms))
356 WARN_ON(clk_prepare_enable(dcrtc->clk));
Russell King96f60e32012-08-15 13:59:49 +0100357 armada_drm_crtc_update(dcrtc);
Russell Kinge0ac5e92015-06-29 18:01:38 +0100358 if (!IS_ERR(dcrtc->clk) && dpms_blanked(dpms))
359 clk_disable_unprepare(dcrtc->clk);
Russell King96f60e32012-08-15 13:59:49 +0100360 if (dpms_blanked(dpms))
361 armada_drm_vblank_off(dcrtc);
Russell King178e5612014-10-11 23:57:04 +0100362 else
363 drm_crtc_vblank_on(&dcrtc->crtc);
Russell King96f60e32012-08-15 13:59:49 +0100364 }
365}
366
367/*
368 * Prepare for a mode set. Turn off overlay to ensure that we don't end
369 * up with the overlay size being bigger than the active screen size.
370 * We rely upon X refreshing this state after the mode set has completed.
371 *
372 * The mode_config.mutex will be held for this call
373 */
374static void armada_drm_crtc_prepare(struct drm_crtc *crtc)
375{
376 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
377 struct drm_plane *plane;
378
379 /*
380 * If we have an overlay plane associated with this CRTC, disable
381 * it before the modeset to avoid its coordinates being outside
Russell Kingf8e14062015-06-29 17:52:42 +0100382 * the new mode parameters.
Russell King96f60e32012-08-15 13:59:49 +0100383 */
384 plane = dcrtc->plane;
Russell Kingf8e14062015-06-29 17:52:42 +0100385 if (plane)
386 drm_plane_force_disable(plane);
Russell King96f60e32012-08-15 13:59:49 +0100387}
388
389/* The mode_config.mutex will be held for this call */
390static void armada_drm_crtc_commit(struct drm_crtc *crtc)
391{
392 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
393
394 if (dcrtc->dpms != DRM_MODE_DPMS_ON) {
395 dcrtc->dpms = DRM_MODE_DPMS_ON;
396 armada_drm_crtc_update(dcrtc);
397 }
398}
399
400/* The mode_config.mutex will be held for this call */
401static bool armada_drm_crtc_mode_fixup(struct drm_crtc *crtc,
402 const struct drm_display_mode *mode, struct drm_display_mode *adj)
403{
Russell King96f60e32012-08-15 13:59:49 +0100404 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
405 int ret;
406
407 /* We can't do interlaced modes if we don't have the SPU_ADV_REG */
Russell King42e62ba2014-04-22 15:24:03 +0100408 if (!dcrtc->variant->has_spu_adv_reg &&
Russell King96f60e32012-08-15 13:59:49 +0100409 adj->flags & DRM_MODE_FLAG_INTERLACE)
410 return false;
411
412 /* Check whether the display mode is possible */
Russell King42e62ba2014-04-22 15:24:03 +0100413 ret = dcrtc->variant->compute_clock(dcrtc, adj, NULL);
Russell King96f60e32012-08-15 13:59:49 +0100414 if (ret)
415 return false;
416
417 return true;
418}
419
Russell Kinge5d9ddf2014-04-26 15:19:38 +0100420static void armada_drm_crtc_irq(struct armada_crtc *dcrtc, u32 stat)
Russell King96f60e32012-08-15 13:59:49 +0100421{
Russell King96f60e32012-08-15 13:59:49 +0100422 void __iomem *base = dcrtc->base;
Russell King4a8506d2015-08-07 09:33:05 +0100423 struct drm_plane *ovl_plane;
Russell King96f60e32012-08-15 13:59:49 +0100424
425 if (stat & DMA_FF_UNDERFLOW)
426 DRM_ERROR("video underflow on crtc %u\n", dcrtc->num);
427 if (stat & GRA_FF_UNDERFLOW)
428 DRM_ERROR("graphics underflow on crtc %u\n", dcrtc->num);
429
430 if (stat & VSYNC_IRQ)
Gustavo Padovan0ac28c52016-07-04 21:04:48 -0300431 drm_crtc_handle_vblank(&dcrtc->crtc);
Russell King96f60e32012-08-15 13:59:49 +0100432
433 spin_lock(&dcrtc->irq_lock);
Russell King4a8506d2015-08-07 09:33:05 +0100434 ovl_plane = dcrtc->plane;
Russell Kingec6fb152016-07-25 15:16:11 +0100435 if (ovl_plane)
436 armada_drm_plane_work_run(dcrtc, ovl_plane);
Russell King96f60e32012-08-15 13:59:49 +0100437
438 if (stat & GRA_FRAME_IRQ && dcrtc->interlaced) {
439 int i = stat & GRA_FRAME_IRQ0 ? 0 : 1;
440 uint32_t val;
441
442 writel_relaxed(dcrtc->v[i].spu_v_porch, base + LCD_SPU_V_PORCH);
443 writel_relaxed(dcrtc->v[i].spu_v_h_total,
444 base + LCD_SPUT_V_H_TOTAL);
445
446 val = readl_relaxed(base + LCD_SPU_ADV_REG);
447 val &= ~(ADV_VSYNC_L_OFF | ADV_VSYNC_H_OFF | ADV_VSYNCOFFEN);
448 val |= dcrtc->v[i].spu_adv_reg;
Russell King662af0d2013-05-19 10:55:17 +0100449 writel_relaxed(val, base + LCD_SPU_ADV_REG);
Russell King96f60e32012-08-15 13:59:49 +0100450 }
Russell King662af0d2013-05-19 10:55:17 +0100451
452 if (stat & DUMB_FRAMEDONE && dcrtc->cursor_update) {
453 writel_relaxed(dcrtc->cursor_hw_pos,
454 base + LCD_SPU_HWC_OVSA_HPXL_VLN);
455 writel_relaxed(dcrtc->cursor_hw_sz,
456 base + LCD_SPU_HWC_HPXL_VLN);
457 armada_updatel(CFG_HWC_ENA,
458 CFG_HWC_ENA | CFG_HWC_1BITMOD | CFG_HWC_1BITENA,
459 base + LCD_SPU_DMA_CTRL0);
460 dcrtc->cursor_update = false;
461 armada_drm_crtc_disable_irq(dcrtc, DUMB_FRAMEDONE_ENA);
462 }
463
Russell King96f60e32012-08-15 13:59:49 +0100464 spin_unlock(&dcrtc->irq_lock);
465
Russell Kingec6fb152016-07-25 15:16:11 +0100466 if (stat & GRA_FRAME_IRQ)
467 armada_drm_plane_work_run(dcrtc, dcrtc->crtc.primary);
Russell King96f60e32012-08-15 13:59:49 +0100468}
469
Russell Kinge5d9ddf2014-04-26 15:19:38 +0100470static irqreturn_t armada_drm_irq(int irq, void *arg)
471{
472 struct armada_crtc *dcrtc = arg;
473 u32 v, stat = readl_relaxed(dcrtc->base + LCD_SPU_IRQ_ISR);
474
475 /*
476 * This is rediculous - rather than writing bits to clear, we
477 * have to set the actual status register value. This is racy.
478 */
479 writel_relaxed(0, dcrtc->base + LCD_SPU_IRQ_ISR);
480
Russell Kingc8a220c2016-05-17 13:51:08 +0100481 trace_armada_drm_irq(&dcrtc->crtc, stat);
482
Russell Kinge5d9ddf2014-04-26 15:19:38 +0100483 /* Mask out those interrupts we haven't enabled */
484 v = stat & dcrtc->irq_ena;
485
486 if (v & (VSYNC_IRQ|GRA_FRAME_IRQ|DUMB_FRAMEDONE)) {
487 armada_drm_crtc_irq(dcrtc, stat);
488 return IRQ_HANDLED;
489 }
490 return IRQ_NONE;
491}
492
Russell King96f60e32012-08-15 13:59:49 +0100493/* These are locked by dev->vbl_lock */
494void armada_drm_crtc_disable_irq(struct armada_crtc *dcrtc, u32 mask)
495{
496 if (dcrtc->irq_ena & mask) {
497 dcrtc->irq_ena &= ~mask;
498 writel(dcrtc->irq_ena, dcrtc->base + LCD_SPU_IRQ_ENA);
499 }
500}
501
502void armada_drm_crtc_enable_irq(struct armada_crtc *dcrtc, u32 mask)
503{
504 if ((dcrtc->irq_ena & mask) != mask) {
505 dcrtc->irq_ena |= mask;
506 writel(dcrtc->irq_ena, dcrtc->base + LCD_SPU_IRQ_ENA);
507 if (readl_relaxed(dcrtc->base + LCD_SPU_IRQ_ISR) & mask)
508 writel(0, dcrtc->base + LCD_SPU_IRQ_ISR);
509 }
510}
511
512static uint32_t armada_drm_crtc_calculate_csc(struct armada_crtc *dcrtc)
513{
514 struct drm_display_mode *adj = &dcrtc->crtc.mode;
515 uint32_t val = 0;
516
517 if (dcrtc->csc_yuv_mode == CSC_YUV_CCIR709)
518 val |= CFG_CSC_YUV_CCIR709;
519 if (dcrtc->csc_rgb_mode == CSC_RGB_STUDIO)
520 val |= CFG_CSC_RGB_STUDIO;
521
522 /*
523 * In auto mode, set the colorimetry, based upon the HDMI spec.
524 * 1280x720p, 1920x1080p and 1920x1080i use ITU709, others use
525 * ITU601. It may be more appropriate to set this depending on
526 * the source - but what if the graphic frame is YUV and the
527 * video frame is RGB?
528 */
529 if ((adj->hdisplay == 1280 && adj->vdisplay == 720 &&
530 !(adj->flags & DRM_MODE_FLAG_INTERLACE)) ||
531 (adj->hdisplay == 1920 && adj->vdisplay == 1080)) {
532 if (dcrtc->csc_yuv_mode == CSC_AUTO)
533 val |= CFG_CSC_YUV_CCIR709;
534 }
535
536 /*
537 * We assume we're connected to a TV-like device, so the YUV->RGB
538 * conversion should produce a limited range. We should set this
539 * depending on the connectors attached to this CRTC, and what
540 * kind of device they report being connected.
541 */
542 if (dcrtc->csc_rgb_mode == CSC_AUTO)
543 val |= CFG_CSC_RGB_STUDIO;
544
545 return val;
546}
547
Russell King37af35c2016-08-16 22:09:09 +0100548static void armada_drm_primary_set(struct drm_crtc *crtc,
549 struct drm_plane *plane, int x, int y)
550{
551 struct armada_plane_state *state = &drm_to_armada_plane(plane)->state;
552 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
Russell King2925db02016-08-16 22:09:10 +0100553 struct armada_regs regs[8];
Russell King37af35c2016-08-16 22:09:09 +0100554 bool interlaced = dcrtc->interlaced;
555 unsigned i;
Russell King2925db02016-08-16 22:09:10 +0100556 u32 ctrl0;
Russell King37af35c2016-08-16 22:09:09 +0100557
558 i = armada_drm_crtc_calc_fb(plane->fb, x, y, regs, interlaced);
559
Russell King2925db02016-08-16 22:09:10 +0100560 armada_reg_queue_set(regs, i, state->dst_yx, LCD_SPU_GRA_OVSA_HPXL_VLN);
Russell King37af35c2016-08-16 22:09:09 +0100561 armada_reg_queue_set(regs, i, state->src_hw, LCD_SPU_GRA_HPXL_VLN);
562 armada_reg_queue_set(regs, i, state->dst_hw, LCD_SPU_GZM_HPXL_VLN);
563
564 ctrl0 = state->ctrl0;
565 if (interlaced)
566 ctrl0 |= CFG_GRA_FTOGGLE;
567
568 armada_reg_queue_mod(regs, i, ctrl0, CFG_GRAFORMAT |
569 CFG_GRA_MOD(CFG_SWAPRB | CFG_SWAPUV |
570 CFG_SWAPYU | CFG_YUV2RGB) |
571 CFG_PALETTE_ENA | CFG_GRA_FTOGGLE,
572 LCD_SPU_DMA_CTRL0);
573 armada_reg_queue_end(regs, i);
574 armada_drm_crtc_update_regs(dcrtc, regs);
575}
576
Russell King96f60e32012-08-15 13:59:49 +0100577/* The mode_config.mutex will be held for this call */
578static int armada_drm_crtc_mode_set(struct drm_crtc *crtc,
579 struct drm_display_mode *mode, struct drm_display_mode *adj,
580 int x, int y, struct drm_framebuffer *old_fb)
581{
Russell King96f60e32012-08-15 13:59:49 +0100582 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
583 struct armada_regs regs[17];
584 uint32_t lm, rm, tm, bm, val, sclk;
585 unsigned long flags;
586 unsigned i;
587 bool interlaced;
588
Matt Roperf4510a22014-04-01 15:22:40 -0700589 drm_framebuffer_reference(crtc->primary->fb);
Russell King96f60e32012-08-15 13:59:49 +0100590
591 interlaced = !!(adj->flags & DRM_MODE_FLAG_INTERLACE);
592
Russell King8be523d2016-08-16 22:09:08 +0100593 val = CFG_GRA_ENA | CFG_GRA_HSMOOTH;
594 val |= CFG_GRA_FMT(drm_fb_to_armada_fb(dcrtc->crtc.primary->fb)->fmt);
595 val |= CFG_GRA_MOD(drm_fb_to_armada_fb(dcrtc->crtc.primary->fb)->mod);
596
597 if (drm_fb_to_armada_fb(dcrtc->crtc.primary->fb)->fmt > CFG_420)
598 val |= CFG_PALETTE_ENA;
599
600 drm_to_armada_plane(crtc->primary)->state.ctrl0 = val;
601 drm_to_armada_plane(crtc->primary)->state.src_hw =
602 drm_to_armada_plane(crtc->primary)->state.dst_hw =
Russell King37af35c2016-08-16 22:09:09 +0100603 adj->crtc_vdisplay << 16 | adj->crtc_hdisplay;
Russell King8be523d2016-08-16 22:09:08 +0100604 drm_to_armada_plane(crtc->primary)->state.dst_yx = 0;
605
Russell King37af35c2016-08-16 22:09:09 +0100606 i = 0;
Russell King96f60e32012-08-15 13:59:49 +0100607 rm = adj->crtc_hsync_start - adj->crtc_hdisplay;
608 lm = adj->crtc_htotal - adj->crtc_hsync_end;
609 bm = adj->crtc_vsync_start - adj->crtc_vdisplay;
610 tm = adj->crtc_vtotal - adj->crtc_vsync_end;
611
612 DRM_DEBUG_DRIVER("H: %d %d %d %d lm %d rm %d\n",
613 adj->crtc_hdisplay,
614 adj->crtc_hsync_start,
615 adj->crtc_hsync_end,
616 adj->crtc_htotal, lm, rm);
617 DRM_DEBUG_DRIVER("V: %d %d %d %d tm %d bm %d\n",
618 adj->crtc_vdisplay,
619 adj->crtc_vsync_start,
620 adj->crtc_vsync_end,
621 adj->crtc_vtotal, tm, bm);
622
623 /* Wait for pending flips to complete */
Russell King4b5dda82015-08-06 16:37:18 +0100624 armada_drm_plane_work_wait(drm_to_armada_plane(dcrtc->crtc.primary),
625 MAX_SCHEDULE_TIMEOUT);
Russell King96f60e32012-08-15 13:59:49 +0100626
Russell King178e5612014-10-11 23:57:04 +0100627 drm_crtc_vblank_off(crtc);
Russell King96f60e32012-08-15 13:59:49 +0100628
Russell King96f60e32012-08-15 13:59:49 +0100629 val = dcrtc->dumb_ctrl & ~CFG_DUMB_ENA;
630 if (val != dcrtc->dumb_ctrl) {
631 dcrtc->dumb_ctrl = val;
632 writel_relaxed(val, dcrtc->base + LCD_SPU_DUMB_CTRL);
633 }
634
Russell Kinge0ac5e92015-06-29 18:01:38 +0100635 /*
636 * If we are blanked, we would have disabled the clock. Re-enable
637 * it so that compute_clock() does the right thing.
638 */
639 if (!IS_ERR(dcrtc->clk) && dpms_blanked(dcrtc->dpms))
640 WARN_ON(clk_prepare_enable(dcrtc->clk));
641
Russell King96f60e32012-08-15 13:59:49 +0100642 /* Now compute the divider for real */
Russell King42e62ba2014-04-22 15:24:03 +0100643 dcrtc->variant->compute_clock(dcrtc, adj, &sclk);
Russell King96f60e32012-08-15 13:59:49 +0100644
645 /* Ensure graphic fifo is enabled */
646 armada_reg_queue_mod(regs, i, 0, CFG_PDWN64x66, LCD_SPU_SRAM_PARA1);
647 armada_reg_queue_set(regs, i, sclk, LCD_CFG_SCLK_DIV);
648
649 if (interlaced ^ dcrtc->interlaced) {
650 if (adj->flags & DRM_MODE_FLAG_INTERLACE)
Gustavo Padovanaccbaf62016-06-06 11:41:40 -0300651 drm_crtc_vblank_get(&dcrtc->crtc);
Russell King96f60e32012-08-15 13:59:49 +0100652 else
Gustavo Padovanaccbaf62016-06-06 11:41:40 -0300653 drm_crtc_vblank_put(&dcrtc->crtc);
Russell King96f60e32012-08-15 13:59:49 +0100654 dcrtc->interlaced = interlaced;
655 }
656
657 spin_lock_irqsave(&dcrtc->irq_lock, flags);
658
659 /* Even interlaced/progressive frame */
660 dcrtc->v[1].spu_v_h_total = adj->crtc_vtotal << 16 |
661 adj->crtc_htotal;
662 dcrtc->v[1].spu_v_porch = tm << 16 | bm;
663 val = adj->crtc_hsync_start;
Russell King662af0d2013-05-19 10:55:17 +0100664 dcrtc->v[1].spu_adv_reg = val << 20 | val | ADV_VSYNCOFFEN |
Russell King42e62ba2014-04-22 15:24:03 +0100665 dcrtc->variant->spu_adv_reg;
Russell King96f60e32012-08-15 13:59:49 +0100666
667 if (interlaced) {
668 /* Odd interlaced frame */
669 dcrtc->v[0].spu_v_h_total = dcrtc->v[1].spu_v_h_total +
670 (1 << 16);
671 dcrtc->v[0].spu_v_porch = dcrtc->v[1].spu_v_porch + 1;
672 val = adj->crtc_hsync_start - adj->crtc_htotal / 2;
Russell King662af0d2013-05-19 10:55:17 +0100673 dcrtc->v[0].spu_adv_reg = val << 20 | val | ADV_VSYNCOFFEN |
Russell King42e62ba2014-04-22 15:24:03 +0100674 dcrtc->variant->spu_adv_reg;
Russell King96f60e32012-08-15 13:59:49 +0100675 } else {
676 dcrtc->v[0] = dcrtc->v[1];
677 }
678
679 val = adj->crtc_vdisplay << 16 | adj->crtc_hdisplay;
680
681 armada_reg_queue_set(regs, i, val, LCD_SPU_V_H_ACTIVE);
Russell King96f60e32012-08-15 13:59:49 +0100682 armada_reg_queue_set(regs, i, (lm << 16) | rm, LCD_SPU_H_PORCH);
683 armada_reg_queue_set(regs, i, dcrtc->v[0].spu_v_porch, LCD_SPU_V_PORCH);
684 armada_reg_queue_set(regs, i, dcrtc->v[0].spu_v_h_total,
685 LCD_SPUT_V_H_TOTAL);
686
Russell King42e62ba2014-04-22 15:24:03 +0100687 if (dcrtc->variant->has_spu_adv_reg) {
Russell King96f60e32012-08-15 13:59:49 +0100688 armada_reg_queue_mod(regs, i, dcrtc->v[0].spu_adv_reg,
689 ADV_VSYNC_L_OFF | ADV_VSYNC_H_OFF |
690 ADV_VSYNCOFFEN, LCD_SPU_ADV_REG);
Russell King662af0d2013-05-19 10:55:17 +0100691 }
Russell King96f60e32012-08-15 13:59:49 +0100692
Russell King96f60e32012-08-15 13:59:49 +0100693 val = adj->flags & DRM_MODE_FLAG_NVSYNC ? CFG_VSYNC_INV : 0;
694 armada_reg_queue_mod(regs, i, val, CFG_VSYNC_INV, LCD_SPU_DMA_CTRL1);
695
696 val = dcrtc->spu_iopad_ctrl | armada_drm_crtc_calculate_csc(dcrtc);
697 armada_reg_queue_set(regs, i, val, LCD_SPU_IOPAD_CONTROL);
698 armada_reg_queue_end(regs, i);
699
700 armada_drm_crtc_update_regs(dcrtc, regs);
Russell King37af35c2016-08-16 22:09:09 +0100701
702 armada_drm_primary_set(crtc, crtc->primary, x, y);
Russell King96f60e32012-08-15 13:59:49 +0100703 spin_unlock_irqrestore(&dcrtc->irq_lock, flags);
704
705 armada_drm_crtc_update(dcrtc);
706
Russell King178e5612014-10-11 23:57:04 +0100707 drm_crtc_vblank_on(crtc);
Russell King96f60e32012-08-15 13:59:49 +0100708 armada_drm_crtc_finish_fb(dcrtc, old_fb, dpms_blanked(dcrtc->dpms));
709
710 return 0;
711}
712
713/* The mode_config.mutex will be held for this call */
714static int armada_drm_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
715 struct drm_framebuffer *old_fb)
716{
717 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
718 struct armada_regs regs[4];
719 unsigned i;
720
Matt Roperf4510a22014-04-01 15:22:40 -0700721 i = armada_drm_crtc_calc_fb(crtc->primary->fb, crtc->x, crtc->y, regs,
Russell King96f60e32012-08-15 13:59:49 +0100722 dcrtc->interlaced);
723 armada_reg_queue_end(regs, i);
724
725 /* Wait for pending flips to complete */
Russell King4b5dda82015-08-06 16:37:18 +0100726 armada_drm_plane_work_wait(drm_to_armada_plane(dcrtc->crtc.primary),
727 MAX_SCHEDULE_TIMEOUT);
Russell King96f60e32012-08-15 13:59:49 +0100728
729 /* Take a reference to the new fb as we're using it */
Matt Roperf4510a22014-04-01 15:22:40 -0700730 drm_framebuffer_reference(crtc->primary->fb);
Russell King96f60e32012-08-15 13:59:49 +0100731
732 /* Update the base in the CRTC */
733 armada_drm_crtc_update_regs(dcrtc, regs);
734
735 /* Drop our previously held reference */
736 armada_drm_crtc_finish_fb(dcrtc, old_fb, dpms_blanked(dcrtc->dpms));
737
738 return 0;
739}
740
Russell King58326802015-07-15 18:11:25 +0100741void armada_drm_crtc_plane_disable(struct armada_crtc *dcrtc,
742 struct drm_plane *plane)
743{
Russell King9099ea12015-07-15 18:11:25 +0100744 u32 sram_para1, dma_ctrl0_mask;
Russell King58326802015-07-15 18:11:25 +0100745
746 /*
747 * Drop our reference on any framebuffer attached to this plane.
748 * We don't need to NULL this out as drm_plane_force_disable(),
749 * and __setplane_internal() will do so for an overlay plane, and
750 * __drm_helper_disable_unused_functions() will do so for the
751 * primary plane.
752 */
753 if (plane->fb)
754 drm_framebuffer_unreference(plane->fb);
755
756 /* Power down the Y/U/V FIFOs */
757 sram_para1 = CFG_PDWN16x66 | CFG_PDWN32x66;
758
759 /* Power down most RAMs and FIFOs if this is the primary plane */
Russell King9099ea12015-07-15 18:11:25 +0100760 if (plane->type == DRM_PLANE_TYPE_PRIMARY) {
Russell King58326802015-07-15 18:11:25 +0100761 sram_para1 |= CFG_PDWN256x32 | CFG_PDWN256x24 | CFG_PDWN256x8 |
762 CFG_PDWN32x32 | CFG_PDWN64x66;
Russell King9099ea12015-07-15 18:11:25 +0100763 dma_ctrl0_mask = CFG_GRA_ENA;
764 } else {
765 dma_ctrl0_mask = CFG_DMA_ENA;
766 }
767
768 spin_lock_irq(&dcrtc->irq_lock);
769 armada_updatel(0, dma_ctrl0_mask, dcrtc->base + LCD_SPU_DMA_CTRL0);
770 spin_unlock_irq(&dcrtc->irq_lock);
Russell King58326802015-07-15 18:11:25 +0100771
772 armada_updatel(sram_para1, 0, dcrtc->base + LCD_SPU_SRAM_PARA1);
773}
774
Russell King96f60e32012-08-15 13:59:49 +0100775/* The mode_config.mutex will be held for this call */
776static void armada_drm_crtc_disable(struct drm_crtc *crtc)
777{
778 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
779
780 armada_drm_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
Russell King58326802015-07-15 18:11:25 +0100781 armada_drm_crtc_plane_disable(dcrtc, crtc->primary);
Russell King96f60e32012-08-15 13:59:49 +0100782}
783
784static const struct drm_crtc_helper_funcs armada_crtc_helper_funcs = {
785 .dpms = armada_drm_crtc_dpms,
786 .prepare = armada_drm_crtc_prepare,
787 .commit = armada_drm_crtc_commit,
788 .mode_fixup = armada_drm_crtc_mode_fixup,
789 .mode_set = armada_drm_crtc_mode_set,
790 .mode_set_base = armada_drm_crtc_mode_set_base,
Russell King96f60e32012-08-15 13:59:49 +0100791 .disable = armada_drm_crtc_disable,
792};
793
Russell King662af0d2013-05-19 10:55:17 +0100794static void armada_load_cursor_argb(void __iomem *base, uint32_t *pix,
795 unsigned stride, unsigned width, unsigned height)
796{
797 uint32_t addr;
798 unsigned y;
799
800 addr = SRAM_HWC32_RAM1;
801 for (y = 0; y < height; y++) {
802 uint32_t *p = &pix[y * stride];
803 unsigned x;
804
805 for (x = 0; x < width; x++, p++) {
806 uint32_t val = *p;
807
808 val = (val & 0xff00ff00) |
809 (val & 0x000000ff) << 16 |
810 (val & 0x00ff0000) >> 16;
811
812 writel_relaxed(val,
813 base + LCD_SPU_SRAM_WRDAT);
814 writel_relaxed(addr | SRAM_WRITE,
815 base + LCD_SPU_SRAM_CTRL);
Russell Kingc39b0692014-04-07 12:00:17 +0100816 readl_relaxed(base + LCD_SPU_HWC_OVSA_HPXL_VLN);
Russell King662af0d2013-05-19 10:55:17 +0100817 addr += 1;
818 if ((addr & 0x00ff) == 0)
819 addr += 0xf00;
820 if ((addr & 0x30ff) == 0)
821 addr = SRAM_HWC32_RAM2;
822 }
823 }
824}
825
826static void armada_drm_crtc_cursor_tran(void __iomem *base)
827{
828 unsigned addr;
829
830 for (addr = 0; addr < 256; addr++) {
831 /* write the default value */
832 writel_relaxed(0x55555555, base + LCD_SPU_SRAM_WRDAT);
833 writel_relaxed(addr | SRAM_WRITE | SRAM_HWC32_TRAN,
834 base + LCD_SPU_SRAM_CTRL);
835 }
836}
837
838static int armada_drm_crtc_cursor_update(struct armada_crtc *dcrtc, bool reload)
839{
840 uint32_t xoff, xscr, w = dcrtc->cursor_w, s;
841 uint32_t yoff, yscr, h = dcrtc->cursor_h;
842 uint32_t para1;
843
844 /*
845 * Calculate the visible width and height of the cursor,
846 * screen position, and the position in the cursor bitmap.
847 */
848 if (dcrtc->cursor_x < 0) {
849 xoff = -dcrtc->cursor_x;
850 xscr = 0;
851 w -= min(xoff, w);
852 } else if (dcrtc->cursor_x + w > dcrtc->crtc.mode.hdisplay) {
853 xoff = 0;
854 xscr = dcrtc->cursor_x;
855 w = max_t(int, dcrtc->crtc.mode.hdisplay - dcrtc->cursor_x, 0);
856 } else {
857 xoff = 0;
858 xscr = dcrtc->cursor_x;
859 }
860
861 if (dcrtc->cursor_y < 0) {
862 yoff = -dcrtc->cursor_y;
863 yscr = 0;
864 h -= min(yoff, h);
865 } else if (dcrtc->cursor_y + h > dcrtc->crtc.mode.vdisplay) {
866 yoff = 0;
867 yscr = dcrtc->cursor_y;
868 h = max_t(int, dcrtc->crtc.mode.vdisplay - dcrtc->cursor_y, 0);
869 } else {
870 yoff = 0;
871 yscr = dcrtc->cursor_y;
872 }
873
874 /* On interlaced modes, the vertical cursor size must be halved */
875 s = dcrtc->cursor_w;
876 if (dcrtc->interlaced) {
877 s *= 2;
878 yscr /= 2;
879 h /= 2;
880 }
881
882 if (!dcrtc->cursor_obj || !h || !w) {
883 spin_lock_irq(&dcrtc->irq_lock);
884 armada_drm_crtc_disable_irq(dcrtc, DUMB_FRAMEDONE_ENA);
885 dcrtc->cursor_update = false;
886 armada_updatel(0, CFG_HWC_ENA, dcrtc->base + LCD_SPU_DMA_CTRL0);
887 spin_unlock_irq(&dcrtc->irq_lock);
888 return 0;
889 }
890
891 para1 = readl_relaxed(dcrtc->base + LCD_SPU_SRAM_PARA1);
892 armada_updatel(CFG_CSB_256x32, CFG_CSB_256x32 | CFG_PDWN256x32,
893 dcrtc->base + LCD_SPU_SRAM_PARA1);
894
895 /*
896 * Initialize the transparency if the SRAM was powered down.
897 * We must also reload the cursor data as well.
898 */
899 if (!(para1 & CFG_CSB_256x32)) {
900 armada_drm_crtc_cursor_tran(dcrtc->base);
901 reload = true;
902 }
903
904 if (dcrtc->cursor_hw_sz != (h << 16 | w)) {
905 spin_lock_irq(&dcrtc->irq_lock);
906 armada_drm_crtc_disable_irq(dcrtc, DUMB_FRAMEDONE_ENA);
907 dcrtc->cursor_update = false;
908 armada_updatel(0, CFG_HWC_ENA, dcrtc->base + LCD_SPU_DMA_CTRL0);
909 spin_unlock_irq(&dcrtc->irq_lock);
910 reload = true;
911 }
912 if (reload) {
913 struct armada_gem_object *obj = dcrtc->cursor_obj;
914 uint32_t *pix;
915 /* Set the top-left corner of the cursor image */
916 pix = obj->addr;
917 pix += yoff * s + xoff;
918 armada_load_cursor_argb(dcrtc->base, pix, s, w, h);
919 }
920
921 /* Reload the cursor position, size and enable in the IRQ handler */
922 spin_lock_irq(&dcrtc->irq_lock);
923 dcrtc->cursor_hw_pos = yscr << 16 | xscr;
924 dcrtc->cursor_hw_sz = h << 16 | w;
925 dcrtc->cursor_update = true;
926 armada_drm_crtc_enable_irq(dcrtc, DUMB_FRAMEDONE_ENA);
927 spin_unlock_irq(&dcrtc->irq_lock);
928
929 return 0;
930}
931
932static void cursor_update(void *data)
933{
934 armada_drm_crtc_cursor_update(data, true);
935}
936
937static int armada_drm_crtc_cursor_set(struct drm_crtc *crtc,
938 struct drm_file *file, uint32_t handle, uint32_t w, uint32_t h)
939{
Russell King662af0d2013-05-19 10:55:17 +0100940 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
Russell King662af0d2013-05-19 10:55:17 +0100941 struct armada_gem_object *obj = NULL;
942 int ret;
943
944 /* If no cursor support, replicate drm's return value */
Russell King42e62ba2014-04-22 15:24:03 +0100945 if (!dcrtc->variant->has_spu_adv_reg)
Russell King662af0d2013-05-19 10:55:17 +0100946 return -ENXIO;
947
948 if (handle && w > 0 && h > 0) {
949 /* maximum size is 64x32 or 32x64 */
950 if (w > 64 || h > 64 || (w > 32 && h > 32))
951 return -ENOMEM;
952
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100953 obj = armada_gem_object_lookup(file, handle);
Russell King662af0d2013-05-19 10:55:17 +0100954 if (!obj)
955 return -ENOENT;
956
957 /* Must be a kernel-mapped object */
958 if (!obj->addr) {
959 drm_gem_object_unreference_unlocked(&obj->obj);
960 return -EINVAL;
961 }
962
963 if (obj->obj.size < w * h * 4) {
964 DRM_ERROR("buffer is too small\n");
965 drm_gem_object_unreference_unlocked(&obj->obj);
966 return -ENOMEM;
967 }
968 }
969
Russell King662af0d2013-05-19 10:55:17 +0100970 if (dcrtc->cursor_obj) {
971 dcrtc->cursor_obj->update = NULL;
972 dcrtc->cursor_obj->update_data = NULL;
Daniel Vetter4bd3fd42015-11-23 10:32:45 +0100973 drm_gem_object_unreference_unlocked(&dcrtc->cursor_obj->obj);
Russell King662af0d2013-05-19 10:55:17 +0100974 }
975 dcrtc->cursor_obj = obj;
976 dcrtc->cursor_w = w;
977 dcrtc->cursor_h = h;
978 ret = armada_drm_crtc_cursor_update(dcrtc, true);
979 if (obj) {
980 obj->update_data = dcrtc;
981 obj->update = cursor_update;
982 }
Russell King662af0d2013-05-19 10:55:17 +0100983
984 return ret;
985}
986
987static int armada_drm_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
988{
Russell King662af0d2013-05-19 10:55:17 +0100989 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
Russell King662af0d2013-05-19 10:55:17 +0100990 int ret;
991
992 /* If no cursor support, replicate drm's return value */
Russell King42e62ba2014-04-22 15:24:03 +0100993 if (!dcrtc->variant->has_spu_adv_reg)
Russell King662af0d2013-05-19 10:55:17 +0100994 return -EFAULT;
995
Russell King662af0d2013-05-19 10:55:17 +0100996 dcrtc->cursor_x = x;
997 dcrtc->cursor_y = y;
998 ret = armada_drm_crtc_cursor_update(dcrtc, false);
Russell King662af0d2013-05-19 10:55:17 +0100999
1000 return ret;
1001}
1002
Russell King96f60e32012-08-15 13:59:49 +01001003static void armada_drm_crtc_destroy(struct drm_crtc *crtc)
1004{
1005 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
1006 struct armada_private *priv = crtc->dev->dev_private;
1007
Russell King662af0d2013-05-19 10:55:17 +01001008 if (dcrtc->cursor_obj)
Daniel Vetter7a6f7132015-11-23 10:32:34 +01001009 drm_gem_object_unreference_unlocked(&dcrtc->cursor_obj->obj);
Russell King662af0d2013-05-19 10:55:17 +01001010
Russell King96f60e32012-08-15 13:59:49 +01001011 priv->dcrtc[dcrtc->num] = NULL;
1012 drm_crtc_cleanup(&dcrtc->crtc);
1013
1014 if (!IS_ERR(dcrtc->clk))
1015 clk_disable_unprepare(dcrtc->clk);
1016
Russell Kinge5d9ddf2014-04-26 15:19:38 +01001017 writel_relaxed(0, dcrtc->base + LCD_SPU_IRQ_ENA);
1018
Russell King9611cb92014-06-15 11:21:23 +01001019 of_node_put(dcrtc->crtc.port);
1020
Russell King96f60e32012-08-15 13:59:49 +01001021 kfree(dcrtc);
1022}
1023
1024/*
1025 * The mode_config lock is held here, to prevent races between this
1026 * and a mode_set.
1027 */
1028static int armada_drm_crtc_page_flip(struct drm_crtc *crtc,
Dave Airlie5e4e3ba2013-10-22 09:38:18 +01001029 struct drm_framebuffer *fb, struct drm_pending_vblank_event *event, uint32_t page_flip_flags)
Russell King96f60e32012-08-15 13:59:49 +01001030{
1031 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
1032 struct armada_frame_work *work;
Russell King96f60e32012-08-15 13:59:49 +01001033 unsigned i;
1034 int ret;
1035
1036 /* We don't support changing the pixel format */
Matt Roperf4510a22014-04-01 15:22:40 -07001037 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Russell King96f60e32012-08-15 13:59:49 +01001038 return -EINVAL;
1039
1040 work = kmalloc(sizeof(*work), GFP_KERNEL);
1041 if (!work)
1042 return -ENOMEM;
1043
Russell King4b5dda82015-08-06 16:37:18 +01001044 work->work.fn = armada_drm_crtc_complete_frame_work;
Russell King96f60e32012-08-15 13:59:49 +01001045 work->event = event;
Matt Roperf4510a22014-04-01 15:22:40 -07001046 work->old_fb = dcrtc->crtc.primary->fb;
Russell King96f60e32012-08-15 13:59:49 +01001047
1048 i = armada_drm_crtc_calc_fb(fb, crtc->x, crtc->y, work->regs,
1049 dcrtc->interlaced);
1050 armada_reg_queue_end(work->regs, i);
1051
1052 /*
Russell Kingc5488302014-10-11 23:53:35 +01001053 * Ensure that we hold a reference on the new framebuffer.
1054 * This has to match the behaviour in mode_set.
Russell King96f60e32012-08-15 13:59:49 +01001055 */
Russell Kingc5488302014-10-11 23:53:35 +01001056 drm_framebuffer_reference(fb);
Russell King96f60e32012-08-15 13:59:49 +01001057
1058 ret = armada_drm_crtc_queue_frame_work(dcrtc, work);
1059 if (ret) {
Russell Kingc5488302014-10-11 23:53:35 +01001060 /* Undo our reference above */
1061 drm_framebuffer_unreference(fb);
Russell King96f60e32012-08-15 13:59:49 +01001062 kfree(work);
1063 return ret;
1064 }
1065
1066 /*
1067 * Don't take a reference on the new framebuffer;
1068 * drm_mode_page_flip_ioctl() has already grabbed a reference and
1069 * will _not_ drop that reference on successful return from this
1070 * function. Simply mark this new framebuffer as the current one.
1071 */
Matt Roperf4510a22014-04-01 15:22:40 -07001072 dcrtc->crtc.primary->fb = fb;
Russell King96f60e32012-08-15 13:59:49 +01001073
1074 /*
1075 * Finally, if the display is blanked, we won't receive an
1076 * interrupt, so complete it now.
1077 */
Russell King4b5dda82015-08-06 16:37:18 +01001078 if (dpms_blanked(dcrtc->dpms))
Russell Kingec6fb152016-07-25 15:16:11 +01001079 armada_drm_plane_work_run(dcrtc, dcrtc->crtc.primary);
Russell King96f60e32012-08-15 13:59:49 +01001080
1081 return 0;
1082}
1083
1084static int
1085armada_drm_crtc_set_property(struct drm_crtc *crtc,
1086 struct drm_property *property, uint64_t val)
1087{
1088 struct armada_private *priv = crtc->dev->dev_private;
1089 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
1090 bool update_csc = false;
1091
1092 if (property == priv->csc_yuv_prop) {
1093 dcrtc->csc_yuv_mode = val;
1094 update_csc = true;
1095 } else if (property == priv->csc_rgb_prop) {
1096 dcrtc->csc_rgb_mode = val;
1097 update_csc = true;
1098 }
1099
1100 if (update_csc) {
1101 uint32_t val;
1102
1103 val = dcrtc->spu_iopad_ctrl |
1104 armada_drm_crtc_calculate_csc(dcrtc);
1105 writel_relaxed(val, dcrtc->base + LCD_SPU_IOPAD_CONTROL);
1106 }
1107
1108 return 0;
1109}
1110
Ville Syrjäläa02fb902015-12-15 12:20:59 +01001111static const struct drm_crtc_funcs armada_crtc_funcs = {
Russell King662af0d2013-05-19 10:55:17 +01001112 .cursor_set = armada_drm_crtc_cursor_set,
1113 .cursor_move = armada_drm_crtc_cursor_move,
Russell King96f60e32012-08-15 13:59:49 +01001114 .destroy = armada_drm_crtc_destroy,
1115 .set_config = drm_crtc_helper_set_config,
1116 .page_flip = armada_drm_crtc_page_flip,
1117 .set_property = armada_drm_crtc_set_property,
1118};
1119
Russell Kingde323012015-07-15 18:11:24 +01001120static const struct drm_plane_funcs armada_primary_plane_funcs = {
1121 .update_plane = drm_primary_helper_update,
1122 .disable_plane = drm_primary_helper_disable,
1123 .destroy = drm_primary_helper_destroy,
1124};
1125
Russell King5740d272015-07-15 18:11:25 +01001126int armada_drm_plane_init(struct armada_plane *plane)
1127{
1128 init_waitqueue_head(&plane->frame_wait);
1129
1130 return 0;
1131}
1132
Russell King96f60e32012-08-15 13:59:49 +01001133static struct drm_prop_enum_list armada_drm_csc_yuv_enum_list[] = {
1134 { CSC_AUTO, "Auto" },
1135 { CSC_YUV_CCIR601, "CCIR601" },
1136 { CSC_YUV_CCIR709, "CCIR709" },
1137};
1138
1139static struct drm_prop_enum_list armada_drm_csc_rgb_enum_list[] = {
1140 { CSC_AUTO, "Auto" },
1141 { CSC_RGB_COMPUTER, "Computer system" },
1142 { CSC_RGB_STUDIO, "Studio" },
1143};
1144
1145static int armada_drm_crtc_create_properties(struct drm_device *dev)
1146{
1147 struct armada_private *priv = dev->dev_private;
1148
1149 if (priv->csc_yuv_prop)
1150 return 0;
1151
1152 priv->csc_yuv_prop = drm_property_create_enum(dev, 0,
1153 "CSC_YUV", armada_drm_csc_yuv_enum_list,
1154 ARRAY_SIZE(armada_drm_csc_yuv_enum_list));
1155 priv->csc_rgb_prop = drm_property_create_enum(dev, 0,
1156 "CSC_RGB", armada_drm_csc_rgb_enum_list,
1157 ARRAY_SIZE(armada_drm_csc_rgb_enum_list));
1158
1159 if (!priv->csc_yuv_prop || !priv->csc_rgb_prop)
1160 return -ENOMEM;
1161
1162 return 0;
1163}
1164
Russell King0fb29702015-06-06 21:46:53 +01001165static int armada_drm_crtc_create(struct drm_device *drm, struct device *dev,
Russell King9611cb92014-06-15 11:21:23 +01001166 struct resource *res, int irq, const struct armada_variant *variant,
1167 struct device_node *port)
Russell King96f60e32012-08-15 13:59:49 +01001168{
Russell Kingd8c96082014-04-22 11:10:15 +01001169 struct armada_private *priv = drm->dev_private;
Russell King96f60e32012-08-15 13:59:49 +01001170 struct armada_crtc *dcrtc;
Russell Kingde323012015-07-15 18:11:24 +01001171 struct armada_plane *primary;
Russell King96f60e32012-08-15 13:59:49 +01001172 void __iomem *base;
1173 int ret;
1174
Russell Kingd8c96082014-04-22 11:10:15 +01001175 ret = armada_drm_crtc_create_properties(drm);
Russell King96f60e32012-08-15 13:59:49 +01001176 if (ret)
1177 return ret;
1178
Linus Torvaldsa7d7a142014-08-07 17:36:12 -07001179 base = devm_ioremap_resource(dev, res);
Jingoo Hanc9d53c02014-06-11 14:00:05 +09001180 if (IS_ERR(base))
1181 return PTR_ERR(base);
Russell King96f60e32012-08-15 13:59:49 +01001182
1183 dcrtc = kzalloc(sizeof(*dcrtc), GFP_KERNEL);
1184 if (!dcrtc) {
1185 DRM_ERROR("failed to allocate Armada crtc\n");
1186 return -ENOMEM;
1187 }
1188
Russell Kingd8c96082014-04-22 11:10:15 +01001189 if (dev != drm->dev)
1190 dev_set_drvdata(dev, dcrtc);
1191
Russell King42e62ba2014-04-22 15:24:03 +01001192 dcrtc->variant = variant;
Russell King96f60e32012-08-15 13:59:49 +01001193 dcrtc->base = base;
Russell Kingd8c96082014-04-22 11:10:15 +01001194 dcrtc->num = drm->mode_config.num_crtc;
Russell King96f60e32012-08-15 13:59:49 +01001195 dcrtc->clk = ERR_PTR(-EINVAL);
1196 dcrtc->csc_yuv_mode = CSC_AUTO;
1197 dcrtc->csc_rgb_mode = CSC_AUTO;
1198 dcrtc->cfg_dumb_ctrl = DUMB24_RGB888_0;
1199 dcrtc->spu_iopad_ctrl = CFG_VSCALE_LN_EN | CFG_IOPAD_DUMB24;
1200 spin_lock_init(&dcrtc->irq_lock);
1201 dcrtc->irq_ena = CLEAN_SPU_IRQ_ISR;
Russell King96f60e32012-08-15 13:59:49 +01001202
1203 /* Initialize some registers which we don't otherwise set */
1204 writel_relaxed(0x00000001, dcrtc->base + LCD_CFG_SCLK_DIV);
1205 writel_relaxed(0x00000000, dcrtc->base + LCD_SPU_BLANKCOLOR);
1206 writel_relaxed(dcrtc->spu_iopad_ctrl,
1207 dcrtc->base + LCD_SPU_IOPAD_CONTROL);
1208 writel_relaxed(0x00000000, dcrtc->base + LCD_SPU_SRAM_PARA0);
1209 writel_relaxed(CFG_PDWN256x32 | CFG_PDWN256x24 | CFG_PDWN256x8 |
1210 CFG_PDWN32x32 | CFG_PDWN16x66 | CFG_PDWN32x66 |
1211 CFG_PDWN64x66, dcrtc->base + LCD_SPU_SRAM_PARA1);
1212 writel_relaxed(0x2032ff81, dcrtc->base + LCD_SPU_DMA_CTRL1);
Russell Kinge5d9ddf2014-04-26 15:19:38 +01001213 writel_relaxed(dcrtc->irq_ena, dcrtc->base + LCD_SPU_IRQ_ENA);
1214 writel_relaxed(0, dcrtc->base + LCD_SPU_IRQ_ISR);
Russell King96f60e32012-08-15 13:59:49 +01001215
Russell Kinge5d9ddf2014-04-26 15:19:38 +01001216 ret = devm_request_irq(dev, irq, armada_drm_irq, 0, "armada_drm_crtc",
1217 dcrtc);
1218 if (ret < 0) {
1219 kfree(dcrtc);
1220 return ret;
1221 }
Russell King96f60e32012-08-15 13:59:49 +01001222
Russell King42e62ba2014-04-22 15:24:03 +01001223 if (dcrtc->variant->init) {
Russell Kingd8c96082014-04-22 11:10:15 +01001224 ret = dcrtc->variant->init(dcrtc, dev);
Russell King96f60e32012-08-15 13:59:49 +01001225 if (ret) {
1226 kfree(dcrtc);
1227 return ret;
1228 }
1229 }
1230
1231 /* Ensure AXI pipeline is enabled */
1232 armada_updatel(CFG_ARBFAST_ENA, 0, dcrtc->base + LCD_SPU_DMA_CTRL0);
1233
1234 priv->dcrtc[dcrtc->num] = dcrtc;
1235
Russell King9611cb92014-06-15 11:21:23 +01001236 dcrtc->crtc.port = port;
Russell King1c914ce2015-07-15 18:11:24 +01001237
Russell Kingde323012015-07-15 18:11:24 +01001238 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
Russell King1c914ce2015-07-15 18:11:24 +01001239 if (!primary)
1240 return -ENOMEM;
1241
Russell King5740d272015-07-15 18:11:25 +01001242 ret = armada_drm_plane_init(primary);
1243 if (ret) {
1244 kfree(primary);
1245 return ret;
1246 }
1247
Russell Kingde323012015-07-15 18:11:24 +01001248 ret = drm_universal_plane_init(drm, &primary->base, 0,
1249 &armada_primary_plane_funcs,
1250 armada_primary_formats,
1251 ARRAY_SIZE(armada_primary_formats),
Ville Syrjäläb0b3b792015-12-09 16:19:55 +02001252 DRM_PLANE_TYPE_PRIMARY, NULL);
Russell Kingde323012015-07-15 18:11:24 +01001253 if (ret) {
1254 kfree(primary);
1255 return ret;
1256 }
1257
1258 ret = drm_crtc_init_with_planes(drm, &dcrtc->crtc, &primary->base, NULL,
Ville Syrjäläf9882872015-12-09 16:19:31 +02001259 &armada_crtc_funcs, NULL);
Russell King1c914ce2015-07-15 18:11:24 +01001260 if (ret)
1261 goto err_crtc_init;
1262
Russell King96f60e32012-08-15 13:59:49 +01001263 drm_crtc_helper_add(&dcrtc->crtc, &armada_crtc_helper_funcs);
1264
1265 drm_object_attach_property(&dcrtc->crtc.base, priv->csc_yuv_prop,
1266 dcrtc->csc_yuv_mode);
1267 drm_object_attach_property(&dcrtc->crtc.base, priv->csc_rgb_prop,
1268 dcrtc->csc_rgb_mode);
1269
Russell Kingd8c96082014-04-22 11:10:15 +01001270 return armada_overlay_plane_create(drm, 1 << dcrtc->num);
Russell King1c914ce2015-07-15 18:11:24 +01001271
1272err_crtc_init:
Russell Kingde323012015-07-15 18:11:24 +01001273 primary->base.funcs->destroy(&primary->base);
Russell King1c914ce2015-07-15 18:11:24 +01001274 return ret;
Russell King96f60e32012-08-15 13:59:49 +01001275}
Russell Kingd8c96082014-04-22 11:10:15 +01001276
1277static int
1278armada_lcd_bind(struct device *dev, struct device *master, void *data)
1279{
1280 struct platform_device *pdev = to_platform_device(dev);
1281 struct drm_device *drm = data;
1282 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1283 int irq = platform_get_irq(pdev, 0);
1284 const struct armada_variant *variant;
Russell King9611cb92014-06-15 11:21:23 +01001285 struct device_node *port = NULL;
Russell Kingd8c96082014-04-22 11:10:15 +01001286
1287 if (irq < 0)
1288 return irq;
1289
1290 if (!dev->of_node) {
1291 const struct platform_device_id *id;
1292
1293 id = platform_get_device_id(pdev);
1294 if (!id)
1295 return -ENXIO;
1296
1297 variant = (const struct armada_variant *)id->driver_data;
1298 } else {
1299 const struct of_device_id *match;
Russell King9611cb92014-06-15 11:21:23 +01001300 struct device_node *np, *parent = dev->of_node;
Russell Kingd8c96082014-04-22 11:10:15 +01001301
1302 match = of_match_device(dev->driver->of_match_table, dev);
1303 if (!match)
1304 return -ENXIO;
1305
Russell King9611cb92014-06-15 11:21:23 +01001306 np = of_get_child_by_name(parent, "ports");
1307 if (np)
1308 parent = np;
1309 port = of_get_child_by_name(parent, "port");
1310 of_node_put(np);
1311 if (!port) {
1312 dev_err(dev, "no port node found in %s\n",
1313 parent->full_name);
1314 return -ENXIO;
1315 }
1316
Russell Kingd8c96082014-04-22 11:10:15 +01001317 variant = match->data;
1318 }
1319
Russell King9611cb92014-06-15 11:21:23 +01001320 return armada_drm_crtc_create(drm, dev, res, irq, variant, port);
Russell Kingd8c96082014-04-22 11:10:15 +01001321}
1322
1323static void
1324armada_lcd_unbind(struct device *dev, struct device *master, void *data)
1325{
1326 struct armada_crtc *dcrtc = dev_get_drvdata(dev);
1327
1328 armada_drm_crtc_destroy(&dcrtc->crtc);
1329}
1330
1331static const struct component_ops armada_lcd_ops = {
1332 .bind = armada_lcd_bind,
1333 .unbind = armada_lcd_unbind,
1334};
1335
1336static int armada_lcd_probe(struct platform_device *pdev)
1337{
1338 return component_add(&pdev->dev, &armada_lcd_ops);
1339}
1340
1341static int armada_lcd_remove(struct platform_device *pdev)
1342{
1343 component_del(&pdev->dev, &armada_lcd_ops);
1344 return 0;
1345}
1346
1347static struct of_device_id armada_lcd_of_match[] = {
1348 {
1349 .compatible = "marvell,dove-lcd",
1350 .data = &armada510_ops,
1351 },
1352 {}
1353};
1354MODULE_DEVICE_TABLE(of, armada_lcd_of_match);
1355
1356static const struct platform_device_id armada_lcd_platform_ids[] = {
1357 {
1358 .name = "armada-lcd",
1359 .driver_data = (unsigned long)&armada510_ops,
1360 }, {
1361 .name = "armada-510-lcd",
1362 .driver_data = (unsigned long)&armada510_ops,
1363 },
1364 { },
1365};
1366MODULE_DEVICE_TABLE(platform, armada_lcd_platform_ids);
1367
1368struct platform_driver armada_lcd_platform_driver = {
1369 .probe = armada_lcd_probe,
1370 .remove = armada_lcd_remove,
1371 .driver = {
1372 .name = "armada-lcd",
1373 .owner = THIS_MODULE,
1374 .of_match_table = armada_lcd_of_match,
1375 },
1376 .id_table = armada_lcd_platform_ids,
1377};