intel_panel.c 41.8 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 32
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

33
#include <linux/kernel.h>
34
#include <linux/moduleparam.h>
35 36 37
#include "intel_drv.h"

void
38
intel_fixed_panel_mode(const struct drm_display_mode *fixed_mode,
39 40
		       struct drm_display_mode *adjusted_mode)
{
41
	drm_mode_copy(adjusted_mode, fixed_mode);
42 43

	drm_mode_set_crtcinfo(adjusted_mode, 0);
44 45
}

J
Jani Nikula 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 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
/**
 * intel_find_panel_downclock - find the reduced downclock for LVDS in EDID
 * @dev: drm device
 * @fixed_mode : panel native mode
 * @connector: LVDS/eDP connector
 *
 * Return downclock_avail
 * Find the reduced downclock for LVDS/eDP in EDID.
 */
struct drm_display_mode *
intel_find_panel_downclock(struct drm_device *dev,
			struct drm_display_mode *fixed_mode,
			struct drm_connector *connector)
{
	struct drm_display_mode *scan, *tmp_mode;
	int temp_downclock;

	temp_downclock = fixed_mode->clock;
	tmp_mode = NULL;

	list_for_each_entry(scan, &connector->probed_modes, head) {
		/*
		 * 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.
		 */
		if (scan->hdisplay == fixed_mode->hdisplay &&
		    scan->hsync_start == fixed_mode->hsync_start &&
		    scan->hsync_end == fixed_mode->hsync_end &&
		    scan->htotal == fixed_mode->htotal &&
		    scan->vdisplay == fixed_mode->vdisplay &&
		    scan->vsync_start == fixed_mode->vsync_start &&
		    scan->vsync_end == fixed_mode->vsync_end &&
		    scan->vtotal == fixed_mode->vtotal) {
			if (scan->clock < temp_downclock) {
				/*
				 * The downclock is already found. But we
				 * expect to find the lower downclock.
				 */
				temp_downclock = scan->clock;
				tmp_mode = scan;
			}
		}
	}

	if (temp_downclock < fixed_mode->clock)
		return drm_mode_duplicate(dev, tmp_mode);
	else
		return NULL;
}

99 100
/* adjusted_mode has been preset to be the panel's fixed mode */
void
101
intel_pch_panel_fitting(struct intel_crtc *intel_crtc,
102
			struct intel_crtc_state *pipe_config,
103
			int fitting_mode)
104
{
105
	struct drm_display_mode *adjusted_mode;
106 107
	int x, y, width, height;

108
	adjusted_mode = &pipe_config->base.adjusted_mode;
109

110 111 112
	x = y = width = height = 0;

	/* Native modes don't need fitting */
113 114
	if (adjusted_mode->hdisplay == pipe_config->pipe_src_w &&
	    adjusted_mode->vdisplay == pipe_config->pipe_src_h)
115 116 117 118
		goto done;

	switch (fitting_mode) {
	case DRM_MODE_SCALE_CENTER:
119 120
		width = pipe_config->pipe_src_w;
		height = pipe_config->pipe_src_h;
121 122 123 124 125 126 127
		x = (adjusted_mode->hdisplay - width + 1)/2;
		y = (adjusted_mode->vdisplay - height + 1)/2;
		break;

	case DRM_MODE_SCALE_ASPECT:
		/* Scale but preserve the aspect ratio */
		{
128 129 130 131
			u32 scaled_width = adjusted_mode->hdisplay
				* pipe_config->pipe_src_h;
			u32 scaled_height = pipe_config->pipe_src_w
				* adjusted_mode->vdisplay;
132
			if (scaled_width > scaled_height) { /* pillar */
133
				width = scaled_height / pipe_config->pipe_src_h;
134
				if (width & 1)
135
					width++;
136 137 138 139
				x = (adjusted_mode->hdisplay - width + 1) / 2;
				y = 0;
				height = adjusted_mode->vdisplay;
			} else if (scaled_width < scaled_height) { /* letter */
140
				height = scaled_width / pipe_config->pipe_src_w;
141 142
				if (height & 1)
				    height++;
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
				y = (adjusted_mode->vdisplay - height + 1) / 2;
				x = 0;
				width = adjusted_mode->hdisplay;
			} else {
				x = y = 0;
				width = adjusted_mode->hdisplay;
				height = adjusted_mode->vdisplay;
			}
		}
		break;

	case DRM_MODE_SCALE_FULLSCREEN:
		x = y = 0;
		width = adjusted_mode->hdisplay;
		height = adjusted_mode->vdisplay;
		break;
159 160 161 162

	default:
		WARN(1, "bad panel fit mode: %d\n", fitting_mode);
		return;
163 164 165
	}

done:
166 167
	pipe_config->pch_pfit.pos = (x << 16) | y;
	pipe_config->pch_pfit.size = (width << 16) | height;
168
	pipe_config->pch_pfit.enabled = pipe_config->pch_pfit.size != 0;
169
}
170

171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
static void
centre_horizontally(struct drm_display_mode *mode,
		    int width)
{
	u32 border, sync_pos, blank_width, sync_width;

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

	border = (mode->hdisplay - width + 1) / 2;
	border += border & 1; /* make the border even */

	mode->crtc_hdisplay = width;
	mode->crtc_hblank_start = width + border;
	mode->crtc_hblank_end = mode->crtc_hblank_start + blank_width;

	mode->crtc_hsync_start = mode->crtc_hblank_start + sync_pos;
	mode->crtc_hsync_end = mode->crtc_hsync_start + sync_width;
}

static void
centre_vertically(struct drm_display_mode *mode,
		  int height)
{
	u32 border, sync_pos, blank_width, sync_width;

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

	border = (mode->vdisplay - height + 1) / 2;

	mode->crtc_vdisplay = height;
	mode->crtc_vblank_start = height + border;
	mode->crtc_vblank_end = mode->crtc_vblank_start + blank_width;

	mode->crtc_vsync_start = mode->crtc_vblank_start + sync_pos;
	mode->crtc_vsync_end = mode->crtc_vsync_start + sync_width;
}

