2 * Copyright (C) 2012 Russell King
3 * Rewritten from the dovefb driver, and Armada510 manuals.
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.
10 #include <linux/component.h>
11 #include <linux/of_device.h>
12 #include <linux/platform_device.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 #include "armada_trace.h"
23 struct armada_frame_work
{
24 struct armada_plane_work work
;
25 struct drm_pending_vblank_event
*event
;
26 struct armada_regs regs
[4];
27 struct drm_framebuffer
*old_fb
;
38 static const uint32_t armada_primary_formats
[] = {
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
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.
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).
75 * LN: 1123 1124 1125 1 5 6 7
76 * DE: ~~~|____________________________//__________________________
77 * HSYNC: ____|~|_____|~|_____|~|_____|~|_//__|~|_____|~|_____|~|_____
78 * VSYNC: ____________________|~~~~~~~~~~~//~~~~~~~~~~|_______________
81 * The Armada LCD Controller line and pixel numbers are, like X timings,
82 * referenced to the top left of the active frame.
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!
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
94 * vtotal = mode->crtc_vtotal;
95 * vbackporch = mode->crtc_vsync_start - mode->crtc_vdisplay;
96 * vhorizpos = mode->crtc_hsync_start;
98 * vfrontporch = mode->crtc_vtotal - mode->crtc_vsync_end;
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
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.)
110 armada_drm_crtc_update_regs(struct armada_crtc
*dcrtc
, struct armada_regs
*regs
)
112 while (regs
->offset
!= ~0) {
113 void __iomem
*reg
= dcrtc
->base
+ regs
->offset
;
118 val
&= readl_relaxed(reg
);
119 writel_relaxed(val
| regs
->val
, reg
);
124 #define dpms_blanked(dpms) ((dpms) != DRM_MODE_DPMS_ON)
126 static void armada_drm_crtc_update(struct armada_crtc
*dcrtc
)
130 dumb_ctrl
= dcrtc
->cfg_dumb_ctrl
;
132 if (!dpms_blanked(dcrtc
->dpms
))
133 dumb_ctrl
|= CFG_DUMB_ENA
;
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.
141 if (dpms_blanked(dcrtc
->dpms
) &&
142 (dumb_ctrl
& DUMB_MASK
) == DUMB24_RGB888_0
) {
143 dumb_ctrl
&= ~DUMB_MASK
;
144 dumb_ctrl
|= DUMB_BLANK
;
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.
152 * The non-inverted state of the sync signals is active high.
153 * Setting these bits makes the appropriate signal active low.
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
;
162 if (dcrtc
->dumb_ctrl
!= dumb_ctrl
) {
163 dcrtc
->dumb_ctrl
= dumb_ctrl
;
164 writel_relaxed(dumb_ctrl
, dcrtc
->base
+ LCD_SPU_DUMB_CTRL
);
168 void armada_drm_plane_calc_addrs(u32
*addrs
, struct drm_framebuffer
*fb
,
171 u32 addr
= drm_fb_obj(fb
)->dev_addr
;
172 int num_planes
= fb
->format
->num_planes
;
178 for (i
= 0; i
< num_planes
; i
++)
179 addrs
[i
] = addr
+ fb
->offsets
[i
] + y
* fb
->pitches
[i
] +
180 x
* fb
->format
->cpp
[i
];
185 static unsigned armada_drm_crtc_calc_fb(struct drm_framebuffer
*fb
,
186 int x
, int y
, struct armada_regs
*regs
, bool interlaced
)
188 unsigned pitch
= fb
->pitches
[0];
189 u32 addrs
[3], addr_odd
, addr_even
;
192 DRM_DEBUG_DRIVER("pitch %u x %d y %d bpp %d\n",
193 pitch
, x
, y
, fb
->format
->cpp
[0] * 8);
195 armada_drm_plane_calc_addrs(addrs
, fb
, x
, y
);
197 addr_odd
= addr_even
= addrs
[0];
204 /* write offset, base, and pitch */
205 armada_reg_queue_set(regs
, i
, addr_odd
, LCD_CFG_GRA_START_ADDR0
);
206 armada_reg_queue_set(regs
, i
, addr_even
, LCD_CFG_GRA_START_ADDR1
);
207 armada_reg_queue_mod(regs
, i
, pitch
, 0xffff, LCD_CFG_GRA_PITCH
);
212 static void armada_drm_plane_work_run(struct armada_crtc
*dcrtc
,
213 struct drm_plane
*plane
)
215 struct armada_plane
*dplane
= drm_to_armada_plane(plane
);
216 struct armada_plane_work
*work
= xchg(&dplane
->work
, NULL
);
218 /* Handle any pending frame work. */
220 work
->fn(dcrtc
, dplane
, work
);
221 drm_crtc_vblank_put(&dcrtc
->crtc
);
224 wake_up(&dplane
->frame_wait
);
227 int armada_drm_plane_work_queue(struct armada_crtc
*dcrtc
,
228 struct armada_plane
*plane
, struct armada_plane_work
*work
)
232 ret
= drm_crtc_vblank_get(&dcrtc
->crtc
);
234 DRM_ERROR("failed to acquire vblank counter\n");
238 ret
= cmpxchg(&plane
->work
, NULL
, work
) ? -EBUSY
: 0;
240 drm_crtc_vblank_put(&dcrtc
->crtc
);
245 int armada_drm_plane_work_wait(struct armada_plane
*plane
, long timeout
)
247 return wait_event_timeout(plane
->frame_wait
, !plane
->work
, timeout
);
250 struct armada_plane_work
*armada_drm_plane_work_cancel(
251 struct armada_crtc
*dcrtc
, struct armada_plane
*plane
)
253 struct armada_plane_work
*work
= xchg(&plane
->work
, NULL
);
256 drm_crtc_vblank_put(&dcrtc
->crtc
);
261 static int armada_drm_crtc_queue_frame_work(struct armada_crtc
*dcrtc
,
262 struct armada_frame_work
*work
)
264 struct armada_plane
*plane
= drm_to_armada_plane(dcrtc
->crtc
.primary
);
266 return armada_drm_plane_work_queue(dcrtc
, plane
, &work
->work
);
269 static void armada_drm_crtc_complete_frame_work(struct armada_crtc
*dcrtc
,
270 struct armada_plane
*plane
, struct armada_plane_work
*work
)
272 struct armada_frame_work
*fwork
= container_of(work
, struct armada_frame_work
, work
);
273 struct drm_device
*dev
= dcrtc
->crtc
.dev
;
276 spin_lock_irqsave(&dcrtc
->irq_lock
, flags
);
277 armada_drm_crtc_update_regs(dcrtc
, fwork
->regs
);
278 spin_unlock_irqrestore(&dcrtc
->irq_lock
, flags
);
281 spin_lock_irqsave(&dev
->event_lock
, flags
);
282 drm_crtc_send_vblank_event(&dcrtc
->crtc
, fwork
->event
);
283 spin_unlock_irqrestore(&dev
->event_lock
, flags
);
286 /* Finally, queue the process-half of the cleanup. */
287 __armada_drm_queue_unref_work(dcrtc
->crtc
.dev
, fwork
->old_fb
);
291 static void armada_drm_crtc_finish_fb(struct armada_crtc
*dcrtc
,
292 struct drm_framebuffer
*fb
, bool force
)
294 struct armada_frame_work
*work
;
300 /* Display is disabled, so just drop the old fb */
301 drm_framebuffer_unreference(fb
);
305 work
= kmalloc(sizeof(*work
), GFP_KERNEL
);
308 work
->work
.fn
= armada_drm_crtc_complete_frame_work
;
311 armada_reg_queue_end(work
->regs
, i
);
313 if (armada_drm_crtc_queue_frame_work(dcrtc
, work
) == 0)
320 * Oops - just drop the reference immediately and hope for
321 * the best. The worst that will happen is the buffer gets
322 * reused before it has finished being displayed.
324 drm_framebuffer_unreference(fb
);
327 static void armada_drm_vblank_off(struct armada_crtc
*dcrtc
)
330 * Tell the DRM core that vblank IRQs aren't going to happen for
331 * a while. This cleans up any pending vblank events for us.
333 drm_crtc_vblank_off(&dcrtc
->crtc
);
334 armada_drm_plane_work_run(dcrtc
, dcrtc
->crtc
.primary
);
337 void armada_drm_crtc_gamma_set(struct drm_crtc
*crtc
, u16 r
, u16 g
, u16 b
,
342 void armada_drm_crtc_gamma_get(struct drm_crtc
*crtc
, u16
*r
, u16
*g
, u16
*b
,
347 /* The mode_config.mutex will be held for this call */
348 static void armada_drm_crtc_dpms(struct drm_crtc
*crtc
, int dpms
)
350 struct armada_crtc
*dcrtc
= drm_to_armada_crtc(crtc
);
352 if (dpms_blanked(dcrtc
->dpms
) != dpms_blanked(dpms
)) {
353 if (dpms_blanked(dpms
))
354 armada_drm_vblank_off(dcrtc
);
355 else if (!IS_ERR(dcrtc
->clk
))
356 WARN_ON(clk_prepare_enable(dcrtc
->clk
));
358 armada_drm_crtc_update(dcrtc
);
359 if (!dpms_blanked(dpms
))
360 drm_crtc_vblank_on(&dcrtc
->crtc
);
361 else if (!IS_ERR(dcrtc
->clk
))
362 clk_disable_unprepare(dcrtc
->clk
);
363 } else if (dcrtc
->dpms
!= dpms
) {
369 * Prepare for a mode set. Turn off overlay to ensure that we don't end
370 * up with the overlay size being bigger than the active screen size.
371 * We rely upon X refreshing this state after the mode set has completed.
373 * The mode_config.mutex will be held for this call
375 static void armada_drm_crtc_prepare(struct drm_crtc
*crtc
)
377 struct armada_crtc
*dcrtc
= drm_to_armada_crtc(crtc
);
378 struct drm_plane
*plane
;
381 * If we have an overlay plane associated with this CRTC, disable
382 * it before the modeset to avoid its coordinates being outside
383 * the new mode parameters.
385 plane
= dcrtc
->plane
;
387 drm_plane_force_disable(plane
);
390 /* The mode_config.mutex will be held for this call */
391 static void armada_drm_crtc_commit(struct drm_crtc
*crtc
)
393 struct armada_crtc
*dcrtc
= drm_to_armada_crtc(crtc
);
395 if (dcrtc
->dpms
!= DRM_MODE_DPMS_ON
) {
396 dcrtc
->dpms
= DRM_MODE_DPMS_ON
;
397 armada_drm_crtc_update(dcrtc
);
401 /* The mode_config.mutex will be held for this call */
402 static bool armada_drm_crtc_mode_fixup(struct drm_crtc
*crtc
,
403 const struct drm_display_mode
*mode
, struct drm_display_mode
*adj
)
405 struct armada_crtc
*dcrtc
= drm_to_armada_crtc(crtc
);
408 /* We can't do interlaced modes if we don't have the SPU_ADV_REG */
409 if (!dcrtc
->variant
->has_spu_adv_reg
&&
410 adj
->flags
& DRM_MODE_FLAG_INTERLACE
)
413 /* Check whether the display mode is possible */
414 ret
= dcrtc
->variant
->compute_clock(dcrtc
, adj
, NULL
);
421 /* These are locked by dev->vbl_lock */
422 static void armada_drm_crtc_disable_irq(struct armada_crtc
*dcrtc
, u32 mask
)
424 if (dcrtc
->irq_ena
& mask
) {
425 dcrtc
->irq_ena
&= ~mask
;
426 writel(dcrtc
->irq_ena
, dcrtc
->base
+ LCD_SPU_IRQ_ENA
);
430 static void armada_drm_crtc_enable_irq(struct armada_crtc
*dcrtc
, u32 mask
)
432 if ((dcrtc
->irq_ena
& mask
) != mask
) {
433 dcrtc
->irq_ena
|= mask
;
434 writel(dcrtc
->irq_ena
, dcrtc
->base
+ LCD_SPU_IRQ_ENA
);
435 if (readl_relaxed(dcrtc
->base
+ LCD_SPU_IRQ_ISR
) & mask
)
436 writel(0, dcrtc
->base
+ LCD_SPU_IRQ_ISR
);
440 static void armada_drm_crtc_irq(struct armada_crtc
*dcrtc
, u32 stat
)
442 void __iomem
*base
= dcrtc
->base
;
443 struct drm_plane
*ovl_plane
;
445 if (stat
& DMA_FF_UNDERFLOW
)
446 DRM_ERROR("video underflow on crtc %u\n", dcrtc
->num
);
447 if (stat
& GRA_FF_UNDERFLOW
)
448 DRM_ERROR("graphics underflow on crtc %u\n", dcrtc
->num
);
450 if (stat
& VSYNC_IRQ
)
451 drm_crtc_handle_vblank(&dcrtc
->crtc
);
453 spin_lock(&dcrtc
->irq_lock
);
454 ovl_plane
= dcrtc
->plane
;
456 armada_drm_plane_work_run(dcrtc
, ovl_plane
);
458 if (stat
& GRA_FRAME_IRQ
&& dcrtc
->interlaced
) {
459 int i
= stat
& GRA_FRAME_IRQ0
? 0 : 1;
462 writel_relaxed(dcrtc
->v
[i
].spu_v_porch
, base
+ LCD_SPU_V_PORCH
);
463 writel_relaxed(dcrtc
->v
[i
].spu_v_h_total
,
464 base
+ LCD_SPUT_V_H_TOTAL
);
466 val
= readl_relaxed(base
+ LCD_SPU_ADV_REG
);
467 val
&= ~(ADV_VSYNC_L_OFF
| ADV_VSYNC_H_OFF
| ADV_VSYNCOFFEN
);
468 val
|= dcrtc
->v
[i
].spu_adv_reg
;
469 writel_relaxed(val
, base
+ LCD_SPU_ADV_REG
);
472 if (stat
& DUMB_FRAMEDONE
&& dcrtc
->cursor_update
) {
473 writel_relaxed(dcrtc
->cursor_hw_pos
,
474 base
+ LCD_SPU_HWC_OVSA_HPXL_VLN
);
475 writel_relaxed(dcrtc
->cursor_hw_sz
,
476 base
+ LCD_SPU_HWC_HPXL_VLN
);
477 armada_updatel(CFG_HWC_ENA
,
478 CFG_HWC_ENA
| CFG_HWC_1BITMOD
| CFG_HWC_1BITENA
,
479 base
+ LCD_SPU_DMA_CTRL0
);
480 dcrtc
->cursor_update
= false;
481 armada_drm_crtc_disable_irq(dcrtc
, DUMB_FRAMEDONE_ENA
);
484 spin_unlock(&dcrtc
->irq_lock
);
486 if (stat
& GRA_FRAME_IRQ
)
487 armada_drm_plane_work_run(dcrtc
, dcrtc
->crtc
.primary
);
490 static irqreturn_t
armada_drm_irq(int irq
, void *arg
)
492 struct armada_crtc
*dcrtc
= arg
;
493 u32 v
, stat
= readl_relaxed(dcrtc
->base
+ LCD_SPU_IRQ_ISR
);
496 * This is rediculous - rather than writing bits to clear, we
497 * have to set the actual status register value. This is racy.
499 writel_relaxed(0, dcrtc
->base
+ LCD_SPU_IRQ_ISR
);
501 trace_armada_drm_irq(&dcrtc
->crtc
, stat
);
503 /* Mask out those interrupts we haven't enabled */
504 v
= stat
& dcrtc
->irq_ena
;
506 if (v
& (VSYNC_IRQ
|GRA_FRAME_IRQ
|DUMB_FRAMEDONE
)) {
507 armada_drm_crtc_irq(dcrtc
, stat
);
513 static uint32_t armada_drm_crtc_calculate_csc(struct armada_crtc
*dcrtc
)
515 struct drm_display_mode
*adj
= &dcrtc
->crtc
.mode
;
518 if (dcrtc
->csc_yuv_mode
== CSC_YUV_CCIR709
)
519 val
|= CFG_CSC_YUV_CCIR709
;
520 if (dcrtc
->csc_rgb_mode
== CSC_RGB_STUDIO
)
521 val
|= CFG_CSC_RGB_STUDIO
;
524 * In auto mode, set the colorimetry, based upon the HDMI spec.
525 * 1280x720p, 1920x1080p and 1920x1080i use ITU709, others use
526 * ITU601. It may be more appropriate to set this depending on
527 * the source - but what if the graphic frame is YUV and the
528 * video frame is RGB?
530 if ((adj
->hdisplay
== 1280 && adj
->vdisplay
== 720 &&
531 !(adj
->flags
& DRM_MODE_FLAG_INTERLACE
)) ||
532 (adj
->hdisplay
== 1920 && adj
->vdisplay
== 1080)) {
533 if (dcrtc
->csc_yuv_mode
== CSC_AUTO
)
534 val
|= CFG_CSC_YUV_CCIR709
;
538 * We assume we're connected to a TV-like device, so the YUV->RGB
539 * conversion should produce a limited range. We should set this
540 * depending on the connectors attached to this CRTC, and what
541 * kind of device they report being connected.
543 if (dcrtc
->csc_rgb_mode
== CSC_AUTO
)
544 val
|= CFG_CSC_RGB_STUDIO
;
549 static void armada_drm_primary_set(struct drm_crtc
*crtc
,
550 struct drm_plane
*plane
, int x
, int y
)
552 struct armada_plane_state
*state
= &drm_to_armada_plane(plane
)->state
;
553 struct armada_crtc
*dcrtc
= drm_to_armada_crtc(crtc
);
554 struct armada_regs regs
[8];
555 bool interlaced
= dcrtc
->interlaced
;
559 i
= armada_drm_crtc_calc_fb(plane
->fb
, x
, y
, regs
, interlaced
);
561 armada_reg_queue_set(regs
, i
, state
->dst_yx
, LCD_SPU_GRA_OVSA_HPXL_VLN
);
562 armada_reg_queue_set(regs
, i
, state
->src_hw
, LCD_SPU_GRA_HPXL_VLN
);
563 armada_reg_queue_set(regs
, i
, state
->dst_hw
, LCD_SPU_GZM_HPXL_VLN
);
565 ctrl0
= state
->ctrl0
;
567 ctrl0
|= CFG_GRA_FTOGGLE
;
569 armada_reg_queue_mod(regs
, i
, ctrl0
, CFG_GRAFORMAT
|
570 CFG_GRA_MOD(CFG_SWAPRB
| CFG_SWAPUV
|
571 CFG_SWAPYU
| CFG_YUV2RGB
) |
572 CFG_PALETTE_ENA
| CFG_GRA_FTOGGLE
,
574 armada_reg_queue_end(regs
, i
);
575 armada_drm_crtc_update_regs(dcrtc
, regs
);
578 /* The mode_config.mutex will be held for this call */
579 static int armada_drm_crtc_mode_set(struct drm_crtc
*crtc
,
580 struct drm_display_mode
*mode
, struct drm_display_mode
*adj
,
581 int x
, int y
, struct drm_framebuffer
*old_fb
)
583 struct armada_crtc
*dcrtc
= drm_to_armada_crtc(crtc
);
584 struct armada_regs regs
[17];
585 uint32_t lm
, rm
, tm
, bm
, val
, sclk
;
590 drm_framebuffer_reference(crtc
->primary
->fb
);
592 interlaced
= !!(adj
->flags
& DRM_MODE_FLAG_INTERLACE
);
594 val
= CFG_GRA_ENA
| CFG_GRA_HSMOOTH
;
595 val
|= CFG_GRA_FMT(drm_fb_to_armada_fb(dcrtc
->crtc
.primary
->fb
)->fmt
);
596 val
|= CFG_GRA_MOD(drm_fb_to_armada_fb(dcrtc
->crtc
.primary
->fb
)->mod
);
598 if (drm_fb_to_armada_fb(dcrtc
->crtc
.primary
->fb
)->fmt
> CFG_420
)
599 val
|= CFG_PALETTE_ENA
;
601 drm_to_armada_plane(crtc
->primary
)->state
.ctrl0
= val
;
602 drm_to_armada_plane(crtc
->primary
)->state
.src_hw
=
603 drm_to_armada_plane(crtc
->primary
)->state
.dst_hw
=
604 adj
->crtc_vdisplay
<< 16 | adj
->crtc_hdisplay
;
605 drm_to_armada_plane(crtc
->primary
)->state
.dst_yx
= 0;
608 rm
= adj
->crtc_hsync_start
- adj
->crtc_hdisplay
;
609 lm
= adj
->crtc_htotal
- adj
->crtc_hsync_end
;
610 bm
= adj
->crtc_vsync_start
- adj
->crtc_vdisplay
;
611 tm
= adj
->crtc_vtotal
- adj
->crtc_vsync_end
;
613 DRM_DEBUG_DRIVER("H: %d %d %d %d lm %d rm %d\n",
615 adj
->crtc_hsync_start
,
617 adj
->crtc_htotal
, lm
, rm
);
618 DRM_DEBUG_DRIVER("V: %d %d %d %d tm %d bm %d\n",
620 adj
->crtc_vsync_start
,
622 adj
->crtc_vtotal
, tm
, bm
);
624 /* Wait for pending flips to complete */
625 armada_drm_plane_work_wait(drm_to_armada_plane(dcrtc
->crtc
.primary
),
626 MAX_SCHEDULE_TIMEOUT
);
628 drm_crtc_vblank_off(crtc
);
630 val
= dcrtc
->dumb_ctrl
& ~CFG_DUMB_ENA
;
631 if (val
!= dcrtc
->dumb_ctrl
) {
632 dcrtc
->dumb_ctrl
= val
;
633 writel_relaxed(val
, dcrtc
->base
+ LCD_SPU_DUMB_CTRL
);
637 * If we are blanked, we would have disabled the clock. Re-enable
638 * it so that compute_clock() does the right thing.
640 if (!IS_ERR(dcrtc
->clk
) && dpms_blanked(dcrtc
->dpms
))
641 WARN_ON(clk_prepare_enable(dcrtc
->clk
));
643 /* Now compute the divider for real */
644 dcrtc
->variant
->compute_clock(dcrtc
, adj
, &sclk
);
646 /* Ensure graphic fifo is enabled */
647 armada_reg_queue_mod(regs
, i
, 0, CFG_PDWN64x66
, LCD_SPU_SRAM_PARA1
);
648 armada_reg_queue_set(regs
, i
, sclk
, LCD_CFG_SCLK_DIV
);
650 if (interlaced
^ dcrtc
->interlaced
) {
651 if (adj
->flags
& DRM_MODE_FLAG_INTERLACE
)
652 drm_crtc_vblank_get(&dcrtc
->crtc
);
654 drm_crtc_vblank_put(&dcrtc
->crtc
);
655 dcrtc
->interlaced
= interlaced
;
658 spin_lock_irqsave(&dcrtc
->irq_lock
, flags
);
660 /* Even interlaced/progressive frame */
661 dcrtc
->v
[1].spu_v_h_total
= adj
->crtc_vtotal
<< 16 |
663 dcrtc
->v
[1].spu_v_porch
= tm
<< 16 | bm
;
664 val
= adj
->crtc_hsync_start
;
665 dcrtc
->v
[1].spu_adv_reg
= val
<< 20 | val
| ADV_VSYNCOFFEN
|
666 dcrtc
->variant
->spu_adv_reg
;
669 /* Odd interlaced frame */
670 dcrtc
->v
[0].spu_v_h_total
= dcrtc
->v
[1].spu_v_h_total
+
672 dcrtc
->v
[0].spu_v_porch
= dcrtc
->v
[1].spu_v_porch
+ 1;
673 val
= adj
->crtc_hsync_start
- adj
->crtc_htotal
/ 2;
674 dcrtc
->v
[0].spu_adv_reg
= val
<< 20 | val
| ADV_VSYNCOFFEN
|
675 dcrtc
->variant
->spu_adv_reg
;
677 dcrtc
->v
[0] = dcrtc
->v
[1];
680 val
= adj
->crtc_vdisplay
<< 16 | adj
->crtc_hdisplay
;
682 armada_reg_queue_set(regs
, i
, val
, LCD_SPU_V_H_ACTIVE
);
683 armada_reg_queue_set(regs
, i
, (lm
<< 16) | rm
, LCD_SPU_H_PORCH
);
684 armada_reg_queue_set(regs
, i
, dcrtc
->v
[0].spu_v_porch
, LCD_SPU_V_PORCH
);
685 armada_reg_queue_set(regs
, i
, dcrtc
->v
[0].spu_v_h_total
,
688 if (dcrtc
->variant
->has_spu_adv_reg
) {
689 armada_reg_queue_mod(regs
, i
, dcrtc
->v
[0].spu_adv_reg
,
690 ADV_VSYNC_L_OFF
| ADV_VSYNC_H_OFF
|
691 ADV_VSYNCOFFEN
, LCD_SPU_ADV_REG
);
694 val
= adj
->flags
& DRM_MODE_FLAG_NVSYNC
? CFG_VSYNC_INV
: 0;
695 armada_reg_queue_mod(regs
, i
, val
, CFG_VSYNC_INV
, LCD_SPU_DMA_CTRL1
);
697 val
= dcrtc
->spu_iopad_ctrl
| armada_drm_crtc_calculate_csc(dcrtc
);
698 armada_reg_queue_set(regs
, i
, val
, LCD_SPU_IOPAD_CONTROL
);
699 armada_reg_queue_end(regs
, i
);
701 armada_drm_crtc_update_regs(dcrtc
, regs
);
703 armada_drm_primary_set(crtc
, crtc
->primary
, x
, y
);
704 spin_unlock_irqrestore(&dcrtc
->irq_lock
, flags
);
706 armada_drm_crtc_update(dcrtc
);
708 drm_crtc_vblank_on(crtc
);
709 armada_drm_crtc_finish_fb(dcrtc
, old_fb
, dpms_blanked(dcrtc
->dpms
));
714 /* The mode_config.mutex will be held for this call */
715 static int armada_drm_crtc_mode_set_base(struct drm_crtc
*crtc
, int x
, int y
,
716 struct drm_framebuffer
*old_fb
)
718 struct armada_crtc
*dcrtc
= drm_to_armada_crtc(crtc
);
719 struct armada_regs regs
[4];
722 i
= armada_drm_crtc_calc_fb(crtc
->primary
->fb
, crtc
->x
, crtc
->y
, regs
,
724 armada_reg_queue_end(regs
, i
);
726 /* Wait for pending flips to complete */
727 armada_drm_plane_work_wait(drm_to_armada_plane(dcrtc
->crtc
.primary
),
728 MAX_SCHEDULE_TIMEOUT
);
730 /* Take a reference to the new fb as we're using it */
731 drm_framebuffer_reference(crtc
->primary
->fb
);
733 /* Update the base in the CRTC */
734 armada_drm_crtc_update_regs(dcrtc
, regs
);
736 /* Drop our previously held reference */
737 armada_drm_crtc_finish_fb(dcrtc
, old_fb
, dpms_blanked(dcrtc
->dpms
));
742 void armada_drm_crtc_plane_disable(struct armada_crtc
*dcrtc
,
743 struct drm_plane
*plane
)
745 u32 sram_para1
, dma_ctrl0_mask
;
748 * Drop our reference on any framebuffer attached to this plane.
749 * We don't need to NULL this out as drm_plane_force_disable(),
750 * and __setplane_internal() will do so for an overlay plane, and
751 * __drm_helper_disable_unused_functions() will do so for the
755 drm_framebuffer_unreference(plane
->fb
);
757 /* Power down the Y/U/V FIFOs */
758 sram_para1
= CFG_PDWN16x66
| CFG_PDWN32x66
;
760 /* Power down most RAMs and FIFOs if this is the primary plane */
761 if (plane
->type
== DRM_PLANE_TYPE_PRIMARY
) {
762 sram_para1
|= CFG_PDWN256x32
| CFG_PDWN256x24
| CFG_PDWN256x8
|
763 CFG_PDWN32x32
| CFG_PDWN64x66
;
764 dma_ctrl0_mask
= CFG_GRA_ENA
;
766 dma_ctrl0_mask
= CFG_DMA_ENA
;
769 spin_lock_irq(&dcrtc
->irq_lock
);
770 armada_updatel(0, dma_ctrl0_mask
, dcrtc
->base
+ LCD_SPU_DMA_CTRL0
);
771 spin_unlock_irq(&dcrtc
->irq_lock
);
773 armada_updatel(sram_para1
, 0, dcrtc
->base
+ LCD_SPU_SRAM_PARA1
);
776 /* The mode_config.mutex will be held for this call */
777 static void armada_drm_crtc_disable(struct drm_crtc
*crtc
)
779 struct armada_crtc
*dcrtc
= drm_to_armada_crtc(crtc
);
781 armada_drm_crtc_dpms(crtc
, DRM_MODE_DPMS_OFF
);
782 armada_drm_crtc_plane_disable(dcrtc
, crtc
->primary
);
785 static const struct drm_crtc_helper_funcs armada_crtc_helper_funcs
= {
786 .dpms
= armada_drm_crtc_dpms
,
787 .prepare
= armada_drm_crtc_prepare
,
788 .commit
= armada_drm_crtc_commit
,
789 .mode_fixup
= armada_drm_crtc_mode_fixup
,
790 .mode_set
= armada_drm_crtc_mode_set
,
791 .mode_set_base
= armada_drm_crtc_mode_set_base
,
792 .disable
= armada_drm_crtc_disable
,
795 static void armada_load_cursor_argb(void __iomem
*base
, uint32_t *pix
,
796 unsigned stride
, unsigned width
, unsigned height
)
801 addr
= SRAM_HWC32_RAM1
;
802 for (y
= 0; y
< height
; y
++) {
803 uint32_t *p
= &pix
[y
* stride
];
806 for (x
= 0; x
< width
; x
++, p
++) {
809 val
= (val
& 0xff00ff00) |
810 (val
& 0x000000ff) << 16 |
811 (val
& 0x00ff0000) >> 16;
814 base
+ LCD_SPU_SRAM_WRDAT
);
815 writel_relaxed(addr
| SRAM_WRITE
,
816 base
+ LCD_SPU_SRAM_CTRL
);
817 readl_relaxed(base
+ LCD_SPU_HWC_OVSA_HPXL_VLN
);
819 if ((addr
& 0x00ff) == 0)
821 if ((addr
& 0x30ff) == 0)
822 addr
= SRAM_HWC32_RAM2
;
827 static void armada_drm_crtc_cursor_tran(void __iomem
*base
)
831 for (addr
= 0; addr
< 256; addr
++) {
832 /* write the default value */
833 writel_relaxed(0x55555555, base
+ LCD_SPU_SRAM_WRDAT
);
834 writel_relaxed(addr
| SRAM_WRITE
| SRAM_HWC32_TRAN
,
835 base
+ LCD_SPU_SRAM_CTRL
);
839 static int armada_drm_crtc_cursor_update(struct armada_crtc
*dcrtc
, bool reload
)
841 uint32_t xoff
, xscr
, w
= dcrtc
->cursor_w
, s
;
842 uint32_t yoff
, yscr
, h
= dcrtc
->cursor_h
;
846 * Calculate the visible width and height of the cursor,
847 * screen position, and the position in the cursor bitmap.
849 if (dcrtc
->cursor_x
< 0) {
850 xoff
= -dcrtc
->cursor_x
;
853 } else if (dcrtc
->cursor_x
+ w
> dcrtc
->crtc
.mode
.hdisplay
) {
855 xscr
= dcrtc
->cursor_x
;
856 w
= max_t(int, dcrtc
->crtc
.mode
.hdisplay
- dcrtc
->cursor_x
, 0);
859 xscr
= dcrtc
->cursor_x
;
862 if (dcrtc
->cursor_y
< 0) {
863 yoff
= -dcrtc
->cursor_y
;
866 } else if (dcrtc
->cursor_y
+ h
> dcrtc
->crtc
.mode
.vdisplay
) {
868 yscr
= dcrtc
->cursor_y
;
869 h
= max_t(int, dcrtc
->crtc
.mode
.vdisplay
- dcrtc
->cursor_y
, 0);
872 yscr
= dcrtc
->cursor_y
;
875 /* On interlaced modes, the vertical cursor size must be halved */
877 if (dcrtc
->interlaced
) {
883 if (!dcrtc
->cursor_obj
|| !h
|| !w
) {
884 spin_lock_irq(&dcrtc
->irq_lock
);
885 armada_drm_crtc_disable_irq(dcrtc
, DUMB_FRAMEDONE_ENA
);
886 dcrtc
->cursor_update
= false;
887 armada_updatel(0, CFG_HWC_ENA
, dcrtc
->base
+ LCD_SPU_DMA_CTRL0
);
888 spin_unlock_irq(&dcrtc
->irq_lock
);
892 para1
= readl_relaxed(dcrtc
->base
+ LCD_SPU_SRAM_PARA1
);
893 armada_updatel(CFG_CSB_256x32
, CFG_CSB_256x32
| CFG_PDWN256x32
,
894 dcrtc
->base
+ LCD_SPU_SRAM_PARA1
);
897 * Initialize the transparency if the SRAM was powered down.
898 * We must also reload the cursor data as well.
900 if (!(para1
& CFG_CSB_256x32
)) {
901 armada_drm_crtc_cursor_tran(dcrtc
->base
);
905 if (dcrtc
->cursor_hw_sz
!= (h
<< 16 | w
)) {
906 spin_lock_irq(&dcrtc
->irq_lock
);
907 armada_drm_crtc_disable_irq(dcrtc
, DUMB_FRAMEDONE_ENA
);
908 dcrtc
->cursor_update
= false;
909 armada_updatel(0, CFG_HWC_ENA
, dcrtc
->base
+ LCD_SPU_DMA_CTRL0
);
910 spin_unlock_irq(&dcrtc
->irq_lock
);
914 struct armada_gem_object
*obj
= dcrtc
->cursor_obj
;
916 /* Set the top-left corner of the cursor image */
918 pix
+= yoff
* s
+ xoff
;
919 armada_load_cursor_argb(dcrtc
->base
, pix
, s
, w
, h
);
922 /* Reload the cursor position, size and enable in the IRQ handler */
923 spin_lock_irq(&dcrtc
->irq_lock
);
924 dcrtc
->cursor_hw_pos
= yscr
<< 16 | xscr
;
925 dcrtc
->cursor_hw_sz
= h
<< 16 | w
;
926 dcrtc
->cursor_update
= true;
927 armada_drm_crtc_enable_irq(dcrtc
, DUMB_FRAMEDONE_ENA
);
928 spin_unlock_irq(&dcrtc
->irq_lock
);
933 static void cursor_update(void *data
)
935 armada_drm_crtc_cursor_update(data
, true);
938 static int armada_drm_crtc_cursor_set(struct drm_crtc
*crtc
,
939 struct drm_file
*file
, uint32_t handle
, uint32_t w
, uint32_t h
)
941 struct armada_crtc
*dcrtc
= drm_to_armada_crtc(crtc
);
942 struct armada_gem_object
*obj
= NULL
;
945 /* If no cursor support, replicate drm's return value */
946 if (!dcrtc
->variant
->has_spu_adv_reg
)
949 if (handle
&& w
> 0 && h
> 0) {
950 /* maximum size is 64x32 or 32x64 */
951 if (w
> 64 || h
> 64 || (w
> 32 && h
> 32))
954 obj
= armada_gem_object_lookup(file
, handle
);
958 /* Must be a kernel-mapped object */
960 drm_gem_object_unreference_unlocked(&obj
->obj
);
964 if (obj
->obj
.size
< w
* h
* 4) {
965 DRM_ERROR("buffer is too small\n");
966 drm_gem_object_unreference_unlocked(&obj
->obj
);
971 if (dcrtc
->cursor_obj
) {
972 dcrtc
->cursor_obj
->update
= NULL
;
973 dcrtc
->cursor_obj
->update_data
= NULL
;
974 drm_gem_object_unreference_unlocked(&dcrtc
->cursor_obj
->obj
);
976 dcrtc
->cursor_obj
= obj
;
979 ret
= armada_drm_crtc_cursor_update(dcrtc
, true);
981 obj
->update_data
= dcrtc
;
982 obj
->update
= cursor_update
;
988 static int armada_drm_crtc_cursor_move(struct drm_crtc
*crtc
, int x
, int y
)
990 struct armada_crtc
*dcrtc
= drm_to_armada_crtc(crtc
);
993 /* If no cursor support, replicate drm's return value */
994 if (!dcrtc
->variant
->has_spu_adv_reg
)
999 ret
= armada_drm_crtc_cursor_update(dcrtc
, false);
1004 static void armada_drm_crtc_destroy(struct drm_crtc
*crtc
)
1006 struct armada_crtc
*dcrtc
= drm_to_armada_crtc(crtc
);
1007 struct armada_private
*priv
= crtc
->dev
->dev_private
;
1009 if (dcrtc
->cursor_obj
)
1010 drm_gem_object_unreference_unlocked(&dcrtc
->cursor_obj
->obj
);
1012 priv
->dcrtc
[dcrtc
->num
] = NULL
;
1013 drm_crtc_cleanup(&dcrtc
->crtc
);
1015 if (!IS_ERR(dcrtc
->clk
))
1016 clk_disable_unprepare(dcrtc
->clk
);
1018 writel_relaxed(0, dcrtc
->base
+ LCD_SPU_IRQ_ENA
);
1020 of_node_put(dcrtc
->crtc
.port
);
1026 * The mode_config lock is held here, to prevent races between this
1029 static int armada_drm_crtc_page_flip(struct drm_crtc
*crtc
,
1030 struct drm_framebuffer
*fb
, struct drm_pending_vblank_event
*event
, uint32_t page_flip_flags
,
1031 struct drm_modeset_acquire_ctx
*ctx
)
1033 struct armada_crtc
*dcrtc
= drm_to_armada_crtc(crtc
);
1034 struct armada_frame_work
*work
;
1038 /* We don't support changing the pixel format */
1039 if (fb
->format
!= crtc
->primary
->fb
->format
)
1042 work
= kmalloc(sizeof(*work
), GFP_KERNEL
);
1046 work
->work
.fn
= armada_drm_crtc_complete_frame_work
;
1047 work
->event
= event
;
1048 work
->old_fb
= dcrtc
->crtc
.primary
->fb
;
1050 i
= armada_drm_crtc_calc_fb(fb
, crtc
->x
, crtc
->y
, work
->regs
,
1052 armada_reg_queue_end(work
->regs
, i
);
1055 * Ensure that we hold a reference on the new framebuffer.
1056 * This has to match the behaviour in mode_set.
1058 drm_framebuffer_reference(fb
);
1060 ret
= armada_drm_crtc_queue_frame_work(dcrtc
, work
);
1062 /* Undo our reference above */
1063 drm_framebuffer_unreference(fb
);
1069 * Don't take a reference on the new framebuffer;
1070 * drm_mode_page_flip_ioctl() has already grabbed a reference and
1071 * will _not_ drop that reference on successful return from this
1072 * function. Simply mark this new framebuffer as the current one.
1074 dcrtc
->crtc
.primary
->fb
= fb
;
1077 * Finally, if the display is blanked, we won't receive an
1078 * interrupt, so complete it now.
1080 if (dpms_blanked(dcrtc
->dpms
))
1081 armada_drm_plane_work_run(dcrtc
, dcrtc
->crtc
.primary
);
1087 armada_drm_crtc_set_property(struct drm_crtc
*crtc
,
1088 struct drm_property
*property
, uint64_t val
)
1090 struct armada_private
*priv
= crtc
->dev
->dev_private
;
1091 struct armada_crtc
*dcrtc
= drm_to_armada_crtc(crtc
);
1092 bool update_csc
= false;
1094 if (property
== priv
->csc_yuv_prop
) {
1095 dcrtc
->csc_yuv_mode
= val
;
1097 } else if (property
== priv
->csc_rgb_prop
) {
1098 dcrtc
->csc_rgb_mode
= val
;
1105 val
= dcrtc
->spu_iopad_ctrl
|
1106 armada_drm_crtc_calculate_csc(dcrtc
);
1107 writel_relaxed(val
, dcrtc
->base
+ LCD_SPU_IOPAD_CONTROL
);
1113 /* These are called under the vbl_lock. */
1114 static int armada_drm_crtc_enable_vblank(struct drm_crtc
*crtc
)
1116 struct armada_crtc
*dcrtc
= drm_to_armada_crtc(crtc
);
1118 armada_drm_crtc_enable_irq(dcrtc
, VSYNC_IRQ_ENA
);
1122 static void armada_drm_crtc_disable_vblank(struct drm_crtc
*crtc
)
1124 struct armada_crtc
*dcrtc
= drm_to_armada_crtc(crtc
);
1126 armada_drm_crtc_disable_irq(dcrtc
, VSYNC_IRQ_ENA
);
1129 static const struct drm_crtc_funcs armada_crtc_funcs
= {
1130 .cursor_set
= armada_drm_crtc_cursor_set
,
1131 .cursor_move
= armada_drm_crtc_cursor_move
,
1132 .destroy
= armada_drm_crtc_destroy
,
1133 .set_config
= drm_crtc_helper_set_config
,
1134 .page_flip
= armada_drm_crtc_page_flip
,
1135 .set_property
= armada_drm_crtc_set_property
,
1136 .enable_vblank
= armada_drm_crtc_enable_vblank
,
1137 .disable_vblank
= armada_drm_crtc_disable_vblank
,
1140 static const struct drm_plane_funcs armada_primary_plane_funcs
= {
1141 .update_plane
= drm_primary_helper_update
,
1142 .disable_plane
= drm_primary_helper_disable
,
1143 .destroy
= drm_primary_helper_destroy
,
1146 int armada_drm_plane_init(struct armada_plane
*plane
)
1148 init_waitqueue_head(&plane
->frame_wait
);
1153 static struct drm_prop_enum_list armada_drm_csc_yuv_enum_list
[] = {
1154 { CSC_AUTO
, "Auto" },
1155 { CSC_YUV_CCIR601
, "CCIR601" },
1156 { CSC_YUV_CCIR709
, "CCIR709" },
1159 static struct drm_prop_enum_list armada_drm_csc_rgb_enum_list
[] = {
1160 { CSC_AUTO
, "Auto" },
1161 { CSC_RGB_COMPUTER
, "Computer system" },
1162 { CSC_RGB_STUDIO
, "Studio" },
1165 static int armada_drm_crtc_create_properties(struct drm_device
*dev
)
1167 struct armada_private
*priv
= dev
->dev_private
;
1169 if (priv
->csc_yuv_prop
)
1172 priv
->csc_yuv_prop
= drm_property_create_enum(dev
, 0,
1173 "CSC_YUV", armada_drm_csc_yuv_enum_list
,
1174 ARRAY_SIZE(armada_drm_csc_yuv_enum_list
));
1175 priv
->csc_rgb_prop
= drm_property_create_enum(dev
, 0,
1176 "CSC_RGB", armada_drm_csc_rgb_enum_list
,
1177 ARRAY_SIZE(armada_drm_csc_rgb_enum_list
));
1179 if (!priv
->csc_yuv_prop
|| !priv
->csc_rgb_prop
)
1185 static int armada_drm_crtc_create(struct drm_device
*drm
, struct device
*dev
,
1186 struct resource
*res
, int irq
, const struct armada_variant
*variant
,
1187 struct device_node
*port
)
1189 struct armada_private
*priv
= drm
->dev_private
;
1190 struct armada_crtc
*dcrtc
;
1191 struct armada_plane
*primary
;
1195 ret
= armada_drm_crtc_create_properties(drm
);
1199 base
= devm_ioremap_resource(dev
, res
);
1201 return PTR_ERR(base
);
1203 dcrtc
= kzalloc(sizeof(*dcrtc
), GFP_KERNEL
);
1205 DRM_ERROR("failed to allocate Armada crtc\n");
1209 if (dev
!= drm
->dev
)
1210 dev_set_drvdata(dev
, dcrtc
);
1212 dcrtc
->variant
= variant
;
1214 dcrtc
->num
= drm
->mode_config
.num_crtc
;
1215 dcrtc
->clk
= ERR_PTR(-EINVAL
);
1216 dcrtc
->csc_yuv_mode
= CSC_AUTO
;
1217 dcrtc
->csc_rgb_mode
= CSC_AUTO
;
1218 dcrtc
->cfg_dumb_ctrl
= DUMB24_RGB888_0
;
1219 dcrtc
->spu_iopad_ctrl
= CFG_VSCALE_LN_EN
| CFG_IOPAD_DUMB24
;
1220 spin_lock_init(&dcrtc
->irq_lock
);
1221 dcrtc
->irq_ena
= CLEAN_SPU_IRQ_ISR
;
1223 /* Initialize some registers which we don't otherwise set */
1224 writel_relaxed(0x00000001, dcrtc
->base
+ LCD_CFG_SCLK_DIV
);
1225 writel_relaxed(0x00000000, dcrtc
->base
+ LCD_SPU_BLANKCOLOR
);
1226 writel_relaxed(dcrtc
->spu_iopad_ctrl
,
1227 dcrtc
->base
+ LCD_SPU_IOPAD_CONTROL
);
1228 writel_relaxed(0x00000000, dcrtc
->base
+ LCD_SPU_SRAM_PARA0
);
1229 writel_relaxed(CFG_PDWN256x32
| CFG_PDWN256x24
| CFG_PDWN256x8
|
1230 CFG_PDWN32x32
| CFG_PDWN16x66
| CFG_PDWN32x66
|
1231 CFG_PDWN64x66
, dcrtc
->base
+ LCD_SPU_SRAM_PARA1
);
1232 writel_relaxed(0x2032ff81, dcrtc
->base
+ LCD_SPU_DMA_CTRL1
);
1233 writel_relaxed(dcrtc
->irq_ena
, dcrtc
->base
+ LCD_SPU_IRQ_ENA
);
1234 writel_relaxed(0, dcrtc
->base
+ LCD_SPU_IRQ_ISR
);
1236 ret
= devm_request_irq(dev
, irq
, armada_drm_irq
, 0, "armada_drm_crtc",
1243 if (dcrtc
->variant
->init
) {
1244 ret
= dcrtc
->variant
->init(dcrtc
, dev
);
1251 /* Ensure AXI pipeline is enabled */
1252 armada_updatel(CFG_ARBFAST_ENA
, 0, dcrtc
->base
+ LCD_SPU_DMA_CTRL0
);
1254 priv
->dcrtc
[dcrtc
->num
] = dcrtc
;
1256 dcrtc
->crtc
.port
= port
;
1258 primary
= kzalloc(sizeof(*primary
), GFP_KERNEL
);
1262 ret
= armada_drm_plane_init(primary
);
1268 ret
= drm_universal_plane_init(drm
, &primary
->base
, 0,
1269 &armada_primary_plane_funcs
,
1270 armada_primary_formats
,
1271 ARRAY_SIZE(armada_primary_formats
),
1272 DRM_PLANE_TYPE_PRIMARY
, NULL
);
1278 ret
= drm_crtc_init_with_planes(drm
, &dcrtc
->crtc
, &primary
->base
, NULL
,
1279 &armada_crtc_funcs
, NULL
);
1283 drm_crtc_helper_add(&dcrtc
->crtc
, &armada_crtc_helper_funcs
);
1285 drm_object_attach_property(&dcrtc
->crtc
.base
, priv
->csc_yuv_prop
,
1286 dcrtc
->csc_yuv_mode
);
1287 drm_object_attach_property(&dcrtc
->crtc
.base
, priv
->csc_rgb_prop
,
1288 dcrtc
->csc_rgb_mode
);
1290 return armada_overlay_plane_create(drm
, 1 << dcrtc
->num
);
1293 primary
->base
.funcs
->destroy(&primary
->base
);
1298 armada_lcd_bind(struct device
*dev
, struct device
*master
, void *data
)
1300 struct platform_device
*pdev
= to_platform_device(dev
);
1301 struct drm_device
*drm
= data
;
1302 struct resource
*res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1303 int irq
= platform_get_irq(pdev
, 0);
1304 const struct armada_variant
*variant
;
1305 struct device_node
*port
= NULL
;
1310 if (!dev
->of_node
) {
1311 const struct platform_device_id
*id
;
1313 id
= platform_get_device_id(pdev
);
1317 variant
= (const struct armada_variant
*)id
->driver_data
;
1319 const struct of_device_id
*match
;
1320 struct device_node
*np
, *parent
= dev
->of_node
;
1322 match
= of_match_device(dev
->driver
->of_match_table
, dev
);
1326 np
= of_get_child_by_name(parent
, "ports");
1329 port
= of_get_child_by_name(parent
, "port");
1332 dev_err(dev
, "no port node found in %s\n",
1337 variant
= match
->data
;
1340 return armada_drm_crtc_create(drm
, dev
, res
, irq
, variant
, port
);
1344 armada_lcd_unbind(struct device
*dev
, struct device
*master
, void *data
)
1346 struct armada_crtc
*dcrtc
= dev_get_drvdata(dev
);
1348 armada_drm_crtc_destroy(&dcrtc
->crtc
);
1351 static const struct component_ops armada_lcd_ops
= {
1352 .bind
= armada_lcd_bind
,
1353 .unbind
= armada_lcd_unbind
,
1356 static int armada_lcd_probe(struct platform_device
*pdev
)
1358 return component_add(&pdev
->dev
, &armada_lcd_ops
);
1361 static int armada_lcd_remove(struct platform_device
*pdev
)
1363 component_del(&pdev
->dev
, &armada_lcd_ops
);
1367 static struct of_device_id armada_lcd_of_match
[] = {
1369 .compatible
= "marvell,dove-lcd",
1370 .data
= &armada510_ops
,
1374 MODULE_DEVICE_TABLE(of
, armada_lcd_of_match
);
1376 static const struct platform_device_id armada_lcd_platform_ids
[] = {
1378 .name
= "armada-lcd",
1379 .driver_data
= (unsigned long)&armada510_ops
,
1381 .name
= "armada-510-lcd",
1382 .driver_data
= (unsigned long)&armada510_ops
,
1386 MODULE_DEVICE_TABLE(platform
, armada_lcd_platform_ids
);
1388 struct platform_driver armada_lcd_platform_driver
= {
1389 .probe
= armada_lcd_probe
,
1390 .remove
= armada_lcd_remove
,
1392 .name
= "armada-lcd",
1393 .owner
= THIS_MODULE
,
1394 .of_match_table
= armada_lcd_of_match
,
1396 .id_table
= armada_lcd_platform_ids
,