nouveau_connector.c 41.5 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
/*
 * Copyright (C) 2008 Maarten Maathuis.
 * All Rights Reserved.
 *
 * 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 COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS 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.
 *
 */

27 28
#include <acpi/button.h>

29
#include <linux/pm_runtime.h>
30
#include <linux/vga_switcheroo.h>
31

32
#include <drm/drmP.h>
33
#include <drm/drm_atomic_helper.h>
34 35
#include <drm/drm_edid.h>
#include <drm/drm_crtc_helper.h>
36

37
#include "nouveau_reg.h"
38
#include "nouveau_drv.h"
39
#include "dispnv04/hw.h"
40
#include "nouveau_acpi.h"
41

42 43
#include "nouveau_display.h"
#include "nouveau_connector.h"
44 45
#include "nouveau_encoder.h"
#include "nouveau_crtc.h"
46

47
#include <nvif/class.h>
48
#include <nvif/cl0046.h>
49 50
#include <nvif/event.h>

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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 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 168 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 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
struct drm_display_mode *
nouveau_conn_native_mode(struct drm_connector *connector)
{
	const struct drm_connector_helper_funcs *helper = connector->helper_private;
	struct nouveau_drm *drm = nouveau_drm(connector->dev);
	struct drm_device *dev = connector->dev;
	struct drm_display_mode *mode, *largest = NULL;
	int high_w = 0, high_h = 0, high_v = 0;

	list_for_each_entry(mode, &connector->probed_modes, head) {
		mode->vrefresh = drm_mode_vrefresh(mode);
		if (helper->mode_valid(connector, mode) != MODE_OK ||
		    (mode->flags & DRM_MODE_FLAG_INTERLACE))
			continue;

		/* Use preferred mode if there is one.. */
		if (mode->type & DRM_MODE_TYPE_PREFERRED) {
			NV_DEBUG(drm, "native mode from preferred\n");
			return drm_mode_duplicate(dev, mode);
		}

		/* Otherwise, take the resolution with the largest width, then
		 * height, then vertical refresh
		 */
		if (mode->hdisplay < high_w)
			continue;

		if (mode->hdisplay == high_w && mode->vdisplay < high_h)
			continue;

		if (mode->hdisplay == high_w && mode->vdisplay == high_h &&
		    mode->vrefresh < high_v)
			continue;

		high_w = mode->hdisplay;
		high_h = mode->vdisplay;
		high_v = mode->vrefresh;
		largest = mode;
	}

	NV_DEBUG(drm, "native mode from largest: %dx%d@%d\n",
		      high_w, high_h, high_v);
	return largest ? drm_mode_duplicate(dev, largest) : NULL;
}

int
nouveau_conn_atomic_get_property(struct drm_connector *connector,
				 const struct drm_connector_state *state,
				 struct drm_property *property, u64 *val)
{
	struct nouveau_conn_atom *asyc = nouveau_conn_atom(state);
	struct nouveau_display *disp = nouveau_display(connector->dev);
	struct drm_device *dev = connector->dev;

	if (property == dev->mode_config.scaling_mode_property)
		*val = asyc->scaler.mode;
	else if (property == disp->underscan_property)
		*val = asyc->scaler.underscan.mode;
	else if (property == disp->underscan_hborder_property)
		*val = asyc->scaler.underscan.hborder;
	else if (property == disp->underscan_vborder_property)
		*val = asyc->scaler.underscan.vborder;
	else if (property == disp->dithering_mode)
		*val = asyc->dither.mode;
	else if (property == disp->dithering_depth)
		*val = asyc->dither.depth;
	else if (property == disp->vibrant_hue_property)
		*val = asyc->procamp.vibrant_hue;
	else if (property == disp->color_vibrance_property)
		*val = asyc->procamp.color_vibrance;
	else
		return -EINVAL;

	return 0;
}

int
nouveau_conn_atomic_set_property(struct drm_connector *connector,
				 struct drm_connector_state *state,
				 struct drm_property *property, u64 val)
{
	struct drm_device *dev = connector->dev;
	struct nouveau_conn_atom *asyc = nouveau_conn_atom(state);
	struct nouveau_display *disp = nouveau_display(dev);

	if (property == dev->mode_config.scaling_mode_property) {
		switch (val) {
		case DRM_MODE_SCALE_NONE:
			/* We allow 'None' for EDID modes, even on a fixed
			 * panel (some exist with support for lower refresh
			 * rates, which people might want to use for power-
			 * saving purposes).
			 *
			 * Non-EDID modes will force the use of GPU scaling
			 * to the native mode regardless of this setting.
			 */
			switch (connector->connector_type) {
			case DRM_MODE_CONNECTOR_LVDS:
			case DRM_MODE_CONNECTOR_eDP:
				/* ... except prior to G80, where the code
				 * doesn't support such things.
				 */
				if (disp->disp.oclass < NV50_DISP)
					return -EINVAL;
				break;
			default:
				break;
			}
		case DRM_MODE_SCALE_FULLSCREEN:
		case DRM_MODE_SCALE_CENTER:
		case DRM_MODE_SCALE_ASPECT:
			break;
		default:
			return -EINVAL;
		}

		if (asyc->scaler.mode != val) {
			asyc->scaler.mode = val;
			asyc->set.scaler = true;
		}
	} else
	if (property == disp->underscan_property) {
		if (asyc->scaler.underscan.mode != val) {
			asyc->scaler.underscan.mode = val;
			asyc->set.scaler = true;
		}
	} else
	if (property == disp->underscan_hborder_property) {
		if (asyc->scaler.underscan.hborder != val) {
			asyc->scaler.underscan.hborder = val;
			asyc->set.scaler = true;
		}
	} else
	if (property == disp->underscan_vborder_property) {
		if (asyc->scaler.underscan.vborder != val) {
			asyc->scaler.underscan.vborder = val;
			asyc->set.scaler = true;
		}
	} else
	if (property == disp->dithering_mode) {
		if (asyc->dither.mode != val) {
			asyc->dither.mode = val;
			asyc->set.dither = true;
		}
	} else
	if (property == disp->dithering_depth) {
		if (asyc->dither.mode != val) {
			asyc->dither.depth = val;
			asyc->set.dither = true;
		}
	} else
	if (property == disp->vibrant_hue_property) {
		if (asyc->procamp.vibrant_hue != val) {
			asyc->procamp.vibrant_hue = val;
			asyc->set.procamp = true;
		}
	} else
	if (property == disp->color_vibrance_property) {
		if (asyc->procamp.color_vibrance != val) {
			asyc->procamp.color_vibrance = val;
			asyc->set.procamp = true;
		}
	} else {
		return -EINVAL;
	}

	return 0;
}

void
nouveau_conn_atomic_destroy_state(struct drm_connector *connector,
				  struct drm_connector_state *state)
{
	struct nouveau_conn_atom *asyc = nouveau_conn_atom(state);
	__drm_atomic_helper_connector_destroy_state(&asyc->state);
	kfree(asyc);
}

