All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH v4 0/3] drm/helpers: Make the suballocation manager drm generic
@ 2023-02-24  9:51 ` Thomas Hellström
  0 siblings, 0 replies; 29+ messages in thread
From: Thomas Hellström @ 2023-02-24  9:51 UTC (permalink / raw)
  To: dri-devel
  Cc: Thomas Hellström, Daniel Vetter, intel-gfx, Christian Koenig,
	Dave Airlie, intel-xe

This series (or at least the suballocator helper) is a prerequisite
for the new Xe driver.

There was an unresolved issue when the series was last up for review,
and that was the per allocation aligment. Last message was from
Maarten Lankhorst arguing that the larger per-driver alignment used
would only incur a small memory cost. This new variant resolves that.

The generic suballocator has been tested with the Xe driver, and a
kunit test is under development.
The amd- and radeon adaptations are only compile-tested.

v3:
- Remove stale author information (Christian König)
- Update Radeon Kconfig (Thomas Hellström)

v4:
- Avoid 64-bit integer divisions (kernel test robot <lkp@intel.com>)
- Use size_t rather than u64 for the managed range. (Thomas)


Maarten Lankhorst (3):
  drm/suballoc: Extract amdgpu_sa.c as generic suballocation helper
  drm/amd: Convert amdgpu to use suballocation helper.
  drm/radeon: Use the drm suballocation manager implementation.

 drivers/gpu/drm/Kconfig                    |   4 +
 drivers/gpu/drm/Makefile                   |   3 +
 drivers/gpu/drm/amd/amdgpu/Kconfig         |   1 +
 drivers/gpu/drm/amd/amdgpu/amdgpu.h        |  26 +-
 drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c     |   5 +-
 drivers/gpu/drm/amd/amdgpu/amdgpu_object.h |  23 +-
 drivers/gpu/drm/amd/amdgpu/amdgpu_ring.h   |   3 +-
 drivers/gpu/drm/amd/amdgpu/amdgpu_sa.c     | 324 +--------------
 drivers/gpu/drm/drm_suballoc.c             | 457 +++++++++++++++++++++
 drivers/gpu/drm/radeon/Kconfig             |   1 +
 drivers/gpu/drm/radeon/radeon.h            |  55 +--
 drivers/gpu/drm/radeon/radeon_ib.c         |  12 +-
 drivers/gpu/drm/radeon/radeon_object.h     |  25 +-
 drivers/gpu/drm/radeon/radeon_sa.c         | 316 ++------------
 drivers/gpu/drm/radeon/radeon_semaphore.c  |   4 +-
 include/drm/drm_suballoc.h                 | 108 +++++
 16 files changed, 674 insertions(+), 693 deletions(-)
 create mode 100644 drivers/gpu/drm/drm_suballoc.c
 create mode 100644 include/drm/drm_suballoc.h

-- 
2.34.1


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

end of thread, other threads:[~2023-03-06 14:43 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-24  9:51 [Intel-gfx] [PATCH v4 0/3] drm/helpers: Make the suballocation manager drm generic Thomas Hellström
2023-02-24  9:51 ` Thomas Hellström
2023-02-24  9:51 ` [Intel-xe] " Thomas Hellström
2023-02-24  9:51 ` [Intel-gfx] [PATCH v4 1/3] drm/suballoc: Extract amdgpu_sa.c as generic suballocation helper Thomas Hellström
2023-02-24  9:51   ` Thomas Hellström
2023-02-24  9:51   ` [Intel-xe] " Thomas Hellström
2023-02-24  9:51 ` [Intel-gfx] [PATCH v4 2/3] drm/amd: Convert amdgpu to use " Thomas Hellström
2023-02-24  9:51   ` Thomas Hellström
2023-02-24  9:51   ` [Intel-xe] " Thomas Hellström
2023-02-24  9:51 ` [Intel-gfx] [PATCH v4 3/3] drm/radeon: Use the drm suballocation manager implementation Thomas Hellström
2023-02-24  9:51   ` Thomas Hellström
2023-02-24  9:51   ` [Intel-xe] " Thomas Hellström
2023-02-24 10:23 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/helpers: Make the suballocation manager drm generic (rev2) Patchwork
2023-02-24 10:42 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2023-02-24 11:59 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2023-02-27  8:11 ` [Intel-gfx] [PATCH v4 0/3] drm/helpers: Make the suballocation manager drm generic Thomas Hellström
2023-02-27  8:11   ` Thomas Hellström
2023-02-27  8:11   ` [Intel-xe] " Thomas Hellström
2023-02-27  8:55   ` [Intel-gfx] " Maarten Lankhorst
2023-02-27  8:55     ` Maarten Lankhorst
2023-02-27  9:00     ` [Intel-gfx] " Thomas Hellström
2023-02-27  9:00       ` Thomas Hellström
2023-02-27  9:00       ` Thomas Hellström
2023-02-27 13:03       ` [Intel-gfx] " Christian König
2023-02-27 13:03         ` Christian König
2023-02-27 13:03         ` Christian König
2023-02-27 15:00         ` [Intel-gfx] " Alex Deucher
2023-02-27 15:00           ` Alex Deucher
2023-02-27 15:00           ` Alex Deucher

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.