intel_overlay.c 39.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 * Copyright © 2009
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 *
 * Authors:
 *    Daniel Vetter <daniel@ffwll.ch>
 *
 * Derived from Xorg ddx, xf86-video-intel, src/i830_video.c
 */
28 29
#include <drm/drmP.h>
#include <drm/i915_drm.h>
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
#include "i915_drv.h"
#include "i915_reg.h"
#include "intel_drv.h"

/* Limits for overlay size. According to intel doc, the real limits are:
 * Y width: 4095, UV width (planar): 2047, Y height: 2047,
 * UV width (planar): * 1023. But the xorg thinks 2048 for height and width. Use
 * the mininum of both.  */
#define IMAGE_MAX_WIDTH		2048
#define IMAGE_MAX_HEIGHT	2046 /* 2 * 1023 */
/* on 830 and 845 these large limits result in the card hanging */
#define IMAGE_MAX_WIDTH_LEGACY	1024
#define IMAGE_MAX_HEIGHT_LEGACY	1088

/* overlay register definitions */
/* OCMD register */
#define OCMD_TILED_SURFACE	(0x1<<19)
#define OCMD_MIRROR_MASK	(0x3<<17)
#define OCMD_MIRROR_MODE	(0x3<<17)
#define OCMD_MIRROR_HORIZONTAL	(0x1<<17)
#define OCMD_MIRROR_VERTICAL	(0x2<<17)
#define OCMD_MIRROR_BOTH	(0x3<<17)
#define OCMD_BYTEORDER_MASK	(0x3<<14) /* zero for YUYV or FOURCC YUY2 */
#define OCMD_UV_SWAP		(0x1<<14) /* YVYU */
#define OCMD_Y_SWAP		(0x2<<14) /* UYVY or FOURCC UYVY */
#define OCMD_Y_AND_UV_SWAP	(0x3<<14) /* VYUY */
#define OCMD_SOURCE_FORMAT_MASK (0xf<<10)
#define OCMD_RGB_888		(0x1<<10) /* not in i965 Intel docs */
#define OCMD_RGB_555		(0x2<<10) /* not in i965 Intel docs */
#define OCMD_RGB_565		(0x3<<10) /* not in i965 Intel docs */
#define OCMD_YUV_422_PACKED	(0x8<<10)
#define OCMD_YUV_411_PACKED	(0x9<<10) /* not in i965 Intel docs */
#define OCMD_YUV_420_PLANAR	(0xc<<10)
#define OCMD_YUV_422_PLANAR	(0xd<<10)
#define OCMD_YUV_410_PLANAR	(0xe<<10) /* also 411 */
#define OCMD_TVSYNCFLIP_PARITY	(0x1<<9)
#define OCMD_TVSYNCFLIP_ENABLE	(0x1<<7)
67
#define OCMD_BUF_TYPE_MASK	(0x1<<5)
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
#define OCMD_BUF_TYPE_FRAME	(0x0<<5)
#define OCMD_BUF_TYPE_FIELD	(0x1<<5)
#define OCMD_TEST_MODE		(0x1<<4)
#define OCMD_BUFFER_SELECT	(0x3<<2)
#define OCMD_BUFFER0		(0x0<<2)
#define OCMD_BUFFER1		(0x1<<2)
#define OCMD_FIELD_SELECT	(0x1<<2)
#define OCMD_FIELD0		(0x0<<1)
#define OCMD_FIELD1		(0x1<<1)
#define OCMD_ENABLE		(0x1<<0)

/* OCONFIG register */
#define OCONF_PIPE_MASK		(0x1<<18)
#define OCONF_PIPE_A		(0x0<<18)
#define OCONF_PIPE_B		(0x1<<18)
#define OCONF_GAMMA2_ENABLE	(0x1<<16)
#define OCONF_CSC_MODE_BT601	(0x0<<5)
#define OCONF_CSC_MODE_BT709	(0x1<<5)
#define OCONF_CSC_BYPASS	(0x1<<4)
#define OCONF_CC_OUT_8BIT	(0x1<<3)
#define OCONF_TEST_MODE		(0x1<<2)
#define OCONF_THREE_LINE_BUFFER	(0x1<<0)
#define OCONF_TWO_LINE_BUFFER	(0x0<<0)

/* DCLRKM (dst-key) register */
#define DST_KEY_ENABLE		(0x1<<31)
#define CLK_RGB24_MASK		0x0
#define CLK_RGB16_MASK		0x070307
#define CLK_RGB15_MASK		0x070707
#define CLK_RGB8I_MASK		0xffffff

#define RGB16_TO_COLORKEY(c) \
	(((c & 0xF800) << 8) | ((c & 0x07E0) << 5) | ((c & 0x001F) << 3))
#define RGB15_TO_COLORKEY(c) \
	(((c & 0x7c00) << 9) | ((c & 0x03E0) << 6) | ((c & 0x001F) << 3))

/* overlay flip addr flag */
#define OFC_UPDATE		0x1

/* polyphase filter coefficients */
#define N_HORIZ_Y_TAPS          5
#define N_VERT_Y_TAPS           3
#define N_HORIZ_UV_TAPS         3
#define N_VERT_UV_TAPS          3
#define N_PHASES                17
#define MAX_TAPS                5

/* memory bufferd overlay registers */
struct overlay_registers {
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
	u32 OBUF_0Y;
	u32 OBUF_1Y;
	u32 OBUF_0U;
	u32 OBUF_0V;
	u32 OBUF_1U;
	u32 OBUF_1V;
	u32 OSTRIDE;
	u32 YRGB_VPH;
	u32 UV_VPH;
	u32 HORZ_PH;
	u32 INIT_PHS;
	u32 DWINPOS;
	u32 DWINSZ;
	u32 SWIDTH;
	u32 SWIDTHSW;
	u32 SHEIGHT;
	u32 YRGBSCALE;
	u32 UVSCALE;
	u32 OCLRC0;
	u32 OCLRC1;
	u32 DCLRKV;
	u32 DCLRKM;
	u32 SCLRKVH;
	u32 SCLRKVL;
	u32 SCLRKEN;
	u32 OCONFIG;
	u32 OCMD;
	u32 RESERVED1; /* 0x6C */
	u32 OSTART_0Y;
	u32 OSTART_1Y;
	u32 OSTART_0U;
	u32 OSTART_0V;
	u32 OSTART_1U;
	u32 OSTART_1V;
	u32 OTILEOFF_0Y;
	u32 OTILEOFF_1Y;
	u32 OTILEOFF_0U;
	u32 OTILEOFF_0V;
	u32 OTILEOFF_1U;
	u32 OTILEOFF_1V;
	u32 FASTHSCALE; /* 0xA0 */
	u32 UVSCALEV; /* 0xA4 */
	u32 RESERVEDC[(0x200 - 0xA8) / 4]; /* 0xA8 - 0x1FC */
	u16 Y_VCOEFS[N_VERT_Y_TAPS * N_PHASES]; /* 0x200 */
	u16 RESERVEDD[0x100 / 2 - N_VERT_Y_TAPS * N_PHASES];
	u16 Y_HCOEFS[N_HORIZ_Y_TAPS * N_PHASES]; /* 0x300 */
	u16 RESERVEDE[0x200 / 2 - N_HORIZ_Y_TAPS * N_PHASES];
	u16 UV_VCOEFS[N_VERT_UV_TAPS * N_PHASES]; /* 0x500 */
	u16 RESERVEDF[0x100 / 2 - N_VERT_UV_TAPS * N_PHASES];
	u16 UV_HCOEFS[N_HORIZ_UV_TAPS * N_PHASES]; /* 0x600 */
	u16 RESERVEDG[0x100 / 2 - N_HORIZ_UV_TAPS * N_PHASES];
168 169
};