struct drm_connector_state *
nouveau_conn_atomic_duplicate_state(struct drm_connector *connector)
{
	struct nouveau_conn_atom *armc = nouveau_conn_atom(connector->state);
	struct nouveau_conn_atom *asyc;
	if (!(asyc = kmalloc(sizeof(*asyc), GFP_KERNEL)))
		return NULL;
	__drm_atomic_helper_connector_duplicate_state(connector, &asyc->state);
	asyc->dither = armc->dither;
	asyc->scaler = armc->scaler;
	asyc->procamp = armc->procamp;
	asyc->set.mask = 0;
	return &asyc->state;
}

void
nouveau_conn_reset(struct drm_connector *connector)
{
	struct nouveau_conn_atom *asyc;

	if (WARN_ON(!(asyc = kzalloc(sizeof(*asyc), GFP_KERNEL))))
		return;

	if (connector->state)
		__drm_atomic_helper_connector_destroy_state(connector->state);
	__drm_atomic_helper_connector_reset(connector, &asyc->state);
	asyc->dither.mode = DITHERING_MODE_AUTO;
	asyc->dither.depth = DITHERING_DEPTH_AUTO;
	asyc->scaler.mode = DRM_MODE_SCALE_NONE;
	asyc->scaler.underscan.mode = UNDERSCAN_OFF;
	asyc->procamp.color_vibrance = 150;
	asyc->procamp.vibrant_hue = 90;

	if (nouveau_display(connector->dev)->disp.oclass < NV50_DISP) {
		switch (connector->connector_type) {
		case DRM_MODE_CONNECTOR_LVDS:
			/* See note in nouveau_conn_atomic_set_property(). */
			asyc->scaler.mode = DRM_MODE_SCALE_FULLSCREEN;
			break;
		default:
			break;
		}
	}
}

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 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
void
nouveau_conn_attach_properties(struct drm_connector *connector)
{
	struct drm_device *dev = connector->dev;
	struct nouveau_conn_atom *armc = nouveau_conn_atom(connector->state);
	struct nouveau_display *disp = nouveau_display(dev);

	/* Init DVI-I specific properties. */
	if (connector->connector_type == DRM_MODE_CONNECTOR_DVII)
		drm_object_attach_property(&connector->base, dev->mode_config.
					   dvi_i_subconnector_property, 0);

	/* Add overscan compensation options to digital outputs. */
	if (disp->underscan_property &&
	    (connector->connector_type == DRM_MODE_CONNECTOR_DVID ||
	     connector->connector_type == DRM_MODE_CONNECTOR_DVII ||
	     connector->connector_type == DRM_MODE_CONNECTOR_HDMIA ||
	     connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort)) {
		drm_object_attach_property(&connector->base,
					   disp->underscan_property,
					   UNDERSCAN_OFF);
		drm_object_attach_property(&connector->base,
					   disp->underscan_hborder_property, 0);
		drm_object_attach_property(&connector->base,
					   disp->underscan_vborder_property, 0);
	}

	/* Add hue and saturation options. */
	if (disp->vibrant_hue_property)
		drm_object_attach_property(&connector->base,
					   disp->vibrant_hue_property,
					   armc->procamp.vibrant_hue);
	if (disp->color_vibrance_property)
		drm_object_attach_property(&connector->base,
					   disp->color_vibrance_property,
					   armc->procamp.color_vibrance);

	/* Scaling mode property. */
	switch (connector->connector_type) {
	case DRM_MODE_CONNECTOR_TV:
		break;
	case DRM_MODE_CONNECTOR_VGA:
		if (disp->disp.oclass < NV50_DISP)
			break; /* Can only scale on DFPs. */
		/* Fall-through. */
	default:
		drm_object_attach_property(&connector->base, dev->mode_config.
					   scaling_mode_property,
					   armc->scaler.mode);
		break;
	}

	/* Dithering properties. */
	switch (connector->connector_type) {
	case DRM_MODE_CONNECTOR_TV:
	case DRM_MODE_CONNECTOR_VGA:
		break;
	default:
		if (disp->dithering_mode) {
			drm_object_attach_property(&connector->base,
						   disp->dithering_mode,
						   armc->dither.mode);
		}
		if (disp->dithering_depth) {
			drm_object_attach_property(&connector->base,
						   disp->dithering_depth,
						   armc->dither.depth);
		}
		break;
	}
}

346
MODULE_PARM_DESC(tv_disable, "Disable TV-out detection");
347
int nouveau_tv_disable = 0;
348 349 350
module_param_named(tv_disable, nouveau_tv_disable, int, 0400);

MODULE_PARM_DESC(ignorelid, "Ignore ACPI lid status");
351
int nouveau_ignorelid = 0;
352 353 354
module_param_named(ignorelid, nouveau_ignorelid, int, 0400);

MODULE_PARM_DESC(duallink, "Allow dual-link TMDS (default: enabled)");
355
int nouveau_duallink = 1;
356
module_param_named(duallink, nouveau_duallink, int, 0400);
357

358 359 360 361
MODULE_PARM_DESC(hdmimhz, "Force a maximum HDMI pixel clock (in MHz)");
int nouveau_hdmimhz = 0;
module_param_named(hdmimhz, nouveau_hdmimhz, int, 0400);

362
struct nouveau_encoder *
363
find_encoder(struct drm_connector *connector, int type)
364 365 366
{
	struct drm_device *dev = connector->dev;
	struct nouveau_encoder *nv_encoder;
R
Rob Clark 已提交
367
	struct drm_encoder *enc;
368 369 370 371 372 373 374
	int i, id;

	for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
		id = connector->encoder_ids[i];
		if (!id)
			break;

R
Rob Clark 已提交
375 376
		enc = drm_encoder_find(dev, id);
		if (!enc)
377
			continue;
R
Rob Clark 已提交
378
		nv_encoder = nouveau_encoder(enc);
379

380 381
		if (type == DCB_OUTPUT_ANY ||
		    (nv_encoder->dcb && nv_encoder->dcb->type == type))
382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
			return nv_encoder;
	}

	return NULL;
}

struct nouveau_connector *
nouveau_encoder_connector_get(struct nouveau_encoder *encoder)
{
	struct drm_device *dev = to_drm_encoder(encoder)->dev;
	struct drm_connector *drm_connector;

	list_for_each_entry(drm_connector, &dev->mode_config.connector_list, head) {
		if (drm_connector->encoder == to_drm_encoder(encoder))
			return nouveau_connector(drm_connector);
	}

	return NULL;
}

static void
403
nouveau_connector_destroy(struct drm_connector *connector)
404
{
405
	struct nouveau_connector *nv_connector = nouveau_connector(connector);
406
	nvif_notify_fini(&nv_connector->hpd);
407
	kfree(nv_connector->edid);
408
	drm_connector_unregister(connector);
409
	drm_connector_cleanup(connector);
410 411
	if (nv_connector->aux.transfer)
		drm_dp_aux_unregister(&nv_connector->aux);
412
	kfree(connector);
413 414
}