static inline u32 panel_fitter_scaling(u32 source, u32 target)
{
	/*
	 * 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;
}

227
static void i965_scale_aspect(struct intel_crtc_state *pipe_config,
228 229
			      u32 *pfit_control)
{
230
	struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
	u32 scaled_width = adjusted_mode->hdisplay *
		pipe_config->pipe_src_h;
	u32 scaled_height = pipe_config->pipe_src_w *
		adjusted_mode->vdisplay;

	/* 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;
	else if (adjusted_mode->hdisplay != pipe_config->pipe_src_w)
		*pfit_control |= PFIT_ENABLE | PFIT_SCALING_AUTO;
}

247
static void i9xx_scale_aspect(struct intel_crtc_state *pipe_config,
248 249 250
			      u32 *pfit_control, u32 *pfit_pgm_ratios,
			      u32 *border)
{
251
	struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
	u32 scaled_width = adjusted_mode->hdisplay *
		pipe_config->pipe_src_h;
	u32 scaled_height = pipe_config->pipe_src_w *
		adjusted_mode->vdisplay;
	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 /
				    pipe_config->pipe_src_h);

		*border = LVDS_BORDER_ENABLE;
		if (pipe_config->pipe_src_h != adjusted_mode->vdisplay) {
			bits = panel_fitter_scaling(pipe_config->pipe_src_h,
						    adjusted_mode->vdisplay);

			*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 /
				  pipe_config->pipe_src_w);

		*border = LVDS_BORDER_ENABLE;
		if (pipe_config->pipe_src_w != adjusted_mode->hdisplay) {
			bits = panel_fitter_scaling(pipe_config->pipe_src_w,
						    adjusted_mode->hdisplay);

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

304
void intel_gmch_panel_fitting(struct intel_crtc *intel_crtc,
305
			      struct intel_crtc_state *pipe_config,
306 307 308 309
			      int fitting_mode)
{
	struct drm_device *dev = intel_crtc->base.dev;
	u32 pfit_control = 0, pfit_pgm_ratios = 0, border = 0;
310
	struct drm_display_mode *adjusted_mode;
311

312
	adjusted_mode = &pipe_config->base.adjusted_mode;
313 314

	/* Native modes don't need fitting */
315 316
	if (adjusted_mode->hdisplay == pipe_config->pipe_src_w &&
	    adjusted_mode->vdisplay == pipe_config->pipe_src_h)
317 318 319 320 321 322 323 324
		goto out;

	switch (fitting_mode) {
	case DRM_MODE_SCALE_CENTER:
		/*
		 * For centered modes, we have to calculate border widths &
		 * heights and modify the values programmed into the CRTC.
		 */
325 326
		centre_horizontally(adjusted_mode, pipe_config->pipe_src_w);
		centre_vertically(adjusted_mode, pipe_config->pipe_src_h);
327 328 329 330
		border = LVDS_BORDER_ENABLE;
		break;
	case DRM_MODE_SCALE_ASPECT:
		/* Scale but preserve the aspect ratio */
331 332 333 334 335
		if (INTEL_INFO(dev)->gen >= 4)
			i965_scale_aspect(pipe_config, &pfit_control);
		else
			i9xx_scale_aspect(pipe_config, &pfit_control,
					  &pfit_pgm_ratios, &border);
336 337 338 339 340 341
		break;
	case DRM_MODE_SCALE_FULLSCREEN:
		/*
		 * Full scaling, even if it changes the aspect ratio.
		 * Fortunately this is all done for us in hw.
		 */
342 343
		if (pipe_config->pipe_src_h != adjusted_mode->vdisplay ||
		    pipe_config->pipe_src_w != adjusted_mode->hdisplay) {
344 345 346 347 348 349 350 351 352 353
			pfit_control |= PFIT_ENABLE;
			if (INTEL_INFO(dev)->gen >= 4)
				pfit_control |= PFIT_SCALING_AUTO;
			else
				pfit_control |= (VERT_AUTO_SCALE |
						 VERT_INTERP_BILINEAR |
						 HORIZ_AUTO_SCALE |
						 HORIZ_INTERP_BILINEAR);
		}
		break;
354 355 356
	default:
		WARN(1, "bad panel fit mode: %d\n", fitting_mode);
		return;
357 358 359 360 361 362 363 364 365 366 367 368 369 370
	}

	/* 965+ wants fuzzy fitting */
	/* FIXME: handle multiple panels by failing gracefully */
	if (INTEL_INFO(dev)->gen >= 4)
		pfit_control |= ((intel_crtc->pipe << PFIT_PIPE_SHIFT) |
				 PFIT_FILTER_FUZZY);

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

371 372 373 374
	/* Make sure pre-965 set dither correctly for 18bpp panels. */
	if (INTEL_INFO(dev)->gen < 4 && pipe_config->pipe_bpp == 18)
		pfit_control |= PANEL_8TO6_DITHER_ENABLE;

375 376
	pipe_config->gmch_pfit.control = pfit_control;
	pipe_config->gmch_pfit.pgm_ratios = pfit_pgm_ratios;
377
	pipe_config->gmch_pfit.lvds_border_bits = border;
378 379
}

J
Jani Nikula 已提交
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
enum drm_connector_status
intel_panel_detect(struct drm_device *dev)
{
	struct drm_i915_private *dev_priv = dev->dev_private;

	/* Assume that the BIOS does not lie through the OpRegion... */
	if (!i915.panel_ignore_lid && dev_priv->opregion.lid_state) {
		return ioread32(dev_priv->opregion.lid_state) & 0x1 ?
			connector_status_connected :
			connector_status_disconnected;
	}

	switch (i915.panel_ignore_lid) {
	case -2:
		return connector_status_connected;
	case -1:
		return connector_status_disconnected;
	default:
		return connector_status_unknown;
	}
}

402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
/**
 * scale - scale values from one range to another
 *
 * @source_val: value in range [@source_min..@source_max]
 *
 * Return @source_val in range [@source_min..@source_max] scaled to range
 * [@target_min..@target_max].
 */
static uint32_t scale(uint32_t source_val,
		      uint32_t source_min, uint32_t source_max,
		      uint32_t target_min, uint32_t target_max)
{
	uint64_t target_val;

	WARN_ON(source_min > source_max);
	WARN_ON(target_min > target_max);

	/* defensive */
	source_val = clamp(source_val, source_min, source_max);

	/* avoid overflows */
423 424
	target_val = DIV_ROUND_CLOSEST_ULL((uint64_t)(source_val - source_min) *
			(target_max - target_min), source_max - source_min);
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
	target_val += target_min;

	return target_val;
}

/* Scale user_level in range [0..user_max] to [hw_min..hw_max]. */
static inline u32 scale_user_to_hw(struct intel_connector *connector,
				   u32 user_level, u32 user_max)
{
	struct intel_panel *panel = &connector->panel;

	return scale(user_level, 0, user_max,
		     panel->backlight.min, panel->backlight.max);
}

/* Scale user_level in range [0..user_max] to [0..hw_max], clamping the result
 * to [hw_min..hw_max]. */
static inline u32 clamp_user_to_hw(struct intel_connector *connector,
				   u32 user_level, u32 user_max)
{
	struct intel_panel *panel = &connector->panel;
	u32 hw_level;

	hw_level = scale(user_level, 0, user_max, 0, panel->backlight.max);
	hw_level = clamp(hw_level, panel->backlight.min, panel->backlight.max);

	return hw_level;
}

