intel_panel.c 20.2 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 28 29 30
/*
 * Copyright © 2006-2010 Intel Corporation
 * Copyright (c) 2006 Dave Airlie <airlied@linux.ie>
 *
 * 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:
 *	Eric Anholt <eric@anholt.net>
 *      Dave Airlie <airlied@linux.ie>
 *      Jesse Barnes <jesse.barnes@intel.com>
 *      Chris Wilson <chris@chris-wilson.co.uk>
 */

31
#include <linux/kernel.h>
32
#include <linux/pwm.h>
33

34
#include "intel_backlight.h"
35
#include "intel_connector.h"
36
#include "intel_de.h"
37
#include "intel_display_types.h"
38
#include "intel_drrs.h"
39
#include "intel_panel.h"
40

41 42 43 44 45 46 47 48
bool intel_panel_use_ssc(struct drm_i915_private *i915)
{
	if (i915->params.panel_use_ssc >= 0)
		return i915->params.panel_use_ssc != 0;
	return i915->vbt.lvds_use_ssc
		&& !(i915->quirks & QUIRK_LVDS_SSC_DISABLE);
}

49 50 51
const struct drm_display_mode *
intel_panel_preferred_fixed_mode(struct intel_connector *connector)
{
52 53
	return list_first_entry_or_null(&connector->panel.fixed_modes,
					struct drm_display_mode, head);
54 55
}

56 57 58 59
const struct drm_display_mode *
intel_panel_fixed_mode(struct intel_connector *connector,
		       const struct drm_display_mode *mode)
{
60 61 62 63 64 65 66 67 68 69 70 71
	const struct drm_display_mode *fixed_mode, *best_mode = NULL;
	int vrefresh = drm_mode_vrefresh(mode);

	/* pick the fixed_mode that is closest in terms of vrefresh */
	list_for_each_entry(fixed_mode, &connector->panel.fixed_modes, head) {
		if (!best_mode ||
		    abs(drm_mode_vrefresh(fixed_mode) - vrefresh) <
		    abs(drm_mode_vrefresh(best_mode) - vrefresh))
			best_mode = fixed_mode;
	}

	return best_mode;
72 73 74 75 76 77
}

const struct drm_display_mode *
intel_panel_downclock_mode(struct intel_connector *connector,
			   const struct drm_display_mode *adjusted_mode)
{
78 79 80 81 82 83 84 85 86 87
	const struct drm_display_mode *fixed_mode, *best_mode = NULL;
	int vrefresh = drm_mode_vrefresh(adjusted_mode);

	/* pick the fixed_mode with the lowest refresh rate */
	list_for_each_entry(fixed_mode, &connector->panel.fixed_modes, head) {
		if (drm_mode_vrefresh(fixed_mode) < vrefresh) {
			vrefresh = drm_mode_vrefresh(fixed_mode);
			best_mode = fixed_mode;
		}
	}
88

89
	return best_mode;
90 91
}

92 93
int intel_panel_get_modes(struct intel_connector *connector)
{
94
	const struct drm_display_mode *fixed_mode;
95 96
	int num_modes = 0;

97
	list_for_each_entry(fixed_mode, &connector->panel.fixed_modes, head) {
98 99
		struct drm_display_mode *mode;

100
		mode = drm_mode_duplicate(connector->base.dev, fixed_mode);
101 102 103 104 105 106
		if (mode) {
			drm_mode_probed_add(&connector->base, mode);
			num_modes++;
		}
	}

107 108 109
	return num_modes;
}

110 111 112 113
enum drrs_type intel_panel_drrs_type(struct intel_connector *connector)
{
	struct drm_i915_private *i915 = to_i915(connector->base.dev);

114 115
	if (list_empty(&connector->panel.fixed_modes) ||
	    list_is_singular(&connector->panel.fixed_modes))
116 117 118 119 120
		return DRRS_TYPE_NONE;

	return i915->vbt.drrs_type;
}

121 122
int intel_panel_compute_config(struct intel_connector *connector,
			       struct drm_display_mode *adjusted_mode)