415 416
static struct nouveau_encoder *
nouveau_connector_ddc_detect(struct drm_connector *connector)
417 418
{
	struct drm_device *dev = connector->dev;
419
	struct nouveau_connector *nv_connector = nouveau_connector(connector);
420
	struct nouveau_drm *drm = nouveau_drm(dev);
421
	struct nvkm_gpio *gpio = nvxx_gpio(&drm->device);
422
	struct nouveau_encoder *nv_encoder;
R
Rob Clark 已提交
423
	struct drm_encoder *encoder;
424 425 426 427 428 429 430
	int i, panel = -ENODEV;

	/* eDP panels need powering on by us (if the VBIOS doesn't default it
	 * to on) before doing any AUX channel transactions.  LVDS panel power
	 * is handled by the SOR itself, and not required for LVDS DDC.
	 */
	if (nv_connector->type == DCB_CONNECTOR_eDP) {
431
		panel = nvkm_gpio_get(gpio, 0, DCB_GPIO_PANEL_POWER, 0xff);
432
		if (panel == 0) {
433
			nvkm_gpio_set(gpio, 0, DCB_GPIO_PANEL_POWER, 0xff, 1);
434 435 436
			msleep(300);
		}
	}
437

438 439 440
	for (i = 0; nv_encoder = NULL, i < DRM_CONNECTOR_MAX_ENCODER; i++) {
		int id = connector->encoder_ids[i];
		if (id == 0)
441 442
			break;

R
Rob Clark 已提交
443 444
		encoder = drm_encoder_find(dev, id);
		if (!encoder)
445
			continue;
R
Rob Clark 已提交
446
		nv_encoder = nouveau_encoder(encoder);
447

448 449
		if (nv_encoder->dcb->type == DCB_OUTPUT_DP) {
			int ret = nouveau_dp_detect(nv_encoder);
450 451 452
			if (ret == NOUVEAU_DP_MST)
				return NULL;
			if (ret == NOUVEAU_DP_SST)
453 454
				break;
		} else
455 456 457 458 459 460 461 462 463 464 465
		if ((vga_switcheroo_handler_flags() &
		     VGA_SWITCHEROO_CAN_SWITCH_DDC) &&
		    nv_encoder->dcb->type == DCB_OUTPUT_LVDS &&
		    nv_encoder->i2c) {
			int ret;
			vga_switcheroo_lock_ddc(dev->pdev);
			ret = nvkm_probe_i2c(nv_encoder->i2c, 0x50);
			vga_switcheroo_unlock_ddc(dev->pdev);
			if (ret)
				break;
		} else
466
		if (nv_encoder->i2c) {
467
			if (nvkm_probe_i2c(nv_encoder->i2c, 0x50))
468
				break;
469 470 471
		}
	}

472 473 474
	/* eDP panel not detected, restore panel power GPIO to previous
	 * state to avoid confusing the SOR for other output types.
	 */
475
	if (!nv_encoder && panel == 0)
476
		nvkm_gpio_set(gpio, 0, DCB_GPIO_PANEL_POWER, 0xff, panel);
477

478
	return nv_encoder;
479 480
}

481 482 483 484 485 486 487 488 489 490
static struct nouveau_encoder *
nouveau_connector_of_detect(struct drm_connector *connector)
{
#ifdef __powerpc__
	struct drm_device *dev = connector->dev;
	struct nouveau_connector *nv_connector = nouveau_connector(connector);
	struct nouveau_encoder *nv_encoder;
	struct device_node *cn, *dn = pci_device_to_OF_node(dev->pdev);

	if (!dn ||
491 492
	    !((nv_encoder = find_encoder(connector, DCB_OUTPUT_TMDS)) ||
	      (nv_encoder = find_encoder(connector, DCB_OUTPUT_ANALOG))))
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510
		return NULL;

	for_each_child_of_node(dn, cn) {
		const char *name = of_get_property(cn, "name", NULL);
		const void *edid = of_get_property(cn, "EDID", NULL);
		int idx = name ? name[strlen(name) - 1] - 'A' : 0;

		if (nv_encoder->dcb->i2c_index == idx && edid) {
			nv_connector->edid =
				kmemdup(edid, EDID_LENGTH, GFP_KERNEL);
			of_node_put(cn);
			return nv_encoder;
		}
	}
#endif
	return NULL;
}

511 512 513 514 515
static void
nouveau_connector_set_encoder(struct drm_connector *connector,
			      struct nouveau_encoder *nv_encoder)
{
	struct nouveau_connector *nv_connector = nouveau_connector(connector);
516
	struct nouveau_drm *drm = nouveau_drm(connector->dev);
517 518 519 520 521 522
	struct drm_device *dev = connector->dev;

	if (nv_connector->detected_encoder == nv_encoder)
		return;
	nv_connector->detected_encoder = nv_encoder;

523
	if (drm->device.info.family >= NV_DEVICE_INFO_V0_TESLA) {
524 525 526
		connector->interlace_allowed = true;
		connector->doublescan_allowed = true;
	} else
527 528
	if (nv_encoder->dcb->type == DCB_OUTPUT_LVDS ||
	    nv_encoder->dcb->type == DCB_OUTPUT_TMDS) {
529 530 531 532
		connector->doublescan_allowed = false;
		connector->interlace_allowed = false;
	} else {
		connector->doublescan_allowed = true;
533 534
		if (drm->device.info.family == NV_DEVICE_INFO_V0_KELVIN ||
		    (drm->device.info.family == NV_DEVICE_INFO_V0_CELSIUS &&
535 536
		     (dev->pdev->device & 0x0ff0) != 0x0100 &&
		     (dev->pdev->device & 0x0ff0) != 0x0150))
537 538 539 540 541 542
			/* HW is broken */
			connector->interlace_allowed = false;
		else
			connector->interlace_allowed = true;
	}

543
	if (nv_connector->type == DCB_CONNECTOR_DVI_I) {
544
		drm_object_property_set_value(&connector->base,
545
			dev->mode_config.dvi_i_subconnector_property,
546
			nv_encoder->dcb->type == DCB_OUTPUT_TMDS ?
547 548 549 550 551 552
			DRM_MODE_SUBCONNECTOR_DVID :
			DRM_MODE_SUBCONNECTOR_DVIA);
	}
}