/* Scale hw_level in range [hw_min..hw_max] to [0..user_max]. */
static inline u32 scale_hw_to_user(struct intel_connector *connector,
				   u32 hw_level, u32 user_max)
{
	struct intel_panel *panel = &connector->panel;

	return scale(hw_level, panel->backlight.min, panel->backlight.max,
		     0, user_max);
}

464 465
static u32 intel_panel_compute_brightness(struct intel_connector *connector,
					  u32 val)
466
{
467
	struct drm_device *dev = connector->base.dev;
468
	struct drm_i915_private *dev_priv = dev->dev_private;
469 470 471
	struct intel_panel *panel = &connector->panel;

	WARN_ON(panel->backlight.max == 0);
472

473
	if (i915.invert_brightness < 0)
474 475
		return val;

476
	if (i915.invert_brightness > 0 ||
477
	    dev_priv->quirks & QUIRK_INVERT_BRIGHTNESS) {
478
		return panel->backlight.max - val;
479
	}
480 481 482 483

	return val;
}

484
static u32 bdw_get_backlight(struct intel_connector *connector)
485
{
486
	struct drm_device *dev = connector->base.dev;
487
	struct drm_i915_private *dev_priv = dev->dev_private;
488

489 490
	return I915_READ(BLC_PWM_PCH_CTL2) & BACKLIGHT_DUTY_CYCLE_MASK;
}
491

492
static u32 pch_get_backlight(struct intel_connector *connector)
493
{
494
	struct drm_device *dev = connector->base.dev;
495
	struct drm_i915_private *dev_priv = dev->dev_private;
496

497 498
	return I915_READ(BLC_PWM_CPU_CTL) & BACKLIGHT_DUTY_CYCLE_MASK;
}
499

500 501 502 503
static u32 i9xx_get_backlight(struct intel_connector *connector)
{
	struct drm_device *dev = connector->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
504
	struct intel_panel *panel = &connector->panel;
505
	u32 val;
506

507 508 509
	val = I915_READ(BLC_PWM_CTL) & BACKLIGHT_DUTY_CYCLE_MASK;
	if (INTEL_INFO(dev)->gen < 4)
		val >>= 1;
510

511
	if (panel->backlight.combination_mode) {
512
		u8 lbpc;
513

514 515
		pci_read_config_byte(dev->pdev, PCI_LBPC, &lbpc);
		val *= lbpc;
516 517
	}

518 519 520 521 522 523 524
	return val;
}

static u32 _vlv_get_backlight(struct drm_device *dev, enum pipe pipe)
{
	struct drm_i915_private *dev_priv = dev->dev_private;

525 526 527
	if (WARN_ON(pipe != PIPE_A && pipe != PIPE_B))
		return 0;

528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
	return I915_READ(VLV_BLC_PWM_CTL(pipe)) & BACKLIGHT_DUTY_CYCLE_MASK;
}

static u32 vlv_get_backlight(struct intel_connector *connector)
{
	struct drm_device *dev = connector->base.dev;
	enum pipe pipe = intel_get_pipe_from_connector(connector);

	return _vlv_get_backlight(dev, pipe);
}

static u32 intel_panel_get_backlight(struct intel_connector *connector)
{
	struct drm_device *dev = connector->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
543 544
	struct intel_panel *panel = &connector->panel;
	u32 val = 0;
545

546
	mutex_lock(&dev_priv->backlight_lock);
547

548 549 550 551
	if (panel->backlight.enabled) {
		val = dev_priv->display.get_backlight(connector);
		val = intel_panel_compute_brightness(connector, val);
	}
552

553
	mutex_unlock(&dev_priv->backlight_lock);
554

555 556 557 558
	DRM_DEBUG_DRIVER("get backlight PWM = %d\n", val);
	return val;
}

559
static void bdw_set_backlight(struct intel_connector *connector, u32 level)
560
{
561
	struct drm_device *dev = connector->base.dev;
562 563 564 565 566
	struct drm_i915_private *dev_priv = dev->dev_private;
	u32 val = I915_READ(BLC_PWM_PCH_CTL2) & ~BACKLIGHT_DUTY_CYCLE_MASK;
	I915_WRITE(BLC_PWM_PCH_CTL2, val | level);
}

567
static void pch_set_backlight(struct intel_connector *connector, u32 level)
568
{
569
	struct drm_device *dev = connector->base.dev;
570
	struct drm_i915_private *dev_priv = dev->dev_private;
571 572 573 574
	u32 tmp;

	tmp = I915_READ(BLC_PWM_CPU_CTL) & ~BACKLIGHT_DUTY_CYCLE_MASK;
	I915_WRITE(BLC_PWM_CPU_CTL, tmp | level);
575 576
}

577
static void i9xx_set_backlight(struct intel_connector *connector, u32 level)
578
{
579
	struct drm_device *dev = connector->base.dev;
580
	struct drm_i915_private *dev_priv = dev->dev_private;
581
	struct intel_panel *panel = &connector->panel;
582
	u32 tmp, mask;
583

584 585
	WARN_ON(panel->backlight.max == 0);

586
	if (panel->backlight.combination_mode) {
587 588
		u8 lbpc;

589
		lbpc = level * 0xfe / panel->backlight.max + 1;
590 591 592 593
		level /= lbpc;
		pci_write_config_byte(dev->pdev, PCI_LBPC, lbpc);
	}

594 595 596
	if (IS_GEN4(dev)) {
		mask = BACKLIGHT_DUTY_CYCLE_MASK;
	} else {
597
		level <<= 1;
598 599
		mask = BACKLIGHT_DUTY_CYCLE_MASK_PNV;
	}
600

601
	tmp = I915_READ(BLC_PWM_CTL) & ~mask;
602 603 604 605 606 607 608 609 610 611
	I915_WRITE(BLC_PWM_CTL, tmp | level);
}

static void vlv_set_backlight(struct intel_connector *connector, u32 level)
{
	struct drm_device *dev = connector->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	enum pipe pipe = intel_get_pipe_from_connector(connector);
	u32 tmp;

612 613 614
	if (WARN_ON(pipe != PIPE_A && pipe != PIPE_B))
		return;

615 616 617 618 619 620 621 622 623 624 625 626 627 628
	tmp = I915_READ(VLV_BLC_PWM_CTL(pipe)) & ~BACKLIGHT_DUTY_CYCLE_MASK;
	I915_WRITE(VLV_BLC_PWM_CTL(pipe), tmp | level);
}

static void
intel_panel_actually_set_backlight(struct intel_connector *connector, u32 level)
{
	struct drm_device *dev = connector->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;

	DRM_DEBUG_DRIVER("set backlight PWM = %d\n", level);

	level = intel_panel_compute_brightness(connector, level);
	dev_priv->display.set_backlight(connector, level);
629
}
630

631 632 633
/* set backlight brightness to level in range [0..max], scaling wrt hw min */
static void intel_panel_set_backlight(struct intel_connector *connector,
				      u32 user_level, u32 user_max)
