All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-xe] [PATCH 0/3] Remove Stubs in HDCP code
@ 2023-09-22  8:29 Suraj Kandpal
  2023-09-22  8:29 ` [Intel-xe] [PATCH 1/3] drm/i915/hdcp: Remove i915 check stubs Suraj Kandpal
                   ` (11 more replies)
  0 siblings, 12 replies; 22+ messages in thread
From: Suraj Kandpal @ 2023-09-22  8:29 UTC (permalink / raw)
  To: intel-xe

This patch series aims to remove stubs from code in HDCP code.
Patches 1 & 2 are just added so no rebase issue is created later
and for buildbility patch 3 is what we actually aim to merge.
Patch 1 brings HDCP code in par with current i915 state (removes stub).
Patch 2 is i915 refactor which has been already floated.
(https://patchwork.freedesktop.org/series/123955/)
Patch 3 adds the definition of intel_hdcp_gsc_check_status in Xe.

Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>

Suraj Kandpal (3):
  drm/i915/hdcp: Remove i915 check stubs
  drm/i915/hdcp: Move checks for gsc health status
  drm/xe/hdcp: Define intel_hdcp_gsc_check_status in Xe

 drivers/gpu/drm/i915/display/intel_hdcp.c     | 13 +------------
 drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 14 ++++++++++++++
 drivers/gpu/drm/i915/display/intel_hdcp_gsc.h |  1 +
 drivers/gpu/drm/xe/display/xe_hdcp_gsc.c      |  5 +++++
 4 files changed, 21 insertions(+), 12 deletions(-)

-- 
2.25.1


^ permalink raw reply	[flat|nested] 22+ messages in thread
* [Intel-xe] [PATCH 0/3] Remove Stubs in HDCP code
@ 2023-09-22  6:42 Suraj Kandpal
  0 siblings, 0 replies; 22+ messages in thread
From: Suraj Kandpal @ 2023-09-22  6:42 UTC (permalink / raw)
  To: intel-xe

This patch series aims to remove stubs from code in HDCP code.
Patches 1 & 2 are just added so no rebase issue is created later
and for buildbility patch 3 is what we actually aim to merge.
Patch 1 brings HDCP code in par with current i915 state (removes stub).
Patch 2 is i915 refactor which has been already floated.
(https://patchwork.freedesktop.org/series/123955/)
Patch 3 adds the definition of intel_hdcp_gsc_check_status in Xe.

Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>

Suraj Kandpal (3):
  drm/i915/hdcp: Move checks for gsc health status
  drm/i915/hdcp: Move common message filling function to its own file
  drm/xe/hdcp: Define intel_hdcp_gsc_check_status in Xe

 drivers/gpu/drm/i915/Makefile                 |   1 +
 drivers/gpu/drm/i915/display/intel_hdcp.c     |   8 +-
 drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 620 +-----------------
 drivers/gpu/drm/i915/display/intel_hdcp_gsc.h |   2 +
 .../drm/i915/display/intel_hdcp_gsc_message.c | 588 +++++++++++++++++
 .../drm/i915/display/intel_hdcp_gsc_message.h |  56 ++
 drivers/gpu/drm/xe/display/xe_hdcp_gsc.c      |   5 +
 7 files changed, 678 insertions(+), 602 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/display/intel_hdcp_gsc_message.c
 create mode 100644 drivers/gpu/drm/i915/display/intel_hdcp_gsc_message.h

-- 
2.25.1


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

end of thread, other threads:[~2023-10-09  9:19 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-22  8:29 [Intel-xe] [PATCH 0/3] Remove Stubs in HDCP code Suraj Kandpal
2023-09-22  8:29 ` [Intel-xe] [PATCH 1/3] drm/i915/hdcp: Remove i915 check stubs Suraj Kandpal
2023-09-22  9:27   ` Jani Nikula
2023-09-22 10:14     ` Kandpal, Suraj
2023-09-22 10:38   ` [Intel-xe] [PATCH 1/3] fixup! FIXME: drm/i915: xe doesn't have gsc hdcp interface or something Suraj Kandpal
2023-10-09  8:52     ` Shankar, Uma
2023-10-09  8:58       ` Kandpal, Suraj
2023-10-09  9:16         ` Shankar, Uma
2023-09-22  8:29 ` [Intel-xe] [PATCH 2/3] drm/i915/hdcp: Move checks for gsc health status Suraj Kandpal
2023-09-22  8:29 ` [Intel-xe] [PATCH 3/3] drm/xe/hdcp: Define intel_hdcp_gsc_check_status in Xe Suraj Kandpal
2023-10-09  9:19   ` Shankar, Uma
2023-09-22  8:58 ` [Intel-xe] ✗ CI.Patch_applied: failure for Remove Stubs in HDCP code (rev2) Patchwork
2023-09-22  9:29 ` [Intel-xe] [PATCH 0/3] Remove Stubs in HDCP code Jani Nikula
2023-09-22 10:13   ` Kandpal, Suraj
2023-09-22 10:59 ` [Intel-xe] ✓ CI.Patch_applied: success for Remove Stubs in HDCP code (rev3) Patchwork
2023-09-22 10:59 ` [Intel-xe] ✓ CI.checkpatch: " Patchwork
2023-09-22 11:00 ` [Intel-xe] ✓ CI.KUnit: " Patchwork
2023-09-22 11:07 ` [Intel-xe] ✓ CI.Build: " Patchwork
2023-09-22 11:07 ` [Intel-xe] ✓ CI.Hooks: " Patchwork
2023-09-22 11:09 ` [Intel-xe] ✗ CI.checksparse: warning " Patchwork
2023-09-22 11:42 ` [Intel-xe] ✓ CI.BAT: success " Patchwork
  -- strict thread matches above, loose matches on Subject: below --
2023-09-22  6:42 [Intel-xe] [PATCH 0/3] Remove Stubs in HDCP code Suraj Kandpal

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.