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