From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Daniel Vetter <daniel@ffwll.ch>
Cc: intel-gfx@lists.freedesktop.org,
Sateesh Kavuri <sateesh.kavuri@intel.com>
Subject: Re: [PATCH 2/8] drm/i915: Added SDP and VSC structures for handling PSR for eDP
Date: Mon, 14 Jan 2013 13:22:27 +0200 [thread overview]
Message-ID: <20130114112227.GD3867@intel.com> (raw)
In-Reply-To: <20130111201540.GK5737@phenom.ffwll.local>
On Fri, Jan 11, 2013 at 09:15:40PM +0100, Daniel Vetter wrote:
> On Fri, Jan 11, 2013 at 05:57:51PM -0200, Rodrigo Vivi wrote:
> > From: Shobhit Kumar <shobhit.kumar@intel.com>
> >
> > Signed-off-by: Sateesh Kavuri <sateesh.kavuri@intel.com>
> >
> > v2: Modified and corrected the structures to be more in line for
> > kernel coding guidelines and rebased the code on Paulo's DP patchset
> >
> > Signed-off-by: Shobhit Kumar <shobhit.kumar@intel.com>
> >
> > v3: removing unecessary identation at DP_RECEIVER_CAP_SIZE
> >
> > Signed-off-by: Rodrigo Vivi <rodrigo.vivi@gmail.com>
>
> DP spec stuff should be put into the drm core imo, i.e. into
> include/drm/drm_dp_helper.h Since all bitfields are u8 we also have no
> problems with endianess for this.
I don't think C guarantees anything about the order of bits inside
bitfieds.
> -Daniel
>
> > ---
> > drivers/gpu/drm/i915/intel_drv.h | 28 ++++++++++++++++++++++++++++
> > 1 file changed, 28 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/i915/intel_drv.h b/drivers/gpu/drm/i915/intel_drv.h
> > index 116580b..9799fe9 100644
> > --- a/drivers/gpu/drm/i915/intel_drv.h
> > +++ b/drivers/gpu/drm/i915/intel_drv.h
> > @@ -371,10 +371,38 @@ struct intel_dp {
> > int backlight_on_delay;
> > int backlight_off_delay;
> > struct delayed_work panel_vdd_work;
> > + uint8_t psr_setup;
> > bool want_panel_vdd;
> > struct intel_connector *attached_connector;
> > };
> >
> > +/* SDP header as per eDP 1.3 spec, section 3.6 */
> > +struct edp_sdp_header {
> > + u8 id;
> > + u8 type;
> > + u8 revision : 5; /* Bits 0:4 */
> > + u8 rsvd1 : 3; /* Bits 5:7 */
> > + u8 valid_payload_bytes : 5; /* Bits 0:4 */
> > + u8 rsvd2 : 3; /* Bits 5:7 */
> > +} __attribute__((packed));
> > +
> > +/* SDP VSC header as per eDP 1.3 spec, section 3.6 */
> > +struct edp_vsc_psr {
> > + struct edp_sdp_header sdp_header;
> > + u8 unused;
> > + u8 psr_state : 1; /* Bit 0 */
> > + u8 update_rfb : 1; /* Bit 1 */
> > + u8 valid_crc : 1; /* Bit 2 */
> > + u8 reserved1 : 5; /* Bits 3:7 */
> > + u8 crc_r_lower;
> > + u8 crc_r_higher;
> > + u8 crc_g_lower;
> > + u8 crc_g_higher;
> > + u8 crc_b_lower;
> > + u8 crc_b_higher;
> > + u8 reserved2[24];
> > +} __attribute__((packed));
> > +
> > struct intel_digital_port {
> > struct intel_encoder base;
> > enum port port;
> > --
> > 1.7.11.7
> >
> > _______________________________________________
> > Intel-gfx mailing list
> > Intel-gfx@lists.freedesktop.org
> > http://lists.freedesktop.org/mailman/listinfo/intel-gfx
>
> --
> Daniel Vetter
> Software Engineer, Intel Corporation
> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
> _______________________________________________
> 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:[~2013-01-14 11:22 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-11 19:57 [PATCH 0/8] Enable eDP PSR funcionality at HSW Rodrigo Vivi
2013-01-11 19:57 ` [PATCH 1/8] drm/i915: Added eDP PSR registers Rodrigo Vivi
2013-01-15 13:36 ` Paulo Zanoni
2013-01-11 19:57 ` [PATCH 2/8] drm/i915: Added SDP and VSC structures for handling PSR for eDP Rodrigo Vivi
2013-01-11 20:15 ` Daniel Vetter
2013-01-14 11:22 ` Ville Syrjälä [this message]
2013-01-14 11:42 ` Philipp Klaus Krause
2013-01-11 19:57 ` [PATCH 3/8] drm/i915: Read the EDP DPCD and PSR Capability Rodrigo Vivi
2013-01-23 15:22 ` Paulo Zanoni
2013-01-11 19:57 ` [PATCH 4/8] drm/i915: Setup EDP PSR AUX Registers Rodrigo Vivi
2013-01-23 15:36 ` Paulo Zanoni
2013-01-11 19:57 ` [PATCH 5/8] drm/i915: VBT Parsing for the PSR Feature Block for HSW Rodrigo Vivi
2013-01-11 20:46 ` Daniel Vetter
2013-01-15 13:23 ` Rodrigo Vivi
2013-01-15 13:32 ` Daniel Vetter
2013-01-11 19:57 ` [PATCH 6/8] drm/i915: Enable/Disable PSR on HSW Rodrigo Vivi
2013-01-11 19:57 ` [PATCH 7/8] drm/i915: Added debugfs support for PSR Status Rodrigo Vivi
2013-01-11 19:57 ` [PATCH 8/8] drm/i915: Hook PSR functionality Rodrigo Vivi
2013-01-11 20:49 ` Daniel Vetter
2013-01-15 13:25 ` Rodrigo Vivi
2013-01-15 13:31 ` 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=20130114112227.GD3867@intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=daniel@ffwll.ch \
--cc=intel-gfx@lists.freedesktop.org \
--cc=sateesh.kavuri@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