170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
struct intel_overlay {
	struct drm_device *dev;
	struct intel_crtc *crtc;
	struct drm_i915_gem_object *vid_bo;
	struct drm_i915_gem_object *old_vid_bo;
	int active;
	int pfit_active;
	u32 pfit_vscale_ratio; /* shifted-point number, (1<<12) == 1.0 */
	u32 color_key;
	u32 brightness, contrast, saturation;
	u32 old_xscale, old_yscale;
	/* register access */
	u32 flip_addr;
	struct drm_i915_gem_object *reg_bo;
	/* flip handling */
	uint32_t last_flip_req;
186
	void (*flip_tail)(struct intel_overlay *);
187
};
188

189
static struct overlay_registers __iomem *
190
intel_overlay_map_regs(struct intel_overlay *overlay)
191
{
192
	struct drm_i915_private *dev_priv = overlay->dev->dev_private;
193
	struct overlay_registers __iomem *regs;
194

195
	if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
196
		regs = (struct overlay_registers __iomem *)overlay->reg_bo->phys_handle->vaddr;
197
	else
B
Ben Widawsky 已提交
198
		regs = io_mapping_map_wc(dev_priv->gtt.mappable,
199
					 i915_gem_obj_ggtt_offset(overlay->reg_bo));
200

201
	return regs;
202
}
203

204
static void intel_overlay_unmap_regs(struct intel_overlay *overlay,
205
				     struct overlay_registers __iomem *regs)
206 207
{
	if (!OVERLAY_NEEDS_PHYSICAL(overlay->dev))
208
		io_mapping_unmap(regs);
209 210
}

211
static int intel_overlay_do_wait_request(struct intel_overlay *overlay,
212
					 void (*tail)(struct intel_overlay *))
213 214
{
	struct drm_device *dev = overlay->dev;
215
	struct drm_i915_private *dev_priv = dev->dev_private;
216
	struct intel_engine_cs *ring = &dev_priv->ring[RCS];
217
	int ret;
218

219
	BUG_ON(overlay->last_flip_req);
220
	ret = i915_add_request(ring, &overlay->last_flip_req);
221 222 223
	if (ret)
		return ret;

224
	overlay->flip_tail = tail;
225
	ret = i915_wait_seqno(ring, overlay->last_flip_req);
226
	if (ret)
227
		return ret;
228
	i915_gem_retire_requests(dev);
229

230
	overlay->last_flip_req = 0;
231 232 233 234 235 236 237
	return 0;
}

/* overlay needs to be disable in OCMD reg */
static int intel_overlay_on(struct intel_overlay *overlay)
{
	struct drm_device *dev = overlay->dev;
238
	struct drm_i915_private *dev_priv = dev->dev_private;
239
	struct intel_engine_cs *ring = &dev_priv->ring[RCS];
240 241 242
	int ret;

	BUG_ON(overlay->active);
243
	overlay->active = 1;
244

245
	WARN_ON(IS_I830(dev) && !(dev_priv->quirks & QUIRK_PIPEA_FORCE));
246

247
	ret = intel_ring_begin(ring, 4);
248 249
	if (ret)
		return ret;
250

251 252 253 254 255
	intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_ON);
	intel_ring_emit(ring, overlay->flip_addr | OFC_UPDATE);
	intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
	intel_ring_emit(ring, MI_NOOP);
	intel_ring_advance(ring);
256

257
	return intel_overlay_do_wait_request(overlay, NULL);
258 259 260
}

/* overlay needs to be enabled in OCMD reg */
C
Chris Wilson 已提交
261 262
static int intel_overlay_continue(struct intel_overlay *overlay,
				  bool load_polyphase_filter)
263 264
{
	struct drm_device *dev = overlay->dev;
265
	struct drm_i915_private *dev_priv = dev->dev_private;
266
	struct intel_engine_cs *ring = &dev_priv->ring[RCS];
267 268
	u32 flip_addr = overlay->flip_addr;
	u32 tmp;
269
	int ret;
270 271 272 273 274 275 276 277 278 279 280

	BUG_ON(!overlay->active);

	if (load_polyphase_filter)
		flip_addr |= OFC_UPDATE;

	/* check for underruns */
	tmp = I915_READ(DOVSTA);
	if (tmp & (1 << 17))
		DRM_DEBUG("overlay underrun, DOVSTA: %x\n", tmp);

281
	ret = intel_ring_begin(ring, 2);
282
	if (ret)
283
		return ret;
284

285 286 287
	intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
	intel_ring_emit(ring, flip_addr);
	intel_ring_advance(ring);
288

289
	return i915_add_request(ring, &overlay->last_flip_req);
290 291
}

292
static void intel_overlay_release_old_vid_tail(struct intel_overlay *overlay)
293
{
294
	struct drm_i915_gem_object *obj = overlay->old_vid_bo;
295

B
Ben Widawsky 已提交
296
	i915_gem_object_ggtt_unpin(obj);
297
	drm_gem_object_unreference(&obj->base);
298

299 300
	overlay->old_vid_bo = NULL;
}
301

302 303
static void intel_overlay_off_tail(struct intel_overlay *overlay)
{
304
	struct drm_i915_gem_object *obj = overlay->vid_bo;
305

306 307
	/* never have the overlay hw on without showing a frame */
	BUG_ON(!overlay->vid_bo);
308

B
Ben Widawsky 已提交
309
	i915_gem_object_ggtt_unpin(obj);
310
	drm_gem_object_unreference(&obj->base);
311
	overlay->vid_bo = NULL;
312

313 314 315
	overlay->crtc->overlay = NULL;
	overlay->crtc = NULL;
	overlay->active = 0;
316 317 318
}

/* overlay needs to be disabled in OCMD reg */
319
static int intel_overlay_off(struct intel_overlay *overlay)
320 321
{
	struct drm_device *dev = overlay->dev;
322
	struct drm_i915_private *dev_priv = dev->dev_private;
323
	struct intel_engine_cs *ring = &dev_priv->ring[RCS];
C
Chris Wilson 已提交
324
	u32 flip_addr = overlay->flip_addr;
325
	int ret;
326 327 328 329 330 331 332 333 334

	BUG_ON(!overlay->active);

	/* According to intel docs the overlay hw may hang (when switching
	 * off) without loading the filter coeffs. It is however unclear whether
	 * this applies to the disabling of the overlay or to the switching off
	 * of the hw. Do it in both cases */
	flip_addr |= OFC_UPDATE;

335
	ret = intel_ring_begin(ring, 6);
336
	if (ret)
337
		return ret;
338

339
	/* wait for overlay to go idle */
340 341 342
	intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
	intel_ring_emit(ring, flip_addr);
	intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
343
	/* turn overlay off */
D
Daniel Vetter 已提交
344 345 346 347 348 349 350 351 352 353 354
	if (IS_I830(dev)) {
		/* Workaround: Don't disable the overlay fully, since otherwise
		 * it dies on the next OVERLAY_ON cmd. */
		intel_ring_emit(ring, MI_NOOP);
		intel_ring_emit(ring, MI_NOOP);
		intel_ring_emit(ring, MI_NOOP);
	} else {
		intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_OFF);
		intel_ring_emit(ring, flip_addr);
		intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
	}
355
	intel_ring_advance(ring);
356

357
	return intel_overlay_do_wait_request(overlay, intel_overlay_off_tail);
358 359
}

360 361
/* recover from an interruption due to a signal
 * We have to be careful not to repeat work forever an make forward progess. */
362
static int intel_overlay_recover_from_interrupt(struct intel_overlay *overlay)
363 364
{
	struct drm_device *dev = overlay->dev;
365
	struct drm_i915_private *dev_priv = dev->dev_private;
366
	struct intel_engine_cs *ring = &dev_priv->ring[RCS];
367 368
	int ret;

369 370
	if (overlay->last_flip_req == 0)
		return 0;
371

372
	ret = i915_wait_seqno(ring, overlay->last_flip_req);
373
	if (ret)
374
		return ret;
375
	i915_gem_retire_requests(dev);
376

377 378
	if (overlay->flip_tail)
		overlay->flip_tail(overlay);
379 380 381 382 383

	overlay->last_flip_req = 0;
	return 0;
}