static enum drm_connector_status
553
nouveau_connector_detect(struct drm_connector *connector, bool force)
554 555
{
	struct drm_device *dev = connector->dev;
556
	struct nouveau_drm *drm = nouveau_drm(dev);
557 558
	struct nouveau_connector *nv_connector = nouveau_connector(connector);
	struct nouveau_encoder *nv_encoder = NULL;
559
	struct nouveau_encoder *nv_partner;
560
	struct i2c_adapter *i2c;
561
	int type;
562 563
	int ret;
	enum drm_connector_status conn_status = connector_status_disconnected;
564

565 566 567 568 569 570
	/* Cleanup the previous EDID block. */
	if (nv_connector->edid) {
		drm_mode_connector_update_edid_property(connector, NULL);
		kfree(nv_connector->edid);
		nv_connector->edid = NULL;
	}
571

572
	ret = pm_runtime_get_sync(connector->dev->dev);
573
	if (ret < 0 && ret != -EACCES)
574 575
		return conn_status;

576 577
	nv_encoder = nouveau_connector_ddc_detect(connector);
	if (nv_encoder && (i2c = nv_encoder->i2c) != NULL) {
578 579 580 581 582 583 584 585
		if ((vga_switcheroo_handler_flags() &
		     VGA_SWITCHEROO_CAN_SWITCH_DDC) &&
		    nv_connector->type == DCB_CONNECTOR_LVDS)
			nv_connector->edid = drm_get_edid_switcheroo(connector,
								     i2c);
		else
			nv_connector->edid = drm_get_edid(connector, i2c);

586 587 588
		drm_mode_connector_update_edid_property(connector,
							nv_connector->edid);
		if (!nv_connector->edid) {
589
			NV_ERROR(drm, "DDC responded, but no EDID for %s\n",
590
				 connector->name);
591
			goto detect_analog;
592 593 594 595 596 597 598
		}

		/* Override encoder type for DVI-I based on whether EDID
		 * says the display is digital or analog, both use the
		 * same i2c channel so the value returned from ddc_detect
		 * isn't necessarily correct.
		 */
599
		nv_partner = NULL;
600 601 602 603 604 605 606 607 608
		if (nv_encoder->dcb->type == DCB_OUTPUT_TMDS)
			nv_partner = find_encoder(connector, DCB_OUTPUT_ANALOG);
		if (nv_encoder->dcb->type == DCB_OUTPUT_ANALOG)
			nv_partner = find_encoder(connector, DCB_OUTPUT_TMDS);

		if (nv_partner && ((nv_encoder->dcb->type == DCB_OUTPUT_ANALOG &&
				    nv_partner->dcb->type == DCB_OUTPUT_TMDS) ||
				   (nv_encoder->dcb->type == DCB_OUTPUT_TMDS &&
				    nv_partner->dcb->type == DCB_OUTPUT_ANALOG))) {
609
			if (nv_connector->edid->input & DRM_EDID_INPUT_DIGITAL)
610
				type = DCB_OUTPUT_TMDS;
611
			else
612
				type = DCB_OUTPUT_ANALOG;
613

614
			nv_encoder = find_encoder(connector, type);
615 616 617
		}

		nouveau_connector_set_encoder(connector, nv_encoder);
618 619
		conn_status = connector_status_connected;
		goto out;
620 621
	}

622 623 624
	nv_encoder = nouveau_connector_of_detect(connector);
	if (nv_encoder) {
		nouveau_connector_set_encoder(connector, nv_encoder);
625 626
		conn_status = connector_status_connected;
		goto out;
627 628
	}

629
detect_analog:
630
	nv_encoder = find_encoder(connector, DCB_OUTPUT_ANALOG);
631
	if (!nv_encoder && !nouveau_tv_disable)
632
		nv_encoder = find_encoder(connector, DCB_OUTPUT_TV);
633
	if (nv_encoder && force) {
634
		struct drm_encoder *encoder = to_drm_encoder(nv_encoder);
635
		const struct drm_encoder_helper_funcs *helper =
636 637 638 639 640
						encoder->helper_private;

		if (helper->detect(encoder, connector) ==
						connector_status_connected) {
			nouveau_connector_set_encoder(connector, nv_encoder);
641 642
			conn_status = connector_status_connected;
			goto out;
643 644 645 646
		}

	}

647 648 649 650 651 652
 out:

	pm_runtime_mark_last_busy(connector->dev->dev);
	pm_runtime_put_autosuspend(connector->dev->dev);

	return conn_status;
653 654
}

655
static enum drm_connector_status
656
nouveau_connector_detect_lvds(struct drm_connector *connector, bool force)
657 658
{
	struct drm_device *dev = connector->dev;
659
	struct nouveau_drm *drm = nouveau_drm(dev);
660 661 662 663 664 665 666 667 668 669 670
	struct nouveau_connector *nv_connector = nouveau_connector(connector);
	struct nouveau_encoder *nv_encoder = NULL;
	enum drm_connector_status status = connector_status_disconnected;

	/* Cleanup the previous EDID block. */
	if (nv_connector->edid) {
		drm_mode_connector_update_edid_property(connector, NULL);
		kfree(nv_connector->edid);
		nv_connector->edid = NULL;
	}

671
	nv_encoder = find_encoder(connector, DCB_OUTPUT_LVDS);
672 673 674
	if (!nv_encoder)
		return connector_status_disconnected;

675
	/* Try retrieving EDID via DDC */
676
	if (!drm->vbios.fp_no_ddc) {
677
		status = nouveau_connector_detect(connector, force);
678 679 680 681
		if (status == connector_status_connected)
			goto out;
	}

682 683 684 685 686 687 688 689 690 691
	/* On some laptops (Sony, i'm looking at you) there appears to
	 * be no direct way of accessing the panel's EDID.  The only
	 * option available to us appears to be to ask ACPI for help..
	 *
	 * It's important this check's before trying straps, one of the
	 * said manufacturer's laptops are configured in such a way
	 * the nouveau decides an entry in the VBIOS FP mode table is
	 * valid - it's not (rh#613284)
	 */
	if (nv_encoder->dcb->lvdsconf.use_acpi_for_edid) {
692
		if ((nv_connector->edid = nouveau_acpi_edid(dev, connector))) {
693 694 695 696 697
			status = connector_status_connected;
			goto out;
		}
	}

698 699 700 701
	/* If no EDID found above, and the VBIOS indicates a hardcoded
	 * modeline is avalilable for the panel, set it as the panel's
	 * native mode and exit.
	 */
702
	if (nouveau_bios_fp_mode(dev, NULL) && (drm->vbios.fp_no_ddc ||
703 704 705 706 707 708 709 710
	    nv_encoder->dcb->lvdsconf.use_straps_for_mode)) {
		status = connector_status_connected;
		goto out;
	}

	/* Still nothing, some VBIOS images have a hardcoded EDID block
	 * stored for the panel stored in them.
	 */
711
	if (!drm->vbios.fp_no_ddc) {
712 713 714
		struct edid *edid =
			(struct edid *)nouveau_bios_embedded_edid(dev);
		if (edid) {
715 716 717 718
			nv_connector->edid =
					kmemdup(edid, EDID_LENGTH, GFP_KERNEL);
			if (nv_connector->edid)
				status = connector_status_connected;
719 720 721 722 723 724 725 726 727 728 729 730
		}
	}

out:
#if defined(CONFIG_ACPI_BUTTON) || \
	(defined(CONFIG_ACPI_BUTTON_MODULE) && defined(MODULE))
	if (status == connector_status_connected &&
	    !nouveau_ignorelid && !acpi_lid_open())
		status = connector_status_unknown;
#endif

	drm_mode_connector_update_edid_property(connector, nv_connector->edid);
A
Albert Damen 已提交
731
	nouveau_connector_set_encoder(connector, nv_encoder);
732 733 734
	return status;
}

735 736 737
static void
nouveau_connector_force(struct drm_connector *connector)
{
738
	struct nouveau_drm *drm = nouveau_drm(connector->dev);
739
	struct nouveau_connector *nv_connector = nouveau_connector(connector);
740 741 742
	struct nouveau_encoder *nv_encoder;
	int type;

743
	if (nv_connector->type == DCB_CONNECTOR_DVI_I) {
744
		if (connector->force == DRM_FORCE_ON_DIGITAL)
745
			type = DCB_OUTPUT_TMDS;
746
		else
747
			type = DCB_OUTPUT_ANALOG;
748
	} else
749
		type = DCB_OUTPUT_ANY;
750

751
	nv_encoder = find_encoder(connector, type);
752
	if (!nv_encoder) {
753
		NV_ERROR(drm, "can't find encoder to force %s on!\n",
754
			 connector->name);
755 756 757 758 759 760 761 762 763 764 765
		connector->status = connector_status_disconnected;
		return;
	}

	nouveau_connector_set_encoder(connector, nv_encoder);
}