123
{
124 125
	const struct drm_display_mode *fixed_mode =
		intel_panel_fixed_mode(connector, adjusted_mode);
126 127 128 129

	if (!fixed_mode)
		return 0;

130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
	/*
	 * We don't want to lie too much to the user about the refresh
	 * rate they're going to get. But we have to allow a bit of latitude
	 * for Xorg since it likes to automagically cook up modes with slightly
	 * off refresh rates.
	 */
	if (abs(drm_mode_vrefresh(adjusted_mode) - drm_mode_vrefresh(fixed_mode)) > 1) {
		drm_dbg_kms(connector->base.dev,
			    "[CONNECTOR:%d:%s] Requested mode vrefresh (%d Hz) does not match fixed mode vrefresh (%d Hz)\n",
			    connector->base.base.id, connector->base.name,
			    drm_mode_vrefresh(adjusted_mode), drm_mode_vrefresh(fixed_mode));

		return -EINVAL;
	}

145
	drm_mode_copy(adjusted_mode, fixed_mode);
146 147

	drm_mode_set_crtcinfo(adjusted_mode, 0);
148 149

	return 0;
150 151
}

152 153 154 155 156 157 158 159 160 161
static bool is_downclock_mode(const struct drm_display_mode *downclock_mode,
			      const struct drm_display_mode *fixed_mode)
{
	return drm_mode_match(downclock_mode, fixed_mode,
			      DRM_MODE_MATCH_TIMINGS |
			      DRM_MODE_MATCH_FLAGS |
			      DRM_MODE_MATCH_3D_FLAGS) &&
		downclock_mode->clock < fixed_mode->clock;
}

162
static void intel_panel_add_edid_downclock_mode(struct intel_connector *connector)
J
Jani Nikula 已提交
163
{
164
	struct drm_i915_private *dev_priv = to_i915(connector->base.dev);
165 166
	const struct drm_display_mode *fixed_mode =
		intel_panel_preferred_fixed_mode(connector);
167
	const struct drm_display_mode *scan, *best_mode = NULL;
168
	struct drm_display_mode *downclock_mode;
169
	int best_clock = fixed_mode->clock;
J
Jani Nikula 已提交
170

171
	list_for_each_entry(scan, &connector->base.probed_modes, head) {
J
Jani Nikula 已提交
172 173 174 175 176 177 178
		/*
		 * If one mode has the same resolution with the fixed_panel
		 * mode while they have the different refresh rate, it means
		 * that the reduced downclock is found. In such
		 * case we can set the different FPx0/1 to dynamically select
		 * between low and high frequency.
		 */
179 180 181 182 183 184 185 186
		if (is_downclock_mode(scan, fixed_mode) &&
		    scan->clock < best_clock) {
			/*
			 * The downclock is already found. But we
			 * expect to find the lower downclock.
			 */
			best_clock = scan->clock;
			best_mode = scan;
J
Jani Nikula 已提交
187 188 189
		}
	}

190
	if (!best_mode)
191
		return;
192 193 194

	downclock_mode = drm_mode_duplicate(&dev_priv->drm, best_mode);
	if (!downclock_mode)
195
		return;
196

197
	drm_dbg_kms(&dev_priv->drm,
198 199 200
		    "[CONNECTOR:%d:%s] using downclock mode from EDID: " DRM_MODE_FMT "\n",
		    connector->base.base.id, connector->base.name,
		    DRM_MODE_ARG(downclock_mode));
201

202
	list_add_tail(&downclock_mode->head, &connector->panel.fixed_modes);
J
Jani Nikula 已提交
203 204
}