384 385
/* Wait for pending overlay flip and release old frame.
 * Needs to be called before the overlay register are changed
386 387
 * via intel_overlay_(un)map_regs
 */
388 389
static int intel_overlay_release_old_vid(struct intel_overlay *overlay)
{
390
	struct drm_device *dev = overlay->dev;
391
	struct drm_i915_private *dev_priv = dev->dev_private;
392
	struct intel_engine_cs *ring = &dev_priv->ring[RCS];
393 394
	int ret;

395 396 397
	/* Only wait if there is actually an old frame to release to
	 * guarantee forward progress.
	 */
398 399 400
	if (!overlay->old_vid_bo)
		return 0;

401 402
	if (I915_READ(ISR) & I915_OVERLAY_PLANE_FLIP_PENDING_INTERRUPT) {
		/* synchronous slowpath */
403
		ret = intel_ring_begin(ring, 2);
404
		if (ret)
405 406
			return ret;

407 408 409
		intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
		intel_ring_emit(ring, MI_NOOP);
		intel_ring_advance(ring);
410

411
		ret = intel_overlay_do_wait_request(overlay,
412
						    intel_overlay_release_old_vid_tail);
413 414 415
		if (ret)
			return ret;
	}
416

417
	intel_overlay_release_old_vid_tail(overlay);
418 419 420 421


	i915_gem_track_fb(overlay->old_vid_bo, NULL,
			  INTEL_FRONTBUFFER_OVERLAY(overlay->crtc->pipe));
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
	return 0;
}

struct put_image_params {
	int format;
	short dst_x;
	short dst_y;
	short dst_w;
	short dst_h;
	short src_w;
	short src_scan_h;
	short src_scan_w;
	short src_h;
	short stride_Y;
	short stride_UV;
	int offset_Y;
	int offset_U;
	int offset_V;
};

static int packed_depth_bytes(u32 format)
{
	switch (format & I915_OVERLAY_DEPTH_MASK) {
C
Chris Wilson 已提交
445 446 447 448 449 450
	case I915_OVERLAY_YUV422:
		return 4;
	case I915_OVERLAY_YUV411:
		/* return 6; not implemented */
	default:
		return -EINVAL;
451 452 453 454 455 456
	}
}

static int packed_width_bytes(u32 format, short width)
{
	switch (format & I915_OVERLAY_DEPTH_MASK) {
C
Chris Wilson 已提交
457 458 459 460
	case I915_OVERLAY_YUV422:
		return width << 1;
	default:
		return -EINVAL;
461 462 463 464 465 466
	}
}

static int uv_hsubsampling(u32 format)
{
	switch (format & I915_OVERLAY_DEPTH_MASK) {
C
Chris Wilson 已提交
467 468 469 470 471 472 473 474
	case I915_OVERLAY_YUV422:
	case I915_OVERLAY_YUV420:
		return 2;
	case I915_OVERLAY_YUV411:
	case I915_OVERLAY_YUV410:
		return 4;
	default:
		return -EINVAL;
475 476 477 478 479 480
	}
}

static int uv_vsubsampling(u32 format)
{
	switch (format & I915_OVERLAY_DEPTH_MASK) {
C
Chris Wilson 已提交
481 482 483 484 485 486 487 488
	case I915_OVERLAY_YUV420:
	case I915_OVERLAY_YUV410:
		return 2;
	case I915_OVERLAY_YUV422:
	case I915_OVERLAY_YUV411:
		return 1;
	default:
		return -EINVAL;
489 490 491 492 493 494
	}
}

static u32 calc_swidthsw(struct drm_device *dev, u32 offset, u32 width)
{
	u32 mask, shift, ret;
495
	if (IS_GEN2(dev)) {
496 497
		mask = 0x1f;
		shift = 5;
498 499 500
	} else {
		mask = 0x3f;
		shift = 6;
501 502
	}
	ret = ((offset + width + mask) >> shift) - (offset >> shift);
503
	if (!IS_GEN2(dev))
504
		ret <<= 1;
505
	ret -= 1;
506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
	return ret << 2;
}

static const u16 y_static_hcoeffs[N_HORIZ_Y_TAPS * N_PHASES] = {
	0x3000, 0xb4a0, 0x1930, 0x1920, 0xb4a0,
	0x3000, 0xb500, 0x19d0, 0x1880, 0xb440,
	0x3000, 0xb540, 0x1a88, 0x2f80, 0xb3e0,
	0x3000, 0xb580, 0x1b30, 0x2e20, 0xb380,
	0x3000, 0xb5c0, 0x1bd8, 0x2cc0, 0xb320,
	0x3020, 0xb5e0, 0x1c60, 0x2b80, 0xb2c0,
	0x3020, 0xb5e0, 0x1cf8, 0x2a20, 0xb260,
	0x3020, 0xb5e0, 0x1d80, 0x28e0, 0xb200,
	0x3020, 0xb5c0, 0x1e08, 0x3f40, 0xb1c0,
	0x3020, 0xb580, 0x1e78, 0x3ce0, 0xb160,
	0x3040, 0xb520, 0x1ed8, 0x3aa0, 0xb120,
	0x3040, 0xb4a0, 0x1f30, 0x3880, 0xb0e0,
	0x3040, 0xb400, 0x1f78, 0x3680, 0xb0a0,
	0x3020, 0xb340, 0x1fb8, 0x34a0, 0xb060,
	0x3020, 0xb240, 0x1fe0, 0x32e0, 0xb040,
	0x3020, 0xb140, 0x1ff8, 0x3160, 0xb020,
C
Chris Wilson 已提交
526 527 528
	0xb000, 0x3000, 0x0800, 0x3000, 0xb000
};

529 530 531 532 533 534 535 536 537
static const u16 uv_static_hcoeffs[N_HORIZ_UV_TAPS * N_PHASES] = {
	0x3000, 0x1800, 0x1800, 0xb000, 0x18d0, 0x2e60,
	0xb000, 0x1990, 0x2ce0, 0xb020, 0x1a68, 0x2b40,
	0xb040, 0x1b20, 0x29e0, 0xb060, 0x1bd8, 0x2880,
	0xb080, 0x1c88, 0x3e60, 0xb0a0, 0x1d28, 0x3c00,
	0xb0c0, 0x1db8, 0x39e0, 0xb0e0, 0x1e40, 0x37e0,
	0xb100, 0x1eb8, 0x3620, 0xb100, 0x1f18, 0x34a0,
	0xb100, 0x1f68, 0x3360, 0xb0e0, 0x1fa8, 0x3240,
	0xb0c0, 0x1fe0, 0x3140, 0xb060, 0x1ff0, 0x30a0,
C
Chris Wilson 已提交
538 539
	0x3000, 0x0800, 0x3000
};
540

541
static void update_polyphase_filter(struct overlay_registers __iomem *regs)
542
{
543 544 545
	memcpy_toio(regs->Y_HCOEFS, y_static_hcoeffs, sizeof(y_static_hcoeffs));
	memcpy_toio(regs->UV_HCOEFS, uv_static_hcoeffs,
		    sizeof(uv_static_hcoeffs));
546 547 548
}

static bool update_scaling_factors(struct intel_overlay *overlay,
549
				   struct overlay_registers __iomem *regs,
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
				   struct put_image_params *params)
{
	/* fixed point with a 12 bit shift */
	u32 xscale, yscale, xscale_UV, yscale_UV;
#define FP_SHIFT 12
#define FRACT_MASK 0xfff
	bool scale_changed = false;
	int uv_hscale = uv_hsubsampling(params->format);
	int uv_vscale = uv_vsubsampling(params->format);