634
{
635
	struct drm_device *dev = connector->base.dev;
636
	struct drm_i915_private *dev_priv = dev->dev_private;
637
	struct intel_panel *panel = &connector->panel;
638
	u32 hw_level;
639

640
	if (!panel->backlight.present)
641 642
		return;

643
	mutex_lock(&dev_priv->backlight_lock);
644

645
	WARN_ON(panel->backlight.max == 0);
646

647 648 649 650 651 652
	hw_level = scale_user_to_hw(connector, user_level, user_max);
	panel->backlight.level = hw_level;

	if (panel->backlight.enabled)
		intel_panel_actually_set_backlight(connector, hw_level);

653
	mutex_unlock(&dev_priv->backlight_lock);
654 655 656 657 658 659 660 661 662 663 664 665 666 667
}

/* set backlight brightness to level in range [0..max], assuming hw min is
 * respected.
 */
void intel_panel_set_backlight_acpi(struct intel_connector *connector,
				    u32 user_level, u32 user_max)
{
	struct drm_device *dev = connector->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct intel_panel *panel = &connector->panel;
	enum pipe pipe = intel_get_pipe_from_connector(connector);
	u32 hw_level;

668 669 670 671 672 673
	/*
	 * INVALID_PIPE may occur during driver init because
	 * connection_mutex isn't held across the entire backlight
	 * setup + modeset readout, and the BIOS can issue the
	 * requests at any time.
	 */
674 675 676
	if (!panel->backlight.present || pipe == INVALID_PIPE)
		return;

677
	mutex_lock(&dev_priv->backlight_lock);
678 679 680 681 682

	WARN_ON(panel->backlight.max == 0);

	hw_level = clamp_user_to_hw(connector, user_level, user_max);
	panel->backlight.level = hw_level;
683

684
	if (panel->backlight.device)
685 686 687 688
		panel->backlight.device->props.brightness =
			scale_hw_to_user(connector,
					 panel->backlight.level,
					 panel->backlight.device->props.max_brightness);
689

690
	if (panel->backlight.enabled)
691
		intel_panel_actually_set_backlight(connector, hw_level);
692

693
	mutex_unlock(&dev_priv->backlight_lock);
694 695
}

696 697 698 699 700 701
static void pch_disable_backlight(struct intel_connector *connector)
{
	struct drm_device *dev = connector->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	u32 tmp;

702 703
	intel_panel_actually_set_backlight(connector, 0);

704 705 706 707 708 709 710
	tmp = I915_READ(BLC_PWM_CPU_CTL2);
	I915_WRITE(BLC_PWM_CPU_CTL2, tmp & ~BLM_PWM_ENABLE);

	tmp = I915_READ(BLC_PWM_PCH_CTL1);
	I915_WRITE(BLC_PWM_PCH_CTL1, tmp & ~BLM_PCH_PWM_ENABLE);
}

711 712 713 714 715
static void i9xx_disable_backlight(struct intel_connector *connector)
{
	intel_panel_actually_set_backlight(connector, 0);
}

716 717 718 719 720 721
static void i965_disable_backlight(struct intel_connector *connector)
{
	struct drm_device *dev = connector->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	u32 tmp;

722 723
	intel_panel_actually_set_backlight(connector, 0);

724 725 726 727 728 729 730 731 732 733 734
	tmp = I915_READ(BLC_PWM_CTL2);
	I915_WRITE(BLC_PWM_CTL2, tmp & ~BLM_PWM_ENABLE);
}

static void vlv_disable_backlight(struct intel_connector *connector)
{
	struct drm_device *dev = connector->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	enum pipe pipe = intel_get_pipe_from_connector(connector);
	u32 tmp;

735 736 737
	if (WARN_ON(pipe != PIPE_A && pipe != PIPE_B))
		return;

738 739
	intel_panel_actually_set_backlight(connector, 0);

740 741 742 743
	tmp = I915_READ(VLV_BLC_PWM_CTL2(pipe));
	I915_WRITE(VLV_BLC_PWM_CTL2(pipe), tmp & ~BLM_PWM_ENABLE);
}

744
void intel_panel_disable_backlight(struct intel_connector *connector)
745
{
746
	struct drm_device *dev = connector->base.dev;
747
	struct drm_i915_private *dev_priv = dev->dev_private;
748
	struct intel_panel *panel = &connector->panel;
749

750
	if (!panel->backlight.present)
751 752
		return;

753 754 755 756 757 758 759 760 761 762 763
	/*
	 * Do not disable backlight on the vgaswitcheroo path. When switching
	 * away from i915, the other client may depend on i915 to handle the
	 * backlight. This will leave the backlight on unnecessarily when
	 * another client is not activated.
	 */
	if (dev->switch_power_state == DRM_SWITCH_POWER_CHANGING) {
		DRM_DEBUG_DRIVER("Skipping backlight disable on vga switch\n");
		return;
	}

764
	mutex_lock(&dev_priv->backlight_lock);
765

766 767
	if (panel->backlight.device)
		panel->backlight.device->props.power = FB_BLANK_POWERDOWN;
768
	panel->backlight.enabled = false;
769
	dev_priv->display.disable_backlight(connector);
770

771
	mutex_unlock(&dev_priv->backlight_lock);
772
}
773

774 775 776 777 778 779 780 781 782 783 784 785 786
static void bdw_enable_backlight(struct intel_connector *connector)
{
	struct drm_device *dev = connector->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct intel_panel *panel = &connector->panel;
	u32 pch_ctl1, pch_ctl2;

	pch_ctl1 = I915_READ(BLC_PWM_PCH_CTL1);
	if (pch_ctl1 & BLM_PCH_PWM_ENABLE) {
		DRM_DEBUG_KMS("pch backlight already enabled\n");
		pch_ctl1 &= ~BLM_PCH_PWM_ENABLE;
		I915_WRITE(BLC_PWM_PCH_CTL1, pch_ctl1);
	}
787

788 789
	pch_ctl2 = panel->backlight.max << 16;
	I915_WRITE(BLC_PWM_PCH_CTL2, pch_ctl2);
790

791 792 793
	pch_ctl1 = 0;
	if (panel->backlight.active_low_pwm)
		pch_ctl1 |= BLM_PCH_POLARITY;
794

795 796 797
	/* After LPT, override is the default. */
	if (HAS_PCH_LPT(dev_priv))
		pch_ctl1 |= BLM_PCH_OVERRIDE_ENABLE;
798 799 800 801 802 803 804

	I915_WRITE(BLC_PWM_PCH_CTL1, pch_ctl1);
	POSTING_READ(BLC_PWM_PCH_CTL1);
	I915_WRITE(BLC_PWM_PCH_CTL1, pch_ctl1 | BLM_PCH_PWM_ENABLE);

	/* This won't stick until the above enable. */
	intel_panel_actually_set_backlight(connector, panel->backlight.level);
805 806
}

