intel_panel.c 16.0 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_panel.h"
39

40 41 42 43 44 45 46 47
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);
}

48 49
void intel_panel_fixed_mode(const struct drm_display_mode *fixed_mode,
			    struct drm_display_mode *adjusted_mode)
50
{
51
	drm_mode_copy(adjusted_mode, fixed_mode);
52 53

	drm_mode_set_crtcinfo(adjusted_mode, 0);
54 55
}

56 57 58 59 60 61 62 63 64 65
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;
}

J
Jani Nikula 已提交
66
struct drm_display_mode *
67 68
intel_panel_edid_downclock_mode(struct intel_connector *connector,
				const struct drm_display_mode *fixed_mode)
J
Jani Nikula 已提交
69
{
70
	struct drm_i915_private *dev_priv = to_i915(connector->base.dev);
71
	const struct drm_display_mode *scan, *best_mode = NULL;
72
	struct drm_display_mode *downclock_mode;
73
	int best_clock = fixed_mode->clock;
J
Jani Nikula 已提交
74

75
	list_for_each_entry(scan, &connector->base.probed_modes, head) {
J
Jani Nikula 已提交
76 77 78 79 80 81 82
		/*
		 * 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.
		 */
83 84 85 86 87 88 89 90
		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 已提交
91 92 93
		}
	}

94 95 96 97 98 99 100
	if (!best_mode)
		return NULL;

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

101 102 103
	drm_dbg_kms(&dev_priv->drm,
		    "[CONNECTOR:%d:%s] using downclock mode from EDID: ",
		    connector->base.base.id, connector->base.name);
104
	drm_mode_debug_printmodeline(downclock_mode);
105

106
	return downclock_mode;
J
Jani Nikula 已提交
107 108
}