static int
nouveau_connector_set_property(struct drm_connector *connector,
			       struct drm_property *property, uint64_t value)
{
766
	struct nouveau_conn_atom *asyc = nouveau_conn_atom(connector->state);
767 768
	struct nouveau_connector *nv_connector = nouveau_connector(connector);
	struct nouveau_encoder *nv_encoder = nv_connector->detected_encoder;
769
	struct drm_encoder *encoder = to_drm_encoder(nv_encoder);
770
	struct nouveau_crtc *nv_crtc = NULL;
771 772
	int ret;

773 774 775
	if (connector->dev->mode_config.funcs->atomic_commit)
		return drm_atomic_helper_connector_set_property(connector, property, value);

776 777 778 779 780 781 782 783
	ret = connector->funcs->atomic_set_property(&nv_connector->base,
						    &asyc->state,
						    property, value);
	if (ret) {
		if (nv_encoder && nv_encoder->dcb->type == DCB_OUTPUT_TV)
			return get_slave_funcs(encoder)->set_property(
				encoder, connector, property, value);
		return ret;
784 785
	}

786 787 788 789 790 791
	nv_connector->scaling_mode = asyc->scaler.mode;
	nv_connector->underscan = asyc->scaler.underscan.mode;
	nv_connector->underscan_hborder = asyc->scaler.underscan.hborder;
	nv_connector->underscan_vborder = asyc->scaler.underscan.vborder;
	nv_connector->dithering_mode = asyc->dither.mode;
	nv_connector->dithering_depth = asyc->dither.depth;
792

793 794 795
	if (connector->encoder && connector->encoder->crtc)
		nv_crtc = nouveau_crtc(connector->encoder->crtc);
	if (!nv_crtc)
796 797
		return 0;

798 799
	nv_crtc->vibrant_hue = asyc->procamp.vibrant_hue - 90;
	nv_crtc->color_vibrance = asyc->procamp.color_vibrance - 100;
800

801 802 803 804
	ret = drm_crtc_helper_set_mode(&nv_crtc->base, &nv_crtc->base.mode,
				       nv_crtc->base.x, nv_crtc->base.y, NULL);
	if (!ret)
		return -EINVAL;
805

806
	return 0;
807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845
}

struct moderec {
	int hdisplay;
	int vdisplay;
};

static struct moderec scaler_modes[] = {
	{ 1920, 1200 },
	{ 1920, 1080 },
	{ 1680, 1050 },
	{ 1600, 1200 },
	{ 1400, 1050 },
	{ 1280, 1024 },
	{ 1280, 960 },
	{ 1152, 864 },
	{ 1024, 768 },
	{ 800, 600 },
	{ 720, 400 },
	{ 640, 480 },
	{ 640, 400 },
	{ 640, 350 },
	{}
};

static int
nouveau_connector_scaler_modes_add(struct drm_connector *connector)
{
	struct nouveau_connector *nv_connector = nouveau_connector(connector);
	struct drm_display_mode *native = nv_connector->native_mode, *m;
	struct drm_device *dev = connector->dev;
	struct moderec *mode = &scaler_modes[0];
	int modes = 0;

	if (!native)
		return 0;

	while (mode->hdisplay) {
		if (mode->hdisplay <= native->hdisplay &&
846 847 848
		    mode->vdisplay <= native->vdisplay &&
		    (mode->hdisplay != native->hdisplay ||
		     mode->vdisplay != native->vdisplay)) {
849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864
			m = drm_cvt_mode(dev, mode->hdisplay, mode->vdisplay,
					 drm_mode_vrefresh(native), false,
					 false, false);
			if (!m)
				continue;

			drm_mode_probed_add(connector, m);
			modes++;
		}

		mode++;
	}

	return modes;
}

865 866 867
static void
nouveau_connector_detect_depth(struct drm_connector *connector)
{
868
	struct nouveau_drm *drm = nouveau_drm(connector->dev);
869 870
	struct nouveau_connector *nv_connector = nouveau_connector(connector);
	struct nouveau_encoder *nv_encoder = nv_connector->detected_encoder;
871
	struct nvbios *bios = &drm->vbios;
872 873 874 875 876 877 878
	struct drm_display_mode *mode = nv_connector->native_mode;
	bool duallink;

	/* if the edid is feeling nice enough to provide this info, use it */
	if (nv_connector->edid && connector->display_info.bpc)
		return;

879 880 881 882 883 884 885
	/* EDID 1.4 is *supposed* to be supported on eDP, but, Apple... */
	if (nv_connector->type == DCB_CONNECTOR_eDP) {
		connector->display_info.bpc = 6;
		return;
	}

	/* we're out of options unless we're LVDS, default to 8bpc */
886
	if (nv_encoder->dcb->type != DCB_OUTPUT_LVDS) {
887
		connector->display_info.bpc = 8;
888
		return;
889 890 891
	}

	connector->display_info.bpc = 6;
892 893 894 895 896 897 898 899 900 901 902 903

	/* LVDS: panel straps */
	if (bios->fp_no_ddc) {
		if (bios->fp.if_is_24bit)
			connector->display_info.bpc = 8;
		return;
	}

	/* LVDS: DDC panel, need to first determine the number of links to
	 * know which if_is_24bit flag to check...
	 */
	if (nv_connector->edid &&
904
	    nv_connector->type == DCB_CONNECTOR_LVDS_SPWG)
905 906 907 908 909 910 911 912 913
		duallink = ((u8 *)nv_connector->edid)[121] == 2;
	else
		duallink = mode->clock >= bios->fp.duallink_transition_clk;

	if ((!duallink && (bios->fp.strapless_is_24bit & 1)) ||
	    ( duallink && (bios->fp.strapless_is_24bit & 2)))
		connector->display_info.bpc = 8;
}