205
static void intel_panel_add_edid_fixed_mode(struct intel_connector *connector)
206 207 208
{
	struct drm_i915_private *dev_priv = to_i915(connector->base.dev);
	const struct drm_display_mode *scan;
209 210 211
	struct drm_display_mode *fixed_mode;

	if (list_empty(&connector->base.probed_modes))
212
		return;
213 214 215 216 217 218 219 220

	/* prefer fixed mode from EDID if available */
	list_for_each_entry(scan, &connector->base.probed_modes, head) {
		if ((scan->type & DRM_MODE_TYPE_PREFERRED) == 0)
			continue;

		fixed_mode = drm_mode_duplicate(&dev_priv->drm, scan);
		if (!fixed_mode)
221
			return;
222

223
		drm_dbg_kms(&dev_priv->drm,
224 225 226
			    "[CONNECTOR:%d:%s] using preferred mode from EDID: " DRM_MODE_FMT "\n",
			    connector->base.base.id, connector->base.name,
			    DRM_MODE_ARG(fixed_mode));
227

228 229
		list_add_tail(&fixed_mode->head, &connector->panel.fixed_modes);
		return;
230 231
	}

232 233 234 235
	scan = list_first_entry(&connector->base.probed_modes,
				typeof(*scan), head);
	fixed_mode = drm_mode_duplicate(&dev_priv->drm, scan);
	if (!fixed_mode)
236
		return;
237 238

	fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
239
	drm_dbg_kms(&dev_priv->drm,
240 241 242
		    "[CONNECTOR:%d:%s] using first mode from EDID: " DRM_MODE_FMT "\n",
		    connector->base.base.id, connector->base.name,
		    DRM_MODE_ARG(fixed_mode));
243

244
	list_add_tail(&fixed_mode->head, &connector->panel.fixed_modes);
245 246
}

247 248 249 250 251 252 253
void intel_panel_add_edid_fixed_modes(struct intel_connector *connector, bool has_drrs)
{
	intel_panel_add_edid_fixed_mode(connector);
	if (intel_panel_preferred_fixed_mode(connector) && has_drrs)
		intel_panel_add_edid_downclock_mode(connector);
}

254 255 256
static void intel_panel_add_fixed_mode(struct intel_connector *connector,
				       struct drm_display_mode *fixed_mode,
				       const char *type)
257
{
258
	struct drm_i915_private *i915 = to_i915(connector->base.dev);
259 260 261
	struct drm_display_info *info = &connector->base.display_info;

	if (!fixed_mode)
262
		return;
263

264
	fixed_mode->type |= DRM_MODE_TYPE_PREFERRED | DRM_MODE_TYPE_DRIVER;
265 266 267 268

	info->width_mm = fixed_mode->width_mm;
	info->height_mm = fixed_mode->height_mm;

269 270 271 272
	drm_dbg_kms(&i915->drm, "[CONNECTOR:%d:%s] using %s fixed mode: " DRM_MODE_FMT "\n",
		    connector->base.base.id, connector->base.name, type,
		    DRM_MODE_ARG(fixed_mode));

273
	list_add_tail(&fixed_mode->head, &connector->panel.fixed_modes);
274 275
}

276
void intel_panel_add_vbt_lfp_fixed_mode(struct intel_connector *connector)
277 278
{
	struct drm_i915_private *i915 = to_i915(connector->base.dev);
279
	const struct drm_display_mode *mode;
280

281 282
	mode = i915->vbt.lfp_lvds_vbt_mode;
	if (!mode)
283
		return;
284

285 286 287
	intel_panel_add_fixed_mode(connector,
				   drm_mode_duplicate(&i915->drm, mode),
				   "VBT LFP");
288 289
}

290
void intel_panel_add_vbt_sdvo_fixed_mode(struct intel_connector *connector)
291 292
{
	struct drm_i915_private *i915 = to_i915(connector->base.dev);
293
	const struct drm_display_mode *mode;
294

295 296
	mode = i915->vbt.sdvo_lvds_vbt_mode;
	if (!mode)
297
		return;
298

299 300 301 302
	intel_panel_add_fixed_mode(connector,
				   drm_mode_duplicate(&i915->drm, mode),
				   "VBT SDVO");
}
303

304 305 306 307 308 309
void intel_panel_add_encoder_fixed_mode(struct intel_connector *connector,
					struct intel_encoder *encoder)
{
	intel_panel_add_fixed_mode(connector,
				   intel_encoder_current_mode(encoder),
				   "current (BIOS)");
310 311
}

