All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-xe] [PATCH v3 00/16] uAPI Alignment - Cleanup and future proof
@ 2023-11-30 18:39 Francois Dugast
  2023-11-30 18:39 ` [Intel-xe] [PATCH v3 01/16] drm/xe: Extend drm_xe_vm_bind_op Francois Dugast
                   ` (23 more replies)
  0 siblings, 24 replies; 28+ messages in thread
From: Francois Dugast @ 2023-11-30 18:39 UTC (permalink / raw)
  To: intel-xe; +Cc: Francois Dugast

The series "uAPI Alignment - take 2 v3" [1] has grown too much which makes
it difficult to review and to digest by UMDs. This new series is a third
break down, which cleans up the uAPI and prepares for future needs.

Corresponding IGT series is here [2].

v2: Fix according to feedback from v1, rebase on drm-xe-next, add new fixes

v3: Rebase, bundle other already reviewed uAPI changes

[1] https://patchwork.freedesktop.org/series/126203/
[2] https://patchwork.freedesktop.org/series/126537/

Francois Dugast (3):
  drm/xe/uapi: Align on a common way to return arrays (memory regions)
  drm/xe/uapi: Align on a common way to return arrays (gt)
  drm/xe/uapi: Align on a common way to return arrays (engines)

José Roberto de Souza (1):
  drm/xe: Make DRM_XE_DEVICE_QUERY_ENGINES future proof

Mauro Carvalho Chehab (1):
  drm/xe/uapi: Reject bo creation of unaligned size

Mika Kuoppala (1):
  drm/xe: Extend drm_xe_vm_bind_op

Rodrigo Vivi (9):
  drm/xe/uapi: Separate bo_create placement from flags
  drm/xe/uapi: Split xe_sync types from flags
  drm/xe/uapi: Kill tile_mask
  drm/xe/uapi: Crystal Reference Clock updates
  drm/xe/uapi: Add Tile ID information to the GT info query
  drm/xe/uapi: Fix various struct padding for 64b alignment
  drm/xe/uapi: Move xe_exec after xe_exec_queue
  drm/xe: Remove unused extension definition
  drm/xe/uapi: Kill exec_queue_set_property

Thomas Hellström (1):
  drm/xe/uapi: Use LR abbrev for long-running vms

 drivers/gpu/drm/xe/tests/xe_dma_buf.c |   8 +-
 drivers/gpu/drm/xe/xe_bo.c            |  38 ++--
 drivers/gpu/drm/xe/xe_device.c        |   2 -
 drivers/gpu/drm/xe/xe_exec_queue.c    |  38 ----
 drivers/gpu/drm/xe/xe_exec_queue.h    |   2 -
 drivers/gpu/drm/xe/xe_gt_clock.c      |   4 +-
 drivers/gpu/drm/xe/xe_gt_types.h      |   4 +-
 drivers/gpu/drm/xe/xe_query.c         |  87 +++++----
 drivers/gpu/drm/xe/xe_sync.c          |  23 +--
 drivers/gpu/drm/xe/xe_sync_types.h    |   1 +
 drivers/gpu/drm/xe/xe_vm.c            |  56 ++----
 drivers/gpu/drm/xe/xe_vm_types.h      |   2 -
 include/uapi/drm/xe_drm.h             | 267 +++++++++++++++-----------
 13 files changed, 262 insertions(+), 270 deletions(-)

-- 
2.34.1


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

end of thread, other threads:[~2023-12-02  1:23 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-30 18:39 [Intel-xe] [PATCH v3 00/16] uAPI Alignment - Cleanup and future proof Francois Dugast
2023-11-30 18:39 ` [Intel-xe] [PATCH v3 01/16] drm/xe: Extend drm_xe_vm_bind_op Francois Dugast
2023-11-30 18:39 ` [Intel-xe] [PATCH v3 02/16] drm/xe/uapi: Separate bo_create placement from flags Francois Dugast
2023-11-30 18:39 ` [Intel-xe] [PATCH v3 03/16] drm/xe: Make DRM_XE_DEVICE_QUERY_ENGINES future proof Francois Dugast
2023-11-30 20:32   ` Dixit, Ashutosh
2023-11-30 20:36     ` Souza, Jose
2023-11-30 18:39 ` [Intel-xe] [PATCH v3 04/16] drm/xe/uapi: Reject bo creation of unaligned size Francois Dugast
2023-11-30 18:39 ` [Intel-xe] [PATCH v3 05/16] drm/xe/uapi: Align on a common way to return arrays (memory regions) Francois Dugast
2023-11-30 18:39 ` [Intel-xe] [PATCH v3 06/16] drm/xe/uapi: Align on a common way to return arrays (gt) Francois Dugast
2023-11-30 18:39 ` [Intel-xe] [PATCH v3 07/16] drm/xe/uapi: Align on a common way to return arrays (engines) Francois Dugast
2023-11-30 18:39 ` [Intel-xe] [PATCH v3 08/16] drm/xe/uapi: Split xe_sync types from flags Francois Dugast
2023-11-30 18:39 ` [Intel-xe] [PATCH v3 09/16] drm/xe/uapi: Kill tile_mask Francois Dugast
2023-11-30 18:39 ` [Intel-xe] [PATCH v3 10/16] drm/xe/uapi: Crystal Reference Clock updates Francois Dugast
2023-11-30 18:39 ` [Intel-xe] [PATCH v3 11/16] drm/xe/uapi: Add Tile ID information to the GT info query Francois Dugast
2023-11-30 18:39 ` [Intel-xe] [PATCH v3 12/16] drm/xe/uapi: Fix various struct padding for 64b alignment Francois Dugast
2023-11-30 18:39 ` [Intel-xe] [PATCH v3 13/16] drm/xe/uapi: Move xe_exec after xe_exec_queue Francois Dugast
2023-11-30 18:39 ` [Intel-xe] [PATCH v3 14/16] drm/xe/uapi: Use LR abbrev for long-running vms Francois Dugast
2023-11-30 18:39 ` [Intel-xe] [PATCH v3 15/16] drm/xe: Remove unused extension definition Francois Dugast
2023-12-02  1:10   ` Dixit, Ashutosh
2023-11-30 18:39 ` [Intel-xe] [PATCH v3 16/16] drm/xe/uapi: Kill exec_queue_set_property Francois Dugast
2023-11-30 20:59 ` [Intel-xe] [PATCH v3 00/16] uAPI Alignment - Cleanup and future proof Souza, Jose
2023-11-30 23:27 ` [Intel-xe] ✓ CI.Patch_applied: success for uAPI Alignment - Cleanup and future proof (rev6) Patchwork
2023-11-30 23:27 ` [Intel-xe] ✗ CI.checkpatch: warning " Patchwork
2023-11-30 23:29 ` [Intel-xe] ✓ CI.KUnit: success " Patchwork
2023-11-30 23:36 ` [Intel-xe] ✓ CI.Build: " Patchwork
2023-11-30 23:36 ` [Intel-xe] ✗ CI.Hooks: failure " Patchwork
2023-11-30 23:38 ` [Intel-xe] ✓ CI.checksparse: success " Patchwork
2023-12-01  0:12 ` [Intel-xe] ✗ CI.BAT: failure " 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.