Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] XE HDCP Enablement
@ 2024-02-27  5:32 Suraj Kandpal
  2024-02-27  5:32 ` [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file Suraj Kandpal
                   ` (25 more replies)
  0 siblings, 26 replies; 36+ messages in thread
From: Suraj Kandpal @ 2024-02-27  5:32 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: Suraj Kandpal

This patch series enables HDCP on XE.
Mainly includes rewriting functions that were responsible for
sending hdcp messages via gsc cs.

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

Suraj Kandpal (4):
  drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file
  drm/xe/hdcp: Use xe_device struct
  drm/xe: Use gsc_proxy_init_done to check proxy status
  drm/xe/hdcp: Enable HDCP for XE

 drivers/gpu/drm/i915/display/intel_hdcp_gsc.c |   6 +
 drivers/gpu/drm/i915/display/intel_hdcp_gsc.h |   7 +-
 drivers/gpu/drm/xe/Makefile                   |   1 +
 drivers/gpu/drm/xe/display/xe_hdcp_gsc.c      | 241 +++++++++++++++++-
 drivers/gpu/drm/xe/xe_gsc_proxy.c             |   4 +-
 drivers/gpu/drm/xe/xe_gsc_proxy.h             |   1 +
 drivers/gpu/drm/xe/xe_gsc_submit.c            |  15 ++
 drivers/gpu/drm/xe/xe_gsc_submit.h            |   1 +
 8 files changed, 258 insertions(+), 18 deletions(-)

-- 
2.43.2