807 808 809 810
static void pch_enable_backlight(struct intel_connector *connector)
{
	struct drm_device *dev = connector->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
811
	struct intel_panel *panel = &connector->panel;
812 813 814
	enum pipe pipe = intel_get_pipe_from_connector(connector);
	enum transcoder cpu_transcoder =
		intel_pipe_to_cpu_transcoder(dev_priv, pipe);
815
	u32 cpu_ctl2, pch_ctl1, pch_ctl2;
816

817 818
	cpu_ctl2 = I915_READ(BLC_PWM_CPU_CTL2);
	if (cpu_ctl2 & BLM_PWM_ENABLE) {
819
		DRM_DEBUG_KMS("cpu backlight already enabled\n");
820 821 822
		cpu_ctl2 &= ~BLM_PWM_ENABLE;
		I915_WRITE(BLC_PWM_CPU_CTL2, cpu_ctl2);
	}
823

824 825 826 827 828 829
	pch_ctl1 = I915_READ(BLC_PWM_PCH_CTL1);
	if (pch_ctl1 & BLM_PCH_PWM_ENABLE) {
		DRM_DEBUG_KMS("pch backlight already enabled\n");
		pch_ctl1 &= ~BLM_PCH_PWM_ENABLE;
		I915_WRITE(BLC_PWM_PCH_CTL1, pch_ctl1);
	}
830 831

	if (cpu_transcoder == TRANSCODER_EDP)
832
		cpu_ctl2 = BLM_TRANSCODER_EDP;
833
	else
834 835
		cpu_ctl2 = BLM_PIPE(cpu_transcoder);
	I915_WRITE(BLC_PWM_CPU_CTL2, cpu_ctl2);
836
	POSTING_READ(BLC_PWM_CPU_CTL2);
837
	I915_WRITE(BLC_PWM_CPU_CTL2, cpu_ctl2 | BLM_PWM_ENABLE);
838

839
	/* This won't stick until the above enable. */
840
	intel_panel_actually_set_backlight(connector, panel->backlight.level);
841 842 843 844 845 846 847

	pch_ctl2 = panel->backlight.max << 16;
	I915_WRITE(BLC_PWM_PCH_CTL2, pch_ctl2);

	pch_ctl1 = 0;
	if (panel->backlight.active_low_pwm)
		pch_ctl1 |= BLM_PCH_POLARITY;
848

849 850 851
	I915_WRITE(BLC_PWM_PCH_CTL1, pch_ctl1);
	POSTING_READ(BLC_PWM_PCH_CTL1);
	I915_WRITE(BLC_PWM_PCH_CTL1, pch_ctl1 | BLM_PCH_PWM_ENABLE);
852 853 854 855
}

static void i9xx_enable_backlight(struct intel_connector *connector)
{
856 857
	struct drm_device *dev = connector->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
858
	struct intel_panel *panel = &connector->panel;
859 860 861 862
	u32 ctl, freq;

	ctl = I915_READ(BLC_PWM_CTL);
	if (ctl & BACKLIGHT_DUTY_CYCLE_MASK_PNV) {
863
		DRM_DEBUG_KMS("backlight already enabled\n");
864 865
		I915_WRITE(BLC_PWM_CTL, 0);
	}
866

867 868 869 870 871
	freq = panel->backlight.max;
	if (panel->backlight.combination_mode)
		freq /= 0xff;

	ctl = freq << 17;
872
	if (panel->backlight.combination_mode)
873 874 875 876 877 878 879 880
		ctl |= BLM_LEGACY_MODE;
	if (IS_PINEVIEW(dev) && panel->backlight.active_low_pwm)
		ctl |= BLM_POLARITY_PNV;

	I915_WRITE(BLC_PWM_CTL, ctl);
	POSTING_READ(BLC_PWM_CTL);

	/* XXX: combine this into above write? */
881
	intel_panel_actually_set_backlight(connector, panel->backlight.level);
882
}
883

884 885 886 887
static void i965_enable_backlight(struct intel_connector *connector)
{
	struct drm_device *dev = connector->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
888
	struct intel_panel *panel = &connector->panel;
889
	enum pipe pipe = intel_get_pipe_from_connector(connector);
890
	u32 ctl, ctl2, freq;
891

892 893
	ctl2 = I915_READ(BLC_PWM_CTL2);
	if (ctl2 & BLM_PWM_ENABLE) {
894
		DRM_DEBUG_KMS("backlight already enabled\n");
895 896 897
		ctl2 &= ~BLM_PWM_ENABLE;
		I915_WRITE(BLC_PWM_CTL2, ctl2);
	}
898

899 900 901
	freq = panel->backlight.max;
	if (panel->backlight.combination_mode)
		freq /= 0xff;
902

903 904
	ctl = freq << 16;
	I915_WRITE(BLC_PWM_CTL, ctl);
905

906 907 908 909 910 911 912 913
	ctl2 = BLM_PIPE(pipe);
	if (panel->backlight.combination_mode)
		ctl2 |= BLM_COMBINATION_MODE;
	if (panel->backlight.active_low_pwm)
		ctl2 |= BLM_POLARITY_I965;
	I915_WRITE(BLC_PWM_CTL2, ctl2);
	POSTING_READ(BLC_PWM_CTL2);
	I915_WRITE(BLC_PWM_CTL2, ctl2 | BLM_PWM_ENABLE);
914 915

	intel_panel_actually_set_backlight(connector, panel->backlight.level);
916 917 918 919 920 921
}

static void vlv_enable_backlight(struct intel_connector *connector)
{
	struct drm_device *dev = connector->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
922
	struct intel_panel *panel = &connector->panel;
923
	enum pipe pipe = intel_get_pipe_from_connector(connector);
924
	u32 ctl, ctl2;
925

926 927 928
	if (WARN_ON(pipe != PIPE_A && pipe != PIPE_B))
		return;

929 930
	ctl2 = I915_READ(VLV_BLC_PWM_CTL2(pipe));
	if (ctl2 & BLM_PWM_ENABLE) {
931
		DRM_DEBUG_KMS("backlight already enabled\n");
932 933 934
		ctl2 &= ~BLM_PWM_ENABLE;
		I915_WRITE(VLV_BLC_PWM_CTL2(pipe), ctl2);
	}
935

936 937
	ctl = panel->backlight.max << 16;
	I915_WRITE(VLV_BLC_PWM_CTL(pipe), ctl);
938

939 940
	/* XXX: combine this into above write? */
	intel_panel_actually_set_backlight(connector, panel->backlight.level);
941

942 943 944 945
	ctl2 = 0;
	if (panel->backlight.active_low_pwm)
		ctl2 |= BLM_POLARITY_I965;
	I915_WRITE(VLV_BLC_PWM_CTL2(pipe), ctl2);
946
	POSTING_READ(VLV_BLC_PWM_CTL2(pipe));
947
	I915_WRITE(VLV_BLC_PWM_CTL2(pipe), ctl2 | BLM_PWM_ENABLE);
948 949
}

