All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/11] drm/i915: Add support for HDCP 1.4 over MST connectors
@ 2019-12-03 17:36 ` Sean Paul
  0 siblings, 0 replies; 52+ messages in thread
From: Sean Paul @ 2019-12-03 17:36 UTC (permalink / raw)
  To: dri-devel, intel-gfx, ramalingm.c; +Cc: Sean Paul

From: Sean Paul <seanpaul@chromium.org>

Hey all,
As the subject says, this set adds support for HDCP 1.4 over MST. Most
of the set is plumbing and refactor to allow the MST support to slot in
organically.

I stubbed out HDCP 2.2 support since I don't have a means of testing it.
If no one picks up the slack, I can come back to it at a later date when
I have the right gear.

Please take a look,

Sean

Sean Paul (11):
  drm/i915: Fix sha_text population code
  drm/i915: Intercept Aksv writes in the aux hooks
  drm/i915: Disable HDCP signalling on transcoder disable
  drm/i915: Don't WARN on HDCP toggle if get_hw_state returns false
  drm/i915: Change toggle_signalling() argument to connector
  drm/i915: Factor out hdcp->value assignments
  drm/i915: Don't fully disable HDCP on a port if multiple pipes are
    using it
  drm/i915: Support DP MST in enc_to_dig_port() function
  drm/i915: Use ddi_update_pipe in intel_dp_mst
  drm/i915: Expose HDCP shim functions from dp for use by dp_mst
  drm/i915: Add HDCP 1.4 support for MST connectors

 drivers/gpu/drm/i915/display/intel_ddi.c      |  27 ++--
 .../drm/i915/display/intel_display_types.h    |  48 +++++-
 drivers/gpu/drm/i915/display/intel_dp.c       |  82 +++++-----
 drivers/gpu/drm/i915/display/intel_dp.h       |   6 +
 drivers/gpu/drm/i915/display/intel_dp_mst.c   |  84 ++++++++++
 drivers/gpu/drm/i915/display/intel_hdcp.c     | 145 +++++++++++++-----
 drivers/gpu/drm/i915/display/intel_hdmi.c     |  10 +-
 include/drm/drm_hdcp.h                        |   3 +
 8 files changed, 298 insertions(+), 107 deletions(-)

-- 
Sean Paul, Software Engineer, Google / Chromium OS

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 52+ messages in thread

end of thread, other threads:[~2019-12-10 10:09 UTC | newest]

Thread overview: 52+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-12-03 17:36 [PATCH 00/11] drm/i915: Add support for HDCP 1.4 over MST connectors Sean Paul
2019-12-03 17:36 ` [Intel-gfx] " Sean Paul
2019-12-03 17:36 ` [PATCH 01/11] drm/i915: Fix sha_text population code Sean Paul
2019-12-03 17:36   ` Sean Paul
2019-12-03 17:36   ` [Intel-gfx] " Sean Paul
2019-12-04  1:05   ` Sasha Levin
2019-12-04  1:05     ` [Intel-gfx] " Sasha Levin
2019-12-03 17:36 ` [PATCH 02/11] drm/i915: Intercept Aksv writes in the aux hooks Sean Paul
2019-12-03 17:36   ` [Intel-gfx] " Sean Paul
2019-12-05 19:32   ` Ville Syrjälä
2019-12-05 19:32     ` Ville Syrjälä
2019-12-03 17:36 ` [PATCH 03/11] drm/i915: Disable HDCP signalling on transcoder disable Sean Paul
2019-12-03 17:36   ` [Intel-gfx] " Sean Paul
2019-12-05 19:33   ` Ville Syrjälä
2019-12-05 19:33     ` Ville Syrjälä
2019-12-06 13:55     ` Sean Paul
2019-12-06 13:55       ` Sean Paul
2019-12-09 15:18       ` Ville Syrjälä
2019-12-09 15:18         ` Ville Syrjälä
2019-12-09 16:13         ` Sean Paul
2019-12-09 16:13           ` Sean Paul
2019-12-10 10:09           ` Daniel Vetter
2019-12-10 10:09             ` Daniel Vetter
2019-12-03 17:36 ` [PATCH 04/11] drm/i915: Don't WARN on HDCP toggle if get_hw_state returns false Sean Paul
2019-12-03 17:36   ` [Intel-gfx] " Sean Paul
2019-12-05 19:39   ` Ville Syrjälä
2019-12-05 19:39     ` [Intel-gfx] " Ville Syrjälä
2019-12-06 13:52     ` Sean Paul
2019-12-06 13:52       ` [Intel-gfx] " Sean Paul
2019-12-09 15:21       ` Ville Syrjälä
2019-12-09 15:21         ` [Intel-gfx] " Ville Syrjälä
2019-12-09 16:16         ` Sean Paul
2019-12-09 16:16           ` [Intel-gfx] " Sean Paul
2019-12-09 17:22           ` Ville Syrjälä
2019-12-09 17:22             ` [Intel-gfx] " Ville Syrjälä
2019-12-03 17:36 ` [PATCH 05/11] drm/i915: Change toggle_signalling() argument to connector Sean Paul
2019-12-03 17:36   ` [Intel-gfx] " Sean Paul
2019-12-05 19:48   ` Ville Syrjälä
2019-12-05 19:48     ` [Intel-gfx] " Ville Syrjälä
2019-12-03 17:36 ` [PATCH 06/11] drm/i915: Factor out hdcp->value assignments Sean Paul
2019-12-03 17:36   ` [Intel-gfx] " Sean Paul
2019-12-03 17:36 ` [PATCH 07/11] drm/i915: Don't fully disable HDCP on a port if multiple pipes are using it Sean Paul
2019-12-03 17:36   ` [Intel-gfx] " Sean Paul
2019-12-03 17:36 ` [PATCH 08/11] drm/i915: Support DP MST in enc_to_dig_port() function Sean Paul
2019-12-03 17:36   ` [Intel-gfx] " Sean Paul
2019-12-03 17:36 ` [PATCH 09/11] drm/i915: Use ddi_update_pipe in intel_dp_mst Sean Paul
2019-12-03 17:36   ` [Intel-gfx] " Sean Paul
2019-12-03 17:36 ` [PATCH 10/11] drm/i915: Expose HDCP shim functions from dp for use by dp_mst Sean Paul
2019-12-03 17:36   ` [Intel-gfx] " Sean Paul
2019-12-03 17:36 ` [PATCH 11/11] drm/i915: Add HDCP 1.4 support for MST connectors Sean Paul
2019-12-03 17:36   ` [Intel-gfx] " Sean Paul
2019-12-03 20:11 ` [Intel-gfx] ✗ Fi.CI.BUILD: failure for drm/i915: Add support for HDCP 1.4 over " Patchwork

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.