drm/hibmc: Remove references to struct drm_device.pdev
[linux-block.git] / drivers / gpu / drm / nouveau / nouveau_connector.c
CommitLineData
6ee73861
BS
1/*
2 * Copyright (C) 2008 Maarten Maathuis.
3 * All Rights Reserved.
4 *
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:
12 *
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.
16 *
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.
24 *
25 */
26
a1470890
BS
27#include <acpi/button.h>
28
5addcf0a 29#include <linux/pm_runtime.h>
39c1c901 30#include <linux/vga_switcheroo.h>
5addcf0a 31
616915ec 32#include <drm/drm_atomic_helper.h>
760285e7
DH
33#include <drm/drm_edid.h>
34#include <drm/drm_crtc_helper.h>
fcd70cd3 35#include <drm/drm_probe_helper.h>
a743d758 36#include <drm/drm_atomic.h>
a1470890 37
6ee73861 38#include "nouveau_reg.h"
4dc28134 39#include "nouveau_drv.h"
1a646342 40#include "dispnv04/hw.h"
d6a9efec 41#include "dispnv50/disp.h"
c0077061 42#include "nouveau_acpi.h"
6ee73861 43
77145f1c
BS
44#include "nouveau_display.h"
45#include "nouveau_connector.h"
6ee73861
BS
46#include "nouveau_encoder.h"
47#include "nouveau_crtc.h"
77145f1c 48
923bc416 49#include <nvif/class.h>
7568b106 50#include <nvif/cl0046.h>
79ca2770
BS
51#include <nvif/event.h>
52
616915ec
BS
53struct drm_display_mode *
54nouveau_conn_native_mode(struct drm_connector *connector)
55{
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;
61
62 list_for_each_entry(mode, &connector->probed_modes, head) {
616915ec
BS
63 if (helper->mode_valid(connector, mode) != MODE_OK ||
64 (mode->flags & DRM_MODE_FLAG_INTERLACE))
65 continue;
66
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);
71 }
72
73 /* Otherwise, take the resolution with the largest width, then
74 * height, then vertical refresh
75 */
76 if (mode->hdisplay < high_w)
77 continue;
78
79 if (mode->hdisplay == high_w && mode->vdisplay < high_h)
80 continue;
81
82 if (mode->hdisplay == high_w && mode->vdisplay == high_h &&
0425662f 83 drm_mode_vrefresh(mode) < high_v)
616915ec
BS
84 continue;
85
86 high_w = mode->hdisplay;
87 high_h = mode->vdisplay;
0425662f 88 high_v = drm_mode_vrefresh(mode);
616915ec
BS
89 largest = mode;
90 }
91
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;
95}
96
97int
98nouveau_conn_atomic_get_property(struct drm_connector *connector,
99 const struct drm_connector_state *state,
100 struct drm_property *property, u64 *val)
101{
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;
105
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;
122 else
123 return -EINVAL;
124
125 return 0;
126}
127
128int
129nouveau_conn_atomic_set_property(struct drm_connector *connector,
130 struct drm_connector_state *state,
131 struct drm_property *property, u64 val)
132{
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);
136
137 if (property == dev->mode_config.scaling_mode_property) {
138 switch (val) {
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-
143 * saving purposes).
144 *
145 * Non-EDID modes will force the use of GPU scaling
146 * to the native mode regardless of this setting.
147 */
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.
153 */
0d4a2c57 154 if (disp->disp.object.oclass < NV50_DISP)
616915ec
BS
155 return -EINVAL;
156 break;
157 default:
158 break;
159 }
160 case DRM_MODE_SCALE_FULLSCREEN:
161 case DRM_MODE_SCALE_CENTER:
162 case DRM_MODE_SCALE_ASPECT:
163 break;
164 default:
165 return -EINVAL;
166 }
167
168 if (asyc->scaler.mode != val) {
169 asyc->scaler.mode = val;
170 asyc->set.scaler = true;
171 }
172 } else
173 if (property == disp->underscan_property) {
174 if (asyc->scaler.underscan.mode != val) {
175 asyc->scaler.underscan.mode = val;
176 asyc->set.scaler = true;
177 }
178 } else
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;
183 }
184 } else
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;
189 }
190 } else
191 if (property == disp->dithering_mode) {
192 if (asyc->dither.mode != val) {
193 asyc->dither.mode = val;
194 asyc->set.dither = true;
195 }
196 } else
197 if (property == disp->dithering_depth) {
198 if (asyc->dither.mode != val) {
199 asyc->dither.depth = val;
200 asyc->set.dither = true;
201 }
202 } else
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;
207 }
208 } else
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;
213 }
214 } else {
215 return -EINVAL;
216 }
217
218 return 0;
219}
220
221void
222nouveau_conn_atomic_destroy_state(struct drm_connector *connector,
223 struct drm_connector_state *state)
224{
225 struct nouveau_conn_atom *asyc = nouveau_conn_atom(state);
226 __drm_atomic_helper_connector_destroy_state(&asyc->state);
227 kfree(asyc);
228}
229
230struct drm_connector_state *
231nouveau_conn_atomic_duplicate_state(struct drm_connector *connector)
232{
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)))
236 return NULL;
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;
241 asyc->set.mask = 0;
242 return &asyc->state;
243}
244
245void
246nouveau_conn_reset(struct drm_connector *connector)
247{
64d17f25 248 struct nouveau_connector *nv_connector = nouveau_connector(connector);
616915ec
BS
249 struct nouveau_conn_atom *asyc;
250
64d17f25
HG
251 if (drm_drv_uses_atomic_modeset(connector->dev)) {
252 if (WARN_ON(!(asyc = kzalloc(sizeof(*asyc), GFP_KERNEL))))
253 return;
254
255 if (connector->state)
256 nouveau_conn_atomic_destroy_state(connector,
257 connector->state);
258
259 __drm_atomic_helper_connector_reset(connector, &asyc->state);
260 } else {
261 asyc = &nv_connector->properties_state;
262 }
616915ec 263
616915ec
BS
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;
270
0d4a2c57 271 if (nouveau_display(connector->dev)->disp.object.oclass < NV50_DISP) {
616915ec
BS
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;
276 break;
277 default:
278 break;
279 }
280 }
281}
282
56182b8b
BS
283void
284nouveau_conn_attach_properties(struct drm_connector *connector)
285{
286 struct drm_device *dev = connector->dev;
56182b8b 287 struct nouveau_display *disp = nouveau_display(dev);
64d17f25
HG
288 struct nouveau_connector *nv_connector = nouveau_connector(connector);
289 struct nouveau_conn_atom *armc;
290
291 if (drm_drv_uses_atomic_modeset(connector->dev))
292 armc = nouveau_conn_atom(connector->state);
293 else
294 armc = &nv_connector->properties_state;
56182b8b
BS
295
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);
300
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,
309 UNDERSCAN_OFF);
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);
314 }
315
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);
325
326 /* Scaling mode property. */
327 switch (connector->connector_type) {
328 case DRM_MODE_CONNECTOR_TV:
329 break;
330 case DRM_MODE_CONNECTOR_VGA:
0d4a2c57 331 if (disp->disp.object.oclass < NV50_DISP)
56182b8b 332 break; /* Can only scale on DFPs. */
f6e7393e 333 fallthrough;
56182b8b
BS
334 default:
335 drm_object_attach_property(&connector->base, dev->mode_config.
336 scaling_mode_property,
337 armc->scaler.mode);
338 break;
339 }
340
341 /* Dithering properties. */
342 switch (connector->connector_type) {
343 case DRM_MODE_CONNECTOR_TV:
344 case DRM_MODE_CONNECTOR_VGA:
345 break;
346 default:
347 if (disp->dithering_mode) {
348 drm_object_attach_property(&connector->base,
349 disp->dithering_mode,
350 armc->dither.mode);
351 }
352 if (disp->dithering_depth) {
353 drm_object_attach_property(&connector->base,
354 disp->dithering_depth,
355 armc->dither.depth);
356 }
357 break;
358 }
359}
360
77145f1c 361MODULE_PARM_DESC(tv_disable, "Disable TV-out detection");
703fa264 362int nouveau_tv_disable = 0;
77145f1c
BS
363module_param_named(tv_disable, nouveau_tv_disable, int, 0400);
364
365MODULE_PARM_DESC(ignorelid, "Ignore ACPI lid status");
703fa264 366int nouveau_ignorelid = 0;
77145f1c
BS
367module_param_named(ignorelid, nouveau_ignorelid, int, 0400);
368
369MODULE_PARM_DESC(duallink, "Allow dual-link TMDS (default: enabled)");
703fa264 370int nouveau_duallink = 1;
77145f1c 371module_param_named(duallink, nouveau_duallink, int, 0400);
6ee73861 372
1a0c96c0
IM
373MODULE_PARM_DESC(hdmimhz, "Force a maximum HDMI pixel clock (in MHz)");
374int nouveau_hdmimhz = 0;
375module_param_named(hdmimhz, nouveau_hdmimhz, int, 0400);
376
10b461e4 377struct nouveau_encoder *
e19b20bb 378find_encoder(struct drm_connector *connector, int type)
6ee73861 379{
6ee73861 380 struct nouveau_encoder *nv_encoder;
6d385c0a 381 struct drm_encoder *enc;
6ee73861 382
62afb4ad 383 drm_connector_for_each_possible_encoder(connector, enc) {
6d385c0a 384 nv_encoder = nouveau_encoder(enc);
6ee73861 385
4874322e
BS
386 if (type == DCB_OUTPUT_ANY ||
387 (nv_encoder->dcb && nv_encoder->dcb->type == type))
6ee73861
BS
388 return nv_encoder;
389 }
390
391 return NULL;
392}
393
6ee73861 394static void
fce2bad0 395nouveau_connector_destroy(struct drm_connector *connector)
6ee73861 396{
fce2bad0 397 struct nouveau_connector *nv_connector = nouveau_connector(connector);
f7a7d22a 398 nvif_notify_dtor(&nv_connector->hpd);
c8ebe275 399 kfree(nv_connector->edid);
34ea3d38 400 drm_connector_unregister(connector);
fce2bad0 401 drm_connector_cleanup(connector);
46094b2b
HV
402 if (nv_connector->aux.transfer) {
403 drm_dp_cec_unregister_connector(&nv_connector->aux);
8894f491 404 drm_dp_aux_unregister(&nv_connector->aux);
3c7fc252 405 kfree(nv_connector->aux.name);
46094b2b 406 }
fce2bad0 407 kfree(connector);
6ee73861
BS
408}
409
8777c5c1
BS
410static struct nouveau_encoder *
411nouveau_connector_ddc_detect(struct drm_connector *connector)
6ee73861
BS
412{
413 struct drm_device *dev = connector->dev;
d5986a1c 414 struct nouveau_encoder *nv_encoder = NULL, *found = NULL;
6d385c0a 415 struct drm_encoder *encoder;
62afb4ad 416 int ret;
d5986a1c 417 bool switcheroo_ddc = false;
6ee73861 418
62afb4ad 419 drm_connector_for_each_possible_encoder(connector, encoder) {
6d385c0a 420 nv_encoder = nouveau_encoder(encoder);
4ca2b712 421
d5986a1c
LP
422 switch (nv_encoder->dcb->type) {
423 case DCB_OUTPUT_DP:
6ba11932
LP
424 ret = nouveau_dp_detect(nouveau_connector(connector),
425 nv_encoder);
52aa30f2
BS
426 if (ret == NOUVEAU_DP_MST)
427 return NULL;
d5986a1c
LP
428 else if (ret == NOUVEAU_DP_SST)
429 found = nv_encoder;
430
431 break;
432 case DCB_OUTPUT_LVDS:
433 switcheroo_ddc = !!(vga_switcheroo_handler_flags() &
434 VGA_SWITCHEROO_CAN_SWITCH_DDC);
f6e7393e 435 fallthrough;
d5986a1c
LP
436 default:
437 if (!nv_encoder->i2c)
39c1c901 438 break;
d5986a1c
LP
439
440 if (switcheroo_ddc)
441 vga_switcheroo_lock_ddc(dev->pdev);
2aa5eac5 442 if (nvkm_probe_i2c(nv_encoder->i2c, 0x50))
d5986a1c
LP
443 found = nv_encoder;
444 if (switcheroo_ddc)
445 vga_switcheroo_unlock_ddc(dev->pdev);
446
447 break;
6ee73861 448 }
d5986a1c
LP
449 if (found)
450 break;
6ee73861
BS
451 }
452
d5986a1c 453 return found;
6ee73861
BS
454}
455
c16c5707
FJ
456static struct nouveau_encoder *
457nouveau_connector_of_detect(struct drm_connector *connector)
458{
459#ifdef __powerpc__
460 struct drm_device *dev = connector->dev;
461 struct nouveau_connector *nv_connector = nouveau_connector(connector);
462 struct nouveau_encoder *nv_encoder;
463 struct device_node *cn, *dn = pci_device_to_OF_node(dev->pdev);
464
465 if (!dn ||
cb75d97e
BS
466 !((nv_encoder = find_encoder(connector, DCB_OUTPUT_TMDS)) ||
467 (nv_encoder = find_encoder(connector, DCB_OUTPUT_ANALOG))))
c16c5707
FJ
468 return NULL;
469
470 for_each_child_of_node(dn, cn) {
471 const char *name = of_get_property(cn, "name", NULL);
472 const void *edid = of_get_property(cn, "EDID", NULL);
473 int idx = name ? name[strlen(name) - 1] - 'A' : 0;
474
475 if (nv_encoder->dcb->i2c_index == idx && edid) {
476 nv_connector->edid =
477 kmemdup(edid, EDID_LENGTH, GFP_KERNEL);
478 of_node_put(cn);
479 return nv_encoder;
480 }
481 }
482#endif
483 return NULL;
484}
485
6ee73861
BS
486static void
487nouveau_connector_set_encoder(struct drm_connector *connector,
488 struct nouveau_encoder *nv_encoder)
489{
490 struct nouveau_connector *nv_connector = nouveau_connector(connector);
77145f1c 491 struct nouveau_drm *drm = nouveau_drm(connector->dev);
6ee73861
BS
492 struct drm_device *dev = connector->dev;
493
494 if (nv_connector->detected_encoder == nv_encoder)
495 return;
496 nv_connector->detected_encoder = nv_encoder;
497
1167c6bc 498 if (drm->client.device.info.family >= NV_DEVICE_INFO_V0_TESLA) {
4a2cb418
LP
499 if (nv_encoder->dcb->type == DCB_OUTPUT_DP)
500 connector->interlace_allowed =
501 nv_encoder->caps.dp_interlace;
502 else
503 connector->interlace_allowed = true;
c8334423
BS
504 connector->doublescan_allowed = true;
505 } else
cb75d97e
BS
506 if (nv_encoder->dcb->type == DCB_OUTPUT_LVDS ||
507 nv_encoder->dcb->type == DCB_OUTPUT_TMDS) {
6ee73861
BS
508 connector->doublescan_allowed = false;
509 connector->interlace_allowed = false;
510 } else {
511 connector->doublescan_allowed = true;
1167c6bc
BS
512 if (drm->client.device.info.family == NV_DEVICE_INFO_V0_KELVIN ||
513 (drm->client.device.info.family == NV_DEVICE_INFO_V0_CELSIUS &&
4a0ff754
IM
514 (dev->pdev->device & 0x0ff0) != 0x0100 &&
515 (dev->pdev->device & 0x0ff0) != 0x0150))
6ee73861
BS
516 /* HW is broken */
517 connector->interlace_allowed = false;
518 else
519 connector->interlace_allowed = true;
520 }
521
befb51e9 522 if (nv_connector->type == DCB_CONNECTOR_DVI_I) {
2db83827 523 drm_object_property_set_value(&connector->base,
6ee73861 524 dev->mode_config.dvi_i_subconnector_property,
cb75d97e 525 nv_encoder->dcb->type == DCB_OUTPUT_TMDS ?
6ee73861
BS
526 DRM_MODE_SUBCONNECTOR_DVID :
527 DRM_MODE_SUBCONNECTOR_DVIA);
528 }
529}
530
f28e32d3
LP
531static void
532nouveau_connector_set_edid(struct nouveau_connector *nv_connector,
533 struct edid *edid)
534{
630f5122
AK
535 if (nv_connector->edid != edid) {
536 struct edid *old_edid = nv_connector->edid;
f28e32d3 537
630f5122
AK
538 drm_connector_update_edid_property(&nv_connector->base, edid);
539 kfree(old_edid);
540 nv_connector->edid = edid;
541 }
f28e32d3
LP
542}
543
6ee73861 544static enum drm_connector_status
930a9e28 545nouveau_connector_detect(struct drm_connector *connector, bool force)
6ee73861
BS
546{
547 struct drm_device *dev = connector->dev;
77145f1c 548 struct nouveau_drm *drm = nouveau_drm(dev);
6ee73861
BS
549 struct nouveau_connector *nv_connector = nouveau_connector(connector);
550 struct nouveau_encoder *nv_encoder = NULL;
e19b20bb 551 struct nouveau_encoder *nv_partner;
2aa5eac5 552 struct i2c_adapter *i2c;
03cd06ca 553 int type;
5addcf0a
DA
554 int ret;
555 enum drm_connector_status conn_status = connector_status_disconnected;
6ee73861 556
6833fb1e
LP
557 /* Outputs are only polled while runtime active, so resuming the
558 * device here is unnecessary (and would deadlock upon runtime suspend
559 * because it waits for polling to finish). We do however, want to
560 * prevent the autosuspend timer from elapsing during this operation
561 * if possible.
d61a5c10 562 */
6833fb1e
LP
563 if (drm_kms_helper_is_poll_worker()) {
564 pm_runtime_get_noresume(dev->dev);
565 } else {
566 ret = pm_runtime_get_sync(dev->dev);
990a1162
AP
567 if (ret < 0 && ret != -EACCES) {
568 pm_runtime_put_autosuspend(dev->dev);
f28e32d3 569 nouveau_connector_set_edid(nv_connector, NULL);
d61a5c10 570 return conn_status;
990a1162 571 }
d61a5c10 572 }
5addcf0a 573
8777c5c1
BS
574 nv_encoder = nouveau_connector_ddc_detect(connector);
575 if (nv_encoder && (i2c = nv_encoder->i2c) != NULL) {
f28e32d3
LP
576 struct edid *new_edid;
577
39c1c901
LW
578 if ((vga_switcheroo_handler_flags() &
579 VGA_SWITCHEROO_CAN_SWITCH_DDC) &&
580 nv_connector->type == DCB_CONNECTOR_LVDS)
f28e32d3 581 new_edid = drm_get_edid_switcheroo(connector, i2c);
39c1c901 582 else
f28e32d3 583 new_edid = drm_get_edid(connector, i2c);
39c1c901 584
f28e32d3 585 nouveau_connector_set_edid(nv_connector, new_edid);
6ee73861 586 if (!nv_connector->edid) {
77145f1c 587 NV_ERROR(drm, "DDC responded, but no EDID for %s\n",
8c6c361a 588 connector->name);
0ed3165e 589 goto detect_analog;
6ee73861
BS
590 }
591
6ee73861
BS
592 /* Override encoder type for DVI-I based on whether EDID
593 * says the display is digital or analog, both use the
594 * same i2c channel so the value returned from ddc_detect
595 * isn't necessarily correct.
596 */
e19b20bb 597 nv_partner = NULL;
cb75d97e
BS
598 if (nv_encoder->dcb->type == DCB_OUTPUT_TMDS)
599 nv_partner = find_encoder(connector, DCB_OUTPUT_ANALOG);
600 if (nv_encoder->dcb->type == DCB_OUTPUT_ANALOG)
601 nv_partner = find_encoder(connector, DCB_OUTPUT_TMDS);
602
603 if (nv_partner && ((nv_encoder->dcb->type == DCB_OUTPUT_ANALOG &&
604 nv_partner->dcb->type == DCB_OUTPUT_TMDS) ||
605 (nv_encoder->dcb->type == DCB_OUTPUT_TMDS &&
606 nv_partner->dcb->type == DCB_OUTPUT_ANALOG))) {
6ee73861 607 if (nv_connector->edid->input & DRM_EDID_INPUT_DIGITAL)
cb75d97e 608 type = DCB_OUTPUT_TMDS;
6ee73861 609 else
cb75d97e 610 type = DCB_OUTPUT_ANALOG;
6ee73861 611
e19b20bb 612 nv_encoder = find_encoder(connector, type);
6ee73861
BS
613 }
614
615 nouveau_connector_set_encoder(connector, nv_encoder);
5addcf0a 616 conn_status = connector_status_connected;
46094b2b 617 drm_dp_cec_set_edid(&nv_connector->aux, nv_connector->edid);
5addcf0a 618 goto out;
f28e32d3
LP
619 } else {
620 nouveau_connector_set_edid(nv_connector, NULL);
6ee73861
BS
621 }
622
c16c5707
FJ
623 nv_encoder = nouveau_connector_of_detect(connector);
624 if (nv_encoder) {
625 nouveau_connector_set_encoder(connector, nv_encoder);
5addcf0a
DA
626 conn_status = connector_status_connected;
627 goto out;
c16c5707
FJ
628 }
629
0ed3165e 630detect_analog:
cb75d97e 631 nv_encoder = find_encoder(connector, DCB_OUTPUT_ANALOG);
f4053509 632 if (!nv_encoder && !nouveau_tv_disable)
cb75d97e 633 nv_encoder = find_encoder(connector, DCB_OUTPUT_TV);
84b8081c 634 if (nv_encoder && force) {
6ee73861 635 struct drm_encoder *encoder = to_drm_encoder(nv_encoder);
d58ded76 636 const struct drm_encoder_helper_funcs *helper =
6ee73861
BS
637 encoder->helper_private;
638
639 if (helper->detect(encoder, connector) ==
640 connector_status_connected) {
641 nouveau_connector_set_encoder(connector, nv_encoder);
5addcf0a
DA
642 conn_status = connector_status_connected;
643 goto out;
6ee73861 644 }
6ee73861
BS
645 }
646
5addcf0a 647 out:
02bb7fe2
LP
648 if (!nv_connector->edid)
649 drm_dp_cec_unset_edid(&nv_connector->aux);
5addcf0a 650
6833fb1e
LP
651 pm_runtime_mark_last_busy(dev->dev);
652 pm_runtime_put_autosuspend(dev->dev);
5addcf0a
DA
653
654 return conn_status;
6ee73861
BS
655}
656
d17f395c 657static enum drm_connector_status
930a9e28 658nouveau_connector_detect_lvds(struct drm_connector *connector, bool force)
d17f395c
BS
659{
660 struct drm_device *dev = connector->dev;
77145f1c 661 struct nouveau_drm *drm = nouveau_drm(dev);
d17f395c
BS
662 struct nouveau_connector *nv_connector = nouveau_connector(connector);
663 struct nouveau_encoder *nv_encoder = NULL;
f28e32d3 664 struct edid *edid = NULL;
d17f395c
BS
665 enum drm_connector_status status = connector_status_disconnected;
666
cb75d97e 667 nv_encoder = find_encoder(connector, DCB_OUTPUT_LVDS);
d17f395c 668 if (!nv_encoder)
f28e32d3 669 goto out;
d17f395c 670
a6ed76d7 671 /* Try retrieving EDID via DDC */
77145f1c 672 if (!drm->vbios.fp_no_ddc) {
930a9e28 673 status = nouveau_connector_detect(connector, force);
630f5122
AK
674 if (status == connector_status_connected) {
675 edid = nv_connector->edid;
d17f395c 676 goto out;
630f5122 677 }
d17f395c
BS
678 }
679
a6ed76d7
BS
680 /* On some laptops (Sony, i'm looking at you) there appears to
681 * be no direct way of accessing the panel's EDID. The only
682 * option available to us appears to be to ask ACPI for help..
683 *
684 * It's important this check's before trying straps, one of the
685 * said manufacturer's laptops are configured in such a way
686 * the nouveau decides an entry in the VBIOS FP mode table is
687 * valid - it's not (rh#613284)
688 */
689 if (nv_encoder->dcb->lvdsconf.use_acpi_for_edid) {
f28e32d3
LP
690 edid = nouveau_acpi_edid(dev, connector);
691 if (edid) {
a6ed76d7
BS
692 status = connector_status_connected;
693 goto out;
694 }
695 }
696
d17f395c
BS
697 /* If no EDID found above, and the VBIOS indicates a hardcoded
698 * modeline is avalilable for the panel, set it as the panel's
699 * native mode and exit.
700 */
77145f1c 701 if (nouveau_bios_fp_mode(dev, NULL) && (drm->vbios.fp_no_ddc ||
d17f395c
BS
702 nv_encoder->dcb->lvdsconf.use_straps_for_mode)) {
703 status = connector_status_connected;
704 goto out;
705 }
706
707 /* Still nothing, some VBIOS images have a hardcoded EDID block
708 * stored for the panel stored in them.
709 */
77145f1c 710 if (!drm->vbios.fp_no_ddc) {
f28e32d3 711 edid = (struct edid *)nouveau_bios_embedded_edid(dev);
d17f395c 712 if (edid) {
f28e32d3
LP
713 edid = kmemdup(edid, EDID_LENGTH, GFP_KERNEL);
714 if (edid)
a441dbb1 715 status = connector_status_connected;
d17f395c
BS
716 }
717 }
718
719out:
720#if defined(CONFIG_ACPI_BUTTON) || \
721 (defined(CONFIG_ACPI_BUTTON_MODULE) && defined(MODULE))
722 if (status == connector_status_connected &&
723 !nouveau_ignorelid && !acpi_lid_open())
724 status = connector_status_unknown;
725#endif
726
f28e32d3 727 nouveau_connector_set_edid(nv_connector, edid);
3195c5f9 728 nouveau_connector_set_encoder(connector, nv_encoder);
d17f395c
BS
729 return status;
730}
731
6ee73861
BS
732static void
733nouveau_connector_force(struct drm_connector *connector)
734{
77145f1c 735 struct nouveau_drm *drm = nouveau_drm(connector->dev);
be079e97 736 struct nouveau_connector *nv_connector = nouveau_connector(connector);
6ee73861
BS
737 struct nouveau_encoder *nv_encoder;
738 int type;
739
befb51e9 740 if (nv_connector->type == DCB_CONNECTOR_DVI_I) {
6ee73861 741 if (connector->force == DRM_FORCE_ON_DIGITAL)
cb75d97e 742 type = DCB_OUTPUT_TMDS;
6ee73861 743 else
cb75d97e 744 type = DCB_OUTPUT_ANALOG;
6ee73861 745 } else
cb75d97e 746 type = DCB_OUTPUT_ANY;
6ee73861 747
e19b20bb 748 nv_encoder = find_encoder(connector, type);
6ee73861 749 if (!nv_encoder) {
77145f1c 750 NV_ERROR(drm, "can't find encoder to force %s on!\n",
8c6c361a 751 connector->name);
6ee73861
BS
752 connector->status = connector_status_disconnected;
753 return;
754 }
755
756 nouveau_connector_set_encoder(connector, nv_encoder);
757}
758
759static int
760nouveau_connector_set_property(struct drm_connector *connector,
761 struct drm_property *property, uint64_t value)
762{
763 struct nouveau_connector *nv_connector = nouveau_connector(connector);
764 struct nouveau_encoder *nv_encoder = nv_connector->detected_encoder;
64d17f25 765 struct nouveau_conn_atom *asyc = &nv_connector->properties_state;
4a9f822f 766 struct drm_encoder *encoder = to_drm_encoder(nv_encoder);
6ee73861
BS
767 int ret;
768
616915ec
BS
769 ret = connector->funcs->atomic_set_property(&nv_connector->base,
770 &asyc->state,
771 property, value);
772 if (ret) {
773 if (nv_encoder && nv_encoder->dcb->type == DCB_OUTPUT_TV)
774 return get_slave_funcs(encoder)->set_property(
775 encoder, connector, property, value);
776 return ret;
b29caa58
BS
777 }
778
616915ec 779 nv_connector->scaling_mode = asyc->scaler.mode;
616915ec 780 nv_connector->dithering_mode = asyc->dither.mode;
b29caa58 781
c2d926aa
BS
782 if (connector->encoder && connector->encoder->crtc) {
783 ret = drm_crtc_helper_set_mode(connector->encoder->crtc,
784 &connector->encoder->crtc->mode,
785 connector->encoder->crtc->x,
786 connector->encoder->crtc->y,
787 NULL);
788 if (!ret)
789 return -EINVAL;
790 }
6ee73861 791
616915ec 792 return 0;
6ee73861
BS
793}
794
795struct moderec {
796 int hdisplay;
797 int vdisplay;
798};
799
800static struct moderec scaler_modes[] = {
801 { 1920, 1200 },
802 { 1920, 1080 },
803 { 1680, 1050 },
804 { 1600, 1200 },
805 { 1400, 1050 },
806 { 1280, 1024 },
807 { 1280, 960 },
808 { 1152, 864 },
809 { 1024, 768 },
810 { 800, 600 },
811 { 720, 400 },
812 { 640, 480 },
813 { 640, 400 },
814 { 640, 350 },
815 {}
816};
817
818static int
819nouveau_connector_scaler_modes_add(struct drm_connector *connector)
820{
821 struct nouveau_connector *nv_connector = nouveau_connector(connector);
822 struct drm_display_mode *native = nv_connector->native_mode, *m;
823 struct drm_device *dev = connector->dev;
824 struct moderec *mode = &scaler_modes[0];
825 int modes = 0;
826
827 if (!native)
828 return 0;
829
830 while (mode->hdisplay) {
831 if (mode->hdisplay <= native->hdisplay &&
f0d15402
BS
832 mode->vdisplay <= native->vdisplay &&
833 (mode->hdisplay != native->hdisplay ||
834 mode->vdisplay != native->vdisplay)) {
6ee73861
BS
835 m = drm_cvt_mode(dev, mode->hdisplay, mode->vdisplay,
836 drm_mode_vrefresh(native), false,
837 false, false);
838 if (!m)
839 continue;
840
6ee73861
BS
841 drm_mode_probed_add(connector, m);
842 modes++;
843 }
844
845 mode++;
846 }
847
848 return modes;
849}
850
63221755
BS
851static void
852nouveau_connector_detect_depth(struct drm_connector *connector)
853{
77145f1c 854 struct nouveau_drm *drm = nouveau_drm(connector->dev);
63221755
BS
855 struct nouveau_connector *nv_connector = nouveau_connector(connector);
856 struct nouveau_encoder *nv_encoder = nv_connector->detected_encoder;
77145f1c 857 struct nvbios *bios = &drm->vbios;
63221755
BS
858 struct drm_display_mode *mode = nv_connector->native_mode;
859 bool duallink;
860
861 /* if the edid is feeling nice enough to provide this info, use it */
862 if (nv_connector->edid && connector->display_info.bpc)
863 return;
864
a6a17859
BS
865 /* EDID 1.4 is *supposed* to be supported on eDP, but, Apple... */
866 if (nv_connector->type == DCB_CONNECTOR_eDP) {
867 connector->display_info.bpc = 6;
868 return;
869 }
870
871 /* we're out of options unless we're LVDS, default to 8bpc */
cb75d97e 872 if (nv_encoder->dcb->type != DCB_OUTPUT_LVDS) {
c8435362 873 connector->display_info.bpc = 8;
63221755 874 return;
c8435362
BS
875 }
876
877 connector->display_info.bpc = 6;
63221755
BS
878
879 /* LVDS: panel straps */
880 if (bios->fp_no_ddc) {
881 if (bios->fp.if_is_24bit)
882 connector->display_info.bpc = 8;
883 return;
884 }
885
886 /* LVDS: DDC panel, need to first determine the number of links to
887 * know which if_is_24bit flag to check...
888 */
889 if (nv_connector->edid &&
befb51e9 890 nv_connector->type == DCB_CONNECTOR_LVDS_SPWG)
63221755
BS
891 duallink = ((u8 *)nv_connector->edid)[121] == 2;
892 else
893 duallink = mode->clock >= bios->fp.duallink_transition_clk;
894
895 if ((!duallink && (bios->fp.strapless_is_24bit & 1)) ||
896 ( duallink && (bios->fp.strapless_is_24bit & 2)))
897 connector->display_info.bpc = 8;
898}
899
6d757753
LP
900static int
901nouveau_connector_late_register(struct drm_connector *connector)
902{
903 int ret;
904
905 ret = nouveau_backlight_init(connector);
906
907 return ret;
908}
909
910static void
911nouveau_connector_early_unregister(struct drm_connector *connector)
912{
a4e05f41 913 nouveau_backlight_fini(connector);
6d757753
LP
914}
915
6ee73861
BS
916static int
917nouveau_connector_get_modes(struct drm_connector *connector)
918{
919 struct drm_device *dev = connector->dev;
77145f1c 920 struct nouveau_drm *drm = nouveau_drm(dev);
6ee73861
BS
921 struct nouveau_connector *nv_connector = nouveau_connector(connector);
922 struct nouveau_encoder *nv_encoder = nv_connector->detected_encoder;
4a9f822f 923 struct drm_encoder *encoder = to_drm_encoder(nv_encoder);
6ee73861
BS
924 int ret = 0;
925
d17f395c 926 /* destroy the native mode, the attached monitor could have changed.
6ee73861 927 */
d17f395c 928 if (nv_connector->native_mode) {
6ee73861
BS
929 drm_mode_destroy(dev, nv_connector->native_mode);
930 nv_connector->native_mode = NULL;
931 }
932
933 if (nv_connector->edid)
934 ret = drm_add_edid_modes(connector, nv_connector->edid);
d17f395c 935 else
cb75d97e 936 if (nv_encoder->dcb->type == DCB_OUTPUT_LVDS &&
d17f395c 937 (nv_encoder->dcb->lvdsconf.use_straps_for_mode ||
77145f1c 938 drm->vbios.fp_no_ddc) && nouveau_bios_fp_mode(dev, NULL)) {
80dad869
BS
939 struct drm_display_mode mode;
940
941 nouveau_bios_fp_mode(dev, &mode);
942 nv_connector->native_mode = drm_mode_duplicate(dev, &mode);
d17f395c 943 }
6ee73861 944
d4c2c99b
BS
945 /* Determine display colour depth for everything except LVDS now,
946 * DP requires this before mode_valid() is called.
947 */
948 if (connector->connector_type != DRM_MODE_CONNECTOR_LVDS)
949 nouveau_connector_detect_depth(connector);
950
6ee73861
BS
951 /* Find the native mode if this is a digital panel, if we didn't
952 * find any modes through DDC previously add the native mode to
953 * the list of modes.
954 */
955 if (!nv_connector->native_mode)
616915ec 956 nv_connector->native_mode = nouveau_conn_native_mode(connector);
6ee73861
BS
957 if (ret == 0 && nv_connector->native_mode) {
958 struct drm_display_mode *mode;
959
960 mode = drm_mode_duplicate(dev, nv_connector->native_mode);
961 drm_mode_probed_add(connector, mode);
962 ret = 1;
963 }
964
d4c2c99b
BS
965 /* Determine LVDS colour depth, must happen after determining
966 * "native" mode as some VBIOS tables require us to use the
967 * pixel clock as part of the lookup...
63221755 968 */
d4c2c99b
BS
969 if (connector->connector_type == DRM_MODE_CONNECTOR_LVDS)
970 nouveau_connector_detect_depth(connector);
63221755 971
cb75d97e 972 if (nv_encoder->dcb->type == DCB_OUTPUT_TV)
4a9f822f 973 ret = get_slave_funcs(encoder)->get_modes(encoder, connector);
6ee73861 974
befb51e9
BS
975 if (nv_connector->type == DCB_CONNECTOR_LVDS ||
976 nv_connector->type == DCB_CONNECTOR_LVDS_SPWG ||
977 nv_connector->type == DCB_CONNECTOR_eDP)
6ee73861
BS
978 ret += nouveau_connector_scaler_modes_add(connector);
979
980 return ret;
981}
982
1f5bd443 983static unsigned
9340d77f 984get_tmds_link_bandwidth(struct drm_connector *connector)
1f5bd443
FJ
985{
986 struct nouveau_connector *nv_connector = nouveau_connector(connector);
9340d77f 987 struct nouveau_encoder *nv_encoder = nv_connector->detected_encoder;
77145f1c 988 struct nouveau_drm *drm = nouveau_drm(connector->dev);
cb75d97e 989 struct dcb_output *dcb = nv_connector->detected_encoder->dcb;
9340d77f 990 struct drm_display_info *info = NULL;
d1084184 991 unsigned duallink_scale =
9340d77f
IM
992 nouveau_duallink && nv_encoder->dcb->duallink_possible ? 2 : 1;
993
d1084184 994 if (drm_detect_hdmi_monitor(nv_connector->edid)) {
9340d77f 995 info = &nv_connector->base.display_info;
d1084184
BS
996 duallink_scale = 1;
997 }
1f5bd443 998
9340d77f 999 if (info) {
1a0c96c0
IM
1000 if (nouveau_hdmimhz > 0)
1001 return nouveau_hdmimhz * 1000;
1002 /* Note: these limits are conservative, some Fermi's
1003 * can do 297 MHz. Unclear how this can be determined.
1004 */
9340d77f
IM
1005 if (drm->client.device.info.chipset >= 0x120) {
1006 const int max_tmds_clock =
1007 info->hdmi.scdc.scrambling.supported ?
1008 594000 : 340000;
1009 return info->max_tmds_clock ?
1010 min(info->max_tmds_clock, max_tmds_clock) :
1011 max_tmds_clock;
1012 }
1167c6bc 1013 if (drm->client.device.info.family >= NV_DEVICE_INFO_V0_KEPLER)
1a0c96c0 1014 return 297000;
1167c6bc 1015 if (drm->client.device.info.family >= NV_DEVICE_INFO_V0_FERMI)
1a0c96c0
IM
1016 return 225000;
1017 }
d1084184 1018
1f5bd443 1019 if (dcb->location != DCB_LOC_ON_CHIP ||
1167c6bc 1020 drm->client.device.info.chipset >= 0x46)
9340d77f 1021 return 165000 * duallink_scale;
1167c6bc 1022 else if (drm->client.device.info.chipset >= 0x40)
9340d77f 1023 return 155000 * duallink_scale;
1167c6bc 1024 else if (drm->client.device.info.chipset >= 0x18)
9340d77f 1025 return 135000 * duallink_scale;
1f5bd443 1026 else
9340d77f 1027 return 112000 * duallink_scale;
1f5bd443
FJ
1028}
1029
54b202f1 1030static enum drm_mode_status
6ee73861
BS
1031nouveau_connector_mode_valid(struct drm_connector *connector,
1032 struct drm_display_mode *mode)
1033{
6ee73861
BS
1034 struct nouveau_connector *nv_connector = nouveau_connector(connector);
1035 struct nouveau_encoder *nv_encoder = nv_connector->detected_encoder;
4a9f822f 1036 struct drm_encoder *encoder = to_drm_encoder(nv_encoder);
2d831155 1037 unsigned int min_clock = 25000, max_clock = min_clock, clock = mode->clock;
6ee73861
BS
1038
1039 switch (nv_encoder->dcb->type) {
cb75d97e 1040 case DCB_OUTPUT_LVDS:
26099a74
BS
1041 if (nv_connector->native_mode &&
1042 (mode->hdisplay > nv_connector->native_mode->hdisplay ||
1043 mode->vdisplay > nv_connector->native_mode->vdisplay))
6ee73861
BS
1044 return MODE_PANEL;
1045
1046 min_clock = 0;
1047 max_clock = 400000;
1048 break;
cb75d97e 1049 case DCB_OUTPUT_TMDS:
9340d77f 1050 max_clock = get_tmds_link_bandwidth(connector);
6ee73861 1051 break;
cb75d97e 1052 case DCB_OUTPUT_ANALOG:
6ee73861
BS
1053 max_clock = nv_encoder->dcb->crtconf.maxfreq;
1054 if (!max_clock)
1055 max_clock = 350000;
1056 break;
cb75d97e 1057 case DCB_OUTPUT_TV:
4a9f822f 1058 return get_slave_funcs(encoder)->mode_valid(encoder, mode);
cb75d97e 1059 case DCB_OUTPUT_DP:
d6a9efec 1060 return nv50_dp_mode_valid(connector, nv_encoder, mode, NULL);
e7cc51c5 1061 default:
af7db03e 1062 BUG();
e7cc51c5 1063 return MODE_BAD;
6ee73861
BS
1064 }
1065
2d831155
LP
1066 if ((mode->flags & DRM_MODE_FLAG_3D_MASK) == DRM_MODE_FLAG_3D_FRAME_PACKING)
1067 clock *= 2;
1068
1069 if (clock < min_clock)
1070 return MODE_CLOCK_LOW;
1071 if (clock > max_clock)
1072 return MODE_CLOCK_HIGH;
1073
1074 return MODE_OK;
6ee73861
BS
1075}
1076
1077static struct drm_encoder *
1078nouveau_connector_best_encoder(struct drm_connector *connector)
1079{
1080 struct nouveau_connector *nv_connector = nouveau_connector(connector);
1081
1082 if (nv_connector->detected_encoder)
1083 return to_drm_encoder(nv_connector->detected_encoder);
1084
1085 return NULL;
1086}
1087
1088static const struct drm_connector_helper_funcs
1089nouveau_connector_helper_funcs = {
1090 .get_modes = nouveau_connector_get_modes,
1091 .mode_valid = nouveau_connector_mode_valid,
1092 .best_encoder = nouveau_connector_best_encoder,
1093};
1094
1095static const struct drm_connector_funcs
1096nouveau_connector_funcs = {
7d902c05 1097 .dpms = drm_helper_connector_dpms,
616915ec 1098 .reset = nouveau_conn_reset,
6ee73861 1099 .detect = nouveau_connector_detect,
616915ec 1100 .force = nouveau_connector_force,
6ee73861
BS
1101 .fill_modes = drm_helper_probe_single_connector_modes,
1102 .set_property = nouveau_connector_set_property,
616915ec
BS
1103 .destroy = nouveau_connector_destroy,
1104 .atomic_duplicate_state = nouveau_conn_atomic_duplicate_state,
1105 .atomic_destroy_state = nouveau_conn_atomic_destroy_state,
1106 .atomic_set_property = nouveau_conn_atomic_set_property,
1107 .atomic_get_property = nouveau_conn_atomic_get_property,
6d757753
LP
1108 .late_register = nouveau_connector_late_register,
1109 .early_unregister = nouveau_connector_early_unregister,
6ee73861
BS
1110};
1111
d17f395c
BS
1112static const struct drm_connector_funcs
1113nouveau_connector_funcs_lvds = {
7d902c05 1114 .dpms = drm_helper_connector_dpms,
616915ec 1115 .reset = nouveau_conn_reset,
d17f395c 1116 .detect = nouveau_connector_detect_lvds,
616915ec 1117 .force = nouveau_connector_force,
d17f395c
BS
1118 .fill_modes = drm_helper_probe_single_connector_modes,
1119 .set_property = nouveau_connector_set_property,
616915ec
BS
1120 .destroy = nouveau_connector_destroy,
1121 .atomic_duplicate_state = nouveau_conn_atomic_duplicate_state,
1122 .atomic_destroy_state = nouveau_conn_atomic_destroy_state,
1123 .atomic_set_property = nouveau_conn_atomic_set_property,
1124 .atomic_get_property = nouveau_conn_atomic_get_property,
6d757753
LP
1125 .late_register = nouveau_connector_late_register,
1126 .early_unregister = nouveau_connector_early_unregister,
d17f395c 1127};
6ee73861 1128
d297ce4b
LP
1129void
1130nouveau_connector_hpd(struct drm_connector *connector)
1131{
1132 struct nouveau_drm *drm = nouveau_drm(connector->dev);
1133 u32 mask = drm_connector_mask(connector);
1134
1135 mutex_lock(&drm->hpd_lock);
1136 if (!(drm->hpd_pending & mask)) {
1137 drm->hpd_pending |= mask;
1138 schedule_work(&drm->hpd_work);
1139 }
1140 mutex_unlock(&drm->hpd_lock);
1141}
1142
79ca2770 1143static int
80bc340b 1144nouveau_connector_hotplug(struct nvif_notify *notify)
4f47643d
BS
1145{
1146 struct nouveau_connector *nv_connector =
79ca2770 1147 container_of(notify, typeof(*nv_connector), hpd);
4f47643d 1148 struct drm_connector *connector = &nv_connector->base;
a0922278
LP
1149 struct drm_device *dev = connector->dev;
1150 struct nouveau_drm *drm = nouveau_drm(dev);
79ca2770 1151 const struct nvif_notify_conn_rep_v0 *rep = notify->data;
09e53065
LP
1152 bool plugged = (rep->mask != NVIF_NOTIFY_CONN_V0_UNPLUG);
1153
1154 if (rep->mask & NVIF_NOTIFY_CONN_V0_IRQ) {
a0922278 1155 nouveau_dp_irq(drm, nv_connector);
09e53065
LP
1156 return NVIF_NOTIFY_KEEP;
1157 }
3e1a1275 1158
d297ce4b
LP
1159 NV_DEBUG(drm, "%splugged %s\n", plugged ? "" : "un", connector->name);
1160 nouveau_connector_hpd(connector);
09e53065 1161
80bc340b 1162 return NVIF_NOTIFY_KEEP;
4f47643d
BS
1163}
1164
8894f491 1165static ssize_t
2aa5eac5 1166nouveau_connector_aux_xfer(struct drm_dp_aux *obj, struct drm_dp_aux_msg *msg)
8894f491
BS
1167{
1168 struct nouveau_connector *nv_connector =
2aa5eac5 1169 container_of(obj, typeof(*nv_connector), aux);
8894f491 1170 struct nouveau_encoder *nv_encoder;
2aa5eac5 1171 struct nvkm_i2c_aux *aux;
1af5c410 1172 u8 size = msg->size;
8894f491
BS
1173 int ret;
1174
1175 nv_encoder = find_encoder(&nv_connector->base, DCB_OUTPUT_DP);
2aa5eac5 1176 if (!nv_encoder || !(aux = nv_encoder->aux))
8894f491
BS
1177 return -ENODEV;
1178 if (WARN_ON(msg->size > 16))
1179 return -E2BIG;
8894f491 1180
2aa5eac5 1181 ret = nvkm_i2c_aux_acquire(aux);
8894f491
BS
1182 if (ret)
1183 return ret;
1184
2aa5eac5 1185 ret = nvkm_i2c_aux_xfer(aux, false, msg->request, msg->address,
1af5c410 1186 msg->buffer, &size);
2aa5eac5 1187 nvkm_i2c_aux_release(aux);
8894f491
BS
1188 if (ret >= 0) {
1189 msg->reply = ret;
1af5c410 1190 return size;
8894f491
BS
1191 }
1192
1193 return ret;
1194}
1195
befb51e9
BS
1196static int
1197drm_conntype_from_dcb(enum dcb_connector_type dcb)
1198{
1199 switch (dcb) {
1200 case DCB_CONNECTOR_VGA : return DRM_MODE_CONNECTOR_VGA;
1201 case DCB_CONNECTOR_TV_0 :
1202 case DCB_CONNECTOR_TV_1 :
1203 case DCB_CONNECTOR_TV_3 : return DRM_MODE_CONNECTOR_TV;
fa2c113a
BS
1204 case DCB_CONNECTOR_DMS59_0 :
1205 case DCB_CONNECTOR_DMS59_1 :
befb51e9
BS
1206 case DCB_CONNECTOR_DVI_I : return DRM_MODE_CONNECTOR_DVII;
1207 case DCB_CONNECTOR_DVI_D : return DRM_MODE_CONNECTOR_DVID;
1208 case DCB_CONNECTOR_LVDS :
1209 case DCB_CONNECTOR_LVDS_SPWG: return DRM_MODE_CONNECTOR_LVDS;
4abb410a
BS
1210 case DCB_CONNECTOR_DMS59_DP0:
1211 case DCB_CONNECTOR_DMS59_DP1:
7919faab
BS
1212 case DCB_CONNECTOR_DP :
1213 case DCB_CONNECTOR_USB_C : return DRM_MODE_CONNECTOR_DisplayPort;
befb51e9
BS
1214 case DCB_CONNECTOR_eDP : return DRM_MODE_CONNECTOR_eDP;
1215 case DCB_CONNECTOR_HDMI_0 :
6bd9293e
BS
1216 case DCB_CONNECTOR_HDMI_1 :
1217 case DCB_CONNECTOR_HDMI_C : return DRM_MODE_CONNECTOR_HDMIA;
df00d5da 1218 case DCB_CONNECTOR_WFD : return DRM_MODE_CONNECTOR_VIRTUAL;
befb51e9
BS
1219 default:
1220 break;
1221 }
1222
1223 return DRM_MODE_CONNECTOR_Unknown;
1224}
1225
8f1a6086 1226struct drm_connector *
3c7fc252
LP
1227nouveau_connector_create(struct drm_device *dev,
1228 const struct dcb_output *dcbe)
6ee73861 1229{
d17f395c 1230 const struct drm_connector_funcs *funcs = &nouveau_connector_funcs;
77145f1c 1231 struct nouveau_drm *drm = nouveau_drm(dev);
77145f1c 1232 struct nouveau_display *disp = nouveau_display(dev);
6ee73861
BS
1233 struct nouveau_connector *nv_connector = NULL;
1234 struct drm_connector *connector;
22b76bbe 1235 struct drm_connector_list_iter conn_iter;
3c7fc252
LP
1236 char aux_name[48] = {0};
1237 int index = dcbe->connector;
2fa67f12 1238 int type, ret = 0;
befb51e9 1239 bool dummy;
6ee73861 1240
22b76bbe 1241 drm_connector_list_iter_begin(dev, &conn_iter);
37afe55b 1242 nouveau_for_each_non_mst_connector_iter(connector, &conn_iter) {
befb51e9 1243 nv_connector = nouveau_connector(connector);
22b76bbe
LP
1244 if (nv_connector->index == index) {
1245 drm_connector_list_iter_end(&conn_iter);
befb51e9 1246 return connector;
22b76bbe 1247 }
6ee73861 1248 }
22b76bbe 1249 drm_connector_list_iter_end(&conn_iter);
6ee73861 1250
7f612d87
BS
1251 nv_connector = kzalloc(sizeof(*nv_connector), GFP_KERNEL);
1252 if (!nv_connector)
8f1a6086 1253 return ERR_PTR(-ENOMEM);
befb51e9 1254
7f612d87 1255 connector = &nv_connector->base;
befb51e9
BS
1256 nv_connector->index = index;
1257
1258 /* attempt to parse vbios connector type and hotplug gpio */
cb75d97e 1259 nv_connector->dcb = olddcb_conn(dev, index);
befb51e9 1260 if (nv_connector->dcb) {
befb51e9 1261 u32 entry = ROM16(nv_connector->dcb[0]);
cb75d97e 1262 if (olddcb_conntab(dev)[3] >= 4)
befb51e9
BS
1263 entry |= (u32)ROM16(nv_connector->dcb[2]) << 16;
1264
befb51e9
BS
1265 nv_connector->type = nv_connector->dcb[0];
1266 if (drm_conntype_from_dcb(nv_connector->type) ==
1267 DRM_MODE_CONNECTOR_Unknown) {
77145f1c 1268 NV_WARN(drm, "unknown connector type %02x\n",
befb51e9
BS
1269 nv_connector->type);
1270 nv_connector->type = DCB_CONNECTOR_NONE;
1271 }
7f612d87 1272
befb51e9
BS
1273 /* Gigabyte NX85T */
1274 if (nv_match_device(dev, 0x0421, 0x1458, 0x344c)) {
1275 if (nv_connector->type == DCB_CONNECTOR_HDMI_1)
1276 nv_connector->type = DCB_CONNECTOR_DVI_I;
1277 }
6ee73861 1278
befb51e9
BS
1279 /* Gigabyte GV-NX86T512H */
1280 if (nv_match_device(dev, 0x0402, 0x1458, 0x3455)) {
1281 if (nv_connector->type == DCB_CONNECTOR_HDMI_1)
1282 nv_connector->type = DCB_CONNECTOR_DVI_I;
1283 }
1284 } else {
1285 nv_connector->type = DCB_CONNECTOR_NONE;
befb51e9
BS
1286 }
1287
1288 /* no vbios data, or an unknown dcb connector type - attempt to
1289 * figure out something suitable ourselves
1290 */
1291 if (nv_connector->type == DCB_CONNECTOR_NONE) {
77145f1c
BS
1292 struct nouveau_drm *drm = nouveau_drm(dev);
1293 struct dcb_table *dcbt = &drm->vbios.dcb;
befb51e9
BS
1294 u32 encoders = 0;
1295 int i;
1296
1297 for (i = 0; i < dcbt->entries; i++) {
1298 if (dcbt->entry[i].connector == nv_connector->index)
1299 encoders |= (1 << dcbt->entry[i].type);
1300 }
6ee73861 1301
cb75d97e
BS
1302 if (encoders & (1 << DCB_OUTPUT_DP)) {
1303 if (encoders & (1 << DCB_OUTPUT_TMDS))
befb51e9
BS
1304 nv_connector->type = DCB_CONNECTOR_DP;
1305 else
1306 nv_connector->type = DCB_CONNECTOR_eDP;
1307 } else
cb75d97e
BS
1308 if (encoders & (1 << DCB_OUTPUT_TMDS)) {
1309 if (encoders & (1 << DCB_OUTPUT_ANALOG))
befb51e9
BS
1310 nv_connector->type = DCB_CONNECTOR_DVI_I;
1311 else
1312 nv_connector->type = DCB_CONNECTOR_DVI_D;
1313 } else
cb75d97e 1314 if (encoders & (1 << DCB_OUTPUT_ANALOG)) {
befb51e9
BS
1315 nv_connector->type = DCB_CONNECTOR_VGA;
1316 } else
cb75d97e 1317 if (encoders & (1 << DCB_OUTPUT_LVDS)) {
befb51e9
BS
1318 nv_connector->type = DCB_CONNECTOR_LVDS;
1319 } else
cb75d97e 1320 if (encoders & (1 << DCB_OUTPUT_TV)) {
befb51e9
BS
1321 nv_connector->type = DCB_CONNECTOR_TV_0;
1322 }
1323 }
2fa67f12 1324
8894f491
BS
1325 switch ((type = drm_conntype_from_dcb(nv_connector->type))) {
1326 case DRM_MODE_CONNECTOR_LVDS:
befb51e9 1327 ret = nouveau_bios_parse_lvds_table(dev, 0, &dummy, &dummy);
2fa67f12 1328 if (ret) {
77145f1c 1329 NV_ERROR(drm, "Error parsing LVDS table, disabling\n");
befb51e9
BS
1330 kfree(nv_connector);
1331 return ERR_PTR(ret);
2fa67f12 1332 }
befb51e9
BS
1333
1334 funcs = &nouveau_connector_funcs_lvds;
8894f491
BS
1335 break;
1336 case DRM_MODE_CONNECTOR_DisplayPort:
1337 case DRM_MODE_CONNECTOR_eDP:
7713c0f1 1338 nv_connector->aux.dev = connector->kdev;
8894f491 1339 nv_connector->aux.transfer = nouveau_connector_aux_xfer;
3c7fc252
LP
1340 snprintf(aux_name, sizeof(aux_name), "sor-%04x-%04x",
1341 dcbe->hasht, dcbe->hashm);
1342 nv_connector->aux.name = kstrdup(aux_name, GFP_KERNEL);
8894f491
BS
1343 ret = drm_dp_aux_register(&nv_connector->aux);
1344 if (ret) {
1345 NV_ERROR(drm, "failed to register aux channel\n");
1346 kfree(nv_connector);
1347 return ERR_PTR(ret);
1348 }
8896ceef 1349 funcs = &nouveau_connector_funcs;
8894f491
BS
1350 break;
1351 default:
1352 funcs = &nouveau_connector_funcs;
1353 break;
7f612d87
BS
1354 }
1355
0f18d276 1356 /* HDMI 3D support */
0d4a2c57 1357 if ((disp->disp.object.oclass >= G82_DISP)
0f18d276
AB
1358 && ((type == DRM_MODE_CONNECTOR_DisplayPort)
1359 || (type == DRM_MODE_CONNECTOR_eDP)
1360 || (type == DRM_MODE_CONNECTOR_HDMIA)))
1361 connector->stereo_allowed = true;
1362
befb51e9
BS
1363 /* defaults, will get overridden in detect() */
1364 connector->interlace_allowed = false;
1365 connector->doublescan_allowed = false;
1366
1367 drm_connector_init(dev, connector, funcs, type);
1368 drm_connector_helper_add(connector, &nouveau_connector_helper_funcs);
1369
56182b8b
BS
1370 connector->funcs->reset(connector);
1371 nouveau_conn_attach_properties(connector);
df26bc9c 1372
56182b8b 1373 /* Default scaling mode */
befb51e9 1374 switch (nv_connector->type) {
0ea5fe8a
BS
1375 case DCB_CONNECTOR_LVDS:
1376 case DCB_CONNECTOR_LVDS_SPWG:
1377 case DCB_CONNECTOR_eDP:
1378 /* see note in nouveau_connector_set_property() */
0d4a2c57 1379 if (disp->disp.object.oclass < NV50_DISP) {
0ea5fe8a
BS
1380 nv_connector->scaling_mode = DRM_MODE_SCALE_FULLSCREEN;
1381 break;
1382 }
be079e97
BS
1383 nv_connector->scaling_mode = DRM_MODE_SCALE_NONE;
1384 break;
1385 default:
0ea5fe8a 1386 nv_connector->scaling_mode = DRM_MODE_SCALE_NONE;
7d95216e
BS
1387 break;
1388 }
be079e97 1389
7d95216e
BS
1390 /* dithering properties */
1391 switch (nv_connector->type) {
1392 case DCB_CONNECTOR_TV_0:
1393 case DCB_CONNECTOR_TV_1:
1394 case DCB_CONNECTOR_TV_3:
1395 case DCB_CONNECTOR_VGA:
1396 break;
1397 default:
56182b8b 1398 nv_connector->dithering_mode = DITHERING_MODE_AUTO;
be079e97 1399 break;
6ee73861
BS
1400 }
1401
46094b2b
HV
1402 switch (type) {
1403 case DRM_MODE_CONNECTOR_DisplayPort:
1404 case DRM_MODE_CONNECTOR_eDP:
ae85b0df 1405 drm_dp_cec_register_connector(&nv_connector->aux, connector);
46094b2b
HV
1406 break;
1407 }
1408
f7a7d22a
BS
1409 ret = nvif_notify_ctor(&disp->disp.object, "kmsHotplug",
1410 nouveau_connector_hotplug,
0d4a2c57 1411 true, NV04_DISP_NTFY_CONN,
79ca2770
BS
1412 &(struct nvif_notify_conn_req_v0) {
1413 .mask = NVIF_NOTIFY_CONN_V0_ANY,
1414 .conn = index,
1415 },
1416 sizeof(struct nvif_notify_conn_req_v0),
1417 sizeof(struct nvif_notify_conn_rep_v0),
1418 &nv_connector->hpd);
456b0579
BS
1419 if (ret)
1420 connector->polled = DRM_CONNECTOR_POLL_CONNECT;
1421 else
4f47643d 1422 connector->polled = DRM_CONNECTOR_POLL_HPD;
fce2bad0 1423
34ea3d38 1424 drm_connector_register(connector);
befb51e9 1425 return connector;
6ee73861 1426}