	if (params->dst_w > 1)
		xscale = ((params->src_scan_w - 1) << FP_SHIFT)
			/(params->dst_w);
	else
		xscale = 1 << FP_SHIFT;

	if (params->dst_h > 1)
		yscale = ((params->src_scan_h - 1) << FP_SHIFT)
			/(params->dst_h);
	else
		yscale = 1 << FP_SHIFT;

	/*if (params->format & I915_OVERLAY_YUV_PLANAR) {*/
C
Chris Wilson 已提交
573 574 575 576 577
	xscale_UV = xscale/uv_hscale;
	yscale_UV = yscale/uv_vscale;
	/* make the Y scale to UV scale ratio an exact multiply */
	xscale = xscale_UV * uv_hscale;
	yscale = yscale_UV * uv_vscale;
578
	/*} else {
C
Chris Wilson 已提交
579 580 581
	  xscale_UV = 0;
	  yscale_UV = 0;
	  }*/
582 583 584 585 586 587

	if (xscale != overlay->old_xscale || yscale != overlay->old_yscale)
		scale_changed = true;
	overlay->old_xscale = xscale;
	overlay->old_yscale = yscale;

588 589 590 591
	iowrite32(((yscale & FRACT_MASK) << 20) |
		  ((xscale >> FP_SHIFT)  << 16) |
		  ((xscale & FRACT_MASK) << 3),
		 &regs->YRGBSCALE);
C
Chris Wilson 已提交
592

593 594 595 596
	iowrite32(((yscale_UV & FRACT_MASK) << 20) |
		  ((xscale_UV >> FP_SHIFT)  << 16) |
		  ((xscale_UV & FRACT_MASK) << 3),
		 &regs->UVSCALE);
C
Chris Wilson 已提交
597

598 599 600
	iowrite32((((yscale    >> FP_SHIFT) << 16) |
		   ((yscale_UV >> FP_SHIFT) << 0)),
		 &regs->UVSCALEV);
601 602 603 604 605 606 607 608

	if (scale_changed)
		update_polyphase_filter(regs);

	return scale_changed;
}

static void update_colorkey(struct intel_overlay *overlay,
609
			    struct overlay_registers __iomem *regs)
610 611
{
	u32 key = overlay->color_key;
612

613
	switch (overlay->crtc->base.primary->fb->bits_per_pixel) {
C
Chris Wilson 已提交
614
	case 8:
615 616
		iowrite32(0, &regs->DCLRKV);
		iowrite32(CLK_RGB8I_MASK | DST_KEY_ENABLE, &regs->DCLRKM);
617 618
		break;

C
Chris Wilson 已提交
619
	case 16:
620
		if (overlay->crtc->base.primary->fb->depth == 15) {
621 622 623
			iowrite32(RGB15_TO_COLORKEY(key), &regs->DCLRKV);
			iowrite32(CLK_RGB15_MASK | DST_KEY_ENABLE,
				  &regs->DCLRKM);
C
Chris Wilson 已提交
624
		} else {
625 626 627
			iowrite32(RGB16_TO_COLORKEY(key), &regs->DCLRKV);
			iowrite32(CLK_RGB16_MASK | DST_KEY_ENABLE,
				  &regs->DCLRKM);
C
Chris Wilson 已提交
628
		}
629 630
		break;

C
Chris Wilson 已提交
631 632
	case 24:
	case 32:
633 634
		iowrite32(key, &regs->DCLRKV);
		iowrite32(CLK_RGB24_MASK | DST_KEY_ENABLE, &regs->DCLRKM);
635
		break;
636 637 638 639 640 641 642 643 644
	}
}

static u32 overlay_cmd_reg(struct put_image_params *params)
{
	u32 cmd = OCMD_ENABLE | OCMD_BUF_TYPE_FRAME | OCMD_BUFFER0;

	if (params->format & I915_OVERLAY_YUV_PLANAR) {
		switch (params->format & I915_OVERLAY_DEPTH_MASK) {
C
Chris Wilson 已提交
645 646 647 648 649 650 651 652 653 654
		case I915_OVERLAY_YUV422:
			cmd |= OCMD_YUV_422_PLANAR;
			break;
		case I915_OVERLAY_YUV420:
			cmd |= OCMD_YUV_420_PLANAR;
			break;
		case I915_OVERLAY_YUV411:
		case I915_OVERLAY_YUV410:
			cmd |= OCMD_YUV_410_PLANAR;
			break;
655 656 657
		}
	} else { /* YUV packed */
		switch (params->format & I915_OVERLAY_DEPTH_MASK) {
C
Chris Wilson 已提交
658 659 660 661 662 663
		case I915_OVERLAY_YUV422:
			cmd |= OCMD_YUV_422_PACKED;
			break;
		case I915_OVERLAY_YUV411:
			cmd |= OCMD_YUV_411_PACKED;
			break;
664 665 666
		}

		switch (params->format & I915_OVERLAY_SWAP_MASK) {
C
Chris Wilson 已提交
667 668 669 670 671 672 673 674 675 676 677
		case I915_OVERLAY_NO_SWAP:
			break;
		case I915_OVERLAY_UV_SWAP:
			cmd |= OCMD_UV_SWAP;
			break;
		case I915_OVERLAY_Y_SWAP:
			cmd |= OCMD_Y_SWAP;
			break;
		case I915_OVERLAY_Y_AND_UV_SWAP:
			cmd |= OCMD_Y_AND_UV_SWAP;
			break;
678 679 680 681 682 683
		}
	}

	return cmd;
}

684
static int intel_overlay_do_put_image(struct intel_overlay *overlay,
685
				      struct drm_i915_gem_object *new_bo,
686
				      struct put_image_params *params)
687 688
{
	int ret, tmp_width;
689
	struct overlay_registers __iomem *regs;
690 691
	bool scale_changed = false;
	struct drm_device *dev = overlay->dev;
692
	u32 swidth, swidthsw, sheight, ostride;
693
	enum pipe pipe = overlay->crtc->pipe;
694 695

	BUG_ON(!mutex_is_locked(&dev->struct_mutex));
696
	BUG_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
697 698 699 700 701 702
	BUG_ON(!overlay);

	ret = intel_overlay_release_old_vid(overlay);
	if (ret != 0)
		return ret;

703
	ret = i915_gem_object_pin_to_display_plane(new_bo, 0, NULL);
704 705 706
	if (ret != 0)
		return ret;

707 708 709 710
	ret = i915_gem_object_put_fence(new_bo);
	if (ret)
		goto out_unpin;

711
	if (!overlay->active) {
712
		u32 oconfig;
713
		regs = intel_overlay_map_regs(overlay);
714 715 716 717
		if (!regs) {
			ret = -ENOMEM;
			goto out_unpin;
		}
718
		oconfig = OCONF_CC_OUT_8BIT;
719
		if (IS_GEN4(overlay->dev))
720
			oconfig |= OCONF_CSC_MODE_BT709;
721
		oconfig |= pipe == 0 ?
722
			OCONF_PIPE_A : OCONF_PIPE_B;
723
		iowrite32(oconfig, &regs->OCONFIG);
724
		intel_overlay_unmap_regs(overlay, regs);
725 726 727 728 729 730

		ret = intel_overlay_on(overlay);
		if (ret != 0)
			goto out_unpin;
	}

731
	regs = intel_overlay_map_regs(overlay);
732 733 734 735 736
	if (!regs) {
		ret = -ENOMEM;
		goto out_unpin;
	}

737 738
	iowrite32((params->dst_y << 16) | params->dst_x, &regs->DWINPOS);
	iowrite32((params->dst_h << 16) | params->dst_w, &regs->DWINSZ);
739 740 741 742 743 744

	if (params->format & I915_OVERLAY_YUV_PACKED)
		tmp_width = packed_width_bytes(params->format, params->src_w);
	else
		tmp_width = params->src_w;

745 746 747
	swidth = params->src_w;
	swidthsw = calc_swidthsw(overlay->dev, params->offset_Y, tmp_width);
	sheight = params->src_h;
748
	iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_Y, &regs->OBUF_0Y);