312
/* adjusted_mode has been preset to be the panel's fixed mode */
313 314
static int pch_panel_fitting(struct intel_crtc_state *crtc_state,
			     const struct drm_connector_state *conn_state)
315
{
316 317
	const struct drm_display_mode *adjusted_mode =
		&crtc_state->hw.adjusted_mode;
318 319
	int pipe_src_w = drm_rect_width(&crtc_state->pipe_src);
	int pipe_src_h = drm_rect_height(&crtc_state->pipe_src);
320
	int x, y, width, height;
321 322

	/* Native modes don't need fitting */
323 324
	if (adjusted_mode->crtc_hdisplay == pipe_src_w &&
	    adjusted_mode->crtc_vdisplay == pipe_src_h &&
325
	    crtc_state->output_format != INTEL_OUTPUT_FORMAT_YCBCR420)
326
		return 0;
327

328
	switch (conn_state->scaling_mode) {
329
	case DRM_MODE_SCALE_CENTER:
330 331
		width = pipe_src_w;
		height = pipe_src_h;
332 333
		x = (adjusted_mode->crtc_hdisplay - width + 1)/2;
		y = (adjusted_mode->crtc_vdisplay - height + 1)/2;
334 335 336 337 338
		break;

	case DRM_MODE_SCALE_ASPECT:
		/* Scale but preserve the aspect ratio */
		{
339 340
			u32 scaled_width = adjusted_mode->crtc_hdisplay * pipe_src_h;
			u32 scaled_height = pipe_src_w * adjusted_mode->crtc_vdisplay;
341
			if (scaled_width > scaled_height) { /* pillar */
342
				width = scaled_height / pipe_src_h;
343
				if (width & 1)
344
					width++;
345
				x = (adjusted_mode->crtc_hdisplay - width + 1) / 2;
346
				y = 0;
347
				height = adjusted_mode->crtc_vdisplay;
348
			} else if (scaled_width < scaled_height) { /* letter */
349
				height = scaled_width / pipe_src_w;
350 351
				if (height & 1)
				    height++;
352
				y = (adjusted_mode->crtc_vdisplay - height + 1) / 2;
353
				x = 0;
354
				width = adjusted_mode->crtc_hdisplay;
355 356
			} else {
				x = y = 0;
357 358
				width = adjusted_mode->crtc_hdisplay;
				height = adjusted_mode->crtc_vdisplay;
359 360 361 362
			}
		}
		break;

363
	case DRM_MODE_SCALE_NONE:
364 365
		WARN_ON(adjusted_mode->crtc_hdisplay != pipe_src_w);
		WARN_ON(adjusted_mode->crtc_vdisplay != pipe_src_h);
366
		fallthrough;
367 368
	case DRM_MODE_SCALE_FULLSCREEN:
		x = y = 0;
369 370
		width = adjusted_mode->crtc_hdisplay;
		height = adjusted_mode->crtc_vdisplay;
371
		break;
372 373

	default:
374
		MISSING_CASE(conn_state->scaling_mode);
375
		return -EINVAL;
376 377
	}

378
	drm_rect_init(&crtc_state->pch_pfit.dst,
379
		      x, y, width, height);
380
	crtc_state->pch_pfit.enabled = true;
381 382

	return 0;
383
}
384

385
static void
386
centre_horizontally(struct drm_display_mode *adjusted_mode,
387 388 389 390 391
		    int width)
{
	u32 border, sync_pos, blank_width, sync_width;

	/* keep the hsync and hblank widths constant */
392 393
	sync_width = adjusted_mode->crtc_hsync_end - adjusted_mode->crtc_hsync_start;
	blank_width = adjusted_mode->crtc_hblank_end - adjusted_mode->crtc_hblank_start;
394 395
	sync_pos = (blank_width - sync_width + 1) / 2;

396
	border = (adjusted_mode->crtc_hdisplay - width + 1) / 2;
397 398
	border += border & 1; /* make the border even */

399 400 401
	adjusted_mode->crtc_hdisplay = width;
	adjusted_mode->crtc_hblank_start = width + border;
	adjusted_mode->crtc_hblank_end = adjusted_mode->crtc_hblank_start + blank_width;
402

403 404
	adjusted_mode->crtc_hsync_start = adjusted_mode->crtc_hblank_start + sync_pos;
	adjusted_mode->crtc_hsync_end = adjusted_mode->crtc_hsync_start + sync_width;
405 406 407
}