950
void intel_panel_enable_backlight(struct intel_connector *connector)
951
{
952
	struct drm_device *dev = connector->base.dev;
953
	struct drm_i915_private *dev_priv = dev->dev_private;
954
	struct intel_panel *panel = &connector->panel;
955
	enum pipe pipe = intel_get_pipe_from_connector(connector);
956

957
	if (!panel->backlight.present)
958 959
		return;

960
	DRM_DEBUG_KMS("pipe %c\n", pipe_name(pipe));
961

962
	mutex_lock(&dev_priv->backlight_lock);
963

964 965
	WARN_ON(panel->backlight.max == 0);

966
	if (panel->backlight.level <= panel->backlight.min) {
967
		panel->backlight.level = panel->backlight.max;
968 969
		if (panel->backlight.device)
			panel->backlight.device->props.brightness =
970 971 972
				scale_hw_to_user(connector,
						 panel->backlight.level,
						 panel->backlight.device->props.max_brightness);
973
	}
974

975
	dev_priv->display.enable_backlight(connector);
976
	panel->backlight.enabled = true;
977 978
	if (panel->backlight.device)
		panel->backlight.device->props.power = FB_BLANK_UNBLANK;
979

980
	mutex_unlock(&dev_priv->backlight_lock);
981 982
}

983
#if IS_ENABLED(CONFIG_BACKLIGHT_CLASS_DEVICE)
984
static int intel_backlight_device_update_status(struct backlight_device *bd)
985
{
986
	struct intel_connector *connector = bl_get_data(bd);
987
	struct intel_panel *panel = &connector->panel;
988 989
	struct drm_device *dev = connector->base.dev;

990
	drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
991 992
	DRM_DEBUG_KMS("updating intel_backlight, brightness=%d/%d\n",
		      bd->props.brightness, bd->props.max_brightness);
993
	intel_panel_set_backlight(connector, bd->props.brightness,
994
				  bd->props.max_brightness);
995 996 997 998 999 1000 1001 1002 1003

	/*
	 * Allow flipping bl_power as a sub-state of enabled. Sadly the
	 * backlight class device does not make it easy to to differentiate
	 * between callbacks for brightness and bl_power, so our backlight_power
	 * callback needs to take this into account.
	 */
	if (panel->backlight.enabled) {
		if (panel->backlight_power) {
1004 1005
			bool enable = bd->props.power == FB_BLANK_UNBLANK &&
				bd->props.brightness != 0;
1006 1007 1008 1009 1010 1011
			panel->backlight_power(connector, enable);
		}
	} else {
		bd->props.power = FB_BLANK_POWERDOWN;
	}

1012
	drm_modeset_unlock(&dev->mode_config.connection_mutex);
1013 1014 1015
	return 0;
}

1016
static int intel_backlight_device_get_brightness(struct backlight_device *bd)
1017
{
1018 1019
	struct intel_connector *connector = bl_get_data(bd);
	struct drm_device *dev = connector->base.dev;
1020
	struct drm_i915_private *dev_priv = dev->dev_private;
1021
	u32 hw_level;
1022
	int ret;
1023

1024
	intel_runtime_pm_get(dev_priv);
1025
	drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
1026 1027 1028 1029

	hw_level = intel_panel_get_backlight(connector);
	ret = scale_hw_to_user(connector, hw_level, bd->props.max_brightness);

1030
	drm_modeset_unlock(&dev->mode_config.connection_mutex);
1031
	intel_runtime_pm_put(dev_priv);
1032

1033
	return ret;
1034 1035
}

1036 1037 1038
static const struct backlight_ops intel_backlight_device_ops = {
	.update_status = intel_backlight_device_update_status,
	.get_brightness = intel_backlight_device_get_brightness,
1039 1040
};

1041
static int intel_backlight_device_register(struct intel_connector *connector)
1042
{
1043
	struct intel_panel *panel = &connector->panel;
1044 1045
	struct backlight_properties props;

1046
	if (WARN_ON(panel->backlight.device))
1047 1048
		return -ENODEV;

1049 1050 1051
	if (!panel->backlight.present)
		return 0;

1052
	WARN_ON(panel->backlight.max == 0);
1053

1054
	memset(&props, 0, sizeof(props));
1055
	props.type = BACKLIGHT_RAW;
1056 1057 1058 1059 1060

	/*
	 * Note: Everything should work even if the backlight device max
	 * presented to the userspace is arbitrarily chosen.
	 */
1061
	props.max_brightness = panel->backlight.max;
1062 1063 1064
	props.brightness = scale_hw_to_user(connector,
					    panel->backlight.level,
					    props.max_brightness);
1065

1066 1067 1068 1069 1070
	if (panel->backlight.enabled)
		props.power = FB_BLANK_UNBLANK;
	else
		props.power = FB_BLANK_POWERDOWN;

1071 1072 1073 1074 1075
	/*
	 * Note: using the same name independent of the connector prevents
	 * registration of multiple backlight devices in the driver.
	 */
	panel->backlight.device =
1076
		backlight_device_register("intel_backlight",
1077 1078 1079
					  connector->base.kdev,
					  connector,
					  &intel_backlight_device_ops, &props);
1080

1081
	if (IS_ERR(panel->backlight.device)) {
1082
		DRM_ERROR("Failed to register backlight: %ld\n",
1083 1084
			  PTR_ERR(panel->backlight.device));
		panel->backlight.device = NULL;
1085 1086
		return -ENODEV;
	}
1087 1088 1089 1090

	DRM_DEBUG_KMS("Connector %s backlight sysfs interface registered\n",
		      connector->base.name);

1091 1092 1093
	return 0;
}

1094
static void intel_backlight_device_unregister(struct intel_connector *connector)
1095
{
1096 1097 1098 1099 1100
	struct intel_panel *panel = &connector->panel;

	if (panel->backlight.device) {
		backlight_device_unregister(panel->backlight.device);
		panel->backlight.device = NULL;
1101
	}
1102
}
1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
#else /* CONFIG_BACKLIGHT_CLASS_DEVICE */
static int intel_backlight_device_register(struct intel_connector *connector)
{
	return 0;
}
static void intel_backlight_device_unregister(struct intel_connector *connector)
{
}
#endif /* CONFIG_BACKLIGHT_CLASS_DEVICE */

1113 1114 1115 1116 1117 1118
/*
 * Note: The setup hooks can't assume pipe is set!
 *
 * XXX: Query mode clock or hardware clock and program PWM modulation frequency
 * appropriately when it's 0. Use VBT and/or sane defaults.
 */