749
	ostride = params->stride_Y;
750 751 752 753 754

	if (params->format & I915_OVERLAY_YUV_PLANAR) {
		int uv_hscale = uv_hsubsampling(params->format);
		int uv_vscale = uv_vsubsampling(params->format);
		u32 tmp_U, tmp_V;
755
		swidth |= (params->src_w/uv_hscale) << 16;
756
		tmp_U = calc_swidthsw(overlay->dev, params->offset_U,
C
Chris Wilson 已提交
757
				      params->src_w/uv_hscale);
758
		tmp_V = calc_swidthsw(overlay->dev, params->offset_V,
C
Chris Wilson 已提交
759
				      params->src_w/uv_hscale);
760 761
		swidthsw |= max_t(u32, tmp_U, tmp_V) << 16;
		sheight |= (params->src_h/uv_vscale) << 16;
762 763
		iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_U, &regs->OBUF_0U);
		iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_V, &regs->OBUF_0V);
764
		ostride |= params->stride_UV << 16;
765 766
	}

767 768 769 770 771
	iowrite32(swidth, &regs->SWIDTH);
	iowrite32(swidthsw, &regs->SWIDTHSW);
	iowrite32(sheight, &regs->SHEIGHT);
	iowrite32(ostride, &regs->OSTRIDE);

772 773 774 775
	scale_changed = update_scaling_factors(overlay, regs, params);

	update_colorkey(overlay, regs);

776
	iowrite32(overlay_cmd_reg(params), &regs->OCMD);
777

778
	intel_overlay_unmap_regs(overlay, regs);
779

C
Chris Wilson 已提交
780 781 782
	ret = intel_overlay_continue(overlay, scale_changed);
	if (ret)
		goto out_unpin;
783

784 785 786
	i915_gem_track_fb(overlay->vid_bo, new_bo,
			  INTEL_FRONTBUFFER_OVERLAY(pipe));

787
	overlay->old_vid_bo = overlay->vid_bo;
788
	overlay->vid_bo = new_bo;
789 790 791 792

	return 0;

out_unpin:
B
Ben Widawsky 已提交
793
	i915_gem_object_ggtt_unpin(new_bo);
794 795 796
	return ret;
}

797
int intel_overlay_switch_off(struct intel_overlay *overlay)
798
{
799
	struct overlay_registers __iomem *regs;
800
	struct drm_device *dev = overlay->dev;
801
	int ret;
802 803

	BUG_ON(!mutex_is_locked(&dev->struct_mutex));
804
	BUG_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
805

806
	ret = intel_overlay_recover_from_interrupt(overlay);
807 808
	if (ret != 0)
		return ret;
809

810 811 812 813 814 815 816
	if (!overlay->active)
		return 0;

	ret = intel_overlay_release_old_vid(overlay);
	if (ret != 0)
		return ret;

817
	regs = intel_overlay_map_regs(overlay);
818
	iowrite32(0, &regs->OCMD);
819
	intel_overlay_unmap_regs(overlay, regs);
820

821
	ret = intel_overlay_off(overlay);
822 823 824
	if (ret != 0)
		return ret;

825
	intel_overlay_off_tail(overlay);
826 827 828 829 830 831
	return 0;
}

static int check_overlay_possible_on_crtc(struct intel_overlay *overlay,
					  struct intel_crtc *crtc)
{
832
	if (!crtc->active)
833 834 835
		return -EINVAL;

	/* can't use the overlay with double wide pipe */
836
	if (crtc->config.double_wide)
837 838 839 840 841 842 843 844
		return -EINVAL;

	return 0;
}

static void update_pfit_vscale_ratio(struct intel_overlay *overlay)
{
	struct drm_device *dev = overlay->dev;
845
	struct drm_i915_private *dev_priv = dev->dev_private;
846
	u32 pfit_control = I915_READ(PFIT_CONTROL);
847
	u32 ratio;
848 849

	/* XXX: This is not the same logic as in the xorg driver, but more in
850 851
	 * line with the intel documentation for the i965
	 */
852
	if (INTEL_INFO(dev)->gen >= 4) {
853
		/* on i965 use the PGM reg to read out the autoscaler values */
854 855
		ratio = I915_READ(PFIT_PGM_RATIOS) >> PFIT_VERT_SCALE_SHIFT_965;
	} else {
856 857
		if (pfit_control & VERT_AUTO_SCALE)
			ratio = I915_READ(PFIT_AUTO_RATIOS);
858
		else
859 860
			ratio = I915_READ(PFIT_PGM_RATIOS);
		ratio >>= PFIT_VERT_SCALE_SHIFT;
861 862 863 864 865 866 867 868 869 870
	}

	overlay->pfit_vscale_ratio = ratio;
}

static int check_overlay_dst(struct intel_overlay *overlay,
			     struct drm_intel_overlay_put_image *rec)
{
	struct drm_display_mode *mode = &overlay->crtc->base.mode;

871 872 873 874
	if (rec->dst_x < mode->hdisplay &&
	    rec->dst_x + rec->dst_width <= mode->hdisplay &&
	    rec->dst_y < mode->vdisplay &&
	    rec->dst_y + rec->dst_height <= mode->vdisplay)
875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896
		return 0;
	else
		return -EINVAL;
}

static int check_overlay_scaling(struct put_image_params *rec)
{
	u32 tmp;

	/* downscaling limit is 8.0 */
	tmp = ((rec->src_scan_h << 16) / rec->dst_h) >> 16;
	if (tmp > 7)
		return -EINVAL;
	tmp = ((rec->src_scan_w << 16) / rec->dst_w) >> 16;
	if (tmp > 7)
		return -EINVAL;

	return 0;
}

static int check_overlay_src(struct drm_device *dev,
			     struct drm_intel_overlay_put_image *rec,
897
			     struct drm_i915_gem_object *new_bo)
898 899 900
{
	int uv_hscale = uv_hsubsampling(rec->flags);
	int uv_vscale = uv_vsubsampling(rec->flags);
901 902 903
	u32 stride_mask;
	int depth;
	u32 tmp;
904 905 906

	/* check src dimensions */
	if (IS_845G(dev) || IS_I830(dev)) {
C
Chris Wilson 已提交
907
		if (rec->src_height > IMAGE_MAX_HEIGHT_LEGACY ||
908
		    rec->src_width  > IMAGE_MAX_WIDTH_LEGACY)
909 910
			return -EINVAL;
	} else {
C
Chris Wilson 已提交
911
		if (rec->src_height > IMAGE_MAX_HEIGHT ||
912
		    rec->src_width  > IMAGE_MAX_WIDTH)
913 914
			return -EINVAL;
	}
915

916
	/* better safe than sorry, use 4 as the maximal subsampling ratio */
C
Chris Wilson 已提交
917
	if (rec->src_height < N_VERT_Y_TAPS*4 ||
918
	    rec->src_width  < N_HORIZ_Y_TAPS*4)
919 920
		return -EINVAL;

921
	/* check alignment constraints */
922
	switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
C
Chris Wilson 已提交
923 924 925
	case I915_OVERLAY_RGB:
		/* not implemented */
		return -EINVAL;
926

C
Chris Wilson 已提交
927 928
	case I915_OVERLAY_YUV_PACKED:
		if (uv_vscale != 1)
929
			return -EINVAL;
930 931

		depth = packed_depth_bytes(rec->flags);
C
Chris Wilson 已提交
932 933
		if (depth < 0)
			return depth;
934

C
Chris Wilson 已提交
935 936 937 938 939 940 941 942
		/* ignore UV planes */
		rec->stride_UV = 0;
		rec->offset_U = 0;
		rec->offset_V = 0;
		/* check pixel alignment */
		if (rec->offset_Y % depth)
			return -EINVAL;
		break;
943

C
Chris Wilson 已提交
944 945
	case I915_OVERLAY_YUV_PLANAR:
		if (uv_vscale < 0 || uv_hscale < 0)
946
			return -EINVAL;
C
Chris Wilson 已提交
947 948
		/* no offset restrictions for planar formats */
		break;
949

C
Chris Wilson 已提交
950 951
	default:
		return -EINVAL;
952 953 954 955 956 957
	}

	if (rec->src_width % uv_hscale)
		return -EINVAL;

	/* stride checking */
