All of lore.kernel.org
 help / color / mirror / Atom feed
From: Daniel Vetter <daniel@ffwll.ch>
To: Paulo Zanoni <przanoni@gmail.com>
Cc: intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Subject: Re: [PATCH 2/2] drm/dp: Make sink count DP 1.2 aware
Date: Wed, 26 Sep 2012 14:43:59 +0200	[thread overview]
Message-ID: <20120926124359.GF1980@bremse> (raw)
In-Reply-To: <CA+gsUGTgcxAJut5M6jDhKezqv0FCovE2X3ebC3Cpzh02tE3gXg@mail.gmail.com>

On Thu, Sep 20, 2012 at 06:45:29PM -0300, Paulo Zanoni wrote:
> 2012/9/20 Adam Jackson <ajax@redhat.com>:
> > Signed-off-by: Adam Jackson <ajax@redhat.com>
> 
> Reviewed-by: Paulo Zanoni <paulo.r.zanoni@intel.com>

Both patches merged to dinq (again with Dave's irc-ack for the common
stuff).

Thanks, Daniel
> 
> > ---
> >  drivers/gpu/drm/i915/intel_dp.c |    9 ++++-----
> >  include/drm/drm_dp_helper.h     |    3 ++-
> >  2 files changed, 6 insertions(+), 6 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c
> > index 813b771..00f99e5 100644
> > --- a/drivers/gpu/drm/i915/intel_dp.c
> > +++ b/drivers/gpu/drm/i915/intel_dp.c
> > @@ -2106,13 +2106,12 @@ intel_dp_detect_dpcd(struct intel_dp *intel_dp)
> >         /* If we're HPD-aware, SINK_COUNT changes dynamically */
> >         hpd = !!(intel_dp->downstream_ports[0] & DP_DS_PORT_HPD);
> >         if (hpd) {
> > -               uint8_t sink_count;
> > +               uint8_t reg;
> >                 if (!intel_dp_aux_native_read_retry(intel_dp, DP_SINK_COUNT,
> > -                                                   &sink_count, 1))
> > +                                                   &reg, 1))
> >                         return connector_status_unknown;
> > -               sink_count &= DP_SINK_COUNT_MASK;
> > -               return sink_count ? connector_status_connected
> > -                                 : connector_status_disconnected;
> > +               return DP_GET_SINK_COUNT(reg) ? connector_status_connected
> > +                                             : connector_status_disconnected;
> >         }
> >
> >         /* If no HPD, poke DDC gently */
> > diff --git a/include/drm/drm_dp_helper.h b/include/drm/drm_dp_helper.h
> > index 38ffcb4..fe06148 100644
> > --- a/include/drm/drm_dp_helper.h
> > +++ b/include/drm/drm_dp_helper.h
> > @@ -221,7 +221,8 @@
> >  # define DP_PSR_FRAME_CAPTURE              (1 << 3)
> >
> >  #define DP_SINK_COUNT                      0x200
> > -# define DP_SINK_COUNT_MASK                (31 << 0)
> > +/* prior to 1.2 bit 7 was reserved mbz */
> > +# define DP_GET_SINK_COUNT(x)              ((((x) & 0x80) >> 1) | ((x) & 0x3f))
> >  # define DP_SINK_CP_READY                  (1 << 6)
> >
> >  #define DP_DEVICE_SERVICE_IRQ_VECTOR       0x201
> > --
> > 1.7.7.6
> >
> > _______________________________________________
> > dri-devel mailing list
> > dri-devel@lists.freedesktop.org
> > http://lists.freedesktop.org/mailman/listinfo/dri-devel
> 
> 
> 
> -- 
> Paulo Zanoni
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel

-- 
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch

      reply	other threads:[~2012-09-26 12:43 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-20 20:42 [PATCH 1/2] drm/dp: Document DP spec versions for various DPCD registers Adam Jackson
2012-09-20 20:42 ` [PATCH 2/2] drm/dp: Make sink count DP 1.2 aware Adam Jackson
2012-09-20 21:45   ` Paulo Zanoni
2012-09-26 12:43     ` Daniel Vetter [this message]

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=20120926124359.GF1980@bremse \
    --to=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=przanoni@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.