static void
408
centre_vertically(struct drm_display_mode *adjusted_mode,
409 410 411 412 413
		  int height)
{
	u32 border, sync_pos, blank_width, sync_width;

	/* keep the vsync and vblank widths constant */
414 415
	sync_width = adjusted_mode->crtc_vsync_end - adjusted_mode->crtc_vsync_start;
	blank_width = adjusted_mode->crtc_vblank_end - adjusted_mode->crtc_vblank_start;
416 417
	sync_pos = (blank_width - sync_width + 1) / 2;

418
	border = (adjusted_mode->crtc_vdisplay - height + 1) / 2;
419

420 421 422
	adjusted_mode->crtc_vdisplay = height;
	adjusted_mode->crtc_vblank_start = height + border;
	adjusted_mode->crtc_vblank_end = adjusted_mode->crtc_vblank_start + blank_width;
423

424 425
	adjusted_mode->crtc_vsync_start = adjusted_mode->crtc_vblank_start + sync_pos;
	adjusted_mode->crtc_vsync_end = adjusted_mode->crtc_vsync_start + sync_width;
426 427
}

428
static u32 panel_fitter_scaling(u32 source, u32 target)
429 430 431 432 433 434 435 436 437 438 439 440
{
	/*
	 * Floating point operation is not supported. So the FACTOR
	 * is defined, which can avoid the floating point computation
	 * when calculating the panel ratio.
	 */
#define ACCURACY 12
#define FACTOR (1 << ACCURACY)
	u32 ratio = source * FACTOR / target;
	return (FACTOR * ratio + FACTOR/2) / FACTOR;
}

441
static void i965_scale_aspect(struct intel_crtc_state *crtc_state,
442 443
			      u32 *pfit_control)
{
444 445
	const struct drm_display_mode *adjusted_mode =
		&crtc_state->hw.adjusted_mode;
446 447 448 449
	int pipe_src_w = drm_rect_width(&crtc_state->pipe_src);
	int pipe_src_h = drm_rect_height(&crtc_state->pipe_src);
	u32 scaled_width = adjusted_mode->crtc_hdisplay * pipe_src_h;
	u32 scaled_height = pipe_src_w * adjusted_mode->crtc_vdisplay;
450 451 452 453 454 455 456 457

	/* 965+ is easy, it does everything in hw */
	if (scaled_width > scaled_height)
		*pfit_control |= PFIT_ENABLE |
			PFIT_SCALING_PILLAR;
	else if (scaled_width < scaled_height)
		*pfit_control |= PFIT_ENABLE |
			PFIT_SCALING_LETTER;
458
	else if (adjusted_mode->crtc_hdisplay != pipe_src_w)
459 460 461
		*pfit_control |= PFIT_ENABLE | PFIT_SCALING_AUTO;
}