958 959 960 961
	if (IS_I830(dev) || IS_845G(dev))
		stride_mask = 255;
	else
		stride_mask = 63;
962 963 964

	if (rec->stride_Y & stride_mask || rec->stride_UV & stride_mask)
		return -EINVAL;
965
	if (IS_GEN4(dev) && rec->stride_Y < 512)
966 967 968
		return -EINVAL;

	tmp = (rec->flags & I915_OVERLAY_TYPE_MASK) == I915_OVERLAY_YUV_PLANAR ?
969 970
		4096 : 8192;
	if (rec->stride_Y > tmp || rec->stride_UV > 2*1024)
971 972 973 974
		return -EINVAL;

	/* check buffer dimensions */
	switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
C
Chris Wilson 已提交
975 976 977 978 979 980 981
	case I915_OVERLAY_RGB:
	case I915_OVERLAY_YUV_PACKED:
		/* always 4 Y values per depth pixels */
		if (packed_width_bytes(rec->flags, rec->src_width) > rec->stride_Y)
			return -EINVAL;

		tmp = rec->stride_Y*rec->src_height;
982
		if (rec->offset_Y + tmp > new_bo->base.size)
C
Chris Wilson 已提交
983 984 985 986 987 988 989 990 991
			return -EINVAL;
		break;

	case I915_OVERLAY_YUV_PLANAR:
		if (rec->src_width > rec->stride_Y)
			return -EINVAL;
		if (rec->src_width/uv_hscale > rec->stride_UV)
			return -EINVAL;

992
		tmp = rec->stride_Y * rec->src_height;
993
		if (rec->offset_Y + tmp > new_bo->base.size)
C
Chris Wilson 已提交
994
			return -EINVAL;
995 996

		tmp = rec->stride_UV * (rec->src_height / uv_vscale);
997 998
		if (rec->offset_U + tmp > new_bo->base.size ||
		    rec->offset_V + tmp > new_bo->base.size)
C
Chris Wilson 已提交
999 1000
			return -EINVAL;
		break;
1001 1002 1003 1004 1005
	}

	return 0;
}

1006 1007 1008 1009 1010 1011 1012 1013 1014 1015
/**
 * Return the pipe currently connected to the panel fitter,
 * or -1 if the panel fitter is not present or not in use
 */
static int intel_panel_fitter_pipe(struct drm_device *dev)
{
	struct drm_i915_private *dev_priv = dev->dev_private;
	u32  pfit_control;

	/* i830 doesn't have a panel fitter */
1016
	if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
1017 1018 1019 1020 1021 1022 1023 1024 1025
		return -1;

	pfit_control = I915_READ(PFIT_CONTROL);

	/* See if the panel fitter is in use */
	if ((pfit_control & PFIT_ENABLE) == 0)
		return -1;

	/* 965 can place panel fitter on either pipe */
1026
	if (IS_GEN4(dev))
1027 1028 1029 1030 1031 1032
		return (pfit_control >> 29) & 0x3;

	/* older chips can only use pipe 1 */
	return 1;
}

1033
int intel_overlay_put_image(struct drm_device *dev, void *data,
1034
			    struct drm_file *file_priv)
1035 1036
{
	struct drm_intel_overlay_put_image *put_image_rec = data;
1037
	struct drm_i915_private *dev_priv = dev->dev_private;
1038 1039 1040
	struct intel_overlay *overlay;
	struct drm_mode_object *drmmode_obj;
	struct intel_crtc *crtc;
1041
	struct drm_i915_gem_object *new_bo;
1042 1043 1044
	struct put_image_params *params;
	int ret;

1045
	/* No need to check for DRIVER_MODESET - we don't set it up then. */
1046 1047 1048 1049 1050 1051 1052
	overlay = dev_priv->overlay;
	if (!overlay) {
		DRM_DEBUG("userspace bug: no overlay\n");
		return -ENODEV;
	}

	if (!(put_image_rec->flags & I915_OVERLAY_ENABLE)) {
1053
		drm_modeset_lock_all(dev);
1054 1055
		mutex_lock(&dev->struct_mutex);

1056
		ret = intel_overlay_switch_off(overlay);
1057 1058

		mutex_unlock(&dev->struct_mutex);
1059
		drm_modeset_unlock_all(dev);
1060 1061 1062 1063

		return ret;
	}

1064
	params = kmalloc(sizeof(*params), GFP_KERNEL);
1065 1066 1067 1068
	if (!params)
		return -ENOMEM;

	drmmode_obj = drm_mode_object_find(dev, put_image_rec->crtc_id,
C
Chris Wilson 已提交
1069
					   DRM_MODE_OBJECT_CRTC);
1070 1071 1072 1073
	if (!drmmode_obj) {
		ret = -ENOENT;
		goto out_free;
	}
1074 1075
	crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));

1076 1077
	new_bo = to_intel_bo(drm_gem_object_lookup(dev, file_priv,
						   put_image_rec->bo_handle));
1078
	if (&new_bo->base == NULL) {
1079 1080 1081
		ret = -ENOENT;
		goto out_free;
	}
1082

1083
	drm_modeset_lock_all(dev);
1084 1085
	mutex_lock(&dev->struct_mutex);

1086
	if (new_bo->tiling_mode) {
1087
		DRM_DEBUG_KMS("buffer used for overlay image can not be tiled\n");
1088 1089 1090 1091
		ret = -EINVAL;
		goto out_unlock;
	}

1092
	ret = intel_overlay_recover_from_interrupt(overlay);
1093 1094
	if (ret != 0)
		goto out_unlock;
1095

1096 1097
	if (overlay->crtc != crtc) {
		struct drm_display_mode *mode = &crtc->base.mode;
1098
		ret = intel_overlay_switch_off(overlay);
1099 1100 1101 1102 1103 1104 1105 1106 1107 1108
		if (ret != 0)
			goto out_unlock;

		ret = check_overlay_possible_on_crtc(overlay, crtc);
		if (ret != 0)
			goto out_unlock;

		overlay->crtc = crtc;
		crtc->overlay = overlay;

1109 1110 1111
		/* line too wide, i.e. one-line-mode */
		if (mode->hdisplay > 1024 &&
		    intel_panel_fitter_pipe(dev) == crtc->pipe) {
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123
			overlay->pfit_active = 1;
			update_pfit_vscale_ratio(overlay);
		} else
			overlay->pfit_active = 0;
	}

	ret = check_overlay_dst(overlay, put_image_rec);
	if (ret != 0)
		goto out_unlock;

	if (overlay->pfit_active) {
		params->dst_y = ((((u32)put_image_rec->dst_y) << 12) /
C
Chris Wilson 已提交
1124
				 overlay->pfit_vscale_ratio);
1125 1126
		/* shifting right rounds downwards, so add 1 */
		params->dst_h = ((((u32)put_image_rec->dst_height) << 12) /
C
Chris Wilson 已提交
1127
				 overlay->pfit_vscale_ratio) + 1;
1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138
	} else {
		params->dst_y = put_image_rec->dst_y;
		params->dst_h = put_image_rec->dst_height;
	}
	params->dst_x = put_image_rec->dst_x;
	params->dst_w = put_image_rec->dst_width;

	params->src_w = put_image_rec->src_width;
	params->src_h = put_image_rec->src_height;
	params->src_scan_w = put_image_rec->src_scan_width;
	params->src_scan_h = put_image_rec->src_scan_height;