914 915 916 917
static int
nouveau_connector_get_modes(struct drm_connector *connector)
{
	struct drm_device *dev = connector->dev;
918
	struct nouveau_drm *drm = nouveau_drm(dev);
919 920
	struct nouveau_connector *nv_connector = nouveau_connector(connector);
	struct nouveau_encoder *nv_encoder = nv_connector->detected_encoder;
921
	struct drm_encoder *encoder = to_drm_encoder(nv_encoder);
922 923
	int ret = 0;

924
	/* destroy the native mode, the attached monitor could have changed.
925
	 */
926
	if (nv_connector->native_mode) {
927 928 929 930 931 932
		drm_mode_destroy(dev, nv_connector->native_mode);
		nv_connector->native_mode = NULL;
	}

	if (nv_connector->edid)
		ret = drm_add_edid_modes(connector, nv_connector->edid);
933
	else
934
	if (nv_encoder->dcb->type == DCB_OUTPUT_LVDS &&
935
	    (nv_encoder->dcb->lvdsconf.use_straps_for_mode ||
936
	     drm->vbios.fp_no_ddc) && nouveau_bios_fp_mode(dev, NULL)) {
937 938 939 940
		struct drm_display_mode mode;

		nouveau_bios_fp_mode(dev, &mode);
		nv_connector->native_mode = drm_mode_duplicate(dev, &mode);
941
	}
942

943 944 945 946 947 948
	/* Determine display colour depth for everything except LVDS now,
	 * DP requires this before mode_valid() is called.
	 */
	if (connector->connector_type != DRM_MODE_CONNECTOR_LVDS)
		nouveau_connector_detect_depth(connector);

949 950 951 952 953
	/* Find the native mode if this is a digital panel, if we didn't
	 * find any modes through DDC previously add the native mode to
	 * the list of modes.
	 */
	if (!nv_connector->native_mode)
954
		nv_connector->native_mode = nouveau_conn_native_mode(connector);
955 956 957 958 959 960 961 962
	if (ret == 0 && nv_connector->native_mode) {
		struct drm_display_mode *mode;

		mode = drm_mode_duplicate(dev, nv_connector->native_mode);
		drm_mode_probed_add(connector, mode);
		ret = 1;
	}

963 964 965
	/* Determine LVDS colour depth, must happen after determining
	 * "native" mode as some VBIOS tables require us to use the
	 * pixel clock as part of the lookup...
966
	 */
967 968
	if (connector->connector_type == DRM_MODE_CONNECTOR_LVDS)
		nouveau_connector_detect_depth(connector);
969

970
	if (nv_encoder->dcb->type == DCB_OUTPUT_TV)
971
		ret = get_slave_funcs(encoder)->get_modes(encoder, connector);
972

973 974 975
	if (nv_connector->type == DCB_CONNECTOR_LVDS ||
	    nv_connector->type == DCB_CONNECTOR_LVDS_SPWG ||
	    nv_connector->type == DCB_CONNECTOR_eDP)
976 977 978 979 980
		ret += nouveau_connector_scaler_modes_add(connector);

	return ret;
}

981
static unsigned
982
get_tmds_link_bandwidth(struct drm_connector *connector, bool hdmi)
983 984
{
	struct nouveau_connector *nv_connector = nouveau_connector(connector);
985
	struct nouveau_drm *drm = nouveau_drm(connector->dev);
986
	struct dcb_output *dcb = nv_connector->detected_encoder->dcb;
987

988 989 990 991 992 993 994 995 996 997 998
	if (hdmi) {
		if (nouveau_hdmimhz > 0)
			return nouveau_hdmimhz * 1000;
		/* Note: these limits are conservative, some Fermi's
		 * can do 297 MHz. Unclear how this can be determined.
		 */
		if (drm->device.info.family >= NV_DEVICE_INFO_V0_KEPLER)
			return 297000;
		if (drm->device.info.family >= NV_DEVICE_INFO_V0_FERMI)
			return 225000;
	}
999
	if (dcb->location != DCB_LOC_ON_CHIP ||
1000
	    drm->device.info.chipset >= 0x46)
1001
		return 165000;
1002
	else if (drm->device.info.chipset >= 0x40)
1003
		return 155000;
1004
	else if (drm->device.info.chipset >= 0x18)
1005 1006 1007 1008 1009
		return 135000;
	else
		return 112000;
}

1010 1011 1012 1013 1014 1015
static int
nouveau_connector_mode_valid(struct drm_connector *connector,
			     struct drm_display_mode *mode)
{
	struct nouveau_connector *nv_connector = nouveau_connector(connector);
	struct nouveau_encoder *nv_encoder = nv_connector->detected_encoder;
1016
	struct drm_encoder *encoder = to_drm_encoder(nv_encoder);
1017 1018
	unsigned min_clock = 25000, max_clock = min_clock;
	unsigned clock = mode->clock;
1019
	bool hdmi;
1020 1021

	switch (nv_encoder->dcb->type) {
1022
	case DCB_OUTPUT_LVDS:
1023 1024 1025
		if (nv_connector->native_mode &&
		    (mode->hdisplay > nv_connector->native_mode->hdisplay ||
		     mode->vdisplay > nv_connector->native_mode->vdisplay))
1026 1027 1028 1029 1030
			return MODE_PANEL;

		min_clock = 0;
		max_clock = 400000;
		break;
1031
	case DCB_OUTPUT_TMDS:
1032 1033 1034 1035
		hdmi = drm_detect_hdmi_monitor(nv_connector->edid);
		max_clock = get_tmds_link_bandwidth(connector, hdmi);
		if (!hdmi && nouveau_duallink &&
		    nv_encoder->dcb->duallink_possible)
1036
			max_clock *= 2;
1037
		break;
1038
	case DCB_OUTPUT_ANALOG:
1039 1040 1041 1042
		max_clock = nv_encoder->dcb->crtconf.maxfreq;
		if (!max_clock)
			max_clock = 350000;
		break;
1043
	case DCB_OUTPUT_TV:
1044
		return get_slave_funcs(encoder)->mode_valid(encoder, mode);
1045
	case DCB_OUTPUT_DP:
1046 1047
		max_clock  = nv_encoder->dp.link_nr;
		max_clock *= nv_encoder->dp.link_bw;
1048
		clock = clock * (connector->display_info.bpc * 3) / 10;
1049
		break;
1050 1051 1052
	default:
		BUG_ON(1);
		return MODE_BAD;
1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081
	}

	if (clock < min_clock)
		return MODE_CLOCK_LOW;

	if (clock > max_clock)
		return MODE_CLOCK_HIGH;

	return MODE_OK;
}

static struct drm_encoder *
nouveau_connector_best_encoder(struct drm_connector *connector)
{
	struct nouveau_connector *nv_connector = nouveau_connector(connector);

	if (nv_connector->detected_encoder)
		return to_drm_encoder(nv_connector->detected_encoder);

	return NULL;
}

static const struct drm_connector_helper_funcs
nouveau_connector_helper_funcs = {
	.get_modes = nouveau_connector_get_modes,
	.mode_valid = nouveau_connector_mode_valid,
	.best_encoder = nouveau_connector_best_encoder,
};

1082 1083 1084 1085 1086 1087 1088 1089
static int
nouveau_connector_dpms(struct drm_connector *connector, int mode)
{
	if (connector->dev->mode_config.funcs->atomic_commit)
		return drm_atomic_helper_connector_dpms(connector, mode);
	return drm_helper_connector_dpms(connector, mode);
}

1090 1091
static const struct drm_connector_funcs
nouveau_connector_funcs = {
1092
	.dpms = nouveau_connector_dpms,
1093
	.reset = nouveau_conn_reset,
1094
	.detect = nouveau_connector_detect,
1095
	.force = nouveau_connector_force,
1096 1097
	.fill_modes = drm_helper_probe_single_connector_modes,
	.set_property = nouveau_connector_set_property,
1098 1099 1100 1101 1102
	.destroy = nouveau_connector_destroy,
	.atomic_duplicate_state = nouveau_conn_atomic_duplicate_state,
	.atomic_destroy_state = nouveau_conn_atomic_destroy_state,
	.atomic_set_property = nouveau_conn_atomic_set_property,
	.atomic_get_property = nouveau_conn_atomic_get_property,
1103 1104
};

