Re: [PATCH 3/3] drm/radeon: Use the drm suballocation manager implementation.

2023-02-23 Thread Christian König
Am 23.02.23 um 11:57 schrieb Thomas Hellström: From: Maarten Lankhorst Use the generic suballocation helper for radeon. Signed-off-by: Maarten Lankhorst Co-developed-by: Thomas Hellström Signed-off-by: Thomas Hellström Reviewed-by: Christian König --- drivers/gpu/drm/radeon/radeon.h

[PATCH 3/3] drm/radeon: Use the drm suballocation manager implementation.

2023-02-23 Thread Thomas Hellström
From: Maarten Lankhorst Use the generic suballocation helper for radeon. Signed-off-by: Maarten Lankhorst Co-developed-by: Thomas Hellström Signed-off-by: Thomas Hellström --- drivers/gpu/drm/radeon/radeon.h | 55 +--- drivers/gpu/drm/radeon/radeon_ib.c| 12 +-

[PATCH 3/3] drm/radeon: Use the drm suballocation manager implementation.

2023-02-16 Thread Thomas Hellström
From: Maarten Lankhorst Use the generic suballocation helper. Note that the generic suballocator only allows a single alignment, so we may waste a few more bytes for radeon_semaphore, shouldn't be a big deal, could be re-added if needed. Also, similar to amdgpu, debug output changes slightly and

[PATCH 3/3] drm/radeon: Use the drm suballocation manager implementation.

2022-02-23 Thread Maarten Lankhorst
Use the generic suballocation helper lifted from amdgpu. Note that the generic suballocator only allows a single alignment, so we may waste a few more bytes for radeon_semaphore, shouldn't be a big deal, could be re-added if needed. Signed-off-by: Maarten Lankhorst --- drivers/gpu/drm/Kconfig

[RFC PATCH 3/3] drm/radeon: Use the drm suballocation manager implementation.

2022-02-04 Thread Maarten Lankhorst
Use the generic suballocation helper lifted from amdgpu. Note that the generic suballocator only allows a single alignment, so we may waste a few more bytes for radeon_semaphore, shouldn't be a big deal, could be re-added if needed. Signed-off-by: Maarten Lankhorst ---