109 110 111 112 113
struct drm_display_mode *
intel_panel_edid_fixed_mode(struct intel_connector *connector)
{
	struct drm_i915_private *dev_priv = to_i915(connector->base.dev);
	const struct drm_display_mode *scan;
114 115 116 117
	struct drm_display_mode *fixed_mode;

	if (list_empty(&connector->base.probed_modes))
		return NULL;
118 119 120 121 122 123 124 125 126 127

	/* 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)
			return NULL;

128 129 130
		drm_dbg_kms(&dev_priv->drm,
			    "[CONNECTOR:%d:%s] using preferred mode from EDID: ",
			    connector->base.base.id, connector->base.name);
131 132 133 134 135
		drm_mode_debug_printmodeline(fixed_mode);

		return fixed_mode;
	}

136 137 138 139 140 141 142 143 144
	scan = list_first_entry(&connector->base.probed_modes,
				typeof(*scan), head);

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

	fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;

145 146 147
	drm_dbg_kms(&dev_priv->drm,
		    "[CONNECTOR:%d:%s] using first mode from EDID: ",
		    connector->base.base.id, connector->base.name);
148 149 150
	drm_mode_debug_printmodeline(fixed_mode);

	return fixed_mode;
151 152
}

153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
struct drm_display_mode *
intel_panel_vbt_fixed_mode(struct intel_connector *connector)
{
	struct drm_i915_private *dev_priv = to_i915(connector->base.dev);
	struct drm_display_info *info = &connector->base.display_info;
	struct drm_display_mode *fixed_mode;

	if (!dev_priv->vbt.lfp_lvds_vbt_mode)
		return NULL;

	fixed_mode = drm_mode_duplicate(&dev_priv->drm,
					dev_priv->vbt.lfp_lvds_vbt_mode);
	if (!fixed_mode)
		return NULL;

	fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;

170 171
	drm_dbg_kms(&dev_priv->drm, "[CONNECTOR:%d:%s] using mode from VBT: ",
		    connector->base.base.id, connector->base.name);
172 173 174 175 176 177 178 179
	drm_mode_debug_printmodeline(fixed_mode);

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

	return fixed_mode;
}

180
/* adjusted_mode has been preset to be the panel's fixed mode */
181 182
static int pch_panel_fitting(struct intel_crtc_state *crtc_state,
			     const struct drm_connector_state *conn_state)
183
{
184 185
	const struct drm_display_mode *adjusted_mode =
		&crtc_state->hw.adjusted_mode;
186
	int x, y, width, height;
187 188

	/* Native modes don't need fitting */
189 190 191
	if (adjusted_mode->crtc_hdisplay == crtc_state->pipe_src_w &&
	    adjusted_mode->crtc_vdisplay == crtc_state->pipe_src_h &&
	    crtc_state->output_format != INTEL_OUTPUT_FORMAT_YCBCR420)
192
		return 0;
193

194
	switch (conn_state->scaling_mode) {
195
	case DRM_MODE_SCALE_CENTER:
196 197
		width = crtc_state->pipe_src_w;
		height = crtc_state->pipe_src_h;
198 199
		x = (adjusted_mode->crtc_hdisplay - width + 1)/2;
		y = (adjusted_mode->crtc_vdisplay - height + 1)/2;
200 201 202 203 204
		break;

	case DRM_MODE_SCALE_ASPECT:
		/* Scale but preserve the aspect ratio */
		{
205
			u32 scaled_width = adjusted_mode->crtc_hdisplay
206 207
				* crtc_state->pipe_src_h;
			u32 scaled_height = crtc_state->pipe_src_w
208
				* adjusted_mode->crtc_vdisplay;
209
			if (scaled_width > scaled_height) { /* pillar */
210
				width = scaled_height / crtc_state->pipe_src_h;
211
				if (width & 1)
212
					width++;
213
				x = (adjusted_mode->crtc_hdisplay - width + 1) / 2;
214
				y = 0;
215
				height = adjusted_mode->crtc_vdisplay;
216
			} else if (scaled_width < scaled_height) { /* letter */
217
				height = scaled_width / crtc_state->pipe_src_w;
218 219
				if (height & 1)
				    height++;
220
				y = (adjusted_mode->crtc_vdisplay - height + 1) / 2;
221
				x = 0;
222
				width = adjusted_mode->crtc_hdisplay;
223 224
			} else {
				x = y = 0;
225 226
				width = adjusted_mode->crtc_hdisplay;
				height = adjusted_mode->crtc_vdisplay;
227 228 229 230
			}
		}
		break;

231 232 233
	case DRM_MODE_SCALE_NONE:
		WARN_ON(adjusted_mode->crtc_hdisplay != crtc_state->pipe_src_w);
		WARN_ON(adjusted_mode->crtc_vdisplay != crtc_state->pipe_src_h);
234
		fallthrough;
235 236
	case DRM_MODE_SCALE_FULLSCREEN:
		x = y = 0;
237 238
		width = adjusted_mode->crtc_hdisplay;
		height = adjusted_mode->crtc_vdisplay;
239
		break;
240 241

	default:
242
		MISSING_CASE(conn_state->scaling_mode);
243
		return -EINVAL;
244 245
	}

246
	drm_rect_init(&crtc_state->pch_pfit.dst,
247
		      x, y, width, height);
248
	crtc_state->pch_pfit.enabled = true;
249 250

	return 0;
251
}
252

253
static void
254
centre_horizontally(struct drm_display_mode *adjusted_mode,
255 256 257 258 259
		    int width)
{
	u32 border, sync_pos, blank_width, sync_width;

	/* keep the hsync and hblank widths constant */
260 261
	sync_width = adjusted_mode->crtc_hsync_end - adjusted_mode->crtc_hsync_start;
	blank_width = adjusted_mode->crtc_hblank_end - adjusted_mode->crtc_hblank_start;
262 263
	sync_pos = (blank_width - sync_width + 1) / 2;

264
	border = (adjusted_mode->crtc_hdisplay - width + 1) / 2;
265 266
	border += border & 1; /* make the border even */

267 268 269
	adjusted_mode->crtc_hdisplay = width;
	adjusted_mode->crtc_hblank_start = width + border;
	adjusted_mode->crtc_hblank_end = adjusted_mode->crtc_hblank_start + blank_width;
270

271 272
	adjusted_mode->crtc_hsync_start = adjusted_mode->crtc_hblank_start + sync_pos;
	adjusted_mode->crtc_hsync_end = adjusted_mode->crtc_hsync_start + sync_width;
273 274 275
}

static void
276
centre_vertically(struct drm_display_mode *adjusted_mode,
277 278 279 280 281
		  int height)
{
	u32 border, sync_pos, blank_width, sync_width;

	/* keep the vsync and vblank widths constant */
282 283
	sync_width = adjusted_mode->crtc_vsync_end - adjusted_mode->crtc_vsync_start;
	blank_width = adjusted_mode->crtc_vblank_end - adjusted_mode->crtc_vblank_start;
284 285
	sync_pos = (blank_width - sync_width + 1) / 2;

286
	border = (adjusted_mode->crtc_vdisplay - height + 1) / 2;
287

288 289 290
	adjusted_mode->crtc_vdisplay = height;
	adjusted_mode->crtc_vblank_start = height + border;
	adjusted_mode->crtc_vblank_end = adjusted_mode->crtc_vblank_start + blank_width;
291

292 293
	adjusted_mode->crtc_vsync_start = adjusted_mode->crtc_vblank_start + sync_pos;
	adjusted_mode->crtc_vsync_end = adjusted_mode->crtc_vsync_start + sync_width;
294 295
}

296
static u32 panel_fitter_scaling(u32 source, u32 target)
297 298 299 300 301 302 303 304 305 306 307 308
{
	/*
	 * 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;
}

309
static void i965_scale_aspect(struct intel_crtc_state *crtc_state,
310 311
			      u32 *pfit_control)
{
312 313
	const struct drm_display_mode *adjusted_mode =
		&crtc_state->hw.adjusted_mode;
314
	u32 scaled_width = adjusted_mode->crtc_hdisplay *
315 316
		crtc_state->pipe_src_h;
	u32 scaled_height = crtc_state->pipe_src_w *
317
		adjusted_mode->crtc_vdisplay;
318 319 320 321 322 323 324 325

	/* 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;
326
	else if (adjusted_mode->crtc_hdisplay != crtc_state->pipe_src_w)
327 328 329
		*pfit_control |= PFIT_ENABLE | PFIT_SCALING_AUTO;
}

330
static void i9xx_scale_aspect(struct intel_crtc_state *crtc_state,
331 332 333
			      u32 *pfit_control, u32 *pfit_pgm_ratios,
			      u32 *border)
{
334
	struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
335
	u32 scaled_width = adjusted_mode->crtc_hdisplay *
336 337
		crtc_state->pipe_src_h;
	u32 scaled_height = crtc_state->pipe_src_w *
338
		adjusted_mode->crtc_vdisplay;
339 340 341 342 343 344 345 346 347 348
	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,
				    scaled_height /
349
				    crtc_state->pipe_src_h);
350 351

		*border = LVDS_BORDER_ENABLE;
352 353
		if (crtc_state->pipe_src_h != adjusted_mode->crtc_vdisplay) {
			bits = panel_fitter_scaling(crtc_state->pipe_src_h,
354
						    adjusted_mode->crtc_vdisplay);
355 356 357 358 359 360 361 362 363 364

			*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,
				  scaled_width /
365
				  crtc_state->pipe_src_w);
366 367

		*border = LVDS_BORDER_ENABLE;
368 369
		if (crtc_state->pipe_src_w != adjusted_mode->crtc_hdisplay) {
			bits = panel_fitter_scaling(crtc_state->pipe_src_w,
370
						    adjusted_mode->crtc_hdisplay);
371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386

			*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);
	}
}

387 388
static int gmch_panel_fitting(struct intel_crtc_state *crtc_state,
			      const struct drm_connector_state *conn_state)
389
{
390 391
	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
	struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
392
	u32 pfit_control = 0, pfit_pgm_ratios = 0, border = 0;
393
	struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
394 395

	/* Native modes don't need fitting */
396 397
	if (adjusted_mode->crtc_hdisplay == crtc_state->pipe_src_w &&
	    adjusted_mode->crtc_vdisplay == crtc_state->pipe_src_h)
398 399
		goto out;

400
	switch (conn_state->scaling_mode) {
401 402 403 404 405
	case DRM_MODE_SCALE_CENTER:
		/*
		 * For centered modes, we have to calculate border widths &
		 * heights and modify the values programmed into the CRTC.
		 */
406 407
		centre_horizontally(adjusted_mode, crtc_state->pipe_src_w);
		centre_vertically(adjusted_mode, crtc_state->pipe_src_h);
408 409 410 411
		border = LVDS_BORDER_ENABLE;
		break;
	case DRM_MODE_SCALE_ASPECT:
		/* Scale but preserve the aspect ratio */
412
		if (DISPLAY_VER(dev_priv) >= 4)
413
			i965_scale_aspect(crtc_state, &pfit_control);
414
		else
415
			i9xx_scale_aspect(crtc_state, &pfit_control,
416
					  &pfit_pgm_ratios, &border);
417 418 419 420 421 422
		break;
	case DRM_MODE_SCALE_FULLSCREEN:
		/*
		 * Full scaling, even if it changes the aspect ratio.
		 * Fortunately this is all done for us in hw.
		 */
423 424
		if (crtc_state->pipe_src_h != adjusted_mode->crtc_vdisplay ||
		    crtc_state->pipe_src_w != adjusted_mode->crtc_hdisplay) {
425
			pfit_control |= PFIT_ENABLE;
426
			if (DISPLAY_VER(dev_priv) >= 4)
427 428 429 430 431 432 433 434
				pfit_control |= PFIT_SCALING_AUTO;
			else
				pfit_control |= (VERT_AUTO_SCALE |
						 VERT_INTERP_BILINEAR |
						 HORIZ_AUTO_SCALE |
						 HORIZ_INTERP_BILINEAR);
		}
		break;
435
	default:
436
		MISSING_CASE(conn_state->scaling_mode);
437
		return -EINVAL;
438 439 440 441
	}

	/* 965+ wants fuzzy fitting */
	/* FIXME: handle multiple panels by failing gracefully */
442
	if (DISPLAY_VER(dev_priv) >= 4)
443
		pfit_control |= PFIT_PIPE(crtc->pipe) | PFIT_FILTER_FUZZY;
444 445 446 447 448 449 450

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

451
	/* Make sure pre-965 set dither correctly for 18bpp panels. */
452
	if (DISPLAY_VER(dev_priv) < 4 && crtc_state->pipe_bpp == 18)
453 454
		pfit_control |= PANEL_8TO6_DITHER_ENABLE;

455 456 457
	crtc_state->gmch_pfit.control = pfit_control;
	crtc_state->gmch_pfit.pgm_ratios = pfit_pgm_ratios;
	crtc_state->gmch_pfit.lvds_border_bits = border;
458 459

	return 0;
460 461
}

462 463 464 465 466 467 468 469 470 471 472 473
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);
}

