Message ID | 1414083556-26054-3-git-send-email-jbarnes@virtuousgeek.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Thu, Oct 23, 2014 at 06:59:14PM +0200, Jesse Barnes wrote: > This will allow us to consult more info before deciding whether to flip > or do a full mode set. > > Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org> > --- > drivers/gpu/drm/i915/intel_display.c | 36 ++++++++++++++++++++++++++++++------ > 1 file changed, 30 insertions(+), 6 deletions(-) > > diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c > index 6aec3ae..b2d4f9c 100644 > --- a/drivers/gpu/drm/i915/intel_display.c > +++ b/drivers/gpu/drm/i915/intel_display.c > @@ -11455,6 +11455,7 @@ static int intel_crtc_set_config(struct drm_mode_set *set) > struct drm_device *dev; > struct drm_mode_set save_set; > struct intel_set_config *config; > + unsigned modeset_pipes, prepare_pipes, disable_pipes; > int ret; > > BUG_ON(!set); > @@ -11500,9 +11501,17 @@ static int intel_crtc_set_config(struct drm_mode_set *set) > if (ret) > goto fail; > > + ret = intel_modeset_compute_config(set->crtc, set->mode, set->fb, > + &modeset_pipes, &prepare_pipes, > + &disable_pipes); > + if (ret) > + goto fail; > + > if (config->mode_changed) { > - ret = intel_set_mode(set->crtc, set->mode, > - set->x, set->y, set->fb); > + ret = intel_set_mode_pipes(set->crtc, set->mode, > + set->x, set->y, set->fb, > + modeset_pipes, prepare_pipes, > + disable_pipes); > } else if (config->fb_changed) { > struct intel_crtc *intel_crtc = to_intel_crtc(set->crtc); > > @@ -11549,8 +11558,10 @@ fail: > > /* Try to restore the config */ > if (config->mode_changed && > - intel_set_mode(save_set.crtc, save_set.mode, > - save_set.x, save_set.y, save_set.fb)) > + intel_set_mode_pipes(save_set.crtc, save_set.mode, > + save_set.x, save_set.y, save_set.fb, > + modeset_pipes, prepare_pipes, > + disable_pipes)) > DRM_ERROR("failed to restore config after modeset failure\n"); > } > > @@ -13361,14 +13372,27 @@ void intel_modeset_setup_hw_state(struct drm_device *dev, > for_each_pipe(dev_priv, pipe) { > struct drm_crtc *crtc = > dev_priv->pipe_to_crtc_mapping[pipe]; > + unsigned modeset_pipes, prepare_pipes, disable_pipes; > + int ret; > + > + ret = intel_modeset_compute_config(crtc, &crtc->mode, > + crtc->primary->fb, > + &modeset_pipes, > + &prepare_pipes, > + &disable_pipes); > + if (ret) { > + DRM_DEBUG_KMS("prepare failed\n"); > + goto out; > + } > > __intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, > - crtc->primary->fb); > + crtc->primary->fb, modeset_pipes, > + prepare_pipes, disable_pipes); This doesn't make sense -- where's the change in function definition? I am pretty sure that as we iterate over each pipe, we only want to operate on that pipe here. How I wish we didn't need force_restore. -Chris
On Thu, 23 Oct 2014 19:28:18 +0100 Chris Wilson <chris@chris-wilson.co.uk> wrote: > On Thu, Oct 23, 2014 at 06:59:14PM +0200, Jesse Barnes wrote: > > This will allow us to consult more info before deciding whether to flip > > or do a full mode set. > > > > Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org> > > --- > > drivers/gpu/drm/i915/intel_display.c | 36 ++++++++++++++++++++++++++++++------ > > 1 file changed, 30 insertions(+), 6 deletions(-) > > > > diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c > > index 6aec3ae..b2d4f9c 100644 > > --- a/drivers/gpu/drm/i915/intel_display.c > > +++ b/drivers/gpu/drm/i915/intel_display.c > > @@ -11455,6 +11455,7 @@ static int intel_crtc_set_config(struct drm_mode_set *set) > > struct drm_device *dev; > > struct drm_mode_set save_set; > > struct intel_set_config *config; > > + unsigned modeset_pipes, prepare_pipes, disable_pipes; > > int ret; > > > > BUG_ON(!set); > > @@ -11500,9 +11501,17 @@ static int intel_crtc_set_config(struct drm_mode_set *set) > > if (ret) > > goto fail; > > > > + ret = intel_modeset_compute_config(set->crtc, set->mode, set->fb, > > + &modeset_pipes, &prepare_pipes, > > + &disable_pipes); > > + if (ret) > > + goto fail; > > + > > if (config->mode_changed) { > > - ret = intel_set_mode(set->crtc, set->mode, > > - set->x, set->y, set->fb); > > + ret = intel_set_mode_pipes(set->crtc, set->mode, > > + set->x, set->y, set->fb, > > + modeset_pipes, prepare_pipes, > > + disable_pipes); > > } else if (config->fb_changed) { > > struct intel_crtc *intel_crtc = to_intel_crtc(set->crtc); > > > > @@ -11549,8 +11558,10 @@ fail: > > > > /* Try to restore the config */ > > if (config->mode_changed && > > - intel_set_mode(save_set.crtc, save_set.mode, > > - save_set.x, save_set.y, save_set.fb)) > > + intel_set_mode_pipes(save_set.crtc, save_set.mode, > > + save_set.x, save_set.y, save_set.fb, > > + modeset_pipes, prepare_pipes, > > + disable_pipes)) > > DRM_ERROR("failed to restore config after modeset failure\n"); > > } > > > > @@ -13361,14 +13372,27 @@ void intel_modeset_setup_hw_state(struct drm_device *dev, > > for_each_pipe(dev_priv, pipe) { > > struct drm_crtc *crtc = > > dev_priv->pipe_to_crtc_mapping[pipe]; > > + unsigned modeset_pipes, prepare_pipes, disable_pipes; > > + int ret; > > + > > + ret = intel_modeset_compute_config(crtc, &crtc->mode, > > + crtc->primary->fb, > > + &modeset_pipes, > > + &prepare_pipes, > > + &disable_pipes); > > + if (ret) { > > + DRM_DEBUG_KMS("prepare failed\n"); > > + goto out; > > + } > > > > __intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, > > - crtc->primary->fb); > > + crtc->primary->fb, modeset_pipes, > > + prepare_pipes, disable_pipes); > > This doesn't make sense -- where's the change in function definition? > I am pretty sure that as we iterate over each pipe, we only want to > operate on that pipe here. > > How I wish we didn't need force_restore. Hm, let's see, this was a mechanical conversion leftover from an earlier patch. I don't think it's needed, but it should be equivalent, given the changes to __intel_set_mode() right? Ah I see, some patch series fail on my part. 2/5 didn't get posted and should have been squashed with 1/5. Let's see if I can make this clearer. I'll post an updated series with some pfit changes as well.
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c index 6aec3ae..b2d4f9c 100644 --- a/drivers/gpu/drm/i915/intel_display.c +++ b/drivers/gpu/drm/i915/intel_display.c @@ -11455,6 +11455,7 @@ static int intel_crtc_set_config(struct drm_mode_set *set) struct drm_device *dev; struct drm_mode_set save_set; struct intel_set_config *config; + unsigned modeset_pipes, prepare_pipes, disable_pipes; int ret; BUG_ON(!set); @@ -11500,9 +11501,17 @@ static int intel_crtc_set_config(struct drm_mode_set *set) if (ret) goto fail; + ret = intel_modeset_compute_config(set->crtc, set->mode, set->fb, + &modeset_pipes, &prepare_pipes, + &disable_pipes); + if (ret) + goto fail; + if (config->mode_changed) { - ret = intel_set_mode(set->crtc, set->mode, - set->x, set->y, set->fb); + ret = intel_set_mode_pipes(set->crtc, set->mode, + set->x, set->y, set->fb, + modeset_pipes, prepare_pipes, + disable_pipes); } else if (config->fb_changed) { struct intel_crtc *intel_crtc = to_intel_crtc(set->crtc); @@ -11549,8 +11558,10 @@ fail: /* Try to restore the config */ if (config->mode_changed && - intel_set_mode(save_set.crtc, save_set.mode, - save_set.x, save_set.y, save_set.fb)) + intel_set_mode_pipes(save_set.crtc, save_set.mode, + save_set.x, save_set.y, save_set.fb, + modeset_pipes, prepare_pipes, + disable_pipes)) DRM_ERROR("failed to restore config after modeset failure\n"); } @@ -13361,14 +13372,27 @@ void intel_modeset_setup_hw_state(struct drm_device *dev, for_each_pipe(dev_priv, pipe) { struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; + unsigned modeset_pipes, prepare_pipes, disable_pipes; + int ret; + + ret = intel_modeset_compute_config(crtc, &crtc->mode, + crtc->primary->fb, + &modeset_pipes, + &prepare_pipes, + &disable_pipes); + if (ret) { + DRM_DEBUG_KMS("prepare failed\n"); + goto out; + } __intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, - crtc->primary->fb); + crtc->primary->fb, modeset_pipes, + prepare_pipes, disable_pipes); } } else { intel_modeset_update_staged_output_state(dev); } - +out: intel_modeset_check_state(dev); }
This will allow us to consult more info before deciding whether to flip or do a full mode set. Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org> --- drivers/gpu/drm/i915/intel_display.c | 36 ++++++++++++++++++++++++++++++------ 1 file changed, 30 insertions(+), 6 deletions(-)