C
Chris Wilson 已提交
1139 1140
	if (params->src_scan_h > params->src_h ||
	    params->src_scan_w > params->src_w) {
1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164
		ret = -EINVAL;
		goto out_unlock;
	}

	ret = check_overlay_src(dev, put_image_rec, new_bo);
	if (ret != 0)
		goto out_unlock;
	params->format = put_image_rec->flags & ~I915_OVERLAY_FLAGS_MASK;
	params->stride_Y = put_image_rec->stride_Y;
	params->stride_UV = put_image_rec->stride_UV;
	params->offset_Y = put_image_rec->offset_Y;
	params->offset_U = put_image_rec->offset_U;
	params->offset_V = put_image_rec->offset_V;

	/* Check scaling after src size to prevent a divide-by-zero. */
	ret = check_overlay_scaling(params);
	if (ret != 0)
		goto out_unlock;

	ret = intel_overlay_do_put_image(overlay, new_bo, params);
	if (ret != 0)
		goto out_unlock;

	mutex_unlock(&dev->struct_mutex);
1165
	drm_modeset_unlock_all(dev);
1166 1167 1168 1169 1170 1171 1172

	kfree(params);

	return 0;

out_unlock:
	mutex_unlock(&dev->struct_mutex);
1173
	drm_modeset_unlock_all(dev);
1174
	drm_gem_object_unreference_unlocked(&new_bo->base);
1175
out_free:
1176 1177 1178 1179 1180 1181
	kfree(params);

	return ret;
}

static void update_reg_attrs(struct intel_overlay *overlay,
1182
			     struct overlay_registers __iomem *regs)
1183
{
1184 1185 1186
	iowrite32((overlay->contrast << 18) | (overlay->brightness & 0xff),
		  &regs->OCLRC0);
	iowrite32(overlay->saturation, &regs->OCLRC1);
1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
}

static bool check_gamma_bounds(u32 gamma1, u32 gamma2)
{
	int i;

	if (gamma1 & 0xff000000 || gamma2 & 0xff000000)
		return false;

	for (i = 0; i < 3; i++) {
C
Chris Wilson 已提交
1197
		if (((gamma1 >> i*8) & 0xff) >= ((gamma2 >> i*8) & 0xff))
1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217
			return false;
	}

	return true;
}

static bool check_gamma5_errata(u32 gamma5)
{
	int i;

	for (i = 0; i < 3; i++) {
		if (((gamma5 >> i*8) & 0xff) == 0x80)
			return false;
	}

	return true;
}

static int check_gamma(struct drm_intel_overlay_attrs *attrs)
{
C
Chris Wilson 已提交
1218 1219 1220 1221 1222 1223 1224
	if (!check_gamma_bounds(0, attrs->gamma0) ||
	    !check_gamma_bounds(attrs->gamma0, attrs->gamma1) ||
	    !check_gamma_bounds(attrs->gamma1, attrs->gamma2) ||
	    !check_gamma_bounds(attrs->gamma2, attrs->gamma3) ||
	    !check_gamma_bounds(attrs->gamma3, attrs->gamma4) ||
	    !check_gamma_bounds(attrs->gamma4, attrs->gamma5) ||
	    !check_gamma_bounds(attrs->gamma5, 0x00ffffff))
1225
		return -EINVAL;
C
Chris Wilson 已提交
1226

1227 1228
	if (!check_gamma5_errata(attrs->gamma5))
		return -EINVAL;
C
Chris Wilson 已提交
1229

1230 1231 1232 1233
	return 0;
}

int intel_overlay_attrs(struct drm_device *dev, void *data,
1234
			struct drm_file *file_priv)
1235 1236
{
	struct drm_intel_overlay_attrs *attrs = data;
1237
	struct drm_i915_private *dev_priv = dev->dev_private;
1238
	struct intel_overlay *overlay;
1239
	struct overlay_registers __iomem *regs;
1240 1241
	int ret;

1242
	/* No need to check for DRIVER_MODESET - we don't set it up then. */
1243 1244 1245 1246 1247 1248
	overlay = dev_priv->overlay;
	if (!overlay) {
		DRM_DEBUG("userspace bug: no overlay\n");
		return -ENODEV;
	}

1249
	drm_modeset_lock_all(dev);
1250 1251
	mutex_lock(&dev->struct_mutex);

1252
	ret = -EINVAL;
1253
	if (!(attrs->flags & I915_OVERLAY_UPDATE_ATTRS)) {
1254
		attrs->color_key  = overlay->color_key;
1255
		attrs->brightness = overlay->brightness;
1256
		attrs->contrast   = overlay->contrast;
1257 1258
		attrs->saturation = overlay->saturation;

1259
		if (!IS_GEN2(dev)) {
1260 1261 1262 1263 1264 1265 1266 1267
			attrs->gamma0 = I915_READ(OGAMC0);
			attrs->gamma1 = I915_READ(OGAMC1);
			attrs->gamma2 = I915_READ(OGAMC2);
			attrs->gamma3 = I915_READ(OGAMC3);
			attrs->gamma4 = I915_READ(OGAMC4);
			attrs->gamma5 = I915_READ(OGAMC5);
		}
	} else {
1268
		if (attrs->brightness < -128 || attrs->brightness > 127)
1269
			goto out_unlock;
1270
		if (attrs->contrast > 255)
1271
			goto out_unlock;
1272
		if (attrs->saturation > 1023)
1273 1274
			goto out_unlock;

1275 1276 1277 1278
		overlay->color_key  = attrs->color_key;
		overlay->brightness = attrs->brightness;
		overlay->contrast   = attrs->contrast;
		overlay->saturation = attrs->saturation;
1279

1280
		regs = intel_overlay_map_regs(overlay);
1281 1282 1283 1284 1285 1286 1287
		if (!regs) {
			ret = -ENOMEM;
			goto out_unlock;
		}

		update_reg_attrs(overlay, regs);

1288
		intel_overlay_unmap_regs(overlay, regs);
1289 1290

		if (attrs->flags & I915_OVERLAY_UPDATE_GAMMA) {
1291
			if (IS_GEN2(dev))
1292 1293 1294 1295 1296 1297 1298 1299
				goto out_unlock;

			if (overlay->active) {
				ret = -EBUSY;
				goto out_unlock;
			}

			ret = check_gamma(attrs);
1300
			if (ret)
1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311
				goto out_unlock;

			I915_WRITE(OGAMC0, attrs->gamma0);
			I915_WRITE(OGAMC1, attrs->gamma1);
			I915_WRITE(OGAMC2, attrs->gamma2);
			I915_WRITE(OGAMC3, attrs->gamma3);
			I915_WRITE(OGAMC4, attrs->gamma4);
			I915_WRITE(OGAMC5, attrs->gamma5);
		}
	}

1312
	ret = 0;
1313 1314
out_unlock:
	mutex_unlock(&dev->struct_mutex);
1315
	drm_modeset_unlock_all(dev);
1316 1317 1318 1319 1320 1321

	return ret;
}