474 475 476 477 478 479 480 481 482 483 484
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;
}

485 486 487 488 489 490 491 492 493 494 495 496 497 498 499
enum drm_mode_status
intel_panel_mode_valid(struct intel_connector *connector,
		       const struct drm_display_mode *mode)
{
	const struct drm_display_mode *fixed_mode = connector->panel.fixed_mode;

	if (!fixed_mode)
		return MODE_OK;

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

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

500 501 502
	if (drm_mode_vrefresh(mode) != drm_mode_vrefresh(fixed_mode))
		return MODE_PANEL;

503 504 505
	return MODE_OK;
}

506
int intel_panel_init(struct intel_panel *panel,
507 508
		     struct drm_display_mode *fixed_mode,
		     struct drm_display_mode *downclock_mode)
509
{
510
	intel_backlight_init_funcs(panel);
511

512
	panel->fixed_mode = fixed_mode;
513
	panel->downclock_mode = downclock_mode;
514

515 516 517 518 519
	return 0;
}

void intel_panel_fini(struct intel_panel *panel)
{
520 521 522
	struct intel_connector *intel_connector =
		container_of(panel, struct intel_connector, panel);

523
	intel_backlight_destroy(panel);
524

525 526
	if (panel->fixed_mode)
		drm_mode_destroy(intel_connector->base.dev, panel->fixed_mode);
527 528 529 530

	if (panel->downclock_mode)
		drm_mode_destroy(intel_connector->base.dev,
				panel->downclock_mode);
531
}