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@xxxxxxxxx> --- 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@xxxxxxxxxxxxxxxxxxxxx http://lists.freedesktop.org/mailman/listinfo/intel-gfx