462
static void i9xx_scale_aspect(struct intel_crtc_state *crtc_state,
463 464 465
			      u32 *pfit_control, u32 *pfit_pgm_ratios,
			      u32 *border)
{
466
	struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
467 468 469 470
	int pipe_src_w = drm_rect_width(&crtc_state->pipe_src);
	int pipe_src_h = drm_rect_height(&crtc_state->pipe_src);
	u32 scaled_width = adjusted_mode->crtc_hdisplay * pipe_src_h;
	u32 scaled_height = pipe_src_w * adjusted_mode->crtc_vdisplay;
471 472 473 474 475 476 477 478 479
	u32 bits;

	/*
	 * For earlier chips we have to calculate the scaling
	 * ratio by hand and program it into the
	 * PFIT_PGM_RATIO register
	 */
	if (scaled_width > scaled_height) { /* pillar */
		centre_horizontally(adjusted_mode,
480
				    scaled_height / pipe_src_h);
481 482

		*border = LVDS_BORDER_ENABLE;
483 484
		if (pipe_src_h != adjusted_mode->crtc_vdisplay) {
			bits = panel_fitter_scaling(pipe_src_h,
485
						    adjusted_mode->crtc_vdisplay);
486 487 488 489 490 491 492 493 494

			*pfit_pgm_ratios |= (bits << PFIT_HORIZ_SCALE_SHIFT |
					     bits << PFIT_VERT_SCALE_SHIFT);
			*pfit_control |= (PFIT_ENABLE |
					  VERT_INTERP_BILINEAR |
					  HORIZ_INTERP_BILINEAR);
		}
	} else if (scaled_width < scaled_height) { /* letter */
		centre_vertically(adjusted_mode,
495
				  scaled_width / pipe_src_w);
496 497

		*border = LVDS_BORDER_ENABLE;
498 499
		if (pipe_src_w != adjusted_mode->crtc_hdisplay) {
			bits = panel_fitter_scaling(pipe_src_w,
500
						    adjusted_mode->crtc_hdisplay);
501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516

			*pfit_pgm_ratios |= (bits << PFIT_HORIZ_SCALE_SHIFT |
					     bits << PFIT_VERT_SCALE_SHIFT);
			*pfit_control |= (PFIT_ENABLE |
					  VERT_INTERP_BILINEAR |
					  HORIZ_INTERP_BILINEAR);
		}
	} else {
		/* Aspects match, Let hw scale both directions */
		*pfit_control |= (PFIT_ENABLE |
				  VERT_AUTO_SCALE | HORIZ_AUTO_SCALE |
				  VERT_INTERP_BILINEAR |
				  HORIZ_INTERP_BILINEAR);
	}
}

517 518
static int gmch_panel_fitting(struct intel_crtc_state *crtc_state,
			      const struct drm_connector_state *conn_state)
519
{
520 521
	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
	struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
522
	u32 pfit_control = 0, pfit_pgm_ratios = 0, border = 0;
523
	struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
524 525
	int pipe_src_w = drm_rect_width(&crtc_state->pipe_src);
	int pipe_src_h = drm_rect_height(&crtc_state->pipe_src);
526 527

	/* Native modes don't need fitting */
528 529
	if (adjusted_mode->crtc_hdisplay == pipe_src_w &&
	    adjusted_mode->crtc_vdisplay == pipe_src_h)
530 531
		goto out;

532
	switch (conn_state->scaling_mode) {
533 534 535 536 537
	case DRM_MODE_SCALE_CENTER:
		/*
		 * For centered modes, we have to calculate border widths &
		 * heights and modify the values programmed into the CRTC.
		 */
538 539
		centre_horizontally(adjusted_mode, pipe_src_w);
		centre_vertically(adjusted_mode, pipe_src_h);
540 541 542 543
		border = LVDS_BORDER_ENABLE;
		break;
	case DRM_MODE_SCALE_ASPECT:
		/* Scale but preserve the aspect ratio */
544
		if (DISPLAY_VER(dev_priv) >= 4)
545
			i965_scale_aspect(crtc_state, &pfit_control);
546
		else
547
			i9xx_scale_aspect(crtc_state, &pfit_control,
548
					  &pfit_pgm_ratios, &border);
549 550 551 552 553 554
		break;
	case DRM_MODE_SCALE_FULLSCREEN:
		/*
		 * Full scaling, even if it changes the aspect ratio.
		 * Fortunately this is all done for us in hw.
		 */
555 556
		if (pipe_src_h != adjusted_mode->crtc_vdisplay ||
		    pipe_src_w != adjusted_mode->crtc_hdisplay) {
557
			pfit_control |= PFIT_ENABLE;
558
			if (DISPLAY_VER(dev_priv) >= 4)
559 560 561 562 563 564 565 566
				pfit_control |= PFIT_SCALING_AUTO;
			else
				pfit_control |= (VERT_AUTO_SCALE |
						 VERT_INTERP_BILINEAR |
						 HORIZ_AUTO_SCALE |
						 HORIZ_INTERP_BILINEAR);
		}
		break;
567
	default:
568
		MISSING_CASE(conn_state->scaling_mode);
569
		return -EINVAL;
570 571 572 573
	}

	/* 965+ wants fuzzy fitting */
	/* FIXME: handle multiple panels by failing gracefully */
574
	if (DISPLAY_VER(dev_priv) >= 4)
575
		pfit_control |= PFIT_PIPE(crtc->pipe) | PFIT_FILTER_FUZZY;
576 577 578 579 580 581 582

out:
	if ((pfit_control & PFIT_ENABLE) == 0) {
		pfit_control = 0;
		pfit_pgm_ratios = 0;
	}

583
	/* Make sure pre-965 set dither correctly for 18bpp panels. */
584
	if (DISPLAY_VER(dev_priv) < 4 && crtc_state->pipe_bpp == 18)
585 586
		pfit_control |= PANEL_8TO6_DITHER_ENABLE;

587 588 589
	crtc_state->gmch_pfit.control = pfit_control;
	crtc_state->gmch_pfit.pgm_ratios = pfit_pgm_ratios;
	crtc_state->gmch_pfit.lvds_border_bits = border;
590 591

	return 0;
592 593
}

