intel-gfx.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH v7 00/10] drm/hdcp: Pull HDCP auth/exchange/check into helpers
@ 2023-03-24 19:55 Mark Yacoub
  2023-03-24 19:55 ` [Intel-gfx] [PATCH v7 01/10] drm/hdcp: Add drm_hdcp_atomic_check() Mark Yacoub
                   ` (10 more replies)
  0 siblings, 11 replies; 15+ messages in thread
From: Mark Yacoub @ 2023-03-24 19:55 UTC (permalink / raw)
  Cc: Mark Yacoub, intel-gfx, dianders, dri-devel, seanpaul, freedreno

From: Mark Yacoub <markyacoub@chromium.org>

Hi all,
This is v7 of the HDCP patches. The patches are authored by Sean Paul. 
I rebased and addressed the review comments in v6-v7.

Patches 1-4 focus on moving the common HDCP helpers to common DRM. 
This introduces a slight change in the original intel flow
as it splits the unique driver protocol from the generic implementation.

Patches 5-7 split the HDCP flow on i915 driver to make use the common DRM helpers.

Patches 8-10 implement HDCP on MSM driver.

(Note: I resent the patch to add missing cc's)

Thanks,
-Mark Yacoub

Sean Paul (10):
  drm/hdcp: Add drm_hdcp_atomic_check()
  drm/hdcp: Avoid changing crtc state in hdcp atomic check
  drm/hdcp: Update property value on content type and user changes
  drm/hdcp: Expand HDCP helper library for enable/disable/check
  drm/i915/hdcp: Consolidate HDCP setup/state cache
  drm/i915/hdcp: Retain hdcp_capable return codes
  drm/i915/hdcp: Use HDCP helpers for i915
  dt-bindings: msm/dp: Add bindings for HDCP registers
  arm64: dts: qcom: sc7180: Add support for HDCP in dp-controller
  drm/msm: Implement HDCP 1.x using the new drm HDCP helpers

 .../bindings/display/msm/dp-controller.yaml   |    7 +-
 arch/arm64/boot/dts/qcom/sc7180-trogdor.dtsi  |    8 +
 drivers/gpu/drm/display/drm_hdcp_helper.c     | 1299 +++++++++++++++++
 drivers/gpu/drm/i915/display/intel_atomic.c   |    8 +-
 drivers/gpu/drm/i915/display/intel_ddi.c      |   32 +-
 .../drm/i915/display/intel_display_debugfs.c  |   11 +-
 .../drm/i915/display/intel_display_types.h    |   51 +-
 drivers/gpu/drm/i915/display/intel_dp_hdcp.c  |  368 ++---
 drivers/gpu/drm/i915/display/intel_dp_mst.c   |   16 +-
 drivers/gpu/drm/i915/display/intel_hdcp.c     | 1036 +++----------
 drivers/gpu/drm/i915/display/intel_hdcp.h     |   42 +-
 drivers/gpu/drm/i915/display/intel_hdmi.c     |  276 ++--
 drivers/gpu/drm/msm/Kconfig                   |    1 +
 drivers/gpu/drm/msm/Makefile                  |    1 +
 drivers/gpu/drm/msm/dp/dp_debug.c             |   48 +-
 drivers/gpu/drm/msm/dp/dp_debug.h             |   17 +-
 drivers/gpu/drm/msm/dp/dp_display.c           |   42 +-
 drivers/gpu/drm/msm/dp/dp_display.h           |    5 +
 drivers/gpu/drm/msm/dp/dp_drm.c               |   39 +-
 drivers/gpu/drm/msm/dp/dp_drm.h               |   12 +-
 drivers/gpu/drm/msm/dp/dp_hdcp.c              |  483 ++++++
 drivers/gpu/drm/msm/dp/dp_hdcp.h              |   31 +
 drivers/gpu/drm/msm/dp/dp_parser.c            |   19 +
 drivers/gpu/drm/msm/dp/dp_parser.h            |    4 +
 drivers/gpu/drm/msm/dp/dp_reg.h               |   30 +-
 drivers/gpu/drm/msm/msm_atomic.c              |   19 +
 include/drm/display/drm_hdcp.h                |  287 ++++
 include/drm/display/drm_hdcp_helper.h         |   52 +
 28 files changed, 2903 insertions(+), 1341 deletions(-)
 create mode 100644 drivers/gpu/drm/msm/dp/dp_hdcp.c
 create mode 100644 drivers/gpu/drm/msm/dp/dp_hdcp.h

-- 
2.40.0.348.gf938b09366-goog


^ permalink raw reply	[flat|nested] 15+ messages in thread
[parent not found: <20230324192058.3916571-1-markyacoub@google.com>]

end of thread, other threads:[~2023-03-30 18:31 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-24 19:55 [Intel-gfx] [PATCH v7 00/10] drm/hdcp: Pull HDCP auth/exchange/check into helpers Mark Yacoub
2023-03-24 19:55 ` [Intel-gfx] [PATCH v7 01/10] drm/hdcp: Add drm_hdcp_atomic_check() Mark Yacoub
2023-03-24 19:55 ` [Intel-gfx] [PATCH v7 02/10] drm/hdcp: Avoid changing crtc state in hdcp atomic check Mark Yacoub
2023-03-24 19:55 ` [Intel-gfx] [PATCH v7 03/10] drm/hdcp: Update property value on content type and user changes Mark Yacoub
2023-03-24 19:55 ` [Intel-gfx] [PATCH v7 04/10] drm/hdcp: Expand HDCP helper library for enable/disable/check Mark Yacoub
2023-03-24 19:55 ` [Intel-gfx] [PATCH v7 05/10] drm/i915/hdcp: Consolidate HDCP setup/state cache Mark Yacoub
2023-03-24 19:55 ` [Intel-gfx] [PATCH v7 06/10] drm/i915/hdcp: Retain hdcp_capable return codes Mark Yacoub
2023-03-24 19:55 ` [Intel-gfx] [PATCH v7 07/10] drm/i915/hdcp: Use HDCP helpers for i915 Mark Yacoub
2023-03-24 19:55 ` [Intel-gfx] [PATCH v7 08/10] dt-bindings: msm/dp: Add bindings for HDCP registers Mark Yacoub
2023-03-30 18:29   ` Doug Anderson
2023-03-24 19:55 ` [Intel-gfx] [PATCH v7 09/10] arm64: dts: qcom: sc7180: Add support for HDCP in dp-controller Mark Yacoub
2023-03-30 18:31   ` Doug Anderson
2023-03-24 19:55 ` [Intel-gfx] [PATCH v7 10/10] drm/msm: Implement HDCP 1.x using the new drm HDCP helpers Mark Yacoub
2023-03-24 21:37 ` [Intel-gfx] ✗ Fi.CI.BUILD: failure for drm/hdcp: Pull HDCP auth/exchange/check into helpers (rev7) Patchwork
     [not found] <20230324192058.3916571-1-markyacoub@google.com>
2023-03-24 19:20 ` [Intel-gfx] [PATCH v7 07/10] drm/i915/hdcp: Use HDCP helpers for i915 Mark Yacoub

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).