2 * Copyright 2011 Red Hat Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
30 #include <linux/dma-mapping.h>
31 #include <linux/hdmi.h>
32 #include <linux/component.h>
34 #include <drm/drm_atomic_helper.h>
35 #include <drm/drm_dp_helper.h>
36 #include <drm/drm_edid.h>
37 #include <drm/drm_fb_helper.h>
38 #include <drm/drm_plane_helper.h>
39 #include <drm/drm_probe_helper.h>
40 #include <drm/drm_scdc_helper.h>
41 #include <drm/drm_vblank.h>
43 #include <nvif/class.h>
44 #include <nvif/cl0002.h>
45 #include <nvif/cl5070.h>
46 #include <nvif/cl507d.h>
47 #include <nvif/event.h>
49 #include "nouveau_drv.h"
50 #include "nouveau_dma.h"
51 #include "nouveau_gem.h"
52 #include "nouveau_connector.h"
53 #include "nouveau_encoder.h"
54 #include "nouveau_fence.h"
55 #include "nouveau_fbcon.h"
57 #include <subdev/bios/dp.h>
59 /******************************************************************************
61 *****************************************************************************/
63 struct nv50_outp_atom
{
64 struct list_head head
;
66 struct drm_encoder
*encoder
;
69 union nv50_outp_atom_mask
{
77 /******************************************************************************
79 *****************************************************************************/
82 nv50_chan_create(struct nvif_device
*device
, struct nvif_object
*disp
,
83 const s32
*oclass
, u8 head
, void *data
, u32 size
,
84 struct nv50_chan
*chan
)
86 struct nvif_sclass
*sclass
;
89 chan
->device
= device
;
91 ret
= n
= nvif_object_sclass_get(disp
, &sclass
);
96 for (i
= 0; i
< n
; i
++) {
97 if (sclass
[i
].oclass
== oclass
[0]) {
98 ret
= nvif_object_init(disp
, 0, oclass
[0],
99 data
, size
, &chan
->user
);
101 nvif_object_map(&chan
->user
, NULL
, 0);
102 nvif_object_sclass_put(&sclass
);
109 nvif_object_sclass_put(&sclass
);
114 nv50_chan_destroy(struct nv50_chan
*chan
)
116 nvif_object_fini(&chan
->user
);
119 /******************************************************************************
121 *****************************************************************************/
124 nv50_dmac_destroy(struct nv50_dmac
*dmac
)
126 nvif_object_fini(&dmac
->vram
);
127 nvif_object_fini(&dmac
->sync
);
129 nv50_chan_destroy(&dmac
->base
);
131 nvif_mem_fini(&dmac
->push
);
135 nv50_dmac_create(struct nvif_device
*device
, struct nvif_object
*disp
,
136 const s32
*oclass
, u8 head
, void *data
, u32 size
, u64 syncbuf
,
137 struct nv50_dmac
*dmac
)
139 struct nouveau_cli
*cli
= (void *)device
->object
.client
;
140 struct nv50_disp_core_channel_dma_v0
*args
= data
;
141 u8 type
= NVIF_MEM_COHERENT
;
144 mutex_init(&dmac
->lock
);
146 /* Pascal added support for 47-bit physical addresses, but some
147 * parts of EVO still only accept 40-bit PAs.
149 * To avoid issues on systems with large amounts of RAM, and on
150 * systems where an IOMMU maps pages at a high address, we need
151 * to allocate push buffers in VRAM instead.
153 * This appears to match NVIDIA's behaviour on Pascal.
155 if (device
->info
.family
== NV_DEVICE_INFO_V0_PASCAL
)
156 type
|= NVIF_MEM_VRAM
;
158 ret
= nvif_mem_init_map(&cli
->mmu
, type
, 0x1000, &dmac
->push
);
162 dmac
->ptr
= dmac
->push
.object
.map
.ptr
;
164 args
->pushbuf
= nvif_handle(&dmac
->push
.object
);
166 ret
= nv50_chan_create(device
, disp
, oclass
, head
, data
, size
,
174 ret
= nvif_object_init(&dmac
->base
.user
, 0xf0000000, NV_DMA_IN_MEMORY
,
175 &(struct nv_dma_v0
) {
176 .target
= NV_DMA_V0_TARGET_VRAM
,
177 .access
= NV_DMA_V0_ACCESS_RDWR
,
178 .start
= syncbuf
+ 0x0000,
179 .limit
= syncbuf
+ 0x0fff,
180 }, sizeof(struct nv_dma_v0
),
185 ret
= nvif_object_init(&dmac
->base
.user
, 0xf0000001, NV_DMA_IN_MEMORY
,
186 &(struct nv_dma_v0
) {
187 .target
= NV_DMA_V0_TARGET_VRAM
,
188 .access
= NV_DMA_V0_ACCESS_RDWR
,
190 .limit
= device
->info
.ram_user
- 1,
191 }, sizeof(struct nv_dma_v0
),
199 /******************************************************************************
200 * EVO channel helpers
201 *****************************************************************************/
203 evo_flush(struct nv50_dmac
*dmac
)
205 /* Push buffer fetches are not coherent with BAR1, we need to ensure
206 * writes have been flushed right through to VRAM before writing PUT.
208 if (dmac
->push
.type
& NVIF_MEM_VRAM
) {
209 struct nvif_device
*device
= dmac
->base
.device
;
210 nvif_wr32(&device
->object
, 0x070000, 0x00000001);
211 nvif_msec(device
, 2000,
212 if (!(nvif_rd32(&device
->object
, 0x070000) & 0x00000002))
219 evo_wait(struct nv50_dmac
*evoc
, int nr
)
221 struct nv50_dmac
*dmac
= evoc
;
222 struct nvif_device
*device
= dmac
->base
.device
;
223 u32 put
= nvif_rd32(&dmac
->base
.user
, 0x0000) / 4;
225 mutex_lock(&dmac
->lock
);
226 if (put
+ nr
>= (PAGE_SIZE
/ 4) - 8) {
227 dmac
->ptr
[put
] = 0x20000000;
230 nvif_wr32(&dmac
->base
.user
, 0x0000, 0x00000000);
231 if (nvif_msec(device
, 2000,
232 if (!nvif_rd32(&dmac
->base
.user
, 0x0004))
235 mutex_unlock(&dmac
->lock
);
236 pr_err("nouveau: evo channel stalled\n");
243 return dmac
->ptr
+ put
;
247 evo_kick(u32
*push
, struct nv50_dmac
*evoc
)
249 struct nv50_dmac
*dmac
= evoc
;
253 nvif_wr32(&dmac
->base
.user
, 0x0000, (push
- dmac
->ptr
) << 2);
254 mutex_unlock(&dmac
->lock
);
257 /******************************************************************************
258 * Output path helpers
259 *****************************************************************************/
261 nv50_outp_release(struct nouveau_encoder
*nv_encoder
)
263 struct nv50_disp
*disp
= nv50_disp(nv_encoder
->base
.base
.dev
);
265 struct nv50_disp_mthd_v1 base
;
268 .base
.method
= NV50_DISP_MTHD_V1_RELEASE
,
269 .base
.hasht
= nv_encoder
->dcb
->hasht
,
270 .base
.hashm
= nv_encoder
->dcb
->hashm
,
273 nvif_mthd(&disp
->disp
->object
, 0, &args
, sizeof(args
));
275 nv_encoder
->link
= 0;
279 nv50_outp_acquire(struct nouveau_encoder
*nv_encoder
)
281 struct nouveau_drm
*drm
= nouveau_drm(nv_encoder
->base
.base
.dev
);
282 struct nv50_disp
*disp
= nv50_disp(drm
->dev
);
284 struct nv50_disp_mthd_v1 base
;
285 struct nv50_disp_acquire_v0 info
;
288 .base
.method
= NV50_DISP_MTHD_V1_ACQUIRE
,
289 .base
.hasht
= nv_encoder
->dcb
->hasht
,
290 .base
.hashm
= nv_encoder
->dcb
->hashm
,
294 ret
= nvif_mthd(&disp
->disp
->object
, 0, &args
, sizeof(args
));
296 NV_ERROR(drm
, "error acquiring output path: %d\n", ret
);
300 nv_encoder
->or = args
.info
.or;
301 nv_encoder
->link
= args
.info
.link
;
306 nv50_outp_atomic_check_view(struct drm_encoder
*encoder
,
307 struct drm_crtc_state
*crtc_state
,
308 struct drm_connector_state
*conn_state
,
309 struct drm_display_mode
*native_mode
)
311 struct drm_display_mode
*adjusted_mode
= &crtc_state
->adjusted_mode
;
312 struct drm_display_mode
*mode
= &crtc_state
->mode
;
313 struct drm_connector
*connector
= conn_state
->connector
;
314 struct nouveau_conn_atom
*asyc
= nouveau_conn_atom(conn_state
);
315 struct nouveau_drm
*drm
= nouveau_drm(encoder
->dev
);
317 NV_ATOMIC(drm
, "%s atomic_check\n", encoder
->name
);
318 asyc
->scaler
.full
= false;
322 if (asyc
->scaler
.mode
== DRM_MODE_SCALE_NONE
) {
323 switch (connector
->connector_type
) {
324 case DRM_MODE_CONNECTOR_LVDS
:
325 case DRM_MODE_CONNECTOR_eDP
:
326 /* Don't force scaler for EDID modes with
327 * same size as the native one (e.g. different
330 if (mode
->hdisplay
== native_mode
->hdisplay
&&
331 mode
->vdisplay
== native_mode
->vdisplay
&&
332 mode
->type
& DRM_MODE_TYPE_DRIVER
)
335 asyc
->scaler
.full
= true;
344 if (!drm_mode_equal(adjusted_mode
, mode
)) {
345 drm_mode_copy(adjusted_mode
, mode
);
346 crtc_state
->mode_changed
= true;
353 nv50_outp_atomic_check(struct drm_encoder
*encoder
,
354 struct drm_crtc_state
*crtc_state
,
355 struct drm_connector_state
*conn_state
)
357 struct drm_connector
*connector
= conn_state
->connector
;
358 struct nouveau_connector
*nv_connector
= nouveau_connector(connector
);
359 struct nv50_head_atom
*asyh
= nv50_head_atom(crtc_state
);
362 ret
= nv50_outp_atomic_check_view(encoder
, crtc_state
, conn_state
,
363 nv_connector
->native_mode
);
367 if (crtc_state
->mode_changed
|| crtc_state
->connectors_changed
)
368 asyh
->or.bpc
= connector
->display_info
.bpc
;
373 /******************************************************************************
375 *****************************************************************************/
377 nv50_dac_disable(struct drm_encoder
*encoder
)
379 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
380 struct nv50_core
*core
= nv50_disp(encoder
->dev
)->core
;
381 if (nv_encoder
->crtc
)
382 core
->func
->dac
->ctrl(core
, nv_encoder
->or, 0x00000000, NULL
);
383 nv_encoder
->crtc
= NULL
;
384 nv50_outp_release(nv_encoder
);
388 nv50_dac_enable(struct drm_encoder
*encoder
)
390 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
391 struct nouveau_crtc
*nv_crtc
= nouveau_crtc(encoder
->crtc
);
392 struct nv50_head_atom
*asyh
= nv50_head_atom(nv_crtc
->base
.state
);
393 struct nv50_core
*core
= nv50_disp(encoder
->dev
)->core
;
395 nv50_outp_acquire(nv_encoder
);
397 core
->func
->dac
->ctrl(core
, nv_encoder
->or, 1 << nv_crtc
->index
, asyh
);
400 nv_encoder
->crtc
= encoder
->crtc
;
403 static enum drm_connector_status
404 nv50_dac_detect(struct drm_encoder
*encoder
, struct drm_connector
*connector
)
406 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
407 struct nv50_disp
*disp
= nv50_disp(encoder
->dev
);
409 struct nv50_disp_mthd_v1 base
;
410 struct nv50_disp_dac_load_v0 load
;
413 .base
.method
= NV50_DISP_MTHD_V1_DAC_LOAD
,
414 .base
.hasht
= nv_encoder
->dcb
->hasht
,
415 .base
.hashm
= nv_encoder
->dcb
->hashm
,
419 args
.load
.data
= nouveau_drm(encoder
->dev
)->vbios
.dactestval
;
420 if (args
.load
.data
== 0)
421 args
.load
.data
= 340;
423 ret
= nvif_mthd(&disp
->disp
->object
, 0, &args
, sizeof(args
));
424 if (ret
|| !args
.load
.load
)
425 return connector_status_disconnected
;
427 return connector_status_connected
;
430 static const struct drm_encoder_helper_funcs
432 .atomic_check
= nv50_outp_atomic_check
,
433 .enable
= nv50_dac_enable
,
434 .disable
= nv50_dac_disable
,
435 .detect
= nv50_dac_detect
439 nv50_dac_destroy(struct drm_encoder
*encoder
)
441 drm_encoder_cleanup(encoder
);
445 static const struct drm_encoder_funcs
447 .destroy
= nv50_dac_destroy
,
451 nv50_dac_create(struct drm_connector
*connector
, struct dcb_output
*dcbe
)
453 struct nouveau_drm
*drm
= nouveau_drm(connector
->dev
);
454 struct nvkm_i2c
*i2c
= nvxx_i2c(&drm
->client
.device
);
455 struct nvkm_i2c_bus
*bus
;
456 struct nouveau_encoder
*nv_encoder
;
457 struct drm_encoder
*encoder
;
458 int type
= DRM_MODE_ENCODER_DAC
;
460 nv_encoder
= kzalloc(sizeof(*nv_encoder
), GFP_KERNEL
);
463 nv_encoder
->dcb
= dcbe
;
465 bus
= nvkm_i2c_bus_find(i2c
, dcbe
->i2c_index
);
467 nv_encoder
->i2c
= &bus
->i2c
;
469 encoder
= to_drm_encoder(nv_encoder
);
470 encoder
->possible_crtcs
= dcbe
->heads
;
471 encoder
->possible_clones
= 0;
472 drm_encoder_init(connector
->dev
, encoder
, &nv50_dac_func
, type
,
473 "dac-%04x-%04x", dcbe
->hasht
, dcbe
->hashm
);
474 drm_encoder_helper_add(encoder
, &nv50_dac_help
);
476 drm_connector_attach_encoder(connector
, encoder
);
481 * audio component binding for ELD notification
484 nv50_audio_component_eld_notify(struct drm_audio_component
*acomp
, int port
)
486 if (acomp
&& acomp
->audio_ops
&& acomp
->audio_ops
->pin_eld_notify
)
487 acomp
->audio_ops
->pin_eld_notify(acomp
->audio_ops
->audio_ptr
,
492 nv50_audio_component_get_eld(struct device
*kdev
, int port
, int pipe
,
493 bool *enabled
, unsigned char *buf
, int max_bytes
)
495 struct drm_device
*drm_dev
= dev_get_drvdata(kdev
);
496 struct nouveau_drm
*drm
= nouveau_drm(drm_dev
);
497 struct drm_encoder
*encoder
;
498 struct nouveau_encoder
*nv_encoder
;
499 struct nouveau_connector
*nv_connector
;
500 struct nouveau_crtc
*nv_crtc
;
504 drm_for_each_encoder(encoder
, drm
->dev
) {
505 nv_encoder
= nouveau_encoder(encoder
);
506 nv_connector
= nouveau_encoder_connector_get(nv_encoder
);
507 nv_crtc
= nouveau_crtc(encoder
->crtc
);
508 if (!nv_connector
|| !nv_crtc
|| nv_crtc
->index
!= port
)
510 *enabled
= drm_detect_monitor_audio(nv_connector
->edid
);
512 ret
= drm_eld_size(nv_connector
->base
.eld
);
513 memcpy(buf
, nv_connector
->base
.eld
,
514 min(max_bytes
, ret
));
521 static const struct drm_audio_component_ops nv50_audio_component_ops
= {
522 .get_eld
= nv50_audio_component_get_eld
,
526 nv50_audio_component_bind(struct device
*kdev
, struct device
*hda_kdev
,
529 struct drm_device
*drm_dev
= dev_get_drvdata(kdev
);
530 struct nouveau_drm
*drm
= nouveau_drm(drm_dev
);
531 struct drm_audio_component
*acomp
= data
;
533 if (WARN_ON(!device_link_add(hda_kdev
, kdev
, DL_FLAG_STATELESS
)))
536 drm_modeset_lock_all(drm_dev
);
537 acomp
->ops
= &nv50_audio_component_ops
;
539 drm
->audio
.component
= acomp
;
540 drm_modeset_unlock_all(drm_dev
);
545 nv50_audio_component_unbind(struct device
*kdev
, struct device
*hda_kdev
,
548 struct drm_device
*drm_dev
= dev_get_drvdata(kdev
);
549 struct nouveau_drm
*drm
= nouveau_drm(drm_dev
);
550 struct drm_audio_component
*acomp
= data
;
552 drm_modeset_lock_all(drm_dev
);
553 drm
->audio
.component
= NULL
;
556 drm_modeset_unlock_all(drm_dev
);
559 static const struct component_ops nv50_audio_component_bind_ops
= {
560 .bind
= nv50_audio_component_bind
,
561 .unbind
= nv50_audio_component_unbind
,
565 nv50_audio_component_init(struct nouveau_drm
*drm
)
567 if (!component_add(drm
->dev
->dev
, &nv50_audio_component_bind_ops
))
568 drm
->audio
.component_registered
= true;
572 nv50_audio_component_fini(struct nouveau_drm
*drm
)
574 if (drm
->audio
.component_registered
) {
575 component_del(drm
->dev
->dev
, &nv50_audio_component_bind_ops
);
576 drm
->audio
.component_registered
= false;
580 /******************************************************************************
582 *****************************************************************************/
584 nv50_audio_disable(struct drm_encoder
*encoder
, struct nouveau_crtc
*nv_crtc
)
586 struct nouveau_drm
*drm
= nouveau_drm(encoder
->dev
);
587 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
588 struct nv50_disp
*disp
= nv50_disp(encoder
->dev
);
590 struct nv50_disp_mthd_v1 base
;
591 struct nv50_disp_sor_hda_eld_v0 eld
;
594 .base
.method
= NV50_DISP_MTHD_V1_SOR_HDA_ELD
,
595 .base
.hasht
= nv_encoder
->dcb
->hasht
,
596 .base
.hashm
= (0xf0ff & nv_encoder
->dcb
->hashm
) |
597 (0x0100 << nv_crtc
->index
),
600 nvif_mthd(&disp
->disp
->object
, 0, &args
, sizeof(args
));
602 nv50_audio_component_eld_notify(drm
->audio
.component
, nv_crtc
->index
);
606 nv50_audio_enable(struct drm_encoder
*encoder
, struct drm_display_mode
*mode
)
608 struct nouveau_drm
*drm
= nouveau_drm(encoder
->dev
);
609 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
610 struct nouveau_crtc
*nv_crtc
= nouveau_crtc(encoder
->crtc
);
611 struct nouveau_connector
*nv_connector
;
612 struct nv50_disp
*disp
= nv50_disp(encoder
->dev
);
615 struct nv50_disp_mthd_v1 mthd
;
616 struct nv50_disp_sor_hda_eld_v0 eld
;
618 u8 data
[sizeof(nv_connector
->base
.eld
)];
620 .base
.mthd
.version
= 1,
621 .base
.mthd
.method
= NV50_DISP_MTHD_V1_SOR_HDA_ELD
,
622 .base
.mthd
.hasht
= nv_encoder
->dcb
->hasht
,
623 .base
.mthd
.hashm
= (0xf0ff & nv_encoder
->dcb
->hashm
) |
624 (0x0100 << nv_crtc
->index
),
627 nv_connector
= nouveau_encoder_connector_get(nv_encoder
);
628 if (!drm_detect_monitor_audio(nv_connector
->edid
))
631 memcpy(args
.data
, nv_connector
->base
.eld
, sizeof(args
.data
));
633 nvif_mthd(&disp
->disp
->object
, 0, &args
,
634 sizeof(args
.base
) + drm_eld_size(args
.data
));
636 nv50_audio_component_eld_notify(drm
->audio
.component
, nv_crtc
->index
);
639 /******************************************************************************
641 *****************************************************************************/
643 nv50_hdmi_disable(struct drm_encoder
*encoder
, struct nouveau_crtc
*nv_crtc
)
645 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
646 struct nv50_disp
*disp
= nv50_disp(encoder
->dev
);
648 struct nv50_disp_mthd_v1 base
;
649 struct nv50_disp_sor_hdmi_pwr_v0 pwr
;
652 .base
.method
= NV50_DISP_MTHD_V1_SOR_HDMI_PWR
,
653 .base
.hasht
= nv_encoder
->dcb
->hasht
,
654 .base
.hashm
= (0xf0ff & nv_encoder
->dcb
->hashm
) |
655 (0x0100 << nv_crtc
->index
),
658 nvif_mthd(&disp
->disp
->object
, 0, &args
, sizeof(args
));
662 nv50_hdmi_enable(struct drm_encoder
*encoder
, struct drm_display_mode
*mode
)
664 struct nouveau_drm
*drm
= nouveau_drm(encoder
->dev
);
665 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
666 struct nouveau_crtc
*nv_crtc
= nouveau_crtc(encoder
->crtc
);
667 struct nv50_disp
*disp
= nv50_disp(encoder
->dev
);
669 struct nv50_disp_mthd_v1 base
;
670 struct nv50_disp_sor_hdmi_pwr_v0 pwr
;
671 u8 infoframes
[2 * 17]; /* two frames, up to 17 bytes each */
674 .base
.method
= NV50_DISP_MTHD_V1_SOR_HDMI_PWR
,
675 .base
.hasht
= nv_encoder
->dcb
->hasht
,
676 .base
.hashm
= (0xf0ff & nv_encoder
->dcb
->hashm
) |
677 (0x0100 << nv_crtc
->index
),
679 .pwr
.rekey
= 56, /* binary driver, and tegra, constant */
681 struct nouveau_connector
*nv_connector
;
682 struct drm_hdmi_info
*hdmi
;
684 union hdmi_infoframe avi_frame
;
685 union hdmi_infoframe vendor_frame
;
686 bool high_tmds_clock_ratio
= false, scrambling
= false;
691 nv_connector
= nouveau_encoder_connector_get(nv_encoder
);
692 if (!drm_detect_hdmi_monitor(nv_connector
->edid
))
695 hdmi
= &nv_connector
->base
.display_info
.hdmi
;
697 ret
= drm_hdmi_avi_infoframe_from_display_mode(&avi_frame
.avi
,
698 &nv_connector
->base
, mode
);
700 /* We have an AVI InfoFrame, populate it to the display */
701 args
.pwr
.avi_infoframe_length
702 = hdmi_infoframe_pack(&avi_frame
, args
.infoframes
, 17);
705 ret
= drm_hdmi_vendor_infoframe_from_display_mode(&vendor_frame
.vendor
.hdmi
,
706 &nv_connector
->base
, mode
);
708 /* We have a Vendor InfoFrame, populate it to the display */
709 args
.pwr
.vendor_infoframe_length
710 = hdmi_infoframe_pack(&vendor_frame
,
712 + args
.pwr
.avi_infoframe_length
,
716 max_ac_packet
= mode
->htotal
- mode
->hdisplay
;
717 max_ac_packet
-= args
.pwr
.rekey
;
718 max_ac_packet
-= 18; /* constant from tegra */
719 args
.pwr
.max_ac_packet
= max_ac_packet
/ 32;
721 if (hdmi
->scdc
.scrambling
.supported
) {
722 high_tmds_clock_ratio
= mode
->clock
> 340000;
723 scrambling
= high_tmds_clock_ratio
||
724 hdmi
->scdc
.scrambling
.low_rates
;
728 NV50_DISP_SOR_HDMI_PWR_V0_SCDC_SCRAMBLE
* scrambling
|
729 NV50_DISP_SOR_HDMI_PWR_V0_SCDC_DIV_BY_4
* high_tmds_clock_ratio
;
731 size
= sizeof(args
.base
)
733 + args
.pwr
.avi_infoframe_length
734 + args
.pwr
.vendor_infoframe_length
;
735 nvif_mthd(&disp
->disp
->object
, 0, &args
, size
);
737 nv50_audio_enable(encoder
, mode
);
739 /* If SCDC is supported by the downstream monitor, update
740 * divider / scrambling settings to what we programmed above.
742 if (!hdmi
->scdc
.scrambling
.supported
)
745 ret
= drm_scdc_readb(nv_encoder
->i2c
, SCDC_TMDS_CONFIG
, &config
);
747 NV_ERROR(drm
, "Failure to read SCDC_TMDS_CONFIG: %d\n", ret
);
750 config
&= ~(SCDC_TMDS_BIT_CLOCK_RATIO_BY_40
| SCDC_SCRAMBLING_ENABLE
);
751 config
|= SCDC_TMDS_BIT_CLOCK_RATIO_BY_40
* high_tmds_clock_ratio
;
752 config
|= SCDC_SCRAMBLING_ENABLE
* scrambling
;
753 ret
= drm_scdc_writeb(nv_encoder
->i2c
, SCDC_TMDS_CONFIG
, config
);
755 NV_ERROR(drm
, "Failure to write SCDC_TMDS_CONFIG = 0x%02x: %d\n",
759 /******************************************************************************
761 *****************************************************************************/
762 #define nv50_mstm(p) container_of((p), struct nv50_mstm, mgr)
763 #define nv50_mstc(p) container_of((p), struct nv50_mstc, connector)
764 #define nv50_msto(p) container_of((p), struct nv50_msto, encoder)
767 struct nouveau_encoder
*outp
;
769 struct drm_dp_mst_topology_mgr mgr
;
777 struct nv50_mstm
*mstm
;
778 struct drm_dp_mst_port
*port
;
779 struct drm_connector connector
;
781 struct drm_display_mode
*native
;
786 struct drm_encoder encoder
;
788 struct nv50_head
*head
;
789 struct nv50_mstc
*mstc
;
793 static struct drm_dp_payload
*
794 nv50_msto_payload(struct nv50_msto
*msto
)
796 struct nouveau_drm
*drm
= nouveau_drm(msto
->encoder
.dev
);
797 struct nv50_mstc
*mstc
= msto
->mstc
;
798 struct nv50_mstm
*mstm
= mstc
->mstm
;
799 int vcpi
= mstc
->port
->vcpi
.vcpi
, i
;
801 WARN_ON(!mutex_is_locked(&mstm
->mgr
.payload_lock
));
803 NV_ATOMIC(drm
, "%s: vcpi %d\n", msto
->encoder
.name
, vcpi
);
804 for (i
= 0; i
< mstm
->mgr
.max_payloads
; i
++) {
805 struct drm_dp_payload
*payload
= &mstm
->mgr
.payloads
[i
];
806 NV_ATOMIC(drm
, "%s: %d: vcpi %d start 0x%02x slots 0x%02x\n",
807 mstm
->outp
->base
.base
.name
, i
, payload
->vcpi
,
808 payload
->start_slot
, payload
->num_slots
);
811 for (i
= 0; i
< mstm
->mgr
.max_payloads
; i
++) {
812 struct drm_dp_payload
*payload
= &mstm
->mgr
.payloads
[i
];
813 if (payload
->vcpi
== vcpi
)
821 nv50_msto_cleanup(struct nv50_msto
*msto
)
823 struct nouveau_drm
*drm
= nouveau_drm(msto
->encoder
.dev
);
824 struct nv50_mstc
*mstc
= msto
->mstc
;
825 struct nv50_mstm
*mstm
= mstc
->mstm
;
830 NV_ATOMIC(drm
, "%s: msto cleanup\n", msto
->encoder
.name
);
832 drm_dp_mst_deallocate_vcpi(&mstm
->mgr
, mstc
->port
);
835 msto
->disabled
= false;
839 nv50_msto_prepare(struct nv50_msto
*msto
)
841 struct nouveau_drm
*drm
= nouveau_drm(msto
->encoder
.dev
);
842 struct nv50_mstc
*mstc
= msto
->mstc
;
843 struct nv50_mstm
*mstm
= mstc
->mstm
;
845 struct nv50_disp_mthd_v1 base
;
846 struct nv50_disp_sor_dp_mst_vcpi_v0 vcpi
;
849 .base
.method
= NV50_DISP_MTHD_V1_SOR_DP_MST_VCPI
,
850 .base
.hasht
= mstm
->outp
->dcb
->hasht
,
851 .base
.hashm
= (0xf0ff & mstm
->outp
->dcb
->hashm
) |
852 (0x0100 << msto
->head
->base
.index
),
855 mutex_lock(&mstm
->mgr
.payload_lock
);
857 NV_ATOMIC(drm
, "%s: msto prepare\n", msto
->encoder
.name
);
858 if (mstc
->port
->vcpi
.vcpi
> 0) {
859 struct drm_dp_payload
*payload
= nv50_msto_payload(msto
);
861 args
.vcpi
.start_slot
= payload
->start_slot
;
862 args
.vcpi
.num_slots
= payload
->num_slots
;
863 args
.vcpi
.pbn
= mstc
->port
->vcpi
.pbn
;
864 args
.vcpi
.aligned_pbn
= mstc
->port
->vcpi
.aligned_pbn
;
868 NV_ATOMIC(drm
, "%s: %s: %02x %02x %04x %04x\n",
869 msto
->encoder
.name
, msto
->head
->base
.base
.name
,
870 args
.vcpi
.start_slot
, args
.vcpi
.num_slots
,
871 args
.vcpi
.pbn
, args
.vcpi
.aligned_pbn
);
873 nvif_mthd(&drm
->display
->disp
.object
, 0, &args
, sizeof(args
));
874 mutex_unlock(&mstm
->mgr
.payload_lock
);
878 nv50_msto_atomic_check(struct drm_encoder
*encoder
,
879 struct drm_crtc_state
*crtc_state
,
880 struct drm_connector_state
*conn_state
)
882 struct drm_atomic_state
*state
= crtc_state
->state
;
883 struct drm_connector
*connector
= conn_state
->connector
;
884 struct nv50_mstc
*mstc
= nv50_mstc(connector
);
885 struct nv50_mstm
*mstm
= mstc
->mstm
;
886 struct nv50_head_atom
*asyh
= nv50_head_atom(crtc_state
);
890 ret
= nv50_outp_atomic_check_view(encoder
, crtc_state
, conn_state
,
895 if (!crtc_state
->mode_changed
&& !crtc_state
->connectors_changed
)
899 * When restoring duplicated states, we need to make sure that the bw
900 * remains the same and avoid recalculating it, as the connector's bpc
901 * may have changed after the state was duplicated
903 if (!state
->duplicated
) {
904 const int clock
= crtc_state
->adjusted_mode
.clock
;
907 * XXX: Since we don't use HDR in userspace quite yet, limit
908 * the bpc to 8 to save bandwidth on the topology. In the
909 * future, we'll want to properly fix this by dynamically
910 * selecting the highest possible bpc that would fit in the
913 asyh
->or.bpc
= min(connector
->display_info
.bpc
, 8U);
914 asyh
->dp
.pbn
= drm_dp_calc_pbn_mode(clock
, asyh
->or.bpc
* 3, false);
917 slots
= drm_dp_atomic_find_vcpi_slots(state
, &mstm
->mgr
, mstc
->port
,
928 nv50_dp_bpc_to_depth(unsigned int bpc
)
933 case 10: /* fall-through */
939 nv50_msto_enable(struct drm_encoder
*encoder
)
941 struct nv50_head
*head
= nv50_head(encoder
->crtc
);
942 struct nv50_head_atom
*armh
= nv50_head_atom(head
->base
.base
.state
);
943 struct nv50_msto
*msto
= nv50_msto(encoder
);
944 struct nv50_mstc
*mstc
= NULL
;
945 struct nv50_mstm
*mstm
= NULL
;
946 struct drm_connector
*connector
;
947 struct drm_connector_list_iter conn_iter
;
951 drm_connector_list_iter_begin(encoder
->dev
, &conn_iter
);
952 drm_for_each_connector_iter(connector
, &conn_iter
) {
953 if (connector
->state
->best_encoder
== &msto
->encoder
) {
954 mstc
= nv50_mstc(connector
);
959 drm_connector_list_iter_end(&conn_iter
);
964 r
= drm_dp_mst_allocate_vcpi(&mstm
->mgr
, mstc
->port
, armh
->dp
.pbn
,
967 DRM_DEBUG_KMS("Failed to allocate VCPI\n");
970 nv50_outp_acquire(mstm
->outp
);
972 if (mstm
->outp
->link
& 1)
977 mstm
->outp
->update(mstm
->outp
, head
->base
.index
, armh
, proto
,
978 nv50_dp_bpc_to_depth(armh
->or.bpc
));
981 mstm
->modified
= true;
985 nv50_msto_disable(struct drm_encoder
*encoder
)
987 struct nv50_msto
*msto
= nv50_msto(encoder
);
988 struct nv50_mstc
*mstc
= msto
->mstc
;
989 struct nv50_mstm
*mstm
= mstc
->mstm
;
991 drm_dp_mst_reset_vcpi_slots(&mstm
->mgr
, mstc
->port
);
993 mstm
->outp
->update(mstm
->outp
, msto
->head
->base
.index
, NULL
, 0, 0);
994 mstm
->modified
= true;
996 mstm
->disabled
= true;
997 msto
->disabled
= true;
1000 static const struct drm_encoder_helper_funcs
1002 .disable
= nv50_msto_disable
,
1003 .enable
= nv50_msto_enable
,
1004 .atomic_check
= nv50_msto_atomic_check
,
1008 nv50_msto_destroy(struct drm_encoder
*encoder
)
1010 struct nv50_msto
*msto
= nv50_msto(encoder
);
1011 drm_encoder_cleanup(&msto
->encoder
);
1015 static const struct drm_encoder_funcs
1017 .destroy
= nv50_msto_destroy
,
1020 static struct nv50_msto
*
1021 nv50_msto_new(struct drm_device
*dev
, struct nv50_head
*head
, int id
)
1023 struct nv50_msto
*msto
;
1026 msto
= kzalloc(sizeof(*msto
), GFP_KERNEL
);
1028 return ERR_PTR(-ENOMEM
);
1030 ret
= drm_encoder_init(dev
, &msto
->encoder
, &nv50_msto
,
1031 DRM_MODE_ENCODER_DPMST
, "mst-%d", id
);
1034 return ERR_PTR(ret
);
1037 drm_encoder_helper_add(&msto
->encoder
, &nv50_msto_help
);
1038 msto
->encoder
.possible_crtcs
= drm_crtc_mask(&head
->base
.base
);
1043 static struct drm_encoder
*
1044 nv50_mstc_atomic_best_encoder(struct drm_connector
*connector
,
1045 struct drm_connector_state
*connector_state
)
1047 struct nv50_mstc
*mstc
= nv50_mstc(connector
);
1048 struct drm_crtc
*crtc
= connector_state
->crtc
;
1050 if (!(mstc
->mstm
->outp
->dcb
->heads
& drm_crtc_mask(crtc
)))
1053 return &nv50_head(crtc
)->msto
->encoder
;
1056 static enum drm_mode_status
1057 nv50_mstc_mode_valid(struct drm_connector
*connector
,
1058 struct drm_display_mode
*mode
)
1064 nv50_mstc_get_modes(struct drm_connector
*connector
)
1066 struct nv50_mstc
*mstc
= nv50_mstc(connector
);
1069 mstc
->edid
= drm_dp_mst_get_edid(&mstc
->connector
, mstc
->port
->mgr
, mstc
->port
);
1070 drm_connector_update_edid_property(&mstc
->connector
, mstc
->edid
);
1072 ret
= drm_add_edid_modes(&mstc
->connector
, mstc
->edid
);
1074 if (!mstc
->connector
.display_info
.bpc
)
1075 mstc
->connector
.display_info
.bpc
= 8;
1078 drm_mode_destroy(mstc
->connector
.dev
, mstc
->native
);
1079 mstc
->native
= nouveau_conn_native_mode(&mstc
->connector
);
1084 nv50_mstc_atomic_check(struct drm_connector
*connector
,
1085 struct drm_atomic_state
*state
)
1087 struct nv50_mstc
*mstc
= nv50_mstc(connector
);
1088 struct drm_dp_mst_topology_mgr
*mgr
= &mstc
->mstm
->mgr
;
1089 struct drm_connector_state
*new_conn_state
=
1090 drm_atomic_get_new_connector_state(state
, connector
);
1091 struct drm_connector_state
*old_conn_state
=
1092 drm_atomic_get_old_connector_state(state
, connector
);
1093 struct drm_crtc_state
*crtc_state
;
1094 struct drm_crtc
*new_crtc
= new_conn_state
->crtc
;
1096 if (!old_conn_state
->crtc
)
1099 /* We only want to free VCPI if this state disables the CRTC on this
1103 crtc_state
= drm_atomic_get_new_crtc_state(state
, new_crtc
);
1106 !drm_atomic_crtc_needs_modeset(crtc_state
) ||
1111 return drm_dp_atomic_release_vcpi_slots(state
, mgr
, mstc
->port
);
1115 nv50_mstc_detect(struct drm_connector
*connector
,
1116 struct drm_modeset_acquire_ctx
*ctx
, bool force
)
1118 struct nv50_mstc
*mstc
= nv50_mstc(connector
);
1121 if (drm_connector_is_unregistered(connector
))
1122 return connector_status_disconnected
;
1124 ret
= pm_runtime_get_sync(connector
->dev
->dev
);
1125 if (ret
< 0 && ret
!= -EACCES
)
1126 return connector_status_disconnected
;
1128 ret
= drm_dp_mst_detect_port(connector
, ctx
, mstc
->port
->mgr
,
1131 pm_runtime_mark_last_busy(connector
->dev
->dev
);
1132 pm_runtime_put_autosuspend(connector
->dev
->dev
);
1136 static const struct drm_connector_helper_funcs
1138 .get_modes
= nv50_mstc_get_modes
,
1139 .mode_valid
= nv50_mstc_mode_valid
,
1140 .atomic_best_encoder
= nv50_mstc_atomic_best_encoder
,
1141 .atomic_check
= nv50_mstc_atomic_check
,
1142 .detect_ctx
= nv50_mstc_detect
,
1146 nv50_mstc_destroy(struct drm_connector
*connector
)
1148 struct nv50_mstc
*mstc
= nv50_mstc(connector
);
1150 drm_connector_cleanup(&mstc
->connector
);
1151 drm_dp_mst_put_port_malloc(mstc
->port
);
1156 static const struct drm_connector_funcs
1158 .reset
= nouveau_conn_reset
,
1159 .fill_modes
= drm_helper_probe_single_connector_modes
,
1160 .destroy
= nv50_mstc_destroy
,
1161 .atomic_duplicate_state
= nouveau_conn_atomic_duplicate_state
,
1162 .atomic_destroy_state
= nouveau_conn_atomic_destroy_state
,
1163 .atomic_set_property
= nouveau_conn_atomic_set_property
,
1164 .atomic_get_property
= nouveau_conn_atomic_get_property
,
1168 nv50_mstc_new(struct nv50_mstm
*mstm
, struct drm_dp_mst_port
*port
,
1169 const char *path
, struct nv50_mstc
**pmstc
)
1171 struct drm_device
*dev
= mstm
->outp
->base
.base
.dev
;
1172 struct drm_crtc
*crtc
;
1173 struct nv50_mstc
*mstc
;
1176 if (!(mstc
= *pmstc
= kzalloc(sizeof(*mstc
), GFP_KERNEL
)))
1181 ret
= drm_connector_init(dev
, &mstc
->connector
, &nv50_mstc
,
1182 DRM_MODE_CONNECTOR_DisplayPort
);
1189 drm_connector_helper_add(&mstc
->connector
, &nv50_mstc_help
);
1191 mstc
->connector
.funcs
->reset(&mstc
->connector
);
1192 nouveau_conn_attach_properties(&mstc
->connector
);
1194 drm_for_each_crtc(crtc
, dev
) {
1195 if (!(mstm
->outp
->dcb
->heads
& drm_crtc_mask(crtc
)))
1198 drm_connector_attach_encoder(&mstc
->connector
,
1199 &nv50_head(crtc
)->msto
->encoder
);
1202 drm_object_attach_property(&mstc
->connector
.base
, dev
->mode_config
.path_property
, 0);
1203 drm_object_attach_property(&mstc
->connector
.base
, dev
->mode_config
.tile_property
, 0);
1204 drm_connector_set_path_property(&mstc
->connector
, path
);
1205 drm_dp_mst_get_port_malloc(port
);
1210 nv50_mstm_cleanup(struct nv50_mstm
*mstm
)
1212 struct nouveau_drm
*drm
= nouveau_drm(mstm
->outp
->base
.base
.dev
);
1213 struct drm_encoder
*encoder
;
1216 NV_ATOMIC(drm
, "%s: mstm cleanup\n", mstm
->outp
->base
.base
.name
);
1217 ret
= drm_dp_check_act_status(&mstm
->mgr
);
1219 ret
= drm_dp_update_payload_part2(&mstm
->mgr
);
1221 drm_for_each_encoder(encoder
, mstm
->outp
->base
.base
.dev
) {
1222 if (encoder
->encoder_type
== DRM_MODE_ENCODER_DPMST
) {
1223 struct nv50_msto
*msto
= nv50_msto(encoder
);
1224 struct nv50_mstc
*mstc
= msto
->mstc
;
1225 if (mstc
&& mstc
->mstm
== mstm
)
1226 nv50_msto_cleanup(msto
);
1230 mstm
->modified
= false;
1234 nv50_mstm_prepare(struct nv50_mstm
*mstm
)
1236 struct nouveau_drm
*drm
= nouveau_drm(mstm
->outp
->base
.base
.dev
);
1237 struct drm_encoder
*encoder
;
1240 NV_ATOMIC(drm
, "%s: mstm prepare\n", mstm
->outp
->base
.base
.name
);
1241 ret
= drm_dp_update_payload_part1(&mstm
->mgr
);
1243 drm_for_each_encoder(encoder
, mstm
->outp
->base
.base
.dev
) {
1244 if (encoder
->encoder_type
== DRM_MODE_ENCODER_DPMST
) {
1245 struct nv50_msto
*msto
= nv50_msto(encoder
);
1246 struct nv50_mstc
*mstc
= msto
->mstc
;
1247 if (mstc
&& mstc
->mstm
== mstm
)
1248 nv50_msto_prepare(msto
);
1252 if (mstm
->disabled
) {
1254 nv50_outp_release(mstm
->outp
);
1255 mstm
->disabled
= false;
1260 nv50_mstm_destroy_connector(struct drm_dp_mst_topology_mgr
*mgr
,
1261 struct drm_connector
*connector
)
1263 struct nouveau_drm
*drm
= nouveau_drm(connector
->dev
);
1264 struct nv50_mstc
*mstc
= nv50_mstc(connector
);
1266 drm_connector_unregister(&mstc
->connector
);
1268 drm_fb_helper_remove_one_connector(&drm
->fbcon
->helper
, &mstc
->connector
);
1270 drm_connector_put(&mstc
->connector
);
1274 nv50_mstm_register_connector(struct drm_connector
*connector
)
1276 struct nouveau_drm
*drm
= nouveau_drm(connector
->dev
);
1278 drm_fb_helper_add_one_connector(&drm
->fbcon
->helper
, connector
);
1280 drm_connector_register(connector
);
1283 static struct drm_connector
*
1284 nv50_mstm_add_connector(struct drm_dp_mst_topology_mgr
*mgr
,
1285 struct drm_dp_mst_port
*port
, const char *path
)
1287 struct nv50_mstm
*mstm
= nv50_mstm(mgr
);
1288 struct nv50_mstc
*mstc
;
1291 ret
= nv50_mstc_new(mstm
, port
, path
, &mstc
);
1295 return &mstc
->connector
;
1298 static const struct drm_dp_mst_topology_cbs
1300 .add_connector
= nv50_mstm_add_connector
,
1301 .register_connector
= nv50_mstm_register_connector
,
1302 .destroy_connector
= nv50_mstm_destroy_connector
,
1306 nv50_mstm_service(struct nv50_mstm
*mstm
)
1308 struct drm_dp_aux
*aux
= mstm
? mstm
->mgr
.aux
: NULL
;
1309 bool handled
= true;
1317 ret
= drm_dp_dpcd_read(aux
, DP_SINK_COUNT_ESI
, esi
, 8);
1319 drm_dp_mst_topology_mgr_set_mst(&mstm
->mgr
, false);
1323 drm_dp_mst_hpd_irq(&mstm
->mgr
, esi
, &handled
);
1327 drm_dp_dpcd_write(aux
, DP_SINK_COUNT_ESI
+ 1, &esi
[1], 3);
1332 nv50_mstm_remove(struct nv50_mstm
*mstm
)
1335 drm_dp_mst_topology_mgr_set_mst(&mstm
->mgr
, false);
1339 nv50_mstm_enable(struct nv50_mstm
*mstm
, u8 dpcd
, int state
)
1341 struct nouveau_encoder
*outp
= mstm
->outp
;
1343 struct nv50_disp_mthd_v1 base
;
1344 struct nv50_disp_sor_dp_mst_link_v0 mst
;
1347 .base
.method
= NV50_DISP_MTHD_V1_SOR_DP_MST_LINK
,
1348 .base
.hasht
= outp
->dcb
->hasht
,
1349 .base
.hashm
= outp
->dcb
->hashm
,
1352 struct nouveau_drm
*drm
= nouveau_drm(outp
->base
.base
.dev
);
1353 struct nvif_object
*disp
= &drm
->display
->disp
.object
;
1357 /* Even if we're enabling MST, start with disabling the
1358 * branching unit to clear any sink-side MST topology state
1359 * that wasn't set by us
1361 ret
= drm_dp_dpcd_writeb(mstm
->mgr
.aux
, DP_MSTM_CTRL
, 0);
1366 /* Now, start initializing */
1367 ret
= drm_dp_dpcd_writeb(mstm
->mgr
.aux
, DP_MSTM_CTRL
,
1374 return nvif_mthd(disp
, 0, &args
, sizeof(args
));
1378 nv50_mstm_detect(struct nv50_mstm
*mstm
, u8 dpcd
[8], int allow
)
1380 struct drm_dp_aux
*aux
;
1382 bool old_state
, new_state
;
1388 mutex_lock(&mstm
->mgr
.lock
);
1390 old_state
= mstm
->mgr
.mst_state
;
1391 new_state
= old_state
;
1392 aux
= mstm
->mgr
.aux
;
1395 /* Just check that the MST hub is still as we expect it */
1396 ret
= drm_dp_dpcd_readb(aux
, DP_MSTM_CTRL
, &mstm_ctrl
);
1397 if (ret
< 0 || !(mstm_ctrl
& DP_MST_EN
)) {
1398 DRM_DEBUG_KMS("Hub gone, disabling MST topology\n");
1401 } else if (dpcd
[0] >= 0x12) {
1402 ret
= drm_dp_dpcd_readb(aux
, DP_MSTM_CAP
, &dpcd
[1]);
1406 if (!(dpcd
[1] & DP_MST_CAP
))
1412 if (new_state
== old_state
) {
1413 mutex_unlock(&mstm
->mgr
.lock
);
1417 ret
= nv50_mstm_enable(mstm
, dpcd
[0], new_state
);
1421 mutex_unlock(&mstm
->mgr
.lock
);
1423 ret
= drm_dp_mst_topology_mgr_set_mst(&mstm
->mgr
, new_state
);
1425 return nv50_mstm_enable(mstm
, dpcd
[0], 0);
1430 mutex_unlock(&mstm
->mgr
.lock
);
1435 nv50_mstm_fini(struct nv50_mstm
*mstm
)
1437 if (mstm
&& mstm
->mgr
.mst_state
)
1438 drm_dp_mst_topology_mgr_suspend(&mstm
->mgr
);
1442 nv50_mstm_init(struct nv50_mstm
*mstm
, bool runtime
)
1446 if (!mstm
|| !mstm
->mgr
.mst_state
)
1449 ret
= drm_dp_mst_topology_mgr_resume(&mstm
->mgr
, !runtime
);
1451 drm_dp_mst_topology_mgr_set_mst(&mstm
->mgr
, false);
1452 drm_kms_helper_hotplug_event(mstm
->mgr
.dev
);
1457 nv50_mstm_del(struct nv50_mstm
**pmstm
)
1459 struct nv50_mstm
*mstm
= *pmstm
;
1461 drm_dp_mst_topology_mgr_destroy(&mstm
->mgr
);
1468 nv50_mstm_new(struct nouveau_encoder
*outp
, struct drm_dp_aux
*aux
, int aux_max
,
1469 int conn_base_id
, struct nv50_mstm
**pmstm
)
1471 const int max_payloads
= hweight8(outp
->dcb
->heads
);
1472 struct drm_device
*dev
= outp
->base
.base
.dev
;
1473 struct nv50_mstm
*mstm
;
1477 /* This is a workaround for some monitors not functioning
1478 * correctly in MST mode on initial module load. I think
1479 * some bad interaction with the VBIOS may be responsible.
1481 * A good ol' off and on again seems to work here ;)
1483 ret
= drm_dp_dpcd_readb(aux
, DP_DPCD_REV
, &dpcd
);
1484 if (ret
>= 0 && dpcd
>= 0x12)
1485 drm_dp_dpcd_writeb(aux
, DP_MSTM_CTRL
, 0);
1487 if (!(mstm
= *pmstm
= kzalloc(sizeof(*mstm
), GFP_KERNEL
)))
1490 mstm
->mgr
.cbs
= &nv50_mstm
;
1492 ret
= drm_dp_mst_topology_mgr_init(&mstm
->mgr
, dev
, aux
, aux_max
,
1493 max_payloads
, conn_base_id
);
1500 /******************************************************************************
1502 *****************************************************************************/
1504 nv50_sor_update(struct nouveau_encoder
*nv_encoder
, u8 head
,
1505 struct nv50_head_atom
*asyh
, u8 proto
, u8 depth
)
1507 struct nv50_disp
*disp
= nv50_disp(nv_encoder
->base
.base
.dev
);
1508 struct nv50_core
*core
= disp
->core
;
1511 nv_encoder
->ctrl
&= ~BIT(head
);
1512 if (!(nv_encoder
->ctrl
& 0x0000000f))
1513 nv_encoder
->ctrl
= 0;
1515 nv_encoder
->ctrl
|= proto
<< 8;
1516 nv_encoder
->ctrl
|= BIT(head
);
1517 asyh
->or.depth
= depth
;
1520 core
->func
->sor
->ctrl(core
, nv_encoder
->or, nv_encoder
->ctrl
, asyh
);
1524 nv50_sor_disable(struct drm_encoder
*encoder
)
1526 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
1527 struct nouveau_crtc
*nv_crtc
= nouveau_crtc(nv_encoder
->crtc
);
1529 nv_encoder
->crtc
= NULL
;
1532 struct nvkm_i2c_aux
*aux
= nv_encoder
->aux
;
1536 int ret
= nvkm_rdaux(aux
, DP_SET_POWER
, &pwr
, 1);
1538 pwr
&= ~DP_SET_POWER_MASK
;
1539 pwr
|= DP_SET_POWER_D3
;
1540 nvkm_wraux(aux
, DP_SET_POWER
, &pwr
, 1);
1544 nv_encoder
->update(nv_encoder
, nv_crtc
->index
, NULL
, 0, 0);
1545 nv50_audio_disable(encoder
, nv_crtc
);
1546 nv50_hdmi_disable(&nv_encoder
->base
.base
, nv_crtc
);
1547 nv50_outp_release(nv_encoder
);
1552 nv50_sor_enable(struct drm_encoder
*encoder
)
1554 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
1555 struct nouveau_crtc
*nv_crtc
= nouveau_crtc(encoder
->crtc
);
1556 struct nv50_head_atom
*asyh
= nv50_head_atom(nv_crtc
->base
.state
);
1557 struct drm_display_mode
*mode
= &asyh
->state
.adjusted_mode
;
1559 struct nv50_disp_mthd_v1 base
;
1560 struct nv50_disp_sor_lvds_script_v0 lvds
;
1563 .base
.method
= NV50_DISP_MTHD_V1_SOR_LVDS_SCRIPT
,
1564 .base
.hasht
= nv_encoder
->dcb
->hasht
,
1565 .base
.hashm
= nv_encoder
->dcb
->hashm
,
1567 struct nv50_disp
*disp
= nv50_disp(encoder
->dev
);
1568 struct drm_device
*dev
= encoder
->dev
;
1569 struct nouveau_drm
*drm
= nouveau_drm(dev
);
1570 struct nouveau_connector
*nv_connector
;
1571 struct nvbios
*bios
= &drm
->vbios
;
1575 nv_connector
= nouveau_encoder_connector_get(nv_encoder
);
1576 nv_encoder
->crtc
= encoder
->crtc
;
1577 nv50_outp_acquire(nv_encoder
);
1579 switch (nv_encoder
->dcb
->type
) {
1580 case DCB_OUTPUT_TMDS
:
1581 if (nv_encoder
->link
& 1) {
1583 /* Only enable dual-link if:
1584 * - Need to (i.e. rate > 165MHz)
1586 * - Not an HDMI monitor, since there's no dual-link
1589 if (mode
->clock
>= 165000 &&
1590 nv_encoder
->dcb
->duallink_possible
&&
1591 !drm_detect_hdmi_monitor(nv_connector
->edid
))
1597 nv50_hdmi_enable(&nv_encoder
->base
.base
, mode
);
1599 case DCB_OUTPUT_LVDS
:
1602 if (bios
->fp_no_ddc
) {
1603 if (bios
->fp
.dual_link
)
1604 lvds
.lvds
.script
|= 0x0100;
1605 if (bios
->fp
.if_is_24bit
)
1606 lvds
.lvds
.script
|= 0x0200;
1608 if (nv_connector
->type
== DCB_CONNECTOR_LVDS_SPWG
) {
1609 if (((u8
*)nv_connector
->edid
)[121] == 2)
1610 lvds
.lvds
.script
|= 0x0100;
1612 if (mode
->clock
>= bios
->fp
.duallink_transition_clk
) {
1613 lvds
.lvds
.script
|= 0x0100;
1616 if (lvds
.lvds
.script
& 0x0100) {
1617 if (bios
->fp
.strapless_is_24bit
& 2)
1618 lvds
.lvds
.script
|= 0x0200;
1620 if (bios
->fp
.strapless_is_24bit
& 1)
1621 lvds
.lvds
.script
|= 0x0200;
1624 if (asyh
->or.bpc
== 8)
1625 lvds
.lvds
.script
|= 0x0200;
1628 nvif_mthd(&disp
->disp
->object
, 0, &lvds
, sizeof(lvds
));
1631 depth
= nv50_dp_bpc_to_depth(asyh
->or.bpc
);
1633 if (nv_encoder
->link
& 1)
1638 nv50_audio_enable(encoder
, mode
);
1645 nv_encoder
->update(nv_encoder
, nv_crtc
->index
, asyh
, proto
, depth
);
1648 static const struct drm_encoder_helper_funcs
1650 .atomic_check
= nv50_outp_atomic_check
,
1651 .enable
= nv50_sor_enable
,
1652 .disable
= nv50_sor_disable
,
1656 nv50_sor_destroy(struct drm_encoder
*encoder
)
1658 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
1659 nv50_mstm_del(&nv_encoder
->dp
.mstm
);
1660 drm_encoder_cleanup(encoder
);
1664 static const struct drm_encoder_funcs
1666 .destroy
= nv50_sor_destroy
,
1669 static bool nv50_has_mst(struct nouveau_drm
*drm
)
1671 struct nvkm_bios
*bios
= nvxx_bios(&drm
->client
.device
);
1673 u8 ver
, hdr
, cnt
, len
;
1675 data
= nvbios_dp_table(bios
, &ver
, &hdr
, &cnt
, &len
);
1676 return data
&& ver
>= 0x40 && (nvbios_rd08(bios
, data
+ 0x08) & 0x04);
1680 nv50_sor_create(struct drm_connector
*connector
, struct dcb_output
*dcbe
)
1682 struct nouveau_connector
*nv_connector
= nouveau_connector(connector
);
1683 struct nouveau_drm
*drm
= nouveau_drm(connector
->dev
);
1684 struct nvkm_i2c
*i2c
= nvxx_i2c(&drm
->client
.device
);
1685 struct nouveau_encoder
*nv_encoder
;
1686 struct drm_encoder
*encoder
;
1689 switch (dcbe
->type
) {
1690 case DCB_OUTPUT_LVDS
: type
= DRM_MODE_ENCODER_LVDS
; break;
1691 case DCB_OUTPUT_TMDS
:
1694 type
= DRM_MODE_ENCODER_TMDS
;
1698 nv_encoder
= kzalloc(sizeof(*nv_encoder
), GFP_KERNEL
);
1701 nv_encoder
->dcb
= dcbe
;
1702 nv_encoder
->update
= nv50_sor_update
;
1704 encoder
= to_drm_encoder(nv_encoder
);
1705 encoder
->possible_crtcs
= dcbe
->heads
;
1706 encoder
->possible_clones
= 0;
1707 drm_encoder_init(connector
->dev
, encoder
, &nv50_sor_func
, type
,
1708 "sor-%04x-%04x", dcbe
->hasht
, dcbe
->hashm
);
1709 drm_encoder_helper_add(encoder
, &nv50_sor_help
);
1711 drm_connector_attach_encoder(connector
, encoder
);
1713 if (dcbe
->type
== DCB_OUTPUT_DP
) {
1714 struct nv50_disp
*disp
= nv50_disp(encoder
->dev
);
1715 struct nvkm_i2c_aux
*aux
=
1716 nvkm_i2c_aux_find(i2c
, dcbe
->i2c_index
);
1718 if (disp
->disp
->object
.oclass
< GF110_DISP
) {
1719 /* HW has no support for address-only
1720 * transactions, so we're required to
1721 * use custom I2C-over-AUX code.
1723 nv_encoder
->i2c
= &aux
->i2c
;
1725 nv_encoder
->i2c
= &nv_connector
->aux
.ddc
;
1727 nv_encoder
->aux
= aux
;
1730 if (nv_connector
->type
!= DCB_CONNECTOR_eDP
&&
1731 nv50_has_mst(drm
)) {
1732 ret
= nv50_mstm_new(nv_encoder
, &nv_connector
->aux
,
1733 16, nv_connector
->base
.base
.id
,
1734 &nv_encoder
->dp
.mstm
);
1739 struct nvkm_i2c_bus
*bus
=
1740 nvkm_i2c_bus_find(i2c
, dcbe
->i2c_index
);
1742 nv_encoder
->i2c
= &bus
->i2c
;
1748 /******************************************************************************
1750 *****************************************************************************/
1752 nv50_pior_atomic_check(struct drm_encoder
*encoder
,
1753 struct drm_crtc_state
*crtc_state
,
1754 struct drm_connector_state
*conn_state
)
1756 int ret
= nv50_outp_atomic_check(encoder
, crtc_state
, conn_state
);
1759 crtc_state
->adjusted_mode
.clock
*= 2;
1764 nv50_pior_disable(struct drm_encoder
*encoder
)
1766 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
1767 struct nv50_core
*core
= nv50_disp(encoder
->dev
)->core
;
1768 if (nv_encoder
->crtc
)
1769 core
->func
->pior
->ctrl(core
, nv_encoder
->or, 0x00000000, NULL
);
1770 nv_encoder
->crtc
= NULL
;
1771 nv50_outp_release(nv_encoder
);
1775 nv50_pior_enable(struct drm_encoder
*encoder
)
1777 struct nouveau_encoder
*nv_encoder
= nouveau_encoder(encoder
);
1778 struct nouveau_crtc
*nv_crtc
= nouveau_crtc(encoder
->crtc
);
1779 struct nv50_head_atom
*asyh
= nv50_head_atom(nv_crtc
->base
.state
);
1780 struct nv50_core
*core
= nv50_disp(encoder
->dev
)->core
;
1781 u8 owner
= 1 << nv_crtc
->index
;
1784 nv50_outp_acquire(nv_encoder
);
1786 switch (asyh
->or.bpc
) {
1787 case 10: asyh
->or.depth
= 0x6; break;
1788 case 8: asyh
->or.depth
= 0x5; break;
1789 case 6: asyh
->or.depth
= 0x2; break;
1790 default: asyh
->or.depth
= 0x0; break;
1793 switch (nv_encoder
->dcb
->type
) {
1794 case DCB_OUTPUT_TMDS
:
1803 core
->func
->pior
->ctrl(core
, nv_encoder
->or, (proto
<< 8) | owner
, asyh
);
1804 nv_encoder
->crtc
= encoder
->crtc
;
1807 static const struct drm_encoder_helper_funcs
1809 .atomic_check
= nv50_pior_atomic_check
,
1810 .enable
= nv50_pior_enable
,
1811 .disable
= nv50_pior_disable
,
1815 nv50_pior_destroy(struct drm_encoder
*encoder
)
1817 drm_encoder_cleanup(encoder
);
1821 static const struct drm_encoder_funcs
1823 .destroy
= nv50_pior_destroy
,
1827 nv50_pior_create(struct drm_connector
*connector
, struct dcb_output
*dcbe
)
1829 struct nouveau_drm
*drm
= nouveau_drm(connector
->dev
);
1830 struct nvkm_i2c
*i2c
= nvxx_i2c(&drm
->client
.device
);
1831 struct nvkm_i2c_bus
*bus
= NULL
;
1832 struct nvkm_i2c_aux
*aux
= NULL
;
1833 struct i2c_adapter
*ddc
;
1834 struct nouveau_encoder
*nv_encoder
;
1835 struct drm_encoder
*encoder
;
1838 switch (dcbe
->type
) {
1839 case DCB_OUTPUT_TMDS
:
1840 bus
= nvkm_i2c_bus_find(i2c
, NVKM_I2C_BUS_EXT(dcbe
->extdev
));
1841 ddc
= bus
? &bus
->i2c
: NULL
;
1842 type
= DRM_MODE_ENCODER_TMDS
;
1845 aux
= nvkm_i2c_aux_find(i2c
, NVKM_I2C_AUX_EXT(dcbe
->extdev
));
1846 ddc
= aux
? &aux
->i2c
: NULL
;
1847 type
= DRM_MODE_ENCODER_TMDS
;
1853 nv_encoder
= kzalloc(sizeof(*nv_encoder
), GFP_KERNEL
);
1856 nv_encoder
->dcb
= dcbe
;
1857 nv_encoder
->i2c
= ddc
;
1858 nv_encoder
->aux
= aux
;
1860 encoder
= to_drm_encoder(nv_encoder
);
1861 encoder
->possible_crtcs
= dcbe
->heads
;
1862 encoder
->possible_clones
= 0;
1863 drm_encoder_init(connector
->dev
, encoder
, &nv50_pior_func
, type
,
1864 "pior-%04x-%04x", dcbe
->hasht
, dcbe
->hashm
);
1865 drm_encoder_helper_add(encoder
, &nv50_pior_help
);
1867 drm_connector_attach_encoder(connector
, encoder
);
1871 /******************************************************************************
1873 *****************************************************************************/
1876 nv50_disp_atomic_commit_core(struct drm_atomic_state
*state
, u32
*interlock
)
1878 struct nouveau_drm
*drm
= nouveau_drm(state
->dev
);
1879 struct nv50_disp
*disp
= nv50_disp(drm
->dev
);
1880 struct nv50_core
*core
= disp
->core
;
1881 struct nv50_mstm
*mstm
;
1882 struct drm_encoder
*encoder
;
1884 NV_ATOMIC(drm
, "commit core %08x\n", interlock
[NV50_DISP_INTERLOCK_BASE
]);
1886 drm_for_each_encoder(encoder
, drm
->dev
) {
1887 if (encoder
->encoder_type
!= DRM_MODE_ENCODER_DPMST
) {
1888 mstm
= nouveau_encoder(encoder
)->dp
.mstm
;
1889 if (mstm
&& mstm
->modified
)
1890 nv50_mstm_prepare(mstm
);
1894 core
->func
->ntfy_init(disp
->sync
, NV50_DISP_CORE_NTFY
);
1895 core
->func
->update(core
, interlock
, true);
1896 if (core
->func
->ntfy_wait_done(disp
->sync
, NV50_DISP_CORE_NTFY
,
1897 disp
->core
->chan
.base
.device
))
1898 NV_ERROR(drm
, "core notifier timeout\n");
1900 drm_for_each_encoder(encoder
, drm
->dev
) {
1901 if (encoder
->encoder_type
!= DRM_MODE_ENCODER_DPMST
) {
1902 mstm
= nouveau_encoder(encoder
)->dp
.mstm
;
1903 if (mstm
&& mstm
->modified
)
1904 nv50_mstm_cleanup(mstm
);
1910 nv50_disp_atomic_commit_wndw(struct drm_atomic_state
*state
, u32
*interlock
)
1912 struct drm_plane_state
*new_plane_state
;
1913 struct drm_plane
*plane
;
1916 for_each_new_plane_in_state(state
, plane
, new_plane_state
, i
) {
1917 struct nv50_wndw
*wndw
= nv50_wndw(plane
);
1918 if (interlock
[wndw
->interlock
.type
] & wndw
->interlock
.data
) {
1919 if (wndw
->func
->update
)
1920 wndw
->func
->update(wndw
, interlock
);
1926 nv50_disp_atomic_commit_tail(struct drm_atomic_state
*state
)
1928 struct drm_device
*dev
= state
->dev
;
1929 struct drm_crtc_state
*new_crtc_state
, *old_crtc_state
;
1930 struct drm_crtc
*crtc
;
1931 struct drm_plane_state
*new_plane_state
;
1932 struct drm_plane
*plane
;
1933 struct nouveau_drm
*drm
= nouveau_drm(dev
);
1934 struct nv50_disp
*disp
= nv50_disp(dev
);
1935 struct nv50_atom
*atom
= nv50_atom(state
);
1936 struct nv50_outp_atom
*outp
, *outt
;
1937 u32 interlock
[NV50_DISP_INTERLOCK__SIZE
] = {};
1940 NV_ATOMIC(drm
, "commit %d %d\n", atom
->lock_core
, atom
->flush_disable
);
1941 drm_atomic_helper_wait_for_fences(dev
, state
, false);
1942 drm_atomic_helper_wait_for_dependencies(state
);
1943 drm_atomic_helper_update_legacy_modeset_state(dev
, state
);
1945 if (atom
->lock_core
)
1946 mutex_lock(&disp
->mutex
);
1948 /* Disable head(s). */
1949 for_each_oldnew_crtc_in_state(state
, crtc
, old_crtc_state
, new_crtc_state
, i
) {
1950 struct nv50_head_atom
*asyh
= nv50_head_atom(new_crtc_state
);
1951 struct nv50_head
*head
= nv50_head(crtc
);
1953 NV_ATOMIC(drm
, "%s: clr %04x (set %04x)\n", crtc
->name
,
1954 asyh
->clr
.mask
, asyh
->set
.mask
);
1956 if (old_crtc_state
->active
&& !new_crtc_state
->active
) {
1957 pm_runtime_put_noidle(dev
->dev
);
1958 drm_crtc_vblank_off(crtc
);
1961 if (asyh
->clr
.mask
) {
1962 nv50_head_flush_clr(head
, asyh
, atom
->flush_disable
);
1963 interlock
[NV50_DISP_INTERLOCK_CORE
] |= 1;
1967 /* Disable plane(s). */
1968 for_each_new_plane_in_state(state
, plane
, new_plane_state
, i
) {
1969 struct nv50_wndw_atom
*asyw
= nv50_wndw_atom(new_plane_state
);
1970 struct nv50_wndw
*wndw
= nv50_wndw(plane
);
1972 NV_ATOMIC(drm
, "%s: clr %02x (set %02x)\n", plane
->name
,
1973 asyw
->clr
.mask
, asyw
->set
.mask
);
1974 if (!asyw
->clr
.mask
)
1977 nv50_wndw_flush_clr(wndw
, interlock
, atom
->flush_disable
, asyw
);
1980 /* Disable output path(s). */
1981 list_for_each_entry(outp
, &atom
->outp
, head
) {
1982 const struct drm_encoder_helper_funcs
*help
;
1983 struct drm_encoder
*encoder
;
1985 encoder
= outp
->encoder
;
1986 help
= encoder
->helper_private
;
1988 NV_ATOMIC(drm
, "%s: clr %02x (set %02x)\n", encoder
->name
,
1989 outp
->clr
.mask
, outp
->set
.mask
);
1991 if (outp
->clr
.mask
) {
1992 help
->disable(encoder
);
1993 interlock
[NV50_DISP_INTERLOCK_CORE
] |= 1;
1994 if (outp
->flush_disable
) {
1995 nv50_disp_atomic_commit_wndw(state
, interlock
);
1996 nv50_disp_atomic_commit_core(state
, interlock
);
1997 memset(interlock
, 0x00, sizeof(interlock
));
2002 /* Flush disable. */
2003 if (interlock
[NV50_DISP_INTERLOCK_CORE
]) {
2004 if (atom
->flush_disable
) {
2005 nv50_disp_atomic_commit_wndw(state
, interlock
);
2006 nv50_disp_atomic_commit_core(state
, interlock
);
2007 memset(interlock
, 0x00, sizeof(interlock
));
2011 /* Update output path(s). */
2012 list_for_each_entry_safe(outp
, outt
, &atom
->outp
, head
) {
2013 const struct drm_encoder_helper_funcs
*help
;
2014 struct drm_encoder
*encoder
;
2016 encoder
= outp
->encoder
;
2017 help
= encoder
->helper_private
;
2019 NV_ATOMIC(drm
, "%s: set %02x (clr %02x)\n", encoder
->name
,
2020 outp
->set
.mask
, outp
->clr
.mask
);
2022 if (outp
->set
.mask
) {
2023 help
->enable(encoder
);
2024 interlock
[NV50_DISP_INTERLOCK_CORE
] = 1;
2027 list_del(&outp
->head
);
2031 /* Update head(s). */
2032 for_each_oldnew_crtc_in_state(state
, crtc
, old_crtc_state
, new_crtc_state
, i
) {
2033 struct nv50_head_atom
*asyh
= nv50_head_atom(new_crtc_state
);
2034 struct nv50_head
*head
= nv50_head(crtc
);
2036 NV_ATOMIC(drm
, "%s: set %04x (clr %04x)\n", crtc
->name
,
2037 asyh
->set
.mask
, asyh
->clr
.mask
);
2039 if (asyh
->set
.mask
) {
2040 nv50_head_flush_set(head
, asyh
);
2041 interlock
[NV50_DISP_INTERLOCK_CORE
] = 1;
2044 if (new_crtc_state
->active
) {
2045 if (!old_crtc_state
->active
) {
2046 drm_crtc_vblank_on(crtc
);
2047 pm_runtime_get_noresume(dev
->dev
);
2049 if (new_crtc_state
->event
)
2050 drm_crtc_vblank_get(crtc
);
2054 /* Update plane(s). */
2055 for_each_new_plane_in_state(state
, plane
, new_plane_state
, i
) {
2056 struct nv50_wndw_atom
*asyw
= nv50_wndw_atom(new_plane_state
);
2057 struct nv50_wndw
*wndw
= nv50_wndw(plane
);
2059 NV_ATOMIC(drm
, "%s: set %02x (clr %02x)\n", plane
->name
,
2060 asyw
->set
.mask
, asyw
->clr
.mask
);
2061 if ( !asyw
->set
.mask
&&
2062 (!asyw
->clr
.mask
|| atom
->flush_disable
))
2065 nv50_wndw_flush_set(wndw
, interlock
, asyw
);
2069 nv50_disp_atomic_commit_wndw(state
, interlock
);
2071 if (interlock
[NV50_DISP_INTERLOCK_CORE
]) {
2072 if (interlock
[NV50_DISP_INTERLOCK_BASE
] ||
2073 interlock
[NV50_DISP_INTERLOCK_OVLY
] ||
2074 interlock
[NV50_DISP_INTERLOCK_WNDW
] ||
2075 !atom
->state
.legacy_cursor_update
)
2076 nv50_disp_atomic_commit_core(state
, interlock
);
2078 disp
->core
->func
->update(disp
->core
, interlock
, false);
2081 if (atom
->lock_core
)
2082 mutex_unlock(&disp
->mutex
);
2084 /* Wait for HW to signal completion. */
2085 for_each_new_plane_in_state(state
, plane
, new_plane_state
, i
) {
2086 struct nv50_wndw_atom
*asyw
= nv50_wndw_atom(new_plane_state
);
2087 struct nv50_wndw
*wndw
= nv50_wndw(plane
);
2088 int ret
= nv50_wndw_wait_armed(wndw
, asyw
);
2090 NV_ERROR(drm
, "%s: timeout\n", plane
->name
);
2093 for_each_new_crtc_in_state(state
, crtc
, new_crtc_state
, i
) {
2094 if (new_crtc_state
->event
) {
2095 unsigned long flags
;
2096 /* Get correct count/ts if racing with vblank irq */
2097 if (new_crtc_state
->active
)
2098 drm_crtc_accurate_vblank_count(crtc
);
2099 spin_lock_irqsave(&crtc
->dev
->event_lock
, flags
);
2100 drm_crtc_send_vblank_event(crtc
, new_crtc_state
->event
);
2101 spin_unlock_irqrestore(&crtc
->dev
->event_lock
, flags
);
2103 new_crtc_state
->event
= NULL
;
2104 if (new_crtc_state
->active
)
2105 drm_crtc_vblank_put(crtc
);
2109 drm_atomic_helper_commit_hw_done(state
);
2110 drm_atomic_helper_cleanup_planes(dev
, state
);
2111 drm_atomic_helper_commit_cleanup_done(state
);
2112 drm_atomic_state_put(state
);
2114 /* Drop the RPM ref we got from nv50_disp_atomic_commit() */
2115 pm_runtime_mark_last_busy(dev
->dev
);
2116 pm_runtime_put_autosuspend(dev
->dev
);
2120 nv50_disp_atomic_commit_work(struct work_struct
*work
)
2122 struct drm_atomic_state
*state
=
2123 container_of(work
, typeof(*state
), commit_work
);
2124 nv50_disp_atomic_commit_tail(state
);
2128 nv50_disp_atomic_commit(struct drm_device
*dev
,
2129 struct drm_atomic_state
*state
, bool nonblock
)
2131 struct drm_plane_state
*new_plane_state
;
2132 struct drm_plane
*plane
;
2135 ret
= pm_runtime_get_sync(dev
->dev
);
2136 if (ret
< 0 && ret
!= -EACCES
)
2139 ret
= drm_atomic_helper_setup_commit(state
, nonblock
);
2143 INIT_WORK(&state
->commit_work
, nv50_disp_atomic_commit_work
);
2145 ret
= drm_atomic_helper_prepare_planes(dev
, state
);
2150 ret
= drm_atomic_helper_wait_for_fences(dev
, state
, true);
2155 ret
= drm_atomic_helper_swap_state(state
, true);
2159 for_each_new_plane_in_state(state
, plane
, new_plane_state
, i
) {
2160 struct nv50_wndw_atom
*asyw
= nv50_wndw_atom(new_plane_state
);
2161 struct nv50_wndw
*wndw
= nv50_wndw(plane
);
2163 if (asyw
->set
.image
)
2164 nv50_wndw_ntfy_enable(wndw
, asyw
);
2167 drm_atomic_state_get(state
);
2170 * Grab another RPM ref for the commit tail, which will release the
2171 * ref when it's finished
2173 pm_runtime_get_noresume(dev
->dev
);
2176 queue_work(system_unbound_wq
, &state
->commit_work
);
2178 nv50_disp_atomic_commit_tail(state
);
2182 drm_atomic_helper_cleanup_planes(dev
, state
);
2184 pm_runtime_put_autosuspend(dev
->dev
);
2188 static struct nv50_outp_atom
*
2189 nv50_disp_outp_atomic_add(struct nv50_atom
*atom
, struct drm_encoder
*encoder
)
2191 struct nv50_outp_atom
*outp
;
2193 list_for_each_entry(outp
, &atom
->outp
, head
) {
2194 if (outp
->encoder
== encoder
)
2198 outp
= kzalloc(sizeof(*outp
), GFP_KERNEL
);
2200 return ERR_PTR(-ENOMEM
);
2202 list_add(&outp
->head
, &atom
->outp
);
2203 outp
->encoder
= encoder
;
2208 nv50_disp_outp_atomic_check_clr(struct nv50_atom
*atom
,
2209 struct drm_connector_state
*old_connector_state
)
2211 struct drm_encoder
*encoder
= old_connector_state
->best_encoder
;
2212 struct drm_crtc_state
*old_crtc_state
, *new_crtc_state
;
2213 struct drm_crtc
*crtc
;
2214 struct nv50_outp_atom
*outp
;
2216 if (!(crtc
= old_connector_state
->crtc
))
2219 old_crtc_state
= drm_atomic_get_old_crtc_state(&atom
->state
, crtc
);
2220 new_crtc_state
= drm_atomic_get_new_crtc_state(&atom
->state
, crtc
);
2221 if (old_crtc_state
->active
&& drm_atomic_crtc_needs_modeset(new_crtc_state
)) {
2222 outp
= nv50_disp_outp_atomic_add(atom
, encoder
);
2224 return PTR_ERR(outp
);
2226 if (outp
->encoder
->encoder_type
== DRM_MODE_ENCODER_DPMST
) {
2227 outp
->flush_disable
= true;
2228 atom
->flush_disable
= true;
2230 outp
->clr
.ctrl
= true;
2231 atom
->lock_core
= true;
2238 nv50_disp_outp_atomic_check_set(struct nv50_atom
*atom
,
2239 struct drm_connector_state
*connector_state
)
2241 struct drm_encoder
*encoder
= connector_state
->best_encoder
;
2242 struct drm_crtc_state
*new_crtc_state
;
2243 struct drm_crtc
*crtc
;
2244 struct nv50_outp_atom
*outp
;
2246 if (!(crtc
= connector_state
->crtc
))
2249 new_crtc_state
= drm_atomic_get_new_crtc_state(&atom
->state
, crtc
);
2250 if (new_crtc_state
->active
&& drm_atomic_crtc_needs_modeset(new_crtc_state
)) {
2251 outp
= nv50_disp_outp_atomic_add(atom
, encoder
);
2253 return PTR_ERR(outp
);
2255 outp
->set
.ctrl
= true;
2256 atom
->lock_core
= true;
2263 nv50_disp_atomic_check(struct drm_device
*dev
, struct drm_atomic_state
*state
)
2265 struct nv50_atom
*atom
= nv50_atom(state
);
2266 struct drm_connector_state
*old_connector_state
, *new_connector_state
;
2267 struct drm_connector
*connector
;
2268 struct drm_crtc_state
*new_crtc_state
;
2269 struct drm_crtc
*crtc
;
2272 /* We need to handle colour management on a per-plane basis. */
2273 for_each_new_crtc_in_state(state
, crtc
, new_crtc_state
, i
) {
2274 if (new_crtc_state
->color_mgmt_changed
) {
2275 ret
= drm_atomic_add_affected_planes(state
, crtc
);
2281 ret
= drm_atomic_helper_check(dev
, state
);
2285 for_each_oldnew_connector_in_state(state
, connector
, old_connector_state
, new_connector_state
, i
) {
2286 ret
= nv50_disp_outp_atomic_check_clr(atom
, old_connector_state
);
2290 ret
= nv50_disp_outp_atomic_check_set(atom
, new_connector_state
);
2295 ret
= drm_dp_mst_atomic_check(state
);
2303 nv50_disp_atomic_state_clear(struct drm_atomic_state
*state
)
2305 struct nv50_atom
*atom
= nv50_atom(state
);
2306 struct nv50_outp_atom
*outp
, *outt
;
2308 list_for_each_entry_safe(outp
, outt
, &atom
->outp
, head
) {
2309 list_del(&outp
->head
);
2313 drm_atomic_state_default_clear(state
);
2317 nv50_disp_atomic_state_free(struct drm_atomic_state
*state
)
2319 struct nv50_atom
*atom
= nv50_atom(state
);
2320 drm_atomic_state_default_release(&atom
->state
);
2324 static struct drm_atomic_state
*
2325 nv50_disp_atomic_state_alloc(struct drm_device
*dev
)
2327 struct nv50_atom
*atom
;
2328 if (!(atom
= kzalloc(sizeof(*atom
), GFP_KERNEL
)) ||
2329 drm_atomic_state_init(dev
, &atom
->state
) < 0) {
2333 INIT_LIST_HEAD(&atom
->outp
);
2334 return &atom
->state
;
2337 static const struct drm_mode_config_funcs
2339 .fb_create
= nouveau_user_framebuffer_create
,
2340 .output_poll_changed
= nouveau_fbcon_output_poll_changed
,
2341 .atomic_check
= nv50_disp_atomic_check
,
2342 .atomic_commit
= nv50_disp_atomic_commit
,
2343 .atomic_state_alloc
= nv50_disp_atomic_state_alloc
,
2344 .atomic_state_clear
= nv50_disp_atomic_state_clear
,
2345 .atomic_state_free
= nv50_disp_atomic_state_free
,
2348 /******************************************************************************
2350 *****************************************************************************/
2353 nv50_display_fini(struct drm_device
*dev
, bool suspend
)
2355 struct nouveau_encoder
*nv_encoder
;
2356 struct drm_encoder
*encoder
;
2357 struct drm_plane
*plane
;
2359 drm_for_each_plane(plane
, dev
) {
2360 struct nv50_wndw
*wndw
= nv50_wndw(plane
);
2361 if (plane
->funcs
!= &nv50_wndw
)
2363 nv50_wndw_fini(wndw
);
2366 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
2367 if (encoder
->encoder_type
!= DRM_MODE_ENCODER_DPMST
) {
2368 nv_encoder
= nouveau_encoder(encoder
);
2369 nv50_mstm_fini(nv_encoder
->dp
.mstm
);
2375 nv50_display_init(struct drm_device
*dev
, bool resume
, bool runtime
)
2377 struct nv50_core
*core
= nv50_disp(dev
)->core
;
2378 struct drm_encoder
*encoder
;
2379 struct drm_plane
*plane
;
2381 core
->func
->init(core
);
2383 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
2384 if (encoder
->encoder_type
!= DRM_MODE_ENCODER_DPMST
) {
2385 struct nouveau_encoder
*nv_encoder
=
2386 nouveau_encoder(encoder
);
2387 nv50_mstm_init(nv_encoder
->dp
.mstm
, runtime
);
2391 drm_for_each_plane(plane
, dev
) {
2392 struct nv50_wndw
*wndw
= nv50_wndw(plane
);
2393 if (plane
->funcs
!= &nv50_wndw
)
2395 nv50_wndw_init(wndw
);
2402 nv50_display_destroy(struct drm_device
*dev
)
2404 struct nv50_disp
*disp
= nv50_disp(dev
);
2406 nv50_audio_component_fini(nouveau_drm(dev
));
2408 nv50_core_del(&disp
->core
);
2410 nouveau_bo_unmap(disp
->sync
);
2412 nouveau_bo_unpin(disp
->sync
);
2413 nouveau_bo_ref(NULL
, &disp
->sync
);
2415 nouveau_display(dev
)->priv
= NULL
;
2420 nv50_display_create(struct drm_device
*dev
)
2422 struct nvif_device
*device
= &nouveau_drm(dev
)->client
.device
;
2423 struct nouveau_drm
*drm
= nouveau_drm(dev
);
2424 struct dcb_table
*dcb
= &drm
->vbios
.dcb
;
2425 struct drm_connector
*connector
, *tmp
;
2426 struct nv50_disp
*disp
;
2427 struct dcb_output
*dcbe
;
2429 bool has_mst
= nv50_has_mst(drm
);
2431 disp
= kzalloc(sizeof(*disp
), GFP_KERNEL
);
2435 mutex_init(&disp
->mutex
);
2437 nouveau_display(dev
)->priv
= disp
;
2438 nouveau_display(dev
)->dtor
= nv50_display_destroy
;
2439 nouveau_display(dev
)->init
= nv50_display_init
;
2440 nouveau_display(dev
)->fini
= nv50_display_fini
;
2441 disp
->disp
= &nouveau_display(dev
)->disp
;
2442 dev
->mode_config
.funcs
= &nv50_disp_func
;
2443 dev
->mode_config
.quirk_addfb_prefer_xbgr_30bpp
= true;
2444 dev
->mode_config
.normalize_zpos
= true;
2446 /* small shared memory area we use for notifiers and semaphores */
2447 ret
= nouveau_bo_new(&drm
->client
, 4096, 0x1000, TTM_PL_FLAG_VRAM
,
2448 0, 0x0000, NULL
, NULL
, &disp
->sync
);
2450 ret
= nouveau_bo_pin(disp
->sync
, TTM_PL_FLAG_VRAM
, true);
2452 ret
= nouveau_bo_map(disp
->sync
);
2454 nouveau_bo_unpin(disp
->sync
);
2457 nouveau_bo_ref(NULL
, &disp
->sync
);
2463 /* allocate master evo channel */
2464 ret
= nv50_core_new(drm
, &disp
->core
);
2468 /* create crtc objects to represent the hw heads */
2469 if (disp
->disp
->object
.oclass
>= GV100_DISP
)
2470 crtcs
= nvif_rd32(&device
->object
, 0x610060) & 0xff;
2472 if (disp
->disp
->object
.oclass
>= GF110_DISP
)
2473 crtcs
= nvif_rd32(&device
->object
, 0x612004) & 0xf;
2477 for (i
= 0; i
< fls(crtcs
); i
++) {
2478 struct nv50_head
*head
;
2480 if (!(crtcs
& (1 << i
)))
2483 head
= nv50_head_create(dev
, i
);
2485 ret
= PTR_ERR(head
);
2490 head
->msto
= nv50_msto_new(dev
, head
, i
);
2491 if (IS_ERR(head
->msto
)) {
2492 ret
= PTR_ERR(head
->msto
);
2498 * FIXME: This is a hack to workaround the following
2501 * https://gitlab.gnome.org/GNOME/mutter/issues/759
2502 * https://gitlab.freedesktop.org/xorg/xserver/merge_requests/277
2504 * Once these issues are closed, this should be
2507 head
->msto
->encoder
.possible_crtcs
= crtcs
;
2511 /* create encoder/connector objects based on VBIOS DCB table */
2512 for (i
= 0, dcbe
= &dcb
->entry
[0]; i
< dcb
->entries
; i
++, dcbe
++) {
2513 connector
= nouveau_connector_create(dev
, dcbe
);
2514 if (IS_ERR(connector
))
2517 if (dcbe
->location
== DCB_LOC_ON_CHIP
) {
2518 switch (dcbe
->type
) {
2519 case DCB_OUTPUT_TMDS
:
2520 case DCB_OUTPUT_LVDS
:
2522 ret
= nv50_sor_create(connector
, dcbe
);
2524 case DCB_OUTPUT_ANALOG
:
2525 ret
= nv50_dac_create(connector
, dcbe
);
2532 ret
= nv50_pior_create(connector
, dcbe
);
2536 NV_WARN(drm
, "failed to create encoder %d/%d/%d: %d\n",
2537 dcbe
->location
, dcbe
->type
,
2538 ffs(dcbe
->or) - 1, ret
);
2543 /* cull any connectors we created that don't have an encoder */
2544 list_for_each_entry_safe(connector
, tmp
, &dev
->mode_config
.connector_list
, head
) {
2545 if (connector
->possible_encoders
)
2548 NV_WARN(drm
, "%s has no encoders, removing\n",
2550 connector
->funcs
->destroy(connector
);
2553 /* Disable vblank irqs aggressively for power-saving, safe on nv50+ */
2554 dev
->vblank_disable_immediate
= true;
2556 nv50_audio_component_init(drm
);
2560 nv50_display_destroy(dev
);