Linux Audio

Check our new training course

Linux debugging, profiling, tracing and performance analysis training

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