From: Mika Kahola <mika.kahola@intel.com>
To: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH] drm/i915/dsi: Silence atomic update failure with DSI panel
Date: Thu, 07 Sep 2017 14:48:08 +0300 [thread overview]
Message-ID: <1504784888.12240.72.camel@intel.com> (raw)
In-Reply-To: <d210ea72-2363-409c-fc39-3d6086116056@linux.intel.com>
On Thu, 2017-09-07 at 13:29 +0200, Maarten Lankhorst wrote:
> Op 05-09-17 om 15:35 schreef Mika Kahola:
> >
> > It appears that we cannot trust scanline counters when MIPI/DSI
> > display is
> > connected. In CI system this appears as flickering errors that
> > randomly
> > appear in test cases. To avoid this flickering, let's just silence
> > atomic
> > update failure in case with DSI panel.
> >
> > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=102403
> > Signed-off-by: Mika Kahola <mika.kahola@intel.com>
> > ---
> > drivers/gpu/drm/i915/intel_sprite.c | 32 +++++++++++++++++------
> > ---------
> > 1 file changed, 17 insertions(+), 15 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/intel_sprite.c
> > b/drivers/gpu/drm/i915/intel_sprite.c
> > index b0d6e3e..8511072 100644
> > --- a/drivers/gpu/drm/i915/intel_sprite.c
> > +++ b/drivers/gpu/drm/i915/intel_sprite.c
> > @@ -205,23 +205,25 @@ void intel_pipe_update_end(struct
> > intel_crtc_state *new_crtc_state)
> > if (intel_vgpu_active(dev_priv))
> > return;
> >
> > - if (crtc->debug.start_vbl_count &&
> > - crtc->debug.start_vbl_count != end_vbl_count) {
> > - DRM_ERROR("Atomic update failure on pipe %c
> > (start=%u end=%u) time %lld us, min %d, max %d, scanline start %d,
> > end %d\n",
> > - pipe_name(pipe), crtc-
> > >debug.start_vbl_count,
> > - end_vbl_count,
> > - ktime_us_delta(end_vbl_time, crtc-
> > >debug.start_vbl_time),
> > - crtc->debug.min_vbl, crtc-
> > >debug.max_vbl,
> > - crtc->debug.scanline_start,
> > scanline_end);
> > - }
> > + if (!intel_crtc_has_type(new_crtc_state,
> > INTEL_OUTPUT_DSI)) {
> > + if (crtc->debug.start_vbl_count &&
> > + crtc->debug.start_vbl_count != end_vbl_count)
> > {
> > + DRM_ERROR("Atomic update failure on pipe
> > %c (start=%u end=%u) time %lld us, min %d, max %d, scanline start
> > %d, end %d\n",
> > + pipe_name(pipe), crtc-
> > >debug.start_vbl_count,
> > + end_vbl_count,
> > + ktime_us_delta(end_vbl_time,
> > crtc->debug.start_vbl_time),
> > + crtc->debug.min_vbl, crtc-
> > >debug.max_vbl,
> > + crtc->debug.scanline_start,
> > scanline_end);
> > + }
> > #ifdef CONFIG_DRM_I915_DEBUG_VBLANK_EVADE
> > - else if (ktime_us_delta(end_vbl_time, crtc-
> > >debug.start_vbl_time) >
> > - VBLANK_EVASION_TIME_US)
> > - DRM_WARN("Atomic update on pipe (%c) took %lld us,
> > max time under evasion is %u us\n",
> > - pipe_name(pipe),
> > - ktime_us_delta(end_vbl_time, crtc-
> > >debug.start_vbl_time),
> > - VBLANK_EVASION_TIME_US);
> > + else if (ktime_us_delta(end_vbl_time, crtc-
> > >debug.start_vbl_time) >
> > + VBLANK_EVASION_TIME_US)
> > + DRM_WARN("Atomic update on pipe (%c) took
> > %lld us, max time under evasion is %u us\n",
> > + pipe_name(pipe),
> > + ktime_us_delta(end_vbl_time,
> > crtc->debug.start_vbl_time),
> > + VBLANK_EVASION_TIME_US);
> > #endif
> > + }
> > }
> >
> > static void
> I don't think this goes far enough. We should stop claiming accurate
> vblanks when MIPI/DSI is used.
> intel_get_crtc_scanline will currently spin for 100 us to see if we
> can move from scanline offset = 0,
> this means that we add an additional 100 us wait for MIPI/DSI always.
>
Definitely there's room for optimization here. We could get rid of
those delays.
> i915_get_crtc_scanoutpos should return false as well.
>
> Does this mean need_vlv_dsi_wa in intel_pipe_update_start is now a
> noop? Should we perhaps only apply this
> for gen9+ MIPI/DSI?
We should limit this to gen9+ MIPI/DSI. The BSpec says that MIPI DSI is
not supported from Broxton onwards.
>
> ~Maarten
>
--
Mika Kahola - Intel OTC
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2017-09-07 11:46 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-05 13:35 [PATCH] drm/i915/dsi: Silence atomic update failure with DSI panel Mika Kahola
2017-09-05 14:00 ` ✓ Fi.CI.BAT: success for " Patchwork
2017-09-05 16:00 ` ✗ Fi.CI.IGT: warning " Patchwork
2017-09-05 16:11 ` [PATCH] " Daniel Vetter
2017-09-06 10:09 ` Mika Kahola
2017-09-06 16:48 ` Martin Peres
2017-09-08 6:58 ` Daniel Vetter
2017-09-07 11:29 ` Maarten Lankhorst
2017-09-07 11:47 ` Ville Syrjälä
2017-09-07 11:48 ` Mika Kahola [this message]
2017-09-07 11:59 ` Ville Syrjälä
2017-09-08 7:00 ` Daniel Vetter
2017-09-08 14:15 ` Shankar, Uma
2017-09-08 8:54 ` kbuild test robot
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=1504784888.12240.72.camel@intel.com \
--to=mika.kahola@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=maarten.lankhorst@linux.intel.com \
/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