Lyude Paul
2020-Nov-14 00:14 UTC
[Nouveau] [PATCH 1/8] drm/nouveau/kms/nv50-: Use atomic encoder callbacks everywhere
It turns out that I forgot to go through and make sure that I converted all encoder callbacks to use atomic_enable/atomic_disable(), so let's go and actually do that. Signed-off-by: Lyude Paul <lyude at redhat.com> Cc: Kirill A. Shutemov <kirill at shutemov.name> Fixes: 09838c4efe9a ("drm/nouveau/kms: Search for encoders' connectors properly") --- drivers/gpu/drm/nouveau/dispnv50/disp.c | 29 ++++++++++++------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/drivers/gpu/drm/nouveau/dispnv50/disp.c b/drivers/gpu/drm/nouveau/dispnv50/disp.c index b111fe24a06b..36d6b6093d16 100644 --- a/drivers/gpu/drm/nouveau/dispnv50/disp.c +++ b/drivers/gpu/drm/nouveau/dispnv50/disp.c @@ -455,7 +455,7 @@ nv50_outp_get_old_connector(struct nouveau_encoder *outp, * DAC *****************************************************************************/ static void -nv50_dac_disable(struct drm_encoder *encoder) +nv50_dac_disable(struct drm_encoder *encoder, struct drm_atomic_state *state) { struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder); struct nv50_core *core = nv50_disp(encoder->dev)->core; @@ -467,7 +467,7 @@ nv50_dac_disable(struct drm_encoder *encoder) } static void -nv50_dac_enable(struct drm_encoder *encoder) +nv50_dac_enable(struct drm_encoder *encoder, struct drm_atomic_state *state) { struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder); struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc); @@ -525,8 +525,8 @@ nv50_dac_detect(struct drm_encoder *encoder, struct drm_connector *connector) static const struct drm_encoder_helper_funcs nv50_dac_help = { .atomic_check = nv50_outp_atomic_check, - .enable = nv50_dac_enable, - .disable = nv50_dac_disable, + .atomic_enable = nv50_dac_enable, + .atomic_disable = nv50_dac_disable, .detect = nv50_dac_detect }; @@ -1055,7 +1055,7 @@ nv50_dp_bpc_to_depth(unsigned int bpc) } static void -nv50_msto_enable(struct drm_encoder *encoder) +nv50_msto_enable(struct drm_encoder *encoder, struct drm_atomic_state *state) { struct nv50_head *head = nv50_head(encoder->crtc); struct nv50_head_atom *armh = nv50_head_atom(head->base.base.state); @@ -1101,7 +1101,7 @@ nv50_msto_enable(struct drm_encoder *encoder) } static void -nv50_msto_disable(struct drm_encoder *encoder) +nv50_msto_disable(struct drm_encoder *encoder, struct drm_atomic_state *state) { struct nv50_msto *msto = nv50_msto(encoder); struct nv50_mstc *mstc = msto->mstc; @@ -1118,8 +1118,8 @@ nv50_msto_disable(struct drm_encoder *encoder) static const struct drm_encoder_helper_funcs nv50_msto_help = { - .disable = nv50_msto_disable, - .enable = nv50_msto_enable, + .atomic_disable = nv50_msto_disable, + .atomic_enable = nv50_msto_enable, .atomic_check = nv50_msto_atomic_check, }; @@ -1645,8 +1645,7 @@ nv50_sor_disable(struct drm_encoder *encoder, } static void -nv50_sor_enable(struct drm_encoder *encoder, - struct drm_atomic_state *state) +nv50_sor_enable(struct drm_encoder *encoder, struct drm_atomic_state *state) { struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder); struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc); @@ -1873,7 +1872,7 @@ nv50_pior_atomic_check(struct drm_encoder *encoder, } static void -nv50_pior_disable(struct drm_encoder *encoder) +nv50_pior_disable(struct drm_encoder *encoder, struct drm_atomic_state *state) { struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder); struct nv50_core *core = nv50_disp(encoder->dev)->core; @@ -1885,7 +1884,7 @@ nv50_pior_disable(struct drm_encoder *encoder) } static void -nv50_pior_enable(struct drm_encoder *encoder) +nv50_pior_enable(struct drm_encoder *encoder, struct drm_atomic_state *state) { struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder); struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc); @@ -1921,14 +1920,14 @@ nv50_pior_enable(struct drm_encoder *encoder) } core->func->pior->ctrl(core, nv_encoder->or, ctrl, asyh); - nv_encoder->crtc = encoder->crtc; + nv_encoder->crtc = &nv_crtc->base; } static const struct drm_encoder_helper_funcs nv50_pior_help = { .atomic_check = nv50_pior_atomic_check, - .enable = nv50_pior_enable, - .disable = nv50_pior_disable, + .atomic_enable = nv50_pior_enable, + .atomic_disable = nv50_pior_disable, }; static void -- 2.28.0
Ben Skeggs
2020-Nov-14 04:42 UTC
[Nouveau] [PATCH 1/8] drm/nouveau/kms/nv50-: Use atomic encoder callbacks everywhere
I've merged all of these. Sent the first to 5.10-fixes for the regression there, the rest will go in with a later -next pull request. Thanks, Ben. On Sat, 14 Nov 2020 at 10:14, Lyude Paul <lyude at redhat.com> wrote:> > It turns out that I forgot to go through and make sure that I converted all > encoder callbacks to use atomic_enable/atomic_disable(), so let's go and > actually do that. > > Signed-off-by: Lyude Paul <lyude at redhat.com> > Cc: Kirill A. Shutemov <kirill at shutemov.name> > Fixes: 09838c4efe9a ("drm/nouveau/kms: Search for encoders' connectors properly") > --- > drivers/gpu/drm/nouveau/dispnv50/disp.c | 29 ++++++++++++------------- > 1 file changed, 14 insertions(+), 15 deletions(-) > > diff --git a/drivers/gpu/drm/nouveau/dispnv50/disp.c b/drivers/gpu/drm/nouveau/dispnv50/disp.c > index b111fe24a06b..36d6b6093d16 100644 > --- a/drivers/gpu/drm/nouveau/dispnv50/disp.c > +++ b/drivers/gpu/drm/nouveau/dispnv50/disp.c > @@ -455,7 +455,7 @@ nv50_outp_get_old_connector(struct nouveau_encoder *outp, > * DAC > *****************************************************************************/ > static void > -nv50_dac_disable(struct drm_encoder *encoder) > +nv50_dac_disable(struct drm_encoder *encoder, struct drm_atomic_state *state) > { > struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder); > struct nv50_core *core = nv50_disp(encoder->dev)->core; > @@ -467,7 +467,7 @@ nv50_dac_disable(struct drm_encoder *encoder) > } > > static void > -nv50_dac_enable(struct drm_encoder *encoder) > +nv50_dac_enable(struct drm_encoder *encoder, struct drm_atomic_state *state) > { > struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder); > struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc); > @@ -525,8 +525,8 @@ nv50_dac_detect(struct drm_encoder *encoder, struct drm_connector *connector) > static const struct drm_encoder_helper_funcs > nv50_dac_help = { > .atomic_check = nv50_outp_atomic_check, > - .enable = nv50_dac_enable, > - .disable = nv50_dac_disable, > + .atomic_enable = nv50_dac_enable, > + .atomic_disable = nv50_dac_disable, > .detect = nv50_dac_detect > }; > > @@ -1055,7 +1055,7 @@ nv50_dp_bpc_to_depth(unsigned int bpc) > } > > static void > -nv50_msto_enable(struct drm_encoder *encoder) > +nv50_msto_enable(struct drm_encoder *encoder, struct drm_atomic_state *state) > { > struct nv50_head *head = nv50_head(encoder->crtc); > struct nv50_head_atom *armh = nv50_head_atom(head->base.base.state); > @@ -1101,7 +1101,7 @@ nv50_msto_enable(struct drm_encoder *encoder) > } > > static void > -nv50_msto_disable(struct drm_encoder *encoder) > +nv50_msto_disable(struct drm_encoder *encoder, struct drm_atomic_state *state) > { > struct nv50_msto *msto = nv50_msto(encoder); > struct nv50_mstc *mstc = msto->mstc; > @@ -1118,8 +1118,8 @@ nv50_msto_disable(struct drm_encoder *encoder) > > static const struct drm_encoder_helper_funcs > nv50_msto_help = { > - .disable = nv50_msto_disable, > - .enable = nv50_msto_enable, > + .atomic_disable = nv50_msto_disable, > + .atomic_enable = nv50_msto_enable, > .atomic_check = nv50_msto_atomic_check, > }; > > @@ -1645,8 +1645,7 @@ nv50_sor_disable(struct drm_encoder *encoder, > } > > static void > -nv50_sor_enable(struct drm_encoder *encoder, > - struct drm_atomic_state *state) > +nv50_sor_enable(struct drm_encoder *encoder, struct drm_atomic_state *state) > { > struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder); > struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc); > @@ -1873,7 +1872,7 @@ nv50_pior_atomic_check(struct drm_encoder *encoder, > } > > static void > -nv50_pior_disable(struct drm_encoder *encoder) > +nv50_pior_disable(struct drm_encoder *encoder, struct drm_atomic_state *state) > { > struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder); > struct nv50_core *core = nv50_disp(encoder->dev)->core; > @@ -1885,7 +1884,7 @@ nv50_pior_disable(struct drm_encoder *encoder) > } > > static void > -nv50_pior_enable(struct drm_encoder *encoder) > +nv50_pior_enable(struct drm_encoder *encoder, struct drm_atomic_state *state) > { > struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder); > struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc); > @@ -1921,14 +1920,14 @@ nv50_pior_enable(struct drm_encoder *encoder) > } > > core->func->pior->ctrl(core, nv_encoder->or, ctrl, asyh); > - nv_encoder->crtc = encoder->crtc; > + nv_encoder->crtc = &nv_crtc->base; > } > > static const struct drm_encoder_helper_funcs > nv50_pior_help = { > .atomic_check = nv50_pior_atomic_check, > - .enable = nv50_pior_enable, > - .disable = nv50_pior_disable, > + .atomic_enable = nv50_pior_enable, > + .atomic_disable = nv50_pior_disable, > }; > > static void > -- > 2.28.0 > > _______________________________________________ > Nouveau mailing list > Nouveau at lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/nouveau
Possibly Parallel Threads
- [PATCH 3/8] drm/nouveau/kms/nv50-: Rename encoder->atomic_(enable|disable) callbacks
- [PATCH 2/8] drm/nouveau/kms/nv50-: Remove (nv_encoder->crtc) checks in ->disable callbacks
- [PATCH -next] drm/nouveau/kms/nv50: remove set but not unused variable 'nv_connector'
- [PATCH 2/3] drm/nouveau/kms/nv50-: Store the bpc we're using in nv50_head_atom
- [PATCH] drm/dp_mst: add missed nv50_outp_release in nv50_msto_disable