From: Todd Previte <tprevite@gmail.com>
To: intel-gfx@lists.freedesktop.org
Subject: [PATCH 1/2] drm/i915: Add support for Displayport compliance test 4.2.2.7
Date: Wed, 1 Apr 2015 11:06:50 -0700 [thread overview]
Message-ID: <1427911611-19952-2-git-send-email-tprevite@gmail.com> (raw)
In-Reply-To: <1427911611-19952-1-git-send-email-tprevite@gmail.com>
Adds support for complying with the requirements for test 4.2.2.7 Branch
Device Detection upon HPD Plug Event in the Displayport Link CTS 1.2 Core
rev1.1. This test checks to see if the source device can properly detect
a downstream branch device connected to the attached sink. It does so by
advertising the presence of a downstream port through the DPCD. The sink
count and content protection readiness bits are saved in the intel_dp
struct.
Note that as of HDCP 1.3 Displayport amendment, the CP_READY bit (bit 6)
in the SINK_COUNT register (DPCD 0x200) is no longer used. This bit
is stored here for compatibility for pre-HDCP 1.3 devices.
Signed-off-by: Todd Previte <tprevite@gmail.com>
---
drivers/gpu/drm/i915/intel_dp.c | 14 +++++++++++++-
drivers/gpu/drm/i915/intel_drv.h | 4 ++++
2 files changed, 17 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c
index 0a77f5a..7e0d3a8 100644
--- a/drivers/gpu/drm/i915/intel_dp.c
+++ b/drivers/gpu/drm/i915/intel_dp.c
@@ -3633,8 +3633,20 @@ intel_dp_get_dpcd(struct intel_dp *intel_dp)
intel_dp->use_tps3 = false;
if (!(intel_dp->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
- DP_DWN_STRM_PORT_PRESENT))
+ DP_DWN_STRM_PORT_PRESENT)) {
return true; /* native DP sink */
+ }
+ else {
+ uint8_t dpcd_byte;
+ /* Read Sink Count - DP Link CTS 1.2a rev1.1 4.2.2.7 */
+ intel_dp_dpcd_read_wake(&intel_dp->aux,
+ DP_SINK_COUNT,
+ &dpcd_byte,
+ 1);
+ intel_dp->sink_count = DP_GET_SINK_COUNT(dpcd_byte);
+ intel_dp->cp_ready = (dpcd_byte & DP_SINK_CP_READY) >> 6;
+ DRM_DEBUG_DRIVER("Sink count: %d CP: %02x\n", intel_dp->sink_count, intel_dp->cp_ready);
+ }
if (intel_dp->dpcd[DP_DPCD_REV] == 0x10)
return true; /* no per-port downstream info */
diff --git a/drivers/gpu/drm/i915/intel_drv.h b/drivers/gpu/drm/i915/intel_drv.h
index fb6134f..bcbb27f 100644
--- a/drivers/gpu/drm/i915/intel_drv.h
+++ b/drivers/gpu/drm/i915/intel_drv.h
@@ -653,6 +653,10 @@ struct intel_dp {
unsigned long compliance_test_data;
bool compliance_testing_active;
bool compliance_edid_invalid;
+
+ /* Branch device support */
+ uint8_t sink_count;
+ uint8_t cp_ready;
};
struct intel_digital_port {
--
1.9.1
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2015-04-01 18:07 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-01 18:06 [intel-gfx][PATCH] Displayport compliance tests 4.2.2.7 and 4.2.2.8 Todd Previte
2015-04-01 18:06 ` Todd Previte [this message]
2015-04-01 18:06 ` [PATCH 2/2] drm/i915: Add support for Displayport compliance test 4.2.2.8 Todd Previte
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=1427911611-19952-2-git-send-email-tprevite@gmail.com \
--to=tprevite@gmail.com \
--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