1119 1120 1121 1122 1123
static u32 get_backlight_min_vbt(struct intel_connector *connector)
{
	struct drm_device *dev = connector->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct intel_panel *panel = &connector->panel;
1124
	int min;
1125 1126 1127

	WARN_ON(panel->backlight.max == 0);

1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140
	/*
	 * XXX: If the vbt value is 255, it makes min equal to max, which leads
	 * to problems. There are such machines out there. Either our
	 * interpretation is wrong or the vbt has bogus data. Or both. Safeguard
	 * against this by letting the minimum be at most (arbitrarily chosen)
	 * 25% of the max.
	 */
	min = clamp_t(int, dev_priv->vbt.backlight.min_brightness, 0, 64);
	if (min != dev_priv->vbt.backlight.min_brightness) {
		DRM_DEBUG_KMS("clamping VBT min backlight %d/255 to %d/255\n",
			      dev_priv->vbt.backlight.min_brightness, min);
	}

1141
	/* vbt value is a coefficient in range [0..255] */
1142
	return scale(min, 0, 255, 0, panel->backlight.max);
1143 1144
}

1145
static int bdw_setup_backlight(struct intel_connector *connector, enum pipe unused)
1146
{
1147
	struct drm_device *dev = connector->base.dev;
1148
	struct drm_i915_private *dev_priv = dev->dev_private;
1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
	struct intel_panel *panel = &connector->panel;
	u32 pch_ctl1, pch_ctl2, val;

	pch_ctl1 = I915_READ(BLC_PWM_PCH_CTL1);
	panel->backlight.active_low_pwm = pch_ctl1 & BLM_PCH_POLARITY;

	pch_ctl2 = I915_READ(BLC_PWM_PCH_CTL2);
	panel->backlight.max = pch_ctl2 >> 16;
	if (!panel->backlight.max)
		return -ENODEV;

1160 1161
	panel->backlight.min = get_backlight_min_vbt(connector);

1162 1163 1164 1165 1166 1167 1168 1169 1170
	val = bdw_get_backlight(connector);
	panel->backlight.level = intel_panel_compute_brightness(connector, val);

	panel->backlight.enabled = (pch_ctl1 & BLM_PCH_PWM_ENABLE) &&
		panel->backlight.level != 0;

	return 0;
}

1171
static int pch_setup_backlight(struct intel_connector *connector, enum pipe unused)
1172
{
1173 1174
	struct drm_device *dev = connector->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
1175
	struct intel_panel *panel = &connector->panel;
1176
	u32 cpu_ctl2, pch_ctl1, pch_ctl2, val;
1177

1178 1179 1180 1181 1182
	pch_ctl1 = I915_READ(BLC_PWM_PCH_CTL1);
	panel->backlight.active_low_pwm = pch_ctl1 & BLM_PCH_POLARITY;

	pch_ctl2 = I915_READ(BLC_PWM_PCH_CTL2);
	panel->backlight.max = pch_ctl2 >> 16;
1183 1184 1185
	if (!panel->backlight.max)
		return -ENODEV;

1186 1187
	panel->backlight.min = get_backlight_min_vbt(connector);

1188 1189 1190
	val = pch_get_backlight(connector);
	panel->backlight.level = intel_panel_compute_brightness(connector, val);

1191 1192 1193 1194
	cpu_ctl2 = I915_READ(BLC_PWM_CPU_CTL2);
	panel->backlight.enabled = (cpu_ctl2 & BLM_PWM_ENABLE) &&
		(pch_ctl1 & BLM_PCH_PWM_ENABLE) && panel->backlight.level != 0;

1195 1196 1197
	return 0;
}

1198
static int i9xx_setup_backlight(struct intel_connector *connector, enum pipe unused)
1199
{
1200 1201
	struct drm_device *dev = connector->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
1202
	struct intel_panel *panel = &connector->panel;
1203 1204 1205 1206
	u32 ctl, val;

	ctl = I915_READ(BLC_PWM_CTL);

1207
	if (IS_GEN2(dev) || IS_I915GM(dev) || IS_I945GM(dev))
1208 1209 1210 1211 1212 1213 1214 1215
		panel->backlight.combination_mode = ctl & BLM_LEGACY_MODE;

	if (IS_PINEVIEW(dev))
		panel->backlight.active_low_pwm = ctl & BLM_POLARITY_PNV;

	panel->backlight.max = ctl >> 17;
	if (panel->backlight.combination_mode)
		panel->backlight.max *= 0xff;
1216 1217 1218 1219

	if (!panel->backlight.max)
		return -ENODEV;

1220 1221
	panel->backlight.min = get_backlight_min_vbt(connector);

1222 1223 1224
	val = i9xx_get_backlight(connector);
	panel->backlight.level = intel_panel_compute_brightness(connector, val);

1225 1226
	panel->backlight.enabled = panel->backlight.level != 0;

1227 1228 1229
	return 0;
}

1230
static int i965_setup_backlight(struct intel_connector *connector, enum pipe unused)
1231
{
1232 1233
	struct drm_device *dev = connector->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
1234
	struct intel_panel *panel = &connector->panel;
1235 1236 1237 1238 1239 1240 1241 1242 1243 1244
	u32 ctl, ctl2, val;

	ctl2 = I915_READ(BLC_PWM_CTL2);
	panel->backlight.combination_mode = ctl2 & BLM_COMBINATION_MODE;
	panel->backlight.active_low_pwm = ctl2 & BLM_POLARITY_I965;

	ctl = I915_READ(BLC_PWM_CTL);
	panel->backlight.max = ctl >> 16;
	if (panel->backlight.combination_mode)
		panel->backlight.max *= 0xff;
1245 1246 1247 1248

	if (!panel->backlight.max)
		return -ENODEV;

1249 1250
	panel->backlight.min = get_backlight_min_vbt(connector);

1251 1252 1253
	val = i9xx_get_backlight(connector);
	panel->backlight.level = intel_panel_compute_brightness(connector, val);

1254 1255 1256
	panel->backlight.enabled = (ctl2 & BLM_PWM_ENABLE) &&
		panel->backlight.level != 0;

1257 1258 1259
	return 0;
}