1105 1106
static const struct drm_connector_funcs
nouveau_connector_funcs_lvds = {
1107
	.dpms = nouveau_connector_dpms,
1108
	.reset = nouveau_conn_reset,
1109
	.detect = nouveau_connector_detect_lvds,
1110
	.force = nouveau_connector_force,
1111 1112
	.fill_modes = drm_helper_probe_single_connector_modes,
	.set_property = nouveau_connector_set_property,
1113 1114 1115 1116 1117
	.destroy = nouveau_connector_destroy,
	.atomic_duplicate_state = nouveau_conn_atomic_duplicate_state,
	.atomic_destroy_state = nouveau_conn_atomic_destroy_state,
	.atomic_set_property = nouveau_conn_atomic_set_property,
	.atomic_get_property = nouveau_conn_atomic_get_property,
1118
};
1119

1120
static int
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130
nouveau_connector_dp_dpms(struct drm_connector *connector, int mode)
{
	struct nouveau_encoder *nv_encoder = NULL;

	if (connector->encoder)
		nv_encoder = nouveau_encoder(connector->encoder);
	if (nv_encoder && nv_encoder->dcb &&
	    nv_encoder->dcb->type == DCB_OUTPUT_DP) {
		if (mode == DRM_MODE_DPMS_ON) {
			u8 data = DP_SET_POWER_D0;
1131
			nvkm_wraux(nv_encoder->aux, DP_SET_POWER, &data, 1);
1132 1133 1134
			usleep_range(1000, 2000);
		} else {
			u8 data = DP_SET_POWER_D3;
1135
			nvkm_wraux(nv_encoder->aux, DP_SET_POWER, &data, 1);
1136 1137 1138
		}
	}

1139
	return drm_helper_connector_dpms(connector, mode);
1140 1141 1142 1143 1144
}

static const struct drm_connector_funcs
nouveau_connector_funcs_dp = {
	.dpms = nouveau_connector_dp_dpms,
1145
	.reset = nouveau_conn_reset,
1146
	.detect = nouveau_connector_detect,
1147
	.force = nouveau_connector_force,
1148 1149
	.fill_modes = drm_helper_probe_single_connector_modes,
	.set_property = nouveau_connector_set_property,
1150 1151 1152 1153 1154
	.destroy = nouveau_connector_destroy,
	.atomic_duplicate_state = nouveau_conn_atomic_duplicate_state,
	.atomic_destroy_state = nouveau_conn_atomic_destroy_state,
	.atomic_set_property = nouveau_conn_atomic_set_property,
	.atomic_get_property = nouveau_conn_atomic_get_property,
1155 1156
};

1157
static int
1158
nouveau_connector_hotplug(struct nvif_notify *notify)
1159 1160
{
	struct nouveau_connector *nv_connector =
1161
		container_of(notify, typeof(*nv_connector), hpd);
1162
	struct drm_connector *connector = &nv_connector->base;
1163
	struct nouveau_drm *drm = nouveau_drm(connector->dev);
1164
	const struct nvif_notify_conn_rep_v0 *rep = notify->data;
1165
	const char *name = connector->name;
1166

1167
	if (rep->mask & NVIF_NOTIFY_CONN_V0_IRQ) {
1168
	} else {
1169
		bool plugged = (rep->mask != NVIF_NOTIFY_CONN_V0_UNPLUG);
1170

1171 1172 1173 1174
		NV_DEBUG(drm, "%splugged %s\n", plugged ? "" : "un", name);
		drm_helper_hpd_irq_event(connector->dev);
	}

1175
	return NVIF_NOTIFY_KEEP;
1176 1177
}

1178
static ssize_t
1179
nouveau_connector_aux_xfer(struct drm_dp_aux *obj, struct drm_dp_aux_msg *msg)
1180 1181
{
	struct nouveau_connector *nv_connector =
1182
		container_of(obj, typeof(*nv_connector), aux);
1183
	struct nouveau_encoder *nv_encoder;
1184
	struct nvkm_i2c_aux *aux;
1185 1186 1187
	int ret;

	nv_encoder = find_encoder(&nv_connector->base, DCB_OUTPUT_DP);
1188
	if (!nv_encoder || !(aux = nv_encoder->aux))
1189 1190 1191 1192 1193 1194
		return -ENODEV;
	if (WARN_ON(msg->size > 16))
		return -E2BIG;
	if (msg->size == 0)
		return msg->size;

1195
	ret = nvkm_i2c_aux_acquire(aux);
1196 1197 1198
	if (ret)
		return ret;

1199 1200 1201
	ret = nvkm_i2c_aux_xfer(aux, false, msg->request, msg->address,
				msg->buffer, msg->size);
	nvkm_i2c_aux_release(aux);
1202 1203 1204 1205 1206 1207 1208 1209
	if (ret >= 0) {
		msg->reply = ret;
		return msg->size;
	}

	return ret;
}

1210 1211 1212 1213 1214 1215 1216 1217
static int
drm_conntype_from_dcb(enum dcb_connector_type dcb)
{
	switch (dcb) {
	case DCB_CONNECTOR_VGA      : return DRM_MODE_CONNECTOR_VGA;
	case DCB_CONNECTOR_TV_0     :
	case DCB_CONNECTOR_TV_1     :
	case DCB_CONNECTOR_TV_3     : return DRM_MODE_CONNECTOR_TV;
1218 1219
	case DCB_CONNECTOR_DMS59_0  :
	case DCB_CONNECTOR_DMS59_1  :
1220 1221 1222 1223
	case DCB_CONNECTOR_DVI_I    : return DRM_MODE_CONNECTOR_DVII;
	case DCB_CONNECTOR_DVI_D    : return DRM_MODE_CONNECTOR_DVID;
	case DCB_CONNECTOR_LVDS     :
	case DCB_CONNECTOR_LVDS_SPWG: return DRM_MODE_CONNECTOR_LVDS;
1224 1225
	case DCB_CONNECTOR_DMS59_DP0:
	case DCB_CONNECTOR_DMS59_DP1:
1226 1227 1228
	case DCB_CONNECTOR_DP       : return DRM_MODE_CONNECTOR_DisplayPort;
	case DCB_CONNECTOR_eDP      : return DRM_MODE_CONNECTOR_eDP;
	case DCB_CONNECTOR_HDMI_0   :
1229 1230
	case DCB_CONNECTOR_HDMI_1   :
	case DCB_CONNECTOR_HDMI_C   : return DRM_MODE_CONNECTOR_HDMIA;
1231 1232 1233 1234 1235 1236 1237
	default:
		break;
	}

	return DRM_MODE_CONNECTOR_Unknown;
}

1238 1239
struct drm_connector *
nouveau_connector_create(struct drm_device *dev, int index)
1240
{
1241
	const struct drm_connector_funcs *funcs = &nouveau_connector_funcs;
1242 1243
	struct nouveau_drm *drm = nouveau_drm(dev);
	struct nouveau_display *disp = nouveau_display(dev);
1244 1245
	struct nouveau_connector *nv_connector = NULL;
	struct drm_connector *connector;
1246
	int type, ret = 0;
1247
	bool dummy;
1248

1249 1250 1251 1252
	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
		nv_connector = nouveau_connector(connector);
		if (nv_connector->index == index)
			return connector;
1253 1254
	}

1255 1256
	nv_connector = kzalloc(sizeof(*nv_connector), GFP_KERNEL);
	if (!nv_connector)
1257
		return ERR_PTR(-ENOMEM);
1258

1259
	connector = &nv_connector->base;