594 595 596 597 598 599 600 601 602 603 604 605
int intel_panel_fitting(struct intel_crtc_state *crtc_state,
			const struct drm_connector_state *conn_state)
{
	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
	struct drm_i915_private *i915 = to_i915(crtc->base.dev);

	if (HAS_GMCH(i915))
		return gmch_panel_fitting(crtc_state, conn_state);
	else
		return pch_panel_fitting(crtc_state, conn_state);
}

606 607 608 609 610 611 612 613 614 615 616
enum drm_connector_status
intel_panel_detect(struct drm_connector *connector, bool force)
{
	struct drm_i915_private *i915 = to_i915(connector->dev);

	if (!INTEL_DISPLAY_ENABLED(i915))
		return connector_status_disconnected;

	return connector_status_connected;
}

617 618 619 620
enum drm_mode_status
intel_panel_mode_valid(struct intel_connector *connector,
		       const struct drm_display_mode *mode)
{
621 622
	const struct drm_display_mode *fixed_mode =
		intel_panel_fixed_mode(connector, mode);
623 624 625 626 627 628 629 630 631 632

	if (!fixed_mode)
		return MODE_OK;

	if (mode->hdisplay != fixed_mode->hdisplay)
		return MODE_PANEL;

	if (mode->vdisplay != fixed_mode->vdisplay)
		return MODE_PANEL;

633 634 635
	if (drm_mode_vrefresh(mode) != drm_mode_vrefresh(fixed_mode))
		return MODE_PANEL;

636 637 638
	return MODE_OK;
}

639
int intel_panel_init(struct intel_connector *connector)
640
{
641 642
	struct intel_panel *panel = &connector->panel;

643
	intel_backlight_init_funcs(panel);
644

645 646 647 648 649
	drm_dbg_kms(connector->base.dev,
		    "[CONNECTOR:%d:%s] DRRS type: %s\n",
		    connector->base.base.id, connector->base.name,
		    intel_drrs_type_str(intel_panel_drrs_type(connector)));

650 651 652
	return 0;
}

653
void intel_panel_fini(struct intel_connector *connector)
654
{
655
	struct intel_panel *panel = &connector->panel;
656
	struct drm_display_mode *fixed_mode, *next;
657

658
	intel_backlight_destroy(panel);
659

660 661
	list_for_each_entry_safe(fixed_mode, next, &panel->fixed_modes, head) {
		list_del(&fixed_mode->head);
662
		drm_mode_destroy(connector->base.dev, fixed_mode);
663
	}
664
}