void intel_setup_overlay(struct drm_device *dev)
{
1322
	struct drm_i915_private *dev_priv = dev->dev_private;
1323
	struct intel_overlay *overlay;
1324
	struct drm_i915_gem_object *reg_bo;
1325
	struct overlay_registers __iomem *regs;
1326 1327
	int ret;

1328
	if (!HAS_OVERLAY(dev))
1329 1330
		return;

1331
	overlay = kzalloc(sizeof(*overlay), GFP_KERNEL);
1332 1333
	if (!overlay)
		return;
1334 1335 1336 1337 1338

	mutex_lock(&dev->struct_mutex);
	if (WARN_ON(dev_priv->overlay))
		goto out_free;

1339 1340
	overlay->dev = dev;

1341 1342 1343
	reg_bo = NULL;
	if (!OVERLAY_NEEDS_PHYSICAL(dev))
		reg_bo = i915_gem_object_create_stolen(dev, PAGE_SIZE);
1344 1345 1346
	if (reg_bo == NULL)
		reg_bo = i915_gem_alloc_object(dev, PAGE_SIZE);
	if (reg_bo == NULL)
1347
		goto out_free;
1348
	overlay->reg_bo = reg_bo;
1349

1350
	if (OVERLAY_NEEDS_PHYSICAL(dev)) {
1351
		ret = i915_gem_object_attach_phys(reg_bo, PAGE_SIZE);
1352 1353 1354 1355
		if (ret) {
			DRM_ERROR("failed to attach phys overlay regs\n");
			goto out_free_bo;
		}
1356
		overlay->flip_addr = reg_bo->phys_handle->busaddr;
1357
	} else {
1358
		ret = i915_gem_obj_ggtt_pin(reg_bo, PAGE_SIZE, PIN_MAPPABLE);
1359
		if (ret) {
1360 1361 1362
			DRM_ERROR("failed to pin overlay register bo\n");
			goto out_free_bo;
		}
1363
		overlay->flip_addr = i915_gem_obj_ggtt_offset(reg_bo);
1364 1365 1366

		ret = i915_gem_object_set_to_gtt_domain(reg_bo, true);
		if (ret) {
1367 1368 1369
			DRM_ERROR("failed to move overlay register bo into the GTT\n");
			goto out_unpin_bo;
		}
1370 1371 1372 1373 1374 1375 1376 1377
	}

	/* init all values */
	overlay->color_key = 0x0101fe;
	overlay->brightness = -19;
	overlay->contrast = 75;
	overlay->saturation = 146;

1378
	regs = intel_overlay_map_regs(overlay);
1379
	if (!regs)
1380
		goto out_unpin_bo;
1381

1382
	memset_io(regs, 0, sizeof(struct overlay_registers));
1383 1384 1385
	update_polyphase_filter(regs);
	update_reg_attrs(overlay, regs);

1386
	intel_overlay_unmap_regs(overlay, regs);
1387 1388

	dev_priv->overlay = overlay;
1389
	mutex_unlock(&dev->struct_mutex);
1390 1391 1392
	DRM_INFO("initialized overlay support\n");
	return;

1393
out_unpin_bo:
1394
	if (!OVERLAY_NEEDS_PHYSICAL(dev))
B
Ben Widawsky 已提交
1395
		i915_gem_object_ggtt_unpin(reg_bo);
1396
out_free_bo:
1397
	drm_gem_object_unreference(&reg_bo->base);
1398
out_free:
1399
	mutex_unlock(&dev->struct_mutex);
1400 1401 1402 1403 1404 1405
	kfree(overlay);
	return;
}

void intel_cleanup_overlay(struct drm_device *dev)
{
1406
	struct drm_i915_private *dev_priv = dev->dev_private;
1407

1408 1409
	if (!dev_priv->overlay)
		return;
1410

1411 1412 1413 1414 1415 1416 1417
	/* The bo's should be free'd by the generic code already.
	 * Furthermore modesetting teardown happens beforehand so the
	 * hardware should be off already */
	BUG_ON(dev_priv->overlay->active);

	drm_gem_object_unreference_unlocked(&dev_priv->overlay->reg_bo->base);
	kfree(dev_priv->overlay);
1418
}
1419 1420 1421 1422 1423 1424 1425 1426

struct intel_overlay_error_state {
	struct overlay_registers regs;
	unsigned long base;
	u32 dovsta;
	u32 isr;
};

1427
static struct overlay_registers __iomem *
1428
intel_overlay_map_regs_atomic(struct intel_overlay *overlay)
1429
{
1430
	struct drm_i915_private *dev_priv = overlay->dev->dev_private;
1431
	struct overlay_registers __iomem *regs;
1432 1433

	if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
1434 1435 1436
		/* Cast to make sparse happy, but it's wc memory anyway, so
		 * equivalent to the wc io mapping on X86. */
		regs = (struct overlay_registers __iomem *)
1437
			overlay->reg_bo->phys_handle->vaddr;
1438
	else
B
Ben Widawsky 已提交
1439
		regs = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
1440
						i915_gem_obj_ggtt_offset(overlay->reg_bo));
1441 1442 1443 1444 1445

	return regs;
}

static void intel_overlay_unmap_regs_atomic(struct intel_overlay *overlay,
1446
					struct overlay_registers __iomem *regs)
1447 1448
{
	if (!OVERLAY_NEEDS_PHYSICAL(overlay->dev))
1449
		io_mapping_unmap_atomic(regs);
1450 1451 1452
}


1453 1454 1455
struct intel_overlay_error_state *
intel_overlay_capture_error_state(struct drm_device *dev)
{
1456
	struct drm_i915_private *dev_priv = dev->dev_private;
1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469
	struct intel_overlay *overlay = dev_priv->overlay;
	struct intel_overlay_error_state *error;
	struct overlay_registers __iomem *regs;

	if (!overlay || !overlay->active)
		return NULL;

	error = kmalloc(sizeof(*error), GFP_ATOMIC);
	if (error == NULL)
		return NULL;

	error->dovsta = I915_READ(DOVSTA);
	error->isr = I915_READ(ISR);
1470
	if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
1471
		error->base = (__force long)overlay->reg_bo->phys_handle->vaddr;
1472
	else
1473
		error->base = i915_gem_obj_ggtt_offset(overlay->reg_bo);
1474 1475 1476 1477 1478 1479

	regs = intel_overlay_map_regs_atomic(overlay);
	if (!regs)
		goto err;

	memcpy_fromio(&error->regs, regs, sizeof(struct overlay_registers));
1480
	intel_overlay_unmap_regs_atomic(overlay, regs);
1481 1482 1483 1484 1485 1486 1487 1488 1489

	return error;

err:
	kfree(error);
	return NULL;
}

void
1490 1491
intel_overlay_print_error_state(struct drm_i915_error_state_buf *m,
				struct intel_overlay_error_state *error)
1492
{
1493 1494 1495 1496
	i915_error_printf(m, "Overlay, status: 0x%08x, interrupt: 0x%08x\n",
			  error->dovsta, error->isr);
	i915_error_printf(m, "  Register file at 0x%08lx:\n",
			  error->base);
1497

1498
#define P(x) i915_error_printf(m, "    " #x ":	0x%08x\n", error->regs.x)
1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541
	P(OBUF_0Y);
	P(OBUF_1Y);
	P(OBUF_0U);
	P(OBUF_0V);
	P(OBUF_1U);
	P(OBUF_1V);
	P(OSTRIDE);
	P(YRGB_VPH);
	P(UV_VPH);
	P(HORZ_PH);
	P(INIT_PHS);
	P(DWINPOS);
	P(DWINSZ);
	P(SWIDTH);
	P(SWIDTHSW);
	P(SHEIGHT);
	P(YRGBSCALE);
	P(UVSCALE);
	P(OCLRC0);
	P(OCLRC1);
	P(DCLRKV);
	P(DCLRKM);
	P(SCLRKVH);
	P(SCLRKVL);
	P(SCLRKEN);
	P(OCONFIG);
	P(OCMD);
	P(OSTART_0Y);
	P(OSTART_1Y);
	P(OSTART_0U);
	P(OSTART_0V);
	P(OSTART_1U);
	P(OSTART_1V);
	P(OTILEOFF_0Y);
	P(OTILEOFF_1Y);
	P(OTILEOFF_0U);
	P(OTILEOFF_0V);
	P(OTILEOFF_1U);
	P(OTILEOFF_1V);
	P(FASTHSCALE);
	P(UVSCALEV);
#undef P
}