]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/gpu/drm/nouveau/dispnv50/disp.c
drm/nouveau/drm/nouveau: tegra: Call nouveau_drm_device_init()
[linux.git] / drivers / gpu / drm / nouveau / dispnv50 / disp.c
1 /*
2  * Copyright 2011 Red Hat Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * Authors: Ben Skeggs
23  */
24 #include "disp.h"
25 #include "atom.h"
26 #include "core.h"
27 #include "head.h"
28 #include "wndw.h"
29
30 #include <linux/dma-mapping.h>
31 #include <linux/hdmi.h>
32
33 #include <drm/drmP.h>
34 #include <drm/drm_atomic_helper.h>
35 #include <drm/drm_crtc_helper.h>
36 #include <drm/drm_dp_helper.h>
37 #include <drm/drm_fb_helper.h>
38 #include <drm/drm_plane_helper.h>
39 #include <drm/drm_scdc_helper.h>
40 #include <drm/drm_edid.h>
41
42 #include <nvif/class.h>
43 #include <nvif/cl0002.h>
44 #include <nvif/cl5070.h>
45 #include <nvif/cl507d.h>
46 #include <nvif/event.h>
47
48 #include "nouveau_drv.h"
49 #include "nouveau_dma.h"
50 #include "nouveau_gem.h"
51 #include "nouveau_connector.h"
52 #include "nouveau_encoder.h"
53 #include "nouveau_fence.h"
54 #include "nouveau_fbcon.h"
55
56 #include <subdev/bios/dp.h>
57
58 /******************************************************************************
59  * Atomic state
60  *****************************************************************************/
61
62 struct nv50_outp_atom {
63         struct list_head head;
64
65         struct drm_encoder *encoder;
66         bool flush_disable;
67
68         union nv50_outp_atom_mask {
69                 struct {
70                         bool ctrl:1;
71                 };
72                 u8 mask;
73         } set, clr;
74 };
75
76 /******************************************************************************
77  * EVO channel
78  *****************************************************************************/
79
80 static int
81 nv50_chan_create(struct nvif_device *device, struct nvif_object *disp,
82                  const s32 *oclass, u8 head, void *data, u32 size,
83                  struct nv50_chan *chan)
84 {
85         struct nvif_sclass *sclass;
86         int ret, i, n;
87
88         chan->device = device;
89
90         ret = n = nvif_object_sclass_get(disp, &sclass);
91         if (ret < 0)
92                 return ret;
93
94         while (oclass[0]) {
95                 for (i = 0; i < n; i++) {
96                         if (sclass[i].oclass == oclass[0]) {
97                                 ret = nvif_object_init(disp, 0, oclass[0],
98                                                        data, size, &chan->user);
99                                 if (ret == 0)
100                                         nvif_object_map(&chan->user, NULL, 0);
101                                 nvif_object_sclass_put(&sclass);
102                                 return ret;
103                         }
104                 }
105                 oclass++;
106         }
107
108         nvif_object_sclass_put(&sclass);
109         return -ENOSYS;
110 }
111
112 static void
113 nv50_chan_destroy(struct nv50_chan *chan)
114 {
115         nvif_object_fini(&chan->user);
116 }
117
118 /******************************************************************************
119  * DMA EVO channel
120  *****************************************************************************/
121
122 void
123 nv50_dmac_destroy(struct nv50_dmac *dmac)
124 {
125         nvif_object_fini(&dmac->vram);
126         nvif_object_fini(&dmac->sync);
127
128         nv50_chan_destroy(&dmac->base);
129
130         nvif_mem_fini(&dmac->push);
131 }
132
133 int
134 nv50_dmac_create(struct nvif_device *device, struct nvif_object *disp,
135                  const s32 *oclass, u8 head, void *data, u32 size, u64 syncbuf,
136                  struct nv50_dmac *dmac)
137 {
138         struct nouveau_cli *cli = (void *)device->object.client;
139         struct nv50_disp_core_channel_dma_v0 *args = data;
140         u8 type = NVIF_MEM_COHERENT;
141         int ret;
142
143         mutex_init(&dmac->lock);
144
145         /* Pascal added support for 47-bit physical addresses, but some
146          * parts of EVO still only accept 40-bit PAs.
147          *
148          * To avoid issues on systems with large amounts of RAM, and on
149          * systems where an IOMMU maps pages at a high address, we need
150          * to allocate push buffers in VRAM instead.
151          *
152          * This appears to match NVIDIA's behaviour on Pascal.
153          */
154         if (device->info.family == NV_DEVICE_INFO_V0_PASCAL)
155                 type |= NVIF_MEM_VRAM;
156
157         ret = nvif_mem_init_map(&cli->mmu, type, 0x1000, &dmac->push);
158         if (ret)
159                 return ret;
160
161         dmac->ptr = dmac->push.object.map.ptr;
162
163         args->pushbuf = nvif_handle(&dmac->push.object);
164
165         ret = nv50_chan_create(device, disp, oclass, head, data, size,
166                                &dmac->base);
167         if (ret)
168                 return ret;
169
170         if (!syncbuf)
171                 return 0;
172
173         ret = nvif_object_init(&dmac->base.user, 0xf0000000, NV_DMA_IN_MEMORY,
174                                &(struct nv_dma_v0) {
175                                         .target = NV_DMA_V0_TARGET_VRAM,
176                                         .access = NV_DMA_V0_ACCESS_RDWR,
177                                         .start = syncbuf + 0x0000,
178                                         .limit = syncbuf + 0x0fff,
179                                }, sizeof(struct nv_dma_v0),
180                                &dmac->sync);
181         if (ret)
182                 return ret;
183
184         ret = nvif_object_init(&dmac->base.user, 0xf0000001, NV_DMA_IN_MEMORY,
185                                &(struct nv_dma_v0) {
186                                         .target = NV_DMA_V0_TARGET_VRAM,
187                                         .access = NV_DMA_V0_ACCESS_RDWR,
188                                         .start = 0,
189                                         .limit = device->info.ram_user - 1,
190                                }, sizeof(struct nv_dma_v0),
191                                &dmac->vram);
192         if (ret)
193                 return ret;
194
195         return ret;
196 }
197
198 /******************************************************************************
199  * EVO channel helpers
200  *****************************************************************************/
201 u32 *
202 evo_wait(struct nv50_dmac *evoc, int nr)
203 {
204         struct nv50_dmac *dmac = evoc;
205         struct nvif_device *device = dmac->base.device;
206         u32 put = nvif_rd32(&dmac->base.user, 0x0000) / 4;
207
208         mutex_lock(&dmac->lock);
209         if (put + nr >= (PAGE_SIZE / 4) - 8) {
210                 dmac->ptr[put] = 0x20000000;
211
212                 nvif_wr32(&dmac->base.user, 0x0000, 0x00000000);
213                 if (nvif_msec(device, 2000,
214                         if (!nvif_rd32(&dmac->base.user, 0x0004))
215                                 break;
216                 ) < 0) {
217                         mutex_unlock(&dmac->lock);
218                         pr_err("nouveau: evo channel stalled\n");
219                         return NULL;
220                 }
221
222                 put = 0;
223         }
224
225         return dmac->ptr + put;
226 }
227
228 void
229 evo_kick(u32 *push, struct nv50_dmac *evoc)
230 {
231         struct nv50_dmac *dmac = evoc;
232
233         /* Push buffer fetches are not coherent with BAR1, we need to ensure
234          * writes have been flushed right through to VRAM before writing PUT.
235          */
236         if (dmac->push.type & NVIF_MEM_VRAM) {
237                 struct nvif_device *device = dmac->base.device;
238                 nvif_wr32(&device->object, 0x070000, 0x00000001);
239                 nvif_msec(device, 2000,
240                         if (!(nvif_rd32(&device->object, 0x070000) & 0x00000002))
241                                 break;
242                 );
243         }
244
245         nvif_wr32(&dmac->base.user, 0x0000, (push - dmac->ptr) << 2);
246         mutex_unlock(&dmac->lock);
247 }
248
249 /******************************************************************************
250  * Output path helpers
251  *****************************************************************************/
252 static void
253 nv50_outp_release(struct nouveau_encoder *nv_encoder)
254 {
255         struct nv50_disp *disp = nv50_disp(nv_encoder->base.base.dev);
256         struct {
257                 struct nv50_disp_mthd_v1 base;
258         } args = {
259                 .base.version = 1,
260                 .base.method = NV50_DISP_MTHD_V1_RELEASE,
261                 .base.hasht  = nv_encoder->dcb->hasht,
262                 .base.hashm  = nv_encoder->dcb->hashm,
263         };
264
265         nvif_mthd(&disp->disp->object, 0, &args, sizeof(args));
266         nv_encoder->or = -1;
267         nv_encoder->link = 0;
268 }
269
270 static int
271 nv50_outp_acquire(struct nouveau_encoder *nv_encoder)
272 {
273         struct nouveau_drm *drm = nouveau_drm(nv_encoder->base.base.dev);
274         struct nv50_disp *disp = nv50_disp(drm->dev);
275         struct {
276                 struct nv50_disp_mthd_v1 base;
277                 struct nv50_disp_acquire_v0 info;
278         } args = {
279                 .base.version = 1,
280                 .base.method = NV50_DISP_MTHD_V1_ACQUIRE,
281                 .base.hasht  = nv_encoder->dcb->hasht,
282                 .base.hashm  = nv_encoder->dcb->hashm,
283         };
284         int ret;
285
286         ret = nvif_mthd(&disp->disp->object, 0, &args, sizeof(args));
287         if (ret) {
288                 NV_ERROR(drm, "error acquiring output path: %d\n", ret);
289                 return ret;
290         }
291
292         nv_encoder->or = args.info.or;
293         nv_encoder->link = args.info.link;
294         return 0;
295 }
296
297 static int
298 nv50_outp_atomic_check_view(struct drm_encoder *encoder,
299                             struct drm_crtc_state *crtc_state,
300                             struct drm_connector_state *conn_state,
301                             struct drm_display_mode *native_mode)
302 {
303         struct drm_display_mode *adjusted_mode = &crtc_state->adjusted_mode;
304         struct drm_display_mode *mode = &crtc_state->mode;
305         struct drm_connector *connector = conn_state->connector;
306         struct nouveau_conn_atom *asyc = nouveau_conn_atom(conn_state);
307         struct nouveau_drm *drm = nouveau_drm(encoder->dev);
308
309         NV_ATOMIC(drm, "%s atomic_check\n", encoder->name);
310         asyc->scaler.full = false;
311         if (!native_mode)
312                 return 0;
313
314         if (asyc->scaler.mode == DRM_MODE_SCALE_NONE) {
315                 switch (connector->connector_type) {
316                 case DRM_MODE_CONNECTOR_LVDS:
317                 case DRM_MODE_CONNECTOR_eDP:
318                         /* Force use of scaler for non-EDID modes. */
319                         if (adjusted_mode->type & DRM_MODE_TYPE_DRIVER)
320                                 break;
321                         mode = native_mode;
322                         asyc->scaler.full = true;
323                         break;
324                 default:
325                         break;
326                 }
327         } else {
328                 mode = native_mode;
329         }
330
331         if (!drm_mode_equal(adjusted_mode, mode)) {
332                 drm_mode_copy(adjusted_mode, mode);
333                 crtc_state->mode_changed = true;
334         }
335
336         return 0;
337 }
338
339 static int
340 nv50_outp_atomic_check(struct drm_encoder *encoder,
341                        struct drm_crtc_state *crtc_state,
342                        struct drm_connector_state *conn_state)
343 {
344         struct nouveau_connector *nv_connector =
345                 nouveau_connector(conn_state->connector);
346         return nv50_outp_atomic_check_view(encoder, crtc_state, conn_state,
347                                            nv_connector->native_mode);
348 }
349
350 /******************************************************************************
351  * DAC
352  *****************************************************************************/
353 static void
354 nv50_dac_disable(struct drm_encoder *encoder)
355 {
356         struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
357         struct nv50_core *core = nv50_disp(encoder->dev)->core;
358         if (nv_encoder->crtc)
359                 core->func->dac->ctrl(core, nv_encoder->or, 0x00000000, NULL);
360         nv_encoder->crtc = NULL;
361         nv50_outp_release(nv_encoder);
362 }
363
364 static void
365 nv50_dac_enable(struct drm_encoder *encoder)
366 {
367         struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
368         struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
369         struct nv50_head_atom *asyh = nv50_head_atom(nv_crtc->base.state);
370         struct nv50_core *core = nv50_disp(encoder->dev)->core;
371
372         nv50_outp_acquire(nv_encoder);
373
374         core->func->dac->ctrl(core, nv_encoder->or, 1 << nv_crtc->index, asyh);
375         asyh->or.depth = 0;
376
377         nv_encoder->crtc = encoder->crtc;
378 }
379
380 static enum drm_connector_status
381 nv50_dac_detect(struct drm_encoder *encoder, struct drm_connector *connector)
382 {
383         struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
384         struct nv50_disp *disp = nv50_disp(encoder->dev);
385         struct {
386                 struct nv50_disp_mthd_v1 base;
387                 struct nv50_disp_dac_load_v0 load;
388         } args = {
389                 .base.version = 1,
390                 .base.method = NV50_DISP_MTHD_V1_DAC_LOAD,
391                 .base.hasht  = nv_encoder->dcb->hasht,
392                 .base.hashm  = nv_encoder->dcb->hashm,
393         };
394         int ret;
395
396         args.load.data = nouveau_drm(encoder->dev)->vbios.dactestval;
397         if (args.load.data == 0)
398                 args.load.data = 340;
399
400         ret = nvif_mthd(&disp->disp->object, 0, &args, sizeof(args));
401         if (ret || !args.load.load)
402                 return connector_status_disconnected;
403
404         return connector_status_connected;
405 }
406
407 static const struct drm_encoder_helper_funcs
408 nv50_dac_help = {
409         .atomic_check = nv50_outp_atomic_check,
410         .enable = nv50_dac_enable,
411         .disable = nv50_dac_disable,
412         .detect = nv50_dac_detect
413 };
414
415 static void
416 nv50_dac_destroy(struct drm_encoder *encoder)
417 {
418         drm_encoder_cleanup(encoder);
419         kfree(encoder);
420 }
421
422 static const struct drm_encoder_funcs
423 nv50_dac_func = {
424         .destroy = nv50_dac_destroy,
425 };
426
427 static int
428 nv50_dac_create(struct drm_connector *connector, struct dcb_output *dcbe)
429 {
430         struct nouveau_drm *drm = nouveau_drm(connector->dev);
431         struct nvkm_i2c *i2c = nvxx_i2c(&drm->client.device);
432         struct nvkm_i2c_bus *bus;
433         struct nouveau_encoder *nv_encoder;
434         struct drm_encoder *encoder;
435         int type = DRM_MODE_ENCODER_DAC;
436
437         nv_encoder = kzalloc(sizeof(*nv_encoder), GFP_KERNEL);
438         if (!nv_encoder)
439                 return -ENOMEM;
440         nv_encoder->dcb = dcbe;
441
442         bus = nvkm_i2c_bus_find(i2c, dcbe->i2c_index);
443         if (bus)
444                 nv_encoder->i2c = &bus->i2c;
445
446         encoder = to_drm_encoder(nv_encoder);
447         encoder->possible_crtcs = dcbe->heads;
448         encoder->possible_clones = 0;
449         drm_encoder_init(connector->dev, encoder, &nv50_dac_func, type,
450                          "dac-%04x-%04x", dcbe->hasht, dcbe->hashm);
451         drm_encoder_helper_add(encoder, &nv50_dac_help);
452
453         drm_connector_attach_encoder(connector, encoder);
454         return 0;
455 }
456
457 /******************************************************************************
458  * Audio
459  *****************************************************************************/
460 static void
461 nv50_audio_disable(struct drm_encoder *encoder, struct nouveau_crtc *nv_crtc)
462 {
463         struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
464         struct nv50_disp *disp = nv50_disp(encoder->dev);
465         struct {
466                 struct nv50_disp_mthd_v1 base;
467                 struct nv50_disp_sor_hda_eld_v0 eld;
468         } args = {
469                 .base.version = 1,
470                 .base.method  = NV50_DISP_MTHD_V1_SOR_HDA_ELD,
471                 .base.hasht   = nv_encoder->dcb->hasht,
472                 .base.hashm   = (0xf0ff & nv_encoder->dcb->hashm) |
473                                 (0x0100 << nv_crtc->index),
474         };
475
476         nvif_mthd(&disp->disp->object, 0, &args, sizeof(args));
477 }
478
479 static void
480 nv50_audio_enable(struct drm_encoder *encoder, struct drm_display_mode *mode)
481 {
482         struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
483         struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
484         struct nouveau_connector *nv_connector;
485         struct nv50_disp *disp = nv50_disp(encoder->dev);
486         struct __packed {
487                 struct {
488                         struct nv50_disp_mthd_v1 mthd;
489                         struct nv50_disp_sor_hda_eld_v0 eld;
490                 } base;
491                 u8 data[sizeof(nv_connector->base.eld)];
492         } args = {
493                 .base.mthd.version = 1,
494                 .base.mthd.method  = NV50_DISP_MTHD_V1_SOR_HDA_ELD,
495                 .base.mthd.hasht   = nv_encoder->dcb->hasht,
496                 .base.mthd.hashm   = (0xf0ff & nv_encoder->dcb->hashm) |
497                                      (0x0100 << nv_crtc->index),
498         };
499
500         nv_connector = nouveau_encoder_connector_get(nv_encoder);
501         if (!drm_detect_monitor_audio(nv_connector->edid))
502                 return;
503
504         memcpy(args.data, nv_connector->base.eld, sizeof(args.data));
505
506         nvif_mthd(&disp->disp->object, 0, &args,
507                   sizeof(args.base) + drm_eld_size(args.data));
508 }
509
510 /******************************************************************************
511  * HDMI
512  *****************************************************************************/
513 static void
514 nv50_hdmi_disable(struct drm_encoder *encoder, struct nouveau_crtc *nv_crtc)
515 {
516         struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
517         struct nv50_disp *disp = nv50_disp(encoder->dev);
518         struct {
519                 struct nv50_disp_mthd_v1 base;
520                 struct nv50_disp_sor_hdmi_pwr_v0 pwr;
521         } args = {
522                 .base.version = 1,
523                 .base.method = NV50_DISP_MTHD_V1_SOR_HDMI_PWR,
524                 .base.hasht  = nv_encoder->dcb->hasht,
525                 .base.hashm  = (0xf0ff & nv_encoder->dcb->hashm) |
526                                (0x0100 << nv_crtc->index),
527         };
528
529         nvif_mthd(&disp->disp->object, 0, &args, sizeof(args));
530 }
531
532 static void
533 nv50_hdmi_enable(struct drm_encoder *encoder, struct drm_display_mode *mode)
534 {
535         struct nouveau_drm *drm = nouveau_drm(encoder->dev);
536         struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
537         struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
538         struct nv50_disp *disp = nv50_disp(encoder->dev);
539         struct {
540                 struct nv50_disp_mthd_v1 base;
541                 struct nv50_disp_sor_hdmi_pwr_v0 pwr;
542                 u8 infoframes[2 * 17]; /* two frames, up to 17 bytes each */
543         } args = {
544                 .base.version = 1,
545                 .base.method = NV50_DISP_MTHD_V1_SOR_HDMI_PWR,
546                 .base.hasht  = nv_encoder->dcb->hasht,
547                 .base.hashm  = (0xf0ff & nv_encoder->dcb->hashm) |
548                                (0x0100 << nv_crtc->index),
549                 .pwr.state = 1,
550                 .pwr.rekey = 56, /* binary driver, and tegra, constant */
551         };
552         struct nouveau_connector *nv_connector;
553         struct drm_hdmi_info *hdmi;
554         u32 max_ac_packet;
555         union hdmi_infoframe avi_frame;
556         union hdmi_infoframe vendor_frame;
557         bool scdc_supported, high_tmds_clock_ratio = false, scrambling = false;
558         u8 config;
559         int ret;
560         int size;
561
562         nv_connector = nouveau_encoder_connector_get(nv_encoder);
563         if (!drm_detect_hdmi_monitor(nv_connector->edid))
564                 return;
565
566         hdmi = &nv_connector->base.display_info.hdmi;
567         scdc_supported = hdmi->scdc.supported;
568
569         ret = drm_hdmi_avi_infoframe_from_display_mode(&avi_frame.avi, mode,
570                                                        scdc_supported);
571         if (!ret) {
572                 /* We have an AVI InfoFrame, populate it to the display */
573                 args.pwr.avi_infoframe_length
574                         = hdmi_infoframe_pack(&avi_frame, args.infoframes, 17);
575         }
576
577         ret = drm_hdmi_vendor_infoframe_from_display_mode(&vendor_frame.vendor.hdmi,
578                                                           &nv_connector->base, mode);
579         if (!ret) {
580                 /* We have a Vendor InfoFrame, populate it to the display */
581                 args.pwr.vendor_infoframe_length
582                         = hdmi_infoframe_pack(&vendor_frame,
583                                               args.infoframes
584                                               + args.pwr.avi_infoframe_length,
585                                               17);
586         }
587
588         max_ac_packet  = mode->htotal - mode->hdisplay;
589         max_ac_packet -= args.pwr.rekey;
590         max_ac_packet -= 18; /* constant from tegra */
591         args.pwr.max_ac_packet = max_ac_packet / 32;
592
593         if (hdmi->scdc.scrambling.supported) {
594                 high_tmds_clock_ratio = mode->clock > 340000;
595                 scrambling = high_tmds_clock_ratio ||
596                         hdmi->scdc.scrambling.low_rates;
597         }
598
599         args.pwr.scdc =
600                 NV50_DISP_SOR_HDMI_PWR_V0_SCDC_SCRAMBLE * scrambling |
601                 NV50_DISP_SOR_HDMI_PWR_V0_SCDC_DIV_BY_4 * high_tmds_clock_ratio;
602
603         size = sizeof(args.base)
604                 + sizeof(args.pwr)
605                 + args.pwr.avi_infoframe_length
606                 + args.pwr.vendor_infoframe_length;
607         nvif_mthd(&disp->disp->object, 0, &args, size);
608
609         nv50_audio_enable(encoder, mode);
610
611         /* If SCDC is supported by the downstream monitor, update
612          * divider / scrambling settings to what we programmed above.
613          */
614         if (!hdmi->scdc.scrambling.supported)
615                 return;
616
617         ret = drm_scdc_readb(nv_encoder->i2c, SCDC_TMDS_CONFIG, &config);
618         if (ret < 0) {
619                 NV_ERROR(drm, "Failure to read SCDC_TMDS_CONFIG: %d\n", ret);
620                 return;
621         }
622         config &= ~(SCDC_TMDS_BIT_CLOCK_RATIO_BY_40 | SCDC_SCRAMBLING_ENABLE);
623         config |= SCDC_TMDS_BIT_CLOCK_RATIO_BY_40 * high_tmds_clock_ratio;
624         config |= SCDC_SCRAMBLING_ENABLE * scrambling;
625         ret = drm_scdc_writeb(nv_encoder->i2c, SCDC_TMDS_CONFIG, config);
626         if (ret < 0)
627                 NV_ERROR(drm, "Failure to write SCDC_TMDS_CONFIG = 0x%02x: %d\n",
628                          config, ret);
629 }
630
631 /******************************************************************************
632  * MST
633  *****************************************************************************/
634 #define nv50_mstm(p) container_of((p), struct nv50_mstm, mgr)
635 #define nv50_mstc(p) container_of((p), struct nv50_mstc, connector)
636 #define nv50_msto(p) container_of((p), struct nv50_msto, encoder)
637
638 struct nv50_mstm {
639         struct nouveau_encoder *outp;
640
641         struct drm_dp_mst_topology_mgr mgr;
642         struct nv50_msto *msto[4];
643
644         bool modified;
645         bool disabled;
646         int links;
647 };
648
649 struct nv50_mstc {
650         struct nv50_mstm *mstm;
651         struct drm_dp_mst_port *port;
652         struct drm_connector connector;
653
654         struct drm_display_mode *native;
655         struct edid *edid;
656
657         int pbn;
658 };
659
660 struct nv50_msto {
661         struct drm_encoder encoder;
662
663         struct nv50_head *head;
664         struct nv50_mstc *mstc;
665         bool disabled;
666 };
667
668 static struct drm_dp_payload *
669 nv50_msto_payload(struct nv50_msto *msto)
670 {
671         struct nouveau_drm *drm = nouveau_drm(msto->encoder.dev);
672         struct nv50_mstc *mstc = msto->mstc;
673         struct nv50_mstm *mstm = mstc->mstm;
674         int vcpi = mstc->port->vcpi.vcpi, i;
675
676         NV_ATOMIC(drm, "%s: vcpi %d\n", msto->encoder.name, vcpi);
677         for (i = 0; i < mstm->mgr.max_payloads; i++) {
678                 struct drm_dp_payload *payload = &mstm->mgr.payloads[i];
679                 NV_ATOMIC(drm, "%s: %d: vcpi %d start 0x%02x slots 0x%02x\n",
680                           mstm->outp->base.base.name, i, payload->vcpi,
681                           payload->start_slot, payload->num_slots);
682         }
683
684         for (i = 0; i < mstm->mgr.max_payloads; i++) {
685                 struct drm_dp_payload *payload = &mstm->mgr.payloads[i];
686                 if (payload->vcpi == vcpi)
687                         return payload;
688         }
689
690         return NULL;
691 }
692
693 static void
694 nv50_msto_cleanup(struct nv50_msto *msto)
695 {
696         struct nouveau_drm *drm = nouveau_drm(msto->encoder.dev);
697         struct nv50_mstc *mstc = msto->mstc;
698         struct nv50_mstm *mstm = mstc->mstm;
699
700         NV_ATOMIC(drm, "%s: msto cleanup\n", msto->encoder.name);
701         if (mstc->port && mstc->port->vcpi.vcpi > 0 && !nv50_msto_payload(msto))
702                 drm_dp_mst_deallocate_vcpi(&mstm->mgr, mstc->port);
703         if (msto->disabled) {
704                 msto->mstc = NULL;
705                 msto->head = NULL;
706                 msto->disabled = false;
707         }
708 }
709
710 static void
711 nv50_msto_prepare(struct nv50_msto *msto)
712 {
713         struct nouveau_drm *drm = nouveau_drm(msto->encoder.dev);
714         struct nv50_mstc *mstc = msto->mstc;
715         struct nv50_mstm *mstm = mstc->mstm;
716         struct {
717                 struct nv50_disp_mthd_v1 base;
718                 struct nv50_disp_sor_dp_mst_vcpi_v0 vcpi;
719         } args = {
720                 .base.version = 1,
721                 .base.method = NV50_DISP_MTHD_V1_SOR_DP_MST_VCPI,
722                 .base.hasht  = mstm->outp->dcb->hasht,
723                 .base.hashm  = (0xf0ff & mstm->outp->dcb->hashm) |
724                                (0x0100 << msto->head->base.index),
725         };
726
727         NV_ATOMIC(drm, "%s: msto prepare\n", msto->encoder.name);
728         if (mstc->port && mstc->port->vcpi.vcpi > 0) {
729                 struct drm_dp_payload *payload = nv50_msto_payload(msto);
730                 if (payload) {
731                         args.vcpi.start_slot = payload->start_slot;
732                         args.vcpi.num_slots = payload->num_slots;
733                         args.vcpi.pbn = mstc->port->vcpi.pbn;
734                         args.vcpi.aligned_pbn = mstc->port->vcpi.aligned_pbn;
735                 }
736         }
737
738         NV_ATOMIC(drm, "%s: %s: %02x %02x %04x %04x\n",
739                   msto->encoder.name, msto->head->base.base.name,
740                   args.vcpi.start_slot, args.vcpi.num_slots,
741                   args.vcpi.pbn, args.vcpi.aligned_pbn);
742         nvif_mthd(&drm->display->disp.object, 0, &args, sizeof(args));
743 }
744
745 static int
746 nv50_msto_atomic_check(struct drm_encoder *encoder,
747                        struct drm_crtc_state *crtc_state,
748                        struct drm_connector_state *conn_state)
749 {
750         struct nv50_mstc *mstc = nv50_mstc(conn_state->connector);
751         struct nv50_mstm *mstm = mstc->mstm;
752         int bpp = conn_state->connector->display_info.bpc * 3;
753         int slots;
754
755         mstc->pbn = drm_dp_calc_pbn_mode(crtc_state->adjusted_mode.clock, bpp);
756
757         slots = drm_dp_find_vcpi_slots(&mstm->mgr, mstc->pbn);
758         if (slots < 0)
759                 return slots;
760
761         return nv50_outp_atomic_check_view(encoder, crtc_state, conn_state,
762                                            mstc->native);
763 }
764
765 static void
766 nv50_msto_enable(struct drm_encoder *encoder)
767 {
768         struct nv50_head *head = nv50_head(encoder->crtc);
769         struct nv50_msto *msto = nv50_msto(encoder);
770         struct nv50_mstc *mstc = NULL;
771         struct nv50_mstm *mstm = NULL;
772         struct drm_connector *connector;
773         struct drm_connector_list_iter conn_iter;
774         u8 proto, depth;
775         int slots;
776         bool r;
777
778         drm_connector_list_iter_begin(encoder->dev, &conn_iter);
779         drm_for_each_connector_iter(connector, &conn_iter) {
780                 if (connector->state->best_encoder == &msto->encoder) {
781                         mstc = nv50_mstc(connector);
782                         mstm = mstc->mstm;
783                         break;
784                 }
785         }
786         drm_connector_list_iter_end(&conn_iter);
787
788         if (WARN_ON(!mstc))
789                 return;
790
791         slots = drm_dp_find_vcpi_slots(&mstm->mgr, mstc->pbn);
792         r = drm_dp_mst_allocate_vcpi(&mstm->mgr, mstc->port, mstc->pbn, slots);
793         WARN_ON(!r);
794
795         if (!mstm->links++)
796                 nv50_outp_acquire(mstm->outp);
797
798         if (mstm->outp->link & 1)
799                 proto = 0x8;
800         else
801                 proto = 0x9;
802
803         switch (mstc->connector.display_info.bpc) {
804         case  6: depth = 0x2; break;
805         case  8: depth = 0x5; break;
806         case 10:
807         default: depth = 0x6; break;
808         }
809
810         mstm->outp->update(mstm->outp, head->base.index,
811                            nv50_head_atom(head->base.base.state), proto, depth);
812
813         msto->head = head;
814         msto->mstc = mstc;
815         mstm->modified = true;
816 }
817
818 static void
819 nv50_msto_disable(struct drm_encoder *encoder)
820 {
821         struct nv50_msto *msto = nv50_msto(encoder);
822         struct nv50_mstc *mstc = msto->mstc;
823         struct nv50_mstm *mstm = mstc->mstm;
824
825         if (mstc->port)
826                 drm_dp_mst_reset_vcpi_slots(&mstm->mgr, mstc->port);
827
828         mstm->outp->update(mstm->outp, msto->head->base.index, NULL, 0, 0);
829         mstm->modified = true;
830         if (!--mstm->links)
831                 mstm->disabled = true;
832         msto->disabled = true;
833 }
834
835 static const struct drm_encoder_helper_funcs
836 nv50_msto_help = {
837         .disable = nv50_msto_disable,
838         .enable = nv50_msto_enable,
839         .atomic_check = nv50_msto_atomic_check,
840 };
841
842 static void
843 nv50_msto_destroy(struct drm_encoder *encoder)
844 {
845         struct nv50_msto *msto = nv50_msto(encoder);
846         drm_encoder_cleanup(&msto->encoder);
847         kfree(msto);
848 }
849
850 static const struct drm_encoder_funcs
851 nv50_msto = {
852         .destroy = nv50_msto_destroy,
853 };
854
855 static int
856 nv50_msto_new(struct drm_device *dev, u32 heads, const char *name, int id,
857               struct nv50_msto **pmsto)
858 {
859         struct nv50_msto *msto;
860         int ret;
861
862         if (!(msto = *pmsto = kzalloc(sizeof(*msto), GFP_KERNEL)))
863                 return -ENOMEM;
864
865         ret = drm_encoder_init(dev, &msto->encoder, &nv50_msto,
866                                DRM_MODE_ENCODER_DPMST, "%s-mst-%d", name, id);
867         if (ret) {
868                 kfree(*pmsto);
869                 *pmsto = NULL;
870                 return ret;
871         }
872
873         drm_encoder_helper_add(&msto->encoder, &nv50_msto_help);
874         msto->encoder.possible_crtcs = heads;
875         return 0;
876 }
877
878 static struct drm_encoder *
879 nv50_mstc_atomic_best_encoder(struct drm_connector *connector,
880                               struct drm_connector_state *connector_state)
881 {
882         struct nv50_head *head = nv50_head(connector_state->crtc);
883         struct nv50_mstc *mstc = nv50_mstc(connector);
884         if (mstc->port) {
885                 struct nv50_mstm *mstm = mstc->mstm;
886                 return &mstm->msto[head->base.index]->encoder;
887         }
888         return NULL;
889 }
890
891 static struct drm_encoder *
892 nv50_mstc_best_encoder(struct drm_connector *connector)
893 {
894         struct nv50_mstc *mstc = nv50_mstc(connector);
895         if (mstc->port) {
896                 struct nv50_mstm *mstm = mstc->mstm;
897                 return &mstm->msto[0]->encoder;
898         }
899         return NULL;
900 }
901
902 static enum drm_mode_status
903 nv50_mstc_mode_valid(struct drm_connector *connector,
904                      struct drm_display_mode *mode)
905 {
906         return MODE_OK;
907 }
908
909 static int
910 nv50_mstc_get_modes(struct drm_connector *connector)
911 {
912         struct nv50_mstc *mstc = nv50_mstc(connector);
913         int ret = 0;
914
915         mstc->edid = drm_dp_mst_get_edid(&mstc->connector, mstc->port->mgr, mstc->port);
916         drm_connector_update_edid_property(&mstc->connector, mstc->edid);
917         if (mstc->edid)
918                 ret = drm_add_edid_modes(&mstc->connector, mstc->edid);
919
920         if (!mstc->connector.display_info.bpc)
921                 mstc->connector.display_info.bpc = 8;
922
923         if (mstc->native)
924                 drm_mode_destroy(mstc->connector.dev, mstc->native);
925         mstc->native = nouveau_conn_native_mode(&mstc->connector);
926         return ret;
927 }
928
929 static const struct drm_connector_helper_funcs
930 nv50_mstc_help = {
931         .get_modes = nv50_mstc_get_modes,
932         .mode_valid = nv50_mstc_mode_valid,
933         .best_encoder = nv50_mstc_best_encoder,
934         .atomic_best_encoder = nv50_mstc_atomic_best_encoder,
935 };
936
937 static enum drm_connector_status
938 nv50_mstc_detect(struct drm_connector *connector, bool force)
939 {
940         struct nv50_mstc *mstc = nv50_mstc(connector);
941         if (!mstc->port)
942                 return connector_status_disconnected;
943         return drm_dp_mst_detect_port(connector, mstc->port->mgr, mstc->port);
944 }
945
946 static void
947 nv50_mstc_destroy(struct drm_connector *connector)
948 {
949         struct nv50_mstc *mstc = nv50_mstc(connector);
950         drm_connector_cleanup(&mstc->connector);
951         kfree(mstc);
952 }
953
954 static const struct drm_connector_funcs
955 nv50_mstc = {
956         .reset = nouveau_conn_reset,
957         .detect = nv50_mstc_detect,
958         .fill_modes = drm_helper_probe_single_connector_modes,
959         .destroy = nv50_mstc_destroy,
960         .atomic_duplicate_state = nouveau_conn_atomic_duplicate_state,
961         .atomic_destroy_state = nouveau_conn_atomic_destroy_state,
962         .atomic_set_property = nouveau_conn_atomic_set_property,
963         .atomic_get_property = nouveau_conn_atomic_get_property,
964 };
965
966 static int
967 nv50_mstc_new(struct nv50_mstm *mstm, struct drm_dp_mst_port *port,
968               const char *path, struct nv50_mstc **pmstc)
969 {
970         struct drm_device *dev = mstm->outp->base.base.dev;
971         struct nv50_mstc *mstc;
972         int ret, i;
973
974         if (!(mstc = *pmstc = kzalloc(sizeof(*mstc), GFP_KERNEL)))
975                 return -ENOMEM;
976         mstc->mstm = mstm;
977         mstc->port = port;
978
979         ret = drm_connector_init(dev, &mstc->connector, &nv50_mstc,
980                                  DRM_MODE_CONNECTOR_DisplayPort);
981         if (ret) {
982                 kfree(*pmstc);
983                 *pmstc = NULL;
984                 return ret;
985         }
986
987         drm_connector_helper_add(&mstc->connector, &nv50_mstc_help);
988
989         mstc->connector.funcs->reset(&mstc->connector);
990         nouveau_conn_attach_properties(&mstc->connector);
991
992         for (i = 0; i < ARRAY_SIZE(mstm->msto) && mstm->msto[i]; i++)
993                 drm_connector_attach_encoder(&mstc->connector, &mstm->msto[i]->encoder);
994
995         drm_object_attach_property(&mstc->connector.base, dev->mode_config.path_property, 0);
996         drm_object_attach_property(&mstc->connector.base, dev->mode_config.tile_property, 0);
997         drm_connector_set_path_property(&mstc->connector, path);
998         return 0;
999 }
1000
1001 static void
1002 nv50_mstm_cleanup(struct nv50_mstm *mstm)
1003 {
1004         struct nouveau_drm *drm = nouveau_drm(mstm->outp->base.base.dev);
1005         struct drm_encoder *encoder;
1006         int ret;
1007
1008         NV_ATOMIC(drm, "%s: mstm cleanup\n", mstm->outp->base.base.name);
1009         ret = drm_dp_check_act_status(&mstm->mgr);
1010
1011         ret = drm_dp_update_payload_part2(&mstm->mgr);
1012
1013         drm_for_each_encoder(encoder, mstm->outp->base.base.dev) {
1014                 if (encoder->encoder_type == DRM_MODE_ENCODER_DPMST) {
1015                         struct nv50_msto *msto = nv50_msto(encoder);
1016                         struct nv50_mstc *mstc = msto->mstc;
1017                         if (mstc && mstc->mstm == mstm)
1018                                 nv50_msto_cleanup(msto);
1019                 }
1020         }
1021
1022         mstm->modified = false;
1023 }
1024
1025 static void
1026 nv50_mstm_prepare(struct nv50_mstm *mstm)
1027 {
1028         struct nouveau_drm *drm = nouveau_drm(mstm->outp->base.base.dev);
1029         struct drm_encoder *encoder;
1030         int ret;
1031
1032         NV_ATOMIC(drm, "%s: mstm prepare\n", mstm->outp->base.base.name);
1033         ret = drm_dp_update_payload_part1(&mstm->mgr);
1034
1035         drm_for_each_encoder(encoder, mstm->outp->base.base.dev) {
1036                 if (encoder->encoder_type == DRM_MODE_ENCODER_DPMST) {
1037                         struct nv50_msto *msto = nv50_msto(encoder);
1038                         struct nv50_mstc *mstc = msto->mstc;
1039                         if (mstc && mstc->mstm == mstm)
1040                                 nv50_msto_prepare(msto);
1041                 }
1042         }
1043
1044         if (mstm->disabled) {
1045                 if (!mstm->links)
1046                         nv50_outp_release(mstm->outp);
1047                 mstm->disabled = false;
1048         }
1049 }
1050
1051 static void
1052 nv50_mstm_hotplug(struct drm_dp_mst_topology_mgr *mgr)
1053 {
1054         struct nv50_mstm *mstm = nv50_mstm(mgr);
1055         drm_kms_helper_hotplug_event(mstm->outp->base.base.dev);
1056 }
1057
1058 static void
1059 nv50_mstm_destroy_connector(struct drm_dp_mst_topology_mgr *mgr,
1060                             struct drm_connector *connector)
1061 {
1062         struct nouveau_drm *drm = nouveau_drm(connector->dev);
1063         struct nv50_mstc *mstc = nv50_mstc(connector);
1064
1065         drm_connector_unregister(&mstc->connector);
1066
1067         drm_fb_helper_remove_one_connector(&drm->fbcon->helper, &mstc->connector);
1068
1069         drm_modeset_lock(&drm->dev->mode_config.connection_mutex, NULL);
1070         mstc->port = NULL;
1071         drm_modeset_unlock(&drm->dev->mode_config.connection_mutex);
1072
1073         drm_connector_put(&mstc->connector);
1074 }
1075
1076 static void
1077 nv50_mstm_register_connector(struct drm_connector *connector)
1078 {
1079         struct nouveau_drm *drm = nouveau_drm(connector->dev);
1080
1081         drm_fb_helper_add_one_connector(&drm->fbcon->helper, connector);
1082
1083         drm_connector_register(connector);
1084 }
1085
1086 static struct drm_connector *
1087 nv50_mstm_add_connector(struct drm_dp_mst_topology_mgr *mgr,
1088                         struct drm_dp_mst_port *port, const char *path)
1089 {
1090         struct nv50_mstm *mstm = nv50_mstm(mgr);
1091         struct nv50_mstc *mstc;
1092         int ret;
1093
1094         ret = nv50_mstc_new(mstm, port, path, &mstc);
1095         if (ret) {
1096                 if (mstc)
1097                         mstc->connector.funcs->destroy(&mstc->connector);
1098                 return NULL;
1099         }
1100
1101         return &mstc->connector;
1102 }
1103
1104 static const struct drm_dp_mst_topology_cbs
1105 nv50_mstm = {
1106         .add_connector = nv50_mstm_add_connector,
1107         .register_connector = nv50_mstm_register_connector,
1108         .destroy_connector = nv50_mstm_destroy_connector,
1109         .hotplug = nv50_mstm_hotplug,
1110 };
1111
1112 void
1113 nv50_mstm_service(struct nv50_mstm *mstm)
1114 {
1115         struct drm_dp_aux *aux = mstm ? mstm->mgr.aux : NULL;
1116         bool handled = true;
1117         int ret;
1118         u8 esi[8] = {};
1119
1120         if (!aux)
1121                 return;
1122
1123         while (handled) {
1124                 ret = drm_dp_dpcd_read(aux, DP_SINK_COUNT_ESI, esi, 8);
1125                 if (ret != 8) {
1126                         drm_dp_mst_topology_mgr_set_mst(&mstm->mgr, false);
1127                         return;
1128                 }
1129
1130                 drm_dp_mst_hpd_irq(&mstm->mgr, esi, &handled);
1131                 if (!handled)
1132                         break;
1133
1134                 drm_dp_dpcd_write(aux, DP_SINK_COUNT_ESI + 1, &esi[1], 3);
1135         }
1136 }
1137
1138 void
1139 nv50_mstm_remove(struct nv50_mstm *mstm)
1140 {
1141         if (mstm)
1142                 drm_dp_mst_topology_mgr_set_mst(&mstm->mgr, false);
1143 }
1144
1145 static int
1146 nv50_mstm_enable(struct nv50_mstm *mstm, u8 dpcd, int state)
1147 {
1148         struct nouveau_encoder *outp = mstm->outp;
1149         struct {
1150                 struct nv50_disp_mthd_v1 base;
1151                 struct nv50_disp_sor_dp_mst_link_v0 mst;
1152         } args = {
1153                 .base.version = 1,
1154                 .base.method = NV50_DISP_MTHD_V1_SOR_DP_MST_LINK,
1155                 .base.hasht = outp->dcb->hasht,
1156                 .base.hashm = outp->dcb->hashm,
1157                 .mst.state = state,
1158         };
1159         struct nouveau_drm *drm = nouveau_drm(outp->base.base.dev);
1160         struct nvif_object *disp = &drm->display->disp.object;
1161         int ret;
1162
1163         if (dpcd >= 0x12) {
1164                 /* Even if we're enabling MST, start with disabling the
1165                  * branching unit to clear any sink-side MST topology state
1166                  * that wasn't set by us
1167                  */
1168                 ret = drm_dp_dpcd_writeb(mstm->mgr.aux, DP_MSTM_CTRL, 0);
1169                 if (ret < 0)
1170                         return ret;
1171
1172                 if (state) {
1173                         /* Now, start initializing */
1174                         ret = drm_dp_dpcd_writeb(mstm->mgr.aux, DP_MSTM_CTRL,
1175                                                  DP_MST_EN);
1176                         if (ret < 0)
1177                                 return ret;
1178                 }
1179         }
1180
1181         return nvif_mthd(disp, 0, &args, sizeof(args));
1182 }
1183
1184 int
1185 nv50_mstm_detect(struct nv50_mstm *mstm, u8 dpcd[8], int allow)
1186 {
1187         struct drm_dp_aux *aux;
1188         int ret;
1189         bool old_state, new_state;
1190         u8 mstm_ctrl;
1191
1192         if (!mstm)
1193                 return 0;
1194
1195         mutex_lock(&mstm->mgr.lock);
1196
1197         old_state = mstm->mgr.mst_state;
1198         new_state = old_state;
1199         aux = mstm->mgr.aux;
1200
1201         if (old_state) {
1202                 /* Just check that the MST hub is still as we expect it */
1203                 ret = drm_dp_dpcd_readb(aux, DP_MSTM_CTRL, &mstm_ctrl);
1204                 if (ret < 0 || !(mstm_ctrl & DP_MST_EN)) {
1205                         DRM_DEBUG_KMS("Hub gone, disabling MST topology\n");
1206                         new_state = false;
1207                 }
1208         } else if (dpcd[0] >= 0x12) {
1209                 ret = drm_dp_dpcd_readb(aux, DP_MSTM_CAP, &dpcd[1]);
1210                 if (ret < 0)
1211                         goto probe_error;
1212
1213                 if (!(dpcd[1] & DP_MST_CAP))
1214                         dpcd[0] = 0x11;
1215                 else
1216                         new_state = allow;
1217         }
1218
1219         if (new_state == old_state) {
1220                 mutex_unlock(&mstm->mgr.lock);
1221                 return new_state;
1222         }
1223
1224         ret = nv50_mstm_enable(mstm, dpcd[0], new_state);
1225         if (ret)
1226                 goto probe_error;
1227
1228         mutex_unlock(&mstm->mgr.lock);
1229
1230         ret = drm_dp_mst_topology_mgr_set_mst(&mstm->mgr, new_state);
1231         if (ret)
1232                 return nv50_mstm_enable(mstm, dpcd[0], 0);
1233
1234         return new_state;
1235
1236 probe_error:
1237         mutex_unlock(&mstm->mgr.lock);
1238         return ret;
1239 }
1240
1241 static void
1242 nv50_mstm_fini(struct nv50_mstm *mstm)
1243 {
1244         if (mstm && mstm->mgr.mst_state)
1245                 drm_dp_mst_topology_mgr_suspend(&mstm->mgr);
1246 }
1247
1248 static void
1249 nv50_mstm_init(struct nv50_mstm *mstm)
1250 {
1251         if (mstm && mstm->mgr.mst_state)
1252                 drm_dp_mst_topology_mgr_resume(&mstm->mgr);
1253 }
1254
1255 static void
1256 nv50_mstm_del(struct nv50_mstm **pmstm)
1257 {
1258         struct nv50_mstm *mstm = *pmstm;
1259         if (mstm) {
1260                 kfree(*pmstm);
1261                 *pmstm = NULL;
1262         }
1263 }
1264
1265 static int
1266 nv50_mstm_new(struct nouveau_encoder *outp, struct drm_dp_aux *aux, int aux_max,
1267               int conn_base_id, struct nv50_mstm **pmstm)
1268 {
1269         const int max_payloads = hweight8(outp->dcb->heads);
1270         struct drm_device *dev = outp->base.base.dev;
1271         struct nv50_mstm *mstm;
1272         int ret, i;
1273         u8 dpcd;
1274
1275         /* This is a workaround for some monitors not functioning
1276          * correctly in MST mode on initial module load.  I think
1277          * some bad interaction with the VBIOS may be responsible.
1278          *
1279          * A good ol' off and on again seems to work here ;)
1280          */
1281         ret = drm_dp_dpcd_readb(aux, DP_DPCD_REV, &dpcd);
1282         if (ret >= 0 && dpcd >= 0x12)
1283                 drm_dp_dpcd_writeb(aux, DP_MSTM_CTRL, 0);
1284
1285         if (!(mstm = *pmstm = kzalloc(sizeof(*mstm), GFP_KERNEL)))
1286                 return -ENOMEM;
1287         mstm->outp = outp;
1288         mstm->mgr.cbs = &nv50_mstm;
1289
1290         ret = drm_dp_mst_topology_mgr_init(&mstm->mgr, dev, aux, aux_max,
1291                                            max_payloads, conn_base_id);
1292         if (ret)
1293                 return ret;
1294
1295         for (i = 0; i < max_payloads; i++) {
1296                 ret = nv50_msto_new(dev, outp->dcb->heads, outp->base.base.name,
1297                                     i, &mstm->msto[i]);
1298                 if (ret)
1299                         return ret;
1300         }
1301
1302         return 0;
1303 }
1304
1305 /******************************************************************************
1306  * SOR
1307  *****************************************************************************/
1308 static void
1309 nv50_sor_update(struct nouveau_encoder *nv_encoder, u8 head,
1310                 struct nv50_head_atom *asyh, u8 proto, u8 depth)
1311 {
1312         struct nv50_disp *disp = nv50_disp(nv_encoder->base.base.dev);
1313         struct nv50_core *core = disp->core;
1314
1315         if (!asyh) {
1316                 nv_encoder->ctrl &= ~BIT(head);
1317                 if (!(nv_encoder->ctrl & 0x0000000f))
1318                         nv_encoder->ctrl = 0;
1319         } else {
1320                 nv_encoder->ctrl |= proto << 8;
1321                 nv_encoder->ctrl |= BIT(head);
1322                 asyh->or.depth = depth;
1323         }
1324
1325         core->func->sor->ctrl(core, nv_encoder->or, nv_encoder->ctrl, asyh);
1326 }
1327
1328 static void
1329 nv50_sor_disable(struct drm_encoder *encoder)
1330 {
1331         struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1332         struct nouveau_crtc *nv_crtc = nouveau_crtc(nv_encoder->crtc);
1333
1334         nv_encoder->crtc = NULL;
1335
1336         if (nv_crtc) {
1337                 struct nvkm_i2c_aux *aux = nv_encoder->aux;
1338                 u8 pwr;
1339
1340                 if (aux) {
1341                         int ret = nvkm_rdaux(aux, DP_SET_POWER, &pwr, 1);
1342                         if (ret == 0) {
1343                                 pwr &= ~DP_SET_POWER_MASK;
1344                                 pwr |=  DP_SET_POWER_D3;
1345                                 nvkm_wraux(aux, DP_SET_POWER, &pwr, 1);
1346                         }
1347                 }
1348
1349                 nv_encoder->update(nv_encoder, nv_crtc->index, NULL, 0, 0);
1350                 nv50_audio_disable(encoder, nv_crtc);
1351                 nv50_hdmi_disable(&nv_encoder->base.base, nv_crtc);
1352                 nv50_outp_release(nv_encoder);
1353         }
1354 }
1355
1356 static void
1357 nv50_sor_enable(struct drm_encoder *encoder)
1358 {
1359         struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1360         struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
1361         struct nv50_head_atom *asyh = nv50_head_atom(nv_crtc->base.state);
1362         struct drm_display_mode *mode = &asyh->state.adjusted_mode;
1363         struct {
1364                 struct nv50_disp_mthd_v1 base;
1365                 struct nv50_disp_sor_lvds_script_v0 lvds;
1366         } lvds = {
1367                 .base.version = 1,
1368                 .base.method  = NV50_DISP_MTHD_V1_SOR_LVDS_SCRIPT,
1369                 .base.hasht   = nv_encoder->dcb->hasht,
1370                 .base.hashm   = nv_encoder->dcb->hashm,
1371         };
1372         struct nv50_disp *disp = nv50_disp(encoder->dev);
1373         struct drm_device *dev = encoder->dev;
1374         struct nouveau_drm *drm = nouveau_drm(dev);
1375         struct nouveau_connector *nv_connector;
1376         struct nvbios *bios = &drm->vbios;
1377         u8 proto = 0xf;
1378         u8 depth = 0x0;
1379
1380         nv_connector = nouveau_encoder_connector_get(nv_encoder);
1381         nv_encoder->crtc = encoder->crtc;
1382         nv50_outp_acquire(nv_encoder);
1383
1384         switch (nv_encoder->dcb->type) {
1385         case DCB_OUTPUT_TMDS:
1386                 if (nv_encoder->link & 1) {
1387                         proto = 0x1;
1388                         /* Only enable dual-link if:
1389                          *  - Need to (i.e. rate > 165MHz)
1390                          *  - DCB says we can
1391                          *  - Not an HDMI monitor, since there's no dual-link
1392                          *    on HDMI.
1393                          */
1394                         if (mode->clock >= 165000 &&
1395                             nv_encoder->dcb->duallink_possible &&
1396                             !drm_detect_hdmi_monitor(nv_connector->edid))
1397                                 proto |= 0x4;
1398                 } else {
1399                         proto = 0x2;
1400                 }
1401
1402                 nv50_hdmi_enable(&nv_encoder->base.base, mode);
1403                 break;
1404         case DCB_OUTPUT_LVDS:
1405                 proto = 0x0;
1406
1407                 if (bios->fp_no_ddc) {
1408                         if (bios->fp.dual_link)
1409                                 lvds.lvds.script |= 0x0100;
1410                         if (bios->fp.if_is_24bit)
1411                                 lvds.lvds.script |= 0x0200;
1412                 } else {
1413                         if (nv_connector->type == DCB_CONNECTOR_LVDS_SPWG) {
1414                                 if (((u8 *)nv_connector->edid)[121] == 2)
1415                                         lvds.lvds.script |= 0x0100;
1416                         } else
1417                         if (mode->clock >= bios->fp.duallink_transition_clk) {
1418                                 lvds.lvds.script |= 0x0100;
1419                         }
1420
1421                         if (lvds.lvds.script & 0x0100) {
1422                                 if (bios->fp.strapless_is_24bit & 2)
1423                                         lvds.lvds.script |= 0x0200;
1424                         } else {
1425                                 if (bios->fp.strapless_is_24bit & 1)
1426                                         lvds.lvds.script |= 0x0200;
1427                         }
1428
1429                         if (nv_connector->base.display_info.bpc == 8)
1430                                 lvds.lvds.script |= 0x0200;
1431                 }
1432
1433                 nvif_mthd(&disp->disp->object, 0, &lvds, sizeof(lvds));
1434                 break;
1435         case DCB_OUTPUT_DP:
1436                 if (nv_connector->base.display_info.bpc == 6)
1437                         depth = 0x2;
1438                 else
1439                 if (nv_connector->base.display_info.bpc == 8)
1440                         depth = 0x5;
1441                 else
1442                         depth = 0x6;
1443
1444                 if (nv_encoder->link & 1)
1445                         proto = 0x8;
1446                 else
1447                         proto = 0x9;
1448
1449                 nv50_audio_enable(encoder, mode);
1450                 break;
1451         default:
1452                 BUG();
1453                 break;
1454         }
1455
1456         nv_encoder->update(nv_encoder, nv_crtc->index, asyh, proto, depth);
1457 }
1458
1459 static const struct drm_encoder_helper_funcs
1460 nv50_sor_help = {
1461         .atomic_check = nv50_outp_atomic_check,
1462         .enable = nv50_sor_enable,
1463         .disable = nv50_sor_disable,
1464 };
1465
1466 static void
1467 nv50_sor_destroy(struct drm_encoder *encoder)
1468 {
1469         struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1470         nv50_mstm_del(&nv_encoder->dp.mstm);
1471         drm_encoder_cleanup(encoder);
1472         kfree(encoder);
1473 }
1474
1475 static const struct drm_encoder_funcs
1476 nv50_sor_func = {
1477         .destroy = nv50_sor_destroy,
1478 };
1479
1480 static int
1481 nv50_sor_create(struct drm_connector *connector, struct dcb_output *dcbe)
1482 {
1483         struct nouveau_connector *nv_connector = nouveau_connector(connector);
1484         struct nouveau_drm *drm = nouveau_drm(connector->dev);
1485         struct nvkm_bios *bios = nvxx_bios(&drm->client.device);
1486         struct nvkm_i2c *i2c = nvxx_i2c(&drm->client.device);
1487         struct nouveau_encoder *nv_encoder;
1488         struct drm_encoder *encoder;
1489         u8 ver, hdr, cnt, len;
1490         u32 data;
1491         int type, ret;
1492
1493         switch (dcbe->type) {
1494         case DCB_OUTPUT_LVDS: type = DRM_MODE_ENCODER_LVDS; break;
1495         case DCB_OUTPUT_TMDS:
1496         case DCB_OUTPUT_DP:
1497         default:
1498                 type = DRM_MODE_ENCODER_TMDS;
1499                 break;
1500         }
1501
1502         nv_encoder = kzalloc(sizeof(*nv_encoder), GFP_KERNEL);
1503         if (!nv_encoder)
1504                 return -ENOMEM;
1505         nv_encoder->dcb = dcbe;
1506         nv_encoder->update = nv50_sor_update;
1507
1508         encoder = to_drm_encoder(nv_encoder);
1509         encoder->possible_crtcs = dcbe->heads;
1510         encoder->possible_clones = 0;
1511         drm_encoder_init(connector->dev, encoder, &nv50_sor_func, type,
1512                          "sor-%04x-%04x", dcbe->hasht, dcbe->hashm);
1513         drm_encoder_helper_add(encoder, &nv50_sor_help);
1514
1515         drm_connector_attach_encoder(connector, encoder);
1516
1517         if (dcbe->type == DCB_OUTPUT_DP) {
1518                 struct nv50_disp *disp = nv50_disp(encoder->dev);
1519                 struct nvkm_i2c_aux *aux =
1520                         nvkm_i2c_aux_find(i2c, dcbe->i2c_index);
1521                 if (aux) {
1522                         if (disp->disp->object.oclass < GF110_DISP) {
1523                                 /* HW has no support for address-only
1524                                  * transactions, so we're required to
1525                                  * use custom I2C-over-AUX code.
1526                                  */
1527                                 nv_encoder->i2c = &aux->i2c;
1528                         } else {
1529                                 nv_encoder->i2c = &nv_connector->aux.ddc;
1530                         }
1531                         nv_encoder->aux = aux;
1532                 }
1533
1534                 if ((data = nvbios_dp_table(bios, &ver, &hdr, &cnt, &len)) &&
1535                     ver >= 0x40 && (nvbios_rd08(bios, data + 0x08) & 0x04)) {
1536                         ret = nv50_mstm_new(nv_encoder, &nv_connector->aux, 16,
1537                                             nv_connector->base.base.id,
1538                                             &nv_encoder->dp.mstm);
1539                         if (ret)
1540                                 return ret;
1541                 }
1542         } else {
1543                 struct nvkm_i2c_bus *bus =
1544                         nvkm_i2c_bus_find(i2c, dcbe->i2c_index);
1545                 if (bus)
1546                         nv_encoder->i2c = &bus->i2c;
1547         }
1548
1549         return 0;
1550 }
1551
1552 /******************************************************************************
1553  * PIOR
1554  *****************************************************************************/
1555 static int
1556 nv50_pior_atomic_check(struct drm_encoder *encoder,
1557                        struct drm_crtc_state *crtc_state,
1558                        struct drm_connector_state *conn_state)
1559 {
1560         int ret = nv50_outp_atomic_check(encoder, crtc_state, conn_state);
1561         if (ret)
1562                 return ret;
1563         crtc_state->adjusted_mode.clock *= 2;
1564         return 0;
1565 }
1566
1567 static void
1568 nv50_pior_disable(struct drm_encoder *encoder)
1569 {
1570         struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1571         struct nv50_core *core = nv50_disp(encoder->dev)->core;
1572         if (nv_encoder->crtc)
1573                 core->func->pior->ctrl(core, nv_encoder->or, 0x00000000, NULL);
1574         nv_encoder->crtc = NULL;
1575         nv50_outp_release(nv_encoder);
1576 }
1577
1578 static void
1579 nv50_pior_enable(struct drm_encoder *encoder)
1580 {
1581         struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1582         struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
1583         struct nouveau_connector *nv_connector;
1584         struct nv50_head_atom *asyh = nv50_head_atom(nv_crtc->base.state);
1585         struct nv50_core *core = nv50_disp(encoder->dev)->core;
1586         u8 owner = 1 << nv_crtc->index;
1587         u8 proto;
1588
1589         nv50_outp_acquire(nv_encoder);
1590
1591         nv_connector = nouveau_encoder_connector_get(nv_encoder);
1592         switch (nv_connector->base.display_info.bpc) {
1593         case 10: asyh->or.depth = 0x6; break;
1594         case  8: asyh->or.depth = 0x5; break;
1595         case  6: asyh->or.depth = 0x2; break;
1596         default: asyh->or.depth = 0x0; break;
1597         }
1598
1599         switch (nv_encoder->dcb->type) {
1600         case DCB_OUTPUT_TMDS:
1601         case DCB_OUTPUT_DP:
1602                 proto = 0x0;
1603                 break;
1604         default:
1605                 BUG();
1606                 break;
1607         }
1608
1609         core->func->pior->ctrl(core, nv_encoder->or, (proto << 8) | owner, asyh);
1610         nv_encoder->crtc = encoder->crtc;
1611 }
1612
1613 static const struct drm_encoder_helper_funcs
1614 nv50_pior_help = {
1615         .atomic_check = nv50_pior_atomic_check,
1616         .enable = nv50_pior_enable,
1617         .disable = nv50_pior_disable,
1618 };
1619
1620 static void
1621 nv50_pior_destroy(struct drm_encoder *encoder)
1622 {
1623         drm_encoder_cleanup(encoder);
1624         kfree(encoder);
1625 }
1626
1627 static const struct drm_encoder_funcs
1628 nv50_pior_func = {
1629         .destroy = nv50_pior_destroy,
1630 };
1631
1632 static int
1633 nv50_pior_create(struct drm_connector *connector, struct dcb_output *dcbe)
1634 {
1635         struct nouveau_drm *drm = nouveau_drm(connector->dev);
1636         struct nvkm_i2c *i2c = nvxx_i2c(&drm->client.device);
1637         struct nvkm_i2c_bus *bus = NULL;
1638         struct nvkm_i2c_aux *aux = NULL;
1639         struct i2c_adapter *ddc;
1640         struct nouveau_encoder *nv_encoder;
1641         struct drm_encoder *encoder;
1642         int type;
1643
1644         switch (dcbe->type) {
1645         case DCB_OUTPUT_TMDS:
1646                 bus  = nvkm_i2c_bus_find(i2c, NVKM_I2C_BUS_EXT(dcbe->extdev));
1647                 ddc  = bus ? &bus->i2c : NULL;
1648                 type = DRM_MODE_ENCODER_TMDS;
1649                 break;
1650         case DCB_OUTPUT_DP:
1651                 aux  = nvkm_i2c_aux_find(i2c, NVKM_I2C_AUX_EXT(dcbe->extdev));
1652                 ddc  = aux ? &aux->i2c : NULL;
1653                 type = DRM_MODE_ENCODER_TMDS;
1654                 break;
1655         default:
1656                 return -ENODEV;
1657         }
1658
1659         nv_encoder = kzalloc(sizeof(*nv_encoder), GFP_KERNEL);
1660         if (!nv_encoder)
1661                 return -ENOMEM;
1662         nv_encoder->dcb = dcbe;
1663         nv_encoder->i2c = ddc;
1664         nv_encoder->aux = aux;
1665
1666         encoder = to_drm_encoder(nv_encoder);
1667         encoder->possible_crtcs = dcbe->heads;
1668         encoder->possible_clones = 0;
1669         drm_encoder_init(connector->dev, encoder, &nv50_pior_func, type,
1670                          "pior-%04x-%04x", dcbe->hasht, dcbe->hashm);
1671         drm_encoder_helper_add(encoder, &nv50_pior_help);
1672
1673         drm_connector_attach_encoder(connector, encoder);
1674         return 0;
1675 }
1676
1677 /******************************************************************************
1678  * Atomic
1679  *****************************************************************************/
1680
1681 static void
1682 nv50_disp_atomic_commit_core(struct drm_atomic_state *state, u32 *interlock)
1683 {
1684         struct nouveau_drm *drm = nouveau_drm(state->dev);
1685         struct nv50_disp *disp = nv50_disp(drm->dev);
1686         struct nv50_core *core = disp->core;
1687         struct nv50_mstm *mstm;
1688         struct drm_encoder *encoder;
1689
1690         NV_ATOMIC(drm, "commit core %08x\n", interlock[NV50_DISP_INTERLOCK_BASE]);
1691
1692         drm_for_each_encoder(encoder, drm->dev) {
1693                 if (encoder->encoder_type != DRM_MODE_ENCODER_DPMST) {
1694                         mstm = nouveau_encoder(encoder)->dp.mstm;
1695                         if (mstm && mstm->modified)
1696                                 nv50_mstm_prepare(mstm);
1697                 }
1698         }
1699
1700         core->func->ntfy_init(disp->sync, NV50_DISP_CORE_NTFY);
1701         core->func->update(core, interlock, true);
1702         if (core->func->ntfy_wait_done(disp->sync, NV50_DISP_CORE_NTFY,
1703                                        disp->core->chan.base.device))
1704                 NV_ERROR(drm, "core notifier timeout\n");
1705
1706         drm_for_each_encoder(encoder, drm->dev) {
1707                 if (encoder->encoder_type != DRM_MODE_ENCODER_DPMST) {
1708                         mstm = nouveau_encoder(encoder)->dp.mstm;
1709                         if (mstm && mstm->modified)
1710                                 nv50_mstm_cleanup(mstm);
1711                 }
1712         }
1713 }
1714
1715 static void
1716 nv50_disp_atomic_commit_wndw(struct drm_atomic_state *state, u32 *interlock)
1717 {
1718         struct drm_plane_state *new_plane_state;
1719         struct drm_plane *plane;
1720         int i;
1721
1722         for_each_new_plane_in_state(state, plane, new_plane_state, i) {
1723                 struct nv50_wndw *wndw = nv50_wndw(plane);
1724                 if (interlock[wndw->interlock.type] & wndw->interlock.data) {
1725                         if (wndw->func->update)
1726                                 wndw->func->update(wndw, interlock);
1727                 }
1728         }
1729 }
1730
1731 static void
1732 nv50_disp_atomic_commit_tail(struct drm_atomic_state *state)
1733 {
1734         struct drm_device *dev = state->dev;
1735         struct drm_crtc_state *new_crtc_state, *old_crtc_state;
1736         struct drm_crtc *crtc;
1737         struct drm_plane_state *new_plane_state;
1738         struct drm_plane *plane;
1739         struct nouveau_drm *drm = nouveau_drm(dev);
1740         struct nv50_disp *disp = nv50_disp(dev);
1741         struct nv50_atom *atom = nv50_atom(state);
1742         struct nv50_outp_atom *outp, *outt;
1743         u32 interlock[NV50_DISP_INTERLOCK__SIZE] = {};
1744         int i;
1745
1746         NV_ATOMIC(drm, "commit %d %d\n", atom->lock_core, atom->flush_disable);
1747         drm_atomic_helper_wait_for_fences(dev, state, false);
1748         drm_atomic_helper_wait_for_dependencies(state);
1749         drm_atomic_helper_update_legacy_modeset_state(dev, state);
1750
1751         if (atom->lock_core)
1752                 mutex_lock(&disp->mutex);
1753
1754         /* Disable head(s). */
1755         for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
1756                 struct nv50_head_atom *asyh = nv50_head_atom(new_crtc_state);
1757                 struct nv50_head *head = nv50_head(crtc);
1758
1759                 NV_ATOMIC(drm, "%s: clr %04x (set %04x)\n", crtc->name,
1760                           asyh->clr.mask, asyh->set.mask);
1761                 if (old_crtc_state->active && !new_crtc_state->active)
1762                         drm_crtc_vblank_off(crtc);
1763
1764                 if (asyh->clr.mask) {
1765                         nv50_head_flush_clr(head, asyh, atom->flush_disable);
1766                         interlock[NV50_DISP_INTERLOCK_CORE] |= 1;
1767                 }
1768         }
1769
1770         /* Disable plane(s). */
1771         for_each_new_plane_in_state(state, plane, new_plane_state, i) {
1772                 struct nv50_wndw_atom *asyw = nv50_wndw_atom(new_plane_state);
1773                 struct nv50_wndw *wndw = nv50_wndw(plane);
1774
1775                 NV_ATOMIC(drm, "%s: clr %02x (set %02x)\n", plane->name,
1776                           asyw->clr.mask, asyw->set.mask);
1777                 if (!asyw->clr.mask)
1778                         continue;
1779
1780                 nv50_wndw_flush_clr(wndw, interlock, atom->flush_disable, asyw);
1781         }
1782
1783         /* Disable output path(s). */
1784         list_for_each_entry(outp, &atom->outp, head) {
1785                 const struct drm_encoder_helper_funcs *help;
1786                 struct drm_encoder *encoder;
1787
1788                 encoder = outp->encoder;
1789                 help = encoder->helper_private;
1790
1791                 NV_ATOMIC(drm, "%s: clr %02x (set %02x)\n", encoder->name,
1792                           outp->clr.mask, outp->set.mask);
1793
1794                 if (outp->clr.mask) {
1795                         help->disable(encoder);
1796                         interlock[NV50_DISP_INTERLOCK_CORE] |= 1;
1797                         if (outp->flush_disable) {
1798                                 nv50_disp_atomic_commit_wndw(state, interlock);
1799                                 nv50_disp_atomic_commit_core(state, interlock);
1800                                 memset(interlock, 0x00, sizeof(interlock));
1801                         }
1802                 }
1803         }
1804
1805         /* Flush disable. */
1806         if (interlock[NV50_DISP_INTERLOCK_CORE]) {
1807                 if (atom->flush_disable) {
1808                         nv50_disp_atomic_commit_wndw(state, interlock);
1809                         nv50_disp_atomic_commit_core(state, interlock);
1810                         memset(interlock, 0x00, sizeof(interlock));
1811                 }
1812         }
1813
1814         /* Update output path(s). */
1815         list_for_each_entry_safe(outp, outt, &atom->outp, head) {
1816                 const struct drm_encoder_helper_funcs *help;
1817                 struct drm_encoder *encoder;
1818
1819                 encoder = outp->encoder;
1820                 help = encoder->helper_private;
1821
1822                 NV_ATOMIC(drm, "%s: set %02x (clr %02x)\n", encoder->name,
1823                           outp->set.mask, outp->clr.mask);
1824
1825                 if (outp->set.mask) {
1826                         help->enable(encoder);
1827                         interlock[NV50_DISP_INTERLOCK_CORE] = 1;
1828                 }
1829
1830                 list_del(&outp->head);
1831                 kfree(outp);
1832         }
1833
1834         /* Update head(s). */
1835         for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
1836                 struct nv50_head_atom *asyh = nv50_head_atom(new_crtc_state);
1837                 struct nv50_head *head = nv50_head(crtc);
1838
1839                 NV_ATOMIC(drm, "%s: set %04x (clr %04x)\n", crtc->name,
1840                           asyh->set.mask, asyh->clr.mask);
1841
1842                 if (asyh->set.mask) {
1843                         nv50_head_flush_set(head, asyh);
1844                         interlock[NV50_DISP_INTERLOCK_CORE] = 1;
1845                 }
1846
1847                 if (new_crtc_state->active) {
1848                         if (!old_crtc_state->active)
1849                                 drm_crtc_vblank_on(crtc);
1850                         if (new_crtc_state->event)
1851                                 drm_crtc_vblank_get(crtc);
1852                 }
1853         }
1854
1855         /* Update plane(s). */
1856         for_each_new_plane_in_state(state, plane, new_plane_state, i) {
1857                 struct nv50_wndw_atom *asyw = nv50_wndw_atom(new_plane_state);
1858                 struct nv50_wndw *wndw = nv50_wndw(plane);
1859
1860                 NV_ATOMIC(drm, "%s: set %02x (clr %02x)\n", plane->name,
1861                           asyw->set.mask, asyw->clr.mask);
1862                 if ( !asyw->set.mask &&
1863                     (!asyw->clr.mask || atom->flush_disable))
1864                         continue;
1865
1866                 nv50_wndw_flush_set(wndw, interlock, asyw);
1867         }
1868
1869         /* Flush update. */
1870         nv50_disp_atomic_commit_wndw(state, interlock);
1871
1872         if (interlock[NV50_DISP_INTERLOCK_CORE]) {
1873                 if (interlock[NV50_DISP_INTERLOCK_BASE] ||
1874                     interlock[NV50_DISP_INTERLOCK_OVLY] ||
1875                     interlock[NV50_DISP_INTERLOCK_WNDW] ||
1876                     !atom->state.legacy_cursor_update)
1877                         nv50_disp_atomic_commit_core(state, interlock);
1878                 else
1879                         disp->core->func->update(disp->core, interlock, false);
1880         }
1881
1882         if (atom->lock_core)
1883                 mutex_unlock(&disp->mutex);
1884
1885         /* Wait for HW to signal completion. */
1886         for_each_new_plane_in_state(state, plane, new_plane_state, i) {
1887                 struct nv50_wndw_atom *asyw = nv50_wndw_atom(new_plane_state);
1888                 struct nv50_wndw *wndw = nv50_wndw(plane);
1889                 int ret = nv50_wndw_wait_armed(wndw, asyw);
1890                 if (ret)
1891                         NV_ERROR(drm, "%s: timeout\n", plane->name);
1892         }
1893
1894         for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
1895                 if (new_crtc_state->event) {
1896                         unsigned long flags;
1897                         /* Get correct count/ts if racing with vblank irq */
1898                         if (new_crtc_state->active)
1899                                 drm_crtc_accurate_vblank_count(crtc);
1900                         spin_lock_irqsave(&crtc->dev->event_lock, flags);
1901                         drm_crtc_send_vblank_event(crtc, new_crtc_state->event);
1902                         spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
1903
1904                         new_crtc_state->event = NULL;
1905                         if (new_crtc_state->active)
1906                                 drm_crtc_vblank_put(crtc);
1907                 }
1908         }
1909
1910         drm_atomic_helper_commit_hw_done(state);
1911         drm_atomic_helper_cleanup_planes(dev, state);
1912         drm_atomic_helper_commit_cleanup_done(state);
1913         drm_atomic_state_put(state);
1914 }
1915
1916 static void
1917 nv50_disp_atomic_commit_work(struct work_struct *work)
1918 {
1919         struct drm_atomic_state *state =
1920                 container_of(work, typeof(*state), commit_work);
1921         nv50_disp_atomic_commit_tail(state);
1922 }
1923
1924 static int
1925 nv50_disp_atomic_commit(struct drm_device *dev,
1926                         struct drm_atomic_state *state, bool nonblock)
1927 {
1928         struct nouveau_drm *drm = nouveau_drm(dev);
1929         struct drm_plane_state *new_plane_state;
1930         struct drm_plane *plane;
1931         struct drm_crtc *crtc;
1932         bool active = false;
1933         int ret, i;
1934
1935         ret = pm_runtime_get_sync(dev->dev);
1936         if (ret < 0 && ret != -EACCES)
1937                 return ret;
1938
1939         ret = drm_atomic_helper_setup_commit(state, nonblock);
1940         if (ret)
1941                 goto done;
1942
1943         INIT_WORK(&state->commit_work, nv50_disp_atomic_commit_work);
1944
1945         ret = drm_atomic_helper_prepare_planes(dev, state);
1946         if (ret)
1947                 goto done;
1948
1949         if (!nonblock) {
1950                 ret = drm_atomic_helper_wait_for_fences(dev, state, true);
1951                 if (ret)
1952                         goto err_cleanup;
1953         }
1954
1955         ret = drm_atomic_helper_swap_state(state, true);
1956         if (ret)
1957                 goto err_cleanup;
1958
1959         for_each_new_plane_in_state(state, plane, new_plane_state, i) {
1960                 struct nv50_wndw_atom *asyw = nv50_wndw_atom(new_plane_state);
1961                 struct nv50_wndw *wndw = nv50_wndw(plane);
1962
1963                 if (asyw->set.image)
1964                         nv50_wndw_ntfy_enable(wndw, asyw);
1965         }
1966
1967         drm_atomic_state_get(state);
1968
1969         if (nonblock)
1970                 queue_work(system_unbound_wq, &state->commit_work);
1971         else
1972                 nv50_disp_atomic_commit_tail(state);
1973
1974         drm_for_each_crtc(crtc, dev) {
1975                 if (crtc->state->active) {
1976                         if (!drm->have_disp_power_ref) {
1977                                 drm->have_disp_power_ref = true;
1978                                 return 0;
1979                         }
1980                         active = true;
1981                         break;
1982                 }
1983         }
1984
1985         if (!active && drm->have_disp_power_ref) {
1986                 pm_runtime_put_autosuspend(dev->dev);
1987                 drm->have_disp_power_ref = false;
1988         }
1989
1990 err_cleanup:
1991         if (ret)
1992                 drm_atomic_helper_cleanup_planes(dev, state);
1993 done:
1994         pm_runtime_put_autosuspend(dev->dev);
1995         return ret;
1996 }
1997
1998 static struct nv50_outp_atom *
1999 nv50_disp_outp_atomic_add(struct nv50_atom *atom, struct drm_encoder *encoder)
2000 {
2001         struct nv50_outp_atom *outp;
2002
2003         list_for_each_entry(outp, &atom->outp, head) {
2004                 if (outp->encoder == encoder)
2005                         return outp;
2006         }
2007
2008         outp = kzalloc(sizeof(*outp), GFP_KERNEL);
2009         if (!outp)
2010                 return ERR_PTR(-ENOMEM);
2011
2012         list_add(&outp->head, &atom->outp);
2013         outp->encoder = encoder;
2014         return outp;
2015 }
2016
2017 static int
2018 nv50_disp_outp_atomic_check_clr(struct nv50_atom *atom,
2019                                 struct drm_connector_state *old_connector_state)
2020 {
2021         struct drm_encoder *encoder = old_connector_state->best_encoder;
2022         struct drm_crtc_state *old_crtc_state, *new_crtc_state;
2023         struct drm_crtc *crtc;
2024         struct nv50_outp_atom *outp;
2025
2026         if (!(crtc = old_connector_state->crtc))
2027                 return 0;
2028
2029         old_crtc_state = drm_atomic_get_old_crtc_state(&atom->state, crtc);
2030         new_crtc_state = drm_atomic_get_new_crtc_state(&atom->state, crtc);
2031         if (old_crtc_state->active && drm_atomic_crtc_needs_modeset(new_crtc_state)) {
2032                 outp = nv50_disp_outp_atomic_add(atom, encoder);
2033                 if (IS_ERR(outp))
2034                         return PTR_ERR(outp);
2035
2036                 if (outp->encoder->encoder_type == DRM_MODE_ENCODER_DPMST) {
2037                         outp->flush_disable = true;
2038                         atom->flush_disable = true;
2039                 }
2040                 outp->clr.ctrl = true;
2041                 atom->lock_core = true;
2042         }
2043
2044         return 0;
2045 }
2046
2047 static int
2048 nv50_disp_outp_atomic_check_set(struct nv50_atom *atom,
2049                                 struct drm_connector_state *connector_state)
2050 {
2051         struct drm_encoder *encoder = connector_state->best_encoder;
2052         struct drm_crtc_state *new_crtc_state;
2053         struct drm_crtc *crtc;
2054         struct nv50_outp_atom *outp;
2055
2056         if (!(crtc = connector_state->crtc))
2057                 return 0;
2058
2059         new_crtc_state = drm_atomic_get_new_crtc_state(&atom->state, crtc);
2060         if (new_crtc_state->active && drm_atomic_crtc_needs_modeset(new_crtc_state)) {
2061                 outp = nv50_disp_outp_atomic_add(atom, encoder);
2062                 if (IS_ERR(outp))
2063                         return PTR_ERR(outp);
2064
2065                 outp->set.ctrl = true;
2066                 atom->lock_core = true;
2067         }
2068
2069         return 0;
2070 }
2071
2072 static int
2073 nv50_disp_atomic_check(struct drm_device *dev, struct drm_atomic_state *state)
2074 {
2075         struct nv50_atom *atom = nv50_atom(state);
2076         struct drm_connector_state *old_connector_state, *new_connector_state;
2077         struct drm_connector *connector;
2078         struct drm_crtc_state *new_crtc_state;
2079         struct drm_crtc *crtc;
2080         int ret, i;
2081
2082         /* We need to handle colour management on a per-plane basis. */
2083         for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
2084                 if (new_crtc_state->color_mgmt_changed) {
2085                         ret = drm_atomic_add_affected_planes(state, crtc);
2086                         if (ret)
2087                                 return ret;
2088                 }
2089         }
2090
2091         ret = drm_atomic_helper_check(dev, state);
2092         if (ret)
2093                 return ret;
2094
2095         for_each_oldnew_connector_in_state(state, connector, old_connector_state, new_connector_state, i) {
2096                 ret = nv50_disp_outp_atomic_check_clr(atom, old_connector_state);
2097                 if (ret)
2098                         return ret;
2099
2100                 ret = nv50_disp_outp_atomic_check_set(atom, new_connector_state);
2101                 if (ret)
2102                         return ret;
2103         }
2104
2105         return 0;
2106 }
2107
2108 static void
2109 nv50_disp_atomic_state_clear(struct drm_atomic_state *state)
2110 {
2111         struct nv50_atom *atom = nv50_atom(state);
2112         struct nv50_outp_atom *outp, *outt;
2113
2114         list_for_each_entry_safe(outp, outt, &atom->outp, head) {
2115                 list_del(&outp->head);
2116                 kfree(outp);
2117         }
2118
2119         drm_atomic_state_default_clear(state);
2120 }
2121
2122 static void
2123 nv50_disp_atomic_state_free(struct drm_atomic_state *state)
2124 {
2125         struct nv50_atom *atom = nv50_atom(state);
2126         drm_atomic_state_default_release(&atom->state);
2127         kfree(atom);
2128 }
2129
2130 static struct drm_atomic_state *
2131 nv50_disp_atomic_state_alloc(struct drm_device *dev)
2132 {
2133         struct nv50_atom *atom;
2134         if (!(atom = kzalloc(sizeof(*atom), GFP_KERNEL)) ||
2135             drm_atomic_state_init(dev, &atom->state) < 0) {
2136                 kfree(atom);
2137                 return NULL;
2138         }
2139         INIT_LIST_HEAD(&atom->outp);
2140         return &atom->state;
2141 }
2142
2143 static const struct drm_mode_config_funcs
2144 nv50_disp_func = {
2145         .fb_create = nouveau_user_framebuffer_create,
2146         .output_poll_changed = nouveau_fbcon_output_poll_changed,
2147         .atomic_check = nv50_disp_atomic_check,
2148         .atomic_commit = nv50_disp_atomic_commit,
2149         .atomic_state_alloc = nv50_disp_atomic_state_alloc,
2150         .atomic_state_clear = nv50_disp_atomic_state_clear,
2151         .atomic_state_free = nv50_disp_atomic_state_free,
2152 };
2153
2154 /******************************************************************************
2155  * Init
2156  *****************************************************************************/
2157
2158 void
2159 nv50_display_fini(struct drm_device *dev)
2160 {
2161         struct nouveau_encoder *nv_encoder;
2162         struct drm_encoder *encoder;
2163         struct drm_plane *plane;
2164
2165         drm_for_each_plane(plane, dev) {
2166                 struct nv50_wndw *wndw = nv50_wndw(plane);
2167                 if (plane->funcs != &nv50_wndw)
2168                         continue;
2169                 nv50_wndw_fini(wndw);
2170         }
2171
2172         list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
2173                 if (encoder->encoder_type != DRM_MODE_ENCODER_DPMST) {
2174                         nv_encoder = nouveau_encoder(encoder);
2175                         nv50_mstm_fini(nv_encoder->dp.mstm);
2176                 }
2177         }
2178 }
2179
2180 int
2181 nv50_display_init(struct drm_device *dev)
2182 {
2183         struct nv50_core *core = nv50_disp(dev)->core;
2184         struct drm_encoder *encoder;
2185         struct drm_plane *plane;
2186
2187         core->func->init(core);
2188
2189         list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
2190                 if (encoder->encoder_type != DRM_MODE_ENCODER_DPMST) {
2191                         struct nouveau_encoder *nv_encoder =
2192                                 nouveau_encoder(encoder);
2193                         nv50_mstm_init(nv_encoder->dp.mstm);
2194                 }
2195         }
2196
2197         drm_for_each_plane(plane, dev) {
2198                 struct nv50_wndw *wndw = nv50_wndw(plane);
2199                 if (plane->funcs != &nv50_wndw)
2200                         continue;
2201                 nv50_wndw_init(wndw);
2202         }
2203
2204         return 0;
2205 }
2206
2207 void
2208 nv50_display_destroy(struct drm_device *dev)
2209 {
2210         struct nv50_disp *disp = nv50_disp(dev);
2211
2212         nv50_core_del(&disp->core);
2213
2214         nouveau_bo_unmap(disp->sync);
2215         if (disp->sync)
2216                 nouveau_bo_unpin(disp->sync);
2217         nouveau_bo_ref(NULL, &disp->sync);
2218
2219         nouveau_display(dev)->priv = NULL;
2220         kfree(disp);
2221 }
2222
2223 int
2224 nv50_display_create(struct drm_device *dev)
2225 {
2226         struct nvif_device *device = &nouveau_drm(dev)->client.device;
2227         struct nouveau_drm *drm = nouveau_drm(dev);
2228         struct dcb_table *dcb = &drm->vbios.dcb;
2229         struct drm_connector *connector, *tmp;
2230         struct nv50_disp *disp;
2231         struct dcb_output *dcbe;
2232         int crtcs, ret, i;
2233
2234         disp = kzalloc(sizeof(*disp), GFP_KERNEL);
2235         if (!disp)
2236                 return -ENOMEM;
2237
2238         mutex_init(&disp->mutex);
2239
2240         nouveau_display(dev)->priv = disp;
2241         nouveau_display(dev)->dtor = nv50_display_destroy;
2242         nouveau_display(dev)->init = nv50_display_init;
2243         nouveau_display(dev)->fini = nv50_display_fini;
2244         disp->disp = &nouveau_display(dev)->disp;
2245         dev->mode_config.funcs = &nv50_disp_func;
2246         dev->mode_config.quirk_addfb_prefer_xbgr_30bpp = true;
2247
2248         /* small shared memory area we use for notifiers and semaphores */
2249         ret = nouveau_bo_new(&drm->client, 4096, 0x1000, TTM_PL_FLAG_VRAM,
2250                              0, 0x0000, NULL, NULL, &disp->sync);
2251         if (!ret) {
2252                 ret = nouveau_bo_pin(disp->sync, TTM_PL_FLAG_VRAM, true);
2253                 if (!ret) {
2254                         ret = nouveau_bo_map(disp->sync);
2255                         if (ret)
2256                                 nouveau_bo_unpin(disp->sync);
2257                 }
2258                 if (ret)
2259                         nouveau_bo_ref(NULL, &disp->sync);
2260         }
2261
2262         if (ret)
2263                 goto out;
2264
2265         /* allocate master evo channel */
2266         ret = nv50_core_new(drm, &disp->core);
2267         if (ret)
2268                 goto out;
2269
2270         /* create crtc objects to represent the hw heads */
2271         if (disp->disp->object.oclass >= GV100_DISP)
2272                 crtcs = nvif_rd32(&device->object, 0x610060) & 0xff;
2273         else
2274         if (disp->disp->object.oclass >= GF110_DISP)
2275                 crtcs = nvif_rd32(&device->object, 0x612004) & 0xf;
2276         else
2277                 crtcs = 0x3;
2278
2279         for (i = 0; i < fls(crtcs); i++) {
2280                 if (!(crtcs & (1 << i)))
2281                         continue;
2282                 ret = nv50_head_create(dev, i);
2283                 if (ret)
2284                         goto out;
2285         }
2286
2287         /* create encoder/connector objects based on VBIOS DCB table */
2288         for (i = 0, dcbe = &dcb->entry[0]; i < dcb->entries; i++, dcbe++) {
2289                 connector = nouveau_connector_create(dev, dcbe->connector);
2290                 if (IS_ERR(connector))
2291                         continue;
2292
2293                 if (dcbe->location == DCB_LOC_ON_CHIP) {
2294                         switch (dcbe->type) {
2295                         case DCB_OUTPUT_TMDS:
2296                         case DCB_OUTPUT_LVDS:
2297                         case DCB_OUTPUT_DP:
2298                                 ret = nv50_sor_create(connector, dcbe);
2299                                 break;
2300                         case DCB_OUTPUT_ANALOG:
2301                                 ret = nv50_dac_create(connector, dcbe);
2302                                 break;
2303                         default:
2304                                 ret = -ENODEV;
2305                                 break;
2306                         }
2307                 } else {
2308                         ret = nv50_pior_create(connector, dcbe);
2309                 }
2310
2311                 if (ret) {
2312                         NV_WARN(drm, "failed to create encoder %d/%d/%d: %d\n",
2313                                      dcbe->location, dcbe->type,
2314                                      ffs(dcbe->or) - 1, ret);
2315                         ret = 0;
2316                 }
2317         }
2318
2319         /* cull any connectors we created that don't have an encoder */
2320         list_for_each_entry_safe(connector, tmp, &dev->mode_config.connector_list, head) {
2321                 if (connector->encoder_ids[0])
2322                         continue;
2323
2324                 NV_WARN(drm, "%s has no encoders, removing\n",
2325                         connector->name);
2326                 connector->funcs->destroy(connector);
2327         }
2328
2329         /* Disable vblank irqs aggressively for power-saving, safe on nv50+ */
2330         dev->vblank_disable_immediate = true;
2331
2332 out:
2333         if (ret)
2334                 nv50_display_destroy(dev);
2335         return ret;
2336 }