From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Chris Wilson <chris@chris-wilson.co.uk>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH] drm/i915: Perform pageflip using mmio if the GPU is terminally wedged
Date: Wed, 5 Mar 2014 15:08:27 +0200 [thread overview]
Message-ID: <20140305130827.GS3852@intel.com> (raw)
In-Reply-To: <1392888373-29221-1-git-send-email-chris@chris-wilson.co.uk>
On Thu, Feb 20, 2014 at 09:26:13AM +0000, Chris Wilson wrote:
> After a hang and failed reset, we cannot use the GPU to execute the page
> flip instructions. Instead we can force a synchronous mmio flip. (Later,
> we can reduce the synchronicity of the mmio flip by moving some of the
> delays off to a worker, like the current page flip code; see vblank
> tasks.)
>
> References: https://bugs.freedesktop.org/show_bug.cgi?id=72631
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/intel_display.c | 10 ++++++++++
> 1 file changed, 10 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
> index 79ef515..d5eafd1 100644
> --- a/drivers/gpu/drm/i915/intel_display.c
> +++ b/drivers/gpu/drm/i915/intel_display.c
> @@ -8717,6 +8717,9 @@ static int intel_crtc_page_flip(struct drm_crtc *crtc,
> fb->pitches[0] != crtc->fb->pitches[0]))
> return -EINVAL;
>
> + if (i915_terminally_wedged(&dev_priv->gpu_error))
> + goto out_hang;
> +
> work = kzalloc(sizeof(*work), GFP_KERNEL);
> if (work == NULL)
> return -ENOMEM;
> @@ -8791,6 +8794,13 @@ cleanup:
> free_work:
> kfree(work);
>
> + if (ret == -EIO) {
> +out_hang:
> + intel_crtc_wait_for_pending_flips(crtc);
> + ret = intel_pipe_set_base(crtc, crtc->x, crtc->y, fb);
> + if (ret == 0 && event)
> + drm_send_vblank_event(dev, intel_crtc->pipe, event);
> + }
> return ret;
> }
>
> --
> 1.7.9.5
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
--
Ville Syrjälä
Intel OTC
next prev parent reply other threads:[~2014-03-05 13:08 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-02-20 9:26 [PATCH] drm/i915: Perform pageflip using mmio if the GPU is terminally wedged Chris Wilson
2014-03-05 13:08 ` Ville Syrjälä [this message]
2014-03-05 13:45 ` Daniel Vetter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140305130827.GS3852@intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=chris@chris-wilson.co.uk \
--cc=intel-gfx@lists.freedesktop.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox