Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v6 00/13] Parallel submission of dma fence jobs and LR jobs with shared hardware resources
@ 2024-08-06 19:26 Francois Dugast
  2024-08-06 19:26 ` [PATCH v6 01/13] drm/xe/hw_engine_group: Introduce xe_hw_engine_group Francois Dugast
                   ` (20 more replies)
  0 siblings, 21 replies; 24+ messages in thread
From: Francois Dugast @ 2024-08-06 19:26 UTC (permalink / raw)
  To: intel-xe; +Cc: matthew.brost, Francois Dugast

v5: Resent for CI

v6: Fix kernel doc, address Matt's comments from v4

Francois Dugast (13):
  drm/xe/hw_engine_group: Introduce xe_hw_engine_group
  drm/xe/guc_submit: Make suspend_wait interruptible
  drm/xe/hw_engine_group: Register hw engine group's exec queues
  drm/xe/hw_engine_group: Add helper to suspend faulting LR jobs
  drm/xe/exec_queue: Remove duplicated code
  drm/xe/exec_queue: Prepare last fence for hw engine group resume
    context
  drm/xe/hw_engine_group: Add helper to wait for dma fence jobs
  drm/xe/hw_engine_group: Ensure safe transition between execution modes
  drm/xe/exec: Switch hw engine group execution mode upon job submission
  drm/xe/guc_submit: Allow calling guc_exec_queue_resume with pending
    resume
  drm/xe/hw_engine_group: Resume exec queues suspended by dma fence jobs
  drm/xe/vm: Remove restriction that all VMs must be faulting if one is
  drm/xe/device: Remove unused xe_device::usm::num_vm_in_*

 drivers/gpu/drm/xe/Makefile                   |   1 +
 drivers/gpu/drm/xe/xe_device.c                |   3 +
 drivers/gpu/drm/xe/xe_device.h                |  10 -
 drivers/gpu/drm/xe/xe_device_types.h          |   4 -
 drivers/gpu/drm/xe/xe_exec.c                  |  20 +-
 drivers/gpu/drm/xe/xe_exec_queue.c            |  63 +++-
 drivers/gpu/drm/xe/xe_exec_queue.h            |   3 +
 drivers/gpu/drm/xe/xe_exec_queue_types.h      |   2 +
 drivers/gpu/drm/xe/xe_guc_submit.c            |  15 +-
 drivers/gpu/drm/xe/xe_hw_engine.c             |   4 +
 drivers/gpu/drm/xe/xe_hw_engine_group.c       | 348 ++++++++++++++++++
 drivers/gpu/drm/xe/xe_hw_engine_group.h       |  29 ++
 drivers/gpu/drm/xe/xe_hw_engine_group_types.h |  51 +++
 drivers/gpu/drm/xe/xe_hw_engine_types.h       |   2 +
 drivers/gpu/drm/xe/xe_vm.c                    |  20 -
 15 files changed, 526 insertions(+), 49 deletions(-)
 create mode 100644 drivers/gpu/drm/xe/xe_hw_engine_group.c
 create mode 100644 drivers/gpu/drm/xe/xe_hw_engine_group.h
 create mode 100644 drivers/gpu/drm/xe/xe_hw_engine_group_types.h

-- 
2.43.0


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

end of thread, other threads:[~2024-08-08 18:28 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-06 19:26 [PATCH v6 00/13] Parallel submission of dma fence jobs and LR jobs with shared hardware resources Francois Dugast
2024-08-06 19:26 ` [PATCH v6 01/13] drm/xe/hw_engine_group: Introduce xe_hw_engine_group Francois Dugast
2024-08-06 19:27 ` [PATCH v6 02/13] drm/xe/guc_submit: Make suspend_wait interruptible Francois Dugast
2024-08-06 19:27 ` [PATCH v6 03/13] drm/xe/hw_engine_group: Register hw engine group's exec queues Francois Dugast
2024-08-06 19:27 ` [PATCH v6 04/13] drm/xe/hw_engine_group: Add helper to suspend faulting LR jobs Francois Dugast
2024-08-06 19:27 ` [PATCH v6 05/13] drm/xe/exec_queue: Remove duplicated code Francois Dugast
2024-08-06 19:27 ` [PATCH v6 06/13] drm/xe/exec_queue: Prepare last fence for hw engine group resume context Francois Dugast
2024-08-06 19:27 ` [PATCH v6 07/13] drm/xe/hw_engine_group: Add helper to wait for dma fence jobs Francois Dugast
2024-08-06 19:27 ` [PATCH v6 08/13] drm/xe/hw_engine_group: Ensure safe transition between execution modes Francois Dugast
2024-08-06 19:27 ` [PATCH v6 09/13] drm/xe/exec: Switch hw engine group execution mode upon job submission Francois Dugast
2024-08-06 19:27 ` [PATCH v6 10/13] drm/xe/guc_submit: Allow calling guc_exec_queue_resume with pending resume Francois Dugast
2024-08-08  3:44   ` Matthew Brost
2024-08-08 18:28     ` Francois Dugast
2024-08-06 19:27 ` [PATCH v6 11/13] drm/xe/hw_engine_group: Resume exec queues suspended by dma fence jobs Francois Dugast
2024-08-06 19:27 ` [PATCH v6 12/13] drm/xe/vm: Remove restriction that all VMs must be faulting if one is Francois Dugast
2024-08-06 19:27 ` [PATCH v6 13/13] drm/xe/device: Remove unused xe_device::usm::num_vm_in_* Francois Dugast
2024-08-06 19:36 ` ✓ CI.Patch_applied: success for Parallel submission of dma fence jobs and LR jobs with shared hardware resources (rev6) Patchwork
2024-08-06 19:36 ` ✗ CI.checkpatch: warning " Patchwork
2024-08-06 19:37 ` ✓ CI.KUnit: success " Patchwork
2024-08-06 19:49 ` ✓ CI.Build: " Patchwork
2024-08-06 19:51 ` ✓ CI.Hooks: " Patchwork
2024-08-06 19:53 ` ✓ CI.checksparse: " Patchwork
2024-08-06 23:51 ` ✗ CI.FULL: failure " Patchwork
2024-08-07  4:47 ` ✗ CI.BAT: " Patchwork

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