1260
static int vlv_setup_backlight(struct intel_connector *connector, enum pipe pipe)
1261 1262 1263 1264
{
	struct drm_device *dev = connector->base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct intel_panel *panel = &connector->panel;
1265
	enum pipe p;
1266
	u32 ctl, ctl2, val;
1267

1268 1269
	for_each_pipe(dev_priv, p) {
		u32 cur_val = I915_READ(VLV_BLC_PWM_CTL(p));
1270 1271 1272 1273 1274 1275

		/* Skip if the modulation freq is already set */
		if (cur_val & ~BACKLIGHT_DUTY_CYCLE_MASK)
			continue;

		cur_val &= BACKLIGHT_DUTY_CYCLE_MASK;
1276
		I915_WRITE(VLV_BLC_PWM_CTL(p), (0xf42 << 16) |
1277 1278 1279
			   cur_val);
	}

1280 1281 1282 1283
	if (WARN_ON(pipe != PIPE_A && pipe != PIPE_B))
		return -ENODEV;

	ctl2 = I915_READ(VLV_BLC_PWM_CTL2(pipe));
1284 1285
	panel->backlight.active_low_pwm = ctl2 & BLM_POLARITY_I965;

1286
	ctl = I915_READ(VLV_BLC_PWM_CTL(pipe));
1287
	panel->backlight.max = ctl >> 16;
1288 1289 1290
	if (!panel->backlight.max)
		return -ENODEV;

1291 1292
	panel->backlight.min = get_backlight_min_vbt(connector);

1293
	val = _vlv_get_backlight(dev, pipe);
1294 1295
	panel->backlight.level = intel_panel_compute_brightness(connector, val);

1296 1297 1298
	panel->backlight.enabled = (ctl2 & BLM_PWM_ENABLE) &&
		panel->backlight.level != 0;

1299 1300 1301
	return 0;
}

1302
int intel_panel_setup_backlight(struct drm_connector *connector, enum pipe pipe)
1303
{
1304
	struct drm_device *dev = connector->dev;
1305
	struct drm_i915_private *dev_priv = dev->dev_private;
1306
	struct intel_connector *intel_connector = to_intel_connector(connector);
1307
	struct intel_panel *panel = &intel_connector->panel;
1308
	int ret;
1309

1310
	if (!dev_priv->vbt.backlight.present) {
1311 1312 1313 1314 1315 1316
		if (dev_priv->quirks & QUIRK_BACKLIGHT_PRESENT) {
			DRM_DEBUG_KMS("no backlight present per VBT, but present per quirk\n");
		} else {
			DRM_DEBUG_KMS("no backlight present per VBT\n");
			return 0;
		}
1317 1318
	}

1319
	/* set level and max in panel struct */
1320
	mutex_lock(&dev_priv->backlight_lock);
1321
	ret = dev_priv->display.setup_backlight(intel_connector, pipe);
1322
	mutex_unlock(&dev_priv->backlight_lock);
1323 1324 1325

	if (ret) {
		DRM_DEBUG_KMS("failed to setup backlight for connector %s\n",
1326
			      connector->name);
1327 1328
		return ret;
	}
1329

1330 1331
	panel->backlight.present = true;

1332 1333
	DRM_DEBUG_KMS("Connector %s backlight initialized, %s, brightness %u/%u\n",
		      connector->name,
1334
		      panel->backlight.enabled ? "enabled" : "disabled",
1335
		      panel->backlight.level, panel->backlight.max);
1336

1337 1338 1339
	return 0;
}

1340
void intel_panel_destroy_backlight(struct drm_connector *connector)
1341
{
1342
	struct intel_connector *intel_connector = to_intel_connector(connector);
1343
	struct intel_panel *panel = &intel_connector->panel;
1344

1345
	panel->backlight.present = false;
1346
}
1347

1348 1349 1350 1351 1352
/* Set up chip specific backlight functions */
void intel_panel_init_backlight_funcs(struct drm_device *dev)
{
	struct drm_i915_private *dev_priv = dev->dev_private;

1353
	if (IS_BROADWELL(dev) || (INTEL_INFO(dev)->gen >= 9)) {
1354 1355 1356 1357 1358 1359
		dev_priv->display.setup_backlight = bdw_setup_backlight;
		dev_priv->display.enable_backlight = bdw_enable_backlight;
		dev_priv->display.disable_backlight = pch_disable_backlight;
		dev_priv->display.set_backlight = bdw_set_backlight;
		dev_priv->display.get_backlight = bdw_get_backlight;
	} else if (HAS_PCH_SPLIT(dev)) {
1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378
		dev_priv->display.setup_backlight = pch_setup_backlight;
		dev_priv->display.enable_backlight = pch_enable_backlight;
		dev_priv->display.disable_backlight = pch_disable_backlight;
		dev_priv->display.set_backlight = pch_set_backlight;
		dev_priv->display.get_backlight = pch_get_backlight;
	} else if (IS_VALLEYVIEW(dev)) {
		dev_priv->display.setup_backlight = vlv_setup_backlight;
		dev_priv->display.enable_backlight = vlv_enable_backlight;
		dev_priv->display.disable_backlight = vlv_disable_backlight;
		dev_priv->display.set_backlight = vlv_set_backlight;
		dev_priv->display.get_backlight = vlv_get_backlight;
	} else if (IS_GEN4(dev)) {
		dev_priv->display.setup_backlight = i965_setup_backlight;
		dev_priv->display.enable_backlight = i965_enable_backlight;
		dev_priv->display.disable_backlight = i965_disable_backlight;
		dev_priv->display.set_backlight = i9xx_set_backlight;
		dev_priv->display.get_backlight = i9xx_get_backlight;
	} else {
		dev_priv->display.setup_backlight = i9xx_setup_backlight;
1379 1380
		dev_priv->display.enable_backlight = i9xx_enable_backlight;
		dev_priv->display.disable_backlight = i9xx_disable_backlight;
1381 1382 1383 1384 1385
		dev_priv->display.set_backlight = i9xx_set_backlight;
		dev_priv->display.get_backlight = i9xx_get_backlight;
	}
}

1386
int intel_panel_init(struct intel_panel *panel,
1387 1388
		     struct drm_display_mode *fixed_mode,
		     struct drm_display_mode *downclock_mode)
1389
{
1390
	panel->fixed_mode = fixed_mode;
1391
	panel->downclock_mode = downclock_mode;
1392

1393 1394 1395 1396 1397
	return 0;
}

void intel_panel_fini(struct intel_panel *panel)
{
1398 1399 1400 1401 1402
	struct intel_connector *intel_connector =
		container_of(panel, struct intel_connector, panel);

	if (panel->fixed_mode)
		drm_mode_destroy(intel_connector->base.dev, panel->fixed_mode);
1403 1404 1405 1406

	if (panel->downclock_mode)
		drm_mode_destroy(intel_connector->base.dev,
				panel->downclock_mode);
1407
}
1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423

void intel_backlight_register(struct drm_device *dev)
{
	struct intel_connector *connector;

	list_for_each_entry(connector, &dev->mode_config.connector_list, base.head)
		intel_backlight_device_register(connector);
}

void intel_backlight_unregister(struct drm_device *dev)
{
	struct intel_connector *connector;

	list_for_each_entry(connector, &dev->mode_config.connector_list, base.head)
		intel_backlight_device_unregister(connector);
}