1260 1261 1262
	nv_connector->index = index;

	/* attempt to parse vbios connector type and hotplug gpio */
1263
	nv_connector->dcb = olddcb_conn(dev, index);
1264 1265
	if (nv_connector->dcb) {
		u32 entry = ROM16(nv_connector->dcb[0]);
1266
		if (olddcb_conntab(dev)[3] >= 4)
1267 1268 1269 1270 1271
			entry |= (u32)ROM16(nv_connector->dcb[2]) << 16;

		nv_connector->type = nv_connector->dcb[0];
		if (drm_conntype_from_dcb(nv_connector->type) ==
					  DRM_MODE_CONNECTOR_Unknown) {
1272
			NV_WARN(drm, "unknown connector type %02x\n",
1273 1274 1275
				nv_connector->type);
			nv_connector->type = DCB_CONNECTOR_NONE;
		}
1276

1277 1278 1279 1280 1281
		/* Gigabyte NX85T */
		if (nv_match_device(dev, 0x0421, 0x1458, 0x344c)) {
			if (nv_connector->type == DCB_CONNECTOR_HDMI_1)
				nv_connector->type = DCB_CONNECTOR_DVI_I;
		}
1282

1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295
		/* Gigabyte GV-NX86T512H */
		if (nv_match_device(dev, 0x0402, 0x1458, 0x3455)) {
			if (nv_connector->type == DCB_CONNECTOR_HDMI_1)
				nv_connector->type = DCB_CONNECTOR_DVI_I;
		}
	} else {
		nv_connector->type = DCB_CONNECTOR_NONE;
	}

	/* no vbios data, or an unknown dcb connector type - attempt to
	 * figure out something suitable ourselves
	 */
	if (nv_connector->type == DCB_CONNECTOR_NONE) {
1296 1297
		struct nouveau_drm *drm = nouveau_drm(dev);
		struct dcb_table *dcbt = &drm->vbios.dcb;
1298 1299 1300 1301 1302 1303 1304
		u32 encoders = 0;
		int i;

		for (i = 0; i < dcbt->entries; i++) {
			if (dcbt->entry[i].connector == nv_connector->index)
				encoders |= (1 << dcbt->entry[i].type);
		}
1305

1306 1307
		if (encoders & (1 << DCB_OUTPUT_DP)) {
			if (encoders & (1 << DCB_OUTPUT_TMDS))
1308 1309 1310 1311
				nv_connector->type = DCB_CONNECTOR_DP;
			else
				nv_connector->type = DCB_CONNECTOR_eDP;
		} else
1312 1313
		if (encoders & (1 << DCB_OUTPUT_TMDS)) {
			if (encoders & (1 << DCB_OUTPUT_ANALOG))
1314 1315 1316 1317
				nv_connector->type = DCB_CONNECTOR_DVI_I;
			else
				nv_connector->type = DCB_CONNECTOR_DVI_D;
		} else
1318
		if (encoders & (1 << DCB_OUTPUT_ANALOG)) {
1319 1320
			nv_connector->type = DCB_CONNECTOR_VGA;
		} else
1321
		if (encoders & (1 << DCB_OUTPUT_LVDS)) {
1322 1323
			nv_connector->type = DCB_CONNECTOR_LVDS;
		} else
1324
		if (encoders & (1 << DCB_OUTPUT_TV)) {
1325 1326 1327
			nv_connector->type = DCB_CONNECTOR_TV_0;
		}
	}
1328

1329 1330
	switch ((type = drm_conntype_from_dcb(nv_connector->type))) {
	case DRM_MODE_CONNECTOR_LVDS:
1331
		ret = nouveau_bios_parse_lvds_table(dev, 0, &dummy, &dummy);
1332
		if (ret) {
1333
			NV_ERROR(drm, "Error parsing LVDS table, disabling\n");
1334 1335
			kfree(nv_connector);
			return ERR_PTR(ret);
1336
		}
1337 1338

		funcs = &nouveau_connector_funcs_lvds;
1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350
		break;
	case DRM_MODE_CONNECTOR_DisplayPort:
	case DRM_MODE_CONNECTOR_eDP:
		nv_connector->aux.dev = dev->dev;
		nv_connector->aux.transfer = nouveau_connector_aux_xfer;
		ret = drm_dp_aux_register(&nv_connector->aux);
		if (ret) {
			NV_ERROR(drm, "failed to register aux channel\n");
			kfree(nv_connector);
			return ERR_PTR(ret);
		}

1351 1352 1353 1354
		if (dev->mode_config.funcs->atomic_commit)
			funcs = &nouveau_connector_funcs;
		else
			funcs = &nouveau_connector_funcs_dp;
1355 1356 1357 1358
		break;
	default:
		funcs = &nouveau_connector_funcs;
		break;
1359 1360
	}

1361 1362 1363 1364 1365 1366 1367
	/* defaults, will get overridden in detect() */
	connector->interlace_allowed = false;
	connector->doublescan_allowed = false;

	drm_connector_init(dev, connector, funcs, type);
	drm_connector_helper_add(connector, &nouveau_connector_helper_funcs);

1368 1369
	connector->funcs->reset(connector);
	nouveau_conn_attach_properties(connector);
1370

1371
	/* Default scaling mode */
1372
	switch (nv_connector->type) {
1373 1374 1375 1376 1377 1378 1379 1380
	case DCB_CONNECTOR_LVDS:
	case DCB_CONNECTOR_LVDS_SPWG:
	case DCB_CONNECTOR_eDP:
		/* see note in nouveau_connector_set_property() */
		if (disp->disp.oclass < NV50_DISP) {
			nv_connector->scaling_mode = DRM_MODE_SCALE_FULLSCREEN;
			break;
		}
1381 1382 1383
		nv_connector->scaling_mode = DRM_MODE_SCALE_NONE;
		break;
	default:
1384
		nv_connector->scaling_mode = DRM_MODE_SCALE_NONE;
1385 1386
		break;
	}
1387

1388 1389 1390 1391 1392 1393 1394 1395
	/* dithering properties */
	switch (nv_connector->type) {
	case DCB_CONNECTOR_TV_0:
	case DCB_CONNECTOR_TV_1:
	case DCB_CONNECTOR_TV_3:
	case DCB_CONNECTOR_VGA:
		break;
	default:
1396 1397
		nv_connector->dithering_mode = DITHERING_MODE_AUTO;
		nv_connector->dithering_depth = DITHERING_DEPTH_AUTO;
1398
		break;
1399 1400
	}

1401 1402
	ret = nvif_notify_init(&disp->disp, nouveau_connector_hotplug, true,
			       NV04_DISP_NTFY_CONN,
1403 1404 1405 1406 1407 1408 1409
			       &(struct nvif_notify_conn_req_v0) {
				.mask = NVIF_NOTIFY_CONN_V0_ANY,
				.conn = index,
			       },
			       sizeof(struct nvif_notify_conn_req_v0),
			       sizeof(struct nvif_notify_conn_rep_v0),
			       &nv_connector->hpd);
1410 1411 1412
	if (ret)
		connector->polled = DRM_CONNECTOR_POLL_CONNECT;
	else
1413
		connector->polled = DRM_CONNECTOR_POLL_HPD;
1414

1415
	drm_connector_register(connector);
1416
	return connector;
1417
}