2 * Copyright (C) 2008 Maarten Maathuis.
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial
15 * portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 #include <acpi/button.h>
29 #include <linux/pm_runtime.h>
30 #include <linux/vga_switcheroo.h>
32 #include <drm/drm_atomic_helper.h>
33 #include <drm/drm_edid.h>
34 #include <drm/drm_crtc_helper.h>
35 #include <drm/drm_probe_helper.h>
36 #include <drm/drm_atomic.h>
38 #include "nouveau_reg.h"
39 #include "nouveau_drv.h"
40 #include "dispnv04/hw.h"
41 #include "dispnv50/disp.h"
42 #include "nouveau_acpi.h"
44 #include "nouveau_display.h"
45 #include "nouveau_connector.h"
46 #include "nouveau_encoder.h"
47 #include "nouveau_crtc.h"
49 #include <nvif/class.h>
50 #include <nvif/cl0046.h>
51 #include <nvif/event.h>
53 struct drm_display_mode *
54 nouveau_conn_native_mode(struct drm_connector *connector)
56 const struct drm_connector_helper_funcs *helper = connector->helper_private;
57 struct nouveau_drm *drm = nouveau_drm(connector->dev);
58 struct drm_device *dev = connector->dev;
59 struct drm_display_mode *mode, *largest = NULL;
60 int high_w = 0, high_h = 0, high_v = 0;
62 list_for_each_entry(mode, &connector->probed_modes, head) {
63 if (helper->mode_valid(connector, mode) != MODE_OK ||
64 (mode->flags & DRM_MODE_FLAG_INTERLACE))
67 /* Use preferred mode if there is one.. */
68 if (mode->type & DRM_MODE_TYPE_PREFERRED) {
69 NV_DEBUG(drm, "native mode from preferred\n");
70 return drm_mode_duplicate(dev, mode);
73 /* Otherwise, take the resolution with the largest width, then
74 * height, then vertical refresh
76 if (mode->hdisplay < high_w)
79 if (mode->hdisplay == high_w && mode->vdisplay < high_h)
82 if (mode->hdisplay == high_w && mode->vdisplay == high_h &&
83 drm_mode_vrefresh(mode) < high_v)
86 high_w = mode->hdisplay;
87 high_h = mode->vdisplay;
88 high_v = drm_mode_vrefresh(mode);
92 NV_DEBUG(drm, "native mode from largest: %dx%d@%d\n",
93 high_w, high_h, high_v);
94 return largest ? drm_mode_duplicate(dev, largest) : NULL;
98 nouveau_conn_atomic_get_property(struct drm_connector *connector,
99 const struct drm_connector_state *state,
100 struct drm_property *property, u64 *val)
102 struct nouveau_conn_atom *asyc = nouveau_conn_atom(state);
103 struct nouveau_display *disp = nouveau_display(connector->dev);
104 struct drm_device *dev = connector->dev;
106 if (property == dev->mode_config.scaling_mode_property)
107 *val = asyc->scaler.mode;
108 else if (property == disp->underscan_property)
109 *val = asyc->scaler.underscan.mode;
110 else if (property == disp->underscan_hborder_property)
111 *val = asyc->scaler.underscan.hborder;
112 else if (property == disp->underscan_vborder_property)
113 *val = asyc->scaler.underscan.vborder;
114 else if (property == disp->dithering_mode)
115 *val = asyc->dither.mode;
116 else if (property == disp->dithering_depth)
117 *val = asyc->dither.depth;
118 else if (property == disp->vibrant_hue_property)
119 *val = asyc->procamp.vibrant_hue;
120 else if (property == disp->color_vibrance_property)
121 *val = asyc->procamp.color_vibrance;
129 nouveau_conn_atomic_set_property(struct drm_connector *connector,
130 struct drm_connector_state *state,
131 struct drm_property *property, u64 val)
133 struct drm_device *dev = connector->dev;
134 struct nouveau_conn_atom *asyc = nouveau_conn_atom(state);
135 struct nouveau_display *disp = nouveau_display(dev);
137 if (property == dev->mode_config.scaling_mode_property) {
139 case DRM_MODE_SCALE_NONE:
140 /* We allow 'None' for EDID modes, even on a fixed
141 * panel (some exist with support for lower refresh
142 * rates, which people might want to use for power-
145 * Non-EDID modes will force the use of GPU scaling
146 * to the native mode regardless of this setting.
148 switch (connector->connector_type) {
149 case DRM_MODE_CONNECTOR_LVDS:
150 case DRM_MODE_CONNECTOR_eDP:
151 /* ... except prior to G80, where the code
152 * doesn't support such things.
154 if (disp->disp.object.oclass < NV50_DISP)
160 case DRM_MODE_SCALE_FULLSCREEN:
161 case DRM_MODE_SCALE_CENTER:
162 case DRM_MODE_SCALE_ASPECT:
168 if (asyc->scaler.mode != val) {
169 asyc->scaler.mode = val;
170 asyc->set.scaler = true;
173 if (property == disp->underscan_property) {
174 if (asyc->scaler.underscan.mode != val) {
175 asyc->scaler.underscan.mode = val;
176 asyc->set.scaler = true;
179 if (property == disp->underscan_hborder_property) {
180 if (asyc->scaler.underscan.hborder != val) {
181 asyc->scaler.underscan.hborder = val;
182 asyc->set.scaler = true;
185 if (property == disp->underscan_vborder_property) {
186 if (asyc->scaler.underscan.vborder != val) {
187 asyc->scaler.underscan.vborder = val;
188 asyc->set.scaler = true;
191 if (property == disp->dithering_mode) {
192 if (asyc->dither.mode != val) {
193 asyc->dither.mode = val;
194 asyc->set.dither = true;
197 if (property == disp->dithering_depth) {
198 if (asyc->dither.mode != val) {
199 asyc->dither.depth = val;
200 asyc->set.dither = true;
203 if (property == disp->vibrant_hue_property) {
204 if (asyc->procamp.vibrant_hue != val) {
205 asyc->procamp.vibrant_hue = val;
206 asyc->set.procamp = true;
209 if (property == disp->color_vibrance_property) {
210 if (asyc->procamp.color_vibrance != val) {
211 asyc->procamp.color_vibrance = val;
212 asyc->set.procamp = true;
222 nouveau_conn_atomic_destroy_state(struct drm_connector *connector,
223 struct drm_connector_state *state)
225 struct nouveau_conn_atom *asyc = nouveau_conn_atom(state);
226 __drm_atomic_helper_connector_destroy_state(&asyc->state);
230 struct drm_connector_state *
231 nouveau_conn_atomic_duplicate_state(struct drm_connector *connector)
233 struct nouveau_conn_atom *armc = nouveau_conn_atom(connector->state);
234 struct nouveau_conn_atom *asyc;
235 if (!(asyc = kmalloc(sizeof(*asyc), GFP_KERNEL)))
237 __drm_atomic_helper_connector_duplicate_state(connector, &asyc->state);
238 asyc->dither = armc->dither;
239 asyc->scaler = armc->scaler;
240 asyc->procamp = armc->procamp;
246 nouveau_conn_reset(struct drm_connector *connector)
248 struct nouveau_connector *nv_connector = nouveau_connector(connector);
249 struct nouveau_conn_atom *asyc;
251 if (drm_drv_uses_atomic_modeset(connector->dev)) {
252 if (WARN_ON(!(asyc = kzalloc(sizeof(*asyc), GFP_KERNEL))))
255 if (connector->state)
256 nouveau_conn_atomic_destroy_state(connector,
259 __drm_atomic_helper_connector_reset(connector, &asyc->state);
261 asyc = &nv_connector->properties_state;
264 asyc->dither.mode = DITHERING_MODE_AUTO;
265 asyc->dither.depth = DITHERING_DEPTH_AUTO;
266 asyc->scaler.mode = DRM_MODE_SCALE_NONE;
267 asyc->scaler.underscan.mode = UNDERSCAN_OFF;
268 asyc->procamp.color_vibrance = 150;
269 asyc->procamp.vibrant_hue = 90;
271 if (nouveau_display(connector->dev)->disp.object.oclass < NV50_DISP) {
272 switch (connector->connector_type) {
273 case DRM_MODE_CONNECTOR_LVDS:
274 /* See note in nouveau_conn_atomic_set_property(). */
275 asyc->scaler.mode = DRM_MODE_SCALE_FULLSCREEN;
284 nouveau_conn_attach_properties(struct drm_connector *connector)
286 struct drm_device *dev = connector->dev;
287 struct nouveau_display *disp = nouveau_display(dev);
288 struct nouveau_connector *nv_connector = nouveau_connector(connector);
289 struct nouveau_conn_atom *armc;
291 if (drm_drv_uses_atomic_modeset(connector->dev))
292 armc = nouveau_conn_atom(connector->state);
294 armc = &nv_connector->properties_state;
296 /* Init DVI-I specific properties. */
297 if (connector->connector_type == DRM_MODE_CONNECTOR_DVII)
298 drm_object_attach_property(&connector->base, dev->mode_config.
299 dvi_i_subconnector_property, 0);
301 /* Add overscan compensation options to digital outputs. */
302 if (disp->underscan_property &&
303 (connector->connector_type == DRM_MODE_CONNECTOR_DVID ||
304 connector->connector_type == DRM_MODE_CONNECTOR_DVII ||
305 connector->connector_type == DRM_MODE_CONNECTOR_HDMIA ||
306 connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort)) {
307 drm_object_attach_property(&connector->base,
308 disp->underscan_property,
310 drm_object_attach_property(&connector->base,
311 disp->underscan_hborder_property, 0);
312 drm_object_attach_property(&connector->base,
313 disp->underscan_vborder_property, 0);
316 /* Add hue and saturation options. */
317 if (disp->vibrant_hue_property)
318 drm_object_attach_property(&connector->base,
319 disp->vibrant_hue_property,
320 armc->procamp.vibrant_hue);
321 if (disp->color_vibrance_property)
322 drm_object_attach_property(&connector->base,
323 disp->color_vibrance_property,
324 armc->procamp.color_vibrance);
326 /* Scaling mode property. */
327 switch (connector->connector_type) {
328 case DRM_MODE_CONNECTOR_TV:
330 case DRM_MODE_CONNECTOR_VGA:
331 if (disp->disp.object.oclass < NV50_DISP)
332 break; /* Can only scale on DFPs. */
335 drm_object_attach_property(&connector->base, dev->mode_config.
336 scaling_mode_property,
341 /* Dithering properties. */
342 switch (connector->connector_type) {
343 case DRM_MODE_CONNECTOR_TV:
344 case DRM_MODE_CONNECTOR_VGA:
347 if (disp->dithering_mode) {
348 drm_object_attach_property(&connector->base,
349 disp->dithering_mode,
352 if (disp->dithering_depth) {
353 drm_object_attach_property(&connector->base,
354 disp->dithering_depth,
361 MODULE_PARM_DESC(tv_disable, "Disable TV-out detection");
362 int nouveau_tv_disable = 0;
363 module_param_named(tv_disable, nouveau_tv_disable, int, 0400);
365 MODULE_PARM_DESC(ignorelid, "Ignore ACPI lid status");
366 int nouveau_ignorelid = 0;
367 module_param_named(ignorelid, nouveau_ignorelid, int, 0400);
369 MODULE_PARM_DESC(duallink, "Allow dual-link TMDS (default: enabled)");
370 int nouveau_duallink = 1;
371 module_param_named(duallink, nouveau_duallink, int, 0400);
373 MODULE_PARM_DESC(hdmimhz, "Force a maximum HDMI pixel clock (in MHz)");
374 int nouveau_hdmimhz = 0;
375 module_param_named(hdmimhz, nouveau_hdmimhz, int, 0400);
377 struct nouveau_encoder *
378 find_encoder(struct drm_connector *connector, int type)
380 struct nouveau_encoder *nv_encoder;
381 struct drm_encoder *enc;
383 drm_connector_for_each_possible_encoder(connector, enc) {
384 nv_encoder = nouveau_encoder(enc);
386 if (type == DCB_OUTPUT_ANY ||
387 (nv_encoder->dcb && nv_encoder->dcb->type == type))
395 nouveau_connector_destroy(struct drm_connector *connector)
397 struct nouveau_connector *nv_connector = nouveau_connector(connector);
398 nvif_notify_dtor(&nv_connector->hpd);
399 kfree(nv_connector->edid);
400 drm_connector_unregister(connector);
401 drm_connector_cleanup(connector);
402 if (nv_connector->aux.transfer) {
403 drm_dp_cec_unregister_connector(&nv_connector->aux);
404 drm_dp_aux_unregister(&nv_connector->aux);
405 kfree(nv_connector->aux.name);
410 static struct nouveau_encoder *
411 nouveau_connector_ddc_detect(struct drm_connector *connector)
413 struct drm_device *dev = connector->dev;
414 struct pci_dev *pdev = to_pci_dev(dev->dev);
415 struct nouveau_encoder *nv_encoder = NULL, *found = NULL;
416 struct drm_encoder *encoder;
418 bool switcheroo_ddc = false;
420 drm_connector_for_each_possible_encoder(connector, encoder) {
421 nv_encoder = nouveau_encoder(encoder);
423 switch (nv_encoder->dcb->type) {
425 ret = nouveau_dp_detect(nouveau_connector(connector),
427 if (ret == NOUVEAU_DP_MST)
429 else if (ret == NOUVEAU_DP_SST)
433 case DCB_OUTPUT_LVDS:
434 switcheroo_ddc = !!(vga_switcheroo_handler_flags() &
435 VGA_SWITCHEROO_CAN_SWITCH_DDC);
438 if (!nv_encoder->i2c)
442 vga_switcheroo_lock_ddc(pdev);
443 if (nvkm_probe_i2c(nv_encoder->i2c, 0x50))
446 vga_switcheroo_unlock_ddc(pdev);
457 static struct nouveau_encoder *
458 nouveau_connector_of_detect(struct drm_connector *connector)
461 struct drm_device *dev = connector->dev;
462 struct nouveau_connector *nv_connector = nouveau_connector(connector);
463 struct nouveau_encoder *nv_encoder;
464 struct device_node *cn, *dn = pci_device_to_OF_node(dev->pdev);
467 !((nv_encoder = find_encoder(connector, DCB_OUTPUT_TMDS)) ||
468 (nv_encoder = find_encoder(connector, DCB_OUTPUT_ANALOG))))
471 for_each_child_of_node(dn, cn) {
472 const char *name = of_get_property(cn, "name", NULL);
473 const void *edid = of_get_property(cn, "EDID", NULL);
474 int idx = name ? name[strlen(name) - 1] - 'A' : 0;
476 if (nv_encoder->dcb->i2c_index == idx && edid) {
478 kmemdup(edid, EDID_LENGTH, GFP_KERNEL);
488 nouveau_connector_set_encoder(struct drm_connector *connector,
489 struct nouveau_encoder *nv_encoder)
491 struct nouveau_connector *nv_connector = nouveau_connector(connector);
492 struct nouveau_drm *drm = nouveau_drm(connector->dev);
493 struct drm_device *dev = connector->dev;
494 struct pci_dev *pdev = to_pci_dev(dev->dev);
496 if (nv_connector->detected_encoder == nv_encoder)
498 nv_connector->detected_encoder = nv_encoder;
500 if (drm->client.device.info.family >= NV_DEVICE_INFO_V0_TESLA) {
501 if (nv_encoder->dcb->type == DCB_OUTPUT_DP)
502 connector->interlace_allowed =
503 nv_encoder->caps.dp_interlace;
505 connector->interlace_allowed = true;
506 connector->doublescan_allowed = true;
508 if (nv_encoder->dcb->type == DCB_OUTPUT_LVDS ||
509 nv_encoder->dcb->type == DCB_OUTPUT_TMDS) {
510 connector->doublescan_allowed = false;
511 connector->interlace_allowed = false;
513 connector->doublescan_allowed = true;
514 if (drm->client.device.info.family == NV_DEVICE_INFO_V0_KELVIN ||
515 (drm->client.device.info.family == NV_DEVICE_INFO_V0_CELSIUS &&
516 (pdev->device & 0x0ff0) != 0x0100 &&
517 (pdev->device & 0x0ff0) != 0x0150))
519 connector->interlace_allowed = false;
521 connector->interlace_allowed = true;
524 if (nv_connector->type == DCB_CONNECTOR_DVI_I) {
525 drm_object_property_set_value(&connector->base,
526 dev->mode_config.dvi_i_subconnector_property,
527 nv_encoder->dcb->type == DCB_OUTPUT_TMDS ?
528 DRM_MODE_SUBCONNECTOR_DVID :
529 DRM_MODE_SUBCONNECTOR_DVIA);
534 nouveau_connector_set_edid(struct nouveau_connector *nv_connector,
537 if (nv_connector->edid != edid) {
538 struct edid *old_edid = nv_connector->edid;
540 drm_connector_update_edid_property(&nv_connector->base, edid);
542 nv_connector->edid = edid;
546 static enum drm_connector_status
547 nouveau_connector_detect(struct drm_connector *connector, bool force)
549 struct drm_device *dev = connector->dev;
550 struct nouveau_drm *drm = nouveau_drm(dev);
551 struct nouveau_connector *nv_connector = nouveau_connector(connector);
552 struct nouveau_encoder *nv_encoder = NULL;
553 struct nouveau_encoder *nv_partner;
554 struct i2c_adapter *i2c;
557 enum drm_connector_status conn_status = connector_status_disconnected;
559 /* Outputs are only polled while runtime active, so resuming the
560 * device here is unnecessary (and would deadlock upon runtime suspend
561 * because it waits for polling to finish). We do however, want to
562 * prevent the autosuspend timer from elapsing during this operation
565 if (drm_kms_helper_is_poll_worker()) {
566 pm_runtime_get_noresume(dev->dev);
568 ret = pm_runtime_get_sync(dev->dev);
569 if (ret < 0 && ret != -EACCES) {
570 pm_runtime_put_autosuspend(dev->dev);
571 nouveau_connector_set_edid(nv_connector, NULL);
576 nv_encoder = nouveau_connector_ddc_detect(connector);
577 if (nv_encoder && (i2c = nv_encoder->i2c) != NULL) {
578 struct edid *new_edid;
580 if ((vga_switcheroo_handler_flags() &
581 VGA_SWITCHEROO_CAN_SWITCH_DDC) &&
582 nv_connector->type == DCB_CONNECTOR_LVDS)
583 new_edid = drm_get_edid_switcheroo(connector, i2c);
585 new_edid = drm_get_edid(connector, i2c);
587 nouveau_connector_set_edid(nv_connector, new_edid);
588 if (!nv_connector->edid) {
589 NV_ERROR(drm, "DDC responded, but no EDID for %s\n",
594 /* Override encoder type for DVI-I based on whether EDID
595 * says the display is digital or analog, both use the
596 * same i2c channel so the value returned from ddc_detect
597 * isn't necessarily correct.
600 if (nv_encoder->dcb->type == DCB_OUTPUT_TMDS)
601 nv_partner = find_encoder(connector, DCB_OUTPUT_ANALOG);
602 if (nv_encoder->dcb->type == DCB_OUTPUT_ANALOG)
603 nv_partner = find_encoder(connector, DCB_OUTPUT_TMDS);
605 if (nv_partner && ((nv_encoder->dcb->type == DCB_OUTPUT_ANALOG &&
606 nv_partner->dcb->type == DCB_OUTPUT_TMDS) ||
607 (nv_encoder->dcb->type == DCB_OUTPUT_TMDS &&
608 nv_partner->dcb->type == DCB_OUTPUT_ANALOG))) {
609 if (nv_connector->edid->input & DRM_EDID_INPUT_DIGITAL)
610 type = DCB_OUTPUT_TMDS;
612 type = DCB_OUTPUT_ANALOG;
614 nv_encoder = find_encoder(connector, type);
617 nouveau_connector_set_encoder(connector, nv_encoder);
618 conn_status = connector_status_connected;
619 drm_dp_cec_set_edid(&nv_connector->aux, nv_connector->edid);
622 nouveau_connector_set_edid(nv_connector, NULL);
625 nv_encoder = nouveau_connector_of_detect(connector);
627 nouveau_connector_set_encoder(connector, nv_encoder);
628 conn_status = connector_status_connected;
633 nv_encoder = find_encoder(connector, DCB_OUTPUT_ANALOG);
634 if (!nv_encoder && !nouveau_tv_disable)
635 nv_encoder = find_encoder(connector, DCB_OUTPUT_TV);
636 if (nv_encoder && force) {
637 struct drm_encoder *encoder = to_drm_encoder(nv_encoder);
638 const struct drm_encoder_helper_funcs *helper =
639 encoder->helper_private;
641 if (helper->detect(encoder, connector) ==
642 connector_status_connected) {
643 nouveau_connector_set_encoder(connector, nv_encoder);
644 conn_status = connector_status_connected;
650 if (!nv_connector->edid)
651 drm_dp_cec_unset_edid(&nv_connector->aux);
653 pm_runtime_mark_last_busy(dev->dev);
654 pm_runtime_put_autosuspend(dev->dev);
659 static enum drm_connector_status
660 nouveau_connector_detect_lvds(struct drm_connector *connector, bool force)
662 struct drm_device *dev = connector->dev;
663 struct nouveau_drm *drm = nouveau_drm(dev);
664 struct nouveau_connector *nv_connector = nouveau_connector(connector);
665 struct nouveau_encoder *nv_encoder = NULL;
666 struct edid *edid = NULL;
667 enum drm_connector_status status = connector_status_disconnected;
669 nv_encoder = find_encoder(connector, DCB_OUTPUT_LVDS);
673 /* Try retrieving EDID via DDC */
674 if (!drm->vbios.fp_no_ddc) {
675 status = nouveau_connector_detect(connector, force);
676 if (status == connector_status_connected) {
677 edid = nv_connector->edid;
682 /* On some laptops (Sony, i'm looking at you) there appears to
683 * be no direct way of accessing the panel's EDID. The only
684 * option available to us appears to be to ask ACPI for help..
686 * It's important this check's before trying straps, one of the
687 * said manufacturer's laptops are configured in such a way
688 * the nouveau decides an entry in the VBIOS FP mode table is
689 * valid - it's not (rh#613284)
691 if (nv_encoder->dcb->lvdsconf.use_acpi_for_edid) {
692 edid = nouveau_acpi_edid(dev, connector);
694 status = connector_status_connected;
699 /* If no EDID found above, and the VBIOS indicates a hardcoded
700 * modeline is avalilable for the panel, set it as the panel's
701 * native mode and exit.
703 if (nouveau_bios_fp_mode(dev, NULL) && (drm->vbios.fp_no_ddc ||
704 nv_encoder->dcb->lvdsconf.use_straps_for_mode)) {
705 status = connector_status_connected;
709 /* Still nothing, some VBIOS images have a hardcoded EDID block
710 * stored for the panel stored in them.
712 if (!drm->vbios.fp_no_ddc) {
713 edid = (struct edid *)nouveau_bios_embedded_edid(dev);
715 edid = kmemdup(edid, EDID_LENGTH, GFP_KERNEL);
717 status = connector_status_connected;
722 #if defined(CONFIG_ACPI_BUTTON) || \
723 (defined(CONFIG_ACPI_BUTTON_MODULE) && defined(MODULE))
724 if (status == connector_status_connected &&
725 !nouveau_ignorelid && !acpi_lid_open())
726 status = connector_status_unknown;
729 nouveau_connector_set_edid(nv_connector, edid);
730 nouveau_connector_set_encoder(connector, nv_encoder);
735 nouveau_connector_force(struct drm_connector *connector)
737 struct nouveau_drm *drm = nouveau_drm(connector->dev);
738 struct nouveau_connector *nv_connector = nouveau_connector(connector);
739 struct nouveau_encoder *nv_encoder;
742 if (nv_connector->type == DCB_CONNECTOR_DVI_I) {
743 if (connector->force == DRM_FORCE_ON_DIGITAL)
744 type = DCB_OUTPUT_TMDS;
746 type = DCB_OUTPUT_ANALOG;
748 type = DCB_OUTPUT_ANY;
750 nv_encoder = find_encoder(connector, type);
752 NV_ERROR(drm, "can't find encoder to force %s on!\n",
754 connector->status = connector_status_disconnected;
758 nouveau_connector_set_encoder(connector, nv_encoder);
762 nouveau_connector_set_property(struct drm_connector *connector,
763 struct drm_property *property, uint64_t value)
765 struct nouveau_connector *nv_connector = nouveau_connector(connector);
766 struct nouveau_encoder *nv_encoder = nv_connector->detected_encoder;
767 struct nouveau_conn_atom *asyc = &nv_connector->properties_state;
768 struct drm_encoder *encoder = to_drm_encoder(nv_encoder);
771 ret = connector->funcs->atomic_set_property(&nv_connector->base,
775 if (nv_encoder && nv_encoder->dcb->type == DCB_OUTPUT_TV)
776 return get_slave_funcs(encoder)->set_property(
777 encoder, connector, property, value);
781 nv_connector->scaling_mode = asyc->scaler.mode;
782 nv_connector->dithering_mode = asyc->dither.mode;
784 if (connector->encoder && connector->encoder->crtc) {
785 ret = drm_crtc_helper_set_mode(connector->encoder->crtc,
786 &connector->encoder->crtc->mode,
787 connector->encoder->crtc->x,
788 connector->encoder->crtc->y,
802 static struct moderec scaler_modes[] = {
821 nouveau_connector_scaler_modes_add(struct drm_connector *connector)
823 struct nouveau_connector *nv_connector = nouveau_connector(connector);
824 struct drm_display_mode *native = nv_connector->native_mode, *m;
825 struct drm_device *dev = connector->dev;
826 struct moderec *mode = &scaler_modes[0];
832 while (mode->hdisplay) {
833 if (mode->hdisplay <= native->hdisplay &&
834 mode->vdisplay <= native->vdisplay &&
835 (mode->hdisplay != native->hdisplay ||
836 mode->vdisplay != native->vdisplay)) {
837 m = drm_cvt_mode(dev, mode->hdisplay, mode->vdisplay,
838 drm_mode_vrefresh(native), false,
843 drm_mode_probed_add(connector, m);
854 nouveau_connector_detect_depth(struct drm_connector *connector)
856 struct nouveau_drm *drm = nouveau_drm(connector->dev);
857 struct nouveau_connector *nv_connector = nouveau_connector(connector);
858 struct nouveau_encoder *nv_encoder = nv_connector->detected_encoder;
859 struct nvbios *bios = &drm->vbios;
860 struct drm_display_mode *mode = nv_connector->native_mode;
863 /* if the edid is feeling nice enough to provide this info, use it */
864 if (nv_connector->edid && connector->display_info.bpc)
867 /* EDID 1.4 is *supposed* to be supported on eDP, but, Apple... */
868 if (nv_connector->type == DCB_CONNECTOR_eDP) {
869 connector->display_info.bpc = 6;
873 /* we're out of options unless we're LVDS, default to 8bpc */
874 if (nv_encoder->dcb->type != DCB_OUTPUT_LVDS) {
875 connector->display_info.bpc = 8;
879 connector->display_info.bpc = 6;
881 /* LVDS: panel straps */
882 if (bios->fp_no_ddc) {
883 if (bios->fp.if_is_24bit)
884 connector->display_info.bpc = 8;
888 /* LVDS: DDC panel, need to first determine the number of links to
889 * know which if_is_24bit flag to check...
891 if (nv_connector->edid &&
892 nv_connector->type == DCB_CONNECTOR_LVDS_SPWG)
893 duallink = ((u8 *)nv_connector->edid)[121] == 2;
895 duallink = mode->clock >= bios->fp.duallink_transition_clk;
897 if ((!duallink && (bios->fp.strapless_is_24bit & 1)) ||
898 ( duallink && (bios->fp.strapless_is_24bit & 2)))
899 connector->display_info.bpc = 8;
903 nouveau_connector_late_register(struct drm_connector *connector)
907 ret = nouveau_backlight_init(connector);
913 nouveau_connector_early_unregister(struct drm_connector *connector)
915 nouveau_backlight_fini(connector);
919 nouveau_connector_get_modes(struct drm_connector *connector)
921 struct drm_device *dev = connector->dev;
922 struct nouveau_drm *drm = nouveau_drm(dev);
923 struct nouveau_connector *nv_connector = nouveau_connector(connector);
924 struct nouveau_encoder *nv_encoder = nv_connector->detected_encoder;
925 struct drm_encoder *encoder = to_drm_encoder(nv_encoder);
928 /* destroy the native mode, the attached monitor could have changed.
930 if (nv_connector->native_mode) {
931 drm_mode_destroy(dev, nv_connector->native_mode);
932 nv_connector->native_mode = NULL;
935 if (nv_connector->edid)
936 ret = drm_add_edid_modes(connector, nv_connector->edid);
938 if (nv_encoder->dcb->type == DCB_OUTPUT_LVDS &&
939 (nv_encoder->dcb->lvdsconf.use_straps_for_mode ||
940 drm->vbios.fp_no_ddc) && nouveau_bios_fp_mode(dev, NULL)) {
941 struct drm_display_mode mode;
943 nouveau_bios_fp_mode(dev, &mode);
944 nv_connector->native_mode = drm_mode_duplicate(dev, &mode);
947 /* Determine display colour depth for everything except LVDS now,
948 * DP requires this before mode_valid() is called.
950 if (connector->connector_type != DRM_MODE_CONNECTOR_LVDS)
951 nouveau_connector_detect_depth(connector);
953 /* Find the native mode if this is a digital panel, if we didn't
954 * find any modes through DDC previously add the native mode to
957 if (!nv_connector->native_mode)
958 nv_connector->native_mode = nouveau_conn_native_mode(connector);
959 if (ret == 0 && nv_connector->native_mode) {
960 struct drm_display_mode *mode;
962 mode = drm_mode_duplicate(dev, nv_connector->native_mode);
963 drm_mode_probed_add(connector, mode);
967 /* Determine LVDS colour depth, must happen after determining
968 * "native" mode as some VBIOS tables require us to use the
969 * pixel clock as part of the lookup...
971 if (connector->connector_type == DRM_MODE_CONNECTOR_LVDS)
972 nouveau_connector_detect_depth(connector);
974 if (nv_encoder->dcb->type == DCB_OUTPUT_TV)
975 ret = get_slave_funcs(encoder)->get_modes(encoder, connector);
977 if (nv_connector->type == DCB_CONNECTOR_LVDS ||
978 nv_connector->type == DCB_CONNECTOR_LVDS_SPWG ||
979 nv_connector->type == DCB_CONNECTOR_eDP)
980 ret += nouveau_connector_scaler_modes_add(connector);
986 get_tmds_link_bandwidth(struct drm_connector *connector)
988 struct nouveau_connector *nv_connector = nouveau_connector(connector);
989 struct nouveau_encoder *nv_encoder = nv_connector->detected_encoder;
990 struct nouveau_drm *drm = nouveau_drm(connector->dev);
991 struct dcb_output *dcb = nv_connector->detected_encoder->dcb;
992 struct drm_display_info *info = NULL;
993 unsigned duallink_scale =
994 nouveau_duallink && nv_encoder->dcb->duallink_possible ? 2 : 1;
996 if (drm_detect_hdmi_monitor(nv_connector->edid)) {
997 info = &nv_connector->base.display_info;
1002 if (nouveau_hdmimhz > 0)
1003 return nouveau_hdmimhz * 1000;
1004 /* Note: these limits are conservative, some Fermi's
1005 * can do 297 MHz. Unclear how this can be determined.
1007 if (drm->client.device.info.chipset >= 0x120) {
1008 const int max_tmds_clock =
1009 info->hdmi.scdc.scrambling.supported ?
1011 return info->max_tmds_clock ?
1012 min(info->max_tmds_clock, max_tmds_clock) :
1015 if (drm->client.device.info.family >= NV_DEVICE_INFO_V0_KEPLER)
1017 if (drm->client.device.info.family >= NV_DEVICE_INFO_V0_FERMI)
1021 if (dcb->location != DCB_LOC_ON_CHIP ||
1022 drm->client.device.info.chipset >= 0x46)
1023 return 165000 * duallink_scale;
1024 else if (drm->client.device.info.chipset >= 0x40)
1025 return 155000 * duallink_scale;
1026 else if (drm->client.device.info.chipset >= 0x18)
1027 return 135000 * duallink_scale;
1029 return 112000 * duallink_scale;
1032 static enum drm_mode_status
1033 nouveau_connector_mode_valid(struct drm_connector *connector,
1034 struct drm_display_mode *mode)
1036 struct nouveau_connector *nv_connector = nouveau_connector(connector);
1037 struct nouveau_encoder *nv_encoder = nv_connector->detected_encoder;
1038 struct drm_encoder *encoder = to_drm_encoder(nv_encoder);
1039 unsigned int min_clock = 25000, max_clock = min_clock, clock = mode->clock;
1041 switch (nv_encoder->dcb->type) {
1042 case DCB_OUTPUT_LVDS:
1043 if (nv_connector->native_mode &&
1044 (mode->hdisplay > nv_connector->native_mode->hdisplay ||
1045 mode->vdisplay > nv_connector->native_mode->vdisplay))
1051 case DCB_OUTPUT_TMDS:
1052 max_clock = get_tmds_link_bandwidth(connector);
1054 case DCB_OUTPUT_ANALOG:
1055 max_clock = nv_encoder->dcb->crtconf.maxfreq;
1060 return get_slave_funcs(encoder)->mode_valid(encoder, mode);
1062 return nv50_dp_mode_valid(connector, nv_encoder, mode, NULL);
1068 if ((mode->flags & DRM_MODE_FLAG_3D_MASK) == DRM_MODE_FLAG_3D_FRAME_PACKING)
1071 if (clock < min_clock)
1072 return MODE_CLOCK_LOW;
1073 if (clock > max_clock)
1074 return MODE_CLOCK_HIGH;
1079 static struct drm_encoder *
1080 nouveau_connector_best_encoder(struct drm_connector *connector)
1082 struct nouveau_connector *nv_connector = nouveau_connector(connector);
1084 if (nv_connector->detected_encoder)
1085 return to_drm_encoder(nv_connector->detected_encoder);
1090 static const struct drm_connector_helper_funcs
1091 nouveau_connector_helper_funcs = {
1092 .get_modes = nouveau_connector_get_modes,
1093 .mode_valid = nouveau_connector_mode_valid,
1094 .best_encoder = nouveau_connector_best_encoder,
1097 static const struct drm_connector_funcs
1098 nouveau_connector_funcs = {
1099 .dpms = drm_helper_connector_dpms,
1100 .reset = nouveau_conn_reset,
1101 .detect = nouveau_connector_detect,
1102 .force = nouveau_connector_force,
1103 .fill_modes = drm_helper_probe_single_connector_modes,
1104 .set_property = nouveau_connector_set_property,
1105 .destroy = nouveau_connector_destroy,
1106 .atomic_duplicate_state = nouveau_conn_atomic_duplicate_state,
1107 .atomic_destroy_state = nouveau_conn_atomic_destroy_state,
1108 .atomic_set_property = nouveau_conn_atomic_set_property,
1109 .atomic_get_property = nouveau_conn_atomic_get_property,
1110 .late_register = nouveau_connector_late_register,
1111 .early_unregister = nouveau_connector_early_unregister,
1114 static const struct drm_connector_funcs
1115 nouveau_connector_funcs_lvds = {
1116 .dpms = drm_helper_connector_dpms,
1117 .reset = nouveau_conn_reset,
1118 .detect = nouveau_connector_detect_lvds,
1119 .force = nouveau_connector_force,
1120 .fill_modes = drm_helper_probe_single_connector_modes,
1121 .set_property = nouveau_connector_set_property,
1122 .destroy = nouveau_connector_destroy,
1123 .atomic_duplicate_state = nouveau_conn_atomic_duplicate_state,
1124 .atomic_destroy_state = nouveau_conn_atomic_destroy_state,
1125 .atomic_set_property = nouveau_conn_atomic_set_property,
1126 .atomic_get_property = nouveau_conn_atomic_get_property,
1127 .late_register = nouveau_connector_late_register,
1128 .early_unregister = nouveau_connector_early_unregister,
1132 nouveau_connector_hpd(struct drm_connector *connector)
1134 struct nouveau_drm *drm = nouveau_drm(connector->dev);
1135 u32 mask = drm_connector_mask(connector);
1137 mutex_lock(&drm->hpd_lock);
1138 if (!(drm->hpd_pending & mask)) {
1139 drm->hpd_pending |= mask;
1140 schedule_work(&drm->hpd_work);
1142 mutex_unlock(&drm->hpd_lock);
1146 nouveau_connector_hotplug(struct nvif_notify *notify)
1148 struct nouveau_connector *nv_connector =
1149 container_of(notify, typeof(*nv_connector), hpd);
1150 struct drm_connector *connector = &nv_connector->base;
1151 struct drm_device *dev = connector->dev;
1152 struct nouveau_drm *drm = nouveau_drm(dev);
1153 const struct nvif_notify_conn_rep_v0 *rep = notify->data;
1154 bool plugged = (rep->mask != NVIF_NOTIFY_CONN_V0_UNPLUG);
1156 if (rep->mask & NVIF_NOTIFY_CONN_V0_IRQ) {
1157 nouveau_dp_irq(drm, nv_connector);
1158 return NVIF_NOTIFY_KEEP;
1161 NV_DEBUG(drm, "%splugged %s\n", plugged ? "" : "un", connector->name);
1162 nouveau_connector_hpd(connector);
1164 return NVIF_NOTIFY_KEEP;
1168 nouveau_connector_aux_xfer(struct drm_dp_aux *obj, struct drm_dp_aux_msg *msg)
1170 struct nouveau_connector *nv_connector =
1171 container_of(obj, typeof(*nv_connector), aux);
1172 struct nouveau_encoder *nv_encoder;
1173 struct nvkm_i2c_aux *aux;
1174 u8 size = msg->size;
1177 nv_encoder = find_encoder(&nv_connector->base, DCB_OUTPUT_DP);
1178 if (!nv_encoder || !(aux = nv_encoder->aux))
1180 if (WARN_ON(msg->size > 16))
1183 ret = nvkm_i2c_aux_acquire(aux);
1187 ret = nvkm_i2c_aux_xfer(aux, false, msg->request, msg->address,
1188 msg->buffer, &size);
1189 nvkm_i2c_aux_release(aux);
1199 drm_conntype_from_dcb(enum dcb_connector_type dcb)
1202 case DCB_CONNECTOR_VGA : return DRM_MODE_CONNECTOR_VGA;
1203 case DCB_CONNECTOR_TV_0 :
1204 case DCB_CONNECTOR_TV_1 :
1205 case DCB_CONNECTOR_TV_3 : return DRM_MODE_CONNECTOR_TV;
1206 case DCB_CONNECTOR_DMS59_0 :
1207 case DCB_CONNECTOR_DMS59_1 :
1208 case DCB_CONNECTOR_DVI_I : return DRM_MODE_CONNECTOR_DVII;
1209 case DCB_CONNECTOR_DVI_D : return DRM_MODE_CONNECTOR_DVID;
1210 case DCB_CONNECTOR_LVDS :
1211 case DCB_CONNECTOR_LVDS_SPWG: return DRM_MODE_CONNECTOR_LVDS;
1212 case DCB_CONNECTOR_DMS59_DP0:
1213 case DCB_CONNECTOR_DMS59_DP1:
1214 case DCB_CONNECTOR_DP :
1215 case DCB_CONNECTOR_mDP :
1216 case DCB_CONNECTOR_USB_C : return DRM_MODE_CONNECTOR_DisplayPort;
1217 case DCB_CONNECTOR_eDP : return DRM_MODE_CONNECTOR_eDP;
1218 case DCB_CONNECTOR_HDMI_0 :
1219 case DCB_CONNECTOR_HDMI_1 :
1220 case DCB_CONNECTOR_HDMI_C : return DRM_MODE_CONNECTOR_HDMIA;
1221 case DCB_CONNECTOR_WFD : return DRM_MODE_CONNECTOR_VIRTUAL;
1226 return DRM_MODE_CONNECTOR_Unknown;
1229 struct drm_connector *
1230 nouveau_connector_create(struct drm_device *dev,
1231 const struct dcb_output *dcbe)
1233 const struct drm_connector_funcs *funcs = &nouveau_connector_funcs;
1234 struct nouveau_drm *drm = nouveau_drm(dev);
1235 struct nouveau_display *disp = nouveau_display(dev);
1236 struct nouveau_connector *nv_connector = NULL;
1237 struct drm_connector *connector;
1238 struct drm_connector_list_iter conn_iter;
1239 char aux_name[48] = {0};
1240 int index = dcbe->connector;
1244 drm_connector_list_iter_begin(dev, &conn_iter);
1245 nouveau_for_each_non_mst_connector_iter(connector, &conn_iter) {
1246 nv_connector = nouveau_connector(connector);
1247 if (nv_connector->index == index) {
1248 drm_connector_list_iter_end(&conn_iter);
1252 drm_connector_list_iter_end(&conn_iter);
1254 nv_connector = kzalloc(sizeof(*nv_connector), GFP_KERNEL);
1256 return ERR_PTR(-ENOMEM);
1258 connector = &nv_connector->base;
1259 nv_connector->index = index;
1261 /* attempt to parse vbios connector type and hotplug gpio */
1262 nv_connector->dcb = olddcb_conn(dev, index);
1263 if (nv_connector->dcb) {
1264 u32 entry = ROM16(nv_connector->dcb[0]);
1265 if (olddcb_conntab(dev)[3] >= 4)
1266 entry |= (u32)ROM16(nv_connector->dcb[2]) << 16;
1268 nv_connector->type = nv_connector->dcb[0];
1269 if (drm_conntype_from_dcb(nv_connector->type) ==
1270 DRM_MODE_CONNECTOR_Unknown) {
1271 NV_WARN(drm, "unknown connector type %02x\n",
1272 nv_connector->type);
1273 nv_connector->type = DCB_CONNECTOR_NONE;
1276 /* Gigabyte NX85T */
1277 if (nv_match_device(dev, 0x0421, 0x1458, 0x344c)) {
1278 if (nv_connector->type == DCB_CONNECTOR_HDMI_1)
1279 nv_connector->type = DCB_CONNECTOR_DVI_I;
1282 /* Gigabyte GV-NX86T512H */
1283 if (nv_match_device(dev, 0x0402, 0x1458, 0x3455)) {
1284 if (nv_connector->type == DCB_CONNECTOR_HDMI_1)
1285 nv_connector->type = DCB_CONNECTOR_DVI_I;
1288 nv_connector->type = DCB_CONNECTOR_NONE;
1291 /* no vbios data, or an unknown dcb connector type - attempt to
1292 * figure out something suitable ourselves
1294 if (nv_connector->type == DCB_CONNECTOR_NONE) {
1295 struct nouveau_drm *drm = nouveau_drm(dev);
1296 struct dcb_table *dcbt = &drm->vbios.dcb;
1300 for (i = 0; i < dcbt->entries; i++) {
1301 if (dcbt->entry[i].connector == nv_connector->index)
1302 encoders |= (1 << dcbt->entry[i].type);
1305 if (encoders & (1 << DCB_OUTPUT_DP)) {
1306 if (encoders & (1 << DCB_OUTPUT_TMDS))
1307 nv_connector->type = DCB_CONNECTOR_DP;
1309 nv_connector->type = DCB_CONNECTOR_eDP;
1311 if (encoders & (1 << DCB_OUTPUT_TMDS)) {
1312 if (encoders & (1 << DCB_OUTPUT_ANALOG))
1313 nv_connector->type = DCB_CONNECTOR_DVI_I;
1315 nv_connector->type = DCB_CONNECTOR_DVI_D;
1317 if (encoders & (1 << DCB_OUTPUT_ANALOG)) {
1318 nv_connector->type = DCB_CONNECTOR_VGA;
1320 if (encoders & (1 << DCB_OUTPUT_LVDS)) {
1321 nv_connector->type = DCB_CONNECTOR_LVDS;
1323 if (encoders & (1 << DCB_OUTPUT_TV)) {
1324 nv_connector->type = DCB_CONNECTOR_TV_0;
1328 switch ((type = drm_conntype_from_dcb(nv_connector->type))) {
1329 case DRM_MODE_CONNECTOR_LVDS:
1330 ret = nouveau_bios_parse_lvds_table(dev, 0, &dummy, &dummy);
1332 NV_ERROR(drm, "Error parsing LVDS table, disabling\n");
1333 kfree(nv_connector);
1334 return ERR_PTR(ret);
1337 funcs = &nouveau_connector_funcs_lvds;
1339 case DRM_MODE_CONNECTOR_DisplayPort:
1340 case DRM_MODE_CONNECTOR_eDP:
1341 nv_connector->aux.dev = connector->kdev;
1342 nv_connector->aux.transfer = nouveau_connector_aux_xfer;
1343 snprintf(aux_name, sizeof(aux_name), "sor-%04x-%04x",
1344 dcbe->hasht, dcbe->hashm);
1345 nv_connector->aux.name = kstrdup(aux_name, GFP_KERNEL);
1346 ret = drm_dp_aux_register(&nv_connector->aux);
1348 NV_ERROR(drm, "failed to register aux channel\n");
1349 kfree(nv_connector);
1350 return ERR_PTR(ret);
1352 funcs = &nouveau_connector_funcs;
1355 funcs = &nouveau_connector_funcs;
1359 /* HDMI 3D support */
1360 if ((disp->disp.object.oclass >= G82_DISP)
1361 && ((type == DRM_MODE_CONNECTOR_DisplayPort)
1362 || (type == DRM_MODE_CONNECTOR_eDP)
1363 || (type == DRM_MODE_CONNECTOR_HDMIA)))
1364 connector->stereo_allowed = true;
1366 /* defaults, will get overridden in detect() */
1367 connector->interlace_allowed = false;
1368 connector->doublescan_allowed = false;
1370 drm_connector_init(dev, connector, funcs, type);
1371 drm_connector_helper_add(connector, &nouveau_connector_helper_funcs);
1373 connector->funcs->reset(connector);
1374 nouveau_conn_attach_properties(connector);
1376 /* Default scaling mode */
1377 switch (nv_connector->type) {
1378 case DCB_CONNECTOR_LVDS:
1379 case DCB_CONNECTOR_LVDS_SPWG:
1380 case DCB_CONNECTOR_eDP:
1381 /* see note in nouveau_connector_set_property() */
1382 if (disp->disp.object.oclass < NV50_DISP) {
1383 nv_connector->scaling_mode = DRM_MODE_SCALE_FULLSCREEN;
1386 nv_connector->scaling_mode = DRM_MODE_SCALE_NONE;
1389 nv_connector->scaling_mode = DRM_MODE_SCALE_NONE;
1393 /* dithering properties */
1394 switch (nv_connector->type) {
1395 case DCB_CONNECTOR_TV_0:
1396 case DCB_CONNECTOR_TV_1:
1397 case DCB_CONNECTOR_TV_3:
1398 case DCB_CONNECTOR_VGA:
1401 nv_connector->dithering_mode = DITHERING_MODE_AUTO;
1406 case DRM_MODE_CONNECTOR_DisplayPort:
1407 case DRM_MODE_CONNECTOR_eDP:
1408 drm_dp_cec_register_connector(&nv_connector->aux, connector);
1412 ret = nvif_notify_ctor(&disp->disp.object, "kmsHotplug",
1413 nouveau_connector_hotplug,
1414 true, NV04_DISP_NTFY_CONN,
1415 &(struct nvif_notify_conn_req_v0) {
1416 .mask = NVIF_NOTIFY_CONN_V0_ANY,
1419 sizeof(struct nvif_notify_conn_req_v0),
1420 sizeof(struct nvif_notify_conn_rep_v0),
1421 &nv_connector->hpd);
1423 connector->polled = DRM_CONNECTOR_POLL_CONNECT;
1425 connector->polled = DRM_CONNECTOR_POLL_HPD;
1427 drm_connector_register(connector);