Commit 8ed09421 authored by Ben Skeggs's avatar Ben Skeggs Committed by Lyude Paul

drm/nouveau/disp: move hdmi disable out of release()

- release() is being moved post-modeset, preserve hdmi behaviour for now
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
Reviewed-by: default avatarLyude Paul <lyude@redhat.com>
Acked-by: default avatarDanilo Krummrich <me@dakr.org>
Signed-off-by: default avatarLyude Paul <lyude@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230919220442.202488-21-lyude@redhat.com
parent 6c6abab2
...@@ -842,6 +842,8 @@ nv50_hdmi_enable(struct drm_encoder *encoder, struct nouveau_crtc *nv_crtc, ...@@ -842,6 +842,8 @@ nv50_hdmi_enable(struct drm_encoder *encoder, struct nouveau_crtc *nv_crtc,
size = 0; size = 0;
nvif_outp_infoframe(&nv_encoder->outp, NVIF_OUTP_INFOFRAME_V0_VSI, &args.infoframe, size); nvif_outp_infoframe(&nv_encoder->outp, NVIF_OUTP_INFOFRAME_V0_VSI, &args.infoframe, size);
nv_encoder->hdmi.enabled = true;
} }
/****************************************************************************** /******************************************************************************
...@@ -1562,6 +1564,12 @@ nv50_sor_atomic_disable(struct drm_encoder *encoder, struct drm_atomic_state *st ...@@ -1562,6 +1564,12 @@ nv50_sor_atomic_disable(struct drm_encoder *encoder, struct drm_atomic_state *st
} }
#endif #endif
if (nv_encoder->dcb->type == DCB_OUTPUT_TMDS && nv_encoder->hdmi.enabled) {
nvif_outp_hdmi(&nv_encoder->outp, nv_crtc->index,
false, 0, 0, 0, false, false, false);
nv_encoder->hdmi.enabled = false;
}
if (nv_encoder->dcb->type == DCB_OUTPUT_DP) { if (nv_encoder->dcb->type == DCB_OUTPUT_DP) {
ret = drm_dp_dpcd_readb(aux, DP_SET_POWER, &pwr); ret = drm_dp_dpcd_readb(aux, DP_SET_POWER, &pwr);
......
...@@ -69,7 +69,11 @@ struct nouveau_encoder { ...@@ -69,7 +69,11 @@ struct nouveau_encoder {
struct nv04_output_reg restore; struct nv04_output_reg restore;
union { struct {
struct {
bool enabled;
} hdmi;
struct { struct {
struct nv50_mstm *mstm; struct nv50_mstm *mstm;
int link_nr; int link_nr;
......
...@@ -154,6 +154,13 @@ nvkm_uoutp_mthd_hdmi(struct nvkm_outp *outp, void *argv, u32 argc) ...@@ -154,6 +154,13 @@ nvkm_uoutp_mthd_hdmi(struct nvkm_outp *outp, void *argv, u32 argc)
(args->v0.scdc && !ior->func->hdmi->scdc)) (args->v0.scdc && !ior->func->hdmi->scdc))
return -EINVAL; return -EINVAL;
if (!args->v0.enable) {
ior->func->hdmi->infoframe_avi(ior, args->v0.head, NULL, 0);
ior->func->hdmi->infoframe_vsi(ior, args->v0.head, NULL, 0);
ior->func->hdmi->ctrl(ior, args->v0.head, false, 0, 0);
return 0;
}
ior->func->hdmi->ctrl(ior, args->v0.head, args->v0.enable, ior->func->hdmi->ctrl(ior, args->v0.head, args->v0.enable,
args->v0.max_ac_packet, args->v0.rekey); args->v0.max_ac_packet, args->v0.rekey);
if (ior->func->hdmi->scdc) if (ior->func->hdmi->scdc)
...@@ -177,19 +184,11 @@ nvkm_uoutp_mthd_acquire_lvds(struct nvkm_outp *outp, bool dual, bool bpc8) ...@@ -177,19 +184,11 @@ nvkm_uoutp_mthd_acquire_lvds(struct nvkm_outp *outp, bool dual, bool bpc8)
static int static int
nvkm_uoutp_mthd_release(struct nvkm_outp *outp, void *argv, u32 argc) nvkm_uoutp_mthd_release(struct nvkm_outp *outp, void *argv, u32 argc)
{ {
struct nvkm_head *head = outp->asy.head;
struct nvkm_ior *ior = outp->ior;
union nvif_outp_release_args *args = argv; union nvif_outp_release_args *args = argv;
if (argc != sizeof(args->vn)) if (argc != sizeof(args->vn))
return -ENOSYS; return -ENOSYS;
if (ior->func->hdmi && head) {
ior->func->hdmi->infoframe_avi(ior, head->id, NULL, 0);
ior->func->hdmi->infoframe_vsi(ior, head->id, NULL, 0);
ior->func->hdmi->ctrl(ior, head->id, false, 0, 0);
}
nvkm_outp_release(outp); nvkm_outp_release(outp);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment