From: "Vivi, Rodrigo" <rodrigo.vivi@intel.com>
To: "daniel@ffwll.ch" <daniel@ffwll.ch>
Cc: "daniel.vetter@ffwll.ch" <daniel.vetter@ffwll.ch>,
"intel-gfx@lists.freedesktop.org"
<intel-gfx@lists.freedesktop.org>
Subject: Re: [PATCH] drm/i915: Split sink_crc function in start, stop and read.
Date: Wed, 5 Aug 2015 20:30:01 +0000 [thread overview]
Message-ID: <1438806656.9831.24.camel@intel.com> (raw)
In-Reply-To: <20150805080713.GB17734@phenom.ffwll.local>
On Wed, 2015-08-05 at 10:07 +0200, Daniel Vetter wrote:
> On Thu, Jul 30, 2015 at 04:26:39PM -0700, Rodrigo Vivi wrote:
> > This is just a preparation patch to make clear what operation we
> > are performing. There is no functional change on the sink crc
> > logic.
> >
> > hsw_disable_ips has been moved a bit further in the start function
> > to avoid disabling ips when sink crc is not going to be started.
> > and to avoid goto on this function.
> >
> > v2: explain why hsw_disable_ips() call place has changed.
> >
> > Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
> > Reviewed-by: Rafael Antognolli <rafael.antognolli@intel.com>
> > Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
>
> Thanks for the updated commit message. Queued for -next, thanks for the
> patch.
Thanks!
Do you intend to merge the other 3 remaining patches?
Or am I missing something there?
Thanks,
Rodrigo.
> -Daniel
> > ---
> > drivers/gpu/drm/i915/intel_dp.c | 89 +++++++++++++++++++++++------------------
> > 1 file changed, 50 insertions(+), 39 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c
> > index 44f8a32..10cbc98 100644
> > --- a/drivers/gpu/drm/i915/intel_dp.c
> > +++ b/drivers/gpu/drm/i915/intel_dp.c
> > @@ -3958,40 +3958,64 @@ intel_dp_probe_mst(struct intel_dp *intel_dp)
> > return intel_dp->is_mst;
> > }
> >
> > -int intel_dp_sink_crc(struct intel_dp *intel_dp, u8 *crc)
> > +static void intel_dp_sink_crc_stop(struct intel_dp *intel_dp)
> > {
> > - struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
> > - struct drm_device *dev = intel_dig_port->base.base.dev;
> > - struct intel_crtc *intel_crtc =
> > - to_intel_crtc(intel_dig_port->base.base.crtc);
> > + struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
> > + struct intel_crtc *intel_crtc = to_intel_crtc(dig_port->base.base.crtc);
> > u8 buf;
> > - int test_crc_count;
> > - int attempts = 6;
> > - int ret = 0;
> > -
> > - hsw_disable_ips(intel_crtc);
> >
> > - if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK_MISC, &buf) < 0) {
> > - ret = -EIO;
> > - goto out;
> > + if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK, &buf) < 0) {
> > + DRM_DEBUG_KMS("Sink CRC couldn't be stopped properly\n");
> > + return;
> > }
> >
> > - if (!(buf & DP_TEST_CRC_SUPPORTED)) {
> > - ret = -ENOTTY;
> > - goto out;
> > - }
> > + if (drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_SINK,
> > + buf & ~DP_TEST_SINK_START) < 0)
> > + DRM_DEBUG_KMS("Sink CRC couldn't be stopped properly\n");
> >
> > - if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK, &buf) < 0) {
> > - ret = -EIO;
> > - goto out;
> > - }
> > + hsw_enable_ips(intel_crtc);
> > +}
> > +
> > +static int intel_dp_sink_crc_start(struct intel_dp *intel_dp)
> > +{
> > + struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
> > + struct intel_crtc *intel_crtc = to_intel_crtc(dig_port->base.base.crtc);
> > + u8 buf;
> > +
> > + if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK_MISC, &buf) < 0)
> > + return -EIO;
> > +
> > + if (!(buf & DP_TEST_CRC_SUPPORTED))
> > + return -ENOTTY;
> > +
> > + if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK, &buf) < 0)
> > + return -EIO;
> > +
> > + hsw_disable_ips(intel_crtc);
> >
> > if (drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_SINK,
> > - buf | DP_TEST_SINK_START) < 0) {
> > - ret = -EIO;
> > - goto out;
> > + buf | DP_TEST_SINK_START) < 0) {
> > + hsw_enable_ips(intel_crtc);
> > + return -EIO;
> > }
> >
> > + return 0;
> > +}
> > +
> > +int intel_dp_sink_crc(struct intel_dp *intel_dp, u8 *crc)
> > +{
> > + struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
> > + struct drm_device *dev = dig_port->base.base.dev;
> > + struct intel_crtc *intel_crtc = to_intel_crtc(dig_port->base.base.crtc);
> > + u8 buf;
> > + int test_crc_count;
> > + int attempts = 6;
> > + int ret;
> > +
> > + ret = intel_dp_sink_crc_start(intel_dp);
> > + if (ret)
> > + return ret;
> > +
> > if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK_MISC, &buf) < 0) {
> > ret = -EIO;
> > goto stop;
> > @@ -4014,23 +4038,10 @@ int intel_dp_sink_crc(struct intel_dp *intel_dp, u8 *crc)
> > goto stop;
> > }
> >
> > - if (drm_dp_dpcd_read(&intel_dp->aux, DP_TEST_CRC_R_CR, crc, 6) < 0) {
> > + if (drm_dp_dpcd_read(&intel_dp->aux, DP_TEST_CRC_R_CR, crc, 6) < 0)
> > ret = -EIO;
> > - goto stop;
> > - }
> > -
> > stop:
> > - if (drm_dp_dpcd_readb(&intel_dp->aux, DP_TEST_SINK, &buf) < 0) {
> > - DRM_DEBUG_KMS("Sink CRC couldn't be stopped properly\n");
> > - goto out;
> > - }
> > - if (drm_dp_dpcd_writeb(&intel_dp->aux, DP_TEST_SINK,
> > - buf & ~DP_TEST_SINK_START) < 0) {
> > - DRM_DEBUG_KMS("Sink CRC couldn't be stopped properly\n");
> > - goto out;
> > - }
> > -out:
> > - hsw_enable_ips(intel_crtc);
> > + intel_dp_sink_crc_stop(intel_dp);
> > return ret;
> > }
> >
> > --
> > 2.1.0
> >
>
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2015-08-05 20:30 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-23 23:35 [PATCH 2/7] drm/i915: Try to stop sink crc calculation on error Rodrigo Vivi
2015-07-23 23:35 ` [PATCH 3/7] drm/i915: Don't return error on sink crc stop Rodrigo Vivi
2015-07-24 18:22 ` Rafael Antognolli
2015-07-24 18:33 ` Rodrigo Vivi
2015-07-23 23:35 ` [PATCH 4/7] drm/i915: Split sink_crc function in start, stop and read Rodrigo Vivi
2015-07-28 20:10 ` Rafael Antognolli
2015-07-29 8:24 ` Daniel Vetter
2015-07-30 23:26 ` [PATCH] " Rodrigo Vivi
2015-08-05 8:07 ` Daniel Vetter
2015-08-05 20:30 ` Vivi, Rodrigo [this message]
2015-08-06 12:20 ` Daniel Vetter
2015-08-06 23:56 ` Rodrigo Vivi
2015-07-23 23:35 ` [PATCH 5/7] drm/i915: Force sink crc stop before start Rodrigo Vivi
2015-07-28 20:14 ` Rafael Antognolli
2015-07-23 23:35 ` [PATCH 6/7] drm/i915: Save latest known sink CRC to compensate delayed counter reset Rodrigo Vivi
2015-07-28 20:18 ` Rafael Antognolli
2015-07-23 23:35 ` [PATCH 7/7] drm/i915: Dont -ETIMEDOUT on identical new and previous (count, crc) Rodrigo Vivi
2015-07-28 20:25 ` Rafael Antognolli
2015-07-28 22:05 ` Vivi, Rodrigo
2015-07-29 8:26 ` Daniel Vetter
2015-07-29 16:05 ` Rafael Antognolli
2015-07-24 18:19 ` [PATCH 2/7] drm/i915: Try to stop sink crc calculation on error Rafael Antognolli
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=1438806656.9831.24.camel@intel.com \
--to=rodrigo.vivi@intel.com \
--cc=daniel.vetter@ffwll.ch \
--cc=daniel@ffwll.ch \
--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