^ permalink raw reply	[flat|nested] 36+ messages in thread
* [PATCH 0/4] XE HDCP Enablement
@ 2024-03-06  2:42 Suraj Kandpal
  2024-03-06  2:42 ` [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file Suraj Kandpal
  0 siblings, 1 reply; 36+ messages in thread
From: Suraj Kandpal @ 2024-03-06  2:42 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: Suraj Kandpal, Lucas De Marchi

This patch series enables HDCP on XE.
Mainly includes rewriting functions that were responsible for
sending hdcp messages via gsc cs.

Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Acked-by: Lucas De Marchi <lucas.demarchi@intel.com>

Suraj Kandpal (4):
  drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file
  drm/xe/hdcp: Use xe_device struct
  drm/xe: Use gsc_proxy_init_done to check proxy status
  drm/xe/hdcp: Enable HDCP for XE

 drivers/gpu/drm/i915/display/intel_hdcp_gsc.c |   6 +
 drivers/gpu/drm/i915/display/intel_hdcp_gsc.h |   7 +-
 drivers/gpu/drm/xe/Makefile                   |   1 +
 drivers/gpu/drm/xe/display/xe_hdcp_gsc.c      | 240 +++++++++++++++++-
 drivers/gpu/drm/xe/xe_gsc_proxy.c             |   4 +-
 drivers/gpu/drm/xe/xe_gsc_proxy.h             |   1 +
 drivers/gpu/drm/xe/xe_gsc_submit.c            |  15 ++
 drivers/gpu/drm/xe/xe_gsc_submit.h            |   1 +
 8 files changed, 257 insertions(+), 18 deletions(-)

-- 
2.43.2


^ permalink raw reply	[flat|nested] 36+ messages in thread
* [PATCH 0/4] XE HDCP Enablement
@ 2024-02-07 11:35 Suraj Kandpal
  2024-02-07 11:35 ` [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file Suraj Kandpal
  0 siblings, 1 reply; 36+ messages in thread
From: Suraj Kandpal @ 2024-02-07 11:35 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: daniele.ceraolospurio, Suraj Kandpal

This patch series enables HDCP on XE.
Mainly includes rewriting functions that were responsible for
sending hdcp messages via gsc cs.

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

Suraj Kandpal (4):
  drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file
  drm/xe: Use gsc_proxy_init_done to check proxy status
  drm/xe/hdcp: Enable HDCP for XE
  drm/xe/hdcp: Add intel_hdcp_gsc_message to Makefile

 drivers/gpu/drm/i915/display/intel_hdcp_gsc.c |  10 +-
 drivers/gpu/drm/i915/display/intel_hdcp_gsc.h |   7 +-
 drivers/gpu/drm/xe/Makefile                   |   1 +
 .../gpu/drm/xe/abi/gsc_command_header_abi.h   |   2 +
 drivers/gpu/drm/xe/display/xe_hdcp_gsc.c      | 227 +++++++++++++++++-
 drivers/gpu/drm/xe/xe_gsc_proxy.c             |   2 +-
 drivers/gpu/drm/xe/xe_gsc_proxy.h             |   1 +
 drivers/gpu/drm/xe/xe_gsc_submit.c            |  19 ++
 drivers/gpu/drm/xe/xe_gsc_submit.h            |   1 +
 9 files changed, 253 insertions(+), 17 deletions(-)

-- 
2.25.1


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

end of thread, other threads:[~2024-03-06  2:49 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-27  5:32 [PATCH 0/4] XE HDCP Enablement Suraj Kandpal
2024-02-27  5:32 ` [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file Suraj Kandpal
2024-02-27  6:33   ` Suraj Kandpal
2024-02-28  6:01     ` Murthy, Arun R
2024-02-28  5:59   ` Kandpal, Suraj
2024-03-04 15:59   ` Jani Nikula
2024-02-27  5:32 ` [PATCH 2/4] drm/xe/hdcp: Use xe_device struct Suraj Kandpal
2024-02-27  5:32 ` [PATCH 3/4] drm/xe: Use gsc_proxy_init_done to check proxy status Suraj Kandpal
2024-02-28  5:47   ` Suraj Kandpal
2024-02-27  5:32 ` [PATCH 4/4] drm/xe/hdcp: Enable HDCP for XE Suraj Kandpal
2024-03-05 13:36   ` Lucas De Marchi
2024-02-27  5:39 ` ✓ CI.Patch_applied: success for XE HDCP Enablement (rev6) Patchwork
2024-02-27  5:39 ` ✓ CI.checkpatch: " Patchwork
2024-02-27  5:40 ` ✓ CI.KUnit: " Patchwork
2024-02-27  5:51 ` ✓ CI.Build: " Patchwork
2024-02-27  5:52 ` ✗ CI.Hooks: failure " Patchwork
2024-02-27  5:53 ` ✗ CI.checksparse: warning " Patchwork
2024-02-27  6:23 ` ✗ CI.BAT: failure " Patchwork
2024-02-27  6:40 ` ✓ CI.Patch_applied: success for XE HDCP Enablement (rev7) Patchwork
2024-02-27  6:40 ` ✓ CI.checkpatch: " Patchwork
2024-02-27  6:41 ` ✓ CI.KUnit: " Patchwork
2024-02-27  6:52 ` ✓ CI.Build: " Patchwork
2024-02-27  6:53 ` ✗ CI.Hooks: failure " Patchwork
2024-02-27  6:54 ` ✗ CI.checksparse: warning " Patchwork
2024-02-27  7:15 ` ✓ CI.BAT: success " Patchwork
2024-02-28  5:54 ` ✓ CI.Patch_applied: success for XE HDCP Enablement (rev8) Patchwork
2024-02-28  5:54 ` ✓ CI.checkpatch: " Patchwork
2024-02-28  5:55 ` ✓ CI.KUnit: " Patchwork
2024-02-28  6:06 ` ✓ CI.Build: " Patchwork
2024-02-28  6:07 ` ✗ CI.Hooks: failure " Patchwork
2024-02-28  6:08 ` ✗ CI.checksparse: warning " Patchwork
2024-02-28  6:36 ` ✓ CI.BAT: success " Patchwork
2024-03-05 13:38 ` [PATCH 0/4] XE HDCP Enablement Lucas De Marchi
  -- strict thread matches above, loose matches on Subject: below --
2024-03-06  2:42 Suraj Kandpal
2024-03-06  2:42 ` [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file Suraj Kandpal
2024-03-06  2:47   ` Suraj Kandpal
2024-02-07 11:35 [PATCH 0/4] XE HDCP Enablement Suraj Kandpal
2024-02-07 11:35 ` [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file Suraj Kandpal

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox