WIP FPC-III support
[linux/fpc-iii.git] / drivers / gpu / drm / armada / armada_crtc.c
blob3ebcf5a52c8bc42421e99a90638dc0a1cdc25a3b
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Copyright (C) 2012 Russell King
4 * Rewritten from the dovefb driver, and Armada510 manuals.
5 */
7 #include <linux/clk.h>
8 #include <linux/component.h>
9 #include <linux/module.h>
10 #include <linux/of_device.h>
11 #include <linux/platform_device.h>
13 #include <drm/drm_atomic.h>
14 #include <drm/drm_atomic_helper.h>
15 #include <drm/drm_plane_helper.h>
16 #include <drm/drm_probe_helper.h>
17 #include <drm/drm_vblank.h>
19 #include "armada_crtc.h"
20 #include "armada_drm.h"
21 #include "armada_fb.h"
22 #include "armada_gem.h"
23 #include "armada_hw.h"
24 #include "armada_plane.h"
25 #include "armada_trace.h"
28 * A note about interlacing. Let's consider HDMI 1920x1080i.
29 * The timing parameters we have from X are:
30 * Hact HsyA HsyI Htot Vact VsyA VsyI Vtot
31 * 1920 2448 2492 2640 1080 1084 1094 1125
32 * Which get translated to:
33 * Hact HsyA HsyI Htot Vact VsyA VsyI Vtot
34 * 1920 2448 2492 2640 540 542 547 562
36 * This is how it is defined by CEA-861-D - line and pixel numbers are
37 * referenced to the rising edge of VSYNC and HSYNC. Total clocks per
38 * line: 2640. The odd frame, the first active line is at line 21, and
39 * the even frame, the first active line is 584.
41 * LN: 560 561 562 563 567 568 569
42 * DE: ~~~|____________________________//__________________________
43 * HSYNC: ____|~|_____|~|_____|~|_____|~|_//__|~|_____|~|_____|~|_____
44 * VSYNC: _________________________|~~~~~~//~~~~~~~~~~~~~~~|__________
45 * 22 blanking lines. VSYNC at 1320 (referenced to the HSYNC rising edge).
47 * LN: 1123 1124 1125 1 5 6 7
48 * DE: ~~~|____________________________//__________________________
49 * HSYNC: ____|~|_____|~|_____|~|_____|~|_//__|~|_____|~|_____|~|_____
50 * VSYNC: ____________________|~~~~~~~~~~~//~~~~~~~~~~|_______________
51 * 23 blanking lines
53 * The Armada LCD Controller line and pixel numbers are, like X timings,
54 * referenced to the top left of the active frame.
56 * So, translating these to our LCD controller:
57 * Odd frame, 563 total lines, VSYNC at line 543-548, pixel 1128.
58 * Even frame, 562 total lines, VSYNC at line 542-547, pixel 2448.
59 * Note: Vsync front porch remains constant!
61 * if (odd_frame) {
62 * vtotal = mode->crtc_vtotal + 1;
63 * vbackporch = mode->crtc_vsync_start - mode->crtc_vdisplay + 1;
64 * vhorizpos = mode->crtc_hsync_start - mode->crtc_htotal / 2
65 * } else {
66 * vtotal = mode->crtc_vtotal;
67 * vbackporch = mode->crtc_vsync_start - mode->crtc_vdisplay;
68 * vhorizpos = mode->crtc_hsync_start;
69 * }
70 * vfrontporch = mode->crtc_vtotal - mode->crtc_vsync_end;
72 * So, we need to reprogram these registers on each vsync event:
73 * LCD_SPU_V_PORCH, LCD_SPU_ADV_REG, LCD_SPUT_V_H_TOTAL
75 * Note: we do not use the frame done interrupts because these appear
76 * to happen too early, and lead to jitter on the display (presumably
77 * they occur at the end of the last active line, before the vsync back
78 * porch, which we're reprogramming.)
81 void
82 armada_drm_crtc_update_regs(struct armada_crtc *dcrtc, struct armada_regs *regs)
84 while (regs->offset != ~0) {
85 void __iomem *reg = dcrtc->base + regs->offset;
86 uint32_t val;
88 val = regs->mask;
89 if (val != 0)
90 val &= readl_relaxed(reg);
91 writel_relaxed(val | regs->val, reg);
92 ++regs;
96 static void armada_drm_crtc_update(struct armada_crtc *dcrtc, bool enable)
98 uint32_t dumb_ctrl;
100 dumb_ctrl = dcrtc->cfg_dumb_ctrl;
102 if (enable)
103 dumb_ctrl |= CFG_DUMB_ENA;
106 * When the dumb interface isn't in DUMB24_RGB888_0 mode, it might
107 * be using SPI or GPIO. If we set this to DUMB_BLANK, we will
108 * force LCD_D[23:0] to output blank color, overriding the GPIO or
109 * SPI usage. So leave it as-is unless in DUMB24_RGB888_0 mode.
111 if (!enable && (dumb_ctrl & DUMB_MASK) == DUMB24_RGB888_0) {
112 dumb_ctrl &= ~DUMB_MASK;
113 dumb_ctrl |= DUMB_BLANK;
116 armada_updatel(dumb_ctrl,
117 ~(CFG_INV_CSYNC | CFG_INV_HSYNC | CFG_INV_VSYNC),
118 dcrtc->base + LCD_SPU_DUMB_CTRL);
121 static void armada_drm_crtc_queue_state_event(struct drm_crtc *crtc)
123 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
124 struct drm_pending_vblank_event *event;
126 /* If we have an event, we need vblank events enabled */
127 event = xchg(&crtc->state->event, NULL);
128 if (event) {
129 WARN_ON(drm_crtc_vblank_get(crtc) != 0);
130 dcrtc->event = event;
134 static void armada_drm_update_gamma(struct drm_crtc *crtc)
136 struct drm_property_blob *blob = crtc->state->gamma_lut;
137 void __iomem *base = drm_to_armada_crtc(crtc)->base;
138 int i;
140 if (blob) {
141 struct drm_color_lut *lut = blob->data;
143 armada_updatel(CFG_CSB_256x8, CFG_CSB_256x8 | CFG_PDWN256x8,
144 base + LCD_SPU_SRAM_PARA1);
146 for (i = 0; i < 256; i++) {
147 writel_relaxed(drm_color_lut_extract(lut[i].red, 8),
148 base + LCD_SPU_SRAM_WRDAT);
149 writel_relaxed(i | SRAM_WRITE | SRAM_GAMMA_YR,
150 base + LCD_SPU_SRAM_CTRL);
151 readl_relaxed(base + LCD_SPU_HWC_OVSA_HPXL_VLN);
152 writel_relaxed(drm_color_lut_extract(lut[i].green, 8),
153 base + LCD_SPU_SRAM_WRDAT);
154 writel_relaxed(i | SRAM_WRITE | SRAM_GAMMA_UG,
155 base + LCD_SPU_SRAM_CTRL);
156 readl_relaxed(base + LCD_SPU_HWC_OVSA_HPXL_VLN);
157 writel_relaxed(drm_color_lut_extract(lut[i].blue, 8),
158 base + LCD_SPU_SRAM_WRDAT);
159 writel_relaxed(i | SRAM_WRITE | SRAM_GAMMA_VB,
160 base + LCD_SPU_SRAM_CTRL);
161 readl_relaxed(base + LCD_SPU_HWC_OVSA_HPXL_VLN);
163 armada_updatel(CFG_GAMMA_ENA, CFG_GAMMA_ENA,
164 base + LCD_SPU_DMA_CTRL0);
165 } else {
166 armada_updatel(0, CFG_GAMMA_ENA, base + LCD_SPU_DMA_CTRL0);
167 armada_updatel(CFG_PDWN256x8, CFG_CSB_256x8 | CFG_PDWN256x8,
168 base + LCD_SPU_SRAM_PARA1);
172 static enum drm_mode_status armada_drm_crtc_mode_valid(struct drm_crtc *crtc,
173 const struct drm_display_mode *mode)
175 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
177 if (mode->vscan > 1)
178 return MODE_NO_VSCAN;
180 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
181 return MODE_NO_DBLESCAN;
183 if (mode->flags & DRM_MODE_FLAG_HSKEW)
184 return MODE_H_ILLEGAL;
186 /* We can't do interlaced modes if we don't have the SPU_ADV_REG */
187 if (!dcrtc->variant->has_spu_adv_reg &&
188 mode->flags & DRM_MODE_FLAG_INTERLACE)
189 return MODE_NO_INTERLACE;
191 if (mode->flags & (DRM_MODE_FLAG_BCAST | DRM_MODE_FLAG_PIXMUX |
192 DRM_MODE_FLAG_CLKDIV2))
193 return MODE_BAD;
195 return MODE_OK;
198 /* The mode_config.mutex will be held for this call */
199 static bool armada_drm_crtc_mode_fixup(struct drm_crtc *crtc,
200 const struct drm_display_mode *mode, struct drm_display_mode *adj)
202 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
203 int ret;
206 * Set CRTC modesetting parameters for the adjusted mode. This is
207 * applied after the connectors, bridges, and encoders have fixed up
208 * this mode, as described above drm_atomic_helper_check_modeset().
210 drm_mode_set_crtcinfo(adj, CRTC_INTERLACE_HALVE_V);
213 * Validate the adjusted mode in case an encoder/bridge has set
214 * something we don't support.
216 if (armada_drm_crtc_mode_valid(crtc, adj) != MODE_OK)
217 return false;
219 /* Check whether the display mode is possible */
220 ret = dcrtc->variant->compute_clock(dcrtc, adj, NULL);
221 if (ret)
222 return false;
224 return true;
227 /* These are locked by dev->vbl_lock */
228 static void armada_drm_crtc_disable_irq(struct armada_crtc *dcrtc, u32 mask)
230 if (dcrtc->irq_ena & mask) {
231 dcrtc->irq_ena &= ~mask;
232 writel(dcrtc->irq_ena, dcrtc->base + LCD_SPU_IRQ_ENA);
236 static void armada_drm_crtc_enable_irq(struct armada_crtc *dcrtc, u32 mask)
238 if ((dcrtc->irq_ena & mask) != mask) {
239 dcrtc->irq_ena |= mask;
240 writel(dcrtc->irq_ena, dcrtc->base + LCD_SPU_IRQ_ENA);
241 if (readl_relaxed(dcrtc->base + LCD_SPU_IRQ_ISR) & mask)
242 writel(0, dcrtc->base + LCD_SPU_IRQ_ISR);
246 static void armada_drm_crtc_irq(struct armada_crtc *dcrtc, u32 stat)
248 struct drm_pending_vblank_event *event;
249 void __iomem *base = dcrtc->base;
251 if (stat & DMA_FF_UNDERFLOW)
252 DRM_ERROR("video underflow on crtc %u\n", dcrtc->num);
253 if (stat & GRA_FF_UNDERFLOW)
254 DRM_ERROR("graphics underflow on crtc %u\n", dcrtc->num);
256 if (stat & VSYNC_IRQ)
257 drm_crtc_handle_vblank(&dcrtc->crtc);
259 spin_lock(&dcrtc->irq_lock);
260 if (stat & GRA_FRAME_IRQ && dcrtc->interlaced) {
261 int i = stat & GRA_FRAME_IRQ0 ? 0 : 1;
262 uint32_t val;
264 writel_relaxed(dcrtc->v[i].spu_v_porch, base + LCD_SPU_V_PORCH);
265 writel_relaxed(dcrtc->v[i].spu_v_h_total,
266 base + LCD_SPUT_V_H_TOTAL);
268 val = readl_relaxed(base + LCD_SPU_ADV_REG);
269 val &= ~(ADV_VSYNC_L_OFF | ADV_VSYNC_H_OFF | ADV_VSYNCOFFEN);
270 val |= dcrtc->v[i].spu_adv_reg;
271 writel_relaxed(val, base + LCD_SPU_ADV_REG);
274 if (stat & dcrtc->irq_ena & DUMB_FRAMEDONE) {
275 if (dcrtc->update_pending) {
276 armada_drm_crtc_update_regs(dcrtc, dcrtc->regs);
277 dcrtc->update_pending = false;
279 if (dcrtc->cursor_update) {
280 writel_relaxed(dcrtc->cursor_hw_pos,
281 base + LCD_SPU_HWC_OVSA_HPXL_VLN);
282 writel_relaxed(dcrtc->cursor_hw_sz,
283 base + LCD_SPU_HWC_HPXL_VLN);
284 armada_updatel(CFG_HWC_ENA,
285 CFG_HWC_ENA | CFG_HWC_1BITMOD |
286 CFG_HWC_1BITENA,
287 base + LCD_SPU_DMA_CTRL0);
288 dcrtc->cursor_update = false;
290 armada_drm_crtc_disable_irq(dcrtc, DUMB_FRAMEDONE_ENA);
292 spin_unlock(&dcrtc->irq_lock);
294 if (stat & VSYNC_IRQ && !dcrtc->update_pending) {
295 event = xchg(&dcrtc->event, NULL);
296 if (event) {
297 spin_lock(&dcrtc->crtc.dev->event_lock);
298 drm_crtc_send_vblank_event(&dcrtc->crtc, event);
299 spin_unlock(&dcrtc->crtc.dev->event_lock);
300 drm_crtc_vblank_put(&dcrtc->crtc);
305 static irqreturn_t armada_drm_irq(int irq, void *arg)
307 struct armada_crtc *dcrtc = arg;
308 u32 v, stat = readl_relaxed(dcrtc->base + LCD_SPU_IRQ_ISR);
311 * Reading the ISR appears to clear bits provided CLEAN_SPU_IRQ_ISR
312 * is set. Writing has some other effect to acknowledge the IRQ -
313 * without this, we only get a single IRQ.
315 writel_relaxed(0, dcrtc->base + LCD_SPU_IRQ_ISR);
317 trace_armada_drm_irq(&dcrtc->crtc, stat);
319 /* Mask out those interrupts we haven't enabled */
320 v = stat & dcrtc->irq_ena;
322 if (v & (VSYNC_IRQ|GRA_FRAME_IRQ|DUMB_FRAMEDONE)) {
323 armada_drm_crtc_irq(dcrtc, stat);
324 return IRQ_HANDLED;
326 return IRQ_NONE;
329 /* The mode_config.mutex will be held for this call */
330 static void armada_drm_crtc_mode_set_nofb(struct drm_crtc *crtc)
332 struct drm_display_mode *adj = &crtc->state->adjusted_mode;
333 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
334 struct armada_regs regs[17];
335 uint32_t lm, rm, tm, bm, val, sclk;
336 unsigned long flags;
337 unsigned i;
338 bool interlaced = !!(adj->flags & DRM_MODE_FLAG_INTERLACE);
340 i = 0;
341 rm = adj->crtc_hsync_start - adj->crtc_hdisplay;
342 lm = adj->crtc_htotal - adj->crtc_hsync_end;
343 bm = adj->crtc_vsync_start - adj->crtc_vdisplay;
344 tm = adj->crtc_vtotal - adj->crtc_vsync_end;
346 DRM_DEBUG_KMS("[CRTC:%d:%s] mode " DRM_MODE_FMT "\n",
347 crtc->base.id, crtc->name, DRM_MODE_ARG(adj));
348 DRM_DEBUG_KMS("lm %d rm %d tm %d bm %d\n", lm, rm, tm, bm);
350 /* Now compute the divider for real */
351 dcrtc->variant->compute_clock(dcrtc, adj, &sclk);
353 armada_reg_queue_set(regs, i, sclk, LCD_CFG_SCLK_DIV);
355 spin_lock_irqsave(&dcrtc->irq_lock, flags);
357 dcrtc->interlaced = interlaced;
358 /* Even interlaced/progressive frame */
359 dcrtc->v[1].spu_v_h_total = adj->crtc_vtotal << 16 |
360 adj->crtc_htotal;
361 dcrtc->v[1].spu_v_porch = tm << 16 | bm;
362 val = adj->crtc_hsync_start;
363 dcrtc->v[1].spu_adv_reg = val << 20 | val | ADV_VSYNCOFFEN;
365 if (interlaced) {
366 /* Odd interlaced frame */
367 val -= adj->crtc_htotal / 2;
368 dcrtc->v[0].spu_adv_reg = val << 20 | val | ADV_VSYNCOFFEN;
369 dcrtc->v[0].spu_v_h_total = dcrtc->v[1].spu_v_h_total +
370 (1 << 16);
371 dcrtc->v[0].spu_v_porch = dcrtc->v[1].spu_v_porch + 1;
372 } else {
373 dcrtc->v[0] = dcrtc->v[1];
376 val = adj->crtc_vdisplay << 16 | adj->crtc_hdisplay;
378 armada_reg_queue_set(regs, i, val, LCD_SPU_V_H_ACTIVE);
379 armada_reg_queue_set(regs, i, (lm << 16) | rm, LCD_SPU_H_PORCH);
380 armada_reg_queue_set(regs, i, dcrtc->v[0].spu_v_porch, LCD_SPU_V_PORCH);
381 armada_reg_queue_set(regs, i, dcrtc->v[0].spu_v_h_total,
382 LCD_SPUT_V_H_TOTAL);
384 if (dcrtc->variant->has_spu_adv_reg)
385 armada_reg_queue_mod(regs, i, dcrtc->v[0].spu_adv_reg,
386 ADV_VSYNC_L_OFF | ADV_VSYNC_H_OFF |
387 ADV_VSYNCOFFEN, LCD_SPU_ADV_REG);
389 val = adj->flags & DRM_MODE_FLAG_NVSYNC ? CFG_VSYNC_INV : 0;
390 armada_reg_queue_mod(regs, i, val, CFG_VSYNC_INV, LCD_SPU_DMA_CTRL1);
393 * The documentation doesn't indicate what the normal state of
394 * the sync signals are. Sebastian Hesselbart kindly probed
395 * these signals on his board to determine their state.
397 * The non-inverted state of the sync signals is active high.
398 * Setting these bits makes the appropriate signal active low.
400 val = 0;
401 if (adj->flags & DRM_MODE_FLAG_NCSYNC)
402 val |= CFG_INV_CSYNC;
403 if (adj->flags & DRM_MODE_FLAG_NHSYNC)
404 val |= CFG_INV_HSYNC;
405 if (adj->flags & DRM_MODE_FLAG_NVSYNC)
406 val |= CFG_INV_VSYNC;
407 armada_reg_queue_mod(regs, i, val, CFG_INV_CSYNC | CFG_INV_HSYNC |
408 CFG_INV_VSYNC, LCD_SPU_DUMB_CTRL);
409 armada_reg_queue_end(regs, i);
411 armada_drm_crtc_update_regs(dcrtc, regs);
412 spin_unlock_irqrestore(&dcrtc->irq_lock, flags);
415 static int armada_drm_crtc_atomic_check(struct drm_crtc *crtc,
416 struct drm_atomic_state *state)
418 struct drm_crtc_state *crtc_state = drm_atomic_get_new_crtc_state(state,
419 crtc);
420 DRM_DEBUG_KMS("[CRTC:%d:%s]\n", crtc->base.id, crtc->name);
422 if (crtc_state->gamma_lut && drm_color_lut_size(crtc_state->gamma_lut) != 256)
423 return -EINVAL;
425 if (crtc_state->color_mgmt_changed)
426 crtc_state->planes_changed = true;
428 return 0;
431 static void armada_drm_crtc_atomic_begin(struct drm_crtc *crtc,
432 struct drm_atomic_state *state)
434 struct drm_crtc_state *crtc_state = drm_atomic_get_new_crtc_state(state,
435 crtc);
436 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
438 DRM_DEBUG_KMS("[CRTC:%d:%s]\n", crtc->base.id, crtc->name);
440 if (crtc_state->color_mgmt_changed)
441 armada_drm_update_gamma(crtc);
443 dcrtc->regs_idx = 0;
444 dcrtc->regs = dcrtc->atomic_regs;
447 static void armada_drm_crtc_atomic_flush(struct drm_crtc *crtc,
448 struct drm_atomic_state *state)
450 struct drm_crtc_state *crtc_state = drm_atomic_get_new_crtc_state(state,
451 crtc);
452 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
454 DRM_DEBUG_KMS("[CRTC:%d:%s]\n", crtc->base.id, crtc->name);
456 armada_reg_queue_end(dcrtc->regs, dcrtc->regs_idx);
459 * If we aren't doing a full modeset, then we need to queue
460 * the event here.
462 if (!drm_atomic_crtc_needs_modeset(crtc_state)) {
463 dcrtc->update_pending = true;
464 armada_drm_crtc_queue_state_event(crtc);
465 spin_lock_irq(&dcrtc->irq_lock);
466 armada_drm_crtc_enable_irq(dcrtc, DUMB_FRAMEDONE_ENA);
467 spin_unlock_irq(&dcrtc->irq_lock);
468 } else {
469 spin_lock_irq(&dcrtc->irq_lock);
470 armada_drm_crtc_update_regs(dcrtc, dcrtc->regs);
471 spin_unlock_irq(&dcrtc->irq_lock);
475 static void armada_drm_crtc_atomic_disable(struct drm_crtc *crtc,
476 struct drm_atomic_state *state)
478 struct drm_crtc_state *old_state = drm_atomic_get_old_crtc_state(state,
479 crtc);
480 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
481 struct drm_pending_vblank_event *event;
483 DRM_DEBUG_KMS("[CRTC:%d:%s]\n", crtc->base.id, crtc->name);
485 if (old_state->adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
486 drm_crtc_vblank_put(crtc);
488 drm_crtc_vblank_off(crtc);
489 armada_drm_crtc_update(dcrtc, false);
491 if (!crtc->state->active) {
493 * This modeset will be leaving the CRTC disabled, so
494 * call the backend to disable upstream clocks etc.
496 if (dcrtc->variant->disable)
497 dcrtc->variant->disable(dcrtc);
500 * We will not receive any further vblank events.
501 * Send the flip_done event manually.
503 event = crtc->state->event;
504 crtc->state->event = NULL;
505 if (event) {
506 spin_lock_irq(&crtc->dev->event_lock);
507 drm_crtc_send_vblank_event(crtc, event);
508 spin_unlock_irq(&crtc->dev->event_lock);
513 static void armada_drm_crtc_atomic_enable(struct drm_crtc *crtc,
514 struct drm_atomic_state *state)
516 struct drm_crtc_state *old_state = drm_atomic_get_old_crtc_state(state,
517 crtc);
518 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
520 DRM_DEBUG_KMS("[CRTC:%d:%s]\n", crtc->base.id, crtc->name);
522 if (!old_state->active) {
524 * This modeset is enabling the CRTC after it having
525 * been disabled. Reverse the call to ->disable in
526 * the atomic_disable().
528 if (dcrtc->variant->enable)
529 dcrtc->variant->enable(dcrtc, &crtc->state->adjusted_mode);
531 armada_drm_crtc_update(dcrtc, true);
532 drm_crtc_vblank_on(crtc);
534 if (crtc->state->adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
535 WARN_ON(drm_crtc_vblank_get(crtc));
537 armada_drm_crtc_queue_state_event(crtc);
540 static const struct drm_crtc_helper_funcs armada_crtc_helper_funcs = {
541 .mode_valid = armada_drm_crtc_mode_valid,
542 .mode_fixup = armada_drm_crtc_mode_fixup,
543 .mode_set_nofb = armada_drm_crtc_mode_set_nofb,
544 .atomic_check = armada_drm_crtc_atomic_check,
545 .atomic_begin = armada_drm_crtc_atomic_begin,
546 .atomic_flush = armada_drm_crtc_atomic_flush,
547 .atomic_disable = armada_drm_crtc_atomic_disable,
548 .atomic_enable = armada_drm_crtc_atomic_enable,
551 static void armada_load_cursor_argb(void __iomem *base, uint32_t *pix,
552 unsigned stride, unsigned width, unsigned height)
554 uint32_t addr;
555 unsigned y;
557 addr = SRAM_HWC32_RAM1;
558 for (y = 0; y < height; y++) {
559 uint32_t *p = &pix[y * stride];
560 unsigned x;
562 for (x = 0; x < width; x++, p++) {
563 uint32_t val = *p;
566 * In "ARGB888" (HWC32) mode, writing to the SRAM
567 * requires these bits to contain:
568 * 31:24 = alpha 23:16 = blue 15:8 = green 7:0 = red
569 * So, it's actually ABGR8888. This is independent
570 * of the SWAPRB bits in DMA control register 0.
572 val = (val & 0xff00ff00) |
573 (val & 0x000000ff) << 16 |
574 (val & 0x00ff0000) >> 16;
576 writel_relaxed(val,
577 base + LCD_SPU_SRAM_WRDAT);
578 writel_relaxed(addr | SRAM_WRITE,
579 base + LCD_SPU_SRAM_CTRL);
580 readl_relaxed(base + LCD_SPU_HWC_OVSA_HPXL_VLN);
581 addr += 1;
582 if ((addr & 0x00ff) == 0)
583 addr += 0xf00;
584 if ((addr & 0x30ff) == 0)
585 addr = SRAM_HWC32_RAM2;
590 static void armada_drm_crtc_cursor_tran(void __iomem *base)
592 unsigned addr;
594 for (addr = 0; addr < 256; addr++) {
595 /* write the default value */
596 writel_relaxed(0x55555555, base + LCD_SPU_SRAM_WRDAT);
597 writel_relaxed(addr | SRAM_WRITE | SRAM_HWC32_TRAN,
598 base + LCD_SPU_SRAM_CTRL);
602 static int armada_drm_crtc_cursor_update(struct armada_crtc *dcrtc, bool reload)
604 uint32_t xoff, xscr, w = dcrtc->cursor_w, s;
605 uint32_t yoff, yscr, h = dcrtc->cursor_h;
606 uint32_t para1;
609 * Calculate the visible width and height of the cursor,
610 * screen position, and the position in the cursor bitmap.
612 if (dcrtc->cursor_x < 0) {
613 xoff = -dcrtc->cursor_x;
614 xscr = 0;
615 w -= min(xoff, w);
616 } else if (dcrtc->cursor_x + w > dcrtc->crtc.mode.hdisplay) {
617 xoff = 0;
618 xscr = dcrtc->cursor_x;
619 w = max_t(int, dcrtc->crtc.mode.hdisplay - dcrtc->cursor_x, 0);
620 } else {
621 xoff = 0;
622 xscr = dcrtc->cursor_x;
625 if (dcrtc->cursor_y < 0) {
626 yoff = -dcrtc->cursor_y;
627 yscr = 0;
628 h -= min(yoff, h);
629 } else if (dcrtc->cursor_y + h > dcrtc->crtc.mode.vdisplay) {
630 yoff = 0;
631 yscr = dcrtc->cursor_y;
632 h = max_t(int, dcrtc->crtc.mode.vdisplay - dcrtc->cursor_y, 0);
633 } else {
634 yoff = 0;
635 yscr = dcrtc->cursor_y;
638 /* On interlaced modes, the vertical cursor size must be halved */
639 s = dcrtc->cursor_w;
640 if (dcrtc->interlaced) {
641 s *= 2;
642 yscr /= 2;
643 h /= 2;
646 if (!dcrtc->cursor_obj || !h || !w) {
647 spin_lock_irq(&dcrtc->irq_lock);
648 dcrtc->cursor_update = false;
649 armada_updatel(0, CFG_HWC_ENA, dcrtc->base + LCD_SPU_DMA_CTRL0);
650 spin_unlock_irq(&dcrtc->irq_lock);
651 return 0;
654 spin_lock_irq(&dcrtc->irq_lock);
655 para1 = readl_relaxed(dcrtc->base + LCD_SPU_SRAM_PARA1);
656 armada_updatel(CFG_CSB_256x32, CFG_CSB_256x32 | CFG_PDWN256x32,
657 dcrtc->base + LCD_SPU_SRAM_PARA1);
658 spin_unlock_irq(&dcrtc->irq_lock);
661 * Initialize the transparency if the SRAM was powered down.
662 * We must also reload the cursor data as well.
664 if (!(para1 & CFG_CSB_256x32)) {
665 armada_drm_crtc_cursor_tran(dcrtc->base);
666 reload = true;
669 if (dcrtc->cursor_hw_sz != (h << 16 | w)) {
670 spin_lock_irq(&dcrtc->irq_lock);
671 dcrtc->cursor_update = false;
672 armada_updatel(0, CFG_HWC_ENA, dcrtc->base + LCD_SPU_DMA_CTRL0);
673 spin_unlock_irq(&dcrtc->irq_lock);
674 reload = true;
676 if (reload) {
677 struct armada_gem_object *obj = dcrtc->cursor_obj;
678 uint32_t *pix;
679 /* Set the top-left corner of the cursor image */
680 pix = obj->addr;
681 pix += yoff * s + xoff;
682 armada_load_cursor_argb(dcrtc->base, pix, s, w, h);
685 /* Reload the cursor position, size and enable in the IRQ handler */
686 spin_lock_irq(&dcrtc->irq_lock);
687 dcrtc->cursor_hw_pos = yscr << 16 | xscr;
688 dcrtc->cursor_hw_sz = h << 16 | w;
689 dcrtc->cursor_update = true;
690 armada_drm_crtc_enable_irq(dcrtc, DUMB_FRAMEDONE_ENA);
691 spin_unlock_irq(&dcrtc->irq_lock);
693 return 0;
696 static void cursor_update(void *data)
698 armada_drm_crtc_cursor_update(data, true);
701 static int armada_drm_crtc_cursor_set(struct drm_crtc *crtc,
702 struct drm_file *file, uint32_t handle, uint32_t w, uint32_t h)
704 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
705 struct armada_gem_object *obj = NULL;
706 int ret;
708 /* If no cursor support, replicate drm's return value */
709 if (!dcrtc->variant->has_spu_adv_reg)
710 return -ENXIO;
712 if (handle && w > 0 && h > 0) {
713 /* maximum size is 64x32 or 32x64 */
714 if (w > 64 || h > 64 || (w > 32 && h > 32))
715 return -ENOMEM;
717 obj = armada_gem_object_lookup(file, handle);
718 if (!obj)
719 return -ENOENT;
721 /* Must be a kernel-mapped object */
722 if (!obj->addr) {
723 drm_gem_object_put(&obj->obj);
724 return -EINVAL;
727 if (obj->obj.size < w * h * 4) {
728 DRM_ERROR("buffer is too small\n");
729 drm_gem_object_put(&obj->obj);
730 return -ENOMEM;
734 if (dcrtc->cursor_obj) {
735 dcrtc->cursor_obj->update = NULL;
736 dcrtc->cursor_obj->update_data = NULL;
737 drm_gem_object_put(&dcrtc->cursor_obj->obj);
739 dcrtc->cursor_obj = obj;
740 dcrtc->cursor_w = w;
741 dcrtc->cursor_h = h;
742 ret = armada_drm_crtc_cursor_update(dcrtc, true);
743 if (obj) {
744 obj->update_data = dcrtc;
745 obj->update = cursor_update;
748 return ret;
751 static int armada_drm_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
753 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
754 int ret;
756 /* If no cursor support, replicate drm's return value */
757 if (!dcrtc->variant->has_spu_adv_reg)
758 return -EFAULT;
760 dcrtc->cursor_x = x;
761 dcrtc->cursor_y = y;
762 ret = armada_drm_crtc_cursor_update(dcrtc, false);
764 return ret;
767 static void armada_drm_crtc_destroy(struct drm_crtc *crtc)
769 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
770 struct armada_private *priv = drm_to_armada_dev(crtc->dev);
772 if (dcrtc->cursor_obj)
773 drm_gem_object_put(&dcrtc->cursor_obj->obj);
775 priv->dcrtc[dcrtc->num] = NULL;
776 drm_crtc_cleanup(&dcrtc->crtc);
778 if (dcrtc->variant->disable)
779 dcrtc->variant->disable(dcrtc);
781 writel_relaxed(0, dcrtc->base + LCD_SPU_IRQ_ENA);
783 of_node_put(dcrtc->crtc.port);
785 kfree(dcrtc);
788 static int armada_drm_crtc_late_register(struct drm_crtc *crtc)
790 if (IS_ENABLED(CONFIG_DEBUG_FS))
791 armada_drm_crtc_debugfs_init(drm_to_armada_crtc(crtc));
793 return 0;
796 /* These are called under the vbl_lock. */
797 static int armada_drm_crtc_enable_vblank(struct drm_crtc *crtc)
799 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
800 unsigned long flags;
802 spin_lock_irqsave(&dcrtc->irq_lock, flags);
803 armada_drm_crtc_enable_irq(dcrtc, VSYNC_IRQ_ENA);
804 spin_unlock_irqrestore(&dcrtc->irq_lock, flags);
805 return 0;
808 static void armada_drm_crtc_disable_vblank(struct drm_crtc *crtc)
810 struct armada_crtc *dcrtc = drm_to_armada_crtc(crtc);
811 unsigned long flags;
813 spin_lock_irqsave(&dcrtc->irq_lock, flags);
814 armada_drm_crtc_disable_irq(dcrtc, VSYNC_IRQ_ENA);
815 spin_unlock_irqrestore(&dcrtc->irq_lock, flags);
818 static const struct drm_crtc_funcs armada_crtc_funcs = {
819 .reset = drm_atomic_helper_crtc_reset,
820 .cursor_set = armada_drm_crtc_cursor_set,
821 .cursor_move = armada_drm_crtc_cursor_move,
822 .destroy = armada_drm_crtc_destroy,
823 .gamma_set = drm_atomic_helper_legacy_gamma_set,
824 .set_config = drm_atomic_helper_set_config,
825 .page_flip = drm_atomic_helper_page_flip,
826 .atomic_duplicate_state = drm_atomic_helper_crtc_duplicate_state,
827 .atomic_destroy_state = drm_atomic_helper_crtc_destroy_state,
828 .late_register = armada_drm_crtc_late_register,
829 .enable_vblank = armada_drm_crtc_enable_vblank,
830 .disable_vblank = armada_drm_crtc_disable_vblank,
833 int armada_crtc_select_clock(struct armada_crtc *dcrtc,
834 struct armada_clk_result *res,
835 const struct armada_clocking_params *params,
836 struct clk *clks[], size_t num_clks,
837 unsigned long desired_khz)
839 unsigned long desired_hz = desired_khz * 1000;
840 unsigned long desired_clk_hz; // requested clk input
841 unsigned long real_clk_hz; // actual clk input
842 unsigned long real_hz; // actual pixel clk
843 unsigned long permillage;
844 struct clk *clk;
845 u32 div;
846 int i;
848 DRM_DEBUG_KMS("[CRTC:%u:%s] desired clock=%luHz\n",
849 dcrtc->crtc.base.id, dcrtc->crtc.name, desired_hz);
851 for (i = 0; i < num_clks; i++) {
852 clk = clks[i];
853 if (!clk)
854 continue;
856 if (params->settable & BIT(i)) {
857 real_clk_hz = clk_round_rate(clk, desired_hz);
858 desired_clk_hz = desired_hz;
859 } else {
860 real_clk_hz = clk_get_rate(clk);
861 desired_clk_hz = real_clk_hz;
864 /* If the clock can do exactly the desired rate, we're done */
865 if (real_clk_hz == desired_hz) {
866 real_hz = real_clk_hz;
867 div = 1;
868 goto found;
871 /* Calculate the divider - if invalid, we can't do this rate */
872 div = DIV_ROUND_CLOSEST(real_clk_hz, desired_hz);
873 if (div == 0 || div > params->div_max)
874 continue;
876 /* Calculate the actual rate - HDMI requires -0.6%..+0.5% */
877 real_hz = DIV_ROUND_CLOSEST(real_clk_hz, div);
879 DRM_DEBUG_KMS("[CRTC:%u:%s] clk=%u %luHz div=%u real=%luHz\n",
880 dcrtc->crtc.base.id, dcrtc->crtc.name,
881 i, real_clk_hz, div, real_hz);
883 /* Avoid repeated division */
884 if (real_hz < desired_hz) {
885 permillage = real_hz / desired_khz;
886 if (permillage < params->permillage_min)
887 continue;
888 } else {
889 permillage = DIV_ROUND_UP(real_hz, desired_khz);
890 if (permillage > params->permillage_max)
891 continue;
893 goto found;
896 return -ERANGE;
898 found:
899 DRM_DEBUG_KMS("[CRTC:%u:%s] selected clk=%u %luHz div=%u real=%luHz\n",
900 dcrtc->crtc.base.id, dcrtc->crtc.name,
901 i, real_clk_hz, div, real_hz);
903 res->desired_clk_hz = desired_clk_hz;
904 res->clk = clk;
905 res->div = div;
907 return i;
910 static int armada_drm_crtc_create(struct drm_device *drm, struct device *dev,
911 struct resource *res, int irq, const struct armada_variant *variant,
912 struct device_node *port)
914 struct armada_private *priv = drm_to_armada_dev(drm);
915 struct armada_crtc *dcrtc;
916 struct drm_plane *primary;
917 void __iomem *base;
918 int ret;
920 base = devm_ioremap_resource(dev, res);
921 if (IS_ERR(base))
922 return PTR_ERR(base);
924 dcrtc = kzalloc(sizeof(*dcrtc), GFP_KERNEL);
925 if (!dcrtc) {
926 DRM_ERROR("failed to allocate Armada crtc\n");
927 return -ENOMEM;
930 if (dev != drm->dev)
931 dev_set_drvdata(dev, dcrtc);
933 dcrtc->variant = variant;
934 dcrtc->base = base;
935 dcrtc->num = drm->mode_config.num_crtc;
936 dcrtc->cfg_dumb_ctrl = DUMB24_RGB888_0;
937 dcrtc->spu_iopad_ctrl = CFG_VSCALE_LN_EN | CFG_IOPAD_DUMB24;
938 spin_lock_init(&dcrtc->irq_lock);
939 dcrtc->irq_ena = CLEAN_SPU_IRQ_ISR;
941 /* Initialize some registers which we don't otherwise set */
942 writel_relaxed(0x00000001, dcrtc->base + LCD_CFG_SCLK_DIV);
943 writel_relaxed(0x00000000, dcrtc->base + LCD_SPU_BLANKCOLOR);
944 writel_relaxed(dcrtc->spu_iopad_ctrl,
945 dcrtc->base + LCD_SPU_IOPAD_CONTROL);
946 writel_relaxed(0x00000000, dcrtc->base + LCD_SPU_SRAM_PARA0);
947 writel_relaxed(CFG_PDWN256x32 | CFG_PDWN256x24 | CFG_PDWN256x8 |
948 CFG_PDWN32x32 | CFG_PDWN16x66 | CFG_PDWN32x66 |
949 CFG_PDWN64x66, dcrtc->base + LCD_SPU_SRAM_PARA1);
950 writel_relaxed(0x2032ff81, dcrtc->base + LCD_SPU_DMA_CTRL1);
951 writel_relaxed(dcrtc->irq_ena, dcrtc->base + LCD_SPU_IRQ_ENA);
952 readl_relaxed(dcrtc->base + LCD_SPU_IRQ_ISR);
953 writel_relaxed(0, dcrtc->base + LCD_SPU_IRQ_ISR);
955 ret = devm_request_irq(dev, irq, armada_drm_irq, 0, "armada_drm_crtc",
956 dcrtc);
957 if (ret < 0)
958 goto err_crtc;
960 if (dcrtc->variant->init) {
961 ret = dcrtc->variant->init(dcrtc, dev);
962 if (ret)
963 goto err_crtc;
966 /* Ensure AXI pipeline is enabled */
967 armada_updatel(CFG_ARBFAST_ENA, 0, dcrtc->base + LCD_SPU_DMA_CTRL0);
969 priv->dcrtc[dcrtc->num] = dcrtc;
971 dcrtc->crtc.port = port;
973 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
974 if (!primary) {
975 ret = -ENOMEM;
976 goto err_crtc;
979 ret = armada_drm_primary_plane_init(drm, primary);
980 if (ret) {
981 kfree(primary);
982 goto err_crtc;
985 ret = drm_crtc_init_with_planes(drm, &dcrtc->crtc, primary, NULL,
986 &armada_crtc_funcs, NULL);
987 if (ret)
988 goto err_crtc_init;
990 drm_crtc_helper_add(&dcrtc->crtc, &armada_crtc_helper_funcs);
992 ret = drm_mode_crtc_set_gamma_size(&dcrtc->crtc, 256);
993 if (ret)
994 return ret;
996 drm_crtc_enable_color_mgmt(&dcrtc->crtc, 0, false, 256);
998 return armada_overlay_plane_create(drm, 1 << dcrtc->num);
1000 err_crtc_init:
1001 primary->funcs->destroy(primary);
1002 err_crtc:
1003 kfree(dcrtc);
1005 return ret;
1008 static int
1009 armada_lcd_bind(struct device *dev, struct device *master, void *data)
1011 struct platform_device *pdev = to_platform_device(dev);
1012 struct drm_device *drm = data;
1013 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1014 int irq = platform_get_irq(pdev, 0);
1015 const struct armada_variant *variant;
1016 struct device_node *port = NULL;
1018 if (irq < 0)
1019 return irq;
1021 if (!dev->of_node) {
1022 const struct platform_device_id *id;
1024 id = platform_get_device_id(pdev);
1025 if (!id)
1026 return -ENXIO;
1028 variant = (const struct armada_variant *)id->driver_data;
1029 } else {
1030 const struct of_device_id *match;
1031 struct device_node *np, *parent = dev->of_node;
1033 match = of_match_device(dev->driver->of_match_table, dev);
1034 if (!match)
1035 return -ENXIO;
1037 np = of_get_child_by_name(parent, "ports");
1038 if (np)
1039 parent = np;
1040 port = of_get_child_by_name(parent, "port");
1041 of_node_put(np);
1042 if (!port) {
1043 dev_err(dev, "no port node found in %pOF\n", parent);
1044 return -ENXIO;
1047 variant = match->data;
1050 return armada_drm_crtc_create(drm, dev, res, irq, variant, port);
1053 static void
1054 armada_lcd_unbind(struct device *dev, struct device *master, void *data)
1056 struct armada_crtc *dcrtc = dev_get_drvdata(dev);
1058 armada_drm_crtc_destroy(&dcrtc->crtc);
1061 static const struct component_ops armada_lcd_ops = {
1062 .bind = armada_lcd_bind,
1063 .unbind = armada_lcd_unbind,
1066 static int armada_lcd_probe(struct platform_device *pdev)
1068 return component_add(&pdev->dev, &armada_lcd_ops);
1071 static int armada_lcd_remove(struct platform_device *pdev)
1073 component_del(&pdev->dev, &armada_lcd_ops);
1074 return 0;
1077 static const struct of_device_id armada_lcd_of_match[] = {
1079 .compatible = "marvell,dove-lcd",
1080 .data = &armada510_ops,
1084 MODULE_DEVICE_TABLE(of, armada_lcd_of_match);
1086 static const struct platform_device_id armada_lcd_platform_ids[] = {
1088 .name = "armada-lcd",
1089 .driver_data = (unsigned long)&armada510_ops,
1090 }, {
1091 .name = "armada-510-lcd",
1092 .driver_data = (unsigned long)&armada510_ops,
1094 { },
1096 MODULE_DEVICE_TABLE(platform, armada_lcd_platform_ids);
1098 struct platform_driver armada_lcd_platform_driver = {
1099 .probe = armada_lcd_probe,
1100 .remove = armada_lcd_remove,
1101 .driver = {
1102 .name = "armada-lcd",
1103 .owner = THIS_MODULE,
1104 .of_match_table = armada_lcd_of_match,
1106 .id_table = armada_lcd_platform_ids,